diff --git a/.eslintignore b/.eslintignore new file mode 100644 index 0000000000..09ed0ee8ad --- /dev/null +++ b/.eslintignore @@ -0,0 +1,4 @@ +node_modules +test +test.js +bench.js diff --git a/.eslintrc.js b/.eslintrc.js new file mode 100644 index 0000000000..ae93f706a1 --- /dev/null +++ b/.eslintrc.js @@ -0,0 +1,8 @@ +module.exports = { + "extends": "mourner", + "rules": { + "strict": [0], + "camelcase": [0], + "consistent-return": [0] + } +}; diff --git a/.gitignore b/.gitignore index 12f494fe89..673ee839b7 100644 --- a/.gitignore +++ b/.gitignore @@ -15,7 +15,3 @@ results npm-debug.log node_modules - -out - -turf_modules \ No newline at end of file diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 20fd86b6a5..0000000000 --- a/.travis.yml +++ /dev/null @@ -1,3 +0,0 @@ -language: node_js -node_js: - - 0.10 diff --git a/CHANGELOG.md b/CHANGELOG.md index 1b0ab6a332..04ea0f204f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,82 @@ +# 3.0.1 + +This is a big change in Turf! 3.0.0 is a release that targets the development +cycle of Turf, letting us work on it more and release more often. + +**Monorepo** + +Turf 3.x and forward is a **monorepo** project. We publish lots of little modules +as usual, but there's one repo - turfjs/turf - that contains all the code +and the issues for the Turf source code. We use [lerna](https://lernajs.io/) +to link these packages together and make sure they work. + +Why? We already had internal turf modules, like `turf-meta`, and development +was harder and harder - we had a bunch of custom scripts to do releases and +tests, and these were just written for Turf. Lerna is from the very popular +and very well-maintained [babel](http://www.babeljs.io) project, and it +works really well, and reduces maintainer sadness. + +**Simplicity** + +Turf grew a bunch of modules that weren't totally necessary, or were +expressing only a line or two of JavaScript. We want to make things easier, +but these modules didn't make code more expressive and they hid complexity +where it didn't need to be hidden. Turf 3.x focuses on the core +functionalities we need, making sure they're tested and performant. + +turf-erase has been renamed turf-difference to make its name more similar to the equivalents in other libraries. + +Removed modules: merge, sum, min, max, average, median, variance, deviation, filter, remove, jenks, quantile. +See the upgrade guide below for replacements. + +**Upgrading from v2** + +**If you were using turf-merge** + +turf-merge repeatedly called turf-union on an array of polygons. Here's +how to implement the same thing without the special module + +```js +var clone = require('clone'); +var union = require('turf-union'); +function merge(polygons) { + var merged = clone(polygons.features[0]), features = polygons.features; + for (var i = 0, len = features.length; i < len; i++) { + var poly = features[i]; + if (poly.geometry) merged = union(merged, poly); + } + return merged; +} +``` + +**If you were using turf-sum, min, max, average, median, variance, deviation** + +The `turf-collect` method provides the core of these statistical methods +and lets you bring your own statistical library, like `simple-statistics`, +`science.js`, or others. + +**If you were using turf-filter, turf-remove** + +These modules were thin wrappers around native JavaScript methods: use +[Array.filter](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/filter) instead: + +```js +var filteredFeatures = features.filter(function(feature) { + return feature.properties.value > 10; +}); +``` + +**If you were using turf-jenks, turf-quantile** + +Use Array.map to get values, and then bring your own statistical calculation, +like simple-statistics or science.js. + +```js +var values = features.map(function(feature) { + return feature.properties.value; +}); +``` + # 2.0.0 * turf-grid renamed turf-point-grid (turf.grid => turf.pointGrid) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 127596fca2..105b32c2cd 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -1,3 +1,5 @@ +### :bug: [How to report a bug](http://polite.technology/reportabug.html) + ## How To Contribute - Most work happens in sub modules. These are modules prefixed with "turf-". @@ -13,7 +15,7 @@ To ensure code style at the `turf` module level, run ```sh -$ npm run lint +$ npm test ``` * Follow the [AirBNB JavaScript code style](https://github.com/airbnb/javascript). @@ -33,3 +35,13 @@ turf-hello |-index.js |-README.md ``` + +## Publishing + +Install lerna: + + npm install -g lerna@2.0.0-beta.9 + +Publish a test release: + + lerna publish --canary diff --git a/README.md b/README.md index e82bb3a587..7b458247f7 100644 --- a/README.md +++ b/README.md @@ -1,8 +1,16 @@ ![turf](https://raw.githubusercontent.com/Turfjs/turf/9a1d5e8d99564d4080f1e2bf1517ed41d18012fa/logo.png) ====== - [![Version Badge](http://vb.teelaun.ch/Turfjs/turf.svg)](https://npmjs.org/package/turf) [![Build Status](https://travis-ci.org/Turfjs/turf.svg?branch=master)](https://travis-ci.org/Turfjs/turf) [![Gitter chat](https://badges.gitter.im/Turfjs/turf.png)](https://gitter.im/Turfjs/turf) +**We just released Turf 3! Try it out** +[![Version Badge][npm-img]][npm-url] +[![Circle CI](https://circleci.com/gh/Turfjs/turf.svg?style=svg)](https://circleci.com/gh/Turfjs/turf) +[![Gitter chat][gitter-img]][gitter-url] + +[npm-img]: https://img.shields.io/npm/v/turf.svg +[npm-url]: https://www.npmjs.com/package/turf +[gitter-img]: https://badges.gitter.im/Turfjs/turf.png +[gitter-url]: https://gitter.im/Turfjs/turf ***A modular geospatial engine written in JavaScript*** @@ -12,7 +20,7 @@ [Turf](https://turfjs.org) is a [JavaScript library](https://en.wikipedia.org/wiki/JavaScript_library) for [spatial analysis](http://en.wikipedia.org/wiki/Spatial_analysis). It includes traditional spatial operations, helper functions for creating [GeoJSON](http://geojson.org) data, and data classification and statistics tools. Turf can be added to your website as a client-side plugin, or you can [run Turf server-side](https://www.npmjs.com/package/turf) with [Node.js](http://nodejs.org/) (see below). -##Installation +## Installation **In Node.js:** @@ -22,12 +30,14 @@ npm install turf **In browser:** -Download the [minified file](https://raw.github.com/morganherlocker/turf/master/turf.min.js), and include it in a script tag. This will expose a global variable named "turf". +Download the [minified file](https://raw.githubusercontent.com/Turfjs/turf/v2.0.2/turf.min.js), and include it in a script tag. This will expose a global variable named `turf`. ```html ``` +You can create light-weight turf builds with only the functions you need using the [turfjs-builder UI](https://turfjs-builder.herokuapp.com/) or using browserify as described below. + **Browserify:** All of Turf's functions can also be installed as separate modules. This works well with tools like [browserify](http://browserify.org/) where you want to install only the code you need. It also allows you to mix and match modules. This is the recommended usage pattern for most production environments. For example, to install the *point* and *buffer* modules use: @@ -38,7 +48,7 @@ npm install turf-point turf-buffer - - - -###Data in Turf +### Data in Turf Turf uses GeoJSON for all geographic data. Turf expects the data to be standard WGS84 longitude, latitude coordinates. Check out geojson.io for a tool to easily create this data. @@ -62,141 +72,3 @@ var point2 = { properties: {} }; ``` - -- - - - -##Functions - -####geometry - -[![Build Status](https://travis-ci.org/Turfjs/turf-point.svg?branch=master)](https://travis-ci.org/Turfjs/turf-point) [point](https://github.com/Turfjs/turf-point) - -[![Build Status](https://travis-ci.org/Turfjs/turf-linestring.svg?branch=master)](https://travis-ci.org/Turfjs/turf-linestring) [linestring](https://github.com/Turfjs/turf-linestring) - -[![Build Status](https://travis-ci.org/Turfjs/turf-polygon.svg?branch=master)](https://travis-ci.org/Turfjs/turf-polygon) [polygon](https://github.com/Turfjs/turf-polygon) - -[![Build Status](https://travis-ci.org/Turfjs/turf-featurecollection.svg?branch=master)](https://travis-ci.org/Turfjs/turf-featurecollection) [featurecollection](https://github.com/Turfjs/turf-featurecollection) - -####joins - -[![Build Status](https://travis-ci.org/Turfjs/turf-inside.svg?branch=master)](https://travis-ci.org/Turfjs/turf-inside) [inside](https://github.com/Turfjs/turf-inside) - -[![Build Status](https://travis-ci.org/Turfjs/turf-within.svg?branch=master)](https://travis-ci.org/Turfjs/turf-within) [within](https://github.com/Turfjs/turf-within) - -[![Build Status](https://travis-ci.org/Turfjs/turf-tag.svg?branch=master)](https://travis-ci.org/Turfjs/turf-tag) [tag](https://github.com/Turfjs/turf-tag) - -####data -[![Build Status](https://travis-ci.org/Turfjs/turf-remove.svg?branch=master)](https://travis-ci.org/Turfjs/turf-remove) [remove](https://github.com/Turfjs/turf-remove) - -[![Build Status](https://travis-ci.org/Turfjs/turf-filter.svg?branch=master)](https://travis-ci.org/Turfjs/turf-filter) [filter](https://github.com/Turfjs/turf-filter) - -[![Build Status](https://travis-ci.org/Turfjs/turf-sample.svg?branch=master)](https://travis-ci.org/Turfjs/turf-sample) [sample](https://github.com/Turfjs/turf-sample) - -####measurement -[![Build Status](https://travis-ci.org/Turfjs/turf-distance.svg?branch=master)](https://travis-ci.org/Turfjs/turf-distance) [distance](https://github.com/Turfjs/turf-distance) - -[![Build Status](https://travis-ci.org/Turfjs/turf-area.svg?branch=master)](https://travis-ci.org/Turfjs/turf-area) [area](https://github.com/Turfjs/turf-area) - -[![Build Status](https://travis-ci.org/Turfjs/turf-nearest.svg?branch=master)](https://travis-ci.org/Turfjs/turf-nearest) [nearest](https://github.com/Turfjs/turf-nearest) - -[![Build Status](https://travis-ci.org/Turfjs/turf-bbox-polygon.svg?branch=master)](https://travis-ci.org/Turfjs/turf-bbox-polygon) [bbox-polygon](https://github.com/Turfjs/turf-bbox-polygon) - -[![Build Status](https://travis-ci.org/Turfjs/turf-envelope.svg?branch=master)](https://travis-ci.org/Turfjs/turf-envelope) [envelope](https://github.com/Turfjs/turf-envelope) - -[![Build Status](https://travis-ci.org/Turfjs/turf-extent.svg?branch=master)](https://travis-ci.org/Turfjs/turf-extent) [extent](https://github.com/Turfjs/turf-extent) - -[![Build Status](https://travis-ci.org/Turfjs/turf-square.svg?branch=master)](https://travis-ci.org/Turfjs/turf-square) [square](https://github.com/Turfjs/turf-square) - -[![Build Status](https://travis-ci.org/Turfjs/turf-size.svg?branch=master)](https://travis-ci.org/Turfjs/turf-size) [size](https://github.com/Turfjs/turf-size) - -[![Build Status](https://travis-ci.org/Turfjs/turf-center.svg?branch=master)](https://travis-ci.org/Turfjs/turf-center) [center](https://github.com/Turfjs/turf-center) - -[![Build Status](https://travis-ci.org/Turfjs/turf-centroid.svg?branch=master)](https://travis-ci.org/Turfjs/turf-centroid) [centroid](https://github.com/Turfjs/turf-centroid) - -[![Build Status](https://travis-ci.org/Turfjs/turf-point-on-surface.svg?branch=master)](https://travis-ci.org/Turfjs/turf-point-on-surface) [point-on-surface](https://github.com/Turfjs/turf-point-on-surface) - -[![Build Status](https://travis-ci.org/Turfjs/turf-midpoint.svg?branch=master)](https://travis-ci.org/Turfjs/turf-midpoint) [midpoint](https://github.com/Turfjs/turf-midpoint) - -[![Build Status](https://travis-ci.org/Turfjs/turf-bearing.svg?branch=master)](https://travis-ci.org/Turfjs/turf-bearing) [bearing](https://github.com/Turfjs/turf-bearing) - -[![Build Status](https://travis-ci.org/Turfjs/turf-destination.svg?branch=master)](https://travis-ci.org/Turfjs/turf-destination) [destination](https://github.com/Turfjs/turf-destination) - -[![Build Status](https://travis-ci.org/Turfjs/turf-line-distance.svg?branch=master)](https://travis-ci.org/Turfjs/turf-line-distance) [line-distance](https://github.com/Turfjs/turf-line-distance) - -[![Build Status](https://travis-ci.org/Turfjs/turf-along.svg?branch=master)](https://travis-ci.org/Turfjs/turf-along) [along](https://github.com/Turfjs/turf-along) - -####interpolation - -[![Build Status](https://travis-ci.org/Turfjs/turf-tin.svg?branch=master)](https://travis-ci.org/Turfjs/turf-tin) [tin](https://github.com/Turfjs/turf-tin) - -[![Build Status](https://travis-ci.org/Turfjs/turf-planepoint.svg?branch=master)](https://travis-ci.org/Turfjs/turf-planepoint) [planepoint](https://github.com/Turfjs/turf-planepoint) - -[![Build Status](https://travis-ci.org/Turfjs/turf-isolines.svg?branch=master)](https://travis-ci.org/Turfjs/turf-isolines) [isolines](https://github.com/Turfjs/turf-isolines) - -[![Build Status](https://travis-ci.org/Turfjs/turf-isobands.svg?branch=master)](https://travis-ci.org/Turfjs/turf-isobands) [isobands](https://github.com/Turfjs/turf-isobands) - -####grids - -[![Build Status](https://travis-ci.org/Turfjs/turf-point-grid.svg?branch=master)](https://travis-ci.org/Turfjs/turf-point-grid) [point-grid](https://github.com/Turfjs/turf-point-grid) - -[![Build Status](https://travis-ci.org/Turfjs/turf-square-grid.svg?branch=master)](https://travis-ci.org/Turfjs/turf-square-grid) [square-grid](https://github.com/Turfjs/turf-square-grid) - -[![Build Status](https://travis-ci.org/Turfjs/turf-hex-grid.svg?branch=master)](https://travis-ci.org/Turfjs/turf-hex-grid) [hex-grid](https://github.com/Turfjs/turf-hex-grid) - -[![Build Status](https://travis-ci.org/Turfjs/turf-triangle-grid.svg?branch=master)](https://travis-ci.org/Turfjs/turf-triangle-grid) [triangle-grid](https://github.com/Turfjs/turf-triangle-grid) - -####classification -[![Build Status](https://travis-ci.org/Turfjs/turf-quantile.svg?branch=master)](https://travis-ci.org/Turfjs/turf-quantile) [quantile](https://github.com/Turfjs/turf-quantile) - -[![Build Status](https://travis-ci.org/Turfjs/turf-jenks.svg?branch=master)](https://travis-ci.org/Turfjs/turf-jenks) [jenks](https://github.com/Turfjs/turf-jenks) - -[![Build Status](https://travis-ci.org/Turfjs/turf-reclass.svg?branch=master)](https://travis-ci.org/Turfjs/turf-reclass) [reclass](https://github.com/Turfjs/turf-reclass) - -####aggregation -[![Build Status](https://travis-ci.org/Turfjs/turf-average.svg?branch=master)](https://travis-ci.org/Turfjs/turf-average) [average](https://github.com/Turfjs/turf-average) - -[![Build Status](https://travis-ci.org/Turfjs/turf-median.svg?branch=master)](https://travis-ci.org/Turfjs/turf-median) [median](https://github.com/Turfjs/turf-median) - -[![Build Status](https://travis-ci.org/Turfjs/turf-sum.svg?branch=master)](https://travis-ci.org/Turfjs/turf-sum) [sum](https://github.com/Turfjs/turf-sum) - -[![Build Status](https://travis-ci.org/Turfjs/turf-min.svg?branch=master)](https://travis-ci.org/Turfjs/turf-min) [min](https://github.com/Turfjs/turf-min) - -[![Build Status](https://travis-ci.org/Turfjs/turf-max.svg?branch=master)](https://travis-ci.org/Turfjs/turf-max) [max](https://github.com/Turfjs/turf-max) - -[![Build Status](https://travis-ci.org/Turfjs/turf-count.svg?branch=master)](https://travis-ci.org/Turfjs/turf-count) [count](https://github.com/Turfjs/turf-count) - -[![Build Status](https://travis-ci.org/Turfjs/turf-deviation.svg?branch=master)](https://travis-ci.org/Turfjs/turf-deviation) [deviation](https://github.com/Turfjs/turf-deviation) - -[![Build Status](https://travis-ci.org/Turfjs/turf-variance.svg?branch=master)](https://travis-ci.org/Turfjs/turf-variance) [variance](https://github.com/Turfjs/turf-variance) - -[![Build Status](https://travis-ci.org/Turfjs/turf-aggregate.svg?branch=master)](https://travis-ci.org/Turfjs/turf-aggregate) [aggregate](https://github.com/Turfjs/turf-aggregate) - -####transformation -[![Build Status](https://travis-ci.org/Turfjs/turf-buffer.svg?branch=master)](https://travis-ci.org/Turfjs/turf-buffer) [buffer](https://github.com/Turfjs/turf-buffer) - -[![Build Status](https://travis-ci.org/Turfjs/turf-bezier.svg?branch=master)](https://travis-ci.org/Turfjs/turf-bezier) [bezier](https://github.com/Turfjs/turf-bezier) - -[![Build Status](https://travis-ci.org/Turfjs/turf-simplify.svg?branch=master)](https://travis-ci.org/Turfjs/turf-simplify) [simplify](https://github.com/Turfjs/turf-simplify) - -[![Build Status](https://travis-ci.org/Turfjs/turf-union.svg?branch=master)](https://travis-ci.org/Turfjs/turf-union) [union](https://github.com/Turfjs/turf-union) - -[![Build Status](https://travis-ci.org/Turfjs/turf-merge.svg?branch=master)](https://travis-ci.org/Turfjs/turf-merge) [merge](https://github.com/Turfjs/turf-merge) - -[![Build Status](https://travis-ci.org/Turfjs/turf-intersect.svg?branch=master)](https://travis-ci.org/Turfjs/turf-intersect) [intersect](https://github.com/Turfjs/turf-intersect) - -[![Build Status](https://travis-ci.org/Turfjs/turf-erase.svg?branch=master)](https://travis-ci.org/Turfjs/turf-erase) [erase](https://github.com/Turfjs/turf-erase) - -[![Build Status](https://travis-ci.org/Turfjs/turf-convex.svg?branch=master)](https://travis-ci.org/Turfjs/turf-convex) [convex](https://github.com/Turfjs/turf-convex) - -[![Build Status](https://travis-ci.org/Turfjs/turf-concave.svg?branch=master)](https://travis-ci.org/Turfjs/turf-concave) [concave](https://github.com/Turfjs/turf-concave) - -####misc -[![Build Status](https://travis-ci.org/Turfjs/turf-flip.svg?branch=master)](https://travis-ci.org/Turfjs/turf-flip) [flip](https://github.com/Turfjs/turf-flip) - -[![Build Status](https://travis-ci.org/Turfjs/turf-explode.svg?branch=master)](https://travis-ci.org/Turfjs/turf-explode) [explode](https://github.com/Turfjs/turf-explode) - -[![Build Status](https://travis-ci.org/Turfjs/turf-combine.svg?branch=master)](https://travis-ci.org/Turfjs/turf-combine) [combine](https://github.com/Turfjs/turf-combine) - -[![Build Status](https://travis-ci.org/Turfjs/turf-is-clockwise.svg?branch=master)](https://travis-ci.org/Turfjs/turf-is-clockwise) [is-clockwise](https://github.com/Turfjs/turf-is-clockwise) - -[![Build Status](https://travis-ci.org/Turfjs/turf-kinks.svg?branch=master)](https://travis-ci.org/Turfjs/turf-kinks) [kinks](https://github.com/Turfjs/turf-kinks) diff --git a/bower.json b/bower.json index 7343a2e597..f152fca982 100644 --- a/bower.json +++ b/bower.json @@ -1,6 +1,5 @@ { "name": "turf", - "version": "1.4.0", "description": "", "homepage": "https://github.com/morganherlocker/turf", "main": "turf.min.js", diff --git a/circle.yml b/circle.yml new file mode 100644 index 0000000000..807a2a68d2 --- /dev/null +++ b/circle.yml @@ -0,0 +1,3 @@ +machine: + node: + version: 5 diff --git a/commit_all.sh b/commit_all.sh deleted file mode 100755 index 940a5060e4..0000000000 --- a/commit_all.sh +++ /dev/null @@ -1,7 +0,0 @@ -#!/bin/sh - -for d in turf_modules/*; do - (cd $d; git add .) - (cd $d; git commit -m "$1") - (cd $d; git push origin master) -done diff --git a/index.js b/index.js deleted file mode 100644 index a6d373f532..0000000000 --- a/index.js +++ /dev/null @@ -1,70 +0,0 @@ -/** - * Turf is a modular GIS engine written in JavaScript. It performs geospatial - * processing tasks with GeoJSON data and can be run on a server or in a browser. - * - * @module turf - * @summary GIS For Web Maps - */ -module.exports = { - isolines: require('turf-isolines'), - merge: require('turf-merge'), - convex: require('turf-convex'), - within: require('turf-within'), - concave: require('turf-concave'), - count: require('turf-count'), - erase: require('turf-erase'), - variance: require('turf-variance'), - deviation: require('turf-deviation'), - median: require('turf-median'), - min: require('turf-min'), - max: require('turf-max'), - aggregate: require('turf-aggregate'), - flip: require('turf-flip'), - simplify: require('turf-simplify'), - sum: require('turf-sum'), - average: require('turf-average'), - bezier: require('turf-bezier'), - tag: require('turf-tag'), - size: require('turf-size'), - sample: require('turf-sample'), - jenks: require('turf-jenks'), - quantile: require('turf-quantile'), - envelope: require('turf-envelope'), - square: require('turf-square'), - midpoint: require('turf-midpoint'), - buffer: require('turf-buffer'), - center: require('turf-center'), - centroid: require('turf-centroid'), - combine: require('turf-combine'), - distance: require('turf-distance'), - explode: require('turf-explode'), - extent: require('turf-extent'), - bboxPolygon: require('turf-bbox-polygon'), - featurecollection: require('turf-featurecollection'), - filter: require('turf-filter'), - inside: require('turf-inside'), - intersect: require('turf-intersect'), - linestring: require('turf-linestring'), - nearest: require('turf-nearest'), - planepoint: require('turf-planepoint'), - point: require('turf-point'), - polygon: require('turf-polygon'), - random: require('turf-random'), - reclass: require('turf-reclass'), - remove: require('turf-remove'), - tin: require('turf-tin'), - union: require('turf-union'), - bearing: require('turf-bearing'), - destination: require('turf-destination'), - kinks: require('turf-kinks'), - pointOnSurface: require('turf-point-on-surface'), - area: require('turf-area'), - along: require('turf-along'), - lineDistance: require('turf-line-distance'), - lineSlice: require('turf-line-slice'), - pointOnLine: require('turf-point-on-line'), - pointGrid: require('turf-point-grid'), - squareGrid: require('turf-square-grid'), - triangleGrid: require('turf-triangle-grid'), - hexGrid: require('turf-hex-grid') -}; diff --git a/lerna.json b/lerna.json new file mode 100644 index 0000000000..ed84b330d6 --- /dev/null +++ b/lerna.json @@ -0,0 +1,4 @@ +{ + "lerna": "2.0.0-beta.9", + "version": "3.0.5" +} diff --git a/npm-shrinkwrap.json b/npm-shrinkwrap.json deleted file mode 100644 index 345d0a7fac..0000000000 --- a/npm-shrinkwrap.json +++ /dev/null @@ -1,598 +0,0 @@ -{ - "name": "turf", - "version": "2.0.2", - "dependencies": { - "turf-aggregate": { - "version": "1.0.2", - "from": "turf-aggregate@1.0.2", - "resolved": "https://registry.npmjs.org/turf-aggregate/-/turf-aggregate-1.0.2.tgz" - }, - "turf-along": { - "version": "1.0.2", - "from": "turf-along@>=1.0.2 <2.0.0" - }, - "turf-area": { - "version": "1.1.1", - "from": "turf-area@>=1.1.1 <2.0.0", - "dependencies": { - "geojson-area": { - "version": "0.2.0", - "from": "geojson-area@>=0.2.0 <0.3.0", - "resolved": "https://registry.npmjs.org/geojson-area/-/geojson-area-0.2.0.tgz", - "dependencies": { - "wgs84": { - "version": "0.0.0", - "from": "wgs84@0.0.0", - "resolved": "https://registry.npmjs.org/wgs84/-/wgs84-0.0.0.tgz" - } - } - } - } - }, - "turf-average": { - "version": "1.1.1", - "from": "turf-average@1.1.1", - "resolved": "https://registry.npmjs.org/turf-average/-/turf-average-1.1.1.tgz" - }, - "turf-bbox-polygon": { - "version": "1.0.1", - "from": "turf-bbox-polygon@>=1.0.1 <2.0.0" - }, - "turf-bearing": { - "version": "1.0.1", - "from": "turf-bearing@1.0.1", - "resolved": "https://registry.npmjs.org/turf-bearing/-/turf-bearing-1.0.1.tgz" - }, - "turf-bezier": { - "version": "1.0.2", - "from": "turf-bezier@1.0.2", - "resolved": "https://registry.npmjs.org/turf-bezier/-/turf-bezier-1.0.2.tgz" - }, - "turf-buffer": { - "version": "1.0.1", - "from": "turf-buffer@1.0.1", - "resolved": "https://registry.npmjs.org/turf-buffer/-/turf-buffer-1.0.1.tgz", - "dependencies": { - "jsts": { - "version": "0.15.0", - "from": "jsts@>=0.15.0 <0.16.0", - "resolved": "https://registry.npmjs.org/jsts/-/jsts-0.15.0.tgz", - "dependencies": { - "javascript.util": { - "version": "0.12.5", - "resolved": "https://registry.npmjs.org/javascript.util/-/javascript.util-0.12.5.tgz" - } - } - } - } - }, - "turf-center": { - "version": "1.0.2", - "from": "turf-center@>=1.0.2 <2.0.0" - }, - "turf-centroid": { - "version": "1.1.2", - "from": "turf-centroid@>=1.1.2 <2.0.0", - "dependencies": { - "turf-meta": { - "version": "1.0.2", - "from": "turf-meta@>=1.0.2 <2.0.0" - } - } - }, - "turf-combine": { - "version": "1.0.2", - "from": "turf-combine@1.0.2", - "resolved": "https://registry.npmjs.org/turf-combine/-/turf-combine-1.0.2.tgz" - }, - "turf-concave": { - "version": "1.1.3", - "from": "turf-concave@1.1.3", - "resolved": "https://registry.npmjs.org/turf-concave/-/turf-concave-1.1.3.tgz" - }, - "turf-convex": { - "version": "1.0.1", - "from": "turf-convex@1.0.1", - "resolved": "https://registry.npmjs.org/turf-convex/-/turf-convex-1.0.1.tgz", - "dependencies": { - "convex-hull": { - "version": "1.0.3", - "from": "convex-hull@>=1.0.3 <2.0.0", - "resolved": "https://registry.npmjs.org/convex-hull/-/convex-hull-1.0.3.tgz", - "dependencies": { - "affine-hull": { - "version": "1.0.0", - "from": "affine-hull@>=1.0.0 <2.0.0", - "resolved": "https://registry.npmjs.org/affine-hull/-/affine-hull-1.0.0.tgz", - "dependencies": { - "robust-orientation": { - "version": "1.1.3", - "from": "robust-orientation@>=1.1.3 <2.0.0", - "resolved": "https://registry.npmjs.org/robust-orientation/-/robust-orientation-1.1.3.tgz", - "dependencies": { - "robust-scale": { - "version": "1.0.2", - "from": "robust-scale@>=1.0.2 <2.0.0", - "resolved": "https://registry.npmjs.org/robust-scale/-/robust-scale-1.0.2.tgz", - "dependencies": { - "two-sum": { - "version": "1.0.0", - "from": "two-sum@>=1.0.0 <2.0.0", - "resolved": "https://registry.npmjs.org/two-sum/-/two-sum-1.0.0.tgz" - } - } - }, - "robust-sum": { - "version": "1.0.0", - "from": "robust-sum@>=1.0.0 <2.0.0", - "resolved": "https://registry.npmjs.org/robust-sum/-/robust-sum-1.0.0.tgz" - }, - "two-product": { - "version": "1.0.2", - "from": "two-product@>=1.0.2 <2.0.0", - "resolved": "https://registry.npmjs.org/two-product/-/two-product-1.0.2.tgz" - }, - "robust-subtract": { - "version": "1.0.0", - "from": "robust-subtract@>=1.0.0 <2.0.0", - "resolved": "https://registry.npmjs.org/robust-subtract/-/robust-subtract-1.0.0.tgz" - } - } - } - } - }, - "incremental-convex-hull": { - "version": "1.0.1", - "from": "incremental-convex-hull@>=1.0.1 <2.0.0", - "resolved": "https://registry.npmjs.org/incremental-convex-hull/-/incremental-convex-hull-1.0.1.tgz", - "dependencies": { - "simplicial-complex": { - "version": "1.0.0", - "from": "simplicial-complex@>=1.0.0 <2.0.0", - "resolved": "https://registry.npmjs.org/simplicial-complex/-/simplicial-complex-1.0.0.tgz", - "dependencies": { - "bit-twiddle": { - "version": "1.0.2", - "from": "bit-twiddle@>=1.0.0 <2.0.0", - "resolved": "https://registry.npmjs.org/bit-twiddle/-/bit-twiddle-1.0.2.tgz" - }, - "union-find": { - "version": "1.0.2", - "from": "union-find@>=1.0.0 <2.0.0", - "resolved": "https://registry.npmjs.org/union-find/-/union-find-1.0.2.tgz" - } - } - }, - "robust-orientation": { - "version": "1.1.3", - "from": "robust-orientation@>=1.1.2 <2.0.0", - "resolved": "https://registry.npmjs.org/robust-orientation/-/robust-orientation-1.1.3.tgz", - "dependencies": { - "robust-scale": { - "version": "1.0.2", - "from": "robust-scale@>=1.0.2 <2.0.0", - "resolved": "https://registry.npmjs.org/robust-scale/-/robust-scale-1.0.2.tgz", - "dependencies": { - "two-sum": { - "version": "1.0.0", - "from": "two-sum@>=1.0.0 <2.0.0", - "resolved": "https://registry.npmjs.org/two-sum/-/two-sum-1.0.0.tgz" - } - } - }, - "robust-sum": { - "version": "1.0.0", - "from": "robust-sum@>=1.0.0 <2.0.0", - "resolved": "https://registry.npmjs.org/robust-sum/-/robust-sum-1.0.0.tgz" - }, - "two-product": { - "version": "1.0.2", - "from": "two-product@>=1.0.2 <2.0.0", - "resolved": "https://registry.npmjs.org/two-product/-/two-product-1.0.2.tgz" - }, - "robust-subtract": { - "version": "1.0.0", - "from": "robust-subtract@>=1.0.0 <2.0.0", - "resolved": "https://registry.npmjs.org/robust-subtract/-/robust-subtract-1.0.0.tgz" - } - } - } - } - }, - "monotone-convex-hull-2d": { - "version": "1.0.1", - "from": "monotone-convex-hull-2d@>=1.0.1 <2.0.0", - "resolved": "https://registry.npmjs.org/monotone-convex-hull-2d/-/monotone-convex-hull-2d-1.0.1.tgz", - "dependencies": { - "robust-orientation": { - "version": "1.1.3", - "from": "robust-orientation@>=1.1.3 <2.0.0", - "resolved": "https://registry.npmjs.org/robust-orientation/-/robust-orientation-1.1.3.tgz", - "dependencies": { - "robust-scale": { - "version": "1.0.2", - "from": "robust-scale@>=1.0.2 <2.0.0", - "resolved": "https://registry.npmjs.org/robust-scale/-/robust-scale-1.0.2.tgz", - "dependencies": { - "two-sum": { - "version": "1.0.0", - "from": "two-sum@>=1.0.0 <2.0.0", - "resolved": "https://registry.npmjs.org/two-sum/-/two-sum-1.0.0.tgz" - } - } - }, - "robust-sum": { - "version": "1.0.0", - "from": "robust-sum@>=1.0.0 <2.0.0", - "resolved": "https://registry.npmjs.org/robust-sum/-/robust-sum-1.0.0.tgz" - }, - "two-product": { - "version": "1.0.2", - "from": "two-product@>=1.0.2 <2.0.0", - "resolved": "https://registry.npmjs.org/two-product/-/two-product-1.0.2.tgz" - }, - "robust-subtract": { - "version": "1.0.0", - "from": "robust-subtract@>=1.0.0 <2.0.0", - "resolved": "https://registry.npmjs.org/robust-subtract/-/robust-subtract-1.0.0.tgz" - } - } - } - } - } - } - }, - "turf-meta": { - "version": "1.0.2", - "from": "turf-meta@>=1.0.2 <2.0.0" - } - } - }, - "turf-count": { - "version": "1.0.2", - "from": "turf-count@1.0.2", - "resolved": "https://registry.npmjs.org/turf-count/-/turf-count-1.0.2.tgz" - }, - "turf-destination": { - "version": "1.2.1", - "from": "turf-destination@>=1.2.1 <2.0.0" - }, - "turf-deviation": { - "version": "1.0.1", - "from": "turf-deviation@1.0.1", - "resolved": "https://registry.npmjs.org/turf-deviation/-/turf-deviation-1.0.1.tgz", - "dependencies": { - "simple-statistics": { - "version": "0.9.1", - "from": "simple-statistics@>=0.9.0 <0.10.0", - "resolved": "https://registry.npmjs.org/simple-statistics/-/simple-statistics-0.9.1.tgz" - } - } - }, - "turf-distance": { - "version": "1.0.1", - "from": "turf-distance@>=1.0.1 <2.0.0", - "dependencies": { - "turf-invariant": { - "version": "1.0.3", - "from": "turf-invariant@>=1.0.2 <2.0.0", - "resolved": "https://registry.npmjs.org/turf-invariant/-/turf-invariant-1.0.3.tgz" - } - } - }, - "turf-envelope": { - "version": "1.0.2", - "from": "turf-envelope@>=1.0.2 <1.1.0" - }, - "turf-erase": { - "version": "1.3.1", - "from": "turf-erase@1.3.1", - "resolved": "https://registry.npmjs.org/turf-erase/-/turf-erase-1.3.1.tgz", - "dependencies": { - "jsts": { - "version": "0.15.0", - "from": "jsts@>=0.15.0 <0.16.0", - "resolved": "https://registry.npmjs.org/jsts/-/jsts-0.15.0.tgz", - "dependencies": { - "javascript.util": { - "version": "0.12.5", - "resolved": "https://registry.npmjs.org/javascript.util/-/javascript.util-0.12.5.tgz" - } - } - } - } - }, - "turf-explode": { - "version": "1.0.1", - "from": "turf-explode@>=1.0.1 <2.0.0", - "dependencies": { - "turf-meta": { - "version": "1.0.2", - "from": "turf-meta@>=1.0.2 <2.0.0" - } - } - }, - "turf-extent": { - "version": "1.0.4", - "from": "turf-extent@>=1.0.4 <2.0.0", - "dependencies": { - "turf-meta": { - "version": "1.0.2", - "from": "turf-meta@>=1.0.2 <2.0.0" - } - } - }, - "turf-featurecollection": { - "version": "1.0.1", - "from": "turf-featurecollection@>=1.0.1 <1.1.0" - }, - "turf-filter": { - "version": "1.0.1", - "from": "turf-filter@>=1.0.1 <2.0.0" - }, - "turf-flip": { - "version": "1.0.3", - "from": "turf-flip@1.0.3", - "resolved": "https://registry.npmjs.org/turf-flip/-/turf-flip-1.0.3.tgz" - }, - "turf-hex-grid": { - "version": "2.0.1", - "from": "turf-hex-grid@>=2.0.1 <3.0.0" - }, - "turf-inside": { - "version": "1.1.4", - "from": "turf-inside@>=1.1.4 <2.0.0", - "dependencies": { - "minimist": { - "version": "1.1.1", - "from": "minimist@>=1.1.0 <2.0.0", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.1.1.tgz" - } - } - }, - "turf-intersect": { - "version": "1.4.1", - "from": "turf-intersect@1.4.1", - "resolved": "https://registry.npmjs.org/turf-intersect/-/turf-intersect-1.4.1.tgz", - "dependencies": { - "jsts": { - "version": "0.15.0", - "from": "jsts@>=0.15.0 <0.16.0", - "resolved": "https://registry.npmjs.org/jsts/-/jsts-0.15.0.tgz", - "dependencies": { - "javascript.util": { - "version": "0.12.5", - "resolved": "https://registry.npmjs.org/javascript.util/-/javascript.util-0.12.5.tgz" - } - } - } - } - }, - "turf-isolines": { - "version": "1.0.2", - "from": "turf-isolines@1.0.2", - "resolved": "https://registry.npmjs.org/turf-isolines/-/turf-isolines-1.0.2.tgz", - "dependencies": { - "turf-grid": { - "version": "1.0.1", - "from": "turf-grid@>=1.0.0 <2.0.0", - "resolved": "https://registry.npmjs.org/turf-grid/-/turf-grid-1.0.1.tgz" - } - } - }, - "turf-jenks": { - "version": "1.0.1", - "from": "turf-jenks@1.0.1", - "resolved": "https://registry.npmjs.org/turf-jenks/-/turf-jenks-1.0.1.tgz", - "dependencies": { - "simple-statistics": { - "version": "0.9.1", - "from": "simple-statistics@>=0.9.0 <0.10.0", - "resolved": "https://registry.npmjs.org/simple-statistics/-/simple-statistics-0.9.1.tgz" - } - } - }, - "turf-kinks": { - "version": "1.3.1", - "from": "turf-kinks@>=1.3.1 <2.0.0" - }, - "turf-line-distance": { - "version": "1.0.2", - "from": "turf-line-distance@>=1.0.2 <2.0.0" - }, - "turf-line-slice": { - "version": "1.3.4", - "from": "turf-line-slice@>=1.3.4 <2.0.0" - }, - "turf-linestring": { - "version": "1.0.2", - "from": "turf-linestring@>=1.0.2 <2.0.0" - }, - "turf-max": { - "version": "1.0.1", - "from": "turf-max@1.0.1", - "resolved": "https://registry.npmjs.org/turf-max/-/turf-max-1.0.1.tgz" - }, - "turf-median": { - "version": "1.0.2", - "from": "turf-median@1.0.2", - "resolved": "https://registry.npmjs.org/turf-median/-/turf-median-1.0.2.tgz" - }, - "turf-merge": { - "version": "1.0.2", - "from": "turf-merge@1.0.2", - "resolved": "https://registry.npmjs.org/turf-merge/-/turf-merge-1.0.2.tgz", - "dependencies": { - "clone": { - "version": "0.2.0", - "from": "clone@>=0.2.0 <0.3.0", - "resolved": "https://registry.npmjs.org/clone/-/clone-0.2.0.tgz" - } - } - }, - "turf-midpoint": { - "version": "1.0.1", - "from": "turf-midpoint@>=1.0.1 <2.0.0" - }, - "turf-min": { - "version": "1.0.1", - "from": "turf-min@1.0.1", - "resolved": "https://registry.npmjs.org/turf-min/-/turf-min-1.0.1.tgz" - }, - "turf-nearest": { - "version": "1.0.2", - "from": "turf-nearest@>=1.0.2 <2.0.0" - }, - "turf-planepoint": { - "version": "1.0.1", - "from": "turf-planepoint@1.0.1", - "resolved": "https://registry.npmjs.org/turf-planepoint/-/turf-planepoint-1.0.1.tgz" - }, - "turf-point": { - "version": "2.0.1", - "from": "turf-point@>=2.0.1 <3.0.0", - "dependencies": { - "minimist": { - "version": "1.1.1", - "from": "minimist@>=1.1.0 <2.0.0", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.1.1.tgz" - } - } - }, - "turf-point-grid": { - "version": "2.0.0", - "from": "turf-point-grid@>=2.0.0 <3.0.0" - }, - "turf-point-on-line": { - "version": "1.0.2", - "from": "turf-point-on-line@>=1.0.2 <2.0.0" - }, - "turf-point-on-surface": { - "version": "1.1.1", - "from": "turf-point-on-surface@>=1.1.1 <2.0.0" - }, - "turf-polygon": { - "version": "1.0.3", - "from": "turf-polygon@>=1.0.3 <2.0.0" - }, - "turf-quantile": { - "version": "1.0.1", - "from": "turf-quantile@1.0.1", - "resolved": "https://registry.npmjs.org/turf-quantile/-/turf-quantile-1.0.1.tgz", - "dependencies": { - "simple-statistics": { - "version": "0.9.1", - "from": "simple-statistics@>=0.9.0 <0.10.0", - "resolved": "https://registry.npmjs.org/simple-statistics/-/simple-statistics-0.9.1.tgz" - } - } - }, - "turf-random": { - "version": "1.0.2", - "from": "turf-random@>=1.0.2 <2.0.0", - "resolved": "https://registry.npmjs.org/turf-random/-/turf-random-1.0.2.tgz", - "dependencies": { - "geojson-random": { - "version": "0.2.2", - "from": "geojson-random@>=0.2.2 <0.3.0", - "resolved": "https://registry.npmjs.org/geojson-random/-/geojson-random-0.2.2.tgz" - } - } - }, - "turf-reclass": { - "version": "1.0.1", - "from": "turf-reclass@1.0.1", - "resolved": "https://registry.npmjs.org/turf-reclass/-/turf-reclass-1.0.1.tgz" - }, - "turf-remove": { - "version": "1.0.1", - "from": "turf-remove@>=1.0.1 <2.0.0" - }, - "turf-sample": { - "version": "1.0.1", - "from": "turf-sample@>=1.0.1 <2.0.0" - }, - "turf-simplify": { - "version": "1.0.3", - "from": "turf-simplify@>=1.0.3 <2.0.0", - "dependencies": { - "simplify-js": { - "version": "1.2.1", - "from": "simplify-js@>=1.2.1 <2.0.0", - "resolved": "https://registry.npmjs.org/simplify-js/-/simplify-js-1.2.1.tgz" - } - } - }, - "turf-size": { - "version": "1.1.1", - "from": "turf-size@>=1.1.1 <2.0.0" - }, - "turf-square": { - "version": "1.0.1", - "from": "turf-square@>=1.0.1 <2.0.0" - }, - "turf-square-grid": { - "version": "1.0.1", - "from": "turf-square-grid@>=1.0.0 <2.0.0" - }, - "turf-sum": { - "version": "1.0.1", - "from": "turf-sum@1.0.1", - "resolved": "https://registry.npmjs.org/turf-sum/-/turf-sum-1.0.1.tgz" - }, - "turf-tag": { - "version": "1.0.1", - "from": "turf-tag@>=1.0.1 <1.1.0" - }, - "turf-tin": { - "version": "1.0.6", - "from": "turf-tin@1.0.6", - "resolved": "https://registry.npmjs.org/turf-tin/-/turf-tin-1.0.6.tgz" - }, - "turf-triangle-grid": { - "version": "1.0.1", - "from": "turf-triangle-grid@>=1.0.0 <2.0.0", - "dependencies": { - "benchmark": { - "version": "1.0.0", - "from": "benchmark@>=1.0.0 <2.0.0", - "resolved": "https://registry.npmjs.org/benchmark/-/benchmark-1.0.0.tgz" - } - } - }, - "turf-union": { - "version": "1.0.1", - "from": "turf-union@1.0.1", - "resolved": "https://registry.npmjs.org/turf-union/-/turf-union-1.0.1.tgz", - "dependencies": { - "jsts": { - "version": "0.15.0", - "from": "jsts@>=0.15.0 <0.16.0", - "resolved": "https://registry.npmjs.org/jsts/-/jsts-0.15.0.tgz", - "dependencies": { - "javascript.util": { - "version": "0.12.5", - "resolved": "https://registry.npmjs.org/javascript.util/-/javascript.util-0.12.5.tgz" - } - } - } - } - }, - "turf-variance": { - "version": "1.0.1", - "from": "turf-variance@1.0.1", - "resolved": "https://registry.npmjs.org/turf-variance/-/turf-variance-1.0.1.tgz", - "dependencies": { - "simple-statistics": { - "version": "0.9.1", - "from": "simple-statistics@>=0.9.0 <0.10.0", - "resolved": "https://registry.npmjs.org/simple-statistics/-/simple-statistics-0.9.1.tgz" - } - } - }, - "turf-within": { - "version": "1.0.1", - "from": "turf-within@>=1.0.1 <2.0.0" - } - } -} diff --git a/package.json b/package.json index 90dc4c5c9f..51ec564eca 100644 --- a/package.json +++ b/package.json @@ -1,28 +1,10 @@ { - "name": "turf", - "version": "2.0.2", + "private": true, + "version": "3.0.0", "description": "a node.js library for performing geospatial operations with geojson", - "main": "index.js", "scripts": { - "test": "node test.js", - "build": "browserify index.js -s turf > turf.js && uglifyjs turf.js -c -m > turf.min.js;", - "doc": "jsdoc index.js ./node_modules/turf-*/index.js", - "lint": "eslint --no-ignore ./node_modules/turf-*/index.js", - "size": "browserify index.js --full-paths -s turf | uglifyjs -c -m | discify | hcat" - }, - "eslintConfig": { - "rules": { - "quotes": 0, - "curly": 0, - "camelcase": 0, - "space-infix-ops": 0, - "comma-spacing": 0, - "no-use-before-define": 0, - "strict": 0 - }, - "env": { - "node": true - } + "test": "npm run lint && lerna bootstrap && lerna run test", + "lint": "eslint packages" }, "repository": { "type": "git", @@ -58,78 +40,14 @@ "author": "morganherlocker", "license": "MIT", "bugs": { - "url": "https://github.com/morganherlocker/turf/issues" - }, - "dependencies": { - "turf-aggregate": "1.0.2", - "turf-along": "^1.0.2", - "turf-area": "^1.1.1", - "turf-average": "1.1.1", - "turf-bbox-polygon": "^1.0.1", - "turf-bearing": "1.0.1", - "turf-bezier": "1.0.2", - "turf-buffer": "1.0.1", - "turf-center": "^1.0.2", - "turf-centroid": "^1.1.2", - "turf-combine": "1.0.2", - "turf-concave": "1.1.3", - "turf-convex": "1.0.1", - "turf-count": "1.0.2", - "turf-destination": "^1.2.1", - "turf-deviation": "1.0.1", - "turf-distance": "^1.0.1", - "turf-envelope": "~1.0.2", - "turf-erase": "1.3.1", - "turf-explode": "^1.0.1", - "turf-extent": "^1.0.4", - "turf-featurecollection": "~1.0.1", - "turf-filter": "^1.0.1", - "turf-flip": "1.0.3", - "turf-hex-grid": "^2.0.1", - "turf-inside": "^1.1.4", - "turf-intersect": "1.4.1", - "turf-isolines": "1.0.2", - "turf-jenks": "1.0.1", - "turf-kinks": "^1.3.1", - "turf-line-distance": "^1.0.2", - "turf-line-slice": "^1.3.4", - "turf-linestring": "^1.0.2", - "turf-max": "1.0.1", - "turf-median": "1.0.2", - "turf-merge": "1.0.2", - "turf-midpoint": "^1.0.1", - "turf-min": "1.0.1", - "turf-nearest": "^1.0.2", - "turf-planepoint": "1.0.1", - "turf-point": "^2.0.1", - "turf-point-grid": "^2.0.0", - "turf-point-on-line": "^1.0.2", - "turf-point-on-surface": "^1.1.1", - "turf-polygon": "^1.0.3", - "turf-quantile": "1.0.1", - "turf-random": "^1.0.2", - "turf-reclass": "1.0.1", - "turf-remove": "^1.0.1", - "turf-sample": "^1.0.1", - "turf-simplify": "^1.0.3", - "turf-size": "^1.1.1", - "turf-square": "^1.0.1", - "turf-square-grid": "^1.0.0", - "turf-sum": "1.0.1", - "turf-tag": "~1.0.1", - "turf-tin": "1.0.6", - "turf-triangle-grid": "^1.0.0", - "turf-union": "1.0.1", - "turf-variance": "1.0.1", - "turf-within": "^1.0.1" + "url": "https://github.com/Turfjs/turf/issues" }, + "dependencies": { }, "devDependencies": { - "browserify": "~9.0.3", - "disc": "^1.3.2", - "eslint": "^0.15.0", - "hcat": "0.0.5", - "jsdoc": "^3.3.0-beta1", - "tape": "^3.5.0", + "browserify": "^13.0.0", + "eslint": "^2.0.0", + "eslint-config-mourner": "^2.0.0", + "lerna": "2.0.0-beta.9", "uglify-js": "~2.4.16" } } diff --git a/packages/turf-along/.npmignore b/packages/turf-along/.npmignore new file mode 100644 index 0000000000..bb3c08c09a --- /dev/null +++ b/packages/turf-along/.npmignore @@ -0,0 +1,2 @@ +test +coverage diff --git a/packages/turf-along/LICENSE b/packages/turf-along/LICENSE new file mode 100644 index 0000000000..87a514a46d --- /dev/null +++ b/packages/turf-along/LICENSE @@ -0,0 +1,22 @@ +The MIT License (MIT) + +Copyright (c) 2015 turf + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + diff --git a/packages/turf-along/README.md b/packages/turf-along/README.md new file mode 100644 index 0000000000..1c741ce79d --- /dev/null +++ b/packages/turf-along/README.md @@ -0,0 +1,68 @@ +# turf-along + +[![build status](https://secure.travis-ci.org/Turfjs/turf-along.png)](http://travis-ci.org/Turfjs/turf-along) + + + + +### `turf.along(line, distance, [units=miles])` + +Takes a LineString|line and returns a Point|point at a specified distance along the line. + + +### Parameters + +| parameter | type | description | +| --------------- | ----------------------- | --------------------------------------------------------- | +| `line` | Feature\.\ | input line | +| `distance` | Number | distance along the line | +| `[units=miles]` | String | _optional:_ can be degrees, radians, miles, or kilometers | + + +### Example + +```js +var line = { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "LineString", + "coordinates": [ + [-77.031669, 38.878605], + [-77.029609, 38.881946], + [-77.020339, 38.884084], + [-77.025661, 38.885821], + [-77.021884, 38.889563], + [-77.019824, 38.892368] + ] + } +}; + +var along = turf.along(line, 1, 'miles'); + +var result = { + "type": "FeatureCollection", + "features": [line, along] +}; + +//=result +``` + + +**Returns** `Feature.`, Point `distance` `units` along the line + +## Installation + +Requires [nodejs](http://nodejs.org/). + +```sh +$ npm install turf-along +``` + +## Tests + +```sh +$ npm test +``` + + diff --git a/packages/turf-along/bench.js b/packages/turf-along/bench.js new file mode 100644 index 0000000000..1175c82667 --- /dev/null +++ b/packages/turf-along/bench.js @@ -0,0 +1,64 @@ +var along = require('./'); +var Benchmark = require('benchmark'); +var fs = require('fs'); + +var line = { + type: "Feature", + properties: {}, + geometry: { + type: "LineString", + coordinates: [ + [ + -77.0316696166992, + 38.878605901789236 + ], + [ + -77.02960968017578, + 38.88194668656296 + ], + [ + -77.02033996582031, + 38.88408470638821 + ], + [ + -77.02566146850586, + 38.885821800123196 + ], + [ + -77.02188491821289, + 38.88956308852534 + ], + [ + -77.01982498168944, + 38.89236892551996 + ] + ] + } +}; + +var route = JSON.parse(fs.readFileSync(__dirname + '/test/fixtures/route.geojson')); + +var suite = new Benchmark.Suite('turf-along'); +suite + .add('turf-along',function () { + along(line, 1, 'miles'); + }) + .add('turf-along#route 1 mile',function () { + along(route, 1, 'miles'); + }) + .add('turf-along#route 10 miles',function () { + along(route, 10, 'miles'); + }) + .add('turf-along#route 50 miles',function () { + along(route, 50, 'miles'); + }) + .add('turf-along#route 100 miles',function () { + along(route, 100, 'miles'); + }) + .on('cycle', function (event) { + console.log(String(event.target)); + }) + .on('complete', function () { + + }) + .run(); diff --git a/packages/turf-along/index.js b/packages/turf-along/index.js new file mode 100644 index 0000000000..0f36c83f5a --- /dev/null +++ b/packages/turf-along/index.js @@ -0,0 +1,63 @@ +var distance = require('turf-distance'); +var point = require('turf-helpers').point; +var bearing = require('turf-bearing'); +var destination = require('turf-destination'); + +/** + * Takes a {@link LineString|line} and returns a {@link Point|point} at a specified distance along the line. + * + * @name along + * @category measurement + * @param {Feature} line input line + * @param {Number} distance distance along the line + * @param {String} [units=miles] can be degrees, radians, miles, or kilometers + * @return {Feature} Point `distance` `units` along the line + * @example + * var line = { + * "type": "Feature", + * "properties": {}, + * "geometry": { + * "type": "LineString", + * "coordinates": [ + * [-77.031669, 38.878605], + * [-77.029609, 38.881946], + * [-77.020339, 38.884084], + * [-77.025661, 38.885821], + * [-77.021884, 38.889563], + * [-77.019824, 38.892368] + * ] + * } + * }; + * + * var along = turf.along(line, 1, 'miles'); + * + * var result = { + * "type": "FeatureCollection", + * "features": [line, along] + * }; + * + * //=result + */ +module.exports = function (line, dist, units) { + var coords; + if (line.type === 'Feature') coords = line.geometry.coordinates; + else if (line.type === 'LineString') coords = line.coordinates; + else throw new Error('input must be a LineString Feature or Geometry'); + + var travelled = 0; + for (var i = 0; i < coords.length; i++) { + if (dist >= travelled && i === coords.length - 1) break; + else if (travelled >= dist) { + var overshot = dist - travelled; + if (!overshot) return point(coords[i]); + else { + var direction = bearing(coords[i], coords[i - 1]) - 180; + var interpolated = destination(coords[i], overshot, direction, units); + return interpolated; + } + } else { + travelled += distance(coords[i], coords[i + 1], units); + } + } + return point(coords[coords.length - 1]); +}; diff --git a/packages/turf-along/package.json b/packages/turf-along/package.json new file mode 100644 index 0000000000..2b8ab9182c --- /dev/null +++ b/packages/turf-along/package.json @@ -0,0 +1,37 @@ +{ + "name": "turf-along", + "version": "3.0.5", + "description": "", + "main": "index.js", + "scripts": { + "test": "node test.js" + }, + "repository": { + "type": "git", + "url": "https://github.com/Turfjs/turf-along.git" + }, + "keywords": [ + "along", + "line", + "linestring", + "turf", + "distance" + ], + "author": "morganherlocker", + "license": "MIT", + "bugs": { + "url": "https://github.com/Turfjs/turf-along/issues" + }, + "homepage": "https://github.com/Turfjs/turf-along", + "devDependencies": { + "benchmark": "^1.0.0", + "tape": "^3.5.0", + "turf-helpers": "^3.0.5" + }, + "dependencies": { + "turf-bearing": "^3.0.1", + "turf-destination": "^3.0.5", + "turf-distance": "^3.0.5", + "turf-helpers": "^3.0.5" + } +} diff --git a/packages/turf-along/test.js b/packages/turf-along/test.js new file mode 100644 index 0000000000..c9e9626fd9 --- /dev/null +++ b/packages/turf-along/test.js @@ -0,0 +1,29 @@ +var test = require('tape'); +var fs = require('fs'); +var along = require('./'); +var featurecollection = require('turf-helpers').featureCollection; + +var line = JSON.parse(fs.readFileSync(__dirname + '/test/fixtures/dc-line.geojson')); + +test('turf-along', function (t) { + var pt1 = along(line, 1, 'miles'); + var pt2 = along(line.geometry, 1.2, 'miles'); + var pt3 = along(line, 1.4, 'miles'); + var pt4 = along(line.geometry, 1.6, 'miles'); + var pt5 = along(line, 1.8, 'miles'); + var pt6 = along(line.geometry, 2, 'miles'); + var pt7 = along(line, 100, 'miles'); + var pt8 = along(line.geometry, 0, 'miles'); + var fc = featurecollection([pt1,pt2,pt3,pt4,pt5,pt6,pt7,pt8]); + + fc.features.forEach(function (f) { + t.ok(f); + t.equal(f.type, 'Feature'); + t.equal(f.geometry.type, 'Point'); + }); + t.equal(fc.features.length, 8); + t.equal(fc.features[7].geometry.coordinates[0], pt8.geometry.coordinates[0]); + t.equal(fc.features[7].geometry.coordinates[1], pt8.geometry.coordinates[1]); + + t.end(); +}); diff --git a/packages/turf-along/test/fixtures/dc-line.geojson b/packages/turf-along/test/fixtures/dc-line.geojson new file mode 100644 index 0000000000..2ce6ac568a --- /dev/null +++ b/packages/turf-along/test/fixtures/dc-line.geojson @@ -0,0 +1,77 @@ +{ + "type": "Feature", + "properties": {}, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -77.0316696166992, + 38.878605901789236 + ], + [ + -77.02960968017578, + 38.88194668656296 + ], + [ + -77.02033996582031, + 38.88408470638821 + ], + [ + -77.02566146850586, + 38.885821800123196 + ], + [ + -77.02188491821289, + 38.88956308852534 + ], + [ + -77.01982498168944, + 38.89236892551996 + ], + [ + -77.02291488647461, + 38.89370499941828 + ], + [ + -77.02291488647461, + 38.89958342598271 + ], + [ + -77.01896667480469, + 38.90011780426885 + ], + [ + -77.01845169067383, + 38.90733151751689 + ], + [ + -77.02291488647461, + 38.907865837489105 + ], + [ + -77.02377319335936, + 38.91200668090932 + ], + [ + -77.02995300292969, + 38.91254096569048 + ], + [ + -77.03338623046875, + 38.91708222394378 + ], + [ + -77.03784942626953, + 38.920821865485834 + ], + [ + -77.03115463256836, + 38.92830055730587 + ], + [ + -77.03596115112305, + 38.931505469602044 + ] + ] + } + } diff --git a/packages/turf-along/test/fixtures/dc-points.geojson b/packages/turf-along/test/fixtures/dc-points.geojson new file mode 100644 index 0000000000..bd19be8658 --- /dev/null +++ b/packages/turf-along/test/fixtures/dc-points.geojson @@ -0,0 +1,115 @@ +{ + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -77.0316696166992, + 38.87406218243845 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -77.02325820922852, + 38.885688179036094 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -77.0222282409668, + 38.89744587262311 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -77.02377319335936, + 38.910804525446686 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -77.02840805053711, + 38.91441093075183 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -77.02840805053711, + 38.92402711565758 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -77.04008102416992, + 38.932707274379595 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -76.99390411376953, + 38.91387666004744 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -77.03269958496094, + 38.898648254305215 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -77.02342987060545, + 38.870587377511235 + ] + } + } + ] +} \ No newline at end of file diff --git a/packages/turf-along/test/fixtures/route.geojson b/packages/turf-along/test/fixtures/route.geojson new file mode 100644 index 0000000000..8c19389b35 --- /dev/null +++ b/packages/turf-along/test/fixtures/route.geojson @@ -0,0 +1,2 @@ + +{ "type": "Feature", "properties": { "name": null, "cmt": null, "desc": null, "src": null, "link1_href": null, "link1_text": null, "link1_type": null, "link2_href": null, "link2_text": null, "link2_type": null, "number": null, "type": null }, "geometry": { "type": "LineString", "coordinates": [ [ -79.254923, 36.98394 ], [ -79.254923, 36.983939 ], [ -79.255326, 36.9838 ], [ -79.255401, 36.983774 ], [ -79.25576, 36.983664 ], [ -79.256795, 36.984137 ], [ -79.257537, 36.984478 ], [ -79.258539, 36.984925 ], [ -79.259498, 36.985353 ], [ -79.260286, 36.985712 ], [ -79.261405, 36.986222 ], [ -79.262933, 36.986928 ], [ -79.263237, 36.987071 ], [ -79.263755, 36.987296 ], [ -79.264086, 36.987423 ], [ -79.264167, 36.987446 ], [ -79.264338, 36.987486 ], [ -79.264414, 36.987501 ], [ -79.264618, 36.987531 ], [ -79.2648, 36.987542 ], [ -79.264982, 36.987537 ], [ -79.265163, 36.987517 ], [ -79.26703, 36.987355 ], [ -79.267952, 36.98726 ], [ -79.268404, 36.987226 ], [ -79.268771, 36.987197 ], [ -79.26955, 36.987117 ], [ -79.271398, 36.986946 ], [ -79.271488, 36.986941 ], [ -79.271698, 36.986925 ], [ -79.271936, 36.986898 ], [ -79.272231, 36.986852 ], [ -79.272474, 36.986785 ], [ -79.272711, 36.986705 ], [ -79.272895, 36.986632 ], [ -79.273059, 36.986552 ], [ -79.273646, 36.986245 ], [ -79.274224, 36.985925 ], [ -79.274887, 36.985592 ], [ -79.275308, 36.985365 ], [ -79.275672, 36.98517 ], [ -79.276249, 36.984876 ], [ -79.277101, 36.984433 ], [ -79.277425, 36.984259 ], [ -79.277918, 36.983982 ], [ -79.27799, 36.98395 ], [ -79.278179, 36.98385 ], [ -79.278261, 36.9838 ], [ -79.278335, 36.983745 ], [ -79.278421, 36.983666 ], [ -79.27844, 36.983647 ], [ -79.278502, 36.983577 ], [ -79.278548, 36.983511 ], [ -79.278614, 36.983381 ], [ -79.278654, 36.983273 ], [ -79.278711, 36.983011 ], [ -79.278763, 36.98269 ], [ -79.278806, 36.982485 ], [ -79.278866, 36.982282 ], [ -79.278952, 36.982101 ], [ -79.279023, 36.981984 ], [ -79.280178, 36.980418 ], [ -79.280259, 36.980319 ], [ -79.280355, 36.980229 ], [ -79.280419, 36.98018 ], [ -79.280578, 36.980082 ], [ -79.280666, 36.980038 ], [ -79.280783, 36.979994 ], [ -79.280908, 36.979963 ], [ -79.281301, 36.979913 ], [ -79.281646, 36.979874 ], [ -79.282145, 36.979835 ], [ -79.282797, 36.97977 ], [ -79.283144, 36.979743 ], [ -79.283618, 36.97972 ], [ -79.28399, 36.979706 ], [ -79.284447, 36.979695 ], [ -79.284904, 36.979697 ], [ -79.286913, 36.979638 ], [ -79.287201, 36.979628 ], [ -79.287954, 36.979612 ], [ -79.288037, 36.979611 ], [ -79.288397, 36.97962 ], [ -79.288697, 36.979643 ], [ -79.289908, 36.979722 ], [ -79.289994, 36.979724 ], [ -79.290136, 36.979716 ], [ -79.290248, 36.979699 ], [ -79.290503, 36.979632 ], [ -79.291043, 36.979454 ], [ -79.291563, 36.979269 ], [ -79.292467, 36.97896 ], [ -79.292759, 36.978877 ], [ -79.292963, 36.978832 ], [ -79.293286, 36.978778 ], [ -79.293549, 36.978746 ], [ -79.293649, 36.978738 ], [ -79.293755, 36.978729 ], [ -79.293858, 36.978731 ], [ -79.294028, 36.978747 ], [ -79.294162, 36.978771 ], [ -79.294243, 36.9788 ], [ -79.294439, 36.978883 ], [ -79.294626, 36.978979 ], [ -79.294782, 36.979072 ], [ -79.294921, 36.979174 ], [ -79.295023, 36.979263 ], [ -79.295281, 36.979534 ], [ -79.295458, 36.979739 ], [ -79.296347, 36.980843 ], [ -79.296549, 36.981064 ], [ -79.296594, 36.981095 ], [ -79.296695, 36.981144 ], [ -79.296788, 36.98117 ], [ -79.296916, 36.981184 ], [ -79.297032, 36.981182 ], [ -79.297147, 36.981165 ], [ -79.297933, 36.980962 ], [ -79.298145, 36.980893 ], [ -79.298401, 36.98079 ], [ -79.298602, 36.980696 ], [ -79.298795, 36.980593 ], [ -79.299134, 36.980402 ], [ -79.299407, 36.980244 ], [ -79.299963, 36.9799 ], [ -79.301767, 36.97881 ], [ -79.301976, 36.978691 ], [ -79.3021, 36.978619 ], [ -79.302508, 36.978369 ], [ -79.302614, 36.978309 ], [ -79.3028, 36.97822 ], [ -79.302995, 36.978145 ], [ -79.303113, 36.978114 ], [ -79.303153, 36.978249 ], [ -79.303232, 36.978565 ], [ -79.303319, 36.978989 ], [ -79.303326, 36.979184 ], [ -79.303313, 36.979346 ], [ -79.30324, 36.979748 ], [ -79.303136, 36.980362 ], [ -79.303088, 36.980609 ], [ -79.302996, 36.981143 ], [ -79.302982, 36.981226 ], [ -79.302977, 36.981321 ], [ -79.302986, 36.98144 ], [ -79.303013, 36.981556 ], [ -79.303057, 36.98167 ], [ -79.303191, 36.9819 ], [ -79.303336, 36.982126 ], [ -79.303702, 36.982652 ], [ -79.304322, 36.983486 ], [ -79.304588, 36.98382 ], [ -79.304756, 36.984051 ], [ -79.304903, 36.984229 ], [ -79.305059, 36.984403 ], [ -79.305145, 36.984487 ], [ -79.305336, 36.984648 ], [ -79.305612, 36.98486 ], [ -79.30569, 36.984915 ], [ -79.305765, 36.984974 ], [ -79.305944, 36.98513 ], [ -79.306108, 36.985295 ], [ -79.306259, 36.985469 ], [ -79.306333, 36.98557 ], [ -79.306437, 36.985737 ], [ -79.306524, 36.985911 ], [ -79.306595, 36.98609 ], [ -79.306677, 36.986365 ], [ -79.306734, 36.98662 ], [ -79.306773, 36.986878 ], [ -79.306759, 36.986998 ], [ -79.306724, 36.987146 ], [ -79.306621, 36.987426 ], [ -79.306591, 36.987545 ], [ -79.306555, 36.987745 ], [ -79.306536, 36.987984 ], [ -79.30653, 36.988172 ], [ -79.306539, 36.988321 ], [ -79.30655, 36.988398 ], [ -79.306566, 36.988507 ], [ -79.306673, 36.988967 ], [ -79.306789, 36.989416 ], [ -79.30681, 36.989518 ], [ -79.306831, 36.98969 ], [ -79.306833, 36.989828 ], [ -79.306822, 36.989888 ], [ -79.306771, 36.990067 ], [ -79.306696, 36.99024 ], [ -79.306569, 36.990463 ], [ -79.306374, 36.99078 ], [ -79.30633, 36.990863 ], [ -79.306292, 36.990972 ], [ -79.306271, 36.991084 ], [ -79.306268, 36.991229 ], [ -79.306282, 36.991421 ], [ -79.306323, 36.991648 ], [ -79.30657, 36.992516 ], [ -79.306601, 36.992703 ], [ -79.306614, 36.992892 ], [ -79.306598, 36.993111 ], [ -79.306569, 36.993287 ], [ -79.306553, 36.993345 ], [ -79.306526, 36.993432 ], [ -79.306466, 36.993574 ], [ -79.306313, 36.993848 ], [ -79.305971, 36.994382 ], [ -79.305826, 36.994647 ], [ -79.305382, 36.995598 ], [ -79.305197, 36.995963 ], [ -79.305065, 36.996284 ], [ -79.304983, 36.996521 ], [ -79.304954, 36.99668 ], [ -79.30495, 36.996815 ], [ -79.304959, 36.996932 ], [ -79.304988, 36.997077 ], [ -79.305024, 36.99719 ], [ -79.305111, 36.99739 ], [ -79.305197, 36.997567 ], [ -79.30532, 36.997782 ], [ -79.305429, 36.997949 ], [ -79.305577, 36.998153 ], [ -79.306017, 36.99873 ], [ -79.306204, 36.998965 ], [ -79.306407, 36.999192 ], [ -79.306624, 36.999411 ], [ -79.30672, 36.999489 ], [ -79.306828, 36.999557 ], [ -79.306922, 36.999602 ], [ -79.307072, 36.999656 ], [ -79.307354, 36.999723 ], [ -79.307628, 36.999778 ], [ -79.308892, 36.999988 ], [ -79.309029, 37.00002 ], [ -79.309135, 37.000056 ], [ -79.30926, 37.000112 ], [ -79.309374, 37.00018 ], [ -79.309478, 37.000259 ], [ -79.30959, 37.000372 ], [ -79.309743, 37.000552 ], [ -79.31029, 37.001344 ], [ -79.31037, 37.001451 ], [ -79.310486, 37.001568 ], [ -79.310598, 37.001654 ], [ -79.310697, 37.001714 ], [ -79.310838, 37.001785 ], [ -79.310991, 37.001844 ], [ -79.31115, 37.001891 ], [ -79.311632, 37.001979 ], [ -79.312359, 37.002135 ], [ -79.312455, 37.002156 ], [ -79.312915, 37.002271 ], [ -79.313026, 37.002296 ], [ -79.313639, 37.002422 ], [ -79.314311, 37.002515 ], [ -79.314769, 37.002553 ], [ -79.315227, 37.002582 ], [ -79.315352, 37.002604 ], [ -79.315472, 37.002641 ], [ -79.315543, 37.002685 ], [ -79.315621, 37.00275 ], [ -79.315685, 37.002824 ], [ -79.315725, 37.002889 ], [ -79.315888, 37.002832 ], [ -79.316221, 37.002733 ], [ -79.316448, 37.002678 ], [ -79.31752, 37.002455 ], [ -79.318524, 37.002275 ], [ -79.319059, 37.002211 ], [ -79.319268, 37.002199 ], [ -79.319435, 37.0022 ], [ -79.319651, 37.002214 ], [ -79.319786, 37.002226 ], [ -79.320258, 37.002279 ], [ -79.320522, 37.002298 ], [ -79.320786, 37.002302 ], [ -79.320953, 37.002288 ], [ -79.321116, 37.002258 ], [ -79.321274, 37.002213 ], [ -79.321381, 37.00217 ], [ -79.321762, 37.002001 ], [ -79.322382, 37.001698 ], [ -79.322844, 37.001466 ], [ -79.323023, 37.001376 ], [ -79.323292, 37.001249 ], [ -79.32357, 37.001134 ], [ -79.323943, 37.001003 ], [ -79.324098, 37.000958 ], [ -79.324162, 37.000945 ], [ -79.32513, 37.000843 ], [ -79.325325, 37.000814 ], [ -79.325517, 37.000777 ], [ -79.325753, 37.000719 ], [ -79.327186, 37.000266 ], [ -79.327482, 37.000173 ], [ -79.327802, 37.00008 ], [ -79.328598, 36.999838 ], [ -79.329158, 36.999654 ], [ -79.329204, 36.999715 ], [ -79.329343, 36.999894 ], [ -79.32942, 36.999975 ], [ -79.329588, 37.000125 ], [ -79.329742, 37.000239 ], [ -79.329777, 37.000256 ], [ -79.329869, 37.000291 ], [ -79.329988, 37.000315 ], [ -79.330091, 37.000318 ], [ -79.33027, 37.000316 ], [ -79.330449, 37.000298 ], [ -79.331035, 37.000223 ], [ -79.331427, 37.000184 ], [ -79.331855, 37.000129 ], [ -79.333009, 37.000023 ], [ -79.334568, 36.999869 ], [ -79.335002, 36.999826 ], [ -79.33552, 36.999806 ], [ -79.33606, 36.999814 ], [ -79.336208, 36.999833 ], [ -79.336352, 36.999866 ], [ -79.33649, 36.999913 ], [ -79.336644, 36.999986 ], [ -79.336856, 37.000123 ], [ -79.336962, 37.000203 ], [ -79.337096, 37.000316 ], [ -79.337325, 37.000539 ], [ -79.337519, 37.000761 ], [ -79.338522, 37.001965 ], [ -79.339126, 37.002688 ], [ -79.339574, 37.003185 ], [ -79.340385, 37.004106 ], [ -79.340479, 37.004212 ], [ -79.340603, 37.004341 ], [ -79.340773, 37.00449 ], [ -79.340929, 37.004602 ], [ -79.341131, 37.004723 ], [ -79.341632, 37.004968 ], [ -79.341875, 37.005087 ], [ -79.342172, 37.005233 ], [ -79.342594, 37.00542 ], [ -79.343189, 37.005708 ], [ -79.343817, 37.006011 ], [ -79.344455, 37.006335 ], [ -79.344712, 37.00647 ], [ -79.345697, 37.006916 ], [ -79.345837, 37.006985 ], [ -79.346006, 37.00708 ], [ -79.346221, 37.007218 ], [ -79.347403, 37.008016 ], [ -79.347493, 37.008071 ], [ -79.347634, 37.008171 ], [ -79.347763, 37.008281 ], [ -79.347971, 37.008497 ], [ -79.348051, 37.008623 ], [ -79.348135, 37.008786 ], [ -79.348201, 37.008954 ], [ -79.34825, 37.009126 ], [ -79.348316, 37.00954 ], [ -79.348397, 37.010196 ], [ -79.34854, 37.01111 ], [ -79.348616, 37.011496 ], [ -79.348778, 37.012266 ], [ -79.349159, 37.013946 ], [ -79.349315, 37.014628 ], [ -79.349636, 37.015919 ], [ -79.349688, 37.016183 ], [ -79.349795, 37.016628 ], [ -79.349854, 37.016827 ], [ -79.349915, 37.01701 ], [ -79.350064, 37.017337 ], [ -79.350135, 37.017464 ], [ -79.350159, 37.017499 ], [ -79.350325, 37.017735 ], [ -79.35042, 37.017865 ], [ -79.350584, 37.018129 ], [ -79.35072, 37.01842 ], [ -79.350808, 37.018683 ], [ -79.35089, 37.018981 ], [ -79.350968, 37.019317 ], [ -79.35119, 37.020219 ], [ -79.351251, 37.020445 ], [ -79.351346, 37.020719 ], [ -79.351414, 37.020888 ], [ -79.351505, 37.021079 ], [ -79.351682, 37.021459 ], [ -79.351825, 37.02176 ], [ -79.352185, 37.022473 ], [ -79.352628, 37.023433 ], [ -79.352751, 37.023743 ], [ -79.35282, 37.023863 ], [ -79.352895, 37.023965 ], [ -79.353012, 37.024078 ], [ -79.353078, 37.024127 ], [ -79.353186, 37.024186 ], [ -79.353325, 37.024244 ], [ -79.353398, 37.024265 ], [ -79.353421, 37.02427 ], [ -79.353621, 37.024315 ], [ -79.353675, 37.024321 ], [ -79.35392, 37.024336 ], [ -79.354286, 37.024379 ], [ -79.354423, 37.024385 ], [ -79.354844, 37.024375 ], [ -79.355058, 37.024359 ], [ -79.355214, 37.024339 ], [ -79.355354, 37.024308 ], [ -79.355614, 37.024238 ], [ -79.355718, 37.024209 ], [ -79.355965, 37.024125 ], [ -79.356147, 37.024057 ], [ -79.356485, 37.02394 ], [ -79.356546, 37.023919 ], [ -79.356797, 37.023824 ], [ -79.356964, 37.023769 ], [ -79.357077, 37.023757 ], [ -79.357196, 37.023767 ], [ -79.357262, 37.023786 ], [ -79.357309, 37.023811 ], [ -79.35735, 37.023849 ], [ -79.357388, 37.023905 ], [ -79.357541, 37.024317 ], [ -79.357583, 37.024391 ], [ -79.357634, 37.024438 ], [ -79.357685, 37.024467 ], [ -79.357747, 37.024487 ], [ -79.35783, 37.024497 ], [ -79.357899, 37.024495 ], [ -79.35801, 37.02448 ], [ -79.358102, 37.02446 ], [ -79.358409, 37.025941 ], [ -79.358471, 37.026316 ], [ -79.358502, 37.026637 ], [ -79.358517, 37.026844 ], [ -79.358519, 37.027185 ], [ -79.358497, 37.027679 ], [ -79.358457, 37.028033 ], [ -79.358398, 37.028378 ], [ -79.358301, 37.028779 ], [ -79.358082, 37.029574 ], [ -79.357957, 37.030026 ], [ -79.357813, 37.030609 ], [ -79.357745, 37.03095 ], [ -79.357685, 37.031344 ], [ -79.357656, 37.031612 ], [ -79.357621, 37.032199 ], [ -79.357619, 37.032445 ], [ -79.357631, 37.032766 ], [ -79.357637, 37.032893 ], [ -79.357666, 37.033258 ], [ -79.357711, 37.033639 ], [ -79.357789, 37.034066 ], [ -79.357875, 37.034441 ], [ -79.357922, 37.034622 ], [ -79.358521, 37.036938 ], [ -79.358613, 37.037315 ], [ -79.358687, 37.037658 ], [ -79.358786, 37.038217 ], [ -79.358856, 37.038791 ], [ -79.358911, 37.039356 ], [ -79.358965, 37.0401 ], [ -79.359051, 37.041306 ], [ -79.359073, 37.041825 ], [ -79.359059, 37.042471 ], [ -79.359012, 37.042954 ], [ -79.35899, 37.04313 ], [ -79.358922, 37.043537 ], [ -79.358829, 37.043973 ], [ -79.358773, 37.044171 ], [ -79.358704, 37.044417 ], [ -79.358541, 37.044914 ], [ -79.358352, 37.045429 ], [ -79.357856, 37.04678 ], [ -79.357794, 37.046961 ], [ -79.357564, 37.047556 ], [ -79.357409, 37.047915 ], [ -79.357338, 37.048062 ], [ -79.357278, 37.048184 ], [ -79.356942, 37.048801 ], [ -79.356841, 37.048967 ], [ -79.356589, 37.049349 ], [ -79.356363, 37.049677 ], [ -79.354212, 37.052783 ], [ -79.353972, 37.053148 ], [ -79.353865, 37.053295 ], [ -79.353452, 37.053889 ], [ -79.352197, 37.055711 ], [ -79.352126, 37.055808 ], [ -79.351983, 37.056023 ], [ -79.351596, 37.056539 ], [ -79.351413, 37.056761 ], [ -79.35122, 37.056979 ], [ -79.351018, 37.057191 ], [ -79.35075, 37.057445 ], [ -79.350603, 37.057584 ], [ -79.35029, 37.057856 ], [ -79.348032, 37.059645 ], [ -79.346954, 37.060488 ], [ -79.345892, 37.06133 ], [ -79.345295, 37.061797 ], [ -79.344778, 37.062208 ], [ -79.344716, 37.062258 ], [ -79.343942, 37.062866 ], [ -79.343259, 37.06342 ], [ -79.342925, 37.063722 ], [ -79.342732, 37.063907 ], [ -79.342302, 37.064351 ], [ -79.342055, 37.06463 ], [ -79.341843, 37.064885 ], [ -79.341424, 37.065452 ], [ -79.341048, 37.066036 ], [ -79.340718, 37.066647 ], [ -79.340066, 37.068047 ], [ -79.338982, 37.070343 ], [ -79.336951, 37.074656 ], [ -79.336672, 37.075265 ], [ -79.335622, 37.077497 ], [ -79.335265, 37.078252 ], [ -79.33489, 37.079062 ], [ -79.334833, 37.079182 ], [ -79.334222, 37.080477 ], [ -79.333262, 37.082521 ], [ -79.333001, 37.083079 ], [ -79.332628, 37.084028 ], [ -79.332548, 37.084278 ], [ -79.332388, 37.08478 ], [ -79.332201, 37.085539 ], [ -79.33204, 37.086421 ], [ -79.33196, 37.086978 ], [ -79.331907, 37.087757 ], [ -79.331871, 37.088536 ], [ -79.33185, 37.089317 ], [ -79.331805, 37.090324 ], [ -79.331772, 37.091338 ], [ -79.331768, 37.092235 ], [ -79.33183, 37.093576 ], [ -79.331943, 37.095022 ], [ -79.332045, 37.096198 ], [ -79.332341, 37.099713 ], [ -79.332397, 37.100421 ], [ -79.332436, 37.101086 ], [ -79.332443, 37.1013 ], [ -79.332438, 37.10199 ], [ -79.332418, 37.102426 ], [ -79.332391, 37.102795 ], [ -79.332337, 37.103324 ], [ -79.332244, 37.103966 ], [ -79.332205, 37.104185 ], [ -79.332175, 37.104355 ], [ -79.332056, 37.104907 ], [ -79.332041, 37.104978 ], [ -79.331903, 37.105494 ], [ -79.331733, 37.106053 ], [ -79.331559, 37.106562 ], [ -79.33131, 37.107195 ], [ -79.331178, 37.107501 ], [ -79.330959, 37.107973 ], [ -79.330748, 37.108399 ], [ -79.330489, 37.108876 ], [ -79.330365, 37.109093 ], [ -79.330155, 37.10944 ], [ -79.329757, 37.110058 ], [ -79.328813, 37.111446 ], [ -79.328701, 37.111611 ], [ -79.327118, 37.113932 ], [ -79.327107, 37.113947 ], [ -79.326498, 37.114802 ], [ -79.326178, 37.115223 ], [ -79.326128, 37.115289 ], [ -79.32568, 37.115855 ], [ -79.325061, 37.116595 ], [ -79.324816, 37.116878 ], [ -79.324497, 37.117235 ], [ -79.324161, 37.117601 ], [ -79.323816, 37.117964 ], [ -79.323589, 37.118194 ], [ -79.323104, 37.118678 ], [ -79.322015, 37.119732 ], [ -79.320826, 37.12089 ], [ -79.320279, 37.121415 ], [ -79.31993, 37.121729 ], [ -79.319276, 37.122271 ], [ -79.318828, 37.122609 ], [ -79.318377, 37.122925 ], [ -79.317535, 37.123462 ], [ -79.316595, 37.123987 ], [ -79.315586, 37.124473 ], [ -79.314958, 37.124742 ], [ -79.311931, 37.125973 ], [ -79.303986, 37.129196 ], [ -79.303177, 37.129555 ], [ -79.302367, 37.129915 ], [ -79.30095, 37.130617 ], [ -79.298871, 37.131691 ], [ -79.298008, 37.132146 ], [ -79.293574, 37.134491 ], [ -79.293108, 37.134749 ], [ -79.292712, 37.134937 ], [ -79.292278, 37.135125 ], [ -79.291836, 37.1353 ], [ -79.291351, 37.135473 ], [ -79.290905, 37.135615 ], [ -79.290365, 37.135772 ], [ -79.289641, 37.135941 ], [ -79.289078, 37.136055 ], [ -79.288222, 37.136184 ], [ -79.287781, 37.136228 ], [ -79.287205, 37.136269 ], [ -79.281895, 37.136526 ], [ -79.280512, 37.136607 ], [ -79.279731, 37.13667 ], [ -79.278968, 37.136747 ], [ -79.277922, 37.136872 ], [ -79.276244, 37.13712 ], [ -79.273494, 37.137624 ], [ -79.272005, 37.137904 ], [ -79.271794, 37.137944 ], [ -79.266159, 37.138985 ], [ -79.265643, 37.139056 ], [ -79.265084, 37.139119 ], [ -79.264404, 37.139177 ], [ -79.263826, 37.139213 ], [ -79.263263, 37.139234 ], [ -79.262666, 37.139241 ], [ -79.262103, 37.139234 ], [ -79.26149, 37.139213 ], [ -79.260895, 37.13918 ], [ -79.260488, 37.139149 ], [ -79.257811, 37.138859 ], [ -79.253283, 37.138354 ], [ -79.251817, 37.138189 ], [ -79.251311, 37.138138 ], [ -79.25082, 37.138104 ], [ -79.250344, 37.138087 ], [ -79.249949, 37.138091 ], [ -79.249141, 37.138125 ], [ -79.248701, 37.138169 ], [ -79.248255, 37.138232 ], [ -79.247815, 37.138303 ], [ -79.247404, 37.138388 ], [ -79.246983, 37.138492 ], [ -79.24619, 37.138741 ], [ -79.246034, 37.138799 ], [ -79.245567, 37.138991 ], [ -79.243639, 37.139795 ], [ -79.242121, 37.140435 ], [ -79.241618, 37.140648 ], [ -79.241125, 37.14089 ], [ -79.240755, 37.141103 ], [ -79.240471, 37.141293 ], [ -79.240237, 37.141475 ], [ -79.240023, 37.141661 ], [ -79.239659, 37.142024 ], [ -79.238717, 37.143115 ], [ -79.238653, 37.143189 ], [ -79.238443, 37.143404 ], [ -79.23822, 37.14361 ], [ -79.237972, 37.143817 ], [ -79.237711, 37.144013 ], [ -79.237424, 37.144206 ], [ -79.237139, 37.144378 ], [ -79.236846, 37.144536 ], [ -79.23672, 37.144599 ], [ -79.235366, 37.145185 ], [ -79.235031, 37.145327 ], [ -79.233118, 37.146139 ], [ -79.232943, 37.146214 ], [ -79.23213, 37.146559 ], [ -79.23159, 37.146789 ], [ -79.231268, 37.146943 ], [ -79.230971, 37.147103 ], [ -79.230723, 37.147248 ], [ -79.230589, 37.147333 ], [ -79.230303, 37.147527 ], [ -79.230067, 37.147704 ], [ -79.229831, 37.147902 ], [ -79.229608, 37.148108 ], [ -79.229398, 37.148324 ], [ -79.229192, 37.148559 ], [ -79.229002, 37.148802 ], [ -79.228823, 37.149065 ], [ -79.228683, 37.149299 ], [ -79.228557, 37.149537 ], [ -79.228436, 37.149807 ], [ -79.228332, 37.15008 ], [ -79.22824, 37.150371 ], [ -79.228165, 37.150679 ], [ -79.228144, 37.150787 ], [ -79.22795, 37.1522 ], [ -79.227939, 37.152282 ], [ -79.227922, 37.152405 ], [ -79.227831, 37.1531 ], [ -79.227768, 37.153577 ], [ -79.22775, 37.153704 ], [ -79.227707, 37.153951 ], [ -79.227614, 37.154338 ], [ -79.227519, 37.154642 ], [ -79.227394, 37.154981 ], [ -79.227259, 37.155289 ], [ -79.227113, 37.155579 ], [ -79.227008, 37.155764 ], [ -79.226979, 37.155814 ], [ -79.226931, 37.155892 ], [ -79.22673, 37.156196 ], [ -79.226531, 37.156466 ], [ -79.226359, 37.156679 ], [ -79.226091, 37.156981 ], [ -79.225836, 37.157239 ], [ -79.225577, 37.157477 ], [ -79.225307, 37.157704 ], [ -79.225033, 37.15791 ], [ -79.224838, 37.158043 ], [ -79.223223, 37.159106 ], [ -79.222625, 37.159494 ], [ -79.222577, 37.159525 ], [ -79.222526, 37.159559 ], [ -79.222269, 37.159725 ], [ -79.221758, 37.160065 ], [ -79.219427, 37.161585 ], [ -79.218294, 37.162324 ], [ -79.218211, 37.162378 ], [ -79.216923, 37.163217 ], [ -79.216426, 37.163539 ], [ -79.215909, 37.16389 ], [ -79.215531, 37.164171 ], [ -79.215221, 37.164425 ], [ -79.214936, 37.164678 ], [ -79.214674, 37.164929 ], [ -79.214292, 37.165324 ], [ -79.214244, 37.165374 ], [ -79.213081, 37.166582 ], [ -79.212642, 37.167038 ], [ -79.212368, 37.167324 ], [ -79.212048, 37.167658 ], [ -79.211768, 37.16795 ], [ -79.211486, 37.168245 ], [ -79.211416, 37.168318 ], [ -79.211008, 37.168744 ], [ -79.210963, 37.168791 ], [ -79.210689, 37.16908 ], [ -79.210304, 37.16953 ], [ -79.2101, 37.169782 ], [ -79.209923, 37.170006 ], [ -79.209526, 37.170538 ], [ -79.209343, 37.170798 ], [ -79.207037, 37.174039 ], [ -79.206764, 37.174435 ], [ -79.206634, 37.174641 ], [ -79.206469, 37.174929 ], [ -79.206273, 37.17532 ], [ -79.20615, 37.175603 ], [ -79.206073, 37.175802 ], [ -79.206026, 37.175929 ], [ -79.205916, 37.176273 ], [ -79.205845, 37.176539 ], [ -79.205757, 37.176917 ], [ -79.205696, 37.177164 ], [ -79.205658, 37.177349 ], [ -79.205603, 37.177589 ], [ -79.205562, 37.177759 ], [ -79.205539, 37.177863 ], [ -79.205487, 37.178091 ], [ -79.205427, 37.178344 ], [ -79.205364, 37.178607 ], [ -79.205297, 37.178889 ], [ -79.205253, 37.179068 ], [ -79.20519, 37.179332 ], [ -79.205122, 37.179618 ], [ -79.205055, 37.179895 ], [ -79.204997, 37.180138 ], [ -79.204614, 37.181773 ], [ -79.204588, 37.181883 ], [ -79.204488, 37.182314 ], [ -79.204319, 37.183043 ], [ -79.204265, 37.183268 ], [ -79.204123, 37.18388 ], [ -79.203924, 37.184747 ], [ -79.203855, 37.185167 ], [ -79.203781, 37.185725 ], [ -79.203767, 37.185869 ], [ -79.203714, 37.186727 ], [ -79.203688, 37.188358 ], [ -79.203665, 37.189574 ], [ -79.203624, 37.192626 ], [ -79.203627, 37.192665 ], [ -79.203588, 37.193792 ], [ -79.203572, 37.194229 ], [ -79.203568, 37.194309 ], [ -79.203559, 37.194539 ], [ -79.203553, 37.194676 ], [ -79.203543, 37.194919 ], [ -79.203531, 37.195199 ], [ -79.203502, 37.195859 ], [ -79.203483, 37.196276 ], [ -79.203468, 37.196579 ], [ -79.203458, 37.196792 ], [ -79.203433, 37.197322 ], [ -79.203422, 37.197563 ], [ -79.20341, 37.197824 ], [ -79.203397, 37.198095 ], [ -79.20339, 37.198254 ], [ -79.203379, 37.19847 ], [ -79.203358, 37.198936 ], [ -79.20334, 37.19935 ], [ -79.203304, 37.200071 ], [ -79.203262, 37.200536 ], [ -79.203244, 37.200686 ], [ -79.203162, 37.201241 ], [ -79.203073, 37.201722 ], [ -79.20306, 37.201793 ], [ -79.203026, 37.201977 ], [ -79.202836, 37.203003 ], [ -79.202752, 37.203459 ], [ -79.202563, 37.204478 ], [ -79.202452, 37.205079 ], [ -79.202395, 37.205385 ], [ -79.201856, 37.208299 ], [ -79.201805, 37.208574 ], [ -79.201702, 37.209126 ], [ -79.201673, 37.209268 ], [ -79.201619, 37.209479 ], [ -79.201573, 37.209638 ], [ -79.201505, 37.209836 ], [ -79.201407, 37.210085 ], [ -79.201284, 37.210341 ], [ -79.201114, 37.21064 ], [ -79.201026, 37.210776 ], [ -79.200882, 37.21098 ], [ -79.200649, 37.211282 ], [ -79.200396, 37.211554 ], [ -79.199727, 37.212167 ], [ -79.199637, 37.212249 ], [ -79.199553, 37.212325 ], [ -79.199391, 37.212473 ], [ -79.199159, 37.212684 ], [ -79.19865, 37.213144 ], [ -79.197756, 37.213946 ], [ -79.197588, 37.214097 ], [ -79.197252, 37.214415 ], [ -79.196922, 37.214731 ], [ -79.196487, 37.215166 ], [ -79.196055, 37.215596 ], [ -79.195714, 37.216042 ], [ -79.195395, 37.216449 ], [ -79.194175, 37.218086 ], [ -79.193942, 37.2184 ], [ -79.193714, 37.218705 ], [ -79.193339, 37.219208 ], [ -79.193103, 37.219523 ], [ -79.192804, 37.219924 ], [ -79.192465, 37.220384 ], [ -79.191972, 37.221056 ], [ -79.191665, 37.221486 ], [ -79.191271, 37.222039 ], [ -79.191066, 37.222328 ], [ -79.190837, 37.222648 ], [ -79.190786, 37.222724 ], [ -79.190591, 37.223024 ], [ -79.190561, 37.223069 ], [ -79.190114, 37.223762 ], [ -79.189976, 37.223994 ], [ -79.189786, 37.224314 ], [ -79.189538, 37.224731 ], [ -79.189441, 37.224896 ], [ -79.189231, 37.225287 ], [ -79.188873, 37.225949 ], [ -79.188647, 37.226369 ], [ -79.188578, 37.226497 ], [ -79.188422, 37.22682 ], [ -79.187747, 37.228226 ], [ -79.187638, 37.228454 ], [ -79.186752, 37.230317 ], [ -79.186236, 37.23142 ], [ -79.186183, 37.231531 ], [ -79.186143, 37.231633 ], [ -79.186012, 37.231905 ], [ -79.185971, 37.232009 ], [ -79.185901, 37.232204 ], [ -79.185821, 37.232467 ], [ -79.185783, 37.232629 ], [ -79.185746, 37.232787 ], [ -79.185712, 37.232989 ], [ -79.185564, 37.234115 ], [ -79.18554, 37.234342 ], [ -79.185535, 37.234388 ], [ -79.185527, 37.234464 ], [ -79.185489, 37.234824 ], [ -79.185459, 37.235133 ], [ -79.185442, 37.235447 ], [ -79.185444, 37.235802 ], [ -79.185467, 37.236157 ], [ -79.185494, 37.236478 ], [ -79.185509, 37.236629 ], [ -79.185568, 37.237037 ], [ -79.185613, 37.237268 ], [ -79.185642, 37.237403 ], [ -79.185719, 37.237706 ], [ -79.185791, 37.237965 ], [ -79.185811, 37.238037 ], [ -79.185899, 37.238345 ], [ -79.185952, 37.238527 ], [ -79.18597, 37.23859 ], [ -79.186042, 37.238834 ], [ -79.186525, 37.240494 ], [ -79.186638, 37.240882 ], [ -79.186786, 37.241392 ], [ -79.186995, 37.242108 ], [ -79.187061, 37.242336 ], [ -79.187075, 37.242384 ], [ -79.187298, 37.243149 ], [ -79.187378, 37.243422 ], [ -79.187527, 37.243936 ], [ -79.187774, 37.244774 ], [ -79.187853, 37.245008 ], [ -79.187949, 37.245331 ], [ -79.187975, 37.245426 ], [ -79.18809, 37.245933 ], [ -79.188158, 37.246339 ], [ -79.188193, 37.246639 ], [ -79.188214, 37.246935 ], [ -79.188219, 37.247189 ], [ -79.188219, 37.247284 ], [ -79.188204, 37.247624 ], [ -79.188173, 37.24795 ], [ -79.188121, 37.248287 ], [ -79.188078, 37.248502 ], [ -79.188012, 37.248777 ], [ -79.187964, 37.248948 ], [ -79.18752, 37.250322 ], [ -79.187502, 37.250377 ], [ -79.187461, 37.250489 ], [ -79.187101, 37.251604 ], [ -79.186977, 37.251986 ], [ -79.186803, 37.252487 ], [ -79.186647, 37.252862 ], [ -79.186473, 37.253233 ], [ -79.1864, 37.253375 ], [ -79.186369, 37.253435 ], [ -79.186196, 37.253727 ], [ -79.186096, 37.253883 ], [ -79.185846, 37.254253 ], [ -79.185619, 37.254587 ], [ -79.184816, 37.255765 ], [ -79.184332, 37.256471 ], [ -79.184251, 37.256583 ], [ -79.183919, 37.257073 ], [ -79.183282, 37.258009 ], [ -79.183273, 37.258023 ], [ -79.182658, 37.258928 ], [ -79.182428, 37.259266 ], [ -79.182236, 37.259548 ], [ -79.182189, 37.259617 ], [ -79.181677, 37.260371 ], [ -79.180889, 37.261527 ], [ -79.180329, 37.262346 ], [ -79.179966, 37.262877 ], [ -79.178561, 37.264935 ], [ -79.177834, 37.265998 ], [ -79.17762, 37.266312 ], [ -79.177577, 37.266375 ], [ -79.177344, 37.266717 ], [ -79.177268, 37.266828 ], [ -79.175738, 37.269066 ], [ -79.175293, 37.269718 ], [ -79.175059, 37.270062 ], [ -79.175024, 37.270113 ], [ -79.174746, 37.27052 ], [ -79.174499, 37.270885 ], [ -79.174225, 37.271286 ], [ -79.17318, 37.27282 ], [ -79.172596, 37.273676 ], [ -79.172062, 37.274457 ], [ -79.17205, 37.274476 ], [ -79.171892, 37.274707 ], [ -79.171746, 37.274919 ], [ -79.170612, 37.276581 ], [ -79.170091, 37.277344 ], [ -79.170074, 37.277368 ], [ -79.169014, 37.27887 ], [ -79.168768, 37.279279 ], [ -79.168446, 37.279751 ], [ -79.168095, 37.28026 ], [ -79.167791, 37.280704 ], [ -79.167004, 37.281854 ], [ -79.166839, 37.282126 ], [ -79.166686, 37.282417 ], [ -79.166553, 37.282715 ], [ -79.166455, 37.282978 ], [ -79.166365, 37.283271 ], [ -79.166331, 37.283406 ], [ -79.166277, 37.283662 ], [ -79.166236, 37.283934 ], [ -79.166211, 37.284233 ], [ -79.166208, 37.284331 ], [ -79.16621, 37.284606 ], [ -79.166232, 37.284894 ], [ -79.166273, 37.28518 ], [ -79.166341, 37.285491 ], [ -79.166394, 37.28568 ], [ -79.166419, 37.28576 ], [ -79.16653, 37.286061 ], [ -79.16656, 37.286133 ], [ -79.166601, 37.286228 ], [ -79.167073, 37.287187 ], [ -79.167342, 37.287727 ], [ -79.167647, 37.288335 ], [ -79.167961, 37.288961 ], [ -79.168213, 37.289466 ], [ -79.168669, 37.290363 ], [ -79.169252, 37.291516 ], [ -79.169707, 37.292425 ], [ -79.170019, 37.293049 ], [ -79.170164, 37.293337 ], [ -79.170762, 37.294525 ], [ -79.171017, 37.295032 ], [ -79.171197, 37.29539 ], [ -79.171228, 37.295451 ], [ -79.171707, 37.296402 ], [ -79.171854, 37.296694 ], [ -79.172057, 37.297099 ], [ -79.172329, 37.297639 ], [ -79.172756, 37.298485 ], [ -79.172921, 37.29877 ], [ -79.173118, 37.299071 ], [ -79.173326, 37.299351 ], [ -79.1734, 37.299443 ], [ -79.173711, 37.299824 ], [ -79.174643, 37.300928 ], [ -79.177789, 37.304649 ], [ -79.17841, 37.305383 ], [ -79.179563, 37.306751 ], [ -79.18128, 37.308787 ], [ -79.181492, 37.309036 ], [ -79.181949, 37.309573 ], [ -79.182599, 37.310336 ], [ -79.183198, 37.311046 ], [ -79.183775, 37.311729 ], [ -79.183964, 37.311947 ], [ -79.18428, 37.312314 ], [ -79.18536, 37.313557 ], [ -79.18553, 37.313753 ], [ -79.18588, 37.314159 ], [ -79.186286, 37.314624 ], [ -79.186592, 37.314975 ], [ -79.186893, 37.31532 ], [ -79.187155, 37.315623 ], [ -79.187287, 37.315796 ], [ -79.187433, 37.315958 ], [ -79.187603, 37.316193 ], [ -79.187705, 37.316348 ], [ -79.187781, 37.316469 ], [ -79.187895, 37.316666 ], [ -79.188063, 37.316995 ], [ -79.188211, 37.31734 ], [ -79.188267, 37.317488 ], [ -79.188574, 37.31828 ], [ -79.18873, 37.318682 ], [ -79.188773, 37.318793 ], [ -79.188818, 37.318907 ], [ -79.188983, 37.319332 ], [ -79.189167, 37.319817 ], [ -79.18919, 37.319881 ], [ -79.189276, 37.320122 ], [ -79.189293, 37.320183 ], [ -79.189372, 37.320484 ], [ -79.189407, 37.320635 ], [ -79.189445, 37.320825 ], [ -79.189477, 37.321015 ], [ -79.189492, 37.321115 ], [ -79.189533, 37.321458 ], [ -79.189536, 37.321492 ], [ -79.189586, 37.322119 ], [ -79.189602, 37.322319 ], [ -79.189637, 37.32275 ], [ -79.189647, 37.322876 ], [ -79.189704, 37.323523 ], [ -79.189737, 37.323892 ], [ -79.189747, 37.323997 ], [ -79.189761, 37.324147 ], [ -79.189781, 37.324375 ], [ -79.189798, 37.324545 ], [ -79.189823, 37.324722 ], [ -79.189861, 37.324935 ], [ -79.189896, 37.325095 ], [ -79.189922, 37.3252 ], [ -79.190034, 37.325593 ], [ -79.190115, 37.325884 ], [ -79.190279, 37.326471 ], [ -79.190558, 37.327468 ], [ -79.190626, 37.327737 ], [ -79.190656, 37.327855 ], [ -79.190719, 37.328102 ], [ -79.190893, 37.328783 ], [ -79.19093, 37.328914 ], [ -79.19114, 37.329665 ], [ -79.191197, 37.329849 ], [ -79.191289, 37.330174 ], [ -79.191411, 37.330604 ], [ -79.191427, 37.330662 ], [ -79.191549, 37.331144 ], [ -79.191612, 37.331407 ], [ -79.191674, 37.33166 ], [ -79.191713, 37.331945 ], [ -79.191731, 37.332216 ], [ -79.191727, 37.3324 ], [ -79.191718, 37.332618 ], [ -79.191688, 37.333114 ], [ -79.191671, 37.333265 ], [ -79.191652, 37.333506 ], [ -79.191625, 37.33369 ], [ -79.191591, 37.333978 ], [ -79.191586, 37.334109 ], [ -79.191605, 37.334336 ], [ -79.19161, 37.334672 ], [ -79.191612, 37.334771 ], [ -79.191619, 37.335165 ], [ -79.191615, 37.335425 ], [ -79.191612, 37.335464 ], [ -79.191591, 37.335798 ], [ -79.191573, 37.33597 ], [ -79.19153, 37.336198 ], [ -79.191511, 37.3363 ], [ -79.191476, 37.336481 ], [ -79.191396, 37.336901 ], [ -79.191254, 37.33724 ], [ -79.191108, 37.337564 ], [ -79.190891, 37.337852 ], [ -79.190707, 37.338004 ], [ -79.190446, 37.338136 ], [ -79.190159, 37.338232 ], [ -79.189809, 37.338303 ], [ -79.189504, 37.338343 ], [ -79.189039, 37.338414 ], [ -79.188663, 37.33847 ], [ -79.188351, 37.338526 ], [ -79.18802, 37.338571 ], [ -79.18767, 37.338617 ], [ -79.187276, 37.338677 ], [ -79.18683, 37.338758 ], [ -79.186448, 37.338854 ], [ -79.186232, 37.338986 ], [ -79.186034, 37.339158 ], [ -79.185913, 37.339381 ], [ -79.185862, 37.339654 ], [ -79.185792, 37.339958 ], [ -79.185735, 37.340246 ], [ -79.185608, 37.340565 ], [ -79.185474, 37.340849 ], [ -79.185264, 37.341152 ], [ -79.185009, 37.341421 ], [ -79.184748, 37.341658 ], [ -79.184399, 37.341989 ], [ -79.184093, 37.342254 ], [ -79.183658, 37.342682 ], [ -79.18294, 37.343536 ], [ -79.182113, 37.344505 ], [ -79.181077, 37.345699 ], [ -79.180004, 37.346871 ], [ -79.178729, 37.348196 ], [ -79.177389, 37.349407 ], [ -79.177129, 37.349621 ], [ -79.176626, 37.350036 ], [ -79.173129, 37.353092 ], [ -79.169752, 37.356318 ], [ -79.169186, 37.356859 ], [ -79.166439, 37.359647 ], [ -79.165165, 37.360856 ], [ -79.164528, 37.361444 ], [ -79.163946, 37.361878 ], [ -79.162943, 37.362614 ], [ -79.161891, 37.363349 ], [ -79.159885, 37.364693 ], [ -79.158866, 37.365389 ], [ -79.157915, 37.36609 ], [ -79.156262, 37.367299 ], [ -79.153378, 37.36939 ], [ -79.1513, 37.370777 ], [ -79.148798, 37.372337 ], [ -79.146813, 37.373529 ], [ -79.146135, 37.37394 ], [ -79.145298, 37.374385 ], [ -79.144399, 37.374808 ], [ -79.143032, 37.375351 ], [ -79.142887, 37.375396 ], [ -79.141407, 37.375861 ], [ -79.13952, 37.376309 ], [ -79.137442, 37.376753 ], [ -79.136385, 37.376976 ], [ -79.135221, 37.37722 ], [ -79.134065, 37.377456 ], [ -79.132756, 37.377733 ], [ -79.131505, 37.377997 ], [ -79.130701, 37.378165 ], [ -79.129655, 37.378385 ], [ -79.128812, 37.378561 ], [ -79.127809, 37.378776 ], [ -79.127166, 37.378891 ], [ -79.124907, 37.379433 ], [ -79.122351, 37.380007 ], [ -79.119924, 37.380555 ], [ -79.118369, 37.380958 ], [ -79.116892, 37.381492 ], [ -79.11429, 37.382508 ], [ -79.111589, 37.383564 ], [ -79.110432, 37.384015 ], [ -79.108723, 37.384663 ], [ -79.107004, 37.385341 ], [ -79.10533, 37.38597 ], [ -79.10529, 37.385969 ], [ -79.104874, 37.386095 ], [ -79.104406, 37.386191 ], [ -79.103958, 37.38624 ], [ -79.103328, 37.386271 ], [ -79.101681, 37.386155 ], [ -79.101144, 37.386117 ], [ -79.100418, 37.386038 ], [ -79.097991, 37.385843 ], [ -79.09636, 37.385744 ], [ -79.095982, 37.385658 ], [ -79.095845, 37.385614 ], [ -79.09571, 37.385555 ], [ -79.095567, 37.38548 ], [ -79.095427, 37.38539 ], [ -79.095308, 37.385296 ], [ -79.09517, 37.385161 ], [ -79.09509, 37.385054 ], [ -79.094998, 37.384905 ], [ -79.094916, 37.384737 ], [ -79.094844, 37.384528 ], [ -79.094656, 37.383845 ], [ -79.094531, 37.38345 ], [ -79.094325, 37.383054 ], [ -79.094038, 37.38276 ], [ -79.093621, 37.382467 ], [ -79.093187, 37.382294 ], [ -79.092689, 37.382201 ], [ -79.092284, 37.382201 ], [ -79.091903, 37.382257 ], [ -79.091551, 37.382364 ], [ -79.091187, 37.382541 ], [ -79.090959, 37.382723 ], [ -79.090789, 37.382882 ], [ -79.090589, 37.383115 ], [ -79.090443, 37.383376 ], [ -79.090284, 37.383744 ], [ -79.090225, 37.384 ], [ -79.090179, 37.384541 ], [ -79.090062, 37.385779 ], [ -79.089925, 37.386644 ], [ -79.089849, 37.387226 ], [ -79.089779, 37.387541 ], [ -79.089689, 37.387836 ], [ -79.0895, 37.38838 ], [ -79.089436, 37.388633 ], [ -79.089405, 37.388841 ], [ -79.089289, 37.389685 ], [ -79.089161, 37.39093 ], [ -79.089008, 37.392008 ], [ -79.08881, 37.394069 ], [ -79.088768, 37.394579 ], [ -79.088645, 37.395885 ], [ -79.088477, 37.397207 ], [ -79.087956, 37.401181 ], [ -79.087825, 37.401823 ], [ -79.087665, 37.402308 ], [ -79.087554, 37.402629 ], [ -79.08736, 37.403142 ], [ -79.087142, 37.403562 ], [ -79.086923, 37.403937 ], [ -79.086762, 37.404195 ], [ -79.086439, 37.404708 ], [ -79.086251, 37.405002 ], [ -79.085982, 37.405393 ], [ -79.085647, 37.405896 ], [ -79.085037, 37.406824 ], [ -79.084691, 37.407346 ], [ -79.084239, 37.407998 ], [ -79.084081, 37.408208 ], [ -79.083969, 37.408376 ], [ -79.083852, 37.408534 ], [ -79.083752, 37.408705 ], [ -79.083641, 37.408893 ], [ -79.08253, 37.41059 ], [ -79.082107, 37.41155 ], [ -79.081937, 37.412163 ], [ -79.081833, 37.412538 ], [ -79.081757, 37.413176 ], [ -79.08171, 37.413903 ], [ -79.081751, 37.414774 ], [ -79.081781, 37.415758 ], [ -79.081777, 37.417393 ], [ -79.081646, 37.41901 ], [ -79.081485, 37.420256 ], [ -79.081292, 37.421219 ], [ -79.081057, 37.422257 ], [ -79.080513, 37.424117 ], [ -79.07951, 37.427155 ], [ -79.078061, 37.431195 ], [ -79.077269, 37.433524 ], [ -79.076993, 37.434391 ], [ -79.076647, 37.435495 ], [ -79.076395, 37.436608 ], [ -79.076304, 37.437254 ], [ -79.076229, 37.438019 ], [ -79.076213, 37.439312 ], [ -79.076213, 37.439413 ], [ -79.076155, 37.442774 ], [ -79.07614, 37.443179 ], [ -79.076116, 37.443841 ], [ -79.076046, 37.446058 ], [ -79.075976, 37.449173 ], [ -79.076002, 37.451689 ], [ -79.076065, 37.4523 ], [ -79.076262, 37.453 ], [ -79.076579, 37.453683 ], [ -79.076982, 37.454312 ], [ -79.077536, 37.45501 ], [ -79.079739, 37.457229 ], [ -79.080689, 37.458217 ], [ -79.081531, 37.459252 ], [ -79.082085, 37.460038 ], [ -79.082441, 37.460738 ], [ -79.082708, 37.461304 ], [ -79.082968, 37.461981 ], [ -79.083137, 37.462694 ], [ -79.083265, 37.463513 ], [ -79.083293, 37.464338 ], [ -79.083287, 37.464745 ], [ -79.083277, 37.465166 ], [ -79.083236, 37.465743 ], [ -79.083136, 37.466259 ], [ -79.082678, 37.468029 ], [ -79.082438, 37.469156 ], [ -79.08215, 37.470371 ], [ -79.081963, 37.471033 ], [ -79.081827, 37.471415 ], [ -79.081408, 37.472342 ], [ -79.081005, 37.47309 ], [ -79.080296, 37.474045 ], [ -79.079641, 37.474751 ], [ -79.078249, 37.476094 ], [ -79.077451, 37.477058 ], [ -79.076776, 37.477863 ], [ -79.076213, 37.478711 ], [ -79.075638, 37.479763 ], [ -79.075274, 37.480624 ], [ -79.074869, 37.481821 ], [ -79.074675, 37.482594 ], [ -79.074634, 37.482892 ], [ -79.074593, 37.483204 ], [ -79.07457, 37.483627 ], [ -79.074448, 37.484732 ], [ -79.074331, 37.485753 ], [ -79.074167, 37.486518 ], [ -79.073888, 37.487326 ], [ -79.073467, 37.488074 ], [ -79.07305, 37.488846 ], [ -79.072616, 37.489619 ], [ -79.072018, 37.490699 ], [ -79.07163, 37.49136 ], [ -79.070791, 37.492896 ], [ -79.070146, 37.494186 ], [ -79.06953, 37.495438 ], [ -79.068703, 37.497026 ], [ -79.067817, 37.498799 ], [ -79.067177, 37.500098 ], [ -79.066497, 37.501471 ], [ -79.066168, 37.502341 ], [ -79.065974, 37.503063 ], [ -79.065895, 37.503746 ], [ -79.065857, 37.504329 ], [ -79.065851, 37.505804 ], [ -79.065851, 37.506847 ], [ -79.065828, 37.508187 ], [ -79.065831, 37.509824 ], [ -79.0658, 37.510657 ], [ -79.065769, 37.511273 ], [ -79.065628, 37.51191 ], [ -79.065455, 37.512506 ], [ -79.065165, 37.513111 ], [ -79.064807, 37.513823 ], [ -79.064426, 37.514512 ], [ -79.063986, 37.515424 ], [ -79.063804, 37.515903 ], [ -79.063545, 37.516788 ], [ -79.063328, 37.51796 ], [ -79.063264, 37.519296 ], [ -79.063311, 37.520208 ], [ -79.063487, 37.521209 ], [ -79.063645, 37.522214 ], [ -79.063845, 37.523275 ], [ -79.06425, 37.525364 ], [ -79.064871, 37.528602 ], [ -79.065376, 37.531264 ], [ -79.066057, 37.534819 ], [ -79.066725, 37.538252 ], [ -79.0674, 37.541904 ], [ -79.06794, 37.544546 ], [ -79.068021, 37.545221 ], [ -79.068093, 37.545891 ], [ -79.068075, 37.546616 ], [ -79.067977, 37.547323 ], [ -79.067805, 37.547989 ], [ -79.06729, 37.549617 ], [ -79.066508, 37.552189 ], [ -79.066203, 37.55312 ], [ -79.065916, 37.554199 ], [ -79.06571, 37.554864 ], [ -79.065358, 37.555901 ], [ -79.06462, 37.558162 ], [ -79.064236, 37.559374 ], [ -79.064086, 37.559848 ], [ -79.063835, 37.560896 ], [ -79.063609, 37.561383 ], [ -79.063256, 37.561986 ], [ -79.062896, 37.562503 ], [ -79.062134, 37.563345 ], [ -79.061625, 37.563753 ], [ -79.06094, 37.564213 ], [ -79.058641, 37.565583 ], [ -79.05758, 37.566208 ], [ -79.056639, 37.566768 ], [ -79.055935, 37.567192 ], [ -79.055742, 37.567302 ], [ -79.055553, 37.567416 ], [ -79.055246, 37.567615 ], [ -79.054927, 37.567838 ], [ -79.054748, 37.567977 ], [ -79.054525, 37.568169 ], [ -79.05429, 37.568391 ], [ -79.054239, 37.568442 ], [ -79.054034, 37.568657 ], [ -79.053873, 37.56885 ], [ -79.053657, 37.569143 ], [ -79.053524, 37.569347 ], [ -79.053368, 37.569618 ], [ -79.053228, 37.569894 ], [ -79.053172, 37.570026 ], [ -79.053043, 37.570358 ], [ -79.05286, 37.57095 ], [ -79.052677, 37.571527 ], [ -79.052485, 37.572133 ], [ -79.052132, 37.573261 ], [ -79.051632, 37.57486 ], [ -79.051348, 37.57574 ], [ -79.051123, 37.576286 ], [ -79.051087, 37.576361 ], [ -79.050788, 37.576916 ], [ -79.050662, 37.577116 ], [ -79.050472, 37.577395 ], [ -79.050278, 37.577652 ], [ -79.050057, 37.577924 ], [ -79.049759, 37.578262 ], [ -79.049412, 37.578608 ], [ -79.049047, 37.578931 ], [ -79.047001, 37.580602 ], [ -79.046515, 37.580994 ], [ -79.046166, 37.58126 ], [ -79.045909, 37.581455 ], [ -79.04561, 37.58167 ], [ -79.045264, 37.581887 ], [ -79.044961, 37.582077 ], [ -79.044149, 37.582573 ], [ -79.04353, 37.582927 ], [ -79.04291, 37.58327 ], [ -79.042129, 37.58371 ], [ -79.041873, 37.583864 ], [ -79.041806, 37.58391 ], [ -79.041621, 37.584017 ], [ -79.041414, 37.584155 ], [ -79.041178, 37.58431 ], [ -79.040635, 37.584689 ], [ -79.039894, 37.585255 ], [ -79.039608, 37.585491 ], [ -79.03912, 37.585904 ], [ -79.038845, 37.586155 ], [ -79.038474, 37.586513 ], [ -79.03781, 37.587198 ], [ -79.037358, 37.587719 ], [ -79.037086, 37.588056 ], [ -79.036877, 37.588331 ], [ -79.036498, 37.588836 ], [ -79.036258, 37.589205 ], [ -79.035926, 37.589739 ], [ -79.034645, 37.591992 ], [ -79.034482, 37.592286 ], [ -79.034097, 37.592957 ], [ -79.033913, 37.593255 ], [ -79.033669, 37.593669 ], [ -79.033006, 37.594819 ], [ -79.032654, 37.595452 ], [ -79.032044, 37.596522 ], [ -79.031678, 37.597159 ], [ -79.031353, 37.597735 ], [ -79.03004, 37.600074 ], [ -79.029644, 37.600763 ], [ -79.028963, 37.601951 ], [ -79.028685, 37.602397 ], [ -79.02851, 37.602662 ], [ -79.028221, 37.603043 ], [ -79.027978, 37.603341 ], [ -79.027692, 37.60368 ], [ -79.027548, 37.60383 ], [ -79.027306, 37.604072 ], [ -79.027105, 37.604269 ], [ -79.02697, 37.604392 ], [ -79.026652, 37.60468 ], [ -79.026083, 37.605207 ], [ -79.026036, 37.60525 ], [ -79.025989, 37.605294 ], [ -79.025872, 37.605402 ], [ -79.02555, 37.605685 ], [ -79.025303, 37.605893 ], [ -79.025239, 37.605951 ], [ -79.025075, 37.606102 ], [ -79.024795, 37.606358 ], [ -79.024408, 37.606702 ], [ -79.024072, 37.607013 ], [ -79.024053, 37.607031 ], [ -79.023787, 37.607264 ], [ -79.023498, 37.607516 ], [ -79.023027, 37.607911 ], [ -79.022811, 37.60807 ], [ -79.022583, 37.608218 ], [ -79.022393, 37.608329 ], [ -79.022103, 37.608478 ], [ -79.021864, 37.608585 ], [ -79.021424, 37.608752 ], [ -79.020855, 37.608965 ], [ -79.020271, 37.609195 ], [ -79.020171, 37.609236 ], [ -79.019921, 37.609348 ], [ -79.019569, 37.609526 ], [ -79.019341, 37.609661 ], [ -79.019134, 37.609801 ], [ -79.018938, 37.609951 ], [ -79.018736, 37.61013 ], [ -79.018557, 37.610318 ], [ -79.018408, 37.6105 ], [ -79.018273, 37.610689 ], [ -79.018177, 37.610845 ], [ -79.018077, 37.611005 ], [ -79.017942, 37.61127 ], [ -79.01775, 37.611733 ], [ -79.017583, 37.612195 ], [ -79.017453, 37.612536 ], [ -79.01736, 37.612779 ], [ -79.017077, 37.613518 ], [ -79.016316, 37.615651 ], [ -79.016211, 37.615921 ], [ -79.015957, 37.616661 ], [ -79.015442, 37.618041 ], [ -79.015171, 37.618767 ], [ -79.015044, 37.619085 ], [ -79.014896, 37.619401 ], [ -79.014725, 37.619699 ], [ -79.014609, 37.619891 ], [ -79.014507, 37.620046 ], [ -79.014326, 37.620291 ], [ -79.014076, 37.620611 ], [ -79.013882, 37.620808 ], [ -79.013583, 37.621079 ], [ -79.012998, 37.621504 ], [ -79.01238, 37.621893 ], [ -79.010646, 37.622959 ], [ -79.01003, 37.623323 ], [ -79.009112, 37.623886 ], [ -79.007841, 37.62468 ], [ -79.007669, 37.624786 ], [ -79.00613, 37.625753 ], [ -79.00574, 37.625992 ], [ -79.004933, 37.626484 ], [ -79.004251, 37.626912 ], [ -79.004139, 37.626981 ], [ -79.003154, 37.627592 ], [ -79.001641, 37.628516 ], [ -79.001111, 37.628835 ], [ -79.00072, 37.62907 ], [ -79.000623, 37.62914 ], [ -79.000217, 37.629394 ], [ -78.998912, 37.630202 ], [ -78.998196, 37.630645 ], [ -78.997598, 37.631025 ], [ -78.997526, 37.631071 ], [ -78.997241, 37.631274 ], [ -78.996875, 37.631534 ], [ -78.996217, 37.63205 ], [ -78.995656, 37.632525 ], [ -78.995017, 37.633129 ], [ -78.994464, 37.633668 ], [ -78.993794, 37.634338 ], [ -78.992582, 37.635539 ], [ -78.99241, 37.635715 ], [ -78.992112, 37.636 ], [ -78.991971, 37.636127 ], [ -78.991598, 37.636454 ], [ -78.991319, 37.636676 ], [ -78.991111, 37.636827 ], [ -78.990724, 37.637089 ], [ -78.990344, 37.637324 ], [ -78.989967, 37.637537 ], [ -78.989578, 37.637737 ], [ -78.988855, 37.638052 ], [ -78.98807, 37.638382 ], [ -78.986736, 37.63892 ], [ -78.986454, 37.639034 ], [ -78.985803, 37.639316 ], [ -78.984897, 37.639687 ], [ -78.98388, 37.640096 ], [ -78.983117, 37.640414 ], [ -78.982726, 37.640573 ], [ -78.981774, 37.640959 ], [ -78.979687, 37.64182 ], [ -78.978231, 37.642417 ], [ -78.977005, 37.64291 ], [ -78.97646, 37.643116 ], [ -78.975777, 37.643333 ], [ -78.975711, 37.643354 ], [ -78.97542, 37.643425 ], [ -78.974834, 37.643551 ], [ -78.974604, 37.64359 ], [ -78.974067, 37.643681 ], [ -78.973393, 37.643752 ], [ -78.972559, 37.643813 ], [ -78.972242, 37.643839 ], [ -78.970006, 37.64399 ], [ -78.96903, 37.64406 ], [ -78.968589, 37.644095 ], [ -78.968224, 37.644136 ], [ -78.967889, 37.644182 ], [ -78.967664, 37.644226 ], [ -78.967387, 37.644293 ], [ -78.967224, 37.644341 ], [ -78.966957, 37.64443 ], [ -78.966688, 37.644536 ], [ -78.966474, 37.644631 ], [ -78.966164, 37.644789 ], [ -78.965983, 37.644902 ], [ -78.965692, 37.645098 ], [ -78.965428, 37.645294 ], [ -78.965238, 37.645456 ], [ -78.965063, 37.645628 ], [ -78.964898, 37.645816 ], [ -78.964762, 37.645992 ], [ -78.964605, 37.646219 ], [ -78.964465, 37.646453 ], [ -78.964354, 37.646672 ], [ -78.96426, 37.646896 ], [ -78.964184, 37.647124 ], [ -78.964105, 37.647472 ], [ -78.964045, 37.647822 ], [ -78.963795, 37.650137 ], [ -78.963771, 37.650446 ], [ -78.963726, 37.650831 ], [ -78.963699, 37.651104 ], [ -78.963637, 37.651545 ], [ -78.963559, 37.651968 ], [ -78.963475, 37.652244 ], [ -78.963403, 37.652439 ], [ -78.963343, 37.65259 ], [ -78.963259, 37.652771 ], [ -78.963211, 37.652855 ], [ -78.963159, 37.652948 ], [ -78.963044, 37.653119 ], [ -78.962876, 37.65334 ], [ -78.962692, 37.653554 ], [ -78.961989, 37.654258 ], [ -78.961507, 37.654728 ], [ -78.961039, 37.655181 ], [ -78.960337, 37.655875 ], [ -78.96023, 37.655972 ], [ -78.960126, 37.656071 ], [ -78.959777, 37.656385 ], [ -78.959596, 37.656559 ], [ -78.959428, 37.656733 ], [ -78.95894, 37.657212 ], [ -78.958347, 37.65781 ], [ -78.957955, 37.658265 ], [ -78.957902, 37.65834 ], [ -78.957703, 37.658582 ], [ -78.956957, 37.659613 ], [ -78.956, 37.660952 ], [ -78.95555, 37.661601 ], [ -78.95521, 37.662149 ], [ -78.955078, 37.662367 ], [ -78.954742, 37.662988 ], [ -78.954584, 37.663297 ], [ -78.954305, 37.663917 ], [ -78.954148, 37.6643 ], [ -78.953981, 37.664751 ], [ -78.953842, 37.665162 ], [ -78.953791, 37.665348 ], [ -78.953693, 37.665702 ], [ -78.953658, 37.665836 ], [ -78.953519, 37.666441 ], [ -78.953449, 37.666806 ], [ -78.953407, 37.667104 ], [ -78.953324, 37.667763 ], [ -78.953292, 37.668183 ], [ -78.953221, 37.669156 ], [ -78.953153, 37.670098 ], [ -78.953142, 37.670264 ], [ -78.953141, 37.6704 ], [ -78.953072, 37.671177 ], [ -78.95304, 37.671615 ], [ -78.952995, 37.672174 ], [ -78.952947, 37.672942 ], [ -78.95292, 37.673225 ], [ -78.952878, 37.673819 ], [ -78.952829, 37.674339 ], [ -78.952797, 37.674686 ], [ -78.952784, 37.674804 ], [ -78.952747, 37.675024 ], [ -78.952692, 37.675301 ], [ -78.952624, 37.675578 ], [ -78.952561, 37.675784 ], [ -78.952486, 37.675985 ], [ -78.952442, 37.676122 ], [ -78.952386, 37.676257 ], [ -78.95232, 37.676433 ], [ -78.952115, 37.676852 ], [ -78.952045, 37.676981 ], [ -78.951895, 37.677259 ], [ -78.951765, 37.677478 ], [ -78.951015, 37.678688 ], [ -78.950642, 37.679294 ], [ -78.950106, 37.680167 ], [ -78.949932, 37.680439 ], [ -78.949555, 37.681057 ], [ -78.948514, 37.682749 ], [ -78.948346, 37.683014 ], [ -78.94819, 37.68327 ], [ -78.947933, 37.683687 ], [ -78.947735, 37.683997 ], [ -78.946949, 37.685284 ], [ -78.946763, 37.685577 ], [ -78.946171, 37.686544 ], [ -78.946077, 37.686718 ], [ -78.945972, 37.686928 ], [ -78.945848, 37.687201 ], [ -78.945794, 37.687349 ], [ -78.945689, 37.687661 ], [ -78.945632, 37.687901 ], [ -78.945568, 37.688266 ], [ -78.945541, 37.688542 ], [ -78.945537, 37.688659 ], [ -78.945545, 37.689126 ], [ -78.945579, 37.689434 ], [ -78.945664, 37.689907 ], [ -78.945683, 37.68999 ], [ -78.945776, 37.690456 ], [ -78.945835, 37.69071 ], [ -78.945961, 37.691323 ], [ -78.946182, 37.69241 ], [ -78.946237, 37.692788 ], [ -78.946274, 37.693085 ], [ -78.946296, 37.693491 ], [ -78.946303, 37.694022 ], [ -78.946301, 37.694057 ], [ -78.946287, 37.694387 ], [ -78.946261, 37.694709 ], [ -78.946249, 37.694805 ], [ -78.946182, 37.695293 ], [ -78.946055, 37.695876 ], [ -78.945864, 37.696567 ], [ -78.945405, 37.698162 ], [ -78.945298, 37.698548 ], [ -78.944826, 37.700186 ], [ -78.944719, 37.700501 ], [ -78.94458, 37.700835 ], [ -78.944457, 37.701074 ], [ -78.944324, 37.701307 ], [ -78.944135, 37.701595 ], [ -78.944026, 37.701738 ], [ -78.943778, 37.70202 ], [ -78.943504, 37.702305 ], [ -78.943214, 37.702564 ], [ -78.94302, 37.702719 ], [ -78.942935, 37.702779 ], [ -78.942809, 37.702868 ], [ -78.942485, 37.703077 ], [ -78.942218, 37.703232 ], [ -78.9405, 37.704132 ], [ -78.940455, 37.704155 ], [ -78.940006, 37.704381 ], [ -78.938227, 37.705302 ], [ -78.93698, 37.705948 ], [ -78.93647, 37.706225 ], [ -78.93488, 37.707122 ], [ -78.934646, 37.707256 ], [ -78.93388, 37.707679 ], [ -78.933448, 37.707924 ], [ -78.932774, 37.708305 ], [ -78.931107, 37.709235 ], [ -78.929365, 37.710215 ], [ -78.928987, 37.710423 ], [ -78.928188, 37.710873 ], [ -78.927848, 37.711058 ], [ -78.927739, 37.711117 ], [ -78.927286, 37.71134 ], [ -78.927035, 37.711449 ], [ -78.926705, 37.711572 ], [ -78.926357, 37.711684 ], [ -78.926015, 37.711773 ], [ -78.925764, 37.711831 ], [ -78.925742, 37.711836 ], [ -78.925395, 37.711899 ], [ -78.925098, 37.711943 ], [ -78.92463, 37.712006 ], [ -78.924358, 37.71204 ], [ -78.9241, 37.712072 ], [ -78.923317, 37.712168 ], [ -78.922673, 37.712257 ], [ -78.921644, 37.712386 ], [ -78.920771, 37.712503 ], [ -78.91879, 37.712755 ], [ -78.917763, 37.712894 ], [ -78.916758, 37.713029 ], [ -78.916316, 37.713107 ], [ -78.915891, 37.713204 ], [ -78.915614, 37.71328 ], [ -78.915324, 37.713372 ], [ -78.915274, 37.713388 ], [ -78.914912, 37.71352 ], [ -78.91455, 37.71367 ], [ -78.914179, 37.713842 ], [ -78.913675, 37.714085 ], [ -78.912967, 37.714415 ], [ -78.910226, 37.715714 ], [ -78.90939, 37.716116 ], [ -78.908844, 37.716378 ], [ -78.908565, 37.716525 ], [ -78.908344, 37.716654 ], [ -78.908223, 37.716733 ], [ -78.907898, 37.716972 ], [ -78.907709, 37.71712 ], [ -78.907284, 37.717479 ], [ -78.905705, 37.718784 ], [ -78.905314, 37.719084 ], [ -78.90491, 37.719372 ], [ -78.904525, 37.719604 ], [ -78.904033, 37.719882 ], [ -78.903337, 37.720265 ], [ -78.902528, 37.720722 ], [ -78.902455, 37.720766 ], [ -78.902055, 37.720998 ], [ -78.901704, 37.721237 ], [ -78.901372, 37.721492 ], [ -78.901207, 37.721632 ], [ -78.901102, 37.721732 ], [ -78.90093, 37.721897 ], [ -78.900791, 37.722043 ], [ -78.900736, 37.722103 ], [ -78.900601, 37.722261 ], [ -78.900394, 37.722523 ], [ -78.900222, 37.722764 ], [ -78.900079, 37.722992 ], [ -78.900004, 37.723131 ], [ -78.899716, 37.723665 ], [ -78.899467, 37.724145 ], [ -78.899406, 37.724274 ], [ -78.89922, 37.72461 ], [ -78.899008, 37.725016 ], [ -78.898838, 37.725322 ], [ -78.898749, 37.725462 ], [ -78.898619, 37.725684 ], [ -78.898501, 37.725886 ], [ -78.898424, 37.726009 ], [ -78.898396, 37.726054 ], [ -78.89823, 37.726333 ], [ -78.897785, 37.72702 ], [ -78.897326, 37.727687 ], [ -78.897029, 37.728104 ], [ -78.896755, 37.72847 ], [ -78.896087, 37.729327 ], [ -78.895376, 37.730223 ], [ -78.89492, 37.73078 ], [ -78.894224, 37.731648 ], [ -78.893951, 37.731982 ], [ -78.893208, 37.732922 ], [ -78.893101, 37.733073 ], [ -78.892951, 37.733284 ], [ -78.892829, 37.733486 ], [ -78.892725, 37.733694 ], [ -78.892653, 37.733852 ], [ -78.892395, 37.734583 ], [ -78.892264, 37.735006 ], [ -78.891874, 37.73617 ], [ -78.891809, 37.736394 ], [ -78.891615, 37.736972 ], [ -78.891508, 37.737307 ], [ -78.891316, 37.737819 ], [ -78.891154, 37.738191 ], [ -78.891075, 37.738356 ], [ -78.891011, 37.738485 ], [ -78.890701, 37.739024 ], [ -78.890539, 37.739262 ], [ -78.890353, 37.739521 ], [ -78.890119, 37.739847 ], [ -78.889796, 37.740253 ], [ -78.889491, 37.740645 ], [ -78.889217, 37.740996 ], [ -78.888944, 37.74133 ], [ -78.888623, 37.741743 ], [ -78.888513, 37.741886 ], [ -78.888267, 37.742188 ], [ -78.887876, 37.742653 ], [ -78.887675, 37.74287 ], [ -78.887504, 37.743037 ], [ -78.887277, 37.743237 ], [ -78.887216, 37.743287 ], [ -78.887135, 37.743353 ], [ -78.886534, 37.743824 ], [ -78.886162, 37.744125 ], [ -78.8861, 37.744182 ], [ -78.885899, 37.744355 ], [ -78.885622, 37.744575 ], [ -78.885356, 37.74478 ], [ -78.884605, 37.745388 ], [ -78.884042, 37.74585 ], [ -78.882882, 37.746752 ], [ -78.882051, 37.747417 ], [ -78.880834, 37.748391 ], [ -78.88003, 37.749038 ], [ -78.879751, 37.749271 ], [ -78.879568, 37.74942 ], [ -78.879376, 37.749569 ], [ -78.878419, 37.750353 ], [ -78.877854, 37.750804 ], [ -78.877584, 37.751037 ], [ -78.877286, 37.751315 ], [ -78.877004, 37.751598 ], [ -78.876844, 37.751774 ], [ -78.876626, 37.752042 ], [ -78.876378, 37.752385 ], [ -78.876192, 37.752665 ], [ -78.876061, 37.752882 ], [ -78.875814, 37.753345 ], [ -78.875209, 37.754691 ], [ -78.874619, 37.756931 ], [ -78.874501, 37.757307 ], [ -78.874339, 37.757855 ], [ -78.873994, 37.758979 ], [ -78.873789, 37.759637 ], [ -78.873696, 37.75991 ], [ -78.873541, 37.760318 ], [ -78.873332, 37.760834 ], [ -78.873094, 37.761337 ], [ -78.872847, 37.761808 ], [ -78.872451, 37.762468 ], [ -78.872257, 37.76277 ], [ -78.871993, 37.763172 ], [ -78.871574, 37.763799 ], [ -78.871327, 37.764167 ], [ -78.871012, 37.764642 ], [ -78.870469, 37.765468 ], [ -78.870316, 37.765702 ], [ -78.870042, 37.766126 ], [ -78.869873, 37.766412 ], [ -78.869781, 37.766589 ], [ -78.869687, 37.766814 ], [ -78.869585, 37.76708 ], [ -78.869516, 37.767314 ], [ -78.869424, 37.767698 ], [ -78.869391, 37.767942 ], [ -78.86938, 37.768238 ], [ -78.869389, 37.768459 ], [ -78.869415, 37.768673 ], [ -78.869485, 37.768991 ], [ -78.869567, 37.769255 ], [ -78.86966, 37.769515 ], [ -78.869743, 37.769714 ], [ -78.869793, 37.769822 ], [ -78.870127, 37.770634 ], [ -78.870244, 37.770938 ], [ -78.870299, 37.771157 ], [ -78.870337, 37.771378 ], [ -78.870379, 37.771605 ], [ -78.870392, 37.771879 ], [ -78.870378, 37.772127 ], [ -78.870337, 37.772397 ], [ -78.870272, 37.77267 ], [ -78.870248, 37.772764 ], [ -78.87004, 37.773562 ], [ -78.869728, 37.774718 ], [ -78.869574, 37.775264 ], [ -78.869411, 37.775864 ], [ -78.869234, 37.776522 ], [ -78.869061, 37.777151 ], [ -78.868889, 37.777735 ], [ -78.868643, 37.778648 ], [ -78.868399, 37.779571 ], [ -78.868224, 37.780198 ], [ -78.868067, 37.780782 ], [ -78.867497, 37.782893 ], [ -78.867434, 37.783141 ], [ -78.867364, 37.783414 ], [ -78.867185, 37.784047 ], [ -78.867156, 37.784152 ], [ -78.867042, 37.784562 ], [ -78.866921, 37.785054 ], [ -78.866779, 37.785508 ], [ -78.866518, 37.786333 ], [ -78.866458, 37.786501 ], [ -78.866348, 37.786832 ], [ -78.866066, 37.787709 ], [ -78.865703, 37.788816 ], [ -78.865457, 37.789659 ], [ -78.865164, 37.790592 ], [ -78.864927, 37.791345 ], [ -78.864619, 37.792175 ], [ -78.864507, 37.792484 ], [ -78.864363, 37.792792 ], [ -78.864228, 37.793041 ], [ -78.864067, 37.7933 ], [ -78.863882, 37.793548 ], [ -78.863684, 37.793797 ], [ -78.863319, 37.794211 ], [ -78.863117, 37.794344 ], [ -78.86295, 37.794541 ], [ -78.862701, 37.794857 ], [ -78.86248, 37.795184 ], [ -78.862275, 37.795518 ], [ -78.862199, 37.795651 ], [ -78.862007, 37.796159 ], [ -78.861989, 37.79622 ], [ -78.861909, 37.796548 ], [ -78.861883, 37.796687 ], [ -78.861846, 37.796942 ], [ -78.861828, 37.797235 ], [ -78.861827, 37.797529 ], [ -78.861837, 37.797754 ], [ -78.861844, 37.797901 ], [ -78.861878, 37.798631 ], [ -78.861919, 37.799738 ], [ -78.861971, 37.800826 ], [ -78.862007, 37.801869 ], [ -78.862081, 37.803303 ], [ -78.862104, 37.80423 ], [ -78.86209, 37.804437 ], [ -78.862063, 37.804642 ], [ -78.862038, 37.804754 ], [ -78.862023, 37.804816 ], [ -78.861947, 37.805046 ], [ -78.861861, 37.805246 ], [ -78.861771, 37.805437 ], [ -78.86165, 37.805634 ], [ -78.861512, 37.805817 ], [ -78.861343, 37.806004 ], [ -78.860353, 37.806994 ], [ -78.859848, 37.807481 ], [ -78.858512, 37.808821 ], [ -78.858367, 37.808958 ], [ -78.858079, 37.809211 ], [ -78.857729, 37.809505 ], [ -78.857293, 37.80986 ], [ -78.856987, 37.81009 ], [ -78.856658, 37.810338 ], [ -78.855693, 37.81105 ], [ -78.85561, 37.811115 ], [ -78.855262, 37.811371 ], [ -78.854965, 37.811605 ], [ -78.853694, 37.812587 ], [ -78.853389, 37.812818 ], [ -78.852362, 37.813637 ], [ -78.851981, 37.813912 ], [ -78.851517, 37.814266 ], [ -78.851057, 37.81462 ], [ -78.85085, 37.814768 ], [ -78.850729, 37.814859 ], [ -78.850652, 37.81492 ], [ -78.850085, 37.815369 ], [ -78.848637, 37.81648 ], [ -78.846503, 37.818117 ], [ -78.846263, 37.818303 ], [ -78.845641, 37.818784 ], [ -78.845198, 37.81912 ], [ -78.844287, 37.819835 ], [ -78.843809, 37.820229 ], [ -78.841255, 37.822413 ], [ -78.840635, 37.822925 ], [ -78.840114, 37.823377 ], [ -78.839772, 37.823685 ], [ -78.839408, 37.824047 ], [ -78.839049, 37.824425 ], [ -78.838766, 37.824737 ], [ -78.838386, 37.825182 ], [ -78.838147, 37.825481 ], [ -78.837849, 37.82588 ], [ -78.837407, 37.826506 ], [ -78.837204, 37.826823 ], [ -78.837053, 37.827081 ], [ -78.836731, 37.827595 ], [ -78.836452, 37.828104 ], [ -78.836275, 37.828399 ], [ -78.836111, 37.828667 ], [ -78.835849, 37.82912 ], [ -78.835504, 37.829691 ], [ -78.835352, 37.829945 ], [ -78.83498, 37.830568 ], [ -78.834935, 37.830642 ], [ -78.834826, 37.830821 ], [ -78.834646, 37.831137 ], [ -78.834377, 37.831577 ], [ -78.833853, 37.832462 ], [ -78.833724, 37.832692 ], [ -78.833217, 37.833546 ], [ -78.831919, 37.835713 ], [ -78.831568, 37.836263 ], [ -78.831293, 37.836637 ], [ -78.831013, 37.836981 ], [ -78.83077, 37.837252 ], [ -78.829687, 37.838434 ], [ -78.829526, 37.8386 ], [ -78.829353, 37.838766 ], [ -78.828845, 37.839208 ], [ -78.828553, 37.839442 ], [ -78.828248, 37.839665 ], [ -78.827736, 37.840071 ], [ -78.82744, 37.840316 ], [ -78.827359, 37.840393 ], [ -78.827219, 37.840526 ], [ -78.827033, 37.840723 ], [ -78.82681, 37.840985 ], [ -78.826636, 37.841213 ], [ -78.826324, 37.841668 ], [ -78.825848, 37.842321 ], [ -78.825635, 37.842569 ], [ -78.825481, 37.842727 ], [ -78.825276, 37.842917 ], [ -78.825211, 37.842971 ], [ -78.825103, 37.843062 ], [ -78.824902, 37.843225 ], [ -78.824735, 37.84334 ], [ -78.824467, 37.843502 ], [ -78.824206, 37.843652 ], [ -78.82312, 37.844198 ], [ -78.822611, 37.844456 ], [ -78.821878, 37.84482 ], [ -78.820981, 37.845244 ], [ -78.82067, 37.845389 ], [ -78.820264, 37.845536 ], [ -78.820038, 37.845598 ], [ -78.819873, 37.845635 ], [ -78.81967, 37.845683 ], [ -78.819501, 37.845707 ], [ -78.819221, 37.845735 ], [ -78.818871, 37.845752 ], [ -78.818684, 37.845746 ], [ -78.818377, 37.845729 ], [ -78.818065, 37.845689 ], [ -78.817748, 37.845635 ], [ -78.817461, 37.845563 ], [ -78.817089, 37.845456 ], [ -78.81664, 37.845308 ], [ -78.816094, 37.845137 ], [ -78.815801, 37.845042 ], [ -78.815106, 37.844835 ], [ -78.814203, 37.844545 ], [ -78.813661, 37.844372 ], [ -78.813194, 37.844227 ], [ -78.812793, 37.844119 ], [ -78.812466, 37.844059 ], [ -78.812161, 37.844015 ], [ -78.811899, 37.843994 ], [ -78.811692, 37.843985 ], [ -78.81145, 37.844002 ], [ -78.811288, 37.844022 ], [ -78.810966, 37.84409 ], [ -78.810704, 37.844162 ], [ -78.810498, 37.844229 ], [ -78.810246, 37.844336 ], [ -78.80993, 37.84449 ], [ -78.809727, 37.844605 ], [ -78.809573, 37.844705 ], [ -78.809276, 37.84492 ], [ -78.809029, 37.845076 ], [ -78.808807, 37.845199 ], [ -78.808527, 37.845332 ], [ -78.808311, 37.845419 ], [ -78.808089, 37.845498 ], [ -78.807811, 37.845579 ], [ -78.807589, 37.845643 ], [ -78.807297, 37.845708 ], [ -78.807, 37.845759 ], [ -78.806691, 37.845797 ], [ -78.806302, 37.845837 ], [ -78.805184, 37.845933 ], [ -78.80503, 37.845945 ], [ -78.804012, 37.846026 ], [ -78.800837, 37.846324 ], [ -78.800537, 37.846339 ], [ -78.800237, 37.846355 ], [ -78.800014, 37.846352 ], [ -78.79976, 37.846345 ], [ -78.799425, 37.846321 ], [ -78.799048, 37.846276 ], [ -78.79881, 37.846227 ], [ -78.798587, 37.846183 ], [ -78.798334, 37.846121 ], [ -78.798127, 37.846044 ], [ -78.797833, 37.845932 ], [ -78.797473, 37.845765 ], [ -78.797183, 37.845617 ], [ -78.796923, 37.845465 ], [ -78.796357, 37.845082 ], [ -78.795818, 37.844712 ], [ -78.795607, 37.84458 ], [ -78.795352, 37.844427 ], [ -78.795147, 37.84431 ], [ -78.794915, 37.844201 ], [ -78.794645, 37.844085 ], [ -78.794419, 37.843996 ], [ -78.794095, 37.843903 ], [ -78.793805, 37.843828 ], [ -78.793467, 37.843774 ], [ -78.793125, 37.84374 ], [ -78.792933, 37.843732 ], [ -78.792722, 37.843723 ], [ -78.792238, 37.84372 ], [ -78.791688, 37.843732 ], [ -78.791137, 37.843731 ], [ -78.790713, 37.843712 ], [ -78.790444, 37.843693 ], [ -78.79016, 37.843657 ], [ -78.78988, 37.843607 ], [ -78.789604, 37.843542 ], [ -78.789363, 37.843478 ], [ -78.789067, 37.843389 ], [ -78.788706, 37.843253 ], [ -78.78839, 37.843125 ], [ -78.788101, 37.843016 ], [ -78.78765, 37.842857 ], [ -78.787324, 37.842748 ], [ -78.787056, 37.84268 ], [ -78.786677, 37.842606 ], [ -78.786459, 37.842568 ], [ -78.786292, 37.842537 ], [ -78.785994, 37.842501 ], [ -78.785649, 37.842467 ], [ -78.785267, 37.842457 ], [ -78.784945, 37.842456 ], [ -78.784589, 37.842468 ], [ -78.782212, 37.842633 ], [ -78.780497, 37.842776 ], [ -78.779987, 37.842814 ], [ -78.778924, 37.842896 ], [ -78.77812, 37.842986 ], [ -78.777773, 37.843042 ], [ -78.777066, 37.843144 ], [ -78.776444, 37.84325 ], [ -78.775647, 37.843402 ], [ -78.774632, 37.843601 ], [ -78.773646, 37.843786 ], [ -78.773282, 37.843855 ], [ -78.772981, 37.843912 ], [ -78.772128, 37.844091 ], [ -78.771161, 37.844316 ], [ -78.770651, 37.844441 ], [ -78.769991, 37.844616 ], [ -78.768859, 37.844941 ], [ -78.768162, 37.845142 ], [ -78.767015, 37.845472 ], [ -78.76637, 37.845658 ], [ -78.765119, 37.846012 ], [ -78.761663, 37.84701 ], [ -78.760903, 37.847224 ], [ -78.760298, 37.847402 ], [ -78.75996, 37.847506 ], [ -78.7597, 37.847596 ], [ -78.759532, 37.84765 ], [ -78.759113, 37.847806 ], [ -78.758783, 37.847948 ], [ -78.758412, 37.84812 ], [ -78.758057, 37.848288 ], [ -78.757154, 37.848747 ], [ -78.756986, 37.848829 ], [ -78.756546, 37.849062 ], [ -78.756115, 37.849306 ], [ -78.755862, 37.849458 ], [ -78.755244, 37.849843 ], [ -78.754769, 37.85013 ], [ -78.754377, 37.85038 ], [ -78.753945, 37.850672 ], [ -78.753673, 37.850873 ], [ -78.753364, 37.851127 ], [ -78.753217, 37.851259 ], [ -78.752739, 37.851715 ], [ -78.752046, 37.852374 ], [ -78.75166, 37.852719 ], [ -78.751401, 37.852929 ], [ -78.751134, 37.853132 ], [ -78.750789, 37.853376 ], [ -78.750504, 37.853564 ], [ -78.750081, 37.853824 ], [ -78.74973, 37.854021 ], [ -78.749369, 37.854207 ], [ -78.748998, 37.85438 ], [ -78.748624, 37.854531 ], [ -78.748053, 37.854743 ], [ -78.747045, 37.85508 ], [ -78.746537, 37.855262 ], [ -78.746473, 37.855285 ], [ -78.745985, 37.855474 ], [ -78.7456, 37.855635 ], [ -78.744986, 37.855911 ], [ -78.744673, 37.856064 ], [ -78.744246, 37.856299 ], [ -78.743761, 37.856591 ], [ -78.743416, 37.856817 ], [ -78.742954, 37.857145 ], [ -78.742639, 37.857387 ], [ -78.742337, 37.85764 ], [ -78.742294, 37.85768 ], [ -78.741896, 37.858045 ], [ -78.741503, 37.85843 ], [ -78.741291, 37.858648 ], [ -78.741254, 37.858686 ], [ -78.740963, 37.859027 ], [ -78.740705, 37.859351 ], [ -78.740668, 37.859398 ], [ -78.740453, 37.85968 ], [ -78.739901, 37.860385 ], [ -78.739675, 37.860647 ], [ -78.739434, 37.860902 ], [ -78.739176, 37.861151 ], [ -78.73895, 37.861357 ], [ -78.738655, 37.861604 ], [ -78.738411, 37.861795 ], [ -78.738094, 37.862025 ], [ -78.737733, 37.862262 ], [ -78.737429, 37.862445 ], [ -78.73708, 37.862638 ], [ -78.73657, 37.862893 ], [ -78.736186, 37.863088 ], [ -78.735435, 37.86348 ], [ -78.734529, 37.863942 ], [ -78.733874, 37.864271 ], [ -78.733562, 37.864427 ], [ -78.733042, 37.864704 ], [ -78.732039, 37.865214 ], [ -78.731948, 37.865258 ], [ -78.731785, 37.865335 ], [ -78.731411, 37.86553 ], [ -78.730148, 37.866169 ], [ -78.729986, 37.866254 ], [ -78.729722, 37.866391 ], [ -78.728688, 37.866913 ], [ -78.727888, 37.86733 ], [ -78.727529, 37.86751 ], [ -78.726765, 37.867904 ], [ -78.726166, 37.868202 ], [ -78.725869, 37.868361 ], [ -78.725428, 37.868579 ], [ -78.725084, 37.868757 ], [ -78.724518, 37.869049 ], [ -78.723898, 37.869354 ], [ -78.722779, 37.869945 ], [ -78.721592, 37.870542 ], [ -78.720481, 37.87111 ], [ -78.719958, 37.871373 ], [ -78.719701, 37.871497 ], [ -78.719365, 37.871672 ], [ -78.718719, 37.872028 ], [ -78.71847, 37.872183 ], [ -78.718164, 37.872388 ], [ -78.717945, 37.872553 ], [ -78.717592, 37.872851 ], [ -78.717285, 37.873139 ], [ -78.717049, 37.873363 ], [ -78.716739, 37.873728 ], [ -78.716536, 37.874002 ], [ -78.716395, 37.874221 ], [ -78.716144, 37.874657 ], [ -78.71604, 37.87487 ], [ -78.715888, 37.875212 ], [ -78.715814, 37.875401 ], [ -78.715694, 37.87571 ], [ -78.715495, 37.876238 ], [ -78.715377, 37.876548 ], [ -78.715275, 37.876817 ], [ -78.71521, 37.877013 ], [ -78.715136, 37.877211 ], [ -78.715081, 37.877371 ], [ -78.714995, 37.877587 ], [ -78.71492, 37.877787 ], [ -78.7148, 37.878131 ], [ -78.714687, 37.878428 ], [ -78.714533, 37.878796 ], [ -78.714454, 37.879009 ], [ -78.714417, 37.879116 ], [ -78.714256, 37.879549 ], [ -78.714141, 37.879854 ], [ -78.713896, 37.880594 ], [ -78.713756, 37.881038 ], [ -78.713682, 37.88126 ], [ -78.713617, 37.881457 ], [ -78.713533, 37.881697 ], [ -78.713446, 37.881943 ], [ -78.713394, 37.882108 ], [ -78.713314, 37.882336 ], [ -78.713184, 37.882655 ], [ -78.713006, 37.883053 ], [ -78.712892, 37.883274 ], [ -78.712733, 37.88355 ], [ -78.712558, 37.88384 ], [ -78.712369, 37.884119 ], [ -78.712275, 37.884257 ], [ -78.712136, 37.884449 ], [ -78.711974, 37.884667 ], [ -78.711814, 37.884876 ], [ -78.711641, 37.885085 ], [ -78.711418, 37.885345 ], [ -78.711139, 37.885644 ], [ -78.710798, 37.88599 ], [ -78.710465, 37.886309 ], [ -78.710195, 37.886555 ], [ -78.709928, 37.886781 ], [ -78.709577, 37.88706 ], [ -78.709406, 37.887199 ], [ -78.709211, 37.887345 ], [ -78.708778, 37.887648 ], [ -78.707968, 37.888179 ], [ -78.707642, 37.888399 ], [ -78.707473, 37.88851 ], [ -78.707244, 37.888663 ], [ -78.706965, 37.888843 ], [ -78.706601, 37.889083 ], [ -78.706088, 37.889425 ], [ -78.705712, 37.889669 ], [ -78.705189, 37.890019 ], [ -78.704893, 37.890211 ], [ -78.703445, 37.891162 ], [ -78.703041, 37.891429 ], [ -78.702721, 37.891638 ], [ -78.702327, 37.891905 ], [ -78.70184, 37.892223 ], [ -78.701163, 37.892662 ], [ -78.700778, 37.892933 ], [ -78.70071, 37.892981 ], [ -78.700622, 37.893046 ], [ -78.700337, 37.893272 ], [ -78.69999, 37.89357 ], [ -78.699755, 37.8938 ], [ -78.699482, 37.894099 ], [ -78.699289, 37.894329 ], [ -78.698787, 37.894984 ], [ -78.698558, 37.895284 ], [ -78.69837, 37.895519 ], [ -78.698116, 37.895851 ], [ -78.697966, 37.896055 ], [ -78.697696, 37.896407 ], [ -78.697057, 37.897242 ], [ -78.696439, 37.898041 ], [ -78.695681, 37.899035 ], [ -78.695049, 37.899863 ], [ -78.694658, 37.900403 ], [ -78.694519, 37.900599 ], [ -78.694429, 37.900733 ], [ -78.693954, 37.901464 ], [ -78.693721, 37.901862 ], [ -78.693473, 37.902275 ], [ -78.693102, 37.902981 ], [ -78.692879, 37.903439 ], [ -78.692797, 37.903623 ], [ -78.692129, 37.905105 ], [ -78.691808, 37.905817 ], [ -78.691268, 37.906984 ], [ -78.690987, 37.907549 ], [ -78.690814, 37.907874 ], [ -78.690688, 37.908089 ], [ -78.690521, 37.908372 ], [ -78.690275, 37.908767 ], [ -78.689663, 37.909657 ], [ -78.689078, 37.910492 ], [ -78.685485, 37.915666 ], [ -78.684467, 37.917131 ], [ -78.682047, 37.920608 ], [ -78.681785, 37.92095 ], [ -78.681517, 37.921272 ], [ -78.681241, 37.921578 ], [ -78.68101, 37.921818 ], [ -78.680605, 37.922194 ], [ -78.68013, 37.922617 ], [ -78.679566, 37.923137 ], [ -78.679307, 37.923403 ], [ -78.678986, 37.92374 ], [ -78.678605, 37.924203 ], [ -78.678345, 37.924561 ], [ -78.678124, 37.924891 ], [ -78.677903, 37.925227 ], [ -78.677688, 37.925589 ], [ -78.677544, 37.925878 ], [ -78.67731, 37.926442 ], [ -78.676551, 37.928284 ], [ -78.676404, 37.928595 ], [ -78.676242, 37.928949 ], [ -78.676148, 37.929122 ], [ -78.675977, 37.929377 ], [ -78.675612, 37.929807 ], [ -78.675385, 37.930086 ], [ -78.675213, 37.930312 ], [ -78.675004, 37.930559 ], [ -78.674617, 37.931044 ], [ -78.67407, 37.931702 ], [ -78.673673, 37.932201 ], [ -78.673281, 37.9327 ], [ -78.672994, 37.933082 ], [ -78.672166, 37.934227 ], [ -78.671112, 37.935771 ], [ -78.670762, 37.936281 ], [ -78.670385, 37.936817 ], [ -78.669877, 37.937599 ], [ -78.668999, 37.93886 ], [ -78.667671, 37.940789 ], [ -78.666721, 37.942158 ], [ -78.666126, 37.943118 ], [ -78.665597, 37.944014 ], [ -78.665125, 37.944827 ], [ -78.664642, 37.945633 ], [ -78.664087, 37.946602 ], [ -78.663665, 37.947366 ], [ -78.663523, 37.947648 ], [ -78.663363, 37.948007 ], [ -78.66312, 37.948581 ], [ -78.662992, 37.948919 ], [ -78.662788, 37.949511 ], [ -78.662392, 37.950794 ], [ -78.662127, 37.951686 ], [ -78.661907, 37.952368 ], [ -78.6618, 37.952667 ], [ -78.661673, 37.952964 ], [ -78.661549, 37.953229 ], [ -78.661377, 37.953546 ], [ -78.661172, 37.953875 ], [ -78.660975, 37.954168 ], [ -78.660712, 37.954527 ], [ -78.660589, 37.954686 ], [ -78.660525, 37.954768 ], [ -78.660204, 37.955161 ], [ -78.659899, 37.955515 ], [ -78.65946, 37.956045 ], [ -78.659107, 37.956472 ], [ -78.658939, 37.95668 ], [ -78.658404, 37.957325 ], [ -78.658185, 37.957583 ], [ -78.657413, 37.958505 ], [ -78.65713, 37.958855 ], [ -78.65677, 37.959264 ], [ -78.656612, 37.959431 ], [ -78.656439, 37.95959 ], [ -78.656251, 37.959739 ], [ -78.656068, 37.959867 ], [ -78.655989, 37.959917 ], [ -78.655752, 37.960052 ], [ -78.655575, 37.96015 ], [ -78.655228, 37.960289 ], [ -78.654931, 37.960405 ], [ -78.653275, 37.960978 ], [ -78.652399, 37.961277 ], [ -78.651659, 37.961545 ], [ -78.651372, 37.96167 ], [ -78.651131, 37.961788 ], [ -78.650953, 37.961888 ], [ -78.65077, 37.962003 ], [ -78.650655, 37.962074 ], [ -78.650545, 37.96215 ], [ -78.650369, 37.962277 ], [ -78.650124, 37.962492 ], [ -78.649827, 37.962781 ], [ -78.649528, 37.963082 ], [ -78.649157, 37.963468 ], [ -78.648771, 37.96385 ], [ -78.648569, 37.964042 ], [ -78.648236, 37.964318 ], [ -78.647928, 37.964546 ], [ -78.647355, 37.964951 ], [ -78.646421, 37.965624 ], [ -78.646034, 37.965897 ], [ -78.645591, 37.966218 ], [ -78.645351, 37.966376 ], [ -78.645051, 37.966569 ], [ -78.644735, 37.966754 ], [ -78.644581, 37.96684 ], [ -78.6444, 37.966936 ], [ -78.643915, 37.967163 ], [ -78.643555, 37.967319 ], [ -78.643147, 37.967465 ], [ -78.642853, 37.967561 ], [ -78.642519, 37.96766 ], [ -78.642395, 37.967695 ], [ -78.642095, 37.967768 ], [ -78.641871, 37.967823 ], [ -78.641449, 37.967916 ], [ -78.640993, 37.967991 ], [ -78.640408, 37.968066 ], [ -78.639997, 37.968103 ], [ -78.639496, 37.96813 ], [ -78.638995, 37.968136 ], [ -78.638434, 37.968125 ], [ -78.637944, 37.9681 ], [ -78.63612, 37.967958 ], [ -78.635136, 37.967873 ], [ -78.633802, 37.96777 ], [ -78.632073, 37.967631 ], [ -78.631801, 37.967611 ], [ -78.630935, 37.967546 ], [ -78.630424, 37.967503 ], [ -78.629697, 37.967442 ], [ -78.628686, 37.967361 ], [ -78.626167, 37.967159 ], [ -78.623282, 37.966927 ], [ -78.622258, 37.96685 ], [ -78.621932, 37.966824 ], [ -78.620819, 37.966736 ], [ -78.620381, 37.966716 ], [ -78.620004, 37.966712 ], [ -78.619679, 37.966717 ], [ -78.61937, 37.966745 ], [ -78.619064, 37.966787 ], [ -78.618761, 37.966844 ], [ -78.618523, 37.9669 ], [ -78.618222, 37.966977 ], [ -78.617837, 37.967103 ], [ -78.617525, 37.967224 ], [ -78.617264, 37.967333 ], [ -78.616866, 37.967526 ], [ -78.61666, 37.96764 ], [ -78.616487, 37.967735 ], [ -78.616266, 37.967872 ], [ -78.615844, 37.968137 ], [ -78.615555, 37.968338 ], [ -78.615229, 37.968577 ], [ -78.614931, 37.968831 ], [ -78.614607, 37.969142 ], [ -78.614381, 37.96937 ], [ -78.614151, 37.969646 ], [ -78.613964, 37.96988 ], [ -78.613494, 37.970554 ], [ -78.61301, 37.971246 ], [ -78.612831, 37.971512 ], [ -78.612279, 37.972333 ], [ -78.611229, 37.97389 ], [ -78.610819, 37.974494 ], [ -78.610719, 37.974624 ], [ -78.610499, 37.974897 ], [ -78.610319, 37.975118 ], [ -78.610116, 37.975331 ], [ -78.609966, 37.975469 ], [ -78.609796, 37.975624 ], [ -78.609591, 37.975796 ], [ -78.609317, 37.976004 ], [ -78.609071, 37.976176 ], [ -78.608849, 37.976327 ], [ -78.608744, 37.97639 ], [ -78.608365, 37.976619 ], [ -78.608101, 37.976752 ], [ -78.607845, 37.976869 ], [ -78.607584, 37.976978 ], [ -78.60725, 37.977103 ], [ -78.606977, 37.977192 ], [ -78.606625, 37.977297 ], [ -78.606266, 37.977388 ], [ -78.606123, 37.977418 ], [ -78.605902, 37.977465 ], [ -78.605646, 37.97752 ], [ -78.605621, 37.977522 ], [ -78.605549, 37.977538 ], [ -78.60423, 37.977756 ], [ -78.602588, 37.978034 ], [ -78.602162, 37.978122 ], [ -78.601825, 37.978203 ], [ -78.601492, 37.978293 ], [ -78.601094, 37.978414 ], [ -78.60071, 37.978547 ], [ -78.600334, 37.978694 ], [ -78.599967, 37.978854 ], [ -78.599486, 37.979083 ], [ -78.599163, 37.979252 ], [ -78.598789, 37.97947 ], [ -78.598549, 37.979624 ], [ -78.597946, 37.980033 ], [ -78.596889, 37.98075 ], [ -78.595137, 37.981939 ], [ -78.593704, 37.982911 ], [ -78.592376, 37.98382 ], [ -78.590854, 37.984906 ], [ -78.590225, 37.985373 ], [ -78.588999, 37.98631 ], [ -78.588012, 37.9871 ], [ -78.587089, 37.987859 ], [ -78.586722, 37.988171 ], [ -78.586183, 37.988631 ], [ -78.585023, 37.989655 ], [ -78.583908, 37.990662 ], [ -78.583686, 37.990885 ], [ -78.583478, 37.991116 ], [ -78.583203, 37.991447 ], [ -78.583057, 37.991641 ], [ -78.582889, 37.99189 ], [ -78.582734, 37.992152 ], [ -78.582584, 37.992445 ], [ -78.582451, 37.992743 ], [ -78.582318, 37.993104 ], [ -78.582229, 37.993396 ], [ -78.582158, 37.993692 ], [ -78.582061, 37.994255 ], [ -78.581989, 37.994788 ], [ -78.581919, 37.9952 ], [ -78.581831, 37.99573 ], [ -78.581596, 37.997239 ], [ -78.581525, 37.997665 ], [ -78.58147, 37.998088 ], [ -78.581083, 38.000517 ], [ -78.580993, 38.001016 ], [ -78.580912, 38.001332 ], [ -78.580857, 38.001514 ], [ -78.580851, 38.001532 ], [ -78.580827, 38.001607 ], [ -78.580788, 38.001711 ], [ -78.580764, 38.001783 ], [ -78.580638, 38.002087 ], [ -78.580501, 38.002397 ], [ -78.580338, 38.002682 ], [ -78.580176, 38.002939 ], [ -78.580026, 38.003155 ], [ -78.57984, 38.003394 ], [ -78.579631, 38.003641 ], [ -78.579528, 38.003748 ], [ -78.579258, 38.004014 ], [ -78.578985, 38.00426 ], [ -78.578784, 38.004426 ], [ -78.578575, 38.004584 ], [ -78.578379, 38.004723 ], [ -78.578122, 38.004899 ], [ -78.577709, 38.005151 ], [ -78.577431, 38.005306 ], [ -78.577141, 38.005444 ], [ -78.576923, 38.005542 ], [ -78.576628, 38.005666 ], [ -78.576327, 38.005766 ], [ -78.576154, 38.005828 ], [ -78.575371, 38.006031 ], [ -78.574274, 38.006313 ], [ -78.573929, 38.006397 ], [ -78.573678, 38.006459 ], [ -78.5731, 38.006602 ], [ -78.572544, 38.006742 ], [ -78.570845, 38.007165 ], [ -78.570536, 38.007245 ], [ -78.570147, 38.007346 ], [ -78.569511, 38.007502 ], [ -78.568866, 38.007677 ], [ -78.568449, 38.007795 ], [ -78.568216, 38.007865 ], [ -78.567861, 38.007984 ], [ -78.567483, 38.008116 ], [ -78.567008, 38.00831 ], [ -78.566642, 38.008471 ], [ -78.566222, 38.008672 ], [ -78.565813, 38.008887 ], [ -78.565381, 38.009126 ], [ -78.564818, 38.009422 ], [ -78.564544, 38.009563 ], [ -78.564196, 38.009735 ], [ -78.564075, 38.009787 ], [ -78.56369, 38.009944 ], [ -78.56326, 38.010103 ], [ -78.562849, 38.010238 ], [ -78.562529, 38.010332 ], [ -78.562124, 38.010438 ], [ -78.561805, 38.010515 ], [ -78.561564, 38.010564 ], [ -78.56093, 38.010675 ], [ -78.560028, 38.010845 ], [ -78.558824, 38.011064 ], [ -78.558024, 38.011219 ], [ -78.557648, 38.011286 ], [ -78.557386, 38.011333 ], [ -78.557058, 38.011387 ], [ -78.555118, 38.011755 ], [ -78.554112, 38.011931 ], [ -78.552878, 38.012156 ], [ -78.552449, 38.01225 ], [ -78.552186, 38.012316 ], [ -78.551829, 38.012417 ], [ -78.551365, 38.012562 ], [ -78.55109, 38.012655 ], [ -78.550658, 38.012829 ], [ -78.550236, 38.013017 ], [ -78.549599, 38.013364 ], [ -78.549376, 38.013492 ], [ -78.549058, 38.013698 ], [ -78.548469, 38.01411 ], [ -78.547659, 38.014674 ], [ -78.547468, 38.014808 ], [ -78.54736, 38.014884 ], [ -78.547042, 38.015096 ], [ -78.546611, 38.015362 ], [ -78.546269, 38.015559 ], [ -78.54592, 38.01574 ], [ -78.545223, 38.016069 ], [ -78.544841, 38.016247 ], [ -78.543906, 38.016682 ], [ -78.543654, 38.016806 ], [ -78.54333, 38.016982 ], [ -78.542733, 38.017318 ], [ -78.542466, 38.017467 ], [ -78.539711, 38.018979 ], [ -78.536725, 38.020664 ], [ -78.535885, 38.021132 ], [ -78.535518, 38.021335 ], [ -78.534742, 38.021766 ], [ -78.534188, 38.022073 ], [ -78.532955, 38.02276 ], [ -78.532173, 38.023196 ], [ -78.531193, 38.023747 ], [ -78.531125, 38.023792 ], [ -78.53075, 38.024045 ], [ -78.530445, 38.024274 ], [ -78.530203, 38.024476 ], [ -78.530016, 38.024649 ], [ -78.529931, 38.024733 ], [ -78.52985, 38.024806 ], [ -78.529798, 38.024854 ], [ -78.529758, 38.024894 ], [ -78.529598, 38.025065 ], [ -78.529327, 38.025386 ], [ -78.52916, 38.025608 ], [ -78.528945, 38.025933 ], [ -78.5288, 38.026176 ], [ -78.528672, 38.026426 ], [ -78.52861, 38.026566 ], [ -78.528405, 38.027066 ], [ -78.52833, 38.027311 ], [ -78.528283, 38.02751 ], [ -78.528235, 38.027689 ], [ -78.528151, 38.028145 ], [ -78.527582, 38.03105 ], [ -78.527126, 38.033402 ], [ -78.52703, 38.033972 ], [ -78.526914, 38.034782 ], [ -78.526868, 38.035166 ], [ -78.52679, 38.036035 ], [ -78.526753, 38.036647 ], [ -78.526715, 38.03781 ], [ -78.526642, 38.040878 ], [ -78.526607, 38.042081 ], [ -78.526584, 38.042473 ], [ -78.526544, 38.042863 ], [ -78.52645, 38.043462 ], [ -78.526353, 38.043907 ], [ -78.526306, 38.044099 ], [ -78.526225, 38.044382 ], [ -78.526103, 38.044762 ], [ -78.525978, 38.045116 ], [ -78.52595, 38.045183 ], [ -78.525619, 38.045973 ], [ -78.525226, 38.046882 ], [ -78.524837, 38.047794 ], [ -78.524807, 38.047861 ], [ -78.524712, 38.048073 ], [ -78.523664, 38.050524 ], [ -78.523608, 38.050633 ], [ -78.523449, 38.050945 ], [ -78.523194, 38.051371 ], [ -78.522992, 38.051667 ], [ -78.522896, 38.051793 ], [ -78.522708, 38.052033 ], [ -78.522379, 38.052403 ], [ -78.522049, 38.052728 ], [ -78.521736, 38.053004 ], [ -78.521375, 38.053289 ], [ -78.521061, 38.053512 ], [ -78.520792, 38.053687 ], [ -78.520433, 38.053898 ], [ -78.5202, 38.054028 ], [ -78.519924, 38.054166 ], [ -78.519561, 38.054329 ], [ -78.519179, 38.054486 ], [ -78.518827, 38.054612 ], [ -78.518437, 38.054736 ], [ -78.518106, 38.054829 ], [ -78.517883, 38.054877 ], [ -78.517638, 38.05494 ], [ -78.517298, 38.055006 ], [ -78.51674, 38.055093 ], [ -78.515503, 38.055228 ], [ -78.513125, 38.055506 ], [ -78.51298, 38.05552 ], [ -78.511721, 38.055664 ], [ -78.510089, 38.05585 ], [ -78.509444, 38.055931 ], [ -78.508892, 38.056018 ], [ -78.508324, 38.056121 ], [ -78.50762, 38.056269 ], [ -78.507101, 38.056364 ], [ -78.5063, 38.056529 ], [ -78.504207, 38.056975 ], [ -78.503544, 38.057129 ], [ -78.50332, 38.057173 ], [ -78.50218, 38.05739 ], [ -78.501769, 38.057476 ], [ -78.501588, 38.057518 ], [ -78.501288, 38.05758 ], [ -78.500918, 38.057644 ], [ -78.50053, 38.057699 ], [ -78.50025, 38.057721 ], [ -78.49999, 38.057731 ], [ -78.4996, 38.057738 ], [ -78.499258, 38.057729 ], [ -78.499228, 38.057727 ], [ -78.498789, 38.057695 ], [ -78.498509, 38.057667 ], [ -78.498249, 38.05764 ], [ -78.497868, 38.057604 ], [ -78.497658, 38.057584 ], [ -78.497235, 38.057537 ], [ -78.496848, 38.057489 ], [ -78.495893, 38.057371 ], [ -78.494978, 38.057279 ], [ -78.49472, 38.057173 ], [ -78.494659, 38.057142 ], [ -78.494592, 38.057093 ], [ -78.494549, 38.057047 ], [ -78.494516, 38.056995 ], [ -78.494502, 38.05695 ], [ -78.494493, 38.056874 ], [ -78.494502, 38.056798 ], [ -78.494522, 38.056739 ], [ -78.494562, 38.056669 ], [ -78.494623, 38.05661 ], [ -78.494697, 38.056562 ], [ -78.494781, 38.056525 ], [ -78.494872, 38.056502 ], [ -78.49496, 38.056493 ], [ -78.495044, 38.0565 ], [ -78.495109, 38.056516 ], [ -78.495169, 38.056541 ], [ -78.495238, 38.056584 ], [ -78.49528, 38.056617 ], [ -78.495339, 38.05668 ], [ -78.495381, 38.056751 ], [ -78.495402, 38.056811 ], [ -78.495415, 38.056894 ], [ -78.495413, 38.056998 ], [ -78.495388, 38.057116 ], [ -78.49528, 38.057239 ], [ -78.495007, 38.057577 ], [ -78.494845, 38.057747 ], [ -78.494782, 38.057825 ], [ -78.494593, 38.05807 ], [ -78.494413, 38.058298 ], [ -78.494268, 38.05847 ], [ -78.494235, 38.058509 ], [ -78.494159, 38.058601 ], [ -78.493967, 38.058833 ], [ -78.493505, 38.059401 ], [ -78.493364, 38.059586 ], [ -78.492889, 38.060182 ], [ -78.492564, 38.060616 ], [ -78.492196, 38.061101 ], [ -78.491916, 38.061468 ], [ -78.491724, 38.061722 ], [ -78.491723, 38.061722 ], [ -78.491578, 38.061897 ], [ -78.491244, 38.062293 ], [ -78.490863, 38.062734 ], [ -78.490477, 38.063153 ], [ -78.490269, 38.06338 ], [ -78.489937, 38.063742 ], [ -78.48969, 38.064008 ], [ -78.489478, 38.064259 ], [ -78.489344, 38.064409 ], [ -78.489289, 38.06447 ], [ -78.489212, 38.064554 ], [ -78.488761, 38.065053 ], [ -78.48815, 38.065739 ], [ -78.488116, 38.065779 ], [ -78.487867, 38.06605 ], [ -78.48713, 38.06686 ], [ -78.486995, 38.067008 ], [ -78.486825, 38.067194 ], [ -78.486343, 38.067727 ], [ -78.486218, 38.067866 ], [ -78.486208, 38.067877 ], [ -78.486134, 38.067959 ], [ -78.48576, 38.068363 ], [ -78.485475, 38.06867 ], [ -78.485154, 38.069027 ], [ -78.484295, 38.070023 ], [ -78.484063, 38.070271 ], [ -78.483776, 38.070614 ], [ -78.483281, 38.071164 ], [ -78.482433, 38.07211 ], [ -78.480968, 38.073741 ], [ -78.480778, 38.073943 ], [ -78.480706, 38.07403 ], [ -78.480376, 38.074401 ], [ -78.479882, 38.074956 ], [ -78.479801, 38.075034 ], [ -78.479272, 38.075634 ], [ -78.478606, 38.076375 ], [ -78.478527, 38.076469 ], [ -78.478367, 38.076647 ], [ -78.477091, 38.078062 ], [ -78.476397, 38.078846 ], [ -78.475743, 38.079571 ], [ -78.474543, 38.08091 ], [ -78.474163, 38.081335 ], [ -78.473969, 38.081577 ], [ -78.473788, 38.081788 ], [ -78.473613, 38.082014 ], [ -78.47347, 38.082218 ], [ -78.472971, 38.083082 ], [ -78.472639, 38.083666 ], [ -78.472264, 38.084319 ], [ -78.471709, 38.085285 ], [ -78.471146, 38.086271 ], [ -78.47079, 38.086895 ], [ -78.470583, 38.087258 ], [ -78.47026, 38.087825 ], [ -78.469568, 38.089039 ], [ -78.468607, 38.090712 ], [ -78.468501, 38.090897 ], [ -78.468139, 38.091557 ], [ -78.468043, 38.091733 ], [ -78.467922, 38.09192 ], [ -78.467732, 38.092218 ], [ -78.46735, 38.0929 ], [ -78.466766, 38.093924 ], [ -78.466497, 38.09437 ], [ -78.466369, 38.094558 ], [ -78.46599, 38.095057 ], [ -78.465526, 38.09564 ], [ -78.465381, 38.095816 ], [ -78.464933, 38.096381 ], [ -78.464463, 38.096962 ], [ -78.464049, 38.097474 ], [ -78.463974, 38.097573 ], [ -78.463441, 38.098232 ], [ -78.46294, 38.098874 ], [ -78.462231, 38.099765 ], [ -78.461478, 38.100721 ], [ -78.460943, 38.101395 ], [ -78.460544, 38.101882 ], [ -78.460009, 38.102564 ], [ -78.459568, 38.103126 ], [ -78.459337, 38.103403 ], [ -78.458603, 38.10429 ], [ -78.457804, 38.105297 ], [ -78.45751, 38.105695 ], [ -78.4569, 38.106619 ], [ -78.456598, 38.107068 ], [ -78.45544, 38.108845 ], [ -78.454988, 38.109578 ], [ -78.454476, 38.110311 ], [ -78.454296, 38.110569 ], [ -78.454206, 38.110708 ], [ -78.454093, 38.110899 ], [ -78.453942, 38.111128 ], [ -78.453769, 38.111409 ], [ -78.453294, 38.112125 ], [ -78.453172, 38.112318 ], [ -78.452856, 38.112817 ], [ -78.452688, 38.11307 ], [ -78.452602, 38.113223 ], [ -78.451975, 38.114186 ], [ -78.451686, 38.11461 ], [ -78.45106, 38.115568 ], [ -78.450908, 38.115798 ], [ -78.450496, 38.11642 ], [ -78.450419, 38.116537 ], [ -78.45032, 38.116697 ], [ -78.450137, 38.116993 ], [ -78.449702, 38.117634 ], [ -78.449172, 38.118448 ], [ -78.448773, 38.119065 ], [ -78.448006, 38.120242 ], [ -78.447677, 38.120726 ], [ -78.447299, 38.121219 ], [ -78.44692, 38.121631 ], [ -78.446411, 38.122124 ], [ -78.4458, 38.12267 ], [ -78.444661, 38.123687 ], [ -78.442392, 38.125724 ], [ -78.441529, 38.126494 ], [ -78.440922, 38.127044 ], [ -78.440006, 38.127866 ], [ -78.439371, 38.128436 ], [ -78.437997, 38.129669 ], [ -78.437902, 38.129754 ], [ -78.437019, 38.130549 ], [ -78.436453, 38.131059 ], [ -78.436187, 38.131299 ], [ -78.435995, 38.13147 ], [ -78.435251, 38.132172 ], [ -78.435106, 38.132303 ], [ -78.434673, 38.132753 ], [ -78.434293, 38.13317 ], [ -78.433695, 38.133887 ], [ -78.433416, 38.134269 ], [ -78.433195, 38.134572 ], [ -78.432173, 38.13616 ], [ -78.430917, 38.138131 ], [ -78.430468, 38.138847 ], [ -78.429836, 38.139833 ], [ -78.429464, 38.140424 ], [ -78.428859, 38.141359 ], [ -78.428348, 38.142178 ], [ -78.428275, 38.142291 ], [ -78.427887, 38.14289 ], [ -78.427641, 38.143278 ], [ -78.427277, 38.143851 ], [ -78.427263, 38.143873 ], [ -78.425718, 38.146293 ], [ -78.4249, 38.147586 ], [ -78.423982, 38.149017 ], [ -78.423879, 38.149181 ], [ -78.4234, 38.149936 ], [ -78.422346, 38.1516 ], [ -78.42208, 38.151996 ], [ -78.421684, 38.152621 ], [ -78.421337, 38.15319 ], [ -78.420383, 38.154692 ], [ -78.419605, 38.155908 ], [ -78.417659, 38.158962 ], [ -78.415009, 38.163121 ], [ -78.414626, 38.163716 ], [ -78.414541, 38.163851 ], [ -78.414293, 38.164245 ], [ -78.412771, 38.16663 ], [ -78.41231, 38.167345 ], [ -78.411781, 38.168185 ], [ -78.410521, 38.170164 ], [ -78.410064, 38.170881 ], [ -78.408661, 38.173081 ], [ -78.408289, 38.173661 ], [ -78.406754, 38.176057 ], [ -78.405791, 38.177582 ], [ -78.405633, 38.177824 ], [ -78.404819, 38.179105 ], [ -78.40451, 38.179581 ], [ -78.403702, 38.180857 ], [ -78.403534, 38.181116 ], [ -78.40229, 38.183084 ], [ -78.402, 38.183534 ], [ -78.401567, 38.184219 ], [ -78.401491, 38.184329 ], [ -78.400918, 38.18523 ], [ -78.400512, 38.185861 ], [ -78.399321, 38.187671 ], [ -78.399195, 38.187856 ], [ -78.399077, 38.188041 ], [ -78.398689, 38.188617 ], [ -78.398558, 38.18882 ], [ -78.397589, 38.190295 ], [ -78.3974, 38.190566 ], [ -78.397207, 38.19086 ], [ -78.396877, 38.191349 ], [ -78.396731, 38.191574 ], [ -78.396016, 38.192652 ], [ -78.395969, 38.192724 ], [ -78.395198, 38.193895 ], [ -78.395145, 38.193978 ], [ -78.395092, 38.194057 ], [ -78.395078, 38.194078 ], [ -78.394787, 38.194511 ], [ -78.394461, 38.19501 ], [ -78.394425, 38.195065 ], [ -78.393867, 38.195904 ], [ -78.393697, 38.196162 ], [ -78.392569, 38.197862 ], [ -78.392356, 38.198186 ], [ -78.391791, 38.199049 ], [ -78.3916, 38.199341 ], [ -78.391424, 38.19959 ], [ -78.391056, 38.200141 ], [ -78.390364, 38.201178 ], [ -78.388697, 38.203713 ], [ -78.387884, 38.204937 ], [ -78.387682, 38.20524 ], [ -78.387424, 38.205639 ], [ -78.386997, 38.206278 ], [ -78.386781, 38.206604 ], [ -78.386138, 38.207581 ], [ -78.385992, 38.207804 ], [ -78.385531, 38.2085 ], [ -78.38498, 38.209334 ], [ -78.384853, 38.209537 ], [ -78.383889, 38.210987 ], [ -78.383519, 38.211533 ], [ -78.383408, 38.211705 ], [ -78.383194, 38.212041 ], [ -78.382209, 38.213531 ], [ -78.381949, 38.213932 ], [ -78.381401, 38.214759 ], [ -78.380953, 38.215433 ], [ -78.380697, 38.215818 ], [ -78.380472, 38.216158 ], [ -78.379118, 38.218196 ], [ -78.378999, 38.218384 ], [ -78.37862, 38.21895 ], [ -78.377882, 38.220071 ], [ -78.377739, 38.220289 ], [ -78.377587, 38.220523 ], [ -78.376908, 38.221535 ], [ -78.376698, 38.221851 ], [ -78.376516, 38.222128 ], [ -78.375966, 38.222959 ], [ -78.375503, 38.223658 ], [ -78.374143, 38.225716 ], [ -78.373741, 38.226317 ], [ -78.372465, 38.228246 ], [ -78.371604, 38.229546 ], [ -78.371224, 38.230126 ], [ -78.37075, 38.230832 ], [ -78.370117, 38.231792 ], [ -78.369796, 38.23229 ], [ -78.369344, 38.233031 ], [ -78.369247, 38.233202 ], [ -78.369201, 38.233285 ], [ -78.369089, 38.233499 ], [ -78.368757, 38.234191 ], [ -78.368537, 38.23469 ], [ -78.368285, 38.235273 ], [ -78.367348, 38.237406 ], [ -78.367125, 38.237924 ], [ -78.366876, 38.23848 ], [ -78.366632, 38.239054 ], [ -78.366538, 38.239263 ], [ -78.366315, 38.239761 ], [ -78.365981, 38.240523 ], [ -78.365112, 38.242495 ], [ -78.364536, 38.243815 ], [ -78.364277, 38.244425 ], [ -78.363872, 38.245322 ], [ -78.363644, 38.245831 ], [ -78.363475, 38.246227 ], [ -78.363324, 38.246579 ], [ -78.363065, 38.24716 ], [ -78.362399, 38.248697 ], [ -78.362213, 38.249115 ], [ -78.36185, 38.249928 ], [ -78.360994, 38.251906 ], [ -78.360894, 38.252122 ], [ -78.360732, 38.252472 ], [ -78.359818, 38.254556 ], [ -78.359604, 38.255032 ], [ -78.358451, 38.257672 ], [ -78.35837, 38.257854 ], [ -78.357235, 38.260418 ], [ -78.35697, 38.261034 ], [ -78.356749, 38.261526 ], [ -78.356328, 38.262487 ], [ -78.3557, 38.26392 ], [ -78.355441, 38.264489 ], [ -78.354985, 38.265534 ], [ -78.354199, 38.267311 ], [ -78.354014, 38.267697 ], [ -78.353899, 38.267927 ], [ -78.353632, 38.268419 ], [ -78.353386, 38.268835 ], [ -78.353012, 38.269405 ], [ -78.352727, 38.269807 ], [ -78.352433, 38.270193 ], [ -78.351176, 38.271816 ], [ -78.35069, 38.272444 ], [ -78.350332, 38.272914 ], [ -78.349867, 38.273496 ], [ -78.349659, 38.273731 ], [ -78.349448, 38.273949 ], [ -78.349246, 38.274133 ], [ -78.348925, 38.274393 ], [ -78.348653, 38.274592 ], [ -78.348309, 38.274816 ], [ -78.346752, 38.275754 ], [ -78.345609, 38.276449 ], [ -78.34394, 38.277447 ], [ -78.343411, 38.277789 ], [ -78.343205, 38.277938 ], [ -78.342906, 38.278167 ], [ -78.342692, 38.278348 ], [ -78.342621, 38.27841 ], [ -78.342399, 38.278622 ], [ -78.342335, 38.278686 ], [ -78.342171, 38.278857 ], [ -78.341631, 38.279482 ], [ -78.341204, 38.280003 ], [ -78.341139, 38.280089 ], [ -78.341053, 38.280202 ], [ -78.340551, 38.280804 ], [ -78.34033, 38.281097 ], [ -78.339739, 38.281771 ], [ -78.337121, 38.284947 ], [ -78.335554, 38.286807 ], [ -78.334912, 38.287652 ], [ -78.334363, 38.288479 ], [ -78.333901, 38.289321 ], [ -78.332891, 38.291302 ], [ -78.33264, 38.291856 ], [ -78.332046, 38.29316 ], [ -78.331547, 38.294091 ], [ -78.33002, 38.297253 ], [ -78.328705, 38.299896 ], [ -78.328454, 38.300437 ], [ -78.327604, 38.302025 ], [ -78.326529, 38.303681 ], [ -78.325643, 38.304891 ], [ -78.325058, 38.305662 ], [ -78.32399, 38.30691 ], [ -78.3236, 38.307359 ], [ -78.323233, 38.30771 ], [ -78.322626, 38.308335 ], [ -78.320591, 38.310229 ], [ -78.317859, 38.312439 ], [ -78.317136, 38.313055 ], [ -78.314274, 38.315396 ], [ -78.313204, 38.316275 ], [ -78.313084, 38.316374 ], [ -78.312238, 38.317069 ], [ -78.31127, 38.317874 ], [ -78.310555, 38.318624 ], [ -78.308339, 38.321068 ], [ -78.307189, 38.322326 ], [ -78.306432, 38.323147 ], [ -78.305157, 38.324565 ], [ -78.299683, 38.33067 ], [ -78.296227, 38.334366 ], [ -78.294775, 38.336025 ], [ -78.294422, 38.336434 ], [ -78.293518, 38.337393 ], [ -78.292283, 38.338774 ], [ -78.290905, 38.340301 ], [ -78.289054, 38.34231 ], [ -78.287698, 38.343781 ], [ -78.286127, 38.345511 ], [ -78.284805, 38.346961 ], [ -78.284197, 38.347653 ], [ -78.281261, 38.350904 ], [ -78.27928, 38.353063 ], [ -78.277989, 38.354462 ], [ -78.276967, 38.355626 ], [ -78.275482, 38.357205 ], [ -78.275108, 38.357686 ], [ -78.273995, 38.359116 ], [ -78.272612, 38.361053 ], [ -78.269402, 38.365549 ], [ -78.268281, 38.367067 ], [ -78.26707, 38.368543 ], [ -78.266209, 38.369424 ], [ -78.26463, 38.370803 ], [ -78.263855, 38.371431 ], [ -78.262777, 38.372178 ], [ -78.262167, 38.372601 ], [ -78.258589, 38.375046 ], [ -78.253931, 38.378242 ], [ -78.253419, 38.378585 ], [ -78.252722, 38.379065 ], [ -78.251038, 38.380279 ], [ -78.249725, 38.3814 ], [ -78.248824, 38.38242 ], [ -78.247019, 38.384778 ], [ -78.243045, 38.39007 ], [ -78.242379, 38.390835 ], [ -78.241798, 38.391304 ], [ -78.241358, 38.391649 ], [ -78.240659, 38.392107 ], [ -78.239791, 38.392562 ], [ -78.236781, 38.394134 ], [ -78.234618, 38.395478 ], [ -78.233524, 38.396238 ], [ -78.231366, 38.397688 ], [ -78.230593, 38.398159 ], [ -78.229713, 38.398631 ], [ -78.22927, 38.398846 ], [ -78.227176, 38.399941 ], [ -78.224001, 38.401573 ], [ -78.221687, 38.402762 ], [ -78.220927, 38.403115 ], [ -78.219583, 38.403494 ], [ -78.217956, 38.403869 ], [ -78.216834, 38.404329 ], [ -78.216198, 38.404653 ], [ -78.215673, 38.404943 ], [ -78.2147, 38.405692 ], [ -78.214341, 38.406017 ], [ -78.211846, 38.409013 ], [ -78.211205, 38.409859 ], [ -78.208931, 38.412831 ], [ -78.207891, 38.413946 ], [ -78.207388, 38.414459 ], [ -78.206848, 38.414885 ], [ -78.20502, 38.416246 ], [ -78.204339, 38.416746 ], [ -78.203587, 38.417231 ], [ -78.201789, 38.418025 ], [ -78.199931, 38.418788 ], [ -78.198775, 38.419213 ], [ -78.197516, 38.419599 ], [ -78.196891, 38.419728 ], [ -78.193593, 38.420311 ], [ -78.192656, 38.420508 ], [ -78.191772, 38.420736 ], [ -78.190615, 38.421137 ], [ -78.189756, 38.421485 ], [ -78.189131, 38.421795 ], [ -78.188009, 38.422501 ], [ -78.186635, 38.423265 ], [ -78.185396, 38.423841 ], [ -78.184545, 38.424162 ], [ -78.179643, 38.425692 ], [ -78.176595, 38.426575 ], [ -78.175037, 38.427149 ], [ -78.174014, 38.427529 ], [ -78.171007, 38.428688 ], [ -78.169272, 38.429381 ], [ -78.165511, 38.430827 ], [ -78.164119, 38.431371 ], [ -78.162591, 38.431967 ], [ -78.161653, 38.432308 ], [ -78.160661, 38.43271 ], [ -78.160269, 38.432865 ], [ -78.159874, 38.433009 ], [ -78.157491, 38.433942 ], [ -78.157022, 38.434133 ], [ -78.156281, 38.434403 ], [ -78.154122, 38.435214 ], [ -78.152887, 38.435503 ], [ -78.151935, 38.435645 ], [ -78.151237, 38.435723 ], [ -78.149391, 38.435895 ], [ -78.145341, 38.436294 ], [ -78.143178, 38.436516 ], [ -78.141588, 38.436723 ], [ -78.140742, 38.436927 ], [ -78.139967, 38.43716 ], [ -78.139029, 38.437478 ], [ -78.138213, 38.437833 ], [ -78.13673, 38.438732 ], [ -78.135769, 38.439493 ], [ -78.133667, 38.441543 ], [ -78.13309, 38.442092 ], [ -78.132637, 38.442565 ], [ -78.131362, 38.443807 ], [ -78.131197, 38.443972 ], [ -78.13069, 38.444456 ], [ -78.13004, 38.445093 ], [ -78.129654, 38.445515 ], [ -78.129431, 38.445788 ], [ -78.129306, 38.445939 ], [ -78.129135, 38.446147 ], [ -78.126535, 38.449414 ], [ -78.12559, 38.450596 ], [ -78.124937, 38.451403 ], [ -78.12463, 38.451786 ], [ -78.122999, 38.453819 ], [ -78.12268, 38.454222 ], [ -78.122212, 38.454799 ], [ -78.122012, 38.455018 ], [ -78.121815, 38.455209 ], [ -78.121657, 38.455346 ], [ -78.121484, 38.455481 ], [ -78.121283, 38.455622 ], [ -78.121072, 38.455755 ], [ -78.120838, 38.455889 ], [ -78.120605, 38.456007 ], [ -78.120411, 38.456093 ], [ -78.120081, 38.45622 ], [ -78.11988, 38.456286 ], [ -78.119617, 38.456362 ], [ -78.119481, 38.456395 ], [ -78.119029, 38.456484 ], [ -78.118859, 38.456513 ], [ -78.118556, 38.456543 ], [ -78.118252, 38.456558 ], [ -78.117886, 38.45656 ], [ -78.117582, 38.456545 ], [ -78.117215, 38.456509 ], [ -78.11691, 38.456463 ], [ -78.116669, 38.456417 ], [ -78.116299, 38.456332 ], [ -78.114395, 38.455867 ], [ -78.113075, 38.455549 ], [ -78.112183, 38.455337 ], [ -78.111983, 38.455288 ], [ -78.110622, 38.454956 ], [ -78.109647, 38.454713 ], [ -78.109318, 38.454619 ], [ -78.108646, 38.454427 ], [ -78.108148, 38.454266 ], [ -78.107826, 38.454152 ], [ -78.107433, 38.454006 ], [ -78.106215, 38.453523 ], [ -78.103244, 38.452284 ], [ -78.103113, 38.45223 ], [ -78.101465, 38.451517 ], [ -78.100793, 38.451267 ], [ -78.099999, 38.450965 ], [ -78.099633, 38.450843 ], [ -78.099366, 38.450762 ], [ -78.098981, 38.450649 ], [ -78.098604, 38.450547 ], [ -78.098262, 38.45046 ], [ -78.09792, 38.450384 ], [ -78.096808, 38.450181 ], [ -78.096151, 38.450083 ], [ -78.095446, 38.449969 ], [ -78.093727, 38.449707 ], [ -78.092677, 38.449547 ], [ -78.092158, 38.449481 ], [ -78.091766, 38.449445 ], [ -78.091635, 38.449437 ], [ -78.091391, 38.44943 ], [ -78.09088, 38.449437 ], [ -78.090541, 38.449459 ], [ -78.090154, 38.449505 ], [ -78.090027, 38.449526 ], [ -78.089761, 38.44957 ], [ -78.089091, 38.449707 ], [ -78.08849, 38.449845 ], [ -78.087312, 38.450134 ], [ -78.086546, 38.450314 ], [ -78.086092, 38.450427 ], [ -78.085716, 38.450516 ], [ -78.085217, 38.45064 ], [ -78.083614, 38.45102 ], [ -78.082588, 38.451268 ], [ -78.081682, 38.451496 ], [ -78.080934, 38.451707 ], [ -78.080808, 38.451743 ], [ -78.080252, 38.451928 ], [ -78.080061, 38.451995 ], [ -78.079356, 38.452244 ], [ -78.079056, 38.452366 ], [ -78.077758, 38.452899 ], [ -78.07693, 38.453218 ], [ -78.07648, 38.453363 ], [ -78.075972, 38.453504 ], [ -78.075519, 38.453613 ], [ -78.075245, 38.453672 ], [ -78.074633, 38.453773 ], [ -78.073634, 38.453917 ], [ -78.073086, 38.453985 ], [ -78.071708, 38.454165 ], [ -78.070367, 38.45434 ], [ -78.069606, 38.454439 ], [ -78.065196, 38.455001 ], [ -78.0636, 38.455212 ], [ -78.062967, 38.455296 ], [ -78.062279, 38.455383 ], [ -78.061807, 38.45545 ], [ -78.061375, 38.455516 ], [ -78.060496, 38.455651 ], [ -78.059099, 38.455874 ], [ -78.058415, 38.455997 ], [ -78.057861, 38.456107 ], [ -78.057398, 38.456211 ], [ -78.057094, 38.456284 ], [ -78.055369, 38.456762 ], [ -78.054558, 38.456978 ], [ -78.05416, 38.457057 ], [ -78.053923, 38.4571 ], [ -78.053692, 38.457137 ], [ -78.053464, 38.457172 ], [ -78.052965, 38.457229 ], [ -78.052547, 38.457266 ], [ -78.05168, 38.457327 ], [ -78.051381, 38.457343 ], [ -78.051209, 38.457356 ], [ -78.050231, 38.457415 ], [ -78.049522, 38.45745 ], [ -78.049115, 38.457457 ], [ -78.048707, 38.45745 ], [ -78.048107, 38.457414 ], [ -78.046583, 38.457296 ], [ -78.045473, 38.457209 ], [ -78.043615, 38.457066 ], [ -78.04299, 38.457014 ], [ -78.041948, 38.456934 ], [ -78.041564, 38.4569 ], [ -78.040447, 38.456809 ], [ -78.039807, 38.456752 ], [ -78.039565, 38.456722 ], [ -78.038614, 38.456586 ], [ -78.037992, 38.45648 ], [ -78.036619, 38.456229 ], [ -78.036312, 38.456174 ], [ -78.035316, 38.455996 ], [ -78.033993, 38.455756 ], [ -78.033455, 38.455659 ], [ -78.032995, 38.455576 ], [ -78.032344, 38.455462 ], [ -78.032225, 38.455441 ], [ -78.032071, 38.455411 ], [ -78.031918, 38.455381 ], [ -78.030629, 38.455156 ], [ -78.030487, 38.455136 ], [ -78.02993, 38.455035 ], [ -78.029397, 38.454939 ], [ -78.027154, 38.454551 ], [ -78.026507, 38.454439 ], [ -78.026143, 38.454368 ], [ -78.025005, 38.454171 ], [ -78.024336, 38.45404 ], [ -78.023622, 38.453878 ], [ -78.02312, 38.453727 ], [ -78.02273, 38.453603 ], [ -78.022384, 38.453473 ], [ -78.021945, 38.453293 ], [ -78.021688, 38.453179 ], [ -78.02141, 38.45304 ], [ -78.020949, 38.452794 ], [ -78.020606, 38.452593 ], [ -78.018376, 38.451156 ], [ -78.015052, 38.449001 ], [ -78.013038, 38.447702 ], [ -78.012718, 38.447476 ], [ -78.012365, 38.447314 ], [ -78.011913, 38.44707 ], [ -78.011467, 38.446849 ], [ -78.011017, 38.446646 ], [ -78.010785, 38.446548 ], [ -78.01041, 38.446389 ], [ -78.009947, 38.446212 ], [ -78.009475, 38.446047 ], [ -78.009032, 38.44592 ], [ -78.008198, 38.445668 ], [ -78.007806, 38.445574 ], [ -78.007536, 38.445509 ], [ -78.00704, 38.445404 ], [ -78.006541, 38.445314 ], [ -78.006039, 38.445234 ], [ -78.005535, 38.445168 ], [ -78.004882, 38.445103 ], [ -78.00427, 38.44506 ], [ -78.003857, 38.445042 ], [ -78.003259, 38.445032 ], [ -77.996098, 38.445039 ], [ -77.995524, 38.445052 ], [ -77.995083, 38.445072 ], [ -77.9946, 38.445108 ], [ -77.994291, 38.44514 ], [ -77.994119, 38.445159 ], [ -77.993562, 38.445235 ], [ -77.993077, 38.445314 ], [ -77.992738, 38.44538 ], [ -77.992304, 38.445476 ], [ -77.991774, 38.445609 ], [ -77.991277, 38.445754 ], [ -77.990885, 38.44588 ], [ -77.990401, 38.446049 ], [ -77.989902, 38.446248 ], [ -77.98951, 38.446417 ], [ -77.989127, 38.446595 ], [ -77.988671, 38.446826 ], [ -77.988226, 38.44707 ], [ -77.988015, 38.447193 ], [ -77.987964, 38.447222 ], [ -77.986229, 38.448266 ], [ -77.982377, 38.450578 ], [ -77.980067, 38.451965 ], [ -77.978396, 38.452971 ], [ -77.976723, 38.453978 ], [ -77.971729, 38.456974 ], [ -77.970854, 38.457513 ], [ -77.970447, 38.457776 ], [ -77.969812, 38.458205 ], [ -77.969672, 38.458304 ], [ -77.969294, 38.458571 ], [ -77.968878, 38.458872 ], [ -77.968162, 38.459423 ], [ -77.967696, 38.459799 ], [ -77.967125, 38.46028 ], [ -77.966325, 38.460982 ], [ -77.965258, 38.461918 ], [ -77.964866, 38.462267 ], [ -77.960196, 38.466376 ], [ -77.955939, 38.470123 ], [ -77.954947, 38.470996 ], [ -77.954533, 38.471358 ], [ -77.953922, 38.471893 ], [ -77.953458, 38.472304 ], [ -77.953176, 38.472548 ], [ -77.952583, 38.473072 ], [ -77.951119, 38.474355 ], [ -77.950943, 38.474509 ], [ -77.949669, 38.47563 ], [ -77.948949, 38.476265 ], [ -77.948002, 38.477098 ], [ -77.940672, 38.483548 ], [ -77.940481, 38.483731 ], [ -77.940188, 38.484012 ], [ -77.939893, 38.484318 ], [ -77.939484, 38.484776 ], [ -77.93926, 38.485054 ], [ -77.939039, 38.48534 ], [ -77.938835, 38.485618 ], [ -77.938574, 38.486003 ], [ -77.938385, 38.4863 ], [ -77.938154, 38.486695 ], [ -77.936929, 38.489071 ], [ -77.936476, 38.48995 ], [ -77.936307, 38.490277 ], [ -77.936213, 38.490449 ], [ -77.936032, 38.490779 ], [ -77.935797, 38.491168 ], [ -77.935515, 38.491593 ], [ -77.935238, 38.491981 ], [ -77.934904, 38.492412 ], [ -77.934836, 38.492493 ], [ -77.93462, 38.492753 ], [ -77.934238, 38.493183 ], [ -77.933985, 38.493449 ], [ -77.933681, 38.493753 ], [ -77.933395, 38.494018 ], [ -77.933018, 38.494354 ], [ -77.932749, 38.494585 ], [ -77.932252, 38.494973 ], [ -77.93171, 38.495374 ], [ -77.931341, 38.495628 ], [ -77.930966, 38.495866 ], [ -77.930194, 38.496327 ], [ -77.929795, 38.496546 ], [ -77.929468, 38.496713 ], [ -77.928898, 38.496989 ], [ -77.928401, 38.497211 ], [ -77.927814, 38.497454 ], [ -77.927352, 38.49763 ], [ -77.926883, 38.497792 ], [ -77.92627, 38.497988 ], [ -77.925745, 38.498139 ], [ -77.925688, 38.498154 ], [ -77.925207, 38.498279 ], [ -77.924635, 38.498412 ], [ -77.924059, 38.498531 ], [ -77.923478, 38.498637 ], [ -77.923244, 38.498675 ], [ -77.9209, 38.499106 ], [ -77.920407, 38.499196 ], [ -77.916265, 38.499951 ], [ -77.914897, 38.500194 ], [ -77.913262, 38.500498 ], [ -77.912906, 38.500563 ], [ -77.911059, 38.5009 ], [ -77.910401, 38.501012 ], [ -77.909308, 38.501222 ], [ -77.90816, 38.501425 ], [ -77.906956, 38.501647 ], [ -77.902649, 38.502433 ], [ -77.901836, 38.502578 ], [ -77.901383, 38.502661 ], [ -77.899056, 38.503088 ], [ -77.897887, 38.503302 ], [ -77.896932, 38.503454 ], [ -77.896481, 38.503514 ], [ -77.896026, 38.50356 ], [ -77.89557, 38.503592 ], [ -77.895091, 38.503613 ], [ -77.894605, 38.503621 ], [ -77.894338, 38.503619 ], [ -77.894023, 38.503612 ], [ -77.893539, 38.503589 ], [ -77.893152, 38.50356 ], [ -77.891645, 38.503392 ], [ -77.891145, 38.503351 ], [ -77.890705, 38.503331 ], [ -77.890264, 38.503325 ], [ -77.89, 38.503328 ], [ -77.889421, 38.503346 ], [ -77.888918, 38.503375 ], [ -77.888578, 38.503406 ], [ -77.888318, 38.503429 ], [ -77.887823, 38.50349 ], [ -77.887334, 38.503566 ], [ -77.886849, 38.503655 ], [ -77.886369, 38.503759 ], [ -77.885701, 38.503929 ], [ -77.88504, 38.504114 ], [ -77.883872, 38.504451 ], [ -77.882026, 38.504972 ], [ -77.880726, 38.50535 ], [ -77.879756, 38.505628 ], [ -77.879416, 38.505726 ], [ -77.878734, 38.505916 ], [ -77.87665, 38.506514 ], [ -77.873295, 38.507467 ], [ -77.870872, 38.508164 ], [ -77.867574, 38.509112 ], [ -77.86643, 38.509426 ], [ -77.865139, 38.509804 ], [ -77.864878, 38.509875 ], [ -77.864614, 38.509946 ], [ -77.864004, 38.510124 ], [ -77.863963, 38.510136 ], [ -77.863243, 38.510359 ], [ -77.862776, 38.510515 ], [ -77.862313, 38.51068 ], [ -77.86153, 38.510992 ], [ -77.86091, 38.511252 ], [ -77.860341, 38.511504 ], [ -77.860101, 38.511597 ], [ -77.859873, 38.511706 ], [ -77.859049, 38.512033 ], [ -77.858596, 38.512199 ], [ -77.85801, 38.512393 ], [ -77.85641, 38.512859 ], [ -77.85546, 38.513131 ], [ -77.853636, 38.513652 ], [ -77.852939, 38.513842 ], [ -77.85189, 38.514117 ], [ -77.851773, 38.514147 ], [ -77.851155, 38.514282 ], [ -77.850783, 38.514355 ], [ -77.850158, 38.514468 ], [ -77.849529, 38.514566 ], [ -77.848611, 38.514673 ], [ -77.847601, 38.514814 ], [ -77.847219, 38.514874 ], [ -77.846744, 38.514961 ], [ -77.846275, 38.515063 ], [ -77.845622, 38.515227 ], [ -77.843493, 38.515828 ], [ -77.840926, 38.516554 ], [ -77.838953, 38.517123 ], [ -77.838611, 38.51724 ], [ -77.838276, 38.51737 ], [ -77.838087, 38.517452 ], [ -77.837878, 38.517559 ], [ -77.837641, 38.517698 ], [ -77.837371, 38.517879 ], [ -77.837159, 38.518042 ], [ -77.836631, 38.518508 ], [ -77.833939, 38.52107 ], [ -77.833536, 38.521444 ], [ -77.832859, 38.52207 ], [ -77.832618, 38.52227 ], [ -77.832363, 38.52246 ], [ -77.832151, 38.522605 ], [ -77.831761, 38.52284 ], [ -77.831645, 38.522905 ], [ -77.831341, 38.523059 ], [ -77.831027, 38.523201 ], [ -77.830705, 38.52333 ], [ -77.830375, 38.523446 ], [ -77.82725, 38.524408 ], [ -77.825282, 38.525005 ], [ -77.824825, 38.525153 ], [ -77.824766, 38.525172 ], [ -77.82414, 38.525403 ], [ -77.823904, 38.525501 ], [ -77.823444, 38.525707 ], [ -77.823161, 38.525842 ], [ -77.822816, 38.526023 ], [ -77.822483, 38.526216 ], [ -77.82216, 38.526429 ], [ -77.821905, 38.526618 ], [ -77.821824, 38.526681 ], [ -77.821661, 38.526816 ], [ -77.82143, 38.527024 ], [ -77.821026, 38.527454 ], [ -77.820758, 38.527783 ], [ -77.820516, 38.528112 ], [ -77.820197, 38.52856 ], [ -77.819895, 38.529029 ], [ -77.81945, 38.529798 ], [ -77.818541, 38.531386 ], [ -77.817476, 38.533249 ], [ -77.817174, 38.533749 ], [ -77.815779, 38.536111 ], [ -77.812836, 38.541042 ], [ -77.812145, 38.542152 ], [ -77.811443, 38.543345 ], [ -77.81107, 38.543916 ], [ -77.809169, 38.54677 ], [ -77.807061, 38.549912 ], [ -77.805801, 38.55177 ], [ -77.803189, 38.555743 ], [ -77.802664, 38.55653 ], [ -77.802442, 38.556869 ], [ -77.802253, 38.557175 ], [ -77.802079, 38.557492 ], [ -77.801838, 38.557971 ], [ -77.801782, 38.55809 ], [ -77.801657, 38.55838 ], [ -77.801522, 38.558722 ], [ -77.801429, 38.558994 ], [ -77.801302, 38.559432 ], [ -77.801209, 38.559822 ], [ -77.801144, 38.560169 ], [ -77.801065, 38.560727 ], [ -77.801025, 38.56131 ], [ -77.801027, 38.561813 ], [ -77.801049, 38.562487 ], [ -77.801069, 38.562893 ], [ -77.801213, 38.565749 ], [ -77.801305, 38.567636 ], [ -77.80137, 38.568961 ], [ -77.801541, 38.572402 ], [ -77.801599, 38.573623 ], [ -77.801669, 38.575224 ], [ -77.801707, 38.575829 ], [ -77.801772, 38.577117 ], [ -77.801874, 38.579138 ], [ -77.801902, 38.579759 ], [ -77.801914, 38.579914 ], [ -77.801945, 38.580642 ], [ -77.801977, 38.581198 ], [ -77.802036, 38.582417 ], [ -77.802118, 38.584113 ], [ -77.802126, 38.584391 ], [ -77.802131, 38.584986 ], [ -77.802118, 38.585525 ], [ -77.802088, 38.586052 ], [ -77.802017, 38.586791 ], [ -77.801743, 38.589112 ], [ -77.801725, 38.589268 ], [ -77.801437, 38.591698 ], [ -77.801342, 38.5925 ], [ -77.801281, 38.593006 ], [ -77.800994, 38.595455 ], [ -77.800644, 38.598437 ], [ -77.800492, 38.599704 ], [ -77.800457, 38.599972 ], [ -77.800268, 38.601612 ], [ -77.800209, 38.602305 ], [ -77.80017, 38.602992 ], [ -77.800152, 38.603904 ], [ -77.800152, 38.604035 ], [ -77.800152, 38.604483 ], [ -77.800172, 38.60559 ], [ -77.800187, 38.606551 ], [ -77.800205, 38.607644 ], [ -77.80022, 38.608813 ], [ -77.800237, 38.609384 ], [ -77.800232, 38.610093 ], [ -77.800248, 38.611162 ], [ -77.80027, 38.611781 ], [ -77.800276, 38.611972 ], [ -77.800298, 38.612639 ], [ -77.800312, 38.613039 ], [ -77.800332, 38.613399 ], [ -77.800397, 38.614527 ], [ -77.800421, 38.615203 ], [ -77.800432, 38.61575 ], [ -77.800444, 38.616559 ], [ -77.800478, 38.618723 ], [ -77.8005, 38.619601 ], [ -77.800525, 38.620811 ], [ -77.800527, 38.620908 ], [ -77.800548, 38.62192 ], [ -77.80058, 38.623403 ], [ -77.800594, 38.624213 ], [ -77.800603, 38.625413 ], [ -77.80062, 38.627386 ], [ -77.800629, 38.627856 ], [ -77.800651, 38.62934 ], [ -77.800658, 38.629863 ], [ -77.800688, 38.631295 ], [ -77.800701, 38.63219 ], [ -77.800708, 38.632656 ], [ -77.800729, 38.632937 ], [ -77.800749, 38.6331 ], [ -77.800764, 38.633194 ], [ -77.800824, 38.633493 ], [ -77.8009, 38.63375 ], [ -77.801033, 38.634132 ], [ -77.801091, 38.634277 ], [ -77.801339, 38.634852 ], [ -77.801526, 38.635289 ], [ -77.801703, 38.635692 ], [ -77.801752, 38.635808 ], [ -77.801965, 38.636295 ], [ -77.802897, 38.638462 ], [ -77.802996, 38.638693 ], [ -77.803206, 38.639174 ], [ -77.803351, 38.639505 ], [ -77.803635, 38.640158 ], [ -77.803774, 38.640485 ], [ -77.80405, 38.641121 ], [ -77.804137, 38.641325 ], [ -77.804199, 38.641471 ], [ -77.804367, 38.641868 ], [ -77.804398, 38.641941 ], [ -77.804535, 38.642359 ], [ -77.804602, 38.642621 ], [ -77.804642, 38.642832 ], [ -77.804669, 38.643038 ], [ -77.804677, 38.643118 ], [ -77.804687, 38.643291 ], [ -77.804696, 38.643722 ], [ -77.804696, 38.644409 ], [ -77.804677, 38.644766 ], [ -77.804636, 38.645023 ], [ -77.804576, 38.645279 ], [ -77.804498, 38.645531 ], [ -77.804445, 38.645671 ], [ -77.804179, 38.646296 ], [ -77.803976, 38.646795 ], [ -77.803645, 38.647584 ], [ -77.803607, 38.647672 ], [ -77.803037, 38.649027 ], [ -77.802582, 38.650099 ], [ -77.802488, 38.65032 ], [ -77.80226, 38.650816 ], [ -77.802226, 38.650891 ], [ -77.801705, 38.651973 ], [ -77.801524, 38.652348 ], [ -77.800517, 38.654435 ], [ -77.800311, 38.654856 ], [ -77.800109, 38.655223 ], [ -77.799504, 38.656216 ], [ -77.799258, 38.656629 ], [ -77.799064, 38.656995 ], [ -77.798952, 38.657238 ], [ -77.798593, 38.658126 ], [ -77.798524, 38.658287 ], [ -77.798395, 38.658591 ], [ -77.798266, 38.658901 ], [ -77.798049, 38.659428 ], [ -77.797829, 38.659963 ], [ -77.79736, 38.661105 ], [ -77.797075, 38.661795 ], [ -77.796724, 38.662641 ], [ -77.79625, 38.663783 ], [ -77.796094, 38.664161 ], [ -77.795637, 38.665271 ], [ -77.79528, 38.666132 ], [ -77.795248, 38.66621 ], [ -77.794069, 38.669063 ], [ -77.793674, 38.670024 ], [ -77.793379, 38.670723 ], [ -77.793244, 38.671036 ], [ -77.793103, 38.671307 ], [ -77.792943, 38.671571 ], [ -77.792813, 38.671755 ], [ -77.792641, 38.671968 ], [ -77.792454, 38.672174 ], [ -77.792251, 38.672371 ], [ -77.791496, 38.673047 ], [ -77.791134, 38.673372 ], [ -77.790643, 38.673809 ], [ -77.789269, 38.675032 ], [ -77.788765, 38.675507 ], [ -77.788692, 38.675576 ], [ -77.788181, 38.676104 ], [ -77.787807, 38.676549 ], [ -77.787668, 38.676743 ], [ -77.787501, 38.677031 ], [ -77.78738, 38.677265 ], [ -77.78733, 38.677383 ], [ -77.787232, 38.677659 ], [ -77.787165, 38.677911 ], [ -77.787115, 38.678177 ], [ -77.787085, 38.678445 ], [ -77.787079, 38.678552 ], [ -77.787095, 38.67913 ], [ -77.787153, 38.679798 ], [ -77.787259, 38.680924 ], [ -77.787331, 38.681886 ], [ -77.787363, 38.682419 ], [ -77.787413, 38.683635 ], [ -77.787401, 38.684203 ], [ -77.787392, 38.684611 ], [ -77.78735, 38.685019 ], [ -77.787315, 38.685264 ], [ -77.787231, 38.685728 ], [ -77.787136, 38.686251 ], [ -77.787114, 38.686332 ], [ -77.78692, 38.686986 ], [ -77.786696, 38.687619 ], [ -77.786501, 38.688074 ], [ -77.786277, 38.68855 ], [ -77.786098, 38.688888 ], [ -77.785944, 38.689154 ], [ -77.785576, 38.689748 ], [ -77.784818, 38.690938 ], [ -77.784516, 38.691425 ], [ -77.784271, 38.691807 ], [ -77.783827, 38.692506 ], [ -77.783401, 38.6932 ], [ -77.783246, 38.693444 ], [ -77.782384, 38.694802 ], [ -77.782205, 38.695084 ], [ -77.781593, 38.696059 ], [ -77.781243, 38.69667 ], [ -77.78108, 38.696994 ], [ -77.780923, 38.697347 ], [ -77.780812, 38.697637 ], [ -77.780687, 38.698004 ], [ -77.780614, 38.698231 ], [ -77.780587, 38.698314 ], [ -77.780392, 38.699181 ], [ -77.780333, 38.699659 ], [ -77.780298, 38.700094 ], [ -77.780287, 38.700389 ], [ -77.780289, 38.700757 ], [ -77.780315, 38.701452 ], [ -77.780365, 38.702797 ], [ -77.780397, 38.703509 ], [ -77.780462, 38.705131 ], [ -77.780535, 38.706895 ], [ -77.780587, 38.708144 ], [ -77.780612, 38.708911 ], [ -77.780675, 38.710324 ], [ -77.780782, 38.713019 ], [ -77.780806, 38.713639 ], [ -77.780906, 38.716128 ], [ -77.780923, 38.716557 ], [ -77.780985, 38.71812 ], [ -77.781094, 38.720811 ], [ -77.781111, 38.721348 ], [ -77.78117, 38.722771 ], [ -77.781205, 38.723428 ], [ -77.781207, 38.723933 ], [ -77.781141, 38.724638 ], [ -77.781062, 38.725028 ], [ -77.780986, 38.725313 ], [ -77.780873, 38.725651 ], [ -77.780799, 38.725838 ], [ -77.780763, 38.72593 ], [ -77.780608, 38.726258 ], [ -77.780457, 38.726537 ], [ -77.78029, 38.726814 ], [ -77.780067, 38.727137 ], [ -77.779841, 38.727426 ], [ -77.779593, 38.727712 ], [ -77.779535, 38.727773 ], [ -77.779432, 38.727882 ], [ -77.779137, 38.728163 ], [ -77.778889, 38.728379 ], [ -77.778564, 38.728638 ], [ -77.777988, 38.729064 ], [ -77.777903, 38.729128 ], [ -77.777813, 38.729195 ], [ -77.777751, 38.72924 ], [ -77.777544, 38.729395 ], [ -77.776507, 38.73018 ], [ -77.77534, 38.731069 ], [ -77.775049, 38.73127 ], [ -77.774364, 38.73177 ], [ -77.774051, 38.732009 ], [ -77.773303, 38.732554 ], [ -77.772496, 38.733155 ], [ -77.772444, 38.733192 ], [ -77.771424, 38.733941 ], [ -77.770375, 38.73472 ], [ -77.769774, 38.735166 ], [ -77.766501, 38.737595 ], [ -77.766092, 38.7379 ], [ -77.766013, 38.737957 ], [ -77.764613, 38.738973 ], [ -77.763699, 38.739647 ], [ -77.760294, 38.742188 ], [ -77.759475, 38.742805 ], [ -77.758292, 38.743704 ], [ -77.757242, 38.744507 ], [ -77.756734, 38.744888 ], [ -77.75607, 38.745394 ], [ -77.755332, 38.74595 ], [ -77.753869, 38.747051 ], [ -77.753512, 38.747317 ], [ -77.752239, 38.748266 ], [ -77.751486, 38.748835 ], [ -77.749304, 38.750477 ], [ -77.747696, 38.751677 ], [ -77.747175, 38.752069 ], [ -77.746636, 38.752468 ], [ -77.746089, 38.752858 ], [ -77.745719, 38.753113 ], [ -77.745109, 38.753534 ], [ -77.744529, 38.753946 ], [ -77.744441, 38.754016 ], [ -77.743143, 38.755039 ], [ -77.742369, 38.755648 ], [ -77.741019, 38.756723 ], [ -77.740302, 38.757289 ], [ -77.74012, 38.757439 ], [ -77.739869, 38.757633 ], [ -77.739452, 38.757933 ], [ -77.738896, 38.758325 ], [ -77.738458, 38.758616 ], [ -77.737994, 38.758912 ], [ -77.737675, 38.759109 ], [ -77.736928, 38.759546 ], [ -77.736529, 38.759764 ], [ -77.73598, 38.760062 ], [ -77.735512, 38.760302 ], [ -77.734641, 38.760749 ], [ -77.731871, 38.762168 ], [ -77.730354, 38.762946 ], [ -77.726563, 38.764904 ], [ -77.726297, 38.765042 ], [ -77.725494, 38.765462 ], [ -77.724993, 38.765717 ], [ -77.724283, 38.76606 ], [ -77.724155, 38.766114 ], [ -77.723683, 38.766274 ], [ -77.723631, 38.766287 ], [ -77.723461, 38.76633 ], [ -77.723208, 38.766384 ], [ -77.722948, 38.766425 ], [ -77.722732, 38.766449 ], [ -77.722439, 38.766466 ], [ -77.722204, 38.76647 ], [ -77.721761, 38.76645 ], [ -77.721338, 38.766416 ], [ -77.720827, 38.766373 ], [ -77.71958, 38.766268 ], [ -77.718945, 38.766226 ], [ -77.71829, 38.766214 ], [ -77.717886, 38.766231 ], [ -77.717644, 38.766248 ], [ -77.717238, 38.766296 ], [ -77.716986, 38.766333 ], [ -77.716478, 38.766426 ], [ -77.715933, 38.766539 ], [ -77.71313, 38.767126 ], [ -77.71253, 38.76725 ], [ -77.711446, 38.767475 ], [ -77.711213, 38.767521 ], [ -77.709832, 38.76781 ], [ -77.709246, 38.767933 ], [ -77.708584, 38.768078 ], [ -77.708134, 38.768177 ], [ -77.707984, 38.768211 ], [ -77.707651, 38.768287 ], [ -77.707208, 38.768389 ], [ -77.707037, 38.768429 ], [ -77.706966, 38.768445 ], [ -77.706604, 38.768529 ], [ -77.705724, 38.768733 ], [ -77.704884, 38.768928 ], [ -77.704008, 38.769125 ], [ -77.703413, 38.769266 ], [ -77.703044, 38.769359 ], [ -77.702667, 38.769454 ], [ -77.702289, 38.769565 ], [ -77.701922, 38.769687 ], [ -77.701705, 38.769766 ], [ -77.701294, 38.769925 ], [ -77.700381, 38.770277 ], [ -77.698624, 38.770957 ], [ -77.69792, 38.771222 ], [ -77.696779, 38.771656 ], [ -77.696286, 38.771839 ], [ -77.694688, 38.772451 ], [ -77.693388, 38.772942 ], [ -77.69338, 38.772945 ], [ -77.69299, 38.773092 ], [ -77.691828, 38.773541 ], [ -77.689985, 38.774273 ], [ -77.689184, 38.774593 ], [ -77.687947, 38.775099 ], [ -77.68652, 38.775696 ], [ -77.686093, 38.775875 ], [ -77.685013, 38.776323 ], [ -77.684548, 38.776508 ], [ -77.683617, 38.77688 ], [ -77.682281, 38.77742 ], [ -77.681906, 38.77757 ], [ -77.680152, 38.778273 ], [ -77.680071, 38.778309 ], [ -77.679964, 38.778348 ], [ -77.67944, 38.778559 ], [ -77.679135, 38.778682 ], [ -77.679008, 38.778733 ], [ -77.678765, 38.778831 ], [ -77.678322, 38.779011 ], [ -77.677302, 38.779417 ], [ -77.677036, 38.779514 ], [ -77.676871, 38.779569 ], [ -77.676375, 38.779711 ], [ -77.675903, 38.779834 ], [ -77.675739, 38.779874 ], [ -77.675282, 38.779966 ], [ -77.675165, 38.77999 ], [ -77.673681, 38.780291 ], [ -77.67245, 38.780538 ], [ -77.671784, 38.780666 ], [ -77.671623, 38.780699 ], [ -77.671392, 38.780752 ], [ -77.670977, 38.780857 ], [ -77.67067, 38.780949 ], [ -77.669909, 38.781181 ], [ -77.669755, 38.781229 ], [ -77.668691, 38.781557 ], [ -77.668105, 38.781729 ], [ -77.66717, 38.781984 ], [ -77.665556, 38.7824 ], [ -77.665397, 38.782443 ], [ -77.66509, 38.782528 ], [ -77.663117, 38.783041 ], [ -77.662729, 38.783142 ], [ -77.658982, 38.784122 ], [ -77.658234, 38.784318 ], [ -77.657487, 38.784515 ], [ -77.656903, 38.784668 ], [ -77.656444, 38.784785 ], [ -77.655772, 38.784954 ], [ -77.655488, 38.785028 ], [ -77.654149, 38.78538 ], [ -77.653073, 38.785665 ], [ -77.652817, 38.785732 ], [ -77.652723, 38.785757 ], [ -77.652335, 38.78586 ], [ -77.650432, 38.786358 ], [ -77.650292, 38.786394 ], [ -77.648546, 38.786845 ], [ -77.648132, 38.786953 ], [ -77.6471, 38.787217 ], [ -77.646912, 38.787266 ], [ -77.646792, 38.787296 ], [ -77.646475, 38.787378 ], [ -77.643862, 38.788066 ], [ -77.643514, 38.788151 ], [ -77.642956, 38.788288 ], [ -77.641845, 38.788545 ], [ -77.641256, 38.788678 ], [ -77.640668, 38.788812 ], [ -77.637878, 38.789456 ], [ -77.637724, 38.789491 ], [ -77.635026, 38.790112 ], [ -77.633026, 38.790572 ], [ -77.631672, 38.790883 ], [ -77.630391, 38.791179 ], [ -77.630168, 38.791231 ], [ -77.629412, 38.791414 ], [ -77.629006, 38.791523 ], [ -77.628982, 38.791529 ], [ -77.628275, 38.791722 ], [ -77.626219, 38.792284 ], [ -77.625465, 38.792483 ], [ -77.624741, 38.792675 ], [ -77.624567, 38.792721 ], [ -77.624468, 38.792748 ], [ -77.624067, 38.792856 ], [ -77.622821, 38.793191 ], [ -77.622323, 38.793326 ], [ -77.622182, 38.793359 ], [ -77.62157, 38.793529 ], [ -77.621412, 38.793572 ], [ -77.620477, 38.793825 ], [ -77.620443, 38.793835 ], [ -77.619193, 38.794171 ], [ -77.619018, 38.794213 ], [ -77.617763, 38.794556 ], [ -77.617092, 38.79473 ], [ -77.616747, 38.794832 ], [ -77.614017, 38.7956 ], [ -77.613309, 38.7958 ], [ -77.613097, 38.795859 ], [ -77.611965, 38.796178 ], [ -77.611011, 38.796432 ], [ -77.609519, 38.79683 ], [ -77.609066, 38.796955 ], [ -77.60887, 38.79701 ], [ -77.608124, 38.797223 ], [ -77.607861, 38.79729 ], [ -77.60659, 38.797608 ], [ -77.604759, 38.798106 ], [ -77.603341, 38.798433 ], [ -77.602615, 38.798623 ], [ -77.60217, 38.798681 ], [ -77.60178, 38.798726 ], [ -77.60159, 38.798739 ], [ -77.601338, 38.79876 ], [ -77.601043, 38.798748 ], [ -77.600761, 38.798726 ], [ -77.600475, 38.798685 ], [ -77.600088, 38.798626 ], [ -77.598701, 38.798329 ], [ -77.598447, 38.798288 ], [ -77.598168, 38.798263 ], [ -77.597945, 38.798266 ], [ -77.597733, 38.798267 ], [ -77.597515, 38.798295 ], [ -77.597295, 38.798329 ], [ -77.59709, 38.79838 ], [ -77.596838, 38.798472 ], [ -77.596056, 38.79873 ], [ -77.595792, 38.798802 ], [ -77.595557, 38.798839 ], [ -77.595321, 38.798872 ], [ -77.595123, 38.798893 ], [ -77.594903, 38.798906 ], [ -77.594606, 38.798902 ], [ -77.592349, 38.798571 ], [ -77.589853, 38.798246 ], [ -77.587564, 38.797961 ], [ -77.584659, 38.797708 ], [ -77.583518, 38.797592 ], [ -77.582596, 38.797507 ], [ -77.581727, 38.797465 ], [ -77.580645, 38.797422 ], [ -77.579853, 38.797408 ], [ -77.579381, 38.797391 ], [ -77.579328, 38.797391 ], [ -77.578346, 38.797391 ], [ -77.576989, 38.797404 ], [ -77.576007, 38.797446 ], [ -77.575373, 38.797504 ], [ -77.571144, 38.797797 ], [ -77.569287, 38.79792 ], [ -77.56555, 38.798187 ], [ -77.561659, 38.798447 ], [ -77.555891, 38.7988 ], [ -77.553755, 38.798951 ], [ -77.550887, 38.799152 ], [ -77.550295, 38.799193 ], [ -77.548407, 38.799331 ], [ -77.54595, 38.799494 ], [ -77.541063, 38.799812 ], [ -77.539341, 38.799946 ], [ -77.536546, 38.800151 ], [ -77.532281, 38.800448 ], [ -77.529135, 38.800667 ], [ -77.525861, 38.800895 ], [ -77.523173, 38.801079 ], [ -77.520134, 38.801324 ], [ -77.519426, 38.801374 ], [ -77.518588, 38.801436 ], [ -77.514662, 38.801698 ], [ -77.51275, 38.801833 ], [ -77.512257, 38.801883 ], [ -77.51176, 38.801949 ], [ -77.511242, 38.802033 ], [ -77.510728, 38.802133 ], [ -77.510237, 38.802245 ], [ -77.509757, 38.802371 ], [ -77.509283, 38.802511 ], [ -77.508762, 38.802686 ], [ -77.508249, 38.802874 ], [ -77.503238, 38.804849 ], [ -77.501867, 38.805383 ], [ -77.49854, 38.806696 ], [ -77.492854, 38.808929 ], [ -77.492586, 38.809039 ], [ -77.491408, 38.809499 ], [ -77.490728, 38.809768 ], [ -77.490387, 38.809903 ], [ -77.489846, 38.810125 ], [ -77.48976, 38.810159 ], [ -77.489588, 38.810228 ], [ -77.488128, 38.810814 ], [ -77.487975, 38.810876 ], [ -77.487938, 38.810891 ], [ -77.487614, 38.811027 ], [ -77.486889, 38.811312 ], [ -77.485515, 38.811841 ], [ -77.481021, 38.813606 ], [ -77.480031, 38.813987 ], [ -77.479528, 38.81418 ], [ -77.478278, 38.814671 ], [ -77.477784, 38.814859 ], [ -77.476696, 38.815283 ], [ -77.476308, 38.815444 ], [ -77.470849, 38.817587 ], [ -77.469997, 38.817934 ], [ -77.469107, 38.818314 ], [ -77.468263, 38.818692 ], [ -77.467788, 38.818912 ], [ -77.466824, 38.819384 ], [ -77.466481, 38.819559 ], [ -77.465978, 38.819814 ], [ -77.465888, 38.819862 ], [ -77.465082, 38.820299 ], [ -77.464689, 38.820516 ], [ -77.463916, 38.820976 ], [ -77.463568, 38.821184 ], [ -77.462817, 38.82165 ], [ -77.462169, 38.822067 ], [ -77.461524, 38.822499 ], [ -77.460742, 38.823046 ], [ -77.459971, 38.823615 ], [ -77.459453, 38.824009 ], [ -77.458829, 38.824505 ], [ -77.458041, 38.825157 ], [ -77.457989, 38.825199 ], [ -77.457719, 38.825436 ], [ -77.457456, 38.825667 ], [ -77.457174, 38.825914 ], [ -77.456485, 38.82655 ], [ -77.455925, 38.827089 ], [ -77.455609, 38.827408 ], [ -77.455354, 38.827664 ], [ -77.455286, 38.827736 ], [ -77.454763, 38.828288 ], [ -77.453687, 38.829492 ], [ -77.45117, 38.83231 ], [ -77.450091, 38.833546 ], [ -77.449603, 38.834072 ], [ -77.4484, 38.835411 ], [ -77.448317, 38.835496 ], [ -77.447073, 38.836883 ], [ -77.446568, 38.837456 ], [ -77.444983, 38.839239 ], [ -77.444962, 38.839261 ], [ -77.44448, 38.839771 ], [ -77.443925, 38.840374 ], [ -77.443121, 38.841151 ], [ -77.442523, 38.841683 ], [ -77.442048, 38.842083 ], [ -77.441563, 38.842472 ], [ -77.44121, 38.842729 ], [ -77.440835, 38.842989 ], [ -77.440353, 38.843301 ], [ -77.439357, 38.843895 ], [ -77.438808, 38.844189 ], [ -77.438412, 38.844388 ], [ -77.438154, 38.844513 ], [ -77.437585, 38.844773 ], [ -77.43695, 38.845042 ], [ -77.436125, 38.845358 ], [ -77.435386, 38.845611 ], [ -77.434841, 38.845778 ], [ -77.434461, 38.845886 ], [ -77.434065, 38.845989 ], [ -77.433588, 38.846102 ], [ -77.432595, 38.846311 ], [ -77.431976, 38.846424 ], [ -77.431894, 38.846439 ], [ -77.43166, 38.846482 ], [ -77.43013, 38.84677 ], [ -77.428638, 38.847052 ], [ -77.427672, 38.847201 ], [ -77.426895, 38.847336 ], [ -77.426613, 38.847387 ], [ -77.423954, 38.847868 ], [ -77.42318, 38.84802 ], [ -77.422578, 38.848129 ], [ -77.421734, 38.848284 ], [ -77.419777, 38.84865 ], [ -77.418032, 38.848977 ], [ -77.416532, 38.849246 ], [ -77.415198, 38.849482 ], [ -77.414151, 38.849672 ], [ -77.413692, 38.849756 ], [ -77.413004, 38.849886 ], [ -77.41025, 38.850388 ], [ -77.408348, 38.850725 ], [ -77.406003, 38.851167 ], [ -77.404553, 38.851419 ], [ -77.403103, 38.851676 ], [ -77.402433, 38.851803 ], [ -77.401513, 38.851954 ], [ -77.399882, 38.852249 ], [ -77.399048, 38.852319 ], [ -77.398718, 38.852375 ], [ -77.397996, 38.852492 ], [ -77.397318, 38.852624 ], [ -77.396752, 38.852714 ], [ -77.396348, 38.852749 ], [ -77.395658, 38.852767 ], [ -77.395009, 38.8528 ], [ -77.394695, 38.852837 ], [ -77.39433, 38.852891 ], [ -77.393802, 38.852984 ], [ -77.393126, 38.853114 ], [ -77.392725, 38.85318 ], [ -77.392095, 38.853297 ], [ -77.391904, 38.853339 ], [ -77.391134, 38.853478 ], [ -77.389836, 38.853723 ], [ -77.389215, 38.853845 ], [ -77.38892, 38.853895 ], [ -77.388716, 38.853941 ], [ -77.388024, 38.854062 ], [ -77.387165, 38.854196 ], [ -77.386771, 38.854162 ], [ -77.386529, 38.854111 ], [ -77.386343, 38.854055 ], [ -77.386187, 38.853987 ], [ -77.386127, 38.853954 ], [ -77.386079, 38.85392 ], [ -77.385986, 38.853839 ], [ -77.385938, 38.853785 ], [ -77.385904, 38.853738 ], [ -77.385849, 38.853638 ], [ -77.385829, 38.853585 ], [ -77.385812, 38.853521 ], [ -77.3858, 38.853402 ], [ -77.385805, 38.853336 ], [ -77.385817, 38.853271 ], [ -77.38586, 38.853155 ], [ -77.385888, 38.853105 ], [ -77.385929, 38.853047 ], [ -77.38601, 38.852959 ], [ -77.386068, 38.85291 ], [ -77.386119, 38.852873 ], [ -77.386233, 38.85281 ], [ -77.386292, 38.852784 ], [ -77.386367, 38.852757 ], [ -77.386444, 38.852736 ], [ -77.386551, 38.852715 ], [ -77.386695, 38.852705 ], [ -77.38684, 38.852711 ], [ -77.386899, 38.85272 ], [ -77.386985, 38.852739 ], [ -77.387131, 38.852784 ], [ -77.387234, 38.852827 ], [ -77.387327, 38.852872 ], [ -77.387501, 38.852977 ], [ -77.387596, 38.853046 ], [ -77.387689, 38.853125 ], [ -77.387869, 38.853301 ], [ -77.388005, 38.8535 ], [ -77.388211, 38.853861 ], [ -77.388248, 38.853958 ], [ -77.38834, 38.854202 ], [ -77.388434, 38.854509 ], [ -77.388512, 38.85483 ], [ -77.388556, 38.855045 ], [ -77.388563, 38.855077 ], [ -77.388615, 38.855398 ], [ -77.38864, 38.855726 ], [ -77.388657, 38.85606 ], [ -77.388632, 38.856494 ], [ -77.388606, 38.856728 ], [ -77.388546, 38.857062 ], [ -77.388494, 38.857283 ], [ -77.388383, 38.85759 ], [ -77.388245, 38.857898 ], [ -77.387962, 38.858392 ], [ -77.387722, 38.858713 ], [ -77.387587, 38.858842 ], [ -77.387448, 38.858992 ], [ -77.38738, 38.859049 ], [ -77.387049, 38.859315 ], [ -77.387001, 38.859355 ], [ -77.386572, 38.859616 ], [ -77.386057, 38.859876 ], [ -77.385696, 38.860037 ], [ -77.385104, 38.860297 ], [ -77.384246, 38.860678 ], [ -77.383311, 38.861091 ], [ -77.382484, 38.861549 ], [ -77.381927, 38.861964 ], [ -77.381649, 38.862271 ], [ -77.381472, 38.862656 ], [ -77.38114, 38.86254 ], [ -77.380676, 38.862336 ], [ -77.380373, 38.862167 ], [ -77.380144, 38.862016 ], [ -77.379932, 38.861857 ], [ -77.379724, 38.861669 ], [ -77.379541, 38.861495 ], [ -77.379299, 38.861256 ], [ -77.379174, 38.86114 ], [ -77.378963, 38.86097 ], [ -77.378779, 38.860822 ], [ -77.378622, 38.860715 ], [ -77.378375, 38.860584 ], [ -77.37825, 38.860526 ], [ -77.377901, 38.860354 ], [ -77.377674, 38.860258 ], [ -77.377503, 38.860194 ], [ -77.376982, 38.860031 ], [ -77.376724, 38.859968 ], [ -77.376465, 38.859908 ], [ -77.376139, 38.859843 ], [ -77.375957, 38.859809 ], [ -77.375449, 38.859704 ], [ -77.37477, 38.859591 ], [ -77.373992, 38.859482 ], [ -77.373385, 38.859411 ], [ -77.373319, 38.859405 ], [ -77.371684, 38.859251 ], [ -77.371331, 38.859226 ], [ -77.37112, 38.859211 ], [ -77.371099, 38.85942 ], [ -77.371098, 38.859619 ], [ -77.371033, 38.860102 ], [ -77.370993, 38.860407 ], [ -77.370953, 38.86073 ], [ -77.370894, 38.86095 ], [ -77.370816, 38.861165 ], [ -77.370757, 38.861296 ], [ -77.370665, 38.861443 ], [ -77.370575, 38.861587 ], [ -77.370384, 38.861875 ], [ -77.370116, 38.862301 ], [ -77.369869, 38.862675 ], [ -77.369695, 38.862937 ], [ -77.369553, 38.863149 ], [ -77.369282, 38.863562 ], [ -77.369075, 38.863878 ], [ -77.369003, 38.863978 ], [ -77.368943, 38.864053 ], [ -77.368872, 38.864143 ], [ -77.368754, 38.864281 ], [ -77.368648, 38.864383 ], [ -77.368548, 38.86448 ], [ -77.368413, 38.864611 ], [ -77.368244, 38.864751 ], [ -77.368139, 38.86483 ], [ -77.368096, 38.864859 ], [ -77.367962, 38.864949 ], [ -77.367753, 38.865087 ], [ -77.36752, 38.865221 ], [ -77.36716, 38.865425 ], [ -77.366916, 38.865565 ], [ -77.366749, 38.865664 ], [ -77.366693, 38.865696 ], [ -77.366603, 38.865757 ], [ -77.36621, 38.865941 ], [ -77.365964, 38.866096 ], [ -77.365677, 38.866275 ], [ -77.365412, 38.86648 ], [ -77.365205, 38.866666 ], [ -77.365092, 38.866802 ], [ -77.364926, 38.867027 ], [ -77.364819, 38.867215 ], [ -77.364795, 38.867271 ], [ -77.364687, 38.867526 ], [ -77.364631, 38.867731 ], [ -77.364602, 38.867885 ], [ -77.364585, 38.868103 ], [ -77.364599, 38.86833 ], [ -77.364602, 38.868416 ], [ -77.364653, 38.868646 ], [ -77.364749, 38.868903 ], [ -77.364915, 38.869232 ], [ -77.365031, 38.869489 ], [ -77.36519, 38.869811 ], [ -77.365353, 38.870145 ], [ -77.365541, 38.870577 ], [ -77.365608, 38.870714 ], [ -77.36564, 38.87078 ], [ -77.365767, 38.871048 ], [ -77.365858, 38.871232 ], [ -77.365914, 38.871335 ], [ -77.366032, 38.871546 ], [ -77.366196, 38.871805 ], [ -77.366355, 38.872046 ], [ -77.366507, 38.872259 ], [ -77.366678, 38.872501 ], [ -77.366856, 38.872754 ], [ -77.366963, 38.872925 ], [ -77.367022, 38.873039 ], [ -77.367081, 38.873163 ], [ -77.367145, 38.873344 ], [ -77.367182, 38.87346 ], [ -77.367204, 38.873534 ], [ -77.367233, 38.873695 ], [ -77.36726, 38.873889 ], [ -77.367273, 38.874003 ], [ -77.367165, 38.874012 ], [ -77.366994, 38.874012 ], [ -77.366779, 38.873999 ], [ -77.366666, 38.873986 ], [ -77.366501, 38.873968 ], [ -77.366313, 38.873934 ], [ -77.366155, 38.873897 ], [ -77.365932, 38.873832 ], [ -77.36562, 38.873728 ], [ -77.365375, 38.873647 ], [ -77.36552, 38.873752 ], [ -77.365645, 38.873824 ], [ -77.365759, 38.873875 ] ] } } diff --git a/packages/turf-area/.npmignore b/packages/turf-area/.npmignore new file mode 100644 index 0000000000..bb3c08c09a --- /dev/null +++ b/packages/turf-area/.npmignore @@ -0,0 +1,2 @@ +test +coverage diff --git a/packages/turf-area/README.md b/packages/turf-area/README.md new file mode 100644 index 0000000000..9dd7d3e324 --- /dev/null +++ b/packages/turf-area/README.md @@ -0,0 +1,79 @@ +# turf-area + +[![build status](https://secure.travis-ci.org/Turfjs/turf-area.png)](http://travis-ci.org/Turfjs/turf-area) + +calculate the area of a polygon or multipolygon feature + + +### `turf.area(input)` + +Takes a one or more features and returns their area +in square meters. + + +### Parameters + +| parameter | type | description | +| --------- | -------------------------- | -------------- | +| `input` | Feature\,FeatureCollection | input features | + + +### Example + +```js +var polygons = { + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [[ + [-67.031021, 10.458102], + [-67.031021, 10.53372], + [-66.929397, 10.53372], + [-66.929397, 10.458102], + [-67.031021, 10.458102] + ]] + } + }, { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [[ + [-66.919784, 10.397325], + [-66.919784, 10.513467], + [-66.805114, 10.513467], + [-66.805114, 10.397325], + [-66.919784, 10.397325] + ]] + } + } + ] +}; + +var area = turf.area(polygons); + +//=area +``` + + +**Returns** `Number`, area in square meters + +## Installation + +Requires [nodejs](http://nodejs.org/). + +```sh +$ npm install turf-area +``` + +## Tests + +```sh +$ npm test +``` + + diff --git a/packages/turf-area/index.js b/packages/turf-area/index.js new file mode 100644 index 0000000000..d903743d5d --- /dev/null +++ b/packages/turf-area/index.js @@ -0,0 +1,62 @@ +var geometryArea = require('geojson-area').geometry; + +/** + * Takes a one or more features and returns their area + * in square meters. + * + * @category measurement + * @param {(Feature|FeatureCollection)} input input features + * @return {Number} area in square meters + * @example + * var polygons = { + * "type": "FeatureCollection", + * "features": [ + * { + * "type": "Feature", + * "properties": {}, + * "geometry": { + * "type": "Polygon", + * "coordinates": [[ + * [-67.031021, 10.458102], + * [-67.031021, 10.53372], + * [-66.929397, 10.53372], + * [-66.929397, 10.458102], + * [-67.031021, 10.458102] + * ]] + * } + * }, { + * "type": "Feature", + * "properties": {}, + * "geometry": { + * "type": "Polygon", + * "coordinates": [[ + * [-66.919784, 10.397325], + * [-66.919784, 10.513467], + * [-66.805114, 10.513467], + * [-66.805114, 10.397325], + * [-66.919784, 10.397325] + * ]] + * } + * } + * ] + * }; + * + * var area = turf.area(polygons); + * + * //=area + */ +function area(input) { + if (input.type === 'FeatureCollection') { + for (var i = 0, sum = 0; i < input.features.length; i++) { + if (input.features[i].geometry) { + sum += geometryArea(input.features[i].geometry); + } + } + return sum; + } else if (input.type === 'Feature') { + return geometryArea(input.geometry); + } else { + return geometryArea(input); + } +} +module.exports = area; diff --git a/packages/turf-area/package.json b/packages/turf-area/package.json new file mode 100644 index 0000000000..f44fd08844 --- /dev/null +++ b/packages/turf-area/package.json @@ -0,0 +1,28 @@ +{ + "name": "turf-area", + "version": "3.0.1", + "description": "calculate the area of a polygon or multipolygon feature", + "main": "index.js", + "scripts": { + "test": "tape test.js" + }, + "keywords": [ + "turf", + "area", + "polygon", + "multipolygon" + ], + "author": "Tom MacWright", + "license": "ISC", + "dependencies": { + "geojson-area": "^0.2.1" + }, + "repository": { + "type": "git", + "url": "git@github.com:Turfjs/turf-area.git" + }, + "devDependencies": { + "geojson-fixtures": "^0.6.0", + "tape": "^3.5.0" + } +} diff --git a/packages/turf-area/test.js b/packages/turf-area/test.js new file mode 100644 index 0000000000..5f8f6f4208 --- /dev/null +++ b/packages/turf-area/test.js @@ -0,0 +1,5 @@ +var geojsonFixtures = require('geojson-fixtures/helper'); +geojsonFixtures(require('tape'), 'all', require('./'), __dirname + '/test', false, function(t, input, output) { + t.ok(typeof output === 'number', 'output is number'); + t.ok(output >= 0, 'area is positive or zero'); +}); diff --git a/packages/turf-area/test/geometrycollection-0-0.output.json b/packages/turf-area/test/geometrycollection-0-0.output.json new file mode 100644 index 0000000000..c227083464 --- /dev/null +++ b/packages/turf-area/test/geometrycollection-0-0.output.json @@ -0,0 +1 @@ +0 \ No newline at end of file diff --git a/packages/turf-area/test/geometrycollection-xyz-0-6.output.json b/packages/turf-area/test/geometrycollection-xyz-0-6.output.json new file mode 100644 index 0000000000..c227083464 --- /dev/null +++ b/packages/turf-area/test/geometrycollection-xyz-0-6.output.json @@ -0,0 +1 @@ +0 \ No newline at end of file diff --git a/packages/turf-area/test/idaho-1-1.output.json b/packages/turf-area/test/idaho-1-1.output.json new file mode 100644 index 0000000000..b6101fcf06 --- /dev/null +++ b/packages/turf-area/test/idaho-1-1.output.json @@ -0,0 +1 @@ +216478084193.14395 \ No newline at end of file diff --git a/packages/turf-area/test/multilinestring-0-5.output.json b/packages/turf-area/test/multilinestring-0-5.output.json new file mode 100644 index 0000000000..c227083464 --- /dev/null +++ b/packages/turf-area/test/multilinestring-0-5.output.json @@ -0,0 +1 @@ +0 \ No newline at end of file diff --git a/packages/turf-area/test/multilinestring-xyz-0-11.output.json b/packages/turf-area/test/multilinestring-xyz-0-11.output.json new file mode 100644 index 0000000000..c227083464 --- /dev/null +++ b/packages/turf-area/test/multilinestring-xyz-0-11.output.json @@ -0,0 +1 @@ +0 \ No newline at end of file diff --git a/packages/turf-area/test/multipoint-0-3.output.json b/packages/turf-area/test/multipoint-0-3.output.json new file mode 100644 index 0000000000..c227083464 --- /dev/null +++ b/packages/turf-area/test/multipoint-0-3.output.json @@ -0,0 +1 @@ +0 \ No newline at end of file diff --git a/packages/turf-area/test/multipoint-xyz-0-9.output.json b/packages/turf-area/test/multipoint-xyz-0-9.output.json new file mode 100644 index 0000000000..c227083464 --- /dev/null +++ b/packages/turf-area/test/multipoint-xyz-0-9.output.json @@ -0,0 +1 @@ +0 \ No newline at end of file diff --git a/packages/turf-area/test/multipolygon-0-4.output.json b/packages/turf-area/test/multipolygon-0-4.output.json new file mode 100644 index 0000000000..2714b761aa --- /dev/null +++ b/packages/turf-area/test/multipolygon-0-4.output.json @@ -0,0 +1 @@ +20310537131.032814 diff --git a/packages/turf-area/test/multipolygon-xyz-0-10.output.json b/packages/turf-area/test/multipolygon-xyz-0-10.output.json new file mode 100644 index 0000000000..2714b761aa --- /dev/null +++ b/packages/turf-area/test/multipolygon-xyz-0-10.output.json @@ -0,0 +1 @@ +20310537131.032814 diff --git a/packages/turf-area/test/one-1-0.output.json b/packages/turf-area/test/one-1-0.output.json new file mode 100644 index 0000000000..b50cd9a172 --- /dev/null +++ b/packages/turf-area/test/one-1-0.output.json @@ -0,0 +1 @@ +12391399902.071121 diff --git a/packages/turf-area/test/one-2-0.output.json b/packages/turf-area/test/one-2-0.output.json new file mode 100644 index 0000000000..b50cd9a172 --- /dev/null +++ b/packages/turf-area/test/one-2-0.output.json @@ -0,0 +1 @@ +12391399902.071121 diff --git a/packages/turf-area/test/point-0-2.output.json b/packages/turf-area/test/point-0-2.output.json new file mode 100644 index 0000000000..c227083464 --- /dev/null +++ b/packages/turf-area/test/point-0-2.output.json @@ -0,0 +1 @@ +0 \ No newline at end of file diff --git a/packages/turf-area/test/point-xyz-0-8.output.json b/packages/turf-area/test/point-xyz-0-8.output.json new file mode 100644 index 0000000000..c227083464 --- /dev/null +++ b/packages/turf-area/test/point-xyz-0-8.output.json @@ -0,0 +1 @@ +0 \ No newline at end of file diff --git a/packages/turf-area/test/polygon-0-1.output.json b/packages/turf-area/test/polygon-0-1.output.json new file mode 100644 index 0000000000..b50cd9a172 --- /dev/null +++ b/packages/turf-area/test/polygon-0-1.output.json @@ -0,0 +1 @@ +12391399902.071121 diff --git a/packages/turf-area/test/polygon-xyz-0-7.output.json b/packages/turf-area/test/polygon-xyz-0-7.output.json new file mode 100644 index 0000000000..b50cd9a172 --- /dev/null +++ b/packages/turf-area/test/polygon-xyz-0-7.output.json @@ -0,0 +1 @@ +12391399902.071121 diff --git a/packages/turf-bbox-polygon/.npmignore b/packages/turf-bbox-polygon/.npmignore new file mode 100644 index 0000000000..bb3c08c09a --- /dev/null +++ b/packages/turf-bbox-polygon/.npmignore @@ -0,0 +1,2 @@ +test +coverage diff --git a/packages/turf-bbox-polygon/LICENSE b/packages/turf-bbox-polygon/LICENSE new file mode 100644 index 0000000000..64fb8e99a3 --- /dev/null +++ b/packages/turf-bbox-polygon/LICENSE @@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) 2014 Morgan Herlocker + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. \ No newline at end of file diff --git a/packages/turf-bbox-polygon/README.md b/packages/turf-bbox-polygon/README.md new file mode 100644 index 0000000000..be7ae6b94a --- /dev/null +++ b/packages/turf-bbox-polygon/README.md @@ -0,0 +1,47 @@ +# turf-bbox-polygon + +[![build status](https://secure.travis-ci.org/Turfjs/turf-bboxPolygon.png)](http://travis-ci.org/Turfjs/turf-bboxPolygon) + +turf bboxPolygon module + + +### `turf.bbox-polygon(bbox)` + +Takes a bbox and returns an equivalent Polygon|polygon. + + +### Parameters + +| parameter | type | description | +| --------- | ----------------- | ---------------------------------------------------------------------------------- | +| `bbox` | Array\.\ | an Array of bounding box coordinates in the form: ```[xLow, yLow, xHigh, yHigh]``` | + + +### Example + +```js +var bbox = [0, 0, 10, 10]; + +var poly = turf.bboxPolygon(bbox); + +//=poly +``` + + +**Returns** `Feature.`, a Polygon representation of the bounding box + +## Installation + +Requires [nodejs](http://nodejs.org/). + +```sh +$ npm install turf-bbox-polygon +``` + +## Tests + +```sh +$ npm test +``` + + diff --git a/packages/turf-bbox-polygon/bench.js b/packages/turf-bbox-polygon/bench.js new file mode 100644 index 0000000000..e1dceae38c --- /dev/null +++ b/packages/turf-bbox-polygon/bench.js @@ -0,0 +1,16 @@ +var bboxpolygon = require('./'); +var Benchmark = require('benchmark'); +var fs = require('fs'); + +var suite = new Benchmark.Suite('turf-bbox-polygon'); +suite + .add('turf-bbox-polygon',function () { + bboxpolygon([0,0,10,10]) + }) + .on('cycle', function (event) { + console.log(String(event.target)); + }) + .on('complete', function () { + + }) + .run(); \ No newline at end of file diff --git a/packages/turf-bbox-polygon/index.js b/packages/turf-bbox-polygon/index.js new file mode 100644 index 0000000000..be1f46a329 --- /dev/null +++ b/packages/turf-bbox-polygon/index.js @@ -0,0 +1,31 @@ +var polygon = require('turf-helpers').polygon; + +/** + * Takes a bbox and returns an equivalent {@link Polygon|polygon}. + * + * @name bboxPolygon + * @category measurement + * @param {Array} bbox an Array of bounding box coordinates in the form: ```[xLow, yLow, xHigh, yHigh]``` + * @return {Feature} a Polygon representation of the bounding box + * @example + * var bbox = [0, 0, 10, 10]; + * + * var poly = turf.bboxPolygon(bbox); + * + * //=poly + */ + +module.exports = function (bbox) { + var lowLeft = [bbox[0], bbox[1]]; + var topLeft = [bbox[0], bbox[3]]; + var topRight = [bbox[2], bbox[3]]; + var lowRight = [bbox[2], bbox[1]]; + + return polygon([[ + lowLeft, + lowRight, + topRight, + topLeft, + lowLeft + ]]); +}; diff --git a/packages/turf-bbox-polygon/package.json b/packages/turf-bbox-polygon/package.json new file mode 100644 index 0000000000..5c69ff9bda --- /dev/null +++ b/packages/turf-bbox-polygon/package.json @@ -0,0 +1,33 @@ +{ + "name": "turf-bbox-polygon", + "version": "3.0.5", + "description": "turf bboxPolygon module", + "main": "index.js", + "scripts": { + "test": "node test.js" + }, + "repository": { + "type": "git", + "url": "https://github.com/Turfjs/turf-bboxPolygon.git" + }, + "keywords": [ + "turf", + "gis", + "geojson", + "extent", + "bbox" + ], + "author": "morganherlocker", + "license": "MIT", + "bugs": { + "url": "https://github.com/Turfjs/turf-bboxPolygon/issues" + }, + "homepage": "https://github.com/Turfjs/turf-bboxPolygon", + "devDependencies": { + "benchmark": "^1.0.0", + "tape": "^3.5.0" + }, + "dependencies": { + "turf-helpers": "^3.0.5" + } +} diff --git a/packages/turf-bbox-polygon/test.js b/packages/turf-bbox-polygon/test.js new file mode 100644 index 0000000000..282fbf2396 --- /dev/null +++ b/packages/turf-bbox-polygon/test.js @@ -0,0 +1,21 @@ +var test = require('tape') +var bboxPolygon = require('./') + +test('bboxPolygon', function(t){ + t.plan(2); + + var poly = bboxPolygon([0,0,10,10]); + + t.ok(poly.geometry.coordinates, 'should take a bbox and return the equivalent polygon feature'); + t.equal(poly.geometry.type, 'Polygon', 'should be a Polygon geometry type'); +}); + +test('bboxPolygon valid geojson', function (t) { + var poly = bboxPolygon([0,0,10,10]), + coordinates = poly.geometry.coordinates; + t.ok(poly, 'should be valid geojson.'); + t.equal(coordinates[0].length, 5); + t.equal(coordinates[0][0][0], coordinates[0][coordinates.length - 1][0]); + t.equal(coordinates[0][0][1], coordinates[0][coordinates.length - 1][1]); + t.end(); +}); diff --git a/packages/turf-bbox/.npmignore b/packages/turf-bbox/.npmignore new file mode 100644 index 0000000000..bb3c08c09a --- /dev/null +++ b/packages/turf-bbox/.npmignore @@ -0,0 +1,2 @@ +test +coverage diff --git a/packages/turf-bbox/LICENSE b/packages/turf-bbox/LICENSE new file mode 100644 index 0000000000..64fb8e99a3 --- /dev/null +++ b/packages/turf-bbox/LICENSE @@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) 2014 Morgan Herlocker + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. \ No newline at end of file diff --git a/packages/turf-bbox/README.md b/packages/turf-bbox/README.md new file mode 100644 index 0000000000..26c8f4af8b --- /dev/null +++ b/packages/turf-bbox/README.md @@ -0,0 +1,88 @@ +# turf-bbox + +[![build status](https://secure.travis-ci.org/Turfjs/turf-bbox.png)](http://travis-ci.org/Turfjs/turf-bbox) + +turf bbox module + + +### `turf.bbox(input)` + +Takes a set of features, calculates the bbox of all input features, and returns a bounding box. + + +### Parameters + +| parameter | type | description | +| --------- | -------------------------- | -------------- | +| `input` | Feature\,FeatureCollection | input features | + + +### Example + +```js +var input = { + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [114.175329, 22.2524] + } + }, { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [114.170007, 22.267969] + } + }, { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [114.200649, 22.274641] + } + }, { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [114.186744, 22.265745] + } + } + ] +}; + +var bbox = turf.bbox(input); + +var bboxPolygon = turf.bboxPolygon(bbox); + +var resultFeatures = input.features.concat(bboxPolygon); +var result = { + "type": "FeatureCollection", + "features": resultFeatures +}; + +//=result +``` + + +**Returns** `Array.`, the bounding box of `input` given as an array in WSEN order (west, south, east, north) + +## Installation + +Requires [nodejs](http://nodejs.org/). + +```sh +$ npm install turf-bbox +``` + +## Tests + +```sh +$ npm test +``` + + diff --git a/packages/turf-bbox/bench.js b/packages/turf-bbox/bench.js new file mode 100644 index 0000000000..d49643bbb2 --- /dev/null +++ b/packages/turf-bbox/bench.js @@ -0,0 +1,43 @@ +global.bbox = require('./'); +global.bbox2 = require('./index-lazy-reduce'); +var Benchmark = require('benchmark'); +var fs = require('fs'); + +global.fc = require('./test/FeatureCollection'); +global.pt = require('./test/Point'); +global.line = require('./test/LineString'); +global.poly = require('./test/Polygon'); +global.multiLine = require('./test/MultiLineString'); +global.multiPoly = require('./test/MultiPolygon'); + +var suite = new Benchmark.Suite('turf-bbox'); +suite + .add('turf-bbox#FeatureCollection',function () { + global.bbox(global.fc); + }) + .add('turf-bbox2#FeatureCollection',function () { + global.bbox2(global.fc); + }) + /* + .add('turf-bbox#Point',function () { + global.bbox(global.pt); + }) + .add('turf-bbox#LineString',function () { + global.bbox(global.line); + }) + .add('turf-bbox#Polygon',function () { + global.bbox(global.poly); + }) + .add('turf-bbox#MultiLineString',function () { + global.bbox(global.multiLine); + }) + .add('turf-bbox#MultiPolygon',function () { + global.bbox(global.multiPoly); + }) + */ + .on('cycle', function (event) { + console.log(String(event.target)); + }) + .on('complete', function () { + }) + .run(); diff --git a/packages/turf-bbox/index.js b/packages/turf-bbox/index.js new file mode 100644 index 0000000000..b1215a59d6 --- /dev/null +++ b/packages/turf-bbox/index.js @@ -0,0 +1,68 @@ +var each = require('turf-meta').coordEach; + +/** + * Takes a set of features, calculates the bbox of all input features, and returns a bounding box. + * + * @name bbox + * @category measurement + * @param {(Feature|FeatureCollection)} input input features + * @return {Array} the bounding box of `input` given + * as an array in WSEN order (west, south, east, north) + * @example + * var input = { + * "type": "FeatureCollection", + * "features": [ + * { + * "type": "Feature", + * "properties": {}, + * "geometry": { + * "type": "Point", + * "coordinates": [114.175329, 22.2524] + * } + * }, { + * "type": "Feature", + * "properties": {}, + * "geometry": { + * "type": "Point", + * "coordinates": [114.170007, 22.267969] + * } + * }, { + * "type": "Feature", + * "properties": {}, + * "geometry": { + * "type": "Point", + * "coordinates": [114.200649, 22.274641] + * } + * }, { + * "type": "Feature", + * "properties": {}, + * "geometry": { + * "type": "Point", + * "coordinates": [114.186744, 22.265745] + * } + * } + * ] + * }; + * + * var bbox = turf.bbox(input); + * + * var bboxPolygon = turf.bboxPolygon(bbox); + * + * var resultFeatures = input.features.concat(bboxPolygon); + * var result = { + * "type": "FeatureCollection", + * "features": resultFeatures + * }; + * + * //=result + */ +module.exports = function (layer) { + var bbox = [Infinity, Infinity, -Infinity, -Infinity]; + each(layer, function (coord) { + if (bbox[0] > coord[0]) bbox[0] = coord[0]; + if (bbox[1] > coord[1]) bbox[1] = coord[1]; + if (bbox[2] < coord[0]) bbox[2] = coord[0]; + if (bbox[3] < coord[1]) bbox[3] = coord[1]; + }); + return bbox; +}; diff --git a/packages/turf-bbox/package.json b/packages/turf-bbox/package.json new file mode 100644 index 0000000000..96ea1d51ef --- /dev/null +++ b/packages/turf-bbox/package.json @@ -0,0 +1,34 @@ +{ + "name": "turf-bbox", + "version": "3.0.1", + "description": "turf bbox module", + "main": "index.js", + "scripts": { + "test": "node test.js" + }, + "repository": { + "type": "git", + "url": "https://github.com/Turfjs/turf.git" + }, + "keywords": [ + "turf", + "extent", + "bbox", + "polygon", + "featurecollection", + "geojson" + ], + "author": "morganherlocker", + "license": "MIT", + "bugs": { + "url": "https://github.com/Turfjs/turf/issues" + }, + "homepage": "https://github.com/Turfjs/turf", + "devDependencies": { + "benchmark": "^1.0.0", + "tape": "^3.5.0" + }, + "dependencies": { + "turf-meta": "^3.0.1" + } +} diff --git a/packages/turf-bbox/test.js b/packages/turf-bbox/test.js new file mode 100644 index 0000000000..10038521f3 --- /dev/null +++ b/packages/turf-bbox/test.js @@ -0,0 +1,72 @@ +var test = require('tape'); +var fs = require('fs'); +var extent = require('./'); + +// test data +var fc = require('./test/FeatureCollection'); +var pt = require('./test/Point'); +var line = require('./test/LineString'); +var poly = require('./test/Polygon'); +var multiLine = require('./test/MultiLineString'); +var multiPoly = require('./test/MultiPolygon'); + +test('extent', function(t){ + // FeatureCollection + var fcExtent = extent(fc); + + t.ok(fcExtent, 'FeatureCollection'); + t.equal(fcExtent[0], 20); + t.equal(fcExtent[1], -10); + t.equal(fcExtent[2], 130); + t.equal(fcExtent[3], 4); + + // Point + var ptExtent = extent(pt); + t.ok(ptExtent, 'Point'); + t.equal(ptExtent[0], 102); + t.equal(ptExtent[1], 0.5); + t.equal(ptExtent[2], 102); + t.equal(ptExtent[3], 0.5); + + // Line + var lineExtent = extent(line); + + t.ok(lineExtent, 'Line'); + t.equal(lineExtent[0], 102); + t.equal(lineExtent[1], -10); + t.equal(lineExtent[2], 130); + t.equal(lineExtent[3], 4); + + // Polygon + var polyExtent = extent(poly); + + t.ok(polyExtent, 'Polygon'); + t.equal(polyExtent[0], 100); + t.equal(polyExtent[1], 0); + t.equal(polyExtent[2], 101); + t.equal(polyExtent[3], 1); + + // MultiLineString + var multiLineExtent = extent(multiLine); + + t.ok(multiLineExtent, 'MultiLineString'); + t.equal(multiLineExtent[0], 100); + t.equal(multiLineExtent[1], 0); + t.equal(multiLineExtent[2], 103); + t.equal(multiLineExtent[3], 3); + + // MultiPolygon + var multiPolyExtent = extent(multiPoly); + + t.ok(multiPolyExtent, 'MultiPolygon'); + t.equal(multiPolyExtent[0], 100); + t.equal(multiPolyExtent[1], 0); + t.equal(multiPolyExtent[2], 103); + t.equal(multiPolyExtent[3], 3); + + t.throws(function() { + var multiPolyExtent = extent({}); + }, /Unknown Geometry Type/, 'unknown geometry type error'); + + t.end(); +}); diff --git a/packages/turf-bbox/test/FeatureCollection.js b/packages/turf-bbox/test/FeatureCollection.js new file mode 100644 index 0000000000..89a859f2bc --- /dev/null +++ b/packages/turf-bbox/test/FeatureCollection.js @@ -0,0 +1,39 @@ +module.exports = { + 'type': 'FeatureCollection', + 'features': [ + { + 'type': 'Feature', + 'geometry': { + 'type': 'Point', + 'coordinates': [102.0, 0.5] + }, + 'properties': { + } + }, + { + 'type': 'Feature', + 'geometry': { + 'type': 'LineString', + 'coordinates': [ + [102.0, -10.0], [103.0, 1.0], [104.0, 0.0], [130.0, 4.0] + ] + }, + 'properties': { + } + }, + { + 'type': 'Feature', + 'geometry': { + 'type': 'Polygon', + 'coordinates': [ + [ + [20.0, 0.0], [101.0, 0.0], [101.0, 1.0], [100.0, 1.0], + [100.0, 0.0] + ] + ] + }, + 'properties': { + } + } + ] +}; diff --git a/packages/turf-bbox/test/LineString.js b/packages/turf-bbox/test/LineString.js new file mode 100644 index 0000000000..10ee8da151 --- /dev/null +++ b/packages/turf-bbox/test/LineString.js @@ -0,0 +1,21 @@ +module.exports = { + 'type': 'LineString', + 'coordinates': [ + [ + 102.0, + -10.0 + ], + [ + 103.0, + 1.0 + ], + [ + 104.0, + 0.0 + ], + [ + 130.0, + 4.0 + ] + ] +}; diff --git a/packages/turf-bbox/test/MultiLineString.js b/packages/turf-bbox/test/MultiLineString.js new file mode 100644 index 0000000000..43e742a373 --- /dev/null +++ b/packages/turf-bbox/test/MultiLineString.js @@ -0,0 +1,25 @@ +module.exports = { + 'type': 'MultiLineString', + 'coordinates': [ + [ + [ + 100.0, + 0.0 + ], + [ + 101.0, + 1.0 + ] + ], + [ + [ + 102.0, + 2.0 + ], + [ + 103.0, + 3.0 + ] + ] + ] +}; diff --git a/packages/turf-bbox/test/MultiPolygon.js b/packages/turf-bbox/test/MultiPolygon.js new file mode 100644 index 0000000000..e21cd8a469 --- /dev/null +++ b/packages/turf-bbox/test/MultiPolygon.js @@ -0,0 +1,75 @@ +module.exports = { + 'type': 'MultiPolygon', + 'coordinates': [ + [ + [ + [ + 102.0, + 2.0 + ], + [ + 103.0, + 2.0 + ], + [ + 103.0, + 3.0 + ], + [ + 102.0, + 3.0 + ], + [ + 102.0, + 2.0 + ] + ] + ], + [ + [ + [ + 100.0, + 0.0 + ], + [ + 101.0, + 0.0 + ], + [ + 101.0, + 1.0 + ], + [ + 100.0, + 1.0 + ], + [ + 100.0, + 0.0 + ] + ], + [ + [ + 100.2, + 0.2 + ], + [ + 100.8, + 0.2 + ], + [ + 100.8, + 0.8 + ], + [ + 100.2, + 0.8 + ], + [ + 100.2, + 0.2 + ] + ] + ] + ] +}; diff --git a/packages/turf-bbox/test/Point.js b/packages/turf-bbox/test/Point.js new file mode 100644 index 0000000000..f25c36270f --- /dev/null +++ b/packages/turf-bbox/test/Point.js @@ -0,0 +1,10 @@ +module.exports = { + 'type': 'Feature', + 'geometry': { + 'type': 'Point', + 'coordinates': [ + 102.0, + 0.5 + ] + } +}; diff --git a/packages/turf-bbox/test/Polygon.js b/packages/turf-bbox/test/Polygon.js new file mode 100644 index 0000000000..437c3ad518 --- /dev/null +++ b/packages/turf-bbox/test/Polygon.js @@ -0,0 +1,26 @@ +module.exports = { + 'type': 'Feature', + 'geometry': { + 'type': 'Polygon', + 'coordinates': [ + [ + [ + 101.0, + 0.0 + ], + [ + 101.0, + 1.0 + ], + [ + 100.0, + 1.0 + ], + [ + 100.0, + 0.0 + ] + ] + ] + } +}; diff --git a/packages/turf-bearing/.npmignore b/packages/turf-bearing/.npmignore new file mode 100644 index 0000000000..bb3c08c09a --- /dev/null +++ b/packages/turf-bearing/.npmignore @@ -0,0 +1,2 @@ +test +coverage diff --git a/packages/turf-bearing/LICENSE b/packages/turf-bearing/LICENSE new file mode 100644 index 0000000000..64fb8e99a3 --- /dev/null +++ b/packages/turf-bearing/LICENSE @@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) 2014 Morgan Herlocker + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. \ No newline at end of file diff --git a/packages/turf-bearing/README.md b/packages/turf-bearing/README.md new file mode 100644 index 0000000000..3231b5ea75 --- /dev/null +++ b/packages/turf-bearing/README.md @@ -0,0 +1,74 @@ +# turf-bearing + +[![build status](https://secure.travis-ci.org/Turfjs/turf-bearing.png)](http://travis-ci.org/Turfjs/turf-bearing) + +turf bearing module + + +### `turf.bearing(start, end)` + +Takes two Point|points and finds the geographic bearing between them. + + +### Parameters + +| parameter | type | description | +| --------- | ------------------ | -------------- | +| `start` | Feature\.\ | starting Point | +| `end` | Feature\.\ | ending Point | + + +### Example + +```js +var point1 = { + "type": "Feature", + "properties": { + "marker-color": '#f00' + }, + "geometry": { + "type": "Point", + "coordinates": [-75.343, 39.984] + } +}; +var point2 = { + "type": "Feature", + "properties": { + "marker-color": '#0f0' + }, + "geometry": { + "type": "Point", + "coordinates": [-75.534, 39.123] + } +}; + +var points = { + "type": "FeatureCollection", + "features": [point1, point2] +}; + +//=points + +var bearing = turf.bearing(point1, point2); + +//=bearing +``` + + +**Returns** `Number`, bearing in decimal degrees + +## Installation + +Requires [nodejs](http://nodejs.org/). + +```sh +$ npm install turf-bearing +``` + +## Tests + +```sh +$ npm test +``` + + diff --git a/packages/turf-bearing/bench.js b/packages/turf-bearing/bench.js new file mode 100644 index 0000000000..aa0db6795a --- /dev/null +++ b/packages/turf-bearing/bench.js @@ -0,0 +1,25 @@ +var bearing = require('./'); +var Benchmark = require('benchmark'); +var fs = require('fs'); + +var pt1 = { + type: "Feature", + geometry: {type: "Point", coordinates: [-75.4, 39.4]} + }; +var pt2 = { + type: "Feature", + geometry: {type: "Point", coordinates: [-75.534, 39.123]} + }; + +var suite = new Benchmark.Suite('turf-bearing'); +suite + .add('turf-bearing',function () { + bearing(pt1, pt2); + }) + .on('cycle', function (event) { + console.log(String(event.target)); + }) + .on('complete', function () { + + }) + .run(); \ No newline at end of file diff --git a/packages/turf-bearing/index.js b/packages/turf-bearing/index.js new file mode 100644 index 0000000000..b8e574a6d8 --- /dev/null +++ b/packages/turf-bearing/index.js @@ -0,0 +1,64 @@ +var getCoord = require('turf-invariant').getCoord; +//http://en.wikipedia.org/wiki/Haversine_formula +//http://www.movable-type.co.uk/scripts/latlong.html + +/** + * Takes two {@link Point|points} and finds the geographic bearing between them. + * + * @name bearing + * @category measurement + * @param {Feature} start starting Point + * @param {Feature} end ending Point + * @category measurement + * @returns {Number} bearing in decimal degrees + * @example + * var point1 = { + * "type": "Feature", + * "properties": { + * "marker-color": '#f00' + * }, + * "geometry": { + * "type": "Point", + * "coordinates": [-75.343, 39.984] + * } + * }; + * var point2 = { + * "type": "Feature", + * "properties": { + * "marker-color": '#0f0' + * }, + * "geometry": { + * "type": "Point", + * "coordinates": [-75.534, 39.123] + * } + * }; + * + * var points = { + * "type": "FeatureCollection", + * "features": [point1, point2] + * }; + * + * //=points + * + * var bearing = turf.bearing(point1, point2); + * + * //=bearing + */ +module.exports = function (p1, p2) { + var degrees2radians = Math.PI / 180; + var radians2degrees = 180 / Math.PI; + var coordinates1 = getCoord(p1); + var coordinates2 = getCoord(p2); + + var lon1 = degrees2radians * coordinates1[0]; + var lon2 = degrees2radians * coordinates2[0]; + var lat1 = degrees2radians * coordinates1[1]; + var lat2 = degrees2radians * coordinates2[1]; + var a = Math.sin(lon2 - lon1) * Math.cos(lat2); + var b = Math.cos(lat1) * Math.sin(lat2) - + Math.sin(lat1) * Math.cos(lat2) * Math.cos(lon2 - lon1); + + var bearing = radians2degrees * Math.atan2(a, b); + + return bearing; +}; diff --git a/packages/turf-bearing/package.json b/packages/turf-bearing/package.json new file mode 100644 index 0000000000..1f116504cc --- /dev/null +++ b/packages/turf-bearing/package.json @@ -0,0 +1,30 @@ +{ + "name": "turf-bearing", + "version": "3.0.1", + "description": "turf bearing module", + "main": "index.js", + "scripts": { + "test": "tape test.js" + }, + "repository": { + "type": "git", + "url": "https://github.com/Turfjs/turf-bearing.git" + }, + "keywords": [ + "turf", + "bearing" + ], + "author": "jvrousseau", + "license": "MIT", + "bugs": { + "url": "https://github.com/Turfjs/turf-bearing/issues" + }, + "homepage": "https://github.com/Turfjs/turf-bearing", + "dependencies": { + "turf-invariant": "^3.0.1" + }, + "devDependencies": { + "benchmark": "^1.0.0", + "tape": "^3.5.0" + } +} diff --git a/packages/turf-bearing/test.js b/packages/turf-bearing/test.js new file mode 100644 index 0000000000..ea42aa2db6 --- /dev/null +++ b/packages/turf-bearing/test.js @@ -0,0 +1,17 @@ +var test = require('tape'); +var bearing = require('./'); + +test('bearing', function(t){ + var pt1 = { + type: "Feature", + geometry: {type: "Point", coordinates: [-75.4, 39.4]} + }; + var pt2 = { + type: "Feature", + geometry: {type: "Point", coordinates: [-75.534, 39.123]} + }; + + var bear = bearing(pt1, pt2); + t.equal(bear.toFixed(2), '-159.42', 'should return the correct bearing'); + t.end(); +}); diff --git a/packages/turf-bezier/.npmignore b/packages/turf-bezier/.npmignore new file mode 100644 index 0000000000..bb3c08c09a --- /dev/null +++ b/packages/turf-bezier/.npmignore @@ -0,0 +1,2 @@ +test +coverage diff --git a/packages/turf-bezier/README.md b/packages/turf-bezier/README.md new file mode 100644 index 0000000000..0ab707b42b --- /dev/null +++ b/packages/turf-bezier/README.md @@ -0,0 +1,75 @@ +# turf-bezier + +[![build status](https://secure.travis-ci.org/Turfjs/turf-bezier.png)](http://travis-ci.org/Turfjs/turf-bezier) + +generate a bezier curve from a linestring + + +### `turf.bezier(line, [resolution=10000], [sharpness=0.85])` + +Takes a LineString|line and returns a curved version +by applying a [Bezier spline](http://en.wikipedia.org/wiki/B%C3%A9zier_spline) +algorithm. + +The bezier spline implementation is by [Leszek Rybicki](http://leszek.rybicki.cc/). + + +### Parameters + +| parameter | type | description | +| -------------------- | ----------------------- | --------------------------------------------------------------------- | +| `line` | Feature\.\ | input LineString | +| `[resolution=10000]` | Number | _optional:_ time in milliseconds between points | +| `[sharpness=0.85]` | Number | _optional:_ a measure of how curvy the path should be between splines | + + +### Example + +```js +var line = { + "type": "Feature", + "properties": { + "stroke": "#f00" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [-76.091308, 18.427501], + [-76.695556, 18.729501], + [-76.552734, 19.40443], + [-74.61914, 19.134789], + [-73.652343, 20.07657], + [-73.157958, 20.210656] + ] + } +}; + +var curved = turf.bezier(line); +curved.properties = { stroke: '#0f0' }; + +var result = { + "type": "FeatureCollection", + "features": [line, curved] +}; + +//=result +``` + + +**Returns** `Feature.`, curved line + +## Installation + +Requires [nodejs](http://nodejs.org/). + +```sh +$ npm install turf-bezier +``` + +## Tests + +```sh +$ npm test +``` + + diff --git a/packages/turf-bezier/bench.js b/packages/turf-bezier/bench.js new file mode 100644 index 0000000000..b516bd47f2 --- /dev/null +++ b/packages/turf-bezier/bench.js @@ -0,0 +1,18 @@ +var bezier = require('./'); +var Benchmark = require('benchmark'); +var fs = require('fs'); + +var line = JSON.parse(fs.readFileSync(__dirname+'/test/bezierIn.geojson')); + +var suite = new Benchmark.Suite('turf-bezier'); +suite + .add('turf-bezier',function () { + bezier(line, 5000, .85); + }) + .on('cycle', function (event) { + console.log(String(event.target)); + }) + .on('complete', function () { + + }) + .run(); diff --git a/packages/turf-bezier/index.js b/packages/turf-bezier/index.js new file mode 100644 index 0000000000..c83bf41d1e --- /dev/null +++ b/packages/turf-bezier/index.js @@ -0,0 +1,67 @@ +var linestring = require('turf-helpers').lineString; +var Spline = require('./spline.js'); + +/** + * Takes a {@link LineString|line} and returns a curved version + * by applying a [Bezier spline](http://en.wikipedia.org/wiki/B%C3%A9zier_spline) + * algorithm. + * + * The bezier spline implementation is by [Leszek Rybicki](http://leszek.rybicki.cc/). + * + * @name bezier + * @category transformation + * @param {Feature} line input LineString + * @param {Number} [resolution=10000] time in milliseconds between points + * @param {Number} [sharpness=0.85] a measure of how curvy the path should be between splines + * @returns {Feature} curved line + * @example + * var line = { + * "type": "Feature", + * "properties": { + * "stroke": "#f00" + * }, + * "geometry": { + * "type": "LineString", + * "coordinates": [ + * [-76.091308, 18.427501], + * [-76.695556, 18.729501], + * [-76.552734, 19.40443], + * [-74.61914, 19.134789], + * [-73.652343, 20.07657], + * [-73.157958, 20.210656] + * ] + * } + * }; + * + * var curved = turf.bezier(line); + * curved.properties = { stroke: '#0f0' }; + * + * var result = { + * "type": "FeatureCollection", + * "features": [line, curved] + * }; + * + * //=result + */ +module.exports = function (line, resolution, sharpness) { + var lineOut = linestring([]); + + lineOut.properties = line.properties; + + var spline = new Spline({ + points: line.geometry.coordinates.map(function (pt) { + return {x: pt[0], y: pt[1]}; + }), + duration: resolution, + sharpness: sharpness + }); + + for (var i = 0; i < spline.duration; i += 10) { + var pos = spline.pos(i); + if (Math.floor(i / 100) % 2 === 0) { + lineOut.geometry.coordinates.push([pos.x, pos.y]); + } + } + + return lineOut; +}; diff --git a/packages/turf-bezier/package.json b/packages/turf-bezier/package.json new file mode 100644 index 0000000000..98820fe3b2 --- /dev/null +++ b/packages/turf-bezier/package.json @@ -0,0 +1,33 @@ +{ + "name": "turf-bezier", + "version": "3.0.5", + "description": "generate a bezier curve from a linestring", + "main": "index.js", + "scripts": { + "test": "tape test.js" + }, + "repository": { + "type": "git", + "url": "git://github.com/Turfjs/turf-bezier.git" + }, + "keywords": [ + "turf", + "geometry", + "bezier", + "curve", + "linestring" + ], + "author": "Morgan Herlocker", + "license": "ISC", + "bugs": { + "url": "https://github.com/Turfjs/turf-bezier/issues" + }, + "homepage": "https://github.com/Turfjs/turf-bezier", + "dependencies": { + "turf-helpers": "^3.0.5" + }, + "devDependencies": { + "benchmark": "1.0.0", + "tape": "~3.5.0" + } +} diff --git a/packages/turf-bezier/spline.js b/packages/turf-bezier/spline.js new file mode 100644 index 0000000000..9899b5d8d2 --- /dev/null +++ b/packages/turf-bezier/spline.js @@ -0,0 +1,134 @@ +/* eslint-disable */ + + /** + * BezierSpline + * https://github.com/leszekr/bezier-spline-js + * + * @private + * @copyright + * Copyright (c) 2013 Leszek Rybicki + * + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in all + * copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + * SOFTWARE. + */ +var Spline = function (options) { + this.points = options.points || []; + this.duration = options.duration || 10000; + this.sharpness = options.sharpness || 0.85; + this.centers = []; + this.controls = []; + this.stepLength = options.stepLength || 60; + this.length = this.points.length; + this.delay = 0; + // this is to ensure compatibility with the 2d version + for (var i = 0; i < this.length; i++) this.points[i].z = this.points[i].z || 0; + for (var i = 0; i < this.length - 1; i++) { + var p1 = this.points[i]; + var p2 = this.points[i + 1]; + this.centers.push({ + x: (p1.x + p2.x) / 2, + y: (p1.y + p2.y) / 2, + z: (p1.z + p2.z) / 2 + }); + } + this.controls.push([this.points[0], this.points[0]]); + for (var i = 0; i < this.centers.length - 1; i++) { + var p1 = this.centers[i]; + var p2 = this.centers[i + 1]; + var dx = this.points[i + 1].x - (this.centers[i].x + this.centers[i + 1].x) / 2; + var dy = this.points[i + 1].y - (this.centers[i].y + this.centers[i + 1].y) / 2; + var dz = this.points[i + 1].z - (this.centers[i].y + this.centers[i + 1].z) / 2; + this.controls.push([{ + x: (1.0 - this.sharpness) * this.points[i + 1].x + this.sharpness * (this.centers[i].x + dx), + y: (1.0 - this.sharpness) * this.points[i + 1].y + this.sharpness * (this.centers[i].y + dy), + z: (1.0 - this.sharpness) * this.points[i + 1].z + this.sharpness * (this.centers[i].z + dz)}, + { + x: (1.0 - this.sharpness) * this.points[i + 1].x + this.sharpness * (this.centers[i + 1].x + dx), + y: (1.0 - this.sharpness) * this.points[i + 1].y + this.sharpness * (this.centers[i + 1].y + dy), + z: (1.0 - this.sharpness) * this.points[i + 1].z + this.sharpness * (this.centers[i + 1].z + dz)}]); + } + this.controls.push([this.points[this.length - 1], this.points[this.length - 1]]); + this.steps = this.cacheSteps(this.stepLength); + return this; +}; + + /* + Caches an array of equidistant (more or less) points on the curve. + */ +Spline.prototype.cacheSteps = function (mindist) { + var steps = []; + var laststep = this.pos(0); + steps.push(0); + for (var t = 0; t < this.duration; t += 10) { + var step = this.pos(t); + var dist = Math.sqrt((step.x - laststep.x) * (step.x - laststep.x) + (step.y - laststep.y) * (step.y - laststep.y) + (step.z - laststep.z) * (step.z - laststep.z)); + if (dist > mindist) { + steps.push(t); + laststep = step; + } + } + return steps; +}; + + /* + returns angle and speed in the given point in the curve + */ +Spline.prototype.vector = function (t) { + var p1 = this.pos(t + 10); + var p2 = this.pos(t - 10); + return { + angle:180 * Math.atan2(p1.y - p2.y, p1.x - p2.x) / 3.14, + speed:Math.sqrt((p2.x - p1.x) * (p2.x - p1.x) + (p2.y - p1.y) * (p2.y - p1.y) + (p2.z - p1.z) * (p2.z - p1.z)) + }; +}; + + /* + Gets the position of the point, given time. + + WARNING: The speed is not constant. The time it takes between control points is constant. + + For constant speed, use Spline.steps[i]; + */ +Spline.prototype.pos = function (time) { + + function bezier(t, p1, c1, c2, p2) { + var B = function (t) { + var t2 = t * t, t3 = t2 * t; + return [(t3), (3 * t2 * (1 - t)), (3 * t * (1 - t) * (1 - t)), ((1 - t) * (1 - t) * (1 - t))]; + }; + var b = B(t); + var pos = { + x : p2.x * b[0] + c2.x * b[1] + c1.x * b[2] + p1.x * b[3], + y : p2.y * b[0] + c2.y * b[1] + c1.y * b[2] + p1.y * b[3], + z : p2.z * b[0] + c2.z * b[1] + c1.z * b[2] + p1.z * b[3] + }; + return pos; + } + var t = time - this.delay; + if (t < 0) t = 0; + if (t > this.duration) t = this.duration - 1; + //t = t-this.delay; + var t2 = (t) / this.duration; + if (t2 >= 1) return this.points[this.length - 1]; + + var n = Math.floor((this.points.length - 1) * t2); + var t1 = (this.length - 1) * t2 - n; + return bezier(t1, this.points[n], this.controls[n][1], this.controls[n + 1][0], this.points[n + 1]); +}; + +module.exports = Spline; diff --git a/packages/turf-bezier/test.js b/packages/turf-bezier/test.js new file mode 100644 index 0000000000..d9466402a5 --- /dev/null +++ b/packages/turf-bezier/test.js @@ -0,0 +1,13 @@ +var bezier = require('./'), + test = require('tape'), + fs = require('fs'); + +test('bezier', function(t) { + var lineIn = JSON.parse(fs.readFileSync(__dirname+'/test/bezierIn.geojson')); + var syncLineOut = bezier(lineIn, 5000, .85); + if (syncLineOut instanceof Error) throw syncLineOut; + t.ok(syncLineOut); + t.ok(syncLineOut.geometry.coordinates); + t.equal(syncLineOut.geometry.coordinates.length, 250); + t.end(); +}) diff --git a/packages/turf-bezier/test/bezierIn.geojson b/packages/turf-bezier/test/bezierIn.geojson new file mode 100644 index 0000000000..d50a4a45da --- /dev/null +++ b/packages/turf-bezier/test/bezierIn.geojson @@ -0,0 +1,61 @@ +{ + "type": "Feature", + "properties": {}, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -80.08724212646484, + 32.77428536643231 + ], + [ + -80.03746032714844, + 32.84007757059952 + ], + [ + -80.01548767089844, + 32.74512501406368 + ], + [ + -79.95368957519531, + 32.850461360442424 + ], + [ + -79.9361801147461, + 32.75349876580794 + ], + [ + -79.9310302734375, + 32.79997320569839 + ], + [ + -79.91043090820312, + 32.78409957394813 + ], + [ + -79.90528106689453, + 32.8490192400596 + ], + [ + -79.79919433593749, + 32.76995522487643 + ], + [ + -79.82494354248047, + 32.810361684869015 + ], + [ + -79.78683471679688, + 32.83373132321818 + ], + [ + -79.76554870605469, + 32.80430188623444 + ], + [ + -79.8098373413086, + 32.726931048100624 + ] + ] + } +} diff --git a/packages/turf-buffer/.npmignore b/packages/turf-buffer/.npmignore new file mode 100644 index 0000000000..bb3c08c09a --- /dev/null +++ b/packages/turf-buffer/.npmignore @@ -0,0 +1,2 @@ +test +coverage diff --git a/packages/turf-buffer/LICENSE b/packages/turf-buffer/LICENSE new file mode 100644 index 0000000000..64fb8e99a3 --- /dev/null +++ b/packages/turf-buffer/LICENSE @@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) 2014 Morgan Herlocker + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. \ No newline at end of file diff --git a/packages/turf-buffer/README.md b/packages/turf-buffer/README.md new file mode 100644 index 0000000000..99a788ea37 --- /dev/null +++ b/packages/turf-buffer/README.md @@ -0,0 +1,58 @@ +# turf-buffer + +[![build status](https://secure.travis-ci.org/Turfjs/turf-buffer.png)](http://travis-ci.org/Turfjs/turf-buffer) + +turf buffer module + + +### `turf.buffer(feature, distance, unit)` + +Calculates a buffer for input features for a given radius. Units supported are miles, kilometers, and degrees. + + +### Parameters + +| parameter | type | description | +| ---------- | -------------------------- | ----------------------------------------------------- | +| `feature` | Feature\,FeatureCollection | input to be buffered | +| `distance` | Number | distance to draw the buffer | +| `unit` | String | 'miles', 'feet', 'kilometers', 'meters', or 'degrees' | + + +### Example + +```js +var pt = { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [-90.548630, 14.616599] + } +}; +var unit = 'miles'; + +var buffered = turf.buffer(pt, 500, unit); +var result = turf.featurecollection([buffered, pt]); + +//=result +``` + + +**Returns** `FeatureCollection.,FeatureCollection.,Polygon,MultiPolygon`, buffered features + +## Installation + +Requires [nodejs](http://nodejs.org/). + +```sh +$ npm install turf-buffer +``` + +## Tests + +```sh +$ npm test +``` + + diff --git a/packages/turf-buffer/bench.js b/packages/turf-buffer/bench.js new file mode 100644 index 0000000000..759a6cb562 --- /dev/null +++ b/packages/turf-buffer/bench.js @@ -0,0 +1,30 @@ +var buffer = require('./'); +var Benchmark = require('benchmark'); +var fs = require('fs'); + +var pt = JSON.parse(fs.readFileSync(__dirname+'/test/fixtures/in/Point.geojson')); +var line = JSON.parse(fs.readFileSync(__dirname+'/test/fixtures/in/LineString.geojson')); +var polygon = JSON.parse(fs.readFileSync(__dirname+'/test/fixtures/in/Polygon.geojson')); +var fc = JSON.parse(fs.readFileSync(__dirname+'/test/fixtures/in/FeatureCollection.geojson')); + +var suite = new Benchmark.Suite('turf-buffer'); +suite + .add('turf-buffer#Point',function () { + buffer(pt, 10, 'miles'); + }) + .add('turf-buffer#LineString',function () { + buffer(line, 10, 'miles'); + }) + .add('turf-buffer#Polygon',function () { + buffer(polygon, 10, 'miles'); + }) + .add('turf-buffer#FeatureCollection',function () { + buffer(fc, 10, 'miles'); + }) + .on('cycle', function (event) { + console.log(String(event.target)); + }) + .on('complete', function () { + + }) + .run(); \ No newline at end of file diff --git a/packages/turf-buffer/index.js b/packages/turf-buffer/index.js new file mode 100644 index 0000000000..4b381ec5e0 --- /dev/null +++ b/packages/turf-buffer/index.js @@ -0,0 +1,61 @@ +// http://stackoverflow.com/questions/839899/how-do-i-calculate-a-point-on-a-circles-circumference +// radians = degrees * (pi/180) +// https://github.com/bjornharrtell/jsts/blob/master/examples/buffer.html + +var helpers = require('turf-helpers'); +var featureCollection = helpers.featureCollection; +var jsts = require('jsts'); +var normalize = require('geojson-normalize'); + +/** + * Calculates a buffer for input features for a given radius. Units supported are miles, kilometers, and degrees. + * + * @name buffer + * @category transformation + * @param {(Feature|FeatureCollection)} feature input to be buffered + * @param {Number} distance distance to draw the buffer + * @param {String} unit any of the options supported by turf units + * @return {FeatureCollection|FeatureCollection|Polygon|MultiPolygon} buffered features + * + * @example + * var pt = { + * "type": "Feature", + * "properties": {}, + * "geometry": { + * "type": "Point", + * "coordinates": [-90.548630, 14.616599] + * } + * }; + * var unit = 'miles'; + * + * var buffered = turf.buffer(pt, 500, unit); + * var result = turf.featurecollection([buffered, pt]); + * + * //=result + */ + +module.exports = function (feature, radius, units) { + + var degrees = helpers.distanceToDegrees(radius, units); + var fc = normalize(feature); + var buffered = normalize(featureCollection(fc.features.map(function (f) { + return bufferOp(f, degrees); + }))); + + if (buffered.features.length > 1) return buffered; + else if (buffered.features.length === 1) return buffered.features[0]; +}; + +function bufferOp(feature, radius) { + var reader = new jsts.io.GeoJSONReader(); + var geom = reader.read(feature.geometry); + var buffered = geom.buffer(radius); + var writer = new jsts.io.GeoJSONWriter(); + buffered = writer.write(buffered); + + return { + type: 'Feature', + geometry: buffered, + properties: {} + }; +} diff --git a/packages/turf-buffer/package.json b/packages/turf-buffer/package.json new file mode 100644 index 0000000000..33c8ef8f92 --- /dev/null +++ b/packages/turf-buffer/package.json @@ -0,0 +1,42 @@ +{ + "name": "turf-buffer", + "version": "3.0.5", + "description": "turf buffer module", + "main": "index.js", + "scripts": { + "test": "node ./test/test.js" + }, + "repository": { + "type": "git", + "url": "https://github.com/Turfjs/turf-buffer.git" + }, + "keywords": [ + "buffer", + "offset", + "polygon", + "linestring", + "point", + "geojson", + "turf" + ], + "author": "morganherlocker", + "license": "MIT", + "bugs": { + "url": "https://github.com/Turfjs/turf-buffer/issues" + }, + "homepage": "https://github.com/Turfjs/turf-buffer", + "devDependencies": { + "benchmark": "^1.0.0", + "glob": "^5.0.3", + "tape": "^3.5.0", + "turf-distance": "^3.0.5", + "turf-bbox": "^3.0.1", + "turf-helpers": "^3.0.5" + }, + "dependencies": { + "geojson-normalize": "0.0.0", + "jsts": "1.1.1", + "turf-combine": "^3.0.5", + "turf-helpers": "^3.0.5" + } +} diff --git a/packages/turf-buffer/test/fixtures/in/FeatureCollection.geojson b/packages/turf-buffer/test/fixtures/in/FeatureCollection.geojson new file mode 100644 index 0000000000..966478da70 --- /dev/null +++ b/packages/turf-buffer/test/fixtures/in/FeatureCollection.geojson @@ -0,0 +1,141 @@ + { + "type": "FeatureCollection", + "features": [ + { "type": "Feature", + "geometry": {"type": "Point", "coordinates": [-75.833, 39.284]}, + "properties": { + "name": "Location B", + "category": "House", + "elevation": 25 + } + }, + { "type": "Feature", + "geometry": {"type": "Point", "coordinates": [-75.6, 39.984]}, + "properties": { + "name": "Location A", + "category": "Store", + "elevation": 23 + } + }, + { "type": "Feature", + "geometry": {"type": "Point", "coordinates": [ -75.221, 39.125]}, + "properties": { + "name": "Location C", + "category": "Office", + "elevation": 29 + } + }, + { "type": "Feature", + "geometry": {"type": "Point", "coordinates": [-75.358, 39.987]}, + "properties": { + "name": "Location A", + "category": "Store", + "elevation": 12 + } + }, + { "type": "Feature", + "geometry": {"type": "Point", "coordinates": [-75.9221, 39.27]}, + "properties": { + "name": "Location B", + "category": "House", + "elevation": 11 + } + }, + { "type": "Feature", + "geometry": {"type": "Point", "coordinates": [ -75.534, 39.123]}, + "properties": { + "name": "Location C", + "category": "Office", + "elevation": 49 + } + }, + { "type": "Feature", + "geometry": {"type": "Point", "coordinates": [-75.21, 39.12]}, + "properties": { + "name": "Location A", + "category": "Store", + "elevation": 50 + } + }, + { "type": "Feature", + "geometry": {"type": "Point", "coordinates": [-75.22, 39.33]}, + "properties": { + "name": "Location B", + "category": "House", + "elevation": 90 + } + }, + { "type": "Feature", + "geometry": {"type": "Point", "coordinates": [ -75.44, 39.55]}, + "properties": { + "name": "Location C", + "category": "Office", + "elevation": 22 + } + }, + { "type": "Feature", + "geometry": {"type": "Point", "coordinates": [-75.77, 39.66]}, + "properties": { + "name": "Location A", + "category": "Store", + "elevation": 99 + } + }, + { "type": "Feature", + "geometry": {"type": "Point", "coordinates": [-75.44, 39.11]}, + "properties": { + "name": "Location B", + "category": "House", + "elevation": 55 + } + }, + { "type": "Feature", + "geometry": {"type": "Point", "coordinates": [ -75.05, 39.92]}, + "properties": { + "name": "Location C", + "category": "Office", + "elevation": 41 + } + }, + { "type": "Feature", + "geometry": {"type": "Point", "coordinates": [-75.88, 39.98]}, + "properties": { + "name": "Location A", + "category": "Store", + "elevation": 52 + } + }, + { "type": "Feature", + "geometry": {"type": "Point", "coordinates": [-75.55, 39.55]}, + "properties": { + "name": "Location B", + "category": "House", + "elevation": 143 + } + }, + { "type": "Feature", + "geometry": {"type": "Point", "coordinates": [ -75.33, 39.44]}, + "properties": { + "name": "Location C", + "category": "Office", + "elevation": 76 + } + }, + { "type": "Feature", + "geometry": {"type": "Point", "coordinates": [ -75.56, 39.24]}, + "properties": { + "name": "Location C", + "category": "Office", + "elevation": 18 + } + }, + { "type": "Feature", + "geometry": {"type": "Point", "coordinates": [ -75.56, 39.36]}, + "properties": { + "name": "Location C", + "category": "Office", + "elevation": 52 + } + } + ] + } \ No newline at end of file diff --git a/packages/turf-buffer/test/fixtures/in/GeometryCollection.geojson b/packages/turf-buffer/test/fixtures/in/GeometryCollection.geojson new file mode 100644 index 0000000000..0d836e9c5f --- /dev/null +++ b/packages/turf-buffer/test/fixtures/in/GeometryCollection.geojson @@ -0,0 +1,75 @@ +{ + "type": "Feature", + "properties": {}, + "geometry": { + "type": "GeometryCollection", + "geometries": [ + { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.2578125, + 35.85343961959182 + ], + [ + 69.2578125, + 38.496593518947556 + ], + [ + 72.421875, + 38.496593518947556 + ], + [ + 72.421875, + 35.85343961959182 + ], + [ + 69.2578125, + 35.85343961959182 + ] + ] + ] + }, + { + "type": "LineString", + "coordinates": [ + [ + 55.30517578124999, + 39.87601941962116 + ], + [ + 55.85449218749999, + 41.14556973100947 + ], + [ + 56.6015625, + 40.111688665595956 + ], + [ + 57.65624999999999, + 41.57436130598913 + ], + [ + 58.11767578124999, + 40.94671366508002 + ] + ] + }, + { + "type": "Point", + "coordinates": [ + 62.33642578125001, + 29.248063243796576 + ] + }, + { + "type": "Point", + "coordinates": [ + 58.75488281249999, + 32.45415593941475 + ] + } + ] + } +} \ No newline at end of file diff --git a/packages/turf-buffer/test/fixtures/in/LineString.geojson b/packages/turf-buffer/test/fixtures/in/LineString.geojson new file mode 100644 index 0000000000..e4d310d8b5 --- /dev/null +++ b/packages/turf-buffer/test/fixtures/in/LineString.geojson @@ -0,0 +1,53 @@ +{ + "type": "Feature", + "properties": {}, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -92.4884033203125, + 44.58655513209543 + ], + [ + -92.2906494140625, + 44.52392653654215 + ], + [ + -92.230224609375, + 44.429857265397246 + ], + [ + -92.08740234375, + 44.429857265397246 + ], + [ + -91.9830322265625, + 44.35527821160296 + ], + [ + -91.92260742187499, + 44.308126684886126 + ], + [ + -91.8731689453125, + 44.24519901522129 + ], + [ + -91.8072509765625, + 44.166444664458595 + ], + [ + -91.58203125, + 44.06390660801779 + ], + [ + -91.29638671875, + 43.874138181474734 + ], + [ + -91.219482421875, + 43.37710501700073 + ] + ] + } +} \ No newline at end of file diff --git a/packages/turf-buffer/test/fixtures/in/MultiLineString.geojson b/packages/turf-buffer/test/fixtures/in/MultiLineString.geojson new file mode 100644 index 0000000000..e452aa9a10 --- /dev/null +++ b/packages/turf-buffer/test/fixtures/in/MultiLineString.geojson @@ -0,0 +1,41 @@ +{ + "type": "Feature", + "properties": {}, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [ + 65.7421875, + 52.482780222078226 + ], + [ + 38.3203125, + 44.59046718130883 + ], + [ + 61.87499999999999, + 37.16031654673677 + ], + [ + 63.984375, + 21.616579336740603 + ] + ], + [ + [ + 96.328125, + 34.59704151614417 + ], + [ + 75.234375, + 7.013667927566642 + ], + [ + 98.0859375, + 9.44906182688142 + ] + ] + ] + } +} \ No newline at end of file diff --git a/packages/turf-buffer/test/fixtures/in/MultiPoint.geojson b/packages/turf-buffer/test/fixtures/in/MultiPoint.geojson new file mode 100644 index 0000000000..5f726a2ce6 --- /dev/null +++ b/packages/turf-buffer/test/fixtures/in/MultiPoint.geojson @@ -0,0 +1,21 @@ +{ + "type": "Feature", + "properties": {}, + "geometry": { + "type": "MultiPoint", + "coordinates": [ + [ + 84.0234375, + 47.040182144806664 + ], + [ + 85.2264404296875, + 46.464349400461124 + ], + [ + 86.396484375, + 47.26432008025478 + ] + ] + } +} \ No newline at end of file diff --git a/packages/turf-buffer/test/fixtures/in/MultiPolygon.geojson b/packages/turf-buffer/test/fixtures/in/MultiPolygon.geojson new file mode 100644 index 0000000000..c124f2727d --- /dev/null +++ b/packages/turf-buffer/test/fixtures/in/MultiPolygon.geojson @@ -0,0 +1,53 @@ +{ + "type": "Feature", + "properties": {}, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + -88.692626953125, + 42.95039177450287 + ], + [ + -88.692626953125, + 43.27520565244538 + ], + [ + -88.25592041015625, + 43.27520565244538 + ], + [ + -88.25592041015625, + 42.95039177450287 + ], + [ + -88.692626953125, + 42.95039177450287 + ] + ] + ], + [ + [ + [ + -87.8521728515625, + 43.624147145668076 + ], + [ + -87.9949951171875, + 43.2872026848044 + ], + [ + -87.61322021484375, + 43.395069512861355 + ], + [ + -87.8521728515625, + 43.624147145668076 + ] + ] + ] + ] + } +} \ No newline at end of file diff --git a/packages/turf-buffer/test/fixtures/in/Point.geojson b/packages/turf-buffer/test/fixtures/in/Point.geojson new file mode 100644 index 0000000000..8c290bfe3f --- /dev/null +++ b/packages/turf-buffer/test/fixtures/in/Point.geojson @@ -0,0 +1,8 @@ +{ + "type": "Feature", + "geometry": {"type": "Point", "coordinates": [-75.4, 39.4]}, + "properties": { + "name": "Location A", + "category": "Store" + } +} \ No newline at end of file diff --git a/packages/turf-buffer/test/fixtures/in/Polygon.geojson b/packages/turf-buffer/test/fixtures/in/Polygon.geojson new file mode 100644 index 0000000000..b18701656b --- /dev/null +++ b/packages/turf-buffer/test/fixtures/in/Polygon.geojson @@ -0,0 +1,43 @@ +{ + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.92141723632812, + 32.953944317478246 + ], + [ + -79.97428894042969, + 32.83690450361482 + ], + [ + -79.97360229492188, + 32.76071688548088 + ], + [ + -79.93034362792969, + 32.76475877693074 + ], + [ + -79.93789672851562, + 32.74108223150125 + ], + [ + -79.80537414550781, + 32.7231762754146 + ], + [ + -79.81773376464844, + 32.923402043498875 + ], + [ + -79.92141723632812, + 32.953944317478246 + ] + ] + ] + } +} diff --git a/packages/turf-buffer/test/fixtures/out/FeatureCollection.geojson b/packages/turf-buffer/test/fixtures/out/FeatureCollection.geojson new file mode 100644 index 0000000000..995d81603e --- /dev/null +++ b/packages/turf-buffer/test/fixtures/out/FeatureCollection.geojson @@ -0,0 +1,2759 @@ +{ + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -75.72248722855471, + 39.284 + ], + [ + -75.7246107004699, + 39.26244002783184 + ], + [ + -75.7308995123806, + 39.24170859330314 + ], + [ + -75.7411119887719, + 39.222602393816494 + ], + [ + -75.75485566990332, + 39.205855669903315 + ], + [ + -75.7716023938165, + 39.192111988771906 + ], + [ + -75.79070859330314, + 39.181899512380596 + ], + [ + -75.81144002783184, + 39.175610700469896 + ], + [ + -75.833, + 39.17348722855471 + ], + [ + -75.85455997216816, + 39.175610700469896 + ], + [ + -75.87529140669686, + 39.181899512380596 + ], + [ + -75.8943976061835, + 39.192111988771906 + ], + [ + -75.91114433009668, + 39.205855669903315 + ], + [ + -75.92488801122809, + 39.222602393816494 + ], + [ + -75.9351004876194, + 39.24170859330314 + ], + [ + -75.9413892995301, + 39.26244002783184 + ], + [ + -75.94351277144528, + 39.284 + ], + [ + -75.9413892995301, + 39.305559972168155 + ], + [ + -75.9351004876194, + 39.32629140669686 + ], + [ + -75.92488801122809, + 39.345397606183504 + ], + [ + -75.91114433009668, + 39.36214433009668 + ], + [ + -75.8943976061835, + 39.37588801122809 + ], + [ + -75.87529140669686, + 39.3861004876194 + ], + [ + -75.85455997216816, + 39.3923892995301 + ], + [ + -75.833, + 39.394512771445285 + ], + [ + -75.81144002783184, + 39.3923892995301 + ], + [ + -75.79070859330314, + 39.3861004876194 + ], + [ + -75.7716023938165, + 39.37588801122809 + ], + [ + -75.75485566990332, + 39.36214433009668 + ], + [ + -75.7411119887719, + 39.345397606183504 + ], + [ + -75.7308995123806, + 39.32629140669686 + ], + [ + -75.7246107004699, + 39.305559972168155 + ], + [ + -75.72248722855471, + 39.284 + ] + ] + ] + }, + "properties": { + "fill": "#000", + "fill-opacity": 0.3, + "stroke": "#0ff" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -75.48948722855471, + 39.984 + ], + [ + -75.49161070046989, + 39.962440027831846 + ], + [ + -75.4978995123806, + 39.94170859330314 + ], + [ + -75.5081119887719, + 39.9226023938165 + ], + [ + -75.52185566990332, + 39.90585566990332 + ], + [ + -75.53860239381649, + 39.89211198877191 + ], + [ + -75.55770859330313, + 39.8818995123806 + ], + [ + -75.57844002783183, + 39.8756107004699 + ], + [ + -75.6, + 39.873487228554716 + ], + [ + -75.62155997216816, + 39.8756107004699 + ], + [ + -75.64229140669686, + 39.8818995123806 + ], + [ + -75.6613976061835, + 39.89211198877191 + ], + [ + -75.67814433009667, + 39.90585566990332 + ], + [ + -75.69188801122809, + 39.9226023938165 + ], + [ + -75.70210048761939, + 39.94170859330314 + ], + [ + -75.7083892995301, + 39.962440027831846 + ], + [ + -75.71051277144528, + 39.984 + ], + [ + -75.7083892995301, + 40.00555997216816 + ], + [ + -75.70210048761939, + 40.02629140669686 + ], + [ + -75.69188801122809, + 40.045397606183506 + ], + [ + -75.67814433009667, + 40.062144330096686 + ], + [ + -75.6613976061835, + 40.075888011228095 + ], + [ + -75.64229140669686, + 40.086100487619404 + ], + [ + -75.62155997216816, + 40.092389299530105 + ], + [ + -75.6, + 40.09451277144529 + ], + [ + -75.57844002783183, + 40.092389299530105 + ], + [ + -75.55770859330313, + 40.086100487619404 + ], + [ + -75.53860239381649, + 40.075888011228095 + ], + [ + -75.52185566990332, + 40.062144330096686 + ], + [ + -75.5081119887719, + 40.045397606183506 + ], + [ + -75.4978995123806, + 40.02629140669686 + ], + [ + -75.49161070046989, + 40.00555997216816 + ], + [ + -75.48948722855471, + 39.984 + ] + ] + ] + }, + "properties": { + "fill": "#000", + "fill-opacity": 0.3, + "stroke": "#0ff" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -75.11048722855472, + 39.125 + ], + [ + -75.1126107004699, + 39.103440027831844 + ], + [ + -75.11889951238061, + 39.08270859330314 + ], + [ + -75.12911198877191, + 39.063602393816495 + ], + [ + -75.14285566990333, + 39.046855669903316 + ], + [ + -75.1596023938165, + 39.03311198877191 + ], + [ + -75.17870859330314, + 39.0228995123806 + ], + [ + -75.19944002783184, + 39.0166107004699 + ], + [ + -75.221, + 39.014487228554714 + ], + [ + -75.24255997216817, + 39.0166107004699 + ], + [ + -75.26329140669687, + 39.0228995123806 + ], + [ + -75.28239760618351, + 39.03311198877191 + ], + [ + -75.29914433009668, + 39.046855669903316 + ], + [ + -75.3128880112281, + 39.063602393816495 + ], + [ + -75.3231004876194, + 39.08270859330314 + ], + [ + -75.3293892995301, + 39.103440027831844 + ], + [ + -75.33151277144529, + 39.125 + ], + [ + -75.3293892995301, + 39.146559972168156 + ], + [ + -75.3231004876194, + 39.16729140669686 + ], + [ + -75.3128880112281, + 39.186397606183505 + ], + [ + -75.29914433009668, + 39.203144330096684 + ], + [ + -75.28239760618351, + 39.21688801122809 + ], + [ + -75.26329140669687, + 39.2271004876194 + ], + [ + -75.24255997216817, + 39.2333892995301 + ], + [ + -75.221, + 39.235512771445286 + ], + [ + -75.19944002783184, + 39.2333892995301 + ], + [ + -75.17870859330314, + 39.2271004876194 + ], + [ + -75.1596023938165, + 39.21688801122809 + ], + [ + -75.14285566990333, + 39.203144330096684 + ], + [ + -75.12911198877191, + 39.186397606183505 + ], + [ + -75.11889951238061, + 39.16729140669686 + ], + [ + -75.1126107004699, + 39.146559972168156 + ], + [ + -75.11048722855472, + 39.125 + ] + ] + ] + }, + "properties": { + "fill": "#000", + "fill-opacity": 0.3, + "stroke": "#0ff" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -75.24748722855472, + 39.987 + ], + [ + -75.2496107004699, + 39.965440027831846 + ], + [ + -75.25589951238061, + 39.94470859330314 + ], + [ + -75.26611198877191, + 39.9256023938165 + ], + [ + -75.27985566990333, + 39.90885566990332 + ], + [ + -75.2966023938165, + 39.89511198877191 + ], + [ + -75.31570859330314, + 39.8848995123806 + ], + [ + -75.33644002783184, + 39.8786107004699 + ], + [ + -75.358, + 39.876487228554716 + ], + [ + -75.37955997216817, + 39.8786107004699 + ], + [ + -75.40029140669687, + 39.8848995123806 + ], + [ + -75.41939760618351, + 39.89511198877191 + ], + [ + -75.43614433009668, + 39.90885566990332 + ], + [ + -75.4498880112281, + 39.9256023938165 + ], + [ + -75.4601004876194, + 39.94470859330314 + ], + [ + -75.4663892995301, + 39.965440027831846 + ], + [ + -75.46851277144529, + 39.987 + ], + [ + -75.4663892995301, + 40.00855997216816 + ], + [ + -75.4601004876194, + 40.02929140669686 + ], + [ + -75.4498880112281, + 40.04839760618351 + ], + [ + -75.43614433009668, + 40.065144330096686 + ], + [ + -75.41939760618351, + 40.078888011228095 + ], + [ + -75.40029140669687, + 40.089100487619405 + ], + [ + -75.37955997216817, + 40.095389299530105 + ], + [ + -75.358, + 40.09751277144529 + ], + [ + -75.33644002783184, + 40.095389299530105 + ], + [ + -75.31570859330314, + 40.089100487619405 + ], + [ + -75.2966023938165, + 40.078888011228095 + ], + [ + -75.27985566990333, + 40.065144330096686 + ], + [ + -75.26611198877191, + 40.04839760618351 + ], + [ + -75.25589951238061, + 40.02929140669686 + ], + [ + -75.2496107004699, + 40.00855997216816 + ], + [ + -75.24748722855472, + 39.987 + ] + ] + ] + }, + "properties": { + "fill": "#000", + "fill-opacity": 0.3, + "stroke": "#0ff" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -75.81158722855471, + 39.27 + ], + [ + -75.8137107004699, + 39.24844002783185 + ], + [ + -75.8199995123806, + 39.22770859330314 + ], + [ + -75.83021198877191, + 39.2086023938165 + ], + [ + -75.84395566990332, + 39.19185566990332 + ], + [ + -75.8607023938165, + 39.17811198877191 + ], + [ + -75.87980859330314, + 39.1678995123806 + ], + [ + -75.90054002783184, + 39.1616107004699 + ], + [ + -75.9221, + 39.15948722855472 + ], + [ + -75.94365997216816, + 39.1616107004699 + ], + [ + -75.96439140669686, + 39.1678995123806 + ], + [ + -75.9834976061835, + 39.17811198877191 + ], + [ + -76.00024433009668, + 39.19185566990332 + ], + [ + -76.0139880112281, + 39.2086023938165 + ], + [ + -76.0242004876194, + 39.22770859330314 + ], + [ + -76.0304892995301, + 39.24844002783185 + ], + [ + -76.03261277144529, + 39.27 + ], + [ + -76.0304892995301, + 39.29155997216816 + ], + [ + -76.0242004876194, + 39.312291406696865 + ], + [ + -76.0139880112281, + 39.33139760618351 + ], + [ + -76.00024433009668, + 39.34814433009669 + ], + [ + -75.9834976061835, + 39.361888011228096 + ], + [ + -75.96439140669686, + 39.372100487619406 + ], + [ + -75.94365997216816, + 39.378389299530106 + ], + [ + -75.9221, + 39.38051277144529 + ], + [ + -75.90054002783184, + 39.378389299530106 + ], + [ + -75.87980859330314, + 39.372100487619406 + ], + [ + -75.8607023938165, + 39.361888011228096 + ], + [ + -75.84395566990332, + 39.34814433009669 + ], + [ + -75.83021198877191, + 39.33139760618351 + ], + [ + -75.8199995123806, + 39.312291406696865 + ], + [ + -75.8137107004699, + 39.29155997216816 + ], + [ + -75.81158722855471, + 39.27 + ] + ] + ] + }, + "properties": { + "fill": "#000", + "fill-opacity": 0.3, + "stroke": "#0ff" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -75.42348722855472, + 39.123 + ], + [ + -75.4256107004699, + 39.10144002783184 + ], + [ + -75.43189951238061, + 39.080708593303136 + ], + [ + -75.44211198877191, + 39.06160239381649 + ], + [ + -75.45585566990333, + 39.04485566990331 + ], + [ + -75.4726023938165, + 39.031111988771904 + ], + [ + -75.49170859330314, + 39.020899512380595 + ], + [ + -75.51244002783184, + 39.014610700469895 + ], + [ + -75.534, + 39.01248722855471 + ], + [ + -75.55555997216817, + 39.014610700469895 + ], + [ + -75.57629140669687, + 39.020899512380595 + ], + [ + -75.59539760618351, + 39.031111988771904 + ], + [ + -75.61214433009668, + 39.04485566990331 + ], + [ + -75.6258880112281, + 39.06160239381649 + ], + [ + -75.6361004876194, + 39.080708593303136 + ], + [ + -75.64238929953011, + 39.10144002783184 + ], + [ + -75.64451277144529, + 39.123 + ], + [ + -75.64238929953011, + 39.14455997216815 + ], + [ + -75.6361004876194, + 39.16529140669686 + ], + [ + -75.6258880112281, + 39.1843976061835 + ], + [ + -75.61214433009668, + 39.20114433009668 + ], + [ + -75.59539760618351, + 39.21488801122809 + ], + [ + -75.57629140669687, + 39.2251004876194 + ], + [ + -75.55555997216817, + 39.2313892995301 + ], + [ + -75.534, + 39.233512771445284 + ], + [ + -75.51244002783184, + 39.2313892995301 + ], + [ + -75.49170859330314, + 39.2251004876194 + ], + [ + -75.4726023938165, + 39.21488801122809 + ], + [ + -75.45585566990333, + 39.20114433009668 + ], + [ + -75.44211198877191, + 39.1843976061835 + ], + [ + -75.43189951238061, + 39.16529140669686 + ], + [ + -75.4256107004699, + 39.14455997216815 + ], + [ + -75.42348722855472, + 39.123 + ] + ] + ] + }, + "properties": { + "fill": "#000", + "fill-opacity": 0.3, + "stroke": "#0ff" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -75.09948722855471, + 39.12 + ], + [ + -75.10161070046989, + 39.09844002783184 + ], + [ + -75.1078995123806, + 39.077708593303136 + ], + [ + -75.1181119887719, + 39.05860239381649 + ], + [ + -75.13185566990332, + 39.04185566990331 + ], + [ + -75.14860239381649, + 39.028111988771904 + ], + [ + -75.16770859330313, + 39.017899512380595 + ], + [ + -75.18844002783183, + 39.011610700469895 + ], + [ + -75.21, + 39.00948722855471 + ], + [ + -75.23155997216816, + 39.011610700469895 + ], + [ + -75.25229140669686, + 39.017899512380595 + ], + [ + -75.2713976061835, + 39.028111988771904 + ], + [ + -75.28814433009667, + 39.04185566990331 + ], + [ + -75.30188801122809, + 39.05860239381649 + ], + [ + -75.31210048761939, + 39.077708593303136 + ], + [ + -75.3183892995301, + 39.09844002783184 + ], + [ + -75.32051277144528, + 39.12 + ], + [ + -75.3183892995301, + 39.14155997216815 + ], + [ + -75.31210048761939, + 39.16229140669686 + ], + [ + -75.30188801122809, + 39.1813976061835 + ], + [ + -75.28814433009667, + 39.19814433009668 + ], + [ + -75.2713976061835, + 39.21188801122809 + ], + [ + -75.25229140669686, + 39.2221004876194 + ], + [ + -75.23155997216816, + 39.2283892995301 + ], + [ + -75.21, + 39.230512771445284 + ], + [ + -75.18844002783183, + 39.2283892995301 + ], + [ + -75.16770859330313, + 39.2221004876194 + ], + [ + -75.14860239381649, + 39.21188801122809 + ], + [ + -75.13185566990332, + 39.19814433009668 + ], + [ + -75.1181119887719, + 39.1813976061835 + ], + [ + -75.1078995123806, + 39.16229140669686 + ], + [ + -75.10161070046989, + 39.14155997216815 + ], + [ + -75.09948722855471, + 39.12 + ] + ] + ] + }, + "properties": { + "fill": "#000", + "fill-opacity": 0.3, + "stroke": "#0ff" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -75.10948722855471, + 39.33 + ], + [ + -75.1116107004699, + 39.30844002783184 + ], + [ + -75.1178995123806, + 39.28770859330314 + ], + [ + -75.1281119887719, + 39.268602393816494 + ], + [ + -75.14185566990332, + 39.251855669903314 + ], + [ + -75.1586023938165, + 39.238111988771905 + ], + [ + -75.17770859330314, + 39.227899512380596 + ], + [ + -75.19844002783184, + 39.221610700469896 + ], + [ + -75.22, + 39.21948722855471 + ], + [ + -75.24155997216816, + 39.221610700469896 + ], + [ + -75.26229140669686, + 39.227899512380596 + ], + [ + -75.2813976061835, + 39.238111988771905 + ], + [ + -75.29814433009668, + 39.251855669903314 + ], + [ + -75.31188801122809, + 39.268602393816494 + ], + [ + -75.3221004876194, + 39.28770859330314 + ], + [ + -75.3283892995301, + 39.30844002783184 + ], + [ + -75.33051277144529, + 39.33 + ], + [ + -75.3283892995301, + 39.351559972168154 + ], + [ + -75.3221004876194, + 39.37229140669686 + ], + [ + -75.31188801122809, + 39.3913976061835 + ], + [ + -75.29814433009668, + 39.40814433009668 + ], + [ + -75.2813976061835, + 39.42188801122809 + ], + [ + -75.26229140669686, + 39.4321004876194 + ], + [ + -75.24155997216816, + 39.4383892995301 + ], + [ + -75.22, + 39.440512771445285 + ], + [ + -75.19844002783184, + 39.4383892995301 + ], + [ + -75.17770859330314, + 39.4321004876194 + ], + [ + -75.1586023938165, + 39.42188801122809 + ], + [ + -75.14185566990332, + 39.40814433009668 + ], + [ + -75.1281119887719, + 39.3913976061835 + ], + [ + -75.1178995123806, + 39.37229140669686 + ], + [ + -75.1116107004699, + 39.351559972168154 + ], + [ + -75.10948722855471, + 39.33 + ] + ] + ] + }, + "properties": { + "fill": "#000", + "fill-opacity": 0.3, + "stroke": "#0ff" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -75.32948722855471, + 39.55 + ], + [ + -75.3316107004699, + 39.52844002783184 + ], + [ + -75.3378995123806, + 39.507708593303136 + ], + [ + -75.3481119887719, + 39.48860239381649 + ], + [ + -75.36185566990332, + 39.47185566990331 + ], + [ + -75.3786023938165, + 39.458111988771904 + ], + [ + -75.39770859330314, + 39.447899512380594 + ], + [ + -75.41844002783183, + 39.441610700469894 + ], + [ + -75.44, + 39.43948722855471 + ], + [ + -75.46155997216816, + 39.441610700469894 + ], + [ + -75.48229140669686, + 39.447899512380594 + ], + [ + -75.5013976061835, + 39.458111988771904 + ], + [ + -75.51814433009667, + 39.47185566990331 + ], + [ + -75.53188801122809, + 39.48860239381649 + ], + [ + -75.5421004876194, + 39.507708593303136 + ], + [ + -75.5483892995301, + 39.52844002783184 + ], + [ + -75.55051277144528, + 39.55 + ], + [ + -75.5483892995301, + 39.57155997216815 + ], + [ + -75.5421004876194, + 39.59229140669686 + ], + [ + -75.53188801122809, + 39.6113976061835 + ], + [ + -75.51814433009667, + 39.62814433009668 + ], + [ + -75.5013976061835, + 39.64188801122809 + ], + [ + -75.48229140669686, + 39.6521004876194 + ], + [ + -75.46155997216816, + 39.6583892995301 + ], + [ + -75.44, + 39.66051277144528 + ], + [ + -75.41844002783183, + 39.6583892995301 + ], + [ + -75.39770859330314, + 39.6521004876194 + ], + [ + -75.3786023938165, + 39.64188801122809 + ], + [ + -75.36185566990332, + 39.62814433009668 + ], + [ + -75.3481119887719, + 39.6113976061835 + ], + [ + -75.3378995123806, + 39.59229140669686 + ], + [ + -75.3316107004699, + 39.57155997216815 + ], + [ + -75.32948722855471, + 39.55 + ] + ] + ] + }, + "properties": { + "fill": "#000", + "fill-opacity": 0.3, + "stroke": "#0ff" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -75.65948722855471, + 39.66 + ], + [ + -75.6616107004699, + 39.63844002783184 + ], + [ + -75.6678995123806, + 39.617708593303135 + ], + [ + -75.6781119887719, + 39.59860239381649 + ], + [ + -75.69185566990332, + 39.58185566990331 + ], + [ + -75.70860239381649, + 39.5681119887719 + ], + [ + -75.72770859330313, + 39.557899512380594 + ], + [ + -75.74844002783183, + 39.551610700469894 + ], + [ + -75.77, + 39.54948722855471 + ], + [ + -75.79155997216816, + 39.551610700469894 + ], + [ + -75.81229140669686, + 39.557899512380594 + ], + [ + -75.8313976061835, + 39.5681119887719 + ], + [ + -75.84814433009667, + 39.58185566990331 + ], + [ + -75.86188801122809, + 39.59860239381649 + ], + [ + -75.87210048761939, + 39.617708593303135 + ], + [ + -75.8783892995301, + 39.63844002783184 + ], + [ + -75.88051277144528, + 39.66 + ], + [ + -75.8783892995301, + 39.68155997216815 + ], + [ + -75.87210048761939, + 39.70229140669686 + ], + [ + -75.86188801122809, + 39.7213976061835 + ], + [ + -75.84814433009667, + 39.73814433009668 + ], + [ + -75.8313976061835, + 39.75188801122809 + ], + [ + -75.81229140669686, + 39.7621004876194 + ], + [ + -75.79155997216816, + 39.7683892995301 + ], + [ + -75.77, + 39.77051277144528 + ], + [ + -75.74844002783183, + 39.7683892995301 + ], + [ + -75.72770859330313, + 39.7621004876194 + ], + [ + -75.70860239381649, + 39.75188801122809 + ], + [ + -75.69185566990332, + 39.73814433009668 + ], + [ + -75.6781119887719, + 39.7213976061835 + ], + [ + -75.6678995123806, + 39.70229140669686 + ], + [ + -75.6616107004699, + 39.68155997216815 + ], + [ + -75.65948722855471, + 39.66 + ] + ] + ] + }, + "properties": { + "fill": "#000", + "fill-opacity": 0.3, + "stroke": "#0ff" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -75.32948722855471, + 39.11 + ], + [ + -75.3316107004699, + 39.088440027831844 + ], + [ + -75.3378995123806, + 39.06770859330314 + ], + [ + -75.3481119887719, + 39.048602393816495 + ], + [ + -75.36185566990332, + 39.031855669903315 + ], + [ + -75.3786023938165, + 39.018111988771906 + ], + [ + -75.39770859330314, + 39.0078995123806 + ], + [ + -75.41844002783183, + 39.0016107004699 + ], + [ + -75.44, + 38.99948722855471 + ], + [ + -75.46155997216816, + 39.0016107004699 + ], + [ + -75.48229140669686, + 39.0078995123806 + ], + [ + -75.5013976061835, + 39.018111988771906 + ], + [ + -75.51814433009667, + 39.031855669903315 + ], + [ + -75.53188801122809, + 39.048602393816495 + ], + [ + -75.5421004876194, + 39.06770859330314 + ], + [ + -75.5483892995301, + 39.088440027831844 + ], + [ + -75.55051277144528, + 39.11 + ], + [ + -75.5483892995301, + 39.131559972168155 + ], + [ + -75.5421004876194, + 39.15229140669686 + ], + [ + -75.53188801122809, + 39.171397606183504 + ], + [ + -75.51814433009667, + 39.188144330096684 + ], + [ + -75.5013976061835, + 39.20188801122809 + ], + [ + -75.48229140669686, + 39.2121004876194 + ], + [ + -75.46155997216816, + 39.2183892995301 + ], + [ + -75.44, + 39.220512771445286 + ], + [ + -75.41844002783183, + 39.2183892995301 + ], + [ + -75.39770859330314, + 39.2121004876194 + ], + [ + -75.3786023938165, + 39.20188801122809 + ], + [ + -75.36185566990332, + 39.188144330096684 + ], + [ + -75.3481119887719, + 39.171397606183504 + ], + [ + -75.3378995123806, + 39.15229140669686 + ], + [ + -75.3316107004699, + 39.131559972168155 + ], + [ + -75.32948722855471, + 39.11 + ] + ] + ] + }, + "properties": { + "fill": "#000", + "fill-opacity": 0.3, + "stroke": "#0ff" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -74.93948722855471, + 39.92 + ], + [ + -74.9416107004699, + 39.898440027831846 + ], + [ + -74.9478995123806, + 39.87770859330314 + ], + [ + -74.9581119887719, + 39.8586023938165 + ], + [ + -74.97185566990332, + 39.84185566990332 + ], + [ + -74.98860239381649, + 39.82811198877191 + ], + [ + -75.00770859330314, + 39.8178995123806 + ], + [ + -75.02844002783183, + 39.8116107004699 + ], + [ + -75.05, + 39.809487228554715 + ], + [ + -75.07155997216816, + 39.8116107004699 + ], + [ + -75.09229140669686, + 39.8178995123806 + ], + [ + -75.1113976061835, + 39.82811198877191 + ], + [ + -75.12814433009667, + 39.84185566990332 + ], + [ + -75.14188801122809, + 39.8586023938165 + ], + [ + -75.15210048761939, + 39.87770859330314 + ], + [ + -75.1583892995301, + 39.898440027831846 + ], + [ + -75.16051277144528, + 39.92 + ], + [ + -75.1583892995301, + 39.94155997216816 + ], + [ + -75.15210048761939, + 39.96229140669686 + ], + [ + -75.14188801122809, + 39.981397606183506 + ], + [ + -75.12814433009667, + 39.998144330096686 + ], + [ + -75.1113976061835, + 40.011888011228095 + ], + [ + -75.09229140669686, + 40.022100487619404 + ], + [ + -75.07155997216816, + 40.028389299530104 + ], + [ + -75.05, + 40.03051277144529 + ], + [ + -75.02844002783183, + 40.028389299530104 + ], + [ + -75.00770859330314, + 40.022100487619404 + ], + [ + -74.98860239381649, + 40.011888011228095 + ], + [ + -74.97185566990332, + 39.998144330096686 + ], + [ + -74.9581119887719, + 39.981397606183506 + ], + [ + -74.9478995123806, + 39.96229140669686 + ], + [ + -74.9416107004699, + 39.94155997216816 + ], + [ + -74.93948722855471, + 39.92 + ] + ] + ] + }, + "properties": { + "fill": "#000", + "fill-opacity": 0.3, + "stroke": "#0ff" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -75.76948722855471, + 39.98 + ], + [ + -75.77161070046989, + 39.95844002783184 + ], + [ + -75.7778995123806, + 39.937708593303135 + ], + [ + -75.7881119887719, + 39.91860239381649 + ], + [ + -75.80185566990332, + 39.90185566990331 + ], + [ + -75.81860239381649, + 39.888111988771904 + ], + [ + -75.83770859330313, + 39.877899512380594 + ], + [ + -75.85844002783183, + 39.871610700469894 + ], + [ + -75.88, + 39.86948722855471 + ], + [ + -75.90155997216816, + 39.871610700469894 + ], + [ + -75.92229140669686, + 39.877899512380594 + ], + [ + -75.9413976061835, + 39.888111988771904 + ], + [ + -75.95814433009667, + 39.90185566990331 + ], + [ + -75.97188801122809, + 39.91860239381649 + ], + [ + -75.98210048761939, + 39.937708593303135 + ], + [ + -75.9883892995301, + 39.95844002783184 + ], + [ + -75.99051277144528, + 39.98 + ], + [ + -75.9883892995301, + 40.00155997216815 + ], + [ + -75.98210048761939, + 40.02229140669686 + ], + [ + -75.97188801122809, + 40.0413976061835 + ], + [ + -75.95814433009667, + 40.05814433009668 + ], + [ + -75.9413976061835, + 40.07188801122809 + ], + [ + -75.92229140669686, + 40.0821004876194 + ], + [ + -75.90155997216816, + 40.0883892995301 + ], + [ + -75.88, + 40.09051277144528 + ], + [ + -75.85844002783183, + 40.0883892995301 + ], + [ + -75.83770859330313, + 40.0821004876194 + ], + [ + -75.81860239381649, + 40.07188801122809 + ], + [ + -75.80185566990332, + 40.05814433009668 + ], + [ + -75.7881119887719, + 40.0413976061835 + ], + [ + -75.7778995123806, + 40.02229140669686 + ], + [ + -75.77161070046989, + 40.00155997216815 + ], + [ + -75.76948722855471, + 39.98 + ] + ] + ] + }, + "properties": { + "fill": "#000", + "fill-opacity": 0.3, + "stroke": "#0ff" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -75.43948722855471, + 39.55 + ], + [ + -75.4416107004699, + 39.52844002783184 + ], + [ + -75.4478995123806, + 39.507708593303136 + ], + [ + -75.4581119887719, + 39.48860239381649 + ], + [ + -75.47185566990332, + 39.47185566990331 + ], + [ + -75.48860239381649, + 39.458111988771904 + ], + [ + -75.50770859330314, + 39.447899512380594 + ], + [ + -75.52844002783183, + 39.441610700469894 + ], + [ + -75.55, + 39.43948722855471 + ], + [ + -75.57155997216816, + 39.441610700469894 + ], + [ + -75.59229140669686, + 39.447899512380594 + ], + [ + -75.6113976061835, + 39.458111988771904 + ], + [ + -75.62814433009667, + 39.47185566990331 + ], + [ + -75.64188801122809, + 39.48860239381649 + ], + [ + -75.65210048761939, + 39.507708593303136 + ], + [ + -75.6583892995301, + 39.52844002783184 + ], + [ + -75.66051277144528, + 39.55 + ], + [ + -75.6583892995301, + 39.57155997216815 + ], + [ + -75.65210048761939, + 39.59229140669686 + ], + [ + -75.64188801122809, + 39.6113976061835 + ], + [ + -75.62814433009667, + 39.62814433009668 + ], + [ + -75.6113976061835, + 39.64188801122809 + ], + [ + -75.59229140669686, + 39.6521004876194 + ], + [ + -75.57155997216816, + 39.6583892995301 + ], + [ + -75.55, + 39.66051277144528 + ], + [ + -75.52844002783183, + 39.6583892995301 + ], + [ + -75.50770859330314, + 39.6521004876194 + ], + [ + -75.48860239381649, + 39.64188801122809 + ], + [ + -75.47185566990332, + 39.62814433009668 + ], + [ + -75.4581119887719, + 39.6113976061835 + ], + [ + -75.4478995123806, + 39.59229140669686 + ], + [ + -75.4416107004699, + 39.57155997216815 + ], + [ + -75.43948722855471, + 39.55 + ] + ] + ] + }, + "properties": { + "fill": "#000", + "fill-opacity": 0.3, + "stroke": "#0ff" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -75.21948722855471, + 39.44 + ], + [ + -75.2216107004699, + 39.41844002783184 + ], + [ + -75.2278995123806, + 39.397708593303136 + ], + [ + -75.2381119887719, + 39.37860239381649 + ], + [ + -75.25185566990332, + 39.36185566990331 + ], + [ + -75.2686023938165, + 39.348111988771905 + ], + [ + -75.28770859330314, + 39.337899512380595 + ], + [ + -75.30844002783184, + 39.331610700469895 + ], + [ + -75.33, + 39.32948722855471 + ], + [ + -75.35155997216816, + 39.331610700469895 + ], + [ + -75.37229140669686, + 39.337899512380595 + ], + [ + -75.3913976061835, + 39.348111988771905 + ], + [ + -75.40814433009668, + 39.36185566990331 + ], + [ + -75.42188801122809, + 39.37860239381649 + ], + [ + -75.4321004876194, + 39.397708593303136 + ], + [ + -75.4383892995301, + 39.41844002783184 + ], + [ + -75.44051277144528, + 39.44 + ], + [ + -75.4383892995301, + 39.46155997216815 + ], + [ + -75.4321004876194, + 39.48229140669686 + ], + [ + -75.42188801122809, + 39.5013976061835 + ], + [ + -75.40814433009668, + 39.51814433009668 + ], + [ + -75.3913976061835, + 39.53188801122809 + ], + [ + -75.37229140669686, + 39.5421004876194 + ], + [ + -75.35155997216816, + 39.5483892995301 + ], + [ + -75.33, + 39.550512771445284 + ], + [ + -75.30844002783184, + 39.5483892995301 + ], + [ + -75.28770859330314, + 39.5421004876194 + ], + [ + -75.2686023938165, + 39.53188801122809 + ], + [ + -75.25185566990332, + 39.51814433009668 + ], + [ + -75.2381119887719, + 39.5013976061835 + ], + [ + -75.2278995123806, + 39.48229140669686 + ], + [ + -75.2216107004699, + 39.46155997216815 + ], + [ + -75.21948722855471, + 39.44 + ] + ] + ] + }, + "properties": { + "fill": "#000", + "fill-opacity": 0.3, + "stroke": "#0ff" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -75.44948722855472, + 39.24 + ], + [ + -75.4516107004699, + 39.218440027831846 + ], + [ + -75.4578995123806, + 39.19770859330314 + ], + [ + -75.46811198877191, + 39.1786023938165 + ], + [ + -75.48185566990333, + 39.16185566990332 + ], + [ + -75.4986023938165, + 39.14811198877191 + ], + [ + -75.51770859330314, + 39.1378995123806 + ], + [ + -75.53844002783184, + 39.1316107004699 + ], + [ + -75.56, + 39.129487228554716 + ], + [ + -75.58155997216817, + 39.1316107004699 + ], + [ + -75.60229140669686, + 39.1378995123806 + ], + [ + -75.6213976061835, + 39.14811198877191 + ], + [ + -75.63814433009668, + 39.16185566990332 + ], + [ + -75.6518880112281, + 39.1786023938165 + ], + [ + -75.6621004876194, + 39.19770859330314 + ], + [ + -75.6683892995301, + 39.218440027831846 + ], + [ + -75.67051277144529, + 39.24 + ], + [ + -75.6683892995301, + 39.26155997216816 + ], + [ + -75.6621004876194, + 39.282291406696864 + ], + [ + -75.6518880112281, + 39.30139760618351 + ], + [ + -75.63814433009668, + 39.318144330096686 + ], + [ + -75.6213976061835, + 39.331888011228095 + ], + [ + -75.60229140669686, + 39.342100487619405 + ], + [ + -75.58155997216817, + 39.348389299530105 + ], + [ + -75.56, + 39.35051277144529 + ], + [ + -75.53844002783184, + 39.348389299530105 + ], + [ + -75.51770859330314, + 39.342100487619405 + ], + [ + -75.4986023938165, + 39.331888011228095 + ], + [ + -75.48185566990333, + 39.318144330096686 + ], + [ + -75.46811198877191, + 39.30139760618351 + ], + [ + -75.4578995123806, + 39.282291406696864 + ], + [ + -75.4516107004699, + 39.26155997216816 + ], + [ + -75.44948722855472, + 39.24 + ] + ] + ] + }, + "properties": { + "fill": "#000", + "fill-opacity": 0.3, + "stroke": "#0ff" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -75.44948722855472, + 39.36 + ], + [ + -75.4516107004699, + 39.338440027831844 + ], + [ + -75.4578995123806, + 39.31770859330314 + ], + [ + -75.46811198877191, + 39.298602393816495 + ], + [ + -75.48185566990333, + 39.281855669903315 + ], + [ + -75.4986023938165, + 39.268111988771906 + ], + [ + -75.51770859330314, + 39.2578995123806 + ], + [ + -75.53844002783184, + 39.2516107004699 + ], + [ + -75.56, + 39.24948722855471 + ], + [ + -75.58155997216817, + 39.2516107004699 + ], + [ + -75.60229140669686, + 39.2578995123806 + ], + [ + -75.6213976061835, + 39.268111988771906 + ], + [ + -75.63814433009668, + 39.281855669903315 + ], + [ + -75.6518880112281, + 39.298602393816495 + ], + [ + -75.6621004876194, + 39.31770859330314 + ], + [ + -75.6683892995301, + 39.338440027831844 + ], + [ + -75.67051277144529, + 39.36 + ], + [ + -75.6683892995301, + 39.381559972168155 + ], + [ + -75.6621004876194, + 39.40229140669686 + ], + [ + -75.6518880112281, + 39.421397606183504 + ], + [ + -75.63814433009668, + 39.438144330096684 + ], + [ + -75.6213976061835, + 39.45188801122809 + ], + [ + -75.60229140669686, + 39.4621004876194 + ], + [ + -75.58155997216817, + 39.4683892995301 + ], + [ + -75.56, + 39.470512771445286 + ], + [ + -75.53844002783184, + 39.4683892995301 + ], + [ + -75.51770859330314, + 39.4621004876194 + ], + [ + -75.4986023938165, + 39.45188801122809 + ], + [ + -75.48185566990333, + 39.438144330096684 + ], + [ + -75.46811198877191, + 39.421397606183504 + ], + [ + -75.4578995123806, + 39.40229140669686 + ], + [ + -75.4516107004699, + 39.381559972168155 + ], + [ + -75.44948722855472, + 39.36 + ] + ] + ] + }, + "properties": { + "fill": "#000", + "fill-opacity": 0.3, + "stroke": "#0ff" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -75.833, + 39.284 + ] + }, + "properties": { + "name": "Location B", + "category": "House", + "elevation": 25 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -75.6, + 39.984 + ] + }, + "properties": { + "name": "Location A", + "category": "Store", + "elevation": 23 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -75.221, + 39.125 + ] + }, + "properties": { + "name": "Location C", + "category": "Office", + "elevation": 29 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -75.358, + 39.987 + ] + }, + "properties": { + "name": "Location A", + "category": "Store", + "elevation": 12 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -75.9221, + 39.27 + ] + }, + "properties": { + "name": "Location B", + "category": "House", + "elevation": 11 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -75.534, + 39.123 + ] + }, + "properties": { + "name": "Location C", + "category": "Office", + "elevation": 49 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -75.21, + 39.12 + ] + }, + "properties": { + "name": "Location A", + "category": "Store", + "elevation": 50 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -75.22, + 39.33 + ] + }, + "properties": { + "name": "Location B", + "category": "House", + "elevation": 90 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -75.44, + 39.55 + ] + }, + "properties": { + "name": "Location C", + "category": "Office", + "elevation": 22 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -75.77, + 39.66 + ] + }, + "properties": { + "name": "Location A", + "category": "Store", + "elevation": 99 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -75.44, + 39.11 + ] + }, + "properties": { + "name": "Location B", + "category": "House", + "elevation": 55 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -75.05, + 39.92 + ] + }, + "properties": { + "name": "Location C", + "category": "Office", + "elevation": 41 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -75.88, + 39.98 + ] + }, + "properties": { + "name": "Location A", + "category": "Store", + "elevation": 52 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -75.55, + 39.55 + ] + }, + "properties": { + "name": "Location B", + "category": "House", + "elevation": 143 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -75.33, + 39.44 + ] + }, + "properties": { + "name": "Location C", + "category": "Office", + "elevation": 76 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -75.56, + 39.24 + ] + }, + "properties": { + "name": "Location C", + "category": "Office", + "elevation": 18 + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -75.56, + 39.36 + ] + }, + "properties": { + "name": "Location C", + "category": "Office", + "elevation": 52 + } + } + ] +} \ No newline at end of file diff --git a/packages/turf-buffer/test/fixtures/out/GeometryCollection.geojson b/packages/turf-buffer/test/fixtures/out/GeometryCollection.geojson new file mode 100644 index 0000000000..2c6d1a5e1e --- /dev/null +++ b/packages/turf-buffer/test/fixtures/out/GeometryCollection.geojson @@ -0,0 +1,733 @@ +{ + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 69.2578125, + 33.99826692298249 + ], + [ + 68.89588626122296, + 34.03391354615142 + ], + [ + 68.54786864483154, + 34.13948353592068 + ], + [ + 68.22713377265315, + 34.31091989678779 + ], + [ + 67.9460073059554, + 34.54163442554722 + ], + [ + 67.71529277719597, + 34.822760892244965 + ], + [ + 67.54385641632886, + 35.143495764423356 + ], + [ + 67.4382864265596, + 35.49151338081477 + ], + [ + 67.40263980339067, + 35.85343961959182 + ], + [ + 67.40263980339067, + 38.496593518947556 + ], + [ + 67.4382864265596, + 38.8585197577246 + ], + [ + 67.54385641632886, + 39.20653737411602 + ], + [ + 67.71529277719597, + 39.52727224629441 + ], + [ + 67.9460073059554, + 39.80839871299215 + ], + [ + 68.22713377265315, + 40.039113241751586 + ], + [ + 68.54786864483154, + 40.21054960261869 + ], + [ + 68.89588626122296, + 40.316119592387956 + ], + [ + 69.2578125, + 40.351766215556886 + ], + [ + 72.421875, + 40.351766215556886 + ], + [ + 72.78380123877704, + 40.316119592387956 + ], + [ + 73.13181885516846, + 40.21054960261869 + ], + [ + 73.45255372734685, + 40.039113241751586 + ], + [ + 73.7336801940446, + 39.80839871299215 + ], + [ + 73.96439472280403, + 39.52727224629441 + ], + [ + 74.13583108367114, + 39.20653737411602 + ], + [ + 74.2414010734404, + 38.8585197577246 + ], + [ + 74.27704769660933, + 38.496593518947556 + ], + [ + 74.27704769660933, + 35.85343961959182 + ], + [ + 74.2414010734404, + 35.49151338081477 + ], + [ + 74.13583108367114, + 35.143495764423356 + ], + [ + 73.96439472280403, + 34.822760892244965 + ], + [ + 73.7336801940446, + 34.54163442554722 + ], + [ + 73.45255372734685, + 34.31091989678779 + ], + [ + 73.13181885516846, + 34.13948353592068 + ], + [ + 72.78380123877704, + 34.03391354615142 + ], + [ + 72.421875, + 33.99826692298249 + ], + [ + 69.2578125, + 33.99826692298249 + ] + ] + ], + [ + [ + [ + 64.19159847785934, + 29.248063243796576 + ], + [ + 64.15595185469041, + 28.88613700501953 + ], + [ + 64.05038186492114, + 28.538119388628118 + ], + [ + 63.87894550405404, + 28.217384516449727 + ], + [ + 63.6482309752946, + 27.936258049751984 + ], + [ + 63.36710450859686, + 27.705543520992546 + ], + [ + 63.04636963641847, + 27.534107160125444 + ], + [ + 62.69835202002705, + 27.428537170356176 + ], + [ + 62.33642578125001, + 27.392890547187243 + ], + [ + 61.97449954247296, + 27.428537170356176 + ], + [ + 61.626481926081546, + 27.534107160125444 + ], + [ + 61.305747053903154, + 27.705543520992546 + ], + [ + 61.02462058720541, + 27.936258049751984 + ], + [ + 60.79390605844598, + 28.217384516449727 + ], + [ + 60.62246969757887, + 28.538119388628118 + ], + [ + 60.51689970780961, + 28.886137005019535 + ], + [ + 60.48125308464068, + 29.248063243796576 + ], + [ + 60.51689970780961, + 29.60998948257362 + ], + [ + 60.62246969757887, + 29.958007098965037 + ], + [ + 60.79390605844598, + 30.27874197114343 + ], + [ + 61.02462058720542, + 30.55986843784117 + ], + [ + 61.30574705390316, + 30.790582966600606 + ], + [ + 61.62648192608155, + 30.96201932746771 + ], + [ + 61.97449954247297, + 31.06758931723698 + ], + [ + 62.336425781250014, + 31.10323594040591 + ], + [ + 62.69835202002706, + 31.067589317236976 + ], + [ + 63.04636963641847, + 30.962019327467708 + ], + [ + 63.36710450859686, + 30.790582966600603 + ], + [ + 63.6482309752946, + 30.559868437841164 + ], + [ + 63.87894550405404, + 30.278741971143422 + ], + [ + 64.05038186492115, + 29.958007098965027 + ], + [ + 64.15595185469041, + 29.609989482573614 + ], + [ + 64.19159847785934, + 29.248063243796576 + ] + ] + ], + [ + [ + [ + 60.61005550910932, + 32.45415593941475 + ], + [ + 60.57440888594039, + 32.0922297006377 + ], + [ + 60.46883889617113, + 31.74421208424629 + ], + [ + 60.29740253530402, + 31.423477212067898 + ], + [ + 60.06668800654459, + 31.142350745370155 + ], + [ + 59.785561539846846, + 30.911636216610717 + ], + [ + 59.464826667668454, + 30.740199855743615 + ], + [ + 59.11680905127704, + 30.634629865974347 + ], + [ + 58.75488281249999, + 30.598983242805414 + ], + [ + 58.39295657372295, + 30.634629865974347 + ], + [ + 58.04493895733153, + 30.740199855743615 + ], + [ + 57.72420408515314, + 30.911636216610717 + ], + [ + 57.4430776184554, + 31.142350745370155 + ], + [ + 57.21236308969596, + 31.423477212067898 + ], + [ + 57.04092672882886, + 31.74421208424629 + ], + [ + 56.93535673905959, + 32.0922297006377 + ], + [ + 56.89971011589066, + 32.45415593941475 + ], + [ + 56.93535673905959, + 32.81608217819179 + ], + [ + 57.04092672882886, + 33.16409979458321 + ], + [ + 57.21236308969596, + 33.4848346667616 + ], + [ + 57.443077618455405, + 33.76596113345934 + ], + [ + 57.72420408515315, + 33.99667566221878 + ], + [ + 58.04493895733154, + 34.16811202308588 + ], + [ + 58.392956573722955, + 34.27368201285515 + ], + [ + 58.7548828125, + 34.30932863602408 + ], + [ + 59.116809051277045, + 34.27368201285515 + ], + [ + 59.464826667668454, + 34.168112023085875 + ], + [ + 59.785561539846846, + 33.99667566221877 + ], + [ + 60.06668800654459, + 33.765961133459335 + ], + [ + 60.29740253530402, + 33.48483466676159 + ], + [ + 60.46883889617113, + 33.1640997945832 + ], + [ + 60.57440888594039, + 32.816082178191785 + ], + [ + 60.61005550910932, + 32.45415593941475 + ] + ] + ], + [ + [ + [ + 54.15186607946649, + 41.88227188961051 + ], + [ + 54.32330376808138, + 42.19300839674751 + ], + [ + 54.550775430552385, + 42.465413794487716 + ], + [ + 54.825956721536855, + 42.68951938352432 + ], + [ + 55.13877735767242, + 42.85712400026582 + ], + [ + 55.47778964047561, + 42.96209413913343 + ], + [ + 55.83058738586709, + 43.00058840873313 + ], + [ + 56.18425992956082, + 42.97119810790901 + ], + [ + 56.37685639740538, + 42.916960993435495 + ], + [ + 56.3811739119003, + 42.92189486913371 + ], + [ + 56.65594449669674, + 43.13674878491552 + ], + [ + 56.966075356620095, + 43.296373122406244 + ], + [ + 57.30060352835964, + 43.39512524495939 + ], + [ + 57.64770361642233, + 43.42951431681397 + ], + [ + 57.99510581466402, + 43.398324702308564 + ], + [ + 58.330529637504085, + 43.30265893796462 + ], + [ + 58.642118028652646, + 43.14589875839848 + ], + [ + 58.91885650183426, + 42.93358555377555 + ], + [ + 59.15096249710342, + 42.673224484573055 + ], + [ + 59.61238827835342, + 42.045576843663945 + ], + [ + 59.7980453682054, + 41.7328585534308 + ], + [ + 59.919126797192796, + 41.389929156013466 + ], + [ + 59.97097947390289, + 41.029967235837674 + ], + [ + 59.95161072904901, + 40.666805927626804 + ], + [ + 59.86176489263378, + 40.31440131679219 + ], + [ + 59.704894689764515, + 39.986296114897435 + ], + [ + 59.487028554363654, + 39.69509922084782 + ], + [ + 59.21653895983392, + 39.45200116797659 + ], + [ + 58.903820669600776, + 39.26634407812461 + ], + [ + 58.56089127218344, + 39.145262649137216 + ], + [ + 58.20092935200765, + 39.093409972427125 + ], + [ + 58.156199227066246, + 39.09579559654975 + ], + [ + 58.106335901646425, + 39.02664362323956 + ], + [ + 57.87553121332966, + 38.76310813344301 + ], + [ + 57.59929977736042, + 38.54765987442549 + ], + [ + 57.28749136132262, + 38.38798122770245 + ], + [ + 56.95122432478274, + 38.28976596072224 + ], + [ + 56.60248916456611, + 38.25651620042256 + ], + [ + 56.25640857123886, + 38.289164017553084 + ], + [ + 55.98818715600418, + 38.15115386074385 + ], + [ + 55.63855870664097, + 38.051047759758326 + ], + [ + 55.27611853841829, + 38.02107429620544 + ], + [ + 54.91479502374214, + 38.06238533348021 + ], + [ + 54.56847362264896, + 38.17339331158765 + ], + [ + 54.25046327236349, + 38.34983225618311 + ], + [ + 53.97298493230494, + 38.58492171757387 + ], + [ + 53.74670193947011, + 38.869627339598374 + ], + [ + 53.58031022237268, + 39.19300804486697 + ], + [ + 53.48020412138716, + 39.54263649423018 + ], + [ + 53.450230657834275, + 39.90507666245286 + ], + [ + 53.49154169510904, + 40.26640017712902 + ], + [ + 53.60254967321649, + 40.61272157822219 + ], + [ + 54.15186607946649, + 41.88227188961051 + ] + ] + ] + ] + }, + "properties": { + "fill": "#000", + "fill-opacity": 0.3, + "stroke": "#0ff" + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "GeometryCollection", + "geometries": [ + { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.2578125, + 35.85343961959182 + ], + [ + 69.2578125, + 38.496593518947556 + ], + [ + 72.421875, + 38.496593518947556 + ], + [ + 72.421875, + 35.85343961959182 + ], + [ + 69.2578125, + 35.85343961959182 + ] + ] + ] + }, + { + "type": "LineString", + "coordinates": [ + [ + 55.30517578124999, + 39.87601941962116 + ], + [ + 55.85449218749999, + 41.14556973100947 + ], + [ + 56.6015625, + 40.111688665595956 + ], + [ + 57.65624999999999, + 41.57436130598913 + ], + [ + 58.11767578124999, + 40.94671366508002 + ] + ] + }, + { + "type": "Point", + "coordinates": [ + 62.33642578125001, + 29.248063243796576 + ] + }, + { + "type": "Point", + "coordinates": [ + 58.75488281249999, + 32.45415593941475 + ] + } + ] + } + } + ] +} \ No newline at end of file diff --git a/packages/turf-buffer/test/fixtures/out/LineString.geojson b/packages/turf-buffer/test/fixtures/out/LineString.geojson new file mode 100644 index 0000000000..eb6786823e --- /dev/null +++ b/packages/turf-buffer/test/fixtures/out/LineString.geojson @@ -0,0 +1,373 @@ +{ + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.2448975333952, + 44.66839110644526 + ], + [ + -92.22067508943952, + 44.65833948396703 + ], + [ + -92.1985484151199, + 44.644262119540954 + ], + [ + -92.17918021654228, + 44.62658063799984 + ], + [ + -92.16315058194192, + 44.605824609472926 + ], + [ + -92.1474574466441, + 44.58139355326879 + ], + [ + -92.08740234375, + 44.58139355326879 + ], + [ + -92.05628588407329, + 44.578164421256545 + ], + [ + -92.02649556425997, + 44.568614646296574 + ], + [ + -91.99930100595273, + 44.5531512264019 + ], + [ + -91.89493088876523, + 44.47857217260761 + ], + [ + -91.8898077877786, + 44.474745573486075 + ], + [ + -91.82938298309108, + 44.427594046769244 + ], + [ + -91.80344734315821, + 44.40174357536054 + ], + [ + -91.75545908442402, + 44.34066181266506 + ], + [ + -91.7131378975031, + 44.29009930804506 + ], + [ + -91.51924113137596, + 44.20182197171982 + ], + [ + -91.49817644033304, + 44.190127119178236 + ], + [ + -91.21253190908304, + 44.00035869263518 + ], + [ + -91.18830386241036, + 43.98035184682601 + ], + [ + -91.16872268442147, + 43.955778495541075 + ], + [ + -91.15463024001399, + 43.927695135068596 + ], + [ + -91.14663241379176, + 43.89730916954955 + ], + [ + -91.06972811691676, + 43.40027600507555 + ], + [ + -91.06808516837, + 43.370615165459306 + ], + [ + -91.07226033137087, + 43.341203727198256 + ], + [ + -91.08209315674672, + 43.313171955370635 + ], + [ + -91.09720577453265, + 43.287597095247385 + ], + [ + -91.11701741530243, + 43.26546197436049 + ], + [ + -91.14076672881174, + 43.24761723299213 + ], + [ + -91.16754104226122, + 43.234748634545625 + ], + [ + -91.19631143380018, + 43.2273507120425 + ], + [ + -91.22597227341642, + 43.225707763495734 + ], + [ + -91.25538371167748, + 43.2298829264966 + ], + [ + -91.2834154835051, + 43.23971575187245 + ], + [ + -91.30899034362835, + 43.25482836965839 + ], + [ + -91.33112546451524, + 43.27464001042816 + ], + [ + -91.3489702058836, + 43.29838932393748 + ], + [ + -91.3618388043301, + 43.32516363738694 + ], + [ + -91.36923672683324, + 43.35393402892591 + ], + [ + -91.43591985029913, + 43.784907657449345 + ], + [ + -91.65582004318112, + 43.93099872181216 + ], + [ + -91.87004109518654, + 44.02852930075656 + ], + [ + -91.89902681446583, + 44.04586090884024 + ], + [ + -91.92345413936208, + 44.06918176558517 + ], + [ + -91.98937210811208, + 44.147936116347864 + ], + [ + -91.99232902402927, + 44.151582124746874 + ], + [ + -92.03037288115783, + 44.20000617501339 + ], + [ + -92.07373549207114, + 44.23384349261109 + ], + [ + -92.13597978288163, + 44.2783209775257 + ], + [ + -92.230224609375, + 44.2783209775257 + ], + [ + -92.26032494183768, + 44.281340544023784 + ], + [ + -92.2892256942293, + 44.29027890558491 + ], + [ + -92.31577509300553, + 44.30477984420354 + ], + [ + -92.33891507245528, + 44.324265458057475 + ], + [ + -92.35772344149558, + 44.34795919246647 + ], + [ + -92.38857217431816, + 44.39598446664603 + ], + [ + -92.5341552009798, + 44.44209056219231 + ], + [ + -92.56145973088407, + 44.45379215752689 + ], + [ + -92.58595674390058, + 44.47059575951981 + ], + [ + -92.6067048335572, + 44.49185561517004 + ], + [ + -92.62290666240408, + 44.51675472014762 + ], + [ + -92.63393960324471, + 44.54433621581182 + ], + [ + -92.63937966634995, + 44.57354016075217 + ], + [ + -92.63901779314548, + 44.60324426374235 + ], + [ + -92.63286789021562, + 44.632307012762716 + ], + [ + -92.62116629488104, + 44.659611542666994 + ], + [ + -92.60436269288812, + 44.68410855568351 + ], + [ + -92.58310283723789, + 44.70485664534012 + ], + [ + -92.55820373226031, + 44.721058474187 + ], + [ + -92.5306222365961, + 44.73209141502764 + ], + [ + -92.50141829165577, + 44.73753147813288 + ], + [ + -92.47171418866557, + 44.73716960492841 + ], + [ + -92.4426514396452, + 44.73101970199854 + ], + [ + -92.2448975333952, + 44.66839110644526 + ] + ] + ] + }, + "properties": { + "fill": "#000", + "fill-opacity": 0.3, + "stroke": "#0ff" + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -92.4884033203125, + 44.58655513209543 + ], + [ + -92.2906494140625, + 44.52392653654215 + ], + [ + -92.230224609375, + 44.429857265397246 + ], + [ + -92.08740234375, + 44.429857265397246 + ], + [ + -91.9830322265625, + 44.35527821160296 + ], + [ + -91.92260742187499, + 44.308126684886126 + ], + [ + -91.8731689453125, + 44.24519901522129 + ], + [ + -91.8072509765625, + 44.166444664458595 + ], + [ + -91.58203125, + 44.06390660801779 + ], + [ + -91.29638671875, + 43.874138181474734 + ], + [ + -91.219482421875, + 43.37710501700073 + ] + ] + } + } + ] +} \ No newline at end of file diff --git a/packages/turf-buffer/test/fixtures/out/MultiLineString.geojson b/packages/turf-buffer/test/fixtures/out/MultiLineString.geojson new file mode 100644 index 0000000000..c7b12c1d6b --- /dev/null +++ b/packages/turf-buffer/test/fixtures/out/MultiLineString.geojson @@ -0,0 +1,495 @@ +{ + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 89.88288803825886, + 15.247009323635544 + ], + [ + 97.3828387571505, + 16.046312838480542 + ], + [ + 98.68340842661729, + 16.056716270334803 + ], + [ + 99.96101762343974, + 15.813191247542456 + ], + [ + 101.16656854267545, + 15.325096300159002 + ], + [ + 102.25373253857893, + 14.611188643285587 + ], + [ + 103.18073050847622, + 13.69890334781183 + ], + [ + 103.91193844025058, + 12.6232990260273 + ], + [ + 104.4192564231501, + 11.425710548812326 + ], + [ + 104.68318851159913, + 10.152160569730919 + ], + [ + 104.69359194345338, + 8.851590900264124 + ], + [ + 104.45006692066104, + 7.573981703441676 + ], + [ + 103.96197197327758, + 6.368430784205971 + ], + [ + 103.24806431640417, + 5.281266788302489 + ], + [ + 102.3357790209304, + 4.354268818405209 + ], + [ + 101.26017469914588, + 3.623060886630835 + ], + [ + 100.0625862219309, + 3.1157429037313227 + ], + [ + 98.7890362428495, + 2.851810815282299 + ], + [ + 75.9374737428495, + 0.4164169159675204 + ], + [ + 74.65142278751057, + 0.40471676492397535 + ], + [ + 73.38727738751484, + 0.6413607188553581 + ], + [ + 72.19254024793521, + 1.117456424120289 + ], + [ + 71.11210592439895, + 1.8151136650254287 + ], + [ + 70.18657382344722, + 2.708116623234698 + ], + [ + 69.45072260141744, + 3.7629089877785122 + ], + [ + 68.93220328925729, + 4.939854898251707 + ], + [ + 68.65050025162938, + 6.194728338824039 + ], + [ + 68.61619902427562, + 7.480375016206539 + ], + [ + 68.83058854206584, + 8.748484273299283 + ], + [ + 69.2856127047806, + 9.951404455442866 + ], + [ + 69.96417310063711, + 11.043933513380317 + ], + [ + 91.05792310063711, + 38.62730710195784 + ], + [ + 91.94545436329865, + 39.57803206446264 + ], + [ + 93.0014092006986, + 40.337340353567235 + ], + [ + 94.18520786062199, + 40.87605217754634 + ], + [ + 95.45135762444991, + 41.173465143117504 + ], + [ + 96.7512010668234, + 41.21814983680495 + ], + [ + 98.03478593321266, + 41.00838905088972 + ], + [ + 99.25278477704504, + 40.55224377473934 + ], + [ + 100.35839058581368, + 39.86724341550705 + ], + [ + 101.30911554831847, + 38.97971215284552 + ], + [ + 102.06842383742307, + 37.92375731544557 + ], + [ + 102.60713566140217, + 36.73995865552217 + ], + [ + 102.90454862697334, + 35.47380889169426 + ], + [ + 102.94923332066078, + 34.17396544932077 + ], + [ + 102.73947253474554, + 32.890380582931506 + ], + [ + 102.28332725859516, + 31.672381739099123 + ], + [ + 101.59832689936289, + 30.566775930330493 + ], + [ + 89.88288803825886, + 15.247009323635544 + ] + ] + ], + [ + [ + [ + 61.297065967014525, + 44.299491710684826 + ], + [ + 63.87089346804917, + 43.4875970064952 + ], + [ + 65.02054907409064, + 43.00185656412343 + ], + [ + 66.05889425047828, + 42.30940361660237 + ], + [ + 66.94918544465882, + 41.43474175083786 + ], + [ + 67.65991823784657, + 40.40882231611326 + ], + [ + 68.16594218071916, + 39.26794915966783 + ], + [ + 68.44935078344938, + 38.052493955328075 + ], + [ + 70.55872578344938, + 22.508756745331905 + ], + [ + 70.60645665455219, + 21.209021595205126 + ], + [ + 70.39970464137673, + 19.92494866052454 + ], + [ + 69.94641510784149, + 18.705884144053524 + ], + [ + 69.2640077165125, + 17.598676011500807 + ], + [ + 68.37870700074008, + 16.645873650470904 + ], + [ + 67.32453457054899, + 15.884092721360489 + ], + [ + 66.14200168124478, + 15.342608038063595 + ], + [ + 64.87655240859131, + 15.04222855329122 + ], + [ + 63.57681725846452, + 14.994497682188412 + ], + [ + 62.292744323783936, + 15.201249695363867 + ], + [ + 61.07367980731292, + 15.654539228899118 + ], + [ + 59.9664716747602, + 16.336946620228105 + ], + [ + 59.013669313730304, + 17.222247336000528 + ], + [ + 58.25188838461988, + 18.276419766191616 + ], + [ + 57.71040370132299, + 19.458952655495835 + ], + [ + 57.41002421655062, + 20.7244019281493 + ], + [ + 55.86645294551307, + 32.098797757201666 + ], + [ + 36.324419031950825, + 38.263186721550404 + ], + [ + 35.12692514590036, + 38.77494089739276 + ], + [ + 34.05246288057046, + 39.51074982911518 + ], + [ + 33.14242803899046, + 40.44226500920125 + ], + [ + 32.43188152954906, + 41.53359795635394 + ], + [ + 31.948198574529176, + 42.74270289085862 + ], + [ + 31.710014025037935, + 44.02299663215551 + ], + [ + 31.726504416179, + 45.32515330883476 + ], + [ + 31.997034422724514, + 46.59900473627001 + ], + [ + 32.51118133628737, + 47.79547324604957 + ], + [ + 33.249136620961984, + 48.86846250109416 + ], + [ + 34.18246907670108, + 49.77663344903532 + ], + [ + 35.27522020803645, + 50.48499699170647 + ], + [ + 36.4852895968776, + 50.96626200997596 + ], + [ + 63.9071645968776, + 58.85857505074535 + ], + [ + 65.18627991364818, + 59.0940611499831 + ], + [ + 66.4867584472057, + 59.07547943081052 + ], + [ + 67.7586235368223, + 58.80354397827467 + ], + [ + 68.95299812037418, + 58.28870511931334 + ], + [ + 70.0239830524284, + 57.55074782255147 + ], + [ + 70.93042098266143, + 56.618031373052375 + ], + [ + 71.63747800975062, + 55.52639954089692 + ], + [ + 72.11798232866713, + 54.317803125200626 + ], + [ + 72.35346842790487, + 53.03868780843005 + ], + [ + 72.3348867087323, + 51.73820927487253 + ], + [ + 72.06295125619644, + 50.466344185255934 + ], + [ + 71.54811239723512, + 49.27196960170406 + ], + [ + 70.81015510047324, + 48.20098466964982 + ], + [ + 69.87743865097416, + 47.294546739416795 + ], + [ + 68.78580681881868, + 46.587489712327596 + ], + [ + 67.57721040312241, + 46.1069853934111 + ], + [ + 61.297065967014525, + 44.299491710684826 + ] + ] + ] + ] + }, + "properties": { + "fill": "#000", + "fill-opacity": 0.3, + "stroke": "#0ff" + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [ + 65.7421875, + 52.482780222078226 + ], + [ + 38.3203125, + 44.59046718130883 + ], + [ + 61.87499999999999, + 37.16031654673677 + ], + [ + 63.984375, + 21.616579336740603 + ] + ], + [ + [ + 96.328125, + 34.59704151614417 + ], + [ + 75.234375, + 7.013667927566642 + ], + [ + 98.0859375, + 9.44906182688142 + ] + ] + ] + } + } + ] +} \ No newline at end of file diff --git a/packages/turf-buffer/test/fixtures/out/MultiPoint.geojson b/packages/turf-buffer/test/fixtures/out/MultiPoint.geojson new file mode 100644 index 0000000000..98d8accfc3 --- /dev/null +++ b/packages/turf-buffer/test/fixtures/out/MultiPoint.geojson @@ -0,0 +1,447 @@ +{ + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 86.57737477963222, + 47.26432008025478 + ], + [ + 86.57389902122947, + 47.22903011296545 + ], + [ + 86.56360531746739, + 47.19509631932821 + ], + [ + 86.54688924960881, + 47.16382275600224 + ], + [ + 86.52439320676703, + 47.136411248487754 + ], + [ + 86.49698169925253, + 47.113915205645974 + ], + [ + 86.46570813592658, + 47.09719913778738 + ], + [ + 86.43177434228933, + 47.086905434025304 + ], + [ + 86.396484375, + 47.083429675622554 + ], + [ + 86.36119440771067, + 47.086905434025304 + ], + [ + 86.32726061407342, + 47.09719913778738 + ], + [ + 86.29598705074747, + 47.113915205645974 + ], + [ + 86.26857554323297, + 47.136411248487754 + ], + [ + 86.24607950039119, + 47.16382275600224 + ], + [ + 86.22936343253261, + 47.19509631932821 + ], + [ + 86.21906972877053, + 47.22903011296545 + ], + [ + 86.21559397036778, + 47.26432008025478 + ], + [ + 86.21906972877053, + 47.29961004754411 + ], + [ + 86.22936343253261, + 47.333543841181346 + ], + [ + 86.24607950039119, + 47.36481740450731 + ], + [ + 86.26857554323297, + 47.3922289120218 + ], + [ + 86.29598705074747, + 47.41472495486358 + ], + [ + 86.32726061407342, + 47.431441022722176 + ], + [ + 86.36119440771067, + 47.44173472648425 + ], + [ + 86.396484375, + 47.445210484887 + ], + [ + 86.43177434228933, + 47.44173472648425 + ], + [ + 86.46570813592658, + 47.431441022722176 + ], + [ + 86.49698169925253, + 47.41472495486358 + ], + [ + 86.52439320676703, + 47.3922289120218 + ], + [ + 86.54688924960881, + 47.36481740450731 + ], + [ + 86.56360531746739, + 47.333543841181346 + ], + [ + 86.57389902122947, + 47.29961004754411 + ], + [ + 86.57737477963222, + 47.26432008025478 + ] + ] + ], + [ + [ + [ + 85.40733083431972, + 46.464349400461124 + ], + [ + 85.40385507591697, + 46.429059433171794 + ], + [ + 85.39356137215489, + 46.395125639534555 + ], + [ + 85.37684530429631, + 46.36385207620859 + ], + [ + 85.35434926145453, + 46.3364405686941 + ], + [ + 85.32693775394003, + 46.31394452585232 + ], + [ + 85.29566419061408, + 46.297228457993725 + ], + [ + 85.26173039697683, + 46.28693475423165 + ], + [ + 85.2264404296875, + 46.2834589958289 + ], + [ + 85.19115046239817, + 46.28693475423165 + ], + [ + 85.15721666876092, + 46.297228457993725 + ], + [ + 85.12594310543497, + 46.31394452585232 + ], + [ + 85.09853159792047, + 46.3364405686941 + ], + [ + 85.07603555507869, + 46.36385207620859 + ], + [ + 85.05931948722011, + 46.395125639534555 + ], + [ + 85.04902578345803, + 46.429059433171794 + ], + [ + 85.04555002505528, + 46.464349400461124 + ], + [ + 85.04902578345803, + 46.499639367750454 + ], + [ + 85.05931948722011, + 46.53357316138769 + ], + [ + 85.07603555507869, + 46.56484672471366 + ], + [ + 85.09853159792047, + 46.59225823222815 + ], + [ + 85.12594310543497, + 46.61475427506993 + ], + [ + 85.15721666876092, + 46.63147034292852 + ], + [ + 85.19115046239817, + 46.6417640466906 + ], + [ + 85.2264404296875, + 46.64523980509335 + ], + [ + 85.26173039697683, + 46.6417640466906 + ], + [ + 85.29566419061408, + 46.63147034292852 + ], + [ + 85.32693775394003, + 46.61475427506993 + ], + [ + 85.35434926145453, + 46.59225823222815 + ], + [ + 85.37684530429631, + 46.56484672471366 + ], + [ + 85.39356137215489, + 46.53357316138769 + ], + [ + 85.40385507591697, + 46.499639367750454 + ], + [ + 85.40733083431972, + 46.464349400461124 + ] + ] + ], + [ + [ + [ + 84.20432790463222, + 47.040182144806664 + ], + [ + 84.20085214622947, + 47.004892177517334 + ], + [ + 84.19055844246739, + 46.970958383880095 + ], + [ + 84.17384237460881, + 46.93968482055413 + ], + [ + 84.15134633176703, + 46.91227331303964 + ], + [ + 84.12393482425253, + 46.88977727019786 + ], + [ + 84.09266126092658, + 46.873061202339265 + ], + [ + 84.05872746728933, + 46.86276749857719 + ], + [ + 84.0234375, + 46.85929174017444 + ], + [ + 83.98814753271067, + 46.86276749857719 + ], + [ + 83.95421373907342, + 46.873061202339265 + ], + [ + 83.92294017574747, + 46.88977727019786 + ], + [ + 83.89552866823297, + 46.91227331303964 + ], + [ + 83.87303262539119, + 46.93968482055413 + ], + [ + 83.85631655753261, + 46.970958383880095 + ], + [ + 83.84602285377053, + 47.004892177517334 + ], + [ + 83.84254709536778, + 47.040182144806664 + ], + [ + 83.84602285377053, + 47.075472112095994 + ], + [ + 83.85631655753261, + 47.10940590573323 + ], + [ + 83.87303262539119, + 47.1406794690592 + ], + [ + 83.89552866823297, + 47.16809097657369 + ], + [ + 83.92294017574747, + 47.19058701941547 + ], + [ + 83.95421373907342, + 47.20730308727406 + ], + [ + 83.98814753271067, + 47.21759679103614 + ], + [ + 84.0234375, + 47.22107254943889 + ], + [ + 84.05872746728933, + 47.21759679103614 + ], + [ + 84.09266126092658, + 47.20730308727406 + ], + [ + 84.12393482425253, + 47.19058701941547 + ], + [ + 84.15134633176703, + 47.16809097657369 + ], + [ + 84.17384237460881, + 47.1406794690592 + ], + [ + 84.19055844246739, + 47.10940590573323 + ], + [ + 84.20085214622947, + 47.075472112095994 + ], + [ + 84.20432790463222, + 47.040182144806664 + ] + ] + ] + ] + }, + "properties": { + "fill": "#000", + "fill-opacity": 0.3, + "stroke": "#0ff" + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "MultiPoint", + "coordinates": [ + [ + 84.0234375, + 47.040182144806664 + ], + [ + 85.2264404296875, + 46.464349400461124 + ], + [ + 86.396484375, + 47.26432008025478 + ] + ] + } + } + ] +} \ No newline at end of file diff --git a/packages/turf-buffer/test/fixtures/out/MultiPolygon.geojson b/packages/turf-buffer/test/fixtures/out/MultiPolygon.geojson new file mode 100644 index 0000000000..62e3e6d827 --- /dev/null +++ b/packages/turf-buffer/test/fixtures/out/MultiPolygon.geojson @@ -0,0 +1,371 @@ +{ + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + -87.78054555610964, + 43.698862127221666 + ], + [ + -87.5415929193909, + 43.469784494414945 + ], + [ + -87.5287064788649, + 43.454820884003304 + ], + [ + -87.51889652878273, + 43.43768218903063 + ], + [ + -87.51252017343437, + 43.41899229661647 + ], + [ + -87.50980952652381, + 43.39943156096294 + ], + [ + -87.5108632617071, + 43.37971203692851 + ], + [ + -87.51564302064898, + 43.36055155962655 + ], + [ + -87.5239748093526, + 43.34264761360956 + ], + [ + -87.53555533193324, + 43.32665194285962 + ], + [ + -87.54996303127191, + 43.31314682583874 + ], + [ + -87.56667343464453, + 43.30262387924067 + ], + [ + -87.58507824571092, + 43.29546616203533 + ], + [ + -87.96685314805467, + 43.187599333978376 + ], + [ + -87.98764401481517, + 43.183961417782164 + ], + [ + -88.0087405791395, + 43.1846168173656 + ], + [ + -88.02926553474185, + 43.18953827776122 + ], + [ + -88.04836534583848, + 43.19852113871848 + ], + [ + -88.06524574166211, + 43.21119184555517 + ], + [ + -88.07920474642494, + 43.227023483529045 + ], + [ + -88.0896618711699, + 43.24535768972873 + ], + [ + -88.09618225355975, + 43.265432031271956 + ], + [ + -88.09849474174398, + 43.286411711281474 + ], + [ + -88.0965031702812, + 43.3074242841371 + ], + [ + -88.09029035920486, + 43.327595936360794 + ], + [ + -87.94746809357986, + 43.66454039722447 + ], + [ + -87.93792695396158, + 43.68210430091376 + ], + [ + -87.92518769306533, + 43.69750674519508 + ], + [ + -87.90972541004318, + 43.71017330991346 + ], + [ + -87.89211675668153, + 43.719631607054666 + ], + [ + -87.87301843169703, + 43.725528898026674 + ], + [ + -87.85314268975503, + 43.72764524872473 + ], + [ + -87.83323077857946, + 43.72590173177382 + ], + [ + -87.81402529479291, + 43.72036337005334 + ], + [ + -87.79624248945083, + 43.711236711727985 + ], + [ + -87.78054555610964, + 43.698862127221666 + ] + ] + ], + [ + [ + [ + -88.692626953125, + 42.84688912756838 + ], + [ + -88.71281931784497, + 42.848877901906754 + ], + [ + -88.73223570131276, + 42.85476779743936 + ], + [ + -88.75012994280054, + 42.864332468783964 + ], + [ + -88.76581437664314, + 42.877204350984734 + ], + [ + -88.7786862588439, + 42.89288878482733 + ], + [ + -88.78825093018851, + 42.91078302631511 + ], + [ + -88.79414082572112, + 42.9301994097829 + ], + [ + -88.79612960005949, + 42.95039177450287 + ], + [ + -88.79612960005949, + 43.27520565244538 + ], + [ + -88.79414082572112, + 43.29539801716535 + ], + [ + -88.78825093018851, + 43.31481440063314 + ], + [ + -88.7786862588439, + 43.33270864212092 + ], + [ + -88.76581437664314, + 43.348393075963514 + ], + [ + -88.75012994280054, + 43.361264958164284 + ], + [ + -88.73223570131276, + 43.37082962950889 + ], + [ + -88.71281931784497, + 43.376719525041494 + ], + [ + -88.692626953125, + 43.378708299379866 + ], + [ + -88.25592041015625, + 43.378708299379866 + ], + [ + -88.23572804543628, + 43.376719525041494 + ], + [ + -88.21631166196849, + 43.37082962950889 + ], + [ + -88.19841742048071, + 43.361264958164284 + ], + [ + -88.18273298663811, + 43.348393075963514 + ], + [ + -88.16986110443735, + 43.33270864212092 + ], + [ + -88.16029643309274, + 43.31481440063314 + ], + [ + -88.15440653756013, + 43.29539801716535 + ], + [ + -88.15241776322176, + 43.27520565244538 + ], + [ + -88.15241776322176, + 42.95039177450287 + ], + [ + -88.15440653756013, + 42.9301994097829 + ], + [ + -88.16029643309274, + 42.91078302631511 + ], + [ + -88.16986110443735, + 42.89288878482733 + ], + [ + -88.18273298663811, + 42.877204350984734 + ], + [ + -88.19841742048071, + 42.864332468783964 + ], + [ + -88.21631166196849, + 42.85476779743936 + ], + [ + -88.23572804543628, + 42.848877901906754 + ], + [ + -88.25592041015625, + 42.84688912756838 + ], + [ + -88.692626953125, + 42.84688912756838 + ] + ] + ] + ] + }, + "properties": { + "fill": "#000", + "fill-opacity": 0.3, + "stroke": "#0ff" + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + -88.692626953125, + 42.95039177450287 + ], + [ + -88.692626953125, + 43.27520565244538 + ], + [ + -88.25592041015625, + 43.27520565244538 + ], + [ + -88.25592041015625, + 42.95039177450287 + ], + [ + -88.692626953125, + 42.95039177450287 + ] + ] + ], + [ + [ + [ + -87.8521728515625, + 43.624147145668076 + ], + [ + -87.9949951171875, + 43.2872026848044 + ], + [ + -87.61322021484375, + 43.395069512861355 + ], + [ + -87.8521728515625, + 43.624147145668076 + ] + ] + ] + ] + } + } + ] +} \ No newline at end of file diff --git a/packages/turf-buffer/test/fixtures/out/Point.geojson b/packages/turf-buffer/test/fixtures/out/Point.geojson new file mode 100644 index 0000000000..1d0481afd5 --- /dev/null +++ b/packages/turf-buffer/test/fixtures/out/Point.geojson @@ -0,0 +1,166 @@ +{ + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -75.39855313636365, + 39.4 + ], + [ + -75.39858093744272, + 39.39971773090727 + ], + [ + -75.39866327230004, + 39.39944630925747 + ], + [ + -75.39879697685322, + 39.3991961656324 + ], + [ + -75.39897691291128, + 39.39897691291127 + ], + [ + -75.3991961656324, + 39.39879697685322 + ], + [ + -75.39944630925748, + 39.39866327230003 + ], + [ + -75.39971773090727, + 39.3985809374427 + ], + [ + -75.4, + 39.39855313636364 + ], + [ + -75.40028226909274, + 39.3985809374427 + ], + [ + -75.40055369074253, + 39.39866327230003 + ], + [ + -75.40080383436761, + 39.39879697685322 + ], + [ + -75.40102308708873, + 39.39897691291127 + ], + [ + -75.40120302314679, + 39.3991961656324 + ], + [ + -75.40133672769997, + 39.39944630925747 + ], + [ + -75.4014190625573, + 39.39971773090727 + ], + [ + -75.40144686363637, + 39.4 + ], + [ + -75.4014190625573, + 39.40028226909273 + ], + [ + -75.40133672769997, + 39.40055369074253 + ], + [ + -75.40120302314679, + 39.4008038343676 + ], + [ + -75.40102308708873, + 39.401023087088724 + ], + [ + -75.40080383436761, + 39.40120302314678 + ], + [ + -75.40055369074253, + 39.40133672769997 + ], + [ + -75.40028226909274, + 39.401419062557295 + ], + [ + -75.4, + 39.40144686363636 + ], + [ + -75.39971773090727, + 39.401419062557295 + ], + [ + -75.39944630925748, + 39.40133672769997 + ], + [ + -75.3991961656324, + 39.40120302314678 + ], + [ + -75.39897691291128, + 39.401023087088724 + ], + [ + -75.39879697685322, + 39.4008038343676 + ], + [ + -75.39866327230004, + 39.40055369074253 + ], + [ + -75.39858093744272, + 39.40028226909273 + ], + [ + -75.39855313636365, + 39.4 + ] + ] + ] + }, + "properties": { + "fill": "#000", + "fill-opacity": 0.3, + "stroke": "#0ff" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -75.4, + 39.4 + ] + }, + "properties": { + "name": "Location A", + "category": "Store" + } + } + ] +} \ No newline at end of file diff --git a/packages/turf-buffer/test/fixtures/out/Polygon.geojson b/packages/turf-buffer/test/fixtures/out/Polygon.geojson new file mode 100644 index 0000000000..f5f58284f7 --- /dev/null +++ b/packages/turf-buffer/test/fixtures/out/Polygon.geojson @@ -0,0 +1,247 @@ +{ + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.96409507234401, + 32.734395522497685 + ], + [ + -79.97108195079794, + 32.733742700618336 + ], + [ + -79.97667608493435, + 32.73380015093783 + ], + [ + -79.98213914581838, + 32.735005390769906 + ], + [ + -79.98723817636603, + 32.73730702600368 + ], + [ + -79.99175574255771, + 32.74060690978635 + ], + [ + -79.99549920530902, + 32.74476432772361 + ], + [ + -79.99830893503041, + 32.749601998254775 + ], + [ + -80.00006511858845, + 32.754913632333455 + ], + [ + -80.0006928684047, + 32.76047273005193 + ], + [ + -80.00137951391251, + 32.836660348185866 + ], + [ + -80.00079866508233, + 32.84248959827322 + ], + [ + -79.99897830715686, + 32.84805770737484 + ], + [ + -79.9461066030553, + 32.96509752123827 + ], + [ + -79.94332384029835, + 32.969883561061096 + ], + [ + -79.93962626292472, + 32.97400398183004 + ], + [ + -79.9351682808937, + 32.97728671574529 + ], + [ + -79.93013605848384, + 32.97959467661255 + ], + [ + -79.92473974011648, + 32.98083148453017 + ], + [ + -79.91920467477428, + 32.98094549069113 + ], + [ + -79.91376200548089, + 32.97993193422502 + ], + [ + -79.8100785338012, + 32.94938966024565 + ], + [ + -79.80497776540491, + 32.947302739446926 + ], + [ + -79.8004048726217, + 32.94422674720931 + ], + [ + -79.7965490933572, + 32.940288975895974 + ], + [ + -79.79356998954023, + 32.93565238047472 + ], + [ + -79.79159084404527, + 32.93050883502801 + ], + [ + -79.79069355893438, + 32.92507119251655 + ], + [ + -79.77833393979375, + 32.724845424432274 + ], + [ + -79.7785277147107, + 32.719539252324545 + ], + [ + -79.77975272154414, + 32.71437278647125 + ], + [ + -79.78196190502055, + 32.709544482470584 + ], + [ + -79.78507040542328, + 32.70523980636181 + ], + [ + -79.78895881824558, + 32.70162411045663 + ], + [ + -79.79347778078677, + 32.698836281784246 + ], + [ + -79.7984537095103, + 32.69698340712749 + ], + [ + -79.80369546777857, + 32.696136659578144 + ], + [ + -79.80900170784201, + 32.696328564618085 + ], + [ + -79.94152429084983, + 32.714234520704736 + ], + [ + -79.94663009249861, + 32.71543681988353 + ], + [ + -79.95140849676417, + 32.717600517289995 + ], + [ + -79.95568037026158, + 32.720644499979535 + ], + [ + -79.95928556849124, + 32.72445465476862 + ], + [ + -79.96208893935501, + 32.72888814612331 + ], + [ + -79.96398538975397, + 32.733778770794686 + ], + [ + -79.96409507234401, + 32.734395522497685 + ] + ] + ] + }, + "properties": { + "fill": "#000", + "fill-opacity": 0.3, + "stroke": "#0ff" + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.92141723632812, + 32.953944317478246 + ], + [ + -79.97428894042969, + 32.83690450361482 + ], + [ + -79.97360229492188, + 32.76071688548088 + ], + [ + -79.93034362792969, + 32.76475877693074 + ], + [ + -79.93789672851562, + 32.74108223150125 + ], + [ + -79.80537414550781, + 32.7231762754146 + ], + [ + -79.81773376464844, + 32.923402043498875 + ], + [ + -79.92141723632812, + 32.953944317478246 + ] + ] + ] + } + } + ] +} \ No newline at end of file diff --git a/packages/turf-buffer/test/test.js b/packages/turf-buffer/test/test.js new file mode 100644 index 0000000000..9c610584d4 --- /dev/null +++ b/packages/turf-buffer/test/test.js @@ -0,0 +1,44 @@ +var test = require('tape'); +var buffer = require('../'); +var fs = require('fs'); +var glob = require('glob'); +var featurecollection = require('turf-helpers').featureCollection; +var getBbox = require('turf-bbox'); +var point = require('turf-helpers').point; +var distance = require('turf-distance'); +var normalize = require('geojson-normalize'); + +test('buffer', function(t){ + var fixtures = glob.sync(__dirname+'/fixtures/in/*.geojson'); + fixtures.forEach(function(path){ + var fixture = JSON.parse(fs.readFileSync(path)); + var bbox = getBbox(fixture); + var width = distance( + point(bbox.slice(0,2)), + point(bbox.slice(2,5)), + 'miles'); + if (!width) width = 1; + var buffered = buffer(fixture, width * 0.1, 'miles'); + + buffered = normalize(buffered); + buffered.features = buffered.features.map(function(f) { + f.properties = { + 'fill': '#000', + 'fill-opacity': 0.3, + 'stroke': '#0ff' + }; + return f; + }); + + buffered.features = buffered.features.concat(normalize(fixture).features); + if (process.env.REGEN) { + fs.writeFileSync( + __dirname+'/fixtures/out/'+path.split('/')[path.split('/').length-1], + JSON.stringify(buffered, null, 2)); + } + var expected = JSON.parse(fs.readFileSync( + __dirname+'/fixtures/out/'+path.split('/')[path.split('/').length-1])); + t.deepEqual(expected, buffered); + }); + t.end(); +}); diff --git a/packages/turf-center/.npmignore b/packages/turf-center/.npmignore new file mode 100644 index 0000000000..bb3c08c09a --- /dev/null +++ b/packages/turf-center/.npmignore @@ -0,0 +1,2 @@ +test +coverage diff --git a/packages/turf-center/LICENSE b/packages/turf-center/LICENSE new file mode 100644 index 0000000000..64fb8e99a3 --- /dev/null +++ b/packages/turf-center/LICENSE @@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) 2014 Morgan Herlocker + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. \ No newline at end of file diff --git a/packages/turf-center/README.md b/packages/turf-center/README.md new file mode 100644 index 0000000000..90bc772914 --- /dev/null +++ b/packages/turf-center/README.md @@ -0,0 +1,144 @@ +# turf-center + +[![build status](https://secure.travis-ci.org/Turfjs/turf-center.png)](http://travis-ci.org/Turfjs/turf-center) + +turf center module + + +### `turf.center(features)` + +Takes a FeatureCollection and returns the absolute center point of all features. + + +### Parameters + +| parameter | type | description | +| ---------- | ----------------- | -------------- | +| `features` | FeatureCollection | input features | + + +### Example + +```js +var features = { + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [-97.522259, 35.4691] + } + }, { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [-97.502754, 35.463455] + } + }, { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [-97.508269, 35.463245] + } + }, { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [-97.516809, 35.465779] + } + }, { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [-97.515372, 35.467072] + } + }, { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [-97.509363, 35.463053] + } + }, { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [-97.511123, 35.466601] + } + }, { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [-97.518547, 35.469327] + } + }, { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [-97.519706, 35.469659] + } + }, { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [-97.517839, 35.466998] + } + }, { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [-97.508678, 35.464942] + } + }, { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [-97.514914, 35.463453] + } + } + ] +}; + +var centerPt = turf.center(features); +centerPt.properties['marker-size'] = 'large'; +centerPt.properties['marker-color'] = '#000'; + +var resultFeatures = features.features.concat(centerPt); +var result = { + "type": "FeatureCollection", + "features": resultFeatures +}; + +//=result +``` + + +**Returns** `Feature.`, a Point feature at the absolute center point of all input features + +## Installation + +Requires [nodejs](http://nodejs.org/). + +```sh +$ npm install turf-center +``` + +## Tests + +```sh +$ npm test +``` + + diff --git a/packages/turf-center/bench.js b/packages/turf-center/bench.js new file mode 100644 index 0000000000..fe3a1436dc --- /dev/null +++ b/packages/turf-center/bench.js @@ -0,0 +1,22 @@ +var center = require('./'); +var Benchmark = require('benchmark'); +var fs = require('fs'); + +var boxFC = JSON.parse(fs.readFileSync(__dirname+'/test/in/box.geojson')); +var blockFC = JSON.parse(fs.readFileSync(__dirname+'/test/in/block.geojson')); + +var suite = new Benchmark.Suite('turf-center'); +suite + .add('turf-center#simple',function () { + center(boxFC); + }) + .add('turf-center#complex',function () { + center(blockFC); + }) + .on('cycle', function (event) { + console.log(String(event.target)); + }) + .on('complete', function () { + + }) + .run(); diff --git a/packages/turf-center/index.js b/packages/turf-center/index.js new file mode 100644 index 0000000000..f4a1f33ffe --- /dev/null +++ b/packages/turf-center/index.js @@ -0,0 +1,122 @@ +var bbox = require('turf-bbox'), + point = require('turf-helpers').point; + +/** + * Takes a {@link FeatureCollection} and returns the absolute center point of all features. + * + * @name center + * @category measurement + * @param {FeatureCollection} features input features + * @return {Feature} a Point feature at the + * absolute center point of all input features + * @example + * var features = { + * "type": "FeatureCollection", + * "features": [ + * { + * "type": "Feature", + * "properties": {}, + * "geometry": { + * "type": "Point", + * "coordinates": [-97.522259, 35.4691] + * } + * }, { + * "type": "Feature", + * "properties": {}, + * "geometry": { + * "type": "Point", + * "coordinates": [-97.502754, 35.463455] + * } + * }, { + * "type": "Feature", + * "properties": {}, + * "geometry": { + * "type": "Point", + * "coordinates": [-97.508269, 35.463245] + * } + * }, { + * "type": "Feature", + * "properties": {}, + * "geometry": { + * "type": "Point", + * "coordinates": [-97.516809, 35.465779] + * } + * }, { + * "type": "Feature", + * "properties": {}, + * "geometry": { + * "type": "Point", + * "coordinates": [-97.515372, 35.467072] + * } + * }, { + * "type": "Feature", + * "properties": {}, + * "geometry": { + * "type": "Point", + * "coordinates": [-97.509363, 35.463053] + * } + * }, { + * "type": "Feature", + * "properties": {}, + * "geometry": { + * "type": "Point", + * "coordinates": [-97.511123, 35.466601] + * } + * }, { + * "type": "Feature", + * "properties": {}, + * "geometry": { + * "type": "Point", + * "coordinates": [-97.518547, 35.469327] + * } + * }, { + * "type": "Feature", + * "properties": {}, + * "geometry": { + * "type": "Point", + * "coordinates": [-97.519706, 35.469659] + * } + * }, { + * "type": "Feature", + * "properties": {}, + * "geometry": { + * "type": "Point", + * "coordinates": [-97.517839, 35.466998] + * } + * }, { + * "type": "Feature", + * "properties": {}, + * "geometry": { + * "type": "Point", + * "coordinates": [-97.508678, 35.464942] + * } + * }, { + * "type": "Feature", + * "properties": {}, + * "geometry": { + * "type": "Point", + * "coordinates": [-97.514914, 35.463453] + * } + * } + * ] + * }; + * + * var centerPt = turf.center(features); + * centerPt.properties['marker-size'] = 'large'; + * centerPt.properties['marker-color'] = '#000'; + * + * var resultFeatures = features.features.concat(centerPt); + * var result = { + * "type": "FeatureCollection", + * "features": resultFeatures + * }; + * + * //=result + */ + +module.exports = function (layer) { + var ext = bbox(layer); + var x = (ext[0] + ext[2]) / 2; + var y = (ext[1] + ext[3]) / 2; + return point([x, y]); +}; diff --git a/packages/turf-center/package.json b/packages/turf-center/package.json new file mode 100644 index 0000000000..15f7e2d337 --- /dev/null +++ b/packages/turf-center/package.json @@ -0,0 +1,35 @@ +{ + "name": "turf-center", + "version": "3.0.5", + "description": "turf center module", + "main": "index.js", + "scripts": { + "test": "node test.js" + }, + "repository": { + "type": "git", + "url": "https://github.com/Turfjs/turf-center.git" + }, + "keywords": [ + "centroid", + "geojson", + "gis", + "geospatial", + "geo", + "turf" + ], + "author": "morganherlocker", + "license": "MIT", + "bugs": { + "url": "https://github.com/Turfjs/turf-center/issues" + }, + "homepage": "https://github.com/Turfjs/turf-center", + "devDependencies": { + "benchmark": "^1.0.0", + "tape": "^3.5.0" + }, + "dependencies": { + "turf-bbox": "^3.0.1", + "turf-helpers": "^3.0.5" + } +} diff --git a/packages/turf-center/test.js b/packages/turf-center/test.js new file mode 100644 index 0000000000..ff34f0cd25 --- /dev/null +++ b/packages/turf-center/test.js @@ -0,0 +1,25 @@ +var test = require('tape'); +var center = require('./'); +var fs = require('fs'); + +var boxFC = JSON.parse(fs.readFileSync(__dirname+'/test/in/box.geojson')); +var blockFC = JSON.parse(fs.readFileSync(__dirname+'/test/in/block.geojson')); + +test('center', function(t){ + var boxFcCenter = center(boxFC); + boxFcCenter.properties['marker-color'] = '#f0f'; + t.ok(boxFcCenter, 'should return the proper center for a FeatureCollection'); + t.deepEqual(boxFcCenter.geometry.coordinates, [65.56640625, 43.59448261855401]); + + var blockFcCenter = center(blockFC.features[0]); + blockFcCenter.properties['marker-color'] = '#f0f'; + t.ok(blockFcCenter, 'should return the proper center for a FeatureCollection'); + t.deepEqual(blockFcCenter.geometry.coordinates, [ -114.02911397119072, 51.050271120392566]); + + boxFC.features.push(boxFcCenter); + blockFC.features.push(blockFcCenter); + fs.writeFileSync(__dirname+'/test/out/box_out.geojson', JSON.stringify(boxFC,null,2)); + fs.writeFileSync(__dirname+'/test/out/block_out.geojson', JSON.stringify(blockFC,null,2)); + + t.end(); +}); diff --git a/packages/turf-center/test/in/block.geojson b/packages/turf-center/test/in/block.geojson new file mode 100644 index 0000000000..134f89784a --- /dev/null +++ b/packages/turf-center/test/in/block.geojson @@ -0,0 +1,2076 @@ +{ + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "properties": { + "NAME": "BAD!", + "id": 2 + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + -114.02853848727915, + 51.05222733916341, + 0 + ], + [ + -114.02853676996496, + 51.05222956633674, + 0 + ], + [ + -114.0284782312623, + 51.05223293467901, + 0 + ], + [ + -114.0284143755573, + 51.052241335831816, + 0 + ], + [ + -114.02835656968043, + 51.052248940790804, + 0 + ], + [ + -114.02828534111467, + 51.05227323299448, + 0 + ], + [ + -114.0282156710913, + 51.05229699258692, + 0 + ], + [ + -114.0281962336843, + 51.0523277610035, + 0 + ], + [ + -114.02815900050712, + 51.05235879710403, + 0 + ], + [ + -114.02813959317129, + 51.052366330669564, + 0 + ], + [ + -114.02810655562794, + 51.052365963747086, + 0 + ], + [ + -114.02687798671556, + 51.05235233033196, + 0 + ], + [ + -114.02681641023835, + 51.0523516468729, + 0 + ], + [ + -114.02619436981905, + 51.05234473728991, + 0 + ], + [ + -114.02590810605851, + 51.05234155670112, + 0 + ], + [ + -114.02582271173839, + 51.05234060650583, + 0 + ], + [ + -114.02581967798437, + 51.05234056762124, + 0 + ], + [ + -114.02579801668524, + 51.052340322489854, + 0 + ], + [ + -114.02579800949681, + 51.05234022000866, + 0 + ], + [ + -114.02579756134502, + 51.05233712224951, + 0 + ], + [ + -114.02579649758837, + 51.05231961949656, + 0 + ], + [ + -114.02579627559044, + 51.05230769018514, + 0 + ], + [ + -114.02579972340646, + 51.05229825021657, + 0 + ], + [ + -114.02580315703548, + 51.052291516157204, + 0 + ], + [ + -114.02580864319621, + 51.05228495244925, + 0 + ], + [ + -114.02581834152556, + 51.052281534213236, + 0 + ], + [ + -114.0258333304282, + 51.05228148595286, + 0 + ], + [ + -114.0258501053066, + 51.05228189577139, + 0 + ], + [ + -114.02585929068253, + 51.05228196565738, + 0 + ], + [ + -114.02585936675247, + 51.05219062107913, + 0 + ], + [ + -114.02585882417081, + 51.052087113542605, + 0 + ], + [ + -114.02585864554656, + 51.05201991541086, + 0 + ], + [ + -114.02585845900856, + 51.051941066600264, + 0 + ], + [ + -114.02585840413089, + 51.051842521278104, + 0 + ], + [ + -114.02585893303171, + 51.05177036066027, + 0 + ], + [ + -114.02585819012062, + 51.05171433687466, + 0 + ], + [ + -114.02585814803447, + 51.051638760287, + 0 + ], + [ + -114.02585832860497, + 51.05157883475622, + 0 + ], + [ + -114.02585858204594, + 51.05152426708346, + 0 + ], + [ + -114.02585868836341, + 51.05145906460062, + 0 + ], + [ + -114.02585872827828, + 51.051402681049964, + 0 + ], + [ + -114.02585891738224, + 51.05135552092149, + 0 + ], + [ + -114.02585966418636, + 51.051313538749746, + 0 + ], + [ + -114.02585943637429, + 51.05128862827753, + 0 + ], + [ + -114.02585964520746, + 51.051279458713765, + 0 + ], + [ + -114.0258599227359, + 51.05126814958072, + 0 + ], + [ + -114.02586111644571, + 51.05125777517606, + 0 + ], + [ + -114.02586236331656, + 51.051245539887, + 0 + ], + [ + -114.02586314048085, + 51.05123246865757, + 0 + ], + [ + -114.02586376129662, + 51.051220368352745, + 0 + ], + [ + -114.0258648107258, + 51.05120702737131, + 0 + ], + [ + -114.02586726534908, + 51.05118659318722, + 0 + ], + [ + -114.0258700640584, + 51.05116424411576, + 0 + ], + [ + -114.02587349962914, + 51.05113556613796, + 0 + ], + [ + -114.02587553127502, + 51.0511213799048, + 0 + ], + [ + -114.02587797416493, + 51.05110294144136, + 0 + ], + [ + -114.02587972028591, + 51.05108826982617, + 0 + ], + [ + -114.02588330321605, + 51.05106810508318, + 0 + ], + [ + -114.02588834981965, + 51.05103831202199, + 0 + ], + [ + -114.0258950768062, + 51.05100387090113, + 0 + ], + [ + -114.02590174436081, + 51.05096517765356, + 0 + ], + [ + -114.02591885738768, + 51.05088489562782, + 0 + ], + [ + -114.02594094628232, + 51.050776070120975, + 0 + ], + [ + -114.025951983753, + 51.05072200347114, + 0 + ], + [ + -114.02597162011031, + 51.050617080040205, + 0 + ], + [ + -114.0259994545431, + 51.050476735266955, + 0 + ], + [ + -114.0260273756664, + 51.050341226936204, + 0 + ], + [ + -114.02605311914421, + 51.05021400760727, + 0 + ], + [ + -114.02608987071933, + 51.05003203838802, + 0 + ], + [ + -114.02611764641966, + 51.049892493671095, + 0 + ], + [ + -114.02615480981105, + 51.04971078503134, + 0 + ], + [ + -114.02618301698372, + 51.04957579798556, + 0 + ], + [ + -114.02620206017127, + 51.04948047565529, + 0 + ], + [ + -114.02620469006344, + 51.049465246470035, + 0 + ], + [ + -114.02620859998908, + 51.049443724189494, + 0 + ], + [ + -114.02621295182708, + 51.049421833230866, + 0 + ], + [ + -114.02621908662641, + 51.04940031045083, + 0 + ], + [ + -114.02622286616618, + 51.049375219277586, + 0 + ], + [ + -114.0262275742883, + 51.04935287875192, + 0 + ], + [ + -114.026231553306, + 51.049329990016304, + 0 + ], + [ + -114.02623626004808, + 51.04930522226438, + 0 + ], + [ + -114.02624075458581, + 51.04928099394336, + 0 + ], + [ + -114.0262463749725, + 51.04926031631113, + 0 + ], + [ + -114.02625122539195, + 51.049237445358266, + 0 + ], + [ + -114.02625586360266, + 51.049215104846645, + 0 + ], + [ + -114.02626055409311, + 51.0491893841859, + 0 + ], + [ + -114.02626476390105, + 51.04916609984871, + 0 + ], + [ + -114.02626911522896, + 51.04914339981167, + 0 + ], + [ + -114.02627501805078, + 51.04911529660006, + 0 + ], + [ + -114.02628122143842, + 51.049091607276104, + 0 + ], + [ + -114.02628507355737, + 51.049068862401796, + 0 + ], + [ + -114.02628956858115, + 51.04904557799908, + 0 + ], + [ + -114.02629413432885, + 51.04902378587484, + 0 + ], + [ + -114.02630119381803, + 51.049000815534995, + 0 + ], + [ + -114.0263088968188, + 51.0489783844334, + 0 + ], + [ + -114.02631653031078, + 51.04895662757635, + 0 + ], + [ + -114.02632494703467, + 51.048935329018384, + 0 + ], + [ + -114.02633314762629, + 51.04891267305969, + 0 + ], + [ + -114.02634728207038, + 51.048886590677014, + 0 + ], + [ + -114.0263606327145, + 51.04886411334974, + 0 + ], + [ + -114.02636961847627, + 51.0488428596085, + 0 + ], + [ + -114.02638396943712, + 51.04882140688156, + 0 + ], + [ + -114.02639454054278, + 51.048801681034, + 0 + ], + [ + -114.02640616643501, + 51.048783438252045, + 0 + ], + [ + -114.02641859465822, + 51.04876664263357, + 0 + ], + [ + -114.0264325161235, + 51.04874740147032, + 0 + ], + [ + -114.02644616976673, + 51.04872870873929, + 0 + ], + [ + -114.02646064801543, + 51.0487105102549, + 0 + ], + [ + -114.02648071597413, + 51.048685694063245, + 0 + ], + [ + -114.02649821814065, + 51.04866825901578, + 0 + ], + [ + -114.02651813064908, + 51.04864601391472, + 0 + ], + [ + -114.02653819800861, + 51.048625243090314, + 0 + ], + [ + -114.02655469129894, + 51.04860939045524, + 0 + ], + [ + -114.02657347862952, + 51.04859235964199, + 0 + ], + [ + -114.02659440380143, + 51.04857285616423, + 0 + ], + [ + -114.02661431882035, + 51.04855763202293, + 0 + ], + [ + -114.02664610668305, + 51.04853230970824, + 0 + ], + [ + -114.02666317202666, + 51.04851933363995, + 0 + ], + [ + -114.02668009352848, + 51.048506726180804, + 0 + ], + [ + -114.02670273114173, + 51.04848915508388, + 0 + ], + [ + -114.02672251806953, + 51.04847451528545, + 0 + ], + [ + -114.02674287662042, + 51.04846189804154, + 0 + ], + [ + -114.02676480195989, + 51.04844581939018, + 0 + ], + [ + -114.02679057792847, + 51.04842968591376, + 0 + ], + [ + -114.02681221880559, + 51.04841500072638, + 0 + ], + [ + -114.02683321760675, + 51.04840229342244, + 0 + ], + [ + -114.02686071972396, + 51.04838706749661, + 0 + ], + [ + -114.02688464400437, + 51.04837508767899, + 0 + ], + [ + -114.02691642312023, + 51.048357289694074, + 0 + ], + [ + -114.02694171760552, + 51.0483447611757, + 0 + ], + [ + -114.02696508634044, + 51.04833399508281, + 0 + ], + [ + -114.02698828470739, + 51.04832457748371, + 0 + ], + [ + -114.0270177113926, + 51.048310654586835, + 0 + ], + [ + -114.02704672850066, + 51.04829875446605, + 0 + ], + [ + -114.02707635779358, + 51.04828749246693, + 0 + ], + [ + -114.0271094371159, + 51.048274018187065, + 0 + ], + [ + -114.02713808223585, + 51.048262612564876, + 0 + ], + [ + -114.02716715575033, + 51.04825215974717, + 0 + ], + [ + -114.02719630079716, + 51.04824211144332, + 0 + ], + [ + -114.02722952507284, + 51.04823273641156, + 0 + ], + [ + -114.02725895332134, + 51.048221699156, + 0 + ], + [ + -114.02730244410789, + 51.048209121365566, + 0 + ], + [ + -114.0273377376304, + 51.04819961097369, + 0 + ], + [ + -114.02737832053319, + 51.04818964984588, + 0 + ], + [ + -114.02742132801097, + 51.04817986792973, + 0 + ], + [ + -114.02745525009777, + 51.04817134669412, + 0 + ], + [ + -114.02749175599986, + 51.04816457783792, + 0 + ], + [ + -114.02752476730626, + 51.04815700970751, + 0 + ], + [ + -114.02756069023121, + 51.04815082529929, + 0 + ], + [ + -114.02759805215476, + 51.048144649530066, + 0 + ], + [ + -114.02763534407065, + 51.04814067624877, + 0 + ], + [ + -114.02766871273377, + 51.04813693761727, + 0 + ], + [ + -114.02770315318804, + 51.048132057026805, + 0 + ], + [ + -114.02774058732561, + 51.04812745439721, + 0 + ], + [ + -114.02777087582707, + 51.04812434574852, + 0 + ], + [ + -114.02780824101153, + 51.04812131631608, + 0 + ], + [ + -114.02784788636181, + 51.04811783684204, + 0 + ], + [ + -114.02788603421416, + 51.048116704030896, + 0 + ], + [ + -114.02792726371291, + 51.04811507603595, + 0 + ], + [ + -114.02796356058656, + 51.048114258282176, + 0 + ], + [ + -114.02800292237168, + 51.04811357462882, + 0 + ], + [ + -114.02804472338866, + 51.048113699452486, + 0 + ], + [ + -114.02808451254727, + 51.048114588871506, + 0 + ], + [ + -114.02812145230853, + 51.048115613808505, + 0 + ], + [ + -114.02815981694795, + 51.04811686313372, + 0 + ], + [ + -114.0281949019305, + 51.04811897625145, + 0 + ], + [ + -114.02823162574009, + 51.04812134966491, + 0 + ], + [ + -114.02827856526983, + 51.048126201760645, + 0 + ], + [ + -114.02831630202962, + 51.048129168224456, + 0 + ], + [ + -114.02835324395353, + 51.04813370807131, + 0 + ], + [ + -114.02838888560497, + 51.04813887750327, + 0 + ], + [ + -114.02842461442559, + 51.048144316595, + 0 + ], + [ + -114.02845533748949, + 51.0481498917405, + 0 + ], + [ + -114.02848914075189, + 51.04815492674351, + 0 + ], + [ + -114.02852742445803, + 51.04816365542149, + 0 + ], + [ + -114.02856130001973, + 51.04817027257808, + 0 + ], + [ + -114.02859323758891, + 51.04817715090109, + 0 + ], + [ + -114.02862289028492, + 51.04818376907282, + 0 + ], + [ + -114.02865790922901, + 51.048191995082675, + 0 + ], + [ + -114.02869098622651, + 51.04820100366507, + 0 + ], + [ + -114.02872149914566, + 51.04821027357033, + 0 + ], + [ + -114.02875401998463, + 51.04821931823046, + 0 + ], + [ + -114.02878267768185, + 51.04822661083593, + 0 + ], + [ + -114.02881376004055, + 51.04823646490915, + 0 + ], + [ + -114.02884598351626, + 51.048246588384266, + 0 + ], + [ + -114.02887872040445, + 51.04825896814533, + 0 + ], + [ + -114.02890744981237, + 51.04826683604506, + 0 + ], + [ + -114.02893644946191, + 51.048278092998174, + 0 + ], + [ + -114.02896411196517, + 51.04829029419689, + 0 + ], + [ + -114.02899383965875, + 51.0483026207329, + 0 + ], + [ + -114.02902014480057, + 51.048313060268356, + 0 + ], + [ + -114.02904744965836, + 51.04832571102243, + 0 + ], + [ + -114.02908718049365, + 51.048342457994316, + 0 + ], + [ + -114.02911683859624, + 51.04835514410533, + 0 + ], + [ + -114.02914820582886, + 51.04836644536462, + 0 + ], + [ + -114.02917879322769, + 51.04838044372838, + 0 + ], + [ + -114.02920616805801, + 51.04839083800616, + 0 + ], + [ + -114.02923397197547, + 51.048403173951314, + 0 + ], + [ + -114.02925962058258, + 51.048414917107394, + 0 + ], + [ + -114.02928885081802, + 51.04842743247692, + 0 + ], + [ + -114.02931694007137, + 51.048439858228086, + 0 + ], + [ + -114.029344959281, + 51.04845200530849, + 0 + ], + [ + -114.02937318972737, + 51.04846438606194, + 0 + ], + [ + -114.02939884057287, + 51.048475050419526, + 0 + ], + [ + -114.02943099326443, + 51.04848778976147, + 0 + ], + [ + -114.02946129539886, + 51.04850148247215, + 0 + ], + [ + -114.0294878865649, + 51.04851282080263, + 0 + ], + [ + -114.02951875631501, + 51.04852421198492, + 0 + ], + [ + -114.02954877102479, + 51.048536628204126, + 0 + ], + [ + -114.02957928383657, + 51.048549592662944, + 0 + ], + [ + -114.0296143788171, + 51.048564533692854, + 0 + ], + [ + -114.02964546236733, + 51.048577857578834, + 0 + ], + [ + -114.02967727659963, + 51.048591900449125, + 0 + ], + [ + -114.02970914532203, + 51.04860414535139, + 0 + ], + [ + -114.02973987337491, + 51.04861679507299, + 0 + ], + [ + -114.02977017264777, + 51.04863020003275, + 0 + ], + [ + -114.02980462539149, + 51.04864424219623, + 0 + ], + [ + -114.02983464031875, + 51.04865675722873, + 0 + ], + [ + -114.02986551140584, + 51.04866994626428, + 0 + ], + [ + -114.02989524034233, + 51.048681238751335, + 0 + ], + [ + -114.02992668085797, + 51.04869496700867, + 0 + ], + [ + -114.02995605595795, + 51.04870820135187, + 0 + ], + [ + -114.02998906679755, + 51.04872201908715, + 0 + ], + [ + -114.03001859587327, + 51.04873511852917, + 0 + ], + [ + -114.030048454211, + 51.0487479032386, + 0 + ], + [ + -114.03008183707304, + 51.04876130732452, + 0 + ], + [ + -114.03011277867645, + 51.048773057920066, + 0 + ], + [ + -114.03014735684239, + 51.04878665046351, + 0 + ], + [ + -114.03017694661057, + 51.04880083760669, + 0 + ], + [ + -114.03020854346936, + 51.04881348698037, + 0 + ], + [ + -114.03023855928801, + 51.048827035727136, + 0 + ], + [ + -114.03027228502171, + 51.048841167837665, + 0 + ], + [ + -114.03030237215697, + 51.048854671600914, + 0 + ], + [ + -114.03033238808244, + 51.048868301231025, + 0 + ], + [ + -114.03036384307258, + 51.048879781934886, + 0 + ], + [ + -114.03039350240236, + 51.048893285785695, + 0 + ], + [ + -114.03043066267523, + 51.04890768664903, + 0 + ], + [ + -114.03045802727134, + 51.048921146132216, + 0 + ], + [ + -114.03049005433945, + 51.04893496398188, + 0 + ], + [ + -114.0305209974321, + 51.04894864725988, + 0 + ], + [ + -114.03055101381368, + 51.048962780258265, + 0 + ], + [ + -114.03058395170703, + 51.04897573483026, + 0 + ], + [ + -114.03061054348382, + 51.04898717179129, + 0 + ], + [ + -114.03064412709462, + 51.04900170836907, + 0 + ], + [ + -114.03067579834867, + 51.04901647018224, + 0 + ], + [ + -114.0307079528051, + 51.04902862483912, + 0 + ], + [ + -114.03073746905599, + 51.04904113977001, + 0 + ], + [ + -114.03077184777871, + 51.049052340913256, + 0 + ], + [ + -114.03080507035048, + 51.04906426152926, + 0 + ], + [ + -114.03083780984642, + 51.04907461805083, + 0 + ], + [ + -114.0308693201412, + 51.049083078055524, + 0 + ], + [ + -114.03090525018804, + 51.04909147395508, + 0 + ], + [ + -114.03094276508233, + 51.049098224304075, + 0 + ], + [ + -114.03097799502146, + 51.04910253903072, + 0 + ], + [ + -114.03101564789533, + 51.04910658341202, + 0 + ], + [ + -114.03105043564396, + 51.04910864181284, + 0 + ], + [ + -114.03108616299468, + 51.0491103044054, + 0 + ], + [ + -114.03112031982798, + 51.0491115538778, + 0 + ], + [ + -114.03115533275208, + 51.04911122990987, + 0 + ], + [ + -114.03119040232504, + 51.04911031259442, + 0 + ], + [ + -114.03122434493513, + 51.04910900002152, + 0 + ], + [ + -114.03125194012043, + 51.04910643057436, + 0 + ], + [ + -114.031280005554, + 51.04910327666265, + 0 + ], + [ + -114.03130791515862, + 51.04909957441257, + 0 + ], + [ + -114.03133605061346, + 51.04909663622205, + 0 + ], + [ + -114.03134998325449, + 51.049094708684436, + 0 + ], + [ + -114.03136384589534, + 51.049092610359125, + 0 + ], + [ + -114.03137764850716, + 51.04909032326404, + 0 + ], + [ + -114.03139969715932, + 51.04908770133251, + 0 + ], + [ + -114.0314102716212, + 51.04909708376582, + 0 + ], + [ + -114.03140561370377, + 51.04910558030906, + 0 + ], + [ + -114.03140105420438, + 51.049114094805105, + 0 + ], + [ + -114.03139668157162, + 51.04912266318917, + 0 + ], + [ + -114.03139255284134, + 51.04913126746639, + 0 + ], + [ + -114.03138904885711, + 51.04913997945245, + 0 + ], + [ + -114.03138601841793, + 51.04914876322902, + 0 + ], + [ + -114.03138337023518, + 51.04915760084123, + 0 + ], + [ + -114.03138122268362, + 51.049166492257335, + 0 + ], + [ + -114.03137960284914, + 51.049175419490574, + 0 + ], + [ + -114.03137842659235, + 51.04918439155336, + 0 + ], + [ + -114.03137793205845, + 51.049193363433076, + 0 + ], + [ + -114.03137909334225, + 51.0492023348683, + 0 + ], + [ + -114.03138036871034, + 51.0492112882934, + 0 + ], + [ + -114.03138298605445, + 51.04922012449168, + 0 + ], + [ + -114.03138790197198, + 51.04923460562089, + 0 + ], + [ + -114.0314056405684, + 51.0492528589902, + 0 + ], + [ + -114.03141409351934, + 51.04926740209584, + 0 + ], + [ + -114.0314239587166, + 51.04928028172177, + 0 + ], + [ + -114.0314362623644, + 51.04929473389317, + 0 + ], + [ + -114.03144954876505, + 51.0493093206447, + 0 + ], + [ + -114.03146499089326, + 51.049322872995866, + 0 + ], + [ + -114.03147993292038, + 51.04933714465775, + 0 + ], + [ + -114.0314970981892, + 51.04934898849251, + 0 + ], + [ + -114.03151460605481, + 51.04936127272896, + 0 + ], + [ + -114.03153533838, + 51.04937536302779, + 0 + ], + [ + -114.03155377269448, + 51.049386757025495, + 0 + ], + [ + -114.03157272053764, + 51.049398276737676, + 0 + ], + [ + -114.03159266686292, + 51.04940998496115, + 0 + ], + [ + -114.03161274338014, + 51.04942646669052, + 0 + ], + [ + -114.03163140865799, + 51.04944187003122, + 0 + ], + [ + -114.0316524293767, + 51.04945838745707, + 0 + ], + [ + -114.03166659175567, + 51.04947950048739, + 0 + ], + [ + -114.03168655522009, + 51.04949742958037, + 0 + ], + [ + -114.0317386298107, + 51.04954457555382, + 0 + ], + [ + -114.03178816624411, + 51.049592297536435, + 0 + ], + [ + -114.0318420030987, + 51.04964875633963, + 0 + ], + [ + -114.03190141158716, + 51.04972077481197, + 0 + ], + [ + -114.03193984165651, + 51.049773605923775, + 0 + ], + [ + -114.03196306244281, + 51.049805469950996, + 0 + ], + [ + -114.03198650881785, + 51.0498376449562, + 0 + ], + [ + -114.03203282990202, + 51.049896011547446, + 0 + ], + [ + -114.03206273255188, + 51.049929777746655, + 0 + ], + [ + -114.03211903308572, + 51.04998397932216, + 0 + ], + [ + -114.0321417673102, + 51.050002833516196, + 0 + ], + [ + -114.03214340565177, + 51.05005996276889, + 0 + ], + [ + -114.03214340613589, + 51.05006066216941, + 0 + ], + [ + -114.03214343638108, + 51.050114659843594, + 0 + ], + [ + -114.03214394451605, + 51.0509826742242, + 0 + ], + [ + -114.0321440300913, + 51.05098267420069, + 0 + ], + [ + -114.03243090892511, + 51.05098344987792, + 0 + ], + [ + -114.03243151757532, + 51.05224905163713, + 0 + ], + [ + -114.032431666791, + 51.05229728145252, + 0 + ], + [ + -114.03242614704902, + 51.05229730995309, + 0 + ], + [ + -114.03240271157375, + 51.05229727959429, + 0 + ], + [ + -114.03231115761226, + 51.052297162002105, + 0 + ], + [ + -114.03221411385385, + 51.05229706203286, + 0 + ], + [ + -114.03214666302782, + 51.052297196570464, + 0 + ], + [ + -114.0321406155454, + 51.052297209021184, + 0 + ], + [ + -114.03206437987821, + 51.05229692430863, + 0 + ], + [ + -114.03198483529414, + 51.052296765408975, + 0 + ], + [ + -114.03190564759434, + 51.052297057641766, + 0 + ], + [ + -114.03183581598613, + 51.05229676204216, + 0 + ], + [ + -114.03181611879371, + 51.05229667750816, + 0 + ], + [ + -114.03179545396533, + 51.052297787968044, + 0 + ], + [ + -114.03178026432005, + 51.05229836834011, + 0 + ], + [ + -114.03176310687206, + 51.052299657635025, + 0 + ], + [ + -114.03174544852384, + 51.052300552414664, + 0 + ], + [ + -114.03173251130141, + 51.05230157805901, + 0 + ], + [ + -114.03173088683995, + 51.05230170795197, + 0 + ], + [ + -114.03171872294138, + 51.052303132528465, + 0 + ], + [ + -114.0317062727797, + 51.052305176573114, + 0 + ], + [ + -114.03169410638768, + 51.05230712974333, + 0 + ], + [ + -114.03168371002754, + 51.052309083331494, + 0 + ], + [ + -114.03167534040197, + 51.052310992319875, + 0 + ], + [ + -114.03166260524632, + 51.052313431085906, + 0 + ], + [ + -114.03165494657607, + 51.05231631077014, + 0 + ], + [ + -114.0316448955852, + 51.052320664516934, + 0 + ], + [ + -114.03163357239124, + 51.052325098615746, + 0 + ], + [ + -114.03162513334337, + 51.05232979353399, + 0 + ], + [ + -114.03161683404629, + 51.052334452455, + 0 + ], + [ + -114.0316122001268, + 51.052336719118166, + 0 + ], + [ + -114.0316077672479, + 51.052338887738806, + 0 + ], + [ + -114.03159968183073, + 51.05234345670353, + 0 + ], + [ + -114.03159308245922, + 51.05234779962398, + 0 + ], + [ + -114.03158534062413, + 51.05235214465077, + 0 + ], + [ + -114.03157902574958, + 51.052357467373206, + 0 + ], + [ + -114.03157332260321, + 51.05236256698497, + 0 + ], + [ + -114.03156797842057, + 51.05236908507752, + 0 + ], + [ + -114.0315638478943, + 51.052375424845636, + 0 + ], + [ + -114.03156095684872, + 51.052381807429605, + 0 + ], + [ + -114.0315579379799, + 51.05238899103217, + 0 + ], + [ + -114.03155661540872, + 51.05239470885211, + 0 + ], + [ + -114.03155354033326, + 51.052426226746675, + 0 + ], + [ + -114.03140692875641, + 51.05242704204568, + 0 + ], + [ + -114.03109434333611, + 51.05242618259666, + 0 + ], + [ + -114.03099679715106, + 51.05242592892508, + 0 + ], + [ + -114.03049700395792, + 51.05242454832461, + 0 + ], + [ + -114.03049179234094, + 51.052424669247564, + 0 + ], + [ + -114.03032216093632, + 51.05242866615632, + 0 + ], + [ + -114.0303147657952, + 51.052418079081654, + 0 + ], + [ + -114.0303083701916, + 51.0524092159759, + 0 + ], + [ + -114.03030160293811, + 51.052399104293805, + 0 + ], + [ + -114.03029499309167, + 51.05238759017401, + 0 + ], + [ + -114.03028795195023, + 51.05237522304094, + 0 + ], + [ + -114.03028161321775, + 51.052363878755806, + 0 + ], + [ + -114.03027632697857, + 51.05235235530224, + 0 + ], + [ + -114.03027111296149, + 51.05234003174444, + 0 + ], + [ + -114.03026782779891, + 51.05233285070666, + 0 + ], + [ + -114.03026478545218, + 51.05232619820152, + 0 + ], + [ + -114.03026132806981, + 51.05231738107878, + 0 + ], + [ + -114.03026027250785, + 51.05231503413577, + 0 + ], + [ + -114.03025885694883, + 51.052309622689826, + 0 + ], + [ + -114.03025632761477, + 51.052302269752325, + 0 + ], + [ + -114.03025392525983, + 51.05229278621787, + 0 + ], + [ + -114.03025132228451, + 51.05228404888217, + 0 + ], + [ + -114.03024857895944, + 51.05227443058999, + 0 + ], + [ + -114.03024702066236, + 51.0522688483761, + 0 + ], + [ + -114.0302459587251, + 51.052261090521114, + 0 + ], + [ + -114.03024511612611, + 51.052257234148556, + 0 + ], + [ + -114.03023006867089, + 51.052257149042994, + 0 + ], + [ + -114.03022707628061, + 51.05225710936311, + 0 + ], + [ + -114.03022608297, + 51.05224302542302, + 0 + ], + [ + -114.03022599369775, + 51.05224173182518, + 0 + ], + [ + -114.03022351429739, + 51.05222342939293, + 0 + ], + [ + -114.03022088961353, + 51.05220104566444, + 0 + ], + [ + -114.03019334667272, + 51.05220133146383, + 0 + ], + [ + -114.0301515006613, + 51.05220128922641, + 0 + ], + [ + -114.03011662633426, + 51.05220119843134, + 0 + ], + [ + -114.0301160122537, + 51.05220220274149, + 0 + ], + [ + -114.03007342109171, + 51.05219899269019, + 0 + ], + [ + -114.03004416158298, + 51.05221577143951, + 0 + ], + [ + -114.02997631832292, + 51.05223088260091, + 0 + ], + [ + -114.02990447722985, + 51.052235093809244, + 0 + ], + [ + -114.02979271808536, + 51.05223428450657, + 0 + ], + [ + -114.02958118642908, + 51.052232750647036, + 0 + ], + [ + -114.029275179558, + 51.05223053171497, + 0 + ], + [ + -114.02909285569545, + 51.05222920900182, + 0 + ], + [ + -114.02871525003529, + 51.05222871534896, + 0 + ], + [ + -114.02871526541152, + 51.05222820922389, + 0 + ], + [ + -114.0287124595658, + 51.05222767951961, + 0 + ], + [ + -114.02853848727915, + 51.05222733916341, + 0 + ] + ] + ] + ] + } + } + ] +} \ No newline at end of file diff --git a/packages/turf-center/test/in/box.geojson b/packages/turf-center/test/in/box.geojson new file mode 100644 index 0000000000..717952c76e --- /dev/null +++ b/packages/turf-center/test/in/box.geojson @@ -0,0 +1,36 @@ +{ + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 60.46875, + 39.90973623453719 + ], + [ + 60.46875, + 47.27922900257082 + ], + [ + 70.6640625, + 47.27922900257082 + ], + [ + 70.6640625, + 39.90973623453719 + ], + [ + 60.46875, + 39.90973623453719 + ] + ] + ] + } + } + ] +} \ No newline at end of file diff --git a/packages/turf-center/test/out/block_out.geojson b/packages/turf-center/test/out/block_out.geojson new file mode 100644 index 0000000000..96c356063c --- /dev/null +++ b/packages/turf-center/test/out/block_out.geojson @@ -0,0 +1,2089 @@ +{ + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "properties": { + "NAME": "BAD!", + "id": 2 + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + -114.02853848727915, + 51.05222733916341, + 0 + ], + [ + -114.02853676996496, + 51.05222956633674, + 0 + ], + [ + -114.0284782312623, + 51.05223293467901, + 0 + ], + [ + -114.0284143755573, + 51.052241335831816, + 0 + ], + [ + -114.02835656968043, + 51.052248940790804, + 0 + ], + [ + -114.02828534111467, + 51.05227323299448, + 0 + ], + [ + -114.0282156710913, + 51.05229699258692, + 0 + ], + [ + -114.0281962336843, + 51.0523277610035, + 0 + ], + [ + -114.02815900050712, + 51.05235879710403, + 0 + ], + [ + -114.02813959317129, + 51.052366330669564, + 0 + ], + [ + -114.02810655562794, + 51.052365963747086, + 0 + ], + [ + -114.02687798671556, + 51.05235233033196, + 0 + ], + [ + -114.02681641023835, + 51.0523516468729, + 0 + ], + [ + -114.02619436981905, + 51.05234473728991, + 0 + ], + [ + -114.02590810605851, + 51.05234155670112, + 0 + ], + [ + -114.02582271173839, + 51.05234060650583, + 0 + ], + [ + -114.02581967798437, + 51.05234056762124, + 0 + ], + [ + -114.02579801668524, + 51.052340322489854, + 0 + ], + [ + -114.02579800949681, + 51.05234022000866, + 0 + ], + [ + -114.02579756134502, + 51.05233712224951, + 0 + ], + [ + -114.02579649758837, + 51.05231961949656, + 0 + ], + [ + -114.02579627559044, + 51.05230769018514, + 0 + ], + [ + -114.02579972340646, + 51.05229825021657, + 0 + ], + [ + -114.02580315703548, + 51.052291516157204, + 0 + ], + [ + -114.02580864319621, + 51.05228495244925, + 0 + ], + [ + -114.02581834152556, + 51.052281534213236, + 0 + ], + [ + -114.0258333304282, + 51.05228148595286, + 0 + ], + [ + -114.0258501053066, + 51.05228189577139, + 0 + ], + [ + -114.02585929068253, + 51.05228196565738, + 0 + ], + [ + -114.02585936675247, + 51.05219062107913, + 0 + ], + [ + -114.02585882417081, + 51.052087113542605, + 0 + ], + [ + -114.02585864554656, + 51.05201991541086, + 0 + ], + [ + -114.02585845900856, + 51.051941066600264, + 0 + ], + [ + -114.02585840413089, + 51.051842521278104, + 0 + ], + [ + -114.02585893303171, + 51.05177036066027, + 0 + ], + [ + -114.02585819012062, + 51.05171433687466, + 0 + ], + [ + -114.02585814803447, + 51.051638760287, + 0 + ], + [ + -114.02585832860497, + 51.05157883475622, + 0 + ], + [ + -114.02585858204594, + 51.05152426708346, + 0 + ], + [ + -114.02585868836341, + 51.05145906460062, + 0 + ], + [ + -114.02585872827828, + 51.051402681049964, + 0 + ], + [ + -114.02585891738224, + 51.05135552092149, + 0 + ], + [ + -114.02585966418636, + 51.051313538749746, + 0 + ], + [ + -114.02585943637429, + 51.05128862827753, + 0 + ], + [ + -114.02585964520746, + 51.051279458713765, + 0 + ], + [ + -114.0258599227359, + 51.05126814958072, + 0 + ], + [ + -114.02586111644571, + 51.05125777517606, + 0 + ], + [ + -114.02586236331656, + 51.051245539887, + 0 + ], + [ + -114.02586314048085, + 51.05123246865757, + 0 + ], + [ + -114.02586376129662, + 51.051220368352745, + 0 + ], + [ + -114.0258648107258, + 51.05120702737131, + 0 + ], + [ + -114.02586726534908, + 51.05118659318722, + 0 + ], + [ + -114.0258700640584, + 51.05116424411576, + 0 + ], + [ + -114.02587349962914, + 51.05113556613796, + 0 + ], + [ + -114.02587553127502, + 51.0511213799048, + 0 + ], + [ + -114.02587797416493, + 51.05110294144136, + 0 + ], + [ + -114.02587972028591, + 51.05108826982617, + 0 + ], + [ + -114.02588330321605, + 51.05106810508318, + 0 + ], + [ + -114.02588834981965, + 51.05103831202199, + 0 + ], + [ + -114.0258950768062, + 51.05100387090113, + 0 + ], + [ + -114.02590174436081, + 51.05096517765356, + 0 + ], + [ + -114.02591885738768, + 51.05088489562782, + 0 + ], + [ + -114.02594094628232, + 51.050776070120975, + 0 + ], + [ + -114.025951983753, + 51.05072200347114, + 0 + ], + [ + -114.02597162011031, + 51.050617080040205, + 0 + ], + [ + -114.0259994545431, + 51.050476735266955, + 0 + ], + [ + -114.0260273756664, + 51.050341226936204, + 0 + ], + [ + -114.02605311914421, + 51.05021400760727, + 0 + ], + [ + -114.02608987071933, + 51.05003203838802, + 0 + ], + [ + -114.02611764641966, + 51.049892493671095, + 0 + ], + [ + -114.02615480981105, + 51.04971078503134, + 0 + ], + [ + -114.02618301698372, + 51.04957579798556, + 0 + ], + [ + -114.02620206017127, + 51.04948047565529, + 0 + ], + [ + -114.02620469006344, + 51.049465246470035, + 0 + ], + [ + -114.02620859998908, + 51.049443724189494, + 0 + ], + [ + -114.02621295182708, + 51.049421833230866, + 0 + ], + [ + -114.02621908662641, + 51.04940031045083, + 0 + ], + [ + -114.02622286616618, + 51.049375219277586, + 0 + ], + [ + -114.0262275742883, + 51.04935287875192, + 0 + ], + [ + -114.026231553306, + 51.049329990016304, + 0 + ], + [ + -114.02623626004808, + 51.04930522226438, + 0 + ], + [ + -114.02624075458581, + 51.04928099394336, + 0 + ], + [ + -114.0262463749725, + 51.04926031631113, + 0 + ], + [ + -114.02625122539195, + 51.049237445358266, + 0 + ], + [ + -114.02625586360266, + 51.049215104846645, + 0 + ], + [ + -114.02626055409311, + 51.0491893841859, + 0 + ], + [ + -114.02626476390105, + 51.04916609984871, + 0 + ], + [ + -114.02626911522896, + 51.04914339981167, + 0 + ], + [ + -114.02627501805078, + 51.04911529660006, + 0 + ], + [ + -114.02628122143842, + 51.049091607276104, + 0 + ], + [ + -114.02628507355737, + 51.049068862401796, + 0 + ], + [ + -114.02628956858115, + 51.04904557799908, + 0 + ], + [ + -114.02629413432885, + 51.04902378587484, + 0 + ], + [ + -114.02630119381803, + 51.049000815534995, + 0 + ], + [ + -114.0263088968188, + 51.0489783844334, + 0 + ], + [ + -114.02631653031078, + 51.04895662757635, + 0 + ], + [ + -114.02632494703467, + 51.048935329018384, + 0 + ], + [ + -114.02633314762629, + 51.04891267305969, + 0 + ], + [ + -114.02634728207038, + 51.048886590677014, + 0 + ], + [ + -114.0263606327145, + 51.04886411334974, + 0 + ], + [ + -114.02636961847627, + 51.0488428596085, + 0 + ], + [ + -114.02638396943712, + 51.04882140688156, + 0 + ], + [ + -114.02639454054278, + 51.048801681034, + 0 + ], + [ + -114.02640616643501, + 51.048783438252045, + 0 + ], + [ + -114.02641859465822, + 51.04876664263357, + 0 + ], + [ + -114.0264325161235, + 51.04874740147032, + 0 + ], + [ + -114.02644616976673, + 51.04872870873929, + 0 + ], + [ + -114.02646064801543, + 51.0487105102549, + 0 + ], + [ + -114.02648071597413, + 51.048685694063245, + 0 + ], + [ + -114.02649821814065, + 51.04866825901578, + 0 + ], + [ + -114.02651813064908, + 51.04864601391472, + 0 + ], + [ + -114.02653819800861, + 51.048625243090314, + 0 + ], + [ + -114.02655469129894, + 51.04860939045524, + 0 + ], + [ + -114.02657347862952, + 51.04859235964199, + 0 + ], + [ + -114.02659440380143, + 51.04857285616423, + 0 + ], + [ + -114.02661431882035, + 51.04855763202293, + 0 + ], + [ + -114.02664610668305, + 51.04853230970824, + 0 + ], + [ + -114.02666317202666, + 51.04851933363995, + 0 + ], + [ + -114.02668009352848, + 51.048506726180804, + 0 + ], + [ + -114.02670273114173, + 51.04848915508388, + 0 + ], + [ + -114.02672251806953, + 51.04847451528545, + 0 + ], + [ + -114.02674287662042, + 51.04846189804154, + 0 + ], + [ + -114.02676480195989, + 51.04844581939018, + 0 + ], + [ + -114.02679057792847, + 51.04842968591376, + 0 + ], + [ + -114.02681221880559, + 51.04841500072638, + 0 + ], + [ + -114.02683321760675, + 51.04840229342244, + 0 + ], + [ + -114.02686071972396, + 51.04838706749661, + 0 + ], + [ + -114.02688464400437, + 51.04837508767899, + 0 + ], + [ + -114.02691642312023, + 51.048357289694074, + 0 + ], + [ + -114.02694171760552, + 51.0483447611757, + 0 + ], + [ + -114.02696508634044, + 51.04833399508281, + 0 + ], + [ + -114.02698828470739, + 51.04832457748371, + 0 + ], + [ + -114.0270177113926, + 51.048310654586835, + 0 + ], + [ + -114.02704672850066, + 51.04829875446605, + 0 + ], + [ + -114.02707635779358, + 51.04828749246693, + 0 + ], + [ + -114.0271094371159, + 51.048274018187065, + 0 + ], + [ + -114.02713808223585, + 51.048262612564876, + 0 + ], + [ + -114.02716715575033, + 51.04825215974717, + 0 + ], + [ + -114.02719630079716, + 51.04824211144332, + 0 + ], + [ + -114.02722952507284, + 51.04823273641156, + 0 + ], + [ + -114.02725895332134, + 51.048221699156, + 0 + ], + [ + -114.02730244410789, + 51.048209121365566, + 0 + ], + [ + -114.0273377376304, + 51.04819961097369, + 0 + ], + [ + -114.02737832053319, + 51.04818964984588, + 0 + ], + [ + -114.02742132801097, + 51.04817986792973, + 0 + ], + [ + -114.02745525009777, + 51.04817134669412, + 0 + ], + [ + -114.02749175599986, + 51.04816457783792, + 0 + ], + [ + -114.02752476730626, + 51.04815700970751, + 0 + ], + [ + -114.02756069023121, + 51.04815082529929, + 0 + ], + [ + -114.02759805215476, + 51.048144649530066, + 0 + ], + [ + -114.02763534407065, + 51.04814067624877, + 0 + ], + [ + -114.02766871273377, + 51.04813693761727, + 0 + ], + [ + -114.02770315318804, + 51.048132057026805, + 0 + ], + [ + -114.02774058732561, + 51.04812745439721, + 0 + ], + [ + -114.02777087582707, + 51.04812434574852, + 0 + ], + [ + -114.02780824101153, + 51.04812131631608, + 0 + ], + [ + -114.02784788636181, + 51.04811783684204, + 0 + ], + [ + -114.02788603421416, + 51.048116704030896, + 0 + ], + [ + -114.02792726371291, + 51.04811507603595, + 0 + ], + [ + -114.02796356058656, + 51.048114258282176, + 0 + ], + [ + -114.02800292237168, + 51.04811357462882, + 0 + ], + [ + -114.02804472338866, + 51.048113699452486, + 0 + ], + [ + -114.02808451254727, + 51.048114588871506, + 0 + ], + [ + -114.02812145230853, + 51.048115613808505, + 0 + ], + [ + -114.02815981694795, + 51.04811686313372, + 0 + ], + [ + -114.0281949019305, + 51.04811897625145, + 0 + ], + [ + -114.02823162574009, + 51.04812134966491, + 0 + ], + [ + -114.02827856526983, + 51.048126201760645, + 0 + ], + [ + -114.02831630202962, + 51.048129168224456, + 0 + ], + [ + -114.02835324395353, + 51.04813370807131, + 0 + ], + [ + -114.02838888560497, + 51.04813887750327, + 0 + ], + [ + -114.02842461442559, + 51.048144316595, + 0 + ], + [ + -114.02845533748949, + 51.0481498917405, + 0 + ], + [ + -114.02848914075189, + 51.04815492674351, + 0 + ], + [ + -114.02852742445803, + 51.04816365542149, + 0 + ], + [ + -114.02856130001973, + 51.04817027257808, + 0 + ], + [ + -114.02859323758891, + 51.04817715090109, + 0 + ], + [ + -114.02862289028492, + 51.04818376907282, + 0 + ], + [ + -114.02865790922901, + 51.048191995082675, + 0 + ], + [ + -114.02869098622651, + 51.04820100366507, + 0 + ], + [ + -114.02872149914566, + 51.04821027357033, + 0 + ], + [ + -114.02875401998463, + 51.04821931823046, + 0 + ], + [ + -114.02878267768185, + 51.04822661083593, + 0 + ], + [ + -114.02881376004055, + 51.04823646490915, + 0 + ], + [ + -114.02884598351626, + 51.048246588384266, + 0 + ], + [ + -114.02887872040445, + 51.04825896814533, + 0 + ], + [ + -114.02890744981237, + 51.04826683604506, + 0 + ], + [ + -114.02893644946191, + 51.048278092998174, + 0 + ], + [ + -114.02896411196517, + 51.04829029419689, + 0 + ], + [ + -114.02899383965875, + 51.0483026207329, + 0 + ], + [ + -114.02902014480057, + 51.048313060268356, + 0 + ], + [ + -114.02904744965836, + 51.04832571102243, + 0 + ], + [ + -114.02908718049365, + 51.048342457994316, + 0 + ], + [ + -114.02911683859624, + 51.04835514410533, + 0 + ], + [ + -114.02914820582886, + 51.04836644536462, + 0 + ], + [ + -114.02917879322769, + 51.04838044372838, + 0 + ], + [ + -114.02920616805801, + 51.04839083800616, + 0 + ], + [ + -114.02923397197547, + 51.048403173951314, + 0 + ], + [ + -114.02925962058258, + 51.048414917107394, + 0 + ], + [ + -114.02928885081802, + 51.04842743247692, + 0 + ], + [ + -114.02931694007137, + 51.048439858228086, + 0 + ], + [ + -114.029344959281, + 51.04845200530849, + 0 + ], + [ + -114.02937318972737, + 51.04846438606194, + 0 + ], + [ + -114.02939884057287, + 51.048475050419526, + 0 + ], + [ + -114.02943099326443, + 51.04848778976147, + 0 + ], + [ + -114.02946129539886, + 51.04850148247215, + 0 + ], + [ + -114.0294878865649, + 51.04851282080263, + 0 + ], + [ + -114.02951875631501, + 51.04852421198492, + 0 + ], + [ + -114.02954877102479, + 51.048536628204126, + 0 + ], + [ + -114.02957928383657, + 51.048549592662944, + 0 + ], + [ + -114.0296143788171, + 51.048564533692854, + 0 + ], + [ + -114.02964546236733, + 51.048577857578834, + 0 + ], + [ + -114.02967727659963, + 51.048591900449125, + 0 + ], + [ + -114.02970914532203, + 51.04860414535139, + 0 + ], + [ + -114.02973987337491, + 51.04861679507299, + 0 + ], + [ + -114.02977017264777, + 51.04863020003275, + 0 + ], + [ + -114.02980462539149, + 51.04864424219623, + 0 + ], + [ + -114.02983464031875, + 51.04865675722873, + 0 + ], + [ + -114.02986551140584, + 51.04866994626428, + 0 + ], + [ + -114.02989524034233, + 51.048681238751335, + 0 + ], + [ + -114.02992668085797, + 51.04869496700867, + 0 + ], + [ + -114.02995605595795, + 51.04870820135187, + 0 + ], + [ + -114.02998906679755, + 51.04872201908715, + 0 + ], + [ + -114.03001859587327, + 51.04873511852917, + 0 + ], + [ + -114.030048454211, + 51.0487479032386, + 0 + ], + [ + -114.03008183707304, + 51.04876130732452, + 0 + ], + [ + -114.03011277867645, + 51.048773057920066, + 0 + ], + [ + -114.03014735684239, + 51.04878665046351, + 0 + ], + [ + -114.03017694661057, + 51.04880083760669, + 0 + ], + [ + -114.03020854346936, + 51.04881348698037, + 0 + ], + [ + -114.03023855928801, + 51.048827035727136, + 0 + ], + [ + -114.03027228502171, + 51.048841167837665, + 0 + ], + [ + -114.03030237215697, + 51.048854671600914, + 0 + ], + [ + -114.03033238808244, + 51.048868301231025, + 0 + ], + [ + -114.03036384307258, + 51.048879781934886, + 0 + ], + [ + -114.03039350240236, + 51.048893285785695, + 0 + ], + [ + -114.03043066267523, + 51.04890768664903, + 0 + ], + [ + -114.03045802727134, + 51.048921146132216, + 0 + ], + [ + -114.03049005433945, + 51.04893496398188, + 0 + ], + [ + -114.0305209974321, + 51.04894864725988, + 0 + ], + [ + -114.03055101381368, + 51.048962780258265, + 0 + ], + [ + -114.03058395170703, + 51.04897573483026, + 0 + ], + [ + -114.03061054348382, + 51.04898717179129, + 0 + ], + [ + -114.03064412709462, + 51.04900170836907, + 0 + ], + [ + -114.03067579834867, + 51.04901647018224, + 0 + ], + [ + -114.0307079528051, + 51.04902862483912, + 0 + ], + [ + -114.03073746905599, + 51.04904113977001, + 0 + ], + [ + -114.03077184777871, + 51.049052340913256, + 0 + ], + [ + -114.03080507035048, + 51.04906426152926, + 0 + ], + [ + -114.03083780984642, + 51.04907461805083, + 0 + ], + [ + -114.0308693201412, + 51.049083078055524, + 0 + ], + [ + -114.03090525018804, + 51.04909147395508, + 0 + ], + [ + -114.03094276508233, + 51.049098224304075, + 0 + ], + [ + -114.03097799502146, + 51.04910253903072, + 0 + ], + [ + -114.03101564789533, + 51.04910658341202, + 0 + ], + [ + -114.03105043564396, + 51.04910864181284, + 0 + ], + [ + -114.03108616299468, + 51.0491103044054, + 0 + ], + [ + -114.03112031982798, + 51.0491115538778, + 0 + ], + [ + -114.03115533275208, + 51.04911122990987, + 0 + ], + [ + -114.03119040232504, + 51.04911031259442, + 0 + ], + [ + -114.03122434493513, + 51.04910900002152, + 0 + ], + [ + -114.03125194012043, + 51.04910643057436, + 0 + ], + [ + -114.031280005554, + 51.04910327666265, + 0 + ], + [ + -114.03130791515862, + 51.04909957441257, + 0 + ], + [ + -114.03133605061346, + 51.04909663622205, + 0 + ], + [ + -114.03134998325449, + 51.049094708684436, + 0 + ], + [ + -114.03136384589534, + 51.049092610359125, + 0 + ], + [ + -114.03137764850716, + 51.04909032326404, + 0 + ], + [ + -114.03139969715932, + 51.04908770133251, + 0 + ], + [ + -114.0314102716212, + 51.04909708376582, + 0 + ], + [ + -114.03140561370377, + 51.04910558030906, + 0 + ], + [ + -114.03140105420438, + 51.049114094805105, + 0 + ], + [ + -114.03139668157162, + 51.04912266318917, + 0 + ], + [ + -114.03139255284134, + 51.04913126746639, + 0 + ], + [ + -114.03138904885711, + 51.04913997945245, + 0 + ], + [ + -114.03138601841793, + 51.04914876322902, + 0 + ], + [ + -114.03138337023518, + 51.04915760084123, + 0 + ], + [ + -114.03138122268362, + 51.049166492257335, + 0 + ], + [ + -114.03137960284914, + 51.049175419490574, + 0 + ], + [ + -114.03137842659235, + 51.04918439155336, + 0 + ], + [ + -114.03137793205845, + 51.049193363433076, + 0 + ], + [ + -114.03137909334225, + 51.0492023348683, + 0 + ], + [ + -114.03138036871034, + 51.0492112882934, + 0 + ], + [ + -114.03138298605445, + 51.04922012449168, + 0 + ], + [ + -114.03138790197198, + 51.04923460562089, + 0 + ], + [ + -114.0314056405684, + 51.0492528589902, + 0 + ], + [ + -114.03141409351934, + 51.04926740209584, + 0 + ], + [ + -114.0314239587166, + 51.04928028172177, + 0 + ], + [ + -114.0314362623644, + 51.04929473389317, + 0 + ], + [ + -114.03144954876505, + 51.0493093206447, + 0 + ], + [ + -114.03146499089326, + 51.049322872995866, + 0 + ], + [ + -114.03147993292038, + 51.04933714465775, + 0 + ], + [ + -114.0314970981892, + 51.04934898849251, + 0 + ], + [ + -114.03151460605481, + 51.04936127272896, + 0 + ], + [ + -114.03153533838, + 51.04937536302779, + 0 + ], + [ + -114.03155377269448, + 51.049386757025495, + 0 + ], + [ + -114.03157272053764, + 51.049398276737676, + 0 + ], + [ + -114.03159266686292, + 51.04940998496115, + 0 + ], + [ + -114.03161274338014, + 51.04942646669052, + 0 + ], + [ + -114.03163140865799, + 51.04944187003122, + 0 + ], + [ + -114.0316524293767, + 51.04945838745707, + 0 + ], + [ + -114.03166659175567, + 51.04947950048739, + 0 + ], + [ + -114.03168655522009, + 51.04949742958037, + 0 + ], + [ + -114.0317386298107, + 51.04954457555382, + 0 + ], + [ + -114.03178816624411, + 51.049592297536435, + 0 + ], + [ + -114.0318420030987, + 51.04964875633963, + 0 + ], + [ + -114.03190141158716, + 51.04972077481197, + 0 + ], + [ + -114.03193984165651, + 51.049773605923775, + 0 + ], + [ + -114.03196306244281, + 51.049805469950996, + 0 + ], + [ + -114.03198650881785, + 51.0498376449562, + 0 + ], + [ + -114.03203282990202, + 51.049896011547446, + 0 + ], + [ + -114.03206273255188, + 51.049929777746655, + 0 + ], + [ + -114.03211903308572, + 51.04998397932216, + 0 + ], + [ + -114.0321417673102, + 51.050002833516196, + 0 + ], + [ + -114.03214340565177, + 51.05005996276889, + 0 + ], + [ + -114.03214340613589, + 51.05006066216941, + 0 + ], + [ + -114.03214343638108, + 51.050114659843594, + 0 + ], + [ + -114.03214394451605, + 51.0509826742242, + 0 + ], + [ + -114.0321440300913, + 51.05098267420069, + 0 + ], + [ + -114.03243090892511, + 51.05098344987792, + 0 + ], + [ + -114.03243151757532, + 51.05224905163713, + 0 + ], + [ + -114.032431666791, + 51.05229728145252, + 0 + ], + [ + -114.03242614704902, + 51.05229730995309, + 0 + ], + [ + -114.03240271157375, + 51.05229727959429, + 0 + ], + [ + -114.03231115761226, + 51.052297162002105, + 0 + ], + [ + -114.03221411385385, + 51.05229706203286, + 0 + ], + [ + -114.03214666302782, + 51.052297196570464, + 0 + ], + [ + -114.0321406155454, + 51.052297209021184, + 0 + ], + [ + -114.03206437987821, + 51.05229692430863, + 0 + ], + [ + -114.03198483529414, + 51.052296765408975, + 0 + ], + [ + -114.03190564759434, + 51.052297057641766, + 0 + ], + [ + -114.03183581598613, + 51.05229676204216, + 0 + ], + [ + -114.03181611879371, + 51.05229667750816, + 0 + ], + [ + -114.03179545396533, + 51.052297787968044, + 0 + ], + [ + -114.03178026432005, + 51.05229836834011, + 0 + ], + [ + -114.03176310687206, + 51.052299657635025, + 0 + ], + [ + -114.03174544852384, + 51.052300552414664, + 0 + ], + [ + -114.03173251130141, + 51.05230157805901, + 0 + ], + [ + -114.03173088683995, + 51.05230170795197, + 0 + ], + [ + -114.03171872294138, + 51.052303132528465, + 0 + ], + [ + -114.0317062727797, + 51.052305176573114, + 0 + ], + [ + -114.03169410638768, + 51.05230712974333, + 0 + ], + [ + -114.03168371002754, + 51.052309083331494, + 0 + ], + [ + -114.03167534040197, + 51.052310992319875, + 0 + ], + [ + -114.03166260524632, + 51.052313431085906, + 0 + ], + [ + -114.03165494657607, + 51.05231631077014, + 0 + ], + [ + -114.0316448955852, + 51.052320664516934, + 0 + ], + [ + -114.03163357239124, + 51.052325098615746, + 0 + ], + [ + -114.03162513334337, + 51.05232979353399, + 0 + ], + [ + -114.03161683404629, + 51.052334452455, + 0 + ], + [ + -114.0316122001268, + 51.052336719118166, + 0 + ], + [ + -114.0316077672479, + 51.052338887738806, + 0 + ], + [ + -114.03159968183073, + 51.05234345670353, + 0 + ], + [ + -114.03159308245922, + 51.05234779962398, + 0 + ], + [ + -114.03158534062413, + 51.05235214465077, + 0 + ], + [ + -114.03157902574958, + 51.052357467373206, + 0 + ], + [ + -114.03157332260321, + 51.05236256698497, + 0 + ], + [ + -114.03156797842057, + 51.05236908507752, + 0 + ], + [ + -114.0315638478943, + 51.052375424845636, + 0 + ], + [ + -114.03156095684872, + 51.052381807429605, + 0 + ], + [ + -114.0315579379799, + 51.05238899103217, + 0 + ], + [ + -114.03155661540872, + 51.05239470885211, + 0 + ], + [ + -114.03155354033326, + 51.052426226746675, + 0 + ], + [ + -114.03140692875641, + 51.05242704204568, + 0 + ], + [ + -114.03109434333611, + 51.05242618259666, + 0 + ], + [ + -114.03099679715106, + 51.05242592892508, + 0 + ], + [ + -114.03049700395792, + 51.05242454832461, + 0 + ], + [ + -114.03049179234094, + 51.052424669247564, + 0 + ], + [ + -114.03032216093632, + 51.05242866615632, + 0 + ], + [ + -114.0303147657952, + 51.052418079081654, + 0 + ], + [ + -114.0303083701916, + 51.0524092159759, + 0 + ], + [ + -114.03030160293811, + 51.052399104293805, + 0 + ], + [ + -114.03029499309167, + 51.05238759017401, + 0 + ], + [ + -114.03028795195023, + 51.05237522304094, + 0 + ], + [ + -114.03028161321775, + 51.052363878755806, + 0 + ], + [ + -114.03027632697857, + 51.05235235530224, + 0 + ], + [ + -114.03027111296149, + 51.05234003174444, + 0 + ], + [ + -114.03026782779891, + 51.05233285070666, + 0 + ], + [ + -114.03026478545218, + 51.05232619820152, + 0 + ], + [ + -114.03026132806981, + 51.05231738107878, + 0 + ], + [ + -114.03026027250785, + 51.05231503413577, + 0 + ], + [ + -114.03025885694883, + 51.052309622689826, + 0 + ], + [ + -114.03025632761477, + 51.052302269752325, + 0 + ], + [ + -114.03025392525983, + 51.05229278621787, + 0 + ], + [ + -114.03025132228451, + 51.05228404888217, + 0 + ], + [ + -114.03024857895944, + 51.05227443058999, + 0 + ], + [ + -114.03024702066236, + 51.0522688483761, + 0 + ], + [ + -114.0302459587251, + 51.052261090521114, + 0 + ], + [ + -114.03024511612611, + 51.052257234148556, + 0 + ], + [ + -114.03023006867089, + 51.052257149042994, + 0 + ], + [ + -114.03022707628061, + 51.05225710936311, + 0 + ], + [ + -114.03022608297, + 51.05224302542302, + 0 + ], + [ + -114.03022599369775, + 51.05224173182518, + 0 + ], + [ + -114.03022351429739, + 51.05222342939293, + 0 + ], + [ + -114.03022088961353, + 51.05220104566444, + 0 + ], + [ + -114.03019334667272, + 51.05220133146383, + 0 + ], + [ + -114.0301515006613, + 51.05220128922641, + 0 + ], + [ + -114.03011662633426, + 51.05220119843134, + 0 + ], + [ + -114.0301160122537, + 51.05220220274149, + 0 + ], + [ + -114.03007342109171, + 51.05219899269019, + 0 + ], + [ + -114.03004416158298, + 51.05221577143951, + 0 + ], + [ + -114.02997631832292, + 51.05223088260091, + 0 + ], + [ + -114.02990447722985, + 51.052235093809244, + 0 + ], + [ + -114.02979271808536, + 51.05223428450657, + 0 + ], + [ + -114.02958118642908, + 51.052232750647036, + 0 + ], + [ + -114.029275179558, + 51.05223053171497, + 0 + ], + [ + -114.02909285569545, + 51.05222920900182, + 0 + ], + [ + -114.02871525003529, + 51.05222871534896, + 0 + ], + [ + -114.02871526541152, + 51.05222820922389, + 0 + ], + [ + -114.0287124595658, + 51.05222767951961, + 0 + ], + [ + -114.02853848727915, + 51.05222733916341, + 0 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "marker-color": "#f0f" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -114.02911397119072, + 51.050271120392566 + ] + } + } + ] +} \ No newline at end of file diff --git a/packages/turf-center/test/out/box_out.geojson b/packages/turf-center/test/out/box_out.geojson new file mode 100644 index 0000000000..90beb831c3 --- /dev/null +++ b/packages/turf-center/test/out/box_out.geojson @@ -0,0 +1,49 @@ +{ + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 60.46875, + 39.90973623453719 + ], + [ + 60.46875, + 47.27922900257082 + ], + [ + 70.6640625, + 47.27922900257082 + ], + [ + 70.6640625, + 39.90973623453719 + ], + [ + 60.46875, + 39.90973623453719 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "marker-color": "#f0f" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 65.56640625, + 43.59448261855401 + ] + } + } + ] +} \ No newline at end of file diff --git a/packages/turf-centroid/.npmignore b/packages/turf-centroid/.npmignore new file mode 100644 index 0000000000..bb3c08c09a --- /dev/null +++ b/packages/turf-centroid/.npmignore @@ -0,0 +1,2 @@ +test +coverage diff --git a/packages/turf-centroid/LICENSE b/packages/turf-centroid/LICENSE new file mode 100644 index 0000000000..64fb8e99a3 --- /dev/null +++ b/packages/turf-centroid/LICENSE @@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) 2014 Morgan Herlocker + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. \ No newline at end of file diff --git a/packages/turf-centroid/README.md b/packages/turf-centroid/README.md new file mode 100644 index 0000000000..6d83d4c8c3 --- /dev/null +++ b/packages/turf-centroid/README.md @@ -0,0 +1,67 @@ +# turf-centroid + +[![build status](https://secure.travis-ci.org/Turfjs/turf-centroid.png)](http://travis-ci.org/Turfjs/turf-centroid) + +turf centroid module + + +### `turf.centroid(features)` + +Takes one or more features and calculates the centroid using the arithmetic mean of all vertices. +This lessens the effect of small islands and artifacts when calculating +the centroid of a set of polygons. + + +### Parameters + +| parameter | type | description | +| ---------- | -------------------------- | -------------- | +| `features` | Feature\,FeatureCollection | input features | + + +### Example + +```js +var poly = { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [[ + [105.818939,21.004714], + [105.818939,21.061754], + [105.890007,21.061754], + [105.890007,21.004714], + [105.818939,21.004714] + ]] + } +}; + +var centroidPt = turf.centroid(poly); + +var result = { + "type": "FeatureCollection", + "features": [poly, centroidPt] +}; + +//=result +``` + + +**Returns** `Feature.`, the centroid of the input features + +## Installation + +Requires [nodejs](http://nodejs.org/). + +```sh +$ npm install turf-centroid +``` + +## Tests + +```sh +$ npm test +``` + + diff --git a/packages/turf-centroid/bench.js b/packages/turf-centroid/bench.js new file mode 100644 index 0000000000..a126e214e6 --- /dev/null +++ b/packages/turf-centroid/bench.js @@ -0,0 +1,22 @@ +var centroid = require('./'); +var Benchmark = require('benchmark'); +var fs = require('fs'); + +var boxFC = JSON.parse(fs.readFileSync(__dirname+'/test/in/box.geojson')); +var blockFC = JSON.parse(fs.readFileSync(__dirname+'/test/in/block.geojson')); + +var suite = new Benchmark.Suite('turf-centroid'); +suite + .add('turf-centroid#simple',function () { + centroid(boxFC); + }) + .add('turf-centroid#complex',function () { + centroid(blockFC); + }) + .on('cycle', function (event) { + console.log(String(event.target)); + }) + .on('complete', function () { + + }) + .run(); diff --git a/packages/turf-centroid/index.js b/packages/turf-centroid/index.js new file mode 100644 index 0000000000..8d01157ca4 --- /dev/null +++ b/packages/turf-centroid/index.js @@ -0,0 +1,47 @@ +var each = require('turf-meta').coordEach; +var point = require('turf-helpers').point; + +/** + * Takes one or more features and calculates the centroid using + * the mean of all vertices. + * This lessens the effect of small islands and artifacts when calculating + * the centroid of a set of polygons. + * + * @name centroid + * @category measurement + * @param {(Feature|FeatureCollection)} features input features + * @return {Feature} the centroid of the input features + * @example + * var poly = { + * "type": "Feature", + * "properties": {}, + * "geometry": { + * "type": "Polygon", + * "coordinates": [[ + * [105.818939,21.004714], + * [105.818939,21.061754], + * [105.890007,21.061754], + * [105.890007,21.004714], + * [105.818939,21.004714] + * ]] + * } + * }; + * + * var centroidPt = turf.centroid(poly); + * + * var result = { + * "type": "FeatureCollection", + * "features": [poly, centroidPt] + * }; + * + * //=result + */ +module.exports = function (features) { + var xSum = 0, ySum = 0, len = 0; + each(features, function (coord) { + xSum += coord[0]; + ySum += coord[1]; + len++; + }, true); + return point([xSum / len, ySum / len]); +}; diff --git a/packages/turf-centroid/package.json b/packages/turf-centroid/package.json new file mode 100644 index 0000000000..30cff417ef --- /dev/null +++ b/packages/turf-centroid/package.json @@ -0,0 +1,34 @@ +{ + "name": "turf-centroid", + "version": "3.0.5", + "description": "turf centroid module", + "main": "index.js", + "scripts": { + "test": "node test.js" + }, + "repository": { + "type": "git", + "url": "https://github.com/Turfjs/turf-centroid.git" + }, + "keywords": [ + "turf", + "geojson", + "geo", + "gis" + ], + "author": "morganherlocker", + "license": "MIT", + "bugs": { + "url": "https://github.com/Turfjs/turf-centroid/issues" + }, + "homepage": "https://github.com/Turfjs/turf-centroid", + "devDependencies": { + "benchmark": "^1.0.0", + "tape": "^3.5.0" + }, + "dependencies": { + "geojson-fixtures": "^0.5.0", + "turf-meta": "^3.0.1", + "turf-helpers": "^3.0.5" + } +} diff --git a/packages/turf-centroid/test.js b/packages/turf-centroid/test.js new file mode 100644 index 0000000000..a99652fe46 --- /dev/null +++ b/packages/turf-centroid/test.js @@ -0,0 +1,2 @@ +var geojsonFixtures = require('geojson-fixtures/helper'); +geojsonFixtures(require('tape'), 'all', require('./'), __dirname + '/test'); diff --git a/packages/turf-centroid/test/geometrycollection-0-0.output.json b/packages/turf-centroid/test/geometrycollection-0-0.output.json new file mode 100644 index 0000000000..7c09698209 --- /dev/null +++ b/packages/turf-centroid/test/geometrycollection-0-0.output.json @@ -0,0 +1,11 @@ +{ + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 101, + 0.3333333333333333 + ] + }, + "properties": {} +} \ No newline at end of file diff --git a/packages/turf-centroid/test/geometrycollection-xyz-0-6.output.json b/packages/turf-centroid/test/geometrycollection-xyz-0-6.output.json new file mode 100644 index 0000000000..7c09698209 --- /dev/null +++ b/packages/turf-centroid/test/geometrycollection-xyz-0-6.output.json @@ -0,0 +1,11 @@ +{ + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 101, + 0.3333333333333333 + ] + }, + "properties": {} +} \ No newline at end of file diff --git a/packages/turf-centroid/test/geometrycollection-xyz.output.json b/packages/turf-centroid/test/geometrycollection-xyz.output.json new file mode 100644 index 0000000000..7c09698209 --- /dev/null +++ b/packages/turf-centroid/test/geometrycollection-xyz.output.json @@ -0,0 +1,11 @@ +{ + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 101, + 0.3333333333333333 + ] + }, + "properties": {} +} \ No newline at end of file diff --git a/packages/turf-centroid/test/geometrycollection.output.json b/packages/turf-centroid/test/geometrycollection.output.json new file mode 100644 index 0000000000..7c09698209 --- /dev/null +++ b/packages/turf-centroid/test/geometrycollection.output.json @@ -0,0 +1,11 @@ +{ + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 101, + 0.3333333333333333 + ] + }, + "properties": {} +} \ No newline at end of file diff --git a/packages/turf-centroid/test/idaho-1-1.output.json b/packages/turf-centroid/test/idaho-1-1.output.json new file mode 100644 index 0000000000..b23920f53f --- /dev/null +++ b/packages/turf-centroid/test/idaho-1-1.output.json @@ -0,0 +1,11 @@ +{ + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -114.90205150775371, + 44.64485392522374 + ] + }, + "properties": {} +} \ No newline at end of file diff --git a/packages/turf-centroid/test/multilinestring-0-5.output.json b/packages/turf-centroid/test/multilinestring-0-5.output.json new file mode 100644 index 0000000000..06e97b867d --- /dev/null +++ b/packages/turf-centroid/test/multilinestring-0-5.output.json @@ -0,0 +1,11 @@ +{ + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 101.5, + 1.5 + ] + }, + "properties": {} +} \ No newline at end of file diff --git a/packages/turf-centroid/test/multilinestring-xyz-0-11.output.json b/packages/turf-centroid/test/multilinestring-xyz-0-11.output.json new file mode 100644 index 0000000000..06e97b867d --- /dev/null +++ b/packages/turf-centroid/test/multilinestring-xyz-0-11.output.json @@ -0,0 +1,11 @@ +{ + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 101.5, + 1.5 + ] + }, + "properties": {} +} \ No newline at end of file diff --git a/packages/turf-centroid/test/multilinestring-xyz.output.json b/packages/turf-centroid/test/multilinestring-xyz.output.json new file mode 100644 index 0000000000..06e97b867d --- /dev/null +++ b/packages/turf-centroid/test/multilinestring-xyz.output.json @@ -0,0 +1,11 @@ +{ + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 101.5, + 1.5 + ] + }, + "properties": {} +} \ No newline at end of file diff --git a/packages/turf-centroid/test/multilinestring.output.json b/packages/turf-centroid/test/multilinestring.output.json new file mode 100644 index 0000000000..06e97b867d --- /dev/null +++ b/packages/turf-centroid/test/multilinestring.output.json @@ -0,0 +1,11 @@ +{ + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 101.5, + 1.5 + ] + }, + "properties": {} +} \ No newline at end of file diff --git a/packages/turf-centroid/test/multipoint-0-3.output.json b/packages/turf-centroid/test/multipoint-0-3.output.json new file mode 100644 index 0000000000..ec4a92bed4 --- /dev/null +++ b/packages/turf-centroid/test/multipoint-0-3.output.json @@ -0,0 +1,11 @@ +{ + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 100.5, + 0.5 + ] + }, + "properties": {} +} \ No newline at end of file diff --git a/packages/turf-centroid/test/multipoint-xyz-0-9.output.json b/packages/turf-centroid/test/multipoint-xyz-0-9.output.json new file mode 100644 index 0000000000..ec4a92bed4 --- /dev/null +++ b/packages/turf-centroid/test/multipoint-xyz-0-9.output.json @@ -0,0 +1,11 @@ +{ + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 100.5, + 0.5 + ] + }, + "properties": {} +} \ No newline at end of file diff --git a/packages/turf-centroid/test/multipoint-xyz.output.json b/packages/turf-centroid/test/multipoint-xyz.output.json new file mode 100644 index 0000000000..ec4a92bed4 --- /dev/null +++ b/packages/turf-centroid/test/multipoint-xyz.output.json @@ -0,0 +1,11 @@ +{ + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 100.5, + 0.5 + ] + }, + "properties": {} +} \ No newline at end of file diff --git a/packages/turf-centroid/test/multipoint.output.json b/packages/turf-centroid/test/multipoint.output.json new file mode 100644 index 0000000000..ec4a92bed4 --- /dev/null +++ b/packages/turf-centroid/test/multipoint.output.json @@ -0,0 +1,11 @@ +{ + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 100.5, + 0.5 + ] + }, + "properties": {} +} \ No newline at end of file diff --git a/packages/turf-centroid/test/multipolygon-0-4.output.json b/packages/turf-centroid/test/multipolygon-0-4.output.json new file mode 100644 index 0000000000..a511827274 --- /dev/null +++ b/packages/turf-centroid/test/multipolygon-0-4.output.json @@ -0,0 +1,11 @@ +{ + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 101.16666666666667, + 1.1666666666666667 + ] + }, + "properties": {} +} \ No newline at end of file diff --git a/packages/turf-centroid/test/multipolygon-xyz-0-10.output.json b/packages/turf-centroid/test/multipolygon-xyz-0-10.output.json new file mode 100644 index 0000000000..a511827274 --- /dev/null +++ b/packages/turf-centroid/test/multipolygon-xyz-0-10.output.json @@ -0,0 +1,11 @@ +{ + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 101.16666666666667, + 1.1666666666666667 + ] + }, + "properties": {} +} \ No newline at end of file diff --git a/packages/turf-centroid/test/multipolygon-xyz.output.json b/packages/turf-centroid/test/multipolygon-xyz.output.json new file mode 100644 index 0000000000..a511827274 --- /dev/null +++ b/packages/turf-centroid/test/multipolygon-xyz.output.json @@ -0,0 +1,11 @@ +{ + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 101.16666666666667, + 1.1666666666666667 + ] + }, + "properties": {} +} \ No newline at end of file diff --git a/packages/turf-centroid/test/multipolygon.output.json b/packages/turf-centroid/test/multipolygon.output.json new file mode 100644 index 0000000000..a511827274 --- /dev/null +++ b/packages/turf-centroid/test/multipolygon.output.json @@ -0,0 +1,11 @@ +{ + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 101.16666666666667, + 1.1666666666666667 + ] + }, + "properties": {} +} \ No newline at end of file diff --git a/packages/turf-centroid/test/one-1-0.output.json b/packages/turf-centroid/test/one-1-0.output.json new file mode 100644 index 0000000000..13b99bdf5d --- /dev/null +++ b/packages/turf-centroid/test/one-1-0.output.json @@ -0,0 +1,11 @@ +{ + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 102, + 0.5 + ] + }, + "properties": {} +} \ No newline at end of file diff --git a/packages/turf-centroid/test/one-2-0.output.json b/packages/turf-centroid/test/one-2-0.output.json new file mode 100644 index 0000000000..ec4a92bed4 --- /dev/null +++ b/packages/turf-centroid/test/one-2-0.output.json @@ -0,0 +1,11 @@ +{ + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 100.5, + 0.5 + ] + }, + "properties": {} +} \ No newline at end of file diff --git a/packages/turf-centroid/test/point-0-2.output.json b/packages/turf-centroid/test/point-0-2.output.json new file mode 100644 index 0000000000..c9bb8a0866 --- /dev/null +++ b/packages/turf-centroid/test/point-0-2.output.json @@ -0,0 +1,11 @@ +{ + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 100, + 0 + ] + }, + "properties": {} +} \ No newline at end of file diff --git a/packages/turf-centroid/test/point-xyz-0-8.output.json b/packages/turf-centroid/test/point-xyz-0-8.output.json new file mode 100644 index 0000000000..c9bb8a0866 --- /dev/null +++ b/packages/turf-centroid/test/point-xyz-0-8.output.json @@ -0,0 +1,11 @@ +{ + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 100, + 0 + ] + }, + "properties": {} +} \ No newline at end of file diff --git a/packages/turf-centroid/test/point-xyz.output.json b/packages/turf-centroid/test/point-xyz.output.json new file mode 100644 index 0000000000..c9bb8a0866 --- /dev/null +++ b/packages/turf-centroid/test/point-xyz.output.json @@ -0,0 +1,11 @@ +{ + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 100, + 0 + ] + }, + "properties": {} +} \ No newline at end of file diff --git a/packages/turf-centroid/test/point.output.json b/packages/turf-centroid/test/point.output.json new file mode 100644 index 0000000000..c9bb8a0866 --- /dev/null +++ b/packages/turf-centroid/test/point.output.json @@ -0,0 +1,11 @@ +{ + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 100, + 0 + ] + }, + "properties": {} +} \ No newline at end of file diff --git a/packages/turf-centroid/test/polygon-0-1.output.json b/packages/turf-centroid/test/polygon-0-1.output.json new file mode 100644 index 0000000000..ec4a92bed4 --- /dev/null +++ b/packages/turf-centroid/test/polygon-0-1.output.json @@ -0,0 +1,11 @@ +{ + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 100.5, + 0.5 + ] + }, + "properties": {} +} \ No newline at end of file diff --git a/packages/turf-centroid/test/polygon-xyz-0-7.output.json b/packages/turf-centroid/test/polygon-xyz-0-7.output.json new file mode 100644 index 0000000000..ec4a92bed4 --- /dev/null +++ b/packages/turf-centroid/test/polygon-xyz-0-7.output.json @@ -0,0 +1,11 @@ +{ + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 100.5, + 0.5 + ] + }, + "properties": {} +} \ No newline at end of file diff --git a/packages/turf-centroid/test/polygon-xyz.output.json b/packages/turf-centroid/test/polygon-xyz.output.json new file mode 100644 index 0000000000..ec4a92bed4 --- /dev/null +++ b/packages/turf-centroid/test/polygon-xyz.output.json @@ -0,0 +1,11 @@ +{ + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 100.5, + 0.5 + ] + }, + "properties": {} +} \ No newline at end of file diff --git a/packages/turf-centroid/test/polygon.output.json b/packages/turf-centroid/test/polygon.output.json new file mode 100644 index 0000000000..ec4a92bed4 --- /dev/null +++ b/packages/turf-centroid/test/polygon.output.json @@ -0,0 +1,11 @@ +{ + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 100.5, + 0.5 + ] + }, + "properties": {} +} \ No newline at end of file diff --git a/packages/turf-collect/.npmignore b/packages/turf-collect/.npmignore new file mode 100644 index 0000000000..bb3c08c09a --- /dev/null +++ b/packages/turf-collect/.npmignore @@ -0,0 +1,2 @@ +test +coverage diff --git a/packages/turf-collect/LICENSE b/packages/turf-collect/LICENSE new file mode 100644 index 0000000000..64fb8e99a3 --- /dev/null +++ b/packages/turf-collect/LICENSE @@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) 2014 Morgan Herlocker + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. \ No newline at end of file diff --git a/packages/turf-collect/README.md b/packages/turf-collect/README.md new file mode 100644 index 0000000000..24e18984b8 --- /dev/null +++ b/packages/turf-collect/README.md @@ -0,0 +1,181 @@ +# turf-aggregate + +[![build status](https://secure.travis-ci.org/Turfjs/turf-aggregate.png)](http://travis-ci.org/Turfjs/turf-aggregate) + +turf aggregate module + + +### `turf.aggregate(polygons, points, aggregations)` + +Calculates a series of aggregations for a set of Point|points within a set of Polygon|polygons. Sum, average, count, min, max, and deviation are supported. + + +### Parameters + +| parameter | type | description | +| -------------- | ------------------------------ | ------------------------------------------ | +| `polygons` | FeatureCollection\.\ | polygons with values on which to aggregate | +| `points` | FeatureCollection\.\ | points to be aggregated | +| `aggregations` | Array | an array of aggregation objects | + + +### Example + +```js +var polygons = { + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [[ + [1.669921, 48.632908], + [1.669921, 49.382372], + [3.636474, 49.382372], + [3.636474, 48.632908], + [1.669921, 48.632908] + ]] + } + }, { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [[ + [2.230224, 47.85003], + [2.230224, 48.611121], + [4.361572, 48.611121], + [4.361572, 47.85003], + [2.230224, 47.85003] + ]] + } + } + ] +}; +var points = { + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "properties": { + "population": 200 + }, + "geometry": { + "type": "Point", + "coordinates": [2.054443,49.138596] + } + }, + { + "type": "Feature", + "properties": { + "population": 600 + }, + "geometry": { + "type": "Point", + "coordinates": [3.065185,48.850258] + } + }, + { + "type": "Feature", + "properties": { + "population": 100 + }, + "geometry": { + "type": "Point", + "coordinates": [2.329101,48.79239] + } + }, + { + "type": "Feature", + "properties": { + "population": 200 + }, + "geometry": { + "type": "Point", + "coordinates": [2.614746,48.334343] + } + }, + { + "type": "Feature", + "properties": { + "population": 300 + }, + "geometry": { + "type": "Point", + "coordinates": [3.416748,48.056053] + } + } + ] +}; +var aggregations = [ + { + aggregation: 'sum', + inField: 'population', + outField: 'pop_sum' + }, + { + aggregation: 'average', + inField: 'population', + outField: 'pop_avg' + }, + { + aggregation: 'median', + inField: 'population', + outField: 'pop_median' + }, + { + aggregation: 'min', + inField: 'population', + outField: 'pop_min' + }, + { + aggregation: 'max', + inField: 'population', + outField: 'pop_max' + }, + { + aggregation: 'deviation', + inField: 'population', + outField: 'pop_deviation' + }, + { + aggregation: 'variance', + inField: 'population', + outField: 'pop_variance' + }, + { + aggregation: 'count', + inField: '', + outField: 'point_count' + } +]; + +var aggregated = turf.aggregate( + polygons, points, aggregations); + +var result = turf.featurecollection( + points.features.concat(aggregated.features)); + +//=result +``` + + +**Returns** `FeatureCollection.`, polygons with properties listed based on `outField` values in `aggregations` + +## Installation + +Requires [nodejs](http://nodejs.org/). + +```sh +$ npm install turf-aggregate +``` + +## Tests + +```sh +$ npm test +``` + + diff --git a/packages/turf-collect/bench.js b/packages/turf-collect/bench.js new file mode 100644 index 0000000000..94ce6c769c --- /dev/null +++ b/packages/turf-collect/bench.js @@ -0,0 +1,71 @@ +var aggregate = require('./'); +var Benchmark = require('benchmark'); +var fs = require('fs'); +var polygon = require('turf-helpers').polygon; +var point = require('turf-helpers').point; +var featurecollection = require('turf-helpers').featureCollection; + +var poly1 = polygon([[[0,0],[10,0],[10,10],[0,10]]]) +var poly2 = polygon([[[10,0],[20,10],[20,20], [20,0]]]) +var polyFC = featurecollection([poly1, poly2]) +var pt1 = point(5,5, {population: 200}) +var pt2 = point(1,3, {population: 600}) +var pt3 = point(14,2, {population: 100}) +var pt4 = point(13,1, {population: 200}) +var pt5 = point(19,7, {population: 300}) +var aggregations = [ + { + aggregation: 'sum', + inField: 'population', + outField: 'pop_sum' + }, + { + aggregation: 'average', + inField: 'population', + outField: 'pop_avg' + }, + { + aggregation: 'median', + inField: 'population', + outField: 'pop_median' + }, + { + aggregation: 'min', + inField: 'population', + outField: 'pop_min' + }, + { + aggregation: 'max', + inField: 'population', + outField: 'pop_max' + }, + { + aggregation: 'deviation', + inField: 'population', + outField: 'pop_deviation' + }, + { + aggregation: 'variance', + inField: 'population', + outField: 'pop_variance' + }, + { + aggregation: 'count', + inField: '', + outField: 'point_count' + } + ] + +var ptFC = featurecollection([pt1, pt2, pt3, pt4, pt5]) +var suite = new Benchmark.Suite('turf-aggregate'); +suite + .add('turf-aggregate',function() { + aggregate(polyFC, ptFC, aggregations) + }) + .on('cycle', function(event) { + console.log(String(event.target)); + }) + .on('complete', function() { + + }) + .run(); \ No newline at end of file diff --git a/packages/turf-collect/index.js b/packages/turf-collect/index.js new file mode 100644 index 0000000000..56a33b53fe --- /dev/null +++ b/packages/turf-collect/index.js @@ -0,0 +1,171 @@ +var inside = require('turf-inside'); + +/** + * Joins attributes FeatureCollection of polygons with a FeatureCollection of + * points. Given an `inProperty` on points and an `outProperty` for polygons, + * this finds every point that lies within each polygon, collects the `inProperty` + * values from those points, and adds them as an array to `outProperty` on the + * polygon. + * + * @name collect + * @category aggregation + * @param {FeatureCollection} polygons polygons with values on which to aggregate + * @param {FeatureCollection} points points to be aggregated + * @param {Array} aggregations an array of aggregation objects + * @return {FeatureCollection} polygons with properties listed based on `outField` values in `aggregations` + * @example + * var polygons = { + * "type": "FeatureCollection", + * "features": [ + * { + * "type": "Feature", + * "properties": {}, + * "geometry": { + * "type": "Polygon", + * "coordinates": [[ + * [1.669921, 48.632908], + * [1.669921, 49.382372], + * [3.636474, 49.382372], + * [3.636474, 48.632908], + * [1.669921, 48.632908] + * ]] + * } + * }, { + * "type": "Feature", + * "properties": {}, + * "geometry": { + * "type": "Polygon", + * "coordinates": [[ + * [2.230224, 47.85003], + * [2.230224, 48.611121], + * [4.361572, 48.611121], + * [4.361572, 47.85003], + * [2.230224, 47.85003] + * ]] + * } + * } + * ] + * }; + * var points = { + * "type": "FeatureCollection", + * "features": [ + * { + * "type": "Feature", + * "properties": { + * "population": 200 + * }, + * "geometry": { + * "type": "Point", + * "coordinates": [2.054443,49.138596] + * } + * }, + * { + * "type": "Feature", + * "properties": { + * "population": 600 + * }, + * "geometry": { + * "type": "Point", + * "coordinates": [3.065185,48.850258] + * } + * }, + * { + * "type": "Feature", + * "properties": { + * "population": 100 + * }, + * "geometry": { + * "type": "Point", + * "coordinates": [2.329101,48.79239] + * } + * }, + * { + * "type": "Feature", + * "properties": { + * "population": 200 + * }, + * "geometry": { + * "type": "Point", + * "coordinates": [2.614746,48.334343] + * } + * }, + * { + * "type": "Feature", + * "properties": { + * "population": 300 + * }, + * "geometry": { + * "type": "Point", + * "coordinates": [3.416748,48.056053] + * } + * } + * ] + * }; + * var aggregations = [ + * { + * aggregation: 'sum', + * inField: 'population', + * outField: 'pop_sum' + * }, + * { + * aggregation: 'average', + * inField: 'population', + * outField: 'pop_avg' + * }, + * { + * aggregation: 'median', + * inField: 'population', + * outField: 'pop_median' + * }, + * { + * aggregation: 'min', + * inField: 'population', + * outField: 'pop_min' + * }, + * { + * aggregation: 'max', + * inField: 'population', + * outField: 'pop_max' + * }, + * { + * aggregation: 'deviation', + * inField: 'population', + * outField: 'pop_deviation' + * }, + * { + * aggregation: 'variance', + * inField: 'population', + * outField: 'pop_variance' + * }, + * { + * aggregation: 'count', + * inField: '', + * outField: 'point_count' + * } + * ]; + * + * var aggregated = turf.aggregate( + * polygons, points, statsProperty); + * + * var result = turf.featurecollection( + * points.features.concat(aggregated.features)); + * + * //=result + */ +module.exports = function collect(polyFC, ptFC, inProperty, outProperty) { + polyFC.features.forEach(function (poly) { + var values = ptFC.features.filter(function (pt) { + return inside(pt, poly); + }).map(function (pt) { + return pt.properties[inProperty]; + }); + + if (!poly.properties) { + poly.properties = {}; + } + + poly.properties[outProperty] = values; + }); + + return polyFC; +}; diff --git a/packages/turf-collect/package.json b/packages/turf-collect/package.json new file mode 100644 index 0000000000..999f403e18 --- /dev/null +++ b/packages/turf-collect/package.json @@ -0,0 +1,35 @@ +{ + "name": "turf-collect", + "version": "3.0.5", + "description": "turf aggregate module", + "main": "index.js", + "scripts": { + "test": "tape test.js" + }, + "repository": { + "type": "git", + "url": "https://github.com/Turfjs/turf-aggregate.git" + }, + "keywords": [ + "turf", + "aggregate", + "points", + "geojson", + "polygons", + "stats" + ], + "author": "morganherlocker", + "license": "MIT", + "bugs": { + "url": "https://github.com/Turfjs/turf-aggregate/issues" + }, + "homepage": "https://github.com/Turfjs/turf-aggregate", + "devDependencies": { + "benchmark": "^1.0.0", + "tape": "^3.5.0", + "turf-helpers": "^3.0.5" + }, + "dependencies": { + "turf-inside": "^3.0.5" + } +} diff --git a/packages/turf-collect/test.js b/packages/turf-collect/test.js new file mode 100644 index 0000000000..eadbfa0074 --- /dev/null +++ b/packages/turf-collect/test.js @@ -0,0 +1,21 @@ +var aggregate = require('./'); +var test = require('tape'); +var polygon = require('turf-helpers').polygon; +var point = require('turf-helpers').point; +var featurecollection = require('turf-helpers').featureCollection; + +test('aggregate', function(t){ + var poly1 = polygon([[[0,0],[10,0],[10,10],[0,10],[0,0]]]); + var poly2 = polygon([[[10,0],[20,10],[20,20],[20,0],[10,0]]]); + var polyFC = featurecollection([poly1, poly2]); + var pt1 = point([5,5], {population: 200}); + var pt2 = point([1,3], {population: 600}); + var pt3 = point([14,2], {population: 100}); + var pt4 = point([13,1], {population: 200}); + var pt5 = point([19,7], {population: 300}); + var ptFC = featurecollection([pt1, pt2, pt3, pt4, pt5]); + var aggregated = aggregate(polyFC, ptFC, 'population', 'values'); + t.deepEqual(aggregated.features[0].properties.values, [200, 600]); + t.deepEqual(aggregated.features[1].properties.values, [100, 200, 300]); + t.end(); +}); diff --git a/packages/turf-combine/.npmignore b/packages/turf-combine/.npmignore new file mode 100644 index 0000000000..bb3c08c09a --- /dev/null +++ b/packages/turf-combine/.npmignore @@ -0,0 +1,2 @@ +test +coverage diff --git a/packages/turf-combine/LICENSE b/packages/turf-combine/LICENSE new file mode 100644 index 0000000000..64fb8e99a3 --- /dev/null +++ b/packages/turf-combine/LICENSE @@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) 2014 Morgan Herlocker + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. \ No newline at end of file diff --git a/packages/turf-combine/README.md b/packages/turf-combine/README.md new file mode 100644 index 0000000000..bf70d55fa2 --- /dev/null +++ b/packages/turf-combine/README.md @@ -0,0 +1,66 @@ +# turf-combine + +[![build status](https://secure.travis-ci.org/Turfjs/turf-combine.png)](http://travis-ci.org/Turfjs/turf-combine) + +turf combine module + + +### `turf.combine(fc)` + +Combines a FeatureCollection of Point, LineString, or Polygon features into MultiPoint, MultiLineString, or MultiPolygon features. + + +### Parameters + +| parameter | type | description | +| --------- | ----------------------------------------------- | ------------------------------- | +| `fc` | FeatureCollection\.\ | a FeatureCollection of any type | + + +### Example + +```js +var fc = { + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [19.026432, 47.49134] + } + }, { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [19.074497, 47.509548] + } + } + ] +}; + +var combined = turf.combine(fc); + +//=combined +``` + + +**Returns** `FeatureCollection.`, a FeatureCollection of corresponding type to input + +## Installation + +Requires [nodejs](http://nodejs.org/). + +```sh +$ npm install turf-combine +``` + +## Tests + +```sh +$ npm test +``` + + diff --git a/packages/turf-combine/bench.js b/packages/turf-combine/bench.js new file mode 100644 index 0000000000..c359ba47e5 --- /dev/null +++ b/packages/turf-combine/bench.js @@ -0,0 +1,62 @@ +var combine = require('./'); +var Benchmark = require('benchmark'); +var fs = require('fs'); +var point = require('turf-helpers').point; +var linestring = require('turf-helpers').lineString; +var polygon = require('turf-helpers').polygon; +var featurecollection = require('turf-helpers').featureCollection; + +// MultiPoint +var pt1 = point(50, 51) +var pt2 = point(100, 101) + +// MultiLineString +var l1 = linestring([ +[102.0, +-10.0], +[130.0, +4.0]]) +var l2 = linestring([ +[40.0, +-20.0], +[150.0, +18.0]]) + +// MultiPolygon +var p1 = polygon( [ + [ + [20.0,0.0], + [101.0,0.0], + [101.0,1.0], + [100.0,1.0], + [100.0,0.0] + ] +]) +var p2 = polygon([ + [ + [30.0,0.0], + [102.0,0.0], + [103.0,1.0] + ] +]) + + + +var suite = new Benchmark.Suite('turf-combine'); +suite + .add('turf-combine#point',function() { + combine(featurecollection([pt1, pt2])) + }) + .add('turf-combine#line',function() { + combine(featurecollection([l1, l2])) + }) + .add('turf-combine#polygon',function() { + combine(featurecollection([p1, p2])) + }) + .on('cycle', function(event) { + console.log(String(event.target)); + }) + .on('complete', function() { + + }) + .run(); \ No newline at end of file diff --git a/packages/turf-combine/index.js b/packages/turf-combine/index.js new file mode 100644 index 0000000000..d8ea6af769 --- /dev/null +++ b/packages/turf-combine/index.js @@ -0,0 +1,90 @@ +var meta = require('turf-meta'); + +/** + * Combines a {@link FeatureCollection} of {@link Point}, + * {@link LineString}, or {@link Polygon} features + * into {@link MultiPoint}, {@link MultiLineString}, or + * {@link MultiPolygon} features. + * + * @name combine + * @category misc + * @param {FeatureCollection<(Point|LineString|Polygon)>} fc a FeatureCollection of any type + * @return {FeatureCollection<(MultiPoint|MultiLineString|MultiPolygon)>} a FeatureCollection of corresponding type to input + * @example + * var fc = { + * "type": "FeatureCollection", + * "features": [ + * { + * "type": "Feature", + * "properties": {}, + * "geometry": { + * "type": "Point", + * "coordinates": [19.026432, 47.49134] + * } + * }, { + * "type": "Feature", + * "properties": {}, + * "geometry": { + * "type": "Point", + * "coordinates": [19.074497, 47.509548] + * } + * } + * ] + * }; + * + * var combined = turf.combine(fc); + * + * //=combined + */ + +module.exports = function (fc) { + var groups = { + MultiPoint: {coordinates: [], properties: []}, + MultiLineString: {coordinates: [], properties: []}, + MultiPolygon: {coordinates: [], properties: []} + }; + + var multiMapping = Object.keys(groups).reduce(function (memo, item) { + memo[item.replace('Multi', '')] = item; + return memo; + }, {}); + + function addToGroup(feature, key, multi) { + if (!multi) { + groups[key].coordinates.push(feature.geometry.coordinates); + } else { + groups[key].coordinates = groups[key].coordinates.concat(feature.geometry.coordinates); + } + groups[key].properties.push(feature.properties); + } + + meta.featureEach(fc, function (feature) { + if (!feature.geometry) return; + if (groups[feature.geometry.type]) { + addToGroup(feature, feature.geometry.type, true); + } else if (multiMapping[feature.geometry.type]) { + addToGroup(feature, multiMapping[feature.geometry.type], false); + } + }); + + return { + type: 'FeatureCollection', + features: Object.keys(groups) + .filter(function (key) { + return groups[key].coordinates.length; + }) + .sort() + .map(function (key) { + return { + type: 'Feature', + properties: { + collectedProperties: groups[key].properties + }, + geometry: { + type: key, + coordinates: groups[key].coordinates + } + }; + }) + }; +}; diff --git a/packages/turf-combine/package.json b/packages/turf-combine/package.json new file mode 100644 index 0000000000..3ac3463a70 --- /dev/null +++ b/packages/turf-combine/package.json @@ -0,0 +1,34 @@ +{ + "name": "turf-combine", + "version": "3.0.5", + "description": "turf combine module", + "main": "index.js", + "scripts": { + "test": "tape test.js" + }, + "repository": { + "type": "git", + "url": "https://github.com/Turfjs/turf-combine.git" + }, + "keywords": [ + "turf", + "geojson", + "multipoint", + "multipolygon", + "combine" + ], + "dependencies": { + "turf-meta": "^3.0.1" + }, + "author": "morganherlocker", + "license": "MIT", + "bugs": { + "url": "https://github.com/Turfjs/turf-combine/issues" + }, + "homepage": "https://github.com/Turfjs/turf-combine", + "devDependencies": { + "benchmark": "^1.0.0", + "tape": "^3.5.0", + "turf-helpers": "^3.0.5" + } +} diff --git a/packages/turf-combine/test.js b/packages/turf-combine/test.js new file mode 100644 index 0000000000..451a0ec971 --- /dev/null +++ b/packages/turf-combine/test.js @@ -0,0 +1,210 @@ +var test = require('tape'), + point = require('turf-helpers').point, + multipoint = require('turf-helpers').multiPoint, + linestring = require('turf-helpers').lineString, + multilinestring = require('turf-helpers').multiLineString, + polygon = require('turf-helpers').polygon, + multipolygon = require('turf-helpers').multiPolygon, + featurecollection = require('turf-helpers').featureCollection; + +var combine = require('./') + +test('combine -- points', function(t) { + // MultiPoint + var pt1 = point([50, 51]) + var pt2 = point([100, 101]) + + var multiPt = combine(featurecollection([pt1, pt2])) + + t.ok(multiPt, 'should combine two Points into a MultiPoint') + t.deepEqual(multiPt.features[0].geometry.coordinates, [[50, 51], [100, 101]]) + t.end(); +}); + +test('combine -- mixed multipoint & point', function(t) { + // MultiPoint + var pt1 = point([50, 51]) + var pt2 = multipoint([[100, 101], [101, 102]]) + + var multiPt = combine(featurecollection([pt1, pt2])) + + t.ok(multiPt, 'should combine Points + MultiPoint into a MultiPoint') + t.deepEqual(multiPt.features[0].geometry.coordinates, [[50, 51], [100, 101], [101, 102]]) + t.end(); +}); + +test('combine -- linestrings', function(t) { + // MultiLineString + var l1 = linestring([ + [102.0, + -10.0], + [130.0, + 4.0]]) + var l2 = linestring([ + [40.0, + -20.0], + [150.0, + 18.0]]) + + var multiLine = combine(featurecollection([l1, l2])) + + t.ok(multiLine, 'should combine two LineStrings into a MultiLineString') + t.equal(multiLine.features[0].geometry.type, 'MultiLineString') + t.deepEqual(multiLine.features[0].geometry.coordinates, [[[102, -10], [130, 4]], [[40, -20], [150, 18]]]) + t.end(); +}); + +test('combine -- mixed multilinestring & linestring', function(t) { + // MultiLineString + var l1 = linestring([ + [102.0, -10.0], + [130.0, 4.0] + ]); + var l2 = multilinestring([ + [ + [40.0, -20.0], + [150.0, 18.0] + ], + [ + [50, -10], + [160, 28] + ] + ]); + + var multiLine = combine(featurecollection([l1, l2])) + + t.ok(multiLine, 'should combine LineString + MultiLineString into a MultiLineString') + t.equal(multiLine.features[0].geometry.type, 'MultiLineString') + t.deepEqual(multiLine.features[0].geometry.coordinates, [[[102, -10], [130, 4]], [[40, -20], [150, 18]], [[50, -10], [160, 28]]]) + t.end(); +}); + +test('combine -- polygons', function(t) { + // MultiPolygon + var p1 = polygon( [ + [ + [20.0,0.0], + [101.0,0.0], + [101.0,1.0], + [100.0,1.0], + [100.0,0.0], + [20.0,0.0] + ] + ]) + var p2 = polygon([ + [ + [30.0,0.0], + [102.0,0.0], + [103.0,1.0], + [30.0,0.0] + ] + ]) + var multiPoly = combine(featurecollection([p1, p2])) + + t.ok(multiPoly, 'should combine two Polygons into a MultiPolygon') + t.equal(multiPoly.features[0].geometry.type, 'MultiPolygon') + t.deepEqual(multiPoly.features[0].geometry.coordinates, + [[[[20,0],[101.0,0.0],[101.0,1.0],[100.0,1.0],[100.0,0.0],[20,0]]], + [[[30.0,0.0],[102.0,0.0],[103.0,1.0],[30.0,0.0]]]]) + + t.end() +}); + +test('combine -- polygons', function(t) { + // MultiPolygon + var p1 = polygon( [ + [ + [20.0,0.0], + [101.0,0.0], + [101.0,1.0], + [100.0,1.0], + [100.0,0.0], + [20.0,0.0] + ] + ]); + var p2 = multipolygon([ + [[ + [30.0,0.0], + [102.0,0.0], + [103.0,1.0], + [30.0,0.0] + ]], + [ + [ + [20.0,5.0], + [92.0,5.0], + [93.0,6.0], + [20.0,5.0] + ], + [ + [25, 5], + [30, 5], + [30, 5.5], + [25, 5] + ] + ] + ]); + var multiPoly = combine(featurecollection([p1, p2])) + + t.ok(multiPoly, 'should combine two Polygon + MultiPolygon into a MultiPolygon') + t.equal(multiPoly.features[0].geometry.type, 'MultiPolygon') + t.deepEqual(multiPoly.features[0].geometry.coordinates, + [[[[20,0],[101.0,0.0],[101.0,1.0],[100.0,1.0],[100.0,0.0],[20,0]]], + [[[30.0,0.0],[102.0,0.0],[103.0,1.0],[30.0,0.0]]], + [[[20.0,5.0],[92.0,5.0],[93.0,6.0],[20.0,5.0]], + [[25, 5],[30, 5],[30, 5.5],[25, 5]]] + ]) + + t.end() +}); + +test('combine -- heterogenous', function(t) { + // MultiPolygon + var p1 = polygon( [ + [ + [20.0,0.0], + [101.0,0.0], + [101.0,1.0], + [100.0,1.0], + [100.0,0.0], + [20.0,0.0] + ] + ]); + var p2 = multipolygon([ + [[ + [30.0,0.0], + [102.0,0.0], + [103.0,1.0], + [30.0,0.0] + ]], + [ + [ + [20.0,5.0], + [92.0,5.0], + [93.0,6.0], + [20.0,5.0] + ], + [ + [25, 5], + [30, 5], + [30, 5.5], + [25, 5] + ] + ] + ]); + var pt1 = point([50, 51]) + var multiPoly = combine(featurecollection([p1, p2, pt1])) + + t.ok(multiPoly, 'should combine two Polygon + MultiPolygon into a MultiPolygon') + t.equal(multiPoly.features[0].geometry.type, 'MultiPoint') + + t.equal(multiPoly.features[1].geometry.type, 'MultiPolygon') + t.deepEqual(multiPoly.features[1].geometry.coordinates, + [[[[20,0],[101.0,0.0],[101.0,1.0],[100.0,1.0],[100.0,0.0],[20,0]]], + [[[30.0,0.0],[102.0,0.0],[103.0,1.0],[30.0,0.0]]], + [[[20.0,5.0],[92.0,5.0],[93.0,6.0],[20.0,5.0]], + [[25, 5],[30, 5],[30, 5.5],[25, 5]]] + ]) + + t.end() +}); diff --git a/packages/turf-concave/.npmignore b/packages/turf-concave/.npmignore new file mode 100644 index 0000000000..bb3c08c09a --- /dev/null +++ b/packages/turf-concave/.npmignore @@ -0,0 +1,2 @@ +test +coverage diff --git a/packages/turf-concave/README.md b/packages/turf-concave/README.md new file mode 100644 index 0000000000..4fe60e7d5f --- /dev/null +++ b/packages/turf-concave/README.md @@ -0,0 +1,104 @@ +# turf-concave + +[![build status](https://secure.travis-ci.org/Turfjs/turf-concave.png)](http://travis-ci.org/Turfjs/turf-concave) + +turf concave module + + +### `turf.concave(points, maxEdge, units)` + +Takes a set of Point|points and returns a concave hull polygon. + +Internally, this uses [turf-tin](https://github.com/Turfjs/turf-tin) to generate geometries. + + +### Parameters + +| parameter | type | description | +| --------- | ---------------------------- | ------------------------------------------------------------------------------- | +| `points` | FeatureCollection\.\ | input points | +| `maxEdge` | Number | the size of an edge necessary for part of the hull to become concave (in miles) | +| `units` | String | used for maxEdge distance (miles or kilometers) | + + +### Example + +```js +var points = { + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [-63.601226, 44.642643] + } + }, { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [-63.591442, 44.651436] + } + }, { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [-63.580799, 44.648749] + } + }, { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [-63.573589, 44.641788] + } + }, { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [-63.587665, 44.64533] + } + }, { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [-63.595218, 44.64765] + } + } + ] +}; + +var hull = turf.concave(points, 1, 'miles'); + +var resultFeatures = points.features.concat(hull); +var result = { + "type": "FeatureCollection", + "features": resultFeatures +}; + +//=result +``` + + +**Returns** `Feature.`, a concave hull + +## Installation + +Requires [nodejs](http://nodejs.org/). + +```sh +$ npm install turf-concave +``` + +## Tests + +```sh +$ npm test +``` + + diff --git a/packages/turf-concave/bench.js b/packages/turf-concave/bench.js new file mode 100644 index 0000000000..b17d485bb6 --- /dev/null +++ b/packages/turf-concave/bench.js @@ -0,0 +1,22 @@ +var concave = require('./'); +var Benchmark = require('benchmark'); +var fs = require('fs'); + +var pts1 = JSON.parse(fs.readFileSync(__dirname+'/test/in/pts1.geojson')); +var pts2 = JSON.parse(fs.readFileSync(__dirname+'/test/in/pts2.geojson')); + +var suite = new Benchmark.Suite('turf-concave'); +suite + .add('turf-concave#simple',function () { + concave(pts1, 2.5, 'miles'); + }) + .add('turf-concave#complex',function () { + concave(pts2, 2.5, 'miles'); + }) + .on('cycle', function (event) { + console.log(String(event.target)); + }) + .on('complete', function () { + + }) + .run(); diff --git a/packages/turf-concave/index.js b/packages/turf-concave/index.js new file mode 100644 index 0000000000..d5ce51958f --- /dev/null +++ b/packages/turf-concave/index.js @@ -0,0 +1,118 @@ +// 1. run tin on points +// 2. calculate lenth of all edges and area of all triangles +// 3. remove triangles that fail the max length test +// 4. buffer the results slightly +// 5. merge the results +var tin = require('turf-tin'); +var union = require('turf-union'); +var distance = require('turf-distance'); + +/** + * Takes a set of {@link Point|points} and returns a concave hull polygon. + * + * Internally, this uses [turf-tin](https://github.com/Turfjs/turf-tin) to generate geometries. + * + * @module concave + * @category transformation + * @param {FeatureCollection} points input points + * @param {Number} maxEdge the size of an edge necessary for part of the + * hull to become concave (in miles) + * @param {String} units used for maxEdge distance (miles or kilometers) + * @returns {Feature} a concave hull + * @throws {Error} if maxEdge parameter is missing + * @throws {Error} if units parameter is missing + * @example + * var points = { + * "type": "FeatureCollection", + * "features": [ + * { + * "type": "Feature", + * "properties": {}, + * "geometry": { + * "type": "Point", + * "coordinates": [-63.601226, 44.642643] + * } + * }, { + * "type": "Feature", + * "properties": {}, + * "geometry": { + * "type": "Point", + * "coordinates": [-63.591442, 44.651436] + * } + * }, { + * "type": "Feature", + * "properties": {}, + * "geometry": { + * "type": "Point", + * "coordinates": [-63.580799, 44.648749] + * } + * }, { + * "type": "Feature", + * "properties": {}, + * "geometry": { + * "type": "Point", + * "coordinates": [-63.573589, 44.641788] + * } + * }, { + * "type": "Feature", + * "properties": {}, + * "geometry": { + * "type": "Point", + * "coordinates": [-63.587665, 44.64533] + * } + * }, { + * "type": "Feature", + * "properties": {}, + * "geometry": { + * "type": "Point", + * "coordinates": [-63.595218, 44.64765] + * } + * } + * ] + * }; + * + * var hull = turf.concave(points, 1, 'miles'); + * + * var resultFeatures = points.features.concat(hull); + * var result = { + * "type": "FeatureCollection", + * "features": resultFeatures + * }; + * + * //=result + */ + + +module.exports = function (points, maxEdge, units) { + if (typeof maxEdge !== 'number') throw new Error('maxEdge parameter is required'); + if (typeof units !== 'string') throw new Error('units parameter is required'); + + var tinPolys = tin(points); + var filteredPolys = tinPolys.features.filter(filterTriangles); + tinPolys.features = filteredPolys; + + function filterTriangles(triangle) { + var pt1 = triangle.geometry.coordinates[0][0]; + var pt2 = triangle.geometry.coordinates[0][1]; + var pt3 = triangle.geometry.coordinates[0][2]; + var dist1 = distance(pt1, pt2, units); + var dist2 = distance(pt2, pt3, units); + var dist3 = distance(pt1, pt3, units); + return (dist1 <= maxEdge && dist2 <= maxEdge && dist3 <= maxEdge); + } + + return merge(tinPolys); +}; + +function merge(polygons) { + var merged = JSON.parse(JSON.stringify(polygons.features[0])), + features = polygons.features; + + for (var i = 0, len = features.length; i < len; i++) { + var poly = features[i]; + if (poly.geometry) { + merged = union(merged, poly); + } + } + return merged; +} diff --git a/packages/turf-concave/package.json b/packages/turf-concave/package.json new file mode 100644 index 0000000000..99789190e6 --- /dev/null +++ b/packages/turf-concave/package.json @@ -0,0 +1,35 @@ +{ + "name": "turf-concave", + "version": "3.0.5", + "description": "turf concave module", + "main": "index.js", + "scripts": { + "test": "node test.js" + }, + "repository": { + "type": "git", + "url": "git://github.com/Turfjs/turf-concave.git" + }, + "keywords": [ + "turf", + "gis", + "geometry" + ], + "author": "Morgan Herlocker", + "license": "ISC", + "bugs": { + "url": "https://github.com/Turfjs/turf-concave/issues" + }, + "homepage": "https://github.com/Turfjs/turf-concave", + "devDependencies": { + "benchmark": "^1.0.0", + "glob": "~4.3.5", + "tape": "~3.5.0" + }, + "dependencies": { + "turf-meta": "^3.0.1", + "turf-tin": "^3.0.5", + "turf-union": "^3.0.1", + "turf-distance": "^3.0.5" + } +} diff --git a/packages/turf-concave/test.js b/packages/turf-concave/test.js new file mode 100644 index 0000000000..a6010bc3bc --- /dev/null +++ b/packages/turf-concave/test.js @@ -0,0 +1,36 @@ +var concave = require('./'); +var test = require('tape'); +var fs = require('fs'); + +var pts1 = JSON.parse(fs.readFileSync(__dirname+'/test/fixtures/in/pts1.geojson')); +var pts2 = JSON.parse(fs.readFileSync(__dirname+'/test/fixtures/in/pts2.geojson')); + +test('concave', function(t){ + var pts1HullMiles = concave(pts1, 5.5, 'miles'); + var pts1HullKilometers = concave(pts1, 5.5 * 1.60934, 'kilometers'); + t.ok(pts1HullMiles, 'computes hull'); + t.equal(pts1HullMiles.type, 'Feature'); + t.deepEqual(pts1HullMiles, pts1HullKilometers, 'miles and km should return the same result'); + + var pts2HullMiles = concave(pts2, 2, 'miles'); + var pts2HullKilometers = concave(pts2, 2 * 1.60934, 'kilometers'); + t.ok(pts2HullMiles, 'computes hull'); + t.equal(pts2HullMiles.type, 'Feature'); + t.deepEqual(pts2HullMiles, pts2HullKilometers, 'miles and km should return the same result'); + + // output results + pts1.features = pts1.features.map(stylePt); + pts1.features.push(pts1HullMiles); + pts2.features = pts2.features.map(stylePt); + pts2.features.push(pts2HullMiles); + fs.writeFileSync(__dirname+'/test/fixtures/out/pts1_out.geojson', JSON.stringify(pts1,null,2)); + fs.writeFileSync(__dirname+'/test/fixtures/out/pts2_out.geojson', JSON.stringify(pts2,null,2)); + + t.end(); +}); + +function stylePt(pt){ + pt.properties['marker-color'] = '#f0f'; + pt.properties['marker-size'] = 'small'; + return pt; +} diff --git a/packages/turf-concave/test/fixtures/in/pts1.geojson b/packages/turf-concave/test/fixtures/in/pts1.geojson new file mode 100644 index 0000000000..21b440cad2 --- /dev/null +++ b/packages/turf-concave/test/fixtures/in/pts1.geojson @@ -0,0 +1,148 @@ +{ + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -122.40898132324217, + 37.77505678240509 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -122.43095397949219, + 37.74411415606583 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -122.44331359863283, + 37.726194088705576 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -122.47833251953125, + 37.73651223296987 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -122.4103546142578, + 37.72184917678752 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -122.41790771484375, + 37.74682893940135 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -122.53395080566405, + 37.83690319650768 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -122.51541137695311, + 37.83473402375478 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -122.49069213867188, + 37.837445479729666 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -122.52639770507812, + 37.83473402375478 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -122.62527465820311, + 37.89327929625019 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -122.60467529296875, + 37.902490518640995 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -122.58682250976562, + 37.895988598965644 + ] + } + } + ] +} \ No newline at end of file diff --git a/packages/turf-concave/test/fixtures/in/pts2.geojson b/packages/turf-concave/test/fixtures/in/pts2.geojson new file mode 100644 index 0000000000..5a41f30da1 --- /dev/null +++ b/packages/turf-concave/test/fixtures/in/pts2.geojson @@ -0,0 +1,150 @@ +{ +"type": "FeatureCollection", +"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } }, + +"features": [ +{ "type": "Feature", "properties": { "OBJECTID_1": 51, "OBJECTID_2": 25, "OBJECTID": 49.0, "PRECINCT_N": 7.0, "FACILITY_D": "Recreation Room", "ACCESSIBLE": "Yes", "GIS_ID": "plp_49", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Hardy Recreation Center", "ADDRESS": "4500 Q STREET NW", "ADDRESS_ID": 284929 }, "geometry": { "type": "Point", "coordinates": [ -77.084981183092964, 38.909915833213795 ] } }, +{ "type": "Feature", "properties": { "OBJECTID_1": 52, "OBJECTID_2": 26, "OBJECTID": 50.0, "PRECINCT_N": 5.0, "FACILITY_D": "Large Meeting Room", "ACCESSIBLE": "Yes", "GIS_ID": "plp_50", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Georgetown Community Library", "ADDRESS": "3260 R STREET NW", "ADDRESS_ID": 295142 }, "geometry": { "type": "Point", "coordinates": [ -77.066007305842078, 38.913434229544386 ] } }, +{ "type": "Feature", "properties": { "OBJECTID_1": 53, "OBJECTID_2": 27, "OBJECTID": 51.0, "PRECINCT_N": 76.0, "FACILITY_D": "Community Room", "ACCESSIBLE": "Yes", "GIS_ID": "plp_51", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Bethesda Baptist Church", "ADDRESS": "1808 CAPITOL AVENUE NE", "ADDRESS_ID": 155925 }, "geometry": { "type": "Point", "coordinates": [ -76.98614224512842, 38.911020521048734 ] } }, +{ "type": "Feature", "properties": { "OBJECTID_1": 54, "OBJECTID_2": 28, "OBJECTID": 52.0, "PRECINCT_N": 15.0, "FACILITY_D": "Community Room (Lower Level)", "ACCESSIBLE": "Yes - Use side entrance on P Street", "GIS_ID": "plp_52", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Foundry United Methodist Church", "ADDRESS": "1500 16TH STREET NW", "ADDRESS_ID": 243309 }, "geometry": { "type": "Point", "coordinates": [ -77.036879490722725, 38.910033613313317 ] } }, +{ "type": "Feature", "properties": { "OBJECTID_1": 55, "OBJECTID_2": 29, "OBJECTID": 53.0, "PRECINCT_N": 14.0, "FACILITY_D": "Guild Room", "ACCESSIBLE": "Yes", "GIS_ID": "plp_53", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "St. Thomas' Episcopal Parish", "ADDRESS": "1772 CHURCH STREET NW", "ADDRESS_ID": 225918 }, "geometry": { "type": "Point", "coordinates": [ -77.041041176671854, 38.910212212295264 ] } }, +{ "type": "Feature", "properties": { "OBJECTID_1": 56, "OBJECTID_2": 30, "OBJECTID": 54.0, "PRECINCT_N": 16.0, "FACILITY_D": "Fellowship Hall", "ACCESSIBLE": "Yes - Accessible entrance at the rear of the church. Use entrance on R St. side of church.", "GIS_ID": "plp_54", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "15th Street Presbyterian Church", "ADDRESS": "1701 15TH STREET NW", "ADDRESS_ID": 240136 }, "geometry": { "type": "Point", "coordinates": [ -77.03417962817295, 38.912811255258127 ] } }, +{ "type": "Feature", "properties": { "OBJECTID_1": 57, "OBJECTID_2": 31, "OBJECTID": 55.0, "PRECINCT_N": 18.0, "FACILITY_D": "Gymnasium", "ACCESSIBLE": "Yes", "GIS_ID": "plp_55", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Kennedy Recreation Center", "ADDRESS": "1401 7TH STREET NW", "ADDRESS_ID": 279127 }, "geometry": { "type": "Point", "coordinates": [ -77.021536456247759, 38.908989778469483 ] } }, +{ "type": "Feature", "properties": { "OBJECTID_1": 58, "OBJECTID_2": 32, "OBJECTID": 56.0, "PRECINCT_N": 17.0, "FACILITY_D": "Exhibit Rooms", "ACCESSIBLE": "Yes", "GIS_ID": "plp_56", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "The Charles Sumner School Museum and Archives", "ADDRESS": "1201 17th STREET NW\r\n1201 17TH STREET NW", "ADDRESS_ID": 301200 }, "geometry": { "type": "Point", "coordinates": [ -77.038222905521806, 38.905977334681452 ] } }, +{ "type": "Feature", "properties": { "OBJECTID_1": 59, "OBJECTID_2": 33, "OBJECTID": 57.0, "PRECINCT_N": 4.0, "FACILITY_D": "Large Meeting Room (2nd Floor)", "ACCESSIBLE": "Yes", "GIS_ID": "plp_57", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "West End Public Library", "ADDRESS": "1101 24TH STREET NW", "ADDRESS_ID": 218248 }, "geometry": { "type": "Point", "coordinates": [ -77.05109790160472, 38.904019151364736 ] } }, +{ "type": "Feature", "properties": { "OBJECTID_1": 60, "OBJECTID_2": 34, "OBJECTID": 58.0, "PRECINCT_N": 77.0, "FACILITY_D": "Community Room", "ACCESSIBLE": "Yes", "GIS_ID": "plp_58", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Delta Towers Apartments", "ADDRESS": "1400 FLORIDA AVENUE NE", "ADDRESS_ID": 65280 }, "geometry": { "type": "Point", "coordinates": [ -76.984331916380768, 38.900557364972023 ] } }, +{ "type": "Feature", "properties": { "OBJECTID_1": 61, "OBJECTID_2": 35, "OBJECTID": 59.0, "PRECINCT_N": 129.0, "FACILITY_D": "Main Lobby", "ACCESSIBLE": "Yes", "GIS_ID": "plp_59", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Martin Luther King Library", "ADDRESS": "901 G STREET NW", "ADDRESS_ID": 239815 }, "geometry": { "type": "Point", "coordinates": [ -77.02476626008324, 38.898691330337449 ] } }, +{ "type": "Feature", "properties": { "OBJECTID_1": 62, "OBJECTID_2": 36, "OBJECTID": 60.0, "PRECINCT_N": 82.0, "FACILITY_D": "Gymnasium", "ACCESSIBLE": "Yes", "GIS_ID": "plp_60", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Sherwood Recreation Center", "ADDRESS": "640 10TH STREET NE", "ADDRESS_ID": 301075 }, "geometry": { "type": "Point", "coordinates": [ -76.993016818542159, 38.898545289067677 ] } }, +{ "type": "Feature", "properties": { "OBJECTID_1": 63, "OBJECTID_2": 37, "OBJECTID": 61.0, "PRECINCT_N": 3.0, "FACILITY_D": "Dining Hall", "ACCESSIBLE": "Yes", "GIS_ID": "plp_61", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "St. Mary's Court", "ADDRESS": "725 24TH STREET NW", "ADDRESS_ID": 242350 }, "geometry": { "type": "Point", "coordinates": [ -77.051147709627202, 38.898862835793516 ] } }, +{ "type": "Feature", "properties": { "OBJECTID_1": 64, "OBJECTID_2": 38, "OBJECTID": 62.0, "PRECINCT_N": 1.0, "FACILITY_D": "Gymnasium", "ACCESSIBLE": "Yes", "GIS_ID": "plp_62", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Walker-Jones EC", "ADDRESS": "1125 NEW JERSEY AVENUE NW", "ADDRESS_ID": 307735 }, "geometry": { "type": "Point", "coordinates": [ -77.013915692345691, 38.90419164723351 ] } }, +{ "type": "Feature", "properties": { "OBJECTID_1": 65, "OBJECTID_2": 39, "OBJECTID": 64.0, "PRECINCT_N": 10.0, "FACILITY_D": "Multi-Purpose Room", "ACCESSIBLE": "Yes", "GIS_ID": "plp_64", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Horace Mann Community Center", "ADDRESS": "4430 NEWARK STREET NW", "ADDRESS_ID": 294597 }, "geometry": { "type": "Point", "coordinates": [ -77.087826188256471, 38.934291971694272 ] } }, +{ "type": "Feature", "properties": { "OBJECTID_1": 66, "OBJECTID_2": 40, "OBJECTID": 65.0, "PRECINCT_N": 19.0, "FACILITY_D": "Gym\/Armory", "ACCESSIBLE": "Yes", "GIS_ID": "plp_65", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Dunbar Senior High School", "ADDRESS": "1301 NEW JERSEY AVENUE NW", "ADDRESS_ID": 279021 }, "geometry": { "type": "Point", "coordinates": [ -77.014693855315954, 38.908523216218732 ] } }, +{ "type": "Feature", "properties": { "OBJECTID_1": 67, "OBJECTID_2": 41, "OBJECTID": 66.0, "PRECINCT_N": 20.0, "FACILITY_D": "Auditorium", "ACCESSIBLE": "Yes", "GIS_ID": "plp_66", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Washington Metropolitan High School", "ADDRESS": "300 BRYANT STREET NW", "ADDRESS_ID": 294475 }, "geometry": { "type": "Point", "coordinates": [ -77.015557008963071, 38.920441293733219 ] } }, +{ "type": "Feature", "properties": { "OBJECTID_1": 68, "OBJECTID_2": 42, "OBJECTID": 67.0, "PRECINCT_N": 21.0, "FACILITY_D": "Fellowship Hall", "ACCESSIBLE": "Yes", "GIS_ID": "plp_67", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Vermont Avenue Baptist Church", "ADDRESS": "1630 VERMONT AVENUE NW", "ADDRESS_ID": 243277 }, "geometry": { "type": "Point", "coordinates": [ -77.028781227702837, 38.911825717245286 ] } }, +{ "type": "Feature", "properties": { "OBJECTID_1": 69, "OBJECTID_2": 43, "OBJECTID": 68.0, "PRECINCT_N": 22.0, "FACILITY_D": "Auditorium", "ACCESSIBLE": "Yes - Accessible entrance located on V Street.", "GIS_ID": "plp_68", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Garnet-Patterson Middle School", "ADDRESS": "2001 10TH STREET NW", "ADDRESS_ID": 294533 }, "geometry": { "type": "Point", "coordinates": [ -77.025748782113368, 38.917544774486181 ] } }, +{ "type": "Feature", "properties": { "OBJECTID_1": 70, "OBJECTID_2": 44, "OBJECTID": 69.0, "PRECINCT_N": 24.0, "FACILITY_D": "Living Room", "ACCESSIBLE": "Yes", "GIS_ID": "plp_69", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Marie Reed Learning Center", "ADDRESS": "2200 CHAMPLAIN STREET NW", "ADDRESS_ID": 235577 }, "geometry": { "type": "Point", "coordinates": [ -77.04052994742716, 38.919167306666537 ] } }, +{ "type": "Feature", "properties": { "OBJECTID_1": 71, "OBJECTID_2": 45, "OBJECTID": 71.0, "PRECINCT_N": 27.0, "FACILITY_D": "Auditorium", "ACCESSIBLE": "Yes", "GIS_ID": "plp_71", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Eaton Elementary School", "ADDRESS": "3301 LOWELL STREET NW", "ADDRESS_ID": 294562 }, "geometry": { "type": "Point", "coordinates": [ -77.065821132685912, 38.932726738826823 ] } }, +{ "type": "Feature", "properties": { "OBJECTID_1": 72, "OBJECTID_2": 46, "OBJECTID": 72.0, "PRECINCT_N": 29.0, "FACILITY_D": "Community Room", "ACCESSIBLE": "Yes", "GIS_ID": "plp_72", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "2nd District Police Station", "ADDRESS": "3320 IDAHO AVENUE NW", "ADDRESS_ID": 222229 }, "geometry": { "type": "Point", "coordinates": [ -77.074838057652229, 38.934845831784592 ] } }, +{ "type": "Feature", "properties": { "OBJECTID_1": 73, "OBJECTID_2": 47, "OBJECTID": 73.0, "PRECINCT_N": 30.0, "FACILITY_D": "Multi-Purpose Room (on Albemarle St.)", "ACCESSIBLE": "Yes - Accessible entrance at side of school, nearest to Wisconsin Ave.", "GIS_ID": "plp_73", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Janney Elementary School", "ADDRESS": "4130 ALBEMARLE STREET NW", "ADDRESS_ID": 285713 }, "geometry": { "type": "Point", "coordinates": [ -77.080994819731956, 38.947550087065927 ] } }, +{ "type": "Feature", "properties": { "OBJECTID_1": 74, "OBJECTID_2": 48, "OBJECTID": 74.0, "PRECINCT_N": 33.0, "FACILITY_D": "Auditorium", "ACCESSIBLE": "Yes - Use rear entrance on Ellicott St.", "GIS_ID": "plp_74", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Ben Murch Elementary School", "ADDRESS": "4810 36TH STREET NW", "ADDRESS_ID": 294602 }, "geometry": { "type": "Point", "coordinates": [ -77.07007920338755, 38.952933189596607 ] } }, +{ "type": "Feature", "properties": { "OBJECTID_1": 75, "OBJECTID_2": 49, "OBJECTID": 75.0, "PRECINCT_N": 35.0, "FACILITY_D": "Multi-Purpose Room", "ACCESSIBLE": "Yes", "GIS_ID": "plp_75", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "H.D. Cooke Elementary School", "ADDRESS": "2525 17TH STREET NW", "ADDRESS_ID": 235863 }, "geometry": { "type": "Point", "coordinates": [ -77.038813828001906, 38.923931654217967 ] } }, +{ "type": "Feature", "properties": { "OBJECTID_1": 76, "OBJECTID_2": 50, "OBJECTID": 76.0, "PRECINCT_N": 37.0, "FACILITY_D": "Community Meeting Room", "ACCESSIBLE": "Yes", "GIS_ID": "plp_76", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Banneker Community Recreation Center", "ADDRESS": "2500 GEORGIA AVENUE NW", "ADDRESS_ID": 232292 }, "geometry": { "type": "Point", "coordinates": [ -77.022579801385916, 38.922697600945042 ] } }, +{ "type": "Feature", "properties": { "OBJECTID_1": 77, "OBJECTID_2": 51, "OBJECTID": 77.0, "PRECINCT_N": 38.0, "FACILITY_D": "Meeting Room", "ACCESSIBLE": "Yes", "GIS_ID": "plp_77", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Cesar Chavez Prep Charter Middle School", "ADDRESS": "770 KENYON STREET NW", "ADDRESS_ID": 285409 }, "geometry": { "type": "Point", "coordinates": [ -77.025887356034701, 38.929619476288885 ] } }, +{ "type": "Feature", "properties": { "OBJECTID_1": 78, "OBJECTID_2": 52, "OBJECTID": 78.0, "PRECINCT_N": 40.0, "FACILITY_D": "Assembly Hall", "ACCESSIBLE": "Yes - Use entrance on Newton Street.", "GIS_ID": "plp_78", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Bancroft Elementary School", "ADDRESS": "1755 NEWTON STREET NW", "ADDRESS_ID": 294528 }, "geometry": { "type": "Point", "coordinates": [ -77.040553449803028, 38.934318023511061 ] } }, +{ "type": "Feature", "properties": { "OBJECTID_1": 79, "OBJECTID_2": 53, "OBJECTID": 79.0, "PRECINCT_N": 46.0, "FACILITY_D": "Classroom", "ACCESSIBLE": "Yes", "GIS_ID": "plp_79", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "E.L. Haynes Public Charter School @ Clark", "ADDRESS": "4501 KANSAS AVENUE NW", "ADDRESS_ID": 284930 }, "geometry": { "type": "Point", "coordinates": [ -77.022416369914765, 38.94560156110601 ] } }, +{ "type": "Feature", "properties": { "OBJECTID_1": 80, "OBJECTID_2": 54, "OBJECTID": 80.0, "PRECINCT_N": 47.0, "FACILITY_D": "Multi-Purpose Room", "ACCESSIBLE": "Yes - Accessible ramped entrance off of alley.", "GIS_ID": "plp_80", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Powell Elementary School", "ADDRESS": "1350 UPSHUR STREET NW", "ADDRESS_ID": 255302 }, "geometry": { "type": "Point", "coordinates": [ -77.031227415751488, 38.941534009869706 ] } }, +{ "type": "Feature", "properties": { "OBJECTID_1": 81, "OBJECTID_2": 55, "OBJECTID": 81.0, "PRECINCT_N": 48.0, "FACILITY_D": "Auditorium", "ACCESSIBLE": "Yes - Use south entrance on 13th St.", "GIS_ID": "plp_81", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Sharpe Health School", "ADDRESS": "4300 13TH STREET NW", "ADDRESS_ID": 255254 }, "geometry": { "type": "Point", "coordinates": [ -77.030468336673792, 38.943474325156487 ] } }, +{ "type": "Feature", "properties": { "OBJECTID_1": 82, "OBJECTID_2": 56, "OBJECTID": 82.0, "PRECINCT_N": 49.0, "FACILITY_D": "Science Room", "ACCESSIBLE": "Yes - Accessible entrance located on Rock Creek Church Road.", "GIS_ID": "plp_82", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Raymond Elementary School", "ADDRESS": "915 SPRING ROAD NW", "ADDRESS_ID": 226682 }, "geometry": { "type": "Point", "coordinates": [ -77.026432654256809, 38.935810871763174 ] } }, +{ "type": "Feature", "properties": { "OBJECTID_1": 83, "OBJECTID_2": 57, "OBJECTID": 83.0, "PRECINCT_N": 51.0, "FACILITY_D": "Gymnasium", "ACCESSIBLE": "Yes - Use parking lot entrance on Northampton St.", "GIS_ID": "plp_83", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Lafayette Elementary School", "ADDRESS": "5701 BROAD BRANCH ROAD NW", "ADDRESS_ID": 294611 }, "geometry": { "type": "Point", "coordinates": [ -77.06803711636698, 38.966627220648277 ] } }, +{ "type": "Feature", "properties": { "OBJECTID_1": 84, "OBJECTID_2": 58, "OBJECTID": 84.0, "PRECINCT_N": 53.0, "FACILITY_D": "Multi-Purpose Room", "ACCESSIBLE": "Yes", "GIS_ID": "plp_84", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Brightwood Elementary School", "ADDRESS": "1300 NICHOLSON STREET NW", "ADDRESS_ID": 294515 }, "geometry": { "type": "Point", "coordinates": [ -77.030688851988643, 38.960535392858461 ] } }, +{ "type": "Feature", "properties": { "OBJECTID_1": 85, "OBJECTID_2": 59, "OBJECTID": 85.0, "PRECINCT_N": 54.0, "FACILITY_D": "Gymnasium", "ACCESSIBLE": "Yes - Use entrance located at 14th & Farragut Streets.", "GIS_ID": "plp_85", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "West Elementary School", "ADDRESS": "1338 FARRAGUT STREET NW", "ADDRESS_ID": 294517 }, "geometry": { "type": "Point", "coordinates": [ -77.032253049830672, 38.951367080952416 ] } }, +{ "type": "Feature", "properties": { "OBJECTID_1": 86, "OBJECTID_2": 60, "OBJECTID": 86.0, "PRECINCT_N": 55.0, "FACILITY_D": "Multi-Purpose Room", "ACCESSIBLE": "Yes", "GIS_ID": "plp_86", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Barnard Elementary School", "ADDRESS": "430 DECATUR STREET NW", "ADDRESS_ID": 248305 }, "geometry": { "type": "Point", "coordinates": [ -77.017777080008301, 38.948230614415095 ] } }, +{ "type": "Feature", "properties": { "OBJECTID_1": 87, "OBJECTID_2": 61, "OBJECTID": 87.0, "PRECINCT_N": 56.0, "FACILITY_D": "Multi-Purpose Room", "ACCESSIBLE": "Yes", "GIS_ID": "plp_87", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Truesdell Elementary School", "ADDRESS": "800 INGRAHAM STREET NW", "ADDRESS_ID": 294497 }, "geometry": { "type": "Point", "coordinates": [ -77.025071570135182, 38.953968358095487 ] } }, +{ "type": "Feature", "properties": { "OBJECTID_1": 88, "OBJECTID_2": 62, "OBJECTID": 88.0, "PRECINCT_N": 57.0, "FACILITY_D": "Multi-Purpose Room", "ACCESSIBLE": "Yes", "GIS_ID": "plp_88", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Hattie Holmes Wellness Center", "ADDRESS": "324 KENNEDY STREET NW", "ADDRESS_ID": 307575 }, "geometry": { "type": "Point", "coordinates": [ -77.017112348141424, 38.956388773368296 ] } }, +{ "type": "Feature", "properties": { "OBJECTID_1": 89, "OBJECTID_2": 63, "OBJECTID": 90.0, "PRECINCT_N": 59.0, "FACILITY_D": "Armory", "ACCESSIBLE": "Yes", "GIS_ID": "plp_90", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Coolidge Senior High School", "ADDRESS": "6315 5TH STREET NW", "ADDRESS_ID": 294615 }, "geometry": { "type": "Point", "coordinates": [ -77.01957835173927, 38.967284239673525 ] } }, +{ "type": "Feature", "properties": { "OBJECTID_1": 90, "OBJECTID_2": 64, "OBJECTID": 91.0, "PRECINCT_N": 62.0, "FACILITY_D": "Auditorium", "ACCESSIBLE": "Yes - Use ramped entrance on 14th Street.", "GIS_ID": "plp_91", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Shepherd Elementary School", "ADDRESS": "7800 14TH STREET NW", "ADDRESS_ID": 256319 }, "geometry": { "type": "Point", "coordinates": [ -77.03399523386544, 38.984602950032162 ] } }, +{ "type": "Feature", "properties": { "OBJECTID_1": 91, "OBJECTID_2": 65, "OBJECTID": 92.0, "PRECINCT_N": 63.0, "FACILITY_D": "Multi-Purpose Room", "ACCESSIBLE": "Yes", "GIS_ID": "plp_92", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Takoma Community Center", "ADDRESS": "300 VAN BUREN STREET NW", "ADDRESS_ID": 296168 }, "geometry": { "type": "Point", "coordinates": [ -77.018051676182949, 38.968886691314118 ] } }, +{ "type": "Feature", "properties": { "OBJECTID_1": 92, "OBJECTID_2": 66, "OBJECTID": 93.0, "PRECINCT_N": 64.0, "FACILITY_D": "Recreation Area", "ACCESSIBLE": "Yes - Use rear entrance on 2nd St.", "GIS_ID": "plp_93", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Rabaut - Administrative Building", "ADDRESS": "100 PEABODY STREET NW", "ADDRESS_ID": 277545 }, "geometry": { "type": "Point", "coordinates": [ -77.012867448323647, 38.962164521997181 ] } }, +{ "type": "Feature", "properties": { "OBJECTID_1": 93, "OBJECTID_2": 67, "OBJECTID": 94.0, "PRECINCT_N": 65.0, "FACILITY_D": "Auditorium", "ACCESSIBLE": "Yes", "GIS_ID": "plp_94", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "LaSalle Elementary School", "ADDRESS": "501 RIGGS ROAD NE", "ADDRESS_ID": 294489 }, "geometry": { "type": "Point", "coordinates": [ -76.999882538481089, 38.959971809983642 ] } }, +{ "type": "Feature", "properties": { "OBJECTID_1": 94, "OBJECTID_2": 68, "OBJECTID": 95.0, "PRECINCT_N": 66.0, "FACILITY_D": "Multi-Purpose Room", "ACCESSIBLE": "Yes - Accessible entrance next to parking lot on Hamilton Street.", "GIS_ID": "plp_95", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "UDC Community College @ Backus", "ADDRESS": "5171 SOUTH DAKOTA AVENUE NE", "ADDRESS_ID": 294607 }, "geometry": { "type": "Point", "coordinates": [ -76.997267383153954, 38.953340525729047 ] } }, +{ "type": "Feature", "properties": { "OBJECTID_1": 95, "OBJECTID_2": 69, "OBJECTID": 96.0, "PRECINCT_N": 67.0, "FACILITY_D": "Auditorium", "ACCESSIBLE": "Yes - Accessible entrance next to the parking lot on 14th Street", "GIS_ID": "plp_96", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Bunker Hill Elementary School", "ADDRESS": "1401 MICHIGAN AVENUE NE", "ADDRESS_ID": 286131 }, "geometry": { "type": "Point", "coordinates": [ -76.98499562999821, 38.942012135008142 ] } }, +{ "type": "Feature", "properties": { "OBJECTID_1": 96, "OBJECTID_2": 70, "OBJECTID": 97.0, "PRECINCT_N": 68.0, "FACILITY_D": "Reception Room", "ACCESSIBLE": "Yes", "GIS_ID": "plp_97", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "St. Francis Hall", "ADDRESS": "1340 QUINCY STREET NE", "ADDRESS_ID": 66591 }, "geometry": { "type": "Point", "coordinates": [ -76.986529583871643, 38.9375726751204 ] } }, +{ "type": "Feature", "properties": { "OBJECTID_1": 97, "OBJECTID_2": 71, "OBJECTID": 98.0, "PRECINCT_N": 69.0, "FACILITY_D": "Multi-Purpose Room", "ACCESSIBLE": "Yes", "GIS_ID": "plp_98", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Hyde Public Charter School @ Taft", "ADDRESS": "1800 PERRY STREET NE", "ADDRESS_ID": 294529 }, "geometry": { "type": "Point", "coordinates": [ -76.978595514953696, 38.936796147384342 ] } }, +{ "type": "Feature", "properties": { "OBJECTID_1": 98, "OBJECTID_2": 72, "OBJECTID": 99.0, "PRECINCT_N": 70.0, "FACILITY_D": "Multi-Purpose Room", "ACCESSIBLE": "Yes - Use entrance on Monroe Street.", "GIS_ID": "plp_99", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Burroughs Elementary School", "ADDRESS": "1820 MONROE STREET NE", "ADDRESS_ID": 294530 }, "geometry": { "type": "Point", "coordinates": [ -76.978456370398874, 38.933502326896445 ] } }, +{ "type": "Feature", "properties": { "OBJECTID_1": 99, "OBJECTID_2": 73, "OBJECTID": 100.0, "PRECINCT_N": 73.0, "FACILITY_D": "Library (Lower Level)", "ACCESSIBLE": "Yes", "GIS_ID": "plp_100", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "M.M. Bethune Day Academy @ Slowe", "ADDRESS": "1404 JACKSON STREET NE", "ADDRESS_ID": 294522 }, "geometry": { "type": "Point", "coordinates": [ -76.986864622728547, 38.929605590082105 ] } }, +{ "type": "Feature", "properties": { "OBJECTID_1": 100, "OBJECTID_2": 74, "OBJECTID": 101.0, "PRECINCT_N": 74.0, "FACILITY_D": "Multipurpose Room", "ACCESSIBLE": "Yes", "GIS_ID": "plp_101", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Shaed Elementary School", "ADDRESS": "301 DOUGLAS STREET NE", "ADDRESS_ID": 294477 }, "geometry": { "type": "Point", "coordinates": [ -77.002538318002209, 38.923654687421774 ] } }, +{ "type": "Feature", "properties": { "OBJECTID_1": 101, "OBJECTID_2": 75, "OBJECTID": 102.0, "PRECINCT_N": 78.0, "FACILITY_D": "Gymnasium", "ACCESSIBLE": "Yes", "GIS_ID": "plp_102", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Trinidad Recreation Center", "ADDRESS": "1310 CHILDRESS STREET NE", "ADDRESS_ID": 68509 }, "geometry": { "type": "Point", "coordinates": [ -76.982734368763062, 38.906442359837776 ] } }, +{ "type": "Feature", "properties": { "OBJECTID_1": 102, "OBJECTID_2": 76, "OBJECTID": 103.0, "PRECINCT_N": 81.0, "FACILITY_D": "Gymnasium", "ACCESSIBLE": "Yes", "GIS_ID": "plp_103", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Miner Elementary School", "ADDRESS": "601 15TH STREET NE", "ADDRESS_ID": 289548 }, "geometry": { "type": "Point", "coordinates": [ -76.982904313087829, 38.897375682182471 ] } }, +{ "type": "Feature", "properties": { "OBJECTID_1": 103, "OBJECTID_2": 77, "OBJECTID": 104.0, "PRECINCT_N": 79.0, "FACILITY_D": "Auditorium", "ACCESSIBLE": "Yes", "GIS_ID": "plp_104", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Browne Junior High School", "ADDRESS": "850 26TH STREET NE", "ADDRESS_ID": 294501 }, "geometry": { "type": "Point", "coordinates": [ -76.970667052474028, 38.902598549008218 ] } }, +{ "type": "Feature", "properties": { "OBJECTID_1": 104, "OBJECTID_2": 78, "OBJECTID": 105.0, "PRECINCT_N": 83.0, "FACILITY_D": "Multi-Purpose Room", "ACCESSIBLE": "Yes - Use entrance located on 7th Street.", "GIS_ID": "plp_105", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "J.O. Wilson Elementary School", "ADDRESS": "660 K STREET NE", "ADDRESS_ID": 288841 }, "geometry": { "type": "Point", "coordinates": [ -76.996589027486436, 38.90275766582991 ] } }, +{ "type": "Feature", "properties": { "OBJECTID_1": 105, "OBJECTID_2": 79, "OBJECTID": 106.0, "PRECINCT_N": 84.0, "FACILITY_D": "Auditorium", "ACCESSIBLE": "Yes", "GIS_ID": "plp_106", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Stuart-Hobson Middle School", "ADDRESS": "410 E STREET NE", "ADDRESS_ID": 294483 }, "geometry": { "type": "Point", "coordinates": [ -77.000004386249671, 38.896297370808789 ] } }, +{ "type": "Feature", "properties": { "OBJECTID_1": 106, "OBJECTID_2": 80, "OBJECTID": 107.0, "PRECINCT_N": 85.0, "FACILITY_D": "Auditorium (A-Level)", "ACCESSIBLE": "Yes", "GIS_ID": "plp_107", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "The Specialty Hospital of Washington", "ADDRESS": "700 CONSTITUTION AVENUE NE", "ADDRESS_ID": 295162 }, "geometry": { "type": "Point", "coordinates": [ -76.995356592112472, 38.892321795813096 ] } }, +{ "type": "Feature", "properties": { "OBJECTID_1": 107, "OBJECTID_2": 81, "OBJECTID": 108.0, "PRECINCT_N": 86.0, "FACILITY_D": "Recreation Room (lower level)", "ACCESSIBLE": "Yes - Accessible - side entrance, next to the parking lot.", "GIS_ID": "plp_108", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Eliot Junior High School", "ADDRESS": "1830 CONSTITUTION AVENUE NE", "ADDRESS_ID": 286499 }, "geometry": { "type": "Point", "coordinates": [ -76.978977913437262, 38.892431159766303 ] } }, +{ "type": "Feature", "properties": { "OBJECTID_1": 108, "OBJECTID_2": 82, "OBJECTID": 109.0, "PRECINCT_N": 87.0, "FACILITY_D": "Auditorium", "ACCESSIBLE": "Yes = Use entrance at the rear of the school, next to the parking lot.", "GIS_ID": "plp_109", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Payne Elementary School", "ADDRESS": "305 15TH STREET SE", "ADDRESS_ID": 294478 }, "geometry": { "type": "Point", "coordinates": [ -76.98419490800174, 38.885132314488203 ] } }, +{ "type": "Feature", "properties": { "OBJECTID_1": 109, "OBJECTID_2": 83, "OBJECTID": 110.0, "PRECINCT_N": 89.0, "FACILITY_D": "Multi-Purpose Room", "ACCESSIBLE": "Yes", "GIS_ID": "plp_110", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "William H. Rumsey Aquatic Center", "ADDRESS": "635 NORTH CAROLINA AVENUE SE", "ADDRESS_ID": 295159 }, "geometry": { "type": "Point", "coordinates": [ -76.997028705938774, 38.886585046654147 ] } }, +{ "type": "Feature", "properties": { "OBJECTID_1": 110, "OBJECTID_2": 84, "OBJECTID": 111.0, "PRECINCT_N": 91.0, "FACILITY_D": "Multi-Purpose Room", "ACCESSIBLE": "Yes", "GIS_ID": "plp_111", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Watkins Elementary School", "ADDRESS": "420 12TH STREET SE", "ADDRESS_ID": 294486 }, "geometry": { "type": "Point", "coordinates": [ -76.989996763548163, 38.883466674788586 ] } }, +{ "type": "Feature", "properties": { "OBJECTID_1": 111, "OBJECTID_2": 85, "OBJECTID": 113.0, "PRECINCT_N": 92.0, "FACILITY_D": "Auditorium", "ACCESSIBLE": "Yes", "GIS_ID": "plp_113", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Kenilworth Elementary School", "ADDRESS": "1300 44TH STREET NE", "ADDRESS_ID": 294516 }, "geometry": { "type": "Point", "coordinates": [ -76.940484939136297, 38.908228732598651 ] } }, +{ "type": "Feature", "properties": { "OBJECTID_1": 112, "OBJECTID_2": 86, "OBJECTID": 114.0, "PRECINCT_N": 93.0, "FACILITY_D": "Multi-Purpose Room", "ACCESSIBLE": "Yes - Accessible entrance at the rear of the school.", "GIS_ID": "plp_114", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Houston Elementary School", "ADDRESS": "1100 50TH PLACE NE", "ADDRESS_ID": 156316 }, "geometry": { "type": "Point", "coordinates": [ -76.9299476407989, 38.905414987198981 ] } }, +{ "type": "Feature", "properties": { "OBJECTID_1": 113, "OBJECTID_2": 87, "OBJECTID": 115.0, "PRECINCT_N": 94.0, "FACILITY_D": "Community Room", "ACCESSIBLE": "Yes", "GIS_ID": "plp_115", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Merritt Education Center", "ADDRESS": "5002 HAYES STREET NE", "ADDRESS_ID": 294606 }, "geometry": { "type": "Point", "coordinates": [ -76.930131189589616, 38.900230067255841 ] } }, +{ "type": "Feature", "properties": { "OBJECTID_1": 114, "OBJECTID_2": 88, "OBJECTID": 116.0, "PRECINCT_N": 95.0, "FACILITY_D": "Auditorium", "ACCESSIBLE": "Yes -Use entrance located at 57th & Eads Streets.", "GIS_ID": "plp_116", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Drew Elementary School", "ADDRESS": "5500 EADS STREET NE", "ADDRESS_ID": 294609 }, "geometry": { "type": "Point", "coordinates": [ -76.922708043967461, 38.896192887555607 ] } }, +{ "type": "Feature", "properties": { "OBJECTID_1": 115, "OBJECTID_2": 89, "OBJECTID": 117.0, "PRECINCT_N": 100.0, "FACILITY_D": "Auditorium", "ACCESSIBLE": "Yes", "GIS_ID": "plp_117", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Thomas Elementary School", "ADDRESS": "650 ANACOSTIA AVENUE NE", "ADDRESS_ID": 294493 }, "geometry": { "type": "Point", "coordinates": [ -76.952110905321987, 38.901278637588895 ] } }, +{ "type": "Feature", "properties": { "OBJECTID_1": 116, "OBJECTID_2": 90, "OBJECTID": 118.0, "PRECINCT_N": 98.0, "FACILITY_D": "Multi-Purpose Room", "ACCESSIBLE": "Yes - Use rear entrance of the school.", "GIS_ID": "plp_118", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Smothers Elementary School", "ADDRESS": "4400 BROOKS STREET NE", "ADDRESS_ID": 294596 }, "geometry": { "type": "Point", "coordinates": [ -76.938468638784286, 38.893553701828701 ] } }, +{ "type": "Feature", "properties": { "OBJECTID_1": 117, "OBJECTID_2": 91, "OBJECTID": 120.0, "PRECINCT_N": 103.0, "FACILITY_D": "Auditorium", "ACCESSIBLE": "Yes - Use ground level entrance.", "GIS_ID": "plp_120", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Plummer Elementary School", "ADDRESS": "4601 TEXAS AVENUE SE", "ADDRESS_ID": 19536 }, "geometry": { "type": "Point", "coordinates": [ -76.939934669841293, 38.8872398636938 ] } }, +{ "type": "Feature", "properties": { "OBJECTID_1": 118, "OBJECTID_2": 92, "OBJECTID": 121.0, "PRECINCT_N": 104.0, "FACILITY_D": "Auditorium", "ACCESSIBLE": "Yes- Use ground level entrance.", "GIS_ID": "plp_121", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Nalle Elementary School", "ADDRESS": "219 50TH STREET SE", "ADDRESS_ID": 294474 }, "geometry": { "type": "Point", "coordinates": [ -76.930796499569979, 38.885954085228562 ] } }, +{ "type": "Feature", "properties": { "OBJECTID_1": 119, "OBJECTID_2": 93, "OBJECTID": 122.0, "PRECINCT_N": 105.0, "FACILITY_D": "Multi-Purpose Room", "ACCESSIBLE": "Yes - Use entrance located on D Street.", "GIS_ID": "plp_122", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "CW Harris Elementary School", "ADDRESS": "301 53RD STREET SE", "ADDRESS_ID": 289801 }, "geometry": { "type": "Point", "coordinates": [ -76.926115493732041, 38.883598497883369 ] } }, +{ "type": "Feature", "properties": { "OBJECTID_1": 120, "OBJECTID_2": 94, "OBJECTID": 123.0, "PRECINCT_N": 106.0, "FACILITY_D": "Auditorium", "ACCESSIBLE": "Yes - Accessible rear entrance, next to the parking lot.", "GIS_ID": "plp_123", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Davis Elementary School", "ADDRESS": "4430 H STREET SE", "ADDRESS_ID": 294598 }, "geometry": { "type": "Point", "coordinates": [ -76.937616302328593, 38.879067951063831 ] } }, +{ "type": "Feature", "properties": { "OBJECTID_1": 121, "OBJECTID_2": 95, "OBJECTID": 124.0, "PRECINCT_N": 107.0, "FACILITY_D": "Gymnasium", "ACCESSIBLE": "Yes", "GIS_ID": "plp_124", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Sousa Middle School", "ADDRESS": "3650 ELY PLACE SE", "ADDRESS_ID": 294584 }, "geometry": { "type": "Point", "coordinates": [ -76.953161747717687, 38.883908000174614 ] } }, +{ "type": "Feature", "properties": { "OBJECTID_1": 122, "OBJECTID_2": 96, "OBJECTID": 125.0, "PRECINCT_N": 142.0, "FACILITY_D": "Auditorium", "ACCESSIBLE": "Yes", "GIS_ID": "plp_125", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Jefferson Junior High School", "ADDRESS": "801 7TH STREET SW", "ADDRESS_ID": 276812 }, "geometry": { "type": "Point", "coordinates": [ -77.022910654604146, 38.879870599424763 ] } }, +{ "type": "Feature", "properties": { "OBJECTID_1": 123, "OBJECTID_2": 97, "OBJECTID": 126.0, "PRECINCT_N": 140.0, "FACILITY_D": "Auditorium", "ACCESSIBLE": "Yes", "GIS_ID": "plp_126", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Anacostia Senior High School", "ADDRESS": "1601 16TH STREET SE", "ADDRESS_ID": 155922 }, "geometry": { "type": "Point", "coordinates": [ -76.983077248298486, 38.870083725754895 ] } }, +{ "type": "Feature", "properties": { "OBJECTID_1": 124, "OBJECTID_2": 98, "OBJECTID": 127.0, "PRECINCT_N": 139.0, "FACILITY_D": "Community Service Area", "ACCESSIBLE": "Yes", "GIS_ID": "plp_127", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Thurgood Marshall Elementary", "ADDRESS": "3100 FORT LINCOLN DRIVE NE", "ADDRESS_ID": 294553 }, "geometry": { "type": "Point", "coordinates": [ -76.957633696697528, 38.927305943770008 ] } }, +{ "type": "Feature", "properties": { "OBJECTID_1": 1, "OBJECTID_2": 101, "OBJECTID": 130.0, "PRECINCT_N": 131.0, "FACILITY_D": "Auditorium", "ACCESSIBLE": "Yes", "GIS_ID": "plp_130", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Van Ness Elementary School", "ADDRESS": "1150 5TH STREET SE", "ADDRESS_ID": 294508 }, "geometry": { "type": "Point", "coordinates": [ -76.999244002225964, 38.87679611768769 ] } }, +{ "type": "Feature", "properties": { "OBJECTID_1": 2, "OBJECTID_2": 102, "OBJECTID": 131.0, "PRECINCT_N": 125.0, "FACILITY_D": "Auditorium", "ACCESSIBLE": "Yes", "GIS_ID": "plp_131", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Hendley Elementary School", "ADDRESS": "425 CHESAPEAKE STREET SE", "ADDRESS_ID": 24445 }, "geometry": { "type": "Point", "coordinates": [ -76.999184840242322, 38.828985580495711 ] } }, +{ "type": "Feature", "properties": { "OBJECTID_1": 3, "OBJECTID_2": 103, "OBJECTID": 132.0, "PRECINCT_N": 126.0, "FACILITY_D": "Library", "ACCESSIBLE": "Yes", "GIS_ID": "plp_132", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "W.B. Patterson Elementary School", "ADDRESS": "4399 SOUTH CAPITOL TERRACE SW", "ADDRESS_ID": 301073 }, "geometry": { "type": "Point", "coordinates": [ -77.008475600194785, 38.826981192201202 ] } }, +{ "type": "Feature", "properties": { "OBJECTID_1": 4, "OBJECTID_2": 104, "OBJECTID": 133.0, "PRECINCT_N": 123.0, "FACILITY_D": "Multi-Purpose Room", "ACCESSIBLE": "Yes", "GIS_ID": "plp_133", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Martin Luther King Elementary School", "ADDRESS": "600 ALABAMA AVENUE SE", "ADDRESS_ID": 294492 }, "geometry": { "type": "Point", "coordinates": [ -76.997583187909655, 38.843386565863888 ] } }, +{ "type": "Feature", "properties": { "OBJECTID_1": 5, "OBJECTID_2": 105, "OBJECTID": 135.0, "PRECINCT_N": 121.0, "FACILITY_D": "Auditorium", "ACCESSIBLE": "Yes", "GIS_ID": "plp_135", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "National Collegiate Prep @ Draper", "ADDRESS": "908 WAHLER PLACE SE", "ADDRESS_ID": 294502 }, "geometry": { "type": "Point", "coordinates": [ -76.992268817990308, 38.834327886510565 ] } }, +{ "type": "Feature", "properties": { "OBJECTID_1": 6, "OBJECTID_2": 106, "OBJECTID": 136.0, "PRECINCT_N": 120.0, "FACILITY_D": "Meeting Room", "ACCESSIBLE": "Yes - Use side Entrance", "GIS_ID": "plp_136", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Malcolm X Elementary School", "ADDRESS": "1351 ALABAMA AVENUE SE", "ADDRESS_ID": 289201 }, "geometry": { "type": "Point", "coordinates": [ -76.986212854490333, 38.844973623092343 ] } }, +{ "type": "Feature", "properties": { "OBJECTID_1": 7, "OBJECTID_2": 107, "OBJECTID": 137.0, "PRECINCT_N": 118.0, "FACILITY_D": "Gymnasium", "ACCESSIBLE": "Yes", "GIS_ID": "plp_137", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Garnet C. Wilkinson Elementary School", "ADDRESS": "2330 POMEROY ROAD SE", "ADDRESS_ID": 294542 }, "geometry": { "type": "Point", "coordinates": [ -76.985550422151263, 38.856844389461791 ] } }, +{ "type": "Feature", "properties": { "OBJECTID_1": 8, "OBJECTID_2": 108, "OBJECTID": 138.0, "PRECINCT_N": 119.0, "FACILITY_D": "Auditorium", "ACCESSIBLE": "Yes", "GIS_ID": "plp_138", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Excel Academy PCS @ Birney", "ADDRESS": "2501 MARTIN LUTHER KING JR AVENUE SE", "ADDRESS_ID": 278172 }, "geometry": { "type": "Point", "coordinates": [ -76.99535456253949, 38.859761758349642 ] } }, +{ "type": "Feature", "properties": { "OBJECTID_1": 9, "OBJECTID_2": 109, "OBJECTID": 139.0, "PRECINCT_N": 117.0, "FACILITY_D": "Main Lobby", "ACCESSIBLE": "Yes - Use ramped entrance on Stanton Road.", "GIS_ID": "plp_139", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Douglas Community Recreation Center", "ADDRESS": "1898 STANTON TERRACE SE", "ADDRESS_ID": 286513 }, "geometry": { "type": "Point", "coordinates": [ -76.977761548811543, 38.852636229366837 ] } }, +{ "type": "Feature", "properties": { "OBJECTID_1": 10, "OBJECTID_2": 110, "OBJECTID": 140.0, "PRECINCT_N": 114.0, "FACILITY_D": "Church Hall", "ACCESSIBLE": "Yes", "GIS_ID": "plp_140", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Union Temple Baptist Church", "ADDRESS": "1225 W STREET SE", "ADDRESS_ID": 70732 }, "geometry": { "type": "Point", "coordinates": [ -76.988939737432986, 38.864499675202886 ] } }, +{ "type": "Feature", "properties": { "OBJECTID_1": 11, "OBJECTID_2": 111, "OBJECTID": 141.0, "PRECINCT_N": 113.0, "FACILITY_D": "Multi-Purpose Room", "ACCESSIBLE": "Yes", "GIS_ID": "plp_141", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Senior Wellness Center", "ADDRESS": "3001 ALABAMA AVENUE SE", "ADDRESS_ID": 289473 }, "geometry": { "type": "Point", "coordinates": [ -76.964116112055365, 38.860502954486471 ] } }, +{ "type": "Feature", "properties": { "OBJECTID_1": 12, "OBJECTID_2": 112, "OBJECTID": 142.0, "PRECINCT_N": 112.0, "FACILITY_D": "Meeting Room", "ACCESSIBLE": "Yes", "GIS_ID": "plp_142", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Anacostia Public Library", "ADDRESS": "1800 GOOD HOPE ROAD SE", "ADDRESS_ID": 53560 }, "geometry": { "type": "Point", "coordinates": [ -76.978485420182579, 38.865896402057949 ] } }, +{ "type": "Feature", "properties": { "OBJECTID_1": 13, "OBJECTID_2": 113, "OBJECTID": 2.0, "PRECINCT_N": 99.0, "FACILITY_D": "Multi-Purpose Room", "ACCESSIBLE": "Yes", "GIS_ID": "plp_2", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Smothers Elementary School", "ADDRESS": "4400 BROOKS STREET NE", "ADDRESS_ID": 294596 }, "geometry": { "type": "Point", "coordinates": [ -76.938468638784286, 38.893553701828701 ] } }, +{ "type": "Feature", "properties": { "OBJECTID_1": 14, "OBJECTID_2": 114, "OBJECTID": 3.0, "PRECINCT_N": 97.0, "FACILITY_D": "Auditorium", "ACCESSIBLE": "Yes", "GIS_ID": "plp_3", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Kelly Miller Middle School", "ADDRESS": "301 49TH STREET NE", "ADDRESS_ID": 294476 }, "geometry": { "type": "Point", "coordinates": [ -76.932456126905393, 38.893314974927328 ] } }, +{ "type": "Feature", "properties": { "OBJECTID_1": 15, "OBJECTID_2": 115, "OBJECTID": 4.0, "PRECINCT_N": 130.0, "FACILITY_D": "Multi-Purpose Room (lower level)", "ACCESSIBLE": "Yes - Use west entrance.", "GIS_ID": "plp_4", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Lutheran Church of the Reformation", "ADDRESS": "212 EAST CAPITOL STREET NE", "ADDRESS_ID": 286648 }, "geometry": { "type": "Point", "coordinates": [ -77.002857667709918, 38.890112459701982 ] } }, +{ "type": "Feature", "properties": { "OBJECTID_1": 16, "OBJECTID_2": 116, "OBJECTID": 112.0, "PRECINCT_N": 90.0, "FACILITY_D": "Auditorium", "ACCESSIBLE": "Yes", "GIS_ID": "plp_112", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Tyler Elementary School", "ADDRESS": "1001 G STREET SE", "ADDRESS_ID": 294505 }, "geometry": { "type": "Point", "coordinates": [ -76.992041656836633, 38.881084023669693 ] } }, +{ "type": "Feature", "properties": { "OBJECTID_1": 17, "OBJECTID_2": 117, "OBJECTID": 119.0, "PRECINCT_N": 101.0, "FACILITY_D": "Auditorium", "ACCESSIBLE": "Yes", "GIS_ID": "plp_119", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "River Terrace Elementary School", "ADDRESS": "420 34TH STREET NE", "ADDRESS_ID": 294485 }, "geometry": { "type": "Point", "coordinates": [ -76.957807551091278, 38.895428461353752 ] } }, +{ "type": "Feature", "properties": { "OBJECTID_1": 18, "OBJECTID_2": 118, "OBJECTID": 134.0, "PRECINCT_N": 122.0, "FACILITY_D": "Armory", "ACCESSIBLE": "Yes - Accessible entrance adjacent to parking lot.", "GIS_ID": "plp_134", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Ballou Senior High School", "ADDRESS": "3401 4TH STREET SE", "ADDRESS_ID": 294567 }, "geometry": { "type": "Point", "coordinates": [ -77.000975257588308, 38.839382331531922 ] } }, +{ "type": "Feature", "properties": { "OBJECTID_1": 19, "OBJECTID_2": 119, "OBJECTID": 1.0, "PRECINCT_N": 2.0, "FACILITY_D": "Multi-Purpose Room", "ACCESSIBLE": "Yes", "GIS_ID": "plp_1", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "The School Without Walls", "ADDRESS": "2130 G STREET NW", "ADDRESS_ID": 242528 }, "geometry": { "type": "Point", "coordinates": [ -77.048186465638153, 38.898123787570832 ] } }, +{ "type": "Feature", "properties": { "OBJECTID_1": 20, "OBJECTID_2": 120, "OBJECTID": 40.0, "PRECINCT_N": 72.0, "FACILITY_D": "Community Room (1st floor)", "ACCESSIBLE": "Yes", "GIS_ID": "plp_40", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Langdon Park Recreation Center", "ADDRESS": "2901 20TH STREET NE", "ADDRESS_ID": 287283 }, "geometry": { "type": "Point", "coordinates": [ -76.975788486876453, 38.926822413922125 ] } }, +{ "type": "Feature", "properties": { "OBJECTID_1": 21, "OBJECTID_2": 121, "OBJECTID": 29.0, "PRECINCT_N": 34.0, "FACILITY_D": "Gymnasium (lower level)", "ACCESSIBLE": "Yes - Use ramped entrance.", "GIS_ID": "plp_29", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Edmund Burke School", "ADDRESS": "2955 UPTON STREET NW", "ADDRESS_ID": 284536 }, "geometry": { "type": "Point", "coordinates": [ -77.061628156880005, 38.942361327729408 ] } }, +{ "type": "Feature", "properties": { "OBJECTID_1": 22, "OBJECTID_2": 122, "OBJECTID": 30.0, "PRECINCT_N": 45.0, "FACILITY_D": "Community Room", "ACCESSIBLE": "Yes", "GIS_ID": "plp_30", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "MPD - Regional Operation Command (North)", "ADDRESS": "801 SHEPHERD STREET NW", "ADDRESS_ID": 252510 }, "geometry": { "type": "Point", "coordinates": [ -77.023810447712307, 38.940088934414405 ] } }, +{ "type": "Feature", "properties": { "OBJECTID_1": 23, "OBJECTID_2": 123, "OBJECTID": 31.0, "PRECINCT_N": 8.0, "FACILITY_D": "Gymnasium", "ACCESSIBLE": "Yes", "GIS_ID": "plp_31", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Palisades Recreation Center", "ADDRESS": "5100 SHERIER PLACE NW", "ADDRESS_ID": 268352 }, "geometry": { "type": "Point", "coordinates": [ -77.102634605747866, 38.924441924850953 ] } }, +{ "type": "Feature", "properties": { "OBJECTID_1": 24, "OBJECTID_2": 124, "OBJECTID": 32.0, "PRECINCT_N": 41.0, "FACILITY_D": "Great Hall", "ACCESSIBLE": "Yes - Use entrance on Oak Street.", "GIS_ID": "plp_32", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Trinity AME Zion Church", "ADDRESS": "3505 16TH STREET NW", "ADDRESS_ID": 234593 }, "geometry": { "type": "Point", "coordinates": [ -77.036080424552495, 38.934550552844456 ] } }, +{ "type": "Feature", "properties": { "OBJECTID_1": 25, "OBJECTID_2": 125, "OBJECTID": 33.0, "PRECINCT_N": 43.0, "FACILITY_D": "Recreation Area", "ACCESSIBLE": "Yes", "GIS_ID": "plp_33", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Park View Recreation Center", "ADDRESS": "693 OTIS PLACE NW", "ADDRESS_ID": 295160 }, "geometry": { "type": "Point", "coordinates": [ -77.021350314279189, 38.935002875205896 ] } }, +{ "type": "Feature", "properties": { "OBJECTID_1": 26, "OBJECTID_2": 126, "OBJECTID": 34.0, "PRECINCT_N": 42.0, "FACILITY_D": "Dining Room (lower level)", "ACCESSIBLE": "Yes", "GIS_ID": "plp_34", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Mt. Rona Baptist Church", "ADDRESS": "3431 13TH STREET NW", "ADDRESS_ID": 230950 }, "geometry": { "type": "Point", "coordinates": [ -77.029452852579396, 38.932240970226857 ] } }, +{ "type": "Feature", "properties": { "OBJECTID_1": 27, "OBJECTID_2": 1, "OBJECTID": 5.0, "PRECINCT_N": 80.0, "FACILITY_D": "Quander Room", "ACCESSIBLE": "Yes - Accessible entrance rear of Church.", "GIS_ID": "plp_5", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "St. Benedict the Moor Church", "ADDRESS": "320 21ST STREET NE", "ADDRESS_ID": 287504 }, "geometry": { "type": "Point", "coordinates": [ -76.975457535682949, 38.894225931293576 ] } }, +{ "type": "Feature", "properties": { "OBJECTID_1": 28, "OBJECTID_2": 2, "OBJECTID": 6.0, "PRECINCT_N": 102.0, "FACILITY_D": "Meeting Room", "ACCESSIBLE": "Yes", "GIS_ID": "plp_6", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Benning Public Library", "ADDRESS": "3935 BENNING ROAD NE", "ADDRESS_ID": 295144 }, "geometry": { "type": "Point", "coordinates": [ -76.947759549614048, 38.89419424144954 ] } }, +{ "type": "Feature", "properties": { "OBJECTID_1": 29, "OBJECTID_2": 3, "OBJECTID": 7.0, "PRECINCT_N": 96.0, "FACILITY_D": "Fellowship Hall", "ACCESSIBLE": "Yes", "GIS_ID": "plp_7", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Hughes Memorial United Methodist Church", "ADDRESS": "25 53RD STREET NE", "ADDRESS_ID": 287077 }, "geometry": { "type": "Point", "coordinates": [ -76.925776919030255, 38.890534557241999 ] } }, +{ "type": "Feature", "properties": { "OBJECTID_1": 30, "OBJECTID_2": 4, "OBJECTID": 8.0, "PRECINCT_N": 88.0, "FACILITY_D": "Church Hall", "ACCESSIBLE": "Yes", "GIS_ID": "plp_8", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Thankful Baptist Church", "ADDRESS": "1401 INDEPENDENCE AVENUE SE", "ADDRESS_ID": 65107 }, "geometry": { "type": "Point", "coordinates": [ -76.98528389471295, 38.887379306202888 ] } }, +{ "type": "Feature", "properties": { "OBJECTID_1": 31, "OBJECTID_2": 5, "OBJECTID": 9.0, "PRECINCT_N": 132.0, "FACILITY_D": "Gymnasium", "ACCESSIBLE": "Yes", "GIS_ID": "plp_9", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "DC Center for Therapeutic Recreation", "ADDRESS": "3030 G STREET SE", "ADDRESS_ID": 288770 }, "geometry": { "type": "Point", "coordinates": [ -76.963203222616286, 38.880871575493281 ] } }, +{ "type": "Feature", "properties": { "OBJECTID_1": 32, "OBJECTID_2": 6, "OBJECTID": 10.0, "PRECINCT_N": 128.0, "FACILITY_D": "Junior Church Hall", "ACCESSIBLE": "Yes - Accessible entrance adjacent to parking lot.", "GIS_ID": "plp_10", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Friendship Baptist Church", "ADDRESS": "900 DELAWARE AVENUE SW", "ADDRESS_ID": 276854 }, "geometry": { "type": "Point", "coordinates": [ -77.012497934269035, 38.878918819849204 ] } }, +{ "type": "Feature", "properties": { "OBJECTID_1": 33, "OBJECTID_2": 7, "OBJECTID": 11.0, "PRECINCT_N": 111.0, "FACILITY_D": "John Bailey Room", "ACCESSIBLE": "Yes - Use the Center for Employment Training entrance for ground level access (2815", "GIS_ID": "plp_11", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "St. Francis Xavier Church", "ADDRESS": "2800 PENNSYLVANIA AVENUE SE", "ADDRESS_ID": 44697 }, "geometry": { "type": "Point", "coordinates": [ -76.967509922797618, 38.872519727803635 ] } }, +{ "type": "Feature", "properties": { "OBJECTID_1": 34, "OBJECTID_2": 8, "OBJECTID": 12.0, "PRECINCT_N": 108.0, "FACILITY_D": "Community Room", "ACCESSIBLE": "Yes - Accessible - rear entrance, near parking lot.", "GIS_ID": "plp_12", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Pennsylvania Avenue Baptist Church", "ADDRESS": "3000 PENNSYLVANIA AVENUE SE", "ADDRESS_ID": 42549 }, "geometry": { "type": "Point", "coordinates": [ -76.963813000815662, 38.871129274649782 ] } }, +{ "type": "Feature", "properties": { "OBJECTID_1": 35, "OBJECTID_2": 9, "OBJECTID": 13.0, "PRECINCT_N": 127.0, "FACILITY_D": "Meeting Room", "ACCESSIBLE": "Yes", "GIS_ID": "plp_13", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "King Greenleaf Recreation Center", "ADDRESS": "201 N STREET SW", "ADDRESS_ID": 52917 }, "geometry": { "type": "Point", "coordinates": [ -77.012792499594184, 38.875015810745062 ] } }, +{ "type": "Feature", "properties": { "OBJECTID_1": 36, "OBJECTID_2": 10, "OBJECTID": 14.0, "PRECINCT_N": 109.0, "FACILITY_D": "Gymnasium", "ACCESSIBLE": "Yes", "GIS_ID": "plp_14", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Randle-Highlands Elementary School", "ADDRESS": "1650 30TH STREET SE", "ADDRESS_ID": 156337 }, "geometry": { "type": "Point", "coordinates": [ -76.964356281775736, 38.870091403187843 ] } }, +{ "type": "Feature", "properties": { "OBJECTID_1": 37, "OBJECTID_2": 11, "OBJECTID": 16.0, "PRECINCT_N": 134.0, "FACILITY_D": "Multipurpose Room", "ACCESSIBLE": "Yes - Use rear entrance, adjacent to parking lot.", "GIS_ID": "plp_16", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Allen AME Church", "ADDRESS": "2498 ALABAMA AVENUE SE", "ADDRESS_ID": 46843 }, "geometry": { "type": "Point", "coordinates": [ -76.970282941213242, 38.856884832198325 ] } }, +{ "type": "Feature", "properties": { "OBJECTID_1": 38, "OBJECTID_2": 12, "OBJECTID": 17.0, "PRECINCT_N": 115.0, "FACILITY_D": "Community Room", "ACCESSIBLE": "Yes", "GIS_ID": "plp_17", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Seventh District Police Station", "ADDRESS": "2455 ALABAMA AVENUE SE", "ADDRESS_ID": 278162 }, "geometry": { "type": "Point", "coordinates": [ -76.969521397067084, 38.853355764139451 ] } }, +{ "type": "Feature", "properties": { "OBJECTID_1": 39, "OBJECTID_2": 13, "OBJECTID": 18.0, "PRECINCT_N": 116.0, "FACILITY_D": "Fellowship Hall", "ACCESSIBLE": "Yes", "GIS_ID": "plp_18", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "New Image Community Baptist Church", "ADDRESS": "1839 ALABAMA AVENUE SE", "ADDRESS_ID": 54816 }, "geometry": { "type": "Point", "coordinates": [ -76.977839930327974, 38.847658633098888 ] } }, +{ "type": "Feature", "properties": { "OBJECTID_1": 40, "OBJECTID_2": 14, "OBJECTID": 19.0, "PRECINCT_N": 124.0, "FACILITY_D": "Church Hall", "ACCESSIBLE": "Yes", "GIS_ID": "plp_19", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Convenant Baptist Church", "ADDRESS": "3845 SOUTH CAPITOL STREET SW", "ADDRESS_ID": 301907 }, "geometry": { "type": "Point", "coordinates": [ -77.00866130403007, 38.83401036254331 ] } }, +{ "type": "Feature", "properties": { "OBJECTID_1": 41, "OBJECTID_2": 15, "OBJECTID": 20.0, "PRECINCT_N": 61.0, "FACILITY_D": "Multi-purpose Room", "ACCESSIBLE": "Yes", "GIS_ID": "plp_20", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Fort Stevens Recreation Center", "ADDRESS": "1327 VAN BUREN STREET NW", "ADDRESS_ID": 290152 }, "geometry": { "type": "Point", "coordinates": [ -77.031090800845547, 38.970269148593538 ] } }, +{ "type": "Feature", "properties": { "OBJECTID_1": 42, "OBJECTID_2": 16, "OBJECTID": 21.0, "PRECINCT_N": 50.0, "FACILITY_D": "Auditorium", "ACCESSIBLE": "Yes - Accessible rear entrance next to the parking lot.", "GIS_ID": "plp_21", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Chevy Chase Community Center", "ADDRESS": "5601 CONNECTICUT AVENUE NW", "ADDRESS_ID": 263959 }, "geometry": { "type": "Point", "coordinates": [ -77.075108613262955, 38.965158421273387 ] } }, +{ "type": "Feature", "properties": { "OBJECTID_1": 43, "OBJECTID_2": 17, "OBJECTID": 22.0, "PRECINCT_N": 52.0, "FACILITY_D": "Roth Gymnasium Bldg.", "ACCESSIBLE": "Yes - Access from parking lot.", "GIS_ID": "plp_22", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "St. John's College High School", "ADDRESS": "2607 MILITARY ROAD NW", "ADDRESS_ID": 259840 }, "geometry": { "type": "Point", "coordinates": [ -77.055204940372292, 38.962417220863394 ] } }, +{ "type": "Feature", "properties": { "OBJECTID_1": 44, "OBJECTID_2": 18, "OBJECTID": 24.0, "PRECINCT_N": 60.0, "FACILITY_D": "Gymnasium", "ACCESSIBLE": "Yes", "GIS_ID": "plp_24", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Church of the Nativity Youth Center", "ADDRESS": "6000 GEORGIA AVENUE NW", "ADDRESS_ID": 253197 }, "geometry": { "type": "Point", "coordinates": [ -77.028226985088239, 38.962848161689173 ] } }, +{ "type": "Feature", "properties": { "OBJECTID_1": 45, "OBJECTID_2": 19, "OBJECTID": 25.0, "PRECINCT_N": 138.0, "FACILITY_D": "Fellowship Hall", "ACCESSIBLE": "Yes - Accessible entrance adjacent to parking lot.", "GIS_ID": "plp_25", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Capital Memorial Adventist Church", "ADDRESS": "3150 CHESAPEAKE STREET NW", "ADDRESS_ID": 284592 }, "geometry": { "type": "Point", "coordinates": [ -77.06396319555985, 38.950203225069913 ] } }, +{ "type": "Feature", "properties": { "OBJECTID_1": 46, "OBJECTID_2": 20, "OBJECTID": 26.0, "PRECINCT_N": 31.0, "FACILITY_D": "Church Hall", "ACCESSIBLE": "Yes - Accessible entrance located on 42nd St.", "GIS_ID": "plp_26", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "St. Columba's Episcopal Church", "ADDRESS": "4201 ALBEMARLE STREET NW", "ADDRESS_ID": 301545 }, "geometry": { "type": "Point", "coordinates": [ -77.08244680641738, 38.948217666726201 ] } }, +{ "type": "Feature", "properties": { "OBJECTID_1": 47, "OBJECTID_2": 21, "OBJECTID": 27.0, "PRECINCT_N": 44.0, "FACILITY_D": "Multi-Purpose Room", "ACCESSIBLE": "Yes", "GIS_ID": "plp_27", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "North Capitol at Plymouth", "ADDRESS": "5233 NORTH CAPTIOL STREET NE", "ADDRESS_ID": 298101 }, "geometry": { "type": "Point", "coordinates": [ -77.00866515707142, 38.954067744263412 ] } }, +{ "type": "Feature", "properties": { "OBJECTID_1": 48, "OBJECTID_2": 22, "OBJECTID": 28.0, "PRECINCT_N": 9.0, "FACILITY_D": "Vestry Hall", "ACCESSIBLE": "Yes", "GIS_ID": "plp_28", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Metropolitan Memorial United Methodist Church", "ADDRESS": "3401 NEBRASKA AVENUE NW", "ADDRESS_ID": 298676 }, "geometry": { "type": "Point", "coordinates": [ -77.087799340484636, 38.934959237025218 ] } }, +{ "type": "Feature", "properties": { "OBJECTID_1": 49, "OBJECTID_2": 23, "OBJECTID": 47.0, "PRECINCT_N": 75.0, "FACILITY_D": "Auditorium", "ACCESSIBLE": "Yes", "GIS_ID": "plp_47", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "McKinley Technology Senior High School", "ADDRESS": "151 T STREET NE", "ADDRESS_ID": 296345 }, "geometry": { "type": "Point", "coordinates": [ -77.004122439059401, 38.915219785761813 ] } }, +{ "type": "Feature", "properties": { "OBJECTID_1": 50, "OBJECTID_2": 24, "OBJECTID": 48.0, "PRECINCT_N": 141.0, "FACILITY_D": "North Lobby", "ACCESSIBLE": "Yes", "GIS_ID": "plp_48", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Frank D. Reeves Municipal Center", "ADDRESS": "2000 14TH STREET NW", "ADDRESS_ID": 239976 }, "geometry": { "type": "Point", "coordinates": [ -77.032403524076486, 38.917444026973975 ] } }, +{ "type": "Feature", "properties": { "OBJECTID_1": 125, "OBJECTID_2": 99, "OBJECTID": 128.0, "PRECINCT_N": 137.0, "FACILITY_D": "Multi-Purpose Room", "ACCESSIBLE": "Yes - Accessible entrance adjacent to parking lot.", "GIS_ID": "plp_128", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Garrison Elementary School", "ADDRESS": "1200 S STREET NW", "ADDRESS_ID": 294509 }, "geometry": { "type": "Point", "coordinates": [ -77.028612550392012, 38.913900958245385 ] } }, +{ "type": "Feature", "properties": { "OBJECTID_1": 126, "OBJECTID_2": 100, "OBJECTID": 129.0, "PRECINCT_N": 133.0, "FACILITY_D": "Library", "ACCESSIBLE": "Yes - Accessible entrance rear of school", "GIS_ID": "plp_129", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Orr Elementary School", "ADDRESS": "2200 MINNESOTA AVENUE SE", "ADDRESS_ID": 294539 }, "geometry": { "type": "Point", "coordinates": [ -76.974484011563916, 38.871796823975465 ] } }, +{ "type": "Feature", "properties": { "OBJECTID_1": 127, "OBJECTID_2": 127, "OBJECTID": 35.0, "PRECINCT_N": 71.0, "FACILITY_D": "Upper Fellowship Hall", "ACCESSIBLE": "Yes - Accessible entrance on Bladensburg Road", "GIS_ID": "plp_35", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Mt. Horeb Baptist Church", "ADDRESS": "3015 EARL PLACE NE", "ADDRESS_ID": 287380 }, "geometry": { "type": "Point", "coordinates": [ -76.962575827800578, 38.928281639524052 ] } }, +{ "type": "Feature", "properties": { "OBJECTID_1": 128, "OBJECTID_2": 128, "OBJECTID": 36.0, "PRECINCT_N": 28.0, "FACILITY_D": "Parish Center (near Klingle Place)", "ACCESSIBLE": "Yes", "GIS_ID": "plp_36", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Church of the Annunciation Parish", "ADDRESS": "3810 MASSACHUSETTS AVENUE NW", "ADDRESS_ID": 263608 }, "geometry": { "type": "Point", "coordinates": [ -77.075817469590191, 38.930148719361682 ] } }, +{ "type": "Feature", "properties": { "OBJECTID_1": 129, "OBJECTID_2": 129, "OBJECTID": 37.0, "PRECINCT_N": 136.0, "FACILITY_D": "Conference Room", "ACCESSIBLE": "Yes - Use side entrance from parking lot", "GIS_ID": "plp_37", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Leading Age", "ADDRESS": "2519 CONNECTICUT AVENUE NW", "ADDRESS_ID": 284405 }, "geometry": { "type": "Point", "coordinates": [ -77.050817099689468, 38.923171900472795 ] } }, +{ "type": "Feature", "properties": { "OBJECTID_1": 130, "OBJECTID_2": 130, "OBJECTID": 38.0, "PRECINCT_N": 12.0, "FACILITY_D": "Church Hall", "ACCESSIBLE": "Yes", "GIS_ID": "plp_38", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "St Sophia's Greek Orthodox Cathederal Church", "ADDRESS": "3600 MASSACHUSETTS AVENUE NW", "ADDRESS_ID": 262638 }, "geometry": { "type": "Point", "coordinates": [ -77.071174182052317, 38.926724696389051 ] } }, +{ "type": "Feature", "properties": { "OBJECTID_1": 131, "OBJECTID_2": 131, "OBJECTID": 39.0, "PRECINCT_N": 39.0, "FACILITY_D": "Auditorium", "ACCESSIBLE": "Yes", "GIS_ID": "plp_39", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Bell Multicultural High School", "ADDRESS": "3101 16th Street NW", "ADDRESS_ID": 234375 }, "geometry": { "type": "Point", "coordinates": [ -77.035851518793763, 38.929540334081075 ] } }, +{ "type": "Feature", "properties": { "OBJECTID_1": 132, "OBJECTID_2": 132, "OBJECTID": 41.0, "PRECINCT_N": 36.0, "FACILITY_D": "Community Room", "ACCESSIBLE": "Yes", "GIS_ID": "plp_41", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Latin American Youth Center", "ADDRESS": "1419 COLUMBIA ROAD NW", "ADDRESS_ID": 234363 }, "geometry": { "type": "Point", "coordinates": [ -77.033357815907635, 38.927766394492799 ] } }, +{ "type": "Feature", "properties": { "OBJECTID_1": 133, "OBJECTID_2": 133, "OBJECTID": 42.0, "PRECINCT_N": 135.0, "FACILITY_D": "Church Hall", "ACCESSIBLE": "Yes - Use ramped entrance on Rhode Island Avenue.", "GIS_ID": "plp_42", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Mt. Bethel Baptist Church", "ADDRESS": "1901 1ST STREET NW", "ADDRESS_ID": 227421 }, "geometry": { "type": "Point", "coordinates": [ -77.01182725241577, 38.916136758622002 ] } }, +{ "type": "Feature", "properties": { "OBJECTID_1": 134, "OBJECTID_2": 134, "OBJECTID": 43.0, "PRECINCT_N": 11.0, "FACILITY_D": "Union Hall", "ACCESSIBLE": "Yes", "GIS_ID": "plp_43", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "International Union of Operating Engineer", "ADDRESS": "2461 WISCONSIN AVENUE NW", "ADDRESS_ID": 284395 }, "geometry": { "type": "Point", "coordinates": [ -77.072501975359245, 38.92234916933058 ] } }, +{ "type": "Feature", "properties": { "OBJECTID_1": 135, "OBJECTID_2": 135, "OBJECTID": 44.0, "PRECINCT_N": 23.0, "FACILITY_D": "Library and Computer Room", "ACCESSIBLE": "Yes", "GIS_ID": "plp_44", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Loughran Community Center", "ADDRESS": "2500 14TH STREET NW", "ADDRESS_ID": 234200 }, "geometry": { "type": "Point", "coordinates": [ -77.032362118987933, 38.921998738498395 ] } }, +{ "type": "Feature", "properties": { "OBJECTID_1": 136, "OBJECTID_2": 136, "OBJECTID": 45.0, "PRECINCT_N": 25.0, "FACILITY_D": "Fellowship Hall", "ACCESSIBLE": "Yes", "GIS_ID": "plp_45", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Goodwill Baptist Church", "ADDRESS": "1862 KALORAMA ROAD NW", "ADDRESS_ID": 235475 }, "geometry": { "type": "Point", "coordinates": [ -77.043826034297922, 38.919316646134163 ] } }, +{ "type": "Feature", "properties": { "OBJECTID_1": 137, "OBJECTID_2": 137, "OBJECTID": 46.0, "PRECINCT_N": 13.0, "FACILITY_D": "Fellowship Hall", "ACCESSIBLE": "Yes", "GIS_ID": "plp_46", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Goodwill Baptist Church", "ADDRESS": "1862 KALORAMA ROAD NW", "ADDRESS_ID": 235475 }, "geometry": { "type": "Point", "coordinates": [ -77.043826034297922, 38.919316646134163 ] } }, +{ "type": "Feature", "properties": { "OBJECTID_1": 138, "OBJECTID_2": 138, "OBJECTID": 143.0, "PRECINCT_N": 143.0, "FACILITY_D": "Church Hall\/Meeting Room", "ACCESSIBLE": "Yes", "GIS_ID": "plp_143", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Chinese Community Church", "ADDRESS": "500 I STREET NW", "ADDRESS_ID": 238945 }, "geometry": { "type": "Point", "coordinates": [ -77.019133548822794, 38.900621429714505 ] } }, +{ "type": "Feature", "properties": { "OBJECTID_1": 139, "OBJECTID_2": 139, "OBJECTID": 15.0, "PRECINCT_N": 110.0, "FACILITY_D": "Multi-Purpose Room", "ACCESSIBLE": "Yes", "GIS_ID": "plp_15", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "St. Timothy's Episcopal Church", "ADDRESS": "3601 ALABAMA AVENUE SE", "ADDRESS_ID": 33104 }, "geometry": { "type": "Point", "coordinates": [ -76.956092288786962, 38.862989239014041 ] } }, +{ "type": "Feature", "properties": { "OBJECTID_1": 140, "OBJECTID_2": 140, "OBJECTID": 23.0, "PRECINCT_N": 32.0, "FACILITY_D": "Fellowship Hall (1st Floor)", "ACCESSIBLE": "Yes - Use Connecticut Ave. entrance", "GIS_ID": "plp_23", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Wesley Methodist Church", "ADDRESS": "5312 CONNECTICUT AVENUE NW", "ADDRESS_ID": 301282 }, "geometry": { "type": "Point", "coordinates": [ -77.07264987664179, 38.959324066446086 ] } }, +{ "type": "Feature", "properties": { "OBJECTID_1": 141, "OBJECTID_2": 141, "OBJECTID": 63.0, "PRECINCT_N": 6.0, "FACILITY_D": "Gallery", "ACCESSIBLE": "Yes", "GIS_ID": "plp_63", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Duke Ellington School of the Arts", "ADDRESS": "3500 R STREET NW", "ADDRESS_ID": 294569 }, "geometry": { "type": "Point", "coordinates": [ -77.070307562295099, 38.913446044424617 ] } }, +{ "type": "Feature", "properties": { "OBJECTID_1": 142, "OBJECTID_2": 142, "OBJECTID": 70.0, "PRECINCT_N": 26.0, "FACILITY_D": "Gymnasium", "ACCESSIBLE": "Yes - Use ramped entrance on 27th Street", "GIS_ID": "plp_70", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Oyster Elementary School", "ADDRESS": "2801 CALVERT STREET NW", "ADDRESS_ID": 275944 }, "geometry": { "type": "Point", "coordinates": [ -77.057203378566399, 38.923595492962626 ] } }, +{ "type": "Feature", "properties": { "OBJECTID_1": 143, "OBJECTID_2": 143, "OBJECTID": 89.0, "PRECINCT_N": 58.0, "FACILITY_D": "Community Room.", "ACCESSIBLE": "Yes - Ground level at Georgia. Avenue & Quackenbos Street.", "GIS_ID": "plp_89", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Fourth District Police Station", "ADDRESS": "6001 GEORGIA AVENUE NW", "ADDRESS_ID": 243485 }, "geometry": { "type": "Point", "coordinates": [ -77.027410983594336, 38.963125449653411 ] } } +] +} \ No newline at end of file diff --git a/packages/turf-concave/test/fixtures/out/pts1_out.geojson b/packages/turf-concave/test/fixtures/out/pts1_out.geojson new file mode 100644 index 0000000000..c0bacd50c7 --- /dev/null +++ b/packages/turf-concave/test/fixtures/out/pts1_out.geojson @@ -0,0 +1,264 @@ +{ + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "properties": { + "marker-color": "#f0f", + "marker-size": "small" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -122.40898132324217, + 37.77505678240509 + ] + } + }, + { + "type": "Feature", + "properties": { + "marker-color": "#f0f", + "marker-size": "small" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -122.43095397949219, + 37.74411415606583 + ] + } + }, + { + "type": "Feature", + "properties": { + "marker-color": "#f0f", + "marker-size": "small" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -122.44331359863283, + 37.726194088705576 + ] + } + }, + { + "type": "Feature", + "properties": { + "marker-color": "#f0f", + "marker-size": "small" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -122.47833251953125, + 37.73651223296987 + ] + } + }, + { + "type": "Feature", + "properties": { + "marker-color": "#f0f", + "marker-size": "small" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -122.4103546142578, + 37.72184917678752 + ] + } + }, + { + "type": "Feature", + "properties": { + "marker-color": "#f0f", + "marker-size": "small" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -122.41790771484375, + 37.74682893940135 + ] + } + }, + { + "type": "Feature", + "properties": { + "marker-color": "#f0f", + "marker-size": "small" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -122.53395080566405, + 37.83690319650768 + ] + } + }, + { + "type": "Feature", + "properties": { + "marker-color": "#f0f", + "marker-size": "small" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -122.51541137695311, + 37.83473402375478 + ] + } + }, + { + "type": "Feature", + "properties": { + "marker-color": "#f0f", + "marker-size": "small" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -122.49069213867188, + 37.837445479729666 + ] + } + }, + { + "type": "Feature", + "properties": { + "marker-color": "#f0f", + "marker-size": "small" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -122.52639770507812, + 37.83473402375478 + ] + } + }, + { + "type": "Feature", + "properties": { + "marker-color": "#f0f", + "marker-size": "small" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -122.62527465820311, + 37.89327929625019 + ] + } + }, + { + "type": "Feature", + "properties": { + "marker-color": "#f0f", + "marker-size": "small" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -122.60467529296875, + 37.902490518640995 + ] + } + }, + { + "type": "Feature", + "properties": { + "marker-color": "#f0f", + "marker-size": "small" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -122.58682250976562, + 37.895988598965644 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + -122.62527465820311, + 37.89327929625019 + ], + [ + -122.60467529296875, + 37.902490518640995 + ], + [ + -122.58682250976562, + 37.895988598965644 + ], + [ + -122.62527465820311, + 37.89327929625019 + ] + ] + ], + [ + [ + [ + -122.52639770507812, + 37.83473402375478 + ], + [ + -122.53395080566405, + 37.83690319650768 + ], + [ + -122.51541137695311, + 37.83473402375478 + ], + [ + -122.52639770507812, + 37.83473402375478 + ] + ] + ], + [ + [ + [ + -122.44331359863283, + 37.726194088705576 + ], + [ + -122.47833251953125, + 37.73651223296987 + ], + [ + -122.43095397949219, + 37.74411415606583 + ], + [ + -122.40898132324217, + 37.77505678240509 + ], + [ + -122.4103546142578, + 37.72184917678752 + ], + [ + -122.44331359863283, + 37.726194088705576 + ] + ] + ] + ] + }, + "properties": {} + } + ] +} \ No newline at end of file diff --git a/packages/turf-concave/test/fixtures/out/pts2_out.geojson b/packages/turf-concave/test/fixtures/out/pts2_out.geojson new file mode 100644 index 0000000000..24bfcf7acd --- /dev/null +++ b/packages/turf-concave/test/fixtures/out/pts2_out.geojson @@ -0,0 +1,3739 @@ +{ + "type": "FeatureCollection", + "crs": { + "type": "name", + "properties": { + "name": "urn:ogc:def:crs:OGC:1.3:CRS84" + } + }, + "features": [ + { + "type": "Feature", + "properties": { + "OBJECTID_1": 51, + "OBJECTID_2": 25, + "OBJECTID": 49, + "PRECINCT_N": 7, + "FACILITY_D": "Recreation Room", + "ACCESSIBLE": "Yes", + "GIS_ID": "plp_49", + "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", + "NAME": "Hardy Recreation Center", + "ADDRESS": "4500 Q STREET NW", + "ADDRESS_ID": 284929, + "marker-color": "#f0f", + "marker-size": "small" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -77.08498118309296, + 38.909915833213795 + ] + } + }, + { + "type": "Feature", + "properties": { + "OBJECTID_1": 52, + "OBJECTID_2": 26, + "OBJECTID": 50, + "PRECINCT_N": 5, + "FACILITY_D": "Large Meeting Room", + "ACCESSIBLE": "Yes", + "GIS_ID": "plp_50", + "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", + "NAME": "Georgetown Community Library", + "ADDRESS": "3260 R STREET NW", + "ADDRESS_ID": 295142, + "marker-color": "#f0f", + "marker-size": "small" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -77.06600730584208, + 38.913434229544386 + ] + } + }, + { + "type": "Feature", + "properties": { + "OBJECTID_1": 53, + "OBJECTID_2": 27, + "OBJECTID": 51, + "PRECINCT_N": 76, + "FACILITY_D": "Community Room", + "ACCESSIBLE": "Yes", + "GIS_ID": "plp_51", + "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", + "NAME": "Bethesda Baptist Church", + "ADDRESS": "1808 CAPITOL AVENUE NE", + "ADDRESS_ID": 155925, + "marker-color": "#f0f", + "marker-size": "small" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -76.98614224512842, + 38.911020521048734 + ] + } + }, + { + "type": "Feature", + "properties": { + "OBJECTID_1": 54, + "OBJECTID_2": 28, + "OBJECTID": 52, + "PRECINCT_N": 15, + "FACILITY_D": "Community Room (Lower Level)", + "ACCESSIBLE": "Yes - Use side entrance on P Street", + "GIS_ID": "plp_52", + "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", + "NAME": "Foundry United Methodist Church", + "ADDRESS": "1500 16TH STREET NW", + "ADDRESS_ID": 243309, + "marker-color": "#f0f", + "marker-size": "small" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -77.03687949072273, + 38.91003361331332 + ] + } + }, + { + "type": "Feature", + "properties": { + "OBJECTID_1": 55, + "OBJECTID_2": 29, + "OBJECTID": 53, + "PRECINCT_N": 14, + "FACILITY_D": "Guild Room", + "ACCESSIBLE": "Yes", + "GIS_ID": "plp_53", + "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", + "NAME": "St. Thomas' Episcopal Parish", + "ADDRESS": "1772 CHURCH STREET NW", + "ADDRESS_ID": 225918, + "marker-color": "#f0f", + "marker-size": "small" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -77.04104117667185, + 38.910212212295264 + ] + } + }, + { + "type": "Feature", + "properties": { + "OBJECTID_1": 56, + "OBJECTID_2": 30, + "OBJECTID": 54, + "PRECINCT_N": 16, + "FACILITY_D": "Fellowship Hall", + "ACCESSIBLE": "Yes - Accessible entrance at the rear of the church. Use entrance on R St. side of church.", + "GIS_ID": "plp_54", + "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", + "NAME": "15th Street Presbyterian Church", + "ADDRESS": "1701 15TH STREET NW", + "ADDRESS_ID": 240136, + "marker-color": "#f0f", + "marker-size": "small" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -77.03417962817295, + 38.91281125525813 + ] + } + }, + { + "type": "Feature", + "properties": { + "OBJECTID_1": 57, + "OBJECTID_2": 31, + "OBJECTID": 55, + "PRECINCT_N": 18, + "FACILITY_D": "Gymnasium", + "ACCESSIBLE": "Yes", + "GIS_ID": "plp_55", + "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", + "NAME": "Kennedy Recreation Center", + "ADDRESS": "1401 7TH STREET NW", + "ADDRESS_ID": 279127, + "marker-color": "#f0f", + "marker-size": "small" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -77.02153645624776, + 38.90898977846948 + ] + } + }, + { + "type": "Feature", + "properties": { + "OBJECTID_1": 58, + "OBJECTID_2": 32, + "OBJECTID": 56, + "PRECINCT_N": 17, + "FACILITY_D": "Exhibit Rooms", + "ACCESSIBLE": "Yes", + "GIS_ID": "plp_56", + "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", + "NAME": "The Charles Sumner School Museum and Archives", + "ADDRESS": "1201 17th STREET NW\r\n1201 17TH STREET NW", + "ADDRESS_ID": 301200, + "marker-color": "#f0f", + "marker-size": "small" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -77.0382229055218, + 38.90597733468145 + ] + } + }, + { + "type": "Feature", + "properties": { + "OBJECTID_1": 59, + "OBJECTID_2": 33, + "OBJECTID": 57, + "PRECINCT_N": 4, + "FACILITY_D": "Large Meeting Room (2nd Floor)", + "ACCESSIBLE": "Yes", + "GIS_ID": "plp_57", + "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", + "NAME": "West End Public Library", + "ADDRESS": "1101 24TH STREET NW", + "ADDRESS_ID": 218248, + "marker-color": "#f0f", + "marker-size": "small" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -77.05109790160472, + 38.904019151364736 + ] + } + }, + { + "type": "Feature", + "properties": { + "OBJECTID_1": 60, + "OBJECTID_2": 34, + "OBJECTID": 58, + "PRECINCT_N": 77, + "FACILITY_D": "Community Room", + "ACCESSIBLE": "Yes", + "GIS_ID": "plp_58", + "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", + "NAME": "Delta Towers Apartments", + "ADDRESS": "1400 FLORIDA AVENUE NE", + "ADDRESS_ID": 65280, + "marker-color": "#f0f", + "marker-size": "small" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -76.98433191638077, + 38.90055736497202 + ] + } + }, + { + "type": "Feature", + "properties": { + "OBJECTID_1": 61, + "OBJECTID_2": 35, + "OBJECTID": 59, + "PRECINCT_N": 129, + "FACILITY_D": "Main Lobby", + "ACCESSIBLE": "Yes", + "GIS_ID": "plp_59", + "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", + "NAME": "Martin Luther King Library", + "ADDRESS": "901 G STREET NW", + "ADDRESS_ID": 239815, + "marker-color": "#f0f", + "marker-size": "small" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -77.02476626008324, + 38.89869133033745 + ] + } + }, + { + "type": "Feature", + "properties": { + "OBJECTID_1": 62, + "OBJECTID_2": 36, + "OBJECTID": 60, + "PRECINCT_N": 82, + "FACILITY_D": "Gymnasium", + "ACCESSIBLE": "Yes", + "GIS_ID": "plp_60", + "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", + "NAME": "Sherwood Recreation Center", + "ADDRESS": "640 10TH STREET NE", + "ADDRESS_ID": 301075, + "marker-color": "#f0f", + "marker-size": "small" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -76.99301681854216, + 38.89854528906768 + ] + } + }, + { + "type": "Feature", + "properties": { + "OBJECTID_1": 63, + "OBJECTID_2": 37, + "OBJECTID": 61, + "PRECINCT_N": 3, + "FACILITY_D": "Dining Hall", + "ACCESSIBLE": "Yes", + "GIS_ID": "plp_61", + "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", + "NAME": "St. Mary's Court", + "ADDRESS": "725 24TH STREET NW", + "ADDRESS_ID": 242350, + "marker-color": "#f0f", + "marker-size": "small" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -77.0511477096272, + 38.898862835793516 + ] + } + }, + { + "type": "Feature", + "properties": { + "OBJECTID_1": 64, + "OBJECTID_2": 38, + "OBJECTID": 62, + "PRECINCT_N": 1, + "FACILITY_D": "Gymnasium", + "ACCESSIBLE": "Yes", + "GIS_ID": "plp_62", + "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", + "NAME": "Walker-Jones EC", + "ADDRESS": "1125 NEW JERSEY AVENUE NW", + "ADDRESS_ID": 307735, + "marker-color": "#f0f", + "marker-size": "small" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -77.01391569234569, + 38.90419164723351 + ] + } + }, + { + "type": "Feature", + "properties": { + "OBJECTID_1": 65, + "OBJECTID_2": 39, + "OBJECTID": 64, + "PRECINCT_N": 10, + "FACILITY_D": "Multi-Purpose Room", + "ACCESSIBLE": "Yes", + "GIS_ID": "plp_64", + "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", + "NAME": "Horace Mann Community Center", + "ADDRESS": "4430 NEWARK STREET NW", + "ADDRESS_ID": 294597, + "marker-color": "#f0f", + "marker-size": "small" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -77.08782618825647, + 38.93429197169427 + ] + } + }, + { + "type": "Feature", + "properties": { + "OBJECTID_1": 66, + "OBJECTID_2": 40, + "OBJECTID": 65, + "PRECINCT_N": 19, + "FACILITY_D": "Gym/Armory", + "ACCESSIBLE": "Yes", + "GIS_ID": "plp_65", + "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", + "NAME": "Dunbar Senior High School", + "ADDRESS": "1301 NEW JERSEY AVENUE NW", + "ADDRESS_ID": 279021, + "marker-color": "#f0f", + "marker-size": "small" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -77.01469385531595, + 38.90852321621873 + ] + } + }, + { + "type": "Feature", + "properties": { + "OBJECTID_1": 67, + "OBJECTID_2": 41, + "OBJECTID": 66, + "PRECINCT_N": 20, + "FACILITY_D": "Auditorium", + "ACCESSIBLE": "Yes", + "GIS_ID": "plp_66", + "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", + "NAME": "Washington Metropolitan High School", + "ADDRESS": "300 BRYANT STREET NW", + "ADDRESS_ID": 294475, + "marker-color": "#f0f", + "marker-size": "small" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -77.01555700896307, + 38.92044129373322 + ] + } + }, + { + "type": "Feature", + "properties": { + "OBJECTID_1": 68, + "OBJECTID_2": 42, + "OBJECTID": 67, + "PRECINCT_N": 21, + "FACILITY_D": "Fellowship Hall", + "ACCESSIBLE": "Yes", + "GIS_ID": "plp_67", + "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", + "NAME": "Vermont Avenue Baptist Church", + "ADDRESS": "1630 VERMONT AVENUE NW", + "ADDRESS_ID": 243277, + "marker-color": "#f0f", + "marker-size": "small" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -77.02878122770284, + 38.911825717245286 + ] + } + }, + { + "type": "Feature", + "properties": { + "OBJECTID_1": 69, + "OBJECTID_2": 43, + "OBJECTID": 68, + "PRECINCT_N": 22, + "FACILITY_D": "Auditorium", + "ACCESSIBLE": "Yes - Accessible entrance located on V Street.", + "GIS_ID": "plp_68", + "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", + "NAME": "Garnet-Patterson Middle School", + "ADDRESS": "2001 10TH STREET NW", + "ADDRESS_ID": 294533, + "marker-color": "#f0f", + "marker-size": "small" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -77.02574878211337, + 38.91754477448618 + ] + } + }, + { + "type": "Feature", + "properties": { + "OBJECTID_1": 70, + "OBJECTID_2": 44, + "OBJECTID": 69, + "PRECINCT_N": 24, + "FACILITY_D": "Living Room", + "ACCESSIBLE": "Yes", + "GIS_ID": "plp_69", + "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", + "NAME": "Marie Reed Learning Center", + "ADDRESS": "2200 CHAMPLAIN STREET NW", + "ADDRESS_ID": 235577, + "marker-color": "#f0f", + "marker-size": "small" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -77.04052994742716, + 38.91916730666654 + ] + } + }, + { + "type": "Feature", + "properties": { + "OBJECTID_1": 71, + "OBJECTID_2": 45, + "OBJECTID": 71, + "PRECINCT_N": 27, + "FACILITY_D": "Auditorium", + "ACCESSIBLE": "Yes", + "GIS_ID": "plp_71", + "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", + "NAME": "Eaton Elementary School", + "ADDRESS": "3301 LOWELL STREET NW", + "ADDRESS_ID": 294562, + "marker-color": "#f0f", + "marker-size": "small" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -77.06582113268591, + 38.93272673882682 + ] + } + }, + { + "type": "Feature", + "properties": { + "OBJECTID_1": 72, + "OBJECTID_2": 46, + "OBJECTID": 72, + "PRECINCT_N": 29, + "FACILITY_D": "Community Room", + "ACCESSIBLE": "Yes", + "GIS_ID": "plp_72", + "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", + "NAME": "2nd District Police Station", + "ADDRESS": "3320 IDAHO AVENUE NW", + "ADDRESS_ID": 222229, + "marker-color": "#f0f", + "marker-size": "small" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -77.07483805765223, + 38.93484583178459 + ] + } + }, + { + "type": "Feature", + "properties": { + "OBJECTID_1": 73, + "OBJECTID_2": 47, + "OBJECTID": 73, + "PRECINCT_N": 30, + "FACILITY_D": "Multi-Purpose Room (on Albemarle St.)", + "ACCESSIBLE": "Yes - Accessible entrance at side of school, nearest to Wisconsin Ave.", + "GIS_ID": "plp_73", + "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", + "NAME": "Janney Elementary School", + "ADDRESS": "4130 ALBEMARLE STREET NW", + "ADDRESS_ID": 285713, + "marker-color": "#f0f", + "marker-size": "small" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -77.08099481973196, + 38.94755008706593 + ] + } + }, + { + "type": "Feature", + "properties": { + "OBJECTID_1": 74, + "OBJECTID_2": 48, + "OBJECTID": 74, + "PRECINCT_N": 33, + "FACILITY_D": "Auditorium", + "ACCESSIBLE": "Yes - Use rear entrance on Ellicott St.", + "GIS_ID": "plp_74", + "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", + "NAME": "Ben Murch Elementary School", + "ADDRESS": "4810 36TH STREET NW", + "ADDRESS_ID": 294602, + "marker-color": "#f0f", + "marker-size": "small" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -77.07007920338755, + 38.95293318959661 + ] + } + }, + { + "type": "Feature", + "properties": { + "OBJECTID_1": 75, + "OBJECTID_2": 49, + "OBJECTID": 75, + "PRECINCT_N": 35, + "FACILITY_D": "Multi-Purpose Room", + "ACCESSIBLE": "Yes", + "GIS_ID": "plp_75", + "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", + "NAME": "H.D. Cooke Elementary School", + "ADDRESS": "2525 17TH STREET NW", + "ADDRESS_ID": 235863, + "marker-color": "#f0f", + "marker-size": "small" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -77.0388138280019, + 38.92393165421797 + ] + } + }, + { + "type": "Feature", + "properties": { + "OBJECTID_1": 76, + "OBJECTID_2": 50, + "OBJECTID": 76, + "PRECINCT_N": 37, + "FACILITY_D": "Community Meeting Room", + "ACCESSIBLE": "Yes", + "GIS_ID": "plp_76", + "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", + "NAME": "Banneker Community Recreation Center", + "ADDRESS": "2500 GEORGIA AVENUE NW", + "ADDRESS_ID": 232292, + "marker-color": "#f0f", + "marker-size": "small" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -77.02257980138592, + 38.92269760094504 + ] + } + }, + { + "type": "Feature", + "properties": { + "OBJECTID_1": 77, + "OBJECTID_2": 51, + "OBJECTID": 77, + "PRECINCT_N": 38, + "FACILITY_D": "Meeting Room", + "ACCESSIBLE": "Yes", + "GIS_ID": "plp_77", + "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", + "NAME": "Cesar Chavez Prep Charter Middle School", + "ADDRESS": "770 KENYON STREET NW", + "ADDRESS_ID": 285409, + "marker-color": "#f0f", + "marker-size": "small" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -77.0258873560347, + 38.929619476288885 + ] + } + }, + { + "type": "Feature", + "properties": { + "OBJECTID_1": 78, + "OBJECTID_2": 52, + "OBJECTID": 78, + "PRECINCT_N": 40, + "FACILITY_D": "Assembly Hall", + "ACCESSIBLE": "Yes - Use entrance on Newton Street.", + "GIS_ID": "plp_78", + "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", + "NAME": "Bancroft Elementary School", + "ADDRESS": "1755 NEWTON STREET NW", + "ADDRESS_ID": 294528, + "marker-color": "#f0f", + "marker-size": "small" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -77.04055344980303, + 38.93431802351106 + ] + } + }, + { + "type": "Feature", + "properties": { + "OBJECTID_1": 79, + "OBJECTID_2": 53, + "OBJECTID": 79, + "PRECINCT_N": 46, + "FACILITY_D": "Classroom", + "ACCESSIBLE": "Yes", + "GIS_ID": "plp_79", + "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", + "NAME": "E.L. Haynes Public Charter School @ Clark", + "ADDRESS": "4501 KANSAS AVENUE NW", + "ADDRESS_ID": 284930, + "marker-color": "#f0f", + "marker-size": "small" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -77.02241636991477, + 38.94560156110601 + ] + } + }, + { + "type": "Feature", + "properties": { + "OBJECTID_1": 80, + "OBJECTID_2": 54, + "OBJECTID": 80, + "PRECINCT_N": 47, + "FACILITY_D": "Multi-Purpose Room", + "ACCESSIBLE": "Yes - Accessible ramped entrance off of alley.", + "GIS_ID": "plp_80", + "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", + "NAME": "Powell Elementary School", + "ADDRESS": "1350 UPSHUR STREET NW", + "ADDRESS_ID": 255302, + "marker-color": "#f0f", + "marker-size": "small" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -77.03122741575149, + 38.941534009869706 + ] + } + }, + { + "type": "Feature", + "properties": { + "OBJECTID_1": 81, + "OBJECTID_2": 55, + "OBJECTID": 81, + "PRECINCT_N": 48, + "FACILITY_D": "Auditorium", + "ACCESSIBLE": "Yes - Use south entrance on 13th St.", + "GIS_ID": "plp_81", + "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", + "NAME": "Sharpe Health School", + "ADDRESS": "4300 13TH STREET NW", + "ADDRESS_ID": 255254, + "marker-color": "#f0f", + "marker-size": "small" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -77.03046833667379, + 38.94347432515649 + ] + } + }, + { + "type": "Feature", + "properties": { + "OBJECTID_1": 82, + "OBJECTID_2": 56, + "OBJECTID": 82, + "PRECINCT_N": 49, + "FACILITY_D": "Science Room", + "ACCESSIBLE": "Yes - Accessible entrance located on Rock Creek Church Road.", + "GIS_ID": "plp_82", + "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", + "NAME": "Raymond Elementary School", + "ADDRESS": "915 SPRING ROAD NW", + "ADDRESS_ID": 226682, + "marker-color": "#f0f", + "marker-size": "small" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -77.02643265425681, + 38.935810871763174 + ] + } + }, + { + "type": "Feature", + "properties": { + "OBJECTID_1": 83, + "OBJECTID_2": 57, + "OBJECTID": 83, + "PRECINCT_N": 51, + "FACILITY_D": "Gymnasium", + "ACCESSIBLE": "Yes - Use parking lot entrance on Northampton St.", + "GIS_ID": "plp_83", + "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", + "NAME": "Lafayette Elementary School", + "ADDRESS": "5701 BROAD BRANCH ROAD NW", + "ADDRESS_ID": 294611, + "marker-color": "#f0f", + "marker-size": "small" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -77.06803711636698, + 38.96662722064828 + ] + } + }, + { + "type": "Feature", + "properties": { + "OBJECTID_1": 84, + "OBJECTID_2": 58, + "OBJECTID": 84, + "PRECINCT_N": 53, + "FACILITY_D": "Multi-Purpose Room", + "ACCESSIBLE": "Yes", + "GIS_ID": "plp_84", + "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", + "NAME": "Brightwood Elementary School", + "ADDRESS": "1300 NICHOLSON STREET NW", + "ADDRESS_ID": 294515, + "marker-color": "#f0f", + "marker-size": "small" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -77.03068885198864, + 38.96053539285846 + ] + } + }, + { + "type": "Feature", + "properties": { + "OBJECTID_1": 85, + "OBJECTID_2": 59, + "OBJECTID": 85, + "PRECINCT_N": 54, + "FACILITY_D": "Gymnasium", + "ACCESSIBLE": "Yes - Use entrance located at 14th & Farragut Streets.", + "GIS_ID": "plp_85", + "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", + "NAME": "West Elementary School", + "ADDRESS": "1338 FARRAGUT STREET NW", + "ADDRESS_ID": 294517, + "marker-color": "#f0f", + "marker-size": "small" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -77.03225304983067, + 38.951367080952416 + ] + } + }, + { + "type": "Feature", + "properties": { + "OBJECTID_1": 86, + "OBJECTID_2": 60, + "OBJECTID": 86, + "PRECINCT_N": 55, + "FACILITY_D": "Multi-Purpose Room", + "ACCESSIBLE": "Yes", + "GIS_ID": "plp_86", + "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", + "NAME": "Barnard Elementary School", + "ADDRESS": "430 DECATUR STREET NW", + "ADDRESS_ID": 248305, + "marker-color": "#f0f", + "marker-size": "small" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -77.0177770800083, + 38.948230614415095 + ] + } + }, + { + "type": "Feature", + "properties": { + "OBJECTID_1": 87, + "OBJECTID_2": 61, + "OBJECTID": 87, + "PRECINCT_N": 56, + "FACILITY_D": "Multi-Purpose Room", + "ACCESSIBLE": "Yes", + "GIS_ID": "plp_87", + "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", + "NAME": "Truesdell Elementary School", + "ADDRESS": "800 INGRAHAM STREET NW", + "ADDRESS_ID": 294497, + "marker-color": "#f0f", + "marker-size": "small" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -77.02507157013518, + 38.95396835809549 + ] + } + }, + { + "type": "Feature", + "properties": { + "OBJECTID_1": 88, + "OBJECTID_2": 62, + "OBJECTID": 88, + "PRECINCT_N": 57, + "FACILITY_D": "Multi-Purpose Room", + "ACCESSIBLE": "Yes", + "GIS_ID": "plp_88", + "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", + "NAME": "Hattie Holmes Wellness Center", + "ADDRESS": "324 KENNEDY STREET NW", + "ADDRESS_ID": 307575, + "marker-color": "#f0f", + "marker-size": "small" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -77.01711234814142, + 38.956388773368296 + ] + } + }, + { + "type": "Feature", + "properties": { + "OBJECTID_1": 89, + "OBJECTID_2": 63, + "OBJECTID": 90, + "PRECINCT_N": 59, + "FACILITY_D": "Armory", + "ACCESSIBLE": "Yes", + "GIS_ID": "plp_90", + "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", + "NAME": "Coolidge Senior High School", + "ADDRESS": "6315 5TH STREET NW", + "ADDRESS_ID": 294615, + "marker-color": "#f0f", + "marker-size": "small" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -77.01957835173927, + 38.967284239673525 + ] + } + }, + { + "type": "Feature", + "properties": { + "OBJECTID_1": 90, + "OBJECTID_2": 64, + "OBJECTID": 91, + "PRECINCT_N": 62, + "FACILITY_D": "Auditorium", + "ACCESSIBLE": "Yes - Use ramped entrance on 14th Street.", + "GIS_ID": "plp_91", + "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", + "NAME": "Shepherd Elementary School", + "ADDRESS": "7800 14TH STREET NW", + "ADDRESS_ID": 256319, + "marker-color": "#f0f", + "marker-size": "small" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -77.03399523386544, + 38.98460295003216 + ] + } + }, + { + "type": "Feature", + "properties": { + "OBJECTID_1": 91, + "OBJECTID_2": 65, + "OBJECTID": 92, + "PRECINCT_N": 63, + "FACILITY_D": "Multi-Purpose Room", + "ACCESSIBLE": "Yes", + "GIS_ID": "plp_92", + "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", + "NAME": "Takoma Community Center", + "ADDRESS": "300 VAN BUREN STREET NW", + "ADDRESS_ID": 296168, + "marker-color": "#f0f", + "marker-size": "small" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -77.01805167618295, + 38.96888669131412 + ] + } + }, + { + "type": "Feature", + "properties": { + "OBJECTID_1": 92, + "OBJECTID_2": 66, + "OBJECTID": 93, + "PRECINCT_N": 64, + "FACILITY_D": "Recreation Area", + "ACCESSIBLE": "Yes - Use rear entrance on 2nd St.", + "GIS_ID": "plp_93", + "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", + "NAME": "Rabaut - Administrative Building", + "ADDRESS": "100 PEABODY STREET NW", + "ADDRESS_ID": 277545, + "marker-color": "#f0f", + "marker-size": "small" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -77.01286744832365, + 38.96216452199718 + ] + } + }, + { + "type": "Feature", + "properties": { + "OBJECTID_1": 93, + "OBJECTID_2": 67, + "OBJECTID": 94, + "PRECINCT_N": 65, + "FACILITY_D": "Auditorium", + "ACCESSIBLE": "Yes", + "GIS_ID": "plp_94", + "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", + "NAME": "LaSalle Elementary School", + "ADDRESS": "501 RIGGS ROAD NE", + "ADDRESS_ID": 294489, + "marker-color": "#f0f", + "marker-size": "small" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -76.99988253848109, + 38.95997180998364 + ] + } + }, + { + "type": "Feature", + "properties": { + "OBJECTID_1": 94, + "OBJECTID_2": 68, + "OBJECTID": 95, + "PRECINCT_N": 66, + "FACILITY_D": "Multi-Purpose Room", + "ACCESSIBLE": "Yes - Accessible entrance next to parking lot on Hamilton Street.", + "GIS_ID": "plp_95", + "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", + "NAME": "UDC Community College @ Backus", + "ADDRESS": "5171 SOUTH DAKOTA AVENUE NE", + "ADDRESS_ID": 294607, + "marker-color": "#f0f", + "marker-size": "small" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -76.99726738315395, + 38.95334052572905 + ] + } + }, + { + "type": "Feature", + "properties": { + "OBJECTID_1": 95, + "OBJECTID_2": 69, + "OBJECTID": 96, + "PRECINCT_N": 67, + "FACILITY_D": "Auditorium", + "ACCESSIBLE": "Yes - Accessible entrance next to the parking lot on 14th Street", + "GIS_ID": "plp_96", + "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", + "NAME": "Bunker Hill Elementary School", + "ADDRESS": "1401 MICHIGAN AVENUE NE", + "ADDRESS_ID": 286131, + "marker-color": "#f0f", + "marker-size": "small" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -76.98499562999821, + 38.94201213500814 + ] + } + }, + { + "type": "Feature", + "properties": { + "OBJECTID_1": 96, + "OBJECTID_2": 70, + "OBJECTID": 97, + "PRECINCT_N": 68, + "FACILITY_D": "Reception Room", + "ACCESSIBLE": "Yes", + "GIS_ID": "plp_97", + "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", + "NAME": "St. Francis Hall", + "ADDRESS": "1340 QUINCY STREET NE", + "ADDRESS_ID": 66591, + "marker-color": "#f0f", + "marker-size": "small" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -76.98652958387164, + 38.9375726751204 + ] + } + }, + { + "type": "Feature", + "properties": { + "OBJECTID_1": 97, + "OBJECTID_2": 71, + "OBJECTID": 98, + "PRECINCT_N": 69, + "FACILITY_D": "Multi-Purpose Room", + "ACCESSIBLE": "Yes", + "GIS_ID": "plp_98", + "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", + "NAME": "Hyde Public Charter School @ Taft", + "ADDRESS": "1800 PERRY STREET NE", + "ADDRESS_ID": 294529, + "marker-color": "#f0f", + "marker-size": "small" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -76.9785955149537, + 38.93679614738434 + ] + } + }, + { + "type": "Feature", + "properties": { + "OBJECTID_1": 98, + "OBJECTID_2": 72, + "OBJECTID": 99, + "PRECINCT_N": 70, + "FACILITY_D": "Multi-Purpose Room", + "ACCESSIBLE": "Yes - Use entrance on Monroe Street.", + "GIS_ID": "plp_99", + "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", + "NAME": "Burroughs Elementary School", + "ADDRESS": "1820 MONROE STREET NE", + "ADDRESS_ID": 294530, + "marker-color": "#f0f", + "marker-size": "small" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -76.97845637039887, + 38.933502326896445 + ] + } + }, + { + "type": "Feature", + "properties": { + "OBJECTID_1": 99, + "OBJECTID_2": 73, + "OBJECTID": 100, + "PRECINCT_N": 73, + "FACILITY_D": "Library (Lower Level)", + "ACCESSIBLE": "Yes", + "GIS_ID": "plp_100", + "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", + "NAME": "M.M. Bethune Day Academy @ Slowe", + "ADDRESS": "1404 JACKSON STREET NE", + "ADDRESS_ID": 294522, + "marker-color": "#f0f", + "marker-size": "small" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -76.98686462272855, + 38.929605590082105 + ] + } + }, + { + "type": "Feature", + "properties": { + "OBJECTID_1": 100, + "OBJECTID_2": 74, + "OBJECTID": 101, + "PRECINCT_N": 74, + "FACILITY_D": "Multipurpose Room", + "ACCESSIBLE": "Yes", + "GIS_ID": "plp_101", + "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", + "NAME": "Shaed Elementary School", + "ADDRESS": "301 DOUGLAS STREET NE", + "ADDRESS_ID": 294477, + "marker-color": "#f0f", + "marker-size": "small" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -77.00253831800221, + 38.923654687421774 + ] + } + }, + { + "type": "Feature", + "properties": { + "OBJECTID_1": 101, + "OBJECTID_2": 75, + "OBJECTID": 102, + "PRECINCT_N": 78, + "FACILITY_D": "Gymnasium", + "ACCESSIBLE": "Yes", + "GIS_ID": "plp_102", + "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", + "NAME": "Trinidad Recreation Center", + "ADDRESS": "1310 CHILDRESS STREET NE", + "ADDRESS_ID": 68509, + "marker-color": "#f0f", + "marker-size": "small" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -76.98273436876306, + 38.906442359837776 + ] + } + }, + { + "type": "Feature", + "properties": { + "OBJECTID_1": 102, + "OBJECTID_2": 76, + "OBJECTID": 103, + "PRECINCT_N": 81, + "FACILITY_D": "Gymnasium", + "ACCESSIBLE": "Yes", + "GIS_ID": "plp_103", + "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", + "NAME": "Miner Elementary School", + "ADDRESS": "601 15TH STREET NE", + "ADDRESS_ID": 289548, + "marker-color": "#f0f", + "marker-size": "small" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -76.98290431308783, + 38.89737568218247 + ] + } + }, + { + "type": "Feature", + "properties": { + "OBJECTID_1": 103, + "OBJECTID_2": 77, + "OBJECTID": 104, + "PRECINCT_N": 79, + "FACILITY_D": "Auditorium", + "ACCESSIBLE": "Yes", + "GIS_ID": "plp_104", + "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", + "NAME": "Browne Junior High School", + "ADDRESS": "850 26TH STREET NE", + "ADDRESS_ID": 294501, + "marker-color": "#f0f", + "marker-size": "small" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -76.97066705247403, + 38.90259854900822 + ] + } + }, + { + "type": "Feature", + "properties": { + "OBJECTID_1": 104, + "OBJECTID_2": 78, + "OBJECTID": 105, + "PRECINCT_N": 83, + "FACILITY_D": "Multi-Purpose Room", + "ACCESSIBLE": "Yes - Use entrance located on 7th Street.", + "GIS_ID": "plp_105", + "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", + "NAME": "J.O. Wilson Elementary School", + "ADDRESS": "660 K STREET NE", + "ADDRESS_ID": 288841, + "marker-color": "#f0f", + "marker-size": "small" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -76.99658902748644, + 38.90275766582991 + ] + } + }, + { + "type": "Feature", + "properties": { + "OBJECTID_1": 105, + "OBJECTID_2": 79, + "OBJECTID": 106, + "PRECINCT_N": 84, + "FACILITY_D": "Auditorium", + "ACCESSIBLE": "Yes", + "GIS_ID": "plp_106", + "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", + "NAME": "Stuart-Hobson Middle School", + "ADDRESS": "410 E STREET NE", + "ADDRESS_ID": 294483, + "marker-color": "#f0f", + "marker-size": "small" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -77.00000438624967, + 38.89629737080879 + ] + } + }, + { + "type": "Feature", + "properties": { + "OBJECTID_1": 106, + "OBJECTID_2": 80, + "OBJECTID": 107, + "PRECINCT_N": 85, + "FACILITY_D": "Auditorium (A-Level)", + "ACCESSIBLE": "Yes", + "GIS_ID": "plp_107", + "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", + "NAME": "The Specialty Hospital of Washington", + "ADDRESS": "700 CONSTITUTION AVENUE NE", + "ADDRESS_ID": 295162, + "marker-color": "#f0f", + "marker-size": "small" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -76.99535659211247, + 38.892321795813096 + ] + } + }, + { + "type": "Feature", + "properties": { + "OBJECTID_1": 107, + "OBJECTID_2": 81, + "OBJECTID": 108, + "PRECINCT_N": 86, + "FACILITY_D": "Recreation Room (lower level)", + "ACCESSIBLE": "Yes - Accessible - side entrance, next to the parking lot.", + "GIS_ID": "plp_108", + "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", + "NAME": "Eliot Junior High School", + "ADDRESS": "1830 CONSTITUTION AVENUE NE", + "ADDRESS_ID": 286499, + "marker-color": "#f0f", + "marker-size": "small" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -76.97897791343726, + 38.8924311597663 + ] + } + }, + { + "type": "Feature", + "properties": { + "OBJECTID_1": 108, + "OBJECTID_2": 82, + "OBJECTID": 109, + "PRECINCT_N": 87, + "FACILITY_D": "Auditorium", + "ACCESSIBLE": "Yes = Use entrance at the rear of the school, next to the parking lot.", + "GIS_ID": "plp_109", + "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", + "NAME": "Payne Elementary School", + "ADDRESS": "305 15TH STREET SE", + "ADDRESS_ID": 294478, + "marker-color": "#f0f", + "marker-size": "small" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -76.98419490800174, + 38.8851323144882 + ] + } + }, + { + "type": "Feature", + "properties": { + "OBJECTID_1": 109, + "OBJECTID_2": 83, + "OBJECTID": 110, + "PRECINCT_N": 89, + "FACILITY_D": "Multi-Purpose Room", + "ACCESSIBLE": "Yes", + "GIS_ID": "plp_110", + "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", + "NAME": "William H. Rumsey Aquatic Center", + "ADDRESS": "635 NORTH CAROLINA AVENUE SE", + "ADDRESS_ID": 295159, + "marker-color": "#f0f", + "marker-size": "small" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -76.99702870593877, + 38.88658504665415 + ] + } + }, + { + "type": "Feature", + "properties": { + "OBJECTID_1": 110, + "OBJECTID_2": 84, + "OBJECTID": 111, + "PRECINCT_N": 91, + "FACILITY_D": "Multi-Purpose Room", + "ACCESSIBLE": "Yes", + "GIS_ID": "plp_111", + "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", + "NAME": "Watkins Elementary School", + "ADDRESS": "420 12TH STREET SE", + "ADDRESS_ID": 294486, + "marker-color": "#f0f", + "marker-size": "small" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -76.98999676354816, + 38.883466674788586 + ] + } + }, + { + "type": "Feature", + "properties": { + "OBJECTID_1": 111, + "OBJECTID_2": 85, + "OBJECTID": 113, + "PRECINCT_N": 92, + "FACILITY_D": "Auditorium", + "ACCESSIBLE": "Yes", + "GIS_ID": "plp_113", + "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", + "NAME": "Kenilworth Elementary School", + "ADDRESS": "1300 44TH STREET NE", + "ADDRESS_ID": 294516, + "marker-color": "#f0f", + "marker-size": "small" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -76.9404849391363, + 38.90822873259865 + ] + } + }, + { + "type": "Feature", + "properties": { + "OBJECTID_1": 112, + "OBJECTID_2": 86, + "OBJECTID": 114, + "PRECINCT_N": 93, + "FACILITY_D": "Multi-Purpose Room", + "ACCESSIBLE": "Yes - Accessible entrance at the rear of the school.", + "GIS_ID": "plp_114", + "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", + "NAME": "Houston Elementary School", + "ADDRESS": "1100 50TH PLACE NE", + "ADDRESS_ID": 156316, + "marker-color": "#f0f", + "marker-size": "small" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -76.9299476407989, + 38.90541498719898 + ] + } + }, + { + "type": "Feature", + "properties": { + "OBJECTID_1": 113, + "OBJECTID_2": 87, + "OBJECTID": 115, + "PRECINCT_N": 94, + "FACILITY_D": "Community Room", + "ACCESSIBLE": "Yes", + "GIS_ID": "plp_115", + "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", + "NAME": "Merritt Education Center", + "ADDRESS": "5002 HAYES STREET NE", + "ADDRESS_ID": 294606, + "marker-color": "#f0f", + "marker-size": "small" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -76.93013118958962, + 38.90023006725584 + ] + } + }, + { + "type": "Feature", + "properties": { + "OBJECTID_1": 114, + "OBJECTID_2": 88, + "OBJECTID": 116, + "PRECINCT_N": 95, + "FACILITY_D": "Auditorium", + "ACCESSIBLE": "Yes -Use entrance located at 57th & Eads Streets.", + "GIS_ID": "plp_116", + "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", + "NAME": "Drew Elementary School", + "ADDRESS": "5500 EADS STREET NE", + "ADDRESS_ID": 294609, + "marker-color": "#f0f", + "marker-size": "small" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -76.92270804396746, + 38.89619288755561 + ] + } + }, + { + "type": "Feature", + "properties": { + "OBJECTID_1": 115, + "OBJECTID_2": 89, + "OBJECTID": 117, + "PRECINCT_N": 100, + "FACILITY_D": "Auditorium", + "ACCESSIBLE": "Yes", + "GIS_ID": "plp_117", + "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", + "NAME": "Thomas Elementary School", + "ADDRESS": "650 ANACOSTIA AVENUE NE", + "ADDRESS_ID": 294493, + "marker-color": "#f0f", + "marker-size": "small" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -76.95211090532199, + 38.901278637588895 + ] + } + }, + { + "type": "Feature", + "properties": { + "OBJECTID_1": 116, + "OBJECTID_2": 90, + "OBJECTID": 118, + "PRECINCT_N": 98, + "FACILITY_D": "Multi-Purpose Room", + "ACCESSIBLE": "Yes - Use rear entrance of the school.", + "GIS_ID": "plp_118", + "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", + "NAME": "Smothers Elementary School", + "ADDRESS": "4400 BROOKS STREET NE", + "ADDRESS_ID": 294596, + "marker-color": "#f0f", + "marker-size": "small" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -76.93846863878429, + 38.8935537018287 + ] + } + }, + { + "type": "Feature", + "properties": { + "OBJECTID_1": 117, + "OBJECTID_2": 91, + "OBJECTID": 120, + "PRECINCT_N": 103, + "FACILITY_D": "Auditorium", + "ACCESSIBLE": "Yes - Use ground level entrance.", + "GIS_ID": "plp_120", + "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", + "NAME": "Plummer Elementary School", + "ADDRESS": "4601 TEXAS AVENUE SE", + "ADDRESS_ID": 19536, + "marker-color": "#f0f", + "marker-size": "small" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -76.93993466984129, + 38.8872398636938 + ] + } + }, + { + "type": "Feature", + "properties": { + "OBJECTID_1": 118, + "OBJECTID_2": 92, + "OBJECTID": 121, + "PRECINCT_N": 104, + "FACILITY_D": "Auditorium", + "ACCESSIBLE": "Yes- Use ground level entrance.", + "GIS_ID": "plp_121", + "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", + "NAME": "Nalle Elementary School", + "ADDRESS": "219 50TH STREET SE", + "ADDRESS_ID": 294474, + "marker-color": "#f0f", + "marker-size": "small" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -76.93079649956998, + 38.88595408522856 + ] + } + }, + { + "type": "Feature", + "properties": { + "OBJECTID_1": 119, + "OBJECTID_2": 93, + "OBJECTID": 122, + "PRECINCT_N": 105, + "FACILITY_D": "Multi-Purpose Room", + "ACCESSIBLE": "Yes - Use entrance located on D Street.", + "GIS_ID": "plp_122", + "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", + "NAME": "CW Harris Elementary School", + "ADDRESS": "301 53RD STREET SE", + "ADDRESS_ID": 289801, + "marker-color": "#f0f", + "marker-size": "small" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -76.92611549373204, + 38.88359849788337 + ] + } + }, + { + "type": "Feature", + "properties": { + "OBJECTID_1": 120, + "OBJECTID_2": 94, + "OBJECTID": 123, + "PRECINCT_N": 106, + "FACILITY_D": "Auditorium", + "ACCESSIBLE": "Yes - Accessible rear entrance, next to the parking lot.", + "GIS_ID": "plp_123", + "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", + "NAME": "Davis Elementary School", + "ADDRESS": "4430 H STREET SE", + "ADDRESS_ID": 294598, + "marker-color": "#f0f", + "marker-size": "small" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -76.93761630232859, + 38.87906795106383 + ] + } + }, + { + "type": "Feature", + "properties": { + "OBJECTID_1": 121, + "OBJECTID_2": 95, + "OBJECTID": 124, + "PRECINCT_N": 107, + "FACILITY_D": "Gymnasium", + "ACCESSIBLE": "Yes", + "GIS_ID": "plp_124", + "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", + "NAME": "Sousa Middle School", + "ADDRESS": "3650 ELY PLACE SE", + "ADDRESS_ID": 294584, + "marker-color": "#f0f", + "marker-size": "small" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -76.95316174771769, + 38.883908000174614 + ] + } + }, + { + "type": "Feature", + "properties": { + "OBJECTID_1": 122, + "OBJECTID_2": 96, + "OBJECTID": 125, + "PRECINCT_N": 142, + "FACILITY_D": "Auditorium", + "ACCESSIBLE": "Yes", + "GIS_ID": "plp_125", + "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", + "NAME": "Jefferson Junior High School", + "ADDRESS": "801 7TH STREET SW", + "ADDRESS_ID": 276812, + "marker-color": "#f0f", + "marker-size": "small" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -77.02291065460415, + 38.87987059942476 + ] + } + }, + { + "type": "Feature", + "properties": { + "OBJECTID_1": 123, + "OBJECTID_2": 97, + "OBJECTID": 126, + "PRECINCT_N": 140, + "FACILITY_D": "Auditorium", + "ACCESSIBLE": "Yes", + "GIS_ID": "plp_126", + "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", + "NAME": "Anacostia Senior High School", + "ADDRESS": "1601 16TH STREET SE", + "ADDRESS_ID": 155922, + "marker-color": "#f0f", + "marker-size": "small" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -76.98307724829849, + 38.870083725754895 + ] + } + }, + { + "type": "Feature", + "properties": { + "OBJECTID_1": 124, + "OBJECTID_2": 98, + "OBJECTID": 127, + "PRECINCT_N": 139, + "FACILITY_D": "Community Service Area", + "ACCESSIBLE": "Yes", + "GIS_ID": "plp_127", + "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", + "NAME": "Thurgood Marshall Elementary", + "ADDRESS": "3100 FORT LINCOLN DRIVE NE", + "ADDRESS_ID": 294553, + "marker-color": "#f0f", + "marker-size": "small" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -76.95763369669753, + 38.92730594377001 + ] + } + }, + { + "type": "Feature", + "properties": { + "OBJECTID_1": 1, + "OBJECTID_2": 101, + "OBJECTID": 130, + "PRECINCT_N": 131, + "FACILITY_D": "Auditorium", + "ACCESSIBLE": "Yes", + "GIS_ID": "plp_130", + "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", + "NAME": "Van Ness Elementary School", + "ADDRESS": "1150 5TH STREET SE", + "ADDRESS_ID": 294508, + "marker-color": "#f0f", + "marker-size": "small" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -76.99924400222596, + 38.87679611768769 + ] + } + }, + { + "type": "Feature", + "properties": { + "OBJECTID_1": 2, + "OBJECTID_2": 102, + "OBJECTID": 131, + "PRECINCT_N": 125, + "FACILITY_D": "Auditorium", + "ACCESSIBLE": "Yes", + "GIS_ID": "plp_131", + "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", + "NAME": "Hendley Elementary School", + "ADDRESS": "425 CHESAPEAKE STREET SE", + "ADDRESS_ID": 24445, + "marker-color": "#f0f", + "marker-size": "small" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -76.99918484024232, + 38.82898558049571 + ] + } + }, + { + "type": "Feature", + "properties": { + "OBJECTID_1": 3, + "OBJECTID_2": 103, + "OBJECTID": 132, + "PRECINCT_N": 126, + "FACILITY_D": "Library", + "ACCESSIBLE": "Yes", + "GIS_ID": "plp_132", + "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", + "NAME": "W.B. Patterson Elementary School", + "ADDRESS": "4399 SOUTH CAPITOL TERRACE SW", + "ADDRESS_ID": 301073, + "marker-color": "#f0f", + "marker-size": "small" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -77.00847560019479, + 38.8269811922012 + ] + } + }, + { + "type": "Feature", + "properties": { + "OBJECTID_1": 4, + "OBJECTID_2": 104, + "OBJECTID": 133, + "PRECINCT_N": 123, + "FACILITY_D": "Multi-Purpose Room", + "ACCESSIBLE": "Yes", + "GIS_ID": "plp_133", + "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", + "NAME": "Martin Luther King Elementary School", + "ADDRESS": "600 ALABAMA AVENUE SE", + "ADDRESS_ID": 294492, + "marker-color": "#f0f", + "marker-size": "small" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -76.99758318790965, + 38.84338656586389 + ] + } + }, + { + "type": "Feature", + "properties": { + "OBJECTID_1": 5, + "OBJECTID_2": 105, + "OBJECTID": 135, + "PRECINCT_N": 121, + "FACILITY_D": "Auditorium", + "ACCESSIBLE": "Yes", + "GIS_ID": "plp_135", + "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", + "NAME": "National Collegiate Prep @ Draper", + "ADDRESS": "908 WAHLER PLACE SE", + "ADDRESS_ID": 294502, + "marker-color": "#f0f", + "marker-size": "small" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -76.99226881799031, + 38.834327886510565 + ] + } + }, + { + "type": "Feature", + "properties": { + "OBJECTID_1": 6, + "OBJECTID_2": 106, + "OBJECTID": 136, + "PRECINCT_N": 120, + "FACILITY_D": "Meeting Room", + "ACCESSIBLE": "Yes - Use side Entrance", + "GIS_ID": "plp_136", + "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", + "NAME": "Malcolm X Elementary School", + "ADDRESS": "1351 ALABAMA AVENUE SE", + "ADDRESS_ID": 289201, + "marker-color": "#f0f", + "marker-size": "small" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -76.98621285449033, + 38.84497362309234 + ] + } + }, + { + "type": "Feature", + "properties": { + "OBJECTID_1": 7, + "OBJECTID_2": 107, + "OBJECTID": 137, + "PRECINCT_N": 118, + "FACILITY_D": "Gymnasium", + "ACCESSIBLE": "Yes", + "GIS_ID": "plp_137", + "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", + "NAME": "Garnet C. Wilkinson Elementary School", + "ADDRESS": "2330 POMEROY ROAD SE", + "ADDRESS_ID": 294542, + "marker-color": "#f0f", + "marker-size": "small" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -76.98555042215126, + 38.85684438946179 + ] + } + }, + { + "type": "Feature", + "properties": { + "OBJECTID_1": 8, + "OBJECTID_2": 108, + "OBJECTID": 138, + "PRECINCT_N": 119, + "FACILITY_D": "Auditorium", + "ACCESSIBLE": "Yes", + "GIS_ID": "plp_138", + "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", + "NAME": "Excel Academy PCS @ Birney", + "ADDRESS": "2501 MARTIN LUTHER KING JR AVENUE SE", + "ADDRESS_ID": 278172, + "marker-color": "#f0f", + "marker-size": "small" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -76.99535456253949, + 38.85976175834964 + ] + } + }, + { + "type": "Feature", + "properties": { + "OBJECTID_1": 9, + "OBJECTID_2": 109, + "OBJECTID": 139, + "PRECINCT_N": 117, + "FACILITY_D": "Main Lobby", + "ACCESSIBLE": "Yes - Use ramped entrance on Stanton Road.", + "GIS_ID": "plp_139", + "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", + "NAME": "Douglas Community Recreation Center", + "ADDRESS": "1898 STANTON TERRACE SE", + "ADDRESS_ID": 286513, + "marker-color": "#f0f", + "marker-size": "small" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -76.97776154881154, + 38.85263622936684 + ] + } + }, + { + "type": "Feature", + "properties": { + "OBJECTID_1": 10, + "OBJECTID_2": 110, + "OBJECTID": 140, + "PRECINCT_N": 114, + "FACILITY_D": "Church Hall", + "ACCESSIBLE": "Yes", + "GIS_ID": "plp_140", + "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", + "NAME": "Union Temple Baptist Church", + "ADDRESS": "1225 W STREET SE", + "ADDRESS_ID": 70732, + "marker-color": "#f0f", + "marker-size": "small" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -76.98893973743299, + 38.864499675202886 + ] + } + }, + { + "type": "Feature", + "properties": { + "OBJECTID_1": 11, + "OBJECTID_2": 111, + "OBJECTID": 141, + "PRECINCT_N": 113, + "FACILITY_D": "Multi-Purpose Room", + "ACCESSIBLE": "Yes", + "GIS_ID": "plp_141", + "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", + "NAME": "Senior Wellness Center", + "ADDRESS": "3001 ALABAMA AVENUE SE", + "ADDRESS_ID": 289473, + "marker-color": "#f0f", + "marker-size": "small" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -76.96411611205536, + 38.86050295448647 + ] + } + }, + { + "type": "Feature", + "properties": { + "OBJECTID_1": 12, + "OBJECTID_2": 112, + "OBJECTID": 142, + "PRECINCT_N": 112, + "FACILITY_D": "Meeting Room", + "ACCESSIBLE": "Yes", + "GIS_ID": "plp_142", + "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", + "NAME": "Anacostia Public Library", + "ADDRESS": "1800 GOOD HOPE ROAD SE", + "ADDRESS_ID": 53560, + "marker-color": "#f0f", + "marker-size": "small" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -76.97848542018258, + 38.86589640205795 + ] + } + }, + { + "type": "Feature", + "properties": { + "OBJECTID_1": 13, + "OBJECTID_2": 113, + "OBJECTID": 2, + "PRECINCT_N": 99, + "FACILITY_D": "Multi-Purpose Room", + "ACCESSIBLE": "Yes", + "GIS_ID": "plp_2", + "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", + "NAME": "Smothers Elementary School", + "ADDRESS": "4400 BROOKS STREET NE", + "ADDRESS_ID": 294596, + "marker-color": "#f0f", + "marker-size": "small" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -76.93846863878429, + 38.8935537018287 + ] + } + }, + { + "type": "Feature", + "properties": { + "OBJECTID_1": 14, + "OBJECTID_2": 114, + "OBJECTID": 3, + "PRECINCT_N": 97, + "FACILITY_D": "Auditorium", + "ACCESSIBLE": "Yes", + "GIS_ID": "plp_3", + "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", + "NAME": "Kelly Miller Middle School", + "ADDRESS": "301 49TH STREET NE", + "ADDRESS_ID": 294476, + "marker-color": "#f0f", + "marker-size": "small" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -76.9324561269054, + 38.89331497492733 + ] + } + }, + { + "type": "Feature", + "properties": { + "OBJECTID_1": 15, + "OBJECTID_2": 115, + "OBJECTID": 4, + "PRECINCT_N": 130, + "FACILITY_D": "Multi-Purpose Room (lower level)", + "ACCESSIBLE": "Yes - Use west entrance.", + "GIS_ID": "plp_4", + "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", + "NAME": "Lutheran Church of the Reformation", + "ADDRESS": "212 EAST CAPITOL STREET NE", + "ADDRESS_ID": 286648, + "marker-color": "#f0f", + "marker-size": "small" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -77.00285766770992, + 38.89011245970198 + ] + } + }, + { + "type": "Feature", + "properties": { + "OBJECTID_1": 16, + "OBJECTID_2": 116, + "OBJECTID": 112, + "PRECINCT_N": 90, + "FACILITY_D": "Auditorium", + "ACCESSIBLE": "Yes", + "GIS_ID": "plp_112", + "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", + "NAME": "Tyler Elementary School", + "ADDRESS": "1001 G STREET SE", + "ADDRESS_ID": 294505, + "marker-color": "#f0f", + "marker-size": "small" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -76.99204165683663, + 38.88108402366969 + ] + } + }, + { + "type": "Feature", + "properties": { + "OBJECTID_1": 17, + "OBJECTID_2": 117, + "OBJECTID": 119, + "PRECINCT_N": 101, + "FACILITY_D": "Auditorium", + "ACCESSIBLE": "Yes", + "GIS_ID": "plp_119", + "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", + "NAME": "River Terrace Elementary School", + "ADDRESS": "420 34TH STREET NE", + "ADDRESS_ID": 294485, + "marker-color": "#f0f", + "marker-size": "small" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -76.95780755109128, + 38.89542846135375 + ] + } + }, + { + "type": "Feature", + "properties": { + "OBJECTID_1": 18, + "OBJECTID_2": 118, + "OBJECTID": 134, + "PRECINCT_N": 122, + "FACILITY_D": "Armory", + "ACCESSIBLE": "Yes - Accessible entrance adjacent to parking lot.", + "GIS_ID": "plp_134", + "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", + "NAME": "Ballou Senior High School", + "ADDRESS": "3401 4TH STREET SE", + "ADDRESS_ID": 294567, + "marker-color": "#f0f", + "marker-size": "small" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -77.00097525758831, + 38.83938233153192 + ] + } + }, + { + "type": "Feature", + "properties": { + "OBJECTID_1": 19, + "OBJECTID_2": 119, + "OBJECTID": 1, + "PRECINCT_N": 2, + "FACILITY_D": "Multi-Purpose Room", + "ACCESSIBLE": "Yes", + "GIS_ID": "plp_1", + "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", + "NAME": "The School Without Walls", + "ADDRESS": "2130 G STREET NW", + "ADDRESS_ID": 242528, + "marker-color": "#f0f", + "marker-size": "small" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -77.04818646563815, + 38.89812378757083 + ] + } + }, + { + "type": "Feature", + "properties": { + "OBJECTID_1": 20, + "OBJECTID_2": 120, + "OBJECTID": 40, + "PRECINCT_N": 72, + "FACILITY_D": "Community Room (1st floor)", + "ACCESSIBLE": "Yes", + "GIS_ID": "plp_40", + "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", + "NAME": "Langdon Park Recreation Center", + "ADDRESS": "2901 20TH STREET NE", + "ADDRESS_ID": 287283, + "marker-color": "#f0f", + "marker-size": "small" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -76.97578848687645, + 38.926822413922125 + ] + } + }, + { + "type": "Feature", + "properties": { + "OBJECTID_1": 21, + "OBJECTID_2": 121, + "OBJECTID": 29, + "PRECINCT_N": 34, + "FACILITY_D": "Gymnasium (lower level)", + "ACCESSIBLE": "Yes - Use ramped entrance.", + "GIS_ID": "plp_29", + "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", + "NAME": "Edmund Burke School", + "ADDRESS": "2955 UPTON STREET NW", + "ADDRESS_ID": 284536, + "marker-color": "#f0f", + "marker-size": "small" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -77.06162815688, + 38.94236132772941 + ] + } + }, + { + "type": "Feature", + "properties": { + "OBJECTID_1": 22, + "OBJECTID_2": 122, + "OBJECTID": 30, + "PRECINCT_N": 45, + "FACILITY_D": "Community Room", + "ACCESSIBLE": "Yes", + "GIS_ID": "plp_30", + "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", + "NAME": "MPD - Regional Operation Command (North)", + "ADDRESS": "801 SHEPHERD STREET NW", + "ADDRESS_ID": 252510, + "marker-color": "#f0f", + "marker-size": "small" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -77.02381044771231, + 38.940088934414405 + ] + } + }, + { + "type": "Feature", + "properties": { + "OBJECTID_1": 23, + "OBJECTID_2": 123, + "OBJECTID": 31, + "PRECINCT_N": 8, + "FACILITY_D": "Gymnasium", + "ACCESSIBLE": "Yes", + "GIS_ID": "plp_31", + "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", + "NAME": "Palisades Recreation Center", + "ADDRESS": "5100 SHERIER PLACE NW", + "ADDRESS_ID": 268352, + "marker-color": "#f0f", + "marker-size": "small" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -77.10263460574787, + 38.92444192485095 + ] + } + }, + { + "type": "Feature", + "properties": { + "OBJECTID_1": 24, + "OBJECTID_2": 124, + "OBJECTID": 32, + "PRECINCT_N": 41, + "FACILITY_D": "Great Hall", + "ACCESSIBLE": "Yes - Use entrance on Oak Street.", + "GIS_ID": "plp_32", + "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", + "NAME": "Trinity AME Zion Church", + "ADDRESS": "3505 16TH STREET NW", + "ADDRESS_ID": 234593, + "marker-color": "#f0f", + "marker-size": "small" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -77.0360804245525, + 38.934550552844456 + ] + } + }, + { + "type": "Feature", + "properties": { + "OBJECTID_1": 25, + "OBJECTID_2": 125, + "OBJECTID": 33, + "PRECINCT_N": 43, + "FACILITY_D": "Recreation Area", + "ACCESSIBLE": "Yes", + "GIS_ID": "plp_33", + "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", + "NAME": "Park View Recreation Center", + "ADDRESS": "693 OTIS PLACE NW", + "ADDRESS_ID": 295160, + "marker-color": "#f0f", + "marker-size": "small" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -77.02135031427919, + 38.935002875205896 + ] + } + }, + { + "type": "Feature", + "properties": { + "OBJECTID_1": 26, + "OBJECTID_2": 126, + "OBJECTID": 34, + "PRECINCT_N": 42, + "FACILITY_D": "Dining Room (lower level)", + "ACCESSIBLE": "Yes", + "GIS_ID": "plp_34", + "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", + "NAME": "Mt. Rona Baptist Church", + "ADDRESS": "3431 13TH STREET NW", + "ADDRESS_ID": 230950, + "marker-color": "#f0f", + "marker-size": "small" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -77.0294528525794, + 38.93224097022686 + ] + } + }, + { + "type": "Feature", + "properties": { + "OBJECTID_1": 27, + "OBJECTID_2": 1, + "OBJECTID": 5, + "PRECINCT_N": 80, + "FACILITY_D": "Quander Room", + "ACCESSIBLE": "Yes - Accessible entrance rear of Church.", + "GIS_ID": "plp_5", + "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", + "NAME": "St. Benedict the Moor Church", + "ADDRESS": "320 21ST STREET NE", + "ADDRESS_ID": 287504, + "marker-color": "#f0f", + "marker-size": "small" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -76.97545753568295, + 38.894225931293576 + ] + } + }, + { + "type": "Feature", + "properties": { + "OBJECTID_1": 28, + "OBJECTID_2": 2, + "OBJECTID": 6, + "PRECINCT_N": 102, + "FACILITY_D": "Meeting Room", + "ACCESSIBLE": "Yes", + "GIS_ID": "plp_6", + "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", + "NAME": "Benning Public Library", + "ADDRESS": "3935 BENNING ROAD NE", + "ADDRESS_ID": 295144, + "marker-color": "#f0f", + "marker-size": "small" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -76.94775954961405, + 38.89419424144954 + ] + } + }, + { + "type": "Feature", + "properties": { + "OBJECTID_1": 29, + "OBJECTID_2": 3, + "OBJECTID": 7, + "PRECINCT_N": 96, + "FACILITY_D": "Fellowship Hall", + "ACCESSIBLE": "Yes", + "GIS_ID": "plp_7", + "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", + "NAME": "Hughes Memorial United Methodist Church", + "ADDRESS": "25 53RD STREET NE", + "ADDRESS_ID": 287077, + "marker-color": "#f0f", + "marker-size": "small" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -76.92577691903026, + 38.890534557242 + ] + } + }, + { + "type": "Feature", + "properties": { + "OBJECTID_1": 30, + "OBJECTID_2": 4, + "OBJECTID": 8, + "PRECINCT_N": 88, + "FACILITY_D": "Church Hall", + "ACCESSIBLE": "Yes", + "GIS_ID": "plp_8", + "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", + "NAME": "Thankful Baptist Church", + "ADDRESS": "1401 INDEPENDENCE AVENUE SE", + "ADDRESS_ID": 65107, + "marker-color": "#f0f", + "marker-size": "small" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -76.98528389471295, + 38.88737930620289 + ] + } + }, + { + "type": "Feature", + "properties": { + "OBJECTID_1": 31, + "OBJECTID_2": 5, + "OBJECTID": 9, + "PRECINCT_N": 132, + "FACILITY_D": "Gymnasium", + "ACCESSIBLE": "Yes", + "GIS_ID": "plp_9", + "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", + "NAME": "DC Center for Therapeutic Recreation", + "ADDRESS": "3030 G STREET SE", + "ADDRESS_ID": 288770, + "marker-color": "#f0f", + "marker-size": "small" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -76.96320322261629, + 38.88087157549328 + ] + } + }, + { + "type": "Feature", + "properties": { + "OBJECTID_1": 32, + "OBJECTID_2": 6, + "OBJECTID": 10, + "PRECINCT_N": 128, + "FACILITY_D": "Junior Church Hall", + "ACCESSIBLE": "Yes - Accessible entrance adjacent to parking lot.", + "GIS_ID": "plp_10", + "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", + "NAME": "Friendship Baptist Church", + "ADDRESS": "900 DELAWARE AVENUE SW", + "ADDRESS_ID": 276854, + "marker-color": "#f0f", + "marker-size": "small" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -77.01249793426904, + 38.878918819849204 + ] + } + }, + { + "type": "Feature", + "properties": { + "OBJECTID_1": 33, + "OBJECTID_2": 7, + "OBJECTID": 11, + "PRECINCT_N": 111, + "FACILITY_D": "John Bailey Room", + "ACCESSIBLE": "Yes - Use the Center for Employment Training entrance for ground level access (2815", + "GIS_ID": "plp_11", + "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", + "NAME": "St. Francis Xavier Church", + "ADDRESS": "2800 PENNSYLVANIA AVENUE SE", + "ADDRESS_ID": 44697, + "marker-color": "#f0f", + "marker-size": "small" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -76.96750992279762, + 38.872519727803635 + ] + } + }, + { + "type": "Feature", + "properties": { + "OBJECTID_1": 34, + "OBJECTID_2": 8, + "OBJECTID": 12, + "PRECINCT_N": 108, + "FACILITY_D": "Community Room", + "ACCESSIBLE": "Yes - Accessible - rear entrance, near parking lot.", + "GIS_ID": "plp_12", + "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", + "NAME": "Pennsylvania Avenue Baptist Church", + "ADDRESS": "3000 PENNSYLVANIA AVENUE SE", + "ADDRESS_ID": 42549, + "marker-color": "#f0f", + "marker-size": "small" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -76.96381300081566, + 38.87112927464978 + ] + } + }, + { + "type": "Feature", + "properties": { + "OBJECTID_1": 35, + "OBJECTID_2": 9, + "OBJECTID": 13, + "PRECINCT_N": 127, + "FACILITY_D": "Meeting Room", + "ACCESSIBLE": "Yes", + "GIS_ID": "plp_13", + "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", + "NAME": "King Greenleaf Recreation Center", + "ADDRESS": "201 N STREET SW", + "ADDRESS_ID": 52917, + "marker-color": "#f0f", + "marker-size": "small" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -77.01279249959418, + 38.87501581074506 + ] + } + }, + { + "type": "Feature", + "properties": { + "OBJECTID_1": 36, + "OBJECTID_2": 10, + "OBJECTID": 14, + "PRECINCT_N": 109, + "FACILITY_D": "Gymnasium", + "ACCESSIBLE": "Yes", + "GIS_ID": "plp_14", + "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", + "NAME": "Randle-Highlands Elementary School", + "ADDRESS": "1650 30TH STREET SE", + "ADDRESS_ID": 156337, + "marker-color": "#f0f", + "marker-size": "small" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -76.96435628177574, + 38.87009140318784 + ] + } + }, + { + "type": "Feature", + "properties": { + "OBJECTID_1": 37, + "OBJECTID_2": 11, + "OBJECTID": 16, + "PRECINCT_N": 134, + "FACILITY_D": "Multipurpose Room", + "ACCESSIBLE": "Yes - Use rear entrance, adjacent to parking lot.", + "GIS_ID": "plp_16", + "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", + "NAME": "Allen AME Church", + "ADDRESS": "2498 ALABAMA AVENUE SE", + "ADDRESS_ID": 46843, + "marker-color": "#f0f", + "marker-size": "small" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -76.97028294121324, + 38.856884832198325 + ] + } + }, + { + "type": "Feature", + "properties": { + "OBJECTID_1": 38, + "OBJECTID_2": 12, + "OBJECTID": 17, + "PRECINCT_N": 115, + "FACILITY_D": "Community Room", + "ACCESSIBLE": "Yes", + "GIS_ID": "plp_17", + "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", + "NAME": "Seventh District Police Station", + "ADDRESS": "2455 ALABAMA AVENUE SE", + "ADDRESS_ID": 278162, + "marker-color": "#f0f", + "marker-size": "small" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -76.96952139706708, + 38.85335576413945 + ] + } + }, + { + "type": "Feature", + "properties": { + "OBJECTID_1": 39, + "OBJECTID_2": 13, + "OBJECTID": 18, + "PRECINCT_N": 116, + "FACILITY_D": "Fellowship Hall", + "ACCESSIBLE": "Yes", + "GIS_ID": "plp_18", + "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", + "NAME": "New Image Community Baptist Church", + "ADDRESS": "1839 ALABAMA AVENUE SE", + "ADDRESS_ID": 54816, + "marker-color": "#f0f", + "marker-size": "small" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -76.97783993032797, + 38.84765863309889 + ] + } + }, + { + "type": "Feature", + "properties": { + "OBJECTID_1": 40, + "OBJECTID_2": 14, + "OBJECTID": 19, + "PRECINCT_N": 124, + "FACILITY_D": "Church Hall", + "ACCESSIBLE": "Yes", + "GIS_ID": "plp_19", + "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", + "NAME": "Convenant Baptist Church", + "ADDRESS": "3845 SOUTH CAPITOL STREET SW", + "ADDRESS_ID": 301907, + "marker-color": "#f0f", + "marker-size": "small" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -77.00866130403007, + 38.83401036254331 + ] + } + }, + { + "type": "Feature", + "properties": { + "OBJECTID_1": 41, + "OBJECTID_2": 15, + "OBJECTID": 20, + "PRECINCT_N": 61, + "FACILITY_D": "Multi-purpose Room", + "ACCESSIBLE": "Yes", + "GIS_ID": "plp_20", + "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", + "NAME": "Fort Stevens Recreation Center", + "ADDRESS": "1327 VAN BUREN STREET NW", + "ADDRESS_ID": 290152, + "marker-color": "#f0f", + "marker-size": "small" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -77.03109080084555, + 38.97026914859354 + ] + } + }, + { + "type": "Feature", + "properties": { + "OBJECTID_1": 42, + "OBJECTID_2": 16, + "OBJECTID": 21, + "PRECINCT_N": 50, + "FACILITY_D": "Auditorium", + "ACCESSIBLE": "Yes - Accessible rear entrance next to the parking lot.", + "GIS_ID": "plp_21", + "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", + "NAME": "Chevy Chase Community Center", + "ADDRESS": "5601 CONNECTICUT AVENUE NW", + "ADDRESS_ID": 263959, + "marker-color": "#f0f", + "marker-size": "small" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -77.07510861326296, + 38.96515842127339 + ] + } + }, + { + "type": "Feature", + "properties": { + "OBJECTID_1": 43, + "OBJECTID_2": 17, + "OBJECTID": 22, + "PRECINCT_N": 52, + "FACILITY_D": "Roth Gymnasium Bldg.", + "ACCESSIBLE": "Yes - Access from parking lot.", + "GIS_ID": "plp_22", + "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", + "NAME": "St. John's College High School", + "ADDRESS": "2607 MILITARY ROAD NW", + "ADDRESS_ID": 259840, + "marker-color": "#f0f", + "marker-size": "small" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -77.05520494037229, + 38.962417220863394 + ] + } + }, + { + "type": "Feature", + "properties": { + "OBJECTID_1": 44, + "OBJECTID_2": 18, + "OBJECTID": 24, + "PRECINCT_N": 60, + "FACILITY_D": "Gymnasium", + "ACCESSIBLE": "Yes", + "GIS_ID": "plp_24", + "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", + "NAME": "Church of the Nativity Youth Center", + "ADDRESS": "6000 GEORGIA AVENUE NW", + "ADDRESS_ID": 253197, + "marker-color": "#f0f", + "marker-size": "small" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -77.02822698508824, + 38.96284816168917 + ] + } + }, + { + "type": "Feature", + "properties": { + "OBJECTID_1": 45, + "OBJECTID_2": 19, + "OBJECTID": 25, + "PRECINCT_N": 138, + "FACILITY_D": "Fellowship Hall", + "ACCESSIBLE": "Yes - Accessible entrance adjacent to parking lot.", + "GIS_ID": "plp_25", + "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", + "NAME": "Capital Memorial Adventist Church", + "ADDRESS": "3150 CHESAPEAKE STREET NW", + "ADDRESS_ID": 284592, + "marker-color": "#f0f", + "marker-size": "small" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -77.06396319555985, + 38.95020322506991 + ] + } + }, + { + "type": "Feature", + "properties": { + "OBJECTID_1": 46, + "OBJECTID_2": 20, + "OBJECTID": 26, + "PRECINCT_N": 31, + "FACILITY_D": "Church Hall", + "ACCESSIBLE": "Yes - Accessible entrance located on 42nd St.", + "GIS_ID": "plp_26", + "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", + "NAME": "St. Columba's Episcopal Church", + "ADDRESS": "4201 ALBEMARLE STREET NW", + "ADDRESS_ID": 301545, + "marker-color": "#f0f", + "marker-size": "small" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -77.08244680641738, + 38.9482176667262 + ] + } + }, + { + "type": "Feature", + "properties": { + "OBJECTID_1": 47, + "OBJECTID_2": 21, + "OBJECTID": 27, + "PRECINCT_N": 44, + "FACILITY_D": "Multi-Purpose Room", + "ACCESSIBLE": "Yes", + "GIS_ID": "plp_27", + "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", + "NAME": "North Capitol at Plymouth", + "ADDRESS": "5233 NORTH CAPTIOL STREET NE", + "ADDRESS_ID": 298101, + "marker-color": "#f0f", + "marker-size": "small" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -77.00866515707142, + 38.95406774426341 + ] + } + }, + { + "type": "Feature", + "properties": { + "OBJECTID_1": 48, + "OBJECTID_2": 22, + "OBJECTID": 28, + "PRECINCT_N": 9, + "FACILITY_D": "Vestry Hall", + "ACCESSIBLE": "Yes", + "GIS_ID": "plp_28", + "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", + "NAME": "Metropolitan Memorial United Methodist Church", + "ADDRESS": "3401 NEBRASKA AVENUE NW", + "ADDRESS_ID": 298676, + "marker-color": "#f0f", + "marker-size": "small" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -77.08779934048464, + 38.93495923702522 + ] + } + }, + { + "type": "Feature", + "properties": { + "OBJECTID_1": 49, + "OBJECTID_2": 23, + "OBJECTID": 47, + "PRECINCT_N": 75, + "FACILITY_D": "Auditorium", + "ACCESSIBLE": "Yes", + "GIS_ID": "plp_47", + "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", + "NAME": "McKinley Technology Senior High School", + "ADDRESS": "151 T STREET NE", + "ADDRESS_ID": 296345, + "marker-color": "#f0f", + "marker-size": "small" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -77.0041224390594, + 38.91521978576181 + ] + } + }, + { + "type": "Feature", + "properties": { + "OBJECTID_1": 50, + "OBJECTID_2": 24, + "OBJECTID": 48, + "PRECINCT_N": 141, + "FACILITY_D": "North Lobby", + "ACCESSIBLE": "Yes", + "GIS_ID": "plp_48", + "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", + "NAME": "Frank D. Reeves Municipal Center", + "ADDRESS": "2000 14TH STREET NW", + "ADDRESS_ID": 239976, + "marker-color": "#f0f", + "marker-size": "small" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -77.03240352407649, + 38.917444026973975 + ] + } + }, + { + "type": "Feature", + "properties": { + "OBJECTID_1": 125, + "OBJECTID_2": 99, + "OBJECTID": 128, + "PRECINCT_N": 137, + "FACILITY_D": "Multi-Purpose Room", + "ACCESSIBLE": "Yes - Accessible entrance adjacent to parking lot.", + "GIS_ID": "plp_128", + "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", + "NAME": "Garrison Elementary School", + "ADDRESS": "1200 S STREET NW", + "ADDRESS_ID": 294509, + "marker-color": "#f0f", + "marker-size": "small" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -77.02861255039201, + 38.913900958245385 + ] + } + }, + { + "type": "Feature", + "properties": { + "OBJECTID_1": 126, + "OBJECTID_2": 100, + "OBJECTID": 129, + "PRECINCT_N": 133, + "FACILITY_D": "Library", + "ACCESSIBLE": "Yes - Accessible entrance rear of school", + "GIS_ID": "plp_129", + "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", + "NAME": "Orr Elementary School", + "ADDRESS": "2200 MINNESOTA AVENUE SE", + "ADDRESS_ID": 294539, + "marker-color": "#f0f", + "marker-size": "small" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -76.97448401156392, + 38.871796823975465 + ] + } + }, + { + "type": "Feature", + "properties": { + "OBJECTID_1": 127, + "OBJECTID_2": 127, + "OBJECTID": 35, + "PRECINCT_N": 71, + "FACILITY_D": "Upper Fellowship Hall", + "ACCESSIBLE": "Yes - Accessible entrance on Bladensburg Road", + "GIS_ID": "plp_35", + "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", + "NAME": "Mt. Horeb Baptist Church", + "ADDRESS": "3015 EARL PLACE NE", + "ADDRESS_ID": 287380, + "marker-color": "#f0f", + "marker-size": "small" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -76.96257582780058, + 38.92828163952405 + ] + } + }, + { + "type": "Feature", + "properties": { + "OBJECTID_1": 128, + "OBJECTID_2": 128, + "OBJECTID": 36, + "PRECINCT_N": 28, + "FACILITY_D": "Parish Center (near Klingle Place)", + "ACCESSIBLE": "Yes", + "GIS_ID": "plp_36", + "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", + "NAME": "Church of the Annunciation Parish", + "ADDRESS": "3810 MASSACHUSETTS AVENUE NW", + "ADDRESS_ID": 263608, + "marker-color": "#f0f", + "marker-size": "small" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -77.07581746959019, + 38.93014871936168 + ] + } + }, + { + "type": "Feature", + "properties": { + "OBJECTID_1": 129, + "OBJECTID_2": 129, + "OBJECTID": 37, + "PRECINCT_N": 136, + "FACILITY_D": "Conference Room", + "ACCESSIBLE": "Yes - Use side entrance from parking lot", + "GIS_ID": "plp_37", + "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", + "NAME": "Leading Age", + "ADDRESS": "2519 CONNECTICUT AVENUE NW", + "ADDRESS_ID": 284405, + "marker-color": "#f0f", + "marker-size": "small" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -77.05081709968947, + 38.923171900472795 + ] + } + }, + { + "type": "Feature", + "properties": { + "OBJECTID_1": 130, + "OBJECTID_2": 130, + "OBJECTID": 38, + "PRECINCT_N": 12, + "FACILITY_D": "Church Hall", + "ACCESSIBLE": "Yes", + "GIS_ID": "plp_38", + "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", + "NAME": "St Sophia's Greek Orthodox Cathederal Church", + "ADDRESS": "3600 MASSACHUSETTS AVENUE NW", + "ADDRESS_ID": 262638, + "marker-color": "#f0f", + "marker-size": "small" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -77.07117418205232, + 38.92672469638905 + ] + } + }, + { + "type": "Feature", + "properties": { + "OBJECTID_1": 131, + "OBJECTID_2": 131, + "OBJECTID": 39, + "PRECINCT_N": 39, + "FACILITY_D": "Auditorium", + "ACCESSIBLE": "Yes", + "GIS_ID": "plp_39", + "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", + "NAME": "Bell Multicultural High School", + "ADDRESS": "3101 16th Street NW", + "ADDRESS_ID": 234375, + "marker-color": "#f0f", + "marker-size": "small" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -77.03585151879376, + 38.929540334081075 + ] + } + }, + { + "type": "Feature", + "properties": { + "OBJECTID_1": 132, + "OBJECTID_2": 132, + "OBJECTID": 41, + "PRECINCT_N": 36, + "FACILITY_D": "Community Room", + "ACCESSIBLE": "Yes", + "GIS_ID": "plp_41", + "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", + "NAME": "Latin American Youth Center", + "ADDRESS": "1419 COLUMBIA ROAD NW", + "ADDRESS_ID": 234363, + "marker-color": "#f0f", + "marker-size": "small" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -77.03335781590764, + 38.9277663944928 + ] + } + }, + { + "type": "Feature", + "properties": { + "OBJECTID_1": 133, + "OBJECTID_2": 133, + "OBJECTID": 42, + "PRECINCT_N": 135, + "FACILITY_D": "Church Hall", + "ACCESSIBLE": "Yes - Use ramped entrance on Rhode Island Avenue.", + "GIS_ID": "plp_42", + "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", + "NAME": "Mt. Bethel Baptist Church", + "ADDRESS": "1901 1ST STREET NW", + "ADDRESS_ID": 227421, + "marker-color": "#f0f", + "marker-size": "small" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -77.01182725241577, + 38.916136758622 + ] + } + }, + { + "type": "Feature", + "properties": { + "OBJECTID_1": 134, + "OBJECTID_2": 134, + "OBJECTID": 43, + "PRECINCT_N": 11, + "FACILITY_D": "Union Hall", + "ACCESSIBLE": "Yes", + "GIS_ID": "plp_43", + "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", + "NAME": "International Union of Operating Engineer", + "ADDRESS": "2461 WISCONSIN AVENUE NW", + "ADDRESS_ID": 284395, + "marker-color": "#f0f", + "marker-size": "small" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -77.07250197535924, + 38.92234916933058 + ] + } + }, + { + "type": "Feature", + "properties": { + "OBJECTID_1": 135, + "OBJECTID_2": 135, + "OBJECTID": 44, + "PRECINCT_N": 23, + "FACILITY_D": "Library and Computer Room", + "ACCESSIBLE": "Yes", + "GIS_ID": "plp_44", + "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", + "NAME": "Loughran Community Center", + "ADDRESS": "2500 14TH STREET NW", + "ADDRESS_ID": 234200, + "marker-color": "#f0f", + "marker-size": "small" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -77.03236211898793, + 38.921998738498395 + ] + } + }, + { + "type": "Feature", + "properties": { + "OBJECTID_1": 136, + "OBJECTID_2": 136, + "OBJECTID": 45, + "PRECINCT_N": 25, + "FACILITY_D": "Fellowship Hall", + "ACCESSIBLE": "Yes", + "GIS_ID": "plp_45", + "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", + "NAME": "Goodwill Baptist Church", + "ADDRESS": "1862 KALORAMA ROAD NW", + "ADDRESS_ID": 235475, + "marker-color": "#f0f", + "marker-size": "small" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -77.04382603429792, + 38.91931664613416 + ] + } + }, + { + "type": "Feature", + "properties": { + "OBJECTID_1": 137, + "OBJECTID_2": 137, + "OBJECTID": 46, + "PRECINCT_N": 13, + "FACILITY_D": "Fellowship Hall", + "ACCESSIBLE": "Yes", + "GIS_ID": "plp_46", + "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", + "NAME": "Goodwill Baptist Church", + "ADDRESS": "1862 KALORAMA ROAD NW", + "ADDRESS_ID": 235475, + "marker-color": "#f0f", + "marker-size": "small" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -77.04382603429792, + 38.91931664613416 + ] + } + }, + { + "type": "Feature", + "properties": { + "OBJECTID_1": 138, + "OBJECTID_2": 138, + "OBJECTID": 143, + "PRECINCT_N": 143, + "FACILITY_D": "Church Hall/Meeting Room", + "ACCESSIBLE": "Yes", + "GIS_ID": "plp_143", + "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", + "NAME": "Chinese Community Church", + "ADDRESS": "500 I STREET NW", + "ADDRESS_ID": 238945, + "marker-color": "#f0f", + "marker-size": "small" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -77.0191335488228, + 38.900621429714505 + ] + } + }, + { + "type": "Feature", + "properties": { + "OBJECTID_1": 139, + "OBJECTID_2": 139, + "OBJECTID": 15, + "PRECINCT_N": 110, + "FACILITY_D": "Multi-Purpose Room", + "ACCESSIBLE": "Yes", + "GIS_ID": "plp_15", + "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", + "NAME": "St. Timothy's Episcopal Church", + "ADDRESS": "3601 ALABAMA AVENUE SE", + "ADDRESS_ID": 33104, + "marker-color": "#f0f", + "marker-size": "small" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -76.95609228878696, + 38.86298923901404 + ] + } + }, + { + "type": "Feature", + "properties": { + "OBJECTID_1": 140, + "OBJECTID_2": 140, + "OBJECTID": 23, + "PRECINCT_N": 32, + "FACILITY_D": "Fellowship Hall (1st Floor)", + "ACCESSIBLE": "Yes - Use Connecticut Ave. entrance", + "GIS_ID": "plp_23", + "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", + "NAME": "Wesley Methodist Church", + "ADDRESS": "5312 CONNECTICUT AVENUE NW", + "ADDRESS_ID": 301282, + "marker-color": "#f0f", + "marker-size": "small" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -77.07264987664179, + 38.95932406644609 + ] + } + }, + { + "type": "Feature", + "properties": { + "OBJECTID_1": 141, + "OBJECTID_2": 141, + "OBJECTID": 63, + "PRECINCT_N": 6, + "FACILITY_D": "Gallery", + "ACCESSIBLE": "Yes", + "GIS_ID": "plp_63", + "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", + "NAME": "Duke Ellington School of the Arts", + "ADDRESS": "3500 R STREET NW", + "ADDRESS_ID": 294569, + "marker-color": "#f0f", + "marker-size": "small" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -77.0703075622951, + 38.91344604442462 + ] + } + }, + { + "type": "Feature", + "properties": { + "OBJECTID_1": 142, + "OBJECTID_2": 142, + "OBJECTID": 70, + "PRECINCT_N": 26, + "FACILITY_D": "Gymnasium", + "ACCESSIBLE": "Yes - Use ramped entrance on 27th Street", + "GIS_ID": "plp_70", + "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", + "NAME": "Oyster Elementary School", + "ADDRESS": "2801 CALVERT STREET NW", + "ADDRESS_ID": 275944, + "marker-color": "#f0f", + "marker-size": "small" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -77.0572033785664, + 38.923595492962626 + ] + } + }, + { + "type": "Feature", + "properties": { + "OBJECTID_1": 143, + "OBJECTID_2": 143, + "OBJECTID": 89, + "PRECINCT_N": 58, + "FACILITY_D": "Community Room.", + "ACCESSIBLE": "Yes - Ground level at Georgia. Avenue & Quackenbos Street.", + "GIS_ID": "plp_89", + "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/", + "NAME": "Fourth District Police Station", + "ADDRESS": "6001 GEORGIA AVENUE NW", + "ADDRESS_ID": 243485, + "marker-color": "#f0f", + "marker-size": "small" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -77.02741098359434, + 38.96312544965341 + ] + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.10263460574787, + 38.92444192485095 + ], + [ + -77.08244680641738, + 38.9482176667262 + ], + [ + -77.07510861326296, + 38.96515842127339 + ], + [ + -77.06803711636698, + 38.96662722064828 + ], + [ + -77.05520494037229, + 38.962417220863394 + ], + [ + -77.03399523386544, + 38.98460295003216 + ], + [ + -77.01805167618295, + 38.96888669131412 + ], + [ + -76.99988253848109, + 38.95997180998364 + ], + [ + -76.98499562999821, + 38.94201213500814 + ], + [ + -76.95763369669753, + 38.92730594377001 + ], + [ + -76.9404849391363, + 38.90822873259865 + ], + [ + -76.9299476407989, + 38.90541498719898 + ], + [ + -76.92270804396746, + 38.89619288755561 + ], + [ + -76.92611549373204, + 38.88359849788337 + ], + [ + -76.93761630232859, + 38.87906795106383 + ], + [ + -76.95609228878696, + 38.86298923901404 + ], + [ + -76.96952139706708, + 38.85335576413945 + ], + [ + -76.99226881799031, + 38.834327886510565 + ], + [ + -76.99918484024232, + 38.82898558049571 + ], + [ + -77.00847560019479, + 38.8269811922012 + ], + [ + -77.00866130403007, + 38.83401036254331 + ], + [ + -77.00097525758831, + 38.83938233153192 + ], + [ + -76.99535456253949, + 38.85976175834964 + ], + [ + -77.01279249959418, + 38.87501581074506 + ], + [ + -77.02291065460415, + 38.87987059942476 + ], + [ + -77.04818646563815, + 38.89812378757083 + ], + [ + -77.0511477096272, + 38.898862835793516 + ], + [ + -77.08498118309296, + 38.909915833213795 + ], + [ + -77.10263460574787, + 38.92444192485095 + ] + ], + [ + [ + -76.99726738315395, + 38.95334052572905 + ], + [ + -77.00866515707142, + 38.95406774426341 + ], + [ + -77.0177770800083, + 38.948230614415095 + ], + [ + -77.00253831800221, + 38.923654687421774 + ], + [ + -76.98652958387164, + 38.9375726751204 + ], + [ + -76.99726738315395, + 38.95334052572905 + ] + ] + ] + }, + "properties": {} + } + ] +} \ No newline at end of file diff --git a/packages/turf-convex/.npmignore b/packages/turf-convex/.npmignore new file mode 100644 index 0000000000..bb3c08c09a --- /dev/null +++ b/packages/turf-convex/.npmignore @@ -0,0 +1,2 @@ +test +coverage diff --git a/packages/turf-convex/README.md b/packages/turf-convex/README.md new file mode 100644 index 0000000000..66740010ff --- /dev/null +++ b/packages/turf-convex/README.md @@ -0,0 +1,105 @@ +# turf-convex + +[![build status](https://secure.travis-ci.org/Turfjs/turf-convex.png)](http://travis-ci.org/Turfjs/turf-convex) + + + + +### `turf.convex(input)` + +Takes a set of Point|points and returns a +[convex hull](http://en.wikipedia.org/wiki/Convex_hull) polygon. + +Internally this uses +the [convex-hull](https://github.com/mikolalysenko/convex-hull) module that +implements a [monotone chain hull](http://en.wikibooks.org/wiki/Algorithm_Implementation/Geometry/Convex_hull/Monotone_chain). + + +### Parameters + +| parameter | type | description | +| --------- | ---------------------------- | ------------ | +| `input` | FeatureCollection\.\ | input points | + + +### Example + +```js +var points = { + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [10.195312, 43.755225] + } + }, { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [10.404052, 43.8424511] + } + }, { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [10.579833, 43.659924] + } + }, { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [10.360107, 43.516688] + } + }, { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [10.14038, 43.588348] + } + }, { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [10.195312, 43.755225] + } + } + ] +}; + +var hull = turf.convex(points); + +var resultFeatures = points.features.concat(hull); +var result = { + "type": "FeatureCollection", + "features": resultFeatures +}; + +//=result +``` + + +**Returns** `Feature.`, a convex hull + +## Installation + +Requires [nodejs](http://nodejs.org/). + +```sh +$ npm install turf-convex +``` + +## Tests + +```sh +$ npm test +``` + + diff --git a/packages/turf-convex/bench.js b/packages/turf-convex/bench.js new file mode 100644 index 0000000000..3ebbe864fd --- /dev/null +++ b/packages/turf-convex/bench.js @@ -0,0 +1,17 @@ +var convex = require('./'); +var Benchmark = require('benchmark'); +var fs = require('fs'); + +var fc = JSON.parse(fs.readFileSync(__dirname+'/test/fixtures/in/elevation1.geojson')); +var suite = new Benchmark.Suite('turf-convex'); +suite + .add('turf-convex',function () { + convex(fc); + }) + .on('cycle', function (event) { + console.log(String(event.target)); + }) + .on('complete', function () { + + }) + .run(); \ No newline at end of file diff --git a/packages/turf-convex/index.js b/packages/turf-convex/index.js new file mode 100644 index 0000000000..ea4d704d9a --- /dev/null +++ b/packages/turf-convex/index.js @@ -0,0 +1,90 @@ +var each = require('turf-meta').coordEach, + convexHull = require('convex-hull'), + polygon = require('turf-helpers').polygon; + +/** + * Takes a set of {@link Point|points} and returns a + * [convex hull](http://en.wikipedia.org/wiki/Convex_hull) polygon. + * + * Internally this uses + * the [convex-hull](https://github.com/mikolalysenko/convex-hull) module that + * implements a [monotone chain hull](http://en.wikibooks.org/wiki/Algorithm_Implementation/Geometry/Convex_hull/Monotone_chain). + * + * @name convex + * @category transformation + * @param {FeatureCollection} input input points + * @returns {Feature} a convex hull + * @example + * var points = { + * "type": "FeatureCollection", + * "features": [ + * { + * "type": "Feature", + * "properties": {}, + * "geometry": { + * "type": "Point", + * "coordinates": [10.195312, 43.755225] + * } + * }, { + * "type": "Feature", + * "properties": {}, + * "geometry": { + * "type": "Point", + * "coordinates": [10.404052, 43.8424511] + * } + * }, { + * "type": "Feature", + * "properties": {}, + * "geometry": { + * "type": "Point", + * "coordinates": [10.579833, 43.659924] + * } + * }, { + * "type": "Feature", + * "properties": {}, + * "geometry": { + * "type": "Point", + * "coordinates": [10.360107, 43.516688] + * } + * }, { + * "type": "Feature", + * "properties": {}, + * "geometry": { + * "type": "Point", + * "coordinates": [10.14038, 43.588348] + * } + * }, { + * "type": "Feature", + * "properties": {}, + * "geometry": { + * "type": "Point", + * "coordinates": [10.195312, 43.755225] + * } + * } + * ] + * }; + * + * var hull = turf.convex(points); + * + * var resultFeatures = points.features.concat(hull); + * var result = { + * "type": "FeatureCollection", + * "features": resultFeatures + * }; + * + * //=result + */ +module.exports = function (fc) { + var points = []; + each(fc, function (coord) { points.push(coord); }); + var hull = convexHull(points); + if (hull.length > 0) { + var ring = []; + for (var i = 0; i < hull.length; i++) { + ring.push(points[hull[i][0]]); + } + ring.push(points[hull[hull.length - 1][1]]); + return polygon([ring]); + } + return undefined; +}; diff --git a/packages/turf-convex/package.json b/packages/turf-convex/package.json new file mode 100644 index 0000000000..7abea44af9 --- /dev/null +++ b/packages/turf-convex/package.json @@ -0,0 +1,36 @@ +{ + "name": "turf-convex", + "version": "3.0.5", + "description": "", + "main": "index.js", + "directories": { + "test": "test" + }, + "scripts": { + "test": "tape test/*.js" + }, + "repository": { + "type": "git", + "url": "git://github.com/Turfjs/turf-convex.git" + }, + "keywords": [ + "turf", + "gis" + ], + "author": "Morgan Herlocker", + "license": "ISC", + "bugs": { + "url": "https://github.com/Turfjs/turf-convex/issues" + }, + "homepage": "https://github.com/Turfjs/turf-convex", + "devDependencies": { + "benchmark": "^1.0.0", + "glob": "~4.3.5", + "tape": "~3.5.0" + }, + "dependencies": { + "convex-hull": "^1.0.3", + "turf-meta": "^3.0.1", + "turf-helpers": "^3.0.5" + } +} diff --git a/packages/turf-convex/test/convex.js b/packages/turf-convex/test/convex.js new file mode 100644 index 0000000000..8cc23134f1 --- /dev/null +++ b/packages/turf-convex/test/convex.js @@ -0,0 +1,16 @@ +var convex = require('../'), + test = require('tape'), + glob = require('glob'), + fs = require('fs'); + +test('convex hull', function(t){ + t.deepEqual(convex({ type: 'FeatureCollection', features: [] }), + undefined, 'corner case: undefined hull'); + glob.sync(__dirname + '/fixtures/in/*.geojson').forEach(function(input) { + var fcs = JSON.parse(fs.readFileSync(input)); + var output = convex(fcs); + if (process.env.UPDATE) fs.writeFileSync(input.replace('/in/', '/out/'), JSON.stringify(output)); + t.deepEqual(output, JSON.parse(fs.readFileSync(input.replace('/in/', '/out/'))), input); + }); + t.end(); +}); diff --git a/packages/turf-convex/test/fixtures/in/elevation1.geojson b/packages/turf-convex/test/fixtures/in/elevation1.geojson new file mode 100644 index 0000000000..966478da70 --- /dev/null +++ b/packages/turf-convex/test/fixtures/in/elevation1.geojson @@ -0,0 +1,141 @@ + { + "type": "FeatureCollection", + "features": [ + { "type": "Feature", + "geometry": {"type": "Point", "coordinates": [-75.833, 39.284]}, + "properties": { + "name": "Location B", + "category": "House", + "elevation": 25 + } + }, + { "type": "Feature", + "geometry": {"type": "Point", "coordinates": [-75.6, 39.984]}, + "properties": { + "name": "Location A", + "category": "Store", + "elevation": 23 + } + }, + { "type": "Feature", + "geometry": {"type": "Point", "coordinates": [ -75.221, 39.125]}, + "properties": { + "name": "Location C", + "category": "Office", + "elevation": 29 + } + }, + { "type": "Feature", + "geometry": {"type": "Point", "coordinates": [-75.358, 39.987]}, + "properties": { + "name": "Location A", + "category": "Store", + "elevation": 12 + } + }, + { "type": "Feature", + "geometry": {"type": "Point", "coordinates": [-75.9221, 39.27]}, + "properties": { + "name": "Location B", + "category": "House", + "elevation": 11 + } + }, + { "type": "Feature", + "geometry": {"type": "Point", "coordinates": [ -75.534, 39.123]}, + "properties": { + "name": "Location C", + "category": "Office", + "elevation": 49 + } + }, + { "type": "Feature", + "geometry": {"type": "Point", "coordinates": [-75.21, 39.12]}, + "properties": { + "name": "Location A", + "category": "Store", + "elevation": 50 + } + }, + { "type": "Feature", + "geometry": {"type": "Point", "coordinates": [-75.22, 39.33]}, + "properties": { + "name": "Location B", + "category": "House", + "elevation": 90 + } + }, + { "type": "Feature", + "geometry": {"type": "Point", "coordinates": [ -75.44, 39.55]}, + "properties": { + "name": "Location C", + "category": "Office", + "elevation": 22 + } + }, + { "type": "Feature", + "geometry": {"type": "Point", "coordinates": [-75.77, 39.66]}, + "properties": { + "name": "Location A", + "category": "Store", + "elevation": 99 + } + }, + { "type": "Feature", + "geometry": {"type": "Point", "coordinates": [-75.44, 39.11]}, + "properties": { + "name": "Location B", + "category": "House", + "elevation": 55 + } + }, + { "type": "Feature", + "geometry": {"type": "Point", "coordinates": [ -75.05, 39.92]}, + "properties": { + "name": "Location C", + "category": "Office", + "elevation": 41 + } + }, + { "type": "Feature", + "geometry": {"type": "Point", "coordinates": [-75.88, 39.98]}, + "properties": { + "name": "Location A", + "category": "Store", + "elevation": 52 + } + }, + { "type": "Feature", + "geometry": {"type": "Point", "coordinates": [-75.55, 39.55]}, + "properties": { + "name": "Location B", + "category": "House", + "elevation": 143 + } + }, + { "type": "Feature", + "geometry": {"type": "Point", "coordinates": [ -75.33, 39.44]}, + "properties": { + "name": "Location C", + "category": "Office", + "elevation": 76 + } + }, + { "type": "Feature", + "geometry": {"type": "Point", "coordinates": [ -75.56, 39.24]}, + "properties": { + "name": "Location C", + "category": "Office", + "elevation": 18 + } + }, + { "type": "Feature", + "geometry": {"type": "Point", "coordinates": [ -75.56, 39.36]}, + "properties": { + "name": "Location C", + "category": "Office", + "elevation": 52 + } + } + ] + } \ No newline at end of file diff --git a/packages/turf-convex/test/fixtures/in/elevation2.geojson b/packages/turf-convex/test/fixtures/in/elevation2.geojson new file mode 100644 index 0000000000..b6996be4ac --- /dev/null +++ b/packages/turf-convex/test/fixtures/in/elevation2.geojson @@ -0,0 +1,60 @@ +{ + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -75.1300048828125, + 40.157885249506506 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -74.5587158203125, + 39.816975090490004 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -76.06109619140625, + 40.0759697987031 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -76.21490478515625, + 39.60145584096999 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -74.77020263671875, + 39.35766163717121 + ] + } + } + ] +} \ No newline at end of file diff --git a/packages/turf-convex/test/fixtures/in/elevation3.geojson b/packages/turf-convex/test/fixtures/in/elevation3.geojson new file mode 100644 index 0000000000..966478da70 --- /dev/null +++ b/packages/turf-convex/test/fixtures/in/elevation3.geojson @@ -0,0 +1,141 @@ + { + "type": "FeatureCollection", + "features": [ + { "type": "Feature", + "geometry": {"type": "Point", "coordinates": [-75.833, 39.284]}, + "properties": { + "name": "Location B", + "category": "House", + "elevation": 25 + } + }, + { "type": "Feature", + "geometry": {"type": "Point", "coordinates": [-75.6, 39.984]}, + "properties": { + "name": "Location A", + "category": "Store", + "elevation": 23 + } + }, + { "type": "Feature", + "geometry": {"type": "Point", "coordinates": [ -75.221, 39.125]}, + "properties": { + "name": "Location C", + "category": "Office", + "elevation": 29 + } + }, + { "type": "Feature", + "geometry": {"type": "Point", "coordinates": [-75.358, 39.987]}, + "properties": { + "name": "Location A", + "category": "Store", + "elevation": 12 + } + }, + { "type": "Feature", + "geometry": {"type": "Point", "coordinates": [-75.9221, 39.27]}, + "properties": { + "name": "Location B", + "category": "House", + "elevation": 11 + } + }, + { "type": "Feature", + "geometry": {"type": "Point", "coordinates": [ -75.534, 39.123]}, + "properties": { + "name": "Location C", + "category": "Office", + "elevation": 49 + } + }, + { "type": "Feature", + "geometry": {"type": "Point", "coordinates": [-75.21, 39.12]}, + "properties": { + "name": "Location A", + "category": "Store", + "elevation": 50 + } + }, + { "type": "Feature", + "geometry": {"type": "Point", "coordinates": [-75.22, 39.33]}, + "properties": { + "name": "Location B", + "category": "House", + "elevation": 90 + } + }, + { "type": "Feature", + "geometry": {"type": "Point", "coordinates": [ -75.44, 39.55]}, + "properties": { + "name": "Location C", + "category": "Office", + "elevation": 22 + } + }, + { "type": "Feature", + "geometry": {"type": "Point", "coordinates": [-75.77, 39.66]}, + "properties": { + "name": "Location A", + "category": "Store", + "elevation": 99 + } + }, + { "type": "Feature", + "geometry": {"type": "Point", "coordinates": [-75.44, 39.11]}, + "properties": { + "name": "Location B", + "category": "House", + "elevation": 55 + } + }, + { "type": "Feature", + "geometry": {"type": "Point", "coordinates": [ -75.05, 39.92]}, + "properties": { + "name": "Location C", + "category": "Office", + "elevation": 41 + } + }, + { "type": "Feature", + "geometry": {"type": "Point", "coordinates": [-75.88, 39.98]}, + "properties": { + "name": "Location A", + "category": "Store", + "elevation": 52 + } + }, + { "type": "Feature", + "geometry": {"type": "Point", "coordinates": [-75.55, 39.55]}, + "properties": { + "name": "Location B", + "category": "House", + "elevation": 143 + } + }, + { "type": "Feature", + "geometry": {"type": "Point", "coordinates": [ -75.33, 39.44]}, + "properties": { + "name": "Location C", + "category": "Office", + "elevation": 76 + } + }, + { "type": "Feature", + "geometry": {"type": "Point", "coordinates": [ -75.56, 39.24]}, + "properties": { + "name": "Location C", + "category": "Office", + "elevation": 18 + } + }, + { "type": "Feature", + "geometry": {"type": "Point", "coordinates": [ -75.56, 39.36]}, + "properties": { + "name": "Location C", + "category": "Office", + "elevation": 52 + } + } + ] + } \ No newline at end of file diff --git a/packages/turf-convex/test/fixtures/out/elevation1.geojson b/packages/turf-convex/test/fixtures/out/elevation1.geojson new file mode 100644 index 0000000000..fa70f4a98c --- /dev/null +++ b/packages/turf-convex/test/fixtures/out/elevation1.geojson @@ -0,0 +1 @@ +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-75.534,39.123],[-75.9221,39.27],[-75.88,39.98],[-75.6,39.984],[-75.358,39.987],[-75.05,39.92],[-75.21,39.12],[-75.44,39.11],[-75.534,39.123]]]},"properties":{}} \ No newline at end of file diff --git a/packages/turf-convex/test/fixtures/out/elevation2.geojson b/packages/turf-convex/test/fixtures/out/elevation2.geojson new file mode 100644 index 0000000000..19c43c68e3 --- /dev/null +++ b/packages/turf-convex/test/fixtures/out/elevation2.geojson @@ -0,0 +1 @@ +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-74.77020263671875,39.35766163717121],[-76.21490478515625,39.60145584096999],[-76.06109619140625,40.0759697987031],[-75.1300048828125,40.157885249506506],[-74.5587158203125,39.816975090490004],[-74.77020263671875,39.35766163717121]]]},"properties":{}} \ No newline at end of file diff --git a/packages/turf-convex/test/fixtures/out/elevation3.geojson b/packages/turf-convex/test/fixtures/out/elevation3.geojson new file mode 100644 index 0000000000..fa70f4a98c --- /dev/null +++ b/packages/turf-convex/test/fixtures/out/elevation3.geojson @@ -0,0 +1 @@ +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-75.534,39.123],[-75.9221,39.27],[-75.88,39.98],[-75.6,39.984],[-75.358,39.987],[-75.05,39.92],[-75.21,39.12],[-75.44,39.11],[-75.534,39.123]]]},"properties":{}} \ No newline at end of file diff --git a/packages/turf-destination/.npmignore b/packages/turf-destination/.npmignore new file mode 100644 index 0000000000..bb3c08c09a --- /dev/null +++ b/packages/turf-destination/.npmignore @@ -0,0 +1,2 @@ +test +coverage diff --git a/packages/turf-destination/LICENSE b/packages/turf-destination/LICENSE new file mode 100644 index 0000000000..64fb8e99a3 --- /dev/null +++ b/packages/turf-destination/LICENSE @@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) 2014 Morgan Herlocker + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. \ No newline at end of file diff --git a/packages/turf-destination/README.md b/packages/turf-destination/README.md new file mode 100644 index 0000000000..33cdd8c7de --- /dev/null +++ b/packages/turf-destination/README.md @@ -0,0 +1,68 @@ +# turf-destination + +[![build status](https://secure.travis-ci.org/Turfjs/turf-destination.png)](http://travis-ci.org/Turfjs/turf-destination) + +turf destination module + + +### `turf.destination(start, distance, bearing, units)` + +Takes a Point and calculates the location of a destination point given a distance in degrees, radians, miles, or kilometers; and bearing in degrees. This uses the [Haversine formula](http://en.wikipedia.org/wiki/Haversine_formula) to account for global curvature. + + +### Parameters + +| parameter | type | description | +| ---------- | ------------------ | -------------------------------------- | +| `start` | Feature\.\ | starting point | +| `distance` | Number | distance from the starting point | +| `bearing` | Number | ranging from -180 to 180 | +| `units` | String | miles, kilometers, degrees, or radians | + + +### Example + +```js +var point = { + "type": "Feature", + "properties": { + "marker-color": "#0f0" + }, + "geometry": { + "type": "Point", + "coordinates": [-75.343, 39.984] + } +}; +var distance = 50; +var bearing = 90; +var units = 'miles'; + +var destination = turf.destination(point, distance, bearing, units); +destination.properties['marker-color'] = '#f00'; + +var result = { + "type": "FeatureCollection", + "features": [point, destination] +}; + +//=result +``` + + +**Returns** `Feature.`, destination point + +## Installation + +Requires [nodejs](http://nodejs.org/). + +```sh +$ npm install turf-destination +``` + +## Tests + +```sh +$ npm test +``` + + diff --git a/packages/turf-destination/bench.js b/packages/turf-destination/bench.js new file mode 100644 index 0000000000..c1bf39518f --- /dev/null +++ b/packages/turf-destination/bench.js @@ -0,0 +1,23 @@ +var destination = require('./'); +var Benchmark = require('benchmark'); +var fs = require('fs'); + +var pt1 = { + type: "Feature", + geometry: {type: "Point", coordinates: [-75.0, 39.0]} + }; +var dist = 100; +var bear = 180; + +var suite = new Benchmark.Suite('turf-destination'); +suite + .add('turf-destination',function () { + destination(pt1, dist, bear, 'kilometers'); + }) + .on('cycle', function (event) { + console.log(String(event.target)); + }) + .on('complete', function () { + + }) + .run(); \ No newline at end of file diff --git a/packages/turf-destination/index.js b/packages/turf-destination/index.js new file mode 100644 index 0000000000..b2454e335b --- /dev/null +++ b/packages/turf-destination/index.js @@ -0,0 +1,60 @@ +//http://en.wikipedia.org/wiki/Haversine_formula +//http://www.movable-type.co.uk/scripts/latlong.html +var getCoord = require('turf-invariant').getCoord; +var helpers = require('turf-helpers'); +var point = helpers.point; +var distanceToRadians = helpers.distanceToRadians; + +/** + * Takes a {@link Point} and calculates the location of a destination point given a distance in degrees, radians, miles, or kilometers; and bearing in degrees. This uses the [Haversine formula](http://en.wikipedia.org/wiki/Haversine_formula) to account for global curvature. + * + * @name destination + * @category measurement + * @param {Feature} start starting point + * @param {Number} distance distance from the starting point + * @param {Number} bearing ranging from -180 to 180 + * @param {String=kilometers} units miles, kilometers, degrees, or radians + * @returns {Feature} destination point + * @example + * var point = { + * "type": "Feature", + * "properties": { + * "marker-color": "#0f0" + * }, + * "geometry": { + * "type": "Point", + * "coordinates": [-75.343, 39.984] + * } + * }; + * var distance = 50; + * var bearing = 90; + * var units = 'miles'; + * + * var destination = turf.destination(point, distance, bearing, units); + * destination.properties['marker-color'] = '#f00'; + * + * var result = { + * "type": "FeatureCollection", + * "features": [point, destination] + * }; + * + * //=result + */ +module.exports = function (point1, distance, bearing, units) { + var degrees2radians = Math.PI / 180; + var radians2degrees = 180 / Math.PI; + var coordinates1 = getCoord(point1); + var longitude1 = degrees2radians * coordinates1[0]; + var latitude1 = degrees2radians * coordinates1[1]; + var bearing_rad = degrees2radians * bearing; + + var radians = distanceToRadians(distance, units); + + var latitude2 = Math.asin(Math.sin(latitude1) * Math.cos(radians) + + Math.cos(latitude1) * Math.sin(radians) * Math.cos(bearing_rad)); + var longitude2 = longitude1 + Math.atan2(Math.sin(bearing_rad) * + Math.sin(radians) * Math.cos(latitude1), + Math.cos(radians) - Math.sin(latitude1) * Math.sin(latitude2)); + + return point([radians2degrees * longitude2, radians2degrees * latitude2]); +}; diff --git a/packages/turf-destination/package.json b/packages/turf-destination/package.json new file mode 100644 index 0000000000..6730e91023 --- /dev/null +++ b/packages/turf-destination/package.json @@ -0,0 +1,36 @@ +{ + "name": "turf-destination", + "version": "3.0.5", + "description": "turf destination module", + "main": "index.js", + "scripts": { + "test": "tape test.js" + }, + "repository": { + "type": "git", + "url": "https://github.com/Turfjs/turf-destination.git" + }, + "keywords": [ + "turf", + "distance", + "destination", + "bearing", + "miles", + "km" + ], + "author": "jvrousseau", + "license": "MIT", + "bugs": { + "url": "https://github.com/Turfjs/turf-destination/issues" + }, + "homepage": "https://github.com/Turfjs/turf-destination", + "devDependencies": { + "benchmark": "^1.0.0", + "tape": "^3.5.0", + "turf-distance": "^3.0.5" + }, + "dependencies": { + "turf-helpers": "^3.0.5", + "turf-invariant": "^3.0.1" + } +} diff --git a/packages/turf-destination/test.js b/packages/turf-destination/test.js new file mode 100644 index 0000000000..4d15637e46 --- /dev/null +++ b/packages/turf-destination/test.js @@ -0,0 +1,16 @@ +var test = require('tape'); +var distance = require('turf-distance'); +var destination = require('./'); + +test('destination', function(t){ + var pt1 = { + type: "Feature", + geometry: {type: "Point", coordinates: [-75.0, 39.0]} + }; + var dist = 100; + var bear = 180; + + var pt2 = destination(pt1, dist, bear, 'kilometers'); + t.deepEqual(pt2, { geometry: { coordinates: [ -75, 38.10096062273525 ], type: 'Point' }, properties: {}, type: 'Feature' }, 'returns the correct point'); + t.end(); +}); diff --git a/packages/turf-difference/.npmignore b/packages/turf-difference/.npmignore new file mode 100644 index 0000000000..bb3c08c09a --- /dev/null +++ b/packages/turf-difference/.npmignore @@ -0,0 +1,2 @@ +test +coverage diff --git a/packages/turf-difference/README.md b/packages/turf-difference/README.md new file mode 100644 index 0000000000..a08d944892 --- /dev/null +++ b/packages/turf-difference/README.md @@ -0,0 +1,88 @@ +# turf-difference + +[![build status](https://secure.travis-ci.org/Turfjs/turf-difference.png)](http://travis-ci.org/Turfjs/turf-difference) + +[Turf](http://turfjs.org/) difference module + + +### `turf.difference(poly1, poly2)` + +Finds the difference between two Polygon|polygons by clipping the second +polygon from the first. + + +### Parameters + +| parameter | type | description | +| --------- | -------------------- | ------------------------------------------ | +| `poly1` | Feature\.\ | input Polygon feaure | +| `poly2` | Feature\.\ | Polygon feature to difference from `poly1` | + + +### Example + +```js +var poly1 = { + "type": "Feature", + "properties": { + "fill": "#0f0" + }, + "geometry": { + "type": "Polygon", + "coordinates": [[ + [-46.738586, -23.596711], + [-46.738586, -23.458207], + [-46.560058, -23.458207], + [-46.560058, -23.596711], + [-46.738586, -23.596711] + ]] + } +}; +var poly2 = { + "type": "Feature", + "properties": { + "fill": "#00f" + }, + "geometry": { + "type": "Polygon", + "coordinates": [[ + [-46.650009, -23.631314], + [-46.650009, -23.5237], + [-46.509246, -23.5237], + [-46.509246, -23.631314], + [-46.650009, -23.631314] + ]] + } +}; + +var differenced = turf.difference(poly1, poly2); +differenced.properties.fill = '#f00'; + +var polygons = { + "type": "FeatureCollection", + "features": [poly1, poly2] +}; + +//=polygons + +//=differenced +``` + + +**Returns** `Feature.`, a Polygon feature showing the area of `poly1` excluding the area of `poly2` + +## Installation + +Requires [nodejs](http://nodejs.org/). + +```sh +$ npm install turf-difference +``` + +## Tests + +```sh +$ npm test +``` + + diff --git a/packages/turf-difference/bench.js b/packages/turf-difference/bench.js new file mode 100644 index 0000000000..5e186fe8a1 --- /dev/null +++ b/packages/turf-difference/bench.js @@ -0,0 +1,22 @@ +var difference = require('./'); +var Benchmark = require('benchmark'); +var fs = require('fs'); + +var clip = JSON.parse(fs.readFileSync(__dirname+'/test/fixtures/in/differencedHole.geojson')); +var hole = JSON.parse(fs.readFileSync(__dirname+'/test/fixtures/in/differencedFC.geojson')); + +var suite = new Benchmark.Suite('turf-difference'); +suite + .add('turf-difference#clip',function () { + difference(clip[0], clip[1]); + }) + .add('turf-difference#hole',function () { + difference(hole[0], hole[1]); + }) + .on('cycle', function (event) { + console.log(String(event.target)); + }) + .on('complete', function () { + + }) + .run(); \ No newline at end of file diff --git a/packages/turf-difference/index.js b/packages/turf-difference/index.js new file mode 100644 index 0000000000..d93fafbb85 --- /dev/null +++ b/packages/turf-difference/index.js @@ -0,0 +1,95 @@ +// depend on jsts for now https://github.com/bjornharrtell/jsts/blob/master/examples/overlay.html +var jsts = require('jsts'); + +/** + * Finds the difference between two {@link Polygon|polygons} by clipping the second + * polygon from the first. + * + * @name difference + * @category transformation + * @param {Feature} poly1 input Polygon feaure + * @param {Feature} poly2 Polygon feature to difference from `poly1` + * @return {Feature} a Polygon feature showing the area of `poly1` excluding the area of `poly2` + * @example + * var poly1 = { + * "type": "Feature", + * "properties": { + * "fill": "#0f0" + * }, + * "geometry": { + * "type": "Polygon", + * "coordinates": [[ + * [-46.738586, -23.596711], + * [-46.738586, -23.458207], + * [-46.560058, -23.458207], + * [-46.560058, -23.596711], + * [-46.738586, -23.596711] + * ]] + * } + * }; + * var poly2 = { + * "type": "Feature", + * "properties": { + * "fill": "#00f" + * }, + * "geometry": { + * "type": "Polygon", + * "coordinates": [[ + * [-46.650009, -23.631314], + * [-46.650009, -23.5237], + * [-46.509246, -23.5237], + * [-46.509246, -23.631314], + * [-46.650009, -23.631314] + * ]] + * } + * }; + * + * var differenced = turf.difference(poly1, poly2); + * differenced.properties.fill = '#f00'; + * + * var polygons = { + * "type": "FeatureCollection", + * "features": [poly1, poly2] + * }; + * + * //=polygons + * + * //=differenced + */ + +module.exports = function (p1, p2) { + var poly1 = JSON.parse(JSON.stringify(p1)); + var poly2 = JSON.parse(JSON.stringify(p2)); + if (poly1.type !== 'Feature') { + poly1 = { + type: 'Feature', + properties: {}, + geometry: poly1 + }; + } + if (poly2.type !== 'Feature') { + poly2 = { + type: 'Feature', + properties: {}, + geometry: poly2 + }; + } + + var reader = new jsts.io.GeoJSONReader(); + var a = reader.read(JSON.stringify(poly1.geometry)); + var b = reader.read(JSON.stringify(poly2.geometry)); + var differenced = a.difference(b); + + if (differenced.isEmpty()) return undefined; + + var writer = new jsts.io.GeoJSONWriter(); + var geojsonGeometry = writer.write(differenced); + + poly1.geometry = differenced; + + return { + type: 'Feature', + properties: poly1.properties, + geometry: geojsonGeometry + }; +}; diff --git a/packages/turf-difference/package.json b/packages/turf-difference/package.json new file mode 100644 index 0000000000..f560a97a0f --- /dev/null +++ b/packages/turf-difference/package.json @@ -0,0 +1,32 @@ +{ + "name": "turf-difference", + "version": "3.0.5", + "description": "[Turf](http://turfjs.org/) difference module", + "main": "index.js", + "scripts": { + "test": "tape test/*.js" + }, + "repository": { + "type": "git", + "url": "git://github.com/Turfjs/turf-difference.git" + }, + "keywords": [ + "turf", + "gis" + ], + "author": "morganherlocker", + "license": "MIT", + "bugs": { + "url": "https://github.com/Turfjs/turf-difference/issues" + }, + "homepage": "https://github.com/Turfjs/turf-difference", + "devDependencies": { + "benchmark": "^1.0.0", + "glob": "~5.0.5", + "tape": "~4.0.0" + }, + "dependencies": { + "jsts": "1.1.1", + "turf-helpers": "^3.0.5" + } +} diff --git a/packages/turf-difference/test/fixtures/full.geojson b/packages/turf-difference/test/fixtures/full.geojson new file mode 100644 index 0000000000..45424558a9 --- /dev/null +++ b/packages/turf-difference/test/fixtures/full.geojson @@ -0,0 +1,64 @@ +[ + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 101.18408203124999, + 32.95336814579932 + ], + [ + 101.18408203124999, + 35.93354064249312 + ], + [ + 104.952392578125, + 35.93354064249312 + ], + [ + 104.952392578125, + 32.95336814579932 + ], + [ + 101.18408203124999, + 32.95336814579932 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 102.315673828125, + 34.06176136129718 + ], + [ + 102.315673828125, + 35.36217605914678 + ], + [ + 103.60107421874999, + 35.36217605914678 + ], + [ + 103.60107421874999, + 34.06176136129718 + ], + [ + 102.315673828125, + 34.06176136129718 + ] + ] + ] + } + } +] \ No newline at end of file diff --git a/packages/turf-difference/test/fixtures/in/Intersect1.geojson b/packages/turf-difference/test/fixtures/in/Intersect1.geojson new file mode 100644 index 0000000000..e15ae79719 --- /dev/null +++ b/packages/turf-difference/test/fixtures/in/Intersect1.geojson @@ -0,0 +1,80 @@ +[ + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.88571166992188, + 32.887659962078956 + ], + [ + -80.09788513183594, + 32.927436533285565 + ], + [ + -80.15350341796875, + 32.82825010814964 + ], + [ + -80.00312805175781, + 32.69428812316933 + ], + [ + -79.89395141601562, + 32.75551989829049 + ], + [ + -79.88571166992188, + 32.887659962078956 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.92141723632812, + 32.953944317478246 + ], + [ + -79.97428894042969, + 32.83690450361482 + ], + [ + -79.97360229492188, + 32.76071688548088 + ], + [ + -79.93034362792969, + 32.76475877693074 + ], + [ + -79.93789672851562, + 32.74108223150125 + ], + [ + -79.80537414550781, + 32.7231762754146 + ], + [ + -79.81773376464844, + 32.923402043498875 + ], + [ + -79.92141723632812, + 32.953944317478246 + ] + ] + ] + } + } +] \ No newline at end of file diff --git a/packages/turf-difference/test/fixtures/in/Intersect2.geojson b/packages/turf-difference/test/fixtures/in/Intersect2.geojson new file mode 100644 index 0000000000..5d2de0c231 --- /dev/null +++ b/packages/turf-difference/test/fixtures/in/Intersect2.geojson @@ -0,0 +1,79 @@ +[{ + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.92141723632812, + 32.953944317478246 + ], + [ + -79.97428894042969, + 32.83690450361482 + ], + [ + -79.97360229492188, + 32.76071688548088 + ], + [ + -79.93034362792969, + 32.76475877693074 + ], + [ + -79.93789672851562, + 32.74108223150125 + ], + [ + -79.80537414550781, + 32.7231762754146 + ], + [ + -79.81773376464844, + 32.923402043498875 + ], + [ + -79.92141723632812, + 32.953944317478246 + ] + ] + ] + } +}, +{ + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.10543823242188, + 32.94760622243483 + ], + [ + -80.14389038085938, + 32.8149783969858 + ], + [ + -80.07453918457031, + 32.85536439443039 + ], + [ + -79.99351501464844, + 32.84440429734253 + ], + [ + -79.98184204101562, + 32.90495631913751 + ], + [ + -80.10543823242188, + 32.94760622243483 + ] + ] + ] + } +} +] diff --git a/packages/turf-difference/test/fixtures/in/erasedFC.geojson b/packages/turf-difference/test/fixtures/in/erasedFC.geojson new file mode 100644 index 0000000000..00c2350db4 --- /dev/null +++ b/packages/turf-difference/test/fixtures/in/erasedFC.geojson @@ -0,0 +1,104 @@ +[ + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -97.393798828125, + 40.55554790286311 + ], + [ + -97.086181640625, + 37.80544394934274 + ], + [ + -94.801025390625, + 37.56199695314352 + ], + [ + -94.50439453125, + 39.11301365149975 + ], + [ + -94.98779296875, + 41.27780646738183 + ], + [ + -97.042236328125, + 41.27780646738183 + ], + [ + -97.393798828125, + 40.55554790286311 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -99.261474609375, + 38.87392853923629 + ], + [ + -93.438720703125, + 38.659777730712534 + ], + [ + -93.109130859375, + 39.707186656826565 + ], + [ + -93.515625, + 40.36328834091583 + ], + [ + -94.141845703125, + 40.027614437486655 + ], + [ + -95.5810546875, + 39.86758762451019 + ], + [ + -96.35009765625, + 40.212440718286466 + ], + [ + -96.64672851562499, + 39.90973623453719 + ], + [ + -96.910400390625, + 40.22082997283284 + ], + [ + -97.174072265625, + 39.86758762451019 + ], + [ + -98.06396484375, + 40.212440718286466 + ], + [ + -99.525146484375, + 40.04443758460859 + ], + [ + -99.261474609375, + 38.87392853923629 + ] + ] + ] + } + } +] \ No newline at end of file diff --git a/packages/turf-difference/test/fixtures/in/erasedHole.geojson b/packages/turf-difference/test/fixtures/in/erasedHole.geojson new file mode 100644 index 0000000000..6222c63d1e --- /dev/null +++ b/packages/turf-difference/test/fixtures/in/erasedHole.geojson @@ -0,0 +1,72 @@ +[ + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -110.74218749999999, + 42.06560675405716 + ], + [ + -113.75244140624999, + 42.08191667830631 + ], + [ + -114.3896484375, + 38.92522904714054 + ], + [ + -109.77539062499999, + 38.28131307922969 + ], + [ + -108.358154296875, + 41.42625319507272 + ], + [ + -110.74218749999999, + 42.06560675405716 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -110.61035156249999, + 41.343824581185686 + ], + [ + -112.928466796875, + 41.21172151054787 + ], + [ + -113.115234375, + 39.45316112807394 + ], + [ + -111.28051757812499, + 39.605688178320804 + ], + [ + -111.719970703125, + 40.3130432088809 + ], + [ + -110.61035156249999, + 41.343824581185686 + ] + ] + ] + } + } +] diff --git a/packages/turf-difference/test/fixtures/out/Intersect1.geojson b/packages/turf-difference/test/fixtures/out/Intersect1.geojson new file mode 100644 index 0000000000..d14b8587c9 --- /dev/null +++ b/packages/turf-difference/test/fixtures/out/Intersect1.geojson @@ -0,0 +1 @@ +{"type":"Feature","properties":{},"geometry":{"type":"Polygon","coordinates":[[[-79.92322780260464,32.73910022106017],[-80.00312805175781,32.69428812316933],[-80.15350341796875,32.82825010814964],[-80.09788513183594,32.927436533285565],[-79.94623496447946,32.89900638172028],[-79.97428894042969,32.83690450361482],[-79.97360229492188,32.76071688548088],[-79.93034362792969,32.76475877693074],[-79.93789672851562,32.74108223150125],[-79.92322780260464,32.73910022106017]]]}} \ No newline at end of file diff --git a/packages/turf-difference/test/fixtures/out/Intersect2.geojson b/packages/turf-difference/test/fixtures/out/Intersect2.geojson new file mode 100644 index 0000000000..3cf717a0f3 --- /dev/null +++ b/packages/turf-difference/test/fixtures/out/Intersect2.geojson @@ -0,0 +1 @@ +{"type":"Feature","properties":{},"geometry":{"type":"Polygon","coordinates":[[[-79.92141723632812,32.953944317478246],[-79.81773376464844,32.923402043498875],[-79.80537414550781,32.7231762754146],[-79.93789672851562,32.74108223150125],[-79.93034362792969,32.76475877693074],[-79.97360229492188,32.76071688548088],[-79.97428894042969,32.83690450361482],[-79.92141723632812,32.953944317478246]]]}} \ No newline at end of file diff --git a/packages/turf-difference/test/fixtures/out/erasedFC.geojson b/packages/turf-difference/test/fixtures/out/erasedFC.geojson new file mode 100644 index 0000000000..3dd7b28ae0 --- /dev/null +++ b/packages/turf-difference/test/fixtures/out/erasedFC.geojson @@ -0,0 +1 @@ +{"type":"Feature","properties":{},"geometry":{"type":"MultiPolygon","coordinates":[[[[-97.32331517009212,39.925422557169234],[-97.393798828125,40.55554790286311],[-97.042236328125,41.27780646738183],[-94.98779296875,41.27780646738183],[-94.69489339601552,39.96612061645156],[-95.5810546875,39.86758762451019],[-96.35009765625,40.212440718286466],[-96.64672851562499,39.90973623453719],[-96.910400390625,40.22082997283284],[-97.174072265625,39.86758762451019],[-97.32331517009212,39.925422557169234]]],[[[-94.5830267436204,38.70186332589932],[-94.801025390625,37.56199695314352],[-97.086181640625,37.80544394934274],[-97.1972064850395,38.79800833121208],[-94.5830267436204,38.70186332589932]]]]}} \ No newline at end of file diff --git a/packages/turf-difference/test/fixtures/out/erasedHole.geojson b/packages/turf-difference/test/fixtures/out/erasedHole.geojson new file mode 100644 index 0000000000..71315bf3ee --- /dev/null +++ b/packages/turf-difference/test/fixtures/out/erasedHole.geojson @@ -0,0 +1 @@ +{"type":"Feature","properties":{},"geometry":{"type":"Polygon","coordinates":[[[-110.74218749999999,42.06560675405716],[-108.358154296875,41.42625319507272],[-109.77539062499999,38.28131307922969],[-114.3896484375,38.92522904714054],[-113.75244140624999,42.08191667830631],[-110.74218749999999,42.06560675405716]],[[-110.61035156249999,41.343824581185686],[-112.928466796875,41.21172151054787],[-113.115234375,39.45316112807394],[-111.28051757812499,39.605688178320804],[-111.719970703125,40.3130432088809],[-110.61035156249999,41.343824581185686]]]}} \ No newline at end of file diff --git a/packages/turf-difference/test/test.js b/packages/turf-difference/test/test.js new file mode 100644 index 0000000000..772b92f9bd --- /dev/null +++ b/packages/turf-difference/test/test.js @@ -0,0 +1,50 @@ +var difference = require('../'), + test = require('tape'), + glob = require('glob'), + fs = require('fs'); + +var REGEN = process.env.REGEN; + +test('difference', function(t){ + glob.sync(__dirname + '/fixtures/in/*.geojson').forEach(function(input) { + var features = JSON.parse(fs.readFileSync(input)); + var before = JSON.parse(JSON.stringify(features)); + var output = difference(features[0], features[1]); + if (REGEN) fs.writeFileSync(input.replace('/in/', '/out/'), JSON.stringify(output)); + t.deepEqual(before, features, 'does not mutate data'); + t.deepEqual(output, JSON.parse(fs.readFileSync(input.replace('/in/', '/out/'))), input); + }); + t.end(); +}); + +test('difference -- geometries', function(t){ + glob.sync(__dirname + '/fixtures/in/*.geojson').forEach(function(input) { + var fcs = JSON.parse(fs.readFileSync(input)); + var before = JSON.parse(JSON.stringify(fcs)); + var output = difference(fcs[0].geometry, fcs[1].geometry); + if (REGEN) fs.writeFileSync(input.replace('/in/', '/out/'), JSON.stringify(output)); + t.deepEqual(before, fcs, 'does not mutate data'); + t.deepEqual(output, JSON.parse(fs.readFileSync(input.replace('/in/', '/out/'))), input); + }); + t.end(); +}); + +test('difference -- geometries', function(t){ + glob.sync(__dirname + '/fixtures/in/*.geojson').forEach(function(input) { + var fcs = JSON.parse(fs.readFileSync(input)); + var before = JSON.parse(JSON.stringify(fcs)); + var output = difference(fcs[0].geometry, fcs[1].geometry); + if (REGEN) fs.writeFileSync(input.replace('/in/', '/out/'), JSON.stringify(output)); + t.deepEqual(before, fcs, 'does not mutate data'); + t.deepEqual(output, JSON.parse(fs.readFileSync(input.replace('/in/', '/out/'))), input); + }); + t.end(); +}); + +test('difference -- empty set', function(t) { + var polys = JSON.parse(fs.readFileSync(__dirname+'/fixtures/full.geojson')); + var result = difference(polys[1], polys[0]); + t.deepEqual(result, undefined); + t.notOk(result); + t.end(); +}); diff --git a/packages/turf-distance/.npmignore b/packages/turf-distance/.npmignore new file mode 100644 index 0000000000..bb3c08c09a --- /dev/null +++ b/packages/turf-distance/.npmignore @@ -0,0 +1,2 @@ +test +coverage diff --git a/packages/turf-distance/LICENSE b/packages/turf-distance/LICENSE new file mode 100644 index 0000000000..64fb8e99a3 --- /dev/null +++ b/packages/turf-distance/LICENSE @@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) 2014 Morgan Herlocker + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. \ No newline at end of file diff --git a/packages/turf-distance/README.md b/packages/turf-distance/README.md new file mode 100644 index 0000000000..1e6b1852ca --- /dev/null +++ b/packages/turf-distance/README.md @@ -0,0 +1,75 @@ +# turf-distance + +[![build status](https://secure.travis-ci.org/Turfjs/turf-distance.png)](http://travis-ci.org/Turfjs/turf-distance) + +turf distance module + + +### `turf.distance(from, to, [units=kilometers])` + +Calculates the distance between two Point|points in degrees, radians, +miles, or kilometers. This uses the +[Haversine formula](http://en.wikipedia.org/wiki/Haversine_formula) +to account for global curvature. + + +### Parameters + +| parameter | type | description | +| -------------------- | ------------------ | --------------------------------------------------------- | +| `from` | Feature\.\ | origin point | +| `to` | Feature\.\ | destination point | +| `[units=kilometers]` | String | _optional:_ can be degrees, radians, miles, or kilometers | + + +### Example + +```js +var point1 = { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [-75.343, 39.984] + } +}; +var point2 = { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [-75.534, 39.123] + } +}; +var units = "miles"; + +var points = { + "type": "FeatureCollection", + "features": [point1, point2] +}; + +//=points + +var distance = turf.distance(point1, point2, units); + +//=distance +``` + + +**Returns** `Number`, distance between the two points + +## Installation + +Requires [nodejs](http://nodejs.org/). + +```sh +$ npm install turf-distance +``` + +## Tests + +```sh +$ npm test +``` + + diff --git a/packages/turf-distance/bench.js b/packages/turf-distance/bench.js new file mode 100644 index 0000000000..8acf490ea1 --- /dev/null +++ b/packages/turf-distance/bench.js @@ -0,0 +1,25 @@ +var distance = require('./'); +var Benchmark = require('benchmark'); +var fs = require('fs'); + +var pt1 = { + type: "Feature", + geometry: {type: "Point", coordinates: [-75.4, 39.4]} + }; +var pt2 = { + type: "Feature", + geometry: {type: "Point", coordinates: [-75.534, 39.123]} +}; + +var suite = new Benchmark.Suite('turf-distance'); +suite + .add('turf-distance',function () { + distance(pt1, pt2, 'miles'); + }) + .on('cycle', function (event) { + console.log(String(event.target)); + }) + .on('complete', function () { + + }) + .run(); \ No newline at end of file diff --git a/packages/turf-distance/index.js b/packages/turf-distance/index.js new file mode 100644 index 0000000000..ed4e9f5ff9 --- /dev/null +++ b/packages/turf-distance/index.js @@ -0,0 +1,61 @@ +var getCoord = require('turf-invariant').getCoord; +var radiansToDistance = require('turf-helpers').radiansToDistance; +//http://en.wikipedia.org/wiki/Haversine_formula +//http://www.movable-type.co.uk/scripts/latlong.html + +/** + * Calculates the distance between two {@link Point|points} in degrees, radians, + * miles, or kilometers. This uses the + * [Haversine formula](http://en.wikipedia.org/wiki/Haversine_formula) + * to account for global curvature. + * + * @name distance + * @category measurement + * @param {Feature} from origin point + * @param {Feature} to destination point + * @param {String} [units=kilometers] can be degrees, radians, miles, or kilometers + * @return {Number} distance between the two points + * @example + * var point1 = { + * "type": "Feature", + * "properties": {}, + * "geometry": { + * "type": "Point", + * "coordinates": [-75.343, 39.984] + * } + * }; + * var point2 = { + * "type": "Feature", + * "properties": {}, + * "geometry": { + * "type": "Point", + * "coordinates": [-75.534, 39.123] + * } + * }; + * var units = "miles"; + * + * var points = { + * "type": "FeatureCollection", + * "features": [point1, point2] + * }; + * + * //=points + * + * var distance = turf.distance(point1, point2, units); + * + * //=distance + */ +module.exports = function (point1, point2, units) { + var degrees2radians = Math.PI / 180; + var coordinates1 = getCoord(point1); + var coordinates2 = getCoord(point2); + var dLat = degrees2radians * (coordinates2[1] - coordinates1[1]); + var dLon = degrees2radians * (coordinates2[0] - coordinates1[0]); + var lat1 = degrees2radians * coordinates1[1]; + var lat2 = degrees2radians * coordinates2[1]; + + var a = Math.pow(Math.sin(dLat / 2), 2) + + Math.pow(Math.sin(dLon / 2), 2) * Math.cos(lat1) * Math.cos(lat2); + + return radiansToDistance(2 * Math.atan2(Math.sqrt(a), Math.sqrt(1 - a)), units); +}; diff --git a/packages/turf-distance/package.json b/packages/turf-distance/package.json new file mode 100644 index 0000000000..3613cc0e62 --- /dev/null +++ b/packages/turf-distance/package.json @@ -0,0 +1,33 @@ +{ + "name": "turf-distance", + "version": "3.0.5", + "description": "turf distance module", + "main": "index.js", + "scripts": { + "test": "tape test.js" + }, + "repository": { + "type": "git", + "url": "https://github.com/Turfjs/turf-distance.git" + }, + "keywords": [ + "turf", + "distance", + "miles", + "km" + ], + "author": "morganherlocker", + "license": "MIT", + "bugs": { + "url": "https://github.com/Turfjs/turf-distance/issues" + }, + "homepage": "https://github.com/Turfjs/turf-distance", + "devDependencies": { + "benchmark": "^1.0.0", + "tape": "^3.5.0" + }, + "dependencies": { + "turf-invariant": "^3.0.1", + "turf-helpers": "^3.0.5" + } +} diff --git a/packages/turf-distance/test.js b/packages/turf-distance/test.js new file mode 100644 index 0000000000..c2b24a9ea3 --- /dev/null +++ b/packages/turf-distance/test.js @@ -0,0 +1,27 @@ +var test = require('tape'); +var distance = require('./'); + +test('distance', function(t){ + var pt1 = { + type: "Feature", + geometry: {type: "Point", coordinates: [-75.343, 39.984]} + }; + var pt2 = { + type: "Feature", + geometry: {type: "Point", coordinates: [-75.534, 39.123]} + }; + + t.equal(distance(pt1, pt2, 'miles'), 60.37218405837491, 'miles'); + t.equal(distance(pt1, pt2, 'nauticalmiles'), 52.461979624130436, 'miles'); + t.equal(distance(pt1, pt2, 'kilometers'), 97.15957803131901, 'kilometers'); + t.equal(distance(pt1, pt2, 'kilometres'), 97.15957803131901, 'kilometres'); + t.equal(distance(pt1, pt2, 'radians'), 0.015245501024842149, 'radians'); + t.equal(distance(pt1, pt2, 'degrees'), 0.8735028650863799, 'degrees'); + t.equal(distance(pt1, pt2), 97.15957803131901, 'default=kilometers'); + + t.throws(function() { + distance(pt1, pt2, 'blah'); + }, 'unknown option given to units'); + + t.end(); +}); diff --git a/packages/turf-envelope/.npmignore b/packages/turf-envelope/.npmignore new file mode 100644 index 0000000000..bb3c08c09a --- /dev/null +++ b/packages/turf-envelope/.npmignore @@ -0,0 +1,2 @@ +test +coverage diff --git a/packages/turf-envelope/LICENSE b/packages/turf-envelope/LICENSE new file mode 100644 index 0000000000..64fb8e99a3 --- /dev/null +++ b/packages/turf-envelope/LICENSE @@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) 2014 Morgan Herlocker + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. \ No newline at end of file diff --git a/packages/turf-envelope/README.md b/packages/turf-envelope/README.md new file mode 100644 index 0000000000..c15bb13910 --- /dev/null +++ b/packages/turf-envelope/README.md @@ -0,0 +1,85 @@ +# turf-envelope + +[![build status](https://secure.travis-ci.org/Turfjs/turf-envelope.png)](http://travis-ci.org/Turfjs/turf-envelope) + +turf envelope module + + +### `turf.envelope(fc)` + +Takes any number of features and returns a rectangular Polygon that encompasses all vertices. + + +### Parameters + +| parameter | type | description | +| --------- | ----------------- | -------------- | +| `fc` | FeatureCollection | input features | + + +### Example + +```js +var fc = { + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "properties": { + "name": "Location A" + }, + "geometry": { + "type": "Point", + "coordinates": [-75.343, 39.984] + } + }, { + "type": "Feature", + "properties": { + "name": "Location B" + }, + "geometry": { + "type": "Point", + "coordinates": [-75.833, 39.284] + } + }, { + "type": "Feature", + "properties": { + "name": "Location C" + }, + "geometry": { + "type": "Point", + "coordinates": [-75.534, 39.123] + } + } + ] +}; + +var enveloped = turf.envelope(fc); + +var resultFeatures = fc.features.concat(enveloped); +var result = { + "type": "FeatureCollection", + "features": resultFeatures +}; + +//=result +``` + + +**Returns** `Feature.`, a rectangular Polygon feature that encompasses all vertices + +## Installation + +Requires [nodejs](http://nodejs.org/). + +```sh +$ npm install turf-envelope +``` + +## Tests + +```sh +$ npm test +``` + + diff --git a/packages/turf-envelope/bench.js b/packages/turf-envelope/bench.js new file mode 100644 index 0000000000..70304c163c --- /dev/null +++ b/packages/turf-envelope/bench.js @@ -0,0 +1,17 @@ +var envelope = require('./'); +var Benchmark = require('benchmark'); +var fs = require('fs'); + +var fixture = require('./test/fc.js'); +var suite = new Benchmark.Suite('turf-envelope'); +suite + .add('turf-envelope',function () { + envelope(fixture); + }) + .on('cycle', function (event) { + console.log(String(event.target)); + }) + .on('complete', function () { + + }) + .run(); diff --git a/packages/turf-envelope/index.js b/packages/turf-envelope/index.js new file mode 100644 index 0000000000..736a35c410 --- /dev/null +++ b/packages/turf-envelope/index.js @@ -0,0 +1,59 @@ +var bbox = require('turf-bbox'); +var bboxPolygon = require('turf-bbox-polygon'); + +/** + * Takes any number of features and returns a rectangular {@link Polygon} that encompasses all vertices. + * + * @name envelope + * @category measurement + * @param {FeatureCollection} fc input features + * @return {Feature} a rectangular Polygon feature that encompasses all vertices + * @example + * var fc = { + * "type": "FeatureCollection", + * "features": [ + * { + * "type": "Feature", + * "properties": { + * "name": "Location A" + * }, + * "geometry": { + * "type": "Point", + * "coordinates": [-75.343, 39.984] + * } + * }, { + * "type": "Feature", + * "properties": { + * "name": "Location B" + * }, + * "geometry": { + * "type": "Point", + * "coordinates": [-75.833, 39.284] + * } + * }, { + * "type": "Feature", + * "properties": { + * "name": "Location C" + * }, + * "geometry": { + * "type": "Point", + * "coordinates": [-75.534, 39.123] + * } + * } + * ] + * }; + * + * var enveloped = turf.envelope(fc); + * + * var resultFeatures = fc.features.concat(enveloped); + * var result = { + * "type": "FeatureCollection", + * "features": resultFeatures + * }; + * + * //=result + */ + +module.exports = function (features) { + return bboxPolygon(bbox(features)); +}; diff --git a/packages/turf-envelope/package.json b/packages/turf-envelope/package.json new file mode 100644 index 0000000000..f1a4b8a140 --- /dev/null +++ b/packages/turf-envelope/package.json @@ -0,0 +1,34 @@ +{ + "name": "turf-envelope", + "version": "3.0.5", + "description": "turf envelope module", + "main": "index.js", + "scripts": { + "test": "node test.js" + }, + "repository": { + "type": "git", + "url": "https://github.com/Turfjs/turf-envelope.git" + }, + "keywords": [ + "turf", + "geojson", + "envelope", + "polygon", + "extent" + ], + "author": "morganherlocker", + "license": "MIT", + "bugs": { + "url": "https://github.com/Turfjs/turf-envelope/issues" + }, + "homepage": "https://github.com/Turfjs/turf-envelope", + "devDependencies": { + "benchmark": "^1.0.0", + "tape": "^3.5.0" + }, + "dependencies": { + "turf-bbox-polygon": "^3.0.5", + "turf-bbox": "^3.0.1" + } +} diff --git a/packages/turf-envelope/test.js b/packages/turf-envelope/test.js new file mode 100644 index 0000000000..66a30b242c --- /dev/null +++ b/packages/turf-envelope/test.js @@ -0,0 +1,13 @@ +var test = require('tape'); +var envelope = require('./'); +var fc = require('./test/geojson/fc.json'); + +test('envelope', function(t){ + var enveloped = envelope(fc); + t.ok(enveloped, 'should return a polygon that represents the bbox around a feature or feature collection'); + t.equal(enveloped.geometry.type, 'Polygon'); + t.deepEqual(enveloped.geometry.coordinates, + [ [ [ 20, -10 ], [ 130, -10 ], [ 130, 4 ], [ 20, 4 ], [ 20, -10 ] ] ] , + 'positions are correct'); + t.end(); +}) diff --git a/packages/turf-envelope/test/geojson/fc.json b/packages/turf-envelope/test/geojson/fc.json new file mode 100644 index 0000000000..c188ff28b5 --- /dev/null +++ b/packages/turf-envelope/test/geojson/fc.json @@ -0,0 +1,39 @@ +{ + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [102.0, 0.5] + }, + "properties": { + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [102.0, -10.0], [103.0, 1.0], [104.0, 0.0], [130.0, 4.0] + ] + }, + "properties": { + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [20.0, 0.0], [101.0, 0.0], [101.0, 1.0], [100.0, 1.0], + [100.0, 0.0] + ] + ] + }, + "properties": { + } + } + ] +} diff --git a/packages/turf-explode/.npmignore b/packages/turf-explode/.npmignore new file mode 100644 index 0000000000..bb3c08c09a --- /dev/null +++ b/packages/turf-explode/.npmignore @@ -0,0 +1,2 @@ +test +coverage diff --git a/packages/turf-explode/LICENSE b/packages/turf-explode/LICENSE new file mode 100644 index 0000000000..64fb8e99a3 --- /dev/null +++ b/packages/turf-explode/LICENSE @@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) 2014 Morgan Herlocker + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. \ No newline at end of file diff --git a/packages/turf-explode/README.md b/packages/turf-explode/README.md new file mode 100644 index 0000000000..f132de62f1 --- /dev/null +++ b/packages/turf-explode/README.md @@ -0,0 +1,65 @@ +# turf-explode + +[![build status](https://secure.travis-ci.org/Turfjs/turf-explode.png)](http://travis-ci.org/Turfjs/turf-explode) + +turf explode module + + +### `turf.explode(input)` + +Takes a feature or set of features and returns all positions as +Point|points. + + +### Parameters + +| parameter | type | description | +| --------- | -------------------------- | -------------- | +| `input` | Feature\,FeatureCollection | input features | + + +### Example + +```js +var poly = { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [[ + [177.434692, -17.77517], + [177.402076, -17.779093], + [177.38079, -17.803937], + [177.40242, -17.826164], + [177.438468, -17.824857], + [177.454948, -17.796746], + [177.434692, -17.77517] + ]] + } +}; + +var points = turf.explode(poly); + +//=poly + +//=points +``` + + +**Returns** `FeatureCollection.`, points representing the exploded input features + +## Installation + +Requires [nodejs](http://nodejs.org/). + +```sh +$ npm install turf-explode +``` + +## Tests + +```sh +$ npm test +``` + + diff --git a/packages/turf-explode/bench.js b/packages/turf-explode/bench.js new file mode 100644 index 0000000000..c6c7673979 --- /dev/null +++ b/packages/turf-explode/bench.js @@ -0,0 +1,26 @@ +global.explode = require('./'); +var Benchmark = require('benchmark'); +var fs = require('fs'); +var polygon = require('turf-helpers').polygon; +var point = require('turf-helpers').point; +var featurecollection = require('turf-helpers').featureCollection; + +global.poly = polygon([[[0,0], [0,10], [10,10] , [10,0]]]); +var p1 = point(0,0), + p2 = point(0,10), + p3 = point(10,10), + p4 = point(10,0); +var fc = featurecollection([p1,p2,p3,p4]); + +var suite = new Benchmark.Suite('turf-explode'); +suite + .add('turf-explode',function () { + global.explode(global.poly); + }) + .on('cycle', function (event) { + console.log(String(event.target)); + }) + .on('complete', function () { + + }) + .run(); diff --git a/packages/turf-explode/index.js b/packages/turf-explode/index.js new file mode 100644 index 0000000000..336b691c04 --- /dev/null +++ b/packages/turf-explode/index.js @@ -0,0 +1,44 @@ +var featureCollection = require('turf-helpers').featureCollection; +var each = require('turf-meta').coordEach; +var point = require('turf-helpers').point; + +/** + * Takes a feature or set of features and returns all positions as + * {@link Point|points}. + * + * @name explode + * @category misc + * @param {(Feature|FeatureCollection)} input input features + * @return {FeatureCollection} points representing the exploded input features + * @throws {Error} if it encounters an unknown geometry type + * @example + * var poly = { + * "type": "Feature", + * "properties": {}, + * "geometry": { + * "type": "Polygon", + * "coordinates": [[ + * [177.434692, -17.77517], + * [177.402076, -17.779093], + * [177.38079, -17.803937], + * [177.40242, -17.826164], + * [177.438468, -17.824857], + * [177.454948, -17.796746], + * [177.434692, -17.77517] + * ]] + * } + * }; + * + * var points = turf.explode(poly); + * + * //=poly + * + * //=points + */ +module.exports = function (layer) { + var points = []; + each(layer, function (coord) { + points.push(point(coord)); + }); + return featureCollection(points); +}; diff --git a/packages/turf-explode/package.json b/packages/turf-explode/package.json new file mode 100644 index 0000000000..c441a9322c --- /dev/null +++ b/packages/turf-explode/package.json @@ -0,0 +1,35 @@ +{ + "name": "turf-explode", + "version": "3.0.5", + "description": "turf explode module", + "main": "index.js", + "scripts": { + "test": "node test.js" + }, + "repository": { + "type": "git", + "url": "https://github.com/Turfjs/turf-explode.git" + }, + "keywords": [ + "turf", + "geojson", + "geospatial", + "coordinates" + ], + "author": "morganherlocker", + "license": "MIT", + "bugs": { + "url": "https://github.com/Turfjs/turf-explode/issues" + }, + "homepage": "https://github.com/Turfjs/turf-explode", + "devDependencies": { + "benchmark": "^1.0.0", + "tape": "^3.5.0", + "geojson-fixtures": "^0.6.1", + "turf-helpers": "^3.0.5" + }, + "dependencies": { + "turf-meta": "^3.0.1", + "turf-helpers": "^3.0.5" + } +} diff --git a/packages/turf-explode/test.js b/packages/turf-explode/test.js new file mode 100644 index 0000000000..a99652fe46 --- /dev/null +++ b/packages/turf-explode/test.js @@ -0,0 +1,2 @@ +var geojsonFixtures = require('geojson-fixtures/helper'); +geojsonFixtures(require('tape'), 'all', require('./'), __dirname + '/test'); diff --git a/packages/turf-explode/test/geometrycollection-0-0.output.json b/packages/turf-explode/test/geometrycollection-0-0.output.json new file mode 100644 index 0000000000..5acec8ccbe --- /dev/null +++ b/packages/turf-explode/test/geometrycollection-0-0.output.json @@ -0,0 +1,38 @@ +{ + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 100, + 0 + ] + }, + "properties": {} + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 101, + 0 + ] + }, + "properties": {} + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 102, + 1 + ] + }, + "properties": {} + } + ] +} \ No newline at end of file diff --git a/packages/turf-explode/test/geometrycollection-xyz-0-6.output.json b/packages/turf-explode/test/geometrycollection-xyz-0-6.output.json new file mode 100644 index 0000000000..366c5db71b --- /dev/null +++ b/packages/turf-explode/test/geometrycollection-xyz-0-6.output.json @@ -0,0 +1,41 @@ +{ + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 100, + 0, + 3 + ] + }, + "properties": {} + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 101, + 0, + 5 + ] + }, + "properties": {} + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 102, + 1, + 8 + ] + }, + "properties": {} + } + ] +} \ No newline at end of file diff --git a/packages/turf-explode/test/multilinestring-0-5.output.json b/packages/turf-explode/test/multilinestring-0-5.output.json new file mode 100644 index 0000000000..5628e411a7 --- /dev/null +++ b/packages/turf-explode/test/multilinestring-0-5.output.json @@ -0,0 +1,49 @@ +{ + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 100, + 0 + ] + }, + "properties": {} + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 101, + 1 + ] + }, + "properties": {} + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 102, + 2 + ] + }, + "properties": {} + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 103, + 3 + ] + }, + "properties": {} + } + ] +} \ No newline at end of file diff --git a/packages/turf-explode/test/multilinestring-xyz-0-11.output.json b/packages/turf-explode/test/multilinestring-xyz-0-11.output.json new file mode 100644 index 0000000000..d211f685cf --- /dev/null +++ b/packages/turf-explode/test/multilinestring-xyz-0-11.output.json @@ -0,0 +1,53 @@ +{ + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 100, + 0, + 5.2 + ] + }, + "properties": {} + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 101, + 1, + 8.1 + ] + }, + "properties": {} + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 102, + 2, + 2.3 + ] + }, + "properties": {} + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 103, + 3, + 7.4 + ] + }, + "properties": {} + } + ] +} \ No newline at end of file diff --git a/packages/turf-explode/test/multipoint-0-3.output.json b/packages/turf-explode/test/multipoint-0-3.output.json new file mode 100644 index 0000000000..f010fb6dcc --- /dev/null +++ b/packages/turf-explode/test/multipoint-0-3.output.json @@ -0,0 +1,27 @@ +{ + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 100, + 0 + ] + }, + "properties": {} + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 101, + 1 + ] + }, + "properties": {} + } + ] +} \ No newline at end of file diff --git a/packages/turf-explode/test/multipoint-xyz-0-9.output.json b/packages/turf-explode/test/multipoint-xyz-0-9.output.json new file mode 100644 index 0000000000..e706fbe5db --- /dev/null +++ b/packages/turf-explode/test/multipoint-xyz-0-9.output.json @@ -0,0 +1,29 @@ +{ + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 100, + 0, + 1 + ] + }, + "properties": {} + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 101, + 1, + 2 + ] + }, + "properties": {} + } + ] +} \ No newline at end of file diff --git a/packages/turf-explode/test/multipolygon-0-4.output.json b/packages/turf-explode/test/multipolygon-0-4.output.json new file mode 100644 index 0000000000..aa73be72e4 --- /dev/null +++ b/packages/turf-explode/test/multipolygon-0-4.output.json @@ -0,0 +1,170 @@ +{ + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 102, + 2 + ] + }, + "properties": {} + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 103, + 2 + ] + }, + "properties": {} + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 103, + 3 + ] + }, + "properties": {} + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 102, + 3 + ] + }, + "properties": {} + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 102, + 2 + ] + }, + "properties": {} + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 100, + 0 + ] + }, + "properties": {} + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 101, + 0 + ] + }, + "properties": {} + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 101, + 1 + ] + }, + "properties": {} + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 100, + 1 + ] + }, + "properties": {} + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 100, + 0 + ] + }, + "properties": {} + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 100.2, + 0.2 + ] + }, + "properties": {} + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 100.8, + 0.2 + ] + }, + "properties": {} + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 100.8, + 0.8 + ] + }, + "properties": {} + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 100.2, + 0.8 + ] + }, + "properties": {} + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 100.2, + 0.2 + ] + }, + "properties": {} + } + ] +} \ No newline at end of file diff --git a/packages/turf-explode/test/multipolygon-xyz-0-10.output.json b/packages/turf-explode/test/multipolygon-xyz-0-10.output.json new file mode 100644 index 0000000000..1087e85490 --- /dev/null +++ b/packages/turf-explode/test/multipolygon-xyz-0-10.output.json @@ -0,0 +1,185 @@ +{ + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 102, + 2, + 1 + ] + }, + "properties": {} + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 103, + 2, + 1 + ] + }, + "properties": {} + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 103, + 3, + 1 + ] + }, + "properties": {} + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 102, + 3, + 1 + ] + }, + "properties": {} + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 102, + 2, + 1 + ] + }, + "properties": {} + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 100, + 0, + 2 + ] + }, + "properties": {} + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 101, + 0, + 2 + ] + }, + "properties": {} + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 101, + 1, + 2 + ] + }, + "properties": {} + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 100, + 1, + 2 + ] + }, + "properties": {} + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 100, + 0, + 2 + ] + }, + "properties": {} + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 100.2, + 0.2, + 3 + ] + }, + "properties": {} + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 100.8, + 0.2, + 3 + ] + }, + "properties": {} + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 100.8, + 0.8, + 3 + ] + }, + "properties": {} + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 100.2, + 0.8, + 3 + ] + }, + "properties": {} + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 100.2, + 0.2, + 3 + ] + }, + "properties": {} + } + ] +} \ No newline at end of file diff --git a/packages/turf-explode/test/one-1-0.output.json b/packages/turf-explode/test/one-1-0.output.json new file mode 100644 index 0000000000..f1a8c25c51 --- /dev/null +++ b/packages/turf-explode/test/one-1-0.output.json @@ -0,0 +1,115 @@ +{ + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 102, + 0.5 + ] + }, + "properties": {} + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 102, + 0 + ] + }, + "properties": {} + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 103, + 1 + ] + }, + "properties": {} + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 104, + 0 + ] + }, + "properties": {} + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 105, + 1 + ] + }, + "properties": {} + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 100, + 0 + ] + }, + "properties": {} + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 101, + 0 + ] + }, + "properties": {} + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 101, + 1 + ] + }, + "properties": {} + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 100, + 1 + ] + }, + "properties": {} + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 100, + 0 + ] + }, + "properties": {} + } + ] +} \ No newline at end of file diff --git a/packages/turf-explode/test/one-2-0.output.json b/packages/turf-explode/test/one-2-0.output.json new file mode 100644 index 0000000000..8ba79a3db4 --- /dev/null +++ b/packages/turf-explode/test/one-2-0.output.json @@ -0,0 +1,60 @@ +{ + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 100, + 0 + ] + }, + "properties": {} + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 101, + 0 + ] + }, + "properties": {} + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 101, + 1 + ] + }, + "properties": {} + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 100, + 1 + ] + }, + "properties": {} + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 100, + 0 + ] + }, + "properties": {} + } + ] +} \ No newline at end of file diff --git a/packages/turf-explode/test/point-0-2.output.json b/packages/turf-explode/test/point-0-2.output.json new file mode 100644 index 0000000000..c828e4ad65 --- /dev/null +++ b/packages/turf-explode/test/point-0-2.output.json @@ -0,0 +1,16 @@ +{ + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 100, + 0 + ] + }, + "properties": {} + } + ] +} \ No newline at end of file diff --git a/packages/turf-explode/test/point-xyz-0-8.output.json b/packages/turf-explode/test/point-xyz-0-8.output.json new file mode 100644 index 0000000000..b7394ff53b --- /dev/null +++ b/packages/turf-explode/test/point-xyz-0-8.output.json @@ -0,0 +1,17 @@ +{ + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 100, + 0, + 1 + ] + }, + "properties": {} + } + ] +} \ No newline at end of file diff --git a/packages/turf-explode/test/polygon-0-1.output.json b/packages/turf-explode/test/polygon-0-1.output.json new file mode 100644 index 0000000000..8ba79a3db4 --- /dev/null +++ b/packages/turf-explode/test/polygon-0-1.output.json @@ -0,0 +1,60 @@ +{ + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 100, + 0 + ] + }, + "properties": {} + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 101, + 0 + ] + }, + "properties": {} + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 101, + 1 + ] + }, + "properties": {} + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 100, + 1 + ] + }, + "properties": {} + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 100, + 0 + ] + }, + "properties": {} + } + ] +} \ No newline at end of file diff --git a/packages/turf-explode/test/polygon-xyz-0-7.output.json b/packages/turf-explode/test/polygon-xyz-0-7.output.json new file mode 100644 index 0000000000..445b4e41b7 --- /dev/null +++ b/packages/turf-explode/test/polygon-xyz-0-7.output.json @@ -0,0 +1,64 @@ +{ + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 100, + 0, + 1 + ] + }, + "properties": {} + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 101, + 0 + ] + }, + "properties": {} + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 101, + 1, + 1 + ] + }, + "properties": {} + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 100, + 1, + 1 + ] + }, + "properties": {} + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 100, + 0, + 1 + ] + }, + "properties": {} + } + ] +} \ No newline at end of file diff --git a/packages/turf-flip/.npmignore b/packages/turf-flip/.npmignore new file mode 100644 index 0000000000..bb3c08c09a --- /dev/null +++ b/packages/turf-flip/.npmignore @@ -0,0 +1,2 @@ +test +coverage diff --git a/packages/turf-flip/LICENSE b/packages/turf-flip/LICENSE new file mode 100644 index 0000000000..64fb8e99a3 --- /dev/null +++ b/packages/turf-flip/LICENSE @@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) 2014 Morgan Herlocker + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. \ No newline at end of file diff --git a/packages/turf-flip/README.md b/packages/turf-flip/README.md new file mode 100644 index 0000000000..b7f4a0b115 --- /dev/null +++ b/packages/turf-flip/README.md @@ -0,0 +1,57 @@ +# turf-flip + +[![build status](https://secure.travis-ci.org/Turfjs/turf-flip.png)](http://travis-ci.org/Turfjs/turf-flip) + +turf flip module + + +### `turf.flip(input)` + +Takes input features and flips all of their coordinates +from `[x, y]` to `[y, x]`. + + +### Parameters + +| parameter | type | description | +| --------- | -------------------------- | -------------- | +| `input` | Feature\,FeatureCollection | input features | + + +### Example + +```js +var serbia = { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [20.566406, 43.421008] + } +}; + +//=serbia + +var saudiArabia = turf.flip(serbia); + +//=saudiArabia +``` + + +**Returns** `Feature,FeatureCollection`, a feature or set of features of the same type as `input` with flipped coordinates + +## Installation + +Requires [nodejs](http://nodejs.org/). + +```sh +$ npm install turf-flip +``` + +## Tests + +```sh +$ npm test +``` + + diff --git a/packages/turf-flip/bench.js b/packages/turf-flip/bench.js new file mode 100644 index 0000000000..00cb159095 --- /dev/null +++ b/packages/turf-flip/bench.js @@ -0,0 +1,36 @@ +var flip = require('./'); +var Benchmark = require('benchmark'); +var fs = require('fs'); +var point = require('turf-helpers').point; +var linestring = require('turf-helpers').lineString; +var polygon = require('turf-helpers').polygon; +var featurecollection = require('turf-helpers').featureCollection; + +var pt = point(1,0); +var line = linestring([[1,0], [1,0]]); +var poly = polygon([[[1,0], [1,0], [1,2]], [[.2,.2], [.3,.3],[.1,.2]]]); +var pt1 = point(1,0); +var pt2 = point(1,0); +var fc = featurecollection([pt1, pt2]); + +var suite = new Benchmark.Suite('turf-flip'); +suite + .add('turf-flip#Point',function () { + flip(pt); + }) + .add('turf-flip#LineString',function () { + flip(line); + }) + .add('turf-flip#Polygon',function () { + flip(poly); + }) + .add('turf-flip#FeatureCollection',function () { + flip(fc); + }) + .on('cycle', function (event) { + console.log(String(event.target)); + }) + .on('complete', function () { + + }) + .run(); \ No newline at end of file diff --git a/packages/turf-flip/index.js b/packages/turf-flip/index.js new file mode 100644 index 0000000000..942286dd4a --- /dev/null +++ b/packages/turf-flip/index.js @@ -0,0 +1,37 @@ +var coordEach = require('turf-meta').coordEach; + +/** + * Takes input features and flips all of their coordinates + * from `[x, y]` to `[y, x]`. + * + * @name flip + * @category misc + * @param {(Feature|FeatureCollection)} input input features + * @returns {(Feature|FeatureCollection)} a feature or set of features of the same type as `input` with flipped coordinates + * @example + * var serbia = { + * "type": "Feature", + * "properties": {}, + * "geometry": { + * "type": "Point", + * "coordinates": [20.566406, 43.421008] + * } + * }; + * + * //=serbia + * + * var saudiArabia = turf.flip(serbia); + * + * //=saudiArabia + */ +module.exports = function flip(input) { + // ensure that we don't modify features in-place and changes to the + // output do not change the previous feature, including changes to nested + // properties. + input = JSON.parse(JSON.stringify(input)); + + coordEach(input, function (coord) { + coord.reverse(); + }); + return input; +}; diff --git a/packages/turf-flip/package.json b/packages/turf-flip/package.json new file mode 100644 index 0000000000..bca496a667 --- /dev/null +++ b/packages/turf-flip/package.json @@ -0,0 +1,33 @@ +{ + "name": "turf-flip", + "version": "3.0.5", + "description": "turf flip module", + "main": "index.js", + "scripts": { + "test": "tape test.js" + }, + "repository": { + "type": "git", + "url": "https://github.com/Turfjs/turf-flip.git" + }, + "keywords": [ + "turf", + "geojson", + "coordinate", + "flip" + ], + "author": "morganherlocker", + "license": "MIT", + "bugs": { + "url": "https://github.com/Turfjs/turf-flip/issues" + }, + "homepage": "https://github.com/Turfjs/turf-flip", + "devDependencies": { + "benchmark": "^1.0.0", + "tape": "^3.5.0", + "turf-helpers": "^3.0.5" + }, + "dependencies": { + "turf-meta": "^3.0.1" + } +} diff --git a/packages/turf-flip/test.js b/packages/turf-flip/test.js new file mode 100644 index 0000000000..7b9b26971d --- /dev/null +++ b/packages/turf-flip/test.js @@ -0,0 +1,63 @@ +var test = require('tape'); +var flip = require('./'); +var point = require('turf-helpers').point; +var linestring = require('turf-helpers').lineString; +var polygon = require('turf-helpers').polygon; +var featurecollection = require('turf-helpers').featureCollection; + +test('flip', function (t) { + // Point Geometry + var pt = point([1, 0]); + var flippedPt = flip(pt.geometry); + t.equal(flippedPt.coordinates[0], 0); + t.equal(flippedPt.coordinates[1], 1); + + t.equal(pt.geometry.coordinates[0], 1, 'does not mutate original'); + t.equal(pt.geometry.coordinates[1], 0, 'does not mutate original'); + + // Point + var pt2 = point([1, 0]); + var flippedPt2 = flip(pt2); + + t.ok(flippedPt2, 'should flip a point coordinate'); + t.equal(flippedPt2.geometry.coordinates[0], 0); + t.equal(flippedPt2.geometry.coordinates[1], 1); + + // Line + var line = linestring([[1, 0], [1, 0]]); + var flippedLine = flip(line); + + t.ok(flippedLine, 'should flip the x and ys of a linestring'); + t.equal(flippedLine.geometry.coordinates[0][0], 0); + t.equal(flippedLine.geometry.coordinates[0][1], 1); + t.equal(flippedLine.geometry.coordinates[1][0], 0); + t.equal(flippedLine.geometry.coordinates[1][1], 1); + + // Polygon + var poly = polygon([[[1, 0], [1, 0], [1, 2], [1, 0]], [[.2, .2], [.3, .3], [.1, .2], [1, 0], [.2, .2]]]); + var flippedPoly = flip(poly); + + t.ok(flippedPoly, 'should flip the x and ys of a polygon'); + t.equal(flippedPoly.geometry.coordinates[0][0][0], 0); + t.equal(flippedPoly.geometry.coordinates[0][0][1], 1); + t.equal(flippedPoly.geometry.coordinates[0][1][0], 0); + t.equal(flippedPoly.geometry.coordinates[0][1][1], 1); + t.equal(flippedPoly.geometry.coordinates[0][2][0], 2); + t.equal(flippedPoly.geometry.coordinates[0][2][1], 1); + t.equal(flippedPoly.geometry.coordinates[1][2][0], 0.2); + t.equal(flippedPoly.geometry.coordinates[1][2][1], 0.1); + + // FeatureCollection + var pt3 = point([1, 0]); + var pt4 = point([1, 0]); + var fc = featurecollection([pt3, pt4]); + var flippedFC = flip(fc); + + t.ok(flippedFC, 'should flip the x and ys of a featurecollection'); + t.equal(flippedFC.features[0].geometry.coordinates[0], 0); + t.equal(flippedFC.features[0].geometry.coordinates[1], 1); + t.equal(flippedFC.features[1].geometry.coordinates[0], 0); + t.equal(flippedFC.features[1].geometry.coordinates[1], 1); + + t.end(); +}); diff --git a/packages/turf-helpers/.npmignore b/packages/turf-helpers/.npmignore new file mode 100644 index 0000000000..bb3c08c09a --- /dev/null +++ b/packages/turf-helpers/.npmignore @@ -0,0 +1,2 @@ +test +coverage diff --git a/packages/turf-helpers/CHANGELOG.md b/packages/turf-helpers/CHANGELOG.md new file mode 100644 index 0000000000..f00ee88adb --- /dev/null +++ b/packages/turf-helpers/CHANGELOG.md @@ -0,0 +1,3 @@ +# 2.0.0 + +* Only accept `[x, y]` arrays, not as arguments diff --git a/packages/turf-helpers/LICENSE b/packages/turf-helpers/LICENSE new file mode 100644 index 0000000000..64fb8e99a3 --- /dev/null +++ b/packages/turf-helpers/LICENSE @@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) 2014 Morgan Herlocker + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. \ No newline at end of file diff --git a/packages/turf-helpers/README.md b/packages/turf-helpers/README.md new file mode 100644 index 0000000000..2d0af2c569 --- /dev/null +++ b/packages/turf-helpers/README.md @@ -0,0 +1,46 @@ +# turf-point + +[![build status](https://secure.travis-ci.org/Turfjs/turf-point.png)](http://travis-ci.org/Turfjs/turf-point) + +turf point module + + +### `turf.point(coordinates, properties)` + +Takes coordinates and properties (optional) and returns a new Point feature. + + +### Parameters + +| parameter | type | description | +| ------------- | ----------------- | -------------------------------------------------------------- | +| `coordinates` | Array\.\ | longitude, latitude position (each in decimal degrees) | +| `properties` | Object | _optional:_ an Object that is used as the Feature's properties | + + +### Example + +```js +var pt1 = turf.point([-75.343, 39.984]); + +//=pt1 +``` + + +**Returns** `Feature.`, a Point feature + +## Installation + +Requires [nodejs](http://nodejs.org/). + +```sh +$ npm install turf-point +``` + +## Tests + +```sh +$ npm test +``` + + diff --git a/packages/turf-helpers/bench.js b/packages/turf-helpers/bench.js new file mode 100644 index 0000000000..2ec29b173e --- /dev/null +++ b/packages/turf-helpers/bench.js @@ -0,0 +1,19 @@ +var point = require('./'); +var Benchmark = require('benchmark'); +var fs = require('fs'); + +var suite = new Benchmark.Suite('turf-point'); +suite + .add('turf-point',function () { + point(5, 10, {name: 'test point'}); + }) + .add('turf-point#array',function () { + point(5, 10, {name: 'test point'}); + }) + .on('cycle', function (event) { + console.log(String(event.target)); + }) + .on('complete', function () { + + }) + .run(); \ No newline at end of file diff --git a/packages/turf-helpers/index.js b/packages/turf-helpers/index.js new file mode 100644 index 0000000000..9d7361bdca --- /dev/null +++ b/packages/turf-helpers/index.js @@ -0,0 +1,331 @@ +/** + * Wraps a GeoJSON {@link Geometry} in a GeoJSON {@link Feature}. + * + * @name feature + * @category helper + * @param {Geometry} geometry input geometry + * @returns {FeatureCollection} a FeatureCollection of input features + * @example + * var geometry = { + * "type": "Point", + * "coordinates": [ + * 67.5, + * 32.84267363195431 + * ] + * } + * + * var feature = turf.feature(geometry); + * + * //=feature + */ +function feature(geometry, properties) { + return { + type: 'Feature', + properties: properties || {}, + geometry: geometry + }; +} + +module.exports.feature = feature; + +/** + * Takes coordinates and properties (optional) and returns a new {@link Point} feature. + * + * @name point + * @category helper + * @param {Number[]} coordinates longitude, latitude position (each in decimal degrees) + * @param {Object=} properties an Object that is used as the {@link Feature}'s + * properties + * @returns {Feature} a Point feature + * @example + * var pt1 = turf.point([-75.343, 39.984]); + * + * //=pt1 + */ +module.exports.point = function (coordinates, properties) { + if (!Array.isArray(coordinates)) throw new Error('Coordinates must be an array'); + if (coordinates.length < 2) throw new Error('Coordinates must be at least 2 numbers long'); + return feature({ + type: 'Point', + coordinates: coordinates.slice() + }, properties); +}; + +/** + * Takes an array of LinearRings and optionally an {@link Object} with properties and returns a {@link Polygon} feature. + * + * @name polygon + * @category helper + * @param {Array>} rings an array of LinearRings + * @param {Object=} properties a properties object + * @returns {Feature} a Polygon feature + * @throws {Error} throw an error if a LinearRing of the polygon has too few positions + * or if a LinearRing of the Polygon does not have matching Positions at the + * beginning & end. + * @example + * var polygon = turf.polygon([[ + * [-2.275543, 53.464547], + * [-2.275543, 53.489271], + * [-2.215118, 53.489271], + * [-2.215118, 53.464547], + * [-2.275543, 53.464547] + * ]], { name: 'poly1', population: 400}); + * + * //=polygon + */ +module.exports.polygon = function (coordinates, properties) { + + if (!coordinates) throw new Error('No coordinates passed'); + + for (var i = 0; i < coordinates.length; i++) { + var ring = coordinates[i]; + for (var j = 0; j < ring[ring.length - 1].length; j++) { + if (ring.length < 4) { + throw new Error('Each LinearRing of a Polygon must have 4 or more Positions.'); + } + if (ring[ring.length - 1][j] !== ring[0][j]) { + throw new Error('First and last Position are not equivalent.'); + } + } + } + + return feature({ + type: 'Polygon', + coordinates: coordinates + }, properties); +}; + +/** + * Creates a {@link LineString} based on a + * coordinate array. Properties can be added optionally. + * + * @name lineString + * @category helper + * @param {Array>} coordinates an array of Positions + * @param {Object=} properties an Object of key-value pairs to add as properties + * @returns {Feature} a LineString feature + * @throws {Error} if no coordinates are passed + * @example + * var linestring1 = turf.lineString([ + * [-21.964416, 64.148203], + * [-21.956176, 64.141316], + * [-21.93901, 64.135924], + * [-21.927337, 64.136673] + * ]); + * var linestring2 = turf.lineString([ + * [-21.929054, 64.127985], + * [-21.912918, 64.134726], + * [-21.916007, 64.141016], + * [-21.930084, 64.14446] + * ], {name: 'line 1', distance: 145}); + * + * //=linestring1 + * + * //=linestring2 + */ +module.exports.lineString = function (coordinates, properties) { + if (!coordinates) { + throw new Error('No coordinates passed'); + } + return feature({ + type: 'LineString', + coordinates: coordinates + }, properties); +}; + +/** + * Takes one or more {@link Feature|Features} and creates a {@link FeatureCollection}. + * + * @name featureCollection + * @category helper + * @param {Feature[]} features input features + * @returns {FeatureCollection} a FeatureCollection of input features + * @example + * var features = [ + * turf.point([-75.343, 39.984], {name: 'Location A'}), + * turf.point([-75.833, 39.284], {name: 'Location B'}), + * turf.point([-75.534, 39.123], {name: 'Location C'}) + * ]; + * + * var fc = turf.featureCollection(features); + * + * //=fc + */ +module.exports.featureCollection = function (features) { + return { + type: 'FeatureCollection', + features: features + }; +}; + +/** + * Creates a {@link Feature} based on a + * coordinate array. Properties can be added optionally. + * + * @name multiLineString + * @category helper + * @param {Array>} coordinates an array of Positions + * @param {Object=} properties an Object of key-value pairs to add as properties + * @returns {Feature} a MultiLineString feature + * @throws {Error} if no coordinates are passed + * @example + * var multiLine = turf.multilinestring([[0,0],[10,10]]); + * + * //=multiLine + * + */ +module.exports.multiLineString = function (coordinates, properties) { + if (!coordinates) { + throw new Error('No coordinates passed'); + } + return feature({ + type: 'MultiLineString', + coordinates: coordinates + }, properties); +}; + +/** + * Creates a {@link Feature} based on a + * coordinate array. Properties can be added optionally. + * + * @name multiPoint + * @category helper + * @param {Array>} coordinates an array of Positions + * @param {Object=} properties an Object of key-value pairs to add as properties + * @returns {Feature} a MultiPoint feature + * @throws {Error} if no coordinates are passed + * @example + * var multiPt = turf.multipoint([[0,0],[10,10]]); + * + * //=multiPt + * + */ +module.exports.multiPoint = function (coordinates, properties) { + if (!coordinates) { + throw new Error('No coordinates passed'); + } + return feature({ + type: 'MultiPoint', + coordinates: coordinates + }, properties); +}; + + +/** + * Creates a {@link Feature} based on a + * coordinate array. Properties can be added optionally. + * + * @name multiPolygon + * @category helper + * @param {Array>} coordinates an array of Positions + * @param {Object=} properties an Object of key-value pairs to add as properties + * @returns {Feature} a multipolygon feature + * @throws {Error} if no coordinates are passed + * @example + * var multiPoly = turf.multipolygon([[0,0],[10,10]]); + * + * //=multiPoly + * + */ +module.exports.multiPolygon = function (coordinates, properties) { + if (!coordinates) { + throw new Error('No coordinates passed'); + } + return feature({ + type: 'MultiPolygon', + coordinates: coordinates + }, properties); +}; + +/** + * Creates a {@link Feature} based on a + * coordinate array. Properties can be added optionally. + * + * @name geometryCollection + * @category helper + * @param {Array<{Geometry}>} geometries an array of GeoJSON Geometries + * @param {Object=} properties an Object of key-value pairs to add as properties + * @returns {Feature} a geometrycollection feature + * @example + * var pt = { + * "type": "Point", + * "coordinates": [100, 0] + * }; + * var line = { + * "type": "LineString", + * "coordinates": [ [101, 0], [102, 1] ] + * }; + * var collection = turf.geometrycollection([[0,0],[10,10]]); + * + * //=collection + */ +module.exports.geometryCollection = function (geometries, properties) { + return feature({ + type: 'GeometryCollection', + geometries: geometries + }, properties); +}; + +var factors = { + miles: 3960, + nauticalmiles: 3441.145, + degrees: 57.2957795, + radians: 1, + inches: 250905600, + yards: 6969600, + meters: 6373000, + metres: 6373000, + kilometers: 6373, + kilometres: 6373 +}; + +/* + * Convert a distance measurement from radians to a more friendly unit. + * + * @name radiansToDistance + * @param {number} distance in radians across the sphere + * @param {string=kilometers} units: one of miles, nauticalmiles, degrees, radians, + * inches, yards, metres, meters, kilometres, kilometers. + * @returns {number} distance + */ +module.exports.radiansToDistance = function (radians, units) { + var factor = factors[units || 'kilometers']; + if (factor === undefined) { + throw new Error('Invalid unit'); + } + return radians * factor; +}; + +/* + * Convert a distance measurement from a real-world unit into radians + * + * @name distanceToRadians + * @param {number} distance in real units + * @param {string=kilometers} units: one of miles, nauticalmiles, degrees, radians, + * inches, yards, metres, meters, kilometres, kilometers. + * @returns {number} radians + */ +module.exports.distanceToRadians = function (distance, units) { + var factor = factors[units || 'kilometers']; + if (factor === undefined) { + throw new Error('Invalid unit'); + } + return distance / factor; +}; + +/* + * Convert a distance measurement from a real-world unit into degrees + * + * @name distanceToRadians + * @param {number} distance in real units + * @param {string=kilometers} units: one of miles, nauticalmiles, degrees, radians, + * inches, yards, metres, meters, kilometres, kilometers. + * @returns {number} degrees + */ +module.exports.distanceToDegrees = function (distance, units) { + var factor = factors[units || 'kilometers']; + if (factor === undefined) { + throw new Error('Invalid unit'); + } + return (distance / factor) * 57.2958; +}; diff --git a/packages/turf-helpers/package.json b/packages/turf-helpers/package.json new file mode 100644 index 0000000000..ecbe14ce20 --- /dev/null +++ b/packages/turf-helpers/package.json @@ -0,0 +1,30 @@ +{ + "name": "turf-helpers", + "version": "3.0.5", + "description": "turf geometries", + "main": "index.js", + "scripts": { + "test": "tape test.js" + }, + "repository": { + "type": "git", + "url": "https://github.com/Turfjs/turf-point.git" + }, + "keywords": [ + "geo", + "point", + "turf", + "geojson" + ], + "author": "morganherlocker", + "license": "MIT", + "bugs": { + "url": "https://github.com/Turfjs/turf-point/issues" + }, + "homepage": "https://github.com/Turfjs/turf-point", + "devDependencies": { + "benchmark": "^1.0.0", + "tape": "^3.5.0" + }, + "dependencies": {} +} diff --git a/packages/turf-helpers/test.js b/packages/turf-helpers/test.js new file mode 100644 index 0000000000..ee43d190a9 --- /dev/null +++ b/packages/turf-helpers/test.js @@ -0,0 +1,305 @@ +var test = require('tape'); +var geometries = require('./'); +var radiansToDistance = require('./').radiansToDistance; + +var point = geometries.point; +var polygon = geometries.polygon; +var lineString = geometries.lineString; +var featureCollection = geometries.featureCollection; +var multiLineString = geometries.multiLineString; +var multiPoint = geometries.multiPoint; +var feature = geometries.feature; +var multipolygon = geometries.multiPolygon; +var geometrycollection = geometries.geometryCollection; + +test('point', function(t){ + var ptArray = point([5, 10], {name: 'test point'}); + + t.ok(ptArray); + t.equal(ptArray.geometry.coordinates[0], 5); + t.equal(ptArray.geometry.coordinates[1], 10); + t.equal(ptArray.properties.name, 'test point'); + + t.throws(function() { + point('hey', 'invalid'); + }, 'numbers required'); + + var noProps = point([0, 0]); + t.deepEqual(noProps.properties, {}, 'no props becomes {}'); + + t.end(); +}); + +test('polygon', function(t){ + var poly = polygon([[[5, 10], [20, 40], [40, 0], [5, 10]]] , {name: 'test polygon'}); + t.ok(poly); + t.equal(poly.geometry.coordinates[0][0][0], 5); + t.equal(poly.geometry.coordinates[0][1][0], 20); + t.equal(poly.geometry.coordinates[0][2][0], 40); + t.equal(poly.properties.name, 'test polygon'); + t.equal(poly.geometry.type, 'Polygon'); + t.throws(function() { + t.equal(polygon([[[20.0,0.0],[101.0,0.0],[101.0,1.0],[100.0,1.0],[100.0,0.0]]]).message); + }, /First and last Position are not equivalent/, 'invalid ring - not wrapped'); + t.throws(function() { + t.equal(polygon([[[20.0,0.0],[101.0,0.0]]]).message); + }, /Each LinearRing of a Polygon must have 4 or more Positions/, 'invalid ring - too few positions'); + var noProperties = polygon([[[5, 10], [20, 40], [40, 0], [5, 10]]]); + t.deepEqual(noProperties.properties, {}); + t.end(); +}); + +test('lineString', function(t){ + var line = lineString([[5, 10], [20, 40]], {name: 'test line'}); + t.ok(line, 'creates a linestring'); + t.equal(line.geometry.coordinates[0][0], 5); + t.equal(line.geometry.coordinates[1][0], 20); + t.equal(line.properties.name, 'test line'); + t.throws(function() { + var line = lineString(); + }, /No coordinates passed/, 'error on no coordinates'); + var noProps = lineString([[5, 10], [20, 40]]); + t.deepEqual(noProps.properties, {}, 'no properties case'); + t.end(); +}); + +test('featureCollection', function(t){ + t.plan(7); + var p1 = point([0,0], {name: 'first point'}), + p2 = point([0,10]), + p3 = point([10,10]), + p4 = point([10,0]); + var fc = featureCollection([p1,p2,p3,p4]); + t.ok(fc); + t.equal(fc.features.length, 4); + t.equal(fc.features[0].properties.name, 'first point'); + t.equal(fc.type, 'FeatureCollection'); + t.equal(fc.features[1].geometry.type, 'Point'); + t.equal(fc.features[1].geometry.coordinates[0], 0); + t.equal(fc.features[1].geometry.coordinates[1], 10); +}); + +test('multilinestring', function(t){ + t.deepEqual(multiLineString([[[0,0],[10,10]], [[5,0],[15,8]]]), { + type: "Feature", + properties: {}, + geometry: { + type: "MultiLineString", + coordinates: [[[0,0],[10,10]], [[5,0],[15,8]]] + } + }, 'takes coordinates'); + + t.deepEqual(multiLineString([[[0,0],[10,10]], [[5,0],[15,8]]], {test: 23}), { + type: "Feature", + properties: { + test: 23 + }, + geometry: { + type: "MultiLineString", + coordinates: [[[0,0],[10,10]], [[5,0],[15,8]]] + } + }, 'takes properties'); + + + t.throws(function(err){ + multiLineString(); + }, 'throws error with no coordinates'); + + t.end(); +}); + + +test('multiPoint', function(t){ + t.deepEqual(multiPoint([[0,0],[10,10]]), { + type: "Feature", + properties: {}, + geometry: { + type: "MultiPoint", + coordinates: [ + [0,0], + [10,10] + ] + } + }, 'takes coordinates'); + + t.deepEqual(multiPoint([[0,0],[10,10]], {test: 23}), { + type: "Feature", + properties: { + test: 23 + }, + geometry: { + type: "MultiPoint", + coordinates: [ + [0,0], + [10,10] + ] + } + }, 'takes properties'); + + + t.throws(function(err){ + multiPoint(); + }, 'throws error with no coordinates'); + + t.end(); +}); + +test('feature', function(t){ + var pt = { + type: "Point", + coordinates: [ + 67.5, + 32.84267363195431 + ] + }; + var line = { + type: "LineString", + coordinates: [ + [ + 82.96875, + 58.99531118795094 + ], + [ + 72.7734375, + 55.57834467218206 + ], + [ + 84.0234375, + 55.57834467218206 + ] + ] + }; + var polygon = { + type: "Polygon", + coordinates: [ + [ + [ + 85.78125, + -3.513421045640032 + ], + [ + 85.78125, + 13.581920900545844 + ], + [ + 92.46093749999999, + 13.581920900545844 + ], + [ + 92.46093749999999, + -3.513421045640032 + ], + [ + 85.78125, + -3.513421045640032 + ] + ] + ] + }; + + t.equal(feature(pt).type, 'Feature'); + t.equal(feature(line).type, 'Feature'); + t.equal(feature(polygon).type, 'Feature'); + t.deepEqual(feature(pt), + { + type: "Feature", + properties: {}, + geometry: { + type: "Point", + coordinates: [ + 67.5, + 32.84267363195431 + ] + } + }); + + t.end(); +}); + + test('multipolygon', function(t){ + t.deepEqual(multipolygon([[[[94,57],[78,49],[94,43],[94,57]]],[[[93,19],[63,7],[79,0],[93,19]]]]), { + type: 'Feature', + properties: {}, + geometry: { + type: 'MultiPolygon', + coordinates: [[[[94,57],[78,49],[94,43],[94,57]]],[[[93,19],[63,7],[79,0],[93,19]]]] + } + }, 'takes coordinates'); + + t.deepEqual(multipolygon([[[[94,57],[78,49],[94,43],[94,57]]],[[[93,19],[63,7],[79,0],[93,19]]]], {test: 23}), { + type: 'Feature', + properties: { + test: 23 + }, + geometry: { + type: 'MultiPolygon', + coordinates: [[[[94,57],[78,49],[94,43],[94,57]]],[[[93,19],[63,7],[79,0],[93,19]]]] + } + }, 'takes properties'); + + + t.throws(function(err){ + multipolygon(); + }, 'throws error with no coordinates'); + + t.end(); + }); + +test('geometrycollection', function(t){ + var pt = { + type: "Point", + coordinates: [100, 0] + }; + var line = { + type: "LineString", + coordinates: [ [101, 0], [102, 1] ] + }; + var gc = geometrycollection([pt, line]); + + t.deepEqual(gc, { + type: "Feature", + properties: {}, + geometry: { + type: "GeometryCollection", + geometries: [ + { + type: "Point", + coordinates: [100, 0] + }, + { + type: "LineString", + coordinates: [ [101, 0], [102, 1] ] + } + ] + } + }, 'creates a GeometryCollection'); + + var gcWithProps = geometrycollection([pt, line], {a: 23}); + t.deepEqual(gcWithProps, { + type: "Feature", + properties: {a: 23}, + geometry: { + type: "GeometryCollection", + geometries: [ + { + type: "Point", + coordinates: [100, 0] + }, + { + type: "LineString", + coordinates: [ [101, 0], [102, 1] ] + } + ] + } + }, 'creates a GeometryCollection with properties'); + + t.end(); +}); + +test('radiansToDistance', function(t){ + t.equal(radiansToDistance(1, 'radians'), 1); + t.equal(radiansToDistance(1, 'kilometers'), 6373); + t.equal(radiansToDistance(1, 'miles'), 3960); + + t.end(); +}); diff --git a/packages/turf-hex-grid/.npmignore b/packages/turf-hex-grid/.npmignore new file mode 100644 index 0000000000..bb3c08c09a --- /dev/null +++ b/packages/turf-hex-grid/.npmignore @@ -0,0 +1,2 @@ +test +coverage diff --git a/packages/turf-hex-grid/LICENSE b/packages/turf-hex-grid/LICENSE new file mode 100644 index 0000000000..64fb8e99a3 --- /dev/null +++ b/packages/turf-hex-grid/LICENSE @@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) 2014 Morgan Herlocker + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. \ No newline at end of file diff --git a/packages/turf-hex-grid/README.md b/packages/turf-hex-grid/README.md new file mode 100644 index 0000000000..fba40db2a8 --- /dev/null +++ b/packages/turf-hex-grid/README.md @@ -0,0 +1,54 @@ +# turf-hex-grid + +[![build status](https://secure.travis-ci.org/Turfjs/turf-hex-grid.png)](http://travis-ci.org/Turfjs/turf-hex-grid) + + + + +### `turf.hex-grid(bbox, cellWidth, units, triangles)` + +Takes a bounding box and a cell size in degrees and returns a FeatureCollection of flat-topped +hexagons (Polygon features) aligned in an "odd-q" vertical grid as +described in [Hexagonal Grids](http://www.redblobgames.com/grids/hexagons/). + + +### Parameters + +| parameter | type | description | +| ----------- | ----------------- | ------------------------------------------------------- | +| `bbox` | Array\.\ | bounding box in [minX, minY, maxX, maxY] order | +| `cellWidth` | Number | width of cell in specified units | +| `units` | String | used in calculating cellWidth ('miles' or 'kilometers') | +| `triangles` | Boolean | generate hexgrid triangles instead of hexagons | + + +### Example + +```js +var bbox = [-96,31,-84,40]; +var cellWidth = 50; +var units = 'miles'; + +var hexgrid = turf.hexGrid(bbox, cellWidth, units); + +//=hexgrid +``` + + +**Returns** `FeatureCollection.`, a hexagonal grid + +## Installation + +Requires [nodejs](http://nodejs.org/). + +```sh +$ npm install turf-hex-grid +``` + +## Tests + +```sh +$ npm test +``` + + diff --git a/packages/turf-hex-grid/bench.js b/packages/turf-hex-grid/bench.js new file mode 100644 index 0000000000..e29940f66a --- /dev/null +++ b/packages/turf-hex-grid/bench.js @@ -0,0 +1,33 @@ +var grid = require('./'); +var Benchmark = require('benchmark'); +var fs = require('fs'); + +var bbox = [ + -96.6357421875, + 31.12819929911196, + -84.9462890625, + 40.58058466412764 + ]; + +var highres = grid(bbox, 100, 'miles').features.length; +var midres = grid(bbox, 10, 'miles').features.length; +var lowres = grid(bbox, 1, 'miles').features.length; + +var suite = new Benchmark.Suite('turf-hex-grid'); +suite + .add('turf-hex-grid -- '+highres+' cells',function () { + grid(bbox, 100, 'miles'); + }) + .add('turf-hex-grid -- '+midres+' cells',function () { + grid(bbox, 10, 'miles'); + }) + .add('turf-hex-grid -- '+lowres+' cells',function () { + grid(bbox, 1, 'miles'); + }) + .on('cycle', function (event) { + console.log(String(event.target)); + }) + .on('complete', function () { + + }) + .run(); \ No newline at end of file diff --git a/packages/turf-hex-grid/index.js b/packages/turf-hex-grid/index.js new file mode 100644 index 0000000000..ea6594f678 --- /dev/null +++ b/packages/turf-hex-grid/index.js @@ -0,0 +1,130 @@ +var point = require('turf-helpers').point; +var polygon = require('turf-helpers').polygon; +var distance = require('turf-distance'); +var featurecollection = require('turf-helpers').featureCollection; + +//Precompute cosines and sines of angles used in hexagon creation +// for performance gain +var cosines = []; +var sines = []; +for (var i = 0; i < 6; i++) { + var angle = 2 * Math.PI / 6 * i; + cosines.push(Math.cos(angle)); + sines.push(Math.sin(angle)); +} + +/** + * Takes a bounding box and a cell size in degrees and returns a {@link FeatureCollection} of flat-topped + * hexagons ({@link Polygon} features) aligned in an "odd-q" vertical grid as + * described in [Hexagonal Grids](http://www.redblobgames.com/grids/hexagons/). + * + * @name hexGrid + * @category interpolation + * @param {Array} bbox bounding box in [minX, minY, maxX, maxY] order + * @param {Number} cellWidth width of cell in specified units + * @param {String} units used in calculating cellWidth ('miles' or 'kilometers') + * @return {FeatureCollection} a hexagonal grid + * @example + * var bbox = [-96,31,-84,40]; + * var cellWidth = 50; + * var units = 'miles'; + * + * var hexgrid = turf.hexGrid(bbox, cellWidth, units); + * + * //=hexgrid + */ +module.exports = function hexGrid(bbox, cell, units, triangles) { + var xFraction = cell / (distance(point([bbox[0], bbox[1]]), point([bbox[2], bbox[1]]), units)); + var cellWidth = xFraction * (bbox[2] - bbox[0]); + var yFraction = cell / (distance(point([bbox[0], bbox[1]]), point([bbox[0], bbox[3]]), units)); + var cellHeight = yFraction * (bbox[3] - bbox[1]); + var radius = cellWidth / 2; + + var hex_width = radius * 2; + var hex_height = Math.sqrt(3) / 2 * cellHeight; + + var box_width = bbox[2] - bbox[0]; + var box_height = bbox[3] - bbox[1]; + + var x_interval = 3 / 4 * hex_width; + var y_interval = hex_height; + + var x_span = box_width / (hex_width - radius / 2); + var x_count = Math.ceil(x_span); + if (Math.round(x_span) === x_count) { + x_count++; + } + + var x_adjust = ((x_count * x_interval - radius / 2) - box_width) / 2 - radius / 2; + + var y_count = Math.ceil(box_height / hex_height); + + var y_adjust = (box_height - y_count * hex_height) / 2; + + var hasOffsetY = y_count * hex_height - box_height > hex_height / 2; + if (hasOffsetY) { + y_adjust -= hex_height / 4; + } + + var fc = featurecollection([]); + for (var x = 0; x < x_count; x++) { + for (var y = 0; y <= y_count; y++) { + + var isOdd = x % 2 === 1; + if (y === 0 && isOdd) { + continue; + } + + if (y === 0 && hasOffsetY) { + continue; + } + + var center_x = x * x_interval + bbox[0] - x_adjust; + var center_y = y * y_interval + bbox[1] + y_adjust; + + if (isOdd) { + center_y -= hex_height / 2; + } + if (triangles) { + fc.features.push.apply(fc.features, hexTriangles([center_x, center_y], cellWidth / 2, cellHeight / 2)); + } else { + fc.features.push(hexagon([center_x, center_y], cellWidth / 2, cellHeight / 2)); + } + } + } + + return fc; +}; + +//Center should be [x, y] +function hexagon(center, rx, ry) { + var vertices = []; + for (var i = 0; i < 6; i++) { + var x = center[0] + rx * cosines[i]; + var y = center[1] + ry * sines[i]; + vertices.push([x, y]); + } + //first and last vertex must be the same + vertices.push(vertices[0]); + return polygon([vertices]); +} + +//Center should be [x, y] +function hexTriangles(center, rx, ry) { + var triangles = []; + for (var i = 0; i < 6; i++) { + var vertices = []; + vertices.push(center); + vertices.push([ + center[0] + rx * cosines[i], + center[1] + ry * sines[i] + ]); + vertices.push([ + center[0] + rx * cosines[(i + 1) % 6], + center[1] + ry * sines[(i + 1) % 6] + ]); + vertices.push(center); + triangles.push(polygon([vertices])); + } + return triangles; +} diff --git a/packages/turf-hex-grid/package.json b/packages/turf-hex-grid/package.json new file mode 100644 index 0000000000..2f69025002 --- /dev/null +++ b/packages/turf-hex-grid/package.json @@ -0,0 +1,45 @@ +{ + "name": "turf-hex-grid", + "version": "3.0.5", + "description": "", + "main": "index.js", + "scripts": { + "test": "tape test.js", + "doc": "dox -r < index.js | doxme --readme > README.md" + }, + "repository": { + "type": "git", + "url": "git://github.com/Turfjs/turf-hex-grid.git" + }, + "keywords": [ + "turf", + "grid", + "hexgrid", + "hexbin", + "points", + "geojson" + ], + "author": "morganherlocker", + "contributors": [ + "jseppi", + "jvail", + "lyzidiamond", + "tmcw" + ], + "license": "MIT", + "bugs": { + "url": "https://github.com/Turfjs/turf-hex-grid/issues" + }, + "homepage": "https://github.com/Turfjs/turf-hex-grid", + "devDependencies": { + "benchmark": "^1.0.0", + "tape": "^3.5.0", + "turf-bbox-polygon": "^3.0.5", + "turf-explode": "^3.0.5", + "turf-inside": "^3.0.5" + }, + "dependencies": { + "turf-distance": "^3.0.5", + "turf-helpers": "^3.0.5" + } +} diff --git a/packages/turf-hex-grid/test.js b/packages/turf-hex-grid/test.js new file mode 100644 index 0000000000..3e0bc5e258 --- /dev/null +++ b/packages/turf-hex-grid/test.js @@ -0,0 +1,139 @@ +var test = require('tape'); +var grid = require('./'); +var fs = require('fs'); +var bboxPolygon = require('turf-bbox-polygon'); + +test('hex-grid', function (t) { + var bbox1 = [ + -96.6357421875, + 31.12819929911196, + -84.9462890625, + 40.58058466412764 + ]; + var bbox2 = [ + -81.650390625, + 24.926294766395593, + -79.8486328125, + 26.43122806450644 + ]; + var bbox3 = [ + -77.3876953125, + 38.71980474264239, + -76.9482421875, + 39.027718840211605 + ]; + var bbox4 = [ + 63.6328125, + 11.867350911459308, + 75.234375, + 47.754097979680026 + ]; + + var grid1 = grid(bbox1, 50, 'miles'); + var grid2 = grid(bbox2, 5, 'miles'); + var grid3 = grid(bbox3, 2, 'miles'); + var grid4 = grid(bbox4, 50, 'kilometers'); + + t.ok(grid1.features.length, '50mi grid'); + t.ok(grid2.features.length, '5mi grid'); + t.ok(grid3.features.length, '2mi grid'); + t.ok(grid4.features.length, '50km grid'); + + t.equal( + grid( + [-96.6357421875,31.12819929911196,-84.9462890625,40.58058466412764], + 100, 'miles') + .features.length, + 85 + ); + + grid1.features.push(referencePoly(bbox1)); + grid2.features.push(referencePoly(bbox2)); + grid3.features.push(referencePoly(bbox3)); + grid4.features.push(referencePoly(bbox4)); + + if (process.env.REGEN) { + fs.writeFileSync(__dirname+'/test/out/grid1.geojson', JSON.stringify(grid1,null,2)); + fs.writeFileSync(__dirname+'/test/out/grid2.geojson', JSON.stringify(grid2,null,2)); + fs.writeFileSync(__dirname+'/test/out/grid3.geojson', JSON.stringify(grid3,null,2)); + fs.writeFileSync(__dirname+'/test/out/grid4.geojson', JSON.stringify(grid4,null,2)); + } + t.deepEqual(JSON.parse(fs.readFileSync(__dirname+'/test/out/grid1.geojson')), grid1, 'grid is correct'); + t.deepEqual(JSON.parse(fs.readFileSync(__dirname+'/test/out/grid2.geojson')), grid2, 'grid is correct'); + t.deepEqual(JSON.parse(fs.readFileSync(__dirname+'/test/out/grid3.geojson')), grid3, 'grid is correct'); + t.deepEqual(JSON.parse(fs.readFileSync(__dirname+'/test/out/grid4.geojson')), grid4, 'grid is correct'); + + t.end(); +}); + +test('hex-tri-grid', function (t) { + var bbox1 = [ + -96.6357421875, + 31.12819929911196, + -84.9462890625, + 40.58058466412764 + ]; + var bbox2 = [ + -81.650390625, + 24.926294766395593, + -79.8486328125, + 26.43122806450644 + ]; + var bbox3 = [ + -77.3876953125, + 38.71980474264239, + -76.9482421875, + 39.027718840211605 + ]; + var bbox4 = [ + 63.6328125, + 11.867350911459308, + 75.234375, + 47.754097979680026 + ]; + + var grid1 = grid(bbox1, 50, 'miles', true); + var grid2 = grid(bbox2, 5, 'miles', true); + var grid3 = grid(bbox3, 2, 'miles', true); + var grid4 = grid(bbox4, 50, 'kilometers', true); + + t.ok(grid1.features.length, '50mi grid'); + t.ok(grid2.features.length, '5mi grid'); + t.ok(grid3.features.length, '2mi grid'); + t.ok(grid4.features.length, '50km grid'); + + t.equal( + grid( + [-96.6357421875,31.12819929911196,-84.9462890625,40.58058466412764], + 100, 'miles') + .features.length, + 85 + ); + + grid1.features.push(referencePoly(bbox1)); + grid2.features.push(referencePoly(bbox2)); + grid3.features.push(referencePoly(bbox3)); + grid4.features.push(referencePoly(bbox4)); + + if (process.env.REGEN) { + fs.writeFileSync(__dirname+'/test/out/trigrid1.geojson', JSON.stringify(grid1,null,2)); + fs.writeFileSync(__dirname+'/test/out/trigrid2.geojson', JSON.stringify(grid2,null,2)); + fs.writeFileSync(__dirname+'/test/out/trigrid3.geojson', JSON.stringify(grid3,null,2)); + fs.writeFileSync(__dirname+'/test/out/trigrid4.geojson', JSON.stringify(grid4,null,2)); + } + t.deepEqual(JSON.parse(fs.readFileSync(__dirname+'/test/out/trigrid1.geojson')), grid1, 'grid is correct'); + t.deepEqual(JSON.parse(fs.readFileSync(__dirname+'/test/out/trigrid2.geojson')), grid2, 'grid is correct'); + t.deepEqual(JSON.parse(fs.readFileSync(__dirname+'/test/out/trigrid3.geojson')), grid3, 'grid is correct'); + t.deepEqual(JSON.parse(fs.readFileSync(__dirname+'/test/out/trigrid4.geojson')), grid4, 'grid is correct'); + + t.end(); +}); + +function referencePoly (bbox) { + var poly = bboxPolygon(bbox); + poly.properties = { + 'fill-opacity': 0, + 'stroke': '#0ff' + }; + return poly; +} diff --git a/packages/turf-hex-grid/test/out/grid1.geojson b/packages/turf-hex-grid/test/out/grid1.geojson new file mode 100644 index 0000000000..788bf688d3 --- /dev/null +++ b/packages/turf-hex-grid/test/out/grid1.geojson @@ -0,0 +1,11895 @@ +{ + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.07545785340386, + 31.312193695474356 + ], + [ + -96.28683554254002, + 31.625448749691284 + ], + [ + -96.70959092081233, + 31.625448749691284 + ], + [ + -96.92096860994849, + 31.312193695474356 + ], + [ + -96.70959092081233, + 30.99893864125743 + ], + [ + -96.28683554254002, + 30.99893864125743 + ], + [ + -96.07545785340386, + 31.312193695474356 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.07545785340386, + 31.938703803908208 + ], + [ + -96.28683554254002, + 32.251958858125136 + ], + [ + -96.70959092081233, + 32.251958858125136 + ], + [ + -96.92096860994849, + 31.938703803908208 + ], + [ + -96.70959092081233, + 31.62544874969128 + ], + [ + -96.28683554254002, + 31.62544874969128 + ], + [ + -96.07545785340386, + 31.938703803908208 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.07545785340386, + 32.56521391234206 + ], + [ + -96.28683554254002, + 32.878468966558984 + ], + [ + -96.70959092081233, + 32.878468966558984 + ], + [ + -96.92096860994849, + 32.56521391234206 + ], + [ + -96.70959092081233, + 32.251958858125136 + ], + [ + -96.28683554254002, + 32.251958858125136 + ], + [ + -96.07545785340386, + 32.56521391234206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.07545785340386, + 33.191724020775915 + ], + [ + -96.28683554254002, + 33.50497907499284 + ], + [ + -96.70959092081233, + 33.50497907499284 + ], + [ + -96.92096860994849, + 33.191724020775915 + ], + [ + -96.70959092081233, + 32.87846896655899 + ], + [ + -96.28683554254002, + 32.87846896655899 + ], + [ + -96.07545785340386, + 33.191724020775915 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.07545785340386, + 33.81823412920977 + ], + [ + -96.28683554254002, + 34.131489183426694 + ], + [ + -96.70959092081233, + 34.131489183426694 + ], + [ + -96.92096860994849, + 33.81823412920977 + ], + [ + -96.70959092081233, + 33.504979074992846 + ], + [ + -96.28683554254002, + 33.504979074992846 + ], + [ + -96.07545785340386, + 33.81823412920977 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.07545785340386, + 34.444744237643626 + ], + [ + -96.28683554254002, + 34.75799929186055 + ], + [ + -96.70959092081233, + 34.75799929186055 + ], + [ + -96.92096860994849, + 34.444744237643626 + ], + [ + -96.70959092081233, + 34.1314891834267 + ], + [ + -96.28683554254002, + 34.1314891834267 + ], + [ + -96.07545785340386, + 34.444744237643626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.07545785340386, + 35.07125434607748 + ], + [ + -96.28683554254002, + 35.384509400294405 + ], + [ + -96.70959092081233, + 35.384509400294405 + ], + [ + -96.92096860994849, + 35.07125434607748 + ], + [ + -96.70959092081233, + 34.75799929186056 + ], + [ + -96.28683554254002, + 34.75799929186056 + ], + [ + -96.07545785340386, + 35.07125434607748 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.07545785340386, + 35.697764454511336 + ], + [ + -96.28683554254002, + 36.01101950872826 + ], + [ + -96.70959092081233, + 36.01101950872826 + ], + [ + -96.92096860994849, + 35.697764454511336 + ], + [ + -96.70959092081233, + 35.38450940029441 + ], + [ + -96.28683554254002, + 35.38450940029441 + ], + [ + -96.07545785340386, + 35.697764454511336 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.07545785340386, + 36.324274562945185 + ], + [ + -96.28683554254002, + 36.63752961716211 + ], + [ + -96.70959092081233, + 36.63752961716211 + ], + [ + -96.92096860994849, + 36.324274562945185 + ], + [ + -96.70959092081233, + 36.01101950872826 + ], + [ + -96.28683554254002, + 36.01101950872826 + ], + [ + -96.07545785340386, + 36.324274562945185 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.07545785340386, + 36.95078467137904 + ], + [ + -96.28683554254002, + 37.264039725595964 + ], + [ + -96.70959092081233, + 37.264039725595964 + ], + [ + -96.92096860994849, + 36.95078467137904 + ], + [ + -96.70959092081233, + 36.637529617162116 + ], + [ + -96.28683554254002, + 36.637529617162116 + ], + [ + -96.07545785340386, + 36.95078467137904 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.07545785340386, + 37.577294779812895 + ], + [ + -96.28683554254002, + 37.89054983402982 + ], + [ + -96.70959092081233, + 37.89054983402982 + ], + [ + -96.92096860994849, + 37.577294779812895 + ], + [ + -96.70959092081233, + 37.26403972559597 + ], + [ + -96.28683554254002, + 37.26403972559597 + ], + [ + -96.07545785340386, + 37.577294779812895 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.07545785340386, + 38.20380488824675 + ], + [ + -96.28683554254002, + 38.517059942463675 + ], + [ + -96.70959092081233, + 38.517059942463675 + ], + [ + -96.92096860994849, + 38.20380488824675 + ], + [ + -96.70959092081233, + 37.89054983402983 + ], + [ + -96.28683554254002, + 37.89054983402983 + ], + [ + -96.07545785340386, + 38.20380488824675 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.07545785340386, + 38.830314996680606 + ], + [ + -96.28683554254002, + 39.14357005089753 + ], + [ + -96.70959092081233, + 39.14357005089753 + ], + [ + -96.92096860994849, + 38.830314996680606 + ], + [ + -96.70959092081233, + 38.51705994246368 + ], + [ + -96.28683554254002, + 38.51705994246368 + ], + [ + -96.07545785340386, + 38.830314996680606 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.07545785340386, + 39.45682510511446 + ], + [ + -96.28683554254002, + 39.770080159331386 + ], + [ + -96.70959092081233, + 39.770080159331386 + ], + [ + -96.92096860994849, + 39.45682510511446 + ], + [ + -96.70959092081233, + 39.14357005089754 + ], + [ + -96.28683554254002, + 39.14357005089754 + ], + [ + -96.07545785340386, + 39.45682510511446 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.07545785340386, + 40.08333521354832 + ], + [ + -96.28683554254002, + 40.39659026776524 + ], + [ + -96.70959092081233, + 40.39659026776524 + ], + [ + -96.92096860994849, + 40.08333521354832 + ], + [ + -96.70959092081233, + 39.77008015933139 + ], + [ + -96.28683554254002, + 39.77008015933139 + ], + [ + -96.07545785340386, + 40.08333521354832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.07545785340386, + 40.70984532198217 + ], + [ + -96.28683554254002, + 41.023100376199096 + ], + [ + -96.70959092081233, + 41.023100376199096 + ], + [ + -96.92096860994849, + 40.70984532198217 + ], + [ + -96.70959092081233, + 40.39659026776525 + ], + [ + -96.28683554254002, + 40.39659026776525 + ], + [ + -96.07545785340386, + 40.70984532198217 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.44132478599539, + 30.99893864125743 + ], + [ + -95.65270247513155, + 31.312193695474356 + ], + [ + -96.07545785340386, + 31.312193695474356 + ], + [ + -96.28683554254002, + 30.99893864125743 + ], + [ + -96.07545785340386, + 30.6856835870405 + ], + [ + -95.65270247513155, + 30.6856835870405 + ], + [ + -95.44132478599539, + 30.99893864125743 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.44132478599539, + 31.62544874969128 + ], + [ + -95.65270247513155, + 31.938703803908208 + ], + [ + -96.07545785340386, + 31.938703803908208 + ], + [ + -96.28683554254002, + 31.62544874969128 + ], + [ + -96.07545785340386, + 31.312193695474352 + ], + [ + -95.65270247513155, + 31.312193695474352 + ], + [ + -95.44132478599539, + 31.62544874969128 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.44132478599539, + 32.251958858125136 + ], + [ + -95.65270247513155, + 32.56521391234206 + ], + [ + -96.07545785340386, + 32.56521391234206 + ], + [ + -96.28683554254002, + 32.251958858125136 + ], + [ + -96.07545785340386, + 31.938703803908208 + ], + [ + -95.65270247513155, + 31.938703803908208 + ], + [ + -95.44132478599539, + 32.251958858125136 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.44132478599539, + 32.87846896655899 + ], + [ + -95.65270247513155, + 33.191724020775915 + ], + [ + -96.07545785340386, + 33.191724020775915 + ], + [ + -96.28683554254002, + 32.87846896655899 + ], + [ + -96.07545785340386, + 32.56521391234207 + ], + [ + -95.65270247513155, + 32.56521391234207 + ], + [ + -95.44132478599539, + 32.87846896655899 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.44132478599539, + 33.504979074992846 + ], + [ + -95.65270247513155, + 33.81823412920977 + ], + [ + -96.07545785340386, + 33.81823412920977 + ], + [ + -96.28683554254002, + 33.504979074992846 + ], + [ + -96.07545785340386, + 33.19172402077592 + ], + [ + -95.65270247513155, + 33.19172402077592 + ], + [ + -95.44132478599539, + 33.504979074992846 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.44132478599539, + 34.1314891834267 + ], + [ + -95.65270247513155, + 34.444744237643626 + ], + [ + -96.07545785340386, + 34.444744237643626 + ], + [ + -96.28683554254002, + 34.1314891834267 + ], + [ + -96.07545785340386, + 33.81823412920978 + ], + [ + -95.65270247513155, + 33.81823412920978 + ], + [ + -95.44132478599539, + 34.1314891834267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.44132478599539, + 34.75799929186056 + ], + [ + -95.65270247513155, + 35.07125434607748 + ], + [ + -96.07545785340386, + 35.07125434607748 + ], + [ + -96.28683554254002, + 34.75799929186056 + ], + [ + -96.07545785340386, + 34.44474423764363 + ], + [ + -95.65270247513155, + 34.44474423764363 + ], + [ + -95.44132478599539, + 34.75799929186056 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.44132478599539, + 35.38450940029441 + ], + [ + -95.65270247513155, + 35.697764454511336 + ], + [ + -96.07545785340386, + 35.697764454511336 + ], + [ + -96.28683554254002, + 35.38450940029441 + ], + [ + -96.07545785340386, + 35.07125434607749 + ], + [ + -95.65270247513155, + 35.07125434607749 + ], + [ + -95.44132478599539, + 35.38450940029441 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.44132478599539, + 36.01101950872826 + ], + [ + -95.65270247513155, + 36.324274562945185 + ], + [ + -96.07545785340386, + 36.324274562945185 + ], + [ + -96.28683554254002, + 36.01101950872826 + ], + [ + -96.07545785340386, + 35.697764454511336 + ], + [ + -95.65270247513155, + 35.697764454511336 + ], + [ + -95.44132478599539, + 36.01101950872826 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.44132478599539, + 36.637529617162116 + ], + [ + -95.65270247513155, + 36.95078467137904 + ], + [ + -96.07545785340386, + 36.95078467137904 + ], + [ + -96.28683554254002, + 36.637529617162116 + ], + [ + -96.07545785340386, + 36.32427456294519 + ], + [ + -95.65270247513155, + 36.32427456294519 + ], + [ + -95.44132478599539, + 36.637529617162116 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.44132478599539, + 37.26403972559597 + ], + [ + -95.65270247513155, + 37.577294779812895 + ], + [ + -96.07545785340386, + 37.577294779812895 + ], + [ + -96.28683554254002, + 37.26403972559597 + ], + [ + -96.07545785340386, + 36.95078467137905 + ], + [ + -95.65270247513155, + 36.95078467137905 + ], + [ + -95.44132478599539, + 37.26403972559597 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.44132478599539, + 37.89054983402983 + ], + [ + -95.65270247513155, + 38.20380488824675 + ], + [ + -96.07545785340386, + 38.20380488824675 + ], + [ + -96.28683554254002, + 37.89054983402983 + ], + [ + -96.07545785340386, + 37.5772947798129 + ], + [ + -95.65270247513155, + 37.5772947798129 + ], + [ + -95.44132478599539, + 37.89054983402983 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.44132478599539, + 38.51705994246368 + ], + [ + -95.65270247513155, + 38.830314996680606 + ], + [ + -96.07545785340386, + 38.830314996680606 + ], + [ + -96.28683554254002, + 38.51705994246368 + ], + [ + -96.07545785340386, + 38.20380488824676 + ], + [ + -95.65270247513155, + 38.20380488824676 + ], + [ + -95.44132478599539, + 38.51705994246368 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.44132478599539, + 39.14357005089754 + ], + [ + -95.65270247513155, + 39.45682510511446 + ], + [ + -96.07545785340386, + 39.45682510511446 + ], + [ + -96.28683554254002, + 39.14357005089754 + ], + [ + -96.07545785340386, + 38.83031499668061 + ], + [ + -95.65270247513155, + 38.83031499668061 + ], + [ + -95.44132478599539, + 39.14357005089754 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.44132478599539, + 39.77008015933139 + ], + [ + -95.65270247513155, + 40.08333521354832 + ], + [ + -96.07545785340386, + 40.08333521354832 + ], + [ + -96.28683554254002, + 39.77008015933139 + ], + [ + -96.07545785340386, + 39.45682510511447 + ], + [ + -95.65270247513155, + 39.45682510511447 + ], + [ + -95.44132478599539, + 39.77008015933139 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.44132478599539, + 40.39659026776525 + ], + [ + -95.65270247513155, + 40.70984532198217 + ], + [ + -96.07545785340386, + 40.70984532198217 + ], + [ + -96.28683554254002, + 40.39659026776525 + ], + [ + -96.07545785340386, + 40.083335213548324 + ], + [ + -95.65270247513155, + 40.083335213548324 + ], + [ + -95.44132478599539, + 40.39659026776525 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.80719171858694, + 31.312193695474356 + ], + [ + -95.01856940772309, + 31.625448749691284 + ], + [ + -95.4413247859954, + 31.625448749691284 + ], + [ + -95.65270247513156, + 31.312193695474356 + ], + [ + -95.4413247859954, + 30.99893864125743 + ], + [ + -95.01856940772309, + 30.99893864125743 + ], + [ + -94.80719171858694, + 31.312193695474356 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.80719171858694, + 31.938703803908208 + ], + [ + -95.01856940772309, + 32.251958858125136 + ], + [ + -95.4413247859954, + 32.251958858125136 + ], + [ + -95.65270247513156, + 31.938703803908208 + ], + [ + -95.4413247859954, + 31.62544874969128 + ], + [ + -95.01856940772309, + 31.62544874969128 + ], + [ + -94.80719171858694, + 31.938703803908208 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.80719171858694, + 32.56521391234206 + ], + [ + -95.01856940772309, + 32.878468966558984 + ], + [ + -95.4413247859954, + 32.878468966558984 + ], + [ + -95.65270247513156, + 32.56521391234206 + ], + [ + -95.4413247859954, + 32.251958858125136 + ], + [ + -95.01856940772309, + 32.251958858125136 + ], + [ + -94.80719171858694, + 32.56521391234206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.80719171858694, + 33.191724020775915 + ], + [ + -95.01856940772309, + 33.50497907499284 + ], + [ + -95.4413247859954, + 33.50497907499284 + ], + [ + -95.65270247513156, + 33.191724020775915 + ], + [ + -95.4413247859954, + 32.87846896655899 + ], + [ + -95.01856940772309, + 32.87846896655899 + ], + [ + -94.80719171858694, + 33.191724020775915 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.80719171858694, + 33.81823412920977 + ], + [ + -95.01856940772309, + 34.131489183426694 + ], + [ + -95.4413247859954, + 34.131489183426694 + ], + [ + -95.65270247513156, + 33.81823412920977 + ], + [ + -95.4413247859954, + 33.504979074992846 + ], + [ + -95.01856940772309, + 33.504979074992846 + ], + [ + -94.80719171858694, + 33.81823412920977 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.80719171858694, + 34.444744237643626 + ], + [ + -95.01856940772309, + 34.75799929186055 + ], + [ + -95.4413247859954, + 34.75799929186055 + ], + [ + -95.65270247513156, + 34.444744237643626 + ], + [ + -95.4413247859954, + 34.1314891834267 + ], + [ + -95.01856940772309, + 34.1314891834267 + ], + [ + -94.80719171858694, + 34.444744237643626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.80719171858694, + 35.07125434607748 + ], + [ + -95.01856940772309, + 35.384509400294405 + ], + [ + -95.4413247859954, + 35.384509400294405 + ], + [ + -95.65270247513156, + 35.07125434607748 + ], + [ + -95.4413247859954, + 34.75799929186056 + ], + [ + -95.01856940772309, + 34.75799929186056 + ], + [ + -94.80719171858694, + 35.07125434607748 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.80719171858694, + 35.697764454511336 + ], + [ + -95.01856940772309, + 36.01101950872826 + ], + [ + -95.4413247859954, + 36.01101950872826 + ], + [ + -95.65270247513156, + 35.697764454511336 + ], + [ + -95.4413247859954, + 35.38450940029441 + ], + [ + -95.01856940772309, + 35.38450940029441 + ], + [ + -94.80719171858694, + 35.697764454511336 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.80719171858694, + 36.324274562945185 + ], + [ + -95.01856940772309, + 36.63752961716211 + ], + [ + -95.4413247859954, + 36.63752961716211 + ], + [ + -95.65270247513156, + 36.324274562945185 + ], + [ + -95.4413247859954, + 36.01101950872826 + ], + [ + -95.01856940772309, + 36.01101950872826 + ], + [ + -94.80719171858694, + 36.324274562945185 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.80719171858694, + 36.95078467137904 + ], + [ + -95.01856940772309, + 37.264039725595964 + ], + [ + -95.4413247859954, + 37.264039725595964 + ], + [ + -95.65270247513156, + 36.95078467137904 + ], + [ + -95.4413247859954, + 36.637529617162116 + ], + [ + -95.01856940772309, + 36.637529617162116 + ], + [ + -94.80719171858694, + 36.95078467137904 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.80719171858694, + 37.577294779812895 + ], + [ + -95.01856940772309, + 37.89054983402982 + ], + [ + -95.4413247859954, + 37.89054983402982 + ], + [ + -95.65270247513156, + 37.577294779812895 + ], + [ + -95.4413247859954, + 37.26403972559597 + ], + [ + -95.01856940772309, + 37.26403972559597 + ], + [ + -94.80719171858694, + 37.577294779812895 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.80719171858694, + 38.20380488824675 + ], + [ + -95.01856940772309, + 38.517059942463675 + ], + [ + -95.4413247859954, + 38.517059942463675 + ], + [ + -95.65270247513156, + 38.20380488824675 + ], + [ + -95.4413247859954, + 37.89054983402983 + ], + [ + -95.01856940772309, + 37.89054983402983 + ], + [ + -94.80719171858694, + 38.20380488824675 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.80719171858694, + 38.830314996680606 + ], + [ + -95.01856940772309, + 39.14357005089753 + ], + [ + -95.4413247859954, + 39.14357005089753 + ], + [ + -95.65270247513156, + 38.830314996680606 + ], + [ + -95.4413247859954, + 38.51705994246368 + ], + [ + -95.01856940772309, + 38.51705994246368 + ], + [ + -94.80719171858694, + 38.830314996680606 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.80719171858694, + 39.45682510511446 + ], + [ + -95.01856940772309, + 39.770080159331386 + ], + [ + -95.4413247859954, + 39.770080159331386 + ], + [ + -95.65270247513156, + 39.45682510511446 + ], + [ + -95.4413247859954, + 39.14357005089754 + ], + [ + -95.01856940772309, + 39.14357005089754 + ], + [ + -94.80719171858694, + 39.45682510511446 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.80719171858694, + 40.08333521354832 + ], + [ + -95.01856940772309, + 40.39659026776524 + ], + [ + -95.4413247859954, + 40.39659026776524 + ], + [ + -95.65270247513156, + 40.08333521354832 + ], + [ + -95.4413247859954, + 39.77008015933139 + ], + [ + -95.01856940772309, + 39.77008015933139 + ], + [ + -94.80719171858694, + 40.08333521354832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.80719171858694, + 40.70984532198217 + ], + [ + -95.01856940772309, + 41.023100376199096 + ], + [ + -95.4413247859954, + 41.023100376199096 + ], + [ + -95.65270247513156, + 40.70984532198217 + ], + [ + -95.4413247859954, + 40.39659026776525 + ], + [ + -95.01856940772309, + 40.39659026776525 + ], + [ + -94.80719171858694, + 40.70984532198217 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.17305865117847, + 30.99893864125743 + ], + [ + -94.38443634031462, + 31.312193695474356 + ], + [ + -94.80719171858694, + 31.312193695474356 + ], + [ + -95.01856940772309, + 30.99893864125743 + ], + [ + -94.80719171858694, + 30.6856835870405 + ], + [ + -94.38443634031462, + 30.6856835870405 + ], + [ + -94.17305865117847, + 30.99893864125743 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.17305865117847, + 31.62544874969128 + ], + [ + -94.38443634031462, + 31.938703803908208 + ], + [ + -94.80719171858694, + 31.938703803908208 + ], + [ + -95.01856940772309, + 31.62544874969128 + ], + [ + -94.80719171858694, + 31.312193695474352 + ], + [ + -94.38443634031462, + 31.312193695474352 + ], + [ + -94.17305865117847, + 31.62544874969128 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.17305865117847, + 32.251958858125136 + ], + [ + -94.38443634031462, + 32.56521391234206 + ], + [ + -94.80719171858694, + 32.56521391234206 + ], + [ + -95.01856940772309, + 32.251958858125136 + ], + [ + -94.80719171858694, + 31.938703803908208 + ], + [ + -94.38443634031462, + 31.938703803908208 + ], + [ + -94.17305865117847, + 32.251958858125136 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.17305865117847, + 32.87846896655899 + ], + [ + -94.38443634031462, + 33.191724020775915 + ], + [ + -94.80719171858694, + 33.191724020775915 + ], + [ + -95.01856940772309, + 32.87846896655899 + ], + [ + -94.80719171858694, + 32.56521391234207 + ], + [ + -94.38443634031462, + 32.56521391234207 + ], + [ + -94.17305865117847, + 32.87846896655899 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.17305865117847, + 33.504979074992846 + ], + [ + -94.38443634031462, + 33.81823412920977 + ], + [ + -94.80719171858694, + 33.81823412920977 + ], + [ + -95.01856940772309, + 33.504979074992846 + ], + [ + -94.80719171858694, + 33.19172402077592 + ], + [ + -94.38443634031462, + 33.19172402077592 + ], + [ + -94.17305865117847, + 33.504979074992846 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.17305865117847, + 34.1314891834267 + ], + [ + -94.38443634031462, + 34.444744237643626 + ], + [ + -94.80719171858694, + 34.444744237643626 + ], + [ + -95.01856940772309, + 34.1314891834267 + ], + [ + -94.80719171858694, + 33.81823412920978 + ], + [ + -94.38443634031462, + 33.81823412920978 + ], + [ + -94.17305865117847, + 34.1314891834267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.17305865117847, + 34.75799929186056 + ], + [ + -94.38443634031462, + 35.07125434607748 + ], + [ + -94.80719171858694, + 35.07125434607748 + ], + [ + -95.01856940772309, + 34.75799929186056 + ], + [ + -94.80719171858694, + 34.44474423764363 + ], + [ + -94.38443634031462, + 34.44474423764363 + ], + [ + -94.17305865117847, + 34.75799929186056 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.17305865117847, + 35.38450940029441 + ], + [ + -94.38443634031462, + 35.697764454511336 + ], + [ + -94.80719171858694, + 35.697764454511336 + ], + [ + -95.01856940772309, + 35.38450940029441 + ], + [ + -94.80719171858694, + 35.07125434607749 + ], + [ + -94.38443634031462, + 35.07125434607749 + ], + [ + -94.17305865117847, + 35.38450940029441 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.17305865117847, + 36.01101950872826 + ], + [ + -94.38443634031462, + 36.324274562945185 + ], + [ + -94.80719171858694, + 36.324274562945185 + ], + [ + -95.01856940772309, + 36.01101950872826 + ], + [ + -94.80719171858694, + 35.697764454511336 + ], + [ + -94.38443634031462, + 35.697764454511336 + ], + [ + -94.17305865117847, + 36.01101950872826 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.17305865117847, + 36.637529617162116 + ], + [ + -94.38443634031462, + 36.95078467137904 + ], + [ + -94.80719171858694, + 36.95078467137904 + ], + [ + -95.01856940772309, + 36.637529617162116 + ], + [ + -94.80719171858694, + 36.32427456294519 + ], + [ + -94.38443634031462, + 36.32427456294519 + ], + [ + -94.17305865117847, + 36.637529617162116 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.17305865117847, + 37.26403972559597 + ], + [ + -94.38443634031462, + 37.577294779812895 + ], + [ + -94.80719171858694, + 37.577294779812895 + ], + [ + -95.01856940772309, + 37.26403972559597 + ], + [ + -94.80719171858694, + 36.95078467137905 + ], + [ + -94.38443634031462, + 36.95078467137905 + ], + [ + -94.17305865117847, + 37.26403972559597 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.17305865117847, + 37.89054983402983 + ], + [ + -94.38443634031462, + 38.20380488824675 + ], + [ + -94.80719171858694, + 38.20380488824675 + ], + [ + -95.01856940772309, + 37.89054983402983 + ], + [ + -94.80719171858694, + 37.5772947798129 + ], + [ + -94.38443634031462, + 37.5772947798129 + ], + [ + -94.17305865117847, + 37.89054983402983 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.17305865117847, + 38.51705994246368 + ], + [ + -94.38443634031462, + 38.830314996680606 + ], + [ + -94.80719171858694, + 38.830314996680606 + ], + [ + -95.01856940772309, + 38.51705994246368 + ], + [ + -94.80719171858694, + 38.20380488824676 + ], + [ + -94.38443634031462, + 38.20380488824676 + ], + [ + -94.17305865117847, + 38.51705994246368 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.17305865117847, + 39.14357005089754 + ], + [ + -94.38443634031462, + 39.45682510511446 + ], + [ + -94.80719171858694, + 39.45682510511446 + ], + [ + -95.01856940772309, + 39.14357005089754 + ], + [ + -94.80719171858694, + 38.83031499668061 + ], + [ + -94.38443634031462, + 38.83031499668061 + ], + [ + -94.17305865117847, + 39.14357005089754 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.17305865117847, + 39.77008015933139 + ], + [ + -94.38443634031462, + 40.08333521354832 + ], + [ + -94.80719171858694, + 40.08333521354832 + ], + [ + -95.01856940772309, + 39.77008015933139 + ], + [ + -94.80719171858694, + 39.45682510511447 + ], + [ + -94.38443634031462, + 39.45682510511447 + ], + [ + -94.17305865117847, + 39.77008015933139 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.17305865117847, + 40.39659026776525 + ], + [ + -94.38443634031462, + 40.70984532198217 + ], + [ + -94.80719171858694, + 40.70984532198217 + ], + [ + -95.01856940772309, + 40.39659026776525 + ], + [ + -94.80719171858694, + 40.083335213548324 + ], + [ + -94.38443634031462, + 40.083335213548324 + ], + [ + -94.17305865117847, + 40.39659026776525 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.53892558377001, + 31.312193695474356 + ], + [ + -93.75030327290617, + 31.625448749691284 + ], + [ + -94.17305865117848, + 31.625448749691284 + ], + [ + -94.38443634031464, + 31.312193695474356 + ], + [ + -94.17305865117848, + 30.99893864125743 + ], + [ + -93.75030327290617, + 30.99893864125743 + ], + [ + -93.53892558377001, + 31.312193695474356 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.53892558377001, + 31.938703803908208 + ], + [ + -93.75030327290617, + 32.251958858125136 + ], + [ + -94.17305865117848, + 32.251958858125136 + ], + [ + -94.38443634031464, + 31.938703803908208 + ], + [ + -94.17305865117848, + 31.62544874969128 + ], + [ + -93.75030327290617, + 31.62544874969128 + ], + [ + -93.53892558377001, + 31.938703803908208 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.53892558377001, + 32.56521391234206 + ], + [ + -93.75030327290617, + 32.878468966558984 + ], + [ + -94.17305865117848, + 32.878468966558984 + ], + [ + -94.38443634031464, + 32.56521391234206 + ], + [ + -94.17305865117848, + 32.251958858125136 + ], + [ + -93.75030327290617, + 32.251958858125136 + ], + [ + -93.53892558377001, + 32.56521391234206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.53892558377001, + 33.191724020775915 + ], + [ + -93.75030327290617, + 33.50497907499284 + ], + [ + -94.17305865117848, + 33.50497907499284 + ], + [ + -94.38443634031464, + 33.191724020775915 + ], + [ + -94.17305865117848, + 32.87846896655899 + ], + [ + -93.75030327290617, + 32.87846896655899 + ], + [ + -93.53892558377001, + 33.191724020775915 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.53892558377001, + 33.81823412920977 + ], + [ + -93.75030327290617, + 34.131489183426694 + ], + [ + -94.17305865117848, + 34.131489183426694 + ], + [ + -94.38443634031464, + 33.81823412920977 + ], + [ + -94.17305865117848, + 33.504979074992846 + ], + [ + -93.75030327290617, + 33.504979074992846 + ], + [ + -93.53892558377001, + 33.81823412920977 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.53892558377001, + 34.444744237643626 + ], + [ + -93.75030327290617, + 34.75799929186055 + ], + [ + -94.17305865117848, + 34.75799929186055 + ], + [ + -94.38443634031464, + 34.444744237643626 + ], + [ + -94.17305865117848, + 34.1314891834267 + ], + [ + -93.75030327290617, + 34.1314891834267 + ], + [ + -93.53892558377001, + 34.444744237643626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.53892558377001, + 35.07125434607748 + ], + [ + -93.75030327290617, + 35.384509400294405 + ], + [ + -94.17305865117848, + 35.384509400294405 + ], + [ + -94.38443634031464, + 35.07125434607748 + ], + [ + -94.17305865117848, + 34.75799929186056 + ], + [ + -93.75030327290617, + 34.75799929186056 + ], + [ + -93.53892558377001, + 35.07125434607748 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.53892558377001, + 35.697764454511336 + ], + [ + -93.75030327290617, + 36.01101950872826 + ], + [ + -94.17305865117848, + 36.01101950872826 + ], + [ + -94.38443634031464, + 35.697764454511336 + ], + [ + -94.17305865117848, + 35.38450940029441 + ], + [ + -93.75030327290617, + 35.38450940029441 + ], + [ + -93.53892558377001, + 35.697764454511336 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.53892558377001, + 36.324274562945185 + ], + [ + -93.75030327290617, + 36.63752961716211 + ], + [ + -94.17305865117848, + 36.63752961716211 + ], + [ + -94.38443634031464, + 36.324274562945185 + ], + [ + -94.17305865117848, + 36.01101950872826 + ], + [ + -93.75030327290617, + 36.01101950872826 + ], + [ + -93.53892558377001, + 36.324274562945185 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.53892558377001, + 36.95078467137904 + ], + [ + -93.75030327290617, + 37.264039725595964 + ], + [ + -94.17305865117848, + 37.264039725595964 + ], + [ + -94.38443634031464, + 36.95078467137904 + ], + [ + -94.17305865117848, + 36.637529617162116 + ], + [ + -93.75030327290617, + 36.637529617162116 + ], + [ + -93.53892558377001, + 36.95078467137904 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.53892558377001, + 37.577294779812895 + ], + [ + -93.75030327290617, + 37.89054983402982 + ], + [ + -94.17305865117848, + 37.89054983402982 + ], + [ + -94.38443634031464, + 37.577294779812895 + ], + [ + -94.17305865117848, + 37.26403972559597 + ], + [ + -93.75030327290617, + 37.26403972559597 + ], + [ + -93.53892558377001, + 37.577294779812895 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.53892558377001, + 38.20380488824675 + ], + [ + -93.75030327290617, + 38.517059942463675 + ], + [ + -94.17305865117848, + 38.517059942463675 + ], + [ + -94.38443634031464, + 38.20380488824675 + ], + [ + -94.17305865117848, + 37.89054983402983 + ], + [ + -93.75030327290617, + 37.89054983402983 + ], + [ + -93.53892558377001, + 38.20380488824675 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.53892558377001, + 38.830314996680606 + ], + [ + -93.75030327290617, + 39.14357005089753 + ], + [ + -94.17305865117848, + 39.14357005089753 + ], + [ + -94.38443634031464, + 38.830314996680606 + ], + [ + -94.17305865117848, + 38.51705994246368 + ], + [ + -93.75030327290617, + 38.51705994246368 + ], + [ + -93.53892558377001, + 38.830314996680606 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.53892558377001, + 39.45682510511446 + ], + [ + -93.75030327290617, + 39.770080159331386 + ], + [ + -94.17305865117848, + 39.770080159331386 + ], + [ + -94.38443634031464, + 39.45682510511446 + ], + [ + -94.17305865117848, + 39.14357005089754 + ], + [ + -93.75030327290617, + 39.14357005089754 + ], + [ + -93.53892558377001, + 39.45682510511446 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.53892558377001, + 40.08333521354832 + ], + [ + -93.75030327290617, + 40.39659026776524 + ], + [ + -94.17305865117848, + 40.39659026776524 + ], + [ + -94.38443634031464, + 40.08333521354832 + ], + [ + -94.17305865117848, + 39.77008015933139 + ], + [ + -93.75030327290617, + 39.77008015933139 + ], + [ + -93.53892558377001, + 40.08333521354832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.53892558377001, + 40.70984532198217 + ], + [ + -93.75030327290617, + 41.023100376199096 + ], + [ + -94.17305865117848, + 41.023100376199096 + ], + [ + -94.38443634031464, + 40.70984532198217 + ], + [ + -94.17305865117848, + 40.39659026776525 + ], + [ + -93.75030327290617, + 40.39659026776525 + ], + [ + -93.53892558377001, + 40.70984532198217 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.90479251636154, + 30.99893864125743 + ], + [ + -93.1161702054977, + 31.312193695474356 + ], + [ + -93.53892558377001, + 31.312193695474356 + ], + [ + -93.75030327290617, + 30.99893864125743 + ], + [ + -93.53892558377001, + 30.6856835870405 + ], + [ + -93.1161702054977, + 30.6856835870405 + ], + [ + -92.90479251636154, + 30.99893864125743 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.90479251636154, + 31.62544874969128 + ], + [ + -93.1161702054977, + 31.938703803908208 + ], + [ + -93.53892558377001, + 31.938703803908208 + ], + [ + -93.75030327290617, + 31.62544874969128 + ], + [ + -93.53892558377001, + 31.312193695474352 + ], + [ + -93.1161702054977, + 31.312193695474352 + ], + [ + -92.90479251636154, + 31.62544874969128 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.90479251636154, + 32.251958858125136 + ], + [ + -93.1161702054977, + 32.56521391234206 + ], + [ + -93.53892558377001, + 32.56521391234206 + ], + [ + -93.75030327290617, + 32.251958858125136 + ], + [ + -93.53892558377001, + 31.938703803908208 + ], + [ + -93.1161702054977, + 31.938703803908208 + ], + [ + -92.90479251636154, + 32.251958858125136 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.90479251636154, + 32.87846896655899 + ], + [ + -93.1161702054977, + 33.191724020775915 + ], + [ + -93.53892558377001, + 33.191724020775915 + ], + [ + -93.75030327290617, + 32.87846896655899 + ], + [ + -93.53892558377001, + 32.56521391234207 + ], + [ + -93.1161702054977, + 32.56521391234207 + ], + [ + -92.90479251636154, + 32.87846896655899 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.90479251636154, + 33.504979074992846 + ], + [ + -93.1161702054977, + 33.81823412920977 + ], + [ + -93.53892558377001, + 33.81823412920977 + ], + [ + -93.75030327290617, + 33.504979074992846 + ], + [ + -93.53892558377001, + 33.19172402077592 + ], + [ + -93.1161702054977, + 33.19172402077592 + ], + [ + -92.90479251636154, + 33.504979074992846 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.90479251636154, + 34.1314891834267 + ], + [ + -93.1161702054977, + 34.444744237643626 + ], + [ + -93.53892558377001, + 34.444744237643626 + ], + [ + -93.75030327290617, + 34.1314891834267 + ], + [ + -93.53892558377001, + 33.81823412920978 + ], + [ + -93.1161702054977, + 33.81823412920978 + ], + [ + -92.90479251636154, + 34.1314891834267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.90479251636154, + 34.75799929186056 + ], + [ + -93.1161702054977, + 35.07125434607748 + ], + [ + -93.53892558377001, + 35.07125434607748 + ], + [ + -93.75030327290617, + 34.75799929186056 + ], + [ + -93.53892558377001, + 34.44474423764363 + ], + [ + -93.1161702054977, + 34.44474423764363 + ], + [ + -92.90479251636154, + 34.75799929186056 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.90479251636154, + 35.38450940029441 + ], + [ + -93.1161702054977, + 35.697764454511336 + ], + [ + -93.53892558377001, + 35.697764454511336 + ], + [ + -93.75030327290617, + 35.38450940029441 + ], + [ + -93.53892558377001, + 35.07125434607749 + ], + [ + -93.1161702054977, + 35.07125434607749 + ], + [ + -92.90479251636154, + 35.38450940029441 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.90479251636154, + 36.01101950872826 + ], + [ + -93.1161702054977, + 36.324274562945185 + ], + [ + -93.53892558377001, + 36.324274562945185 + ], + [ + -93.75030327290617, + 36.01101950872826 + ], + [ + -93.53892558377001, + 35.697764454511336 + ], + [ + -93.1161702054977, + 35.697764454511336 + ], + [ + -92.90479251636154, + 36.01101950872826 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.90479251636154, + 36.637529617162116 + ], + [ + -93.1161702054977, + 36.95078467137904 + ], + [ + -93.53892558377001, + 36.95078467137904 + ], + [ + -93.75030327290617, + 36.637529617162116 + ], + [ + -93.53892558377001, + 36.32427456294519 + ], + [ + -93.1161702054977, + 36.32427456294519 + ], + [ + -92.90479251636154, + 36.637529617162116 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.90479251636154, + 37.26403972559597 + ], + [ + -93.1161702054977, + 37.577294779812895 + ], + [ + -93.53892558377001, + 37.577294779812895 + ], + [ + -93.75030327290617, + 37.26403972559597 + ], + [ + -93.53892558377001, + 36.95078467137905 + ], + [ + -93.1161702054977, + 36.95078467137905 + ], + [ + -92.90479251636154, + 37.26403972559597 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.90479251636154, + 37.89054983402983 + ], + [ + -93.1161702054977, + 38.20380488824675 + ], + [ + -93.53892558377001, + 38.20380488824675 + ], + [ + -93.75030327290617, + 37.89054983402983 + ], + [ + -93.53892558377001, + 37.5772947798129 + ], + [ + -93.1161702054977, + 37.5772947798129 + ], + [ + -92.90479251636154, + 37.89054983402983 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.90479251636154, + 38.51705994246368 + ], + [ + -93.1161702054977, + 38.830314996680606 + ], + [ + -93.53892558377001, + 38.830314996680606 + ], + [ + -93.75030327290617, + 38.51705994246368 + ], + [ + -93.53892558377001, + 38.20380488824676 + ], + [ + -93.1161702054977, + 38.20380488824676 + ], + [ + -92.90479251636154, + 38.51705994246368 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.90479251636154, + 39.14357005089754 + ], + [ + -93.1161702054977, + 39.45682510511446 + ], + [ + -93.53892558377001, + 39.45682510511446 + ], + [ + -93.75030327290617, + 39.14357005089754 + ], + [ + -93.53892558377001, + 38.83031499668061 + ], + [ + -93.1161702054977, + 38.83031499668061 + ], + [ + -92.90479251636154, + 39.14357005089754 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.90479251636154, + 39.77008015933139 + ], + [ + -93.1161702054977, + 40.08333521354832 + ], + [ + -93.53892558377001, + 40.08333521354832 + ], + [ + -93.75030327290617, + 39.77008015933139 + ], + [ + -93.53892558377001, + 39.45682510511447 + ], + [ + -93.1161702054977, + 39.45682510511447 + ], + [ + -92.90479251636154, + 39.77008015933139 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.90479251636154, + 40.39659026776525 + ], + [ + -93.1161702054977, + 40.70984532198217 + ], + [ + -93.53892558377001, + 40.70984532198217 + ], + [ + -93.75030327290617, + 40.39659026776525 + ], + [ + -93.53892558377001, + 40.083335213548324 + ], + [ + -93.1161702054977, + 40.083335213548324 + ], + [ + -92.90479251636154, + 40.39659026776525 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.27065944895307, + 31.312193695474356 + ], + [ + -92.48203713808923, + 31.625448749691284 + ], + [ + -92.90479251636154, + 31.625448749691284 + ], + [ + -93.1161702054977, + 31.312193695474356 + ], + [ + -92.90479251636154, + 30.99893864125743 + ], + [ + -92.48203713808923, + 30.99893864125743 + ], + [ + -92.27065944895307, + 31.312193695474356 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.27065944895307, + 31.938703803908208 + ], + [ + -92.48203713808923, + 32.251958858125136 + ], + [ + -92.90479251636154, + 32.251958858125136 + ], + [ + -93.1161702054977, + 31.938703803908208 + ], + [ + -92.90479251636154, + 31.62544874969128 + ], + [ + -92.48203713808923, + 31.62544874969128 + ], + [ + -92.27065944895307, + 31.938703803908208 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.27065944895307, + 32.56521391234206 + ], + [ + -92.48203713808923, + 32.878468966558984 + ], + [ + -92.90479251636154, + 32.878468966558984 + ], + [ + -93.1161702054977, + 32.56521391234206 + ], + [ + -92.90479251636154, + 32.251958858125136 + ], + [ + -92.48203713808923, + 32.251958858125136 + ], + [ + -92.27065944895307, + 32.56521391234206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.27065944895307, + 33.191724020775915 + ], + [ + -92.48203713808923, + 33.50497907499284 + ], + [ + -92.90479251636154, + 33.50497907499284 + ], + [ + -93.1161702054977, + 33.191724020775915 + ], + [ + -92.90479251636154, + 32.87846896655899 + ], + [ + -92.48203713808923, + 32.87846896655899 + ], + [ + -92.27065944895307, + 33.191724020775915 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.27065944895307, + 33.81823412920977 + ], + [ + -92.48203713808923, + 34.131489183426694 + ], + [ + -92.90479251636154, + 34.131489183426694 + ], + [ + -93.1161702054977, + 33.81823412920977 + ], + [ + -92.90479251636154, + 33.504979074992846 + ], + [ + -92.48203713808923, + 33.504979074992846 + ], + [ + -92.27065944895307, + 33.81823412920977 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.27065944895307, + 34.444744237643626 + ], + [ + -92.48203713808923, + 34.75799929186055 + ], + [ + -92.90479251636154, + 34.75799929186055 + ], + [ + -93.1161702054977, + 34.444744237643626 + ], + [ + -92.90479251636154, + 34.1314891834267 + ], + [ + -92.48203713808923, + 34.1314891834267 + ], + [ + -92.27065944895307, + 34.444744237643626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.27065944895307, + 35.07125434607748 + ], + [ + -92.48203713808923, + 35.384509400294405 + ], + [ + -92.90479251636154, + 35.384509400294405 + ], + [ + -93.1161702054977, + 35.07125434607748 + ], + [ + -92.90479251636154, + 34.75799929186056 + ], + [ + -92.48203713808923, + 34.75799929186056 + ], + [ + -92.27065944895307, + 35.07125434607748 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.27065944895307, + 35.697764454511336 + ], + [ + -92.48203713808923, + 36.01101950872826 + ], + [ + -92.90479251636154, + 36.01101950872826 + ], + [ + -93.1161702054977, + 35.697764454511336 + ], + [ + -92.90479251636154, + 35.38450940029441 + ], + [ + -92.48203713808923, + 35.38450940029441 + ], + [ + -92.27065944895307, + 35.697764454511336 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.27065944895307, + 36.324274562945185 + ], + [ + -92.48203713808923, + 36.63752961716211 + ], + [ + -92.90479251636154, + 36.63752961716211 + ], + [ + -93.1161702054977, + 36.324274562945185 + ], + [ + -92.90479251636154, + 36.01101950872826 + ], + [ + -92.48203713808923, + 36.01101950872826 + ], + [ + -92.27065944895307, + 36.324274562945185 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.27065944895307, + 36.95078467137904 + ], + [ + -92.48203713808923, + 37.264039725595964 + ], + [ + -92.90479251636154, + 37.264039725595964 + ], + [ + -93.1161702054977, + 36.95078467137904 + ], + [ + -92.90479251636154, + 36.637529617162116 + ], + [ + -92.48203713808923, + 36.637529617162116 + ], + [ + -92.27065944895307, + 36.95078467137904 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.27065944895307, + 37.577294779812895 + ], + [ + -92.48203713808923, + 37.89054983402982 + ], + [ + -92.90479251636154, + 37.89054983402982 + ], + [ + -93.1161702054977, + 37.577294779812895 + ], + [ + -92.90479251636154, + 37.26403972559597 + ], + [ + -92.48203713808923, + 37.26403972559597 + ], + [ + -92.27065944895307, + 37.577294779812895 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.27065944895307, + 38.20380488824675 + ], + [ + -92.48203713808923, + 38.517059942463675 + ], + [ + -92.90479251636154, + 38.517059942463675 + ], + [ + -93.1161702054977, + 38.20380488824675 + ], + [ + -92.90479251636154, + 37.89054983402983 + ], + [ + -92.48203713808923, + 37.89054983402983 + ], + [ + -92.27065944895307, + 38.20380488824675 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.27065944895307, + 38.830314996680606 + ], + [ + -92.48203713808923, + 39.14357005089753 + ], + [ + -92.90479251636154, + 39.14357005089753 + ], + [ + -93.1161702054977, + 38.830314996680606 + ], + [ + -92.90479251636154, + 38.51705994246368 + ], + [ + -92.48203713808923, + 38.51705994246368 + ], + [ + -92.27065944895307, + 38.830314996680606 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.27065944895307, + 39.45682510511446 + ], + [ + -92.48203713808923, + 39.770080159331386 + ], + [ + -92.90479251636154, + 39.770080159331386 + ], + [ + -93.1161702054977, + 39.45682510511446 + ], + [ + -92.90479251636154, + 39.14357005089754 + ], + [ + -92.48203713808923, + 39.14357005089754 + ], + [ + -92.27065944895307, + 39.45682510511446 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.27065944895307, + 40.08333521354832 + ], + [ + -92.48203713808923, + 40.39659026776524 + ], + [ + -92.90479251636154, + 40.39659026776524 + ], + [ + -93.1161702054977, + 40.08333521354832 + ], + [ + -92.90479251636154, + 39.77008015933139 + ], + [ + -92.48203713808923, + 39.77008015933139 + ], + [ + -92.27065944895307, + 40.08333521354832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.27065944895307, + 40.70984532198217 + ], + [ + -92.48203713808923, + 41.023100376199096 + ], + [ + -92.90479251636154, + 41.023100376199096 + ], + [ + -93.1161702054977, + 40.70984532198217 + ], + [ + -92.90479251636154, + 40.39659026776525 + ], + [ + -92.48203713808923, + 40.39659026776525 + ], + [ + -92.27065944895307, + 40.70984532198217 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.63652638154461, + 30.99893864125743 + ], + [ + -91.84790407068077, + 31.312193695474356 + ], + [ + -92.27065944895308, + 31.312193695474356 + ], + [ + -92.48203713808924, + 30.99893864125743 + ], + [ + -92.27065944895308, + 30.6856835870405 + ], + [ + -91.84790407068077, + 30.6856835870405 + ], + [ + -91.63652638154461, + 30.99893864125743 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.63652638154461, + 31.62544874969128 + ], + [ + -91.84790407068077, + 31.938703803908208 + ], + [ + -92.27065944895308, + 31.938703803908208 + ], + [ + -92.48203713808924, + 31.62544874969128 + ], + [ + -92.27065944895308, + 31.312193695474352 + ], + [ + -91.84790407068077, + 31.312193695474352 + ], + [ + -91.63652638154461, + 31.62544874969128 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.63652638154461, + 32.251958858125136 + ], + [ + -91.84790407068077, + 32.56521391234206 + ], + [ + -92.27065944895308, + 32.56521391234206 + ], + [ + -92.48203713808924, + 32.251958858125136 + ], + [ + -92.27065944895308, + 31.938703803908208 + ], + [ + -91.84790407068077, + 31.938703803908208 + ], + [ + -91.63652638154461, + 32.251958858125136 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.63652638154461, + 32.87846896655899 + ], + [ + -91.84790407068077, + 33.191724020775915 + ], + [ + -92.27065944895308, + 33.191724020775915 + ], + [ + -92.48203713808924, + 32.87846896655899 + ], + [ + -92.27065944895308, + 32.56521391234207 + ], + [ + -91.84790407068077, + 32.56521391234207 + ], + [ + -91.63652638154461, + 32.87846896655899 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.63652638154461, + 33.504979074992846 + ], + [ + -91.84790407068077, + 33.81823412920977 + ], + [ + -92.27065944895308, + 33.81823412920977 + ], + [ + -92.48203713808924, + 33.504979074992846 + ], + [ + -92.27065944895308, + 33.19172402077592 + ], + [ + -91.84790407068077, + 33.19172402077592 + ], + [ + -91.63652638154461, + 33.504979074992846 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.63652638154461, + 34.1314891834267 + ], + [ + -91.84790407068077, + 34.444744237643626 + ], + [ + -92.27065944895308, + 34.444744237643626 + ], + [ + -92.48203713808924, + 34.1314891834267 + ], + [ + -92.27065944895308, + 33.81823412920978 + ], + [ + -91.84790407068077, + 33.81823412920978 + ], + [ + -91.63652638154461, + 34.1314891834267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.63652638154461, + 34.75799929186056 + ], + [ + -91.84790407068077, + 35.07125434607748 + ], + [ + -92.27065944895308, + 35.07125434607748 + ], + [ + -92.48203713808924, + 34.75799929186056 + ], + [ + -92.27065944895308, + 34.44474423764363 + ], + [ + -91.84790407068077, + 34.44474423764363 + ], + [ + -91.63652638154461, + 34.75799929186056 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.63652638154461, + 35.38450940029441 + ], + [ + -91.84790407068077, + 35.697764454511336 + ], + [ + -92.27065944895308, + 35.697764454511336 + ], + [ + -92.48203713808924, + 35.38450940029441 + ], + [ + -92.27065944895308, + 35.07125434607749 + ], + [ + -91.84790407068077, + 35.07125434607749 + ], + [ + -91.63652638154461, + 35.38450940029441 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.63652638154461, + 36.01101950872826 + ], + [ + -91.84790407068077, + 36.324274562945185 + ], + [ + -92.27065944895308, + 36.324274562945185 + ], + [ + -92.48203713808924, + 36.01101950872826 + ], + [ + -92.27065944895308, + 35.697764454511336 + ], + [ + -91.84790407068077, + 35.697764454511336 + ], + [ + -91.63652638154461, + 36.01101950872826 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.63652638154461, + 36.637529617162116 + ], + [ + -91.84790407068077, + 36.95078467137904 + ], + [ + -92.27065944895308, + 36.95078467137904 + ], + [ + -92.48203713808924, + 36.637529617162116 + ], + [ + -92.27065944895308, + 36.32427456294519 + ], + [ + -91.84790407068077, + 36.32427456294519 + ], + [ + -91.63652638154461, + 36.637529617162116 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.63652638154461, + 37.26403972559597 + ], + [ + -91.84790407068077, + 37.577294779812895 + ], + [ + -92.27065944895308, + 37.577294779812895 + ], + [ + -92.48203713808924, + 37.26403972559597 + ], + [ + -92.27065944895308, + 36.95078467137905 + ], + [ + -91.84790407068077, + 36.95078467137905 + ], + [ + -91.63652638154461, + 37.26403972559597 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.63652638154461, + 37.89054983402983 + ], + [ + -91.84790407068077, + 38.20380488824675 + ], + [ + -92.27065944895308, + 38.20380488824675 + ], + [ + -92.48203713808924, + 37.89054983402983 + ], + [ + -92.27065944895308, + 37.5772947798129 + ], + [ + -91.84790407068077, + 37.5772947798129 + ], + [ + -91.63652638154461, + 37.89054983402983 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.63652638154461, + 38.51705994246368 + ], + [ + -91.84790407068077, + 38.830314996680606 + ], + [ + -92.27065944895308, + 38.830314996680606 + ], + [ + -92.48203713808924, + 38.51705994246368 + ], + [ + -92.27065944895308, + 38.20380488824676 + ], + [ + -91.84790407068077, + 38.20380488824676 + ], + [ + -91.63652638154461, + 38.51705994246368 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.63652638154461, + 39.14357005089754 + ], + [ + -91.84790407068077, + 39.45682510511446 + ], + [ + -92.27065944895308, + 39.45682510511446 + ], + [ + -92.48203713808924, + 39.14357005089754 + ], + [ + -92.27065944895308, + 38.83031499668061 + ], + [ + -91.84790407068077, + 38.83031499668061 + ], + [ + -91.63652638154461, + 39.14357005089754 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.63652638154461, + 39.77008015933139 + ], + [ + -91.84790407068077, + 40.08333521354832 + ], + [ + -92.27065944895308, + 40.08333521354832 + ], + [ + -92.48203713808924, + 39.77008015933139 + ], + [ + -92.27065944895308, + 39.45682510511447 + ], + [ + -91.84790407068077, + 39.45682510511447 + ], + [ + -91.63652638154461, + 39.77008015933139 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.63652638154461, + 40.39659026776525 + ], + [ + -91.84790407068077, + 40.70984532198217 + ], + [ + -92.27065944895308, + 40.70984532198217 + ], + [ + -92.48203713808924, + 40.39659026776525 + ], + [ + -92.27065944895308, + 40.083335213548324 + ], + [ + -91.84790407068077, + 40.083335213548324 + ], + [ + -91.63652638154461, + 40.39659026776525 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.00239331413614, + 31.312193695474356 + ], + [ + -91.2137710032723, + 31.625448749691284 + ], + [ + -91.63652638154461, + 31.625448749691284 + ], + [ + -91.84790407068077, + 31.312193695474356 + ], + [ + -91.63652638154461, + 30.99893864125743 + ], + [ + -91.2137710032723, + 30.99893864125743 + ], + [ + -91.00239331413614, + 31.312193695474356 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.00239331413614, + 31.938703803908208 + ], + [ + -91.2137710032723, + 32.251958858125136 + ], + [ + -91.63652638154461, + 32.251958858125136 + ], + [ + -91.84790407068077, + 31.938703803908208 + ], + [ + -91.63652638154461, + 31.62544874969128 + ], + [ + -91.2137710032723, + 31.62544874969128 + ], + [ + -91.00239331413614, + 31.938703803908208 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.00239331413614, + 32.56521391234206 + ], + [ + -91.2137710032723, + 32.878468966558984 + ], + [ + -91.63652638154461, + 32.878468966558984 + ], + [ + -91.84790407068077, + 32.56521391234206 + ], + [ + -91.63652638154461, + 32.251958858125136 + ], + [ + -91.2137710032723, + 32.251958858125136 + ], + [ + -91.00239331413614, + 32.56521391234206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.00239331413614, + 33.191724020775915 + ], + [ + -91.2137710032723, + 33.50497907499284 + ], + [ + -91.63652638154461, + 33.50497907499284 + ], + [ + -91.84790407068077, + 33.191724020775915 + ], + [ + -91.63652638154461, + 32.87846896655899 + ], + [ + -91.2137710032723, + 32.87846896655899 + ], + [ + -91.00239331413614, + 33.191724020775915 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.00239331413614, + 33.81823412920977 + ], + [ + -91.2137710032723, + 34.131489183426694 + ], + [ + -91.63652638154461, + 34.131489183426694 + ], + [ + -91.84790407068077, + 33.81823412920977 + ], + [ + -91.63652638154461, + 33.504979074992846 + ], + [ + -91.2137710032723, + 33.504979074992846 + ], + [ + -91.00239331413614, + 33.81823412920977 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.00239331413614, + 34.444744237643626 + ], + [ + -91.2137710032723, + 34.75799929186055 + ], + [ + -91.63652638154461, + 34.75799929186055 + ], + [ + -91.84790407068077, + 34.444744237643626 + ], + [ + -91.63652638154461, + 34.1314891834267 + ], + [ + -91.2137710032723, + 34.1314891834267 + ], + [ + -91.00239331413614, + 34.444744237643626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.00239331413614, + 35.07125434607748 + ], + [ + -91.2137710032723, + 35.384509400294405 + ], + [ + -91.63652638154461, + 35.384509400294405 + ], + [ + -91.84790407068077, + 35.07125434607748 + ], + [ + -91.63652638154461, + 34.75799929186056 + ], + [ + -91.2137710032723, + 34.75799929186056 + ], + [ + -91.00239331413614, + 35.07125434607748 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.00239331413614, + 35.697764454511336 + ], + [ + -91.2137710032723, + 36.01101950872826 + ], + [ + -91.63652638154461, + 36.01101950872826 + ], + [ + -91.84790407068077, + 35.697764454511336 + ], + [ + -91.63652638154461, + 35.38450940029441 + ], + [ + -91.2137710032723, + 35.38450940029441 + ], + [ + -91.00239331413614, + 35.697764454511336 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.00239331413614, + 36.324274562945185 + ], + [ + -91.2137710032723, + 36.63752961716211 + ], + [ + -91.63652638154461, + 36.63752961716211 + ], + [ + -91.84790407068077, + 36.324274562945185 + ], + [ + -91.63652638154461, + 36.01101950872826 + ], + [ + -91.2137710032723, + 36.01101950872826 + ], + [ + -91.00239331413614, + 36.324274562945185 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.00239331413614, + 36.95078467137904 + ], + [ + -91.2137710032723, + 37.264039725595964 + ], + [ + -91.63652638154461, + 37.264039725595964 + ], + [ + -91.84790407068077, + 36.95078467137904 + ], + [ + -91.63652638154461, + 36.637529617162116 + ], + [ + -91.2137710032723, + 36.637529617162116 + ], + [ + -91.00239331413614, + 36.95078467137904 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.00239331413614, + 37.577294779812895 + ], + [ + -91.2137710032723, + 37.89054983402982 + ], + [ + -91.63652638154461, + 37.89054983402982 + ], + [ + -91.84790407068077, + 37.577294779812895 + ], + [ + -91.63652638154461, + 37.26403972559597 + ], + [ + -91.2137710032723, + 37.26403972559597 + ], + [ + -91.00239331413614, + 37.577294779812895 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.00239331413614, + 38.20380488824675 + ], + [ + -91.2137710032723, + 38.517059942463675 + ], + [ + -91.63652638154461, + 38.517059942463675 + ], + [ + -91.84790407068077, + 38.20380488824675 + ], + [ + -91.63652638154461, + 37.89054983402983 + ], + [ + -91.2137710032723, + 37.89054983402983 + ], + [ + -91.00239331413614, + 38.20380488824675 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.00239331413614, + 38.830314996680606 + ], + [ + -91.2137710032723, + 39.14357005089753 + ], + [ + -91.63652638154461, + 39.14357005089753 + ], + [ + -91.84790407068077, + 38.830314996680606 + ], + [ + -91.63652638154461, + 38.51705994246368 + ], + [ + -91.2137710032723, + 38.51705994246368 + ], + [ + -91.00239331413614, + 38.830314996680606 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.00239331413614, + 39.45682510511446 + ], + [ + -91.2137710032723, + 39.770080159331386 + ], + [ + -91.63652638154461, + 39.770080159331386 + ], + [ + -91.84790407068077, + 39.45682510511446 + ], + [ + -91.63652638154461, + 39.14357005089754 + ], + [ + -91.2137710032723, + 39.14357005089754 + ], + [ + -91.00239331413614, + 39.45682510511446 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.00239331413614, + 40.08333521354832 + ], + [ + -91.2137710032723, + 40.39659026776524 + ], + [ + -91.63652638154461, + 40.39659026776524 + ], + [ + -91.84790407068077, + 40.08333521354832 + ], + [ + -91.63652638154461, + 39.77008015933139 + ], + [ + -91.2137710032723, + 39.77008015933139 + ], + [ + -91.00239331413614, + 40.08333521354832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.00239331413614, + 40.70984532198217 + ], + [ + -91.2137710032723, + 41.023100376199096 + ], + [ + -91.63652638154461, + 41.023100376199096 + ], + [ + -91.84790407068077, + 40.70984532198217 + ], + [ + -91.63652638154461, + 40.39659026776525 + ], + [ + -91.2137710032723, + 40.39659026776525 + ], + [ + -91.00239331413614, + 40.70984532198217 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.36826024672769, + 30.99893864125743 + ], + [ + -90.57963793586384, + 31.312193695474356 + ], + [ + -91.00239331413616, + 31.312193695474356 + ], + [ + -91.21377100327231, + 30.99893864125743 + ], + [ + -91.00239331413616, + 30.6856835870405 + ], + [ + -90.57963793586384, + 30.6856835870405 + ], + [ + -90.36826024672769, + 30.99893864125743 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.36826024672769, + 31.62544874969128 + ], + [ + -90.57963793586384, + 31.938703803908208 + ], + [ + -91.00239331413616, + 31.938703803908208 + ], + [ + -91.21377100327231, + 31.62544874969128 + ], + [ + -91.00239331413616, + 31.312193695474352 + ], + [ + -90.57963793586384, + 31.312193695474352 + ], + [ + -90.36826024672769, + 31.62544874969128 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.36826024672769, + 32.251958858125136 + ], + [ + -90.57963793586384, + 32.56521391234206 + ], + [ + -91.00239331413616, + 32.56521391234206 + ], + [ + -91.21377100327231, + 32.251958858125136 + ], + [ + -91.00239331413616, + 31.938703803908208 + ], + [ + -90.57963793586384, + 31.938703803908208 + ], + [ + -90.36826024672769, + 32.251958858125136 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.36826024672769, + 32.87846896655899 + ], + [ + -90.57963793586384, + 33.191724020775915 + ], + [ + -91.00239331413616, + 33.191724020775915 + ], + [ + -91.21377100327231, + 32.87846896655899 + ], + [ + -91.00239331413616, + 32.56521391234207 + ], + [ + -90.57963793586384, + 32.56521391234207 + ], + [ + -90.36826024672769, + 32.87846896655899 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.36826024672769, + 33.504979074992846 + ], + [ + -90.57963793586384, + 33.81823412920977 + ], + [ + -91.00239331413616, + 33.81823412920977 + ], + [ + -91.21377100327231, + 33.504979074992846 + ], + [ + -91.00239331413616, + 33.19172402077592 + ], + [ + -90.57963793586384, + 33.19172402077592 + ], + [ + -90.36826024672769, + 33.504979074992846 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.36826024672769, + 34.1314891834267 + ], + [ + -90.57963793586384, + 34.444744237643626 + ], + [ + -91.00239331413616, + 34.444744237643626 + ], + [ + -91.21377100327231, + 34.1314891834267 + ], + [ + -91.00239331413616, + 33.81823412920978 + ], + [ + -90.57963793586384, + 33.81823412920978 + ], + [ + -90.36826024672769, + 34.1314891834267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.36826024672769, + 34.75799929186056 + ], + [ + -90.57963793586384, + 35.07125434607748 + ], + [ + -91.00239331413616, + 35.07125434607748 + ], + [ + -91.21377100327231, + 34.75799929186056 + ], + [ + -91.00239331413616, + 34.44474423764363 + ], + [ + -90.57963793586384, + 34.44474423764363 + ], + [ + -90.36826024672769, + 34.75799929186056 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.36826024672769, + 35.38450940029441 + ], + [ + -90.57963793586384, + 35.697764454511336 + ], + [ + -91.00239331413616, + 35.697764454511336 + ], + [ + -91.21377100327231, + 35.38450940029441 + ], + [ + -91.00239331413616, + 35.07125434607749 + ], + [ + -90.57963793586384, + 35.07125434607749 + ], + [ + -90.36826024672769, + 35.38450940029441 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.36826024672769, + 36.01101950872826 + ], + [ + -90.57963793586384, + 36.324274562945185 + ], + [ + -91.00239331413616, + 36.324274562945185 + ], + [ + -91.21377100327231, + 36.01101950872826 + ], + [ + -91.00239331413616, + 35.697764454511336 + ], + [ + -90.57963793586384, + 35.697764454511336 + ], + [ + -90.36826024672769, + 36.01101950872826 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.36826024672769, + 36.637529617162116 + ], + [ + -90.57963793586384, + 36.95078467137904 + ], + [ + -91.00239331413616, + 36.95078467137904 + ], + [ + -91.21377100327231, + 36.637529617162116 + ], + [ + -91.00239331413616, + 36.32427456294519 + ], + [ + -90.57963793586384, + 36.32427456294519 + ], + [ + -90.36826024672769, + 36.637529617162116 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.36826024672769, + 37.26403972559597 + ], + [ + -90.57963793586384, + 37.577294779812895 + ], + [ + -91.00239331413616, + 37.577294779812895 + ], + [ + -91.21377100327231, + 37.26403972559597 + ], + [ + -91.00239331413616, + 36.95078467137905 + ], + [ + -90.57963793586384, + 36.95078467137905 + ], + [ + -90.36826024672769, + 37.26403972559597 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.36826024672769, + 37.89054983402983 + ], + [ + -90.57963793586384, + 38.20380488824675 + ], + [ + -91.00239331413616, + 38.20380488824675 + ], + [ + -91.21377100327231, + 37.89054983402983 + ], + [ + -91.00239331413616, + 37.5772947798129 + ], + [ + -90.57963793586384, + 37.5772947798129 + ], + [ + -90.36826024672769, + 37.89054983402983 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.36826024672769, + 38.51705994246368 + ], + [ + -90.57963793586384, + 38.830314996680606 + ], + [ + -91.00239331413616, + 38.830314996680606 + ], + [ + -91.21377100327231, + 38.51705994246368 + ], + [ + -91.00239331413616, + 38.20380488824676 + ], + [ + -90.57963793586384, + 38.20380488824676 + ], + [ + -90.36826024672769, + 38.51705994246368 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.36826024672769, + 39.14357005089754 + ], + [ + -90.57963793586384, + 39.45682510511446 + ], + [ + -91.00239331413616, + 39.45682510511446 + ], + [ + -91.21377100327231, + 39.14357005089754 + ], + [ + -91.00239331413616, + 38.83031499668061 + ], + [ + -90.57963793586384, + 38.83031499668061 + ], + [ + -90.36826024672769, + 39.14357005089754 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.36826024672769, + 39.77008015933139 + ], + [ + -90.57963793586384, + 40.08333521354832 + ], + [ + -91.00239331413616, + 40.08333521354832 + ], + [ + -91.21377100327231, + 39.77008015933139 + ], + [ + -91.00239331413616, + 39.45682510511447 + ], + [ + -90.57963793586384, + 39.45682510511447 + ], + [ + -90.36826024672769, + 39.77008015933139 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.36826024672769, + 40.39659026776525 + ], + [ + -90.57963793586384, + 40.70984532198217 + ], + [ + -91.00239331413616, + 40.70984532198217 + ], + [ + -91.21377100327231, + 40.39659026776525 + ], + [ + -91.00239331413616, + 40.083335213548324 + ], + [ + -90.57963793586384, + 40.083335213548324 + ], + [ + -90.36826024672769, + 40.39659026776525 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.73412717931922, + 31.312193695474356 + ], + [ + -89.94550486845537, + 31.625448749691284 + ], + [ + -90.36826024672769, + 31.625448749691284 + ], + [ + -90.57963793586384, + 31.312193695474356 + ], + [ + -90.36826024672769, + 30.99893864125743 + ], + [ + -89.94550486845537, + 30.99893864125743 + ], + [ + -89.73412717931922, + 31.312193695474356 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.73412717931922, + 31.938703803908208 + ], + [ + -89.94550486845537, + 32.251958858125136 + ], + [ + -90.36826024672769, + 32.251958858125136 + ], + [ + -90.57963793586384, + 31.938703803908208 + ], + [ + -90.36826024672769, + 31.62544874969128 + ], + [ + -89.94550486845537, + 31.62544874969128 + ], + [ + -89.73412717931922, + 31.938703803908208 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.73412717931922, + 32.56521391234206 + ], + [ + -89.94550486845537, + 32.878468966558984 + ], + [ + -90.36826024672769, + 32.878468966558984 + ], + [ + -90.57963793586384, + 32.56521391234206 + ], + [ + -90.36826024672769, + 32.251958858125136 + ], + [ + -89.94550486845537, + 32.251958858125136 + ], + [ + -89.73412717931922, + 32.56521391234206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.73412717931922, + 33.191724020775915 + ], + [ + -89.94550486845537, + 33.50497907499284 + ], + [ + -90.36826024672769, + 33.50497907499284 + ], + [ + -90.57963793586384, + 33.191724020775915 + ], + [ + -90.36826024672769, + 32.87846896655899 + ], + [ + -89.94550486845537, + 32.87846896655899 + ], + [ + -89.73412717931922, + 33.191724020775915 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.73412717931922, + 33.81823412920977 + ], + [ + -89.94550486845537, + 34.131489183426694 + ], + [ + -90.36826024672769, + 34.131489183426694 + ], + [ + -90.57963793586384, + 33.81823412920977 + ], + [ + -90.36826024672769, + 33.504979074992846 + ], + [ + -89.94550486845537, + 33.504979074992846 + ], + [ + -89.73412717931922, + 33.81823412920977 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.73412717931922, + 34.444744237643626 + ], + [ + -89.94550486845537, + 34.75799929186055 + ], + [ + -90.36826024672769, + 34.75799929186055 + ], + [ + -90.57963793586384, + 34.444744237643626 + ], + [ + -90.36826024672769, + 34.1314891834267 + ], + [ + -89.94550486845537, + 34.1314891834267 + ], + [ + -89.73412717931922, + 34.444744237643626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.73412717931922, + 35.07125434607748 + ], + [ + -89.94550486845537, + 35.384509400294405 + ], + [ + -90.36826024672769, + 35.384509400294405 + ], + [ + -90.57963793586384, + 35.07125434607748 + ], + [ + -90.36826024672769, + 34.75799929186056 + ], + [ + -89.94550486845537, + 34.75799929186056 + ], + [ + -89.73412717931922, + 35.07125434607748 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.73412717931922, + 35.697764454511336 + ], + [ + -89.94550486845537, + 36.01101950872826 + ], + [ + -90.36826024672769, + 36.01101950872826 + ], + [ + -90.57963793586384, + 35.697764454511336 + ], + [ + -90.36826024672769, + 35.38450940029441 + ], + [ + -89.94550486845537, + 35.38450940029441 + ], + [ + -89.73412717931922, + 35.697764454511336 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.73412717931922, + 36.324274562945185 + ], + [ + -89.94550486845537, + 36.63752961716211 + ], + [ + -90.36826024672769, + 36.63752961716211 + ], + [ + -90.57963793586384, + 36.324274562945185 + ], + [ + -90.36826024672769, + 36.01101950872826 + ], + [ + -89.94550486845537, + 36.01101950872826 + ], + [ + -89.73412717931922, + 36.324274562945185 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.73412717931922, + 36.95078467137904 + ], + [ + -89.94550486845537, + 37.264039725595964 + ], + [ + -90.36826024672769, + 37.264039725595964 + ], + [ + -90.57963793586384, + 36.95078467137904 + ], + [ + -90.36826024672769, + 36.637529617162116 + ], + [ + -89.94550486845537, + 36.637529617162116 + ], + [ + -89.73412717931922, + 36.95078467137904 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.73412717931922, + 37.577294779812895 + ], + [ + -89.94550486845537, + 37.89054983402982 + ], + [ + -90.36826024672769, + 37.89054983402982 + ], + [ + -90.57963793586384, + 37.577294779812895 + ], + [ + -90.36826024672769, + 37.26403972559597 + ], + [ + -89.94550486845537, + 37.26403972559597 + ], + [ + -89.73412717931922, + 37.577294779812895 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.73412717931922, + 38.20380488824675 + ], + [ + -89.94550486845537, + 38.517059942463675 + ], + [ + -90.36826024672769, + 38.517059942463675 + ], + [ + -90.57963793586384, + 38.20380488824675 + ], + [ + -90.36826024672769, + 37.89054983402983 + ], + [ + -89.94550486845537, + 37.89054983402983 + ], + [ + -89.73412717931922, + 38.20380488824675 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.73412717931922, + 38.830314996680606 + ], + [ + -89.94550486845537, + 39.14357005089753 + ], + [ + -90.36826024672769, + 39.14357005089753 + ], + [ + -90.57963793586384, + 38.830314996680606 + ], + [ + -90.36826024672769, + 38.51705994246368 + ], + [ + -89.94550486845537, + 38.51705994246368 + ], + [ + -89.73412717931922, + 38.830314996680606 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.73412717931922, + 39.45682510511446 + ], + [ + -89.94550486845537, + 39.770080159331386 + ], + [ + -90.36826024672769, + 39.770080159331386 + ], + [ + -90.57963793586384, + 39.45682510511446 + ], + [ + -90.36826024672769, + 39.14357005089754 + ], + [ + -89.94550486845537, + 39.14357005089754 + ], + [ + -89.73412717931922, + 39.45682510511446 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.73412717931922, + 40.08333521354832 + ], + [ + -89.94550486845537, + 40.39659026776524 + ], + [ + -90.36826024672769, + 40.39659026776524 + ], + [ + -90.57963793586384, + 40.08333521354832 + ], + [ + -90.36826024672769, + 39.77008015933139 + ], + [ + -89.94550486845537, + 39.77008015933139 + ], + [ + -89.73412717931922, + 40.08333521354832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.73412717931922, + 40.70984532198217 + ], + [ + -89.94550486845537, + 41.023100376199096 + ], + [ + -90.36826024672769, + 41.023100376199096 + ], + [ + -90.57963793586384, + 40.70984532198217 + ], + [ + -90.36826024672769, + 40.39659026776525 + ], + [ + -89.94550486845537, + 40.39659026776525 + ], + [ + -89.73412717931922, + 40.70984532198217 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.09999411191075, + 30.99893864125743 + ], + [ + -89.3113718010469, + 31.312193695474356 + ], + [ + -89.73412717931922, + 31.312193695474356 + ], + [ + -89.94550486845537, + 30.99893864125743 + ], + [ + -89.73412717931922, + 30.6856835870405 + ], + [ + -89.3113718010469, + 30.6856835870405 + ], + [ + -89.09999411191075, + 30.99893864125743 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.09999411191075, + 31.62544874969128 + ], + [ + -89.3113718010469, + 31.938703803908208 + ], + [ + -89.73412717931922, + 31.938703803908208 + ], + [ + -89.94550486845537, + 31.62544874969128 + ], + [ + -89.73412717931922, + 31.312193695474352 + ], + [ + -89.3113718010469, + 31.312193695474352 + ], + [ + -89.09999411191075, + 31.62544874969128 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.09999411191075, + 32.251958858125136 + ], + [ + -89.3113718010469, + 32.56521391234206 + ], + [ + -89.73412717931922, + 32.56521391234206 + ], + [ + -89.94550486845537, + 32.251958858125136 + ], + [ + -89.73412717931922, + 31.938703803908208 + ], + [ + -89.3113718010469, + 31.938703803908208 + ], + [ + -89.09999411191075, + 32.251958858125136 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.09999411191075, + 32.87846896655899 + ], + [ + -89.3113718010469, + 33.191724020775915 + ], + [ + -89.73412717931922, + 33.191724020775915 + ], + [ + -89.94550486845537, + 32.87846896655899 + ], + [ + -89.73412717931922, + 32.56521391234207 + ], + [ + -89.3113718010469, + 32.56521391234207 + ], + [ + -89.09999411191075, + 32.87846896655899 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.09999411191075, + 33.504979074992846 + ], + [ + -89.3113718010469, + 33.81823412920977 + ], + [ + -89.73412717931922, + 33.81823412920977 + ], + [ + -89.94550486845537, + 33.504979074992846 + ], + [ + -89.73412717931922, + 33.19172402077592 + ], + [ + -89.3113718010469, + 33.19172402077592 + ], + [ + -89.09999411191075, + 33.504979074992846 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.09999411191075, + 34.1314891834267 + ], + [ + -89.3113718010469, + 34.444744237643626 + ], + [ + -89.73412717931922, + 34.444744237643626 + ], + [ + -89.94550486845537, + 34.1314891834267 + ], + [ + -89.73412717931922, + 33.81823412920978 + ], + [ + -89.3113718010469, + 33.81823412920978 + ], + [ + -89.09999411191075, + 34.1314891834267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.09999411191075, + 34.75799929186056 + ], + [ + -89.3113718010469, + 35.07125434607748 + ], + [ + -89.73412717931922, + 35.07125434607748 + ], + [ + -89.94550486845537, + 34.75799929186056 + ], + [ + -89.73412717931922, + 34.44474423764363 + ], + [ + -89.3113718010469, + 34.44474423764363 + ], + [ + -89.09999411191075, + 34.75799929186056 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.09999411191075, + 35.38450940029441 + ], + [ + -89.3113718010469, + 35.697764454511336 + ], + [ + -89.73412717931922, + 35.697764454511336 + ], + [ + -89.94550486845537, + 35.38450940029441 + ], + [ + -89.73412717931922, + 35.07125434607749 + ], + [ + -89.3113718010469, + 35.07125434607749 + ], + [ + -89.09999411191075, + 35.38450940029441 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.09999411191075, + 36.01101950872826 + ], + [ + -89.3113718010469, + 36.324274562945185 + ], + [ + -89.73412717931922, + 36.324274562945185 + ], + [ + -89.94550486845537, + 36.01101950872826 + ], + [ + -89.73412717931922, + 35.697764454511336 + ], + [ + -89.3113718010469, + 35.697764454511336 + ], + [ + -89.09999411191075, + 36.01101950872826 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.09999411191075, + 36.637529617162116 + ], + [ + -89.3113718010469, + 36.95078467137904 + ], + [ + -89.73412717931922, + 36.95078467137904 + ], + [ + -89.94550486845537, + 36.637529617162116 + ], + [ + -89.73412717931922, + 36.32427456294519 + ], + [ + -89.3113718010469, + 36.32427456294519 + ], + [ + -89.09999411191075, + 36.637529617162116 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.09999411191075, + 37.26403972559597 + ], + [ + -89.3113718010469, + 37.577294779812895 + ], + [ + -89.73412717931922, + 37.577294779812895 + ], + [ + -89.94550486845537, + 37.26403972559597 + ], + [ + -89.73412717931922, + 36.95078467137905 + ], + [ + -89.3113718010469, + 36.95078467137905 + ], + [ + -89.09999411191075, + 37.26403972559597 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.09999411191075, + 37.89054983402983 + ], + [ + -89.3113718010469, + 38.20380488824675 + ], + [ + -89.73412717931922, + 38.20380488824675 + ], + [ + -89.94550486845537, + 37.89054983402983 + ], + [ + -89.73412717931922, + 37.5772947798129 + ], + [ + -89.3113718010469, + 37.5772947798129 + ], + [ + -89.09999411191075, + 37.89054983402983 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.09999411191075, + 38.51705994246368 + ], + [ + -89.3113718010469, + 38.830314996680606 + ], + [ + -89.73412717931922, + 38.830314996680606 + ], + [ + -89.94550486845537, + 38.51705994246368 + ], + [ + -89.73412717931922, + 38.20380488824676 + ], + [ + -89.3113718010469, + 38.20380488824676 + ], + [ + -89.09999411191075, + 38.51705994246368 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.09999411191075, + 39.14357005089754 + ], + [ + -89.3113718010469, + 39.45682510511446 + ], + [ + -89.73412717931922, + 39.45682510511446 + ], + [ + -89.94550486845537, + 39.14357005089754 + ], + [ + -89.73412717931922, + 38.83031499668061 + ], + [ + -89.3113718010469, + 38.83031499668061 + ], + [ + -89.09999411191075, + 39.14357005089754 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.09999411191075, + 39.77008015933139 + ], + [ + -89.3113718010469, + 40.08333521354832 + ], + [ + -89.73412717931922, + 40.08333521354832 + ], + [ + -89.94550486845537, + 39.77008015933139 + ], + [ + -89.73412717931922, + 39.45682510511447 + ], + [ + -89.3113718010469, + 39.45682510511447 + ], + [ + -89.09999411191075, + 39.77008015933139 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.09999411191075, + 40.39659026776525 + ], + [ + -89.3113718010469, + 40.70984532198217 + ], + [ + -89.73412717931922, + 40.70984532198217 + ], + [ + -89.94550486845537, + 40.39659026776525 + ], + [ + -89.73412717931922, + 40.083335213548324 + ], + [ + -89.3113718010469, + 40.083335213548324 + ], + [ + -89.09999411191075, + 40.39659026776525 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.46586104450229, + 31.312193695474356 + ], + [ + -88.67723873363845, + 31.625448749691284 + ], + [ + -89.09999411191076, + 31.625448749691284 + ], + [ + -89.31137180104692, + 31.312193695474356 + ], + [ + -89.09999411191076, + 30.99893864125743 + ], + [ + -88.67723873363845, + 30.99893864125743 + ], + [ + -88.46586104450229, + 31.312193695474356 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.46586104450229, + 31.938703803908208 + ], + [ + -88.67723873363845, + 32.251958858125136 + ], + [ + -89.09999411191076, + 32.251958858125136 + ], + [ + -89.31137180104692, + 31.938703803908208 + ], + [ + -89.09999411191076, + 31.62544874969128 + ], + [ + -88.67723873363845, + 31.62544874969128 + ], + [ + -88.46586104450229, + 31.938703803908208 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.46586104450229, + 32.56521391234206 + ], + [ + -88.67723873363845, + 32.878468966558984 + ], + [ + -89.09999411191076, + 32.878468966558984 + ], + [ + -89.31137180104692, + 32.56521391234206 + ], + [ + -89.09999411191076, + 32.251958858125136 + ], + [ + -88.67723873363845, + 32.251958858125136 + ], + [ + -88.46586104450229, + 32.56521391234206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.46586104450229, + 33.191724020775915 + ], + [ + -88.67723873363845, + 33.50497907499284 + ], + [ + -89.09999411191076, + 33.50497907499284 + ], + [ + -89.31137180104692, + 33.191724020775915 + ], + [ + -89.09999411191076, + 32.87846896655899 + ], + [ + -88.67723873363845, + 32.87846896655899 + ], + [ + -88.46586104450229, + 33.191724020775915 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.46586104450229, + 33.81823412920977 + ], + [ + -88.67723873363845, + 34.131489183426694 + ], + [ + -89.09999411191076, + 34.131489183426694 + ], + [ + -89.31137180104692, + 33.81823412920977 + ], + [ + -89.09999411191076, + 33.504979074992846 + ], + [ + -88.67723873363845, + 33.504979074992846 + ], + [ + -88.46586104450229, + 33.81823412920977 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.46586104450229, + 34.444744237643626 + ], + [ + -88.67723873363845, + 34.75799929186055 + ], + [ + -89.09999411191076, + 34.75799929186055 + ], + [ + -89.31137180104692, + 34.444744237643626 + ], + [ + -89.09999411191076, + 34.1314891834267 + ], + [ + -88.67723873363845, + 34.1314891834267 + ], + [ + -88.46586104450229, + 34.444744237643626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.46586104450229, + 35.07125434607748 + ], + [ + -88.67723873363845, + 35.384509400294405 + ], + [ + -89.09999411191076, + 35.384509400294405 + ], + [ + -89.31137180104692, + 35.07125434607748 + ], + [ + -89.09999411191076, + 34.75799929186056 + ], + [ + -88.67723873363845, + 34.75799929186056 + ], + [ + -88.46586104450229, + 35.07125434607748 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.46586104450229, + 35.697764454511336 + ], + [ + -88.67723873363845, + 36.01101950872826 + ], + [ + -89.09999411191076, + 36.01101950872826 + ], + [ + -89.31137180104692, + 35.697764454511336 + ], + [ + -89.09999411191076, + 35.38450940029441 + ], + [ + -88.67723873363845, + 35.38450940029441 + ], + [ + -88.46586104450229, + 35.697764454511336 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.46586104450229, + 36.324274562945185 + ], + [ + -88.67723873363845, + 36.63752961716211 + ], + [ + -89.09999411191076, + 36.63752961716211 + ], + [ + -89.31137180104692, + 36.324274562945185 + ], + [ + -89.09999411191076, + 36.01101950872826 + ], + [ + -88.67723873363845, + 36.01101950872826 + ], + [ + -88.46586104450229, + 36.324274562945185 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.46586104450229, + 36.95078467137904 + ], + [ + -88.67723873363845, + 37.264039725595964 + ], + [ + -89.09999411191076, + 37.264039725595964 + ], + [ + -89.31137180104692, + 36.95078467137904 + ], + [ + -89.09999411191076, + 36.637529617162116 + ], + [ + -88.67723873363845, + 36.637529617162116 + ], + [ + -88.46586104450229, + 36.95078467137904 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.46586104450229, + 37.577294779812895 + ], + [ + -88.67723873363845, + 37.89054983402982 + ], + [ + -89.09999411191076, + 37.89054983402982 + ], + [ + -89.31137180104692, + 37.577294779812895 + ], + [ + -89.09999411191076, + 37.26403972559597 + ], + [ + -88.67723873363845, + 37.26403972559597 + ], + [ + -88.46586104450229, + 37.577294779812895 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.46586104450229, + 38.20380488824675 + ], + [ + -88.67723873363845, + 38.517059942463675 + ], + [ + -89.09999411191076, + 38.517059942463675 + ], + [ + -89.31137180104692, + 38.20380488824675 + ], + [ + -89.09999411191076, + 37.89054983402983 + ], + [ + -88.67723873363845, + 37.89054983402983 + ], + [ + -88.46586104450229, + 38.20380488824675 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.46586104450229, + 38.830314996680606 + ], + [ + -88.67723873363845, + 39.14357005089753 + ], + [ + -89.09999411191076, + 39.14357005089753 + ], + [ + -89.31137180104692, + 38.830314996680606 + ], + [ + -89.09999411191076, + 38.51705994246368 + ], + [ + -88.67723873363845, + 38.51705994246368 + ], + [ + -88.46586104450229, + 38.830314996680606 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.46586104450229, + 39.45682510511446 + ], + [ + -88.67723873363845, + 39.770080159331386 + ], + [ + -89.09999411191076, + 39.770080159331386 + ], + [ + -89.31137180104692, + 39.45682510511446 + ], + [ + -89.09999411191076, + 39.14357005089754 + ], + [ + -88.67723873363845, + 39.14357005089754 + ], + [ + -88.46586104450229, + 39.45682510511446 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.46586104450229, + 40.08333521354832 + ], + [ + -88.67723873363845, + 40.39659026776524 + ], + [ + -89.09999411191076, + 40.39659026776524 + ], + [ + -89.31137180104692, + 40.08333521354832 + ], + [ + -89.09999411191076, + 39.77008015933139 + ], + [ + -88.67723873363845, + 39.77008015933139 + ], + [ + -88.46586104450229, + 40.08333521354832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.46586104450229, + 40.70984532198217 + ], + [ + -88.67723873363845, + 41.023100376199096 + ], + [ + -89.09999411191076, + 41.023100376199096 + ], + [ + -89.31137180104692, + 40.70984532198217 + ], + [ + -89.09999411191076, + 40.39659026776525 + ], + [ + -88.67723873363845, + 40.39659026776525 + ], + [ + -88.46586104450229, + 40.70984532198217 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.83172797709382, + 30.99893864125743 + ], + [ + -88.04310566622998, + 31.312193695474356 + ], + [ + -88.46586104450229, + 31.312193695474356 + ], + [ + -88.67723873363845, + 30.99893864125743 + ], + [ + -88.46586104450229, + 30.6856835870405 + ], + [ + -88.04310566622998, + 30.6856835870405 + ], + [ + -87.83172797709382, + 30.99893864125743 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.83172797709382, + 31.62544874969128 + ], + [ + -88.04310566622998, + 31.938703803908208 + ], + [ + -88.46586104450229, + 31.938703803908208 + ], + [ + -88.67723873363845, + 31.62544874969128 + ], + [ + -88.46586104450229, + 31.312193695474352 + ], + [ + -88.04310566622998, + 31.312193695474352 + ], + [ + -87.83172797709382, + 31.62544874969128 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.83172797709382, + 32.251958858125136 + ], + [ + -88.04310566622998, + 32.56521391234206 + ], + [ + -88.46586104450229, + 32.56521391234206 + ], + [ + -88.67723873363845, + 32.251958858125136 + ], + [ + -88.46586104450229, + 31.938703803908208 + ], + [ + -88.04310566622998, + 31.938703803908208 + ], + [ + -87.83172797709382, + 32.251958858125136 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.83172797709382, + 32.87846896655899 + ], + [ + -88.04310566622998, + 33.191724020775915 + ], + [ + -88.46586104450229, + 33.191724020775915 + ], + [ + -88.67723873363845, + 32.87846896655899 + ], + [ + -88.46586104450229, + 32.56521391234207 + ], + [ + -88.04310566622998, + 32.56521391234207 + ], + [ + -87.83172797709382, + 32.87846896655899 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.83172797709382, + 33.504979074992846 + ], + [ + -88.04310566622998, + 33.81823412920977 + ], + [ + -88.46586104450229, + 33.81823412920977 + ], + [ + -88.67723873363845, + 33.504979074992846 + ], + [ + -88.46586104450229, + 33.19172402077592 + ], + [ + -88.04310566622998, + 33.19172402077592 + ], + [ + -87.83172797709382, + 33.504979074992846 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.83172797709382, + 34.1314891834267 + ], + [ + -88.04310566622998, + 34.444744237643626 + ], + [ + -88.46586104450229, + 34.444744237643626 + ], + [ + -88.67723873363845, + 34.1314891834267 + ], + [ + -88.46586104450229, + 33.81823412920978 + ], + [ + -88.04310566622998, + 33.81823412920978 + ], + [ + -87.83172797709382, + 34.1314891834267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.83172797709382, + 34.75799929186056 + ], + [ + -88.04310566622998, + 35.07125434607748 + ], + [ + -88.46586104450229, + 35.07125434607748 + ], + [ + -88.67723873363845, + 34.75799929186056 + ], + [ + -88.46586104450229, + 34.44474423764363 + ], + [ + -88.04310566622998, + 34.44474423764363 + ], + [ + -87.83172797709382, + 34.75799929186056 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.83172797709382, + 35.38450940029441 + ], + [ + -88.04310566622998, + 35.697764454511336 + ], + [ + -88.46586104450229, + 35.697764454511336 + ], + [ + -88.67723873363845, + 35.38450940029441 + ], + [ + -88.46586104450229, + 35.07125434607749 + ], + [ + -88.04310566622998, + 35.07125434607749 + ], + [ + -87.83172797709382, + 35.38450940029441 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.83172797709382, + 36.01101950872826 + ], + [ + -88.04310566622998, + 36.324274562945185 + ], + [ + -88.46586104450229, + 36.324274562945185 + ], + [ + -88.67723873363845, + 36.01101950872826 + ], + [ + -88.46586104450229, + 35.697764454511336 + ], + [ + -88.04310566622998, + 35.697764454511336 + ], + [ + -87.83172797709382, + 36.01101950872826 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.83172797709382, + 36.637529617162116 + ], + [ + -88.04310566622998, + 36.95078467137904 + ], + [ + -88.46586104450229, + 36.95078467137904 + ], + [ + -88.67723873363845, + 36.637529617162116 + ], + [ + -88.46586104450229, + 36.32427456294519 + ], + [ + -88.04310566622998, + 36.32427456294519 + ], + [ + -87.83172797709382, + 36.637529617162116 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.83172797709382, + 37.26403972559597 + ], + [ + -88.04310566622998, + 37.577294779812895 + ], + [ + -88.46586104450229, + 37.577294779812895 + ], + [ + -88.67723873363845, + 37.26403972559597 + ], + [ + -88.46586104450229, + 36.95078467137905 + ], + [ + -88.04310566622998, + 36.95078467137905 + ], + [ + -87.83172797709382, + 37.26403972559597 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.83172797709382, + 37.89054983402983 + ], + [ + -88.04310566622998, + 38.20380488824675 + ], + [ + -88.46586104450229, + 38.20380488824675 + ], + [ + -88.67723873363845, + 37.89054983402983 + ], + [ + -88.46586104450229, + 37.5772947798129 + ], + [ + -88.04310566622998, + 37.5772947798129 + ], + [ + -87.83172797709382, + 37.89054983402983 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.83172797709382, + 38.51705994246368 + ], + [ + -88.04310566622998, + 38.830314996680606 + ], + [ + -88.46586104450229, + 38.830314996680606 + ], + [ + -88.67723873363845, + 38.51705994246368 + ], + [ + -88.46586104450229, + 38.20380488824676 + ], + [ + -88.04310566622998, + 38.20380488824676 + ], + [ + -87.83172797709382, + 38.51705994246368 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.83172797709382, + 39.14357005089754 + ], + [ + -88.04310566622998, + 39.45682510511446 + ], + [ + -88.46586104450229, + 39.45682510511446 + ], + [ + -88.67723873363845, + 39.14357005089754 + ], + [ + -88.46586104450229, + 38.83031499668061 + ], + [ + -88.04310566622998, + 38.83031499668061 + ], + [ + -87.83172797709382, + 39.14357005089754 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.83172797709382, + 39.77008015933139 + ], + [ + -88.04310566622998, + 40.08333521354832 + ], + [ + -88.46586104450229, + 40.08333521354832 + ], + [ + -88.67723873363845, + 39.77008015933139 + ], + [ + -88.46586104450229, + 39.45682510511447 + ], + [ + -88.04310566622998, + 39.45682510511447 + ], + [ + -87.83172797709382, + 39.77008015933139 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.83172797709382, + 40.39659026776525 + ], + [ + -88.04310566622998, + 40.70984532198217 + ], + [ + -88.46586104450229, + 40.70984532198217 + ], + [ + -88.67723873363845, + 40.39659026776525 + ], + [ + -88.46586104450229, + 40.083335213548324 + ], + [ + -88.04310566622998, + 40.083335213548324 + ], + [ + -87.83172797709382, + 40.39659026776525 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.19759490968536, + 31.312193695474356 + ], + [ + -87.40897259882152, + 31.625448749691284 + ], + [ + -87.83172797709383, + 31.625448749691284 + ], + [ + -88.04310566622999, + 31.312193695474356 + ], + [ + -87.83172797709383, + 30.99893864125743 + ], + [ + -87.40897259882152, + 30.99893864125743 + ], + [ + -87.19759490968536, + 31.312193695474356 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.19759490968536, + 31.938703803908208 + ], + [ + -87.40897259882152, + 32.251958858125136 + ], + [ + -87.83172797709383, + 32.251958858125136 + ], + [ + -88.04310566622999, + 31.938703803908208 + ], + [ + -87.83172797709383, + 31.62544874969128 + ], + [ + -87.40897259882152, + 31.62544874969128 + ], + [ + -87.19759490968536, + 31.938703803908208 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.19759490968536, + 32.56521391234206 + ], + [ + -87.40897259882152, + 32.878468966558984 + ], + [ + -87.83172797709383, + 32.878468966558984 + ], + [ + -88.04310566622999, + 32.56521391234206 + ], + [ + -87.83172797709383, + 32.251958858125136 + ], + [ + -87.40897259882152, + 32.251958858125136 + ], + [ + -87.19759490968536, + 32.56521391234206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.19759490968536, + 33.191724020775915 + ], + [ + -87.40897259882152, + 33.50497907499284 + ], + [ + -87.83172797709383, + 33.50497907499284 + ], + [ + -88.04310566622999, + 33.191724020775915 + ], + [ + -87.83172797709383, + 32.87846896655899 + ], + [ + -87.40897259882152, + 32.87846896655899 + ], + [ + -87.19759490968536, + 33.191724020775915 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.19759490968536, + 33.81823412920977 + ], + [ + -87.40897259882152, + 34.131489183426694 + ], + [ + -87.83172797709383, + 34.131489183426694 + ], + [ + -88.04310566622999, + 33.81823412920977 + ], + [ + -87.83172797709383, + 33.504979074992846 + ], + [ + -87.40897259882152, + 33.504979074992846 + ], + [ + -87.19759490968536, + 33.81823412920977 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.19759490968536, + 34.444744237643626 + ], + [ + -87.40897259882152, + 34.75799929186055 + ], + [ + -87.83172797709383, + 34.75799929186055 + ], + [ + -88.04310566622999, + 34.444744237643626 + ], + [ + -87.83172797709383, + 34.1314891834267 + ], + [ + -87.40897259882152, + 34.1314891834267 + ], + [ + -87.19759490968536, + 34.444744237643626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.19759490968536, + 35.07125434607748 + ], + [ + -87.40897259882152, + 35.384509400294405 + ], + [ + -87.83172797709383, + 35.384509400294405 + ], + [ + -88.04310566622999, + 35.07125434607748 + ], + [ + -87.83172797709383, + 34.75799929186056 + ], + [ + -87.40897259882152, + 34.75799929186056 + ], + [ + -87.19759490968536, + 35.07125434607748 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.19759490968536, + 35.697764454511336 + ], + [ + -87.40897259882152, + 36.01101950872826 + ], + [ + -87.83172797709383, + 36.01101950872826 + ], + [ + -88.04310566622999, + 35.697764454511336 + ], + [ + -87.83172797709383, + 35.38450940029441 + ], + [ + -87.40897259882152, + 35.38450940029441 + ], + [ + -87.19759490968536, + 35.697764454511336 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.19759490968536, + 36.324274562945185 + ], + [ + -87.40897259882152, + 36.63752961716211 + ], + [ + -87.83172797709383, + 36.63752961716211 + ], + [ + -88.04310566622999, + 36.324274562945185 + ], + [ + -87.83172797709383, + 36.01101950872826 + ], + [ + -87.40897259882152, + 36.01101950872826 + ], + [ + -87.19759490968536, + 36.324274562945185 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.19759490968536, + 36.95078467137904 + ], + [ + -87.40897259882152, + 37.264039725595964 + ], + [ + -87.83172797709383, + 37.264039725595964 + ], + [ + -88.04310566622999, + 36.95078467137904 + ], + [ + -87.83172797709383, + 36.637529617162116 + ], + [ + -87.40897259882152, + 36.637529617162116 + ], + [ + -87.19759490968536, + 36.95078467137904 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.19759490968536, + 37.577294779812895 + ], + [ + -87.40897259882152, + 37.89054983402982 + ], + [ + -87.83172797709383, + 37.89054983402982 + ], + [ + -88.04310566622999, + 37.577294779812895 + ], + [ + -87.83172797709383, + 37.26403972559597 + ], + [ + -87.40897259882152, + 37.26403972559597 + ], + [ + -87.19759490968536, + 37.577294779812895 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.19759490968536, + 38.20380488824675 + ], + [ + -87.40897259882152, + 38.517059942463675 + ], + [ + -87.83172797709383, + 38.517059942463675 + ], + [ + -88.04310566622999, + 38.20380488824675 + ], + [ + -87.83172797709383, + 37.89054983402983 + ], + [ + -87.40897259882152, + 37.89054983402983 + ], + [ + -87.19759490968536, + 38.20380488824675 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.19759490968536, + 38.830314996680606 + ], + [ + -87.40897259882152, + 39.14357005089753 + ], + [ + -87.83172797709383, + 39.14357005089753 + ], + [ + -88.04310566622999, + 38.830314996680606 + ], + [ + -87.83172797709383, + 38.51705994246368 + ], + [ + -87.40897259882152, + 38.51705994246368 + ], + [ + -87.19759490968536, + 38.830314996680606 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.19759490968536, + 39.45682510511446 + ], + [ + -87.40897259882152, + 39.770080159331386 + ], + [ + -87.83172797709383, + 39.770080159331386 + ], + [ + -88.04310566622999, + 39.45682510511446 + ], + [ + -87.83172797709383, + 39.14357005089754 + ], + [ + -87.40897259882152, + 39.14357005089754 + ], + [ + -87.19759490968536, + 39.45682510511446 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.19759490968536, + 40.08333521354832 + ], + [ + -87.40897259882152, + 40.39659026776524 + ], + [ + -87.83172797709383, + 40.39659026776524 + ], + [ + -88.04310566622999, + 40.08333521354832 + ], + [ + -87.83172797709383, + 39.77008015933139 + ], + [ + -87.40897259882152, + 39.77008015933139 + ], + [ + -87.19759490968536, + 40.08333521354832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.19759490968536, + 40.70984532198217 + ], + [ + -87.40897259882152, + 41.023100376199096 + ], + [ + -87.83172797709383, + 41.023100376199096 + ], + [ + -88.04310566622999, + 40.70984532198217 + ], + [ + -87.83172797709383, + 40.39659026776525 + ], + [ + -87.40897259882152, + 40.39659026776525 + ], + [ + -87.19759490968536, + 40.70984532198217 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.5634618422769, + 30.99893864125743 + ], + [ + -86.77483953141305, + 31.312193695474356 + ], + [ + -87.19759490968536, + 31.312193695474356 + ], + [ + -87.40897259882152, + 30.99893864125743 + ], + [ + -87.19759490968536, + 30.6856835870405 + ], + [ + -86.77483953141305, + 30.6856835870405 + ], + [ + -86.5634618422769, + 30.99893864125743 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.5634618422769, + 31.62544874969128 + ], + [ + -86.77483953141305, + 31.938703803908208 + ], + [ + -87.19759490968536, + 31.938703803908208 + ], + [ + -87.40897259882152, + 31.62544874969128 + ], + [ + -87.19759490968536, + 31.312193695474352 + ], + [ + -86.77483953141305, + 31.312193695474352 + ], + [ + -86.5634618422769, + 31.62544874969128 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.5634618422769, + 32.251958858125136 + ], + [ + -86.77483953141305, + 32.56521391234206 + ], + [ + -87.19759490968536, + 32.56521391234206 + ], + [ + -87.40897259882152, + 32.251958858125136 + ], + [ + -87.19759490968536, + 31.938703803908208 + ], + [ + -86.77483953141305, + 31.938703803908208 + ], + [ + -86.5634618422769, + 32.251958858125136 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.5634618422769, + 32.87846896655899 + ], + [ + -86.77483953141305, + 33.191724020775915 + ], + [ + -87.19759490968536, + 33.191724020775915 + ], + [ + -87.40897259882152, + 32.87846896655899 + ], + [ + -87.19759490968536, + 32.56521391234207 + ], + [ + -86.77483953141305, + 32.56521391234207 + ], + [ + -86.5634618422769, + 32.87846896655899 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.5634618422769, + 33.504979074992846 + ], + [ + -86.77483953141305, + 33.81823412920977 + ], + [ + -87.19759490968536, + 33.81823412920977 + ], + [ + -87.40897259882152, + 33.504979074992846 + ], + [ + -87.19759490968536, + 33.19172402077592 + ], + [ + -86.77483953141305, + 33.19172402077592 + ], + [ + -86.5634618422769, + 33.504979074992846 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.5634618422769, + 34.1314891834267 + ], + [ + -86.77483953141305, + 34.444744237643626 + ], + [ + -87.19759490968536, + 34.444744237643626 + ], + [ + -87.40897259882152, + 34.1314891834267 + ], + [ + -87.19759490968536, + 33.81823412920978 + ], + [ + -86.77483953141305, + 33.81823412920978 + ], + [ + -86.5634618422769, + 34.1314891834267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.5634618422769, + 34.75799929186056 + ], + [ + -86.77483953141305, + 35.07125434607748 + ], + [ + -87.19759490968536, + 35.07125434607748 + ], + [ + -87.40897259882152, + 34.75799929186056 + ], + [ + -87.19759490968536, + 34.44474423764363 + ], + [ + -86.77483953141305, + 34.44474423764363 + ], + [ + -86.5634618422769, + 34.75799929186056 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.5634618422769, + 35.38450940029441 + ], + [ + -86.77483953141305, + 35.697764454511336 + ], + [ + -87.19759490968536, + 35.697764454511336 + ], + [ + -87.40897259882152, + 35.38450940029441 + ], + [ + -87.19759490968536, + 35.07125434607749 + ], + [ + -86.77483953141305, + 35.07125434607749 + ], + [ + -86.5634618422769, + 35.38450940029441 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.5634618422769, + 36.01101950872826 + ], + [ + -86.77483953141305, + 36.324274562945185 + ], + [ + -87.19759490968536, + 36.324274562945185 + ], + [ + -87.40897259882152, + 36.01101950872826 + ], + [ + -87.19759490968536, + 35.697764454511336 + ], + [ + -86.77483953141305, + 35.697764454511336 + ], + [ + -86.5634618422769, + 36.01101950872826 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.5634618422769, + 36.637529617162116 + ], + [ + -86.77483953141305, + 36.95078467137904 + ], + [ + -87.19759490968536, + 36.95078467137904 + ], + [ + -87.40897259882152, + 36.637529617162116 + ], + [ + -87.19759490968536, + 36.32427456294519 + ], + [ + -86.77483953141305, + 36.32427456294519 + ], + [ + -86.5634618422769, + 36.637529617162116 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.5634618422769, + 37.26403972559597 + ], + [ + -86.77483953141305, + 37.577294779812895 + ], + [ + -87.19759490968536, + 37.577294779812895 + ], + [ + -87.40897259882152, + 37.26403972559597 + ], + [ + -87.19759490968536, + 36.95078467137905 + ], + [ + -86.77483953141305, + 36.95078467137905 + ], + [ + -86.5634618422769, + 37.26403972559597 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.5634618422769, + 37.89054983402983 + ], + [ + -86.77483953141305, + 38.20380488824675 + ], + [ + -87.19759490968536, + 38.20380488824675 + ], + [ + -87.40897259882152, + 37.89054983402983 + ], + [ + -87.19759490968536, + 37.5772947798129 + ], + [ + -86.77483953141305, + 37.5772947798129 + ], + [ + -86.5634618422769, + 37.89054983402983 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.5634618422769, + 38.51705994246368 + ], + [ + -86.77483953141305, + 38.830314996680606 + ], + [ + -87.19759490968536, + 38.830314996680606 + ], + [ + -87.40897259882152, + 38.51705994246368 + ], + [ + -87.19759490968536, + 38.20380488824676 + ], + [ + -86.77483953141305, + 38.20380488824676 + ], + [ + -86.5634618422769, + 38.51705994246368 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.5634618422769, + 39.14357005089754 + ], + [ + -86.77483953141305, + 39.45682510511446 + ], + [ + -87.19759490968536, + 39.45682510511446 + ], + [ + -87.40897259882152, + 39.14357005089754 + ], + [ + -87.19759490968536, + 38.83031499668061 + ], + [ + -86.77483953141305, + 38.83031499668061 + ], + [ + -86.5634618422769, + 39.14357005089754 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.5634618422769, + 39.77008015933139 + ], + [ + -86.77483953141305, + 40.08333521354832 + ], + [ + -87.19759490968536, + 40.08333521354832 + ], + [ + -87.40897259882152, + 39.77008015933139 + ], + [ + -87.19759490968536, + 39.45682510511447 + ], + [ + -86.77483953141305, + 39.45682510511447 + ], + [ + -86.5634618422769, + 39.77008015933139 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.5634618422769, + 40.39659026776525 + ], + [ + -86.77483953141305, + 40.70984532198217 + ], + [ + -87.19759490968536, + 40.70984532198217 + ], + [ + -87.40897259882152, + 40.39659026776525 + ], + [ + -87.19759490968536, + 40.083335213548324 + ], + [ + -86.77483953141305, + 40.083335213548324 + ], + [ + -86.5634618422769, + 40.39659026776525 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.92932877486842, + 31.312193695474356 + ], + [ + -86.14070646400458, + 31.625448749691284 + ], + [ + -86.5634618422769, + 31.625448749691284 + ], + [ + -86.77483953141305, + 31.312193695474356 + ], + [ + -86.5634618422769, + 30.99893864125743 + ], + [ + -86.14070646400458, + 30.99893864125743 + ], + [ + -85.92932877486842, + 31.312193695474356 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.92932877486842, + 31.938703803908208 + ], + [ + -86.14070646400458, + 32.251958858125136 + ], + [ + -86.5634618422769, + 32.251958858125136 + ], + [ + -86.77483953141305, + 31.938703803908208 + ], + [ + -86.5634618422769, + 31.62544874969128 + ], + [ + -86.14070646400458, + 31.62544874969128 + ], + [ + -85.92932877486842, + 31.938703803908208 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.92932877486842, + 32.56521391234206 + ], + [ + -86.14070646400458, + 32.878468966558984 + ], + [ + -86.5634618422769, + 32.878468966558984 + ], + [ + -86.77483953141305, + 32.56521391234206 + ], + [ + -86.5634618422769, + 32.251958858125136 + ], + [ + -86.14070646400458, + 32.251958858125136 + ], + [ + -85.92932877486842, + 32.56521391234206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.92932877486842, + 33.191724020775915 + ], + [ + -86.14070646400458, + 33.50497907499284 + ], + [ + -86.5634618422769, + 33.50497907499284 + ], + [ + -86.77483953141305, + 33.191724020775915 + ], + [ + -86.5634618422769, + 32.87846896655899 + ], + [ + -86.14070646400458, + 32.87846896655899 + ], + [ + -85.92932877486842, + 33.191724020775915 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.92932877486842, + 33.81823412920977 + ], + [ + -86.14070646400458, + 34.131489183426694 + ], + [ + -86.5634618422769, + 34.131489183426694 + ], + [ + -86.77483953141305, + 33.81823412920977 + ], + [ + -86.5634618422769, + 33.504979074992846 + ], + [ + -86.14070646400458, + 33.504979074992846 + ], + [ + -85.92932877486842, + 33.81823412920977 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.92932877486842, + 34.444744237643626 + ], + [ + -86.14070646400458, + 34.75799929186055 + ], + [ + -86.5634618422769, + 34.75799929186055 + ], + [ + -86.77483953141305, + 34.444744237643626 + ], + [ + -86.5634618422769, + 34.1314891834267 + ], + [ + -86.14070646400458, + 34.1314891834267 + ], + [ + -85.92932877486842, + 34.444744237643626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.92932877486842, + 35.07125434607748 + ], + [ + -86.14070646400458, + 35.384509400294405 + ], + [ + -86.5634618422769, + 35.384509400294405 + ], + [ + -86.77483953141305, + 35.07125434607748 + ], + [ + -86.5634618422769, + 34.75799929186056 + ], + [ + -86.14070646400458, + 34.75799929186056 + ], + [ + -85.92932877486842, + 35.07125434607748 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.92932877486842, + 35.697764454511336 + ], + [ + -86.14070646400458, + 36.01101950872826 + ], + [ + -86.5634618422769, + 36.01101950872826 + ], + [ + -86.77483953141305, + 35.697764454511336 + ], + [ + -86.5634618422769, + 35.38450940029441 + ], + [ + -86.14070646400458, + 35.38450940029441 + ], + [ + -85.92932877486842, + 35.697764454511336 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.92932877486842, + 36.324274562945185 + ], + [ + -86.14070646400458, + 36.63752961716211 + ], + [ + -86.5634618422769, + 36.63752961716211 + ], + [ + -86.77483953141305, + 36.324274562945185 + ], + [ + -86.5634618422769, + 36.01101950872826 + ], + [ + -86.14070646400458, + 36.01101950872826 + ], + [ + -85.92932877486842, + 36.324274562945185 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.92932877486842, + 36.95078467137904 + ], + [ + -86.14070646400458, + 37.264039725595964 + ], + [ + -86.5634618422769, + 37.264039725595964 + ], + [ + -86.77483953141305, + 36.95078467137904 + ], + [ + -86.5634618422769, + 36.637529617162116 + ], + [ + -86.14070646400458, + 36.637529617162116 + ], + [ + -85.92932877486842, + 36.95078467137904 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.92932877486842, + 37.577294779812895 + ], + [ + -86.14070646400458, + 37.89054983402982 + ], + [ + -86.5634618422769, + 37.89054983402982 + ], + [ + -86.77483953141305, + 37.577294779812895 + ], + [ + -86.5634618422769, + 37.26403972559597 + ], + [ + -86.14070646400458, + 37.26403972559597 + ], + [ + -85.92932877486842, + 37.577294779812895 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.92932877486842, + 38.20380488824675 + ], + [ + -86.14070646400458, + 38.517059942463675 + ], + [ + -86.5634618422769, + 38.517059942463675 + ], + [ + -86.77483953141305, + 38.20380488824675 + ], + [ + -86.5634618422769, + 37.89054983402983 + ], + [ + -86.14070646400458, + 37.89054983402983 + ], + [ + -85.92932877486842, + 38.20380488824675 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.92932877486842, + 38.830314996680606 + ], + [ + -86.14070646400458, + 39.14357005089753 + ], + [ + -86.5634618422769, + 39.14357005089753 + ], + [ + -86.77483953141305, + 38.830314996680606 + ], + [ + -86.5634618422769, + 38.51705994246368 + ], + [ + -86.14070646400458, + 38.51705994246368 + ], + [ + -85.92932877486842, + 38.830314996680606 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.92932877486842, + 39.45682510511446 + ], + [ + -86.14070646400458, + 39.770080159331386 + ], + [ + -86.5634618422769, + 39.770080159331386 + ], + [ + -86.77483953141305, + 39.45682510511446 + ], + [ + -86.5634618422769, + 39.14357005089754 + ], + [ + -86.14070646400458, + 39.14357005089754 + ], + [ + -85.92932877486842, + 39.45682510511446 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.92932877486842, + 40.08333521354832 + ], + [ + -86.14070646400458, + 40.39659026776524 + ], + [ + -86.5634618422769, + 40.39659026776524 + ], + [ + -86.77483953141305, + 40.08333521354832 + ], + [ + -86.5634618422769, + 39.77008015933139 + ], + [ + -86.14070646400458, + 39.77008015933139 + ], + [ + -85.92932877486842, + 40.08333521354832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.92932877486842, + 40.70984532198217 + ], + [ + -86.14070646400458, + 41.023100376199096 + ], + [ + -86.5634618422769, + 41.023100376199096 + ], + [ + -86.77483953141305, + 40.70984532198217 + ], + [ + -86.5634618422769, + 40.39659026776525 + ], + [ + -86.14070646400458, + 40.39659026776525 + ], + [ + -85.92932877486842, + 40.70984532198217 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.29519570745997, + 30.99893864125743 + ], + [ + -85.50657339659612, + 31.312193695474356 + ], + [ + -85.92932877486844, + 31.312193695474356 + ], + [ + -86.1407064640046, + 30.99893864125743 + ], + [ + -85.92932877486844, + 30.6856835870405 + ], + [ + -85.50657339659612, + 30.6856835870405 + ], + [ + -85.29519570745997, + 30.99893864125743 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.29519570745997, + 31.62544874969128 + ], + [ + -85.50657339659612, + 31.938703803908208 + ], + [ + -85.92932877486844, + 31.938703803908208 + ], + [ + -86.1407064640046, + 31.62544874969128 + ], + [ + -85.92932877486844, + 31.312193695474352 + ], + [ + -85.50657339659612, + 31.312193695474352 + ], + [ + -85.29519570745997, + 31.62544874969128 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.29519570745997, + 32.251958858125136 + ], + [ + -85.50657339659612, + 32.56521391234206 + ], + [ + -85.92932877486844, + 32.56521391234206 + ], + [ + -86.1407064640046, + 32.251958858125136 + ], + [ + -85.92932877486844, + 31.938703803908208 + ], + [ + -85.50657339659612, + 31.938703803908208 + ], + [ + -85.29519570745997, + 32.251958858125136 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.29519570745997, + 32.87846896655899 + ], + [ + -85.50657339659612, + 33.191724020775915 + ], + [ + -85.92932877486844, + 33.191724020775915 + ], + [ + -86.1407064640046, + 32.87846896655899 + ], + [ + -85.92932877486844, + 32.56521391234207 + ], + [ + -85.50657339659612, + 32.56521391234207 + ], + [ + -85.29519570745997, + 32.87846896655899 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.29519570745997, + 33.504979074992846 + ], + [ + -85.50657339659612, + 33.81823412920977 + ], + [ + -85.92932877486844, + 33.81823412920977 + ], + [ + -86.1407064640046, + 33.504979074992846 + ], + [ + -85.92932877486844, + 33.19172402077592 + ], + [ + -85.50657339659612, + 33.19172402077592 + ], + [ + -85.29519570745997, + 33.504979074992846 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.29519570745997, + 34.1314891834267 + ], + [ + -85.50657339659612, + 34.444744237643626 + ], + [ + -85.92932877486844, + 34.444744237643626 + ], + [ + -86.1407064640046, + 34.1314891834267 + ], + [ + -85.92932877486844, + 33.81823412920978 + ], + [ + -85.50657339659612, + 33.81823412920978 + ], + [ + -85.29519570745997, + 34.1314891834267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.29519570745997, + 34.75799929186056 + ], + [ + -85.50657339659612, + 35.07125434607748 + ], + [ + -85.92932877486844, + 35.07125434607748 + ], + [ + -86.1407064640046, + 34.75799929186056 + ], + [ + -85.92932877486844, + 34.44474423764363 + ], + [ + -85.50657339659612, + 34.44474423764363 + ], + [ + -85.29519570745997, + 34.75799929186056 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.29519570745997, + 35.38450940029441 + ], + [ + -85.50657339659612, + 35.697764454511336 + ], + [ + -85.92932877486844, + 35.697764454511336 + ], + [ + -86.1407064640046, + 35.38450940029441 + ], + [ + -85.92932877486844, + 35.07125434607749 + ], + [ + -85.50657339659612, + 35.07125434607749 + ], + [ + -85.29519570745997, + 35.38450940029441 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.29519570745997, + 36.01101950872826 + ], + [ + -85.50657339659612, + 36.324274562945185 + ], + [ + -85.92932877486844, + 36.324274562945185 + ], + [ + -86.1407064640046, + 36.01101950872826 + ], + [ + -85.92932877486844, + 35.697764454511336 + ], + [ + -85.50657339659612, + 35.697764454511336 + ], + [ + -85.29519570745997, + 36.01101950872826 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.29519570745997, + 36.637529617162116 + ], + [ + -85.50657339659612, + 36.95078467137904 + ], + [ + -85.92932877486844, + 36.95078467137904 + ], + [ + -86.1407064640046, + 36.637529617162116 + ], + [ + -85.92932877486844, + 36.32427456294519 + ], + [ + -85.50657339659612, + 36.32427456294519 + ], + [ + -85.29519570745997, + 36.637529617162116 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.29519570745997, + 37.26403972559597 + ], + [ + -85.50657339659612, + 37.577294779812895 + ], + [ + -85.92932877486844, + 37.577294779812895 + ], + [ + -86.1407064640046, + 37.26403972559597 + ], + [ + -85.92932877486844, + 36.95078467137905 + ], + [ + -85.50657339659612, + 36.95078467137905 + ], + [ + -85.29519570745997, + 37.26403972559597 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.29519570745997, + 37.89054983402983 + ], + [ + -85.50657339659612, + 38.20380488824675 + ], + [ + -85.92932877486844, + 38.20380488824675 + ], + [ + -86.1407064640046, + 37.89054983402983 + ], + [ + -85.92932877486844, + 37.5772947798129 + ], + [ + -85.50657339659612, + 37.5772947798129 + ], + [ + -85.29519570745997, + 37.89054983402983 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.29519570745997, + 38.51705994246368 + ], + [ + -85.50657339659612, + 38.830314996680606 + ], + [ + -85.92932877486844, + 38.830314996680606 + ], + [ + -86.1407064640046, + 38.51705994246368 + ], + [ + -85.92932877486844, + 38.20380488824676 + ], + [ + -85.50657339659612, + 38.20380488824676 + ], + [ + -85.29519570745997, + 38.51705994246368 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.29519570745997, + 39.14357005089754 + ], + [ + -85.50657339659612, + 39.45682510511446 + ], + [ + -85.92932877486844, + 39.45682510511446 + ], + [ + -86.1407064640046, + 39.14357005089754 + ], + [ + -85.92932877486844, + 38.83031499668061 + ], + [ + -85.50657339659612, + 38.83031499668061 + ], + [ + -85.29519570745997, + 39.14357005089754 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.29519570745997, + 39.77008015933139 + ], + [ + -85.50657339659612, + 40.08333521354832 + ], + [ + -85.92932877486844, + 40.08333521354832 + ], + [ + -86.1407064640046, + 39.77008015933139 + ], + [ + -85.92932877486844, + 39.45682510511447 + ], + [ + -85.50657339659612, + 39.45682510511447 + ], + [ + -85.29519570745997, + 39.77008015933139 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.29519570745997, + 40.39659026776525 + ], + [ + -85.50657339659612, + 40.70984532198217 + ], + [ + -85.92932877486844, + 40.70984532198217 + ], + [ + -86.1407064640046, + 40.39659026776525 + ], + [ + -85.92932877486844, + 40.083335213548324 + ], + [ + -85.50657339659612, + 40.083335213548324 + ], + [ + -85.29519570745997, + 40.39659026776525 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -84.6610626400515, + 31.312193695474356 + ], + [ + -84.87244032918765, + 31.625448749691284 + ], + [ + -85.29519570745997, + 31.625448749691284 + ], + [ + -85.50657339659612, + 31.312193695474356 + ], + [ + -85.29519570745997, + 30.99893864125743 + ], + [ + -84.87244032918765, + 30.99893864125743 + ], + [ + -84.6610626400515, + 31.312193695474356 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -84.6610626400515, + 31.938703803908208 + ], + [ + -84.87244032918765, + 32.251958858125136 + ], + [ + -85.29519570745997, + 32.251958858125136 + ], + [ + -85.50657339659612, + 31.938703803908208 + ], + [ + -85.29519570745997, + 31.62544874969128 + ], + [ + -84.87244032918765, + 31.62544874969128 + ], + [ + -84.6610626400515, + 31.938703803908208 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -84.6610626400515, + 32.56521391234206 + ], + [ + -84.87244032918765, + 32.878468966558984 + ], + [ + -85.29519570745997, + 32.878468966558984 + ], + [ + -85.50657339659612, + 32.56521391234206 + ], + [ + -85.29519570745997, + 32.251958858125136 + ], + [ + -84.87244032918765, + 32.251958858125136 + ], + [ + -84.6610626400515, + 32.56521391234206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -84.6610626400515, + 33.191724020775915 + ], + [ + -84.87244032918765, + 33.50497907499284 + ], + [ + -85.29519570745997, + 33.50497907499284 + ], + [ + -85.50657339659612, + 33.191724020775915 + ], + [ + -85.29519570745997, + 32.87846896655899 + ], + [ + -84.87244032918765, + 32.87846896655899 + ], + [ + -84.6610626400515, + 33.191724020775915 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -84.6610626400515, + 33.81823412920977 + ], + [ + -84.87244032918765, + 34.131489183426694 + ], + [ + -85.29519570745997, + 34.131489183426694 + ], + [ + -85.50657339659612, + 33.81823412920977 + ], + [ + -85.29519570745997, + 33.504979074992846 + ], + [ + -84.87244032918765, + 33.504979074992846 + ], + [ + -84.6610626400515, + 33.81823412920977 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -84.6610626400515, + 34.444744237643626 + ], + [ + -84.87244032918765, + 34.75799929186055 + ], + [ + -85.29519570745997, + 34.75799929186055 + ], + [ + -85.50657339659612, + 34.444744237643626 + ], + [ + -85.29519570745997, + 34.1314891834267 + ], + [ + -84.87244032918765, + 34.1314891834267 + ], + [ + -84.6610626400515, + 34.444744237643626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -84.6610626400515, + 35.07125434607748 + ], + [ + -84.87244032918765, + 35.384509400294405 + ], + [ + -85.29519570745997, + 35.384509400294405 + ], + [ + -85.50657339659612, + 35.07125434607748 + ], + [ + -85.29519570745997, + 34.75799929186056 + ], + [ + -84.87244032918765, + 34.75799929186056 + ], + [ + -84.6610626400515, + 35.07125434607748 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -84.6610626400515, + 35.697764454511336 + ], + [ + -84.87244032918765, + 36.01101950872826 + ], + [ + -85.29519570745997, + 36.01101950872826 + ], + [ + -85.50657339659612, + 35.697764454511336 + ], + [ + -85.29519570745997, + 35.38450940029441 + ], + [ + -84.87244032918765, + 35.38450940029441 + ], + [ + -84.6610626400515, + 35.697764454511336 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -84.6610626400515, + 36.324274562945185 + ], + [ + -84.87244032918765, + 36.63752961716211 + ], + [ + -85.29519570745997, + 36.63752961716211 + ], + [ + -85.50657339659612, + 36.324274562945185 + ], + [ + -85.29519570745997, + 36.01101950872826 + ], + [ + -84.87244032918765, + 36.01101950872826 + ], + [ + -84.6610626400515, + 36.324274562945185 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -84.6610626400515, + 36.95078467137904 + ], + [ + -84.87244032918765, + 37.264039725595964 + ], + [ + -85.29519570745997, + 37.264039725595964 + ], + [ + -85.50657339659612, + 36.95078467137904 + ], + [ + -85.29519570745997, + 36.637529617162116 + ], + [ + -84.87244032918765, + 36.637529617162116 + ], + [ + -84.6610626400515, + 36.95078467137904 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -84.6610626400515, + 37.577294779812895 + ], + [ + -84.87244032918765, + 37.89054983402982 + ], + [ + -85.29519570745997, + 37.89054983402982 + ], + [ + -85.50657339659612, + 37.577294779812895 + ], + [ + -85.29519570745997, + 37.26403972559597 + ], + [ + -84.87244032918765, + 37.26403972559597 + ], + [ + -84.6610626400515, + 37.577294779812895 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -84.6610626400515, + 38.20380488824675 + ], + [ + -84.87244032918765, + 38.517059942463675 + ], + [ + -85.29519570745997, + 38.517059942463675 + ], + [ + -85.50657339659612, + 38.20380488824675 + ], + [ + -85.29519570745997, + 37.89054983402983 + ], + [ + -84.87244032918765, + 37.89054983402983 + ], + [ + -84.6610626400515, + 38.20380488824675 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -84.6610626400515, + 38.830314996680606 + ], + [ + -84.87244032918765, + 39.14357005089753 + ], + [ + -85.29519570745997, + 39.14357005089753 + ], + [ + -85.50657339659612, + 38.830314996680606 + ], + [ + -85.29519570745997, + 38.51705994246368 + ], + [ + -84.87244032918765, + 38.51705994246368 + ], + [ + -84.6610626400515, + 38.830314996680606 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -84.6610626400515, + 39.45682510511446 + ], + [ + -84.87244032918765, + 39.770080159331386 + ], + [ + -85.29519570745997, + 39.770080159331386 + ], + [ + -85.50657339659612, + 39.45682510511446 + ], + [ + -85.29519570745997, + 39.14357005089754 + ], + [ + -84.87244032918765, + 39.14357005089754 + ], + [ + -84.6610626400515, + 39.45682510511446 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -84.6610626400515, + 40.08333521354832 + ], + [ + -84.87244032918765, + 40.39659026776524 + ], + [ + -85.29519570745997, + 40.39659026776524 + ], + [ + -85.50657339659612, + 40.08333521354832 + ], + [ + -85.29519570745997, + 39.77008015933139 + ], + [ + -84.87244032918765, + 39.77008015933139 + ], + [ + -84.6610626400515, + 40.08333521354832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -84.6610626400515, + 40.70984532198217 + ], + [ + -84.87244032918765, + 41.023100376199096 + ], + [ + -85.29519570745997, + 41.023100376199096 + ], + [ + -85.50657339659612, + 40.70984532198217 + ], + [ + -85.29519570745997, + 40.39659026776525 + ], + [ + -84.87244032918765, + 40.39659026776525 + ], + [ + -84.6610626400515, + 40.70984532198217 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "fill-opacity": 0, + "stroke": "#0ff" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.6357421875, + 31.12819929911196 + ], + [ + -84.9462890625, + 31.12819929911196 + ], + [ + -84.9462890625, + 40.58058466412764 + ], + [ + -96.6357421875, + 40.58058466412764 + ], + [ + -96.6357421875, + 31.12819929911196 + ] + ] + ] + } + } + ] +} \ No newline at end of file diff --git a/packages/turf-hex-grid/test/out/grid2.geojson b/packages/turf-hex-grid/test/out/grid2.geojson new file mode 100644 index 0000000000..8378456458 --- /dev/null +++ b/packages/turf-hex-grid/test/out/grid2.geojson @@ -0,0 +1,30264 @@ +{ + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.60708907395546, + 24.942612038041236 + ], + [ + -81.62703273337885, + 24.973937543462927 + ], + [ + -81.6669200522256, + 24.973937543462927 + ], + [ + -81.686863711649, + 24.942612038041236 + ], + [ + -81.6669200522256, + 24.911286532619545 + ], + [ + -81.62703273337885, + 24.911286532619545 + ], + [ + -81.60708907395546, + 24.942612038041236 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.60708907395546, + 25.005263048884622 + ], + [ + -81.62703273337885, + 25.036588554306313 + ], + [ + -81.6669200522256, + 25.036588554306313 + ], + [ + -81.686863711649, + 25.005263048884622 + ], + [ + -81.6669200522256, + 24.97393754346293 + ], + [ + -81.62703273337885, + 24.97393754346293 + ], + [ + -81.60708907395546, + 25.005263048884622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.60708907395546, + 25.067914059728007 + ], + [ + -81.62703273337885, + 25.0992395651497 + ], + [ + -81.6669200522256, + 25.0992395651497 + ], + [ + -81.686863711649, + 25.067914059728007 + ], + [ + -81.6669200522256, + 25.036588554306316 + ], + [ + -81.62703273337885, + 25.036588554306316 + ], + [ + -81.60708907395546, + 25.067914059728007 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.60708907395546, + 25.130565070571393 + ], + [ + -81.62703273337885, + 25.161890575993084 + ], + [ + -81.6669200522256, + 25.161890575993084 + ], + [ + -81.686863711649, + 25.130565070571393 + ], + [ + -81.6669200522256, + 25.099239565149702 + ], + [ + -81.62703273337885, + 25.099239565149702 + ], + [ + -81.60708907395546, + 25.130565070571393 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.60708907395546, + 25.19321608141478 + ], + [ + -81.62703273337885, + 25.22454158683647 + ], + [ + -81.6669200522256, + 25.22454158683647 + ], + [ + -81.686863711649, + 25.19321608141478 + ], + [ + -81.6669200522256, + 25.161890575993088 + ], + [ + -81.62703273337885, + 25.161890575993088 + ], + [ + -81.60708907395546, + 25.19321608141478 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.60708907395546, + 25.255867092258164 + ], + [ + -81.62703273337885, + 25.287192597679855 + ], + [ + -81.6669200522256, + 25.287192597679855 + ], + [ + -81.686863711649, + 25.255867092258164 + ], + [ + -81.6669200522256, + 25.224541586836473 + ], + [ + -81.62703273337885, + 25.224541586836473 + ], + [ + -81.60708907395546, + 25.255867092258164 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.60708907395546, + 25.31851810310155 + ], + [ + -81.62703273337885, + 25.34984360852324 + ], + [ + -81.6669200522256, + 25.34984360852324 + ], + [ + -81.686863711649, + 25.31851810310155 + ], + [ + -81.6669200522256, + 25.28719259767986 + ], + [ + -81.62703273337885, + 25.28719259767986 + ], + [ + -81.60708907395546, + 25.31851810310155 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.60708907395546, + 25.381169113944935 + ], + [ + -81.62703273337885, + 25.412494619366626 + ], + [ + -81.6669200522256, + 25.412494619366626 + ], + [ + -81.686863711649, + 25.381169113944935 + ], + [ + -81.6669200522256, + 25.349843608523244 + ], + [ + -81.62703273337885, + 25.349843608523244 + ], + [ + -81.60708907395546, + 25.381169113944935 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.60708907395546, + 25.44382012478832 + ], + [ + -81.62703273337885, + 25.47514563021001 + ], + [ + -81.6669200522256, + 25.47514563021001 + ], + [ + -81.686863711649, + 25.44382012478832 + ], + [ + -81.6669200522256, + 25.41249461936663 + ], + [ + -81.62703273337885, + 25.41249461936663 + ], + [ + -81.60708907395546, + 25.44382012478832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.60708907395546, + 25.506471135631706 + ], + [ + -81.62703273337885, + 25.537796641053397 + ], + [ + -81.6669200522256, + 25.537796641053397 + ], + [ + -81.686863711649, + 25.506471135631706 + ], + [ + -81.6669200522256, + 25.475145630210015 + ], + [ + -81.62703273337885, + 25.475145630210015 + ], + [ + -81.60708907395546, + 25.506471135631706 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.60708907395546, + 25.56912214647509 + ], + [ + -81.62703273337885, + 25.600447651896783 + ], + [ + -81.6669200522256, + 25.600447651896783 + ], + [ + -81.686863711649, + 25.56912214647509 + ], + [ + -81.6669200522256, + 25.5377966410534 + ], + [ + -81.62703273337885, + 25.5377966410534 + ], + [ + -81.60708907395546, + 25.56912214647509 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.60708907395546, + 25.631773157318477 + ], + [ + -81.62703273337885, + 25.66309866274017 + ], + [ + -81.6669200522256, + 25.66309866274017 + ], + [ + -81.686863711649, + 25.631773157318477 + ], + [ + -81.6669200522256, + 25.600447651896786 + ], + [ + -81.62703273337885, + 25.600447651896786 + ], + [ + -81.60708907395546, + 25.631773157318477 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.60708907395546, + 25.694424168161863 + ], + [ + -81.62703273337885, + 25.725749673583554 + ], + [ + -81.6669200522256, + 25.725749673583554 + ], + [ + -81.686863711649, + 25.694424168161863 + ], + [ + -81.6669200522256, + 25.663098662740172 + ], + [ + -81.62703273337885, + 25.663098662740172 + ], + [ + -81.60708907395546, + 25.694424168161863 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.60708907395546, + 25.75707517900525 + ], + [ + -81.62703273337885, + 25.78840068442694 + ], + [ + -81.6669200522256, + 25.78840068442694 + ], + [ + -81.686863711649, + 25.75707517900525 + ], + [ + -81.6669200522256, + 25.725749673583557 + ], + [ + -81.62703273337885, + 25.725749673583557 + ], + [ + -81.60708907395546, + 25.75707517900525 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.60708907395546, + 25.819726189848634 + ], + [ + -81.62703273337885, + 25.851051695270325 + ], + [ + -81.6669200522256, + 25.851051695270325 + ], + [ + -81.686863711649, + 25.819726189848634 + ], + [ + -81.6669200522256, + 25.788400684426943 + ], + [ + -81.62703273337885, + 25.788400684426943 + ], + [ + -81.60708907395546, + 25.819726189848634 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.60708907395546, + 25.88237720069202 + ], + [ + -81.62703273337885, + 25.91370270611371 + ], + [ + -81.6669200522256, + 25.91370270611371 + ], + [ + -81.686863711649, + 25.88237720069202 + ], + [ + -81.6669200522256, + 25.85105169527033 + ], + [ + -81.62703273337885, + 25.85105169527033 + ], + [ + -81.60708907395546, + 25.88237720069202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.60708907395546, + 25.945028211535405 + ], + [ + -81.62703273337885, + 25.976353716957096 + ], + [ + -81.6669200522256, + 25.976353716957096 + ], + [ + -81.686863711649, + 25.945028211535405 + ], + [ + -81.6669200522256, + 25.913702706113714 + ], + [ + -81.62703273337885, + 25.913702706113714 + ], + [ + -81.60708907395546, + 25.945028211535405 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.60708907395546, + 26.00767922237879 + ], + [ + -81.62703273337885, + 26.03900472780048 + ], + [ + -81.6669200522256, + 26.03900472780048 + ], + [ + -81.686863711649, + 26.00767922237879 + ], + [ + -81.6669200522256, + 25.9763537169571 + ], + [ + -81.62703273337885, + 25.9763537169571 + ], + [ + -81.60708907395546, + 26.00767922237879 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.60708907395546, + 26.070330233222176 + ], + [ + -81.62703273337885, + 26.101655738643867 + ], + [ + -81.6669200522256, + 26.101655738643867 + ], + [ + -81.686863711649, + 26.070330233222176 + ], + [ + -81.6669200522256, + 26.039004727800485 + ], + [ + -81.62703273337885, + 26.039004727800485 + ], + [ + -81.60708907395546, + 26.070330233222176 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.60708907395546, + 26.13298124406556 + ], + [ + -81.62703273337885, + 26.164306749487253 + ], + [ + -81.6669200522256, + 26.164306749487253 + ], + [ + -81.686863711649, + 26.13298124406556 + ], + [ + -81.6669200522256, + 26.10165573864387 + ], + [ + -81.62703273337885, + 26.10165573864387 + ], + [ + -81.60708907395546, + 26.13298124406556 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.60708907395546, + 26.195632254908944 + ], + [ + -81.62703273337885, + 26.226957760330635 + ], + [ + -81.6669200522256, + 26.226957760330635 + ], + [ + -81.686863711649, + 26.195632254908944 + ], + [ + -81.6669200522256, + 26.164306749487253 + ], + [ + -81.62703273337885, + 26.164306749487253 + ], + [ + -81.60708907395546, + 26.195632254908944 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.60708907395546, + 26.258283265752333 + ], + [ + -81.62703273337885, + 26.289608771174024 + ], + [ + -81.6669200522256, + 26.289608771174024 + ], + [ + -81.686863711649, + 26.258283265752333 + ], + [ + -81.6669200522256, + 26.22695776033064 + ], + [ + -81.62703273337885, + 26.22695776033064 + ], + [ + -81.60708907395546, + 26.258283265752333 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.60708907395546, + 26.320934276595715 + ], + [ + -81.62703273337885, + 26.352259782017406 + ], + [ + -81.6669200522256, + 26.352259782017406 + ], + [ + -81.686863711649, + 26.320934276595715 + ], + [ + -81.6669200522256, + 26.289608771174024 + ], + [ + -81.62703273337885, + 26.289608771174024 + ], + [ + -81.60708907395546, + 26.320934276595715 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.60708907395546, + 26.3835852874391 + ], + [ + -81.62703273337885, + 26.41491079286079 + ], + [ + -81.6669200522256, + 26.41491079286079 + ], + [ + -81.686863711649, + 26.3835852874391 + ], + [ + -81.6669200522256, + 26.35225978201741 + ], + [ + -81.62703273337885, + 26.35225978201741 + ], + [ + -81.60708907395546, + 26.3835852874391 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.60708907395546, + 26.446236298282486 + ], + [ + -81.62703273337885, + 26.477561803704177 + ], + [ + -81.6669200522256, + 26.477561803704177 + ], + [ + -81.686863711649, + 26.446236298282486 + ], + [ + -81.6669200522256, + 26.414910792860795 + ], + [ + -81.62703273337885, + 26.414910792860795 + ], + [ + -81.60708907395546, + 26.446236298282486 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.54725809568532, + 24.911286532619545 + ], + [ + -81.56720175510871, + 24.942612038041236 + ], + [ + -81.60708907395546, + 24.942612038041236 + ], + [ + -81.62703273337885, + 24.911286532619545 + ], + [ + -81.60708907395546, + 24.879961027197854 + ], + [ + -81.56720175510871, + 24.879961027197854 + ], + [ + -81.54725809568532, + 24.911286532619545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.54725809568532, + 24.97393754346293 + ], + [ + -81.56720175510871, + 25.005263048884622 + ], + [ + -81.60708907395546, + 25.005263048884622 + ], + [ + -81.62703273337885, + 24.97393754346293 + ], + [ + -81.60708907395546, + 24.94261203804124 + ], + [ + -81.56720175510871, + 24.94261203804124 + ], + [ + -81.54725809568532, + 24.97393754346293 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.54725809568532, + 25.036588554306316 + ], + [ + -81.56720175510871, + 25.067914059728007 + ], + [ + -81.60708907395546, + 25.067914059728007 + ], + [ + -81.62703273337885, + 25.036588554306316 + ], + [ + -81.60708907395546, + 25.005263048884625 + ], + [ + -81.56720175510871, + 25.005263048884625 + ], + [ + -81.54725809568532, + 25.036588554306316 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.54725809568532, + 25.099239565149702 + ], + [ + -81.56720175510871, + 25.130565070571393 + ], + [ + -81.60708907395546, + 25.130565070571393 + ], + [ + -81.62703273337885, + 25.099239565149702 + ], + [ + -81.60708907395546, + 25.06791405972801 + ], + [ + -81.56720175510871, + 25.06791405972801 + ], + [ + -81.54725809568532, + 25.099239565149702 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.54725809568532, + 25.161890575993088 + ], + [ + -81.56720175510871, + 25.19321608141478 + ], + [ + -81.60708907395546, + 25.19321608141478 + ], + [ + -81.62703273337885, + 25.161890575993088 + ], + [ + -81.60708907395546, + 25.130565070571397 + ], + [ + -81.56720175510871, + 25.130565070571397 + ], + [ + -81.54725809568532, + 25.161890575993088 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.54725809568532, + 25.224541586836473 + ], + [ + -81.56720175510871, + 25.255867092258164 + ], + [ + -81.60708907395546, + 25.255867092258164 + ], + [ + -81.62703273337885, + 25.224541586836473 + ], + [ + -81.60708907395546, + 25.193216081414782 + ], + [ + -81.56720175510871, + 25.193216081414782 + ], + [ + -81.54725809568532, + 25.224541586836473 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.54725809568532, + 25.28719259767986 + ], + [ + -81.56720175510871, + 25.31851810310155 + ], + [ + -81.60708907395546, + 25.31851810310155 + ], + [ + -81.62703273337885, + 25.28719259767986 + ], + [ + -81.60708907395546, + 25.255867092258168 + ], + [ + -81.56720175510871, + 25.255867092258168 + ], + [ + -81.54725809568532, + 25.28719259767986 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.54725809568532, + 25.349843608523244 + ], + [ + -81.56720175510871, + 25.381169113944935 + ], + [ + -81.60708907395546, + 25.381169113944935 + ], + [ + -81.62703273337885, + 25.349843608523244 + ], + [ + -81.60708907395546, + 25.318518103101553 + ], + [ + -81.56720175510871, + 25.318518103101553 + ], + [ + -81.54725809568532, + 25.349843608523244 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.54725809568532, + 25.41249461936663 + ], + [ + -81.56720175510871, + 25.44382012478832 + ], + [ + -81.60708907395546, + 25.44382012478832 + ], + [ + -81.62703273337885, + 25.41249461936663 + ], + [ + -81.60708907395546, + 25.38116911394494 + ], + [ + -81.56720175510871, + 25.38116911394494 + ], + [ + -81.54725809568532, + 25.41249461936663 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.54725809568532, + 25.475145630210015 + ], + [ + -81.56720175510871, + 25.506471135631706 + ], + [ + -81.60708907395546, + 25.506471135631706 + ], + [ + -81.62703273337885, + 25.475145630210015 + ], + [ + -81.60708907395546, + 25.443820124788324 + ], + [ + -81.56720175510871, + 25.443820124788324 + ], + [ + -81.54725809568532, + 25.475145630210015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.54725809568532, + 25.5377966410534 + ], + [ + -81.56720175510871, + 25.56912214647509 + ], + [ + -81.60708907395546, + 25.56912214647509 + ], + [ + -81.62703273337885, + 25.5377966410534 + ], + [ + -81.60708907395546, + 25.50647113563171 + ], + [ + -81.56720175510871, + 25.50647113563171 + ], + [ + -81.54725809568532, + 25.5377966410534 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.54725809568532, + 25.600447651896786 + ], + [ + -81.56720175510871, + 25.631773157318477 + ], + [ + -81.60708907395546, + 25.631773157318477 + ], + [ + -81.62703273337885, + 25.600447651896786 + ], + [ + -81.60708907395546, + 25.569122146475095 + ], + [ + -81.56720175510871, + 25.569122146475095 + ], + [ + -81.54725809568532, + 25.600447651896786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.54725809568532, + 25.663098662740172 + ], + [ + -81.56720175510871, + 25.694424168161863 + ], + [ + -81.60708907395546, + 25.694424168161863 + ], + [ + -81.62703273337885, + 25.663098662740172 + ], + [ + -81.60708907395546, + 25.63177315731848 + ], + [ + -81.56720175510871, + 25.63177315731848 + ], + [ + -81.54725809568532, + 25.663098662740172 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.54725809568532, + 25.725749673583557 + ], + [ + -81.56720175510871, + 25.75707517900525 + ], + [ + -81.60708907395546, + 25.75707517900525 + ], + [ + -81.62703273337885, + 25.725749673583557 + ], + [ + -81.60708907395546, + 25.694424168161866 + ], + [ + -81.56720175510871, + 25.694424168161866 + ], + [ + -81.54725809568532, + 25.725749673583557 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.54725809568532, + 25.788400684426943 + ], + [ + -81.56720175510871, + 25.819726189848634 + ], + [ + -81.60708907395546, + 25.819726189848634 + ], + [ + -81.62703273337885, + 25.788400684426943 + ], + [ + -81.60708907395546, + 25.757075179005252 + ], + [ + -81.56720175510871, + 25.757075179005252 + ], + [ + -81.54725809568532, + 25.788400684426943 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.54725809568532, + 25.85105169527033 + ], + [ + -81.56720175510871, + 25.88237720069202 + ], + [ + -81.60708907395546, + 25.88237720069202 + ], + [ + -81.62703273337885, + 25.85105169527033 + ], + [ + -81.60708907395546, + 25.819726189848637 + ], + [ + -81.56720175510871, + 25.819726189848637 + ], + [ + -81.54725809568532, + 25.85105169527033 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.54725809568532, + 25.913702706113714 + ], + [ + -81.56720175510871, + 25.945028211535405 + ], + [ + -81.60708907395546, + 25.945028211535405 + ], + [ + -81.62703273337885, + 25.913702706113714 + ], + [ + -81.60708907395546, + 25.882377200692023 + ], + [ + -81.56720175510871, + 25.882377200692023 + ], + [ + -81.54725809568532, + 25.913702706113714 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.54725809568532, + 25.9763537169571 + ], + [ + -81.56720175510871, + 26.00767922237879 + ], + [ + -81.60708907395546, + 26.00767922237879 + ], + [ + -81.62703273337885, + 25.9763537169571 + ], + [ + -81.60708907395546, + 25.94502821153541 + ], + [ + -81.56720175510871, + 25.94502821153541 + ], + [ + -81.54725809568532, + 25.9763537169571 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.54725809568532, + 26.039004727800485 + ], + [ + -81.56720175510871, + 26.070330233222176 + ], + [ + -81.60708907395546, + 26.070330233222176 + ], + [ + -81.62703273337885, + 26.039004727800485 + ], + [ + -81.60708907395546, + 26.007679222378794 + ], + [ + -81.56720175510871, + 26.007679222378794 + ], + [ + -81.54725809568532, + 26.039004727800485 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.54725809568532, + 26.10165573864387 + ], + [ + -81.56720175510871, + 26.13298124406556 + ], + [ + -81.60708907395546, + 26.13298124406556 + ], + [ + -81.62703273337885, + 26.10165573864387 + ], + [ + -81.60708907395546, + 26.07033023322218 + ], + [ + -81.56720175510871, + 26.07033023322218 + ], + [ + -81.54725809568532, + 26.10165573864387 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.54725809568532, + 26.164306749487253 + ], + [ + -81.56720175510871, + 26.195632254908944 + ], + [ + -81.60708907395546, + 26.195632254908944 + ], + [ + -81.62703273337885, + 26.164306749487253 + ], + [ + -81.60708907395546, + 26.13298124406556 + ], + [ + -81.56720175510871, + 26.13298124406556 + ], + [ + -81.54725809568532, + 26.164306749487253 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.54725809568532, + 26.22695776033064 + ], + [ + -81.56720175510871, + 26.258283265752333 + ], + [ + -81.60708907395546, + 26.258283265752333 + ], + [ + -81.62703273337885, + 26.22695776033064 + ], + [ + -81.60708907395546, + 26.19563225490895 + ], + [ + -81.56720175510871, + 26.19563225490895 + ], + [ + -81.54725809568532, + 26.22695776033064 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.54725809568532, + 26.289608771174024 + ], + [ + -81.56720175510871, + 26.320934276595715 + ], + [ + -81.60708907395546, + 26.320934276595715 + ], + [ + -81.62703273337885, + 26.289608771174024 + ], + [ + -81.60708907395546, + 26.258283265752333 + ], + [ + -81.56720175510871, + 26.258283265752333 + ], + [ + -81.54725809568532, + 26.289608771174024 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.54725809568532, + 26.35225978201741 + ], + [ + -81.56720175510871, + 26.3835852874391 + ], + [ + -81.60708907395546, + 26.3835852874391 + ], + [ + -81.62703273337885, + 26.35225978201741 + ], + [ + -81.60708907395546, + 26.320934276595718 + ], + [ + -81.56720175510871, + 26.320934276595718 + ], + [ + -81.54725809568532, + 26.35225978201741 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.54725809568532, + 26.414910792860795 + ], + [ + -81.56720175510871, + 26.446236298282486 + ], + [ + -81.60708907395546, + 26.446236298282486 + ], + [ + -81.62703273337885, + 26.414910792860795 + ], + [ + -81.60708907395546, + 26.383585287439104 + ], + [ + -81.56720175510871, + 26.383585287439104 + ], + [ + -81.54725809568532, + 26.414910792860795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.48742711741517, + 24.942612038041236 + ], + [ + -81.50737077683856, + 24.973937543462927 + ], + [ + -81.54725809568531, + 24.973937543462927 + ], + [ + -81.5672017551087, + 24.942612038041236 + ], + [ + -81.54725809568531, + 24.911286532619545 + ], + [ + -81.50737077683856, + 24.911286532619545 + ], + [ + -81.48742711741517, + 24.942612038041236 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.48742711741517, + 25.005263048884622 + ], + [ + -81.50737077683856, + 25.036588554306313 + ], + [ + -81.54725809568531, + 25.036588554306313 + ], + [ + -81.5672017551087, + 25.005263048884622 + ], + [ + -81.54725809568531, + 24.97393754346293 + ], + [ + -81.50737077683856, + 24.97393754346293 + ], + [ + -81.48742711741517, + 25.005263048884622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.48742711741517, + 25.067914059728007 + ], + [ + -81.50737077683856, + 25.0992395651497 + ], + [ + -81.54725809568531, + 25.0992395651497 + ], + [ + -81.5672017551087, + 25.067914059728007 + ], + [ + -81.54725809568531, + 25.036588554306316 + ], + [ + -81.50737077683856, + 25.036588554306316 + ], + [ + -81.48742711741517, + 25.067914059728007 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.48742711741517, + 25.130565070571393 + ], + [ + -81.50737077683856, + 25.161890575993084 + ], + [ + -81.54725809568531, + 25.161890575993084 + ], + [ + -81.5672017551087, + 25.130565070571393 + ], + [ + -81.54725809568531, + 25.099239565149702 + ], + [ + -81.50737077683856, + 25.099239565149702 + ], + [ + -81.48742711741517, + 25.130565070571393 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.48742711741517, + 25.19321608141478 + ], + [ + -81.50737077683856, + 25.22454158683647 + ], + [ + -81.54725809568531, + 25.22454158683647 + ], + [ + -81.5672017551087, + 25.19321608141478 + ], + [ + -81.54725809568531, + 25.161890575993088 + ], + [ + -81.50737077683856, + 25.161890575993088 + ], + [ + -81.48742711741517, + 25.19321608141478 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.48742711741517, + 25.255867092258164 + ], + [ + -81.50737077683856, + 25.287192597679855 + ], + [ + -81.54725809568531, + 25.287192597679855 + ], + [ + -81.5672017551087, + 25.255867092258164 + ], + [ + -81.54725809568531, + 25.224541586836473 + ], + [ + -81.50737077683856, + 25.224541586836473 + ], + [ + -81.48742711741517, + 25.255867092258164 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.48742711741517, + 25.31851810310155 + ], + [ + -81.50737077683856, + 25.34984360852324 + ], + [ + -81.54725809568531, + 25.34984360852324 + ], + [ + -81.5672017551087, + 25.31851810310155 + ], + [ + -81.54725809568531, + 25.28719259767986 + ], + [ + -81.50737077683856, + 25.28719259767986 + ], + [ + -81.48742711741517, + 25.31851810310155 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.48742711741517, + 25.381169113944935 + ], + [ + -81.50737077683856, + 25.412494619366626 + ], + [ + -81.54725809568531, + 25.412494619366626 + ], + [ + -81.5672017551087, + 25.381169113944935 + ], + [ + -81.54725809568531, + 25.349843608523244 + ], + [ + -81.50737077683856, + 25.349843608523244 + ], + [ + -81.48742711741517, + 25.381169113944935 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.48742711741517, + 25.44382012478832 + ], + [ + -81.50737077683856, + 25.47514563021001 + ], + [ + -81.54725809568531, + 25.47514563021001 + ], + [ + -81.5672017551087, + 25.44382012478832 + ], + [ + -81.54725809568531, + 25.41249461936663 + ], + [ + -81.50737077683856, + 25.41249461936663 + ], + [ + -81.48742711741517, + 25.44382012478832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.48742711741517, + 25.506471135631706 + ], + [ + -81.50737077683856, + 25.537796641053397 + ], + [ + -81.54725809568531, + 25.537796641053397 + ], + [ + -81.5672017551087, + 25.506471135631706 + ], + [ + -81.54725809568531, + 25.475145630210015 + ], + [ + -81.50737077683856, + 25.475145630210015 + ], + [ + -81.48742711741517, + 25.506471135631706 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.48742711741517, + 25.56912214647509 + ], + [ + -81.50737077683856, + 25.600447651896783 + ], + [ + -81.54725809568531, + 25.600447651896783 + ], + [ + -81.5672017551087, + 25.56912214647509 + ], + [ + -81.54725809568531, + 25.5377966410534 + ], + [ + -81.50737077683856, + 25.5377966410534 + ], + [ + -81.48742711741517, + 25.56912214647509 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.48742711741517, + 25.631773157318477 + ], + [ + -81.50737077683856, + 25.66309866274017 + ], + [ + -81.54725809568531, + 25.66309866274017 + ], + [ + -81.5672017551087, + 25.631773157318477 + ], + [ + -81.54725809568531, + 25.600447651896786 + ], + [ + -81.50737077683856, + 25.600447651896786 + ], + [ + -81.48742711741517, + 25.631773157318477 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.48742711741517, + 25.694424168161863 + ], + [ + -81.50737077683856, + 25.725749673583554 + ], + [ + -81.54725809568531, + 25.725749673583554 + ], + [ + -81.5672017551087, + 25.694424168161863 + ], + [ + -81.54725809568531, + 25.663098662740172 + ], + [ + -81.50737077683856, + 25.663098662740172 + ], + [ + -81.48742711741517, + 25.694424168161863 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.48742711741517, + 25.75707517900525 + ], + [ + -81.50737077683856, + 25.78840068442694 + ], + [ + -81.54725809568531, + 25.78840068442694 + ], + [ + -81.5672017551087, + 25.75707517900525 + ], + [ + -81.54725809568531, + 25.725749673583557 + ], + [ + -81.50737077683856, + 25.725749673583557 + ], + [ + -81.48742711741517, + 25.75707517900525 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.48742711741517, + 25.819726189848634 + ], + [ + -81.50737077683856, + 25.851051695270325 + ], + [ + -81.54725809568531, + 25.851051695270325 + ], + [ + -81.5672017551087, + 25.819726189848634 + ], + [ + -81.54725809568531, + 25.788400684426943 + ], + [ + -81.50737077683856, + 25.788400684426943 + ], + [ + -81.48742711741517, + 25.819726189848634 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.48742711741517, + 25.88237720069202 + ], + [ + -81.50737077683856, + 25.91370270611371 + ], + [ + -81.54725809568531, + 25.91370270611371 + ], + [ + -81.5672017551087, + 25.88237720069202 + ], + [ + -81.54725809568531, + 25.85105169527033 + ], + [ + -81.50737077683856, + 25.85105169527033 + ], + [ + -81.48742711741517, + 25.88237720069202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.48742711741517, + 25.945028211535405 + ], + [ + -81.50737077683856, + 25.976353716957096 + ], + [ + -81.54725809568531, + 25.976353716957096 + ], + [ + -81.5672017551087, + 25.945028211535405 + ], + [ + -81.54725809568531, + 25.913702706113714 + ], + [ + -81.50737077683856, + 25.913702706113714 + ], + [ + -81.48742711741517, + 25.945028211535405 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.48742711741517, + 26.00767922237879 + ], + [ + -81.50737077683856, + 26.03900472780048 + ], + [ + -81.54725809568531, + 26.03900472780048 + ], + [ + -81.5672017551087, + 26.00767922237879 + ], + [ + -81.54725809568531, + 25.9763537169571 + ], + [ + -81.50737077683856, + 25.9763537169571 + ], + [ + -81.48742711741517, + 26.00767922237879 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.48742711741517, + 26.070330233222176 + ], + [ + -81.50737077683856, + 26.101655738643867 + ], + [ + -81.54725809568531, + 26.101655738643867 + ], + [ + -81.5672017551087, + 26.070330233222176 + ], + [ + -81.54725809568531, + 26.039004727800485 + ], + [ + -81.50737077683856, + 26.039004727800485 + ], + [ + -81.48742711741517, + 26.070330233222176 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.48742711741517, + 26.13298124406556 + ], + [ + -81.50737077683856, + 26.164306749487253 + ], + [ + -81.54725809568531, + 26.164306749487253 + ], + [ + -81.5672017551087, + 26.13298124406556 + ], + [ + -81.54725809568531, + 26.10165573864387 + ], + [ + -81.50737077683856, + 26.10165573864387 + ], + [ + -81.48742711741517, + 26.13298124406556 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.48742711741517, + 26.195632254908944 + ], + [ + -81.50737077683856, + 26.226957760330635 + ], + [ + -81.54725809568531, + 26.226957760330635 + ], + [ + -81.5672017551087, + 26.195632254908944 + ], + [ + -81.54725809568531, + 26.164306749487253 + ], + [ + -81.50737077683856, + 26.164306749487253 + ], + [ + -81.48742711741517, + 26.195632254908944 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.48742711741517, + 26.258283265752333 + ], + [ + -81.50737077683856, + 26.289608771174024 + ], + [ + -81.54725809568531, + 26.289608771174024 + ], + [ + -81.5672017551087, + 26.258283265752333 + ], + [ + -81.54725809568531, + 26.22695776033064 + ], + [ + -81.50737077683856, + 26.22695776033064 + ], + [ + -81.48742711741517, + 26.258283265752333 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.48742711741517, + 26.320934276595715 + ], + [ + -81.50737077683856, + 26.352259782017406 + ], + [ + -81.54725809568531, + 26.352259782017406 + ], + [ + -81.5672017551087, + 26.320934276595715 + ], + [ + -81.54725809568531, + 26.289608771174024 + ], + [ + -81.50737077683856, + 26.289608771174024 + ], + [ + -81.48742711741517, + 26.320934276595715 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.48742711741517, + 26.3835852874391 + ], + [ + -81.50737077683856, + 26.41491079286079 + ], + [ + -81.54725809568531, + 26.41491079286079 + ], + [ + -81.5672017551087, + 26.3835852874391 + ], + [ + -81.54725809568531, + 26.35225978201741 + ], + [ + -81.50737077683856, + 26.35225978201741 + ], + [ + -81.48742711741517, + 26.3835852874391 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.48742711741517, + 26.446236298282486 + ], + [ + -81.50737077683856, + 26.477561803704177 + ], + [ + -81.54725809568531, + 26.477561803704177 + ], + [ + -81.5672017551087, + 26.446236298282486 + ], + [ + -81.54725809568531, + 26.414910792860795 + ], + [ + -81.50737077683856, + 26.414910792860795 + ], + [ + -81.48742711741517, + 26.446236298282486 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.42759613914502, + 24.911286532619545 + ], + [ + -81.44753979856841, + 24.942612038041236 + ], + [ + -81.48742711741517, + 24.942612038041236 + ], + [ + -81.50737077683856, + 24.911286532619545 + ], + [ + -81.48742711741517, + 24.879961027197854 + ], + [ + -81.44753979856841, + 24.879961027197854 + ], + [ + -81.42759613914502, + 24.911286532619545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.42759613914502, + 24.97393754346293 + ], + [ + -81.44753979856841, + 25.005263048884622 + ], + [ + -81.48742711741517, + 25.005263048884622 + ], + [ + -81.50737077683856, + 24.97393754346293 + ], + [ + -81.48742711741517, + 24.94261203804124 + ], + [ + -81.44753979856841, + 24.94261203804124 + ], + [ + -81.42759613914502, + 24.97393754346293 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.42759613914502, + 25.036588554306316 + ], + [ + -81.44753979856841, + 25.067914059728007 + ], + [ + -81.48742711741517, + 25.067914059728007 + ], + [ + -81.50737077683856, + 25.036588554306316 + ], + [ + -81.48742711741517, + 25.005263048884625 + ], + [ + -81.44753979856841, + 25.005263048884625 + ], + [ + -81.42759613914502, + 25.036588554306316 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.42759613914502, + 25.099239565149702 + ], + [ + -81.44753979856841, + 25.130565070571393 + ], + [ + -81.48742711741517, + 25.130565070571393 + ], + [ + -81.50737077683856, + 25.099239565149702 + ], + [ + -81.48742711741517, + 25.06791405972801 + ], + [ + -81.44753979856841, + 25.06791405972801 + ], + [ + -81.42759613914502, + 25.099239565149702 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.42759613914502, + 25.161890575993088 + ], + [ + -81.44753979856841, + 25.19321608141478 + ], + [ + -81.48742711741517, + 25.19321608141478 + ], + [ + -81.50737077683856, + 25.161890575993088 + ], + [ + -81.48742711741517, + 25.130565070571397 + ], + [ + -81.44753979856841, + 25.130565070571397 + ], + [ + -81.42759613914502, + 25.161890575993088 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.42759613914502, + 25.224541586836473 + ], + [ + -81.44753979856841, + 25.255867092258164 + ], + [ + -81.48742711741517, + 25.255867092258164 + ], + [ + -81.50737077683856, + 25.224541586836473 + ], + [ + -81.48742711741517, + 25.193216081414782 + ], + [ + -81.44753979856841, + 25.193216081414782 + ], + [ + -81.42759613914502, + 25.224541586836473 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.42759613914502, + 25.28719259767986 + ], + [ + -81.44753979856841, + 25.31851810310155 + ], + [ + -81.48742711741517, + 25.31851810310155 + ], + [ + -81.50737077683856, + 25.28719259767986 + ], + [ + -81.48742711741517, + 25.255867092258168 + ], + [ + -81.44753979856841, + 25.255867092258168 + ], + [ + -81.42759613914502, + 25.28719259767986 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.42759613914502, + 25.349843608523244 + ], + [ + -81.44753979856841, + 25.381169113944935 + ], + [ + -81.48742711741517, + 25.381169113944935 + ], + [ + -81.50737077683856, + 25.349843608523244 + ], + [ + -81.48742711741517, + 25.318518103101553 + ], + [ + -81.44753979856841, + 25.318518103101553 + ], + [ + -81.42759613914502, + 25.349843608523244 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.42759613914502, + 25.41249461936663 + ], + [ + -81.44753979856841, + 25.44382012478832 + ], + [ + -81.48742711741517, + 25.44382012478832 + ], + [ + -81.50737077683856, + 25.41249461936663 + ], + [ + -81.48742711741517, + 25.38116911394494 + ], + [ + -81.44753979856841, + 25.38116911394494 + ], + [ + -81.42759613914502, + 25.41249461936663 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.42759613914502, + 25.475145630210015 + ], + [ + -81.44753979856841, + 25.506471135631706 + ], + [ + -81.48742711741517, + 25.506471135631706 + ], + [ + -81.50737077683856, + 25.475145630210015 + ], + [ + -81.48742711741517, + 25.443820124788324 + ], + [ + -81.44753979856841, + 25.443820124788324 + ], + [ + -81.42759613914502, + 25.475145630210015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.42759613914502, + 25.5377966410534 + ], + [ + -81.44753979856841, + 25.56912214647509 + ], + [ + -81.48742711741517, + 25.56912214647509 + ], + [ + -81.50737077683856, + 25.5377966410534 + ], + [ + -81.48742711741517, + 25.50647113563171 + ], + [ + -81.44753979856841, + 25.50647113563171 + ], + [ + -81.42759613914502, + 25.5377966410534 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.42759613914502, + 25.600447651896786 + ], + [ + -81.44753979856841, + 25.631773157318477 + ], + [ + -81.48742711741517, + 25.631773157318477 + ], + [ + -81.50737077683856, + 25.600447651896786 + ], + [ + -81.48742711741517, + 25.569122146475095 + ], + [ + -81.44753979856841, + 25.569122146475095 + ], + [ + -81.42759613914502, + 25.600447651896786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.42759613914502, + 25.663098662740172 + ], + [ + -81.44753979856841, + 25.694424168161863 + ], + [ + -81.48742711741517, + 25.694424168161863 + ], + [ + -81.50737077683856, + 25.663098662740172 + ], + [ + -81.48742711741517, + 25.63177315731848 + ], + [ + -81.44753979856841, + 25.63177315731848 + ], + [ + -81.42759613914502, + 25.663098662740172 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.42759613914502, + 25.725749673583557 + ], + [ + -81.44753979856841, + 25.75707517900525 + ], + [ + -81.48742711741517, + 25.75707517900525 + ], + [ + -81.50737077683856, + 25.725749673583557 + ], + [ + -81.48742711741517, + 25.694424168161866 + ], + [ + -81.44753979856841, + 25.694424168161866 + ], + [ + -81.42759613914502, + 25.725749673583557 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.42759613914502, + 25.788400684426943 + ], + [ + -81.44753979856841, + 25.819726189848634 + ], + [ + -81.48742711741517, + 25.819726189848634 + ], + [ + -81.50737077683856, + 25.788400684426943 + ], + [ + -81.48742711741517, + 25.757075179005252 + ], + [ + -81.44753979856841, + 25.757075179005252 + ], + [ + -81.42759613914502, + 25.788400684426943 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.42759613914502, + 25.85105169527033 + ], + [ + -81.44753979856841, + 25.88237720069202 + ], + [ + -81.48742711741517, + 25.88237720069202 + ], + [ + -81.50737077683856, + 25.85105169527033 + ], + [ + -81.48742711741517, + 25.819726189848637 + ], + [ + -81.44753979856841, + 25.819726189848637 + ], + [ + -81.42759613914502, + 25.85105169527033 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.42759613914502, + 25.913702706113714 + ], + [ + -81.44753979856841, + 25.945028211535405 + ], + [ + -81.48742711741517, + 25.945028211535405 + ], + [ + -81.50737077683856, + 25.913702706113714 + ], + [ + -81.48742711741517, + 25.882377200692023 + ], + [ + -81.44753979856841, + 25.882377200692023 + ], + [ + -81.42759613914502, + 25.913702706113714 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.42759613914502, + 25.9763537169571 + ], + [ + -81.44753979856841, + 26.00767922237879 + ], + [ + -81.48742711741517, + 26.00767922237879 + ], + [ + -81.50737077683856, + 25.9763537169571 + ], + [ + -81.48742711741517, + 25.94502821153541 + ], + [ + -81.44753979856841, + 25.94502821153541 + ], + [ + -81.42759613914502, + 25.9763537169571 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.42759613914502, + 26.039004727800485 + ], + [ + -81.44753979856841, + 26.070330233222176 + ], + [ + -81.48742711741517, + 26.070330233222176 + ], + [ + -81.50737077683856, + 26.039004727800485 + ], + [ + -81.48742711741517, + 26.007679222378794 + ], + [ + -81.44753979856841, + 26.007679222378794 + ], + [ + -81.42759613914502, + 26.039004727800485 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.42759613914502, + 26.10165573864387 + ], + [ + -81.44753979856841, + 26.13298124406556 + ], + [ + -81.48742711741517, + 26.13298124406556 + ], + [ + -81.50737077683856, + 26.10165573864387 + ], + [ + -81.48742711741517, + 26.07033023322218 + ], + [ + -81.44753979856841, + 26.07033023322218 + ], + [ + -81.42759613914502, + 26.10165573864387 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.42759613914502, + 26.164306749487253 + ], + [ + -81.44753979856841, + 26.195632254908944 + ], + [ + -81.48742711741517, + 26.195632254908944 + ], + [ + -81.50737077683856, + 26.164306749487253 + ], + [ + -81.48742711741517, + 26.13298124406556 + ], + [ + -81.44753979856841, + 26.13298124406556 + ], + [ + -81.42759613914502, + 26.164306749487253 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.42759613914502, + 26.22695776033064 + ], + [ + -81.44753979856841, + 26.258283265752333 + ], + [ + -81.48742711741517, + 26.258283265752333 + ], + [ + -81.50737077683856, + 26.22695776033064 + ], + [ + -81.48742711741517, + 26.19563225490895 + ], + [ + -81.44753979856841, + 26.19563225490895 + ], + [ + -81.42759613914502, + 26.22695776033064 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.42759613914502, + 26.289608771174024 + ], + [ + -81.44753979856841, + 26.320934276595715 + ], + [ + -81.48742711741517, + 26.320934276595715 + ], + [ + -81.50737077683856, + 26.289608771174024 + ], + [ + -81.48742711741517, + 26.258283265752333 + ], + [ + -81.44753979856841, + 26.258283265752333 + ], + [ + -81.42759613914502, + 26.289608771174024 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.42759613914502, + 26.35225978201741 + ], + [ + -81.44753979856841, + 26.3835852874391 + ], + [ + -81.48742711741517, + 26.3835852874391 + ], + [ + -81.50737077683856, + 26.35225978201741 + ], + [ + -81.48742711741517, + 26.320934276595718 + ], + [ + -81.44753979856841, + 26.320934276595718 + ], + [ + -81.42759613914502, + 26.35225978201741 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.42759613914502, + 26.414910792860795 + ], + [ + -81.44753979856841, + 26.446236298282486 + ], + [ + -81.48742711741517, + 26.446236298282486 + ], + [ + -81.50737077683856, + 26.414910792860795 + ], + [ + -81.48742711741517, + 26.383585287439104 + ], + [ + -81.44753979856841, + 26.383585287439104 + ], + [ + -81.42759613914502, + 26.414910792860795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.36776516087487, + 24.942612038041236 + ], + [ + -81.38770882029826, + 24.973937543462927 + ], + [ + -81.42759613914501, + 24.973937543462927 + ], + [ + -81.4475397985684, + 24.942612038041236 + ], + [ + -81.42759613914501, + 24.911286532619545 + ], + [ + -81.38770882029826, + 24.911286532619545 + ], + [ + -81.36776516087487, + 24.942612038041236 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.36776516087487, + 25.005263048884622 + ], + [ + -81.38770882029826, + 25.036588554306313 + ], + [ + -81.42759613914501, + 25.036588554306313 + ], + [ + -81.4475397985684, + 25.005263048884622 + ], + [ + -81.42759613914501, + 24.97393754346293 + ], + [ + -81.38770882029826, + 24.97393754346293 + ], + [ + -81.36776516087487, + 25.005263048884622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.36776516087487, + 25.067914059728007 + ], + [ + -81.38770882029826, + 25.0992395651497 + ], + [ + -81.42759613914501, + 25.0992395651497 + ], + [ + -81.4475397985684, + 25.067914059728007 + ], + [ + -81.42759613914501, + 25.036588554306316 + ], + [ + -81.38770882029826, + 25.036588554306316 + ], + [ + -81.36776516087487, + 25.067914059728007 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.36776516087487, + 25.130565070571393 + ], + [ + -81.38770882029826, + 25.161890575993084 + ], + [ + -81.42759613914501, + 25.161890575993084 + ], + [ + -81.4475397985684, + 25.130565070571393 + ], + [ + -81.42759613914501, + 25.099239565149702 + ], + [ + -81.38770882029826, + 25.099239565149702 + ], + [ + -81.36776516087487, + 25.130565070571393 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.36776516087487, + 25.19321608141478 + ], + [ + -81.38770882029826, + 25.22454158683647 + ], + [ + -81.42759613914501, + 25.22454158683647 + ], + [ + -81.4475397985684, + 25.19321608141478 + ], + [ + -81.42759613914501, + 25.161890575993088 + ], + [ + -81.38770882029826, + 25.161890575993088 + ], + [ + -81.36776516087487, + 25.19321608141478 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.36776516087487, + 25.255867092258164 + ], + [ + -81.38770882029826, + 25.287192597679855 + ], + [ + -81.42759613914501, + 25.287192597679855 + ], + [ + -81.4475397985684, + 25.255867092258164 + ], + [ + -81.42759613914501, + 25.224541586836473 + ], + [ + -81.38770882029826, + 25.224541586836473 + ], + [ + -81.36776516087487, + 25.255867092258164 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.36776516087487, + 25.31851810310155 + ], + [ + -81.38770882029826, + 25.34984360852324 + ], + [ + -81.42759613914501, + 25.34984360852324 + ], + [ + -81.4475397985684, + 25.31851810310155 + ], + [ + -81.42759613914501, + 25.28719259767986 + ], + [ + -81.38770882029826, + 25.28719259767986 + ], + [ + -81.36776516087487, + 25.31851810310155 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.36776516087487, + 25.381169113944935 + ], + [ + -81.38770882029826, + 25.412494619366626 + ], + [ + -81.42759613914501, + 25.412494619366626 + ], + [ + -81.4475397985684, + 25.381169113944935 + ], + [ + -81.42759613914501, + 25.349843608523244 + ], + [ + -81.38770882029826, + 25.349843608523244 + ], + [ + -81.36776516087487, + 25.381169113944935 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.36776516087487, + 25.44382012478832 + ], + [ + -81.38770882029826, + 25.47514563021001 + ], + [ + -81.42759613914501, + 25.47514563021001 + ], + [ + -81.4475397985684, + 25.44382012478832 + ], + [ + -81.42759613914501, + 25.41249461936663 + ], + [ + -81.38770882029826, + 25.41249461936663 + ], + [ + -81.36776516087487, + 25.44382012478832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.36776516087487, + 25.506471135631706 + ], + [ + -81.38770882029826, + 25.537796641053397 + ], + [ + -81.42759613914501, + 25.537796641053397 + ], + [ + -81.4475397985684, + 25.506471135631706 + ], + [ + -81.42759613914501, + 25.475145630210015 + ], + [ + -81.38770882029826, + 25.475145630210015 + ], + [ + -81.36776516087487, + 25.506471135631706 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.36776516087487, + 25.56912214647509 + ], + [ + -81.38770882029826, + 25.600447651896783 + ], + [ + -81.42759613914501, + 25.600447651896783 + ], + [ + -81.4475397985684, + 25.56912214647509 + ], + [ + -81.42759613914501, + 25.5377966410534 + ], + [ + -81.38770882029826, + 25.5377966410534 + ], + [ + -81.36776516087487, + 25.56912214647509 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.36776516087487, + 25.631773157318477 + ], + [ + -81.38770882029826, + 25.66309866274017 + ], + [ + -81.42759613914501, + 25.66309866274017 + ], + [ + -81.4475397985684, + 25.631773157318477 + ], + [ + -81.42759613914501, + 25.600447651896786 + ], + [ + -81.38770882029826, + 25.600447651896786 + ], + [ + -81.36776516087487, + 25.631773157318477 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.36776516087487, + 25.694424168161863 + ], + [ + -81.38770882029826, + 25.725749673583554 + ], + [ + -81.42759613914501, + 25.725749673583554 + ], + [ + -81.4475397985684, + 25.694424168161863 + ], + [ + -81.42759613914501, + 25.663098662740172 + ], + [ + -81.38770882029826, + 25.663098662740172 + ], + [ + -81.36776516087487, + 25.694424168161863 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.36776516087487, + 25.75707517900525 + ], + [ + -81.38770882029826, + 25.78840068442694 + ], + [ + -81.42759613914501, + 25.78840068442694 + ], + [ + -81.4475397985684, + 25.75707517900525 + ], + [ + -81.42759613914501, + 25.725749673583557 + ], + [ + -81.38770882029826, + 25.725749673583557 + ], + [ + -81.36776516087487, + 25.75707517900525 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.36776516087487, + 25.819726189848634 + ], + [ + -81.38770882029826, + 25.851051695270325 + ], + [ + -81.42759613914501, + 25.851051695270325 + ], + [ + -81.4475397985684, + 25.819726189848634 + ], + [ + -81.42759613914501, + 25.788400684426943 + ], + [ + -81.38770882029826, + 25.788400684426943 + ], + [ + -81.36776516087487, + 25.819726189848634 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.36776516087487, + 25.88237720069202 + ], + [ + -81.38770882029826, + 25.91370270611371 + ], + [ + -81.42759613914501, + 25.91370270611371 + ], + [ + -81.4475397985684, + 25.88237720069202 + ], + [ + -81.42759613914501, + 25.85105169527033 + ], + [ + -81.38770882029826, + 25.85105169527033 + ], + [ + -81.36776516087487, + 25.88237720069202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.36776516087487, + 25.945028211535405 + ], + [ + -81.38770882029826, + 25.976353716957096 + ], + [ + -81.42759613914501, + 25.976353716957096 + ], + [ + -81.4475397985684, + 25.945028211535405 + ], + [ + -81.42759613914501, + 25.913702706113714 + ], + [ + -81.38770882029826, + 25.913702706113714 + ], + [ + -81.36776516087487, + 25.945028211535405 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.36776516087487, + 26.00767922237879 + ], + [ + -81.38770882029826, + 26.03900472780048 + ], + [ + -81.42759613914501, + 26.03900472780048 + ], + [ + -81.4475397985684, + 26.00767922237879 + ], + [ + -81.42759613914501, + 25.9763537169571 + ], + [ + -81.38770882029826, + 25.9763537169571 + ], + [ + -81.36776516087487, + 26.00767922237879 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.36776516087487, + 26.070330233222176 + ], + [ + -81.38770882029826, + 26.101655738643867 + ], + [ + -81.42759613914501, + 26.101655738643867 + ], + [ + -81.4475397985684, + 26.070330233222176 + ], + [ + -81.42759613914501, + 26.039004727800485 + ], + [ + -81.38770882029826, + 26.039004727800485 + ], + [ + -81.36776516087487, + 26.070330233222176 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.36776516087487, + 26.13298124406556 + ], + [ + -81.38770882029826, + 26.164306749487253 + ], + [ + -81.42759613914501, + 26.164306749487253 + ], + [ + -81.4475397985684, + 26.13298124406556 + ], + [ + -81.42759613914501, + 26.10165573864387 + ], + [ + -81.38770882029826, + 26.10165573864387 + ], + [ + -81.36776516087487, + 26.13298124406556 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.36776516087487, + 26.195632254908944 + ], + [ + -81.38770882029826, + 26.226957760330635 + ], + [ + -81.42759613914501, + 26.226957760330635 + ], + [ + -81.4475397985684, + 26.195632254908944 + ], + [ + -81.42759613914501, + 26.164306749487253 + ], + [ + -81.38770882029826, + 26.164306749487253 + ], + [ + -81.36776516087487, + 26.195632254908944 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.36776516087487, + 26.258283265752333 + ], + [ + -81.38770882029826, + 26.289608771174024 + ], + [ + -81.42759613914501, + 26.289608771174024 + ], + [ + -81.4475397985684, + 26.258283265752333 + ], + [ + -81.42759613914501, + 26.22695776033064 + ], + [ + -81.38770882029826, + 26.22695776033064 + ], + [ + -81.36776516087487, + 26.258283265752333 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.36776516087487, + 26.320934276595715 + ], + [ + -81.38770882029826, + 26.352259782017406 + ], + [ + -81.42759613914501, + 26.352259782017406 + ], + [ + -81.4475397985684, + 26.320934276595715 + ], + [ + -81.42759613914501, + 26.289608771174024 + ], + [ + -81.38770882029826, + 26.289608771174024 + ], + [ + -81.36776516087487, + 26.320934276595715 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.36776516087487, + 26.3835852874391 + ], + [ + -81.38770882029826, + 26.41491079286079 + ], + [ + -81.42759613914501, + 26.41491079286079 + ], + [ + -81.4475397985684, + 26.3835852874391 + ], + [ + -81.42759613914501, + 26.35225978201741 + ], + [ + -81.38770882029826, + 26.35225978201741 + ], + [ + -81.36776516087487, + 26.3835852874391 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.36776516087487, + 26.446236298282486 + ], + [ + -81.38770882029826, + 26.477561803704177 + ], + [ + -81.42759613914501, + 26.477561803704177 + ], + [ + -81.4475397985684, + 26.446236298282486 + ], + [ + -81.42759613914501, + 26.414910792860795 + ], + [ + -81.38770882029826, + 26.414910792860795 + ], + [ + -81.36776516087487, + 26.446236298282486 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.30793418260473, + 24.911286532619545 + ], + [ + -81.32787784202812, + 24.942612038041236 + ], + [ + -81.36776516087487, + 24.942612038041236 + ], + [ + -81.38770882029826, + 24.911286532619545 + ], + [ + -81.36776516087487, + 24.879961027197854 + ], + [ + -81.32787784202812, + 24.879961027197854 + ], + [ + -81.30793418260473, + 24.911286532619545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.30793418260473, + 24.97393754346293 + ], + [ + -81.32787784202812, + 25.005263048884622 + ], + [ + -81.36776516087487, + 25.005263048884622 + ], + [ + -81.38770882029826, + 24.97393754346293 + ], + [ + -81.36776516087487, + 24.94261203804124 + ], + [ + -81.32787784202812, + 24.94261203804124 + ], + [ + -81.30793418260473, + 24.97393754346293 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.30793418260473, + 25.036588554306316 + ], + [ + -81.32787784202812, + 25.067914059728007 + ], + [ + -81.36776516087487, + 25.067914059728007 + ], + [ + -81.38770882029826, + 25.036588554306316 + ], + [ + -81.36776516087487, + 25.005263048884625 + ], + [ + -81.32787784202812, + 25.005263048884625 + ], + [ + -81.30793418260473, + 25.036588554306316 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.30793418260473, + 25.099239565149702 + ], + [ + -81.32787784202812, + 25.130565070571393 + ], + [ + -81.36776516087487, + 25.130565070571393 + ], + [ + -81.38770882029826, + 25.099239565149702 + ], + [ + -81.36776516087487, + 25.06791405972801 + ], + [ + -81.32787784202812, + 25.06791405972801 + ], + [ + -81.30793418260473, + 25.099239565149702 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.30793418260473, + 25.161890575993088 + ], + [ + -81.32787784202812, + 25.19321608141478 + ], + [ + -81.36776516087487, + 25.19321608141478 + ], + [ + -81.38770882029826, + 25.161890575993088 + ], + [ + -81.36776516087487, + 25.130565070571397 + ], + [ + -81.32787784202812, + 25.130565070571397 + ], + [ + -81.30793418260473, + 25.161890575993088 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.30793418260473, + 25.224541586836473 + ], + [ + -81.32787784202812, + 25.255867092258164 + ], + [ + -81.36776516087487, + 25.255867092258164 + ], + [ + -81.38770882029826, + 25.224541586836473 + ], + [ + -81.36776516087487, + 25.193216081414782 + ], + [ + -81.32787784202812, + 25.193216081414782 + ], + [ + -81.30793418260473, + 25.224541586836473 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.30793418260473, + 25.28719259767986 + ], + [ + -81.32787784202812, + 25.31851810310155 + ], + [ + -81.36776516087487, + 25.31851810310155 + ], + [ + -81.38770882029826, + 25.28719259767986 + ], + [ + -81.36776516087487, + 25.255867092258168 + ], + [ + -81.32787784202812, + 25.255867092258168 + ], + [ + -81.30793418260473, + 25.28719259767986 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.30793418260473, + 25.349843608523244 + ], + [ + -81.32787784202812, + 25.381169113944935 + ], + [ + -81.36776516087487, + 25.381169113944935 + ], + [ + -81.38770882029826, + 25.349843608523244 + ], + [ + -81.36776516087487, + 25.318518103101553 + ], + [ + -81.32787784202812, + 25.318518103101553 + ], + [ + -81.30793418260473, + 25.349843608523244 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.30793418260473, + 25.41249461936663 + ], + [ + -81.32787784202812, + 25.44382012478832 + ], + [ + -81.36776516087487, + 25.44382012478832 + ], + [ + -81.38770882029826, + 25.41249461936663 + ], + [ + -81.36776516087487, + 25.38116911394494 + ], + [ + -81.32787784202812, + 25.38116911394494 + ], + [ + -81.30793418260473, + 25.41249461936663 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.30793418260473, + 25.475145630210015 + ], + [ + -81.32787784202812, + 25.506471135631706 + ], + [ + -81.36776516087487, + 25.506471135631706 + ], + [ + -81.38770882029826, + 25.475145630210015 + ], + [ + -81.36776516087487, + 25.443820124788324 + ], + [ + -81.32787784202812, + 25.443820124788324 + ], + [ + -81.30793418260473, + 25.475145630210015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.30793418260473, + 25.5377966410534 + ], + [ + -81.32787784202812, + 25.56912214647509 + ], + [ + -81.36776516087487, + 25.56912214647509 + ], + [ + -81.38770882029826, + 25.5377966410534 + ], + [ + -81.36776516087487, + 25.50647113563171 + ], + [ + -81.32787784202812, + 25.50647113563171 + ], + [ + -81.30793418260473, + 25.5377966410534 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.30793418260473, + 25.600447651896786 + ], + [ + -81.32787784202812, + 25.631773157318477 + ], + [ + -81.36776516087487, + 25.631773157318477 + ], + [ + -81.38770882029826, + 25.600447651896786 + ], + [ + -81.36776516087487, + 25.569122146475095 + ], + [ + -81.32787784202812, + 25.569122146475095 + ], + [ + -81.30793418260473, + 25.600447651896786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.30793418260473, + 25.663098662740172 + ], + [ + -81.32787784202812, + 25.694424168161863 + ], + [ + -81.36776516087487, + 25.694424168161863 + ], + [ + -81.38770882029826, + 25.663098662740172 + ], + [ + -81.36776516087487, + 25.63177315731848 + ], + [ + -81.32787784202812, + 25.63177315731848 + ], + [ + -81.30793418260473, + 25.663098662740172 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.30793418260473, + 25.725749673583557 + ], + [ + -81.32787784202812, + 25.75707517900525 + ], + [ + -81.36776516087487, + 25.75707517900525 + ], + [ + -81.38770882029826, + 25.725749673583557 + ], + [ + -81.36776516087487, + 25.694424168161866 + ], + [ + -81.32787784202812, + 25.694424168161866 + ], + [ + -81.30793418260473, + 25.725749673583557 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.30793418260473, + 25.788400684426943 + ], + [ + -81.32787784202812, + 25.819726189848634 + ], + [ + -81.36776516087487, + 25.819726189848634 + ], + [ + -81.38770882029826, + 25.788400684426943 + ], + [ + -81.36776516087487, + 25.757075179005252 + ], + [ + -81.32787784202812, + 25.757075179005252 + ], + [ + -81.30793418260473, + 25.788400684426943 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.30793418260473, + 25.85105169527033 + ], + [ + -81.32787784202812, + 25.88237720069202 + ], + [ + -81.36776516087487, + 25.88237720069202 + ], + [ + -81.38770882029826, + 25.85105169527033 + ], + [ + -81.36776516087487, + 25.819726189848637 + ], + [ + -81.32787784202812, + 25.819726189848637 + ], + [ + -81.30793418260473, + 25.85105169527033 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.30793418260473, + 25.913702706113714 + ], + [ + -81.32787784202812, + 25.945028211535405 + ], + [ + -81.36776516087487, + 25.945028211535405 + ], + [ + -81.38770882029826, + 25.913702706113714 + ], + [ + -81.36776516087487, + 25.882377200692023 + ], + [ + -81.32787784202812, + 25.882377200692023 + ], + [ + -81.30793418260473, + 25.913702706113714 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.30793418260473, + 25.9763537169571 + ], + [ + -81.32787784202812, + 26.00767922237879 + ], + [ + -81.36776516087487, + 26.00767922237879 + ], + [ + -81.38770882029826, + 25.9763537169571 + ], + [ + -81.36776516087487, + 25.94502821153541 + ], + [ + -81.32787784202812, + 25.94502821153541 + ], + [ + -81.30793418260473, + 25.9763537169571 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.30793418260473, + 26.039004727800485 + ], + [ + -81.32787784202812, + 26.070330233222176 + ], + [ + -81.36776516087487, + 26.070330233222176 + ], + [ + -81.38770882029826, + 26.039004727800485 + ], + [ + -81.36776516087487, + 26.007679222378794 + ], + [ + -81.32787784202812, + 26.007679222378794 + ], + [ + -81.30793418260473, + 26.039004727800485 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.30793418260473, + 26.10165573864387 + ], + [ + -81.32787784202812, + 26.13298124406556 + ], + [ + -81.36776516087487, + 26.13298124406556 + ], + [ + -81.38770882029826, + 26.10165573864387 + ], + [ + -81.36776516087487, + 26.07033023322218 + ], + [ + -81.32787784202812, + 26.07033023322218 + ], + [ + -81.30793418260473, + 26.10165573864387 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.30793418260473, + 26.164306749487253 + ], + [ + -81.32787784202812, + 26.195632254908944 + ], + [ + -81.36776516087487, + 26.195632254908944 + ], + [ + -81.38770882029826, + 26.164306749487253 + ], + [ + -81.36776516087487, + 26.13298124406556 + ], + [ + -81.32787784202812, + 26.13298124406556 + ], + [ + -81.30793418260473, + 26.164306749487253 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.30793418260473, + 26.22695776033064 + ], + [ + -81.32787784202812, + 26.258283265752333 + ], + [ + -81.36776516087487, + 26.258283265752333 + ], + [ + -81.38770882029826, + 26.22695776033064 + ], + [ + -81.36776516087487, + 26.19563225490895 + ], + [ + -81.32787784202812, + 26.19563225490895 + ], + [ + -81.30793418260473, + 26.22695776033064 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.30793418260473, + 26.289608771174024 + ], + [ + -81.32787784202812, + 26.320934276595715 + ], + [ + -81.36776516087487, + 26.320934276595715 + ], + [ + -81.38770882029826, + 26.289608771174024 + ], + [ + -81.36776516087487, + 26.258283265752333 + ], + [ + -81.32787784202812, + 26.258283265752333 + ], + [ + -81.30793418260473, + 26.289608771174024 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.30793418260473, + 26.35225978201741 + ], + [ + -81.32787784202812, + 26.3835852874391 + ], + [ + -81.36776516087487, + 26.3835852874391 + ], + [ + -81.38770882029826, + 26.35225978201741 + ], + [ + -81.36776516087487, + 26.320934276595718 + ], + [ + -81.32787784202812, + 26.320934276595718 + ], + [ + -81.30793418260473, + 26.35225978201741 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.30793418260473, + 26.414910792860795 + ], + [ + -81.32787784202812, + 26.446236298282486 + ], + [ + -81.36776516087487, + 26.446236298282486 + ], + [ + -81.38770882029826, + 26.414910792860795 + ], + [ + -81.36776516087487, + 26.383585287439104 + ], + [ + -81.32787784202812, + 26.383585287439104 + ], + [ + -81.30793418260473, + 26.414910792860795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.24810320433457, + 24.942612038041236 + ], + [ + -81.26804686375796, + 24.973937543462927 + ], + [ + -81.30793418260471, + 24.973937543462927 + ], + [ + -81.3278778420281, + 24.942612038041236 + ], + [ + -81.30793418260471, + 24.911286532619545 + ], + [ + -81.26804686375796, + 24.911286532619545 + ], + [ + -81.24810320433457, + 24.942612038041236 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.24810320433457, + 25.005263048884622 + ], + [ + -81.26804686375796, + 25.036588554306313 + ], + [ + -81.30793418260471, + 25.036588554306313 + ], + [ + -81.3278778420281, + 25.005263048884622 + ], + [ + -81.30793418260471, + 24.97393754346293 + ], + [ + -81.26804686375796, + 24.97393754346293 + ], + [ + -81.24810320433457, + 25.005263048884622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.24810320433457, + 25.067914059728007 + ], + [ + -81.26804686375796, + 25.0992395651497 + ], + [ + -81.30793418260471, + 25.0992395651497 + ], + [ + -81.3278778420281, + 25.067914059728007 + ], + [ + -81.30793418260471, + 25.036588554306316 + ], + [ + -81.26804686375796, + 25.036588554306316 + ], + [ + -81.24810320433457, + 25.067914059728007 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.24810320433457, + 25.130565070571393 + ], + [ + -81.26804686375796, + 25.161890575993084 + ], + [ + -81.30793418260471, + 25.161890575993084 + ], + [ + -81.3278778420281, + 25.130565070571393 + ], + [ + -81.30793418260471, + 25.099239565149702 + ], + [ + -81.26804686375796, + 25.099239565149702 + ], + [ + -81.24810320433457, + 25.130565070571393 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.24810320433457, + 25.19321608141478 + ], + [ + -81.26804686375796, + 25.22454158683647 + ], + [ + -81.30793418260471, + 25.22454158683647 + ], + [ + -81.3278778420281, + 25.19321608141478 + ], + [ + -81.30793418260471, + 25.161890575993088 + ], + [ + -81.26804686375796, + 25.161890575993088 + ], + [ + -81.24810320433457, + 25.19321608141478 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.24810320433457, + 25.255867092258164 + ], + [ + -81.26804686375796, + 25.287192597679855 + ], + [ + -81.30793418260471, + 25.287192597679855 + ], + [ + -81.3278778420281, + 25.255867092258164 + ], + [ + -81.30793418260471, + 25.224541586836473 + ], + [ + -81.26804686375796, + 25.224541586836473 + ], + [ + -81.24810320433457, + 25.255867092258164 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.24810320433457, + 25.31851810310155 + ], + [ + -81.26804686375796, + 25.34984360852324 + ], + [ + -81.30793418260471, + 25.34984360852324 + ], + [ + -81.3278778420281, + 25.31851810310155 + ], + [ + -81.30793418260471, + 25.28719259767986 + ], + [ + -81.26804686375796, + 25.28719259767986 + ], + [ + -81.24810320433457, + 25.31851810310155 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.24810320433457, + 25.381169113944935 + ], + [ + -81.26804686375796, + 25.412494619366626 + ], + [ + -81.30793418260471, + 25.412494619366626 + ], + [ + -81.3278778420281, + 25.381169113944935 + ], + [ + -81.30793418260471, + 25.349843608523244 + ], + [ + -81.26804686375796, + 25.349843608523244 + ], + [ + -81.24810320433457, + 25.381169113944935 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.24810320433457, + 25.44382012478832 + ], + [ + -81.26804686375796, + 25.47514563021001 + ], + [ + -81.30793418260471, + 25.47514563021001 + ], + [ + -81.3278778420281, + 25.44382012478832 + ], + [ + -81.30793418260471, + 25.41249461936663 + ], + [ + -81.26804686375796, + 25.41249461936663 + ], + [ + -81.24810320433457, + 25.44382012478832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.24810320433457, + 25.506471135631706 + ], + [ + -81.26804686375796, + 25.537796641053397 + ], + [ + -81.30793418260471, + 25.537796641053397 + ], + [ + -81.3278778420281, + 25.506471135631706 + ], + [ + -81.30793418260471, + 25.475145630210015 + ], + [ + -81.26804686375796, + 25.475145630210015 + ], + [ + -81.24810320433457, + 25.506471135631706 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.24810320433457, + 25.56912214647509 + ], + [ + -81.26804686375796, + 25.600447651896783 + ], + [ + -81.30793418260471, + 25.600447651896783 + ], + [ + -81.3278778420281, + 25.56912214647509 + ], + [ + -81.30793418260471, + 25.5377966410534 + ], + [ + -81.26804686375796, + 25.5377966410534 + ], + [ + -81.24810320433457, + 25.56912214647509 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.24810320433457, + 25.631773157318477 + ], + [ + -81.26804686375796, + 25.66309866274017 + ], + [ + -81.30793418260471, + 25.66309866274017 + ], + [ + -81.3278778420281, + 25.631773157318477 + ], + [ + -81.30793418260471, + 25.600447651896786 + ], + [ + -81.26804686375796, + 25.600447651896786 + ], + [ + -81.24810320433457, + 25.631773157318477 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.24810320433457, + 25.694424168161863 + ], + [ + -81.26804686375796, + 25.725749673583554 + ], + [ + -81.30793418260471, + 25.725749673583554 + ], + [ + -81.3278778420281, + 25.694424168161863 + ], + [ + -81.30793418260471, + 25.663098662740172 + ], + [ + -81.26804686375796, + 25.663098662740172 + ], + [ + -81.24810320433457, + 25.694424168161863 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.24810320433457, + 25.75707517900525 + ], + [ + -81.26804686375796, + 25.78840068442694 + ], + [ + -81.30793418260471, + 25.78840068442694 + ], + [ + -81.3278778420281, + 25.75707517900525 + ], + [ + -81.30793418260471, + 25.725749673583557 + ], + [ + -81.26804686375796, + 25.725749673583557 + ], + [ + -81.24810320433457, + 25.75707517900525 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.24810320433457, + 25.819726189848634 + ], + [ + -81.26804686375796, + 25.851051695270325 + ], + [ + -81.30793418260471, + 25.851051695270325 + ], + [ + -81.3278778420281, + 25.819726189848634 + ], + [ + -81.30793418260471, + 25.788400684426943 + ], + [ + -81.26804686375796, + 25.788400684426943 + ], + [ + -81.24810320433457, + 25.819726189848634 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.24810320433457, + 25.88237720069202 + ], + [ + -81.26804686375796, + 25.91370270611371 + ], + [ + -81.30793418260471, + 25.91370270611371 + ], + [ + -81.3278778420281, + 25.88237720069202 + ], + [ + -81.30793418260471, + 25.85105169527033 + ], + [ + -81.26804686375796, + 25.85105169527033 + ], + [ + -81.24810320433457, + 25.88237720069202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.24810320433457, + 25.945028211535405 + ], + [ + -81.26804686375796, + 25.976353716957096 + ], + [ + -81.30793418260471, + 25.976353716957096 + ], + [ + -81.3278778420281, + 25.945028211535405 + ], + [ + -81.30793418260471, + 25.913702706113714 + ], + [ + -81.26804686375796, + 25.913702706113714 + ], + [ + -81.24810320433457, + 25.945028211535405 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.24810320433457, + 26.00767922237879 + ], + [ + -81.26804686375796, + 26.03900472780048 + ], + [ + -81.30793418260471, + 26.03900472780048 + ], + [ + -81.3278778420281, + 26.00767922237879 + ], + [ + -81.30793418260471, + 25.9763537169571 + ], + [ + -81.26804686375796, + 25.9763537169571 + ], + [ + -81.24810320433457, + 26.00767922237879 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.24810320433457, + 26.070330233222176 + ], + [ + -81.26804686375796, + 26.101655738643867 + ], + [ + -81.30793418260471, + 26.101655738643867 + ], + [ + -81.3278778420281, + 26.070330233222176 + ], + [ + -81.30793418260471, + 26.039004727800485 + ], + [ + -81.26804686375796, + 26.039004727800485 + ], + [ + -81.24810320433457, + 26.070330233222176 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.24810320433457, + 26.13298124406556 + ], + [ + -81.26804686375796, + 26.164306749487253 + ], + [ + -81.30793418260471, + 26.164306749487253 + ], + [ + -81.3278778420281, + 26.13298124406556 + ], + [ + -81.30793418260471, + 26.10165573864387 + ], + [ + -81.26804686375796, + 26.10165573864387 + ], + [ + -81.24810320433457, + 26.13298124406556 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.24810320433457, + 26.195632254908944 + ], + [ + -81.26804686375796, + 26.226957760330635 + ], + [ + -81.30793418260471, + 26.226957760330635 + ], + [ + -81.3278778420281, + 26.195632254908944 + ], + [ + -81.30793418260471, + 26.164306749487253 + ], + [ + -81.26804686375796, + 26.164306749487253 + ], + [ + -81.24810320433457, + 26.195632254908944 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.24810320433457, + 26.258283265752333 + ], + [ + -81.26804686375796, + 26.289608771174024 + ], + [ + -81.30793418260471, + 26.289608771174024 + ], + [ + -81.3278778420281, + 26.258283265752333 + ], + [ + -81.30793418260471, + 26.22695776033064 + ], + [ + -81.26804686375796, + 26.22695776033064 + ], + [ + -81.24810320433457, + 26.258283265752333 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.24810320433457, + 26.320934276595715 + ], + [ + -81.26804686375796, + 26.352259782017406 + ], + [ + -81.30793418260471, + 26.352259782017406 + ], + [ + -81.3278778420281, + 26.320934276595715 + ], + [ + -81.30793418260471, + 26.289608771174024 + ], + [ + -81.26804686375796, + 26.289608771174024 + ], + [ + -81.24810320433457, + 26.320934276595715 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.24810320433457, + 26.3835852874391 + ], + [ + -81.26804686375796, + 26.41491079286079 + ], + [ + -81.30793418260471, + 26.41491079286079 + ], + [ + -81.3278778420281, + 26.3835852874391 + ], + [ + -81.30793418260471, + 26.35225978201741 + ], + [ + -81.26804686375796, + 26.35225978201741 + ], + [ + -81.24810320433457, + 26.3835852874391 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.24810320433457, + 26.446236298282486 + ], + [ + -81.26804686375796, + 26.477561803704177 + ], + [ + -81.30793418260471, + 26.477561803704177 + ], + [ + -81.3278778420281, + 26.446236298282486 + ], + [ + -81.30793418260471, + 26.414910792860795 + ], + [ + -81.26804686375796, + 26.414910792860795 + ], + [ + -81.24810320433457, + 26.446236298282486 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.18827222606443, + 24.911286532619545 + ], + [ + -81.20821588548782, + 24.942612038041236 + ], + [ + -81.24810320433457, + 24.942612038041236 + ], + [ + -81.26804686375796, + 24.911286532619545 + ], + [ + -81.24810320433457, + 24.879961027197854 + ], + [ + -81.20821588548782, + 24.879961027197854 + ], + [ + -81.18827222606443, + 24.911286532619545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.18827222606443, + 24.97393754346293 + ], + [ + -81.20821588548782, + 25.005263048884622 + ], + [ + -81.24810320433457, + 25.005263048884622 + ], + [ + -81.26804686375796, + 24.97393754346293 + ], + [ + -81.24810320433457, + 24.94261203804124 + ], + [ + -81.20821588548782, + 24.94261203804124 + ], + [ + -81.18827222606443, + 24.97393754346293 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.18827222606443, + 25.036588554306316 + ], + [ + -81.20821588548782, + 25.067914059728007 + ], + [ + -81.24810320433457, + 25.067914059728007 + ], + [ + -81.26804686375796, + 25.036588554306316 + ], + [ + -81.24810320433457, + 25.005263048884625 + ], + [ + -81.20821588548782, + 25.005263048884625 + ], + [ + -81.18827222606443, + 25.036588554306316 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.18827222606443, + 25.099239565149702 + ], + [ + -81.20821588548782, + 25.130565070571393 + ], + [ + -81.24810320433457, + 25.130565070571393 + ], + [ + -81.26804686375796, + 25.099239565149702 + ], + [ + -81.24810320433457, + 25.06791405972801 + ], + [ + -81.20821588548782, + 25.06791405972801 + ], + [ + -81.18827222606443, + 25.099239565149702 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.18827222606443, + 25.161890575993088 + ], + [ + -81.20821588548782, + 25.19321608141478 + ], + [ + -81.24810320433457, + 25.19321608141478 + ], + [ + -81.26804686375796, + 25.161890575993088 + ], + [ + -81.24810320433457, + 25.130565070571397 + ], + [ + -81.20821588548782, + 25.130565070571397 + ], + [ + -81.18827222606443, + 25.161890575993088 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.18827222606443, + 25.224541586836473 + ], + [ + -81.20821588548782, + 25.255867092258164 + ], + [ + -81.24810320433457, + 25.255867092258164 + ], + [ + -81.26804686375796, + 25.224541586836473 + ], + [ + -81.24810320433457, + 25.193216081414782 + ], + [ + -81.20821588548782, + 25.193216081414782 + ], + [ + -81.18827222606443, + 25.224541586836473 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.18827222606443, + 25.28719259767986 + ], + [ + -81.20821588548782, + 25.31851810310155 + ], + [ + -81.24810320433457, + 25.31851810310155 + ], + [ + -81.26804686375796, + 25.28719259767986 + ], + [ + -81.24810320433457, + 25.255867092258168 + ], + [ + -81.20821588548782, + 25.255867092258168 + ], + [ + -81.18827222606443, + 25.28719259767986 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.18827222606443, + 25.349843608523244 + ], + [ + -81.20821588548782, + 25.381169113944935 + ], + [ + -81.24810320433457, + 25.381169113944935 + ], + [ + -81.26804686375796, + 25.349843608523244 + ], + [ + -81.24810320433457, + 25.318518103101553 + ], + [ + -81.20821588548782, + 25.318518103101553 + ], + [ + -81.18827222606443, + 25.349843608523244 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.18827222606443, + 25.41249461936663 + ], + [ + -81.20821588548782, + 25.44382012478832 + ], + [ + -81.24810320433457, + 25.44382012478832 + ], + [ + -81.26804686375796, + 25.41249461936663 + ], + [ + -81.24810320433457, + 25.38116911394494 + ], + [ + -81.20821588548782, + 25.38116911394494 + ], + [ + -81.18827222606443, + 25.41249461936663 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.18827222606443, + 25.475145630210015 + ], + [ + -81.20821588548782, + 25.506471135631706 + ], + [ + -81.24810320433457, + 25.506471135631706 + ], + [ + -81.26804686375796, + 25.475145630210015 + ], + [ + -81.24810320433457, + 25.443820124788324 + ], + [ + -81.20821588548782, + 25.443820124788324 + ], + [ + -81.18827222606443, + 25.475145630210015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.18827222606443, + 25.5377966410534 + ], + [ + -81.20821588548782, + 25.56912214647509 + ], + [ + -81.24810320433457, + 25.56912214647509 + ], + [ + -81.26804686375796, + 25.5377966410534 + ], + [ + -81.24810320433457, + 25.50647113563171 + ], + [ + -81.20821588548782, + 25.50647113563171 + ], + [ + -81.18827222606443, + 25.5377966410534 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.18827222606443, + 25.600447651896786 + ], + [ + -81.20821588548782, + 25.631773157318477 + ], + [ + -81.24810320433457, + 25.631773157318477 + ], + [ + -81.26804686375796, + 25.600447651896786 + ], + [ + -81.24810320433457, + 25.569122146475095 + ], + [ + -81.20821588548782, + 25.569122146475095 + ], + [ + -81.18827222606443, + 25.600447651896786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.18827222606443, + 25.663098662740172 + ], + [ + -81.20821588548782, + 25.694424168161863 + ], + [ + -81.24810320433457, + 25.694424168161863 + ], + [ + -81.26804686375796, + 25.663098662740172 + ], + [ + -81.24810320433457, + 25.63177315731848 + ], + [ + -81.20821588548782, + 25.63177315731848 + ], + [ + -81.18827222606443, + 25.663098662740172 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.18827222606443, + 25.725749673583557 + ], + [ + -81.20821588548782, + 25.75707517900525 + ], + [ + -81.24810320433457, + 25.75707517900525 + ], + [ + -81.26804686375796, + 25.725749673583557 + ], + [ + -81.24810320433457, + 25.694424168161866 + ], + [ + -81.20821588548782, + 25.694424168161866 + ], + [ + -81.18827222606443, + 25.725749673583557 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.18827222606443, + 25.788400684426943 + ], + [ + -81.20821588548782, + 25.819726189848634 + ], + [ + -81.24810320433457, + 25.819726189848634 + ], + [ + -81.26804686375796, + 25.788400684426943 + ], + [ + -81.24810320433457, + 25.757075179005252 + ], + [ + -81.20821588548782, + 25.757075179005252 + ], + [ + -81.18827222606443, + 25.788400684426943 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.18827222606443, + 25.85105169527033 + ], + [ + -81.20821588548782, + 25.88237720069202 + ], + [ + -81.24810320433457, + 25.88237720069202 + ], + [ + -81.26804686375796, + 25.85105169527033 + ], + [ + -81.24810320433457, + 25.819726189848637 + ], + [ + -81.20821588548782, + 25.819726189848637 + ], + [ + -81.18827222606443, + 25.85105169527033 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.18827222606443, + 25.913702706113714 + ], + [ + -81.20821588548782, + 25.945028211535405 + ], + [ + -81.24810320433457, + 25.945028211535405 + ], + [ + -81.26804686375796, + 25.913702706113714 + ], + [ + -81.24810320433457, + 25.882377200692023 + ], + [ + -81.20821588548782, + 25.882377200692023 + ], + [ + -81.18827222606443, + 25.913702706113714 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.18827222606443, + 25.9763537169571 + ], + [ + -81.20821588548782, + 26.00767922237879 + ], + [ + -81.24810320433457, + 26.00767922237879 + ], + [ + -81.26804686375796, + 25.9763537169571 + ], + [ + -81.24810320433457, + 25.94502821153541 + ], + [ + -81.20821588548782, + 25.94502821153541 + ], + [ + -81.18827222606443, + 25.9763537169571 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.18827222606443, + 26.039004727800485 + ], + [ + -81.20821588548782, + 26.070330233222176 + ], + [ + -81.24810320433457, + 26.070330233222176 + ], + [ + -81.26804686375796, + 26.039004727800485 + ], + [ + -81.24810320433457, + 26.007679222378794 + ], + [ + -81.20821588548782, + 26.007679222378794 + ], + [ + -81.18827222606443, + 26.039004727800485 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.18827222606443, + 26.10165573864387 + ], + [ + -81.20821588548782, + 26.13298124406556 + ], + [ + -81.24810320433457, + 26.13298124406556 + ], + [ + -81.26804686375796, + 26.10165573864387 + ], + [ + -81.24810320433457, + 26.07033023322218 + ], + [ + -81.20821588548782, + 26.07033023322218 + ], + [ + -81.18827222606443, + 26.10165573864387 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.18827222606443, + 26.164306749487253 + ], + [ + -81.20821588548782, + 26.195632254908944 + ], + [ + -81.24810320433457, + 26.195632254908944 + ], + [ + -81.26804686375796, + 26.164306749487253 + ], + [ + -81.24810320433457, + 26.13298124406556 + ], + [ + -81.20821588548782, + 26.13298124406556 + ], + [ + -81.18827222606443, + 26.164306749487253 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.18827222606443, + 26.22695776033064 + ], + [ + -81.20821588548782, + 26.258283265752333 + ], + [ + -81.24810320433457, + 26.258283265752333 + ], + [ + -81.26804686375796, + 26.22695776033064 + ], + [ + -81.24810320433457, + 26.19563225490895 + ], + [ + -81.20821588548782, + 26.19563225490895 + ], + [ + -81.18827222606443, + 26.22695776033064 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.18827222606443, + 26.289608771174024 + ], + [ + -81.20821588548782, + 26.320934276595715 + ], + [ + -81.24810320433457, + 26.320934276595715 + ], + [ + -81.26804686375796, + 26.289608771174024 + ], + [ + -81.24810320433457, + 26.258283265752333 + ], + [ + -81.20821588548782, + 26.258283265752333 + ], + [ + -81.18827222606443, + 26.289608771174024 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.18827222606443, + 26.35225978201741 + ], + [ + -81.20821588548782, + 26.3835852874391 + ], + [ + -81.24810320433457, + 26.3835852874391 + ], + [ + -81.26804686375796, + 26.35225978201741 + ], + [ + -81.24810320433457, + 26.320934276595718 + ], + [ + -81.20821588548782, + 26.320934276595718 + ], + [ + -81.18827222606443, + 26.35225978201741 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.18827222606443, + 26.414910792860795 + ], + [ + -81.20821588548782, + 26.446236298282486 + ], + [ + -81.24810320433457, + 26.446236298282486 + ], + [ + -81.26804686375796, + 26.414910792860795 + ], + [ + -81.24810320433457, + 26.383585287439104 + ], + [ + -81.20821588548782, + 26.383585287439104 + ], + [ + -81.18827222606443, + 26.414910792860795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.12844124779427, + 24.942612038041236 + ], + [ + -81.14838490721766, + 24.973937543462927 + ], + [ + -81.18827222606441, + 24.973937543462927 + ], + [ + -81.2082158854878, + 24.942612038041236 + ], + [ + -81.18827222606441, + 24.911286532619545 + ], + [ + -81.14838490721766, + 24.911286532619545 + ], + [ + -81.12844124779427, + 24.942612038041236 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.12844124779427, + 25.005263048884622 + ], + [ + -81.14838490721766, + 25.036588554306313 + ], + [ + -81.18827222606441, + 25.036588554306313 + ], + [ + -81.2082158854878, + 25.005263048884622 + ], + [ + -81.18827222606441, + 24.97393754346293 + ], + [ + -81.14838490721766, + 24.97393754346293 + ], + [ + -81.12844124779427, + 25.005263048884622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.12844124779427, + 25.067914059728007 + ], + [ + -81.14838490721766, + 25.0992395651497 + ], + [ + -81.18827222606441, + 25.0992395651497 + ], + [ + -81.2082158854878, + 25.067914059728007 + ], + [ + -81.18827222606441, + 25.036588554306316 + ], + [ + -81.14838490721766, + 25.036588554306316 + ], + [ + -81.12844124779427, + 25.067914059728007 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.12844124779427, + 25.130565070571393 + ], + [ + -81.14838490721766, + 25.161890575993084 + ], + [ + -81.18827222606441, + 25.161890575993084 + ], + [ + -81.2082158854878, + 25.130565070571393 + ], + [ + -81.18827222606441, + 25.099239565149702 + ], + [ + -81.14838490721766, + 25.099239565149702 + ], + [ + -81.12844124779427, + 25.130565070571393 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.12844124779427, + 25.19321608141478 + ], + [ + -81.14838490721766, + 25.22454158683647 + ], + [ + -81.18827222606441, + 25.22454158683647 + ], + [ + -81.2082158854878, + 25.19321608141478 + ], + [ + -81.18827222606441, + 25.161890575993088 + ], + [ + -81.14838490721766, + 25.161890575993088 + ], + [ + -81.12844124779427, + 25.19321608141478 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.12844124779427, + 25.255867092258164 + ], + [ + -81.14838490721766, + 25.287192597679855 + ], + [ + -81.18827222606441, + 25.287192597679855 + ], + [ + -81.2082158854878, + 25.255867092258164 + ], + [ + -81.18827222606441, + 25.224541586836473 + ], + [ + -81.14838490721766, + 25.224541586836473 + ], + [ + -81.12844124779427, + 25.255867092258164 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.12844124779427, + 25.31851810310155 + ], + [ + -81.14838490721766, + 25.34984360852324 + ], + [ + -81.18827222606441, + 25.34984360852324 + ], + [ + -81.2082158854878, + 25.31851810310155 + ], + [ + -81.18827222606441, + 25.28719259767986 + ], + [ + -81.14838490721766, + 25.28719259767986 + ], + [ + -81.12844124779427, + 25.31851810310155 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.12844124779427, + 25.381169113944935 + ], + [ + -81.14838490721766, + 25.412494619366626 + ], + [ + -81.18827222606441, + 25.412494619366626 + ], + [ + -81.2082158854878, + 25.381169113944935 + ], + [ + -81.18827222606441, + 25.349843608523244 + ], + [ + -81.14838490721766, + 25.349843608523244 + ], + [ + -81.12844124779427, + 25.381169113944935 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.12844124779427, + 25.44382012478832 + ], + [ + -81.14838490721766, + 25.47514563021001 + ], + [ + -81.18827222606441, + 25.47514563021001 + ], + [ + -81.2082158854878, + 25.44382012478832 + ], + [ + -81.18827222606441, + 25.41249461936663 + ], + [ + -81.14838490721766, + 25.41249461936663 + ], + [ + -81.12844124779427, + 25.44382012478832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.12844124779427, + 25.506471135631706 + ], + [ + -81.14838490721766, + 25.537796641053397 + ], + [ + -81.18827222606441, + 25.537796641053397 + ], + [ + -81.2082158854878, + 25.506471135631706 + ], + [ + -81.18827222606441, + 25.475145630210015 + ], + [ + -81.14838490721766, + 25.475145630210015 + ], + [ + -81.12844124779427, + 25.506471135631706 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.12844124779427, + 25.56912214647509 + ], + [ + -81.14838490721766, + 25.600447651896783 + ], + [ + -81.18827222606441, + 25.600447651896783 + ], + [ + -81.2082158854878, + 25.56912214647509 + ], + [ + -81.18827222606441, + 25.5377966410534 + ], + [ + -81.14838490721766, + 25.5377966410534 + ], + [ + -81.12844124779427, + 25.56912214647509 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.12844124779427, + 25.631773157318477 + ], + [ + -81.14838490721766, + 25.66309866274017 + ], + [ + -81.18827222606441, + 25.66309866274017 + ], + [ + -81.2082158854878, + 25.631773157318477 + ], + [ + -81.18827222606441, + 25.600447651896786 + ], + [ + -81.14838490721766, + 25.600447651896786 + ], + [ + -81.12844124779427, + 25.631773157318477 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.12844124779427, + 25.694424168161863 + ], + [ + -81.14838490721766, + 25.725749673583554 + ], + [ + -81.18827222606441, + 25.725749673583554 + ], + [ + -81.2082158854878, + 25.694424168161863 + ], + [ + -81.18827222606441, + 25.663098662740172 + ], + [ + -81.14838490721766, + 25.663098662740172 + ], + [ + -81.12844124779427, + 25.694424168161863 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.12844124779427, + 25.75707517900525 + ], + [ + -81.14838490721766, + 25.78840068442694 + ], + [ + -81.18827222606441, + 25.78840068442694 + ], + [ + -81.2082158854878, + 25.75707517900525 + ], + [ + -81.18827222606441, + 25.725749673583557 + ], + [ + -81.14838490721766, + 25.725749673583557 + ], + [ + -81.12844124779427, + 25.75707517900525 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.12844124779427, + 25.819726189848634 + ], + [ + -81.14838490721766, + 25.851051695270325 + ], + [ + -81.18827222606441, + 25.851051695270325 + ], + [ + -81.2082158854878, + 25.819726189848634 + ], + [ + -81.18827222606441, + 25.788400684426943 + ], + [ + -81.14838490721766, + 25.788400684426943 + ], + [ + -81.12844124779427, + 25.819726189848634 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.12844124779427, + 25.88237720069202 + ], + [ + -81.14838490721766, + 25.91370270611371 + ], + [ + -81.18827222606441, + 25.91370270611371 + ], + [ + -81.2082158854878, + 25.88237720069202 + ], + [ + -81.18827222606441, + 25.85105169527033 + ], + [ + -81.14838490721766, + 25.85105169527033 + ], + [ + -81.12844124779427, + 25.88237720069202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.12844124779427, + 25.945028211535405 + ], + [ + -81.14838490721766, + 25.976353716957096 + ], + [ + -81.18827222606441, + 25.976353716957096 + ], + [ + -81.2082158854878, + 25.945028211535405 + ], + [ + -81.18827222606441, + 25.913702706113714 + ], + [ + -81.14838490721766, + 25.913702706113714 + ], + [ + -81.12844124779427, + 25.945028211535405 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.12844124779427, + 26.00767922237879 + ], + [ + -81.14838490721766, + 26.03900472780048 + ], + [ + -81.18827222606441, + 26.03900472780048 + ], + [ + -81.2082158854878, + 26.00767922237879 + ], + [ + -81.18827222606441, + 25.9763537169571 + ], + [ + -81.14838490721766, + 25.9763537169571 + ], + [ + -81.12844124779427, + 26.00767922237879 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.12844124779427, + 26.070330233222176 + ], + [ + -81.14838490721766, + 26.101655738643867 + ], + [ + -81.18827222606441, + 26.101655738643867 + ], + [ + -81.2082158854878, + 26.070330233222176 + ], + [ + -81.18827222606441, + 26.039004727800485 + ], + [ + -81.14838490721766, + 26.039004727800485 + ], + [ + -81.12844124779427, + 26.070330233222176 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.12844124779427, + 26.13298124406556 + ], + [ + -81.14838490721766, + 26.164306749487253 + ], + [ + -81.18827222606441, + 26.164306749487253 + ], + [ + -81.2082158854878, + 26.13298124406556 + ], + [ + -81.18827222606441, + 26.10165573864387 + ], + [ + -81.14838490721766, + 26.10165573864387 + ], + [ + -81.12844124779427, + 26.13298124406556 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.12844124779427, + 26.195632254908944 + ], + [ + -81.14838490721766, + 26.226957760330635 + ], + [ + -81.18827222606441, + 26.226957760330635 + ], + [ + -81.2082158854878, + 26.195632254908944 + ], + [ + -81.18827222606441, + 26.164306749487253 + ], + [ + -81.14838490721766, + 26.164306749487253 + ], + [ + -81.12844124779427, + 26.195632254908944 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.12844124779427, + 26.258283265752333 + ], + [ + -81.14838490721766, + 26.289608771174024 + ], + [ + -81.18827222606441, + 26.289608771174024 + ], + [ + -81.2082158854878, + 26.258283265752333 + ], + [ + -81.18827222606441, + 26.22695776033064 + ], + [ + -81.14838490721766, + 26.22695776033064 + ], + [ + -81.12844124779427, + 26.258283265752333 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.12844124779427, + 26.320934276595715 + ], + [ + -81.14838490721766, + 26.352259782017406 + ], + [ + -81.18827222606441, + 26.352259782017406 + ], + [ + -81.2082158854878, + 26.320934276595715 + ], + [ + -81.18827222606441, + 26.289608771174024 + ], + [ + -81.14838490721766, + 26.289608771174024 + ], + [ + -81.12844124779427, + 26.320934276595715 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.12844124779427, + 26.3835852874391 + ], + [ + -81.14838490721766, + 26.41491079286079 + ], + [ + -81.18827222606441, + 26.41491079286079 + ], + [ + -81.2082158854878, + 26.3835852874391 + ], + [ + -81.18827222606441, + 26.35225978201741 + ], + [ + -81.14838490721766, + 26.35225978201741 + ], + [ + -81.12844124779427, + 26.3835852874391 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.12844124779427, + 26.446236298282486 + ], + [ + -81.14838490721766, + 26.477561803704177 + ], + [ + -81.18827222606441, + 26.477561803704177 + ], + [ + -81.2082158854878, + 26.446236298282486 + ], + [ + -81.18827222606441, + 26.414910792860795 + ], + [ + -81.14838490721766, + 26.414910792860795 + ], + [ + -81.12844124779427, + 26.446236298282486 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.06861026952413, + 24.911286532619545 + ], + [ + -81.08855392894752, + 24.942612038041236 + ], + [ + -81.12844124779427, + 24.942612038041236 + ], + [ + -81.14838490721766, + 24.911286532619545 + ], + [ + -81.12844124779427, + 24.879961027197854 + ], + [ + -81.08855392894752, + 24.879961027197854 + ], + [ + -81.06861026952413, + 24.911286532619545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.06861026952413, + 24.97393754346293 + ], + [ + -81.08855392894752, + 25.005263048884622 + ], + [ + -81.12844124779427, + 25.005263048884622 + ], + [ + -81.14838490721766, + 24.97393754346293 + ], + [ + -81.12844124779427, + 24.94261203804124 + ], + [ + -81.08855392894752, + 24.94261203804124 + ], + [ + -81.06861026952413, + 24.97393754346293 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.06861026952413, + 25.036588554306316 + ], + [ + -81.08855392894752, + 25.067914059728007 + ], + [ + -81.12844124779427, + 25.067914059728007 + ], + [ + -81.14838490721766, + 25.036588554306316 + ], + [ + -81.12844124779427, + 25.005263048884625 + ], + [ + -81.08855392894752, + 25.005263048884625 + ], + [ + -81.06861026952413, + 25.036588554306316 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.06861026952413, + 25.099239565149702 + ], + [ + -81.08855392894752, + 25.130565070571393 + ], + [ + -81.12844124779427, + 25.130565070571393 + ], + [ + -81.14838490721766, + 25.099239565149702 + ], + [ + -81.12844124779427, + 25.06791405972801 + ], + [ + -81.08855392894752, + 25.06791405972801 + ], + [ + -81.06861026952413, + 25.099239565149702 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.06861026952413, + 25.161890575993088 + ], + [ + -81.08855392894752, + 25.19321608141478 + ], + [ + -81.12844124779427, + 25.19321608141478 + ], + [ + -81.14838490721766, + 25.161890575993088 + ], + [ + -81.12844124779427, + 25.130565070571397 + ], + [ + -81.08855392894752, + 25.130565070571397 + ], + [ + -81.06861026952413, + 25.161890575993088 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.06861026952413, + 25.224541586836473 + ], + [ + -81.08855392894752, + 25.255867092258164 + ], + [ + -81.12844124779427, + 25.255867092258164 + ], + [ + -81.14838490721766, + 25.224541586836473 + ], + [ + -81.12844124779427, + 25.193216081414782 + ], + [ + -81.08855392894752, + 25.193216081414782 + ], + [ + -81.06861026952413, + 25.224541586836473 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.06861026952413, + 25.28719259767986 + ], + [ + -81.08855392894752, + 25.31851810310155 + ], + [ + -81.12844124779427, + 25.31851810310155 + ], + [ + -81.14838490721766, + 25.28719259767986 + ], + [ + -81.12844124779427, + 25.255867092258168 + ], + [ + -81.08855392894752, + 25.255867092258168 + ], + [ + -81.06861026952413, + 25.28719259767986 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.06861026952413, + 25.349843608523244 + ], + [ + -81.08855392894752, + 25.381169113944935 + ], + [ + -81.12844124779427, + 25.381169113944935 + ], + [ + -81.14838490721766, + 25.349843608523244 + ], + [ + -81.12844124779427, + 25.318518103101553 + ], + [ + -81.08855392894752, + 25.318518103101553 + ], + [ + -81.06861026952413, + 25.349843608523244 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.06861026952413, + 25.41249461936663 + ], + [ + -81.08855392894752, + 25.44382012478832 + ], + [ + -81.12844124779427, + 25.44382012478832 + ], + [ + -81.14838490721766, + 25.41249461936663 + ], + [ + -81.12844124779427, + 25.38116911394494 + ], + [ + -81.08855392894752, + 25.38116911394494 + ], + [ + -81.06861026952413, + 25.41249461936663 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.06861026952413, + 25.475145630210015 + ], + [ + -81.08855392894752, + 25.506471135631706 + ], + [ + -81.12844124779427, + 25.506471135631706 + ], + [ + -81.14838490721766, + 25.475145630210015 + ], + [ + -81.12844124779427, + 25.443820124788324 + ], + [ + -81.08855392894752, + 25.443820124788324 + ], + [ + -81.06861026952413, + 25.475145630210015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.06861026952413, + 25.5377966410534 + ], + [ + -81.08855392894752, + 25.56912214647509 + ], + [ + -81.12844124779427, + 25.56912214647509 + ], + [ + -81.14838490721766, + 25.5377966410534 + ], + [ + -81.12844124779427, + 25.50647113563171 + ], + [ + -81.08855392894752, + 25.50647113563171 + ], + [ + -81.06861026952413, + 25.5377966410534 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.06861026952413, + 25.600447651896786 + ], + [ + -81.08855392894752, + 25.631773157318477 + ], + [ + -81.12844124779427, + 25.631773157318477 + ], + [ + -81.14838490721766, + 25.600447651896786 + ], + [ + -81.12844124779427, + 25.569122146475095 + ], + [ + -81.08855392894752, + 25.569122146475095 + ], + [ + -81.06861026952413, + 25.600447651896786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.06861026952413, + 25.663098662740172 + ], + [ + -81.08855392894752, + 25.694424168161863 + ], + [ + -81.12844124779427, + 25.694424168161863 + ], + [ + -81.14838490721766, + 25.663098662740172 + ], + [ + -81.12844124779427, + 25.63177315731848 + ], + [ + -81.08855392894752, + 25.63177315731848 + ], + [ + -81.06861026952413, + 25.663098662740172 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.06861026952413, + 25.725749673583557 + ], + [ + -81.08855392894752, + 25.75707517900525 + ], + [ + -81.12844124779427, + 25.75707517900525 + ], + [ + -81.14838490721766, + 25.725749673583557 + ], + [ + -81.12844124779427, + 25.694424168161866 + ], + [ + -81.08855392894752, + 25.694424168161866 + ], + [ + -81.06861026952413, + 25.725749673583557 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.06861026952413, + 25.788400684426943 + ], + [ + -81.08855392894752, + 25.819726189848634 + ], + [ + -81.12844124779427, + 25.819726189848634 + ], + [ + -81.14838490721766, + 25.788400684426943 + ], + [ + -81.12844124779427, + 25.757075179005252 + ], + [ + -81.08855392894752, + 25.757075179005252 + ], + [ + -81.06861026952413, + 25.788400684426943 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.06861026952413, + 25.85105169527033 + ], + [ + -81.08855392894752, + 25.88237720069202 + ], + [ + -81.12844124779427, + 25.88237720069202 + ], + [ + -81.14838490721766, + 25.85105169527033 + ], + [ + -81.12844124779427, + 25.819726189848637 + ], + [ + -81.08855392894752, + 25.819726189848637 + ], + [ + -81.06861026952413, + 25.85105169527033 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.06861026952413, + 25.913702706113714 + ], + [ + -81.08855392894752, + 25.945028211535405 + ], + [ + -81.12844124779427, + 25.945028211535405 + ], + [ + -81.14838490721766, + 25.913702706113714 + ], + [ + -81.12844124779427, + 25.882377200692023 + ], + [ + -81.08855392894752, + 25.882377200692023 + ], + [ + -81.06861026952413, + 25.913702706113714 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.06861026952413, + 25.9763537169571 + ], + [ + -81.08855392894752, + 26.00767922237879 + ], + [ + -81.12844124779427, + 26.00767922237879 + ], + [ + -81.14838490721766, + 25.9763537169571 + ], + [ + -81.12844124779427, + 25.94502821153541 + ], + [ + -81.08855392894752, + 25.94502821153541 + ], + [ + -81.06861026952413, + 25.9763537169571 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.06861026952413, + 26.039004727800485 + ], + [ + -81.08855392894752, + 26.070330233222176 + ], + [ + -81.12844124779427, + 26.070330233222176 + ], + [ + -81.14838490721766, + 26.039004727800485 + ], + [ + -81.12844124779427, + 26.007679222378794 + ], + [ + -81.08855392894752, + 26.007679222378794 + ], + [ + -81.06861026952413, + 26.039004727800485 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.06861026952413, + 26.10165573864387 + ], + [ + -81.08855392894752, + 26.13298124406556 + ], + [ + -81.12844124779427, + 26.13298124406556 + ], + [ + -81.14838490721766, + 26.10165573864387 + ], + [ + -81.12844124779427, + 26.07033023322218 + ], + [ + -81.08855392894752, + 26.07033023322218 + ], + [ + -81.06861026952413, + 26.10165573864387 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.06861026952413, + 26.164306749487253 + ], + [ + -81.08855392894752, + 26.195632254908944 + ], + [ + -81.12844124779427, + 26.195632254908944 + ], + [ + -81.14838490721766, + 26.164306749487253 + ], + [ + -81.12844124779427, + 26.13298124406556 + ], + [ + -81.08855392894752, + 26.13298124406556 + ], + [ + -81.06861026952413, + 26.164306749487253 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.06861026952413, + 26.22695776033064 + ], + [ + -81.08855392894752, + 26.258283265752333 + ], + [ + -81.12844124779427, + 26.258283265752333 + ], + [ + -81.14838490721766, + 26.22695776033064 + ], + [ + -81.12844124779427, + 26.19563225490895 + ], + [ + -81.08855392894752, + 26.19563225490895 + ], + [ + -81.06861026952413, + 26.22695776033064 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.06861026952413, + 26.289608771174024 + ], + [ + -81.08855392894752, + 26.320934276595715 + ], + [ + -81.12844124779427, + 26.320934276595715 + ], + [ + -81.14838490721766, + 26.289608771174024 + ], + [ + -81.12844124779427, + 26.258283265752333 + ], + [ + -81.08855392894752, + 26.258283265752333 + ], + [ + -81.06861026952413, + 26.289608771174024 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.06861026952413, + 26.35225978201741 + ], + [ + -81.08855392894752, + 26.3835852874391 + ], + [ + -81.12844124779427, + 26.3835852874391 + ], + [ + -81.14838490721766, + 26.35225978201741 + ], + [ + -81.12844124779427, + 26.320934276595718 + ], + [ + -81.08855392894752, + 26.320934276595718 + ], + [ + -81.06861026952413, + 26.35225978201741 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.06861026952413, + 26.414910792860795 + ], + [ + -81.08855392894752, + 26.446236298282486 + ], + [ + -81.12844124779427, + 26.446236298282486 + ], + [ + -81.14838490721766, + 26.414910792860795 + ], + [ + -81.12844124779427, + 26.383585287439104 + ], + [ + -81.08855392894752, + 26.383585287439104 + ], + [ + -81.06861026952413, + 26.414910792860795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.00877929125399, + 24.942612038041236 + ], + [ + -81.02872295067738, + 24.973937543462927 + ], + [ + -81.06861026952413, + 24.973937543462927 + ], + [ + -81.08855392894752, + 24.942612038041236 + ], + [ + -81.06861026952413, + 24.911286532619545 + ], + [ + -81.02872295067738, + 24.911286532619545 + ], + [ + -81.00877929125399, + 24.942612038041236 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.00877929125399, + 25.005263048884622 + ], + [ + -81.02872295067738, + 25.036588554306313 + ], + [ + -81.06861026952413, + 25.036588554306313 + ], + [ + -81.08855392894752, + 25.005263048884622 + ], + [ + -81.06861026952413, + 24.97393754346293 + ], + [ + -81.02872295067738, + 24.97393754346293 + ], + [ + -81.00877929125399, + 25.005263048884622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.00877929125399, + 25.067914059728007 + ], + [ + -81.02872295067738, + 25.0992395651497 + ], + [ + -81.06861026952413, + 25.0992395651497 + ], + [ + -81.08855392894752, + 25.067914059728007 + ], + [ + -81.06861026952413, + 25.036588554306316 + ], + [ + -81.02872295067738, + 25.036588554306316 + ], + [ + -81.00877929125399, + 25.067914059728007 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.00877929125399, + 25.130565070571393 + ], + [ + -81.02872295067738, + 25.161890575993084 + ], + [ + -81.06861026952413, + 25.161890575993084 + ], + [ + -81.08855392894752, + 25.130565070571393 + ], + [ + -81.06861026952413, + 25.099239565149702 + ], + [ + -81.02872295067738, + 25.099239565149702 + ], + [ + -81.00877929125399, + 25.130565070571393 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.00877929125399, + 25.19321608141478 + ], + [ + -81.02872295067738, + 25.22454158683647 + ], + [ + -81.06861026952413, + 25.22454158683647 + ], + [ + -81.08855392894752, + 25.19321608141478 + ], + [ + -81.06861026952413, + 25.161890575993088 + ], + [ + -81.02872295067738, + 25.161890575993088 + ], + [ + -81.00877929125399, + 25.19321608141478 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.00877929125399, + 25.255867092258164 + ], + [ + -81.02872295067738, + 25.287192597679855 + ], + [ + -81.06861026952413, + 25.287192597679855 + ], + [ + -81.08855392894752, + 25.255867092258164 + ], + [ + -81.06861026952413, + 25.224541586836473 + ], + [ + -81.02872295067738, + 25.224541586836473 + ], + [ + -81.00877929125399, + 25.255867092258164 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.00877929125399, + 25.31851810310155 + ], + [ + -81.02872295067738, + 25.34984360852324 + ], + [ + -81.06861026952413, + 25.34984360852324 + ], + [ + -81.08855392894752, + 25.31851810310155 + ], + [ + -81.06861026952413, + 25.28719259767986 + ], + [ + -81.02872295067738, + 25.28719259767986 + ], + [ + -81.00877929125399, + 25.31851810310155 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.00877929125399, + 25.381169113944935 + ], + [ + -81.02872295067738, + 25.412494619366626 + ], + [ + -81.06861026952413, + 25.412494619366626 + ], + [ + -81.08855392894752, + 25.381169113944935 + ], + [ + -81.06861026952413, + 25.349843608523244 + ], + [ + -81.02872295067738, + 25.349843608523244 + ], + [ + -81.00877929125399, + 25.381169113944935 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.00877929125399, + 25.44382012478832 + ], + [ + -81.02872295067738, + 25.47514563021001 + ], + [ + -81.06861026952413, + 25.47514563021001 + ], + [ + -81.08855392894752, + 25.44382012478832 + ], + [ + -81.06861026952413, + 25.41249461936663 + ], + [ + -81.02872295067738, + 25.41249461936663 + ], + [ + -81.00877929125399, + 25.44382012478832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.00877929125399, + 25.506471135631706 + ], + [ + -81.02872295067738, + 25.537796641053397 + ], + [ + -81.06861026952413, + 25.537796641053397 + ], + [ + -81.08855392894752, + 25.506471135631706 + ], + [ + -81.06861026952413, + 25.475145630210015 + ], + [ + -81.02872295067738, + 25.475145630210015 + ], + [ + -81.00877929125399, + 25.506471135631706 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.00877929125399, + 25.56912214647509 + ], + [ + -81.02872295067738, + 25.600447651896783 + ], + [ + -81.06861026952413, + 25.600447651896783 + ], + [ + -81.08855392894752, + 25.56912214647509 + ], + [ + -81.06861026952413, + 25.5377966410534 + ], + [ + -81.02872295067738, + 25.5377966410534 + ], + [ + -81.00877929125399, + 25.56912214647509 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.00877929125399, + 25.631773157318477 + ], + [ + -81.02872295067738, + 25.66309866274017 + ], + [ + -81.06861026952413, + 25.66309866274017 + ], + [ + -81.08855392894752, + 25.631773157318477 + ], + [ + -81.06861026952413, + 25.600447651896786 + ], + [ + -81.02872295067738, + 25.600447651896786 + ], + [ + -81.00877929125399, + 25.631773157318477 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.00877929125399, + 25.694424168161863 + ], + [ + -81.02872295067738, + 25.725749673583554 + ], + [ + -81.06861026952413, + 25.725749673583554 + ], + [ + -81.08855392894752, + 25.694424168161863 + ], + [ + -81.06861026952413, + 25.663098662740172 + ], + [ + -81.02872295067738, + 25.663098662740172 + ], + [ + -81.00877929125399, + 25.694424168161863 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.00877929125399, + 25.75707517900525 + ], + [ + -81.02872295067738, + 25.78840068442694 + ], + [ + -81.06861026952413, + 25.78840068442694 + ], + [ + -81.08855392894752, + 25.75707517900525 + ], + [ + -81.06861026952413, + 25.725749673583557 + ], + [ + -81.02872295067738, + 25.725749673583557 + ], + [ + -81.00877929125399, + 25.75707517900525 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.00877929125399, + 25.819726189848634 + ], + [ + -81.02872295067738, + 25.851051695270325 + ], + [ + -81.06861026952413, + 25.851051695270325 + ], + [ + -81.08855392894752, + 25.819726189848634 + ], + [ + -81.06861026952413, + 25.788400684426943 + ], + [ + -81.02872295067738, + 25.788400684426943 + ], + [ + -81.00877929125399, + 25.819726189848634 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.00877929125399, + 25.88237720069202 + ], + [ + -81.02872295067738, + 25.91370270611371 + ], + [ + -81.06861026952413, + 25.91370270611371 + ], + [ + -81.08855392894752, + 25.88237720069202 + ], + [ + -81.06861026952413, + 25.85105169527033 + ], + [ + -81.02872295067738, + 25.85105169527033 + ], + [ + -81.00877929125399, + 25.88237720069202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.00877929125399, + 25.945028211535405 + ], + [ + -81.02872295067738, + 25.976353716957096 + ], + [ + -81.06861026952413, + 25.976353716957096 + ], + [ + -81.08855392894752, + 25.945028211535405 + ], + [ + -81.06861026952413, + 25.913702706113714 + ], + [ + -81.02872295067738, + 25.913702706113714 + ], + [ + -81.00877929125399, + 25.945028211535405 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.00877929125399, + 26.00767922237879 + ], + [ + -81.02872295067738, + 26.03900472780048 + ], + [ + -81.06861026952413, + 26.03900472780048 + ], + [ + -81.08855392894752, + 26.00767922237879 + ], + [ + -81.06861026952413, + 25.9763537169571 + ], + [ + -81.02872295067738, + 25.9763537169571 + ], + [ + -81.00877929125399, + 26.00767922237879 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.00877929125399, + 26.070330233222176 + ], + [ + -81.02872295067738, + 26.101655738643867 + ], + [ + -81.06861026952413, + 26.101655738643867 + ], + [ + -81.08855392894752, + 26.070330233222176 + ], + [ + -81.06861026952413, + 26.039004727800485 + ], + [ + -81.02872295067738, + 26.039004727800485 + ], + [ + -81.00877929125399, + 26.070330233222176 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.00877929125399, + 26.13298124406556 + ], + [ + -81.02872295067738, + 26.164306749487253 + ], + [ + -81.06861026952413, + 26.164306749487253 + ], + [ + -81.08855392894752, + 26.13298124406556 + ], + [ + -81.06861026952413, + 26.10165573864387 + ], + [ + -81.02872295067738, + 26.10165573864387 + ], + [ + -81.00877929125399, + 26.13298124406556 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.00877929125399, + 26.195632254908944 + ], + [ + -81.02872295067738, + 26.226957760330635 + ], + [ + -81.06861026952413, + 26.226957760330635 + ], + [ + -81.08855392894752, + 26.195632254908944 + ], + [ + -81.06861026952413, + 26.164306749487253 + ], + [ + -81.02872295067738, + 26.164306749487253 + ], + [ + -81.00877929125399, + 26.195632254908944 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.00877929125399, + 26.258283265752333 + ], + [ + -81.02872295067738, + 26.289608771174024 + ], + [ + -81.06861026952413, + 26.289608771174024 + ], + [ + -81.08855392894752, + 26.258283265752333 + ], + [ + -81.06861026952413, + 26.22695776033064 + ], + [ + -81.02872295067738, + 26.22695776033064 + ], + [ + -81.00877929125399, + 26.258283265752333 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.00877929125399, + 26.320934276595715 + ], + [ + -81.02872295067738, + 26.352259782017406 + ], + [ + -81.06861026952413, + 26.352259782017406 + ], + [ + -81.08855392894752, + 26.320934276595715 + ], + [ + -81.06861026952413, + 26.289608771174024 + ], + [ + -81.02872295067738, + 26.289608771174024 + ], + [ + -81.00877929125399, + 26.320934276595715 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.00877929125399, + 26.3835852874391 + ], + [ + -81.02872295067738, + 26.41491079286079 + ], + [ + -81.06861026952413, + 26.41491079286079 + ], + [ + -81.08855392894752, + 26.3835852874391 + ], + [ + -81.06861026952413, + 26.35225978201741 + ], + [ + -81.02872295067738, + 26.35225978201741 + ], + [ + -81.00877929125399, + 26.3835852874391 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.00877929125399, + 26.446236298282486 + ], + [ + -81.02872295067738, + 26.477561803704177 + ], + [ + -81.06861026952413, + 26.477561803704177 + ], + [ + -81.08855392894752, + 26.446236298282486 + ], + [ + -81.06861026952413, + 26.414910792860795 + ], + [ + -81.02872295067738, + 26.414910792860795 + ], + [ + -81.00877929125399, + 26.446236298282486 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.94894831298383, + 24.911286532619545 + ], + [ + -80.96889197240722, + 24.942612038041236 + ], + [ + -81.00877929125397, + 24.942612038041236 + ], + [ + -81.02872295067736, + 24.911286532619545 + ], + [ + -81.00877929125397, + 24.879961027197854 + ], + [ + -80.96889197240722, + 24.879961027197854 + ], + [ + -80.94894831298383, + 24.911286532619545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.94894831298383, + 24.97393754346293 + ], + [ + -80.96889197240722, + 25.005263048884622 + ], + [ + -81.00877929125397, + 25.005263048884622 + ], + [ + -81.02872295067736, + 24.97393754346293 + ], + [ + -81.00877929125397, + 24.94261203804124 + ], + [ + -80.96889197240722, + 24.94261203804124 + ], + [ + -80.94894831298383, + 24.97393754346293 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.94894831298383, + 25.036588554306316 + ], + [ + -80.96889197240722, + 25.067914059728007 + ], + [ + -81.00877929125397, + 25.067914059728007 + ], + [ + -81.02872295067736, + 25.036588554306316 + ], + [ + -81.00877929125397, + 25.005263048884625 + ], + [ + -80.96889197240722, + 25.005263048884625 + ], + [ + -80.94894831298383, + 25.036588554306316 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.94894831298383, + 25.099239565149702 + ], + [ + -80.96889197240722, + 25.130565070571393 + ], + [ + -81.00877929125397, + 25.130565070571393 + ], + [ + -81.02872295067736, + 25.099239565149702 + ], + [ + -81.00877929125397, + 25.06791405972801 + ], + [ + -80.96889197240722, + 25.06791405972801 + ], + [ + -80.94894831298383, + 25.099239565149702 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.94894831298383, + 25.161890575993088 + ], + [ + -80.96889197240722, + 25.19321608141478 + ], + [ + -81.00877929125397, + 25.19321608141478 + ], + [ + -81.02872295067736, + 25.161890575993088 + ], + [ + -81.00877929125397, + 25.130565070571397 + ], + [ + -80.96889197240722, + 25.130565070571397 + ], + [ + -80.94894831298383, + 25.161890575993088 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.94894831298383, + 25.224541586836473 + ], + [ + -80.96889197240722, + 25.255867092258164 + ], + [ + -81.00877929125397, + 25.255867092258164 + ], + [ + -81.02872295067736, + 25.224541586836473 + ], + [ + -81.00877929125397, + 25.193216081414782 + ], + [ + -80.96889197240722, + 25.193216081414782 + ], + [ + -80.94894831298383, + 25.224541586836473 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.94894831298383, + 25.28719259767986 + ], + [ + -80.96889197240722, + 25.31851810310155 + ], + [ + -81.00877929125397, + 25.31851810310155 + ], + [ + -81.02872295067736, + 25.28719259767986 + ], + [ + -81.00877929125397, + 25.255867092258168 + ], + [ + -80.96889197240722, + 25.255867092258168 + ], + [ + -80.94894831298383, + 25.28719259767986 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.94894831298383, + 25.349843608523244 + ], + [ + -80.96889197240722, + 25.381169113944935 + ], + [ + -81.00877929125397, + 25.381169113944935 + ], + [ + -81.02872295067736, + 25.349843608523244 + ], + [ + -81.00877929125397, + 25.318518103101553 + ], + [ + -80.96889197240722, + 25.318518103101553 + ], + [ + -80.94894831298383, + 25.349843608523244 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.94894831298383, + 25.41249461936663 + ], + [ + -80.96889197240722, + 25.44382012478832 + ], + [ + -81.00877929125397, + 25.44382012478832 + ], + [ + -81.02872295067736, + 25.41249461936663 + ], + [ + -81.00877929125397, + 25.38116911394494 + ], + [ + -80.96889197240722, + 25.38116911394494 + ], + [ + -80.94894831298383, + 25.41249461936663 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.94894831298383, + 25.475145630210015 + ], + [ + -80.96889197240722, + 25.506471135631706 + ], + [ + -81.00877929125397, + 25.506471135631706 + ], + [ + -81.02872295067736, + 25.475145630210015 + ], + [ + -81.00877929125397, + 25.443820124788324 + ], + [ + -80.96889197240722, + 25.443820124788324 + ], + [ + -80.94894831298383, + 25.475145630210015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.94894831298383, + 25.5377966410534 + ], + [ + -80.96889197240722, + 25.56912214647509 + ], + [ + -81.00877929125397, + 25.56912214647509 + ], + [ + -81.02872295067736, + 25.5377966410534 + ], + [ + -81.00877929125397, + 25.50647113563171 + ], + [ + -80.96889197240722, + 25.50647113563171 + ], + [ + -80.94894831298383, + 25.5377966410534 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.94894831298383, + 25.600447651896786 + ], + [ + -80.96889197240722, + 25.631773157318477 + ], + [ + -81.00877929125397, + 25.631773157318477 + ], + [ + -81.02872295067736, + 25.600447651896786 + ], + [ + -81.00877929125397, + 25.569122146475095 + ], + [ + -80.96889197240722, + 25.569122146475095 + ], + [ + -80.94894831298383, + 25.600447651896786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.94894831298383, + 25.663098662740172 + ], + [ + -80.96889197240722, + 25.694424168161863 + ], + [ + -81.00877929125397, + 25.694424168161863 + ], + [ + -81.02872295067736, + 25.663098662740172 + ], + [ + -81.00877929125397, + 25.63177315731848 + ], + [ + -80.96889197240722, + 25.63177315731848 + ], + [ + -80.94894831298383, + 25.663098662740172 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.94894831298383, + 25.725749673583557 + ], + [ + -80.96889197240722, + 25.75707517900525 + ], + [ + -81.00877929125397, + 25.75707517900525 + ], + [ + -81.02872295067736, + 25.725749673583557 + ], + [ + -81.00877929125397, + 25.694424168161866 + ], + [ + -80.96889197240722, + 25.694424168161866 + ], + [ + -80.94894831298383, + 25.725749673583557 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.94894831298383, + 25.788400684426943 + ], + [ + -80.96889197240722, + 25.819726189848634 + ], + [ + -81.00877929125397, + 25.819726189848634 + ], + [ + -81.02872295067736, + 25.788400684426943 + ], + [ + -81.00877929125397, + 25.757075179005252 + ], + [ + -80.96889197240722, + 25.757075179005252 + ], + [ + -80.94894831298383, + 25.788400684426943 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.94894831298383, + 25.85105169527033 + ], + [ + -80.96889197240722, + 25.88237720069202 + ], + [ + -81.00877929125397, + 25.88237720069202 + ], + [ + -81.02872295067736, + 25.85105169527033 + ], + [ + -81.00877929125397, + 25.819726189848637 + ], + [ + -80.96889197240722, + 25.819726189848637 + ], + [ + -80.94894831298383, + 25.85105169527033 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.94894831298383, + 25.913702706113714 + ], + [ + -80.96889197240722, + 25.945028211535405 + ], + [ + -81.00877929125397, + 25.945028211535405 + ], + [ + -81.02872295067736, + 25.913702706113714 + ], + [ + -81.00877929125397, + 25.882377200692023 + ], + [ + -80.96889197240722, + 25.882377200692023 + ], + [ + -80.94894831298383, + 25.913702706113714 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.94894831298383, + 25.9763537169571 + ], + [ + -80.96889197240722, + 26.00767922237879 + ], + [ + -81.00877929125397, + 26.00767922237879 + ], + [ + -81.02872295067736, + 25.9763537169571 + ], + [ + -81.00877929125397, + 25.94502821153541 + ], + [ + -80.96889197240722, + 25.94502821153541 + ], + [ + -80.94894831298383, + 25.9763537169571 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.94894831298383, + 26.039004727800485 + ], + [ + -80.96889197240722, + 26.070330233222176 + ], + [ + -81.00877929125397, + 26.070330233222176 + ], + [ + -81.02872295067736, + 26.039004727800485 + ], + [ + -81.00877929125397, + 26.007679222378794 + ], + [ + -80.96889197240722, + 26.007679222378794 + ], + [ + -80.94894831298383, + 26.039004727800485 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.94894831298383, + 26.10165573864387 + ], + [ + -80.96889197240722, + 26.13298124406556 + ], + [ + -81.00877929125397, + 26.13298124406556 + ], + [ + -81.02872295067736, + 26.10165573864387 + ], + [ + -81.00877929125397, + 26.07033023322218 + ], + [ + -80.96889197240722, + 26.07033023322218 + ], + [ + -80.94894831298383, + 26.10165573864387 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.94894831298383, + 26.164306749487253 + ], + [ + -80.96889197240722, + 26.195632254908944 + ], + [ + -81.00877929125397, + 26.195632254908944 + ], + [ + -81.02872295067736, + 26.164306749487253 + ], + [ + -81.00877929125397, + 26.13298124406556 + ], + [ + -80.96889197240722, + 26.13298124406556 + ], + [ + -80.94894831298383, + 26.164306749487253 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.94894831298383, + 26.22695776033064 + ], + [ + -80.96889197240722, + 26.258283265752333 + ], + [ + -81.00877929125397, + 26.258283265752333 + ], + [ + -81.02872295067736, + 26.22695776033064 + ], + [ + -81.00877929125397, + 26.19563225490895 + ], + [ + -80.96889197240722, + 26.19563225490895 + ], + [ + -80.94894831298383, + 26.22695776033064 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.94894831298383, + 26.289608771174024 + ], + [ + -80.96889197240722, + 26.320934276595715 + ], + [ + -81.00877929125397, + 26.320934276595715 + ], + [ + -81.02872295067736, + 26.289608771174024 + ], + [ + -81.00877929125397, + 26.258283265752333 + ], + [ + -80.96889197240722, + 26.258283265752333 + ], + [ + -80.94894831298383, + 26.289608771174024 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.94894831298383, + 26.35225978201741 + ], + [ + -80.96889197240722, + 26.3835852874391 + ], + [ + -81.00877929125397, + 26.3835852874391 + ], + [ + -81.02872295067736, + 26.35225978201741 + ], + [ + -81.00877929125397, + 26.320934276595718 + ], + [ + -80.96889197240722, + 26.320934276595718 + ], + [ + -80.94894831298383, + 26.35225978201741 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.94894831298383, + 26.414910792860795 + ], + [ + -80.96889197240722, + 26.446236298282486 + ], + [ + -81.00877929125397, + 26.446236298282486 + ], + [ + -81.02872295067736, + 26.414910792860795 + ], + [ + -81.00877929125397, + 26.383585287439104 + ], + [ + -80.96889197240722, + 26.383585287439104 + ], + [ + -80.94894831298383, + 26.414910792860795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.88911733471369, + 24.942612038041236 + ], + [ + -80.90906099413708, + 24.973937543462927 + ], + [ + -80.94894831298383, + 24.973937543462927 + ], + [ + -80.96889197240722, + 24.942612038041236 + ], + [ + -80.94894831298383, + 24.911286532619545 + ], + [ + -80.90906099413708, + 24.911286532619545 + ], + [ + -80.88911733471369, + 24.942612038041236 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.88911733471369, + 25.005263048884622 + ], + [ + -80.90906099413708, + 25.036588554306313 + ], + [ + -80.94894831298383, + 25.036588554306313 + ], + [ + -80.96889197240722, + 25.005263048884622 + ], + [ + -80.94894831298383, + 24.97393754346293 + ], + [ + -80.90906099413708, + 24.97393754346293 + ], + [ + -80.88911733471369, + 25.005263048884622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.88911733471369, + 25.067914059728007 + ], + [ + -80.90906099413708, + 25.0992395651497 + ], + [ + -80.94894831298383, + 25.0992395651497 + ], + [ + -80.96889197240722, + 25.067914059728007 + ], + [ + -80.94894831298383, + 25.036588554306316 + ], + [ + -80.90906099413708, + 25.036588554306316 + ], + [ + -80.88911733471369, + 25.067914059728007 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.88911733471369, + 25.130565070571393 + ], + [ + -80.90906099413708, + 25.161890575993084 + ], + [ + -80.94894831298383, + 25.161890575993084 + ], + [ + -80.96889197240722, + 25.130565070571393 + ], + [ + -80.94894831298383, + 25.099239565149702 + ], + [ + -80.90906099413708, + 25.099239565149702 + ], + [ + -80.88911733471369, + 25.130565070571393 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.88911733471369, + 25.19321608141478 + ], + [ + -80.90906099413708, + 25.22454158683647 + ], + [ + -80.94894831298383, + 25.22454158683647 + ], + [ + -80.96889197240722, + 25.19321608141478 + ], + [ + -80.94894831298383, + 25.161890575993088 + ], + [ + -80.90906099413708, + 25.161890575993088 + ], + [ + -80.88911733471369, + 25.19321608141478 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.88911733471369, + 25.255867092258164 + ], + [ + -80.90906099413708, + 25.287192597679855 + ], + [ + -80.94894831298383, + 25.287192597679855 + ], + [ + -80.96889197240722, + 25.255867092258164 + ], + [ + -80.94894831298383, + 25.224541586836473 + ], + [ + -80.90906099413708, + 25.224541586836473 + ], + [ + -80.88911733471369, + 25.255867092258164 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.88911733471369, + 25.31851810310155 + ], + [ + -80.90906099413708, + 25.34984360852324 + ], + [ + -80.94894831298383, + 25.34984360852324 + ], + [ + -80.96889197240722, + 25.31851810310155 + ], + [ + -80.94894831298383, + 25.28719259767986 + ], + [ + -80.90906099413708, + 25.28719259767986 + ], + [ + -80.88911733471369, + 25.31851810310155 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.88911733471369, + 25.381169113944935 + ], + [ + -80.90906099413708, + 25.412494619366626 + ], + [ + -80.94894831298383, + 25.412494619366626 + ], + [ + -80.96889197240722, + 25.381169113944935 + ], + [ + -80.94894831298383, + 25.349843608523244 + ], + [ + -80.90906099413708, + 25.349843608523244 + ], + [ + -80.88911733471369, + 25.381169113944935 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.88911733471369, + 25.44382012478832 + ], + [ + -80.90906099413708, + 25.47514563021001 + ], + [ + -80.94894831298383, + 25.47514563021001 + ], + [ + -80.96889197240722, + 25.44382012478832 + ], + [ + -80.94894831298383, + 25.41249461936663 + ], + [ + -80.90906099413708, + 25.41249461936663 + ], + [ + -80.88911733471369, + 25.44382012478832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.88911733471369, + 25.506471135631706 + ], + [ + -80.90906099413708, + 25.537796641053397 + ], + [ + -80.94894831298383, + 25.537796641053397 + ], + [ + -80.96889197240722, + 25.506471135631706 + ], + [ + -80.94894831298383, + 25.475145630210015 + ], + [ + -80.90906099413708, + 25.475145630210015 + ], + [ + -80.88911733471369, + 25.506471135631706 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.88911733471369, + 25.56912214647509 + ], + [ + -80.90906099413708, + 25.600447651896783 + ], + [ + -80.94894831298383, + 25.600447651896783 + ], + [ + -80.96889197240722, + 25.56912214647509 + ], + [ + -80.94894831298383, + 25.5377966410534 + ], + [ + -80.90906099413708, + 25.5377966410534 + ], + [ + -80.88911733471369, + 25.56912214647509 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.88911733471369, + 25.631773157318477 + ], + [ + -80.90906099413708, + 25.66309866274017 + ], + [ + -80.94894831298383, + 25.66309866274017 + ], + [ + -80.96889197240722, + 25.631773157318477 + ], + [ + -80.94894831298383, + 25.600447651896786 + ], + [ + -80.90906099413708, + 25.600447651896786 + ], + [ + -80.88911733471369, + 25.631773157318477 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.88911733471369, + 25.694424168161863 + ], + [ + -80.90906099413708, + 25.725749673583554 + ], + [ + -80.94894831298383, + 25.725749673583554 + ], + [ + -80.96889197240722, + 25.694424168161863 + ], + [ + -80.94894831298383, + 25.663098662740172 + ], + [ + -80.90906099413708, + 25.663098662740172 + ], + [ + -80.88911733471369, + 25.694424168161863 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.88911733471369, + 25.75707517900525 + ], + [ + -80.90906099413708, + 25.78840068442694 + ], + [ + -80.94894831298383, + 25.78840068442694 + ], + [ + -80.96889197240722, + 25.75707517900525 + ], + [ + -80.94894831298383, + 25.725749673583557 + ], + [ + -80.90906099413708, + 25.725749673583557 + ], + [ + -80.88911733471369, + 25.75707517900525 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.88911733471369, + 25.819726189848634 + ], + [ + -80.90906099413708, + 25.851051695270325 + ], + [ + -80.94894831298383, + 25.851051695270325 + ], + [ + -80.96889197240722, + 25.819726189848634 + ], + [ + -80.94894831298383, + 25.788400684426943 + ], + [ + -80.90906099413708, + 25.788400684426943 + ], + [ + -80.88911733471369, + 25.819726189848634 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.88911733471369, + 25.88237720069202 + ], + [ + -80.90906099413708, + 25.91370270611371 + ], + [ + -80.94894831298383, + 25.91370270611371 + ], + [ + -80.96889197240722, + 25.88237720069202 + ], + [ + -80.94894831298383, + 25.85105169527033 + ], + [ + -80.90906099413708, + 25.85105169527033 + ], + [ + -80.88911733471369, + 25.88237720069202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.88911733471369, + 25.945028211535405 + ], + [ + -80.90906099413708, + 25.976353716957096 + ], + [ + -80.94894831298383, + 25.976353716957096 + ], + [ + -80.96889197240722, + 25.945028211535405 + ], + [ + -80.94894831298383, + 25.913702706113714 + ], + [ + -80.90906099413708, + 25.913702706113714 + ], + [ + -80.88911733471369, + 25.945028211535405 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.88911733471369, + 26.00767922237879 + ], + [ + -80.90906099413708, + 26.03900472780048 + ], + [ + -80.94894831298383, + 26.03900472780048 + ], + [ + -80.96889197240722, + 26.00767922237879 + ], + [ + -80.94894831298383, + 25.9763537169571 + ], + [ + -80.90906099413708, + 25.9763537169571 + ], + [ + -80.88911733471369, + 26.00767922237879 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.88911733471369, + 26.070330233222176 + ], + [ + -80.90906099413708, + 26.101655738643867 + ], + [ + -80.94894831298383, + 26.101655738643867 + ], + [ + -80.96889197240722, + 26.070330233222176 + ], + [ + -80.94894831298383, + 26.039004727800485 + ], + [ + -80.90906099413708, + 26.039004727800485 + ], + [ + -80.88911733471369, + 26.070330233222176 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.88911733471369, + 26.13298124406556 + ], + [ + -80.90906099413708, + 26.164306749487253 + ], + [ + -80.94894831298383, + 26.164306749487253 + ], + [ + -80.96889197240722, + 26.13298124406556 + ], + [ + -80.94894831298383, + 26.10165573864387 + ], + [ + -80.90906099413708, + 26.10165573864387 + ], + [ + -80.88911733471369, + 26.13298124406556 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.88911733471369, + 26.195632254908944 + ], + [ + -80.90906099413708, + 26.226957760330635 + ], + [ + -80.94894831298383, + 26.226957760330635 + ], + [ + -80.96889197240722, + 26.195632254908944 + ], + [ + -80.94894831298383, + 26.164306749487253 + ], + [ + -80.90906099413708, + 26.164306749487253 + ], + [ + -80.88911733471369, + 26.195632254908944 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.88911733471369, + 26.258283265752333 + ], + [ + -80.90906099413708, + 26.289608771174024 + ], + [ + -80.94894831298383, + 26.289608771174024 + ], + [ + -80.96889197240722, + 26.258283265752333 + ], + [ + -80.94894831298383, + 26.22695776033064 + ], + [ + -80.90906099413708, + 26.22695776033064 + ], + [ + -80.88911733471369, + 26.258283265752333 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.88911733471369, + 26.320934276595715 + ], + [ + -80.90906099413708, + 26.352259782017406 + ], + [ + -80.94894831298383, + 26.352259782017406 + ], + [ + -80.96889197240722, + 26.320934276595715 + ], + [ + -80.94894831298383, + 26.289608771174024 + ], + [ + -80.90906099413708, + 26.289608771174024 + ], + [ + -80.88911733471369, + 26.320934276595715 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.88911733471369, + 26.3835852874391 + ], + [ + -80.90906099413708, + 26.41491079286079 + ], + [ + -80.94894831298383, + 26.41491079286079 + ], + [ + -80.96889197240722, + 26.3835852874391 + ], + [ + -80.94894831298383, + 26.35225978201741 + ], + [ + -80.90906099413708, + 26.35225978201741 + ], + [ + -80.88911733471369, + 26.3835852874391 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.88911733471369, + 26.446236298282486 + ], + [ + -80.90906099413708, + 26.477561803704177 + ], + [ + -80.94894831298383, + 26.477561803704177 + ], + [ + -80.96889197240722, + 26.446236298282486 + ], + [ + -80.94894831298383, + 26.414910792860795 + ], + [ + -80.90906099413708, + 26.414910792860795 + ], + [ + -80.88911733471369, + 26.446236298282486 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.82928635644353, + 24.911286532619545 + ], + [ + -80.84923001586692, + 24.942612038041236 + ], + [ + -80.88911733471367, + 24.942612038041236 + ], + [ + -80.90906099413706, + 24.911286532619545 + ], + [ + -80.88911733471367, + 24.879961027197854 + ], + [ + -80.84923001586692, + 24.879961027197854 + ], + [ + -80.82928635644353, + 24.911286532619545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.82928635644353, + 24.97393754346293 + ], + [ + -80.84923001586692, + 25.005263048884622 + ], + [ + -80.88911733471367, + 25.005263048884622 + ], + [ + -80.90906099413706, + 24.97393754346293 + ], + [ + -80.88911733471367, + 24.94261203804124 + ], + [ + -80.84923001586692, + 24.94261203804124 + ], + [ + -80.82928635644353, + 24.97393754346293 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.82928635644353, + 25.036588554306316 + ], + [ + -80.84923001586692, + 25.067914059728007 + ], + [ + -80.88911733471367, + 25.067914059728007 + ], + [ + -80.90906099413706, + 25.036588554306316 + ], + [ + -80.88911733471367, + 25.005263048884625 + ], + [ + -80.84923001586692, + 25.005263048884625 + ], + [ + -80.82928635644353, + 25.036588554306316 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.82928635644353, + 25.099239565149702 + ], + [ + -80.84923001586692, + 25.130565070571393 + ], + [ + -80.88911733471367, + 25.130565070571393 + ], + [ + -80.90906099413706, + 25.099239565149702 + ], + [ + -80.88911733471367, + 25.06791405972801 + ], + [ + -80.84923001586692, + 25.06791405972801 + ], + [ + -80.82928635644353, + 25.099239565149702 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.82928635644353, + 25.161890575993088 + ], + [ + -80.84923001586692, + 25.19321608141478 + ], + [ + -80.88911733471367, + 25.19321608141478 + ], + [ + -80.90906099413706, + 25.161890575993088 + ], + [ + -80.88911733471367, + 25.130565070571397 + ], + [ + -80.84923001586692, + 25.130565070571397 + ], + [ + -80.82928635644353, + 25.161890575993088 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.82928635644353, + 25.224541586836473 + ], + [ + -80.84923001586692, + 25.255867092258164 + ], + [ + -80.88911733471367, + 25.255867092258164 + ], + [ + -80.90906099413706, + 25.224541586836473 + ], + [ + -80.88911733471367, + 25.193216081414782 + ], + [ + -80.84923001586692, + 25.193216081414782 + ], + [ + -80.82928635644353, + 25.224541586836473 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.82928635644353, + 25.28719259767986 + ], + [ + -80.84923001586692, + 25.31851810310155 + ], + [ + -80.88911733471367, + 25.31851810310155 + ], + [ + -80.90906099413706, + 25.28719259767986 + ], + [ + -80.88911733471367, + 25.255867092258168 + ], + [ + -80.84923001586692, + 25.255867092258168 + ], + [ + -80.82928635644353, + 25.28719259767986 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.82928635644353, + 25.349843608523244 + ], + [ + -80.84923001586692, + 25.381169113944935 + ], + [ + -80.88911733471367, + 25.381169113944935 + ], + [ + -80.90906099413706, + 25.349843608523244 + ], + [ + -80.88911733471367, + 25.318518103101553 + ], + [ + -80.84923001586692, + 25.318518103101553 + ], + [ + -80.82928635644353, + 25.349843608523244 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.82928635644353, + 25.41249461936663 + ], + [ + -80.84923001586692, + 25.44382012478832 + ], + [ + -80.88911733471367, + 25.44382012478832 + ], + [ + -80.90906099413706, + 25.41249461936663 + ], + [ + -80.88911733471367, + 25.38116911394494 + ], + [ + -80.84923001586692, + 25.38116911394494 + ], + [ + -80.82928635644353, + 25.41249461936663 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.82928635644353, + 25.475145630210015 + ], + [ + -80.84923001586692, + 25.506471135631706 + ], + [ + -80.88911733471367, + 25.506471135631706 + ], + [ + -80.90906099413706, + 25.475145630210015 + ], + [ + -80.88911733471367, + 25.443820124788324 + ], + [ + -80.84923001586692, + 25.443820124788324 + ], + [ + -80.82928635644353, + 25.475145630210015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.82928635644353, + 25.5377966410534 + ], + [ + -80.84923001586692, + 25.56912214647509 + ], + [ + -80.88911733471367, + 25.56912214647509 + ], + [ + -80.90906099413706, + 25.5377966410534 + ], + [ + -80.88911733471367, + 25.50647113563171 + ], + [ + -80.84923001586692, + 25.50647113563171 + ], + [ + -80.82928635644353, + 25.5377966410534 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.82928635644353, + 25.600447651896786 + ], + [ + -80.84923001586692, + 25.631773157318477 + ], + [ + -80.88911733471367, + 25.631773157318477 + ], + [ + -80.90906099413706, + 25.600447651896786 + ], + [ + -80.88911733471367, + 25.569122146475095 + ], + [ + -80.84923001586692, + 25.569122146475095 + ], + [ + -80.82928635644353, + 25.600447651896786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.82928635644353, + 25.663098662740172 + ], + [ + -80.84923001586692, + 25.694424168161863 + ], + [ + -80.88911733471367, + 25.694424168161863 + ], + [ + -80.90906099413706, + 25.663098662740172 + ], + [ + -80.88911733471367, + 25.63177315731848 + ], + [ + -80.84923001586692, + 25.63177315731848 + ], + [ + -80.82928635644353, + 25.663098662740172 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.82928635644353, + 25.725749673583557 + ], + [ + -80.84923001586692, + 25.75707517900525 + ], + [ + -80.88911733471367, + 25.75707517900525 + ], + [ + -80.90906099413706, + 25.725749673583557 + ], + [ + -80.88911733471367, + 25.694424168161866 + ], + [ + -80.84923001586692, + 25.694424168161866 + ], + [ + -80.82928635644353, + 25.725749673583557 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.82928635644353, + 25.788400684426943 + ], + [ + -80.84923001586692, + 25.819726189848634 + ], + [ + -80.88911733471367, + 25.819726189848634 + ], + [ + -80.90906099413706, + 25.788400684426943 + ], + [ + -80.88911733471367, + 25.757075179005252 + ], + [ + -80.84923001586692, + 25.757075179005252 + ], + [ + -80.82928635644353, + 25.788400684426943 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.82928635644353, + 25.85105169527033 + ], + [ + -80.84923001586692, + 25.88237720069202 + ], + [ + -80.88911733471367, + 25.88237720069202 + ], + [ + -80.90906099413706, + 25.85105169527033 + ], + [ + -80.88911733471367, + 25.819726189848637 + ], + [ + -80.84923001586692, + 25.819726189848637 + ], + [ + -80.82928635644353, + 25.85105169527033 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.82928635644353, + 25.913702706113714 + ], + [ + -80.84923001586692, + 25.945028211535405 + ], + [ + -80.88911733471367, + 25.945028211535405 + ], + [ + -80.90906099413706, + 25.913702706113714 + ], + [ + -80.88911733471367, + 25.882377200692023 + ], + [ + -80.84923001586692, + 25.882377200692023 + ], + [ + -80.82928635644353, + 25.913702706113714 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.82928635644353, + 25.9763537169571 + ], + [ + -80.84923001586692, + 26.00767922237879 + ], + [ + -80.88911733471367, + 26.00767922237879 + ], + [ + -80.90906099413706, + 25.9763537169571 + ], + [ + -80.88911733471367, + 25.94502821153541 + ], + [ + -80.84923001586692, + 25.94502821153541 + ], + [ + -80.82928635644353, + 25.9763537169571 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.82928635644353, + 26.039004727800485 + ], + [ + -80.84923001586692, + 26.070330233222176 + ], + [ + -80.88911733471367, + 26.070330233222176 + ], + [ + -80.90906099413706, + 26.039004727800485 + ], + [ + -80.88911733471367, + 26.007679222378794 + ], + [ + -80.84923001586692, + 26.007679222378794 + ], + [ + -80.82928635644353, + 26.039004727800485 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.82928635644353, + 26.10165573864387 + ], + [ + -80.84923001586692, + 26.13298124406556 + ], + [ + -80.88911733471367, + 26.13298124406556 + ], + [ + -80.90906099413706, + 26.10165573864387 + ], + [ + -80.88911733471367, + 26.07033023322218 + ], + [ + -80.84923001586692, + 26.07033023322218 + ], + [ + -80.82928635644353, + 26.10165573864387 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.82928635644353, + 26.164306749487253 + ], + [ + -80.84923001586692, + 26.195632254908944 + ], + [ + -80.88911733471367, + 26.195632254908944 + ], + [ + -80.90906099413706, + 26.164306749487253 + ], + [ + -80.88911733471367, + 26.13298124406556 + ], + [ + -80.84923001586692, + 26.13298124406556 + ], + [ + -80.82928635644353, + 26.164306749487253 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.82928635644353, + 26.22695776033064 + ], + [ + -80.84923001586692, + 26.258283265752333 + ], + [ + -80.88911733471367, + 26.258283265752333 + ], + [ + -80.90906099413706, + 26.22695776033064 + ], + [ + -80.88911733471367, + 26.19563225490895 + ], + [ + -80.84923001586692, + 26.19563225490895 + ], + [ + -80.82928635644353, + 26.22695776033064 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.82928635644353, + 26.289608771174024 + ], + [ + -80.84923001586692, + 26.320934276595715 + ], + [ + -80.88911733471367, + 26.320934276595715 + ], + [ + -80.90906099413706, + 26.289608771174024 + ], + [ + -80.88911733471367, + 26.258283265752333 + ], + [ + -80.84923001586692, + 26.258283265752333 + ], + [ + -80.82928635644353, + 26.289608771174024 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.82928635644353, + 26.35225978201741 + ], + [ + -80.84923001586692, + 26.3835852874391 + ], + [ + -80.88911733471367, + 26.3835852874391 + ], + [ + -80.90906099413706, + 26.35225978201741 + ], + [ + -80.88911733471367, + 26.320934276595718 + ], + [ + -80.84923001586692, + 26.320934276595718 + ], + [ + -80.82928635644353, + 26.35225978201741 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.82928635644353, + 26.414910792860795 + ], + [ + -80.84923001586692, + 26.446236298282486 + ], + [ + -80.88911733471367, + 26.446236298282486 + ], + [ + -80.90906099413706, + 26.414910792860795 + ], + [ + -80.88911733471367, + 26.383585287439104 + ], + [ + -80.84923001586692, + 26.383585287439104 + ], + [ + -80.82928635644353, + 26.414910792860795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.76945537817339, + 24.942612038041236 + ], + [ + -80.78939903759678, + 24.973937543462927 + ], + [ + -80.82928635644353, + 24.973937543462927 + ], + [ + -80.84923001586692, + 24.942612038041236 + ], + [ + -80.82928635644353, + 24.911286532619545 + ], + [ + -80.78939903759678, + 24.911286532619545 + ], + [ + -80.76945537817339, + 24.942612038041236 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.76945537817339, + 25.005263048884622 + ], + [ + -80.78939903759678, + 25.036588554306313 + ], + [ + -80.82928635644353, + 25.036588554306313 + ], + [ + -80.84923001586692, + 25.005263048884622 + ], + [ + -80.82928635644353, + 24.97393754346293 + ], + [ + -80.78939903759678, + 24.97393754346293 + ], + [ + -80.76945537817339, + 25.005263048884622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.76945537817339, + 25.067914059728007 + ], + [ + -80.78939903759678, + 25.0992395651497 + ], + [ + -80.82928635644353, + 25.0992395651497 + ], + [ + -80.84923001586692, + 25.067914059728007 + ], + [ + -80.82928635644353, + 25.036588554306316 + ], + [ + -80.78939903759678, + 25.036588554306316 + ], + [ + -80.76945537817339, + 25.067914059728007 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.76945537817339, + 25.130565070571393 + ], + [ + -80.78939903759678, + 25.161890575993084 + ], + [ + -80.82928635644353, + 25.161890575993084 + ], + [ + -80.84923001586692, + 25.130565070571393 + ], + [ + -80.82928635644353, + 25.099239565149702 + ], + [ + -80.78939903759678, + 25.099239565149702 + ], + [ + -80.76945537817339, + 25.130565070571393 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.76945537817339, + 25.19321608141478 + ], + [ + -80.78939903759678, + 25.22454158683647 + ], + [ + -80.82928635644353, + 25.22454158683647 + ], + [ + -80.84923001586692, + 25.19321608141478 + ], + [ + -80.82928635644353, + 25.161890575993088 + ], + [ + -80.78939903759678, + 25.161890575993088 + ], + [ + -80.76945537817339, + 25.19321608141478 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.76945537817339, + 25.255867092258164 + ], + [ + -80.78939903759678, + 25.287192597679855 + ], + [ + -80.82928635644353, + 25.287192597679855 + ], + [ + -80.84923001586692, + 25.255867092258164 + ], + [ + -80.82928635644353, + 25.224541586836473 + ], + [ + -80.78939903759678, + 25.224541586836473 + ], + [ + -80.76945537817339, + 25.255867092258164 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.76945537817339, + 25.31851810310155 + ], + [ + -80.78939903759678, + 25.34984360852324 + ], + [ + -80.82928635644353, + 25.34984360852324 + ], + [ + -80.84923001586692, + 25.31851810310155 + ], + [ + -80.82928635644353, + 25.28719259767986 + ], + [ + -80.78939903759678, + 25.28719259767986 + ], + [ + -80.76945537817339, + 25.31851810310155 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.76945537817339, + 25.381169113944935 + ], + [ + -80.78939903759678, + 25.412494619366626 + ], + [ + -80.82928635644353, + 25.412494619366626 + ], + [ + -80.84923001586692, + 25.381169113944935 + ], + [ + -80.82928635644353, + 25.349843608523244 + ], + [ + -80.78939903759678, + 25.349843608523244 + ], + [ + -80.76945537817339, + 25.381169113944935 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.76945537817339, + 25.44382012478832 + ], + [ + -80.78939903759678, + 25.47514563021001 + ], + [ + -80.82928635644353, + 25.47514563021001 + ], + [ + -80.84923001586692, + 25.44382012478832 + ], + [ + -80.82928635644353, + 25.41249461936663 + ], + [ + -80.78939903759678, + 25.41249461936663 + ], + [ + -80.76945537817339, + 25.44382012478832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.76945537817339, + 25.506471135631706 + ], + [ + -80.78939903759678, + 25.537796641053397 + ], + [ + -80.82928635644353, + 25.537796641053397 + ], + [ + -80.84923001586692, + 25.506471135631706 + ], + [ + -80.82928635644353, + 25.475145630210015 + ], + [ + -80.78939903759678, + 25.475145630210015 + ], + [ + -80.76945537817339, + 25.506471135631706 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.76945537817339, + 25.56912214647509 + ], + [ + -80.78939903759678, + 25.600447651896783 + ], + [ + -80.82928635644353, + 25.600447651896783 + ], + [ + -80.84923001586692, + 25.56912214647509 + ], + [ + -80.82928635644353, + 25.5377966410534 + ], + [ + -80.78939903759678, + 25.5377966410534 + ], + [ + -80.76945537817339, + 25.56912214647509 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.76945537817339, + 25.631773157318477 + ], + [ + -80.78939903759678, + 25.66309866274017 + ], + [ + -80.82928635644353, + 25.66309866274017 + ], + [ + -80.84923001586692, + 25.631773157318477 + ], + [ + -80.82928635644353, + 25.600447651896786 + ], + [ + -80.78939903759678, + 25.600447651896786 + ], + [ + -80.76945537817339, + 25.631773157318477 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.76945537817339, + 25.694424168161863 + ], + [ + -80.78939903759678, + 25.725749673583554 + ], + [ + -80.82928635644353, + 25.725749673583554 + ], + [ + -80.84923001586692, + 25.694424168161863 + ], + [ + -80.82928635644353, + 25.663098662740172 + ], + [ + -80.78939903759678, + 25.663098662740172 + ], + [ + -80.76945537817339, + 25.694424168161863 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.76945537817339, + 25.75707517900525 + ], + [ + -80.78939903759678, + 25.78840068442694 + ], + [ + -80.82928635644353, + 25.78840068442694 + ], + [ + -80.84923001586692, + 25.75707517900525 + ], + [ + -80.82928635644353, + 25.725749673583557 + ], + [ + -80.78939903759678, + 25.725749673583557 + ], + [ + -80.76945537817339, + 25.75707517900525 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.76945537817339, + 25.819726189848634 + ], + [ + -80.78939903759678, + 25.851051695270325 + ], + [ + -80.82928635644353, + 25.851051695270325 + ], + [ + -80.84923001586692, + 25.819726189848634 + ], + [ + -80.82928635644353, + 25.788400684426943 + ], + [ + -80.78939903759678, + 25.788400684426943 + ], + [ + -80.76945537817339, + 25.819726189848634 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.76945537817339, + 25.88237720069202 + ], + [ + -80.78939903759678, + 25.91370270611371 + ], + [ + -80.82928635644353, + 25.91370270611371 + ], + [ + -80.84923001586692, + 25.88237720069202 + ], + [ + -80.82928635644353, + 25.85105169527033 + ], + [ + -80.78939903759678, + 25.85105169527033 + ], + [ + -80.76945537817339, + 25.88237720069202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.76945537817339, + 25.945028211535405 + ], + [ + -80.78939903759678, + 25.976353716957096 + ], + [ + -80.82928635644353, + 25.976353716957096 + ], + [ + -80.84923001586692, + 25.945028211535405 + ], + [ + -80.82928635644353, + 25.913702706113714 + ], + [ + -80.78939903759678, + 25.913702706113714 + ], + [ + -80.76945537817339, + 25.945028211535405 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.76945537817339, + 26.00767922237879 + ], + [ + -80.78939903759678, + 26.03900472780048 + ], + [ + -80.82928635644353, + 26.03900472780048 + ], + [ + -80.84923001586692, + 26.00767922237879 + ], + [ + -80.82928635644353, + 25.9763537169571 + ], + [ + -80.78939903759678, + 25.9763537169571 + ], + [ + -80.76945537817339, + 26.00767922237879 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.76945537817339, + 26.070330233222176 + ], + [ + -80.78939903759678, + 26.101655738643867 + ], + [ + -80.82928635644353, + 26.101655738643867 + ], + [ + -80.84923001586692, + 26.070330233222176 + ], + [ + -80.82928635644353, + 26.039004727800485 + ], + [ + -80.78939903759678, + 26.039004727800485 + ], + [ + -80.76945537817339, + 26.070330233222176 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.76945537817339, + 26.13298124406556 + ], + [ + -80.78939903759678, + 26.164306749487253 + ], + [ + -80.82928635644353, + 26.164306749487253 + ], + [ + -80.84923001586692, + 26.13298124406556 + ], + [ + -80.82928635644353, + 26.10165573864387 + ], + [ + -80.78939903759678, + 26.10165573864387 + ], + [ + -80.76945537817339, + 26.13298124406556 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.76945537817339, + 26.195632254908944 + ], + [ + -80.78939903759678, + 26.226957760330635 + ], + [ + -80.82928635644353, + 26.226957760330635 + ], + [ + -80.84923001586692, + 26.195632254908944 + ], + [ + -80.82928635644353, + 26.164306749487253 + ], + [ + -80.78939903759678, + 26.164306749487253 + ], + [ + -80.76945537817339, + 26.195632254908944 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.76945537817339, + 26.258283265752333 + ], + [ + -80.78939903759678, + 26.289608771174024 + ], + [ + -80.82928635644353, + 26.289608771174024 + ], + [ + -80.84923001586692, + 26.258283265752333 + ], + [ + -80.82928635644353, + 26.22695776033064 + ], + [ + -80.78939903759678, + 26.22695776033064 + ], + [ + -80.76945537817339, + 26.258283265752333 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.76945537817339, + 26.320934276595715 + ], + [ + -80.78939903759678, + 26.352259782017406 + ], + [ + -80.82928635644353, + 26.352259782017406 + ], + [ + -80.84923001586692, + 26.320934276595715 + ], + [ + -80.82928635644353, + 26.289608771174024 + ], + [ + -80.78939903759678, + 26.289608771174024 + ], + [ + -80.76945537817339, + 26.320934276595715 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.76945537817339, + 26.3835852874391 + ], + [ + -80.78939903759678, + 26.41491079286079 + ], + [ + -80.82928635644353, + 26.41491079286079 + ], + [ + -80.84923001586692, + 26.3835852874391 + ], + [ + -80.82928635644353, + 26.35225978201741 + ], + [ + -80.78939903759678, + 26.35225978201741 + ], + [ + -80.76945537817339, + 26.3835852874391 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.76945537817339, + 26.446236298282486 + ], + [ + -80.78939903759678, + 26.477561803704177 + ], + [ + -80.82928635644353, + 26.477561803704177 + ], + [ + -80.84923001586692, + 26.446236298282486 + ], + [ + -80.82928635644353, + 26.414910792860795 + ], + [ + -80.78939903759678, + 26.414910792860795 + ], + [ + -80.76945537817339, + 26.446236298282486 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.70962439990323, + 24.911286532619545 + ], + [ + -80.72956805932662, + 24.942612038041236 + ], + [ + -80.76945537817338, + 24.942612038041236 + ], + [ + -80.78939903759677, + 24.911286532619545 + ], + [ + -80.76945537817338, + 24.879961027197854 + ], + [ + -80.72956805932662, + 24.879961027197854 + ], + [ + -80.70962439990323, + 24.911286532619545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.70962439990323, + 24.97393754346293 + ], + [ + -80.72956805932662, + 25.005263048884622 + ], + [ + -80.76945537817338, + 25.005263048884622 + ], + [ + -80.78939903759677, + 24.97393754346293 + ], + [ + -80.76945537817338, + 24.94261203804124 + ], + [ + -80.72956805932662, + 24.94261203804124 + ], + [ + -80.70962439990323, + 24.97393754346293 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.70962439990323, + 25.036588554306316 + ], + [ + -80.72956805932662, + 25.067914059728007 + ], + [ + -80.76945537817338, + 25.067914059728007 + ], + [ + -80.78939903759677, + 25.036588554306316 + ], + [ + -80.76945537817338, + 25.005263048884625 + ], + [ + -80.72956805932662, + 25.005263048884625 + ], + [ + -80.70962439990323, + 25.036588554306316 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.70962439990323, + 25.099239565149702 + ], + [ + -80.72956805932662, + 25.130565070571393 + ], + [ + -80.76945537817338, + 25.130565070571393 + ], + [ + -80.78939903759677, + 25.099239565149702 + ], + [ + -80.76945537817338, + 25.06791405972801 + ], + [ + -80.72956805932662, + 25.06791405972801 + ], + [ + -80.70962439990323, + 25.099239565149702 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.70962439990323, + 25.161890575993088 + ], + [ + -80.72956805932662, + 25.19321608141478 + ], + [ + -80.76945537817338, + 25.19321608141478 + ], + [ + -80.78939903759677, + 25.161890575993088 + ], + [ + -80.76945537817338, + 25.130565070571397 + ], + [ + -80.72956805932662, + 25.130565070571397 + ], + [ + -80.70962439990323, + 25.161890575993088 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.70962439990323, + 25.224541586836473 + ], + [ + -80.72956805932662, + 25.255867092258164 + ], + [ + -80.76945537817338, + 25.255867092258164 + ], + [ + -80.78939903759677, + 25.224541586836473 + ], + [ + -80.76945537817338, + 25.193216081414782 + ], + [ + -80.72956805932662, + 25.193216081414782 + ], + [ + -80.70962439990323, + 25.224541586836473 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.70962439990323, + 25.28719259767986 + ], + [ + -80.72956805932662, + 25.31851810310155 + ], + [ + -80.76945537817338, + 25.31851810310155 + ], + [ + -80.78939903759677, + 25.28719259767986 + ], + [ + -80.76945537817338, + 25.255867092258168 + ], + [ + -80.72956805932662, + 25.255867092258168 + ], + [ + -80.70962439990323, + 25.28719259767986 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.70962439990323, + 25.349843608523244 + ], + [ + -80.72956805932662, + 25.381169113944935 + ], + [ + -80.76945537817338, + 25.381169113944935 + ], + [ + -80.78939903759677, + 25.349843608523244 + ], + [ + -80.76945537817338, + 25.318518103101553 + ], + [ + -80.72956805932662, + 25.318518103101553 + ], + [ + -80.70962439990323, + 25.349843608523244 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.70962439990323, + 25.41249461936663 + ], + [ + -80.72956805932662, + 25.44382012478832 + ], + [ + -80.76945537817338, + 25.44382012478832 + ], + [ + -80.78939903759677, + 25.41249461936663 + ], + [ + -80.76945537817338, + 25.38116911394494 + ], + [ + -80.72956805932662, + 25.38116911394494 + ], + [ + -80.70962439990323, + 25.41249461936663 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.70962439990323, + 25.475145630210015 + ], + [ + -80.72956805932662, + 25.506471135631706 + ], + [ + -80.76945537817338, + 25.506471135631706 + ], + [ + -80.78939903759677, + 25.475145630210015 + ], + [ + -80.76945537817338, + 25.443820124788324 + ], + [ + -80.72956805932662, + 25.443820124788324 + ], + [ + -80.70962439990323, + 25.475145630210015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.70962439990323, + 25.5377966410534 + ], + [ + -80.72956805932662, + 25.56912214647509 + ], + [ + -80.76945537817338, + 25.56912214647509 + ], + [ + -80.78939903759677, + 25.5377966410534 + ], + [ + -80.76945537817338, + 25.50647113563171 + ], + [ + -80.72956805932662, + 25.50647113563171 + ], + [ + -80.70962439990323, + 25.5377966410534 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.70962439990323, + 25.600447651896786 + ], + [ + -80.72956805932662, + 25.631773157318477 + ], + [ + -80.76945537817338, + 25.631773157318477 + ], + [ + -80.78939903759677, + 25.600447651896786 + ], + [ + -80.76945537817338, + 25.569122146475095 + ], + [ + -80.72956805932662, + 25.569122146475095 + ], + [ + -80.70962439990323, + 25.600447651896786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.70962439990323, + 25.663098662740172 + ], + [ + -80.72956805932662, + 25.694424168161863 + ], + [ + -80.76945537817338, + 25.694424168161863 + ], + [ + -80.78939903759677, + 25.663098662740172 + ], + [ + -80.76945537817338, + 25.63177315731848 + ], + [ + -80.72956805932662, + 25.63177315731848 + ], + [ + -80.70962439990323, + 25.663098662740172 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.70962439990323, + 25.725749673583557 + ], + [ + -80.72956805932662, + 25.75707517900525 + ], + [ + -80.76945537817338, + 25.75707517900525 + ], + [ + -80.78939903759677, + 25.725749673583557 + ], + [ + -80.76945537817338, + 25.694424168161866 + ], + [ + -80.72956805932662, + 25.694424168161866 + ], + [ + -80.70962439990323, + 25.725749673583557 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.70962439990323, + 25.788400684426943 + ], + [ + -80.72956805932662, + 25.819726189848634 + ], + [ + -80.76945537817338, + 25.819726189848634 + ], + [ + -80.78939903759677, + 25.788400684426943 + ], + [ + -80.76945537817338, + 25.757075179005252 + ], + [ + -80.72956805932662, + 25.757075179005252 + ], + [ + -80.70962439990323, + 25.788400684426943 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.70962439990323, + 25.85105169527033 + ], + [ + -80.72956805932662, + 25.88237720069202 + ], + [ + -80.76945537817338, + 25.88237720069202 + ], + [ + -80.78939903759677, + 25.85105169527033 + ], + [ + -80.76945537817338, + 25.819726189848637 + ], + [ + -80.72956805932662, + 25.819726189848637 + ], + [ + -80.70962439990323, + 25.85105169527033 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.70962439990323, + 25.913702706113714 + ], + [ + -80.72956805932662, + 25.945028211535405 + ], + [ + -80.76945537817338, + 25.945028211535405 + ], + [ + -80.78939903759677, + 25.913702706113714 + ], + [ + -80.76945537817338, + 25.882377200692023 + ], + [ + -80.72956805932662, + 25.882377200692023 + ], + [ + -80.70962439990323, + 25.913702706113714 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.70962439990323, + 25.9763537169571 + ], + [ + -80.72956805932662, + 26.00767922237879 + ], + [ + -80.76945537817338, + 26.00767922237879 + ], + [ + -80.78939903759677, + 25.9763537169571 + ], + [ + -80.76945537817338, + 25.94502821153541 + ], + [ + -80.72956805932662, + 25.94502821153541 + ], + [ + -80.70962439990323, + 25.9763537169571 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.70962439990323, + 26.039004727800485 + ], + [ + -80.72956805932662, + 26.070330233222176 + ], + [ + -80.76945537817338, + 26.070330233222176 + ], + [ + -80.78939903759677, + 26.039004727800485 + ], + [ + -80.76945537817338, + 26.007679222378794 + ], + [ + -80.72956805932662, + 26.007679222378794 + ], + [ + -80.70962439990323, + 26.039004727800485 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.70962439990323, + 26.10165573864387 + ], + [ + -80.72956805932662, + 26.13298124406556 + ], + [ + -80.76945537817338, + 26.13298124406556 + ], + [ + -80.78939903759677, + 26.10165573864387 + ], + [ + -80.76945537817338, + 26.07033023322218 + ], + [ + -80.72956805932662, + 26.07033023322218 + ], + [ + -80.70962439990323, + 26.10165573864387 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.70962439990323, + 26.164306749487253 + ], + [ + -80.72956805932662, + 26.195632254908944 + ], + [ + -80.76945537817338, + 26.195632254908944 + ], + [ + -80.78939903759677, + 26.164306749487253 + ], + [ + -80.76945537817338, + 26.13298124406556 + ], + [ + -80.72956805932662, + 26.13298124406556 + ], + [ + -80.70962439990323, + 26.164306749487253 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.70962439990323, + 26.22695776033064 + ], + [ + -80.72956805932662, + 26.258283265752333 + ], + [ + -80.76945537817338, + 26.258283265752333 + ], + [ + -80.78939903759677, + 26.22695776033064 + ], + [ + -80.76945537817338, + 26.19563225490895 + ], + [ + -80.72956805932662, + 26.19563225490895 + ], + [ + -80.70962439990323, + 26.22695776033064 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.70962439990323, + 26.289608771174024 + ], + [ + -80.72956805932662, + 26.320934276595715 + ], + [ + -80.76945537817338, + 26.320934276595715 + ], + [ + -80.78939903759677, + 26.289608771174024 + ], + [ + -80.76945537817338, + 26.258283265752333 + ], + [ + -80.72956805932662, + 26.258283265752333 + ], + [ + -80.70962439990323, + 26.289608771174024 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.70962439990323, + 26.35225978201741 + ], + [ + -80.72956805932662, + 26.3835852874391 + ], + [ + -80.76945537817338, + 26.3835852874391 + ], + [ + -80.78939903759677, + 26.35225978201741 + ], + [ + -80.76945537817338, + 26.320934276595718 + ], + [ + -80.72956805932662, + 26.320934276595718 + ], + [ + -80.70962439990323, + 26.35225978201741 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.70962439990323, + 26.414910792860795 + ], + [ + -80.72956805932662, + 26.446236298282486 + ], + [ + -80.76945537817338, + 26.446236298282486 + ], + [ + -80.78939903759677, + 26.414910792860795 + ], + [ + -80.76945537817338, + 26.383585287439104 + ], + [ + -80.72956805932662, + 26.383585287439104 + ], + [ + -80.70962439990323, + 26.414910792860795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.64979342163309, + 24.942612038041236 + ], + [ + -80.66973708105648, + 24.973937543462927 + ], + [ + -80.70962439990323, + 24.973937543462927 + ], + [ + -80.72956805932662, + 24.942612038041236 + ], + [ + -80.70962439990323, + 24.911286532619545 + ], + [ + -80.66973708105648, + 24.911286532619545 + ], + [ + -80.64979342163309, + 24.942612038041236 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.64979342163309, + 25.005263048884622 + ], + [ + -80.66973708105648, + 25.036588554306313 + ], + [ + -80.70962439990323, + 25.036588554306313 + ], + [ + -80.72956805932662, + 25.005263048884622 + ], + [ + -80.70962439990323, + 24.97393754346293 + ], + [ + -80.66973708105648, + 24.97393754346293 + ], + [ + -80.64979342163309, + 25.005263048884622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.64979342163309, + 25.067914059728007 + ], + [ + -80.66973708105648, + 25.0992395651497 + ], + [ + -80.70962439990323, + 25.0992395651497 + ], + [ + -80.72956805932662, + 25.067914059728007 + ], + [ + -80.70962439990323, + 25.036588554306316 + ], + [ + -80.66973708105648, + 25.036588554306316 + ], + [ + -80.64979342163309, + 25.067914059728007 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.64979342163309, + 25.130565070571393 + ], + [ + -80.66973708105648, + 25.161890575993084 + ], + [ + -80.70962439990323, + 25.161890575993084 + ], + [ + -80.72956805932662, + 25.130565070571393 + ], + [ + -80.70962439990323, + 25.099239565149702 + ], + [ + -80.66973708105648, + 25.099239565149702 + ], + [ + -80.64979342163309, + 25.130565070571393 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.64979342163309, + 25.19321608141478 + ], + [ + -80.66973708105648, + 25.22454158683647 + ], + [ + -80.70962439990323, + 25.22454158683647 + ], + [ + -80.72956805932662, + 25.19321608141478 + ], + [ + -80.70962439990323, + 25.161890575993088 + ], + [ + -80.66973708105648, + 25.161890575993088 + ], + [ + -80.64979342163309, + 25.19321608141478 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.64979342163309, + 25.255867092258164 + ], + [ + -80.66973708105648, + 25.287192597679855 + ], + [ + -80.70962439990323, + 25.287192597679855 + ], + [ + -80.72956805932662, + 25.255867092258164 + ], + [ + -80.70962439990323, + 25.224541586836473 + ], + [ + -80.66973708105648, + 25.224541586836473 + ], + [ + -80.64979342163309, + 25.255867092258164 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.64979342163309, + 25.31851810310155 + ], + [ + -80.66973708105648, + 25.34984360852324 + ], + [ + -80.70962439990323, + 25.34984360852324 + ], + [ + -80.72956805932662, + 25.31851810310155 + ], + [ + -80.70962439990323, + 25.28719259767986 + ], + [ + -80.66973708105648, + 25.28719259767986 + ], + [ + -80.64979342163309, + 25.31851810310155 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.64979342163309, + 25.381169113944935 + ], + [ + -80.66973708105648, + 25.412494619366626 + ], + [ + -80.70962439990323, + 25.412494619366626 + ], + [ + -80.72956805932662, + 25.381169113944935 + ], + [ + -80.70962439990323, + 25.349843608523244 + ], + [ + -80.66973708105648, + 25.349843608523244 + ], + [ + -80.64979342163309, + 25.381169113944935 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.64979342163309, + 25.44382012478832 + ], + [ + -80.66973708105648, + 25.47514563021001 + ], + [ + -80.70962439990323, + 25.47514563021001 + ], + [ + -80.72956805932662, + 25.44382012478832 + ], + [ + -80.70962439990323, + 25.41249461936663 + ], + [ + -80.66973708105648, + 25.41249461936663 + ], + [ + -80.64979342163309, + 25.44382012478832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.64979342163309, + 25.506471135631706 + ], + [ + -80.66973708105648, + 25.537796641053397 + ], + [ + -80.70962439990323, + 25.537796641053397 + ], + [ + -80.72956805932662, + 25.506471135631706 + ], + [ + -80.70962439990323, + 25.475145630210015 + ], + [ + -80.66973708105648, + 25.475145630210015 + ], + [ + -80.64979342163309, + 25.506471135631706 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.64979342163309, + 25.56912214647509 + ], + [ + -80.66973708105648, + 25.600447651896783 + ], + [ + -80.70962439990323, + 25.600447651896783 + ], + [ + -80.72956805932662, + 25.56912214647509 + ], + [ + -80.70962439990323, + 25.5377966410534 + ], + [ + -80.66973708105648, + 25.5377966410534 + ], + [ + -80.64979342163309, + 25.56912214647509 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.64979342163309, + 25.631773157318477 + ], + [ + -80.66973708105648, + 25.66309866274017 + ], + [ + -80.70962439990323, + 25.66309866274017 + ], + [ + -80.72956805932662, + 25.631773157318477 + ], + [ + -80.70962439990323, + 25.600447651896786 + ], + [ + -80.66973708105648, + 25.600447651896786 + ], + [ + -80.64979342163309, + 25.631773157318477 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.64979342163309, + 25.694424168161863 + ], + [ + -80.66973708105648, + 25.725749673583554 + ], + [ + -80.70962439990323, + 25.725749673583554 + ], + [ + -80.72956805932662, + 25.694424168161863 + ], + [ + -80.70962439990323, + 25.663098662740172 + ], + [ + -80.66973708105648, + 25.663098662740172 + ], + [ + -80.64979342163309, + 25.694424168161863 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.64979342163309, + 25.75707517900525 + ], + [ + -80.66973708105648, + 25.78840068442694 + ], + [ + -80.70962439990323, + 25.78840068442694 + ], + [ + -80.72956805932662, + 25.75707517900525 + ], + [ + -80.70962439990323, + 25.725749673583557 + ], + [ + -80.66973708105648, + 25.725749673583557 + ], + [ + -80.64979342163309, + 25.75707517900525 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.64979342163309, + 25.819726189848634 + ], + [ + -80.66973708105648, + 25.851051695270325 + ], + [ + -80.70962439990323, + 25.851051695270325 + ], + [ + -80.72956805932662, + 25.819726189848634 + ], + [ + -80.70962439990323, + 25.788400684426943 + ], + [ + -80.66973708105648, + 25.788400684426943 + ], + [ + -80.64979342163309, + 25.819726189848634 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.64979342163309, + 25.88237720069202 + ], + [ + -80.66973708105648, + 25.91370270611371 + ], + [ + -80.70962439990323, + 25.91370270611371 + ], + [ + -80.72956805932662, + 25.88237720069202 + ], + [ + -80.70962439990323, + 25.85105169527033 + ], + [ + -80.66973708105648, + 25.85105169527033 + ], + [ + -80.64979342163309, + 25.88237720069202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.64979342163309, + 25.945028211535405 + ], + [ + -80.66973708105648, + 25.976353716957096 + ], + [ + -80.70962439990323, + 25.976353716957096 + ], + [ + -80.72956805932662, + 25.945028211535405 + ], + [ + -80.70962439990323, + 25.913702706113714 + ], + [ + -80.66973708105648, + 25.913702706113714 + ], + [ + -80.64979342163309, + 25.945028211535405 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.64979342163309, + 26.00767922237879 + ], + [ + -80.66973708105648, + 26.03900472780048 + ], + [ + -80.70962439990323, + 26.03900472780048 + ], + [ + -80.72956805932662, + 26.00767922237879 + ], + [ + -80.70962439990323, + 25.9763537169571 + ], + [ + -80.66973708105648, + 25.9763537169571 + ], + [ + -80.64979342163309, + 26.00767922237879 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.64979342163309, + 26.070330233222176 + ], + [ + -80.66973708105648, + 26.101655738643867 + ], + [ + -80.70962439990323, + 26.101655738643867 + ], + [ + -80.72956805932662, + 26.070330233222176 + ], + [ + -80.70962439990323, + 26.039004727800485 + ], + [ + -80.66973708105648, + 26.039004727800485 + ], + [ + -80.64979342163309, + 26.070330233222176 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.64979342163309, + 26.13298124406556 + ], + [ + -80.66973708105648, + 26.164306749487253 + ], + [ + -80.70962439990323, + 26.164306749487253 + ], + [ + -80.72956805932662, + 26.13298124406556 + ], + [ + -80.70962439990323, + 26.10165573864387 + ], + [ + -80.66973708105648, + 26.10165573864387 + ], + [ + -80.64979342163309, + 26.13298124406556 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.64979342163309, + 26.195632254908944 + ], + [ + -80.66973708105648, + 26.226957760330635 + ], + [ + -80.70962439990323, + 26.226957760330635 + ], + [ + -80.72956805932662, + 26.195632254908944 + ], + [ + -80.70962439990323, + 26.164306749487253 + ], + [ + -80.66973708105648, + 26.164306749487253 + ], + [ + -80.64979342163309, + 26.195632254908944 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.64979342163309, + 26.258283265752333 + ], + [ + -80.66973708105648, + 26.289608771174024 + ], + [ + -80.70962439990323, + 26.289608771174024 + ], + [ + -80.72956805932662, + 26.258283265752333 + ], + [ + -80.70962439990323, + 26.22695776033064 + ], + [ + -80.66973708105648, + 26.22695776033064 + ], + [ + -80.64979342163309, + 26.258283265752333 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.64979342163309, + 26.320934276595715 + ], + [ + -80.66973708105648, + 26.352259782017406 + ], + [ + -80.70962439990323, + 26.352259782017406 + ], + [ + -80.72956805932662, + 26.320934276595715 + ], + [ + -80.70962439990323, + 26.289608771174024 + ], + [ + -80.66973708105648, + 26.289608771174024 + ], + [ + -80.64979342163309, + 26.320934276595715 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.64979342163309, + 26.3835852874391 + ], + [ + -80.66973708105648, + 26.41491079286079 + ], + [ + -80.70962439990323, + 26.41491079286079 + ], + [ + -80.72956805932662, + 26.3835852874391 + ], + [ + -80.70962439990323, + 26.35225978201741 + ], + [ + -80.66973708105648, + 26.35225978201741 + ], + [ + -80.64979342163309, + 26.3835852874391 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.64979342163309, + 26.446236298282486 + ], + [ + -80.66973708105648, + 26.477561803704177 + ], + [ + -80.70962439990323, + 26.477561803704177 + ], + [ + -80.72956805932662, + 26.446236298282486 + ], + [ + -80.70962439990323, + 26.414910792860795 + ], + [ + -80.66973708105648, + 26.414910792860795 + ], + [ + -80.64979342163309, + 26.446236298282486 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.58996244336294, + 24.911286532619545 + ], + [ + -80.60990610278633, + 24.942612038041236 + ], + [ + -80.64979342163308, + 24.942612038041236 + ], + [ + -80.66973708105647, + 24.911286532619545 + ], + [ + -80.64979342163308, + 24.879961027197854 + ], + [ + -80.60990610278633, + 24.879961027197854 + ], + [ + -80.58996244336294, + 24.911286532619545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.58996244336294, + 24.97393754346293 + ], + [ + -80.60990610278633, + 25.005263048884622 + ], + [ + -80.64979342163308, + 25.005263048884622 + ], + [ + -80.66973708105647, + 24.97393754346293 + ], + [ + -80.64979342163308, + 24.94261203804124 + ], + [ + -80.60990610278633, + 24.94261203804124 + ], + [ + -80.58996244336294, + 24.97393754346293 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.58996244336294, + 25.036588554306316 + ], + [ + -80.60990610278633, + 25.067914059728007 + ], + [ + -80.64979342163308, + 25.067914059728007 + ], + [ + -80.66973708105647, + 25.036588554306316 + ], + [ + -80.64979342163308, + 25.005263048884625 + ], + [ + -80.60990610278633, + 25.005263048884625 + ], + [ + -80.58996244336294, + 25.036588554306316 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.58996244336294, + 25.099239565149702 + ], + [ + -80.60990610278633, + 25.130565070571393 + ], + [ + -80.64979342163308, + 25.130565070571393 + ], + [ + -80.66973708105647, + 25.099239565149702 + ], + [ + -80.64979342163308, + 25.06791405972801 + ], + [ + -80.60990610278633, + 25.06791405972801 + ], + [ + -80.58996244336294, + 25.099239565149702 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.58996244336294, + 25.161890575993088 + ], + [ + -80.60990610278633, + 25.19321608141478 + ], + [ + -80.64979342163308, + 25.19321608141478 + ], + [ + -80.66973708105647, + 25.161890575993088 + ], + [ + -80.64979342163308, + 25.130565070571397 + ], + [ + -80.60990610278633, + 25.130565070571397 + ], + [ + -80.58996244336294, + 25.161890575993088 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.58996244336294, + 25.224541586836473 + ], + [ + -80.60990610278633, + 25.255867092258164 + ], + [ + -80.64979342163308, + 25.255867092258164 + ], + [ + -80.66973708105647, + 25.224541586836473 + ], + [ + -80.64979342163308, + 25.193216081414782 + ], + [ + -80.60990610278633, + 25.193216081414782 + ], + [ + -80.58996244336294, + 25.224541586836473 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.58996244336294, + 25.28719259767986 + ], + [ + -80.60990610278633, + 25.31851810310155 + ], + [ + -80.64979342163308, + 25.31851810310155 + ], + [ + -80.66973708105647, + 25.28719259767986 + ], + [ + -80.64979342163308, + 25.255867092258168 + ], + [ + -80.60990610278633, + 25.255867092258168 + ], + [ + -80.58996244336294, + 25.28719259767986 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.58996244336294, + 25.349843608523244 + ], + [ + -80.60990610278633, + 25.381169113944935 + ], + [ + -80.64979342163308, + 25.381169113944935 + ], + [ + -80.66973708105647, + 25.349843608523244 + ], + [ + -80.64979342163308, + 25.318518103101553 + ], + [ + -80.60990610278633, + 25.318518103101553 + ], + [ + -80.58996244336294, + 25.349843608523244 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.58996244336294, + 25.41249461936663 + ], + [ + -80.60990610278633, + 25.44382012478832 + ], + [ + -80.64979342163308, + 25.44382012478832 + ], + [ + -80.66973708105647, + 25.41249461936663 + ], + [ + -80.64979342163308, + 25.38116911394494 + ], + [ + -80.60990610278633, + 25.38116911394494 + ], + [ + -80.58996244336294, + 25.41249461936663 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.58996244336294, + 25.475145630210015 + ], + [ + -80.60990610278633, + 25.506471135631706 + ], + [ + -80.64979342163308, + 25.506471135631706 + ], + [ + -80.66973708105647, + 25.475145630210015 + ], + [ + -80.64979342163308, + 25.443820124788324 + ], + [ + -80.60990610278633, + 25.443820124788324 + ], + [ + -80.58996244336294, + 25.475145630210015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.58996244336294, + 25.5377966410534 + ], + [ + -80.60990610278633, + 25.56912214647509 + ], + [ + -80.64979342163308, + 25.56912214647509 + ], + [ + -80.66973708105647, + 25.5377966410534 + ], + [ + -80.64979342163308, + 25.50647113563171 + ], + [ + -80.60990610278633, + 25.50647113563171 + ], + [ + -80.58996244336294, + 25.5377966410534 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.58996244336294, + 25.600447651896786 + ], + [ + -80.60990610278633, + 25.631773157318477 + ], + [ + -80.64979342163308, + 25.631773157318477 + ], + [ + -80.66973708105647, + 25.600447651896786 + ], + [ + -80.64979342163308, + 25.569122146475095 + ], + [ + -80.60990610278633, + 25.569122146475095 + ], + [ + -80.58996244336294, + 25.600447651896786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.58996244336294, + 25.663098662740172 + ], + [ + -80.60990610278633, + 25.694424168161863 + ], + [ + -80.64979342163308, + 25.694424168161863 + ], + [ + -80.66973708105647, + 25.663098662740172 + ], + [ + -80.64979342163308, + 25.63177315731848 + ], + [ + -80.60990610278633, + 25.63177315731848 + ], + [ + -80.58996244336294, + 25.663098662740172 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.58996244336294, + 25.725749673583557 + ], + [ + -80.60990610278633, + 25.75707517900525 + ], + [ + -80.64979342163308, + 25.75707517900525 + ], + [ + -80.66973708105647, + 25.725749673583557 + ], + [ + -80.64979342163308, + 25.694424168161866 + ], + [ + -80.60990610278633, + 25.694424168161866 + ], + [ + -80.58996244336294, + 25.725749673583557 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.58996244336294, + 25.788400684426943 + ], + [ + -80.60990610278633, + 25.819726189848634 + ], + [ + -80.64979342163308, + 25.819726189848634 + ], + [ + -80.66973708105647, + 25.788400684426943 + ], + [ + -80.64979342163308, + 25.757075179005252 + ], + [ + -80.60990610278633, + 25.757075179005252 + ], + [ + -80.58996244336294, + 25.788400684426943 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.58996244336294, + 25.85105169527033 + ], + [ + -80.60990610278633, + 25.88237720069202 + ], + [ + -80.64979342163308, + 25.88237720069202 + ], + [ + -80.66973708105647, + 25.85105169527033 + ], + [ + -80.64979342163308, + 25.819726189848637 + ], + [ + -80.60990610278633, + 25.819726189848637 + ], + [ + -80.58996244336294, + 25.85105169527033 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.58996244336294, + 25.913702706113714 + ], + [ + -80.60990610278633, + 25.945028211535405 + ], + [ + -80.64979342163308, + 25.945028211535405 + ], + [ + -80.66973708105647, + 25.913702706113714 + ], + [ + -80.64979342163308, + 25.882377200692023 + ], + [ + -80.60990610278633, + 25.882377200692023 + ], + [ + -80.58996244336294, + 25.913702706113714 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.58996244336294, + 25.9763537169571 + ], + [ + -80.60990610278633, + 26.00767922237879 + ], + [ + -80.64979342163308, + 26.00767922237879 + ], + [ + -80.66973708105647, + 25.9763537169571 + ], + [ + -80.64979342163308, + 25.94502821153541 + ], + [ + -80.60990610278633, + 25.94502821153541 + ], + [ + -80.58996244336294, + 25.9763537169571 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.58996244336294, + 26.039004727800485 + ], + [ + -80.60990610278633, + 26.070330233222176 + ], + [ + -80.64979342163308, + 26.070330233222176 + ], + [ + -80.66973708105647, + 26.039004727800485 + ], + [ + -80.64979342163308, + 26.007679222378794 + ], + [ + -80.60990610278633, + 26.007679222378794 + ], + [ + -80.58996244336294, + 26.039004727800485 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.58996244336294, + 26.10165573864387 + ], + [ + -80.60990610278633, + 26.13298124406556 + ], + [ + -80.64979342163308, + 26.13298124406556 + ], + [ + -80.66973708105647, + 26.10165573864387 + ], + [ + -80.64979342163308, + 26.07033023322218 + ], + [ + -80.60990610278633, + 26.07033023322218 + ], + [ + -80.58996244336294, + 26.10165573864387 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.58996244336294, + 26.164306749487253 + ], + [ + -80.60990610278633, + 26.195632254908944 + ], + [ + -80.64979342163308, + 26.195632254908944 + ], + [ + -80.66973708105647, + 26.164306749487253 + ], + [ + -80.64979342163308, + 26.13298124406556 + ], + [ + -80.60990610278633, + 26.13298124406556 + ], + [ + -80.58996244336294, + 26.164306749487253 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.58996244336294, + 26.22695776033064 + ], + [ + -80.60990610278633, + 26.258283265752333 + ], + [ + -80.64979342163308, + 26.258283265752333 + ], + [ + -80.66973708105647, + 26.22695776033064 + ], + [ + -80.64979342163308, + 26.19563225490895 + ], + [ + -80.60990610278633, + 26.19563225490895 + ], + [ + -80.58996244336294, + 26.22695776033064 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.58996244336294, + 26.289608771174024 + ], + [ + -80.60990610278633, + 26.320934276595715 + ], + [ + -80.64979342163308, + 26.320934276595715 + ], + [ + -80.66973708105647, + 26.289608771174024 + ], + [ + -80.64979342163308, + 26.258283265752333 + ], + [ + -80.60990610278633, + 26.258283265752333 + ], + [ + -80.58996244336294, + 26.289608771174024 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.58996244336294, + 26.35225978201741 + ], + [ + -80.60990610278633, + 26.3835852874391 + ], + [ + -80.64979342163308, + 26.3835852874391 + ], + [ + -80.66973708105647, + 26.35225978201741 + ], + [ + -80.64979342163308, + 26.320934276595718 + ], + [ + -80.60990610278633, + 26.320934276595718 + ], + [ + -80.58996244336294, + 26.35225978201741 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.58996244336294, + 26.414910792860795 + ], + [ + -80.60990610278633, + 26.446236298282486 + ], + [ + -80.64979342163308, + 26.446236298282486 + ], + [ + -80.66973708105647, + 26.414910792860795 + ], + [ + -80.64979342163308, + 26.383585287439104 + ], + [ + -80.60990610278633, + 26.383585287439104 + ], + [ + -80.58996244336294, + 26.414910792860795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.5301314650928, + 24.942612038041236 + ], + [ + -80.55007512451618, + 24.973937543462927 + ], + [ + -80.58996244336294, + 24.973937543462927 + ], + [ + -80.60990610278633, + 24.942612038041236 + ], + [ + -80.58996244336294, + 24.911286532619545 + ], + [ + -80.55007512451618, + 24.911286532619545 + ], + [ + -80.5301314650928, + 24.942612038041236 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.5301314650928, + 25.005263048884622 + ], + [ + -80.55007512451618, + 25.036588554306313 + ], + [ + -80.58996244336294, + 25.036588554306313 + ], + [ + -80.60990610278633, + 25.005263048884622 + ], + [ + -80.58996244336294, + 24.97393754346293 + ], + [ + -80.55007512451618, + 24.97393754346293 + ], + [ + -80.5301314650928, + 25.005263048884622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.5301314650928, + 25.067914059728007 + ], + [ + -80.55007512451618, + 25.0992395651497 + ], + [ + -80.58996244336294, + 25.0992395651497 + ], + [ + -80.60990610278633, + 25.067914059728007 + ], + [ + -80.58996244336294, + 25.036588554306316 + ], + [ + -80.55007512451618, + 25.036588554306316 + ], + [ + -80.5301314650928, + 25.067914059728007 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.5301314650928, + 25.130565070571393 + ], + [ + -80.55007512451618, + 25.161890575993084 + ], + [ + -80.58996244336294, + 25.161890575993084 + ], + [ + -80.60990610278633, + 25.130565070571393 + ], + [ + -80.58996244336294, + 25.099239565149702 + ], + [ + -80.55007512451618, + 25.099239565149702 + ], + [ + -80.5301314650928, + 25.130565070571393 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.5301314650928, + 25.19321608141478 + ], + [ + -80.55007512451618, + 25.22454158683647 + ], + [ + -80.58996244336294, + 25.22454158683647 + ], + [ + -80.60990610278633, + 25.19321608141478 + ], + [ + -80.58996244336294, + 25.161890575993088 + ], + [ + -80.55007512451618, + 25.161890575993088 + ], + [ + -80.5301314650928, + 25.19321608141478 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.5301314650928, + 25.255867092258164 + ], + [ + -80.55007512451618, + 25.287192597679855 + ], + [ + -80.58996244336294, + 25.287192597679855 + ], + [ + -80.60990610278633, + 25.255867092258164 + ], + [ + -80.58996244336294, + 25.224541586836473 + ], + [ + -80.55007512451618, + 25.224541586836473 + ], + [ + -80.5301314650928, + 25.255867092258164 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.5301314650928, + 25.31851810310155 + ], + [ + -80.55007512451618, + 25.34984360852324 + ], + [ + -80.58996244336294, + 25.34984360852324 + ], + [ + -80.60990610278633, + 25.31851810310155 + ], + [ + -80.58996244336294, + 25.28719259767986 + ], + [ + -80.55007512451618, + 25.28719259767986 + ], + [ + -80.5301314650928, + 25.31851810310155 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.5301314650928, + 25.381169113944935 + ], + [ + -80.55007512451618, + 25.412494619366626 + ], + [ + -80.58996244336294, + 25.412494619366626 + ], + [ + -80.60990610278633, + 25.381169113944935 + ], + [ + -80.58996244336294, + 25.349843608523244 + ], + [ + -80.55007512451618, + 25.349843608523244 + ], + [ + -80.5301314650928, + 25.381169113944935 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.5301314650928, + 25.44382012478832 + ], + [ + -80.55007512451618, + 25.47514563021001 + ], + [ + -80.58996244336294, + 25.47514563021001 + ], + [ + -80.60990610278633, + 25.44382012478832 + ], + [ + -80.58996244336294, + 25.41249461936663 + ], + [ + -80.55007512451618, + 25.41249461936663 + ], + [ + -80.5301314650928, + 25.44382012478832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.5301314650928, + 25.506471135631706 + ], + [ + -80.55007512451618, + 25.537796641053397 + ], + [ + -80.58996244336294, + 25.537796641053397 + ], + [ + -80.60990610278633, + 25.506471135631706 + ], + [ + -80.58996244336294, + 25.475145630210015 + ], + [ + -80.55007512451618, + 25.475145630210015 + ], + [ + -80.5301314650928, + 25.506471135631706 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.5301314650928, + 25.56912214647509 + ], + [ + -80.55007512451618, + 25.600447651896783 + ], + [ + -80.58996244336294, + 25.600447651896783 + ], + [ + -80.60990610278633, + 25.56912214647509 + ], + [ + -80.58996244336294, + 25.5377966410534 + ], + [ + -80.55007512451618, + 25.5377966410534 + ], + [ + -80.5301314650928, + 25.56912214647509 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.5301314650928, + 25.631773157318477 + ], + [ + -80.55007512451618, + 25.66309866274017 + ], + [ + -80.58996244336294, + 25.66309866274017 + ], + [ + -80.60990610278633, + 25.631773157318477 + ], + [ + -80.58996244336294, + 25.600447651896786 + ], + [ + -80.55007512451618, + 25.600447651896786 + ], + [ + -80.5301314650928, + 25.631773157318477 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.5301314650928, + 25.694424168161863 + ], + [ + -80.55007512451618, + 25.725749673583554 + ], + [ + -80.58996244336294, + 25.725749673583554 + ], + [ + -80.60990610278633, + 25.694424168161863 + ], + [ + -80.58996244336294, + 25.663098662740172 + ], + [ + -80.55007512451618, + 25.663098662740172 + ], + [ + -80.5301314650928, + 25.694424168161863 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.5301314650928, + 25.75707517900525 + ], + [ + -80.55007512451618, + 25.78840068442694 + ], + [ + -80.58996244336294, + 25.78840068442694 + ], + [ + -80.60990610278633, + 25.75707517900525 + ], + [ + -80.58996244336294, + 25.725749673583557 + ], + [ + -80.55007512451618, + 25.725749673583557 + ], + [ + -80.5301314650928, + 25.75707517900525 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.5301314650928, + 25.819726189848634 + ], + [ + -80.55007512451618, + 25.851051695270325 + ], + [ + -80.58996244336294, + 25.851051695270325 + ], + [ + -80.60990610278633, + 25.819726189848634 + ], + [ + -80.58996244336294, + 25.788400684426943 + ], + [ + -80.55007512451618, + 25.788400684426943 + ], + [ + -80.5301314650928, + 25.819726189848634 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.5301314650928, + 25.88237720069202 + ], + [ + -80.55007512451618, + 25.91370270611371 + ], + [ + -80.58996244336294, + 25.91370270611371 + ], + [ + -80.60990610278633, + 25.88237720069202 + ], + [ + -80.58996244336294, + 25.85105169527033 + ], + [ + -80.55007512451618, + 25.85105169527033 + ], + [ + -80.5301314650928, + 25.88237720069202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.5301314650928, + 25.945028211535405 + ], + [ + -80.55007512451618, + 25.976353716957096 + ], + [ + -80.58996244336294, + 25.976353716957096 + ], + [ + -80.60990610278633, + 25.945028211535405 + ], + [ + -80.58996244336294, + 25.913702706113714 + ], + [ + -80.55007512451618, + 25.913702706113714 + ], + [ + -80.5301314650928, + 25.945028211535405 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.5301314650928, + 26.00767922237879 + ], + [ + -80.55007512451618, + 26.03900472780048 + ], + [ + -80.58996244336294, + 26.03900472780048 + ], + [ + -80.60990610278633, + 26.00767922237879 + ], + [ + -80.58996244336294, + 25.9763537169571 + ], + [ + -80.55007512451618, + 25.9763537169571 + ], + [ + -80.5301314650928, + 26.00767922237879 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.5301314650928, + 26.070330233222176 + ], + [ + -80.55007512451618, + 26.101655738643867 + ], + [ + -80.58996244336294, + 26.101655738643867 + ], + [ + -80.60990610278633, + 26.070330233222176 + ], + [ + -80.58996244336294, + 26.039004727800485 + ], + [ + -80.55007512451618, + 26.039004727800485 + ], + [ + -80.5301314650928, + 26.070330233222176 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.5301314650928, + 26.13298124406556 + ], + [ + -80.55007512451618, + 26.164306749487253 + ], + [ + -80.58996244336294, + 26.164306749487253 + ], + [ + -80.60990610278633, + 26.13298124406556 + ], + [ + -80.58996244336294, + 26.10165573864387 + ], + [ + -80.55007512451618, + 26.10165573864387 + ], + [ + -80.5301314650928, + 26.13298124406556 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.5301314650928, + 26.195632254908944 + ], + [ + -80.55007512451618, + 26.226957760330635 + ], + [ + -80.58996244336294, + 26.226957760330635 + ], + [ + -80.60990610278633, + 26.195632254908944 + ], + [ + -80.58996244336294, + 26.164306749487253 + ], + [ + -80.55007512451618, + 26.164306749487253 + ], + [ + -80.5301314650928, + 26.195632254908944 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.5301314650928, + 26.258283265752333 + ], + [ + -80.55007512451618, + 26.289608771174024 + ], + [ + -80.58996244336294, + 26.289608771174024 + ], + [ + -80.60990610278633, + 26.258283265752333 + ], + [ + -80.58996244336294, + 26.22695776033064 + ], + [ + -80.55007512451618, + 26.22695776033064 + ], + [ + -80.5301314650928, + 26.258283265752333 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.5301314650928, + 26.320934276595715 + ], + [ + -80.55007512451618, + 26.352259782017406 + ], + [ + -80.58996244336294, + 26.352259782017406 + ], + [ + -80.60990610278633, + 26.320934276595715 + ], + [ + -80.58996244336294, + 26.289608771174024 + ], + [ + -80.55007512451618, + 26.289608771174024 + ], + [ + -80.5301314650928, + 26.320934276595715 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.5301314650928, + 26.3835852874391 + ], + [ + -80.55007512451618, + 26.41491079286079 + ], + [ + -80.58996244336294, + 26.41491079286079 + ], + [ + -80.60990610278633, + 26.3835852874391 + ], + [ + -80.58996244336294, + 26.35225978201741 + ], + [ + -80.55007512451618, + 26.35225978201741 + ], + [ + -80.5301314650928, + 26.3835852874391 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.5301314650928, + 26.446236298282486 + ], + [ + -80.55007512451618, + 26.477561803704177 + ], + [ + -80.58996244336294, + 26.477561803704177 + ], + [ + -80.60990610278633, + 26.446236298282486 + ], + [ + -80.58996244336294, + 26.414910792860795 + ], + [ + -80.55007512451618, + 26.414910792860795 + ], + [ + -80.5301314650928, + 26.446236298282486 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.47030048682264, + 24.911286532619545 + ], + [ + -80.49024414624603, + 24.942612038041236 + ], + [ + -80.53013146509278, + 24.942612038041236 + ], + [ + -80.55007512451617, + 24.911286532619545 + ], + [ + -80.53013146509278, + 24.879961027197854 + ], + [ + -80.49024414624603, + 24.879961027197854 + ], + [ + -80.47030048682264, + 24.911286532619545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.47030048682264, + 24.97393754346293 + ], + [ + -80.49024414624603, + 25.005263048884622 + ], + [ + -80.53013146509278, + 25.005263048884622 + ], + [ + -80.55007512451617, + 24.97393754346293 + ], + [ + -80.53013146509278, + 24.94261203804124 + ], + [ + -80.49024414624603, + 24.94261203804124 + ], + [ + -80.47030048682264, + 24.97393754346293 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.47030048682264, + 25.036588554306316 + ], + [ + -80.49024414624603, + 25.067914059728007 + ], + [ + -80.53013146509278, + 25.067914059728007 + ], + [ + -80.55007512451617, + 25.036588554306316 + ], + [ + -80.53013146509278, + 25.005263048884625 + ], + [ + -80.49024414624603, + 25.005263048884625 + ], + [ + -80.47030048682264, + 25.036588554306316 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.47030048682264, + 25.099239565149702 + ], + [ + -80.49024414624603, + 25.130565070571393 + ], + [ + -80.53013146509278, + 25.130565070571393 + ], + [ + -80.55007512451617, + 25.099239565149702 + ], + [ + -80.53013146509278, + 25.06791405972801 + ], + [ + -80.49024414624603, + 25.06791405972801 + ], + [ + -80.47030048682264, + 25.099239565149702 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.47030048682264, + 25.161890575993088 + ], + [ + -80.49024414624603, + 25.19321608141478 + ], + [ + -80.53013146509278, + 25.19321608141478 + ], + [ + -80.55007512451617, + 25.161890575993088 + ], + [ + -80.53013146509278, + 25.130565070571397 + ], + [ + -80.49024414624603, + 25.130565070571397 + ], + [ + -80.47030048682264, + 25.161890575993088 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.47030048682264, + 25.224541586836473 + ], + [ + -80.49024414624603, + 25.255867092258164 + ], + [ + -80.53013146509278, + 25.255867092258164 + ], + [ + -80.55007512451617, + 25.224541586836473 + ], + [ + -80.53013146509278, + 25.193216081414782 + ], + [ + -80.49024414624603, + 25.193216081414782 + ], + [ + -80.47030048682264, + 25.224541586836473 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.47030048682264, + 25.28719259767986 + ], + [ + -80.49024414624603, + 25.31851810310155 + ], + [ + -80.53013146509278, + 25.31851810310155 + ], + [ + -80.55007512451617, + 25.28719259767986 + ], + [ + -80.53013146509278, + 25.255867092258168 + ], + [ + -80.49024414624603, + 25.255867092258168 + ], + [ + -80.47030048682264, + 25.28719259767986 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.47030048682264, + 25.349843608523244 + ], + [ + -80.49024414624603, + 25.381169113944935 + ], + [ + -80.53013146509278, + 25.381169113944935 + ], + [ + -80.55007512451617, + 25.349843608523244 + ], + [ + -80.53013146509278, + 25.318518103101553 + ], + [ + -80.49024414624603, + 25.318518103101553 + ], + [ + -80.47030048682264, + 25.349843608523244 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.47030048682264, + 25.41249461936663 + ], + [ + -80.49024414624603, + 25.44382012478832 + ], + [ + -80.53013146509278, + 25.44382012478832 + ], + [ + -80.55007512451617, + 25.41249461936663 + ], + [ + -80.53013146509278, + 25.38116911394494 + ], + [ + -80.49024414624603, + 25.38116911394494 + ], + [ + -80.47030048682264, + 25.41249461936663 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.47030048682264, + 25.475145630210015 + ], + [ + -80.49024414624603, + 25.506471135631706 + ], + [ + -80.53013146509278, + 25.506471135631706 + ], + [ + -80.55007512451617, + 25.475145630210015 + ], + [ + -80.53013146509278, + 25.443820124788324 + ], + [ + -80.49024414624603, + 25.443820124788324 + ], + [ + -80.47030048682264, + 25.475145630210015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.47030048682264, + 25.5377966410534 + ], + [ + -80.49024414624603, + 25.56912214647509 + ], + [ + -80.53013146509278, + 25.56912214647509 + ], + [ + -80.55007512451617, + 25.5377966410534 + ], + [ + -80.53013146509278, + 25.50647113563171 + ], + [ + -80.49024414624603, + 25.50647113563171 + ], + [ + -80.47030048682264, + 25.5377966410534 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.47030048682264, + 25.600447651896786 + ], + [ + -80.49024414624603, + 25.631773157318477 + ], + [ + -80.53013146509278, + 25.631773157318477 + ], + [ + -80.55007512451617, + 25.600447651896786 + ], + [ + -80.53013146509278, + 25.569122146475095 + ], + [ + -80.49024414624603, + 25.569122146475095 + ], + [ + -80.47030048682264, + 25.600447651896786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.47030048682264, + 25.663098662740172 + ], + [ + -80.49024414624603, + 25.694424168161863 + ], + [ + -80.53013146509278, + 25.694424168161863 + ], + [ + -80.55007512451617, + 25.663098662740172 + ], + [ + -80.53013146509278, + 25.63177315731848 + ], + [ + -80.49024414624603, + 25.63177315731848 + ], + [ + -80.47030048682264, + 25.663098662740172 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.47030048682264, + 25.725749673583557 + ], + [ + -80.49024414624603, + 25.75707517900525 + ], + [ + -80.53013146509278, + 25.75707517900525 + ], + [ + -80.55007512451617, + 25.725749673583557 + ], + [ + -80.53013146509278, + 25.694424168161866 + ], + [ + -80.49024414624603, + 25.694424168161866 + ], + [ + -80.47030048682264, + 25.725749673583557 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.47030048682264, + 25.788400684426943 + ], + [ + -80.49024414624603, + 25.819726189848634 + ], + [ + -80.53013146509278, + 25.819726189848634 + ], + [ + -80.55007512451617, + 25.788400684426943 + ], + [ + -80.53013146509278, + 25.757075179005252 + ], + [ + -80.49024414624603, + 25.757075179005252 + ], + [ + -80.47030048682264, + 25.788400684426943 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.47030048682264, + 25.85105169527033 + ], + [ + -80.49024414624603, + 25.88237720069202 + ], + [ + -80.53013146509278, + 25.88237720069202 + ], + [ + -80.55007512451617, + 25.85105169527033 + ], + [ + -80.53013146509278, + 25.819726189848637 + ], + [ + -80.49024414624603, + 25.819726189848637 + ], + [ + -80.47030048682264, + 25.85105169527033 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.47030048682264, + 25.913702706113714 + ], + [ + -80.49024414624603, + 25.945028211535405 + ], + [ + -80.53013146509278, + 25.945028211535405 + ], + [ + -80.55007512451617, + 25.913702706113714 + ], + [ + -80.53013146509278, + 25.882377200692023 + ], + [ + -80.49024414624603, + 25.882377200692023 + ], + [ + -80.47030048682264, + 25.913702706113714 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.47030048682264, + 25.9763537169571 + ], + [ + -80.49024414624603, + 26.00767922237879 + ], + [ + -80.53013146509278, + 26.00767922237879 + ], + [ + -80.55007512451617, + 25.9763537169571 + ], + [ + -80.53013146509278, + 25.94502821153541 + ], + [ + -80.49024414624603, + 25.94502821153541 + ], + [ + -80.47030048682264, + 25.9763537169571 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.47030048682264, + 26.039004727800485 + ], + [ + -80.49024414624603, + 26.070330233222176 + ], + [ + -80.53013146509278, + 26.070330233222176 + ], + [ + -80.55007512451617, + 26.039004727800485 + ], + [ + -80.53013146509278, + 26.007679222378794 + ], + [ + -80.49024414624603, + 26.007679222378794 + ], + [ + -80.47030048682264, + 26.039004727800485 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.47030048682264, + 26.10165573864387 + ], + [ + -80.49024414624603, + 26.13298124406556 + ], + [ + -80.53013146509278, + 26.13298124406556 + ], + [ + -80.55007512451617, + 26.10165573864387 + ], + [ + -80.53013146509278, + 26.07033023322218 + ], + [ + -80.49024414624603, + 26.07033023322218 + ], + [ + -80.47030048682264, + 26.10165573864387 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.47030048682264, + 26.164306749487253 + ], + [ + -80.49024414624603, + 26.195632254908944 + ], + [ + -80.53013146509278, + 26.195632254908944 + ], + [ + -80.55007512451617, + 26.164306749487253 + ], + [ + -80.53013146509278, + 26.13298124406556 + ], + [ + -80.49024414624603, + 26.13298124406556 + ], + [ + -80.47030048682264, + 26.164306749487253 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.47030048682264, + 26.22695776033064 + ], + [ + -80.49024414624603, + 26.258283265752333 + ], + [ + -80.53013146509278, + 26.258283265752333 + ], + [ + -80.55007512451617, + 26.22695776033064 + ], + [ + -80.53013146509278, + 26.19563225490895 + ], + [ + -80.49024414624603, + 26.19563225490895 + ], + [ + -80.47030048682264, + 26.22695776033064 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.47030048682264, + 26.289608771174024 + ], + [ + -80.49024414624603, + 26.320934276595715 + ], + [ + -80.53013146509278, + 26.320934276595715 + ], + [ + -80.55007512451617, + 26.289608771174024 + ], + [ + -80.53013146509278, + 26.258283265752333 + ], + [ + -80.49024414624603, + 26.258283265752333 + ], + [ + -80.47030048682264, + 26.289608771174024 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.47030048682264, + 26.35225978201741 + ], + [ + -80.49024414624603, + 26.3835852874391 + ], + [ + -80.53013146509278, + 26.3835852874391 + ], + [ + -80.55007512451617, + 26.35225978201741 + ], + [ + -80.53013146509278, + 26.320934276595718 + ], + [ + -80.49024414624603, + 26.320934276595718 + ], + [ + -80.47030048682264, + 26.35225978201741 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.47030048682264, + 26.414910792860795 + ], + [ + -80.49024414624603, + 26.446236298282486 + ], + [ + -80.53013146509278, + 26.446236298282486 + ], + [ + -80.55007512451617, + 26.414910792860795 + ], + [ + -80.53013146509278, + 26.383585287439104 + ], + [ + -80.49024414624603, + 26.383585287439104 + ], + [ + -80.47030048682264, + 26.414910792860795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.4104695085525, + 24.942612038041236 + ], + [ + -80.43041316797589, + 24.973937543462927 + ], + [ + -80.47030048682264, + 24.973937543462927 + ], + [ + -80.49024414624603, + 24.942612038041236 + ], + [ + -80.47030048682264, + 24.911286532619545 + ], + [ + -80.43041316797589, + 24.911286532619545 + ], + [ + -80.4104695085525, + 24.942612038041236 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.4104695085525, + 25.005263048884622 + ], + [ + -80.43041316797589, + 25.036588554306313 + ], + [ + -80.47030048682264, + 25.036588554306313 + ], + [ + -80.49024414624603, + 25.005263048884622 + ], + [ + -80.47030048682264, + 24.97393754346293 + ], + [ + -80.43041316797589, + 24.97393754346293 + ], + [ + -80.4104695085525, + 25.005263048884622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.4104695085525, + 25.067914059728007 + ], + [ + -80.43041316797589, + 25.0992395651497 + ], + [ + -80.47030048682264, + 25.0992395651497 + ], + [ + -80.49024414624603, + 25.067914059728007 + ], + [ + -80.47030048682264, + 25.036588554306316 + ], + [ + -80.43041316797589, + 25.036588554306316 + ], + [ + -80.4104695085525, + 25.067914059728007 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.4104695085525, + 25.130565070571393 + ], + [ + -80.43041316797589, + 25.161890575993084 + ], + [ + -80.47030048682264, + 25.161890575993084 + ], + [ + -80.49024414624603, + 25.130565070571393 + ], + [ + -80.47030048682264, + 25.099239565149702 + ], + [ + -80.43041316797589, + 25.099239565149702 + ], + [ + -80.4104695085525, + 25.130565070571393 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.4104695085525, + 25.19321608141478 + ], + [ + -80.43041316797589, + 25.22454158683647 + ], + [ + -80.47030048682264, + 25.22454158683647 + ], + [ + -80.49024414624603, + 25.19321608141478 + ], + [ + -80.47030048682264, + 25.161890575993088 + ], + [ + -80.43041316797589, + 25.161890575993088 + ], + [ + -80.4104695085525, + 25.19321608141478 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.4104695085525, + 25.255867092258164 + ], + [ + -80.43041316797589, + 25.287192597679855 + ], + [ + -80.47030048682264, + 25.287192597679855 + ], + [ + -80.49024414624603, + 25.255867092258164 + ], + [ + -80.47030048682264, + 25.224541586836473 + ], + [ + -80.43041316797589, + 25.224541586836473 + ], + [ + -80.4104695085525, + 25.255867092258164 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.4104695085525, + 25.31851810310155 + ], + [ + -80.43041316797589, + 25.34984360852324 + ], + [ + -80.47030048682264, + 25.34984360852324 + ], + [ + -80.49024414624603, + 25.31851810310155 + ], + [ + -80.47030048682264, + 25.28719259767986 + ], + [ + -80.43041316797589, + 25.28719259767986 + ], + [ + -80.4104695085525, + 25.31851810310155 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.4104695085525, + 25.381169113944935 + ], + [ + -80.43041316797589, + 25.412494619366626 + ], + [ + -80.47030048682264, + 25.412494619366626 + ], + [ + -80.49024414624603, + 25.381169113944935 + ], + [ + -80.47030048682264, + 25.349843608523244 + ], + [ + -80.43041316797589, + 25.349843608523244 + ], + [ + -80.4104695085525, + 25.381169113944935 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.4104695085525, + 25.44382012478832 + ], + [ + -80.43041316797589, + 25.47514563021001 + ], + [ + -80.47030048682264, + 25.47514563021001 + ], + [ + -80.49024414624603, + 25.44382012478832 + ], + [ + -80.47030048682264, + 25.41249461936663 + ], + [ + -80.43041316797589, + 25.41249461936663 + ], + [ + -80.4104695085525, + 25.44382012478832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.4104695085525, + 25.506471135631706 + ], + [ + -80.43041316797589, + 25.537796641053397 + ], + [ + -80.47030048682264, + 25.537796641053397 + ], + [ + -80.49024414624603, + 25.506471135631706 + ], + [ + -80.47030048682264, + 25.475145630210015 + ], + [ + -80.43041316797589, + 25.475145630210015 + ], + [ + -80.4104695085525, + 25.506471135631706 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.4104695085525, + 25.56912214647509 + ], + [ + -80.43041316797589, + 25.600447651896783 + ], + [ + -80.47030048682264, + 25.600447651896783 + ], + [ + -80.49024414624603, + 25.56912214647509 + ], + [ + -80.47030048682264, + 25.5377966410534 + ], + [ + -80.43041316797589, + 25.5377966410534 + ], + [ + -80.4104695085525, + 25.56912214647509 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.4104695085525, + 25.631773157318477 + ], + [ + -80.43041316797589, + 25.66309866274017 + ], + [ + -80.47030048682264, + 25.66309866274017 + ], + [ + -80.49024414624603, + 25.631773157318477 + ], + [ + -80.47030048682264, + 25.600447651896786 + ], + [ + -80.43041316797589, + 25.600447651896786 + ], + [ + -80.4104695085525, + 25.631773157318477 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.4104695085525, + 25.694424168161863 + ], + [ + -80.43041316797589, + 25.725749673583554 + ], + [ + -80.47030048682264, + 25.725749673583554 + ], + [ + -80.49024414624603, + 25.694424168161863 + ], + [ + -80.47030048682264, + 25.663098662740172 + ], + [ + -80.43041316797589, + 25.663098662740172 + ], + [ + -80.4104695085525, + 25.694424168161863 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.4104695085525, + 25.75707517900525 + ], + [ + -80.43041316797589, + 25.78840068442694 + ], + [ + -80.47030048682264, + 25.78840068442694 + ], + [ + -80.49024414624603, + 25.75707517900525 + ], + [ + -80.47030048682264, + 25.725749673583557 + ], + [ + -80.43041316797589, + 25.725749673583557 + ], + [ + -80.4104695085525, + 25.75707517900525 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.4104695085525, + 25.819726189848634 + ], + [ + -80.43041316797589, + 25.851051695270325 + ], + [ + -80.47030048682264, + 25.851051695270325 + ], + [ + -80.49024414624603, + 25.819726189848634 + ], + [ + -80.47030048682264, + 25.788400684426943 + ], + [ + -80.43041316797589, + 25.788400684426943 + ], + [ + -80.4104695085525, + 25.819726189848634 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.4104695085525, + 25.88237720069202 + ], + [ + -80.43041316797589, + 25.91370270611371 + ], + [ + -80.47030048682264, + 25.91370270611371 + ], + [ + -80.49024414624603, + 25.88237720069202 + ], + [ + -80.47030048682264, + 25.85105169527033 + ], + [ + -80.43041316797589, + 25.85105169527033 + ], + [ + -80.4104695085525, + 25.88237720069202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.4104695085525, + 25.945028211535405 + ], + [ + -80.43041316797589, + 25.976353716957096 + ], + [ + -80.47030048682264, + 25.976353716957096 + ], + [ + -80.49024414624603, + 25.945028211535405 + ], + [ + -80.47030048682264, + 25.913702706113714 + ], + [ + -80.43041316797589, + 25.913702706113714 + ], + [ + -80.4104695085525, + 25.945028211535405 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.4104695085525, + 26.00767922237879 + ], + [ + -80.43041316797589, + 26.03900472780048 + ], + [ + -80.47030048682264, + 26.03900472780048 + ], + [ + -80.49024414624603, + 26.00767922237879 + ], + [ + -80.47030048682264, + 25.9763537169571 + ], + [ + -80.43041316797589, + 25.9763537169571 + ], + [ + -80.4104695085525, + 26.00767922237879 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.4104695085525, + 26.070330233222176 + ], + [ + -80.43041316797589, + 26.101655738643867 + ], + [ + -80.47030048682264, + 26.101655738643867 + ], + [ + -80.49024414624603, + 26.070330233222176 + ], + [ + -80.47030048682264, + 26.039004727800485 + ], + [ + -80.43041316797589, + 26.039004727800485 + ], + [ + -80.4104695085525, + 26.070330233222176 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.4104695085525, + 26.13298124406556 + ], + [ + -80.43041316797589, + 26.164306749487253 + ], + [ + -80.47030048682264, + 26.164306749487253 + ], + [ + -80.49024414624603, + 26.13298124406556 + ], + [ + -80.47030048682264, + 26.10165573864387 + ], + [ + -80.43041316797589, + 26.10165573864387 + ], + [ + -80.4104695085525, + 26.13298124406556 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.4104695085525, + 26.195632254908944 + ], + [ + -80.43041316797589, + 26.226957760330635 + ], + [ + -80.47030048682264, + 26.226957760330635 + ], + [ + -80.49024414624603, + 26.195632254908944 + ], + [ + -80.47030048682264, + 26.164306749487253 + ], + [ + -80.43041316797589, + 26.164306749487253 + ], + [ + -80.4104695085525, + 26.195632254908944 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.4104695085525, + 26.258283265752333 + ], + [ + -80.43041316797589, + 26.289608771174024 + ], + [ + -80.47030048682264, + 26.289608771174024 + ], + [ + -80.49024414624603, + 26.258283265752333 + ], + [ + -80.47030048682264, + 26.22695776033064 + ], + [ + -80.43041316797589, + 26.22695776033064 + ], + [ + -80.4104695085525, + 26.258283265752333 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.4104695085525, + 26.320934276595715 + ], + [ + -80.43041316797589, + 26.352259782017406 + ], + [ + -80.47030048682264, + 26.352259782017406 + ], + [ + -80.49024414624603, + 26.320934276595715 + ], + [ + -80.47030048682264, + 26.289608771174024 + ], + [ + -80.43041316797589, + 26.289608771174024 + ], + [ + -80.4104695085525, + 26.320934276595715 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.4104695085525, + 26.3835852874391 + ], + [ + -80.43041316797589, + 26.41491079286079 + ], + [ + -80.47030048682264, + 26.41491079286079 + ], + [ + -80.49024414624603, + 26.3835852874391 + ], + [ + -80.47030048682264, + 26.35225978201741 + ], + [ + -80.43041316797589, + 26.35225978201741 + ], + [ + -80.4104695085525, + 26.3835852874391 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.4104695085525, + 26.446236298282486 + ], + [ + -80.43041316797589, + 26.477561803704177 + ], + [ + -80.47030048682264, + 26.477561803704177 + ], + [ + -80.49024414624603, + 26.446236298282486 + ], + [ + -80.47030048682264, + 26.414910792860795 + ], + [ + -80.43041316797589, + 26.414910792860795 + ], + [ + -80.4104695085525, + 26.446236298282486 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.35063853028235, + 24.911286532619545 + ], + [ + -80.37058218970574, + 24.942612038041236 + ], + [ + -80.4104695085525, + 24.942612038041236 + ], + [ + -80.43041316797589, + 24.911286532619545 + ], + [ + -80.4104695085525, + 24.879961027197854 + ], + [ + -80.37058218970574, + 24.879961027197854 + ], + [ + -80.35063853028235, + 24.911286532619545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.35063853028235, + 24.97393754346293 + ], + [ + -80.37058218970574, + 25.005263048884622 + ], + [ + -80.4104695085525, + 25.005263048884622 + ], + [ + -80.43041316797589, + 24.97393754346293 + ], + [ + -80.4104695085525, + 24.94261203804124 + ], + [ + -80.37058218970574, + 24.94261203804124 + ], + [ + -80.35063853028235, + 24.97393754346293 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.35063853028235, + 25.036588554306316 + ], + [ + -80.37058218970574, + 25.067914059728007 + ], + [ + -80.4104695085525, + 25.067914059728007 + ], + [ + -80.43041316797589, + 25.036588554306316 + ], + [ + -80.4104695085525, + 25.005263048884625 + ], + [ + -80.37058218970574, + 25.005263048884625 + ], + [ + -80.35063853028235, + 25.036588554306316 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.35063853028235, + 25.099239565149702 + ], + [ + -80.37058218970574, + 25.130565070571393 + ], + [ + -80.4104695085525, + 25.130565070571393 + ], + [ + -80.43041316797589, + 25.099239565149702 + ], + [ + -80.4104695085525, + 25.06791405972801 + ], + [ + -80.37058218970574, + 25.06791405972801 + ], + [ + -80.35063853028235, + 25.099239565149702 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.35063853028235, + 25.161890575993088 + ], + [ + -80.37058218970574, + 25.19321608141478 + ], + [ + -80.4104695085525, + 25.19321608141478 + ], + [ + -80.43041316797589, + 25.161890575993088 + ], + [ + -80.4104695085525, + 25.130565070571397 + ], + [ + -80.37058218970574, + 25.130565070571397 + ], + [ + -80.35063853028235, + 25.161890575993088 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.35063853028235, + 25.224541586836473 + ], + [ + -80.37058218970574, + 25.255867092258164 + ], + [ + -80.4104695085525, + 25.255867092258164 + ], + [ + -80.43041316797589, + 25.224541586836473 + ], + [ + -80.4104695085525, + 25.193216081414782 + ], + [ + -80.37058218970574, + 25.193216081414782 + ], + [ + -80.35063853028235, + 25.224541586836473 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.35063853028235, + 25.28719259767986 + ], + [ + -80.37058218970574, + 25.31851810310155 + ], + [ + -80.4104695085525, + 25.31851810310155 + ], + [ + -80.43041316797589, + 25.28719259767986 + ], + [ + -80.4104695085525, + 25.255867092258168 + ], + [ + -80.37058218970574, + 25.255867092258168 + ], + [ + -80.35063853028235, + 25.28719259767986 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.35063853028235, + 25.349843608523244 + ], + [ + -80.37058218970574, + 25.381169113944935 + ], + [ + -80.4104695085525, + 25.381169113944935 + ], + [ + -80.43041316797589, + 25.349843608523244 + ], + [ + -80.4104695085525, + 25.318518103101553 + ], + [ + -80.37058218970574, + 25.318518103101553 + ], + [ + -80.35063853028235, + 25.349843608523244 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.35063853028235, + 25.41249461936663 + ], + [ + -80.37058218970574, + 25.44382012478832 + ], + [ + -80.4104695085525, + 25.44382012478832 + ], + [ + -80.43041316797589, + 25.41249461936663 + ], + [ + -80.4104695085525, + 25.38116911394494 + ], + [ + -80.37058218970574, + 25.38116911394494 + ], + [ + -80.35063853028235, + 25.41249461936663 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.35063853028235, + 25.475145630210015 + ], + [ + -80.37058218970574, + 25.506471135631706 + ], + [ + -80.4104695085525, + 25.506471135631706 + ], + [ + -80.43041316797589, + 25.475145630210015 + ], + [ + -80.4104695085525, + 25.443820124788324 + ], + [ + -80.37058218970574, + 25.443820124788324 + ], + [ + -80.35063853028235, + 25.475145630210015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.35063853028235, + 25.5377966410534 + ], + [ + -80.37058218970574, + 25.56912214647509 + ], + [ + -80.4104695085525, + 25.56912214647509 + ], + [ + -80.43041316797589, + 25.5377966410534 + ], + [ + -80.4104695085525, + 25.50647113563171 + ], + [ + -80.37058218970574, + 25.50647113563171 + ], + [ + -80.35063853028235, + 25.5377966410534 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.35063853028235, + 25.600447651896786 + ], + [ + -80.37058218970574, + 25.631773157318477 + ], + [ + -80.4104695085525, + 25.631773157318477 + ], + [ + -80.43041316797589, + 25.600447651896786 + ], + [ + -80.4104695085525, + 25.569122146475095 + ], + [ + -80.37058218970574, + 25.569122146475095 + ], + [ + -80.35063853028235, + 25.600447651896786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.35063853028235, + 25.663098662740172 + ], + [ + -80.37058218970574, + 25.694424168161863 + ], + [ + -80.4104695085525, + 25.694424168161863 + ], + [ + -80.43041316797589, + 25.663098662740172 + ], + [ + -80.4104695085525, + 25.63177315731848 + ], + [ + -80.37058218970574, + 25.63177315731848 + ], + [ + -80.35063853028235, + 25.663098662740172 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.35063853028235, + 25.725749673583557 + ], + [ + -80.37058218970574, + 25.75707517900525 + ], + [ + -80.4104695085525, + 25.75707517900525 + ], + [ + -80.43041316797589, + 25.725749673583557 + ], + [ + -80.4104695085525, + 25.694424168161866 + ], + [ + -80.37058218970574, + 25.694424168161866 + ], + [ + -80.35063853028235, + 25.725749673583557 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.35063853028235, + 25.788400684426943 + ], + [ + -80.37058218970574, + 25.819726189848634 + ], + [ + -80.4104695085525, + 25.819726189848634 + ], + [ + -80.43041316797589, + 25.788400684426943 + ], + [ + -80.4104695085525, + 25.757075179005252 + ], + [ + -80.37058218970574, + 25.757075179005252 + ], + [ + -80.35063853028235, + 25.788400684426943 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.35063853028235, + 25.85105169527033 + ], + [ + -80.37058218970574, + 25.88237720069202 + ], + [ + -80.4104695085525, + 25.88237720069202 + ], + [ + -80.43041316797589, + 25.85105169527033 + ], + [ + -80.4104695085525, + 25.819726189848637 + ], + [ + -80.37058218970574, + 25.819726189848637 + ], + [ + -80.35063853028235, + 25.85105169527033 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.35063853028235, + 25.913702706113714 + ], + [ + -80.37058218970574, + 25.945028211535405 + ], + [ + -80.4104695085525, + 25.945028211535405 + ], + [ + -80.43041316797589, + 25.913702706113714 + ], + [ + -80.4104695085525, + 25.882377200692023 + ], + [ + -80.37058218970574, + 25.882377200692023 + ], + [ + -80.35063853028235, + 25.913702706113714 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.35063853028235, + 25.9763537169571 + ], + [ + -80.37058218970574, + 26.00767922237879 + ], + [ + -80.4104695085525, + 26.00767922237879 + ], + [ + -80.43041316797589, + 25.9763537169571 + ], + [ + -80.4104695085525, + 25.94502821153541 + ], + [ + -80.37058218970574, + 25.94502821153541 + ], + [ + -80.35063853028235, + 25.9763537169571 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.35063853028235, + 26.039004727800485 + ], + [ + -80.37058218970574, + 26.070330233222176 + ], + [ + -80.4104695085525, + 26.070330233222176 + ], + [ + -80.43041316797589, + 26.039004727800485 + ], + [ + -80.4104695085525, + 26.007679222378794 + ], + [ + -80.37058218970574, + 26.007679222378794 + ], + [ + -80.35063853028235, + 26.039004727800485 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.35063853028235, + 26.10165573864387 + ], + [ + -80.37058218970574, + 26.13298124406556 + ], + [ + -80.4104695085525, + 26.13298124406556 + ], + [ + -80.43041316797589, + 26.10165573864387 + ], + [ + -80.4104695085525, + 26.07033023322218 + ], + [ + -80.37058218970574, + 26.07033023322218 + ], + [ + -80.35063853028235, + 26.10165573864387 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.35063853028235, + 26.164306749487253 + ], + [ + -80.37058218970574, + 26.195632254908944 + ], + [ + -80.4104695085525, + 26.195632254908944 + ], + [ + -80.43041316797589, + 26.164306749487253 + ], + [ + -80.4104695085525, + 26.13298124406556 + ], + [ + -80.37058218970574, + 26.13298124406556 + ], + [ + -80.35063853028235, + 26.164306749487253 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.35063853028235, + 26.22695776033064 + ], + [ + -80.37058218970574, + 26.258283265752333 + ], + [ + -80.4104695085525, + 26.258283265752333 + ], + [ + -80.43041316797589, + 26.22695776033064 + ], + [ + -80.4104695085525, + 26.19563225490895 + ], + [ + -80.37058218970574, + 26.19563225490895 + ], + [ + -80.35063853028235, + 26.22695776033064 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.35063853028235, + 26.289608771174024 + ], + [ + -80.37058218970574, + 26.320934276595715 + ], + [ + -80.4104695085525, + 26.320934276595715 + ], + [ + -80.43041316797589, + 26.289608771174024 + ], + [ + -80.4104695085525, + 26.258283265752333 + ], + [ + -80.37058218970574, + 26.258283265752333 + ], + [ + -80.35063853028235, + 26.289608771174024 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.35063853028235, + 26.35225978201741 + ], + [ + -80.37058218970574, + 26.3835852874391 + ], + [ + -80.4104695085525, + 26.3835852874391 + ], + [ + -80.43041316797589, + 26.35225978201741 + ], + [ + -80.4104695085525, + 26.320934276595718 + ], + [ + -80.37058218970574, + 26.320934276595718 + ], + [ + -80.35063853028235, + 26.35225978201741 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.35063853028235, + 26.414910792860795 + ], + [ + -80.37058218970574, + 26.446236298282486 + ], + [ + -80.4104695085525, + 26.446236298282486 + ], + [ + -80.43041316797589, + 26.414910792860795 + ], + [ + -80.4104695085525, + 26.383585287439104 + ], + [ + -80.37058218970574, + 26.383585287439104 + ], + [ + -80.35063853028235, + 26.414910792860795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.2908075520122, + 24.942612038041236 + ], + [ + -80.31075121143559, + 24.973937543462927 + ], + [ + -80.35063853028234, + 24.973937543462927 + ], + [ + -80.37058218970573, + 24.942612038041236 + ], + [ + -80.35063853028234, + 24.911286532619545 + ], + [ + -80.31075121143559, + 24.911286532619545 + ], + [ + -80.2908075520122, + 24.942612038041236 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.2908075520122, + 25.005263048884622 + ], + [ + -80.31075121143559, + 25.036588554306313 + ], + [ + -80.35063853028234, + 25.036588554306313 + ], + [ + -80.37058218970573, + 25.005263048884622 + ], + [ + -80.35063853028234, + 24.97393754346293 + ], + [ + -80.31075121143559, + 24.97393754346293 + ], + [ + -80.2908075520122, + 25.005263048884622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.2908075520122, + 25.067914059728007 + ], + [ + -80.31075121143559, + 25.0992395651497 + ], + [ + -80.35063853028234, + 25.0992395651497 + ], + [ + -80.37058218970573, + 25.067914059728007 + ], + [ + -80.35063853028234, + 25.036588554306316 + ], + [ + -80.31075121143559, + 25.036588554306316 + ], + [ + -80.2908075520122, + 25.067914059728007 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.2908075520122, + 25.130565070571393 + ], + [ + -80.31075121143559, + 25.161890575993084 + ], + [ + -80.35063853028234, + 25.161890575993084 + ], + [ + -80.37058218970573, + 25.130565070571393 + ], + [ + -80.35063853028234, + 25.099239565149702 + ], + [ + -80.31075121143559, + 25.099239565149702 + ], + [ + -80.2908075520122, + 25.130565070571393 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.2908075520122, + 25.19321608141478 + ], + [ + -80.31075121143559, + 25.22454158683647 + ], + [ + -80.35063853028234, + 25.22454158683647 + ], + [ + -80.37058218970573, + 25.19321608141478 + ], + [ + -80.35063853028234, + 25.161890575993088 + ], + [ + -80.31075121143559, + 25.161890575993088 + ], + [ + -80.2908075520122, + 25.19321608141478 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.2908075520122, + 25.255867092258164 + ], + [ + -80.31075121143559, + 25.287192597679855 + ], + [ + -80.35063853028234, + 25.287192597679855 + ], + [ + -80.37058218970573, + 25.255867092258164 + ], + [ + -80.35063853028234, + 25.224541586836473 + ], + [ + -80.31075121143559, + 25.224541586836473 + ], + [ + -80.2908075520122, + 25.255867092258164 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.2908075520122, + 25.31851810310155 + ], + [ + -80.31075121143559, + 25.34984360852324 + ], + [ + -80.35063853028234, + 25.34984360852324 + ], + [ + -80.37058218970573, + 25.31851810310155 + ], + [ + -80.35063853028234, + 25.28719259767986 + ], + [ + -80.31075121143559, + 25.28719259767986 + ], + [ + -80.2908075520122, + 25.31851810310155 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.2908075520122, + 25.381169113944935 + ], + [ + -80.31075121143559, + 25.412494619366626 + ], + [ + -80.35063853028234, + 25.412494619366626 + ], + [ + -80.37058218970573, + 25.381169113944935 + ], + [ + -80.35063853028234, + 25.349843608523244 + ], + [ + -80.31075121143559, + 25.349843608523244 + ], + [ + -80.2908075520122, + 25.381169113944935 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.2908075520122, + 25.44382012478832 + ], + [ + -80.31075121143559, + 25.47514563021001 + ], + [ + -80.35063853028234, + 25.47514563021001 + ], + [ + -80.37058218970573, + 25.44382012478832 + ], + [ + -80.35063853028234, + 25.41249461936663 + ], + [ + -80.31075121143559, + 25.41249461936663 + ], + [ + -80.2908075520122, + 25.44382012478832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.2908075520122, + 25.506471135631706 + ], + [ + -80.31075121143559, + 25.537796641053397 + ], + [ + -80.35063853028234, + 25.537796641053397 + ], + [ + -80.37058218970573, + 25.506471135631706 + ], + [ + -80.35063853028234, + 25.475145630210015 + ], + [ + -80.31075121143559, + 25.475145630210015 + ], + [ + -80.2908075520122, + 25.506471135631706 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.2908075520122, + 25.56912214647509 + ], + [ + -80.31075121143559, + 25.600447651896783 + ], + [ + -80.35063853028234, + 25.600447651896783 + ], + [ + -80.37058218970573, + 25.56912214647509 + ], + [ + -80.35063853028234, + 25.5377966410534 + ], + [ + -80.31075121143559, + 25.5377966410534 + ], + [ + -80.2908075520122, + 25.56912214647509 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.2908075520122, + 25.631773157318477 + ], + [ + -80.31075121143559, + 25.66309866274017 + ], + [ + -80.35063853028234, + 25.66309866274017 + ], + [ + -80.37058218970573, + 25.631773157318477 + ], + [ + -80.35063853028234, + 25.600447651896786 + ], + [ + -80.31075121143559, + 25.600447651896786 + ], + [ + -80.2908075520122, + 25.631773157318477 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.2908075520122, + 25.694424168161863 + ], + [ + -80.31075121143559, + 25.725749673583554 + ], + [ + -80.35063853028234, + 25.725749673583554 + ], + [ + -80.37058218970573, + 25.694424168161863 + ], + [ + -80.35063853028234, + 25.663098662740172 + ], + [ + -80.31075121143559, + 25.663098662740172 + ], + [ + -80.2908075520122, + 25.694424168161863 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.2908075520122, + 25.75707517900525 + ], + [ + -80.31075121143559, + 25.78840068442694 + ], + [ + -80.35063853028234, + 25.78840068442694 + ], + [ + -80.37058218970573, + 25.75707517900525 + ], + [ + -80.35063853028234, + 25.725749673583557 + ], + [ + -80.31075121143559, + 25.725749673583557 + ], + [ + -80.2908075520122, + 25.75707517900525 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.2908075520122, + 25.819726189848634 + ], + [ + -80.31075121143559, + 25.851051695270325 + ], + [ + -80.35063853028234, + 25.851051695270325 + ], + [ + -80.37058218970573, + 25.819726189848634 + ], + [ + -80.35063853028234, + 25.788400684426943 + ], + [ + -80.31075121143559, + 25.788400684426943 + ], + [ + -80.2908075520122, + 25.819726189848634 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.2908075520122, + 25.88237720069202 + ], + [ + -80.31075121143559, + 25.91370270611371 + ], + [ + -80.35063853028234, + 25.91370270611371 + ], + [ + -80.37058218970573, + 25.88237720069202 + ], + [ + -80.35063853028234, + 25.85105169527033 + ], + [ + -80.31075121143559, + 25.85105169527033 + ], + [ + -80.2908075520122, + 25.88237720069202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.2908075520122, + 25.945028211535405 + ], + [ + -80.31075121143559, + 25.976353716957096 + ], + [ + -80.35063853028234, + 25.976353716957096 + ], + [ + -80.37058218970573, + 25.945028211535405 + ], + [ + -80.35063853028234, + 25.913702706113714 + ], + [ + -80.31075121143559, + 25.913702706113714 + ], + [ + -80.2908075520122, + 25.945028211535405 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.2908075520122, + 26.00767922237879 + ], + [ + -80.31075121143559, + 26.03900472780048 + ], + [ + -80.35063853028234, + 26.03900472780048 + ], + [ + -80.37058218970573, + 26.00767922237879 + ], + [ + -80.35063853028234, + 25.9763537169571 + ], + [ + -80.31075121143559, + 25.9763537169571 + ], + [ + -80.2908075520122, + 26.00767922237879 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.2908075520122, + 26.070330233222176 + ], + [ + -80.31075121143559, + 26.101655738643867 + ], + [ + -80.35063853028234, + 26.101655738643867 + ], + [ + -80.37058218970573, + 26.070330233222176 + ], + [ + -80.35063853028234, + 26.039004727800485 + ], + [ + -80.31075121143559, + 26.039004727800485 + ], + [ + -80.2908075520122, + 26.070330233222176 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.2908075520122, + 26.13298124406556 + ], + [ + -80.31075121143559, + 26.164306749487253 + ], + [ + -80.35063853028234, + 26.164306749487253 + ], + [ + -80.37058218970573, + 26.13298124406556 + ], + [ + -80.35063853028234, + 26.10165573864387 + ], + [ + -80.31075121143559, + 26.10165573864387 + ], + [ + -80.2908075520122, + 26.13298124406556 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.2908075520122, + 26.195632254908944 + ], + [ + -80.31075121143559, + 26.226957760330635 + ], + [ + -80.35063853028234, + 26.226957760330635 + ], + [ + -80.37058218970573, + 26.195632254908944 + ], + [ + -80.35063853028234, + 26.164306749487253 + ], + [ + -80.31075121143559, + 26.164306749487253 + ], + [ + -80.2908075520122, + 26.195632254908944 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.2908075520122, + 26.258283265752333 + ], + [ + -80.31075121143559, + 26.289608771174024 + ], + [ + -80.35063853028234, + 26.289608771174024 + ], + [ + -80.37058218970573, + 26.258283265752333 + ], + [ + -80.35063853028234, + 26.22695776033064 + ], + [ + -80.31075121143559, + 26.22695776033064 + ], + [ + -80.2908075520122, + 26.258283265752333 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.2908075520122, + 26.320934276595715 + ], + [ + -80.31075121143559, + 26.352259782017406 + ], + [ + -80.35063853028234, + 26.352259782017406 + ], + [ + -80.37058218970573, + 26.320934276595715 + ], + [ + -80.35063853028234, + 26.289608771174024 + ], + [ + -80.31075121143559, + 26.289608771174024 + ], + [ + -80.2908075520122, + 26.320934276595715 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.2908075520122, + 26.3835852874391 + ], + [ + -80.31075121143559, + 26.41491079286079 + ], + [ + -80.35063853028234, + 26.41491079286079 + ], + [ + -80.37058218970573, + 26.3835852874391 + ], + [ + -80.35063853028234, + 26.35225978201741 + ], + [ + -80.31075121143559, + 26.35225978201741 + ], + [ + -80.2908075520122, + 26.3835852874391 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.2908075520122, + 26.446236298282486 + ], + [ + -80.31075121143559, + 26.477561803704177 + ], + [ + -80.35063853028234, + 26.477561803704177 + ], + [ + -80.37058218970573, + 26.446236298282486 + ], + [ + -80.35063853028234, + 26.414910792860795 + ], + [ + -80.31075121143559, + 26.414910792860795 + ], + [ + -80.2908075520122, + 26.446236298282486 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.23097657374205, + 24.911286532619545 + ], + [ + -80.25092023316544, + 24.942612038041236 + ], + [ + -80.2908075520122, + 24.942612038041236 + ], + [ + -80.31075121143559, + 24.911286532619545 + ], + [ + -80.2908075520122, + 24.879961027197854 + ], + [ + -80.25092023316544, + 24.879961027197854 + ], + [ + -80.23097657374205, + 24.911286532619545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.23097657374205, + 24.97393754346293 + ], + [ + -80.25092023316544, + 25.005263048884622 + ], + [ + -80.2908075520122, + 25.005263048884622 + ], + [ + -80.31075121143559, + 24.97393754346293 + ], + [ + -80.2908075520122, + 24.94261203804124 + ], + [ + -80.25092023316544, + 24.94261203804124 + ], + [ + -80.23097657374205, + 24.97393754346293 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.23097657374205, + 25.036588554306316 + ], + [ + -80.25092023316544, + 25.067914059728007 + ], + [ + -80.2908075520122, + 25.067914059728007 + ], + [ + -80.31075121143559, + 25.036588554306316 + ], + [ + -80.2908075520122, + 25.005263048884625 + ], + [ + -80.25092023316544, + 25.005263048884625 + ], + [ + -80.23097657374205, + 25.036588554306316 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.23097657374205, + 25.099239565149702 + ], + [ + -80.25092023316544, + 25.130565070571393 + ], + [ + -80.2908075520122, + 25.130565070571393 + ], + [ + -80.31075121143559, + 25.099239565149702 + ], + [ + -80.2908075520122, + 25.06791405972801 + ], + [ + -80.25092023316544, + 25.06791405972801 + ], + [ + -80.23097657374205, + 25.099239565149702 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.23097657374205, + 25.161890575993088 + ], + [ + -80.25092023316544, + 25.19321608141478 + ], + [ + -80.2908075520122, + 25.19321608141478 + ], + [ + -80.31075121143559, + 25.161890575993088 + ], + [ + -80.2908075520122, + 25.130565070571397 + ], + [ + -80.25092023316544, + 25.130565070571397 + ], + [ + -80.23097657374205, + 25.161890575993088 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.23097657374205, + 25.224541586836473 + ], + [ + -80.25092023316544, + 25.255867092258164 + ], + [ + -80.2908075520122, + 25.255867092258164 + ], + [ + -80.31075121143559, + 25.224541586836473 + ], + [ + -80.2908075520122, + 25.193216081414782 + ], + [ + -80.25092023316544, + 25.193216081414782 + ], + [ + -80.23097657374205, + 25.224541586836473 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.23097657374205, + 25.28719259767986 + ], + [ + -80.25092023316544, + 25.31851810310155 + ], + [ + -80.2908075520122, + 25.31851810310155 + ], + [ + -80.31075121143559, + 25.28719259767986 + ], + [ + -80.2908075520122, + 25.255867092258168 + ], + [ + -80.25092023316544, + 25.255867092258168 + ], + [ + -80.23097657374205, + 25.28719259767986 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.23097657374205, + 25.349843608523244 + ], + [ + -80.25092023316544, + 25.381169113944935 + ], + [ + -80.2908075520122, + 25.381169113944935 + ], + [ + -80.31075121143559, + 25.349843608523244 + ], + [ + -80.2908075520122, + 25.318518103101553 + ], + [ + -80.25092023316544, + 25.318518103101553 + ], + [ + -80.23097657374205, + 25.349843608523244 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.23097657374205, + 25.41249461936663 + ], + [ + -80.25092023316544, + 25.44382012478832 + ], + [ + -80.2908075520122, + 25.44382012478832 + ], + [ + -80.31075121143559, + 25.41249461936663 + ], + [ + -80.2908075520122, + 25.38116911394494 + ], + [ + -80.25092023316544, + 25.38116911394494 + ], + [ + -80.23097657374205, + 25.41249461936663 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.23097657374205, + 25.475145630210015 + ], + [ + -80.25092023316544, + 25.506471135631706 + ], + [ + -80.2908075520122, + 25.506471135631706 + ], + [ + -80.31075121143559, + 25.475145630210015 + ], + [ + -80.2908075520122, + 25.443820124788324 + ], + [ + -80.25092023316544, + 25.443820124788324 + ], + [ + -80.23097657374205, + 25.475145630210015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.23097657374205, + 25.5377966410534 + ], + [ + -80.25092023316544, + 25.56912214647509 + ], + [ + -80.2908075520122, + 25.56912214647509 + ], + [ + -80.31075121143559, + 25.5377966410534 + ], + [ + -80.2908075520122, + 25.50647113563171 + ], + [ + -80.25092023316544, + 25.50647113563171 + ], + [ + -80.23097657374205, + 25.5377966410534 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.23097657374205, + 25.600447651896786 + ], + [ + -80.25092023316544, + 25.631773157318477 + ], + [ + -80.2908075520122, + 25.631773157318477 + ], + [ + -80.31075121143559, + 25.600447651896786 + ], + [ + -80.2908075520122, + 25.569122146475095 + ], + [ + -80.25092023316544, + 25.569122146475095 + ], + [ + -80.23097657374205, + 25.600447651896786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.23097657374205, + 25.663098662740172 + ], + [ + -80.25092023316544, + 25.694424168161863 + ], + [ + -80.2908075520122, + 25.694424168161863 + ], + [ + -80.31075121143559, + 25.663098662740172 + ], + [ + -80.2908075520122, + 25.63177315731848 + ], + [ + -80.25092023316544, + 25.63177315731848 + ], + [ + -80.23097657374205, + 25.663098662740172 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.23097657374205, + 25.725749673583557 + ], + [ + -80.25092023316544, + 25.75707517900525 + ], + [ + -80.2908075520122, + 25.75707517900525 + ], + [ + -80.31075121143559, + 25.725749673583557 + ], + [ + -80.2908075520122, + 25.694424168161866 + ], + [ + -80.25092023316544, + 25.694424168161866 + ], + [ + -80.23097657374205, + 25.725749673583557 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.23097657374205, + 25.788400684426943 + ], + [ + -80.25092023316544, + 25.819726189848634 + ], + [ + -80.2908075520122, + 25.819726189848634 + ], + [ + -80.31075121143559, + 25.788400684426943 + ], + [ + -80.2908075520122, + 25.757075179005252 + ], + [ + -80.25092023316544, + 25.757075179005252 + ], + [ + -80.23097657374205, + 25.788400684426943 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.23097657374205, + 25.85105169527033 + ], + [ + -80.25092023316544, + 25.88237720069202 + ], + [ + -80.2908075520122, + 25.88237720069202 + ], + [ + -80.31075121143559, + 25.85105169527033 + ], + [ + -80.2908075520122, + 25.819726189848637 + ], + [ + -80.25092023316544, + 25.819726189848637 + ], + [ + -80.23097657374205, + 25.85105169527033 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.23097657374205, + 25.913702706113714 + ], + [ + -80.25092023316544, + 25.945028211535405 + ], + [ + -80.2908075520122, + 25.945028211535405 + ], + [ + -80.31075121143559, + 25.913702706113714 + ], + [ + -80.2908075520122, + 25.882377200692023 + ], + [ + -80.25092023316544, + 25.882377200692023 + ], + [ + -80.23097657374205, + 25.913702706113714 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.23097657374205, + 25.9763537169571 + ], + [ + -80.25092023316544, + 26.00767922237879 + ], + [ + -80.2908075520122, + 26.00767922237879 + ], + [ + -80.31075121143559, + 25.9763537169571 + ], + [ + -80.2908075520122, + 25.94502821153541 + ], + [ + -80.25092023316544, + 25.94502821153541 + ], + [ + -80.23097657374205, + 25.9763537169571 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.23097657374205, + 26.039004727800485 + ], + [ + -80.25092023316544, + 26.070330233222176 + ], + [ + -80.2908075520122, + 26.070330233222176 + ], + [ + -80.31075121143559, + 26.039004727800485 + ], + [ + -80.2908075520122, + 26.007679222378794 + ], + [ + -80.25092023316544, + 26.007679222378794 + ], + [ + -80.23097657374205, + 26.039004727800485 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.23097657374205, + 26.10165573864387 + ], + [ + -80.25092023316544, + 26.13298124406556 + ], + [ + -80.2908075520122, + 26.13298124406556 + ], + [ + -80.31075121143559, + 26.10165573864387 + ], + [ + -80.2908075520122, + 26.07033023322218 + ], + [ + -80.25092023316544, + 26.07033023322218 + ], + [ + -80.23097657374205, + 26.10165573864387 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.23097657374205, + 26.164306749487253 + ], + [ + -80.25092023316544, + 26.195632254908944 + ], + [ + -80.2908075520122, + 26.195632254908944 + ], + [ + -80.31075121143559, + 26.164306749487253 + ], + [ + -80.2908075520122, + 26.13298124406556 + ], + [ + -80.25092023316544, + 26.13298124406556 + ], + [ + -80.23097657374205, + 26.164306749487253 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.23097657374205, + 26.22695776033064 + ], + [ + -80.25092023316544, + 26.258283265752333 + ], + [ + -80.2908075520122, + 26.258283265752333 + ], + [ + -80.31075121143559, + 26.22695776033064 + ], + [ + -80.2908075520122, + 26.19563225490895 + ], + [ + -80.25092023316544, + 26.19563225490895 + ], + [ + -80.23097657374205, + 26.22695776033064 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.23097657374205, + 26.289608771174024 + ], + [ + -80.25092023316544, + 26.320934276595715 + ], + [ + -80.2908075520122, + 26.320934276595715 + ], + [ + -80.31075121143559, + 26.289608771174024 + ], + [ + -80.2908075520122, + 26.258283265752333 + ], + [ + -80.25092023316544, + 26.258283265752333 + ], + [ + -80.23097657374205, + 26.289608771174024 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.23097657374205, + 26.35225978201741 + ], + [ + -80.25092023316544, + 26.3835852874391 + ], + [ + -80.2908075520122, + 26.3835852874391 + ], + [ + -80.31075121143559, + 26.35225978201741 + ], + [ + -80.2908075520122, + 26.320934276595718 + ], + [ + -80.25092023316544, + 26.320934276595718 + ], + [ + -80.23097657374205, + 26.35225978201741 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.23097657374205, + 26.414910792860795 + ], + [ + -80.25092023316544, + 26.446236298282486 + ], + [ + -80.2908075520122, + 26.446236298282486 + ], + [ + -80.31075121143559, + 26.414910792860795 + ], + [ + -80.2908075520122, + 26.383585287439104 + ], + [ + -80.25092023316544, + 26.383585287439104 + ], + [ + -80.23097657374205, + 26.414910792860795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.1711455954719, + 24.942612038041236 + ], + [ + -80.19108925489529, + 24.973937543462927 + ], + [ + -80.23097657374204, + 24.973937543462927 + ], + [ + -80.25092023316543, + 24.942612038041236 + ], + [ + -80.23097657374204, + 24.911286532619545 + ], + [ + -80.19108925489529, + 24.911286532619545 + ], + [ + -80.1711455954719, + 24.942612038041236 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.1711455954719, + 25.005263048884622 + ], + [ + -80.19108925489529, + 25.036588554306313 + ], + [ + -80.23097657374204, + 25.036588554306313 + ], + [ + -80.25092023316543, + 25.005263048884622 + ], + [ + -80.23097657374204, + 24.97393754346293 + ], + [ + -80.19108925489529, + 24.97393754346293 + ], + [ + -80.1711455954719, + 25.005263048884622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.1711455954719, + 25.067914059728007 + ], + [ + -80.19108925489529, + 25.0992395651497 + ], + [ + -80.23097657374204, + 25.0992395651497 + ], + [ + -80.25092023316543, + 25.067914059728007 + ], + [ + -80.23097657374204, + 25.036588554306316 + ], + [ + -80.19108925489529, + 25.036588554306316 + ], + [ + -80.1711455954719, + 25.067914059728007 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.1711455954719, + 25.130565070571393 + ], + [ + -80.19108925489529, + 25.161890575993084 + ], + [ + -80.23097657374204, + 25.161890575993084 + ], + [ + -80.25092023316543, + 25.130565070571393 + ], + [ + -80.23097657374204, + 25.099239565149702 + ], + [ + -80.19108925489529, + 25.099239565149702 + ], + [ + -80.1711455954719, + 25.130565070571393 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.1711455954719, + 25.19321608141478 + ], + [ + -80.19108925489529, + 25.22454158683647 + ], + [ + -80.23097657374204, + 25.22454158683647 + ], + [ + -80.25092023316543, + 25.19321608141478 + ], + [ + -80.23097657374204, + 25.161890575993088 + ], + [ + -80.19108925489529, + 25.161890575993088 + ], + [ + -80.1711455954719, + 25.19321608141478 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.1711455954719, + 25.255867092258164 + ], + [ + -80.19108925489529, + 25.287192597679855 + ], + [ + -80.23097657374204, + 25.287192597679855 + ], + [ + -80.25092023316543, + 25.255867092258164 + ], + [ + -80.23097657374204, + 25.224541586836473 + ], + [ + -80.19108925489529, + 25.224541586836473 + ], + [ + -80.1711455954719, + 25.255867092258164 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.1711455954719, + 25.31851810310155 + ], + [ + -80.19108925489529, + 25.34984360852324 + ], + [ + -80.23097657374204, + 25.34984360852324 + ], + [ + -80.25092023316543, + 25.31851810310155 + ], + [ + -80.23097657374204, + 25.28719259767986 + ], + [ + -80.19108925489529, + 25.28719259767986 + ], + [ + -80.1711455954719, + 25.31851810310155 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.1711455954719, + 25.381169113944935 + ], + [ + -80.19108925489529, + 25.412494619366626 + ], + [ + -80.23097657374204, + 25.412494619366626 + ], + [ + -80.25092023316543, + 25.381169113944935 + ], + [ + -80.23097657374204, + 25.349843608523244 + ], + [ + -80.19108925489529, + 25.349843608523244 + ], + [ + -80.1711455954719, + 25.381169113944935 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.1711455954719, + 25.44382012478832 + ], + [ + -80.19108925489529, + 25.47514563021001 + ], + [ + -80.23097657374204, + 25.47514563021001 + ], + [ + -80.25092023316543, + 25.44382012478832 + ], + [ + -80.23097657374204, + 25.41249461936663 + ], + [ + -80.19108925489529, + 25.41249461936663 + ], + [ + -80.1711455954719, + 25.44382012478832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.1711455954719, + 25.506471135631706 + ], + [ + -80.19108925489529, + 25.537796641053397 + ], + [ + -80.23097657374204, + 25.537796641053397 + ], + [ + -80.25092023316543, + 25.506471135631706 + ], + [ + -80.23097657374204, + 25.475145630210015 + ], + [ + -80.19108925489529, + 25.475145630210015 + ], + [ + -80.1711455954719, + 25.506471135631706 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.1711455954719, + 25.56912214647509 + ], + [ + -80.19108925489529, + 25.600447651896783 + ], + [ + -80.23097657374204, + 25.600447651896783 + ], + [ + -80.25092023316543, + 25.56912214647509 + ], + [ + -80.23097657374204, + 25.5377966410534 + ], + [ + -80.19108925489529, + 25.5377966410534 + ], + [ + -80.1711455954719, + 25.56912214647509 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.1711455954719, + 25.631773157318477 + ], + [ + -80.19108925489529, + 25.66309866274017 + ], + [ + -80.23097657374204, + 25.66309866274017 + ], + [ + -80.25092023316543, + 25.631773157318477 + ], + [ + -80.23097657374204, + 25.600447651896786 + ], + [ + -80.19108925489529, + 25.600447651896786 + ], + [ + -80.1711455954719, + 25.631773157318477 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.1711455954719, + 25.694424168161863 + ], + [ + -80.19108925489529, + 25.725749673583554 + ], + [ + -80.23097657374204, + 25.725749673583554 + ], + [ + -80.25092023316543, + 25.694424168161863 + ], + [ + -80.23097657374204, + 25.663098662740172 + ], + [ + -80.19108925489529, + 25.663098662740172 + ], + [ + -80.1711455954719, + 25.694424168161863 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.1711455954719, + 25.75707517900525 + ], + [ + -80.19108925489529, + 25.78840068442694 + ], + [ + -80.23097657374204, + 25.78840068442694 + ], + [ + -80.25092023316543, + 25.75707517900525 + ], + [ + -80.23097657374204, + 25.725749673583557 + ], + [ + -80.19108925489529, + 25.725749673583557 + ], + [ + -80.1711455954719, + 25.75707517900525 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.1711455954719, + 25.819726189848634 + ], + [ + -80.19108925489529, + 25.851051695270325 + ], + [ + -80.23097657374204, + 25.851051695270325 + ], + [ + -80.25092023316543, + 25.819726189848634 + ], + [ + -80.23097657374204, + 25.788400684426943 + ], + [ + -80.19108925489529, + 25.788400684426943 + ], + [ + -80.1711455954719, + 25.819726189848634 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.1711455954719, + 25.88237720069202 + ], + [ + -80.19108925489529, + 25.91370270611371 + ], + [ + -80.23097657374204, + 25.91370270611371 + ], + [ + -80.25092023316543, + 25.88237720069202 + ], + [ + -80.23097657374204, + 25.85105169527033 + ], + [ + -80.19108925489529, + 25.85105169527033 + ], + [ + -80.1711455954719, + 25.88237720069202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.1711455954719, + 25.945028211535405 + ], + [ + -80.19108925489529, + 25.976353716957096 + ], + [ + -80.23097657374204, + 25.976353716957096 + ], + [ + -80.25092023316543, + 25.945028211535405 + ], + [ + -80.23097657374204, + 25.913702706113714 + ], + [ + -80.19108925489529, + 25.913702706113714 + ], + [ + -80.1711455954719, + 25.945028211535405 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.1711455954719, + 26.00767922237879 + ], + [ + -80.19108925489529, + 26.03900472780048 + ], + [ + -80.23097657374204, + 26.03900472780048 + ], + [ + -80.25092023316543, + 26.00767922237879 + ], + [ + -80.23097657374204, + 25.9763537169571 + ], + [ + -80.19108925489529, + 25.9763537169571 + ], + [ + -80.1711455954719, + 26.00767922237879 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.1711455954719, + 26.070330233222176 + ], + [ + -80.19108925489529, + 26.101655738643867 + ], + [ + -80.23097657374204, + 26.101655738643867 + ], + [ + -80.25092023316543, + 26.070330233222176 + ], + [ + -80.23097657374204, + 26.039004727800485 + ], + [ + -80.19108925489529, + 26.039004727800485 + ], + [ + -80.1711455954719, + 26.070330233222176 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.1711455954719, + 26.13298124406556 + ], + [ + -80.19108925489529, + 26.164306749487253 + ], + [ + -80.23097657374204, + 26.164306749487253 + ], + [ + -80.25092023316543, + 26.13298124406556 + ], + [ + -80.23097657374204, + 26.10165573864387 + ], + [ + -80.19108925489529, + 26.10165573864387 + ], + [ + -80.1711455954719, + 26.13298124406556 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.1711455954719, + 26.195632254908944 + ], + [ + -80.19108925489529, + 26.226957760330635 + ], + [ + -80.23097657374204, + 26.226957760330635 + ], + [ + -80.25092023316543, + 26.195632254908944 + ], + [ + -80.23097657374204, + 26.164306749487253 + ], + [ + -80.19108925489529, + 26.164306749487253 + ], + [ + -80.1711455954719, + 26.195632254908944 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.1711455954719, + 26.258283265752333 + ], + [ + -80.19108925489529, + 26.289608771174024 + ], + [ + -80.23097657374204, + 26.289608771174024 + ], + [ + -80.25092023316543, + 26.258283265752333 + ], + [ + -80.23097657374204, + 26.22695776033064 + ], + [ + -80.19108925489529, + 26.22695776033064 + ], + [ + -80.1711455954719, + 26.258283265752333 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.1711455954719, + 26.320934276595715 + ], + [ + -80.19108925489529, + 26.352259782017406 + ], + [ + -80.23097657374204, + 26.352259782017406 + ], + [ + -80.25092023316543, + 26.320934276595715 + ], + [ + -80.23097657374204, + 26.289608771174024 + ], + [ + -80.19108925489529, + 26.289608771174024 + ], + [ + -80.1711455954719, + 26.320934276595715 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.1711455954719, + 26.3835852874391 + ], + [ + -80.19108925489529, + 26.41491079286079 + ], + [ + -80.23097657374204, + 26.41491079286079 + ], + [ + -80.25092023316543, + 26.3835852874391 + ], + [ + -80.23097657374204, + 26.35225978201741 + ], + [ + -80.19108925489529, + 26.35225978201741 + ], + [ + -80.1711455954719, + 26.3835852874391 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.1711455954719, + 26.446236298282486 + ], + [ + -80.19108925489529, + 26.477561803704177 + ], + [ + -80.23097657374204, + 26.477561803704177 + ], + [ + -80.25092023316543, + 26.446236298282486 + ], + [ + -80.23097657374204, + 26.414910792860795 + ], + [ + -80.19108925489529, + 26.414910792860795 + ], + [ + -80.1711455954719, + 26.446236298282486 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.11131461720176, + 24.911286532619545 + ], + [ + -80.13125827662515, + 24.942612038041236 + ], + [ + -80.1711455954719, + 24.942612038041236 + ], + [ + -80.19108925489529, + 24.911286532619545 + ], + [ + -80.1711455954719, + 24.879961027197854 + ], + [ + -80.13125827662515, + 24.879961027197854 + ], + [ + -80.11131461720176, + 24.911286532619545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.11131461720176, + 24.97393754346293 + ], + [ + -80.13125827662515, + 25.005263048884622 + ], + [ + -80.1711455954719, + 25.005263048884622 + ], + [ + -80.19108925489529, + 24.97393754346293 + ], + [ + -80.1711455954719, + 24.94261203804124 + ], + [ + -80.13125827662515, + 24.94261203804124 + ], + [ + -80.11131461720176, + 24.97393754346293 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.11131461720176, + 25.036588554306316 + ], + [ + -80.13125827662515, + 25.067914059728007 + ], + [ + -80.1711455954719, + 25.067914059728007 + ], + [ + -80.19108925489529, + 25.036588554306316 + ], + [ + -80.1711455954719, + 25.005263048884625 + ], + [ + -80.13125827662515, + 25.005263048884625 + ], + [ + -80.11131461720176, + 25.036588554306316 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.11131461720176, + 25.099239565149702 + ], + [ + -80.13125827662515, + 25.130565070571393 + ], + [ + -80.1711455954719, + 25.130565070571393 + ], + [ + -80.19108925489529, + 25.099239565149702 + ], + [ + -80.1711455954719, + 25.06791405972801 + ], + [ + -80.13125827662515, + 25.06791405972801 + ], + [ + -80.11131461720176, + 25.099239565149702 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.11131461720176, + 25.161890575993088 + ], + [ + -80.13125827662515, + 25.19321608141478 + ], + [ + -80.1711455954719, + 25.19321608141478 + ], + [ + -80.19108925489529, + 25.161890575993088 + ], + [ + -80.1711455954719, + 25.130565070571397 + ], + [ + -80.13125827662515, + 25.130565070571397 + ], + [ + -80.11131461720176, + 25.161890575993088 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.11131461720176, + 25.224541586836473 + ], + [ + -80.13125827662515, + 25.255867092258164 + ], + [ + -80.1711455954719, + 25.255867092258164 + ], + [ + -80.19108925489529, + 25.224541586836473 + ], + [ + -80.1711455954719, + 25.193216081414782 + ], + [ + -80.13125827662515, + 25.193216081414782 + ], + [ + -80.11131461720176, + 25.224541586836473 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.11131461720176, + 25.28719259767986 + ], + [ + -80.13125827662515, + 25.31851810310155 + ], + [ + -80.1711455954719, + 25.31851810310155 + ], + [ + -80.19108925489529, + 25.28719259767986 + ], + [ + -80.1711455954719, + 25.255867092258168 + ], + [ + -80.13125827662515, + 25.255867092258168 + ], + [ + -80.11131461720176, + 25.28719259767986 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.11131461720176, + 25.349843608523244 + ], + [ + -80.13125827662515, + 25.381169113944935 + ], + [ + -80.1711455954719, + 25.381169113944935 + ], + [ + -80.19108925489529, + 25.349843608523244 + ], + [ + -80.1711455954719, + 25.318518103101553 + ], + [ + -80.13125827662515, + 25.318518103101553 + ], + [ + -80.11131461720176, + 25.349843608523244 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.11131461720176, + 25.41249461936663 + ], + [ + -80.13125827662515, + 25.44382012478832 + ], + [ + -80.1711455954719, + 25.44382012478832 + ], + [ + -80.19108925489529, + 25.41249461936663 + ], + [ + -80.1711455954719, + 25.38116911394494 + ], + [ + -80.13125827662515, + 25.38116911394494 + ], + [ + -80.11131461720176, + 25.41249461936663 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.11131461720176, + 25.475145630210015 + ], + [ + -80.13125827662515, + 25.506471135631706 + ], + [ + -80.1711455954719, + 25.506471135631706 + ], + [ + -80.19108925489529, + 25.475145630210015 + ], + [ + -80.1711455954719, + 25.443820124788324 + ], + [ + -80.13125827662515, + 25.443820124788324 + ], + [ + -80.11131461720176, + 25.475145630210015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.11131461720176, + 25.5377966410534 + ], + [ + -80.13125827662515, + 25.56912214647509 + ], + [ + -80.1711455954719, + 25.56912214647509 + ], + [ + -80.19108925489529, + 25.5377966410534 + ], + [ + -80.1711455954719, + 25.50647113563171 + ], + [ + -80.13125827662515, + 25.50647113563171 + ], + [ + -80.11131461720176, + 25.5377966410534 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.11131461720176, + 25.600447651896786 + ], + [ + -80.13125827662515, + 25.631773157318477 + ], + [ + -80.1711455954719, + 25.631773157318477 + ], + [ + -80.19108925489529, + 25.600447651896786 + ], + [ + -80.1711455954719, + 25.569122146475095 + ], + [ + -80.13125827662515, + 25.569122146475095 + ], + [ + -80.11131461720176, + 25.600447651896786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.11131461720176, + 25.663098662740172 + ], + [ + -80.13125827662515, + 25.694424168161863 + ], + [ + -80.1711455954719, + 25.694424168161863 + ], + [ + -80.19108925489529, + 25.663098662740172 + ], + [ + -80.1711455954719, + 25.63177315731848 + ], + [ + -80.13125827662515, + 25.63177315731848 + ], + [ + -80.11131461720176, + 25.663098662740172 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.11131461720176, + 25.725749673583557 + ], + [ + -80.13125827662515, + 25.75707517900525 + ], + [ + -80.1711455954719, + 25.75707517900525 + ], + [ + -80.19108925489529, + 25.725749673583557 + ], + [ + -80.1711455954719, + 25.694424168161866 + ], + [ + -80.13125827662515, + 25.694424168161866 + ], + [ + -80.11131461720176, + 25.725749673583557 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.11131461720176, + 25.788400684426943 + ], + [ + -80.13125827662515, + 25.819726189848634 + ], + [ + -80.1711455954719, + 25.819726189848634 + ], + [ + -80.19108925489529, + 25.788400684426943 + ], + [ + -80.1711455954719, + 25.757075179005252 + ], + [ + -80.13125827662515, + 25.757075179005252 + ], + [ + -80.11131461720176, + 25.788400684426943 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.11131461720176, + 25.85105169527033 + ], + [ + -80.13125827662515, + 25.88237720069202 + ], + [ + -80.1711455954719, + 25.88237720069202 + ], + [ + -80.19108925489529, + 25.85105169527033 + ], + [ + -80.1711455954719, + 25.819726189848637 + ], + [ + -80.13125827662515, + 25.819726189848637 + ], + [ + -80.11131461720176, + 25.85105169527033 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.11131461720176, + 25.913702706113714 + ], + [ + -80.13125827662515, + 25.945028211535405 + ], + [ + -80.1711455954719, + 25.945028211535405 + ], + [ + -80.19108925489529, + 25.913702706113714 + ], + [ + -80.1711455954719, + 25.882377200692023 + ], + [ + -80.13125827662515, + 25.882377200692023 + ], + [ + -80.11131461720176, + 25.913702706113714 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.11131461720176, + 25.9763537169571 + ], + [ + -80.13125827662515, + 26.00767922237879 + ], + [ + -80.1711455954719, + 26.00767922237879 + ], + [ + -80.19108925489529, + 25.9763537169571 + ], + [ + -80.1711455954719, + 25.94502821153541 + ], + [ + -80.13125827662515, + 25.94502821153541 + ], + [ + -80.11131461720176, + 25.9763537169571 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.11131461720176, + 26.039004727800485 + ], + [ + -80.13125827662515, + 26.070330233222176 + ], + [ + -80.1711455954719, + 26.070330233222176 + ], + [ + -80.19108925489529, + 26.039004727800485 + ], + [ + -80.1711455954719, + 26.007679222378794 + ], + [ + -80.13125827662515, + 26.007679222378794 + ], + [ + -80.11131461720176, + 26.039004727800485 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.11131461720176, + 26.10165573864387 + ], + [ + -80.13125827662515, + 26.13298124406556 + ], + [ + -80.1711455954719, + 26.13298124406556 + ], + [ + -80.19108925489529, + 26.10165573864387 + ], + [ + -80.1711455954719, + 26.07033023322218 + ], + [ + -80.13125827662515, + 26.07033023322218 + ], + [ + -80.11131461720176, + 26.10165573864387 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.11131461720176, + 26.164306749487253 + ], + [ + -80.13125827662515, + 26.195632254908944 + ], + [ + -80.1711455954719, + 26.195632254908944 + ], + [ + -80.19108925489529, + 26.164306749487253 + ], + [ + -80.1711455954719, + 26.13298124406556 + ], + [ + -80.13125827662515, + 26.13298124406556 + ], + [ + -80.11131461720176, + 26.164306749487253 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.11131461720176, + 26.22695776033064 + ], + [ + -80.13125827662515, + 26.258283265752333 + ], + [ + -80.1711455954719, + 26.258283265752333 + ], + [ + -80.19108925489529, + 26.22695776033064 + ], + [ + -80.1711455954719, + 26.19563225490895 + ], + [ + -80.13125827662515, + 26.19563225490895 + ], + [ + -80.11131461720176, + 26.22695776033064 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.11131461720176, + 26.289608771174024 + ], + [ + -80.13125827662515, + 26.320934276595715 + ], + [ + -80.1711455954719, + 26.320934276595715 + ], + [ + -80.19108925489529, + 26.289608771174024 + ], + [ + -80.1711455954719, + 26.258283265752333 + ], + [ + -80.13125827662515, + 26.258283265752333 + ], + [ + -80.11131461720176, + 26.289608771174024 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.11131461720176, + 26.35225978201741 + ], + [ + -80.13125827662515, + 26.3835852874391 + ], + [ + -80.1711455954719, + 26.3835852874391 + ], + [ + -80.19108925489529, + 26.35225978201741 + ], + [ + -80.1711455954719, + 26.320934276595718 + ], + [ + -80.13125827662515, + 26.320934276595718 + ], + [ + -80.11131461720176, + 26.35225978201741 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.11131461720176, + 26.414910792860795 + ], + [ + -80.13125827662515, + 26.446236298282486 + ], + [ + -80.1711455954719, + 26.446236298282486 + ], + [ + -80.19108925489529, + 26.414910792860795 + ], + [ + -80.1711455954719, + 26.383585287439104 + ], + [ + -80.13125827662515, + 26.383585287439104 + ], + [ + -80.11131461720176, + 26.414910792860795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.0514836389316, + 24.942612038041236 + ], + [ + -80.07142729835499, + 24.973937543462927 + ], + [ + -80.11131461720174, + 24.973937543462927 + ], + [ + -80.13125827662513, + 24.942612038041236 + ], + [ + -80.11131461720174, + 24.911286532619545 + ], + [ + -80.07142729835499, + 24.911286532619545 + ], + [ + -80.0514836389316, + 24.942612038041236 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.0514836389316, + 25.005263048884622 + ], + [ + -80.07142729835499, + 25.036588554306313 + ], + [ + -80.11131461720174, + 25.036588554306313 + ], + [ + -80.13125827662513, + 25.005263048884622 + ], + [ + -80.11131461720174, + 24.97393754346293 + ], + [ + -80.07142729835499, + 24.97393754346293 + ], + [ + -80.0514836389316, + 25.005263048884622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.0514836389316, + 25.067914059728007 + ], + [ + -80.07142729835499, + 25.0992395651497 + ], + [ + -80.11131461720174, + 25.0992395651497 + ], + [ + -80.13125827662513, + 25.067914059728007 + ], + [ + -80.11131461720174, + 25.036588554306316 + ], + [ + -80.07142729835499, + 25.036588554306316 + ], + [ + -80.0514836389316, + 25.067914059728007 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.0514836389316, + 25.130565070571393 + ], + [ + -80.07142729835499, + 25.161890575993084 + ], + [ + -80.11131461720174, + 25.161890575993084 + ], + [ + -80.13125827662513, + 25.130565070571393 + ], + [ + -80.11131461720174, + 25.099239565149702 + ], + [ + -80.07142729835499, + 25.099239565149702 + ], + [ + -80.0514836389316, + 25.130565070571393 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.0514836389316, + 25.19321608141478 + ], + [ + -80.07142729835499, + 25.22454158683647 + ], + [ + -80.11131461720174, + 25.22454158683647 + ], + [ + -80.13125827662513, + 25.19321608141478 + ], + [ + -80.11131461720174, + 25.161890575993088 + ], + [ + -80.07142729835499, + 25.161890575993088 + ], + [ + -80.0514836389316, + 25.19321608141478 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.0514836389316, + 25.255867092258164 + ], + [ + -80.07142729835499, + 25.287192597679855 + ], + [ + -80.11131461720174, + 25.287192597679855 + ], + [ + -80.13125827662513, + 25.255867092258164 + ], + [ + -80.11131461720174, + 25.224541586836473 + ], + [ + -80.07142729835499, + 25.224541586836473 + ], + [ + -80.0514836389316, + 25.255867092258164 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.0514836389316, + 25.31851810310155 + ], + [ + -80.07142729835499, + 25.34984360852324 + ], + [ + -80.11131461720174, + 25.34984360852324 + ], + [ + -80.13125827662513, + 25.31851810310155 + ], + [ + -80.11131461720174, + 25.28719259767986 + ], + [ + -80.07142729835499, + 25.28719259767986 + ], + [ + -80.0514836389316, + 25.31851810310155 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.0514836389316, + 25.381169113944935 + ], + [ + -80.07142729835499, + 25.412494619366626 + ], + [ + -80.11131461720174, + 25.412494619366626 + ], + [ + -80.13125827662513, + 25.381169113944935 + ], + [ + -80.11131461720174, + 25.349843608523244 + ], + [ + -80.07142729835499, + 25.349843608523244 + ], + [ + -80.0514836389316, + 25.381169113944935 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.0514836389316, + 25.44382012478832 + ], + [ + -80.07142729835499, + 25.47514563021001 + ], + [ + -80.11131461720174, + 25.47514563021001 + ], + [ + -80.13125827662513, + 25.44382012478832 + ], + [ + -80.11131461720174, + 25.41249461936663 + ], + [ + -80.07142729835499, + 25.41249461936663 + ], + [ + -80.0514836389316, + 25.44382012478832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.0514836389316, + 25.506471135631706 + ], + [ + -80.07142729835499, + 25.537796641053397 + ], + [ + -80.11131461720174, + 25.537796641053397 + ], + [ + -80.13125827662513, + 25.506471135631706 + ], + [ + -80.11131461720174, + 25.475145630210015 + ], + [ + -80.07142729835499, + 25.475145630210015 + ], + [ + -80.0514836389316, + 25.506471135631706 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.0514836389316, + 25.56912214647509 + ], + [ + -80.07142729835499, + 25.600447651896783 + ], + [ + -80.11131461720174, + 25.600447651896783 + ], + [ + -80.13125827662513, + 25.56912214647509 + ], + [ + -80.11131461720174, + 25.5377966410534 + ], + [ + -80.07142729835499, + 25.5377966410534 + ], + [ + -80.0514836389316, + 25.56912214647509 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.0514836389316, + 25.631773157318477 + ], + [ + -80.07142729835499, + 25.66309866274017 + ], + [ + -80.11131461720174, + 25.66309866274017 + ], + [ + -80.13125827662513, + 25.631773157318477 + ], + [ + -80.11131461720174, + 25.600447651896786 + ], + [ + -80.07142729835499, + 25.600447651896786 + ], + [ + -80.0514836389316, + 25.631773157318477 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.0514836389316, + 25.694424168161863 + ], + [ + -80.07142729835499, + 25.725749673583554 + ], + [ + -80.11131461720174, + 25.725749673583554 + ], + [ + -80.13125827662513, + 25.694424168161863 + ], + [ + -80.11131461720174, + 25.663098662740172 + ], + [ + -80.07142729835499, + 25.663098662740172 + ], + [ + -80.0514836389316, + 25.694424168161863 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.0514836389316, + 25.75707517900525 + ], + [ + -80.07142729835499, + 25.78840068442694 + ], + [ + -80.11131461720174, + 25.78840068442694 + ], + [ + -80.13125827662513, + 25.75707517900525 + ], + [ + -80.11131461720174, + 25.725749673583557 + ], + [ + -80.07142729835499, + 25.725749673583557 + ], + [ + -80.0514836389316, + 25.75707517900525 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.0514836389316, + 25.819726189848634 + ], + [ + -80.07142729835499, + 25.851051695270325 + ], + [ + -80.11131461720174, + 25.851051695270325 + ], + [ + -80.13125827662513, + 25.819726189848634 + ], + [ + -80.11131461720174, + 25.788400684426943 + ], + [ + -80.07142729835499, + 25.788400684426943 + ], + [ + -80.0514836389316, + 25.819726189848634 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.0514836389316, + 25.88237720069202 + ], + [ + -80.07142729835499, + 25.91370270611371 + ], + [ + -80.11131461720174, + 25.91370270611371 + ], + [ + -80.13125827662513, + 25.88237720069202 + ], + [ + -80.11131461720174, + 25.85105169527033 + ], + [ + -80.07142729835499, + 25.85105169527033 + ], + [ + -80.0514836389316, + 25.88237720069202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.0514836389316, + 25.945028211535405 + ], + [ + -80.07142729835499, + 25.976353716957096 + ], + [ + -80.11131461720174, + 25.976353716957096 + ], + [ + -80.13125827662513, + 25.945028211535405 + ], + [ + -80.11131461720174, + 25.913702706113714 + ], + [ + -80.07142729835499, + 25.913702706113714 + ], + [ + -80.0514836389316, + 25.945028211535405 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.0514836389316, + 26.00767922237879 + ], + [ + -80.07142729835499, + 26.03900472780048 + ], + [ + -80.11131461720174, + 26.03900472780048 + ], + [ + -80.13125827662513, + 26.00767922237879 + ], + [ + -80.11131461720174, + 25.9763537169571 + ], + [ + -80.07142729835499, + 25.9763537169571 + ], + [ + -80.0514836389316, + 26.00767922237879 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.0514836389316, + 26.070330233222176 + ], + [ + -80.07142729835499, + 26.101655738643867 + ], + [ + -80.11131461720174, + 26.101655738643867 + ], + [ + -80.13125827662513, + 26.070330233222176 + ], + [ + -80.11131461720174, + 26.039004727800485 + ], + [ + -80.07142729835499, + 26.039004727800485 + ], + [ + -80.0514836389316, + 26.070330233222176 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.0514836389316, + 26.13298124406556 + ], + [ + -80.07142729835499, + 26.164306749487253 + ], + [ + -80.11131461720174, + 26.164306749487253 + ], + [ + -80.13125827662513, + 26.13298124406556 + ], + [ + -80.11131461720174, + 26.10165573864387 + ], + [ + -80.07142729835499, + 26.10165573864387 + ], + [ + -80.0514836389316, + 26.13298124406556 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.0514836389316, + 26.195632254908944 + ], + [ + -80.07142729835499, + 26.226957760330635 + ], + [ + -80.11131461720174, + 26.226957760330635 + ], + [ + -80.13125827662513, + 26.195632254908944 + ], + [ + -80.11131461720174, + 26.164306749487253 + ], + [ + -80.07142729835499, + 26.164306749487253 + ], + [ + -80.0514836389316, + 26.195632254908944 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.0514836389316, + 26.258283265752333 + ], + [ + -80.07142729835499, + 26.289608771174024 + ], + [ + -80.11131461720174, + 26.289608771174024 + ], + [ + -80.13125827662513, + 26.258283265752333 + ], + [ + -80.11131461720174, + 26.22695776033064 + ], + [ + -80.07142729835499, + 26.22695776033064 + ], + [ + -80.0514836389316, + 26.258283265752333 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.0514836389316, + 26.320934276595715 + ], + [ + -80.07142729835499, + 26.352259782017406 + ], + [ + -80.11131461720174, + 26.352259782017406 + ], + [ + -80.13125827662513, + 26.320934276595715 + ], + [ + -80.11131461720174, + 26.289608771174024 + ], + [ + -80.07142729835499, + 26.289608771174024 + ], + [ + -80.0514836389316, + 26.320934276595715 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.0514836389316, + 26.3835852874391 + ], + [ + -80.07142729835499, + 26.41491079286079 + ], + [ + -80.11131461720174, + 26.41491079286079 + ], + [ + -80.13125827662513, + 26.3835852874391 + ], + [ + -80.11131461720174, + 26.35225978201741 + ], + [ + -80.07142729835499, + 26.35225978201741 + ], + [ + -80.0514836389316, + 26.3835852874391 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.0514836389316, + 26.446236298282486 + ], + [ + -80.07142729835499, + 26.477561803704177 + ], + [ + -80.11131461720174, + 26.477561803704177 + ], + [ + -80.13125827662513, + 26.446236298282486 + ], + [ + -80.11131461720174, + 26.414910792860795 + ], + [ + -80.07142729835499, + 26.414910792860795 + ], + [ + -80.0514836389316, + 26.446236298282486 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.99165266066146, + 24.911286532619545 + ], + [ + -80.01159632008485, + 24.942612038041236 + ], + [ + -80.0514836389316, + 24.942612038041236 + ], + [ + -80.07142729835499, + 24.911286532619545 + ], + [ + -80.0514836389316, + 24.879961027197854 + ], + [ + -80.01159632008485, + 24.879961027197854 + ], + [ + -79.99165266066146, + 24.911286532619545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.99165266066146, + 24.97393754346293 + ], + [ + -80.01159632008485, + 25.005263048884622 + ], + [ + -80.0514836389316, + 25.005263048884622 + ], + [ + -80.07142729835499, + 24.97393754346293 + ], + [ + -80.0514836389316, + 24.94261203804124 + ], + [ + -80.01159632008485, + 24.94261203804124 + ], + [ + -79.99165266066146, + 24.97393754346293 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.99165266066146, + 25.036588554306316 + ], + [ + -80.01159632008485, + 25.067914059728007 + ], + [ + -80.0514836389316, + 25.067914059728007 + ], + [ + -80.07142729835499, + 25.036588554306316 + ], + [ + -80.0514836389316, + 25.005263048884625 + ], + [ + -80.01159632008485, + 25.005263048884625 + ], + [ + -79.99165266066146, + 25.036588554306316 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.99165266066146, + 25.099239565149702 + ], + [ + -80.01159632008485, + 25.130565070571393 + ], + [ + -80.0514836389316, + 25.130565070571393 + ], + [ + -80.07142729835499, + 25.099239565149702 + ], + [ + -80.0514836389316, + 25.06791405972801 + ], + [ + -80.01159632008485, + 25.06791405972801 + ], + [ + -79.99165266066146, + 25.099239565149702 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.99165266066146, + 25.161890575993088 + ], + [ + -80.01159632008485, + 25.19321608141478 + ], + [ + -80.0514836389316, + 25.19321608141478 + ], + [ + -80.07142729835499, + 25.161890575993088 + ], + [ + -80.0514836389316, + 25.130565070571397 + ], + [ + -80.01159632008485, + 25.130565070571397 + ], + [ + -79.99165266066146, + 25.161890575993088 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.99165266066146, + 25.224541586836473 + ], + [ + -80.01159632008485, + 25.255867092258164 + ], + [ + -80.0514836389316, + 25.255867092258164 + ], + [ + -80.07142729835499, + 25.224541586836473 + ], + [ + -80.0514836389316, + 25.193216081414782 + ], + [ + -80.01159632008485, + 25.193216081414782 + ], + [ + -79.99165266066146, + 25.224541586836473 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.99165266066146, + 25.28719259767986 + ], + [ + -80.01159632008485, + 25.31851810310155 + ], + [ + -80.0514836389316, + 25.31851810310155 + ], + [ + -80.07142729835499, + 25.28719259767986 + ], + [ + -80.0514836389316, + 25.255867092258168 + ], + [ + -80.01159632008485, + 25.255867092258168 + ], + [ + -79.99165266066146, + 25.28719259767986 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.99165266066146, + 25.349843608523244 + ], + [ + -80.01159632008485, + 25.381169113944935 + ], + [ + -80.0514836389316, + 25.381169113944935 + ], + [ + -80.07142729835499, + 25.349843608523244 + ], + [ + -80.0514836389316, + 25.318518103101553 + ], + [ + -80.01159632008485, + 25.318518103101553 + ], + [ + -79.99165266066146, + 25.349843608523244 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.99165266066146, + 25.41249461936663 + ], + [ + -80.01159632008485, + 25.44382012478832 + ], + [ + -80.0514836389316, + 25.44382012478832 + ], + [ + -80.07142729835499, + 25.41249461936663 + ], + [ + -80.0514836389316, + 25.38116911394494 + ], + [ + -80.01159632008485, + 25.38116911394494 + ], + [ + -79.99165266066146, + 25.41249461936663 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.99165266066146, + 25.475145630210015 + ], + [ + -80.01159632008485, + 25.506471135631706 + ], + [ + -80.0514836389316, + 25.506471135631706 + ], + [ + -80.07142729835499, + 25.475145630210015 + ], + [ + -80.0514836389316, + 25.443820124788324 + ], + [ + -80.01159632008485, + 25.443820124788324 + ], + [ + -79.99165266066146, + 25.475145630210015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.99165266066146, + 25.5377966410534 + ], + [ + -80.01159632008485, + 25.56912214647509 + ], + [ + -80.0514836389316, + 25.56912214647509 + ], + [ + -80.07142729835499, + 25.5377966410534 + ], + [ + -80.0514836389316, + 25.50647113563171 + ], + [ + -80.01159632008485, + 25.50647113563171 + ], + [ + -79.99165266066146, + 25.5377966410534 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.99165266066146, + 25.600447651896786 + ], + [ + -80.01159632008485, + 25.631773157318477 + ], + [ + -80.0514836389316, + 25.631773157318477 + ], + [ + -80.07142729835499, + 25.600447651896786 + ], + [ + -80.0514836389316, + 25.569122146475095 + ], + [ + -80.01159632008485, + 25.569122146475095 + ], + [ + -79.99165266066146, + 25.600447651896786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.99165266066146, + 25.663098662740172 + ], + [ + -80.01159632008485, + 25.694424168161863 + ], + [ + -80.0514836389316, + 25.694424168161863 + ], + [ + -80.07142729835499, + 25.663098662740172 + ], + [ + -80.0514836389316, + 25.63177315731848 + ], + [ + -80.01159632008485, + 25.63177315731848 + ], + [ + -79.99165266066146, + 25.663098662740172 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.99165266066146, + 25.725749673583557 + ], + [ + -80.01159632008485, + 25.75707517900525 + ], + [ + -80.0514836389316, + 25.75707517900525 + ], + [ + -80.07142729835499, + 25.725749673583557 + ], + [ + -80.0514836389316, + 25.694424168161866 + ], + [ + -80.01159632008485, + 25.694424168161866 + ], + [ + -79.99165266066146, + 25.725749673583557 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.99165266066146, + 25.788400684426943 + ], + [ + -80.01159632008485, + 25.819726189848634 + ], + [ + -80.0514836389316, + 25.819726189848634 + ], + [ + -80.07142729835499, + 25.788400684426943 + ], + [ + -80.0514836389316, + 25.757075179005252 + ], + [ + -80.01159632008485, + 25.757075179005252 + ], + [ + -79.99165266066146, + 25.788400684426943 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.99165266066146, + 25.85105169527033 + ], + [ + -80.01159632008485, + 25.88237720069202 + ], + [ + -80.0514836389316, + 25.88237720069202 + ], + [ + -80.07142729835499, + 25.85105169527033 + ], + [ + -80.0514836389316, + 25.819726189848637 + ], + [ + -80.01159632008485, + 25.819726189848637 + ], + [ + -79.99165266066146, + 25.85105169527033 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.99165266066146, + 25.913702706113714 + ], + [ + -80.01159632008485, + 25.945028211535405 + ], + [ + -80.0514836389316, + 25.945028211535405 + ], + [ + -80.07142729835499, + 25.913702706113714 + ], + [ + -80.0514836389316, + 25.882377200692023 + ], + [ + -80.01159632008485, + 25.882377200692023 + ], + [ + -79.99165266066146, + 25.913702706113714 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.99165266066146, + 25.9763537169571 + ], + [ + -80.01159632008485, + 26.00767922237879 + ], + [ + -80.0514836389316, + 26.00767922237879 + ], + [ + -80.07142729835499, + 25.9763537169571 + ], + [ + -80.0514836389316, + 25.94502821153541 + ], + [ + -80.01159632008485, + 25.94502821153541 + ], + [ + -79.99165266066146, + 25.9763537169571 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.99165266066146, + 26.039004727800485 + ], + [ + -80.01159632008485, + 26.070330233222176 + ], + [ + -80.0514836389316, + 26.070330233222176 + ], + [ + -80.07142729835499, + 26.039004727800485 + ], + [ + -80.0514836389316, + 26.007679222378794 + ], + [ + -80.01159632008485, + 26.007679222378794 + ], + [ + -79.99165266066146, + 26.039004727800485 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.99165266066146, + 26.10165573864387 + ], + [ + -80.01159632008485, + 26.13298124406556 + ], + [ + -80.0514836389316, + 26.13298124406556 + ], + [ + -80.07142729835499, + 26.10165573864387 + ], + [ + -80.0514836389316, + 26.07033023322218 + ], + [ + -80.01159632008485, + 26.07033023322218 + ], + [ + -79.99165266066146, + 26.10165573864387 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.99165266066146, + 26.164306749487253 + ], + [ + -80.01159632008485, + 26.195632254908944 + ], + [ + -80.0514836389316, + 26.195632254908944 + ], + [ + -80.07142729835499, + 26.164306749487253 + ], + [ + -80.0514836389316, + 26.13298124406556 + ], + [ + -80.01159632008485, + 26.13298124406556 + ], + [ + -79.99165266066146, + 26.164306749487253 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.99165266066146, + 26.22695776033064 + ], + [ + -80.01159632008485, + 26.258283265752333 + ], + [ + -80.0514836389316, + 26.258283265752333 + ], + [ + -80.07142729835499, + 26.22695776033064 + ], + [ + -80.0514836389316, + 26.19563225490895 + ], + [ + -80.01159632008485, + 26.19563225490895 + ], + [ + -79.99165266066146, + 26.22695776033064 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.99165266066146, + 26.289608771174024 + ], + [ + -80.01159632008485, + 26.320934276595715 + ], + [ + -80.0514836389316, + 26.320934276595715 + ], + [ + -80.07142729835499, + 26.289608771174024 + ], + [ + -80.0514836389316, + 26.258283265752333 + ], + [ + -80.01159632008485, + 26.258283265752333 + ], + [ + -79.99165266066146, + 26.289608771174024 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.99165266066146, + 26.35225978201741 + ], + [ + -80.01159632008485, + 26.3835852874391 + ], + [ + -80.0514836389316, + 26.3835852874391 + ], + [ + -80.07142729835499, + 26.35225978201741 + ], + [ + -80.0514836389316, + 26.320934276595718 + ], + [ + -80.01159632008485, + 26.320934276595718 + ], + [ + -79.99165266066146, + 26.35225978201741 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.99165266066146, + 26.414910792860795 + ], + [ + -80.01159632008485, + 26.446236298282486 + ], + [ + -80.0514836389316, + 26.446236298282486 + ], + [ + -80.07142729835499, + 26.414910792860795 + ], + [ + -80.0514836389316, + 26.383585287439104 + ], + [ + -80.01159632008485, + 26.383585287439104 + ], + [ + -79.99165266066146, + 26.414910792860795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.9318216823913, + 24.942612038041236 + ], + [ + -79.95176534181469, + 24.973937543462927 + ], + [ + -79.99165266066144, + 24.973937543462927 + ], + [ + -80.01159632008483, + 24.942612038041236 + ], + [ + -79.99165266066144, + 24.911286532619545 + ], + [ + -79.95176534181469, + 24.911286532619545 + ], + [ + -79.9318216823913, + 24.942612038041236 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.9318216823913, + 25.005263048884622 + ], + [ + -79.95176534181469, + 25.036588554306313 + ], + [ + -79.99165266066144, + 25.036588554306313 + ], + [ + -80.01159632008483, + 25.005263048884622 + ], + [ + -79.99165266066144, + 24.97393754346293 + ], + [ + -79.95176534181469, + 24.97393754346293 + ], + [ + -79.9318216823913, + 25.005263048884622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.9318216823913, + 25.067914059728007 + ], + [ + -79.95176534181469, + 25.0992395651497 + ], + [ + -79.99165266066144, + 25.0992395651497 + ], + [ + -80.01159632008483, + 25.067914059728007 + ], + [ + -79.99165266066144, + 25.036588554306316 + ], + [ + -79.95176534181469, + 25.036588554306316 + ], + [ + -79.9318216823913, + 25.067914059728007 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.9318216823913, + 25.130565070571393 + ], + [ + -79.95176534181469, + 25.161890575993084 + ], + [ + -79.99165266066144, + 25.161890575993084 + ], + [ + -80.01159632008483, + 25.130565070571393 + ], + [ + -79.99165266066144, + 25.099239565149702 + ], + [ + -79.95176534181469, + 25.099239565149702 + ], + [ + -79.9318216823913, + 25.130565070571393 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.9318216823913, + 25.19321608141478 + ], + [ + -79.95176534181469, + 25.22454158683647 + ], + [ + -79.99165266066144, + 25.22454158683647 + ], + [ + -80.01159632008483, + 25.19321608141478 + ], + [ + -79.99165266066144, + 25.161890575993088 + ], + [ + -79.95176534181469, + 25.161890575993088 + ], + [ + -79.9318216823913, + 25.19321608141478 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.9318216823913, + 25.255867092258164 + ], + [ + -79.95176534181469, + 25.287192597679855 + ], + [ + -79.99165266066144, + 25.287192597679855 + ], + [ + -80.01159632008483, + 25.255867092258164 + ], + [ + -79.99165266066144, + 25.224541586836473 + ], + [ + -79.95176534181469, + 25.224541586836473 + ], + [ + -79.9318216823913, + 25.255867092258164 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.9318216823913, + 25.31851810310155 + ], + [ + -79.95176534181469, + 25.34984360852324 + ], + [ + -79.99165266066144, + 25.34984360852324 + ], + [ + -80.01159632008483, + 25.31851810310155 + ], + [ + -79.99165266066144, + 25.28719259767986 + ], + [ + -79.95176534181469, + 25.28719259767986 + ], + [ + -79.9318216823913, + 25.31851810310155 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.9318216823913, + 25.381169113944935 + ], + [ + -79.95176534181469, + 25.412494619366626 + ], + [ + -79.99165266066144, + 25.412494619366626 + ], + [ + -80.01159632008483, + 25.381169113944935 + ], + [ + -79.99165266066144, + 25.349843608523244 + ], + [ + -79.95176534181469, + 25.349843608523244 + ], + [ + -79.9318216823913, + 25.381169113944935 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.9318216823913, + 25.44382012478832 + ], + [ + -79.95176534181469, + 25.47514563021001 + ], + [ + -79.99165266066144, + 25.47514563021001 + ], + [ + -80.01159632008483, + 25.44382012478832 + ], + [ + -79.99165266066144, + 25.41249461936663 + ], + [ + -79.95176534181469, + 25.41249461936663 + ], + [ + -79.9318216823913, + 25.44382012478832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.9318216823913, + 25.506471135631706 + ], + [ + -79.95176534181469, + 25.537796641053397 + ], + [ + -79.99165266066144, + 25.537796641053397 + ], + [ + -80.01159632008483, + 25.506471135631706 + ], + [ + -79.99165266066144, + 25.475145630210015 + ], + [ + -79.95176534181469, + 25.475145630210015 + ], + [ + -79.9318216823913, + 25.506471135631706 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.9318216823913, + 25.56912214647509 + ], + [ + -79.95176534181469, + 25.600447651896783 + ], + [ + -79.99165266066144, + 25.600447651896783 + ], + [ + -80.01159632008483, + 25.56912214647509 + ], + [ + -79.99165266066144, + 25.5377966410534 + ], + [ + -79.95176534181469, + 25.5377966410534 + ], + [ + -79.9318216823913, + 25.56912214647509 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.9318216823913, + 25.631773157318477 + ], + [ + -79.95176534181469, + 25.66309866274017 + ], + [ + -79.99165266066144, + 25.66309866274017 + ], + [ + -80.01159632008483, + 25.631773157318477 + ], + [ + -79.99165266066144, + 25.600447651896786 + ], + [ + -79.95176534181469, + 25.600447651896786 + ], + [ + -79.9318216823913, + 25.631773157318477 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.9318216823913, + 25.694424168161863 + ], + [ + -79.95176534181469, + 25.725749673583554 + ], + [ + -79.99165266066144, + 25.725749673583554 + ], + [ + -80.01159632008483, + 25.694424168161863 + ], + [ + -79.99165266066144, + 25.663098662740172 + ], + [ + -79.95176534181469, + 25.663098662740172 + ], + [ + -79.9318216823913, + 25.694424168161863 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.9318216823913, + 25.75707517900525 + ], + [ + -79.95176534181469, + 25.78840068442694 + ], + [ + -79.99165266066144, + 25.78840068442694 + ], + [ + -80.01159632008483, + 25.75707517900525 + ], + [ + -79.99165266066144, + 25.725749673583557 + ], + [ + -79.95176534181469, + 25.725749673583557 + ], + [ + -79.9318216823913, + 25.75707517900525 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.9318216823913, + 25.819726189848634 + ], + [ + -79.95176534181469, + 25.851051695270325 + ], + [ + -79.99165266066144, + 25.851051695270325 + ], + [ + -80.01159632008483, + 25.819726189848634 + ], + [ + -79.99165266066144, + 25.788400684426943 + ], + [ + -79.95176534181469, + 25.788400684426943 + ], + [ + -79.9318216823913, + 25.819726189848634 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.9318216823913, + 25.88237720069202 + ], + [ + -79.95176534181469, + 25.91370270611371 + ], + [ + -79.99165266066144, + 25.91370270611371 + ], + [ + -80.01159632008483, + 25.88237720069202 + ], + [ + -79.99165266066144, + 25.85105169527033 + ], + [ + -79.95176534181469, + 25.85105169527033 + ], + [ + -79.9318216823913, + 25.88237720069202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.9318216823913, + 25.945028211535405 + ], + [ + -79.95176534181469, + 25.976353716957096 + ], + [ + -79.99165266066144, + 25.976353716957096 + ], + [ + -80.01159632008483, + 25.945028211535405 + ], + [ + -79.99165266066144, + 25.913702706113714 + ], + [ + -79.95176534181469, + 25.913702706113714 + ], + [ + -79.9318216823913, + 25.945028211535405 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.9318216823913, + 26.00767922237879 + ], + [ + -79.95176534181469, + 26.03900472780048 + ], + [ + -79.99165266066144, + 26.03900472780048 + ], + [ + -80.01159632008483, + 26.00767922237879 + ], + [ + -79.99165266066144, + 25.9763537169571 + ], + [ + -79.95176534181469, + 25.9763537169571 + ], + [ + -79.9318216823913, + 26.00767922237879 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.9318216823913, + 26.070330233222176 + ], + [ + -79.95176534181469, + 26.101655738643867 + ], + [ + -79.99165266066144, + 26.101655738643867 + ], + [ + -80.01159632008483, + 26.070330233222176 + ], + [ + -79.99165266066144, + 26.039004727800485 + ], + [ + -79.95176534181469, + 26.039004727800485 + ], + [ + -79.9318216823913, + 26.070330233222176 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.9318216823913, + 26.13298124406556 + ], + [ + -79.95176534181469, + 26.164306749487253 + ], + [ + -79.99165266066144, + 26.164306749487253 + ], + [ + -80.01159632008483, + 26.13298124406556 + ], + [ + -79.99165266066144, + 26.10165573864387 + ], + [ + -79.95176534181469, + 26.10165573864387 + ], + [ + -79.9318216823913, + 26.13298124406556 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.9318216823913, + 26.195632254908944 + ], + [ + -79.95176534181469, + 26.226957760330635 + ], + [ + -79.99165266066144, + 26.226957760330635 + ], + [ + -80.01159632008483, + 26.195632254908944 + ], + [ + -79.99165266066144, + 26.164306749487253 + ], + [ + -79.95176534181469, + 26.164306749487253 + ], + [ + -79.9318216823913, + 26.195632254908944 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.9318216823913, + 26.258283265752333 + ], + [ + -79.95176534181469, + 26.289608771174024 + ], + [ + -79.99165266066144, + 26.289608771174024 + ], + [ + -80.01159632008483, + 26.258283265752333 + ], + [ + -79.99165266066144, + 26.22695776033064 + ], + [ + -79.95176534181469, + 26.22695776033064 + ], + [ + -79.9318216823913, + 26.258283265752333 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.9318216823913, + 26.320934276595715 + ], + [ + -79.95176534181469, + 26.352259782017406 + ], + [ + -79.99165266066144, + 26.352259782017406 + ], + [ + -80.01159632008483, + 26.320934276595715 + ], + [ + -79.99165266066144, + 26.289608771174024 + ], + [ + -79.95176534181469, + 26.289608771174024 + ], + [ + -79.9318216823913, + 26.320934276595715 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.9318216823913, + 26.3835852874391 + ], + [ + -79.95176534181469, + 26.41491079286079 + ], + [ + -79.99165266066144, + 26.41491079286079 + ], + [ + -80.01159632008483, + 26.3835852874391 + ], + [ + -79.99165266066144, + 26.35225978201741 + ], + [ + -79.95176534181469, + 26.35225978201741 + ], + [ + -79.9318216823913, + 26.3835852874391 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.9318216823913, + 26.446236298282486 + ], + [ + -79.95176534181469, + 26.477561803704177 + ], + [ + -79.99165266066144, + 26.477561803704177 + ], + [ + -80.01159632008483, + 26.446236298282486 + ], + [ + -79.99165266066144, + 26.414910792860795 + ], + [ + -79.95176534181469, + 26.414910792860795 + ], + [ + -79.9318216823913, + 26.446236298282486 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.87199070412116, + 24.911286532619545 + ], + [ + -79.89193436354455, + 24.942612038041236 + ], + [ + -79.9318216823913, + 24.942612038041236 + ], + [ + -79.95176534181469, + 24.911286532619545 + ], + [ + -79.9318216823913, + 24.879961027197854 + ], + [ + -79.89193436354455, + 24.879961027197854 + ], + [ + -79.87199070412116, + 24.911286532619545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.87199070412116, + 24.97393754346293 + ], + [ + -79.89193436354455, + 25.005263048884622 + ], + [ + -79.9318216823913, + 25.005263048884622 + ], + [ + -79.95176534181469, + 24.97393754346293 + ], + [ + -79.9318216823913, + 24.94261203804124 + ], + [ + -79.89193436354455, + 24.94261203804124 + ], + [ + -79.87199070412116, + 24.97393754346293 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.87199070412116, + 25.036588554306316 + ], + [ + -79.89193436354455, + 25.067914059728007 + ], + [ + -79.9318216823913, + 25.067914059728007 + ], + [ + -79.95176534181469, + 25.036588554306316 + ], + [ + -79.9318216823913, + 25.005263048884625 + ], + [ + -79.89193436354455, + 25.005263048884625 + ], + [ + -79.87199070412116, + 25.036588554306316 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.87199070412116, + 25.099239565149702 + ], + [ + -79.89193436354455, + 25.130565070571393 + ], + [ + -79.9318216823913, + 25.130565070571393 + ], + [ + -79.95176534181469, + 25.099239565149702 + ], + [ + -79.9318216823913, + 25.06791405972801 + ], + [ + -79.89193436354455, + 25.06791405972801 + ], + [ + -79.87199070412116, + 25.099239565149702 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.87199070412116, + 25.161890575993088 + ], + [ + -79.89193436354455, + 25.19321608141478 + ], + [ + -79.9318216823913, + 25.19321608141478 + ], + [ + -79.95176534181469, + 25.161890575993088 + ], + [ + -79.9318216823913, + 25.130565070571397 + ], + [ + -79.89193436354455, + 25.130565070571397 + ], + [ + -79.87199070412116, + 25.161890575993088 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.87199070412116, + 25.224541586836473 + ], + [ + -79.89193436354455, + 25.255867092258164 + ], + [ + -79.9318216823913, + 25.255867092258164 + ], + [ + -79.95176534181469, + 25.224541586836473 + ], + [ + -79.9318216823913, + 25.193216081414782 + ], + [ + -79.89193436354455, + 25.193216081414782 + ], + [ + -79.87199070412116, + 25.224541586836473 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.87199070412116, + 25.28719259767986 + ], + [ + -79.89193436354455, + 25.31851810310155 + ], + [ + -79.9318216823913, + 25.31851810310155 + ], + [ + -79.95176534181469, + 25.28719259767986 + ], + [ + -79.9318216823913, + 25.255867092258168 + ], + [ + -79.89193436354455, + 25.255867092258168 + ], + [ + -79.87199070412116, + 25.28719259767986 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.87199070412116, + 25.349843608523244 + ], + [ + -79.89193436354455, + 25.381169113944935 + ], + [ + -79.9318216823913, + 25.381169113944935 + ], + [ + -79.95176534181469, + 25.349843608523244 + ], + [ + -79.9318216823913, + 25.318518103101553 + ], + [ + -79.89193436354455, + 25.318518103101553 + ], + [ + -79.87199070412116, + 25.349843608523244 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.87199070412116, + 25.41249461936663 + ], + [ + -79.89193436354455, + 25.44382012478832 + ], + [ + -79.9318216823913, + 25.44382012478832 + ], + [ + -79.95176534181469, + 25.41249461936663 + ], + [ + -79.9318216823913, + 25.38116911394494 + ], + [ + -79.89193436354455, + 25.38116911394494 + ], + [ + -79.87199070412116, + 25.41249461936663 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.87199070412116, + 25.475145630210015 + ], + [ + -79.89193436354455, + 25.506471135631706 + ], + [ + -79.9318216823913, + 25.506471135631706 + ], + [ + -79.95176534181469, + 25.475145630210015 + ], + [ + -79.9318216823913, + 25.443820124788324 + ], + [ + -79.89193436354455, + 25.443820124788324 + ], + [ + -79.87199070412116, + 25.475145630210015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.87199070412116, + 25.5377966410534 + ], + [ + -79.89193436354455, + 25.56912214647509 + ], + [ + -79.9318216823913, + 25.56912214647509 + ], + [ + -79.95176534181469, + 25.5377966410534 + ], + [ + -79.9318216823913, + 25.50647113563171 + ], + [ + -79.89193436354455, + 25.50647113563171 + ], + [ + -79.87199070412116, + 25.5377966410534 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.87199070412116, + 25.600447651896786 + ], + [ + -79.89193436354455, + 25.631773157318477 + ], + [ + -79.9318216823913, + 25.631773157318477 + ], + [ + -79.95176534181469, + 25.600447651896786 + ], + [ + -79.9318216823913, + 25.569122146475095 + ], + [ + -79.89193436354455, + 25.569122146475095 + ], + [ + -79.87199070412116, + 25.600447651896786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.87199070412116, + 25.663098662740172 + ], + [ + -79.89193436354455, + 25.694424168161863 + ], + [ + -79.9318216823913, + 25.694424168161863 + ], + [ + -79.95176534181469, + 25.663098662740172 + ], + [ + -79.9318216823913, + 25.63177315731848 + ], + [ + -79.89193436354455, + 25.63177315731848 + ], + [ + -79.87199070412116, + 25.663098662740172 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.87199070412116, + 25.725749673583557 + ], + [ + -79.89193436354455, + 25.75707517900525 + ], + [ + -79.9318216823913, + 25.75707517900525 + ], + [ + -79.95176534181469, + 25.725749673583557 + ], + [ + -79.9318216823913, + 25.694424168161866 + ], + [ + -79.89193436354455, + 25.694424168161866 + ], + [ + -79.87199070412116, + 25.725749673583557 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.87199070412116, + 25.788400684426943 + ], + [ + -79.89193436354455, + 25.819726189848634 + ], + [ + -79.9318216823913, + 25.819726189848634 + ], + [ + -79.95176534181469, + 25.788400684426943 + ], + [ + -79.9318216823913, + 25.757075179005252 + ], + [ + -79.89193436354455, + 25.757075179005252 + ], + [ + -79.87199070412116, + 25.788400684426943 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.87199070412116, + 25.85105169527033 + ], + [ + -79.89193436354455, + 25.88237720069202 + ], + [ + -79.9318216823913, + 25.88237720069202 + ], + [ + -79.95176534181469, + 25.85105169527033 + ], + [ + -79.9318216823913, + 25.819726189848637 + ], + [ + -79.89193436354455, + 25.819726189848637 + ], + [ + -79.87199070412116, + 25.85105169527033 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.87199070412116, + 25.913702706113714 + ], + [ + -79.89193436354455, + 25.945028211535405 + ], + [ + -79.9318216823913, + 25.945028211535405 + ], + [ + -79.95176534181469, + 25.913702706113714 + ], + [ + -79.9318216823913, + 25.882377200692023 + ], + [ + -79.89193436354455, + 25.882377200692023 + ], + [ + -79.87199070412116, + 25.913702706113714 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.87199070412116, + 25.9763537169571 + ], + [ + -79.89193436354455, + 26.00767922237879 + ], + [ + -79.9318216823913, + 26.00767922237879 + ], + [ + -79.95176534181469, + 25.9763537169571 + ], + [ + -79.9318216823913, + 25.94502821153541 + ], + [ + -79.89193436354455, + 25.94502821153541 + ], + [ + -79.87199070412116, + 25.9763537169571 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.87199070412116, + 26.039004727800485 + ], + [ + -79.89193436354455, + 26.070330233222176 + ], + [ + -79.9318216823913, + 26.070330233222176 + ], + [ + -79.95176534181469, + 26.039004727800485 + ], + [ + -79.9318216823913, + 26.007679222378794 + ], + [ + -79.89193436354455, + 26.007679222378794 + ], + [ + -79.87199070412116, + 26.039004727800485 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.87199070412116, + 26.10165573864387 + ], + [ + -79.89193436354455, + 26.13298124406556 + ], + [ + -79.9318216823913, + 26.13298124406556 + ], + [ + -79.95176534181469, + 26.10165573864387 + ], + [ + -79.9318216823913, + 26.07033023322218 + ], + [ + -79.89193436354455, + 26.07033023322218 + ], + [ + -79.87199070412116, + 26.10165573864387 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.87199070412116, + 26.164306749487253 + ], + [ + -79.89193436354455, + 26.195632254908944 + ], + [ + -79.9318216823913, + 26.195632254908944 + ], + [ + -79.95176534181469, + 26.164306749487253 + ], + [ + -79.9318216823913, + 26.13298124406556 + ], + [ + -79.89193436354455, + 26.13298124406556 + ], + [ + -79.87199070412116, + 26.164306749487253 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.87199070412116, + 26.22695776033064 + ], + [ + -79.89193436354455, + 26.258283265752333 + ], + [ + -79.9318216823913, + 26.258283265752333 + ], + [ + -79.95176534181469, + 26.22695776033064 + ], + [ + -79.9318216823913, + 26.19563225490895 + ], + [ + -79.89193436354455, + 26.19563225490895 + ], + [ + -79.87199070412116, + 26.22695776033064 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.87199070412116, + 26.289608771174024 + ], + [ + -79.89193436354455, + 26.320934276595715 + ], + [ + -79.9318216823913, + 26.320934276595715 + ], + [ + -79.95176534181469, + 26.289608771174024 + ], + [ + -79.9318216823913, + 26.258283265752333 + ], + [ + -79.89193436354455, + 26.258283265752333 + ], + [ + -79.87199070412116, + 26.289608771174024 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.87199070412116, + 26.35225978201741 + ], + [ + -79.89193436354455, + 26.3835852874391 + ], + [ + -79.9318216823913, + 26.3835852874391 + ], + [ + -79.95176534181469, + 26.35225978201741 + ], + [ + -79.9318216823913, + 26.320934276595718 + ], + [ + -79.89193436354455, + 26.320934276595718 + ], + [ + -79.87199070412116, + 26.35225978201741 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.87199070412116, + 26.414910792860795 + ], + [ + -79.89193436354455, + 26.446236298282486 + ], + [ + -79.9318216823913, + 26.446236298282486 + ], + [ + -79.95176534181469, + 26.414910792860795 + ], + [ + -79.9318216823913, + 26.383585287439104 + ], + [ + -79.89193436354455, + 26.383585287439104 + ], + [ + -79.87199070412116, + 26.414910792860795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.812159725851, + 24.942612038041236 + ], + [ + -79.8321033852744, + 24.973937543462927 + ], + [ + -79.87199070412115, + 24.973937543462927 + ], + [ + -79.89193436354454, + 24.942612038041236 + ], + [ + -79.87199070412115, + 24.911286532619545 + ], + [ + -79.8321033852744, + 24.911286532619545 + ], + [ + -79.812159725851, + 24.942612038041236 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.812159725851, + 25.005263048884622 + ], + [ + -79.8321033852744, + 25.036588554306313 + ], + [ + -79.87199070412115, + 25.036588554306313 + ], + [ + -79.89193436354454, + 25.005263048884622 + ], + [ + -79.87199070412115, + 24.97393754346293 + ], + [ + -79.8321033852744, + 24.97393754346293 + ], + [ + -79.812159725851, + 25.005263048884622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.812159725851, + 25.067914059728007 + ], + [ + -79.8321033852744, + 25.0992395651497 + ], + [ + -79.87199070412115, + 25.0992395651497 + ], + [ + -79.89193436354454, + 25.067914059728007 + ], + [ + -79.87199070412115, + 25.036588554306316 + ], + [ + -79.8321033852744, + 25.036588554306316 + ], + [ + -79.812159725851, + 25.067914059728007 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.812159725851, + 25.130565070571393 + ], + [ + -79.8321033852744, + 25.161890575993084 + ], + [ + -79.87199070412115, + 25.161890575993084 + ], + [ + -79.89193436354454, + 25.130565070571393 + ], + [ + -79.87199070412115, + 25.099239565149702 + ], + [ + -79.8321033852744, + 25.099239565149702 + ], + [ + -79.812159725851, + 25.130565070571393 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.812159725851, + 25.19321608141478 + ], + [ + -79.8321033852744, + 25.22454158683647 + ], + [ + -79.87199070412115, + 25.22454158683647 + ], + [ + -79.89193436354454, + 25.19321608141478 + ], + [ + -79.87199070412115, + 25.161890575993088 + ], + [ + -79.8321033852744, + 25.161890575993088 + ], + [ + -79.812159725851, + 25.19321608141478 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.812159725851, + 25.255867092258164 + ], + [ + -79.8321033852744, + 25.287192597679855 + ], + [ + -79.87199070412115, + 25.287192597679855 + ], + [ + -79.89193436354454, + 25.255867092258164 + ], + [ + -79.87199070412115, + 25.224541586836473 + ], + [ + -79.8321033852744, + 25.224541586836473 + ], + [ + -79.812159725851, + 25.255867092258164 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.812159725851, + 25.31851810310155 + ], + [ + -79.8321033852744, + 25.34984360852324 + ], + [ + -79.87199070412115, + 25.34984360852324 + ], + [ + -79.89193436354454, + 25.31851810310155 + ], + [ + -79.87199070412115, + 25.28719259767986 + ], + [ + -79.8321033852744, + 25.28719259767986 + ], + [ + -79.812159725851, + 25.31851810310155 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.812159725851, + 25.381169113944935 + ], + [ + -79.8321033852744, + 25.412494619366626 + ], + [ + -79.87199070412115, + 25.412494619366626 + ], + [ + -79.89193436354454, + 25.381169113944935 + ], + [ + -79.87199070412115, + 25.349843608523244 + ], + [ + -79.8321033852744, + 25.349843608523244 + ], + [ + -79.812159725851, + 25.381169113944935 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.812159725851, + 25.44382012478832 + ], + [ + -79.8321033852744, + 25.47514563021001 + ], + [ + -79.87199070412115, + 25.47514563021001 + ], + [ + -79.89193436354454, + 25.44382012478832 + ], + [ + -79.87199070412115, + 25.41249461936663 + ], + [ + -79.8321033852744, + 25.41249461936663 + ], + [ + -79.812159725851, + 25.44382012478832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.812159725851, + 25.506471135631706 + ], + [ + -79.8321033852744, + 25.537796641053397 + ], + [ + -79.87199070412115, + 25.537796641053397 + ], + [ + -79.89193436354454, + 25.506471135631706 + ], + [ + -79.87199070412115, + 25.475145630210015 + ], + [ + -79.8321033852744, + 25.475145630210015 + ], + [ + -79.812159725851, + 25.506471135631706 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.812159725851, + 25.56912214647509 + ], + [ + -79.8321033852744, + 25.600447651896783 + ], + [ + -79.87199070412115, + 25.600447651896783 + ], + [ + -79.89193436354454, + 25.56912214647509 + ], + [ + -79.87199070412115, + 25.5377966410534 + ], + [ + -79.8321033852744, + 25.5377966410534 + ], + [ + -79.812159725851, + 25.56912214647509 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.812159725851, + 25.631773157318477 + ], + [ + -79.8321033852744, + 25.66309866274017 + ], + [ + -79.87199070412115, + 25.66309866274017 + ], + [ + -79.89193436354454, + 25.631773157318477 + ], + [ + -79.87199070412115, + 25.600447651896786 + ], + [ + -79.8321033852744, + 25.600447651896786 + ], + [ + -79.812159725851, + 25.631773157318477 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.812159725851, + 25.694424168161863 + ], + [ + -79.8321033852744, + 25.725749673583554 + ], + [ + -79.87199070412115, + 25.725749673583554 + ], + [ + -79.89193436354454, + 25.694424168161863 + ], + [ + -79.87199070412115, + 25.663098662740172 + ], + [ + -79.8321033852744, + 25.663098662740172 + ], + [ + -79.812159725851, + 25.694424168161863 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.812159725851, + 25.75707517900525 + ], + [ + -79.8321033852744, + 25.78840068442694 + ], + [ + -79.87199070412115, + 25.78840068442694 + ], + [ + -79.89193436354454, + 25.75707517900525 + ], + [ + -79.87199070412115, + 25.725749673583557 + ], + [ + -79.8321033852744, + 25.725749673583557 + ], + [ + -79.812159725851, + 25.75707517900525 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.812159725851, + 25.819726189848634 + ], + [ + -79.8321033852744, + 25.851051695270325 + ], + [ + -79.87199070412115, + 25.851051695270325 + ], + [ + -79.89193436354454, + 25.819726189848634 + ], + [ + -79.87199070412115, + 25.788400684426943 + ], + [ + -79.8321033852744, + 25.788400684426943 + ], + [ + -79.812159725851, + 25.819726189848634 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.812159725851, + 25.88237720069202 + ], + [ + -79.8321033852744, + 25.91370270611371 + ], + [ + -79.87199070412115, + 25.91370270611371 + ], + [ + -79.89193436354454, + 25.88237720069202 + ], + [ + -79.87199070412115, + 25.85105169527033 + ], + [ + -79.8321033852744, + 25.85105169527033 + ], + [ + -79.812159725851, + 25.88237720069202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.812159725851, + 25.945028211535405 + ], + [ + -79.8321033852744, + 25.976353716957096 + ], + [ + -79.87199070412115, + 25.976353716957096 + ], + [ + -79.89193436354454, + 25.945028211535405 + ], + [ + -79.87199070412115, + 25.913702706113714 + ], + [ + -79.8321033852744, + 25.913702706113714 + ], + [ + -79.812159725851, + 25.945028211535405 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.812159725851, + 26.00767922237879 + ], + [ + -79.8321033852744, + 26.03900472780048 + ], + [ + -79.87199070412115, + 26.03900472780048 + ], + [ + -79.89193436354454, + 26.00767922237879 + ], + [ + -79.87199070412115, + 25.9763537169571 + ], + [ + -79.8321033852744, + 25.9763537169571 + ], + [ + -79.812159725851, + 26.00767922237879 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.812159725851, + 26.070330233222176 + ], + [ + -79.8321033852744, + 26.101655738643867 + ], + [ + -79.87199070412115, + 26.101655738643867 + ], + [ + -79.89193436354454, + 26.070330233222176 + ], + [ + -79.87199070412115, + 26.039004727800485 + ], + [ + -79.8321033852744, + 26.039004727800485 + ], + [ + -79.812159725851, + 26.070330233222176 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.812159725851, + 26.13298124406556 + ], + [ + -79.8321033852744, + 26.164306749487253 + ], + [ + -79.87199070412115, + 26.164306749487253 + ], + [ + -79.89193436354454, + 26.13298124406556 + ], + [ + -79.87199070412115, + 26.10165573864387 + ], + [ + -79.8321033852744, + 26.10165573864387 + ], + [ + -79.812159725851, + 26.13298124406556 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.812159725851, + 26.195632254908944 + ], + [ + -79.8321033852744, + 26.226957760330635 + ], + [ + -79.87199070412115, + 26.226957760330635 + ], + [ + -79.89193436354454, + 26.195632254908944 + ], + [ + -79.87199070412115, + 26.164306749487253 + ], + [ + -79.8321033852744, + 26.164306749487253 + ], + [ + -79.812159725851, + 26.195632254908944 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.812159725851, + 26.258283265752333 + ], + [ + -79.8321033852744, + 26.289608771174024 + ], + [ + -79.87199070412115, + 26.289608771174024 + ], + [ + -79.89193436354454, + 26.258283265752333 + ], + [ + -79.87199070412115, + 26.22695776033064 + ], + [ + -79.8321033852744, + 26.22695776033064 + ], + [ + -79.812159725851, + 26.258283265752333 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.812159725851, + 26.320934276595715 + ], + [ + -79.8321033852744, + 26.352259782017406 + ], + [ + -79.87199070412115, + 26.352259782017406 + ], + [ + -79.89193436354454, + 26.320934276595715 + ], + [ + -79.87199070412115, + 26.289608771174024 + ], + [ + -79.8321033852744, + 26.289608771174024 + ], + [ + -79.812159725851, + 26.320934276595715 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.812159725851, + 26.3835852874391 + ], + [ + -79.8321033852744, + 26.41491079286079 + ], + [ + -79.87199070412115, + 26.41491079286079 + ], + [ + -79.89193436354454, + 26.3835852874391 + ], + [ + -79.87199070412115, + 26.35225978201741 + ], + [ + -79.8321033852744, + 26.35225978201741 + ], + [ + -79.812159725851, + 26.3835852874391 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.812159725851, + 26.446236298282486 + ], + [ + -79.8321033852744, + 26.477561803704177 + ], + [ + -79.87199070412115, + 26.477561803704177 + ], + [ + -79.89193436354454, + 26.446236298282486 + ], + [ + -79.87199070412115, + 26.414910792860795 + ], + [ + -79.8321033852744, + 26.414910792860795 + ], + [ + -79.812159725851, + 26.446236298282486 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "fill-opacity": 0, + "stroke": "#0ff" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.650390625, + 24.926294766395593 + ], + [ + -79.8486328125, + 24.926294766395593 + ], + [ + -79.8486328125, + 26.43122806450644 + ], + [ + -81.650390625, + 26.43122806450644 + ], + [ + -81.650390625, + 24.926294766395593 + ] + ] + ] + } + } + ] +} \ No newline at end of file diff --git a/packages/turf-hex-grid/test/out/grid3.geojson b/packages/turf-hex-grid/test/out/grid3.geojson new file mode 100644 index 0000000000..be1e52ba99 --- /dev/null +++ b/packages/turf-hex-grid/test/out/grid3.geojson @@ -0,0 +1,8658 @@ +{ + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.37195771539547, + 38.72966446648721 + ], + [ + -77.38122994109527, + 38.742194668655884 + ], + [ + -77.39977439249485, + 38.742194668655884 + ], + [ + -77.40904661819465, + 38.72966446648721 + ], + [ + -77.39977439249485, + 38.71713426431853 + ], + [ + -77.38122994109527, + 38.71713426431853 + ], + [ + -77.37195771539547, + 38.72966446648721 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.37195771539547, + 38.75472487082456 + ], + [ + -77.38122994109527, + 38.76725507299324 + ], + [ + -77.39977439249485, + 38.76725507299324 + ], + [ + -77.40904661819465, + 38.75472487082456 + ], + [ + -77.39977439249485, + 38.742194668655884 + ], + [ + -77.38122994109527, + 38.742194668655884 + ], + [ + -77.37195771539547, + 38.75472487082456 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.37195771539547, + 38.77978527516192 + ], + [ + -77.38122994109527, + 38.7923154773306 + ], + [ + -77.39977439249485, + 38.7923154773306 + ], + [ + -77.40904661819465, + 38.77978527516192 + ], + [ + -77.39977439249485, + 38.767255072993244 + ], + [ + -77.38122994109527, + 38.767255072993244 + ], + [ + -77.37195771539547, + 38.77978527516192 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.37195771539547, + 38.80484567949927 + ], + [ + -77.38122994109527, + 38.81737588166795 + ], + [ + -77.39977439249485, + 38.81737588166795 + ], + [ + -77.40904661819465, + 38.80484567949927 + ], + [ + -77.39977439249485, + 38.7923154773306 + ], + [ + -77.38122994109527, + 38.7923154773306 + ], + [ + -77.37195771539547, + 38.80484567949927 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.37195771539547, + 38.829906083836626 + ], + [ + -77.38122994109527, + 38.8424362860053 + ], + [ + -77.39977439249485, + 38.8424362860053 + ], + [ + -77.40904661819465, + 38.829906083836626 + ], + [ + -77.39977439249485, + 38.81737588166795 + ], + [ + -77.38122994109527, + 38.81737588166795 + ], + [ + -77.37195771539547, + 38.829906083836626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.37195771539547, + 38.85496648817398 + ], + [ + -77.38122994109527, + 38.867496690342655 + ], + [ + -77.39977439249485, + 38.867496690342655 + ], + [ + -77.40904661819465, + 38.85496648817398 + ], + [ + -77.39977439249485, + 38.8424362860053 + ], + [ + -77.38122994109527, + 38.8424362860053 + ], + [ + -77.37195771539547, + 38.85496648817398 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.37195771539547, + 38.88002689251133 + ], + [ + -77.38122994109527, + 38.89255709468001 + ], + [ + -77.39977439249485, + 38.89255709468001 + ], + [ + -77.40904661819465, + 38.88002689251133 + ], + [ + -77.39977439249485, + 38.867496690342655 + ], + [ + -77.38122994109527, + 38.867496690342655 + ], + [ + -77.37195771539547, + 38.88002689251133 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.37195771539547, + 38.90508729684869 + ], + [ + -77.38122994109527, + 38.91761749901737 + ], + [ + -77.39977439249485, + 38.91761749901737 + ], + [ + -77.40904661819465, + 38.90508729684869 + ], + [ + -77.39977439249485, + 38.892557094680015 + ], + [ + -77.38122994109527, + 38.892557094680015 + ], + [ + -77.37195771539547, + 38.90508729684869 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.37195771539547, + 38.930147701186044 + ], + [ + -77.38122994109527, + 38.94267790335472 + ], + [ + -77.39977439249485, + 38.94267790335472 + ], + [ + -77.40904661819465, + 38.930147701186044 + ], + [ + -77.39977439249485, + 38.91761749901737 + ], + [ + -77.38122994109527, + 38.91761749901737 + ], + [ + -77.37195771539547, + 38.930147701186044 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.37195771539547, + 38.9552081055234 + ], + [ + -77.38122994109527, + 38.96773830769207 + ], + [ + -77.39977439249485, + 38.96773830769207 + ], + [ + -77.40904661819465, + 38.9552081055234 + ], + [ + -77.39977439249485, + 38.94267790335472 + ], + [ + -77.38122994109527, + 38.94267790335472 + ], + [ + -77.37195771539547, + 38.9552081055234 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.37195771539547, + 38.98026850986075 + ], + [ + -77.38122994109527, + 38.992798712029426 + ], + [ + -77.39977439249485, + 38.992798712029426 + ], + [ + -77.40904661819465, + 38.98026850986075 + ], + [ + -77.39977439249485, + 38.96773830769207 + ], + [ + -77.38122994109527, + 38.96773830769207 + ], + [ + -77.37195771539547, + 38.98026850986075 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.37195771539547, + 39.0053289141981 + ], + [ + -77.38122994109527, + 39.01785911636678 + ], + [ + -77.39977439249485, + 39.01785911636678 + ], + [ + -77.40904661819465, + 39.0053289141981 + ], + [ + -77.39977439249485, + 38.992798712029426 + ], + [ + -77.38122994109527, + 38.992798712029426 + ], + [ + -77.37195771539547, + 39.0053289141981 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.37195771539547, + 39.03038931853546 + ], + [ + -77.38122994109527, + 39.04291952070414 + ], + [ + -77.39977439249485, + 39.04291952070414 + ], + [ + -77.40904661819465, + 39.03038931853546 + ], + [ + -77.39977439249485, + 39.017859116366786 + ], + [ + -77.38122994109527, + 39.017859116366786 + ], + [ + -77.37195771539547, + 39.03038931853546 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.34414103829609, + 38.71713426431853 + ], + [ + -77.35341326399589, + 38.72966446648721 + ], + [ + -77.37195771539547, + 38.72966446648721 + ], + [ + -77.38122994109527, + 38.71713426431853 + ], + [ + -77.37195771539547, + 38.704604062149855 + ], + [ + -77.35341326399589, + 38.704604062149855 + ], + [ + -77.34414103829609, + 38.71713426431853 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.34414103829609, + 38.742194668655884 + ], + [ + -77.35341326399589, + 38.75472487082456 + ], + [ + -77.37195771539547, + 38.75472487082456 + ], + [ + -77.38122994109527, + 38.742194668655884 + ], + [ + -77.37195771539547, + 38.72966446648721 + ], + [ + -77.35341326399589, + 38.72966446648721 + ], + [ + -77.34414103829609, + 38.742194668655884 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.34414103829609, + 38.767255072993244 + ], + [ + -77.35341326399589, + 38.77978527516192 + ], + [ + -77.37195771539547, + 38.77978527516192 + ], + [ + -77.38122994109527, + 38.767255072993244 + ], + [ + -77.37195771539547, + 38.75472487082457 + ], + [ + -77.35341326399589, + 38.75472487082457 + ], + [ + -77.34414103829609, + 38.767255072993244 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.34414103829609, + 38.7923154773306 + ], + [ + -77.35341326399589, + 38.80484567949927 + ], + [ + -77.37195771539547, + 38.80484567949927 + ], + [ + -77.38122994109527, + 38.7923154773306 + ], + [ + -77.37195771539547, + 38.77978527516192 + ], + [ + -77.35341326399589, + 38.77978527516192 + ], + [ + -77.34414103829609, + 38.7923154773306 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.34414103829609, + 38.81737588166795 + ], + [ + -77.35341326399589, + 38.829906083836626 + ], + [ + -77.37195771539547, + 38.829906083836626 + ], + [ + -77.38122994109527, + 38.81737588166795 + ], + [ + -77.37195771539547, + 38.80484567949927 + ], + [ + -77.35341326399589, + 38.80484567949927 + ], + [ + -77.34414103829609, + 38.81737588166795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.34414103829609, + 38.8424362860053 + ], + [ + -77.35341326399589, + 38.85496648817398 + ], + [ + -77.37195771539547, + 38.85496648817398 + ], + [ + -77.38122994109527, + 38.8424362860053 + ], + [ + -77.37195771539547, + 38.829906083836626 + ], + [ + -77.35341326399589, + 38.829906083836626 + ], + [ + -77.34414103829609, + 38.8424362860053 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.34414103829609, + 38.867496690342655 + ], + [ + -77.35341326399589, + 38.88002689251133 + ], + [ + -77.37195771539547, + 38.88002689251133 + ], + [ + -77.38122994109527, + 38.867496690342655 + ], + [ + -77.37195771539547, + 38.85496648817398 + ], + [ + -77.35341326399589, + 38.85496648817398 + ], + [ + -77.34414103829609, + 38.867496690342655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.34414103829609, + 38.892557094680015 + ], + [ + -77.35341326399589, + 38.90508729684869 + ], + [ + -77.37195771539547, + 38.90508729684869 + ], + [ + -77.38122994109527, + 38.892557094680015 + ], + [ + -77.37195771539547, + 38.88002689251134 + ], + [ + -77.35341326399589, + 38.88002689251134 + ], + [ + -77.34414103829609, + 38.892557094680015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.34414103829609, + 38.91761749901737 + ], + [ + -77.35341326399589, + 38.930147701186044 + ], + [ + -77.37195771539547, + 38.930147701186044 + ], + [ + -77.38122994109527, + 38.91761749901737 + ], + [ + -77.37195771539547, + 38.90508729684869 + ], + [ + -77.35341326399589, + 38.90508729684869 + ], + [ + -77.34414103829609, + 38.91761749901737 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.34414103829609, + 38.94267790335472 + ], + [ + -77.35341326399589, + 38.9552081055234 + ], + [ + -77.37195771539547, + 38.9552081055234 + ], + [ + -77.38122994109527, + 38.94267790335472 + ], + [ + -77.37195771539547, + 38.930147701186044 + ], + [ + -77.35341326399589, + 38.930147701186044 + ], + [ + -77.34414103829609, + 38.94267790335472 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.34414103829609, + 38.96773830769207 + ], + [ + -77.35341326399589, + 38.98026850986075 + ], + [ + -77.37195771539547, + 38.98026850986075 + ], + [ + -77.38122994109527, + 38.96773830769207 + ], + [ + -77.37195771539547, + 38.9552081055234 + ], + [ + -77.35341326399589, + 38.9552081055234 + ], + [ + -77.34414103829609, + 38.96773830769207 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.34414103829609, + 38.992798712029426 + ], + [ + -77.35341326399589, + 39.0053289141981 + ], + [ + -77.37195771539547, + 39.0053289141981 + ], + [ + -77.38122994109527, + 38.992798712029426 + ], + [ + -77.37195771539547, + 38.98026850986075 + ], + [ + -77.35341326399589, + 38.98026850986075 + ], + [ + -77.34414103829609, + 38.992798712029426 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.34414103829609, + 39.017859116366786 + ], + [ + -77.35341326399589, + 39.03038931853546 + ], + [ + -77.37195771539547, + 39.03038931853546 + ], + [ + -77.38122994109527, + 39.017859116366786 + ], + [ + -77.37195771539547, + 39.00532891419811 + ], + [ + -77.35341326399589, + 39.00532891419811 + ], + [ + -77.34414103829609, + 39.017859116366786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.3163243611967, + 38.72966446648721 + ], + [ + -77.32559658689651, + 38.742194668655884 + ], + [ + -77.34414103829609, + 38.742194668655884 + ], + [ + -77.35341326399589, + 38.72966446648721 + ], + [ + -77.34414103829609, + 38.71713426431853 + ], + [ + -77.32559658689651, + 38.71713426431853 + ], + [ + -77.3163243611967, + 38.72966446648721 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.3163243611967, + 38.75472487082456 + ], + [ + -77.32559658689651, + 38.76725507299324 + ], + [ + -77.34414103829609, + 38.76725507299324 + ], + [ + -77.35341326399589, + 38.75472487082456 + ], + [ + -77.34414103829609, + 38.742194668655884 + ], + [ + -77.32559658689651, + 38.742194668655884 + ], + [ + -77.3163243611967, + 38.75472487082456 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.3163243611967, + 38.77978527516192 + ], + [ + -77.32559658689651, + 38.7923154773306 + ], + [ + -77.34414103829609, + 38.7923154773306 + ], + [ + -77.35341326399589, + 38.77978527516192 + ], + [ + -77.34414103829609, + 38.767255072993244 + ], + [ + -77.32559658689651, + 38.767255072993244 + ], + [ + -77.3163243611967, + 38.77978527516192 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.3163243611967, + 38.80484567949927 + ], + [ + -77.32559658689651, + 38.81737588166795 + ], + [ + -77.34414103829609, + 38.81737588166795 + ], + [ + -77.35341326399589, + 38.80484567949927 + ], + [ + -77.34414103829609, + 38.7923154773306 + ], + [ + -77.32559658689651, + 38.7923154773306 + ], + [ + -77.3163243611967, + 38.80484567949927 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.3163243611967, + 38.829906083836626 + ], + [ + -77.32559658689651, + 38.8424362860053 + ], + [ + -77.34414103829609, + 38.8424362860053 + ], + [ + -77.35341326399589, + 38.829906083836626 + ], + [ + -77.34414103829609, + 38.81737588166795 + ], + [ + -77.32559658689651, + 38.81737588166795 + ], + [ + -77.3163243611967, + 38.829906083836626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.3163243611967, + 38.85496648817398 + ], + [ + -77.32559658689651, + 38.867496690342655 + ], + [ + -77.34414103829609, + 38.867496690342655 + ], + [ + -77.35341326399589, + 38.85496648817398 + ], + [ + -77.34414103829609, + 38.8424362860053 + ], + [ + -77.32559658689651, + 38.8424362860053 + ], + [ + -77.3163243611967, + 38.85496648817398 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.3163243611967, + 38.88002689251133 + ], + [ + -77.32559658689651, + 38.89255709468001 + ], + [ + -77.34414103829609, + 38.89255709468001 + ], + [ + -77.35341326399589, + 38.88002689251133 + ], + [ + -77.34414103829609, + 38.867496690342655 + ], + [ + -77.32559658689651, + 38.867496690342655 + ], + [ + -77.3163243611967, + 38.88002689251133 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.3163243611967, + 38.90508729684869 + ], + [ + -77.32559658689651, + 38.91761749901737 + ], + [ + -77.34414103829609, + 38.91761749901737 + ], + [ + -77.35341326399589, + 38.90508729684869 + ], + [ + -77.34414103829609, + 38.892557094680015 + ], + [ + -77.32559658689651, + 38.892557094680015 + ], + [ + -77.3163243611967, + 38.90508729684869 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.3163243611967, + 38.930147701186044 + ], + [ + -77.32559658689651, + 38.94267790335472 + ], + [ + -77.34414103829609, + 38.94267790335472 + ], + [ + -77.35341326399589, + 38.930147701186044 + ], + [ + -77.34414103829609, + 38.91761749901737 + ], + [ + -77.32559658689651, + 38.91761749901737 + ], + [ + -77.3163243611967, + 38.930147701186044 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.3163243611967, + 38.9552081055234 + ], + [ + -77.32559658689651, + 38.96773830769207 + ], + [ + -77.34414103829609, + 38.96773830769207 + ], + [ + -77.35341326399589, + 38.9552081055234 + ], + [ + -77.34414103829609, + 38.94267790335472 + ], + [ + -77.32559658689651, + 38.94267790335472 + ], + [ + -77.3163243611967, + 38.9552081055234 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.3163243611967, + 38.98026850986075 + ], + [ + -77.32559658689651, + 38.992798712029426 + ], + [ + -77.34414103829609, + 38.992798712029426 + ], + [ + -77.35341326399589, + 38.98026850986075 + ], + [ + -77.34414103829609, + 38.96773830769207 + ], + [ + -77.32559658689651, + 38.96773830769207 + ], + [ + -77.3163243611967, + 38.98026850986075 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.3163243611967, + 39.0053289141981 + ], + [ + -77.32559658689651, + 39.01785911636678 + ], + [ + -77.34414103829609, + 39.01785911636678 + ], + [ + -77.35341326399589, + 39.0053289141981 + ], + [ + -77.34414103829609, + 38.992798712029426 + ], + [ + -77.32559658689651, + 38.992798712029426 + ], + [ + -77.3163243611967, + 39.0053289141981 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.3163243611967, + 39.03038931853546 + ], + [ + -77.32559658689651, + 39.04291952070414 + ], + [ + -77.34414103829609, + 39.04291952070414 + ], + [ + -77.35341326399589, + 39.03038931853546 + ], + [ + -77.34414103829609, + 39.017859116366786 + ], + [ + -77.32559658689651, + 39.017859116366786 + ], + [ + -77.3163243611967, + 39.03038931853546 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.28850768409733, + 38.71713426431853 + ], + [ + -77.29777990979713, + 38.72966446648721 + ], + [ + -77.3163243611967, + 38.72966446648721 + ], + [ + -77.32559658689651, + 38.71713426431853 + ], + [ + -77.3163243611967, + 38.704604062149855 + ], + [ + -77.29777990979713, + 38.704604062149855 + ], + [ + -77.28850768409733, + 38.71713426431853 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.28850768409733, + 38.742194668655884 + ], + [ + -77.29777990979713, + 38.75472487082456 + ], + [ + -77.3163243611967, + 38.75472487082456 + ], + [ + -77.32559658689651, + 38.742194668655884 + ], + [ + -77.3163243611967, + 38.72966446648721 + ], + [ + -77.29777990979713, + 38.72966446648721 + ], + [ + -77.28850768409733, + 38.742194668655884 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.28850768409733, + 38.767255072993244 + ], + [ + -77.29777990979713, + 38.77978527516192 + ], + [ + -77.3163243611967, + 38.77978527516192 + ], + [ + -77.32559658689651, + 38.767255072993244 + ], + [ + -77.3163243611967, + 38.75472487082457 + ], + [ + -77.29777990979713, + 38.75472487082457 + ], + [ + -77.28850768409733, + 38.767255072993244 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.28850768409733, + 38.7923154773306 + ], + [ + -77.29777990979713, + 38.80484567949927 + ], + [ + -77.3163243611967, + 38.80484567949927 + ], + [ + -77.32559658689651, + 38.7923154773306 + ], + [ + -77.3163243611967, + 38.77978527516192 + ], + [ + -77.29777990979713, + 38.77978527516192 + ], + [ + -77.28850768409733, + 38.7923154773306 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.28850768409733, + 38.81737588166795 + ], + [ + -77.29777990979713, + 38.829906083836626 + ], + [ + -77.3163243611967, + 38.829906083836626 + ], + [ + -77.32559658689651, + 38.81737588166795 + ], + [ + -77.3163243611967, + 38.80484567949927 + ], + [ + -77.29777990979713, + 38.80484567949927 + ], + [ + -77.28850768409733, + 38.81737588166795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.28850768409733, + 38.8424362860053 + ], + [ + -77.29777990979713, + 38.85496648817398 + ], + [ + -77.3163243611967, + 38.85496648817398 + ], + [ + -77.32559658689651, + 38.8424362860053 + ], + [ + -77.3163243611967, + 38.829906083836626 + ], + [ + -77.29777990979713, + 38.829906083836626 + ], + [ + -77.28850768409733, + 38.8424362860053 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.28850768409733, + 38.867496690342655 + ], + [ + -77.29777990979713, + 38.88002689251133 + ], + [ + -77.3163243611967, + 38.88002689251133 + ], + [ + -77.32559658689651, + 38.867496690342655 + ], + [ + -77.3163243611967, + 38.85496648817398 + ], + [ + -77.29777990979713, + 38.85496648817398 + ], + [ + -77.28850768409733, + 38.867496690342655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.28850768409733, + 38.892557094680015 + ], + [ + -77.29777990979713, + 38.90508729684869 + ], + [ + -77.3163243611967, + 38.90508729684869 + ], + [ + -77.32559658689651, + 38.892557094680015 + ], + [ + -77.3163243611967, + 38.88002689251134 + ], + [ + -77.29777990979713, + 38.88002689251134 + ], + [ + -77.28850768409733, + 38.892557094680015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.28850768409733, + 38.91761749901737 + ], + [ + -77.29777990979713, + 38.930147701186044 + ], + [ + -77.3163243611967, + 38.930147701186044 + ], + [ + -77.32559658689651, + 38.91761749901737 + ], + [ + -77.3163243611967, + 38.90508729684869 + ], + [ + -77.29777990979713, + 38.90508729684869 + ], + [ + -77.28850768409733, + 38.91761749901737 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.28850768409733, + 38.94267790335472 + ], + [ + -77.29777990979713, + 38.9552081055234 + ], + [ + -77.3163243611967, + 38.9552081055234 + ], + [ + -77.32559658689651, + 38.94267790335472 + ], + [ + -77.3163243611967, + 38.930147701186044 + ], + [ + -77.29777990979713, + 38.930147701186044 + ], + [ + -77.28850768409733, + 38.94267790335472 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.28850768409733, + 38.96773830769207 + ], + [ + -77.29777990979713, + 38.98026850986075 + ], + [ + -77.3163243611967, + 38.98026850986075 + ], + [ + -77.32559658689651, + 38.96773830769207 + ], + [ + -77.3163243611967, + 38.9552081055234 + ], + [ + -77.29777990979713, + 38.9552081055234 + ], + [ + -77.28850768409733, + 38.96773830769207 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.28850768409733, + 38.992798712029426 + ], + [ + -77.29777990979713, + 39.0053289141981 + ], + [ + -77.3163243611967, + 39.0053289141981 + ], + [ + -77.32559658689651, + 38.992798712029426 + ], + [ + -77.3163243611967, + 38.98026850986075 + ], + [ + -77.29777990979713, + 38.98026850986075 + ], + [ + -77.28850768409733, + 38.992798712029426 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.28850768409733, + 39.017859116366786 + ], + [ + -77.29777990979713, + 39.03038931853546 + ], + [ + -77.3163243611967, + 39.03038931853546 + ], + [ + -77.32559658689651, + 39.017859116366786 + ], + [ + -77.3163243611967, + 39.00532891419811 + ], + [ + -77.29777990979713, + 39.00532891419811 + ], + [ + -77.28850768409733, + 39.017859116366786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.26069100699794, + 38.72966446648721 + ], + [ + -77.26996323269775, + 38.742194668655884 + ], + [ + -77.28850768409733, + 38.742194668655884 + ], + [ + -77.29777990979713, + 38.72966446648721 + ], + [ + -77.28850768409733, + 38.71713426431853 + ], + [ + -77.26996323269775, + 38.71713426431853 + ], + [ + -77.26069100699794, + 38.72966446648721 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.26069100699794, + 38.75472487082456 + ], + [ + -77.26996323269775, + 38.76725507299324 + ], + [ + -77.28850768409733, + 38.76725507299324 + ], + [ + -77.29777990979713, + 38.75472487082456 + ], + [ + -77.28850768409733, + 38.742194668655884 + ], + [ + -77.26996323269775, + 38.742194668655884 + ], + [ + -77.26069100699794, + 38.75472487082456 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.26069100699794, + 38.77978527516192 + ], + [ + -77.26996323269775, + 38.7923154773306 + ], + [ + -77.28850768409733, + 38.7923154773306 + ], + [ + -77.29777990979713, + 38.77978527516192 + ], + [ + -77.28850768409733, + 38.767255072993244 + ], + [ + -77.26996323269775, + 38.767255072993244 + ], + [ + -77.26069100699794, + 38.77978527516192 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.26069100699794, + 38.80484567949927 + ], + [ + -77.26996323269775, + 38.81737588166795 + ], + [ + -77.28850768409733, + 38.81737588166795 + ], + [ + -77.29777990979713, + 38.80484567949927 + ], + [ + -77.28850768409733, + 38.7923154773306 + ], + [ + -77.26996323269775, + 38.7923154773306 + ], + [ + -77.26069100699794, + 38.80484567949927 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.26069100699794, + 38.829906083836626 + ], + [ + -77.26996323269775, + 38.8424362860053 + ], + [ + -77.28850768409733, + 38.8424362860053 + ], + [ + -77.29777990979713, + 38.829906083836626 + ], + [ + -77.28850768409733, + 38.81737588166795 + ], + [ + -77.26996323269775, + 38.81737588166795 + ], + [ + -77.26069100699794, + 38.829906083836626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.26069100699794, + 38.85496648817398 + ], + [ + -77.26996323269775, + 38.867496690342655 + ], + [ + -77.28850768409733, + 38.867496690342655 + ], + [ + -77.29777990979713, + 38.85496648817398 + ], + [ + -77.28850768409733, + 38.8424362860053 + ], + [ + -77.26996323269775, + 38.8424362860053 + ], + [ + -77.26069100699794, + 38.85496648817398 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.26069100699794, + 38.88002689251133 + ], + [ + -77.26996323269775, + 38.89255709468001 + ], + [ + -77.28850768409733, + 38.89255709468001 + ], + [ + -77.29777990979713, + 38.88002689251133 + ], + [ + -77.28850768409733, + 38.867496690342655 + ], + [ + -77.26996323269775, + 38.867496690342655 + ], + [ + -77.26069100699794, + 38.88002689251133 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.26069100699794, + 38.90508729684869 + ], + [ + -77.26996323269775, + 38.91761749901737 + ], + [ + -77.28850768409733, + 38.91761749901737 + ], + [ + -77.29777990979713, + 38.90508729684869 + ], + [ + -77.28850768409733, + 38.892557094680015 + ], + [ + -77.26996323269775, + 38.892557094680015 + ], + [ + -77.26069100699794, + 38.90508729684869 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.26069100699794, + 38.930147701186044 + ], + [ + -77.26996323269775, + 38.94267790335472 + ], + [ + -77.28850768409733, + 38.94267790335472 + ], + [ + -77.29777990979713, + 38.930147701186044 + ], + [ + -77.28850768409733, + 38.91761749901737 + ], + [ + -77.26996323269775, + 38.91761749901737 + ], + [ + -77.26069100699794, + 38.930147701186044 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.26069100699794, + 38.9552081055234 + ], + [ + -77.26996323269775, + 38.96773830769207 + ], + [ + -77.28850768409733, + 38.96773830769207 + ], + [ + -77.29777990979713, + 38.9552081055234 + ], + [ + -77.28850768409733, + 38.94267790335472 + ], + [ + -77.26996323269775, + 38.94267790335472 + ], + [ + -77.26069100699794, + 38.9552081055234 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.26069100699794, + 38.98026850986075 + ], + [ + -77.26996323269775, + 38.992798712029426 + ], + [ + -77.28850768409733, + 38.992798712029426 + ], + [ + -77.29777990979713, + 38.98026850986075 + ], + [ + -77.28850768409733, + 38.96773830769207 + ], + [ + -77.26996323269775, + 38.96773830769207 + ], + [ + -77.26069100699794, + 38.98026850986075 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.26069100699794, + 39.0053289141981 + ], + [ + -77.26996323269775, + 39.01785911636678 + ], + [ + -77.28850768409733, + 39.01785911636678 + ], + [ + -77.29777990979713, + 39.0053289141981 + ], + [ + -77.28850768409733, + 38.992798712029426 + ], + [ + -77.26996323269775, + 38.992798712029426 + ], + [ + -77.26069100699794, + 39.0053289141981 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.26069100699794, + 39.03038931853546 + ], + [ + -77.26996323269775, + 39.04291952070414 + ], + [ + -77.28850768409733, + 39.04291952070414 + ], + [ + -77.29777990979713, + 39.03038931853546 + ], + [ + -77.28850768409733, + 39.017859116366786 + ], + [ + -77.26996323269775, + 39.017859116366786 + ], + [ + -77.26069100699794, + 39.03038931853546 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.23287432989856, + 38.71713426431853 + ], + [ + -77.24214655559837, + 38.72966446648721 + ], + [ + -77.26069100699794, + 38.72966446648721 + ], + [ + -77.26996323269775, + 38.71713426431853 + ], + [ + -77.26069100699794, + 38.704604062149855 + ], + [ + -77.24214655559837, + 38.704604062149855 + ], + [ + -77.23287432989856, + 38.71713426431853 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.23287432989856, + 38.742194668655884 + ], + [ + -77.24214655559837, + 38.75472487082456 + ], + [ + -77.26069100699794, + 38.75472487082456 + ], + [ + -77.26996323269775, + 38.742194668655884 + ], + [ + -77.26069100699794, + 38.72966446648721 + ], + [ + -77.24214655559837, + 38.72966446648721 + ], + [ + -77.23287432989856, + 38.742194668655884 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.23287432989856, + 38.767255072993244 + ], + [ + -77.24214655559837, + 38.77978527516192 + ], + [ + -77.26069100699794, + 38.77978527516192 + ], + [ + -77.26996323269775, + 38.767255072993244 + ], + [ + -77.26069100699794, + 38.75472487082457 + ], + [ + -77.24214655559837, + 38.75472487082457 + ], + [ + -77.23287432989856, + 38.767255072993244 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.23287432989856, + 38.7923154773306 + ], + [ + -77.24214655559837, + 38.80484567949927 + ], + [ + -77.26069100699794, + 38.80484567949927 + ], + [ + -77.26996323269775, + 38.7923154773306 + ], + [ + -77.26069100699794, + 38.77978527516192 + ], + [ + -77.24214655559837, + 38.77978527516192 + ], + [ + -77.23287432989856, + 38.7923154773306 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.23287432989856, + 38.81737588166795 + ], + [ + -77.24214655559837, + 38.829906083836626 + ], + [ + -77.26069100699794, + 38.829906083836626 + ], + [ + -77.26996323269775, + 38.81737588166795 + ], + [ + -77.26069100699794, + 38.80484567949927 + ], + [ + -77.24214655559837, + 38.80484567949927 + ], + [ + -77.23287432989856, + 38.81737588166795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.23287432989856, + 38.8424362860053 + ], + [ + -77.24214655559837, + 38.85496648817398 + ], + [ + -77.26069100699794, + 38.85496648817398 + ], + [ + -77.26996323269775, + 38.8424362860053 + ], + [ + -77.26069100699794, + 38.829906083836626 + ], + [ + -77.24214655559837, + 38.829906083836626 + ], + [ + -77.23287432989856, + 38.8424362860053 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.23287432989856, + 38.867496690342655 + ], + [ + -77.24214655559837, + 38.88002689251133 + ], + [ + -77.26069100699794, + 38.88002689251133 + ], + [ + -77.26996323269775, + 38.867496690342655 + ], + [ + -77.26069100699794, + 38.85496648817398 + ], + [ + -77.24214655559837, + 38.85496648817398 + ], + [ + -77.23287432989856, + 38.867496690342655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.23287432989856, + 38.892557094680015 + ], + [ + -77.24214655559837, + 38.90508729684869 + ], + [ + -77.26069100699794, + 38.90508729684869 + ], + [ + -77.26996323269775, + 38.892557094680015 + ], + [ + -77.26069100699794, + 38.88002689251134 + ], + [ + -77.24214655559837, + 38.88002689251134 + ], + [ + -77.23287432989856, + 38.892557094680015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.23287432989856, + 38.91761749901737 + ], + [ + -77.24214655559837, + 38.930147701186044 + ], + [ + -77.26069100699794, + 38.930147701186044 + ], + [ + -77.26996323269775, + 38.91761749901737 + ], + [ + -77.26069100699794, + 38.90508729684869 + ], + [ + -77.24214655559837, + 38.90508729684869 + ], + [ + -77.23287432989856, + 38.91761749901737 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.23287432989856, + 38.94267790335472 + ], + [ + -77.24214655559837, + 38.9552081055234 + ], + [ + -77.26069100699794, + 38.9552081055234 + ], + [ + -77.26996323269775, + 38.94267790335472 + ], + [ + -77.26069100699794, + 38.930147701186044 + ], + [ + -77.24214655559837, + 38.930147701186044 + ], + [ + -77.23287432989856, + 38.94267790335472 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.23287432989856, + 38.96773830769207 + ], + [ + -77.24214655559837, + 38.98026850986075 + ], + [ + -77.26069100699794, + 38.98026850986075 + ], + [ + -77.26996323269775, + 38.96773830769207 + ], + [ + -77.26069100699794, + 38.9552081055234 + ], + [ + -77.24214655559837, + 38.9552081055234 + ], + [ + -77.23287432989856, + 38.96773830769207 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.23287432989856, + 38.992798712029426 + ], + [ + -77.24214655559837, + 39.0053289141981 + ], + [ + -77.26069100699794, + 39.0053289141981 + ], + [ + -77.26996323269775, + 38.992798712029426 + ], + [ + -77.26069100699794, + 38.98026850986075 + ], + [ + -77.24214655559837, + 38.98026850986075 + ], + [ + -77.23287432989856, + 38.992798712029426 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.23287432989856, + 39.017859116366786 + ], + [ + -77.24214655559837, + 39.03038931853546 + ], + [ + -77.26069100699794, + 39.03038931853546 + ], + [ + -77.26996323269775, + 39.017859116366786 + ], + [ + -77.26069100699794, + 39.00532891419811 + ], + [ + -77.24214655559837, + 39.00532891419811 + ], + [ + -77.23287432989856, + 39.017859116366786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.20505765279918, + 38.72966446648721 + ], + [ + -77.21432987849899, + 38.742194668655884 + ], + [ + -77.23287432989856, + 38.742194668655884 + ], + [ + -77.24214655559837, + 38.72966446648721 + ], + [ + -77.23287432989856, + 38.71713426431853 + ], + [ + -77.21432987849899, + 38.71713426431853 + ], + [ + -77.20505765279918, + 38.72966446648721 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.20505765279918, + 38.75472487082456 + ], + [ + -77.21432987849899, + 38.76725507299324 + ], + [ + -77.23287432989856, + 38.76725507299324 + ], + [ + -77.24214655559837, + 38.75472487082456 + ], + [ + -77.23287432989856, + 38.742194668655884 + ], + [ + -77.21432987849899, + 38.742194668655884 + ], + [ + -77.20505765279918, + 38.75472487082456 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.20505765279918, + 38.77978527516192 + ], + [ + -77.21432987849899, + 38.7923154773306 + ], + [ + -77.23287432989856, + 38.7923154773306 + ], + [ + -77.24214655559837, + 38.77978527516192 + ], + [ + -77.23287432989856, + 38.767255072993244 + ], + [ + -77.21432987849899, + 38.767255072993244 + ], + [ + -77.20505765279918, + 38.77978527516192 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.20505765279918, + 38.80484567949927 + ], + [ + -77.21432987849899, + 38.81737588166795 + ], + [ + -77.23287432989856, + 38.81737588166795 + ], + [ + -77.24214655559837, + 38.80484567949927 + ], + [ + -77.23287432989856, + 38.7923154773306 + ], + [ + -77.21432987849899, + 38.7923154773306 + ], + [ + -77.20505765279918, + 38.80484567949927 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.20505765279918, + 38.829906083836626 + ], + [ + -77.21432987849899, + 38.8424362860053 + ], + [ + -77.23287432989856, + 38.8424362860053 + ], + [ + -77.24214655559837, + 38.829906083836626 + ], + [ + -77.23287432989856, + 38.81737588166795 + ], + [ + -77.21432987849899, + 38.81737588166795 + ], + [ + -77.20505765279918, + 38.829906083836626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.20505765279918, + 38.85496648817398 + ], + [ + -77.21432987849899, + 38.867496690342655 + ], + [ + -77.23287432989856, + 38.867496690342655 + ], + [ + -77.24214655559837, + 38.85496648817398 + ], + [ + -77.23287432989856, + 38.8424362860053 + ], + [ + -77.21432987849899, + 38.8424362860053 + ], + [ + -77.20505765279918, + 38.85496648817398 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.20505765279918, + 38.88002689251133 + ], + [ + -77.21432987849899, + 38.89255709468001 + ], + [ + -77.23287432989856, + 38.89255709468001 + ], + [ + -77.24214655559837, + 38.88002689251133 + ], + [ + -77.23287432989856, + 38.867496690342655 + ], + [ + -77.21432987849899, + 38.867496690342655 + ], + [ + -77.20505765279918, + 38.88002689251133 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.20505765279918, + 38.90508729684869 + ], + [ + -77.21432987849899, + 38.91761749901737 + ], + [ + -77.23287432989856, + 38.91761749901737 + ], + [ + -77.24214655559837, + 38.90508729684869 + ], + [ + -77.23287432989856, + 38.892557094680015 + ], + [ + -77.21432987849899, + 38.892557094680015 + ], + [ + -77.20505765279918, + 38.90508729684869 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.20505765279918, + 38.930147701186044 + ], + [ + -77.21432987849899, + 38.94267790335472 + ], + [ + -77.23287432989856, + 38.94267790335472 + ], + [ + -77.24214655559837, + 38.930147701186044 + ], + [ + -77.23287432989856, + 38.91761749901737 + ], + [ + -77.21432987849899, + 38.91761749901737 + ], + [ + -77.20505765279918, + 38.930147701186044 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.20505765279918, + 38.9552081055234 + ], + [ + -77.21432987849899, + 38.96773830769207 + ], + [ + -77.23287432989856, + 38.96773830769207 + ], + [ + -77.24214655559837, + 38.9552081055234 + ], + [ + -77.23287432989856, + 38.94267790335472 + ], + [ + -77.21432987849899, + 38.94267790335472 + ], + [ + -77.20505765279918, + 38.9552081055234 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.20505765279918, + 38.98026850986075 + ], + [ + -77.21432987849899, + 38.992798712029426 + ], + [ + -77.23287432989856, + 38.992798712029426 + ], + [ + -77.24214655559837, + 38.98026850986075 + ], + [ + -77.23287432989856, + 38.96773830769207 + ], + [ + -77.21432987849899, + 38.96773830769207 + ], + [ + -77.20505765279918, + 38.98026850986075 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.20505765279918, + 39.0053289141981 + ], + [ + -77.21432987849899, + 39.01785911636678 + ], + [ + -77.23287432989856, + 39.01785911636678 + ], + [ + -77.24214655559837, + 39.0053289141981 + ], + [ + -77.23287432989856, + 38.992798712029426 + ], + [ + -77.21432987849899, + 38.992798712029426 + ], + [ + -77.20505765279918, + 39.0053289141981 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.20505765279918, + 39.03038931853546 + ], + [ + -77.21432987849899, + 39.04291952070414 + ], + [ + -77.23287432989856, + 39.04291952070414 + ], + [ + -77.24214655559837, + 39.03038931853546 + ], + [ + -77.23287432989856, + 39.017859116366786 + ], + [ + -77.21432987849899, + 39.017859116366786 + ], + [ + -77.20505765279918, + 39.03038931853546 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.17724097569979, + 38.71713426431853 + ], + [ + -77.18651320139959, + 38.72966446648721 + ], + [ + -77.20505765279917, + 38.72966446648721 + ], + [ + -77.21432987849897, + 38.71713426431853 + ], + [ + -77.20505765279917, + 38.704604062149855 + ], + [ + -77.18651320139959, + 38.704604062149855 + ], + [ + -77.17724097569979, + 38.71713426431853 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.17724097569979, + 38.742194668655884 + ], + [ + -77.18651320139959, + 38.75472487082456 + ], + [ + -77.20505765279917, + 38.75472487082456 + ], + [ + -77.21432987849897, + 38.742194668655884 + ], + [ + -77.20505765279917, + 38.72966446648721 + ], + [ + -77.18651320139959, + 38.72966446648721 + ], + [ + -77.17724097569979, + 38.742194668655884 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.17724097569979, + 38.767255072993244 + ], + [ + -77.18651320139959, + 38.77978527516192 + ], + [ + -77.20505765279917, + 38.77978527516192 + ], + [ + -77.21432987849897, + 38.767255072993244 + ], + [ + -77.20505765279917, + 38.75472487082457 + ], + [ + -77.18651320139959, + 38.75472487082457 + ], + [ + -77.17724097569979, + 38.767255072993244 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.17724097569979, + 38.7923154773306 + ], + [ + -77.18651320139959, + 38.80484567949927 + ], + [ + -77.20505765279917, + 38.80484567949927 + ], + [ + -77.21432987849897, + 38.7923154773306 + ], + [ + -77.20505765279917, + 38.77978527516192 + ], + [ + -77.18651320139959, + 38.77978527516192 + ], + [ + -77.17724097569979, + 38.7923154773306 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.17724097569979, + 38.81737588166795 + ], + [ + -77.18651320139959, + 38.829906083836626 + ], + [ + -77.20505765279917, + 38.829906083836626 + ], + [ + -77.21432987849897, + 38.81737588166795 + ], + [ + -77.20505765279917, + 38.80484567949927 + ], + [ + -77.18651320139959, + 38.80484567949927 + ], + [ + -77.17724097569979, + 38.81737588166795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.17724097569979, + 38.8424362860053 + ], + [ + -77.18651320139959, + 38.85496648817398 + ], + [ + -77.20505765279917, + 38.85496648817398 + ], + [ + -77.21432987849897, + 38.8424362860053 + ], + [ + -77.20505765279917, + 38.829906083836626 + ], + [ + -77.18651320139959, + 38.829906083836626 + ], + [ + -77.17724097569979, + 38.8424362860053 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.17724097569979, + 38.867496690342655 + ], + [ + -77.18651320139959, + 38.88002689251133 + ], + [ + -77.20505765279917, + 38.88002689251133 + ], + [ + -77.21432987849897, + 38.867496690342655 + ], + [ + -77.20505765279917, + 38.85496648817398 + ], + [ + -77.18651320139959, + 38.85496648817398 + ], + [ + -77.17724097569979, + 38.867496690342655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.17724097569979, + 38.892557094680015 + ], + [ + -77.18651320139959, + 38.90508729684869 + ], + [ + -77.20505765279917, + 38.90508729684869 + ], + [ + -77.21432987849897, + 38.892557094680015 + ], + [ + -77.20505765279917, + 38.88002689251134 + ], + [ + -77.18651320139959, + 38.88002689251134 + ], + [ + -77.17724097569979, + 38.892557094680015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.17724097569979, + 38.91761749901737 + ], + [ + -77.18651320139959, + 38.930147701186044 + ], + [ + -77.20505765279917, + 38.930147701186044 + ], + [ + -77.21432987849897, + 38.91761749901737 + ], + [ + -77.20505765279917, + 38.90508729684869 + ], + [ + -77.18651320139959, + 38.90508729684869 + ], + [ + -77.17724097569979, + 38.91761749901737 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.17724097569979, + 38.94267790335472 + ], + [ + -77.18651320139959, + 38.9552081055234 + ], + [ + -77.20505765279917, + 38.9552081055234 + ], + [ + -77.21432987849897, + 38.94267790335472 + ], + [ + -77.20505765279917, + 38.930147701186044 + ], + [ + -77.18651320139959, + 38.930147701186044 + ], + [ + -77.17724097569979, + 38.94267790335472 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.17724097569979, + 38.96773830769207 + ], + [ + -77.18651320139959, + 38.98026850986075 + ], + [ + -77.20505765279917, + 38.98026850986075 + ], + [ + -77.21432987849897, + 38.96773830769207 + ], + [ + -77.20505765279917, + 38.9552081055234 + ], + [ + -77.18651320139959, + 38.9552081055234 + ], + [ + -77.17724097569979, + 38.96773830769207 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.17724097569979, + 38.992798712029426 + ], + [ + -77.18651320139959, + 39.0053289141981 + ], + [ + -77.20505765279917, + 39.0053289141981 + ], + [ + -77.21432987849897, + 38.992798712029426 + ], + [ + -77.20505765279917, + 38.98026850986075 + ], + [ + -77.18651320139959, + 38.98026850986075 + ], + [ + -77.17724097569979, + 38.992798712029426 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.17724097569979, + 39.017859116366786 + ], + [ + -77.18651320139959, + 39.03038931853546 + ], + [ + -77.20505765279917, + 39.03038931853546 + ], + [ + -77.21432987849897, + 39.017859116366786 + ], + [ + -77.20505765279917, + 39.00532891419811 + ], + [ + -77.18651320139959, + 39.00532891419811 + ], + [ + -77.17724097569979, + 39.017859116366786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.14942429860041, + 38.72966446648721 + ], + [ + -77.15869652430021, + 38.742194668655884 + ], + [ + -77.17724097569979, + 38.742194668655884 + ], + [ + -77.18651320139959, + 38.72966446648721 + ], + [ + -77.17724097569979, + 38.71713426431853 + ], + [ + -77.15869652430021, + 38.71713426431853 + ], + [ + -77.14942429860041, + 38.72966446648721 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.14942429860041, + 38.75472487082456 + ], + [ + -77.15869652430021, + 38.76725507299324 + ], + [ + -77.17724097569979, + 38.76725507299324 + ], + [ + -77.18651320139959, + 38.75472487082456 + ], + [ + -77.17724097569979, + 38.742194668655884 + ], + [ + -77.15869652430021, + 38.742194668655884 + ], + [ + -77.14942429860041, + 38.75472487082456 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.14942429860041, + 38.77978527516192 + ], + [ + -77.15869652430021, + 38.7923154773306 + ], + [ + -77.17724097569979, + 38.7923154773306 + ], + [ + -77.18651320139959, + 38.77978527516192 + ], + [ + -77.17724097569979, + 38.767255072993244 + ], + [ + -77.15869652430021, + 38.767255072993244 + ], + [ + -77.14942429860041, + 38.77978527516192 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.14942429860041, + 38.80484567949927 + ], + [ + -77.15869652430021, + 38.81737588166795 + ], + [ + -77.17724097569979, + 38.81737588166795 + ], + [ + -77.18651320139959, + 38.80484567949927 + ], + [ + -77.17724097569979, + 38.7923154773306 + ], + [ + -77.15869652430021, + 38.7923154773306 + ], + [ + -77.14942429860041, + 38.80484567949927 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.14942429860041, + 38.829906083836626 + ], + [ + -77.15869652430021, + 38.8424362860053 + ], + [ + -77.17724097569979, + 38.8424362860053 + ], + [ + -77.18651320139959, + 38.829906083836626 + ], + [ + -77.17724097569979, + 38.81737588166795 + ], + [ + -77.15869652430021, + 38.81737588166795 + ], + [ + -77.14942429860041, + 38.829906083836626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.14942429860041, + 38.85496648817398 + ], + [ + -77.15869652430021, + 38.867496690342655 + ], + [ + -77.17724097569979, + 38.867496690342655 + ], + [ + -77.18651320139959, + 38.85496648817398 + ], + [ + -77.17724097569979, + 38.8424362860053 + ], + [ + -77.15869652430021, + 38.8424362860053 + ], + [ + -77.14942429860041, + 38.85496648817398 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.14942429860041, + 38.88002689251133 + ], + [ + -77.15869652430021, + 38.89255709468001 + ], + [ + -77.17724097569979, + 38.89255709468001 + ], + [ + -77.18651320139959, + 38.88002689251133 + ], + [ + -77.17724097569979, + 38.867496690342655 + ], + [ + -77.15869652430021, + 38.867496690342655 + ], + [ + -77.14942429860041, + 38.88002689251133 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.14942429860041, + 38.90508729684869 + ], + [ + -77.15869652430021, + 38.91761749901737 + ], + [ + -77.17724097569979, + 38.91761749901737 + ], + [ + -77.18651320139959, + 38.90508729684869 + ], + [ + -77.17724097569979, + 38.892557094680015 + ], + [ + -77.15869652430021, + 38.892557094680015 + ], + [ + -77.14942429860041, + 38.90508729684869 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.14942429860041, + 38.930147701186044 + ], + [ + -77.15869652430021, + 38.94267790335472 + ], + [ + -77.17724097569979, + 38.94267790335472 + ], + [ + -77.18651320139959, + 38.930147701186044 + ], + [ + -77.17724097569979, + 38.91761749901737 + ], + [ + -77.15869652430021, + 38.91761749901737 + ], + [ + -77.14942429860041, + 38.930147701186044 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.14942429860041, + 38.9552081055234 + ], + [ + -77.15869652430021, + 38.96773830769207 + ], + [ + -77.17724097569979, + 38.96773830769207 + ], + [ + -77.18651320139959, + 38.9552081055234 + ], + [ + -77.17724097569979, + 38.94267790335472 + ], + [ + -77.15869652430021, + 38.94267790335472 + ], + [ + -77.14942429860041, + 38.9552081055234 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.14942429860041, + 38.98026850986075 + ], + [ + -77.15869652430021, + 38.992798712029426 + ], + [ + -77.17724097569979, + 38.992798712029426 + ], + [ + -77.18651320139959, + 38.98026850986075 + ], + [ + -77.17724097569979, + 38.96773830769207 + ], + [ + -77.15869652430021, + 38.96773830769207 + ], + [ + -77.14942429860041, + 38.98026850986075 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.14942429860041, + 39.0053289141981 + ], + [ + -77.15869652430021, + 39.01785911636678 + ], + [ + -77.17724097569979, + 39.01785911636678 + ], + [ + -77.18651320139959, + 39.0053289141981 + ], + [ + -77.17724097569979, + 38.992798712029426 + ], + [ + -77.15869652430021, + 38.992798712029426 + ], + [ + -77.14942429860041, + 39.0053289141981 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.14942429860041, + 39.03038931853546 + ], + [ + -77.15869652430021, + 39.04291952070414 + ], + [ + -77.17724097569979, + 39.04291952070414 + ], + [ + -77.18651320139959, + 39.03038931853546 + ], + [ + -77.17724097569979, + 39.017859116366786 + ], + [ + -77.15869652430021, + 39.017859116366786 + ], + [ + -77.14942429860041, + 39.03038931853546 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.12160762150103, + 38.71713426431853 + ], + [ + -77.13087984720083, + 38.72966446648721 + ], + [ + -77.14942429860041, + 38.72966446648721 + ], + [ + -77.15869652430021, + 38.71713426431853 + ], + [ + -77.14942429860041, + 38.704604062149855 + ], + [ + -77.13087984720083, + 38.704604062149855 + ], + [ + -77.12160762150103, + 38.71713426431853 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.12160762150103, + 38.742194668655884 + ], + [ + -77.13087984720083, + 38.75472487082456 + ], + [ + -77.14942429860041, + 38.75472487082456 + ], + [ + -77.15869652430021, + 38.742194668655884 + ], + [ + -77.14942429860041, + 38.72966446648721 + ], + [ + -77.13087984720083, + 38.72966446648721 + ], + [ + -77.12160762150103, + 38.742194668655884 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.12160762150103, + 38.767255072993244 + ], + [ + -77.13087984720083, + 38.77978527516192 + ], + [ + -77.14942429860041, + 38.77978527516192 + ], + [ + -77.15869652430021, + 38.767255072993244 + ], + [ + -77.14942429860041, + 38.75472487082457 + ], + [ + -77.13087984720083, + 38.75472487082457 + ], + [ + -77.12160762150103, + 38.767255072993244 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.12160762150103, + 38.7923154773306 + ], + [ + -77.13087984720083, + 38.80484567949927 + ], + [ + -77.14942429860041, + 38.80484567949927 + ], + [ + -77.15869652430021, + 38.7923154773306 + ], + [ + -77.14942429860041, + 38.77978527516192 + ], + [ + -77.13087984720083, + 38.77978527516192 + ], + [ + -77.12160762150103, + 38.7923154773306 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.12160762150103, + 38.81737588166795 + ], + [ + -77.13087984720083, + 38.829906083836626 + ], + [ + -77.14942429860041, + 38.829906083836626 + ], + [ + -77.15869652430021, + 38.81737588166795 + ], + [ + -77.14942429860041, + 38.80484567949927 + ], + [ + -77.13087984720083, + 38.80484567949927 + ], + [ + -77.12160762150103, + 38.81737588166795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.12160762150103, + 38.8424362860053 + ], + [ + -77.13087984720083, + 38.85496648817398 + ], + [ + -77.14942429860041, + 38.85496648817398 + ], + [ + -77.15869652430021, + 38.8424362860053 + ], + [ + -77.14942429860041, + 38.829906083836626 + ], + [ + -77.13087984720083, + 38.829906083836626 + ], + [ + -77.12160762150103, + 38.8424362860053 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.12160762150103, + 38.867496690342655 + ], + [ + -77.13087984720083, + 38.88002689251133 + ], + [ + -77.14942429860041, + 38.88002689251133 + ], + [ + -77.15869652430021, + 38.867496690342655 + ], + [ + -77.14942429860041, + 38.85496648817398 + ], + [ + -77.13087984720083, + 38.85496648817398 + ], + [ + -77.12160762150103, + 38.867496690342655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.12160762150103, + 38.892557094680015 + ], + [ + -77.13087984720083, + 38.90508729684869 + ], + [ + -77.14942429860041, + 38.90508729684869 + ], + [ + -77.15869652430021, + 38.892557094680015 + ], + [ + -77.14942429860041, + 38.88002689251134 + ], + [ + -77.13087984720083, + 38.88002689251134 + ], + [ + -77.12160762150103, + 38.892557094680015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.12160762150103, + 38.91761749901737 + ], + [ + -77.13087984720083, + 38.930147701186044 + ], + [ + -77.14942429860041, + 38.930147701186044 + ], + [ + -77.15869652430021, + 38.91761749901737 + ], + [ + -77.14942429860041, + 38.90508729684869 + ], + [ + -77.13087984720083, + 38.90508729684869 + ], + [ + -77.12160762150103, + 38.91761749901737 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.12160762150103, + 38.94267790335472 + ], + [ + -77.13087984720083, + 38.9552081055234 + ], + [ + -77.14942429860041, + 38.9552081055234 + ], + [ + -77.15869652430021, + 38.94267790335472 + ], + [ + -77.14942429860041, + 38.930147701186044 + ], + [ + -77.13087984720083, + 38.930147701186044 + ], + [ + -77.12160762150103, + 38.94267790335472 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.12160762150103, + 38.96773830769207 + ], + [ + -77.13087984720083, + 38.98026850986075 + ], + [ + -77.14942429860041, + 38.98026850986075 + ], + [ + -77.15869652430021, + 38.96773830769207 + ], + [ + -77.14942429860041, + 38.9552081055234 + ], + [ + -77.13087984720083, + 38.9552081055234 + ], + [ + -77.12160762150103, + 38.96773830769207 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.12160762150103, + 38.992798712029426 + ], + [ + -77.13087984720083, + 39.0053289141981 + ], + [ + -77.14942429860041, + 39.0053289141981 + ], + [ + -77.15869652430021, + 38.992798712029426 + ], + [ + -77.14942429860041, + 38.98026850986075 + ], + [ + -77.13087984720083, + 38.98026850986075 + ], + [ + -77.12160762150103, + 38.992798712029426 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.12160762150103, + 39.017859116366786 + ], + [ + -77.13087984720083, + 39.03038931853546 + ], + [ + -77.14942429860041, + 39.03038931853546 + ], + [ + -77.15869652430021, + 39.017859116366786 + ], + [ + -77.14942429860041, + 39.00532891419811 + ], + [ + -77.13087984720083, + 39.00532891419811 + ], + [ + -77.12160762150103, + 39.017859116366786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.09379094440165, + 38.72966446648721 + ], + [ + -77.10306317010145, + 38.742194668655884 + ], + [ + -77.12160762150103, + 38.742194668655884 + ], + [ + -77.13087984720083, + 38.72966446648721 + ], + [ + -77.12160762150103, + 38.71713426431853 + ], + [ + -77.10306317010145, + 38.71713426431853 + ], + [ + -77.09379094440165, + 38.72966446648721 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.09379094440165, + 38.75472487082456 + ], + [ + -77.10306317010145, + 38.76725507299324 + ], + [ + -77.12160762150103, + 38.76725507299324 + ], + [ + -77.13087984720083, + 38.75472487082456 + ], + [ + -77.12160762150103, + 38.742194668655884 + ], + [ + -77.10306317010145, + 38.742194668655884 + ], + [ + -77.09379094440165, + 38.75472487082456 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.09379094440165, + 38.77978527516192 + ], + [ + -77.10306317010145, + 38.7923154773306 + ], + [ + -77.12160762150103, + 38.7923154773306 + ], + [ + -77.13087984720083, + 38.77978527516192 + ], + [ + -77.12160762150103, + 38.767255072993244 + ], + [ + -77.10306317010145, + 38.767255072993244 + ], + [ + -77.09379094440165, + 38.77978527516192 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.09379094440165, + 38.80484567949927 + ], + [ + -77.10306317010145, + 38.81737588166795 + ], + [ + -77.12160762150103, + 38.81737588166795 + ], + [ + -77.13087984720083, + 38.80484567949927 + ], + [ + -77.12160762150103, + 38.7923154773306 + ], + [ + -77.10306317010145, + 38.7923154773306 + ], + [ + -77.09379094440165, + 38.80484567949927 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.09379094440165, + 38.829906083836626 + ], + [ + -77.10306317010145, + 38.8424362860053 + ], + [ + -77.12160762150103, + 38.8424362860053 + ], + [ + -77.13087984720083, + 38.829906083836626 + ], + [ + -77.12160762150103, + 38.81737588166795 + ], + [ + -77.10306317010145, + 38.81737588166795 + ], + [ + -77.09379094440165, + 38.829906083836626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.09379094440165, + 38.85496648817398 + ], + [ + -77.10306317010145, + 38.867496690342655 + ], + [ + -77.12160762150103, + 38.867496690342655 + ], + [ + -77.13087984720083, + 38.85496648817398 + ], + [ + -77.12160762150103, + 38.8424362860053 + ], + [ + -77.10306317010145, + 38.8424362860053 + ], + [ + -77.09379094440165, + 38.85496648817398 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.09379094440165, + 38.88002689251133 + ], + [ + -77.10306317010145, + 38.89255709468001 + ], + [ + -77.12160762150103, + 38.89255709468001 + ], + [ + -77.13087984720083, + 38.88002689251133 + ], + [ + -77.12160762150103, + 38.867496690342655 + ], + [ + -77.10306317010145, + 38.867496690342655 + ], + [ + -77.09379094440165, + 38.88002689251133 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.09379094440165, + 38.90508729684869 + ], + [ + -77.10306317010145, + 38.91761749901737 + ], + [ + -77.12160762150103, + 38.91761749901737 + ], + [ + -77.13087984720083, + 38.90508729684869 + ], + [ + -77.12160762150103, + 38.892557094680015 + ], + [ + -77.10306317010145, + 38.892557094680015 + ], + [ + -77.09379094440165, + 38.90508729684869 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.09379094440165, + 38.930147701186044 + ], + [ + -77.10306317010145, + 38.94267790335472 + ], + [ + -77.12160762150103, + 38.94267790335472 + ], + [ + -77.13087984720083, + 38.930147701186044 + ], + [ + -77.12160762150103, + 38.91761749901737 + ], + [ + -77.10306317010145, + 38.91761749901737 + ], + [ + -77.09379094440165, + 38.930147701186044 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.09379094440165, + 38.9552081055234 + ], + [ + -77.10306317010145, + 38.96773830769207 + ], + [ + -77.12160762150103, + 38.96773830769207 + ], + [ + -77.13087984720083, + 38.9552081055234 + ], + [ + -77.12160762150103, + 38.94267790335472 + ], + [ + -77.10306317010145, + 38.94267790335472 + ], + [ + -77.09379094440165, + 38.9552081055234 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.09379094440165, + 38.98026850986075 + ], + [ + -77.10306317010145, + 38.992798712029426 + ], + [ + -77.12160762150103, + 38.992798712029426 + ], + [ + -77.13087984720083, + 38.98026850986075 + ], + [ + -77.12160762150103, + 38.96773830769207 + ], + [ + -77.10306317010145, + 38.96773830769207 + ], + [ + -77.09379094440165, + 38.98026850986075 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.09379094440165, + 39.0053289141981 + ], + [ + -77.10306317010145, + 39.01785911636678 + ], + [ + -77.12160762150103, + 39.01785911636678 + ], + [ + -77.13087984720083, + 39.0053289141981 + ], + [ + -77.12160762150103, + 38.992798712029426 + ], + [ + -77.10306317010145, + 38.992798712029426 + ], + [ + -77.09379094440165, + 39.0053289141981 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.09379094440165, + 39.03038931853546 + ], + [ + -77.10306317010145, + 39.04291952070414 + ], + [ + -77.12160762150103, + 39.04291952070414 + ], + [ + -77.13087984720083, + 39.03038931853546 + ], + [ + -77.12160762150103, + 39.017859116366786 + ], + [ + -77.10306317010145, + 39.017859116366786 + ], + [ + -77.09379094440165, + 39.03038931853546 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.06597426730227, + 38.71713426431853 + ], + [ + -77.07524649300207, + 38.72966446648721 + ], + [ + -77.09379094440165, + 38.72966446648721 + ], + [ + -77.10306317010145, + 38.71713426431853 + ], + [ + -77.09379094440165, + 38.704604062149855 + ], + [ + -77.07524649300207, + 38.704604062149855 + ], + [ + -77.06597426730227, + 38.71713426431853 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.06597426730227, + 38.742194668655884 + ], + [ + -77.07524649300207, + 38.75472487082456 + ], + [ + -77.09379094440165, + 38.75472487082456 + ], + [ + -77.10306317010145, + 38.742194668655884 + ], + [ + -77.09379094440165, + 38.72966446648721 + ], + [ + -77.07524649300207, + 38.72966446648721 + ], + [ + -77.06597426730227, + 38.742194668655884 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.06597426730227, + 38.767255072993244 + ], + [ + -77.07524649300207, + 38.77978527516192 + ], + [ + -77.09379094440165, + 38.77978527516192 + ], + [ + -77.10306317010145, + 38.767255072993244 + ], + [ + -77.09379094440165, + 38.75472487082457 + ], + [ + -77.07524649300207, + 38.75472487082457 + ], + [ + -77.06597426730227, + 38.767255072993244 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.06597426730227, + 38.7923154773306 + ], + [ + -77.07524649300207, + 38.80484567949927 + ], + [ + -77.09379094440165, + 38.80484567949927 + ], + [ + -77.10306317010145, + 38.7923154773306 + ], + [ + -77.09379094440165, + 38.77978527516192 + ], + [ + -77.07524649300207, + 38.77978527516192 + ], + [ + -77.06597426730227, + 38.7923154773306 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.06597426730227, + 38.81737588166795 + ], + [ + -77.07524649300207, + 38.829906083836626 + ], + [ + -77.09379094440165, + 38.829906083836626 + ], + [ + -77.10306317010145, + 38.81737588166795 + ], + [ + -77.09379094440165, + 38.80484567949927 + ], + [ + -77.07524649300207, + 38.80484567949927 + ], + [ + -77.06597426730227, + 38.81737588166795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.06597426730227, + 38.8424362860053 + ], + [ + -77.07524649300207, + 38.85496648817398 + ], + [ + -77.09379094440165, + 38.85496648817398 + ], + [ + -77.10306317010145, + 38.8424362860053 + ], + [ + -77.09379094440165, + 38.829906083836626 + ], + [ + -77.07524649300207, + 38.829906083836626 + ], + [ + -77.06597426730227, + 38.8424362860053 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.06597426730227, + 38.867496690342655 + ], + [ + -77.07524649300207, + 38.88002689251133 + ], + [ + -77.09379094440165, + 38.88002689251133 + ], + [ + -77.10306317010145, + 38.867496690342655 + ], + [ + -77.09379094440165, + 38.85496648817398 + ], + [ + -77.07524649300207, + 38.85496648817398 + ], + [ + -77.06597426730227, + 38.867496690342655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.06597426730227, + 38.892557094680015 + ], + [ + -77.07524649300207, + 38.90508729684869 + ], + [ + -77.09379094440165, + 38.90508729684869 + ], + [ + -77.10306317010145, + 38.892557094680015 + ], + [ + -77.09379094440165, + 38.88002689251134 + ], + [ + -77.07524649300207, + 38.88002689251134 + ], + [ + -77.06597426730227, + 38.892557094680015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.06597426730227, + 38.91761749901737 + ], + [ + -77.07524649300207, + 38.930147701186044 + ], + [ + -77.09379094440165, + 38.930147701186044 + ], + [ + -77.10306317010145, + 38.91761749901737 + ], + [ + -77.09379094440165, + 38.90508729684869 + ], + [ + -77.07524649300207, + 38.90508729684869 + ], + [ + -77.06597426730227, + 38.91761749901737 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.06597426730227, + 38.94267790335472 + ], + [ + -77.07524649300207, + 38.9552081055234 + ], + [ + -77.09379094440165, + 38.9552081055234 + ], + [ + -77.10306317010145, + 38.94267790335472 + ], + [ + -77.09379094440165, + 38.930147701186044 + ], + [ + -77.07524649300207, + 38.930147701186044 + ], + [ + -77.06597426730227, + 38.94267790335472 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.06597426730227, + 38.96773830769207 + ], + [ + -77.07524649300207, + 38.98026850986075 + ], + [ + -77.09379094440165, + 38.98026850986075 + ], + [ + -77.10306317010145, + 38.96773830769207 + ], + [ + -77.09379094440165, + 38.9552081055234 + ], + [ + -77.07524649300207, + 38.9552081055234 + ], + [ + -77.06597426730227, + 38.96773830769207 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.06597426730227, + 38.992798712029426 + ], + [ + -77.07524649300207, + 39.0053289141981 + ], + [ + -77.09379094440165, + 39.0053289141981 + ], + [ + -77.10306317010145, + 38.992798712029426 + ], + [ + -77.09379094440165, + 38.98026850986075 + ], + [ + -77.07524649300207, + 38.98026850986075 + ], + [ + -77.06597426730227, + 38.992798712029426 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.06597426730227, + 39.017859116366786 + ], + [ + -77.07524649300207, + 39.03038931853546 + ], + [ + -77.09379094440165, + 39.03038931853546 + ], + [ + -77.10306317010145, + 39.017859116366786 + ], + [ + -77.09379094440165, + 39.00532891419811 + ], + [ + -77.07524649300207, + 39.00532891419811 + ], + [ + -77.06597426730227, + 39.017859116366786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.03815759020289, + 38.72966446648721 + ], + [ + -77.04742981590269, + 38.742194668655884 + ], + [ + -77.06597426730227, + 38.742194668655884 + ], + [ + -77.07524649300207, + 38.72966446648721 + ], + [ + -77.06597426730227, + 38.71713426431853 + ], + [ + -77.04742981590269, + 38.71713426431853 + ], + [ + -77.03815759020289, + 38.72966446648721 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.03815759020289, + 38.75472487082456 + ], + [ + -77.04742981590269, + 38.76725507299324 + ], + [ + -77.06597426730227, + 38.76725507299324 + ], + [ + -77.07524649300207, + 38.75472487082456 + ], + [ + -77.06597426730227, + 38.742194668655884 + ], + [ + -77.04742981590269, + 38.742194668655884 + ], + [ + -77.03815759020289, + 38.75472487082456 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.03815759020289, + 38.77978527516192 + ], + [ + -77.04742981590269, + 38.7923154773306 + ], + [ + -77.06597426730227, + 38.7923154773306 + ], + [ + -77.07524649300207, + 38.77978527516192 + ], + [ + -77.06597426730227, + 38.767255072993244 + ], + [ + -77.04742981590269, + 38.767255072993244 + ], + [ + -77.03815759020289, + 38.77978527516192 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.03815759020289, + 38.80484567949927 + ], + [ + -77.04742981590269, + 38.81737588166795 + ], + [ + -77.06597426730227, + 38.81737588166795 + ], + [ + -77.07524649300207, + 38.80484567949927 + ], + [ + -77.06597426730227, + 38.7923154773306 + ], + [ + -77.04742981590269, + 38.7923154773306 + ], + [ + -77.03815759020289, + 38.80484567949927 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.03815759020289, + 38.829906083836626 + ], + [ + -77.04742981590269, + 38.8424362860053 + ], + [ + -77.06597426730227, + 38.8424362860053 + ], + [ + -77.07524649300207, + 38.829906083836626 + ], + [ + -77.06597426730227, + 38.81737588166795 + ], + [ + -77.04742981590269, + 38.81737588166795 + ], + [ + -77.03815759020289, + 38.829906083836626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.03815759020289, + 38.85496648817398 + ], + [ + -77.04742981590269, + 38.867496690342655 + ], + [ + -77.06597426730227, + 38.867496690342655 + ], + [ + -77.07524649300207, + 38.85496648817398 + ], + [ + -77.06597426730227, + 38.8424362860053 + ], + [ + -77.04742981590269, + 38.8424362860053 + ], + [ + -77.03815759020289, + 38.85496648817398 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.03815759020289, + 38.88002689251133 + ], + [ + -77.04742981590269, + 38.89255709468001 + ], + [ + -77.06597426730227, + 38.89255709468001 + ], + [ + -77.07524649300207, + 38.88002689251133 + ], + [ + -77.06597426730227, + 38.867496690342655 + ], + [ + -77.04742981590269, + 38.867496690342655 + ], + [ + -77.03815759020289, + 38.88002689251133 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.03815759020289, + 38.90508729684869 + ], + [ + -77.04742981590269, + 38.91761749901737 + ], + [ + -77.06597426730227, + 38.91761749901737 + ], + [ + -77.07524649300207, + 38.90508729684869 + ], + [ + -77.06597426730227, + 38.892557094680015 + ], + [ + -77.04742981590269, + 38.892557094680015 + ], + [ + -77.03815759020289, + 38.90508729684869 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.03815759020289, + 38.930147701186044 + ], + [ + -77.04742981590269, + 38.94267790335472 + ], + [ + -77.06597426730227, + 38.94267790335472 + ], + [ + -77.07524649300207, + 38.930147701186044 + ], + [ + -77.06597426730227, + 38.91761749901737 + ], + [ + -77.04742981590269, + 38.91761749901737 + ], + [ + -77.03815759020289, + 38.930147701186044 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.03815759020289, + 38.9552081055234 + ], + [ + -77.04742981590269, + 38.96773830769207 + ], + [ + -77.06597426730227, + 38.96773830769207 + ], + [ + -77.07524649300207, + 38.9552081055234 + ], + [ + -77.06597426730227, + 38.94267790335472 + ], + [ + -77.04742981590269, + 38.94267790335472 + ], + [ + -77.03815759020289, + 38.9552081055234 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.03815759020289, + 38.98026850986075 + ], + [ + -77.04742981590269, + 38.992798712029426 + ], + [ + -77.06597426730227, + 38.992798712029426 + ], + [ + -77.07524649300207, + 38.98026850986075 + ], + [ + -77.06597426730227, + 38.96773830769207 + ], + [ + -77.04742981590269, + 38.96773830769207 + ], + [ + -77.03815759020289, + 38.98026850986075 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.03815759020289, + 39.0053289141981 + ], + [ + -77.04742981590269, + 39.01785911636678 + ], + [ + -77.06597426730227, + 39.01785911636678 + ], + [ + -77.07524649300207, + 39.0053289141981 + ], + [ + -77.06597426730227, + 38.992798712029426 + ], + [ + -77.04742981590269, + 38.992798712029426 + ], + [ + -77.03815759020289, + 39.0053289141981 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.03815759020289, + 39.03038931853546 + ], + [ + -77.04742981590269, + 39.04291952070414 + ], + [ + -77.06597426730227, + 39.04291952070414 + ], + [ + -77.07524649300207, + 39.03038931853546 + ], + [ + -77.06597426730227, + 39.017859116366786 + ], + [ + -77.04742981590269, + 39.017859116366786 + ], + [ + -77.03815759020289, + 39.03038931853546 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.0103409131035, + 38.71713426431853 + ], + [ + -77.01961313880331, + 38.72966446648721 + ], + [ + -77.03815759020289, + 38.72966446648721 + ], + [ + -77.04742981590269, + 38.71713426431853 + ], + [ + -77.03815759020289, + 38.704604062149855 + ], + [ + -77.01961313880331, + 38.704604062149855 + ], + [ + -77.0103409131035, + 38.71713426431853 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.0103409131035, + 38.742194668655884 + ], + [ + -77.01961313880331, + 38.75472487082456 + ], + [ + -77.03815759020289, + 38.75472487082456 + ], + [ + -77.04742981590269, + 38.742194668655884 + ], + [ + -77.03815759020289, + 38.72966446648721 + ], + [ + -77.01961313880331, + 38.72966446648721 + ], + [ + -77.0103409131035, + 38.742194668655884 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.0103409131035, + 38.767255072993244 + ], + [ + -77.01961313880331, + 38.77978527516192 + ], + [ + -77.03815759020289, + 38.77978527516192 + ], + [ + -77.04742981590269, + 38.767255072993244 + ], + [ + -77.03815759020289, + 38.75472487082457 + ], + [ + -77.01961313880331, + 38.75472487082457 + ], + [ + -77.0103409131035, + 38.767255072993244 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.0103409131035, + 38.7923154773306 + ], + [ + -77.01961313880331, + 38.80484567949927 + ], + [ + -77.03815759020289, + 38.80484567949927 + ], + [ + -77.04742981590269, + 38.7923154773306 + ], + [ + -77.03815759020289, + 38.77978527516192 + ], + [ + -77.01961313880331, + 38.77978527516192 + ], + [ + -77.0103409131035, + 38.7923154773306 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.0103409131035, + 38.81737588166795 + ], + [ + -77.01961313880331, + 38.829906083836626 + ], + [ + -77.03815759020289, + 38.829906083836626 + ], + [ + -77.04742981590269, + 38.81737588166795 + ], + [ + -77.03815759020289, + 38.80484567949927 + ], + [ + -77.01961313880331, + 38.80484567949927 + ], + [ + -77.0103409131035, + 38.81737588166795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.0103409131035, + 38.8424362860053 + ], + [ + -77.01961313880331, + 38.85496648817398 + ], + [ + -77.03815759020289, + 38.85496648817398 + ], + [ + -77.04742981590269, + 38.8424362860053 + ], + [ + -77.03815759020289, + 38.829906083836626 + ], + [ + -77.01961313880331, + 38.829906083836626 + ], + [ + -77.0103409131035, + 38.8424362860053 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.0103409131035, + 38.867496690342655 + ], + [ + -77.01961313880331, + 38.88002689251133 + ], + [ + -77.03815759020289, + 38.88002689251133 + ], + [ + -77.04742981590269, + 38.867496690342655 + ], + [ + -77.03815759020289, + 38.85496648817398 + ], + [ + -77.01961313880331, + 38.85496648817398 + ], + [ + -77.0103409131035, + 38.867496690342655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.0103409131035, + 38.892557094680015 + ], + [ + -77.01961313880331, + 38.90508729684869 + ], + [ + -77.03815759020289, + 38.90508729684869 + ], + [ + -77.04742981590269, + 38.892557094680015 + ], + [ + -77.03815759020289, + 38.88002689251134 + ], + [ + -77.01961313880331, + 38.88002689251134 + ], + [ + -77.0103409131035, + 38.892557094680015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.0103409131035, + 38.91761749901737 + ], + [ + -77.01961313880331, + 38.930147701186044 + ], + [ + -77.03815759020289, + 38.930147701186044 + ], + [ + -77.04742981590269, + 38.91761749901737 + ], + [ + -77.03815759020289, + 38.90508729684869 + ], + [ + -77.01961313880331, + 38.90508729684869 + ], + [ + -77.0103409131035, + 38.91761749901737 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.0103409131035, + 38.94267790335472 + ], + [ + -77.01961313880331, + 38.9552081055234 + ], + [ + -77.03815759020289, + 38.9552081055234 + ], + [ + -77.04742981590269, + 38.94267790335472 + ], + [ + -77.03815759020289, + 38.930147701186044 + ], + [ + -77.01961313880331, + 38.930147701186044 + ], + [ + -77.0103409131035, + 38.94267790335472 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.0103409131035, + 38.96773830769207 + ], + [ + -77.01961313880331, + 38.98026850986075 + ], + [ + -77.03815759020289, + 38.98026850986075 + ], + [ + -77.04742981590269, + 38.96773830769207 + ], + [ + -77.03815759020289, + 38.9552081055234 + ], + [ + -77.01961313880331, + 38.9552081055234 + ], + [ + -77.0103409131035, + 38.96773830769207 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.0103409131035, + 38.992798712029426 + ], + [ + -77.01961313880331, + 39.0053289141981 + ], + [ + -77.03815759020289, + 39.0053289141981 + ], + [ + -77.04742981590269, + 38.992798712029426 + ], + [ + -77.03815759020289, + 38.98026850986075 + ], + [ + -77.01961313880331, + 38.98026850986075 + ], + [ + -77.0103409131035, + 38.992798712029426 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.0103409131035, + 39.017859116366786 + ], + [ + -77.01961313880331, + 39.03038931853546 + ], + [ + -77.03815759020289, + 39.03038931853546 + ], + [ + -77.04742981590269, + 39.017859116366786 + ], + [ + -77.03815759020289, + 39.00532891419811 + ], + [ + -77.01961313880331, + 39.00532891419811 + ], + [ + -77.0103409131035, + 39.017859116366786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.98252423600412, + 38.72966446648721 + ], + [ + -76.99179646170393, + 38.742194668655884 + ], + [ + -77.0103409131035, + 38.742194668655884 + ], + [ + -77.01961313880331, + 38.72966446648721 + ], + [ + -77.0103409131035, + 38.71713426431853 + ], + [ + -76.99179646170393, + 38.71713426431853 + ], + [ + -76.98252423600412, + 38.72966446648721 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.98252423600412, + 38.75472487082456 + ], + [ + -76.99179646170393, + 38.76725507299324 + ], + [ + -77.0103409131035, + 38.76725507299324 + ], + [ + -77.01961313880331, + 38.75472487082456 + ], + [ + -77.0103409131035, + 38.742194668655884 + ], + [ + -76.99179646170393, + 38.742194668655884 + ], + [ + -76.98252423600412, + 38.75472487082456 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.98252423600412, + 38.77978527516192 + ], + [ + -76.99179646170393, + 38.7923154773306 + ], + [ + -77.0103409131035, + 38.7923154773306 + ], + [ + -77.01961313880331, + 38.77978527516192 + ], + [ + -77.0103409131035, + 38.767255072993244 + ], + [ + -76.99179646170393, + 38.767255072993244 + ], + [ + -76.98252423600412, + 38.77978527516192 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.98252423600412, + 38.80484567949927 + ], + [ + -76.99179646170393, + 38.81737588166795 + ], + [ + -77.0103409131035, + 38.81737588166795 + ], + [ + -77.01961313880331, + 38.80484567949927 + ], + [ + -77.0103409131035, + 38.7923154773306 + ], + [ + -76.99179646170393, + 38.7923154773306 + ], + [ + -76.98252423600412, + 38.80484567949927 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.98252423600412, + 38.829906083836626 + ], + [ + -76.99179646170393, + 38.8424362860053 + ], + [ + -77.0103409131035, + 38.8424362860053 + ], + [ + -77.01961313880331, + 38.829906083836626 + ], + [ + -77.0103409131035, + 38.81737588166795 + ], + [ + -76.99179646170393, + 38.81737588166795 + ], + [ + -76.98252423600412, + 38.829906083836626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.98252423600412, + 38.85496648817398 + ], + [ + -76.99179646170393, + 38.867496690342655 + ], + [ + -77.0103409131035, + 38.867496690342655 + ], + [ + -77.01961313880331, + 38.85496648817398 + ], + [ + -77.0103409131035, + 38.8424362860053 + ], + [ + -76.99179646170393, + 38.8424362860053 + ], + [ + -76.98252423600412, + 38.85496648817398 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.98252423600412, + 38.88002689251133 + ], + [ + -76.99179646170393, + 38.89255709468001 + ], + [ + -77.0103409131035, + 38.89255709468001 + ], + [ + -77.01961313880331, + 38.88002689251133 + ], + [ + -77.0103409131035, + 38.867496690342655 + ], + [ + -76.99179646170393, + 38.867496690342655 + ], + [ + -76.98252423600412, + 38.88002689251133 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.98252423600412, + 38.90508729684869 + ], + [ + -76.99179646170393, + 38.91761749901737 + ], + [ + -77.0103409131035, + 38.91761749901737 + ], + [ + -77.01961313880331, + 38.90508729684869 + ], + [ + -77.0103409131035, + 38.892557094680015 + ], + [ + -76.99179646170393, + 38.892557094680015 + ], + [ + -76.98252423600412, + 38.90508729684869 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.98252423600412, + 38.930147701186044 + ], + [ + -76.99179646170393, + 38.94267790335472 + ], + [ + -77.0103409131035, + 38.94267790335472 + ], + [ + -77.01961313880331, + 38.930147701186044 + ], + [ + -77.0103409131035, + 38.91761749901737 + ], + [ + -76.99179646170393, + 38.91761749901737 + ], + [ + -76.98252423600412, + 38.930147701186044 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.98252423600412, + 38.9552081055234 + ], + [ + -76.99179646170393, + 38.96773830769207 + ], + [ + -77.0103409131035, + 38.96773830769207 + ], + [ + -77.01961313880331, + 38.9552081055234 + ], + [ + -77.0103409131035, + 38.94267790335472 + ], + [ + -76.99179646170393, + 38.94267790335472 + ], + [ + -76.98252423600412, + 38.9552081055234 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.98252423600412, + 38.98026850986075 + ], + [ + -76.99179646170393, + 38.992798712029426 + ], + [ + -77.0103409131035, + 38.992798712029426 + ], + [ + -77.01961313880331, + 38.98026850986075 + ], + [ + -77.0103409131035, + 38.96773830769207 + ], + [ + -76.99179646170393, + 38.96773830769207 + ], + [ + -76.98252423600412, + 38.98026850986075 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.98252423600412, + 39.0053289141981 + ], + [ + -76.99179646170393, + 39.01785911636678 + ], + [ + -77.0103409131035, + 39.01785911636678 + ], + [ + -77.01961313880331, + 39.0053289141981 + ], + [ + -77.0103409131035, + 38.992798712029426 + ], + [ + -76.99179646170393, + 38.992798712029426 + ], + [ + -76.98252423600412, + 39.0053289141981 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.98252423600412, + 39.03038931853546 + ], + [ + -76.99179646170393, + 39.04291952070414 + ], + [ + -77.0103409131035, + 39.04291952070414 + ], + [ + -77.01961313880331, + 39.03038931853546 + ], + [ + -77.0103409131035, + 39.017859116366786 + ], + [ + -76.99179646170393, + 39.017859116366786 + ], + [ + -76.98252423600412, + 39.03038931853546 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.95470755890474, + 38.71713426431853 + ], + [ + -76.96397978460455, + 38.72966446648721 + ], + [ + -76.98252423600412, + 38.72966446648721 + ], + [ + -76.99179646170393, + 38.71713426431853 + ], + [ + -76.98252423600412, + 38.704604062149855 + ], + [ + -76.96397978460455, + 38.704604062149855 + ], + [ + -76.95470755890474, + 38.71713426431853 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.95470755890474, + 38.742194668655884 + ], + [ + -76.96397978460455, + 38.75472487082456 + ], + [ + -76.98252423600412, + 38.75472487082456 + ], + [ + -76.99179646170393, + 38.742194668655884 + ], + [ + -76.98252423600412, + 38.72966446648721 + ], + [ + -76.96397978460455, + 38.72966446648721 + ], + [ + -76.95470755890474, + 38.742194668655884 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.95470755890474, + 38.767255072993244 + ], + [ + -76.96397978460455, + 38.77978527516192 + ], + [ + -76.98252423600412, + 38.77978527516192 + ], + [ + -76.99179646170393, + 38.767255072993244 + ], + [ + -76.98252423600412, + 38.75472487082457 + ], + [ + -76.96397978460455, + 38.75472487082457 + ], + [ + -76.95470755890474, + 38.767255072993244 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.95470755890474, + 38.7923154773306 + ], + [ + -76.96397978460455, + 38.80484567949927 + ], + [ + -76.98252423600412, + 38.80484567949927 + ], + [ + -76.99179646170393, + 38.7923154773306 + ], + [ + -76.98252423600412, + 38.77978527516192 + ], + [ + -76.96397978460455, + 38.77978527516192 + ], + [ + -76.95470755890474, + 38.7923154773306 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.95470755890474, + 38.81737588166795 + ], + [ + -76.96397978460455, + 38.829906083836626 + ], + [ + -76.98252423600412, + 38.829906083836626 + ], + [ + -76.99179646170393, + 38.81737588166795 + ], + [ + -76.98252423600412, + 38.80484567949927 + ], + [ + -76.96397978460455, + 38.80484567949927 + ], + [ + -76.95470755890474, + 38.81737588166795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.95470755890474, + 38.8424362860053 + ], + [ + -76.96397978460455, + 38.85496648817398 + ], + [ + -76.98252423600412, + 38.85496648817398 + ], + [ + -76.99179646170393, + 38.8424362860053 + ], + [ + -76.98252423600412, + 38.829906083836626 + ], + [ + -76.96397978460455, + 38.829906083836626 + ], + [ + -76.95470755890474, + 38.8424362860053 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.95470755890474, + 38.867496690342655 + ], + [ + -76.96397978460455, + 38.88002689251133 + ], + [ + -76.98252423600412, + 38.88002689251133 + ], + [ + -76.99179646170393, + 38.867496690342655 + ], + [ + -76.98252423600412, + 38.85496648817398 + ], + [ + -76.96397978460455, + 38.85496648817398 + ], + [ + -76.95470755890474, + 38.867496690342655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.95470755890474, + 38.892557094680015 + ], + [ + -76.96397978460455, + 38.90508729684869 + ], + [ + -76.98252423600412, + 38.90508729684869 + ], + [ + -76.99179646170393, + 38.892557094680015 + ], + [ + -76.98252423600412, + 38.88002689251134 + ], + [ + -76.96397978460455, + 38.88002689251134 + ], + [ + -76.95470755890474, + 38.892557094680015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.95470755890474, + 38.91761749901737 + ], + [ + -76.96397978460455, + 38.930147701186044 + ], + [ + -76.98252423600412, + 38.930147701186044 + ], + [ + -76.99179646170393, + 38.91761749901737 + ], + [ + -76.98252423600412, + 38.90508729684869 + ], + [ + -76.96397978460455, + 38.90508729684869 + ], + [ + -76.95470755890474, + 38.91761749901737 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.95470755890474, + 38.94267790335472 + ], + [ + -76.96397978460455, + 38.9552081055234 + ], + [ + -76.98252423600412, + 38.9552081055234 + ], + [ + -76.99179646170393, + 38.94267790335472 + ], + [ + -76.98252423600412, + 38.930147701186044 + ], + [ + -76.96397978460455, + 38.930147701186044 + ], + [ + -76.95470755890474, + 38.94267790335472 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.95470755890474, + 38.96773830769207 + ], + [ + -76.96397978460455, + 38.98026850986075 + ], + [ + -76.98252423600412, + 38.98026850986075 + ], + [ + -76.99179646170393, + 38.96773830769207 + ], + [ + -76.98252423600412, + 38.9552081055234 + ], + [ + -76.96397978460455, + 38.9552081055234 + ], + [ + -76.95470755890474, + 38.96773830769207 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.95470755890474, + 38.992798712029426 + ], + [ + -76.96397978460455, + 39.0053289141981 + ], + [ + -76.98252423600412, + 39.0053289141981 + ], + [ + -76.99179646170393, + 38.992798712029426 + ], + [ + -76.98252423600412, + 38.98026850986075 + ], + [ + -76.96397978460455, + 38.98026850986075 + ], + [ + -76.95470755890474, + 38.992798712029426 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.95470755890474, + 39.017859116366786 + ], + [ + -76.96397978460455, + 39.03038931853546 + ], + [ + -76.98252423600412, + 39.03038931853546 + ], + [ + -76.99179646170393, + 39.017859116366786 + ], + [ + -76.98252423600412, + 39.00532891419811 + ], + [ + -76.96397978460455, + 39.00532891419811 + ], + [ + -76.95470755890474, + 39.017859116366786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.92689088180536, + 38.72966446648721 + ], + [ + -76.93616310750517, + 38.742194668655884 + ], + [ + -76.95470755890474, + 38.742194668655884 + ], + [ + -76.96397978460455, + 38.72966446648721 + ], + [ + -76.95470755890474, + 38.71713426431853 + ], + [ + -76.93616310750517, + 38.71713426431853 + ], + [ + -76.92689088180536, + 38.72966446648721 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.92689088180536, + 38.75472487082456 + ], + [ + -76.93616310750517, + 38.76725507299324 + ], + [ + -76.95470755890474, + 38.76725507299324 + ], + [ + -76.96397978460455, + 38.75472487082456 + ], + [ + -76.95470755890474, + 38.742194668655884 + ], + [ + -76.93616310750517, + 38.742194668655884 + ], + [ + -76.92689088180536, + 38.75472487082456 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.92689088180536, + 38.77978527516192 + ], + [ + -76.93616310750517, + 38.7923154773306 + ], + [ + -76.95470755890474, + 38.7923154773306 + ], + [ + -76.96397978460455, + 38.77978527516192 + ], + [ + -76.95470755890474, + 38.767255072993244 + ], + [ + -76.93616310750517, + 38.767255072993244 + ], + [ + -76.92689088180536, + 38.77978527516192 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.92689088180536, + 38.80484567949927 + ], + [ + -76.93616310750517, + 38.81737588166795 + ], + [ + -76.95470755890474, + 38.81737588166795 + ], + [ + -76.96397978460455, + 38.80484567949927 + ], + [ + -76.95470755890474, + 38.7923154773306 + ], + [ + -76.93616310750517, + 38.7923154773306 + ], + [ + -76.92689088180536, + 38.80484567949927 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.92689088180536, + 38.829906083836626 + ], + [ + -76.93616310750517, + 38.8424362860053 + ], + [ + -76.95470755890474, + 38.8424362860053 + ], + [ + -76.96397978460455, + 38.829906083836626 + ], + [ + -76.95470755890474, + 38.81737588166795 + ], + [ + -76.93616310750517, + 38.81737588166795 + ], + [ + -76.92689088180536, + 38.829906083836626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.92689088180536, + 38.85496648817398 + ], + [ + -76.93616310750517, + 38.867496690342655 + ], + [ + -76.95470755890474, + 38.867496690342655 + ], + [ + -76.96397978460455, + 38.85496648817398 + ], + [ + -76.95470755890474, + 38.8424362860053 + ], + [ + -76.93616310750517, + 38.8424362860053 + ], + [ + -76.92689088180536, + 38.85496648817398 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.92689088180536, + 38.88002689251133 + ], + [ + -76.93616310750517, + 38.89255709468001 + ], + [ + -76.95470755890474, + 38.89255709468001 + ], + [ + -76.96397978460455, + 38.88002689251133 + ], + [ + -76.95470755890474, + 38.867496690342655 + ], + [ + -76.93616310750517, + 38.867496690342655 + ], + [ + -76.92689088180536, + 38.88002689251133 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.92689088180536, + 38.90508729684869 + ], + [ + -76.93616310750517, + 38.91761749901737 + ], + [ + -76.95470755890474, + 38.91761749901737 + ], + [ + -76.96397978460455, + 38.90508729684869 + ], + [ + -76.95470755890474, + 38.892557094680015 + ], + [ + -76.93616310750517, + 38.892557094680015 + ], + [ + -76.92689088180536, + 38.90508729684869 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.92689088180536, + 38.930147701186044 + ], + [ + -76.93616310750517, + 38.94267790335472 + ], + [ + -76.95470755890474, + 38.94267790335472 + ], + [ + -76.96397978460455, + 38.930147701186044 + ], + [ + -76.95470755890474, + 38.91761749901737 + ], + [ + -76.93616310750517, + 38.91761749901737 + ], + [ + -76.92689088180536, + 38.930147701186044 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.92689088180536, + 38.9552081055234 + ], + [ + -76.93616310750517, + 38.96773830769207 + ], + [ + -76.95470755890474, + 38.96773830769207 + ], + [ + -76.96397978460455, + 38.9552081055234 + ], + [ + -76.95470755890474, + 38.94267790335472 + ], + [ + -76.93616310750517, + 38.94267790335472 + ], + [ + -76.92689088180536, + 38.9552081055234 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.92689088180536, + 38.98026850986075 + ], + [ + -76.93616310750517, + 38.992798712029426 + ], + [ + -76.95470755890474, + 38.992798712029426 + ], + [ + -76.96397978460455, + 38.98026850986075 + ], + [ + -76.95470755890474, + 38.96773830769207 + ], + [ + -76.93616310750517, + 38.96773830769207 + ], + [ + -76.92689088180536, + 38.98026850986075 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.92689088180536, + 39.0053289141981 + ], + [ + -76.93616310750517, + 39.01785911636678 + ], + [ + -76.95470755890474, + 39.01785911636678 + ], + [ + -76.96397978460455, + 39.0053289141981 + ], + [ + -76.95470755890474, + 38.992798712029426 + ], + [ + -76.93616310750517, + 38.992798712029426 + ], + [ + -76.92689088180536, + 39.0053289141981 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.92689088180536, + 39.03038931853546 + ], + [ + -76.93616310750517, + 39.04291952070414 + ], + [ + -76.95470755890474, + 39.04291952070414 + ], + [ + -76.96397978460455, + 39.03038931853546 + ], + [ + -76.95470755890474, + 39.017859116366786 + ], + [ + -76.93616310750517, + 39.017859116366786 + ], + [ + -76.92689088180536, + 39.03038931853546 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "fill-opacity": 0, + "stroke": "#0ff" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.3876953125, + 38.71980474264239 + ], + [ + -76.9482421875, + 38.71980474264239 + ], + [ + -76.9482421875, + 39.027718840211605 + ], + [ + -77.3876953125, + 39.027718840211605 + ], + [ + -77.3876953125, + 38.71980474264239 + ] + ] + ] + } + } + ] +} \ No newline at end of file diff --git a/packages/turf-hex-grid/test/out/grid4.geojson b/packages/turf-hex-grid/test/out/grid4.geojson new file mode 100644 index 0000000000..a0b897126b --- /dev/null +++ b/packages/turf-hex-grid/test/out/grid4.geojson @@ -0,0 +1,126984 @@ +{ + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.80630225929973, + 12.0004566996162 + ], + [ + 63.69145957581605, + 12.195104434544653 + ], + [ + 63.46177420884869, + 12.195104434544653 + ], + [ + 63.34693152536501, + 12.0004566996162 + ], + [ + 63.46177420884869, + 11.805808964687746 + ], + [ + 63.69145957581605, + 11.805808964687746 + ], + [ + 63.80630225929973, + 12.0004566996162 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.80630225929973, + 12.389752169473105 + ], + [ + 63.69145957581605, + 12.58439990440156 + ], + [ + 63.46177420884869, + 12.58439990440156 + ], + [ + 63.34693152536501, + 12.389752169473105 + ], + [ + 63.46177420884869, + 12.195104434544652 + ], + [ + 63.69145957581605, + 12.195104434544652 + ], + [ + 63.80630225929973, + 12.389752169473105 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.80630225929973, + 12.779047639330013 + ], + [ + 63.69145957581605, + 12.973695374258467 + ], + [ + 63.46177420884869, + 12.973695374258467 + ], + [ + 63.34693152536501, + 12.779047639330013 + ], + [ + 63.46177420884869, + 12.58439990440156 + ], + [ + 63.69145957581605, + 12.58439990440156 + ], + [ + 63.80630225929973, + 12.779047639330013 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.80630225929973, + 13.16834310918692 + ], + [ + 63.69145957581605, + 13.362990844115373 + ], + [ + 63.46177420884869, + 13.362990844115373 + ], + [ + 63.34693152536501, + 13.16834310918692 + ], + [ + 63.46177420884869, + 12.973695374258465 + ], + [ + 63.69145957581605, + 12.973695374258465 + ], + [ + 63.80630225929973, + 13.16834310918692 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.80630225929973, + 13.557638579043825 + ], + [ + 63.69145957581605, + 13.752286313972279 + ], + [ + 63.46177420884869, + 13.752286313972279 + ], + [ + 63.34693152536501, + 13.557638579043825 + ], + [ + 63.46177420884869, + 13.362990844115371 + ], + [ + 63.69145957581605, + 13.362990844115371 + ], + [ + 63.80630225929973, + 13.557638579043825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.80630225929973, + 13.946934048900731 + ], + [ + 63.69145957581605, + 14.141581783829185 + ], + [ + 63.46177420884869, + 14.141581783829185 + ], + [ + 63.34693152536501, + 13.946934048900731 + ], + [ + 63.46177420884869, + 13.752286313972277 + ], + [ + 63.69145957581605, + 13.752286313972277 + ], + [ + 63.80630225929973, + 13.946934048900731 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.80630225929973, + 14.336229518757637 + ], + [ + 63.69145957581605, + 14.530877253686091 + ], + [ + 63.46177420884869, + 14.530877253686091 + ], + [ + 63.34693152536501, + 14.336229518757637 + ], + [ + 63.46177420884869, + 14.141581783829183 + ], + [ + 63.69145957581605, + 14.141581783829183 + ], + [ + 63.80630225929973, + 14.336229518757637 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.80630225929973, + 14.725524988614545 + ], + [ + 63.69145957581605, + 14.920172723542999 + ], + [ + 63.46177420884869, + 14.920172723542999 + ], + [ + 63.34693152536501, + 14.725524988614545 + ], + [ + 63.46177420884869, + 14.530877253686091 + ], + [ + 63.69145957581605, + 14.530877253686091 + ], + [ + 63.80630225929973, + 14.725524988614545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.80630225929973, + 15.114820458471451 + ], + [ + 63.69145957581605, + 15.309468193399905 + ], + [ + 63.46177420884869, + 15.309468193399905 + ], + [ + 63.34693152536501, + 15.114820458471451 + ], + [ + 63.46177420884869, + 14.920172723542997 + ], + [ + 63.69145957581605, + 14.920172723542997 + ], + [ + 63.80630225929973, + 15.114820458471451 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.80630225929973, + 15.504115928328357 + ], + [ + 63.69145957581605, + 15.69876366325681 + ], + [ + 63.46177420884869, + 15.69876366325681 + ], + [ + 63.34693152536501, + 15.504115928328357 + ], + [ + 63.46177420884869, + 15.309468193399903 + ], + [ + 63.69145957581605, + 15.309468193399903 + ], + [ + 63.80630225929973, + 15.504115928328357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.80630225929973, + 15.893411398185265 + ], + [ + 63.69145957581605, + 16.088059133113717 + ], + [ + 63.46177420884869, + 16.088059133113717 + ], + [ + 63.34693152536501, + 15.893411398185265 + ], + [ + 63.46177420884869, + 15.69876366325681 + ], + [ + 63.69145957581605, + 15.69876366325681 + ], + [ + 63.80630225929973, + 15.893411398185265 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.80630225929973, + 16.28270686804217 + ], + [ + 63.69145957581605, + 16.47735460297062 + ], + [ + 63.46177420884869, + 16.47735460297062 + ], + [ + 63.34693152536501, + 16.28270686804217 + ], + [ + 63.46177420884869, + 16.088059133113717 + ], + [ + 63.69145957581605, + 16.088059133113717 + ], + [ + 63.80630225929973, + 16.28270686804217 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.80630225929973, + 16.672002337899077 + ], + [ + 63.69145957581605, + 16.86665007282753 + ], + [ + 63.46177420884869, + 16.86665007282753 + ], + [ + 63.34693152536501, + 16.672002337899077 + ], + [ + 63.46177420884869, + 16.477354602970625 + ], + [ + 63.69145957581605, + 16.477354602970625 + ], + [ + 63.80630225929973, + 16.672002337899077 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.80630225929973, + 17.06129780775598 + ], + [ + 63.69145957581605, + 17.255945542684433 + ], + [ + 63.46177420884869, + 17.255945542684433 + ], + [ + 63.34693152536501, + 17.06129780775598 + ], + [ + 63.46177420884869, + 16.86665007282753 + ], + [ + 63.69145957581605, + 16.86665007282753 + ], + [ + 63.80630225929973, + 17.06129780775598 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.80630225929973, + 17.45059327761289 + ], + [ + 63.69145957581605, + 17.64524101254134 + ], + [ + 63.46177420884869, + 17.64524101254134 + ], + [ + 63.34693152536501, + 17.45059327761289 + ], + [ + 63.46177420884869, + 17.255945542684437 + ], + [ + 63.69145957581605, + 17.255945542684437 + ], + [ + 63.80630225929973, + 17.45059327761289 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.80630225929973, + 17.839888747469793 + ], + [ + 63.69145957581605, + 18.034536482398245 + ], + [ + 63.46177420884869, + 18.034536482398245 + ], + [ + 63.34693152536501, + 17.839888747469793 + ], + [ + 63.46177420884869, + 17.64524101254134 + ], + [ + 63.69145957581605, + 17.64524101254134 + ], + [ + 63.80630225929973, + 17.839888747469793 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.80630225929973, + 18.2291842173267 + ], + [ + 63.69145957581605, + 18.423831952255153 + ], + [ + 63.46177420884869, + 18.423831952255153 + ], + [ + 63.34693152536501, + 18.2291842173267 + ], + [ + 63.46177420884869, + 18.03453648239825 + ], + [ + 63.69145957581605, + 18.03453648239825 + ], + [ + 63.80630225929973, + 18.2291842173267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.80630225929973, + 18.61847968718361 + ], + [ + 63.69145957581605, + 18.81312742211206 + ], + [ + 63.46177420884869, + 18.81312742211206 + ], + [ + 63.34693152536501, + 18.61847968718361 + ], + [ + 63.46177420884869, + 18.423831952255156 + ], + [ + 63.69145957581605, + 18.423831952255156 + ], + [ + 63.80630225929973, + 18.61847968718361 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.80630225929973, + 19.007775157040513 + ], + [ + 63.69145957581605, + 19.202422891968965 + ], + [ + 63.46177420884869, + 19.202422891968965 + ], + [ + 63.34693152536501, + 19.007775157040513 + ], + [ + 63.46177420884869, + 18.81312742211206 + ], + [ + 63.69145957581605, + 18.81312742211206 + ], + [ + 63.80630225929973, + 19.007775157040513 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.80630225929973, + 19.39707062689742 + ], + [ + 63.69145957581605, + 19.591718361825873 + ], + [ + 63.46177420884869, + 19.591718361825873 + ], + [ + 63.34693152536501, + 19.39707062689742 + ], + [ + 63.46177420884869, + 19.20242289196897 + ], + [ + 63.69145957581605, + 19.20242289196897 + ], + [ + 63.80630225929973, + 19.39707062689742 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.80630225929973, + 19.78636609675433 + ], + [ + 63.69145957581605, + 19.98101383168278 + ], + [ + 63.46177420884869, + 19.98101383168278 + ], + [ + 63.34693152536501, + 19.78636609675433 + ], + [ + 63.46177420884869, + 19.591718361825876 + ], + [ + 63.69145957581605, + 19.591718361825876 + ], + [ + 63.80630225929973, + 19.78636609675433 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.80630225929973, + 20.175661566611232 + ], + [ + 63.69145957581605, + 20.370309301539685 + ], + [ + 63.46177420884869, + 20.370309301539685 + ], + [ + 63.34693152536501, + 20.175661566611232 + ], + [ + 63.46177420884869, + 19.98101383168278 + ], + [ + 63.69145957581605, + 19.98101383168278 + ], + [ + 63.80630225929973, + 20.175661566611232 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.80630225929973, + 20.564957036468137 + ], + [ + 63.69145957581605, + 20.75960477139659 + ], + [ + 63.46177420884869, + 20.75960477139659 + ], + [ + 63.34693152536501, + 20.564957036468137 + ], + [ + 63.46177420884869, + 20.370309301539685 + ], + [ + 63.69145957581605, + 20.370309301539685 + ], + [ + 63.80630225929973, + 20.564957036468137 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.80630225929973, + 20.954252506325044 + ], + [ + 63.69145957581605, + 21.148900241253497 + ], + [ + 63.46177420884869, + 21.148900241253497 + ], + [ + 63.34693152536501, + 20.954252506325044 + ], + [ + 63.46177420884869, + 20.759604771396592 + ], + [ + 63.69145957581605, + 20.759604771396592 + ], + [ + 63.80630225929973, + 20.954252506325044 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.80630225929973, + 21.343547976181952 + ], + [ + 63.69145957581605, + 21.538195711110404 + ], + [ + 63.46177420884869, + 21.538195711110404 + ], + [ + 63.34693152536501, + 21.343547976181952 + ], + [ + 63.46177420884869, + 21.1489002412535 + ], + [ + 63.69145957581605, + 21.1489002412535 + ], + [ + 63.80630225929973, + 21.343547976181952 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.80630225929973, + 21.732843446038856 + ], + [ + 63.69145957581605, + 21.92749118096731 + ], + [ + 63.46177420884869, + 21.92749118096731 + ], + [ + 63.34693152536501, + 21.732843446038856 + ], + [ + 63.46177420884869, + 21.538195711110404 + ], + [ + 63.69145957581605, + 21.538195711110404 + ], + [ + 63.80630225929973, + 21.732843446038856 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.80630225929973, + 22.122138915895764 + ], + [ + 63.69145957581605, + 22.316786650824216 + ], + [ + 63.46177420884869, + 22.316786650824216 + ], + [ + 63.34693152536501, + 22.122138915895764 + ], + [ + 63.46177420884869, + 21.927491180967312 + ], + [ + 63.69145957581605, + 21.927491180967312 + ], + [ + 63.80630225929973, + 22.122138915895764 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.80630225929973, + 22.511434385752672 + ], + [ + 63.69145957581605, + 22.706082120681124 + ], + [ + 63.46177420884869, + 22.706082120681124 + ], + [ + 63.34693152536501, + 22.511434385752672 + ], + [ + 63.46177420884869, + 22.31678665082422 + ], + [ + 63.69145957581605, + 22.31678665082422 + ], + [ + 63.80630225929973, + 22.511434385752672 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.80630225929973, + 22.900729855609576 + ], + [ + 63.69145957581605, + 23.09537759053803 + ], + [ + 63.46177420884869, + 23.09537759053803 + ], + [ + 63.34693152536501, + 22.900729855609576 + ], + [ + 63.46177420884869, + 22.706082120681124 + ], + [ + 63.69145957581605, + 22.706082120681124 + ], + [ + 63.80630225929973, + 22.900729855609576 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.80630225929973, + 23.290025325466484 + ], + [ + 63.69145957581605, + 23.484673060394936 + ], + [ + 63.46177420884869, + 23.484673060394936 + ], + [ + 63.34693152536501, + 23.290025325466484 + ], + [ + 63.46177420884869, + 23.095377590538032 + ], + [ + 63.69145957581605, + 23.095377590538032 + ], + [ + 63.80630225929973, + 23.290025325466484 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.80630225929973, + 23.67932079532339 + ], + [ + 63.69145957581605, + 23.873968530251844 + ], + [ + 63.46177420884869, + 23.873968530251844 + ], + [ + 63.34693152536501, + 23.67932079532339 + ], + [ + 63.46177420884869, + 23.48467306039494 + ], + [ + 63.69145957581605, + 23.48467306039494 + ], + [ + 63.80630225929973, + 23.67932079532339 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.80630225929973, + 24.068616265180296 + ], + [ + 63.69145957581605, + 24.263264000108748 + ], + [ + 63.46177420884869, + 24.263264000108748 + ], + [ + 63.34693152536501, + 24.068616265180296 + ], + [ + 63.46177420884869, + 23.873968530251844 + ], + [ + 63.69145957581605, + 23.873968530251844 + ], + [ + 63.80630225929973, + 24.068616265180296 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.80630225929973, + 24.4579117350372 + ], + [ + 63.69145957581605, + 24.652559469965652 + ], + [ + 63.46177420884869, + 24.652559469965652 + ], + [ + 63.34693152536501, + 24.4579117350372 + ], + [ + 63.46177420884869, + 24.263264000108748 + ], + [ + 63.69145957581605, + 24.263264000108748 + ], + [ + 63.80630225929973, + 24.4579117350372 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.80630225929973, + 24.847207204894108 + ], + [ + 63.69145957581605, + 25.04185493982256 + ], + [ + 63.46177420884869, + 25.04185493982256 + ], + [ + 63.34693152536501, + 24.847207204894108 + ], + [ + 63.46177420884869, + 24.652559469965656 + ], + [ + 63.69145957581605, + 24.652559469965656 + ], + [ + 63.80630225929973, + 24.847207204894108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.80630225929973, + 25.236502674751016 + ], + [ + 63.69145957581605, + 25.431150409679468 + ], + [ + 63.46177420884869, + 25.431150409679468 + ], + [ + 63.34693152536501, + 25.236502674751016 + ], + [ + 63.46177420884869, + 25.041854939822564 + ], + [ + 63.69145957581605, + 25.041854939822564 + ], + [ + 63.80630225929973, + 25.236502674751016 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.80630225929973, + 25.62579814460792 + ], + [ + 63.69145957581605, + 25.820445879536372 + ], + [ + 63.46177420884869, + 25.820445879536372 + ], + [ + 63.34693152536501, + 25.62579814460792 + ], + [ + 63.46177420884869, + 25.431150409679468 + ], + [ + 63.69145957581605, + 25.431150409679468 + ], + [ + 63.80630225929973, + 25.62579814460792 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.80630225929973, + 26.015093614464828 + ], + [ + 63.69145957581605, + 26.20974134939328 + ], + [ + 63.46177420884869, + 26.20974134939328 + ], + [ + 63.34693152536501, + 26.015093614464828 + ], + [ + 63.46177420884869, + 25.820445879536376 + ], + [ + 63.69145957581605, + 25.820445879536376 + ], + [ + 63.80630225929973, + 26.015093614464828 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.80630225929973, + 26.404389084321735 + ], + [ + 63.69145957581605, + 26.599036819250188 + ], + [ + 63.46177420884869, + 26.599036819250188 + ], + [ + 63.34693152536501, + 26.404389084321735 + ], + [ + 63.46177420884869, + 26.209741349393283 + ], + [ + 63.69145957581605, + 26.209741349393283 + ], + [ + 63.80630225929973, + 26.404389084321735 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.80630225929973, + 26.79368455417864 + ], + [ + 63.69145957581605, + 26.988332289107092 + ], + [ + 63.46177420884869, + 26.988332289107092 + ], + [ + 63.34693152536501, + 26.79368455417864 + ], + [ + 63.46177420884869, + 26.599036819250188 + ], + [ + 63.69145957581605, + 26.599036819250188 + ], + [ + 63.80630225929973, + 26.79368455417864 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.80630225929973, + 27.182980024035547 + ], + [ + 63.69145957581605, + 27.377627758964 + ], + [ + 63.46177420884869, + 27.377627758964 + ], + [ + 63.34693152536501, + 27.182980024035547 + ], + [ + 63.46177420884869, + 26.988332289107095 + ], + [ + 63.69145957581605, + 26.988332289107095 + ], + [ + 63.80630225929973, + 27.182980024035547 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.80630225929973, + 27.572275493892455 + ], + [ + 63.69145957581605, + 27.766923228820907 + ], + [ + 63.46177420884869, + 27.766923228820907 + ], + [ + 63.34693152536501, + 27.572275493892455 + ], + [ + 63.46177420884869, + 27.377627758964003 + ], + [ + 63.69145957581605, + 27.377627758964003 + ], + [ + 63.80630225929973, + 27.572275493892455 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.80630225929973, + 27.96157096374936 + ], + [ + 63.69145957581605, + 28.15621869867781 + ], + [ + 63.46177420884869, + 28.15621869867781 + ], + [ + 63.34693152536501, + 27.96157096374936 + ], + [ + 63.46177420884869, + 27.766923228820907 + ], + [ + 63.69145957581605, + 27.766923228820907 + ], + [ + 63.80630225929973, + 27.96157096374936 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.80630225929973, + 28.350866433606267 + ], + [ + 63.69145957581605, + 28.54551416853472 + ], + [ + 63.46177420884869, + 28.54551416853472 + ], + [ + 63.34693152536501, + 28.350866433606267 + ], + [ + 63.46177420884869, + 28.156218698677815 + ], + [ + 63.69145957581605, + 28.156218698677815 + ], + [ + 63.80630225929973, + 28.350866433606267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.80630225929973, + 28.74016190346317 + ], + [ + 63.69145957581605, + 28.934809638391624 + ], + [ + 63.46177420884869, + 28.934809638391624 + ], + [ + 63.34693152536501, + 28.74016190346317 + ], + [ + 63.46177420884869, + 28.54551416853472 + ], + [ + 63.69145957581605, + 28.54551416853472 + ], + [ + 63.80630225929973, + 28.74016190346317 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.80630225929973, + 29.12945737332008 + ], + [ + 63.69145957581605, + 29.32410510824853 + ], + [ + 63.46177420884869, + 29.32410510824853 + ], + [ + 63.34693152536501, + 29.12945737332008 + ], + [ + 63.46177420884869, + 28.934809638391627 + ], + [ + 63.69145957581605, + 28.934809638391627 + ], + [ + 63.80630225929973, + 29.12945737332008 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.80630225929973, + 29.518752843176983 + ], + [ + 63.69145957581605, + 29.713400578105436 + ], + [ + 63.46177420884869, + 29.713400578105436 + ], + [ + 63.34693152536501, + 29.518752843176983 + ], + [ + 63.46177420884869, + 29.32410510824853 + ], + [ + 63.69145957581605, + 29.32410510824853 + ], + [ + 63.80630225929973, + 29.518752843176983 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.80630225929973, + 29.90804831303389 + ], + [ + 63.69145957581605, + 30.102696047962343 + ], + [ + 63.46177420884869, + 30.102696047962343 + ], + [ + 63.34693152536501, + 29.90804831303389 + ], + [ + 63.46177420884869, + 29.71340057810544 + ], + [ + 63.69145957581605, + 29.71340057810544 + ], + [ + 63.80630225929973, + 29.90804831303389 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.80630225929973, + 30.297343782890795 + ], + [ + 63.69145957581605, + 30.491991517819248 + ], + [ + 63.46177420884869, + 30.491991517819248 + ], + [ + 63.34693152536501, + 30.297343782890795 + ], + [ + 63.46177420884869, + 30.102696047962343 + ], + [ + 63.69145957581605, + 30.102696047962343 + ], + [ + 63.80630225929973, + 30.297343782890795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.80630225929973, + 30.686639252747703 + ], + [ + 63.69145957581605, + 30.881286987676155 + ], + [ + 63.46177420884869, + 30.881286987676155 + ], + [ + 63.34693152536501, + 30.686639252747703 + ], + [ + 63.46177420884869, + 30.49199151781925 + ], + [ + 63.69145957581605, + 30.49199151781925 + ], + [ + 63.80630225929973, + 30.686639252747703 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.80630225929973, + 31.07593472260461 + ], + [ + 63.69145957581605, + 31.270582457533063 + ], + [ + 63.46177420884869, + 31.270582457533063 + ], + [ + 63.34693152536501, + 31.07593472260461 + ], + [ + 63.46177420884869, + 30.88128698767616 + ], + [ + 63.69145957581605, + 30.88128698767616 + ], + [ + 63.80630225929973, + 31.07593472260461 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.80630225929973, + 31.465230192461515 + ], + [ + 63.69145957581605, + 31.659877927389967 + ], + [ + 63.46177420884869, + 31.659877927389967 + ], + [ + 63.34693152536501, + 31.465230192461515 + ], + [ + 63.46177420884869, + 31.270582457533063 + ], + [ + 63.69145957581605, + 31.270582457533063 + ], + [ + 63.80630225929973, + 31.465230192461515 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.80630225929973, + 31.854525662318423 + ], + [ + 63.69145957581605, + 32.049173397246875 + ], + [ + 63.46177420884869, + 32.049173397246875 + ], + [ + 63.34693152536501, + 31.854525662318423 + ], + [ + 63.46177420884869, + 31.65987792738997 + ], + [ + 63.69145957581605, + 31.65987792738997 + ], + [ + 63.80630225929973, + 31.854525662318423 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.80630225929973, + 32.24382113217533 + ], + [ + 63.69145957581605, + 32.43846886710378 + ], + [ + 63.46177420884869, + 32.43846886710378 + ], + [ + 63.34693152536501, + 32.24382113217533 + ], + [ + 63.46177420884869, + 32.049173397246875 + ], + [ + 63.69145957581605, + 32.049173397246875 + ], + [ + 63.80630225929973, + 32.24382113217533 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.80630225929973, + 32.63311660203224 + ], + [ + 63.69145957581605, + 32.82776433696069 + ], + [ + 63.46177420884869, + 32.82776433696069 + ], + [ + 63.34693152536501, + 32.63311660203224 + ], + [ + 63.46177420884869, + 32.438468867103786 + ], + [ + 63.69145957581605, + 32.438468867103786 + ], + [ + 63.80630225929973, + 32.63311660203224 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.80630225929973, + 33.02241207188914 + ], + [ + 63.69145957581605, + 33.217059806817595 + ], + [ + 63.46177420884869, + 33.217059806817595 + ], + [ + 63.34693152536501, + 33.02241207188914 + ], + [ + 63.46177420884869, + 32.82776433696069 + ], + [ + 63.69145957581605, + 32.82776433696069 + ], + [ + 63.80630225929973, + 33.02241207188914 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.80630225929973, + 33.41170754174605 + ], + [ + 63.69145957581605, + 33.6063552766745 + ], + [ + 63.46177420884869, + 33.6063552766745 + ], + [ + 63.34693152536501, + 33.41170754174605 + ], + [ + 63.46177420884869, + 33.217059806817595 + ], + [ + 63.69145957581605, + 33.217059806817595 + ], + [ + 63.80630225929973, + 33.41170754174605 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.80630225929973, + 33.80100301160295 + ], + [ + 63.69145957581605, + 33.9956507465314 + ], + [ + 63.46177420884869, + 33.9956507465314 + ], + [ + 63.34693152536501, + 33.80100301160295 + ], + [ + 63.46177420884869, + 33.6063552766745 + ], + [ + 63.69145957581605, + 33.6063552766745 + ], + [ + 63.80630225929973, + 33.80100301160295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.80630225929973, + 34.190298481459855 + ], + [ + 63.69145957581605, + 34.38494621638831 + ], + [ + 63.46177420884869, + 34.38494621638831 + ], + [ + 63.34693152536501, + 34.190298481459855 + ], + [ + 63.46177420884869, + 33.9956507465314 + ], + [ + 63.69145957581605, + 33.9956507465314 + ], + [ + 63.80630225929973, + 34.190298481459855 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.80630225929973, + 34.57959395131677 + ], + [ + 63.69145957581605, + 34.77424168624522 + ], + [ + 63.46177420884869, + 34.77424168624522 + ], + [ + 63.34693152536501, + 34.57959395131677 + ], + [ + 63.46177420884869, + 34.384946216388315 + ], + [ + 63.69145957581605, + 34.384946216388315 + ], + [ + 63.80630225929973, + 34.57959395131677 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.80630225929973, + 34.96888942117368 + ], + [ + 63.69145957581605, + 35.16353715610213 + ], + [ + 63.46177420884869, + 35.16353715610213 + ], + [ + 63.34693152536501, + 34.96888942117368 + ], + [ + 63.46177420884869, + 34.774241686245226 + ], + [ + 63.69145957581605, + 34.774241686245226 + ], + [ + 63.80630225929973, + 34.96888942117368 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.80630225929973, + 35.35818489103058 + ], + [ + 63.69145957581605, + 35.552832625959034 + ], + [ + 63.46177420884869, + 35.552832625959034 + ], + [ + 63.34693152536501, + 35.35818489103058 + ], + [ + 63.46177420884869, + 35.16353715610213 + ], + [ + 63.69145957581605, + 35.16353715610213 + ], + [ + 63.80630225929973, + 35.35818489103058 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.80630225929973, + 35.74748036088749 + ], + [ + 63.69145957581605, + 35.94212809581594 + ], + [ + 63.46177420884869, + 35.94212809581594 + ], + [ + 63.34693152536501, + 35.74748036088749 + ], + [ + 63.46177420884869, + 35.552832625959034 + ], + [ + 63.69145957581605, + 35.552832625959034 + ], + [ + 63.80630225929973, + 35.74748036088749 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.80630225929973, + 36.13677583074439 + ], + [ + 63.69145957581605, + 36.33142356567284 + ], + [ + 63.46177420884869, + 36.33142356567284 + ], + [ + 63.34693152536501, + 36.13677583074439 + ], + [ + 63.46177420884869, + 35.94212809581594 + ], + [ + 63.69145957581605, + 35.94212809581594 + ], + [ + 63.80630225929973, + 36.13677583074439 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.80630225929973, + 36.526071300601295 + ], + [ + 63.69145957581605, + 36.72071903552975 + ], + [ + 63.46177420884869, + 36.72071903552975 + ], + [ + 63.34693152536501, + 36.526071300601295 + ], + [ + 63.46177420884869, + 36.33142356567284 + ], + [ + 63.69145957581605, + 36.33142356567284 + ], + [ + 63.80630225929973, + 36.526071300601295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.80630225929973, + 36.915366770458206 + ], + [ + 63.69145957581605, + 37.11001450538666 + ], + [ + 63.46177420884869, + 37.11001450538666 + ], + [ + 63.34693152536501, + 36.915366770458206 + ], + [ + 63.46177420884869, + 36.720719035529754 + ], + [ + 63.69145957581605, + 36.720719035529754 + ], + [ + 63.80630225929973, + 36.915366770458206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.80630225929973, + 37.30466224031511 + ], + [ + 63.69145957581605, + 37.49930997524356 + ], + [ + 63.46177420884869, + 37.49930997524356 + ], + [ + 63.34693152536501, + 37.30466224031511 + ], + [ + 63.46177420884869, + 37.11001450538666 + ], + [ + 63.69145957581605, + 37.11001450538666 + ], + [ + 63.80630225929973, + 37.30466224031511 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.80630225929973, + 37.69395771017202 + ], + [ + 63.69145957581605, + 37.888605445100474 + ], + [ + 63.46177420884869, + 37.888605445100474 + ], + [ + 63.34693152536501, + 37.69395771017202 + ], + [ + 63.46177420884869, + 37.49930997524357 + ], + [ + 63.69145957581605, + 37.49930997524357 + ], + [ + 63.80630225929973, + 37.69395771017202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.80630225929973, + 38.083253180028926 + ], + [ + 63.69145957581605, + 38.27790091495738 + ], + [ + 63.46177420884869, + 38.27790091495738 + ], + [ + 63.34693152536501, + 38.083253180028926 + ], + [ + 63.46177420884869, + 37.888605445100474 + ], + [ + 63.69145957581605, + 37.888605445100474 + ], + [ + 63.80630225929973, + 38.083253180028926 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.80630225929973, + 38.47254864988583 + ], + [ + 63.69145957581605, + 38.66719638481428 + ], + [ + 63.46177420884869, + 38.66719638481428 + ], + [ + 63.34693152536501, + 38.47254864988583 + ], + [ + 63.46177420884869, + 38.27790091495738 + ], + [ + 63.69145957581605, + 38.27790091495738 + ], + [ + 63.80630225929973, + 38.47254864988583 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.80630225929973, + 38.861844119742734 + ], + [ + 63.69145957581605, + 39.05649185467119 + ], + [ + 63.46177420884869, + 39.05649185467119 + ], + [ + 63.34693152536501, + 38.861844119742734 + ], + [ + 63.46177420884869, + 38.66719638481428 + ], + [ + 63.69145957581605, + 38.66719638481428 + ], + [ + 63.80630225929973, + 38.861844119742734 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.80630225929973, + 39.25113958959964 + ], + [ + 63.69145957581605, + 39.44578732452809 + ], + [ + 63.46177420884869, + 39.44578732452809 + ], + [ + 63.34693152536501, + 39.25113958959964 + ], + [ + 63.46177420884869, + 39.05649185467119 + ], + [ + 63.69145957581605, + 39.05649185467119 + ], + [ + 63.80630225929973, + 39.25113958959964 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.80630225929973, + 39.64043505945655 + ], + [ + 63.69145957581605, + 39.835082794385 + ], + [ + 63.46177420884869, + 39.835082794385 + ], + [ + 63.34693152536501, + 39.64043505945655 + ], + [ + 63.46177420884869, + 39.4457873245281 + ], + [ + 63.69145957581605, + 39.4457873245281 + ], + [ + 63.80630225929973, + 39.64043505945655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.80630225929973, + 40.029730529313454 + ], + [ + 63.69145957581605, + 40.224378264241906 + ], + [ + 63.46177420884869, + 40.224378264241906 + ], + [ + 63.34693152536501, + 40.029730529313454 + ], + [ + 63.46177420884869, + 39.835082794385 + ], + [ + 63.69145957581605, + 39.835082794385 + ], + [ + 63.80630225929973, + 40.029730529313454 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.80630225929973, + 40.419025999170366 + ], + [ + 63.69145957581605, + 40.61367373409882 + ], + [ + 63.46177420884869, + 40.61367373409882 + ], + [ + 63.34693152536501, + 40.419025999170366 + ], + [ + 63.46177420884869, + 40.22437826424191 + ], + [ + 63.69145957581605, + 40.22437826424191 + ], + [ + 63.80630225929973, + 40.419025999170366 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.80630225929973, + 40.80832146902727 + ], + [ + 63.69145957581605, + 41.00296920395572 + ], + [ + 63.46177420884869, + 41.00296920395572 + ], + [ + 63.34693152536501, + 40.80832146902727 + ], + [ + 63.46177420884869, + 40.61367373409882 + ], + [ + 63.69145957581605, + 40.61367373409882 + ], + [ + 63.80630225929973, + 40.80832146902727 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.80630225929973, + 41.197616938884174 + ], + [ + 63.69145957581605, + 41.392264673812626 + ], + [ + 63.46177420884869, + 41.392264673812626 + ], + [ + 63.34693152536501, + 41.197616938884174 + ], + [ + 63.46177420884869, + 41.00296920395572 + ], + [ + 63.69145957581605, + 41.00296920395572 + ], + [ + 63.80630225929973, + 41.197616938884174 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.80630225929973, + 41.58691240874108 + ], + [ + 63.69145957581605, + 41.78156014366953 + ], + [ + 63.46177420884869, + 41.78156014366953 + ], + [ + 63.34693152536501, + 41.58691240874108 + ], + [ + 63.46177420884869, + 41.392264673812626 + ], + [ + 63.69145957581605, + 41.392264673812626 + ], + [ + 63.80630225929973, + 41.58691240874108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.80630225929973, + 41.97620787859798 + ], + [ + 63.69145957581605, + 42.170855613526435 + ], + [ + 63.46177420884869, + 42.170855613526435 + ], + [ + 63.34693152536501, + 41.97620787859798 + ], + [ + 63.46177420884869, + 41.78156014366953 + ], + [ + 63.69145957581605, + 41.78156014366953 + ], + [ + 63.80630225929973, + 41.97620787859798 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.80630225929973, + 42.365503348454894 + ], + [ + 63.69145957581605, + 42.560151083383346 + ], + [ + 63.46177420884869, + 42.560151083383346 + ], + [ + 63.34693152536501, + 42.365503348454894 + ], + [ + 63.46177420884869, + 42.17085561352644 + ], + [ + 63.69145957581605, + 42.17085561352644 + ], + [ + 63.80630225929973, + 42.365503348454894 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.80630225929973, + 42.754798818311805 + ], + [ + 63.69145957581605, + 42.94944655324026 + ], + [ + 63.46177420884869, + 42.94944655324026 + ], + [ + 63.34693152536501, + 42.754798818311805 + ], + [ + 63.46177420884869, + 42.56015108338335 + ], + [ + 63.69145957581605, + 42.56015108338335 + ], + [ + 63.80630225929973, + 42.754798818311805 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.80630225929973, + 43.14409428816871 + ], + [ + 63.69145957581605, + 43.33874202309716 + ], + [ + 63.46177420884869, + 43.33874202309716 + ], + [ + 63.34693152536501, + 43.14409428816871 + ], + [ + 63.46177420884869, + 42.94944655324026 + ], + [ + 63.69145957581605, + 42.94944655324026 + ], + [ + 63.80630225929973, + 43.14409428816871 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.80630225929973, + 43.53338975802561 + ], + [ + 63.69145957581605, + 43.728037492954066 + ], + [ + 63.46177420884869, + 43.728037492954066 + ], + [ + 63.34693152536501, + 43.53338975802561 + ], + [ + 63.46177420884869, + 43.33874202309716 + ], + [ + 63.69145957581605, + 43.33874202309716 + ], + [ + 63.80630225929973, + 43.53338975802561 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.80630225929973, + 43.92268522788252 + ], + [ + 63.69145957581605, + 44.11733296281097 + ], + [ + 63.46177420884869, + 44.11733296281097 + ], + [ + 63.34693152536501, + 43.92268522788252 + ], + [ + 63.46177420884869, + 43.728037492954066 + ], + [ + 63.69145957581605, + 43.728037492954066 + ], + [ + 63.80630225929973, + 43.92268522788252 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.80630225929973, + 44.31198069773942 + ], + [ + 63.69145957581605, + 44.506628432667874 + ], + [ + 63.46177420884869, + 44.506628432667874 + ], + [ + 63.34693152536501, + 44.31198069773942 + ], + [ + 63.46177420884869, + 44.11733296281097 + ], + [ + 63.69145957581605, + 44.11733296281097 + ], + [ + 63.80630225929973, + 44.31198069773942 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.80630225929973, + 44.701276167596326 + ], + [ + 63.69145957581605, + 44.89592390252478 + ], + [ + 63.46177420884869, + 44.89592390252478 + ], + [ + 63.34693152536501, + 44.701276167596326 + ], + [ + 63.46177420884869, + 44.506628432667874 + ], + [ + 63.69145957581605, + 44.506628432667874 + ], + [ + 63.80630225929973, + 44.701276167596326 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.80630225929973, + 45.090571637453245 + ], + [ + 63.69145957581605, + 45.2852193723817 + ], + [ + 63.46177420884869, + 45.2852193723817 + ], + [ + 63.34693152536501, + 45.090571637453245 + ], + [ + 63.46177420884869, + 44.89592390252479 + ], + [ + 63.69145957581605, + 44.89592390252479 + ], + [ + 63.80630225929973, + 45.090571637453245 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.80630225929973, + 45.47986710731015 + ], + [ + 63.69145957581605, + 45.6745148422386 + ], + [ + 63.46177420884869, + 45.6745148422386 + ], + [ + 63.34693152536501, + 45.47986710731015 + ], + [ + 63.46177420884869, + 45.2852193723817 + ], + [ + 63.69145957581605, + 45.2852193723817 + ], + [ + 63.80630225929973, + 45.47986710731015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.80630225929973, + 45.86916257716705 + ], + [ + 63.69145957581605, + 46.063810312095505 + ], + [ + 63.46177420884869, + 46.063810312095505 + ], + [ + 63.34693152536501, + 45.86916257716705 + ], + [ + 63.46177420884869, + 45.6745148422386 + ], + [ + 63.69145957581605, + 45.6745148422386 + ], + [ + 63.80630225929973, + 45.86916257716705 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.80630225929973, + 46.25845804702396 + ], + [ + 63.69145957581605, + 46.45310578195241 + ], + [ + 63.46177420884869, + 46.45310578195241 + ], + [ + 63.34693152536501, + 46.25845804702396 + ], + [ + 63.46177420884869, + 46.063810312095505 + ], + [ + 63.69145957581605, + 46.063810312095505 + ], + [ + 63.80630225929973, + 46.25845804702396 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.80630225929973, + 46.64775351688086 + ], + [ + 63.69145957581605, + 46.842401251809314 + ], + [ + 63.46177420884869, + 46.842401251809314 + ], + [ + 63.34693152536501, + 46.64775351688086 + ], + [ + 63.46177420884869, + 46.45310578195241 + ], + [ + 63.69145957581605, + 46.45310578195241 + ], + [ + 63.80630225929973, + 46.64775351688086 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.80630225929973, + 47.037048986737766 + ], + [ + 63.69145957581605, + 47.23169672166622 + ], + [ + 63.46177420884869, + 47.23169672166622 + ], + [ + 63.34693152536501, + 47.037048986737766 + ], + [ + 63.46177420884869, + 46.842401251809314 + ], + [ + 63.69145957581605, + 46.842401251809314 + ], + [ + 63.80630225929973, + 47.037048986737766 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.80630225929973, + 47.42634445659467 + ], + [ + 63.69145957581605, + 47.62099219152312 + ], + [ + 63.46177420884869, + 47.62099219152312 + ], + [ + 63.34693152536501, + 47.42634445659467 + ], + [ + 63.46177420884869, + 47.23169672166622 + ], + [ + 63.69145957581605, + 47.23169672166622 + ], + [ + 63.80630225929973, + 47.42634445659467 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.80630225929973, + 47.81563992645159 + ], + [ + 63.69145957581605, + 48.01028766138004 + ], + [ + 63.46177420884869, + 48.01028766138004 + ], + [ + 63.34693152536501, + 47.81563992645159 + ], + [ + 63.46177420884869, + 47.620992191523136 + ], + [ + 63.69145957581605, + 47.620992191523136 + ], + [ + 63.80630225929973, + 47.81563992645159 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.15083030975076, + 11.805808964687746 + ], + [ + 64.03598762626709, + 12.0004566996162 + ], + [ + 63.80630225929973, + 12.0004566996162 + ], + [ + 63.69145957581605, + 11.805808964687746 + ], + [ + 63.80630225929973, + 11.611161229759292 + ], + [ + 64.03598762626709, + 11.611161229759292 + ], + [ + 64.15083030975076, + 11.805808964687746 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.15083030975076, + 12.195104434544652 + ], + [ + 64.03598762626709, + 12.389752169473105 + ], + [ + 63.80630225929973, + 12.389752169473105 + ], + [ + 63.69145957581605, + 12.195104434544652 + ], + [ + 63.80630225929973, + 12.000456699616198 + ], + [ + 64.03598762626709, + 12.000456699616198 + ], + [ + 64.15083030975076, + 12.195104434544652 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.15083030975076, + 12.58439990440156 + ], + [ + 64.03598762626709, + 12.779047639330013 + ], + [ + 63.80630225929973, + 12.779047639330013 + ], + [ + 63.69145957581605, + 12.58439990440156 + ], + [ + 63.80630225929973, + 12.389752169473105 + ], + [ + 64.03598762626709, + 12.389752169473105 + ], + [ + 64.15083030975076, + 12.58439990440156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.15083030975076, + 12.973695374258465 + ], + [ + 64.03598762626709, + 13.16834310918692 + ], + [ + 63.80630225929973, + 13.16834310918692 + ], + [ + 63.69145957581605, + 12.973695374258465 + ], + [ + 63.80630225929973, + 12.779047639330011 + ], + [ + 64.03598762626709, + 12.779047639330011 + ], + [ + 64.15083030975076, + 12.973695374258465 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.15083030975076, + 13.362990844115371 + ], + [ + 64.03598762626709, + 13.557638579043825 + ], + [ + 63.80630225929973, + 13.557638579043825 + ], + [ + 63.69145957581605, + 13.362990844115371 + ], + [ + 63.80630225929973, + 13.168343109186917 + ], + [ + 64.03598762626709, + 13.168343109186917 + ], + [ + 64.15083030975076, + 13.362990844115371 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.15083030975076, + 13.752286313972277 + ], + [ + 64.03598762626709, + 13.946934048900731 + ], + [ + 63.80630225929973, + 13.946934048900731 + ], + [ + 63.69145957581605, + 13.752286313972277 + ], + [ + 63.80630225929973, + 13.557638579043823 + ], + [ + 64.03598762626709, + 13.557638579043823 + ], + [ + 64.15083030975076, + 13.752286313972277 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.15083030975076, + 14.141581783829183 + ], + [ + 64.03598762626709, + 14.336229518757637 + ], + [ + 63.80630225929973, + 14.336229518757637 + ], + [ + 63.69145957581605, + 14.141581783829183 + ], + [ + 63.80630225929973, + 13.94693404890073 + ], + [ + 64.03598762626709, + 13.94693404890073 + ], + [ + 64.15083030975076, + 14.141581783829183 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.15083030975076, + 14.530877253686091 + ], + [ + 64.03598762626709, + 14.725524988614545 + ], + [ + 63.80630225929973, + 14.725524988614545 + ], + [ + 63.69145957581605, + 14.530877253686091 + ], + [ + 63.80630225929973, + 14.336229518757637 + ], + [ + 64.03598762626709, + 14.336229518757637 + ], + [ + 64.15083030975076, + 14.530877253686091 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.15083030975076, + 14.920172723542997 + ], + [ + 64.03598762626709, + 15.114820458471451 + ], + [ + 63.80630225929973, + 15.114820458471451 + ], + [ + 63.69145957581605, + 14.920172723542997 + ], + [ + 63.80630225929973, + 14.725524988614543 + ], + [ + 64.03598762626709, + 14.725524988614543 + ], + [ + 64.15083030975076, + 14.920172723542997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.15083030975076, + 15.309468193399903 + ], + [ + 64.03598762626709, + 15.504115928328357 + ], + [ + 63.80630225929973, + 15.504115928328357 + ], + [ + 63.69145957581605, + 15.309468193399903 + ], + [ + 63.80630225929973, + 15.11482045847145 + ], + [ + 64.03598762626709, + 15.11482045847145 + ], + [ + 64.15083030975076, + 15.309468193399903 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.15083030975076, + 15.69876366325681 + ], + [ + 64.03598762626709, + 15.893411398185265 + ], + [ + 63.80630225929973, + 15.893411398185265 + ], + [ + 63.69145957581605, + 15.69876366325681 + ], + [ + 63.80630225929973, + 15.504115928328357 + ], + [ + 64.03598762626709, + 15.504115928328357 + ], + [ + 64.15083030975076, + 15.69876366325681 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.15083030975076, + 16.088059133113717 + ], + [ + 64.03598762626709, + 16.28270686804217 + ], + [ + 63.80630225929973, + 16.28270686804217 + ], + [ + 63.69145957581605, + 16.088059133113717 + ], + [ + 63.80630225929973, + 15.893411398185263 + ], + [ + 64.03598762626709, + 15.893411398185263 + ], + [ + 64.15083030975076, + 16.088059133113717 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.15083030975076, + 16.477354602970625 + ], + [ + 64.03598762626709, + 16.672002337899077 + ], + [ + 63.80630225929973, + 16.672002337899077 + ], + [ + 63.69145957581605, + 16.477354602970625 + ], + [ + 63.80630225929973, + 16.282706868042172 + ], + [ + 64.03598762626709, + 16.282706868042172 + ], + [ + 64.15083030975076, + 16.477354602970625 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.15083030975076, + 16.86665007282753 + ], + [ + 64.03598762626709, + 17.06129780775598 + ], + [ + 63.80630225929973, + 17.06129780775598 + ], + [ + 63.69145957581605, + 16.86665007282753 + ], + [ + 63.80630225929973, + 16.672002337899077 + ], + [ + 64.03598762626709, + 16.672002337899077 + ], + [ + 64.15083030975076, + 16.86665007282753 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.15083030975076, + 17.255945542684437 + ], + [ + 64.03598762626709, + 17.45059327761289 + ], + [ + 63.80630225929973, + 17.45059327761289 + ], + [ + 63.69145957581605, + 17.255945542684437 + ], + [ + 63.80630225929973, + 17.061297807755984 + ], + [ + 64.03598762626709, + 17.061297807755984 + ], + [ + 64.15083030975076, + 17.255945542684437 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.15083030975076, + 17.64524101254134 + ], + [ + 64.03598762626709, + 17.839888747469793 + ], + [ + 63.80630225929973, + 17.839888747469793 + ], + [ + 63.69145957581605, + 17.64524101254134 + ], + [ + 63.80630225929973, + 17.45059327761289 + ], + [ + 64.03598762626709, + 17.45059327761289 + ], + [ + 64.15083030975076, + 17.64524101254134 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.15083030975076, + 18.03453648239825 + ], + [ + 64.03598762626709, + 18.2291842173267 + ], + [ + 63.80630225929973, + 18.2291842173267 + ], + [ + 63.69145957581605, + 18.03453648239825 + ], + [ + 63.80630225929973, + 17.839888747469796 + ], + [ + 64.03598762626709, + 17.839888747469796 + ], + [ + 64.15083030975076, + 18.03453648239825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.15083030975076, + 18.423831952255156 + ], + [ + 64.03598762626709, + 18.61847968718361 + ], + [ + 63.80630225929973, + 18.61847968718361 + ], + [ + 63.69145957581605, + 18.423831952255156 + ], + [ + 63.80630225929973, + 18.229184217326704 + ], + [ + 64.03598762626709, + 18.229184217326704 + ], + [ + 64.15083030975076, + 18.423831952255156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.15083030975076, + 18.81312742211206 + ], + [ + 64.03598762626709, + 19.007775157040513 + ], + [ + 63.80630225929973, + 19.007775157040513 + ], + [ + 63.69145957581605, + 18.81312742211206 + ], + [ + 63.80630225929973, + 18.61847968718361 + ], + [ + 64.03598762626709, + 18.61847968718361 + ], + [ + 64.15083030975076, + 18.81312742211206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.15083030975076, + 19.20242289196897 + ], + [ + 64.03598762626709, + 19.39707062689742 + ], + [ + 63.80630225929973, + 19.39707062689742 + ], + [ + 63.69145957581605, + 19.20242289196897 + ], + [ + 63.80630225929973, + 19.007775157040516 + ], + [ + 64.03598762626709, + 19.007775157040516 + ], + [ + 64.15083030975076, + 19.20242289196897 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.15083030975076, + 19.591718361825876 + ], + [ + 64.03598762626709, + 19.78636609675433 + ], + [ + 63.80630225929973, + 19.78636609675433 + ], + [ + 63.69145957581605, + 19.591718361825876 + ], + [ + 63.80630225929973, + 19.397070626897424 + ], + [ + 64.03598762626709, + 19.397070626897424 + ], + [ + 64.15083030975076, + 19.591718361825876 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.15083030975076, + 19.98101383168278 + ], + [ + 64.03598762626709, + 20.175661566611232 + ], + [ + 63.80630225929973, + 20.175661566611232 + ], + [ + 63.69145957581605, + 19.98101383168278 + ], + [ + 63.80630225929973, + 19.78636609675433 + ], + [ + 64.03598762626709, + 19.78636609675433 + ], + [ + 64.15083030975076, + 19.98101383168278 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.15083030975076, + 20.370309301539685 + ], + [ + 64.03598762626709, + 20.564957036468137 + ], + [ + 63.80630225929973, + 20.564957036468137 + ], + [ + 63.69145957581605, + 20.370309301539685 + ], + [ + 63.80630225929973, + 20.175661566611232 + ], + [ + 64.03598762626709, + 20.175661566611232 + ], + [ + 64.15083030975076, + 20.370309301539685 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.15083030975076, + 20.759604771396592 + ], + [ + 64.03598762626709, + 20.954252506325044 + ], + [ + 63.80630225929973, + 20.954252506325044 + ], + [ + 63.69145957581605, + 20.759604771396592 + ], + [ + 63.80630225929973, + 20.56495703646814 + ], + [ + 64.03598762626709, + 20.56495703646814 + ], + [ + 64.15083030975076, + 20.759604771396592 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.15083030975076, + 21.1489002412535 + ], + [ + 64.03598762626709, + 21.343547976181952 + ], + [ + 63.80630225929973, + 21.343547976181952 + ], + [ + 63.69145957581605, + 21.1489002412535 + ], + [ + 63.80630225929973, + 20.954252506325048 + ], + [ + 64.03598762626709, + 20.954252506325048 + ], + [ + 64.15083030975076, + 21.1489002412535 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.15083030975076, + 21.538195711110404 + ], + [ + 64.03598762626709, + 21.732843446038856 + ], + [ + 63.80630225929973, + 21.732843446038856 + ], + [ + 63.69145957581605, + 21.538195711110404 + ], + [ + 63.80630225929973, + 21.343547976181952 + ], + [ + 64.03598762626709, + 21.343547976181952 + ], + [ + 64.15083030975076, + 21.538195711110404 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.15083030975076, + 21.927491180967312 + ], + [ + 64.03598762626709, + 22.122138915895764 + ], + [ + 63.80630225929973, + 22.122138915895764 + ], + [ + 63.69145957581605, + 21.927491180967312 + ], + [ + 63.80630225929973, + 21.73284344603886 + ], + [ + 64.03598762626709, + 21.73284344603886 + ], + [ + 64.15083030975076, + 21.927491180967312 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.15083030975076, + 22.31678665082422 + ], + [ + 64.03598762626709, + 22.511434385752672 + ], + [ + 63.80630225929973, + 22.511434385752672 + ], + [ + 63.69145957581605, + 22.31678665082422 + ], + [ + 63.80630225929973, + 22.122138915895768 + ], + [ + 64.03598762626709, + 22.122138915895768 + ], + [ + 64.15083030975076, + 22.31678665082422 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.15083030975076, + 22.706082120681124 + ], + [ + 64.03598762626709, + 22.900729855609576 + ], + [ + 63.80630225929973, + 22.900729855609576 + ], + [ + 63.69145957581605, + 22.706082120681124 + ], + [ + 63.80630225929973, + 22.511434385752672 + ], + [ + 64.03598762626709, + 22.511434385752672 + ], + [ + 64.15083030975076, + 22.706082120681124 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.15083030975076, + 23.095377590538032 + ], + [ + 64.03598762626709, + 23.290025325466484 + ], + [ + 63.80630225929973, + 23.290025325466484 + ], + [ + 63.69145957581605, + 23.095377590538032 + ], + [ + 63.80630225929973, + 22.90072985560958 + ], + [ + 64.03598762626709, + 22.90072985560958 + ], + [ + 64.15083030975076, + 23.095377590538032 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.15083030975076, + 23.48467306039494 + ], + [ + 64.03598762626709, + 23.67932079532339 + ], + [ + 63.80630225929973, + 23.67932079532339 + ], + [ + 63.69145957581605, + 23.48467306039494 + ], + [ + 63.80630225929973, + 23.290025325466488 + ], + [ + 64.03598762626709, + 23.290025325466488 + ], + [ + 64.15083030975076, + 23.48467306039494 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.15083030975076, + 23.873968530251844 + ], + [ + 64.03598762626709, + 24.068616265180296 + ], + [ + 63.80630225929973, + 24.068616265180296 + ], + [ + 63.69145957581605, + 23.873968530251844 + ], + [ + 63.80630225929973, + 23.67932079532339 + ], + [ + 64.03598762626709, + 23.67932079532339 + ], + [ + 64.15083030975076, + 23.873968530251844 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.15083030975076, + 24.263264000108748 + ], + [ + 64.03598762626709, + 24.4579117350372 + ], + [ + 63.80630225929973, + 24.4579117350372 + ], + [ + 63.69145957581605, + 24.263264000108748 + ], + [ + 63.80630225929973, + 24.068616265180296 + ], + [ + 64.03598762626709, + 24.068616265180296 + ], + [ + 64.15083030975076, + 24.263264000108748 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.15083030975076, + 24.652559469965656 + ], + [ + 64.03598762626709, + 24.847207204894108 + ], + [ + 63.80630225929973, + 24.847207204894108 + ], + [ + 63.69145957581605, + 24.652559469965656 + ], + [ + 63.80630225929973, + 24.457911735037204 + ], + [ + 64.03598762626709, + 24.457911735037204 + ], + [ + 64.15083030975076, + 24.652559469965656 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.15083030975076, + 25.041854939822564 + ], + [ + 64.03598762626709, + 25.236502674751016 + ], + [ + 63.80630225929973, + 25.236502674751016 + ], + [ + 63.69145957581605, + 25.041854939822564 + ], + [ + 63.80630225929973, + 24.84720720489411 + ], + [ + 64.03598762626709, + 24.84720720489411 + ], + [ + 64.15083030975076, + 25.041854939822564 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.15083030975076, + 25.431150409679468 + ], + [ + 64.03598762626709, + 25.62579814460792 + ], + [ + 63.80630225929973, + 25.62579814460792 + ], + [ + 63.69145957581605, + 25.431150409679468 + ], + [ + 63.80630225929973, + 25.236502674751016 + ], + [ + 64.03598762626709, + 25.236502674751016 + ], + [ + 64.15083030975076, + 25.431150409679468 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.15083030975076, + 25.820445879536376 + ], + [ + 64.03598762626709, + 26.015093614464828 + ], + [ + 63.80630225929973, + 26.015093614464828 + ], + [ + 63.69145957581605, + 25.820445879536376 + ], + [ + 63.80630225929973, + 25.625798144607923 + ], + [ + 64.03598762626709, + 25.625798144607923 + ], + [ + 64.15083030975076, + 25.820445879536376 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.15083030975076, + 26.209741349393283 + ], + [ + 64.03598762626709, + 26.404389084321735 + ], + [ + 63.80630225929973, + 26.404389084321735 + ], + [ + 63.69145957581605, + 26.209741349393283 + ], + [ + 63.80630225929973, + 26.01509361446483 + ], + [ + 64.03598762626709, + 26.01509361446483 + ], + [ + 64.15083030975076, + 26.209741349393283 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.15083030975076, + 26.599036819250188 + ], + [ + 64.03598762626709, + 26.79368455417864 + ], + [ + 63.80630225929973, + 26.79368455417864 + ], + [ + 63.69145957581605, + 26.599036819250188 + ], + [ + 63.80630225929973, + 26.404389084321735 + ], + [ + 64.03598762626709, + 26.404389084321735 + ], + [ + 64.15083030975076, + 26.599036819250188 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.15083030975076, + 26.988332289107095 + ], + [ + 64.03598762626709, + 27.182980024035547 + ], + [ + 63.80630225929973, + 27.182980024035547 + ], + [ + 63.69145957581605, + 26.988332289107095 + ], + [ + 63.80630225929973, + 26.793684554178643 + ], + [ + 64.03598762626709, + 26.793684554178643 + ], + [ + 64.15083030975076, + 26.988332289107095 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.15083030975076, + 27.377627758964003 + ], + [ + 64.03598762626709, + 27.572275493892455 + ], + [ + 63.80630225929973, + 27.572275493892455 + ], + [ + 63.69145957581605, + 27.377627758964003 + ], + [ + 63.80630225929973, + 27.18298002403555 + ], + [ + 64.03598762626709, + 27.18298002403555 + ], + [ + 64.15083030975076, + 27.377627758964003 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.15083030975076, + 27.766923228820907 + ], + [ + 64.03598762626709, + 27.96157096374936 + ], + [ + 63.80630225929973, + 27.96157096374936 + ], + [ + 63.69145957581605, + 27.766923228820907 + ], + [ + 63.80630225929973, + 27.572275493892455 + ], + [ + 64.03598762626709, + 27.572275493892455 + ], + [ + 64.15083030975076, + 27.766923228820907 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.15083030975076, + 28.156218698677815 + ], + [ + 64.03598762626709, + 28.350866433606267 + ], + [ + 63.80630225929973, + 28.350866433606267 + ], + [ + 63.69145957581605, + 28.156218698677815 + ], + [ + 63.80630225929973, + 27.961570963749363 + ], + [ + 64.03598762626709, + 27.961570963749363 + ], + [ + 64.15083030975076, + 28.156218698677815 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.15083030975076, + 28.54551416853472 + ], + [ + 64.03598762626709, + 28.74016190346317 + ], + [ + 63.80630225929973, + 28.74016190346317 + ], + [ + 63.69145957581605, + 28.54551416853472 + ], + [ + 63.80630225929973, + 28.350866433606267 + ], + [ + 64.03598762626709, + 28.350866433606267 + ], + [ + 64.15083030975076, + 28.54551416853472 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.15083030975076, + 28.934809638391627 + ], + [ + 64.03598762626709, + 29.12945737332008 + ], + [ + 63.80630225929973, + 29.12945737332008 + ], + [ + 63.69145957581605, + 28.934809638391627 + ], + [ + 63.80630225929973, + 28.740161903463175 + ], + [ + 64.03598762626709, + 28.740161903463175 + ], + [ + 64.15083030975076, + 28.934809638391627 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.15083030975076, + 29.32410510824853 + ], + [ + 64.03598762626709, + 29.518752843176983 + ], + [ + 63.80630225929973, + 29.518752843176983 + ], + [ + 63.69145957581605, + 29.32410510824853 + ], + [ + 63.80630225929973, + 29.12945737332008 + ], + [ + 64.03598762626709, + 29.12945737332008 + ], + [ + 64.15083030975076, + 29.32410510824853 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.15083030975076, + 29.71340057810544 + ], + [ + 64.03598762626709, + 29.90804831303389 + ], + [ + 63.80630225929973, + 29.90804831303389 + ], + [ + 63.69145957581605, + 29.71340057810544 + ], + [ + 63.80630225929973, + 29.518752843176987 + ], + [ + 64.03598762626709, + 29.518752843176987 + ], + [ + 64.15083030975076, + 29.71340057810544 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.15083030975076, + 30.102696047962343 + ], + [ + 64.03598762626709, + 30.297343782890795 + ], + [ + 63.80630225929973, + 30.297343782890795 + ], + [ + 63.69145957581605, + 30.102696047962343 + ], + [ + 63.80630225929973, + 29.90804831303389 + ], + [ + 64.03598762626709, + 29.90804831303389 + ], + [ + 64.15083030975076, + 30.102696047962343 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.15083030975076, + 30.49199151781925 + ], + [ + 64.03598762626709, + 30.686639252747703 + ], + [ + 63.80630225929973, + 30.686639252747703 + ], + [ + 63.69145957581605, + 30.49199151781925 + ], + [ + 63.80630225929973, + 30.2973437828908 + ], + [ + 64.03598762626709, + 30.2973437828908 + ], + [ + 64.15083030975076, + 30.49199151781925 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.15083030975076, + 30.88128698767616 + ], + [ + 64.03598762626709, + 31.07593472260461 + ], + [ + 63.80630225929973, + 31.07593472260461 + ], + [ + 63.69145957581605, + 30.88128698767616 + ], + [ + 63.80630225929973, + 30.686639252747707 + ], + [ + 64.03598762626709, + 30.686639252747707 + ], + [ + 64.15083030975076, + 30.88128698767616 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.15083030975076, + 31.270582457533063 + ], + [ + 64.03598762626709, + 31.465230192461515 + ], + [ + 63.80630225929973, + 31.465230192461515 + ], + [ + 63.69145957581605, + 31.270582457533063 + ], + [ + 63.80630225929973, + 31.07593472260461 + ], + [ + 64.03598762626709, + 31.07593472260461 + ], + [ + 64.15083030975076, + 31.270582457533063 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.15083030975076, + 31.65987792738997 + ], + [ + 64.03598762626709, + 31.854525662318423 + ], + [ + 63.80630225929973, + 31.854525662318423 + ], + [ + 63.69145957581605, + 31.65987792738997 + ], + [ + 63.80630225929973, + 31.46523019246152 + ], + [ + 64.03598762626709, + 31.46523019246152 + ], + [ + 64.15083030975076, + 31.65987792738997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.15083030975076, + 32.049173397246875 + ], + [ + 64.03598762626709, + 32.24382113217533 + ], + [ + 63.80630225929973, + 32.24382113217533 + ], + [ + 63.69145957581605, + 32.049173397246875 + ], + [ + 63.80630225929973, + 31.854525662318423 + ], + [ + 64.03598762626709, + 31.854525662318423 + ], + [ + 64.15083030975076, + 32.049173397246875 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.15083030975076, + 32.438468867103786 + ], + [ + 64.03598762626709, + 32.63311660203224 + ], + [ + 63.80630225929973, + 32.63311660203224 + ], + [ + 63.69145957581605, + 32.438468867103786 + ], + [ + 63.80630225929973, + 32.243821132175334 + ], + [ + 64.03598762626709, + 32.243821132175334 + ], + [ + 64.15083030975076, + 32.438468867103786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.15083030975076, + 32.82776433696069 + ], + [ + 64.03598762626709, + 33.02241207188914 + ], + [ + 63.80630225929973, + 33.02241207188914 + ], + [ + 63.69145957581605, + 32.82776433696069 + ], + [ + 63.80630225929973, + 32.63311660203224 + ], + [ + 64.03598762626709, + 32.63311660203224 + ], + [ + 64.15083030975076, + 32.82776433696069 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.15083030975076, + 33.217059806817595 + ], + [ + 64.03598762626709, + 33.41170754174605 + ], + [ + 63.80630225929973, + 33.41170754174605 + ], + [ + 63.69145957581605, + 33.217059806817595 + ], + [ + 63.80630225929973, + 33.02241207188914 + ], + [ + 64.03598762626709, + 33.02241207188914 + ], + [ + 64.15083030975076, + 33.217059806817595 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.15083030975076, + 33.6063552766745 + ], + [ + 64.03598762626709, + 33.80100301160295 + ], + [ + 63.80630225929973, + 33.80100301160295 + ], + [ + 63.69145957581605, + 33.6063552766745 + ], + [ + 63.80630225929973, + 33.41170754174605 + ], + [ + 64.03598762626709, + 33.41170754174605 + ], + [ + 64.15083030975076, + 33.6063552766745 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.15083030975076, + 33.9956507465314 + ], + [ + 64.03598762626709, + 34.190298481459855 + ], + [ + 63.80630225929973, + 34.190298481459855 + ], + [ + 63.69145957581605, + 33.9956507465314 + ], + [ + 63.80630225929973, + 33.80100301160295 + ], + [ + 64.03598762626709, + 33.80100301160295 + ], + [ + 64.15083030975076, + 33.9956507465314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.15083030975076, + 34.384946216388315 + ], + [ + 64.03598762626709, + 34.57959395131677 + ], + [ + 63.80630225929973, + 34.57959395131677 + ], + [ + 63.69145957581605, + 34.384946216388315 + ], + [ + 63.80630225929973, + 34.19029848145986 + ], + [ + 64.03598762626709, + 34.19029848145986 + ], + [ + 64.15083030975076, + 34.384946216388315 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.15083030975076, + 34.774241686245226 + ], + [ + 64.03598762626709, + 34.96888942117368 + ], + [ + 63.80630225929973, + 34.96888942117368 + ], + [ + 63.69145957581605, + 34.774241686245226 + ], + [ + 63.80630225929973, + 34.579593951316774 + ], + [ + 64.03598762626709, + 34.579593951316774 + ], + [ + 64.15083030975076, + 34.774241686245226 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.15083030975076, + 35.16353715610213 + ], + [ + 64.03598762626709, + 35.35818489103058 + ], + [ + 63.80630225929973, + 35.35818489103058 + ], + [ + 63.69145957581605, + 35.16353715610213 + ], + [ + 63.80630225929973, + 34.96888942117368 + ], + [ + 64.03598762626709, + 34.96888942117368 + ], + [ + 64.15083030975076, + 35.16353715610213 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.15083030975076, + 35.552832625959034 + ], + [ + 64.03598762626709, + 35.74748036088749 + ], + [ + 63.80630225929973, + 35.74748036088749 + ], + [ + 63.69145957581605, + 35.552832625959034 + ], + [ + 63.80630225929973, + 35.35818489103058 + ], + [ + 64.03598762626709, + 35.35818489103058 + ], + [ + 64.15083030975076, + 35.552832625959034 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.15083030975076, + 35.94212809581594 + ], + [ + 64.03598762626709, + 36.13677583074439 + ], + [ + 63.80630225929973, + 36.13677583074439 + ], + [ + 63.69145957581605, + 35.94212809581594 + ], + [ + 63.80630225929973, + 35.74748036088749 + ], + [ + 64.03598762626709, + 35.74748036088749 + ], + [ + 64.15083030975076, + 35.94212809581594 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.15083030975076, + 36.33142356567284 + ], + [ + 64.03598762626709, + 36.526071300601295 + ], + [ + 63.80630225929973, + 36.526071300601295 + ], + [ + 63.69145957581605, + 36.33142356567284 + ], + [ + 63.80630225929973, + 36.13677583074439 + ], + [ + 64.03598762626709, + 36.13677583074439 + ], + [ + 64.15083030975076, + 36.33142356567284 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.15083030975076, + 36.720719035529754 + ], + [ + 64.03598762626709, + 36.915366770458206 + ], + [ + 63.80630225929973, + 36.915366770458206 + ], + [ + 63.69145957581605, + 36.720719035529754 + ], + [ + 63.80630225929973, + 36.5260713006013 + ], + [ + 64.03598762626709, + 36.5260713006013 + ], + [ + 64.15083030975076, + 36.720719035529754 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.15083030975076, + 37.11001450538666 + ], + [ + 64.03598762626709, + 37.30466224031511 + ], + [ + 63.80630225929973, + 37.30466224031511 + ], + [ + 63.69145957581605, + 37.11001450538666 + ], + [ + 63.80630225929973, + 36.915366770458206 + ], + [ + 64.03598762626709, + 36.915366770458206 + ], + [ + 64.15083030975076, + 37.11001450538666 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.15083030975076, + 37.49930997524357 + ], + [ + 64.03598762626709, + 37.69395771017202 + ], + [ + 63.80630225929973, + 37.69395771017202 + ], + [ + 63.69145957581605, + 37.49930997524357 + ], + [ + 63.80630225929973, + 37.30466224031512 + ], + [ + 64.03598762626709, + 37.30466224031512 + ], + [ + 64.15083030975076, + 37.49930997524357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.15083030975076, + 37.888605445100474 + ], + [ + 64.03598762626709, + 38.083253180028926 + ], + [ + 63.80630225929973, + 38.083253180028926 + ], + [ + 63.69145957581605, + 37.888605445100474 + ], + [ + 63.80630225929973, + 37.69395771017202 + ], + [ + 64.03598762626709, + 37.69395771017202 + ], + [ + 64.15083030975076, + 37.888605445100474 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.15083030975076, + 38.27790091495738 + ], + [ + 64.03598762626709, + 38.47254864988583 + ], + [ + 63.80630225929973, + 38.47254864988583 + ], + [ + 63.69145957581605, + 38.27790091495738 + ], + [ + 63.80630225929973, + 38.083253180028926 + ], + [ + 64.03598762626709, + 38.083253180028926 + ], + [ + 64.15083030975076, + 38.27790091495738 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.15083030975076, + 38.66719638481428 + ], + [ + 64.03598762626709, + 38.861844119742734 + ], + [ + 63.80630225929973, + 38.861844119742734 + ], + [ + 63.69145957581605, + 38.66719638481428 + ], + [ + 63.80630225929973, + 38.47254864988583 + ], + [ + 64.03598762626709, + 38.47254864988583 + ], + [ + 64.15083030975076, + 38.66719638481428 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.15083030975076, + 39.05649185467119 + ], + [ + 64.03598762626709, + 39.25113958959964 + ], + [ + 63.80630225929973, + 39.25113958959964 + ], + [ + 63.69145957581605, + 39.05649185467119 + ], + [ + 63.80630225929973, + 38.861844119742734 + ], + [ + 64.03598762626709, + 38.861844119742734 + ], + [ + 64.15083030975076, + 39.05649185467119 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.15083030975076, + 39.4457873245281 + ], + [ + 64.03598762626709, + 39.64043505945655 + ], + [ + 63.80630225929973, + 39.64043505945655 + ], + [ + 63.69145957581605, + 39.4457873245281 + ], + [ + 63.80630225929973, + 39.251139589599646 + ], + [ + 64.03598762626709, + 39.251139589599646 + ], + [ + 64.15083030975076, + 39.4457873245281 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.15083030975076, + 39.835082794385 + ], + [ + 64.03598762626709, + 40.029730529313454 + ], + [ + 63.80630225929973, + 40.029730529313454 + ], + [ + 63.69145957581605, + 39.835082794385 + ], + [ + 63.80630225929973, + 39.64043505945655 + ], + [ + 64.03598762626709, + 39.64043505945655 + ], + [ + 64.15083030975076, + 39.835082794385 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.15083030975076, + 40.22437826424191 + ], + [ + 64.03598762626709, + 40.419025999170366 + ], + [ + 63.80630225929973, + 40.419025999170366 + ], + [ + 63.69145957581605, + 40.22437826424191 + ], + [ + 63.80630225929973, + 40.02973052931346 + ], + [ + 64.03598762626709, + 40.02973052931346 + ], + [ + 64.15083030975076, + 40.22437826424191 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.15083030975076, + 40.61367373409882 + ], + [ + 64.03598762626709, + 40.80832146902727 + ], + [ + 63.80630225929973, + 40.80832146902727 + ], + [ + 63.69145957581605, + 40.61367373409882 + ], + [ + 63.80630225929973, + 40.419025999170366 + ], + [ + 64.03598762626709, + 40.419025999170366 + ], + [ + 64.15083030975076, + 40.61367373409882 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.15083030975076, + 41.00296920395572 + ], + [ + 64.03598762626709, + 41.197616938884174 + ], + [ + 63.80630225929973, + 41.197616938884174 + ], + [ + 63.69145957581605, + 41.00296920395572 + ], + [ + 63.80630225929973, + 40.80832146902727 + ], + [ + 64.03598762626709, + 40.80832146902727 + ], + [ + 64.15083030975076, + 41.00296920395572 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.15083030975076, + 41.392264673812626 + ], + [ + 64.03598762626709, + 41.58691240874108 + ], + [ + 63.80630225929973, + 41.58691240874108 + ], + [ + 63.69145957581605, + 41.392264673812626 + ], + [ + 63.80630225929973, + 41.197616938884174 + ], + [ + 64.03598762626709, + 41.197616938884174 + ], + [ + 64.15083030975076, + 41.392264673812626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.15083030975076, + 41.78156014366953 + ], + [ + 64.03598762626709, + 41.97620787859798 + ], + [ + 63.80630225929973, + 41.97620787859798 + ], + [ + 63.69145957581605, + 41.78156014366953 + ], + [ + 63.80630225929973, + 41.58691240874108 + ], + [ + 64.03598762626709, + 41.58691240874108 + ], + [ + 64.15083030975076, + 41.78156014366953 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.15083030975076, + 42.17085561352644 + ], + [ + 64.03598762626709, + 42.365503348454894 + ], + [ + 63.80630225929973, + 42.365503348454894 + ], + [ + 63.69145957581605, + 42.17085561352644 + ], + [ + 63.80630225929973, + 41.97620787859799 + ], + [ + 64.03598762626709, + 41.97620787859799 + ], + [ + 64.15083030975076, + 42.17085561352644 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.15083030975076, + 42.56015108338335 + ], + [ + 64.03598762626709, + 42.754798818311805 + ], + [ + 63.80630225929973, + 42.754798818311805 + ], + [ + 63.69145957581605, + 42.56015108338335 + ], + [ + 63.80630225929973, + 42.3655033484549 + ], + [ + 64.03598762626709, + 42.3655033484549 + ], + [ + 64.15083030975076, + 42.56015108338335 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.15083030975076, + 42.94944655324026 + ], + [ + 64.03598762626709, + 43.14409428816871 + ], + [ + 63.80630225929973, + 43.14409428816871 + ], + [ + 63.69145957581605, + 42.94944655324026 + ], + [ + 63.80630225929973, + 42.754798818311805 + ], + [ + 64.03598762626709, + 42.754798818311805 + ], + [ + 64.15083030975076, + 42.94944655324026 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.15083030975076, + 43.33874202309716 + ], + [ + 64.03598762626709, + 43.53338975802561 + ], + [ + 63.80630225929973, + 43.53338975802561 + ], + [ + 63.69145957581605, + 43.33874202309716 + ], + [ + 63.80630225929973, + 43.14409428816871 + ], + [ + 64.03598762626709, + 43.14409428816871 + ], + [ + 64.15083030975076, + 43.33874202309716 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.15083030975076, + 43.728037492954066 + ], + [ + 64.03598762626709, + 43.92268522788252 + ], + [ + 63.80630225929973, + 43.92268522788252 + ], + [ + 63.69145957581605, + 43.728037492954066 + ], + [ + 63.80630225929973, + 43.53338975802561 + ], + [ + 64.03598762626709, + 43.53338975802561 + ], + [ + 64.15083030975076, + 43.728037492954066 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.15083030975076, + 44.11733296281097 + ], + [ + 64.03598762626709, + 44.31198069773942 + ], + [ + 63.80630225929973, + 44.31198069773942 + ], + [ + 63.69145957581605, + 44.11733296281097 + ], + [ + 63.80630225929973, + 43.92268522788252 + ], + [ + 64.03598762626709, + 43.92268522788252 + ], + [ + 64.15083030975076, + 44.11733296281097 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.15083030975076, + 44.506628432667874 + ], + [ + 64.03598762626709, + 44.701276167596326 + ], + [ + 63.80630225929973, + 44.701276167596326 + ], + [ + 63.69145957581605, + 44.506628432667874 + ], + [ + 63.80630225929973, + 44.31198069773942 + ], + [ + 64.03598762626709, + 44.31198069773942 + ], + [ + 64.15083030975076, + 44.506628432667874 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.15083030975076, + 44.89592390252479 + ], + [ + 64.03598762626709, + 45.090571637453245 + ], + [ + 63.80630225929973, + 45.090571637453245 + ], + [ + 63.69145957581605, + 44.89592390252479 + ], + [ + 63.80630225929973, + 44.70127616759634 + ], + [ + 64.03598762626709, + 44.70127616759634 + ], + [ + 64.15083030975076, + 44.89592390252479 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.15083030975076, + 45.2852193723817 + ], + [ + 64.03598762626709, + 45.47986710731015 + ], + [ + 63.80630225929973, + 45.47986710731015 + ], + [ + 63.69145957581605, + 45.2852193723817 + ], + [ + 63.80630225929973, + 45.090571637453245 + ], + [ + 64.03598762626709, + 45.090571637453245 + ], + [ + 64.15083030975076, + 45.2852193723817 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.15083030975076, + 45.6745148422386 + ], + [ + 64.03598762626709, + 45.86916257716705 + ], + [ + 63.80630225929973, + 45.86916257716705 + ], + [ + 63.69145957581605, + 45.6745148422386 + ], + [ + 63.80630225929973, + 45.47986710731015 + ], + [ + 64.03598762626709, + 45.47986710731015 + ], + [ + 64.15083030975076, + 45.6745148422386 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.15083030975076, + 46.063810312095505 + ], + [ + 64.03598762626709, + 46.25845804702396 + ], + [ + 63.80630225929973, + 46.25845804702396 + ], + [ + 63.69145957581605, + 46.063810312095505 + ], + [ + 63.80630225929973, + 45.86916257716705 + ], + [ + 64.03598762626709, + 45.86916257716705 + ], + [ + 64.15083030975076, + 46.063810312095505 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.15083030975076, + 46.45310578195241 + ], + [ + 64.03598762626709, + 46.64775351688086 + ], + [ + 63.80630225929973, + 46.64775351688086 + ], + [ + 63.69145957581605, + 46.45310578195241 + ], + [ + 63.80630225929973, + 46.25845804702396 + ], + [ + 64.03598762626709, + 46.25845804702396 + ], + [ + 64.15083030975076, + 46.45310578195241 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.15083030975076, + 46.842401251809314 + ], + [ + 64.03598762626709, + 47.037048986737766 + ], + [ + 63.80630225929973, + 47.037048986737766 + ], + [ + 63.69145957581605, + 46.842401251809314 + ], + [ + 63.80630225929973, + 46.64775351688086 + ], + [ + 64.03598762626709, + 46.64775351688086 + ], + [ + 64.15083030975076, + 46.842401251809314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.15083030975076, + 47.23169672166622 + ], + [ + 64.03598762626709, + 47.42634445659467 + ], + [ + 63.80630225929973, + 47.42634445659467 + ], + [ + 63.69145957581605, + 47.23169672166622 + ], + [ + 63.80630225929973, + 47.037048986737766 + ], + [ + 64.03598762626709, + 47.037048986737766 + ], + [ + 64.15083030975076, + 47.23169672166622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.15083030975076, + 47.620992191523136 + ], + [ + 64.03598762626709, + 47.81563992645159 + ], + [ + 63.80630225929973, + 47.81563992645159 + ], + [ + 63.69145957581605, + 47.620992191523136 + ], + [ + 63.80630225929973, + 47.426344456594684 + ], + [ + 64.03598762626709, + 47.426344456594684 + ], + [ + 64.15083030975076, + 47.620992191523136 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.4953583602018, + 12.0004566996162 + ], + [ + 64.38051567671812, + 12.195104434544653 + ], + [ + 64.15083030975077, + 12.195104434544653 + ], + [ + 64.03598762626709, + 12.0004566996162 + ], + [ + 64.15083030975077, + 11.805808964687746 + ], + [ + 64.38051567671812, + 11.805808964687746 + ], + [ + 64.4953583602018, + 12.0004566996162 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.4953583602018, + 12.389752169473105 + ], + [ + 64.38051567671812, + 12.58439990440156 + ], + [ + 64.15083030975077, + 12.58439990440156 + ], + [ + 64.03598762626709, + 12.389752169473105 + ], + [ + 64.15083030975077, + 12.195104434544652 + ], + [ + 64.38051567671812, + 12.195104434544652 + ], + [ + 64.4953583602018, + 12.389752169473105 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.4953583602018, + 12.779047639330013 + ], + [ + 64.38051567671812, + 12.973695374258467 + ], + [ + 64.15083030975077, + 12.973695374258467 + ], + [ + 64.03598762626709, + 12.779047639330013 + ], + [ + 64.15083030975077, + 12.58439990440156 + ], + [ + 64.38051567671812, + 12.58439990440156 + ], + [ + 64.4953583602018, + 12.779047639330013 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.4953583602018, + 13.16834310918692 + ], + [ + 64.38051567671812, + 13.362990844115373 + ], + [ + 64.15083030975077, + 13.362990844115373 + ], + [ + 64.03598762626709, + 13.16834310918692 + ], + [ + 64.15083030975077, + 12.973695374258465 + ], + [ + 64.38051567671812, + 12.973695374258465 + ], + [ + 64.4953583602018, + 13.16834310918692 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.4953583602018, + 13.557638579043825 + ], + [ + 64.38051567671812, + 13.752286313972279 + ], + [ + 64.15083030975077, + 13.752286313972279 + ], + [ + 64.03598762626709, + 13.557638579043825 + ], + [ + 64.15083030975077, + 13.362990844115371 + ], + [ + 64.38051567671812, + 13.362990844115371 + ], + [ + 64.4953583602018, + 13.557638579043825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.4953583602018, + 13.946934048900731 + ], + [ + 64.38051567671812, + 14.141581783829185 + ], + [ + 64.15083030975077, + 14.141581783829185 + ], + [ + 64.03598762626709, + 13.946934048900731 + ], + [ + 64.15083030975077, + 13.752286313972277 + ], + [ + 64.38051567671812, + 13.752286313972277 + ], + [ + 64.4953583602018, + 13.946934048900731 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.4953583602018, + 14.336229518757637 + ], + [ + 64.38051567671812, + 14.530877253686091 + ], + [ + 64.15083030975077, + 14.530877253686091 + ], + [ + 64.03598762626709, + 14.336229518757637 + ], + [ + 64.15083030975077, + 14.141581783829183 + ], + [ + 64.38051567671812, + 14.141581783829183 + ], + [ + 64.4953583602018, + 14.336229518757637 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.4953583602018, + 14.725524988614545 + ], + [ + 64.38051567671812, + 14.920172723542999 + ], + [ + 64.15083030975077, + 14.920172723542999 + ], + [ + 64.03598762626709, + 14.725524988614545 + ], + [ + 64.15083030975077, + 14.530877253686091 + ], + [ + 64.38051567671812, + 14.530877253686091 + ], + [ + 64.4953583602018, + 14.725524988614545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.4953583602018, + 15.114820458471451 + ], + [ + 64.38051567671812, + 15.309468193399905 + ], + [ + 64.15083030975077, + 15.309468193399905 + ], + [ + 64.03598762626709, + 15.114820458471451 + ], + [ + 64.15083030975077, + 14.920172723542997 + ], + [ + 64.38051567671812, + 14.920172723542997 + ], + [ + 64.4953583602018, + 15.114820458471451 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.4953583602018, + 15.504115928328357 + ], + [ + 64.38051567671812, + 15.69876366325681 + ], + [ + 64.15083030975077, + 15.69876366325681 + ], + [ + 64.03598762626709, + 15.504115928328357 + ], + [ + 64.15083030975077, + 15.309468193399903 + ], + [ + 64.38051567671812, + 15.309468193399903 + ], + [ + 64.4953583602018, + 15.504115928328357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.4953583602018, + 15.893411398185265 + ], + [ + 64.38051567671812, + 16.088059133113717 + ], + [ + 64.15083030975077, + 16.088059133113717 + ], + [ + 64.03598762626709, + 15.893411398185265 + ], + [ + 64.15083030975077, + 15.69876366325681 + ], + [ + 64.38051567671812, + 15.69876366325681 + ], + [ + 64.4953583602018, + 15.893411398185265 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.4953583602018, + 16.28270686804217 + ], + [ + 64.38051567671812, + 16.47735460297062 + ], + [ + 64.15083030975077, + 16.47735460297062 + ], + [ + 64.03598762626709, + 16.28270686804217 + ], + [ + 64.15083030975077, + 16.088059133113717 + ], + [ + 64.38051567671812, + 16.088059133113717 + ], + [ + 64.4953583602018, + 16.28270686804217 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.4953583602018, + 16.672002337899077 + ], + [ + 64.38051567671812, + 16.86665007282753 + ], + [ + 64.15083030975077, + 16.86665007282753 + ], + [ + 64.03598762626709, + 16.672002337899077 + ], + [ + 64.15083030975077, + 16.477354602970625 + ], + [ + 64.38051567671812, + 16.477354602970625 + ], + [ + 64.4953583602018, + 16.672002337899077 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.4953583602018, + 17.06129780775598 + ], + [ + 64.38051567671812, + 17.255945542684433 + ], + [ + 64.15083030975077, + 17.255945542684433 + ], + [ + 64.03598762626709, + 17.06129780775598 + ], + [ + 64.15083030975077, + 16.86665007282753 + ], + [ + 64.38051567671812, + 16.86665007282753 + ], + [ + 64.4953583602018, + 17.06129780775598 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.4953583602018, + 17.45059327761289 + ], + [ + 64.38051567671812, + 17.64524101254134 + ], + [ + 64.15083030975077, + 17.64524101254134 + ], + [ + 64.03598762626709, + 17.45059327761289 + ], + [ + 64.15083030975077, + 17.255945542684437 + ], + [ + 64.38051567671812, + 17.255945542684437 + ], + [ + 64.4953583602018, + 17.45059327761289 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.4953583602018, + 17.839888747469793 + ], + [ + 64.38051567671812, + 18.034536482398245 + ], + [ + 64.15083030975077, + 18.034536482398245 + ], + [ + 64.03598762626709, + 17.839888747469793 + ], + [ + 64.15083030975077, + 17.64524101254134 + ], + [ + 64.38051567671812, + 17.64524101254134 + ], + [ + 64.4953583602018, + 17.839888747469793 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.4953583602018, + 18.2291842173267 + ], + [ + 64.38051567671812, + 18.423831952255153 + ], + [ + 64.15083030975077, + 18.423831952255153 + ], + [ + 64.03598762626709, + 18.2291842173267 + ], + [ + 64.15083030975077, + 18.03453648239825 + ], + [ + 64.38051567671812, + 18.03453648239825 + ], + [ + 64.4953583602018, + 18.2291842173267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.4953583602018, + 18.61847968718361 + ], + [ + 64.38051567671812, + 18.81312742211206 + ], + [ + 64.15083030975077, + 18.81312742211206 + ], + [ + 64.03598762626709, + 18.61847968718361 + ], + [ + 64.15083030975077, + 18.423831952255156 + ], + [ + 64.38051567671812, + 18.423831952255156 + ], + [ + 64.4953583602018, + 18.61847968718361 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.4953583602018, + 19.007775157040513 + ], + [ + 64.38051567671812, + 19.202422891968965 + ], + [ + 64.15083030975077, + 19.202422891968965 + ], + [ + 64.03598762626709, + 19.007775157040513 + ], + [ + 64.15083030975077, + 18.81312742211206 + ], + [ + 64.38051567671812, + 18.81312742211206 + ], + [ + 64.4953583602018, + 19.007775157040513 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.4953583602018, + 19.39707062689742 + ], + [ + 64.38051567671812, + 19.591718361825873 + ], + [ + 64.15083030975077, + 19.591718361825873 + ], + [ + 64.03598762626709, + 19.39707062689742 + ], + [ + 64.15083030975077, + 19.20242289196897 + ], + [ + 64.38051567671812, + 19.20242289196897 + ], + [ + 64.4953583602018, + 19.39707062689742 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.4953583602018, + 19.78636609675433 + ], + [ + 64.38051567671812, + 19.98101383168278 + ], + [ + 64.15083030975077, + 19.98101383168278 + ], + [ + 64.03598762626709, + 19.78636609675433 + ], + [ + 64.15083030975077, + 19.591718361825876 + ], + [ + 64.38051567671812, + 19.591718361825876 + ], + [ + 64.4953583602018, + 19.78636609675433 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.4953583602018, + 20.175661566611232 + ], + [ + 64.38051567671812, + 20.370309301539685 + ], + [ + 64.15083030975077, + 20.370309301539685 + ], + [ + 64.03598762626709, + 20.175661566611232 + ], + [ + 64.15083030975077, + 19.98101383168278 + ], + [ + 64.38051567671812, + 19.98101383168278 + ], + [ + 64.4953583602018, + 20.175661566611232 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.4953583602018, + 20.564957036468137 + ], + [ + 64.38051567671812, + 20.75960477139659 + ], + [ + 64.15083030975077, + 20.75960477139659 + ], + [ + 64.03598762626709, + 20.564957036468137 + ], + [ + 64.15083030975077, + 20.370309301539685 + ], + [ + 64.38051567671812, + 20.370309301539685 + ], + [ + 64.4953583602018, + 20.564957036468137 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.4953583602018, + 20.954252506325044 + ], + [ + 64.38051567671812, + 21.148900241253497 + ], + [ + 64.15083030975077, + 21.148900241253497 + ], + [ + 64.03598762626709, + 20.954252506325044 + ], + [ + 64.15083030975077, + 20.759604771396592 + ], + [ + 64.38051567671812, + 20.759604771396592 + ], + [ + 64.4953583602018, + 20.954252506325044 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.4953583602018, + 21.343547976181952 + ], + [ + 64.38051567671812, + 21.538195711110404 + ], + [ + 64.15083030975077, + 21.538195711110404 + ], + [ + 64.03598762626709, + 21.343547976181952 + ], + [ + 64.15083030975077, + 21.1489002412535 + ], + [ + 64.38051567671812, + 21.1489002412535 + ], + [ + 64.4953583602018, + 21.343547976181952 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.4953583602018, + 21.732843446038856 + ], + [ + 64.38051567671812, + 21.92749118096731 + ], + [ + 64.15083030975077, + 21.92749118096731 + ], + [ + 64.03598762626709, + 21.732843446038856 + ], + [ + 64.15083030975077, + 21.538195711110404 + ], + [ + 64.38051567671812, + 21.538195711110404 + ], + [ + 64.4953583602018, + 21.732843446038856 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.4953583602018, + 22.122138915895764 + ], + [ + 64.38051567671812, + 22.316786650824216 + ], + [ + 64.15083030975077, + 22.316786650824216 + ], + [ + 64.03598762626709, + 22.122138915895764 + ], + [ + 64.15083030975077, + 21.927491180967312 + ], + [ + 64.38051567671812, + 21.927491180967312 + ], + [ + 64.4953583602018, + 22.122138915895764 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.4953583602018, + 22.511434385752672 + ], + [ + 64.38051567671812, + 22.706082120681124 + ], + [ + 64.15083030975077, + 22.706082120681124 + ], + [ + 64.03598762626709, + 22.511434385752672 + ], + [ + 64.15083030975077, + 22.31678665082422 + ], + [ + 64.38051567671812, + 22.31678665082422 + ], + [ + 64.4953583602018, + 22.511434385752672 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.4953583602018, + 22.900729855609576 + ], + [ + 64.38051567671812, + 23.09537759053803 + ], + [ + 64.15083030975077, + 23.09537759053803 + ], + [ + 64.03598762626709, + 22.900729855609576 + ], + [ + 64.15083030975077, + 22.706082120681124 + ], + [ + 64.38051567671812, + 22.706082120681124 + ], + [ + 64.4953583602018, + 22.900729855609576 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.4953583602018, + 23.290025325466484 + ], + [ + 64.38051567671812, + 23.484673060394936 + ], + [ + 64.15083030975077, + 23.484673060394936 + ], + [ + 64.03598762626709, + 23.290025325466484 + ], + [ + 64.15083030975077, + 23.095377590538032 + ], + [ + 64.38051567671812, + 23.095377590538032 + ], + [ + 64.4953583602018, + 23.290025325466484 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.4953583602018, + 23.67932079532339 + ], + [ + 64.38051567671812, + 23.873968530251844 + ], + [ + 64.15083030975077, + 23.873968530251844 + ], + [ + 64.03598762626709, + 23.67932079532339 + ], + [ + 64.15083030975077, + 23.48467306039494 + ], + [ + 64.38051567671812, + 23.48467306039494 + ], + [ + 64.4953583602018, + 23.67932079532339 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.4953583602018, + 24.068616265180296 + ], + [ + 64.38051567671812, + 24.263264000108748 + ], + [ + 64.15083030975077, + 24.263264000108748 + ], + [ + 64.03598762626709, + 24.068616265180296 + ], + [ + 64.15083030975077, + 23.873968530251844 + ], + [ + 64.38051567671812, + 23.873968530251844 + ], + [ + 64.4953583602018, + 24.068616265180296 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.4953583602018, + 24.4579117350372 + ], + [ + 64.38051567671812, + 24.652559469965652 + ], + [ + 64.15083030975077, + 24.652559469965652 + ], + [ + 64.03598762626709, + 24.4579117350372 + ], + [ + 64.15083030975077, + 24.263264000108748 + ], + [ + 64.38051567671812, + 24.263264000108748 + ], + [ + 64.4953583602018, + 24.4579117350372 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.4953583602018, + 24.847207204894108 + ], + [ + 64.38051567671812, + 25.04185493982256 + ], + [ + 64.15083030975077, + 25.04185493982256 + ], + [ + 64.03598762626709, + 24.847207204894108 + ], + [ + 64.15083030975077, + 24.652559469965656 + ], + [ + 64.38051567671812, + 24.652559469965656 + ], + [ + 64.4953583602018, + 24.847207204894108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.4953583602018, + 25.236502674751016 + ], + [ + 64.38051567671812, + 25.431150409679468 + ], + [ + 64.15083030975077, + 25.431150409679468 + ], + [ + 64.03598762626709, + 25.236502674751016 + ], + [ + 64.15083030975077, + 25.041854939822564 + ], + [ + 64.38051567671812, + 25.041854939822564 + ], + [ + 64.4953583602018, + 25.236502674751016 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.4953583602018, + 25.62579814460792 + ], + [ + 64.38051567671812, + 25.820445879536372 + ], + [ + 64.15083030975077, + 25.820445879536372 + ], + [ + 64.03598762626709, + 25.62579814460792 + ], + [ + 64.15083030975077, + 25.431150409679468 + ], + [ + 64.38051567671812, + 25.431150409679468 + ], + [ + 64.4953583602018, + 25.62579814460792 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.4953583602018, + 26.015093614464828 + ], + [ + 64.38051567671812, + 26.20974134939328 + ], + [ + 64.15083030975077, + 26.20974134939328 + ], + [ + 64.03598762626709, + 26.015093614464828 + ], + [ + 64.15083030975077, + 25.820445879536376 + ], + [ + 64.38051567671812, + 25.820445879536376 + ], + [ + 64.4953583602018, + 26.015093614464828 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.4953583602018, + 26.404389084321735 + ], + [ + 64.38051567671812, + 26.599036819250188 + ], + [ + 64.15083030975077, + 26.599036819250188 + ], + [ + 64.03598762626709, + 26.404389084321735 + ], + [ + 64.15083030975077, + 26.209741349393283 + ], + [ + 64.38051567671812, + 26.209741349393283 + ], + [ + 64.4953583602018, + 26.404389084321735 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.4953583602018, + 26.79368455417864 + ], + [ + 64.38051567671812, + 26.988332289107092 + ], + [ + 64.15083030975077, + 26.988332289107092 + ], + [ + 64.03598762626709, + 26.79368455417864 + ], + [ + 64.15083030975077, + 26.599036819250188 + ], + [ + 64.38051567671812, + 26.599036819250188 + ], + [ + 64.4953583602018, + 26.79368455417864 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.4953583602018, + 27.182980024035547 + ], + [ + 64.38051567671812, + 27.377627758964 + ], + [ + 64.15083030975077, + 27.377627758964 + ], + [ + 64.03598762626709, + 27.182980024035547 + ], + [ + 64.15083030975077, + 26.988332289107095 + ], + [ + 64.38051567671812, + 26.988332289107095 + ], + [ + 64.4953583602018, + 27.182980024035547 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.4953583602018, + 27.572275493892455 + ], + [ + 64.38051567671812, + 27.766923228820907 + ], + [ + 64.15083030975077, + 27.766923228820907 + ], + [ + 64.03598762626709, + 27.572275493892455 + ], + [ + 64.15083030975077, + 27.377627758964003 + ], + [ + 64.38051567671812, + 27.377627758964003 + ], + [ + 64.4953583602018, + 27.572275493892455 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.4953583602018, + 27.96157096374936 + ], + [ + 64.38051567671812, + 28.15621869867781 + ], + [ + 64.15083030975077, + 28.15621869867781 + ], + [ + 64.03598762626709, + 27.96157096374936 + ], + [ + 64.15083030975077, + 27.766923228820907 + ], + [ + 64.38051567671812, + 27.766923228820907 + ], + [ + 64.4953583602018, + 27.96157096374936 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.4953583602018, + 28.350866433606267 + ], + [ + 64.38051567671812, + 28.54551416853472 + ], + [ + 64.15083030975077, + 28.54551416853472 + ], + [ + 64.03598762626709, + 28.350866433606267 + ], + [ + 64.15083030975077, + 28.156218698677815 + ], + [ + 64.38051567671812, + 28.156218698677815 + ], + [ + 64.4953583602018, + 28.350866433606267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.4953583602018, + 28.74016190346317 + ], + [ + 64.38051567671812, + 28.934809638391624 + ], + [ + 64.15083030975077, + 28.934809638391624 + ], + [ + 64.03598762626709, + 28.74016190346317 + ], + [ + 64.15083030975077, + 28.54551416853472 + ], + [ + 64.38051567671812, + 28.54551416853472 + ], + [ + 64.4953583602018, + 28.74016190346317 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.4953583602018, + 29.12945737332008 + ], + [ + 64.38051567671812, + 29.32410510824853 + ], + [ + 64.15083030975077, + 29.32410510824853 + ], + [ + 64.03598762626709, + 29.12945737332008 + ], + [ + 64.15083030975077, + 28.934809638391627 + ], + [ + 64.38051567671812, + 28.934809638391627 + ], + [ + 64.4953583602018, + 29.12945737332008 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.4953583602018, + 29.518752843176983 + ], + [ + 64.38051567671812, + 29.713400578105436 + ], + [ + 64.15083030975077, + 29.713400578105436 + ], + [ + 64.03598762626709, + 29.518752843176983 + ], + [ + 64.15083030975077, + 29.32410510824853 + ], + [ + 64.38051567671812, + 29.32410510824853 + ], + [ + 64.4953583602018, + 29.518752843176983 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.4953583602018, + 29.90804831303389 + ], + [ + 64.38051567671812, + 30.102696047962343 + ], + [ + 64.15083030975077, + 30.102696047962343 + ], + [ + 64.03598762626709, + 29.90804831303389 + ], + [ + 64.15083030975077, + 29.71340057810544 + ], + [ + 64.38051567671812, + 29.71340057810544 + ], + [ + 64.4953583602018, + 29.90804831303389 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.4953583602018, + 30.297343782890795 + ], + [ + 64.38051567671812, + 30.491991517819248 + ], + [ + 64.15083030975077, + 30.491991517819248 + ], + [ + 64.03598762626709, + 30.297343782890795 + ], + [ + 64.15083030975077, + 30.102696047962343 + ], + [ + 64.38051567671812, + 30.102696047962343 + ], + [ + 64.4953583602018, + 30.297343782890795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.4953583602018, + 30.686639252747703 + ], + [ + 64.38051567671812, + 30.881286987676155 + ], + [ + 64.15083030975077, + 30.881286987676155 + ], + [ + 64.03598762626709, + 30.686639252747703 + ], + [ + 64.15083030975077, + 30.49199151781925 + ], + [ + 64.38051567671812, + 30.49199151781925 + ], + [ + 64.4953583602018, + 30.686639252747703 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.4953583602018, + 31.07593472260461 + ], + [ + 64.38051567671812, + 31.270582457533063 + ], + [ + 64.15083030975077, + 31.270582457533063 + ], + [ + 64.03598762626709, + 31.07593472260461 + ], + [ + 64.15083030975077, + 30.88128698767616 + ], + [ + 64.38051567671812, + 30.88128698767616 + ], + [ + 64.4953583602018, + 31.07593472260461 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.4953583602018, + 31.465230192461515 + ], + [ + 64.38051567671812, + 31.659877927389967 + ], + [ + 64.15083030975077, + 31.659877927389967 + ], + [ + 64.03598762626709, + 31.465230192461515 + ], + [ + 64.15083030975077, + 31.270582457533063 + ], + [ + 64.38051567671812, + 31.270582457533063 + ], + [ + 64.4953583602018, + 31.465230192461515 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.4953583602018, + 31.854525662318423 + ], + [ + 64.38051567671812, + 32.049173397246875 + ], + [ + 64.15083030975077, + 32.049173397246875 + ], + [ + 64.03598762626709, + 31.854525662318423 + ], + [ + 64.15083030975077, + 31.65987792738997 + ], + [ + 64.38051567671812, + 31.65987792738997 + ], + [ + 64.4953583602018, + 31.854525662318423 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.4953583602018, + 32.24382113217533 + ], + [ + 64.38051567671812, + 32.43846886710378 + ], + [ + 64.15083030975077, + 32.43846886710378 + ], + [ + 64.03598762626709, + 32.24382113217533 + ], + [ + 64.15083030975077, + 32.049173397246875 + ], + [ + 64.38051567671812, + 32.049173397246875 + ], + [ + 64.4953583602018, + 32.24382113217533 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.4953583602018, + 32.63311660203224 + ], + [ + 64.38051567671812, + 32.82776433696069 + ], + [ + 64.15083030975077, + 32.82776433696069 + ], + [ + 64.03598762626709, + 32.63311660203224 + ], + [ + 64.15083030975077, + 32.438468867103786 + ], + [ + 64.38051567671812, + 32.438468867103786 + ], + [ + 64.4953583602018, + 32.63311660203224 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.4953583602018, + 33.02241207188914 + ], + [ + 64.38051567671812, + 33.217059806817595 + ], + [ + 64.15083030975077, + 33.217059806817595 + ], + [ + 64.03598762626709, + 33.02241207188914 + ], + [ + 64.15083030975077, + 32.82776433696069 + ], + [ + 64.38051567671812, + 32.82776433696069 + ], + [ + 64.4953583602018, + 33.02241207188914 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.4953583602018, + 33.41170754174605 + ], + [ + 64.38051567671812, + 33.6063552766745 + ], + [ + 64.15083030975077, + 33.6063552766745 + ], + [ + 64.03598762626709, + 33.41170754174605 + ], + [ + 64.15083030975077, + 33.217059806817595 + ], + [ + 64.38051567671812, + 33.217059806817595 + ], + [ + 64.4953583602018, + 33.41170754174605 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.4953583602018, + 33.80100301160295 + ], + [ + 64.38051567671812, + 33.9956507465314 + ], + [ + 64.15083030975077, + 33.9956507465314 + ], + [ + 64.03598762626709, + 33.80100301160295 + ], + [ + 64.15083030975077, + 33.6063552766745 + ], + [ + 64.38051567671812, + 33.6063552766745 + ], + [ + 64.4953583602018, + 33.80100301160295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.4953583602018, + 34.190298481459855 + ], + [ + 64.38051567671812, + 34.38494621638831 + ], + [ + 64.15083030975077, + 34.38494621638831 + ], + [ + 64.03598762626709, + 34.190298481459855 + ], + [ + 64.15083030975077, + 33.9956507465314 + ], + [ + 64.38051567671812, + 33.9956507465314 + ], + [ + 64.4953583602018, + 34.190298481459855 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.4953583602018, + 34.57959395131677 + ], + [ + 64.38051567671812, + 34.77424168624522 + ], + [ + 64.15083030975077, + 34.77424168624522 + ], + [ + 64.03598762626709, + 34.57959395131677 + ], + [ + 64.15083030975077, + 34.384946216388315 + ], + [ + 64.38051567671812, + 34.384946216388315 + ], + [ + 64.4953583602018, + 34.57959395131677 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.4953583602018, + 34.96888942117368 + ], + [ + 64.38051567671812, + 35.16353715610213 + ], + [ + 64.15083030975077, + 35.16353715610213 + ], + [ + 64.03598762626709, + 34.96888942117368 + ], + [ + 64.15083030975077, + 34.774241686245226 + ], + [ + 64.38051567671812, + 34.774241686245226 + ], + [ + 64.4953583602018, + 34.96888942117368 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.4953583602018, + 35.35818489103058 + ], + [ + 64.38051567671812, + 35.552832625959034 + ], + [ + 64.15083030975077, + 35.552832625959034 + ], + [ + 64.03598762626709, + 35.35818489103058 + ], + [ + 64.15083030975077, + 35.16353715610213 + ], + [ + 64.38051567671812, + 35.16353715610213 + ], + [ + 64.4953583602018, + 35.35818489103058 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.4953583602018, + 35.74748036088749 + ], + [ + 64.38051567671812, + 35.94212809581594 + ], + [ + 64.15083030975077, + 35.94212809581594 + ], + [ + 64.03598762626709, + 35.74748036088749 + ], + [ + 64.15083030975077, + 35.552832625959034 + ], + [ + 64.38051567671812, + 35.552832625959034 + ], + [ + 64.4953583602018, + 35.74748036088749 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.4953583602018, + 36.13677583074439 + ], + [ + 64.38051567671812, + 36.33142356567284 + ], + [ + 64.15083030975077, + 36.33142356567284 + ], + [ + 64.03598762626709, + 36.13677583074439 + ], + [ + 64.15083030975077, + 35.94212809581594 + ], + [ + 64.38051567671812, + 35.94212809581594 + ], + [ + 64.4953583602018, + 36.13677583074439 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.4953583602018, + 36.526071300601295 + ], + [ + 64.38051567671812, + 36.72071903552975 + ], + [ + 64.15083030975077, + 36.72071903552975 + ], + [ + 64.03598762626709, + 36.526071300601295 + ], + [ + 64.15083030975077, + 36.33142356567284 + ], + [ + 64.38051567671812, + 36.33142356567284 + ], + [ + 64.4953583602018, + 36.526071300601295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.4953583602018, + 36.915366770458206 + ], + [ + 64.38051567671812, + 37.11001450538666 + ], + [ + 64.15083030975077, + 37.11001450538666 + ], + [ + 64.03598762626709, + 36.915366770458206 + ], + [ + 64.15083030975077, + 36.720719035529754 + ], + [ + 64.38051567671812, + 36.720719035529754 + ], + [ + 64.4953583602018, + 36.915366770458206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.4953583602018, + 37.30466224031511 + ], + [ + 64.38051567671812, + 37.49930997524356 + ], + [ + 64.15083030975077, + 37.49930997524356 + ], + [ + 64.03598762626709, + 37.30466224031511 + ], + [ + 64.15083030975077, + 37.11001450538666 + ], + [ + 64.38051567671812, + 37.11001450538666 + ], + [ + 64.4953583602018, + 37.30466224031511 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.4953583602018, + 37.69395771017202 + ], + [ + 64.38051567671812, + 37.888605445100474 + ], + [ + 64.15083030975077, + 37.888605445100474 + ], + [ + 64.03598762626709, + 37.69395771017202 + ], + [ + 64.15083030975077, + 37.49930997524357 + ], + [ + 64.38051567671812, + 37.49930997524357 + ], + [ + 64.4953583602018, + 37.69395771017202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.4953583602018, + 38.083253180028926 + ], + [ + 64.38051567671812, + 38.27790091495738 + ], + [ + 64.15083030975077, + 38.27790091495738 + ], + [ + 64.03598762626709, + 38.083253180028926 + ], + [ + 64.15083030975077, + 37.888605445100474 + ], + [ + 64.38051567671812, + 37.888605445100474 + ], + [ + 64.4953583602018, + 38.083253180028926 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.4953583602018, + 38.47254864988583 + ], + [ + 64.38051567671812, + 38.66719638481428 + ], + [ + 64.15083030975077, + 38.66719638481428 + ], + [ + 64.03598762626709, + 38.47254864988583 + ], + [ + 64.15083030975077, + 38.27790091495738 + ], + [ + 64.38051567671812, + 38.27790091495738 + ], + [ + 64.4953583602018, + 38.47254864988583 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.4953583602018, + 38.861844119742734 + ], + [ + 64.38051567671812, + 39.05649185467119 + ], + [ + 64.15083030975077, + 39.05649185467119 + ], + [ + 64.03598762626709, + 38.861844119742734 + ], + [ + 64.15083030975077, + 38.66719638481428 + ], + [ + 64.38051567671812, + 38.66719638481428 + ], + [ + 64.4953583602018, + 38.861844119742734 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.4953583602018, + 39.25113958959964 + ], + [ + 64.38051567671812, + 39.44578732452809 + ], + [ + 64.15083030975077, + 39.44578732452809 + ], + [ + 64.03598762626709, + 39.25113958959964 + ], + [ + 64.15083030975077, + 39.05649185467119 + ], + [ + 64.38051567671812, + 39.05649185467119 + ], + [ + 64.4953583602018, + 39.25113958959964 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.4953583602018, + 39.64043505945655 + ], + [ + 64.38051567671812, + 39.835082794385 + ], + [ + 64.15083030975077, + 39.835082794385 + ], + [ + 64.03598762626709, + 39.64043505945655 + ], + [ + 64.15083030975077, + 39.4457873245281 + ], + [ + 64.38051567671812, + 39.4457873245281 + ], + [ + 64.4953583602018, + 39.64043505945655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.4953583602018, + 40.029730529313454 + ], + [ + 64.38051567671812, + 40.224378264241906 + ], + [ + 64.15083030975077, + 40.224378264241906 + ], + [ + 64.03598762626709, + 40.029730529313454 + ], + [ + 64.15083030975077, + 39.835082794385 + ], + [ + 64.38051567671812, + 39.835082794385 + ], + [ + 64.4953583602018, + 40.029730529313454 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.4953583602018, + 40.419025999170366 + ], + [ + 64.38051567671812, + 40.61367373409882 + ], + [ + 64.15083030975077, + 40.61367373409882 + ], + [ + 64.03598762626709, + 40.419025999170366 + ], + [ + 64.15083030975077, + 40.22437826424191 + ], + [ + 64.38051567671812, + 40.22437826424191 + ], + [ + 64.4953583602018, + 40.419025999170366 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.4953583602018, + 40.80832146902727 + ], + [ + 64.38051567671812, + 41.00296920395572 + ], + [ + 64.15083030975077, + 41.00296920395572 + ], + [ + 64.03598762626709, + 40.80832146902727 + ], + [ + 64.15083030975077, + 40.61367373409882 + ], + [ + 64.38051567671812, + 40.61367373409882 + ], + [ + 64.4953583602018, + 40.80832146902727 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.4953583602018, + 41.197616938884174 + ], + [ + 64.38051567671812, + 41.392264673812626 + ], + [ + 64.15083030975077, + 41.392264673812626 + ], + [ + 64.03598762626709, + 41.197616938884174 + ], + [ + 64.15083030975077, + 41.00296920395572 + ], + [ + 64.38051567671812, + 41.00296920395572 + ], + [ + 64.4953583602018, + 41.197616938884174 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.4953583602018, + 41.58691240874108 + ], + [ + 64.38051567671812, + 41.78156014366953 + ], + [ + 64.15083030975077, + 41.78156014366953 + ], + [ + 64.03598762626709, + 41.58691240874108 + ], + [ + 64.15083030975077, + 41.392264673812626 + ], + [ + 64.38051567671812, + 41.392264673812626 + ], + [ + 64.4953583602018, + 41.58691240874108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.4953583602018, + 41.97620787859798 + ], + [ + 64.38051567671812, + 42.170855613526435 + ], + [ + 64.15083030975077, + 42.170855613526435 + ], + [ + 64.03598762626709, + 41.97620787859798 + ], + [ + 64.15083030975077, + 41.78156014366953 + ], + [ + 64.38051567671812, + 41.78156014366953 + ], + [ + 64.4953583602018, + 41.97620787859798 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.4953583602018, + 42.365503348454894 + ], + [ + 64.38051567671812, + 42.560151083383346 + ], + [ + 64.15083030975077, + 42.560151083383346 + ], + [ + 64.03598762626709, + 42.365503348454894 + ], + [ + 64.15083030975077, + 42.17085561352644 + ], + [ + 64.38051567671812, + 42.17085561352644 + ], + [ + 64.4953583602018, + 42.365503348454894 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.4953583602018, + 42.754798818311805 + ], + [ + 64.38051567671812, + 42.94944655324026 + ], + [ + 64.15083030975077, + 42.94944655324026 + ], + [ + 64.03598762626709, + 42.754798818311805 + ], + [ + 64.15083030975077, + 42.56015108338335 + ], + [ + 64.38051567671812, + 42.56015108338335 + ], + [ + 64.4953583602018, + 42.754798818311805 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.4953583602018, + 43.14409428816871 + ], + [ + 64.38051567671812, + 43.33874202309716 + ], + [ + 64.15083030975077, + 43.33874202309716 + ], + [ + 64.03598762626709, + 43.14409428816871 + ], + [ + 64.15083030975077, + 42.94944655324026 + ], + [ + 64.38051567671812, + 42.94944655324026 + ], + [ + 64.4953583602018, + 43.14409428816871 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.4953583602018, + 43.53338975802561 + ], + [ + 64.38051567671812, + 43.728037492954066 + ], + [ + 64.15083030975077, + 43.728037492954066 + ], + [ + 64.03598762626709, + 43.53338975802561 + ], + [ + 64.15083030975077, + 43.33874202309716 + ], + [ + 64.38051567671812, + 43.33874202309716 + ], + [ + 64.4953583602018, + 43.53338975802561 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.4953583602018, + 43.92268522788252 + ], + [ + 64.38051567671812, + 44.11733296281097 + ], + [ + 64.15083030975077, + 44.11733296281097 + ], + [ + 64.03598762626709, + 43.92268522788252 + ], + [ + 64.15083030975077, + 43.728037492954066 + ], + [ + 64.38051567671812, + 43.728037492954066 + ], + [ + 64.4953583602018, + 43.92268522788252 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.4953583602018, + 44.31198069773942 + ], + [ + 64.38051567671812, + 44.506628432667874 + ], + [ + 64.15083030975077, + 44.506628432667874 + ], + [ + 64.03598762626709, + 44.31198069773942 + ], + [ + 64.15083030975077, + 44.11733296281097 + ], + [ + 64.38051567671812, + 44.11733296281097 + ], + [ + 64.4953583602018, + 44.31198069773942 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.4953583602018, + 44.701276167596326 + ], + [ + 64.38051567671812, + 44.89592390252478 + ], + [ + 64.15083030975077, + 44.89592390252478 + ], + [ + 64.03598762626709, + 44.701276167596326 + ], + [ + 64.15083030975077, + 44.506628432667874 + ], + [ + 64.38051567671812, + 44.506628432667874 + ], + [ + 64.4953583602018, + 44.701276167596326 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.4953583602018, + 45.090571637453245 + ], + [ + 64.38051567671812, + 45.2852193723817 + ], + [ + 64.15083030975077, + 45.2852193723817 + ], + [ + 64.03598762626709, + 45.090571637453245 + ], + [ + 64.15083030975077, + 44.89592390252479 + ], + [ + 64.38051567671812, + 44.89592390252479 + ], + [ + 64.4953583602018, + 45.090571637453245 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.4953583602018, + 45.47986710731015 + ], + [ + 64.38051567671812, + 45.6745148422386 + ], + [ + 64.15083030975077, + 45.6745148422386 + ], + [ + 64.03598762626709, + 45.47986710731015 + ], + [ + 64.15083030975077, + 45.2852193723817 + ], + [ + 64.38051567671812, + 45.2852193723817 + ], + [ + 64.4953583602018, + 45.47986710731015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.4953583602018, + 45.86916257716705 + ], + [ + 64.38051567671812, + 46.063810312095505 + ], + [ + 64.15083030975077, + 46.063810312095505 + ], + [ + 64.03598762626709, + 45.86916257716705 + ], + [ + 64.15083030975077, + 45.6745148422386 + ], + [ + 64.38051567671812, + 45.6745148422386 + ], + [ + 64.4953583602018, + 45.86916257716705 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.4953583602018, + 46.25845804702396 + ], + [ + 64.38051567671812, + 46.45310578195241 + ], + [ + 64.15083030975077, + 46.45310578195241 + ], + [ + 64.03598762626709, + 46.25845804702396 + ], + [ + 64.15083030975077, + 46.063810312095505 + ], + [ + 64.38051567671812, + 46.063810312095505 + ], + [ + 64.4953583602018, + 46.25845804702396 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.4953583602018, + 46.64775351688086 + ], + [ + 64.38051567671812, + 46.842401251809314 + ], + [ + 64.15083030975077, + 46.842401251809314 + ], + [ + 64.03598762626709, + 46.64775351688086 + ], + [ + 64.15083030975077, + 46.45310578195241 + ], + [ + 64.38051567671812, + 46.45310578195241 + ], + [ + 64.4953583602018, + 46.64775351688086 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.4953583602018, + 47.037048986737766 + ], + [ + 64.38051567671812, + 47.23169672166622 + ], + [ + 64.15083030975077, + 47.23169672166622 + ], + [ + 64.03598762626709, + 47.037048986737766 + ], + [ + 64.15083030975077, + 46.842401251809314 + ], + [ + 64.38051567671812, + 46.842401251809314 + ], + [ + 64.4953583602018, + 47.037048986737766 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.4953583602018, + 47.42634445659467 + ], + [ + 64.38051567671812, + 47.62099219152312 + ], + [ + 64.15083030975077, + 47.62099219152312 + ], + [ + 64.03598762626709, + 47.42634445659467 + ], + [ + 64.15083030975077, + 47.23169672166622 + ], + [ + 64.38051567671812, + 47.23169672166622 + ], + [ + 64.4953583602018, + 47.42634445659467 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.4953583602018, + 47.81563992645159 + ], + [ + 64.38051567671812, + 48.01028766138004 + ], + [ + 64.15083030975077, + 48.01028766138004 + ], + [ + 64.03598762626709, + 47.81563992645159 + ], + [ + 64.15083030975077, + 47.620992191523136 + ], + [ + 64.38051567671812, + 47.620992191523136 + ], + [ + 64.4953583602018, + 47.81563992645159 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.83988641065284, + 11.805808964687746 + ], + [ + 64.72504372716915, + 12.0004566996162 + ], + [ + 64.4953583602018, + 12.0004566996162 + ], + [ + 64.38051567671812, + 11.805808964687746 + ], + [ + 64.4953583602018, + 11.611161229759292 + ], + [ + 64.72504372716915, + 11.611161229759292 + ], + [ + 64.83988641065284, + 11.805808964687746 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.83988641065284, + 12.195104434544652 + ], + [ + 64.72504372716915, + 12.389752169473105 + ], + [ + 64.4953583602018, + 12.389752169473105 + ], + [ + 64.38051567671812, + 12.195104434544652 + ], + [ + 64.4953583602018, + 12.000456699616198 + ], + [ + 64.72504372716915, + 12.000456699616198 + ], + [ + 64.83988641065284, + 12.195104434544652 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.83988641065284, + 12.58439990440156 + ], + [ + 64.72504372716915, + 12.779047639330013 + ], + [ + 64.4953583602018, + 12.779047639330013 + ], + [ + 64.38051567671812, + 12.58439990440156 + ], + [ + 64.4953583602018, + 12.389752169473105 + ], + [ + 64.72504372716915, + 12.389752169473105 + ], + [ + 64.83988641065284, + 12.58439990440156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.83988641065284, + 12.973695374258465 + ], + [ + 64.72504372716915, + 13.16834310918692 + ], + [ + 64.4953583602018, + 13.16834310918692 + ], + [ + 64.38051567671812, + 12.973695374258465 + ], + [ + 64.4953583602018, + 12.779047639330011 + ], + [ + 64.72504372716915, + 12.779047639330011 + ], + [ + 64.83988641065284, + 12.973695374258465 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.83988641065284, + 13.362990844115371 + ], + [ + 64.72504372716915, + 13.557638579043825 + ], + [ + 64.4953583602018, + 13.557638579043825 + ], + [ + 64.38051567671812, + 13.362990844115371 + ], + [ + 64.4953583602018, + 13.168343109186917 + ], + [ + 64.72504372716915, + 13.168343109186917 + ], + [ + 64.83988641065284, + 13.362990844115371 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.83988641065284, + 13.752286313972277 + ], + [ + 64.72504372716915, + 13.946934048900731 + ], + [ + 64.4953583602018, + 13.946934048900731 + ], + [ + 64.38051567671812, + 13.752286313972277 + ], + [ + 64.4953583602018, + 13.557638579043823 + ], + [ + 64.72504372716915, + 13.557638579043823 + ], + [ + 64.83988641065284, + 13.752286313972277 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.83988641065284, + 14.141581783829183 + ], + [ + 64.72504372716915, + 14.336229518757637 + ], + [ + 64.4953583602018, + 14.336229518757637 + ], + [ + 64.38051567671812, + 14.141581783829183 + ], + [ + 64.4953583602018, + 13.94693404890073 + ], + [ + 64.72504372716915, + 13.94693404890073 + ], + [ + 64.83988641065284, + 14.141581783829183 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.83988641065284, + 14.530877253686091 + ], + [ + 64.72504372716915, + 14.725524988614545 + ], + [ + 64.4953583602018, + 14.725524988614545 + ], + [ + 64.38051567671812, + 14.530877253686091 + ], + [ + 64.4953583602018, + 14.336229518757637 + ], + [ + 64.72504372716915, + 14.336229518757637 + ], + [ + 64.83988641065284, + 14.530877253686091 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.83988641065284, + 14.920172723542997 + ], + [ + 64.72504372716915, + 15.114820458471451 + ], + [ + 64.4953583602018, + 15.114820458471451 + ], + [ + 64.38051567671812, + 14.920172723542997 + ], + [ + 64.4953583602018, + 14.725524988614543 + ], + [ + 64.72504372716915, + 14.725524988614543 + ], + [ + 64.83988641065284, + 14.920172723542997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.83988641065284, + 15.309468193399903 + ], + [ + 64.72504372716915, + 15.504115928328357 + ], + [ + 64.4953583602018, + 15.504115928328357 + ], + [ + 64.38051567671812, + 15.309468193399903 + ], + [ + 64.4953583602018, + 15.11482045847145 + ], + [ + 64.72504372716915, + 15.11482045847145 + ], + [ + 64.83988641065284, + 15.309468193399903 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.83988641065284, + 15.69876366325681 + ], + [ + 64.72504372716915, + 15.893411398185265 + ], + [ + 64.4953583602018, + 15.893411398185265 + ], + [ + 64.38051567671812, + 15.69876366325681 + ], + [ + 64.4953583602018, + 15.504115928328357 + ], + [ + 64.72504372716915, + 15.504115928328357 + ], + [ + 64.83988641065284, + 15.69876366325681 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.83988641065284, + 16.088059133113717 + ], + [ + 64.72504372716915, + 16.28270686804217 + ], + [ + 64.4953583602018, + 16.28270686804217 + ], + [ + 64.38051567671812, + 16.088059133113717 + ], + [ + 64.4953583602018, + 15.893411398185263 + ], + [ + 64.72504372716915, + 15.893411398185263 + ], + [ + 64.83988641065284, + 16.088059133113717 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.83988641065284, + 16.477354602970625 + ], + [ + 64.72504372716915, + 16.672002337899077 + ], + [ + 64.4953583602018, + 16.672002337899077 + ], + [ + 64.38051567671812, + 16.477354602970625 + ], + [ + 64.4953583602018, + 16.282706868042172 + ], + [ + 64.72504372716915, + 16.282706868042172 + ], + [ + 64.83988641065284, + 16.477354602970625 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.83988641065284, + 16.86665007282753 + ], + [ + 64.72504372716915, + 17.06129780775598 + ], + [ + 64.4953583602018, + 17.06129780775598 + ], + [ + 64.38051567671812, + 16.86665007282753 + ], + [ + 64.4953583602018, + 16.672002337899077 + ], + [ + 64.72504372716915, + 16.672002337899077 + ], + [ + 64.83988641065284, + 16.86665007282753 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.83988641065284, + 17.255945542684437 + ], + [ + 64.72504372716915, + 17.45059327761289 + ], + [ + 64.4953583602018, + 17.45059327761289 + ], + [ + 64.38051567671812, + 17.255945542684437 + ], + [ + 64.4953583602018, + 17.061297807755984 + ], + [ + 64.72504372716915, + 17.061297807755984 + ], + [ + 64.83988641065284, + 17.255945542684437 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.83988641065284, + 17.64524101254134 + ], + [ + 64.72504372716915, + 17.839888747469793 + ], + [ + 64.4953583602018, + 17.839888747469793 + ], + [ + 64.38051567671812, + 17.64524101254134 + ], + [ + 64.4953583602018, + 17.45059327761289 + ], + [ + 64.72504372716915, + 17.45059327761289 + ], + [ + 64.83988641065284, + 17.64524101254134 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.83988641065284, + 18.03453648239825 + ], + [ + 64.72504372716915, + 18.2291842173267 + ], + [ + 64.4953583602018, + 18.2291842173267 + ], + [ + 64.38051567671812, + 18.03453648239825 + ], + [ + 64.4953583602018, + 17.839888747469796 + ], + [ + 64.72504372716915, + 17.839888747469796 + ], + [ + 64.83988641065284, + 18.03453648239825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.83988641065284, + 18.423831952255156 + ], + [ + 64.72504372716915, + 18.61847968718361 + ], + [ + 64.4953583602018, + 18.61847968718361 + ], + [ + 64.38051567671812, + 18.423831952255156 + ], + [ + 64.4953583602018, + 18.229184217326704 + ], + [ + 64.72504372716915, + 18.229184217326704 + ], + [ + 64.83988641065284, + 18.423831952255156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.83988641065284, + 18.81312742211206 + ], + [ + 64.72504372716915, + 19.007775157040513 + ], + [ + 64.4953583602018, + 19.007775157040513 + ], + [ + 64.38051567671812, + 18.81312742211206 + ], + [ + 64.4953583602018, + 18.61847968718361 + ], + [ + 64.72504372716915, + 18.61847968718361 + ], + [ + 64.83988641065284, + 18.81312742211206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.83988641065284, + 19.20242289196897 + ], + [ + 64.72504372716915, + 19.39707062689742 + ], + [ + 64.4953583602018, + 19.39707062689742 + ], + [ + 64.38051567671812, + 19.20242289196897 + ], + [ + 64.4953583602018, + 19.007775157040516 + ], + [ + 64.72504372716915, + 19.007775157040516 + ], + [ + 64.83988641065284, + 19.20242289196897 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.83988641065284, + 19.591718361825876 + ], + [ + 64.72504372716915, + 19.78636609675433 + ], + [ + 64.4953583602018, + 19.78636609675433 + ], + [ + 64.38051567671812, + 19.591718361825876 + ], + [ + 64.4953583602018, + 19.397070626897424 + ], + [ + 64.72504372716915, + 19.397070626897424 + ], + [ + 64.83988641065284, + 19.591718361825876 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.83988641065284, + 19.98101383168278 + ], + [ + 64.72504372716915, + 20.175661566611232 + ], + [ + 64.4953583602018, + 20.175661566611232 + ], + [ + 64.38051567671812, + 19.98101383168278 + ], + [ + 64.4953583602018, + 19.78636609675433 + ], + [ + 64.72504372716915, + 19.78636609675433 + ], + [ + 64.83988641065284, + 19.98101383168278 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.83988641065284, + 20.370309301539685 + ], + [ + 64.72504372716915, + 20.564957036468137 + ], + [ + 64.4953583602018, + 20.564957036468137 + ], + [ + 64.38051567671812, + 20.370309301539685 + ], + [ + 64.4953583602018, + 20.175661566611232 + ], + [ + 64.72504372716915, + 20.175661566611232 + ], + [ + 64.83988641065284, + 20.370309301539685 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.83988641065284, + 20.759604771396592 + ], + [ + 64.72504372716915, + 20.954252506325044 + ], + [ + 64.4953583602018, + 20.954252506325044 + ], + [ + 64.38051567671812, + 20.759604771396592 + ], + [ + 64.4953583602018, + 20.56495703646814 + ], + [ + 64.72504372716915, + 20.56495703646814 + ], + [ + 64.83988641065284, + 20.759604771396592 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.83988641065284, + 21.1489002412535 + ], + [ + 64.72504372716915, + 21.343547976181952 + ], + [ + 64.4953583602018, + 21.343547976181952 + ], + [ + 64.38051567671812, + 21.1489002412535 + ], + [ + 64.4953583602018, + 20.954252506325048 + ], + [ + 64.72504372716915, + 20.954252506325048 + ], + [ + 64.83988641065284, + 21.1489002412535 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.83988641065284, + 21.538195711110404 + ], + [ + 64.72504372716915, + 21.732843446038856 + ], + [ + 64.4953583602018, + 21.732843446038856 + ], + [ + 64.38051567671812, + 21.538195711110404 + ], + [ + 64.4953583602018, + 21.343547976181952 + ], + [ + 64.72504372716915, + 21.343547976181952 + ], + [ + 64.83988641065284, + 21.538195711110404 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.83988641065284, + 21.927491180967312 + ], + [ + 64.72504372716915, + 22.122138915895764 + ], + [ + 64.4953583602018, + 22.122138915895764 + ], + [ + 64.38051567671812, + 21.927491180967312 + ], + [ + 64.4953583602018, + 21.73284344603886 + ], + [ + 64.72504372716915, + 21.73284344603886 + ], + [ + 64.83988641065284, + 21.927491180967312 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.83988641065284, + 22.31678665082422 + ], + [ + 64.72504372716915, + 22.511434385752672 + ], + [ + 64.4953583602018, + 22.511434385752672 + ], + [ + 64.38051567671812, + 22.31678665082422 + ], + [ + 64.4953583602018, + 22.122138915895768 + ], + [ + 64.72504372716915, + 22.122138915895768 + ], + [ + 64.83988641065284, + 22.31678665082422 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.83988641065284, + 22.706082120681124 + ], + [ + 64.72504372716915, + 22.900729855609576 + ], + [ + 64.4953583602018, + 22.900729855609576 + ], + [ + 64.38051567671812, + 22.706082120681124 + ], + [ + 64.4953583602018, + 22.511434385752672 + ], + [ + 64.72504372716915, + 22.511434385752672 + ], + [ + 64.83988641065284, + 22.706082120681124 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.83988641065284, + 23.095377590538032 + ], + [ + 64.72504372716915, + 23.290025325466484 + ], + [ + 64.4953583602018, + 23.290025325466484 + ], + [ + 64.38051567671812, + 23.095377590538032 + ], + [ + 64.4953583602018, + 22.90072985560958 + ], + [ + 64.72504372716915, + 22.90072985560958 + ], + [ + 64.83988641065284, + 23.095377590538032 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.83988641065284, + 23.48467306039494 + ], + [ + 64.72504372716915, + 23.67932079532339 + ], + [ + 64.4953583602018, + 23.67932079532339 + ], + [ + 64.38051567671812, + 23.48467306039494 + ], + [ + 64.4953583602018, + 23.290025325466488 + ], + [ + 64.72504372716915, + 23.290025325466488 + ], + [ + 64.83988641065284, + 23.48467306039494 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.83988641065284, + 23.873968530251844 + ], + [ + 64.72504372716915, + 24.068616265180296 + ], + [ + 64.4953583602018, + 24.068616265180296 + ], + [ + 64.38051567671812, + 23.873968530251844 + ], + [ + 64.4953583602018, + 23.67932079532339 + ], + [ + 64.72504372716915, + 23.67932079532339 + ], + [ + 64.83988641065284, + 23.873968530251844 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.83988641065284, + 24.263264000108748 + ], + [ + 64.72504372716915, + 24.4579117350372 + ], + [ + 64.4953583602018, + 24.4579117350372 + ], + [ + 64.38051567671812, + 24.263264000108748 + ], + [ + 64.4953583602018, + 24.068616265180296 + ], + [ + 64.72504372716915, + 24.068616265180296 + ], + [ + 64.83988641065284, + 24.263264000108748 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.83988641065284, + 24.652559469965656 + ], + [ + 64.72504372716915, + 24.847207204894108 + ], + [ + 64.4953583602018, + 24.847207204894108 + ], + [ + 64.38051567671812, + 24.652559469965656 + ], + [ + 64.4953583602018, + 24.457911735037204 + ], + [ + 64.72504372716915, + 24.457911735037204 + ], + [ + 64.83988641065284, + 24.652559469965656 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.83988641065284, + 25.041854939822564 + ], + [ + 64.72504372716915, + 25.236502674751016 + ], + [ + 64.4953583602018, + 25.236502674751016 + ], + [ + 64.38051567671812, + 25.041854939822564 + ], + [ + 64.4953583602018, + 24.84720720489411 + ], + [ + 64.72504372716915, + 24.84720720489411 + ], + [ + 64.83988641065284, + 25.041854939822564 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.83988641065284, + 25.431150409679468 + ], + [ + 64.72504372716915, + 25.62579814460792 + ], + [ + 64.4953583602018, + 25.62579814460792 + ], + [ + 64.38051567671812, + 25.431150409679468 + ], + [ + 64.4953583602018, + 25.236502674751016 + ], + [ + 64.72504372716915, + 25.236502674751016 + ], + [ + 64.83988641065284, + 25.431150409679468 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.83988641065284, + 25.820445879536376 + ], + [ + 64.72504372716915, + 26.015093614464828 + ], + [ + 64.4953583602018, + 26.015093614464828 + ], + [ + 64.38051567671812, + 25.820445879536376 + ], + [ + 64.4953583602018, + 25.625798144607923 + ], + [ + 64.72504372716915, + 25.625798144607923 + ], + [ + 64.83988641065284, + 25.820445879536376 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.83988641065284, + 26.209741349393283 + ], + [ + 64.72504372716915, + 26.404389084321735 + ], + [ + 64.4953583602018, + 26.404389084321735 + ], + [ + 64.38051567671812, + 26.209741349393283 + ], + [ + 64.4953583602018, + 26.01509361446483 + ], + [ + 64.72504372716915, + 26.01509361446483 + ], + [ + 64.83988641065284, + 26.209741349393283 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.83988641065284, + 26.599036819250188 + ], + [ + 64.72504372716915, + 26.79368455417864 + ], + [ + 64.4953583602018, + 26.79368455417864 + ], + [ + 64.38051567671812, + 26.599036819250188 + ], + [ + 64.4953583602018, + 26.404389084321735 + ], + [ + 64.72504372716915, + 26.404389084321735 + ], + [ + 64.83988641065284, + 26.599036819250188 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.83988641065284, + 26.988332289107095 + ], + [ + 64.72504372716915, + 27.182980024035547 + ], + [ + 64.4953583602018, + 27.182980024035547 + ], + [ + 64.38051567671812, + 26.988332289107095 + ], + [ + 64.4953583602018, + 26.793684554178643 + ], + [ + 64.72504372716915, + 26.793684554178643 + ], + [ + 64.83988641065284, + 26.988332289107095 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.83988641065284, + 27.377627758964003 + ], + [ + 64.72504372716915, + 27.572275493892455 + ], + [ + 64.4953583602018, + 27.572275493892455 + ], + [ + 64.38051567671812, + 27.377627758964003 + ], + [ + 64.4953583602018, + 27.18298002403555 + ], + [ + 64.72504372716915, + 27.18298002403555 + ], + [ + 64.83988641065284, + 27.377627758964003 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.83988641065284, + 27.766923228820907 + ], + [ + 64.72504372716915, + 27.96157096374936 + ], + [ + 64.4953583602018, + 27.96157096374936 + ], + [ + 64.38051567671812, + 27.766923228820907 + ], + [ + 64.4953583602018, + 27.572275493892455 + ], + [ + 64.72504372716915, + 27.572275493892455 + ], + [ + 64.83988641065284, + 27.766923228820907 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.83988641065284, + 28.156218698677815 + ], + [ + 64.72504372716915, + 28.350866433606267 + ], + [ + 64.4953583602018, + 28.350866433606267 + ], + [ + 64.38051567671812, + 28.156218698677815 + ], + [ + 64.4953583602018, + 27.961570963749363 + ], + [ + 64.72504372716915, + 27.961570963749363 + ], + [ + 64.83988641065284, + 28.156218698677815 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.83988641065284, + 28.54551416853472 + ], + [ + 64.72504372716915, + 28.74016190346317 + ], + [ + 64.4953583602018, + 28.74016190346317 + ], + [ + 64.38051567671812, + 28.54551416853472 + ], + [ + 64.4953583602018, + 28.350866433606267 + ], + [ + 64.72504372716915, + 28.350866433606267 + ], + [ + 64.83988641065284, + 28.54551416853472 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.83988641065284, + 28.934809638391627 + ], + [ + 64.72504372716915, + 29.12945737332008 + ], + [ + 64.4953583602018, + 29.12945737332008 + ], + [ + 64.38051567671812, + 28.934809638391627 + ], + [ + 64.4953583602018, + 28.740161903463175 + ], + [ + 64.72504372716915, + 28.740161903463175 + ], + [ + 64.83988641065284, + 28.934809638391627 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.83988641065284, + 29.32410510824853 + ], + [ + 64.72504372716915, + 29.518752843176983 + ], + [ + 64.4953583602018, + 29.518752843176983 + ], + [ + 64.38051567671812, + 29.32410510824853 + ], + [ + 64.4953583602018, + 29.12945737332008 + ], + [ + 64.72504372716915, + 29.12945737332008 + ], + [ + 64.83988641065284, + 29.32410510824853 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.83988641065284, + 29.71340057810544 + ], + [ + 64.72504372716915, + 29.90804831303389 + ], + [ + 64.4953583602018, + 29.90804831303389 + ], + [ + 64.38051567671812, + 29.71340057810544 + ], + [ + 64.4953583602018, + 29.518752843176987 + ], + [ + 64.72504372716915, + 29.518752843176987 + ], + [ + 64.83988641065284, + 29.71340057810544 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.83988641065284, + 30.102696047962343 + ], + [ + 64.72504372716915, + 30.297343782890795 + ], + [ + 64.4953583602018, + 30.297343782890795 + ], + [ + 64.38051567671812, + 30.102696047962343 + ], + [ + 64.4953583602018, + 29.90804831303389 + ], + [ + 64.72504372716915, + 29.90804831303389 + ], + [ + 64.83988641065284, + 30.102696047962343 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.83988641065284, + 30.49199151781925 + ], + [ + 64.72504372716915, + 30.686639252747703 + ], + [ + 64.4953583602018, + 30.686639252747703 + ], + [ + 64.38051567671812, + 30.49199151781925 + ], + [ + 64.4953583602018, + 30.2973437828908 + ], + [ + 64.72504372716915, + 30.2973437828908 + ], + [ + 64.83988641065284, + 30.49199151781925 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.83988641065284, + 30.88128698767616 + ], + [ + 64.72504372716915, + 31.07593472260461 + ], + [ + 64.4953583602018, + 31.07593472260461 + ], + [ + 64.38051567671812, + 30.88128698767616 + ], + [ + 64.4953583602018, + 30.686639252747707 + ], + [ + 64.72504372716915, + 30.686639252747707 + ], + [ + 64.83988641065284, + 30.88128698767616 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.83988641065284, + 31.270582457533063 + ], + [ + 64.72504372716915, + 31.465230192461515 + ], + [ + 64.4953583602018, + 31.465230192461515 + ], + [ + 64.38051567671812, + 31.270582457533063 + ], + [ + 64.4953583602018, + 31.07593472260461 + ], + [ + 64.72504372716915, + 31.07593472260461 + ], + [ + 64.83988641065284, + 31.270582457533063 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.83988641065284, + 31.65987792738997 + ], + [ + 64.72504372716915, + 31.854525662318423 + ], + [ + 64.4953583602018, + 31.854525662318423 + ], + [ + 64.38051567671812, + 31.65987792738997 + ], + [ + 64.4953583602018, + 31.46523019246152 + ], + [ + 64.72504372716915, + 31.46523019246152 + ], + [ + 64.83988641065284, + 31.65987792738997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.83988641065284, + 32.049173397246875 + ], + [ + 64.72504372716915, + 32.24382113217533 + ], + [ + 64.4953583602018, + 32.24382113217533 + ], + [ + 64.38051567671812, + 32.049173397246875 + ], + [ + 64.4953583602018, + 31.854525662318423 + ], + [ + 64.72504372716915, + 31.854525662318423 + ], + [ + 64.83988641065284, + 32.049173397246875 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.83988641065284, + 32.438468867103786 + ], + [ + 64.72504372716915, + 32.63311660203224 + ], + [ + 64.4953583602018, + 32.63311660203224 + ], + [ + 64.38051567671812, + 32.438468867103786 + ], + [ + 64.4953583602018, + 32.243821132175334 + ], + [ + 64.72504372716915, + 32.243821132175334 + ], + [ + 64.83988641065284, + 32.438468867103786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.83988641065284, + 32.82776433696069 + ], + [ + 64.72504372716915, + 33.02241207188914 + ], + [ + 64.4953583602018, + 33.02241207188914 + ], + [ + 64.38051567671812, + 32.82776433696069 + ], + [ + 64.4953583602018, + 32.63311660203224 + ], + [ + 64.72504372716915, + 32.63311660203224 + ], + [ + 64.83988641065284, + 32.82776433696069 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.83988641065284, + 33.217059806817595 + ], + [ + 64.72504372716915, + 33.41170754174605 + ], + [ + 64.4953583602018, + 33.41170754174605 + ], + [ + 64.38051567671812, + 33.217059806817595 + ], + [ + 64.4953583602018, + 33.02241207188914 + ], + [ + 64.72504372716915, + 33.02241207188914 + ], + [ + 64.83988641065284, + 33.217059806817595 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.83988641065284, + 33.6063552766745 + ], + [ + 64.72504372716915, + 33.80100301160295 + ], + [ + 64.4953583602018, + 33.80100301160295 + ], + [ + 64.38051567671812, + 33.6063552766745 + ], + [ + 64.4953583602018, + 33.41170754174605 + ], + [ + 64.72504372716915, + 33.41170754174605 + ], + [ + 64.83988641065284, + 33.6063552766745 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.83988641065284, + 33.9956507465314 + ], + [ + 64.72504372716915, + 34.190298481459855 + ], + [ + 64.4953583602018, + 34.190298481459855 + ], + [ + 64.38051567671812, + 33.9956507465314 + ], + [ + 64.4953583602018, + 33.80100301160295 + ], + [ + 64.72504372716915, + 33.80100301160295 + ], + [ + 64.83988641065284, + 33.9956507465314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.83988641065284, + 34.384946216388315 + ], + [ + 64.72504372716915, + 34.57959395131677 + ], + [ + 64.4953583602018, + 34.57959395131677 + ], + [ + 64.38051567671812, + 34.384946216388315 + ], + [ + 64.4953583602018, + 34.19029848145986 + ], + [ + 64.72504372716915, + 34.19029848145986 + ], + [ + 64.83988641065284, + 34.384946216388315 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.83988641065284, + 34.774241686245226 + ], + [ + 64.72504372716915, + 34.96888942117368 + ], + [ + 64.4953583602018, + 34.96888942117368 + ], + [ + 64.38051567671812, + 34.774241686245226 + ], + [ + 64.4953583602018, + 34.579593951316774 + ], + [ + 64.72504372716915, + 34.579593951316774 + ], + [ + 64.83988641065284, + 34.774241686245226 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.83988641065284, + 35.16353715610213 + ], + [ + 64.72504372716915, + 35.35818489103058 + ], + [ + 64.4953583602018, + 35.35818489103058 + ], + [ + 64.38051567671812, + 35.16353715610213 + ], + [ + 64.4953583602018, + 34.96888942117368 + ], + [ + 64.72504372716915, + 34.96888942117368 + ], + [ + 64.83988641065284, + 35.16353715610213 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.83988641065284, + 35.552832625959034 + ], + [ + 64.72504372716915, + 35.74748036088749 + ], + [ + 64.4953583602018, + 35.74748036088749 + ], + [ + 64.38051567671812, + 35.552832625959034 + ], + [ + 64.4953583602018, + 35.35818489103058 + ], + [ + 64.72504372716915, + 35.35818489103058 + ], + [ + 64.83988641065284, + 35.552832625959034 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.83988641065284, + 35.94212809581594 + ], + [ + 64.72504372716915, + 36.13677583074439 + ], + [ + 64.4953583602018, + 36.13677583074439 + ], + [ + 64.38051567671812, + 35.94212809581594 + ], + [ + 64.4953583602018, + 35.74748036088749 + ], + [ + 64.72504372716915, + 35.74748036088749 + ], + [ + 64.83988641065284, + 35.94212809581594 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.83988641065284, + 36.33142356567284 + ], + [ + 64.72504372716915, + 36.526071300601295 + ], + [ + 64.4953583602018, + 36.526071300601295 + ], + [ + 64.38051567671812, + 36.33142356567284 + ], + [ + 64.4953583602018, + 36.13677583074439 + ], + [ + 64.72504372716915, + 36.13677583074439 + ], + [ + 64.83988641065284, + 36.33142356567284 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.83988641065284, + 36.720719035529754 + ], + [ + 64.72504372716915, + 36.915366770458206 + ], + [ + 64.4953583602018, + 36.915366770458206 + ], + [ + 64.38051567671812, + 36.720719035529754 + ], + [ + 64.4953583602018, + 36.5260713006013 + ], + [ + 64.72504372716915, + 36.5260713006013 + ], + [ + 64.83988641065284, + 36.720719035529754 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.83988641065284, + 37.11001450538666 + ], + [ + 64.72504372716915, + 37.30466224031511 + ], + [ + 64.4953583602018, + 37.30466224031511 + ], + [ + 64.38051567671812, + 37.11001450538666 + ], + [ + 64.4953583602018, + 36.915366770458206 + ], + [ + 64.72504372716915, + 36.915366770458206 + ], + [ + 64.83988641065284, + 37.11001450538666 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.83988641065284, + 37.49930997524357 + ], + [ + 64.72504372716915, + 37.69395771017202 + ], + [ + 64.4953583602018, + 37.69395771017202 + ], + [ + 64.38051567671812, + 37.49930997524357 + ], + [ + 64.4953583602018, + 37.30466224031512 + ], + [ + 64.72504372716915, + 37.30466224031512 + ], + [ + 64.83988641065284, + 37.49930997524357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.83988641065284, + 37.888605445100474 + ], + [ + 64.72504372716915, + 38.083253180028926 + ], + [ + 64.4953583602018, + 38.083253180028926 + ], + [ + 64.38051567671812, + 37.888605445100474 + ], + [ + 64.4953583602018, + 37.69395771017202 + ], + [ + 64.72504372716915, + 37.69395771017202 + ], + [ + 64.83988641065284, + 37.888605445100474 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.83988641065284, + 38.27790091495738 + ], + [ + 64.72504372716915, + 38.47254864988583 + ], + [ + 64.4953583602018, + 38.47254864988583 + ], + [ + 64.38051567671812, + 38.27790091495738 + ], + [ + 64.4953583602018, + 38.083253180028926 + ], + [ + 64.72504372716915, + 38.083253180028926 + ], + [ + 64.83988641065284, + 38.27790091495738 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.83988641065284, + 38.66719638481428 + ], + [ + 64.72504372716915, + 38.861844119742734 + ], + [ + 64.4953583602018, + 38.861844119742734 + ], + [ + 64.38051567671812, + 38.66719638481428 + ], + [ + 64.4953583602018, + 38.47254864988583 + ], + [ + 64.72504372716915, + 38.47254864988583 + ], + [ + 64.83988641065284, + 38.66719638481428 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.83988641065284, + 39.05649185467119 + ], + [ + 64.72504372716915, + 39.25113958959964 + ], + [ + 64.4953583602018, + 39.25113958959964 + ], + [ + 64.38051567671812, + 39.05649185467119 + ], + [ + 64.4953583602018, + 38.861844119742734 + ], + [ + 64.72504372716915, + 38.861844119742734 + ], + [ + 64.83988641065284, + 39.05649185467119 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.83988641065284, + 39.4457873245281 + ], + [ + 64.72504372716915, + 39.64043505945655 + ], + [ + 64.4953583602018, + 39.64043505945655 + ], + [ + 64.38051567671812, + 39.4457873245281 + ], + [ + 64.4953583602018, + 39.251139589599646 + ], + [ + 64.72504372716915, + 39.251139589599646 + ], + [ + 64.83988641065284, + 39.4457873245281 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.83988641065284, + 39.835082794385 + ], + [ + 64.72504372716915, + 40.029730529313454 + ], + [ + 64.4953583602018, + 40.029730529313454 + ], + [ + 64.38051567671812, + 39.835082794385 + ], + [ + 64.4953583602018, + 39.64043505945655 + ], + [ + 64.72504372716915, + 39.64043505945655 + ], + [ + 64.83988641065284, + 39.835082794385 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.83988641065284, + 40.22437826424191 + ], + [ + 64.72504372716915, + 40.419025999170366 + ], + [ + 64.4953583602018, + 40.419025999170366 + ], + [ + 64.38051567671812, + 40.22437826424191 + ], + [ + 64.4953583602018, + 40.02973052931346 + ], + [ + 64.72504372716915, + 40.02973052931346 + ], + [ + 64.83988641065284, + 40.22437826424191 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.83988641065284, + 40.61367373409882 + ], + [ + 64.72504372716915, + 40.80832146902727 + ], + [ + 64.4953583602018, + 40.80832146902727 + ], + [ + 64.38051567671812, + 40.61367373409882 + ], + [ + 64.4953583602018, + 40.419025999170366 + ], + [ + 64.72504372716915, + 40.419025999170366 + ], + [ + 64.83988641065284, + 40.61367373409882 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.83988641065284, + 41.00296920395572 + ], + [ + 64.72504372716915, + 41.197616938884174 + ], + [ + 64.4953583602018, + 41.197616938884174 + ], + [ + 64.38051567671812, + 41.00296920395572 + ], + [ + 64.4953583602018, + 40.80832146902727 + ], + [ + 64.72504372716915, + 40.80832146902727 + ], + [ + 64.83988641065284, + 41.00296920395572 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.83988641065284, + 41.392264673812626 + ], + [ + 64.72504372716915, + 41.58691240874108 + ], + [ + 64.4953583602018, + 41.58691240874108 + ], + [ + 64.38051567671812, + 41.392264673812626 + ], + [ + 64.4953583602018, + 41.197616938884174 + ], + [ + 64.72504372716915, + 41.197616938884174 + ], + [ + 64.83988641065284, + 41.392264673812626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.83988641065284, + 41.78156014366953 + ], + [ + 64.72504372716915, + 41.97620787859798 + ], + [ + 64.4953583602018, + 41.97620787859798 + ], + [ + 64.38051567671812, + 41.78156014366953 + ], + [ + 64.4953583602018, + 41.58691240874108 + ], + [ + 64.72504372716915, + 41.58691240874108 + ], + [ + 64.83988641065284, + 41.78156014366953 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.83988641065284, + 42.17085561352644 + ], + [ + 64.72504372716915, + 42.365503348454894 + ], + [ + 64.4953583602018, + 42.365503348454894 + ], + [ + 64.38051567671812, + 42.17085561352644 + ], + [ + 64.4953583602018, + 41.97620787859799 + ], + [ + 64.72504372716915, + 41.97620787859799 + ], + [ + 64.83988641065284, + 42.17085561352644 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.83988641065284, + 42.56015108338335 + ], + [ + 64.72504372716915, + 42.754798818311805 + ], + [ + 64.4953583602018, + 42.754798818311805 + ], + [ + 64.38051567671812, + 42.56015108338335 + ], + [ + 64.4953583602018, + 42.3655033484549 + ], + [ + 64.72504372716915, + 42.3655033484549 + ], + [ + 64.83988641065284, + 42.56015108338335 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.83988641065284, + 42.94944655324026 + ], + [ + 64.72504372716915, + 43.14409428816871 + ], + [ + 64.4953583602018, + 43.14409428816871 + ], + [ + 64.38051567671812, + 42.94944655324026 + ], + [ + 64.4953583602018, + 42.754798818311805 + ], + [ + 64.72504372716915, + 42.754798818311805 + ], + [ + 64.83988641065284, + 42.94944655324026 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.83988641065284, + 43.33874202309716 + ], + [ + 64.72504372716915, + 43.53338975802561 + ], + [ + 64.4953583602018, + 43.53338975802561 + ], + [ + 64.38051567671812, + 43.33874202309716 + ], + [ + 64.4953583602018, + 43.14409428816871 + ], + [ + 64.72504372716915, + 43.14409428816871 + ], + [ + 64.83988641065284, + 43.33874202309716 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.83988641065284, + 43.728037492954066 + ], + [ + 64.72504372716915, + 43.92268522788252 + ], + [ + 64.4953583602018, + 43.92268522788252 + ], + [ + 64.38051567671812, + 43.728037492954066 + ], + [ + 64.4953583602018, + 43.53338975802561 + ], + [ + 64.72504372716915, + 43.53338975802561 + ], + [ + 64.83988641065284, + 43.728037492954066 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.83988641065284, + 44.11733296281097 + ], + [ + 64.72504372716915, + 44.31198069773942 + ], + [ + 64.4953583602018, + 44.31198069773942 + ], + [ + 64.38051567671812, + 44.11733296281097 + ], + [ + 64.4953583602018, + 43.92268522788252 + ], + [ + 64.72504372716915, + 43.92268522788252 + ], + [ + 64.83988641065284, + 44.11733296281097 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.83988641065284, + 44.506628432667874 + ], + [ + 64.72504372716915, + 44.701276167596326 + ], + [ + 64.4953583602018, + 44.701276167596326 + ], + [ + 64.38051567671812, + 44.506628432667874 + ], + [ + 64.4953583602018, + 44.31198069773942 + ], + [ + 64.72504372716915, + 44.31198069773942 + ], + [ + 64.83988641065284, + 44.506628432667874 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.83988641065284, + 44.89592390252479 + ], + [ + 64.72504372716915, + 45.090571637453245 + ], + [ + 64.4953583602018, + 45.090571637453245 + ], + [ + 64.38051567671812, + 44.89592390252479 + ], + [ + 64.4953583602018, + 44.70127616759634 + ], + [ + 64.72504372716915, + 44.70127616759634 + ], + [ + 64.83988641065284, + 44.89592390252479 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.83988641065284, + 45.2852193723817 + ], + [ + 64.72504372716915, + 45.47986710731015 + ], + [ + 64.4953583602018, + 45.47986710731015 + ], + [ + 64.38051567671812, + 45.2852193723817 + ], + [ + 64.4953583602018, + 45.090571637453245 + ], + [ + 64.72504372716915, + 45.090571637453245 + ], + [ + 64.83988641065284, + 45.2852193723817 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.83988641065284, + 45.6745148422386 + ], + [ + 64.72504372716915, + 45.86916257716705 + ], + [ + 64.4953583602018, + 45.86916257716705 + ], + [ + 64.38051567671812, + 45.6745148422386 + ], + [ + 64.4953583602018, + 45.47986710731015 + ], + [ + 64.72504372716915, + 45.47986710731015 + ], + [ + 64.83988641065284, + 45.6745148422386 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.83988641065284, + 46.063810312095505 + ], + [ + 64.72504372716915, + 46.25845804702396 + ], + [ + 64.4953583602018, + 46.25845804702396 + ], + [ + 64.38051567671812, + 46.063810312095505 + ], + [ + 64.4953583602018, + 45.86916257716705 + ], + [ + 64.72504372716915, + 45.86916257716705 + ], + [ + 64.83988641065284, + 46.063810312095505 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.83988641065284, + 46.45310578195241 + ], + [ + 64.72504372716915, + 46.64775351688086 + ], + [ + 64.4953583602018, + 46.64775351688086 + ], + [ + 64.38051567671812, + 46.45310578195241 + ], + [ + 64.4953583602018, + 46.25845804702396 + ], + [ + 64.72504372716915, + 46.25845804702396 + ], + [ + 64.83988641065284, + 46.45310578195241 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.83988641065284, + 46.842401251809314 + ], + [ + 64.72504372716915, + 47.037048986737766 + ], + [ + 64.4953583602018, + 47.037048986737766 + ], + [ + 64.38051567671812, + 46.842401251809314 + ], + [ + 64.4953583602018, + 46.64775351688086 + ], + [ + 64.72504372716915, + 46.64775351688086 + ], + [ + 64.83988641065284, + 46.842401251809314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.83988641065284, + 47.23169672166622 + ], + [ + 64.72504372716915, + 47.42634445659467 + ], + [ + 64.4953583602018, + 47.42634445659467 + ], + [ + 64.38051567671812, + 47.23169672166622 + ], + [ + 64.4953583602018, + 47.037048986737766 + ], + [ + 64.72504372716915, + 47.037048986737766 + ], + [ + 64.83988641065284, + 47.23169672166622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.83988641065284, + 47.620992191523136 + ], + [ + 64.72504372716915, + 47.81563992645159 + ], + [ + 64.4953583602018, + 47.81563992645159 + ], + [ + 64.38051567671812, + 47.620992191523136 + ], + [ + 64.4953583602018, + 47.426344456594684 + ], + [ + 64.72504372716915, + 47.426344456594684 + ], + [ + 64.83988641065284, + 47.620992191523136 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.18441446110387, + 12.0004566996162 + ], + [ + 65.06957177762018, + 12.195104434544653 + ], + [ + 64.83988641065284, + 12.195104434544653 + ], + [ + 64.72504372716915, + 12.0004566996162 + ], + [ + 64.83988641065284, + 11.805808964687746 + ], + [ + 65.06957177762018, + 11.805808964687746 + ], + [ + 65.18441446110387, + 12.0004566996162 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.18441446110387, + 12.389752169473105 + ], + [ + 65.06957177762018, + 12.58439990440156 + ], + [ + 64.83988641065284, + 12.58439990440156 + ], + [ + 64.72504372716915, + 12.389752169473105 + ], + [ + 64.83988641065284, + 12.195104434544652 + ], + [ + 65.06957177762018, + 12.195104434544652 + ], + [ + 65.18441446110387, + 12.389752169473105 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.18441446110387, + 12.779047639330013 + ], + [ + 65.06957177762018, + 12.973695374258467 + ], + [ + 64.83988641065284, + 12.973695374258467 + ], + [ + 64.72504372716915, + 12.779047639330013 + ], + [ + 64.83988641065284, + 12.58439990440156 + ], + [ + 65.06957177762018, + 12.58439990440156 + ], + [ + 65.18441446110387, + 12.779047639330013 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.18441446110387, + 13.16834310918692 + ], + [ + 65.06957177762018, + 13.362990844115373 + ], + [ + 64.83988641065284, + 13.362990844115373 + ], + [ + 64.72504372716915, + 13.16834310918692 + ], + [ + 64.83988641065284, + 12.973695374258465 + ], + [ + 65.06957177762018, + 12.973695374258465 + ], + [ + 65.18441446110387, + 13.16834310918692 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.18441446110387, + 13.557638579043825 + ], + [ + 65.06957177762018, + 13.752286313972279 + ], + [ + 64.83988641065284, + 13.752286313972279 + ], + [ + 64.72504372716915, + 13.557638579043825 + ], + [ + 64.83988641065284, + 13.362990844115371 + ], + [ + 65.06957177762018, + 13.362990844115371 + ], + [ + 65.18441446110387, + 13.557638579043825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.18441446110387, + 13.946934048900731 + ], + [ + 65.06957177762018, + 14.141581783829185 + ], + [ + 64.83988641065284, + 14.141581783829185 + ], + [ + 64.72504372716915, + 13.946934048900731 + ], + [ + 64.83988641065284, + 13.752286313972277 + ], + [ + 65.06957177762018, + 13.752286313972277 + ], + [ + 65.18441446110387, + 13.946934048900731 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.18441446110387, + 14.336229518757637 + ], + [ + 65.06957177762018, + 14.530877253686091 + ], + [ + 64.83988641065284, + 14.530877253686091 + ], + [ + 64.72504372716915, + 14.336229518757637 + ], + [ + 64.83988641065284, + 14.141581783829183 + ], + [ + 65.06957177762018, + 14.141581783829183 + ], + [ + 65.18441446110387, + 14.336229518757637 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.18441446110387, + 14.725524988614545 + ], + [ + 65.06957177762018, + 14.920172723542999 + ], + [ + 64.83988641065284, + 14.920172723542999 + ], + [ + 64.72504372716915, + 14.725524988614545 + ], + [ + 64.83988641065284, + 14.530877253686091 + ], + [ + 65.06957177762018, + 14.530877253686091 + ], + [ + 65.18441446110387, + 14.725524988614545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.18441446110387, + 15.114820458471451 + ], + [ + 65.06957177762018, + 15.309468193399905 + ], + [ + 64.83988641065284, + 15.309468193399905 + ], + [ + 64.72504372716915, + 15.114820458471451 + ], + [ + 64.83988641065284, + 14.920172723542997 + ], + [ + 65.06957177762018, + 14.920172723542997 + ], + [ + 65.18441446110387, + 15.114820458471451 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.18441446110387, + 15.504115928328357 + ], + [ + 65.06957177762018, + 15.69876366325681 + ], + [ + 64.83988641065284, + 15.69876366325681 + ], + [ + 64.72504372716915, + 15.504115928328357 + ], + [ + 64.83988641065284, + 15.309468193399903 + ], + [ + 65.06957177762018, + 15.309468193399903 + ], + [ + 65.18441446110387, + 15.504115928328357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.18441446110387, + 15.893411398185265 + ], + [ + 65.06957177762018, + 16.088059133113717 + ], + [ + 64.83988641065284, + 16.088059133113717 + ], + [ + 64.72504372716915, + 15.893411398185265 + ], + [ + 64.83988641065284, + 15.69876366325681 + ], + [ + 65.06957177762018, + 15.69876366325681 + ], + [ + 65.18441446110387, + 15.893411398185265 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.18441446110387, + 16.28270686804217 + ], + [ + 65.06957177762018, + 16.47735460297062 + ], + [ + 64.83988641065284, + 16.47735460297062 + ], + [ + 64.72504372716915, + 16.28270686804217 + ], + [ + 64.83988641065284, + 16.088059133113717 + ], + [ + 65.06957177762018, + 16.088059133113717 + ], + [ + 65.18441446110387, + 16.28270686804217 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.18441446110387, + 16.672002337899077 + ], + [ + 65.06957177762018, + 16.86665007282753 + ], + [ + 64.83988641065284, + 16.86665007282753 + ], + [ + 64.72504372716915, + 16.672002337899077 + ], + [ + 64.83988641065284, + 16.477354602970625 + ], + [ + 65.06957177762018, + 16.477354602970625 + ], + [ + 65.18441446110387, + 16.672002337899077 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.18441446110387, + 17.06129780775598 + ], + [ + 65.06957177762018, + 17.255945542684433 + ], + [ + 64.83988641065284, + 17.255945542684433 + ], + [ + 64.72504372716915, + 17.06129780775598 + ], + [ + 64.83988641065284, + 16.86665007282753 + ], + [ + 65.06957177762018, + 16.86665007282753 + ], + [ + 65.18441446110387, + 17.06129780775598 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.18441446110387, + 17.45059327761289 + ], + [ + 65.06957177762018, + 17.64524101254134 + ], + [ + 64.83988641065284, + 17.64524101254134 + ], + [ + 64.72504372716915, + 17.45059327761289 + ], + [ + 64.83988641065284, + 17.255945542684437 + ], + [ + 65.06957177762018, + 17.255945542684437 + ], + [ + 65.18441446110387, + 17.45059327761289 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.18441446110387, + 17.839888747469793 + ], + [ + 65.06957177762018, + 18.034536482398245 + ], + [ + 64.83988641065284, + 18.034536482398245 + ], + [ + 64.72504372716915, + 17.839888747469793 + ], + [ + 64.83988641065284, + 17.64524101254134 + ], + [ + 65.06957177762018, + 17.64524101254134 + ], + [ + 65.18441446110387, + 17.839888747469793 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.18441446110387, + 18.2291842173267 + ], + [ + 65.06957177762018, + 18.423831952255153 + ], + [ + 64.83988641065284, + 18.423831952255153 + ], + [ + 64.72504372716915, + 18.2291842173267 + ], + [ + 64.83988641065284, + 18.03453648239825 + ], + [ + 65.06957177762018, + 18.03453648239825 + ], + [ + 65.18441446110387, + 18.2291842173267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.18441446110387, + 18.61847968718361 + ], + [ + 65.06957177762018, + 18.81312742211206 + ], + [ + 64.83988641065284, + 18.81312742211206 + ], + [ + 64.72504372716915, + 18.61847968718361 + ], + [ + 64.83988641065284, + 18.423831952255156 + ], + [ + 65.06957177762018, + 18.423831952255156 + ], + [ + 65.18441446110387, + 18.61847968718361 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.18441446110387, + 19.007775157040513 + ], + [ + 65.06957177762018, + 19.202422891968965 + ], + [ + 64.83988641065284, + 19.202422891968965 + ], + [ + 64.72504372716915, + 19.007775157040513 + ], + [ + 64.83988641065284, + 18.81312742211206 + ], + [ + 65.06957177762018, + 18.81312742211206 + ], + [ + 65.18441446110387, + 19.007775157040513 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.18441446110387, + 19.39707062689742 + ], + [ + 65.06957177762018, + 19.591718361825873 + ], + [ + 64.83988641065284, + 19.591718361825873 + ], + [ + 64.72504372716915, + 19.39707062689742 + ], + [ + 64.83988641065284, + 19.20242289196897 + ], + [ + 65.06957177762018, + 19.20242289196897 + ], + [ + 65.18441446110387, + 19.39707062689742 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.18441446110387, + 19.78636609675433 + ], + [ + 65.06957177762018, + 19.98101383168278 + ], + [ + 64.83988641065284, + 19.98101383168278 + ], + [ + 64.72504372716915, + 19.78636609675433 + ], + [ + 64.83988641065284, + 19.591718361825876 + ], + [ + 65.06957177762018, + 19.591718361825876 + ], + [ + 65.18441446110387, + 19.78636609675433 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.18441446110387, + 20.175661566611232 + ], + [ + 65.06957177762018, + 20.370309301539685 + ], + [ + 64.83988641065284, + 20.370309301539685 + ], + [ + 64.72504372716915, + 20.175661566611232 + ], + [ + 64.83988641065284, + 19.98101383168278 + ], + [ + 65.06957177762018, + 19.98101383168278 + ], + [ + 65.18441446110387, + 20.175661566611232 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.18441446110387, + 20.564957036468137 + ], + [ + 65.06957177762018, + 20.75960477139659 + ], + [ + 64.83988641065284, + 20.75960477139659 + ], + [ + 64.72504372716915, + 20.564957036468137 + ], + [ + 64.83988641065284, + 20.370309301539685 + ], + [ + 65.06957177762018, + 20.370309301539685 + ], + [ + 65.18441446110387, + 20.564957036468137 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.18441446110387, + 20.954252506325044 + ], + [ + 65.06957177762018, + 21.148900241253497 + ], + [ + 64.83988641065284, + 21.148900241253497 + ], + [ + 64.72504372716915, + 20.954252506325044 + ], + [ + 64.83988641065284, + 20.759604771396592 + ], + [ + 65.06957177762018, + 20.759604771396592 + ], + [ + 65.18441446110387, + 20.954252506325044 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.18441446110387, + 21.343547976181952 + ], + [ + 65.06957177762018, + 21.538195711110404 + ], + [ + 64.83988641065284, + 21.538195711110404 + ], + [ + 64.72504372716915, + 21.343547976181952 + ], + [ + 64.83988641065284, + 21.1489002412535 + ], + [ + 65.06957177762018, + 21.1489002412535 + ], + [ + 65.18441446110387, + 21.343547976181952 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.18441446110387, + 21.732843446038856 + ], + [ + 65.06957177762018, + 21.92749118096731 + ], + [ + 64.83988641065284, + 21.92749118096731 + ], + [ + 64.72504372716915, + 21.732843446038856 + ], + [ + 64.83988641065284, + 21.538195711110404 + ], + [ + 65.06957177762018, + 21.538195711110404 + ], + [ + 65.18441446110387, + 21.732843446038856 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.18441446110387, + 22.122138915895764 + ], + [ + 65.06957177762018, + 22.316786650824216 + ], + [ + 64.83988641065284, + 22.316786650824216 + ], + [ + 64.72504372716915, + 22.122138915895764 + ], + [ + 64.83988641065284, + 21.927491180967312 + ], + [ + 65.06957177762018, + 21.927491180967312 + ], + [ + 65.18441446110387, + 22.122138915895764 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.18441446110387, + 22.511434385752672 + ], + [ + 65.06957177762018, + 22.706082120681124 + ], + [ + 64.83988641065284, + 22.706082120681124 + ], + [ + 64.72504372716915, + 22.511434385752672 + ], + [ + 64.83988641065284, + 22.31678665082422 + ], + [ + 65.06957177762018, + 22.31678665082422 + ], + [ + 65.18441446110387, + 22.511434385752672 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.18441446110387, + 22.900729855609576 + ], + [ + 65.06957177762018, + 23.09537759053803 + ], + [ + 64.83988641065284, + 23.09537759053803 + ], + [ + 64.72504372716915, + 22.900729855609576 + ], + [ + 64.83988641065284, + 22.706082120681124 + ], + [ + 65.06957177762018, + 22.706082120681124 + ], + [ + 65.18441446110387, + 22.900729855609576 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.18441446110387, + 23.290025325466484 + ], + [ + 65.06957177762018, + 23.484673060394936 + ], + [ + 64.83988641065284, + 23.484673060394936 + ], + [ + 64.72504372716915, + 23.290025325466484 + ], + [ + 64.83988641065284, + 23.095377590538032 + ], + [ + 65.06957177762018, + 23.095377590538032 + ], + [ + 65.18441446110387, + 23.290025325466484 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.18441446110387, + 23.67932079532339 + ], + [ + 65.06957177762018, + 23.873968530251844 + ], + [ + 64.83988641065284, + 23.873968530251844 + ], + [ + 64.72504372716915, + 23.67932079532339 + ], + [ + 64.83988641065284, + 23.48467306039494 + ], + [ + 65.06957177762018, + 23.48467306039494 + ], + [ + 65.18441446110387, + 23.67932079532339 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.18441446110387, + 24.068616265180296 + ], + [ + 65.06957177762018, + 24.263264000108748 + ], + [ + 64.83988641065284, + 24.263264000108748 + ], + [ + 64.72504372716915, + 24.068616265180296 + ], + [ + 64.83988641065284, + 23.873968530251844 + ], + [ + 65.06957177762018, + 23.873968530251844 + ], + [ + 65.18441446110387, + 24.068616265180296 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.18441446110387, + 24.4579117350372 + ], + [ + 65.06957177762018, + 24.652559469965652 + ], + [ + 64.83988641065284, + 24.652559469965652 + ], + [ + 64.72504372716915, + 24.4579117350372 + ], + [ + 64.83988641065284, + 24.263264000108748 + ], + [ + 65.06957177762018, + 24.263264000108748 + ], + [ + 65.18441446110387, + 24.4579117350372 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.18441446110387, + 24.847207204894108 + ], + [ + 65.06957177762018, + 25.04185493982256 + ], + [ + 64.83988641065284, + 25.04185493982256 + ], + [ + 64.72504372716915, + 24.847207204894108 + ], + [ + 64.83988641065284, + 24.652559469965656 + ], + [ + 65.06957177762018, + 24.652559469965656 + ], + [ + 65.18441446110387, + 24.847207204894108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.18441446110387, + 25.236502674751016 + ], + [ + 65.06957177762018, + 25.431150409679468 + ], + [ + 64.83988641065284, + 25.431150409679468 + ], + [ + 64.72504372716915, + 25.236502674751016 + ], + [ + 64.83988641065284, + 25.041854939822564 + ], + [ + 65.06957177762018, + 25.041854939822564 + ], + [ + 65.18441446110387, + 25.236502674751016 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.18441446110387, + 25.62579814460792 + ], + [ + 65.06957177762018, + 25.820445879536372 + ], + [ + 64.83988641065284, + 25.820445879536372 + ], + [ + 64.72504372716915, + 25.62579814460792 + ], + [ + 64.83988641065284, + 25.431150409679468 + ], + [ + 65.06957177762018, + 25.431150409679468 + ], + [ + 65.18441446110387, + 25.62579814460792 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.18441446110387, + 26.015093614464828 + ], + [ + 65.06957177762018, + 26.20974134939328 + ], + [ + 64.83988641065284, + 26.20974134939328 + ], + [ + 64.72504372716915, + 26.015093614464828 + ], + [ + 64.83988641065284, + 25.820445879536376 + ], + [ + 65.06957177762018, + 25.820445879536376 + ], + [ + 65.18441446110387, + 26.015093614464828 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.18441446110387, + 26.404389084321735 + ], + [ + 65.06957177762018, + 26.599036819250188 + ], + [ + 64.83988641065284, + 26.599036819250188 + ], + [ + 64.72504372716915, + 26.404389084321735 + ], + [ + 64.83988641065284, + 26.209741349393283 + ], + [ + 65.06957177762018, + 26.209741349393283 + ], + [ + 65.18441446110387, + 26.404389084321735 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.18441446110387, + 26.79368455417864 + ], + [ + 65.06957177762018, + 26.988332289107092 + ], + [ + 64.83988641065284, + 26.988332289107092 + ], + [ + 64.72504372716915, + 26.79368455417864 + ], + [ + 64.83988641065284, + 26.599036819250188 + ], + [ + 65.06957177762018, + 26.599036819250188 + ], + [ + 65.18441446110387, + 26.79368455417864 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.18441446110387, + 27.182980024035547 + ], + [ + 65.06957177762018, + 27.377627758964 + ], + [ + 64.83988641065284, + 27.377627758964 + ], + [ + 64.72504372716915, + 27.182980024035547 + ], + [ + 64.83988641065284, + 26.988332289107095 + ], + [ + 65.06957177762018, + 26.988332289107095 + ], + [ + 65.18441446110387, + 27.182980024035547 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.18441446110387, + 27.572275493892455 + ], + [ + 65.06957177762018, + 27.766923228820907 + ], + [ + 64.83988641065284, + 27.766923228820907 + ], + [ + 64.72504372716915, + 27.572275493892455 + ], + [ + 64.83988641065284, + 27.377627758964003 + ], + [ + 65.06957177762018, + 27.377627758964003 + ], + [ + 65.18441446110387, + 27.572275493892455 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.18441446110387, + 27.96157096374936 + ], + [ + 65.06957177762018, + 28.15621869867781 + ], + [ + 64.83988641065284, + 28.15621869867781 + ], + [ + 64.72504372716915, + 27.96157096374936 + ], + [ + 64.83988641065284, + 27.766923228820907 + ], + [ + 65.06957177762018, + 27.766923228820907 + ], + [ + 65.18441446110387, + 27.96157096374936 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.18441446110387, + 28.350866433606267 + ], + [ + 65.06957177762018, + 28.54551416853472 + ], + [ + 64.83988641065284, + 28.54551416853472 + ], + [ + 64.72504372716915, + 28.350866433606267 + ], + [ + 64.83988641065284, + 28.156218698677815 + ], + [ + 65.06957177762018, + 28.156218698677815 + ], + [ + 65.18441446110387, + 28.350866433606267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.18441446110387, + 28.74016190346317 + ], + [ + 65.06957177762018, + 28.934809638391624 + ], + [ + 64.83988641065284, + 28.934809638391624 + ], + [ + 64.72504372716915, + 28.74016190346317 + ], + [ + 64.83988641065284, + 28.54551416853472 + ], + [ + 65.06957177762018, + 28.54551416853472 + ], + [ + 65.18441446110387, + 28.74016190346317 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.18441446110387, + 29.12945737332008 + ], + [ + 65.06957177762018, + 29.32410510824853 + ], + [ + 64.83988641065284, + 29.32410510824853 + ], + [ + 64.72504372716915, + 29.12945737332008 + ], + [ + 64.83988641065284, + 28.934809638391627 + ], + [ + 65.06957177762018, + 28.934809638391627 + ], + [ + 65.18441446110387, + 29.12945737332008 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.18441446110387, + 29.518752843176983 + ], + [ + 65.06957177762018, + 29.713400578105436 + ], + [ + 64.83988641065284, + 29.713400578105436 + ], + [ + 64.72504372716915, + 29.518752843176983 + ], + [ + 64.83988641065284, + 29.32410510824853 + ], + [ + 65.06957177762018, + 29.32410510824853 + ], + [ + 65.18441446110387, + 29.518752843176983 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.18441446110387, + 29.90804831303389 + ], + [ + 65.06957177762018, + 30.102696047962343 + ], + [ + 64.83988641065284, + 30.102696047962343 + ], + [ + 64.72504372716915, + 29.90804831303389 + ], + [ + 64.83988641065284, + 29.71340057810544 + ], + [ + 65.06957177762018, + 29.71340057810544 + ], + [ + 65.18441446110387, + 29.90804831303389 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.18441446110387, + 30.297343782890795 + ], + [ + 65.06957177762018, + 30.491991517819248 + ], + [ + 64.83988641065284, + 30.491991517819248 + ], + [ + 64.72504372716915, + 30.297343782890795 + ], + [ + 64.83988641065284, + 30.102696047962343 + ], + [ + 65.06957177762018, + 30.102696047962343 + ], + [ + 65.18441446110387, + 30.297343782890795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.18441446110387, + 30.686639252747703 + ], + [ + 65.06957177762018, + 30.881286987676155 + ], + [ + 64.83988641065284, + 30.881286987676155 + ], + [ + 64.72504372716915, + 30.686639252747703 + ], + [ + 64.83988641065284, + 30.49199151781925 + ], + [ + 65.06957177762018, + 30.49199151781925 + ], + [ + 65.18441446110387, + 30.686639252747703 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.18441446110387, + 31.07593472260461 + ], + [ + 65.06957177762018, + 31.270582457533063 + ], + [ + 64.83988641065284, + 31.270582457533063 + ], + [ + 64.72504372716915, + 31.07593472260461 + ], + [ + 64.83988641065284, + 30.88128698767616 + ], + [ + 65.06957177762018, + 30.88128698767616 + ], + [ + 65.18441446110387, + 31.07593472260461 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.18441446110387, + 31.465230192461515 + ], + [ + 65.06957177762018, + 31.659877927389967 + ], + [ + 64.83988641065284, + 31.659877927389967 + ], + [ + 64.72504372716915, + 31.465230192461515 + ], + [ + 64.83988641065284, + 31.270582457533063 + ], + [ + 65.06957177762018, + 31.270582457533063 + ], + [ + 65.18441446110387, + 31.465230192461515 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.18441446110387, + 31.854525662318423 + ], + [ + 65.06957177762018, + 32.049173397246875 + ], + [ + 64.83988641065284, + 32.049173397246875 + ], + [ + 64.72504372716915, + 31.854525662318423 + ], + [ + 64.83988641065284, + 31.65987792738997 + ], + [ + 65.06957177762018, + 31.65987792738997 + ], + [ + 65.18441446110387, + 31.854525662318423 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.18441446110387, + 32.24382113217533 + ], + [ + 65.06957177762018, + 32.43846886710378 + ], + [ + 64.83988641065284, + 32.43846886710378 + ], + [ + 64.72504372716915, + 32.24382113217533 + ], + [ + 64.83988641065284, + 32.049173397246875 + ], + [ + 65.06957177762018, + 32.049173397246875 + ], + [ + 65.18441446110387, + 32.24382113217533 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.18441446110387, + 32.63311660203224 + ], + [ + 65.06957177762018, + 32.82776433696069 + ], + [ + 64.83988641065284, + 32.82776433696069 + ], + [ + 64.72504372716915, + 32.63311660203224 + ], + [ + 64.83988641065284, + 32.438468867103786 + ], + [ + 65.06957177762018, + 32.438468867103786 + ], + [ + 65.18441446110387, + 32.63311660203224 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.18441446110387, + 33.02241207188914 + ], + [ + 65.06957177762018, + 33.217059806817595 + ], + [ + 64.83988641065284, + 33.217059806817595 + ], + [ + 64.72504372716915, + 33.02241207188914 + ], + [ + 64.83988641065284, + 32.82776433696069 + ], + [ + 65.06957177762018, + 32.82776433696069 + ], + [ + 65.18441446110387, + 33.02241207188914 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.18441446110387, + 33.41170754174605 + ], + [ + 65.06957177762018, + 33.6063552766745 + ], + [ + 64.83988641065284, + 33.6063552766745 + ], + [ + 64.72504372716915, + 33.41170754174605 + ], + [ + 64.83988641065284, + 33.217059806817595 + ], + [ + 65.06957177762018, + 33.217059806817595 + ], + [ + 65.18441446110387, + 33.41170754174605 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.18441446110387, + 33.80100301160295 + ], + [ + 65.06957177762018, + 33.9956507465314 + ], + [ + 64.83988641065284, + 33.9956507465314 + ], + [ + 64.72504372716915, + 33.80100301160295 + ], + [ + 64.83988641065284, + 33.6063552766745 + ], + [ + 65.06957177762018, + 33.6063552766745 + ], + [ + 65.18441446110387, + 33.80100301160295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.18441446110387, + 34.190298481459855 + ], + [ + 65.06957177762018, + 34.38494621638831 + ], + [ + 64.83988641065284, + 34.38494621638831 + ], + [ + 64.72504372716915, + 34.190298481459855 + ], + [ + 64.83988641065284, + 33.9956507465314 + ], + [ + 65.06957177762018, + 33.9956507465314 + ], + [ + 65.18441446110387, + 34.190298481459855 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.18441446110387, + 34.57959395131677 + ], + [ + 65.06957177762018, + 34.77424168624522 + ], + [ + 64.83988641065284, + 34.77424168624522 + ], + [ + 64.72504372716915, + 34.57959395131677 + ], + [ + 64.83988641065284, + 34.384946216388315 + ], + [ + 65.06957177762018, + 34.384946216388315 + ], + [ + 65.18441446110387, + 34.57959395131677 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.18441446110387, + 34.96888942117368 + ], + [ + 65.06957177762018, + 35.16353715610213 + ], + [ + 64.83988641065284, + 35.16353715610213 + ], + [ + 64.72504372716915, + 34.96888942117368 + ], + [ + 64.83988641065284, + 34.774241686245226 + ], + [ + 65.06957177762018, + 34.774241686245226 + ], + [ + 65.18441446110387, + 34.96888942117368 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.18441446110387, + 35.35818489103058 + ], + [ + 65.06957177762018, + 35.552832625959034 + ], + [ + 64.83988641065284, + 35.552832625959034 + ], + [ + 64.72504372716915, + 35.35818489103058 + ], + [ + 64.83988641065284, + 35.16353715610213 + ], + [ + 65.06957177762018, + 35.16353715610213 + ], + [ + 65.18441446110387, + 35.35818489103058 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.18441446110387, + 35.74748036088749 + ], + [ + 65.06957177762018, + 35.94212809581594 + ], + [ + 64.83988641065284, + 35.94212809581594 + ], + [ + 64.72504372716915, + 35.74748036088749 + ], + [ + 64.83988641065284, + 35.552832625959034 + ], + [ + 65.06957177762018, + 35.552832625959034 + ], + [ + 65.18441446110387, + 35.74748036088749 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.18441446110387, + 36.13677583074439 + ], + [ + 65.06957177762018, + 36.33142356567284 + ], + [ + 64.83988641065284, + 36.33142356567284 + ], + [ + 64.72504372716915, + 36.13677583074439 + ], + [ + 64.83988641065284, + 35.94212809581594 + ], + [ + 65.06957177762018, + 35.94212809581594 + ], + [ + 65.18441446110387, + 36.13677583074439 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.18441446110387, + 36.526071300601295 + ], + [ + 65.06957177762018, + 36.72071903552975 + ], + [ + 64.83988641065284, + 36.72071903552975 + ], + [ + 64.72504372716915, + 36.526071300601295 + ], + [ + 64.83988641065284, + 36.33142356567284 + ], + [ + 65.06957177762018, + 36.33142356567284 + ], + [ + 65.18441446110387, + 36.526071300601295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.18441446110387, + 36.915366770458206 + ], + [ + 65.06957177762018, + 37.11001450538666 + ], + [ + 64.83988641065284, + 37.11001450538666 + ], + [ + 64.72504372716915, + 36.915366770458206 + ], + [ + 64.83988641065284, + 36.720719035529754 + ], + [ + 65.06957177762018, + 36.720719035529754 + ], + [ + 65.18441446110387, + 36.915366770458206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.18441446110387, + 37.30466224031511 + ], + [ + 65.06957177762018, + 37.49930997524356 + ], + [ + 64.83988641065284, + 37.49930997524356 + ], + [ + 64.72504372716915, + 37.30466224031511 + ], + [ + 64.83988641065284, + 37.11001450538666 + ], + [ + 65.06957177762018, + 37.11001450538666 + ], + [ + 65.18441446110387, + 37.30466224031511 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.18441446110387, + 37.69395771017202 + ], + [ + 65.06957177762018, + 37.888605445100474 + ], + [ + 64.83988641065284, + 37.888605445100474 + ], + [ + 64.72504372716915, + 37.69395771017202 + ], + [ + 64.83988641065284, + 37.49930997524357 + ], + [ + 65.06957177762018, + 37.49930997524357 + ], + [ + 65.18441446110387, + 37.69395771017202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.18441446110387, + 38.083253180028926 + ], + [ + 65.06957177762018, + 38.27790091495738 + ], + [ + 64.83988641065284, + 38.27790091495738 + ], + [ + 64.72504372716915, + 38.083253180028926 + ], + [ + 64.83988641065284, + 37.888605445100474 + ], + [ + 65.06957177762018, + 37.888605445100474 + ], + [ + 65.18441446110387, + 38.083253180028926 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.18441446110387, + 38.47254864988583 + ], + [ + 65.06957177762018, + 38.66719638481428 + ], + [ + 64.83988641065284, + 38.66719638481428 + ], + [ + 64.72504372716915, + 38.47254864988583 + ], + [ + 64.83988641065284, + 38.27790091495738 + ], + [ + 65.06957177762018, + 38.27790091495738 + ], + [ + 65.18441446110387, + 38.47254864988583 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.18441446110387, + 38.861844119742734 + ], + [ + 65.06957177762018, + 39.05649185467119 + ], + [ + 64.83988641065284, + 39.05649185467119 + ], + [ + 64.72504372716915, + 38.861844119742734 + ], + [ + 64.83988641065284, + 38.66719638481428 + ], + [ + 65.06957177762018, + 38.66719638481428 + ], + [ + 65.18441446110387, + 38.861844119742734 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.18441446110387, + 39.25113958959964 + ], + [ + 65.06957177762018, + 39.44578732452809 + ], + [ + 64.83988641065284, + 39.44578732452809 + ], + [ + 64.72504372716915, + 39.25113958959964 + ], + [ + 64.83988641065284, + 39.05649185467119 + ], + [ + 65.06957177762018, + 39.05649185467119 + ], + [ + 65.18441446110387, + 39.25113958959964 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.18441446110387, + 39.64043505945655 + ], + [ + 65.06957177762018, + 39.835082794385 + ], + [ + 64.83988641065284, + 39.835082794385 + ], + [ + 64.72504372716915, + 39.64043505945655 + ], + [ + 64.83988641065284, + 39.4457873245281 + ], + [ + 65.06957177762018, + 39.4457873245281 + ], + [ + 65.18441446110387, + 39.64043505945655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.18441446110387, + 40.029730529313454 + ], + [ + 65.06957177762018, + 40.224378264241906 + ], + [ + 64.83988641065284, + 40.224378264241906 + ], + [ + 64.72504372716915, + 40.029730529313454 + ], + [ + 64.83988641065284, + 39.835082794385 + ], + [ + 65.06957177762018, + 39.835082794385 + ], + [ + 65.18441446110387, + 40.029730529313454 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.18441446110387, + 40.419025999170366 + ], + [ + 65.06957177762018, + 40.61367373409882 + ], + [ + 64.83988641065284, + 40.61367373409882 + ], + [ + 64.72504372716915, + 40.419025999170366 + ], + [ + 64.83988641065284, + 40.22437826424191 + ], + [ + 65.06957177762018, + 40.22437826424191 + ], + [ + 65.18441446110387, + 40.419025999170366 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.18441446110387, + 40.80832146902727 + ], + [ + 65.06957177762018, + 41.00296920395572 + ], + [ + 64.83988641065284, + 41.00296920395572 + ], + [ + 64.72504372716915, + 40.80832146902727 + ], + [ + 64.83988641065284, + 40.61367373409882 + ], + [ + 65.06957177762018, + 40.61367373409882 + ], + [ + 65.18441446110387, + 40.80832146902727 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.18441446110387, + 41.197616938884174 + ], + [ + 65.06957177762018, + 41.392264673812626 + ], + [ + 64.83988641065284, + 41.392264673812626 + ], + [ + 64.72504372716915, + 41.197616938884174 + ], + [ + 64.83988641065284, + 41.00296920395572 + ], + [ + 65.06957177762018, + 41.00296920395572 + ], + [ + 65.18441446110387, + 41.197616938884174 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.18441446110387, + 41.58691240874108 + ], + [ + 65.06957177762018, + 41.78156014366953 + ], + [ + 64.83988641065284, + 41.78156014366953 + ], + [ + 64.72504372716915, + 41.58691240874108 + ], + [ + 64.83988641065284, + 41.392264673812626 + ], + [ + 65.06957177762018, + 41.392264673812626 + ], + [ + 65.18441446110387, + 41.58691240874108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.18441446110387, + 41.97620787859798 + ], + [ + 65.06957177762018, + 42.170855613526435 + ], + [ + 64.83988641065284, + 42.170855613526435 + ], + [ + 64.72504372716915, + 41.97620787859798 + ], + [ + 64.83988641065284, + 41.78156014366953 + ], + [ + 65.06957177762018, + 41.78156014366953 + ], + [ + 65.18441446110387, + 41.97620787859798 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.18441446110387, + 42.365503348454894 + ], + [ + 65.06957177762018, + 42.560151083383346 + ], + [ + 64.83988641065284, + 42.560151083383346 + ], + [ + 64.72504372716915, + 42.365503348454894 + ], + [ + 64.83988641065284, + 42.17085561352644 + ], + [ + 65.06957177762018, + 42.17085561352644 + ], + [ + 65.18441446110387, + 42.365503348454894 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.18441446110387, + 42.754798818311805 + ], + [ + 65.06957177762018, + 42.94944655324026 + ], + [ + 64.83988641065284, + 42.94944655324026 + ], + [ + 64.72504372716915, + 42.754798818311805 + ], + [ + 64.83988641065284, + 42.56015108338335 + ], + [ + 65.06957177762018, + 42.56015108338335 + ], + [ + 65.18441446110387, + 42.754798818311805 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.18441446110387, + 43.14409428816871 + ], + [ + 65.06957177762018, + 43.33874202309716 + ], + [ + 64.83988641065284, + 43.33874202309716 + ], + [ + 64.72504372716915, + 43.14409428816871 + ], + [ + 64.83988641065284, + 42.94944655324026 + ], + [ + 65.06957177762018, + 42.94944655324026 + ], + [ + 65.18441446110387, + 43.14409428816871 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.18441446110387, + 43.53338975802561 + ], + [ + 65.06957177762018, + 43.728037492954066 + ], + [ + 64.83988641065284, + 43.728037492954066 + ], + [ + 64.72504372716915, + 43.53338975802561 + ], + [ + 64.83988641065284, + 43.33874202309716 + ], + [ + 65.06957177762018, + 43.33874202309716 + ], + [ + 65.18441446110387, + 43.53338975802561 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.18441446110387, + 43.92268522788252 + ], + [ + 65.06957177762018, + 44.11733296281097 + ], + [ + 64.83988641065284, + 44.11733296281097 + ], + [ + 64.72504372716915, + 43.92268522788252 + ], + [ + 64.83988641065284, + 43.728037492954066 + ], + [ + 65.06957177762018, + 43.728037492954066 + ], + [ + 65.18441446110387, + 43.92268522788252 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.18441446110387, + 44.31198069773942 + ], + [ + 65.06957177762018, + 44.506628432667874 + ], + [ + 64.83988641065284, + 44.506628432667874 + ], + [ + 64.72504372716915, + 44.31198069773942 + ], + [ + 64.83988641065284, + 44.11733296281097 + ], + [ + 65.06957177762018, + 44.11733296281097 + ], + [ + 65.18441446110387, + 44.31198069773942 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.18441446110387, + 44.701276167596326 + ], + [ + 65.06957177762018, + 44.89592390252478 + ], + [ + 64.83988641065284, + 44.89592390252478 + ], + [ + 64.72504372716915, + 44.701276167596326 + ], + [ + 64.83988641065284, + 44.506628432667874 + ], + [ + 65.06957177762018, + 44.506628432667874 + ], + [ + 65.18441446110387, + 44.701276167596326 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.18441446110387, + 45.090571637453245 + ], + [ + 65.06957177762018, + 45.2852193723817 + ], + [ + 64.83988641065284, + 45.2852193723817 + ], + [ + 64.72504372716915, + 45.090571637453245 + ], + [ + 64.83988641065284, + 44.89592390252479 + ], + [ + 65.06957177762018, + 44.89592390252479 + ], + [ + 65.18441446110387, + 45.090571637453245 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.18441446110387, + 45.47986710731015 + ], + [ + 65.06957177762018, + 45.6745148422386 + ], + [ + 64.83988641065284, + 45.6745148422386 + ], + [ + 64.72504372716915, + 45.47986710731015 + ], + [ + 64.83988641065284, + 45.2852193723817 + ], + [ + 65.06957177762018, + 45.2852193723817 + ], + [ + 65.18441446110387, + 45.47986710731015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.18441446110387, + 45.86916257716705 + ], + [ + 65.06957177762018, + 46.063810312095505 + ], + [ + 64.83988641065284, + 46.063810312095505 + ], + [ + 64.72504372716915, + 45.86916257716705 + ], + [ + 64.83988641065284, + 45.6745148422386 + ], + [ + 65.06957177762018, + 45.6745148422386 + ], + [ + 65.18441446110387, + 45.86916257716705 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.18441446110387, + 46.25845804702396 + ], + [ + 65.06957177762018, + 46.45310578195241 + ], + [ + 64.83988641065284, + 46.45310578195241 + ], + [ + 64.72504372716915, + 46.25845804702396 + ], + [ + 64.83988641065284, + 46.063810312095505 + ], + [ + 65.06957177762018, + 46.063810312095505 + ], + [ + 65.18441446110387, + 46.25845804702396 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.18441446110387, + 46.64775351688086 + ], + [ + 65.06957177762018, + 46.842401251809314 + ], + [ + 64.83988641065284, + 46.842401251809314 + ], + [ + 64.72504372716915, + 46.64775351688086 + ], + [ + 64.83988641065284, + 46.45310578195241 + ], + [ + 65.06957177762018, + 46.45310578195241 + ], + [ + 65.18441446110387, + 46.64775351688086 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.18441446110387, + 47.037048986737766 + ], + [ + 65.06957177762018, + 47.23169672166622 + ], + [ + 64.83988641065284, + 47.23169672166622 + ], + [ + 64.72504372716915, + 47.037048986737766 + ], + [ + 64.83988641065284, + 46.842401251809314 + ], + [ + 65.06957177762018, + 46.842401251809314 + ], + [ + 65.18441446110387, + 47.037048986737766 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.18441446110387, + 47.42634445659467 + ], + [ + 65.06957177762018, + 47.62099219152312 + ], + [ + 64.83988641065284, + 47.62099219152312 + ], + [ + 64.72504372716915, + 47.42634445659467 + ], + [ + 64.83988641065284, + 47.23169672166622 + ], + [ + 65.06957177762018, + 47.23169672166622 + ], + [ + 65.18441446110387, + 47.42634445659467 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.18441446110387, + 47.81563992645159 + ], + [ + 65.06957177762018, + 48.01028766138004 + ], + [ + 64.83988641065284, + 48.01028766138004 + ], + [ + 64.72504372716915, + 47.81563992645159 + ], + [ + 64.83988641065284, + 47.620992191523136 + ], + [ + 65.06957177762018, + 47.620992191523136 + ], + [ + 65.18441446110387, + 47.81563992645159 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.52894251155492, + 11.805808964687746 + ], + [ + 65.41409982807123, + 12.0004566996162 + ], + [ + 65.18441446110388, + 12.0004566996162 + ], + [ + 65.0695717776202, + 11.805808964687746 + ], + [ + 65.18441446110388, + 11.611161229759292 + ], + [ + 65.41409982807123, + 11.611161229759292 + ], + [ + 65.52894251155492, + 11.805808964687746 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.52894251155492, + 12.195104434544652 + ], + [ + 65.41409982807123, + 12.389752169473105 + ], + [ + 65.18441446110388, + 12.389752169473105 + ], + [ + 65.0695717776202, + 12.195104434544652 + ], + [ + 65.18441446110388, + 12.000456699616198 + ], + [ + 65.41409982807123, + 12.000456699616198 + ], + [ + 65.52894251155492, + 12.195104434544652 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.52894251155492, + 12.58439990440156 + ], + [ + 65.41409982807123, + 12.779047639330013 + ], + [ + 65.18441446110388, + 12.779047639330013 + ], + [ + 65.0695717776202, + 12.58439990440156 + ], + [ + 65.18441446110388, + 12.389752169473105 + ], + [ + 65.41409982807123, + 12.389752169473105 + ], + [ + 65.52894251155492, + 12.58439990440156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.52894251155492, + 12.973695374258465 + ], + [ + 65.41409982807123, + 13.16834310918692 + ], + [ + 65.18441446110388, + 13.16834310918692 + ], + [ + 65.0695717776202, + 12.973695374258465 + ], + [ + 65.18441446110388, + 12.779047639330011 + ], + [ + 65.41409982807123, + 12.779047639330011 + ], + [ + 65.52894251155492, + 12.973695374258465 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.52894251155492, + 13.362990844115371 + ], + [ + 65.41409982807123, + 13.557638579043825 + ], + [ + 65.18441446110388, + 13.557638579043825 + ], + [ + 65.0695717776202, + 13.362990844115371 + ], + [ + 65.18441446110388, + 13.168343109186917 + ], + [ + 65.41409982807123, + 13.168343109186917 + ], + [ + 65.52894251155492, + 13.362990844115371 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.52894251155492, + 13.752286313972277 + ], + [ + 65.41409982807123, + 13.946934048900731 + ], + [ + 65.18441446110388, + 13.946934048900731 + ], + [ + 65.0695717776202, + 13.752286313972277 + ], + [ + 65.18441446110388, + 13.557638579043823 + ], + [ + 65.41409982807123, + 13.557638579043823 + ], + [ + 65.52894251155492, + 13.752286313972277 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.52894251155492, + 14.141581783829183 + ], + [ + 65.41409982807123, + 14.336229518757637 + ], + [ + 65.18441446110388, + 14.336229518757637 + ], + [ + 65.0695717776202, + 14.141581783829183 + ], + [ + 65.18441446110388, + 13.94693404890073 + ], + [ + 65.41409982807123, + 13.94693404890073 + ], + [ + 65.52894251155492, + 14.141581783829183 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.52894251155492, + 14.530877253686091 + ], + [ + 65.41409982807123, + 14.725524988614545 + ], + [ + 65.18441446110388, + 14.725524988614545 + ], + [ + 65.0695717776202, + 14.530877253686091 + ], + [ + 65.18441446110388, + 14.336229518757637 + ], + [ + 65.41409982807123, + 14.336229518757637 + ], + [ + 65.52894251155492, + 14.530877253686091 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.52894251155492, + 14.920172723542997 + ], + [ + 65.41409982807123, + 15.114820458471451 + ], + [ + 65.18441446110388, + 15.114820458471451 + ], + [ + 65.0695717776202, + 14.920172723542997 + ], + [ + 65.18441446110388, + 14.725524988614543 + ], + [ + 65.41409982807123, + 14.725524988614543 + ], + [ + 65.52894251155492, + 14.920172723542997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.52894251155492, + 15.309468193399903 + ], + [ + 65.41409982807123, + 15.504115928328357 + ], + [ + 65.18441446110388, + 15.504115928328357 + ], + [ + 65.0695717776202, + 15.309468193399903 + ], + [ + 65.18441446110388, + 15.11482045847145 + ], + [ + 65.41409982807123, + 15.11482045847145 + ], + [ + 65.52894251155492, + 15.309468193399903 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.52894251155492, + 15.69876366325681 + ], + [ + 65.41409982807123, + 15.893411398185265 + ], + [ + 65.18441446110388, + 15.893411398185265 + ], + [ + 65.0695717776202, + 15.69876366325681 + ], + [ + 65.18441446110388, + 15.504115928328357 + ], + [ + 65.41409982807123, + 15.504115928328357 + ], + [ + 65.52894251155492, + 15.69876366325681 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.52894251155492, + 16.088059133113717 + ], + [ + 65.41409982807123, + 16.28270686804217 + ], + [ + 65.18441446110388, + 16.28270686804217 + ], + [ + 65.0695717776202, + 16.088059133113717 + ], + [ + 65.18441446110388, + 15.893411398185263 + ], + [ + 65.41409982807123, + 15.893411398185263 + ], + [ + 65.52894251155492, + 16.088059133113717 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.52894251155492, + 16.477354602970625 + ], + [ + 65.41409982807123, + 16.672002337899077 + ], + [ + 65.18441446110388, + 16.672002337899077 + ], + [ + 65.0695717776202, + 16.477354602970625 + ], + [ + 65.18441446110388, + 16.282706868042172 + ], + [ + 65.41409982807123, + 16.282706868042172 + ], + [ + 65.52894251155492, + 16.477354602970625 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.52894251155492, + 16.86665007282753 + ], + [ + 65.41409982807123, + 17.06129780775598 + ], + [ + 65.18441446110388, + 17.06129780775598 + ], + [ + 65.0695717776202, + 16.86665007282753 + ], + [ + 65.18441446110388, + 16.672002337899077 + ], + [ + 65.41409982807123, + 16.672002337899077 + ], + [ + 65.52894251155492, + 16.86665007282753 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.52894251155492, + 17.255945542684437 + ], + [ + 65.41409982807123, + 17.45059327761289 + ], + [ + 65.18441446110388, + 17.45059327761289 + ], + [ + 65.0695717776202, + 17.255945542684437 + ], + [ + 65.18441446110388, + 17.061297807755984 + ], + [ + 65.41409982807123, + 17.061297807755984 + ], + [ + 65.52894251155492, + 17.255945542684437 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.52894251155492, + 17.64524101254134 + ], + [ + 65.41409982807123, + 17.839888747469793 + ], + [ + 65.18441446110388, + 17.839888747469793 + ], + [ + 65.0695717776202, + 17.64524101254134 + ], + [ + 65.18441446110388, + 17.45059327761289 + ], + [ + 65.41409982807123, + 17.45059327761289 + ], + [ + 65.52894251155492, + 17.64524101254134 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.52894251155492, + 18.03453648239825 + ], + [ + 65.41409982807123, + 18.2291842173267 + ], + [ + 65.18441446110388, + 18.2291842173267 + ], + [ + 65.0695717776202, + 18.03453648239825 + ], + [ + 65.18441446110388, + 17.839888747469796 + ], + [ + 65.41409982807123, + 17.839888747469796 + ], + [ + 65.52894251155492, + 18.03453648239825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.52894251155492, + 18.423831952255156 + ], + [ + 65.41409982807123, + 18.61847968718361 + ], + [ + 65.18441446110388, + 18.61847968718361 + ], + [ + 65.0695717776202, + 18.423831952255156 + ], + [ + 65.18441446110388, + 18.229184217326704 + ], + [ + 65.41409982807123, + 18.229184217326704 + ], + [ + 65.52894251155492, + 18.423831952255156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.52894251155492, + 18.81312742211206 + ], + [ + 65.41409982807123, + 19.007775157040513 + ], + [ + 65.18441446110388, + 19.007775157040513 + ], + [ + 65.0695717776202, + 18.81312742211206 + ], + [ + 65.18441446110388, + 18.61847968718361 + ], + [ + 65.41409982807123, + 18.61847968718361 + ], + [ + 65.52894251155492, + 18.81312742211206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.52894251155492, + 19.20242289196897 + ], + [ + 65.41409982807123, + 19.39707062689742 + ], + [ + 65.18441446110388, + 19.39707062689742 + ], + [ + 65.0695717776202, + 19.20242289196897 + ], + [ + 65.18441446110388, + 19.007775157040516 + ], + [ + 65.41409982807123, + 19.007775157040516 + ], + [ + 65.52894251155492, + 19.20242289196897 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.52894251155492, + 19.591718361825876 + ], + [ + 65.41409982807123, + 19.78636609675433 + ], + [ + 65.18441446110388, + 19.78636609675433 + ], + [ + 65.0695717776202, + 19.591718361825876 + ], + [ + 65.18441446110388, + 19.397070626897424 + ], + [ + 65.41409982807123, + 19.397070626897424 + ], + [ + 65.52894251155492, + 19.591718361825876 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.52894251155492, + 19.98101383168278 + ], + [ + 65.41409982807123, + 20.175661566611232 + ], + [ + 65.18441446110388, + 20.175661566611232 + ], + [ + 65.0695717776202, + 19.98101383168278 + ], + [ + 65.18441446110388, + 19.78636609675433 + ], + [ + 65.41409982807123, + 19.78636609675433 + ], + [ + 65.52894251155492, + 19.98101383168278 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.52894251155492, + 20.370309301539685 + ], + [ + 65.41409982807123, + 20.564957036468137 + ], + [ + 65.18441446110388, + 20.564957036468137 + ], + [ + 65.0695717776202, + 20.370309301539685 + ], + [ + 65.18441446110388, + 20.175661566611232 + ], + [ + 65.41409982807123, + 20.175661566611232 + ], + [ + 65.52894251155492, + 20.370309301539685 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.52894251155492, + 20.759604771396592 + ], + [ + 65.41409982807123, + 20.954252506325044 + ], + [ + 65.18441446110388, + 20.954252506325044 + ], + [ + 65.0695717776202, + 20.759604771396592 + ], + [ + 65.18441446110388, + 20.56495703646814 + ], + [ + 65.41409982807123, + 20.56495703646814 + ], + [ + 65.52894251155492, + 20.759604771396592 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.52894251155492, + 21.1489002412535 + ], + [ + 65.41409982807123, + 21.343547976181952 + ], + [ + 65.18441446110388, + 21.343547976181952 + ], + [ + 65.0695717776202, + 21.1489002412535 + ], + [ + 65.18441446110388, + 20.954252506325048 + ], + [ + 65.41409982807123, + 20.954252506325048 + ], + [ + 65.52894251155492, + 21.1489002412535 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.52894251155492, + 21.538195711110404 + ], + [ + 65.41409982807123, + 21.732843446038856 + ], + [ + 65.18441446110388, + 21.732843446038856 + ], + [ + 65.0695717776202, + 21.538195711110404 + ], + [ + 65.18441446110388, + 21.343547976181952 + ], + [ + 65.41409982807123, + 21.343547976181952 + ], + [ + 65.52894251155492, + 21.538195711110404 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.52894251155492, + 21.927491180967312 + ], + [ + 65.41409982807123, + 22.122138915895764 + ], + [ + 65.18441446110388, + 22.122138915895764 + ], + [ + 65.0695717776202, + 21.927491180967312 + ], + [ + 65.18441446110388, + 21.73284344603886 + ], + [ + 65.41409982807123, + 21.73284344603886 + ], + [ + 65.52894251155492, + 21.927491180967312 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.52894251155492, + 22.31678665082422 + ], + [ + 65.41409982807123, + 22.511434385752672 + ], + [ + 65.18441446110388, + 22.511434385752672 + ], + [ + 65.0695717776202, + 22.31678665082422 + ], + [ + 65.18441446110388, + 22.122138915895768 + ], + [ + 65.41409982807123, + 22.122138915895768 + ], + [ + 65.52894251155492, + 22.31678665082422 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.52894251155492, + 22.706082120681124 + ], + [ + 65.41409982807123, + 22.900729855609576 + ], + [ + 65.18441446110388, + 22.900729855609576 + ], + [ + 65.0695717776202, + 22.706082120681124 + ], + [ + 65.18441446110388, + 22.511434385752672 + ], + [ + 65.41409982807123, + 22.511434385752672 + ], + [ + 65.52894251155492, + 22.706082120681124 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.52894251155492, + 23.095377590538032 + ], + [ + 65.41409982807123, + 23.290025325466484 + ], + [ + 65.18441446110388, + 23.290025325466484 + ], + [ + 65.0695717776202, + 23.095377590538032 + ], + [ + 65.18441446110388, + 22.90072985560958 + ], + [ + 65.41409982807123, + 22.90072985560958 + ], + [ + 65.52894251155492, + 23.095377590538032 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.52894251155492, + 23.48467306039494 + ], + [ + 65.41409982807123, + 23.67932079532339 + ], + [ + 65.18441446110388, + 23.67932079532339 + ], + [ + 65.0695717776202, + 23.48467306039494 + ], + [ + 65.18441446110388, + 23.290025325466488 + ], + [ + 65.41409982807123, + 23.290025325466488 + ], + [ + 65.52894251155492, + 23.48467306039494 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.52894251155492, + 23.873968530251844 + ], + [ + 65.41409982807123, + 24.068616265180296 + ], + [ + 65.18441446110388, + 24.068616265180296 + ], + [ + 65.0695717776202, + 23.873968530251844 + ], + [ + 65.18441446110388, + 23.67932079532339 + ], + [ + 65.41409982807123, + 23.67932079532339 + ], + [ + 65.52894251155492, + 23.873968530251844 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.52894251155492, + 24.263264000108748 + ], + [ + 65.41409982807123, + 24.4579117350372 + ], + [ + 65.18441446110388, + 24.4579117350372 + ], + [ + 65.0695717776202, + 24.263264000108748 + ], + [ + 65.18441446110388, + 24.068616265180296 + ], + [ + 65.41409982807123, + 24.068616265180296 + ], + [ + 65.52894251155492, + 24.263264000108748 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.52894251155492, + 24.652559469965656 + ], + [ + 65.41409982807123, + 24.847207204894108 + ], + [ + 65.18441446110388, + 24.847207204894108 + ], + [ + 65.0695717776202, + 24.652559469965656 + ], + [ + 65.18441446110388, + 24.457911735037204 + ], + [ + 65.41409982807123, + 24.457911735037204 + ], + [ + 65.52894251155492, + 24.652559469965656 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.52894251155492, + 25.041854939822564 + ], + [ + 65.41409982807123, + 25.236502674751016 + ], + [ + 65.18441446110388, + 25.236502674751016 + ], + [ + 65.0695717776202, + 25.041854939822564 + ], + [ + 65.18441446110388, + 24.84720720489411 + ], + [ + 65.41409982807123, + 24.84720720489411 + ], + [ + 65.52894251155492, + 25.041854939822564 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.52894251155492, + 25.431150409679468 + ], + [ + 65.41409982807123, + 25.62579814460792 + ], + [ + 65.18441446110388, + 25.62579814460792 + ], + [ + 65.0695717776202, + 25.431150409679468 + ], + [ + 65.18441446110388, + 25.236502674751016 + ], + [ + 65.41409982807123, + 25.236502674751016 + ], + [ + 65.52894251155492, + 25.431150409679468 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.52894251155492, + 25.820445879536376 + ], + [ + 65.41409982807123, + 26.015093614464828 + ], + [ + 65.18441446110388, + 26.015093614464828 + ], + [ + 65.0695717776202, + 25.820445879536376 + ], + [ + 65.18441446110388, + 25.625798144607923 + ], + [ + 65.41409982807123, + 25.625798144607923 + ], + [ + 65.52894251155492, + 25.820445879536376 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.52894251155492, + 26.209741349393283 + ], + [ + 65.41409982807123, + 26.404389084321735 + ], + [ + 65.18441446110388, + 26.404389084321735 + ], + [ + 65.0695717776202, + 26.209741349393283 + ], + [ + 65.18441446110388, + 26.01509361446483 + ], + [ + 65.41409982807123, + 26.01509361446483 + ], + [ + 65.52894251155492, + 26.209741349393283 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.52894251155492, + 26.599036819250188 + ], + [ + 65.41409982807123, + 26.79368455417864 + ], + [ + 65.18441446110388, + 26.79368455417864 + ], + [ + 65.0695717776202, + 26.599036819250188 + ], + [ + 65.18441446110388, + 26.404389084321735 + ], + [ + 65.41409982807123, + 26.404389084321735 + ], + [ + 65.52894251155492, + 26.599036819250188 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.52894251155492, + 26.988332289107095 + ], + [ + 65.41409982807123, + 27.182980024035547 + ], + [ + 65.18441446110388, + 27.182980024035547 + ], + [ + 65.0695717776202, + 26.988332289107095 + ], + [ + 65.18441446110388, + 26.793684554178643 + ], + [ + 65.41409982807123, + 26.793684554178643 + ], + [ + 65.52894251155492, + 26.988332289107095 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.52894251155492, + 27.377627758964003 + ], + [ + 65.41409982807123, + 27.572275493892455 + ], + [ + 65.18441446110388, + 27.572275493892455 + ], + [ + 65.0695717776202, + 27.377627758964003 + ], + [ + 65.18441446110388, + 27.18298002403555 + ], + [ + 65.41409982807123, + 27.18298002403555 + ], + [ + 65.52894251155492, + 27.377627758964003 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.52894251155492, + 27.766923228820907 + ], + [ + 65.41409982807123, + 27.96157096374936 + ], + [ + 65.18441446110388, + 27.96157096374936 + ], + [ + 65.0695717776202, + 27.766923228820907 + ], + [ + 65.18441446110388, + 27.572275493892455 + ], + [ + 65.41409982807123, + 27.572275493892455 + ], + [ + 65.52894251155492, + 27.766923228820907 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.52894251155492, + 28.156218698677815 + ], + [ + 65.41409982807123, + 28.350866433606267 + ], + [ + 65.18441446110388, + 28.350866433606267 + ], + [ + 65.0695717776202, + 28.156218698677815 + ], + [ + 65.18441446110388, + 27.961570963749363 + ], + [ + 65.41409982807123, + 27.961570963749363 + ], + [ + 65.52894251155492, + 28.156218698677815 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.52894251155492, + 28.54551416853472 + ], + [ + 65.41409982807123, + 28.74016190346317 + ], + [ + 65.18441446110388, + 28.74016190346317 + ], + [ + 65.0695717776202, + 28.54551416853472 + ], + [ + 65.18441446110388, + 28.350866433606267 + ], + [ + 65.41409982807123, + 28.350866433606267 + ], + [ + 65.52894251155492, + 28.54551416853472 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.52894251155492, + 28.934809638391627 + ], + [ + 65.41409982807123, + 29.12945737332008 + ], + [ + 65.18441446110388, + 29.12945737332008 + ], + [ + 65.0695717776202, + 28.934809638391627 + ], + [ + 65.18441446110388, + 28.740161903463175 + ], + [ + 65.41409982807123, + 28.740161903463175 + ], + [ + 65.52894251155492, + 28.934809638391627 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.52894251155492, + 29.32410510824853 + ], + [ + 65.41409982807123, + 29.518752843176983 + ], + [ + 65.18441446110388, + 29.518752843176983 + ], + [ + 65.0695717776202, + 29.32410510824853 + ], + [ + 65.18441446110388, + 29.12945737332008 + ], + [ + 65.41409982807123, + 29.12945737332008 + ], + [ + 65.52894251155492, + 29.32410510824853 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.52894251155492, + 29.71340057810544 + ], + [ + 65.41409982807123, + 29.90804831303389 + ], + [ + 65.18441446110388, + 29.90804831303389 + ], + [ + 65.0695717776202, + 29.71340057810544 + ], + [ + 65.18441446110388, + 29.518752843176987 + ], + [ + 65.41409982807123, + 29.518752843176987 + ], + [ + 65.52894251155492, + 29.71340057810544 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.52894251155492, + 30.102696047962343 + ], + [ + 65.41409982807123, + 30.297343782890795 + ], + [ + 65.18441446110388, + 30.297343782890795 + ], + [ + 65.0695717776202, + 30.102696047962343 + ], + [ + 65.18441446110388, + 29.90804831303389 + ], + [ + 65.41409982807123, + 29.90804831303389 + ], + [ + 65.52894251155492, + 30.102696047962343 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.52894251155492, + 30.49199151781925 + ], + [ + 65.41409982807123, + 30.686639252747703 + ], + [ + 65.18441446110388, + 30.686639252747703 + ], + [ + 65.0695717776202, + 30.49199151781925 + ], + [ + 65.18441446110388, + 30.2973437828908 + ], + [ + 65.41409982807123, + 30.2973437828908 + ], + [ + 65.52894251155492, + 30.49199151781925 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.52894251155492, + 30.88128698767616 + ], + [ + 65.41409982807123, + 31.07593472260461 + ], + [ + 65.18441446110388, + 31.07593472260461 + ], + [ + 65.0695717776202, + 30.88128698767616 + ], + [ + 65.18441446110388, + 30.686639252747707 + ], + [ + 65.41409982807123, + 30.686639252747707 + ], + [ + 65.52894251155492, + 30.88128698767616 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.52894251155492, + 31.270582457533063 + ], + [ + 65.41409982807123, + 31.465230192461515 + ], + [ + 65.18441446110388, + 31.465230192461515 + ], + [ + 65.0695717776202, + 31.270582457533063 + ], + [ + 65.18441446110388, + 31.07593472260461 + ], + [ + 65.41409982807123, + 31.07593472260461 + ], + [ + 65.52894251155492, + 31.270582457533063 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.52894251155492, + 31.65987792738997 + ], + [ + 65.41409982807123, + 31.854525662318423 + ], + [ + 65.18441446110388, + 31.854525662318423 + ], + [ + 65.0695717776202, + 31.65987792738997 + ], + [ + 65.18441446110388, + 31.46523019246152 + ], + [ + 65.41409982807123, + 31.46523019246152 + ], + [ + 65.52894251155492, + 31.65987792738997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.52894251155492, + 32.049173397246875 + ], + [ + 65.41409982807123, + 32.24382113217533 + ], + [ + 65.18441446110388, + 32.24382113217533 + ], + [ + 65.0695717776202, + 32.049173397246875 + ], + [ + 65.18441446110388, + 31.854525662318423 + ], + [ + 65.41409982807123, + 31.854525662318423 + ], + [ + 65.52894251155492, + 32.049173397246875 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.52894251155492, + 32.438468867103786 + ], + [ + 65.41409982807123, + 32.63311660203224 + ], + [ + 65.18441446110388, + 32.63311660203224 + ], + [ + 65.0695717776202, + 32.438468867103786 + ], + [ + 65.18441446110388, + 32.243821132175334 + ], + [ + 65.41409982807123, + 32.243821132175334 + ], + [ + 65.52894251155492, + 32.438468867103786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.52894251155492, + 32.82776433696069 + ], + [ + 65.41409982807123, + 33.02241207188914 + ], + [ + 65.18441446110388, + 33.02241207188914 + ], + [ + 65.0695717776202, + 32.82776433696069 + ], + [ + 65.18441446110388, + 32.63311660203224 + ], + [ + 65.41409982807123, + 32.63311660203224 + ], + [ + 65.52894251155492, + 32.82776433696069 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.52894251155492, + 33.217059806817595 + ], + [ + 65.41409982807123, + 33.41170754174605 + ], + [ + 65.18441446110388, + 33.41170754174605 + ], + [ + 65.0695717776202, + 33.217059806817595 + ], + [ + 65.18441446110388, + 33.02241207188914 + ], + [ + 65.41409982807123, + 33.02241207188914 + ], + [ + 65.52894251155492, + 33.217059806817595 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.52894251155492, + 33.6063552766745 + ], + [ + 65.41409982807123, + 33.80100301160295 + ], + [ + 65.18441446110388, + 33.80100301160295 + ], + [ + 65.0695717776202, + 33.6063552766745 + ], + [ + 65.18441446110388, + 33.41170754174605 + ], + [ + 65.41409982807123, + 33.41170754174605 + ], + [ + 65.52894251155492, + 33.6063552766745 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.52894251155492, + 33.9956507465314 + ], + [ + 65.41409982807123, + 34.190298481459855 + ], + [ + 65.18441446110388, + 34.190298481459855 + ], + [ + 65.0695717776202, + 33.9956507465314 + ], + [ + 65.18441446110388, + 33.80100301160295 + ], + [ + 65.41409982807123, + 33.80100301160295 + ], + [ + 65.52894251155492, + 33.9956507465314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.52894251155492, + 34.384946216388315 + ], + [ + 65.41409982807123, + 34.57959395131677 + ], + [ + 65.18441446110388, + 34.57959395131677 + ], + [ + 65.0695717776202, + 34.384946216388315 + ], + [ + 65.18441446110388, + 34.19029848145986 + ], + [ + 65.41409982807123, + 34.19029848145986 + ], + [ + 65.52894251155492, + 34.384946216388315 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.52894251155492, + 34.774241686245226 + ], + [ + 65.41409982807123, + 34.96888942117368 + ], + [ + 65.18441446110388, + 34.96888942117368 + ], + [ + 65.0695717776202, + 34.774241686245226 + ], + [ + 65.18441446110388, + 34.579593951316774 + ], + [ + 65.41409982807123, + 34.579593951316774 + ], + [ + 65.52894251155492, + 34.774241686245226 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.52894251155492, + 35.16353715610213 + ], + [ + 65.41409982807123, + 35.35818489103058 + ], + [ + 65.18441446110388, + 35.35818489103058 + ], + [ + 65.0695717776202, + 35.16353715610213 + ], + [ + 65.18441446110388, + 34.96888942117368 + ], + [ + 65.41409982807123, + 34.96888942117368 + ], + [ + 65.52894251155492, + 35.16353715610213 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.52894251155492, + 35.552832625959034 + ], + [ + 65.41409982807123, + 35.74748036088749 + ], + [ + 65.18441446110388, + 35.74748036088749 + ], + [ + 65.0695717776202, + 35.552832625959034 + ], + [ + 65.18441446110388, + 35.35818489103058 + ], + [ + 65.41409982807123, + 35.35818489103058 + ], + [ + 65.52894251155492, + 35.552832625959034 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.52894251155492, + 35.94212809581594 + ], + [ + 65.41409982807123, + 36.13677583074439 + ], + [ + 65.18441446110388, + 36.13677583074439 + ], + [ + 65.0695717776202, + 35.94212809581594 + ], + [ + 65.18441446110388, + 35.74748036088749 + ], + [ + 65.41409982807123, + 35.74748036088749 + ], + [ + 65.52894251155492, + 35.94212809581594 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.52894251155492, + 36.33142356567284 + ], + [ + 65.41409982807123, + 36.526071300601295 + ], + [ + 65.18441446110388, + 36.526071300601295 + ], + [ + 65.0695717776202, + 36.33142356567284 + ], + [ + 65.18441446110388, + 36.13677583074439 + ], + [ + 65.41409982807123, + 36.13677583074439 + ], + [ + 65.52894251155492, + 36.33142356567284 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.52894251155492, + 36.720719035529754 + ], + [ + 65.41409982807123, + 36.915366770458206 + ], + [ + 65.18441446110388, + 36.915366770458206 + ], + [ + 65.0695717776202, + 36.720719035529754 + ], + [ + 65.18441446110388, + 36.5260713006013 + ], + [ + 65.41409982807123, + 36.5260713006013 + ], + [ + 65.52894251155492, + 36.720719035529754 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.52894251155492, + 37.11001450538666 + ], + [ + 65.41409982807123, + 37.30466224031511 + ], + [ + 65.18441446110388, + 37.30466224031511 + ], + [ + 65.0695717776202, + 37.11001450538666 + ], + [ + 65.18441446110388, + 36.915366770458206 + ], + [ + 65.41409982807123, + 36.915366770458206 + ], + [ + 65.52894251155492, + 37.11001450538666 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.52894251155492, + 37.49930997524357 + ], + [ + 65.41409982807123, + 37.69395771017202 + ], + [ + 65.18441446110388, + 37.69395771017202 + ], + [ + 65.0695717776202, + 37.49930997524357 + ], + [ + 65.18441446110388, + 37.30466224031512 + ], + [ + 65.41409982807123, + 37.30466224031512 + ], + [ + 65.52894251155492, + 37.49930997524357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.52894251155492, + 37.888605445100474 + ], + [ + 65.41409982807123, + 38.083253180028926 + ], + [ + 65.18441446110388, + 38.083253180028926 + ], + [ + 65.0695717776202, + 37.888605445100474 + ], + [ + 65.18441446110388, + 37.69395771017202 + ], + [ + 65.41409982807123, + 37.69395771017202 + ], + [ + 65.52894251155492, + 37.888605445100474 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.52894251155492, + 38.27790091495738 + ], + [ + 65.41409982807123, + 38.47254864988583 + ], + [ + 65.18441446110388, + 38.47254864988583 + ], + [ + 65.0695717776202, + 38.27790091495738 + ], + [ + 65.18441446110388, + 38.083253180028926 + ], + [ + 65.41409982807123, + 38.083253180028926 + ], + [ + 65.52894251155492, + 38.27790091495738 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.52894251155492, + 38.66719638481428 + ], + [ + 65.41409982807123, + 38.861844119742734 + ], + [ + 65.18441446110388, + 38.861844119742734 + ], + [ + 65.0695717776202, + 38.66719638481428 + ], + [ + 65.18441446110388, + 38.47254864988583 + ], + [ + 65.41409982807123, + 38.47254864988583 + ], + [ + 65.52894251155492, + 38.66719638481428 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.52894251155492, + 39.05649185467119 + ], + [ + 65.41409982807123, + 39.25113958959964 + ], + [ + 65.18441446110388, + 39.25113958959964 + ], + [ + 65.0695717776202, + 39.05649185467119 + ], + [ + 65.18441446110388, + 38.861844119742734 + ], + [ + 65.41409982807123, + 38.861844119742734 + ], + [ + 65.52894251155492, + 39.05649185467119 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.52894251155492, + 39.4457873245281 + ], + [ + 65.41409982807123, + 39.64043505945655 + ], + [ + 65.18441446110388, + 39.64043505945655 + ], + [ + 65.0695717776202, + 39.4457873245281 + ], + [ + 65.18441446110388, + 39.251139589599646 + ], + [ + 65.41409982807123, + 39.251139589599646 + ], + [ + 65.52894251155492, + 39.4457873245281 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.52894251155492, + 39.835082794385 + ], + [ + 65.41409982807123, + 40.029730529313454 + ], + [ + 65.18441446110388, + 40.029730529313454 + ], + [ + 65.0695717776202, + 39.835082794385 + ], + [ + 65.18441446110388, + 39.64043505945655 + ], + [ + 65.41409982807123, + 39.64043505945655 + ], + [ + 65.52894251155492, + 39.835082794385 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.52894251155492, + 40.22437826424191 + ], + [ + 65.41409982807123, + 40.419025999170366 + ], + [ + 65.18441446110388, + 40.419025999170366 + ], + [ + 65.0695717776202, + 40.22437826424191 + ], + [ + 65.18441446110388, + 40.02973052931346 + ], + [ + 65.41409982807123, + 40.02973052931346 + ], + [ + 65.52894251155492, + 40.22437826424191 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.52894251155492, + 40.61367373409882 + ], + [ + 65.41409982807123, + 40.80832146902727 + ], + [ + 65.18441446110388, + 40.80832146902727 + ], + [ + 65.0695717776202, + 40.61367373409882 + ], + [ + 65.18441446110388, + 40.419025999170366 + ], + [ + 65.41409982807123, + 40.419025999170366 + ], + [ + 65.52894251155492, + 40.61367373409882 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.52894251155492, + 41.00296920395572 + ], + [ + 65.41409982807123, + 41.197616938884174 + ], + [ + 65.18441446110388, + 41.197616938884174 + ], + [ + 65.0695717776202, + 41.00296920395572 + ], + [ + 65.18441446110388, + 40.80832146902727 + ], + [ + 65.41409982807123, + 40.80832146902727 + ], + [ + 65.52894251155492, + 41.00296920395572 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.52894251155492, + 41.392264673812626 + ], + [ + 65.41409982807123, + 41.58691240874108 + ], + [ + 65.18441446110388, + 41.58691240874108 + ], + [ + 65.0695717776202, + 41.392264673812626 + ], + [ + 65.18441446110388, + 41.197616938884174 + ], + [ + 65.41409982807123, + 41.197616938884174 + ], + [ + 65.52894251155492, + 41.392264673812626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.52894251155492, + 41.78156014366953 + ], + [ + 65.41409982807123, + 41.97620787859798 + ], + [ + 65.18441446110388, + 41.97620787859798 + ], + [ + 65.0695717776202, + 41.78156014366953 + ], + [ + 65.18441446110388, + 41.58691240874108 + ], + [ + 65.41409982807123, + 41.58691240874108 + ], + [ + 65.52894251155492, + 41.78156014366953 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.52894251155492, + 42.17085561352644 + ], + [ + 65.41409982807123, + 42.365503348454894 + ], + [ + 65.18441446110388, + 42.365503348454894 + ], + [ + 65.0695717776202, + 42.17085561352644 + ], + [ + 65.18441446110388, + 41.97620787859799 + ], + [ + 65.41409982807123, + 41.97620787859799 + ], + [ + 65.52894251155492, + 42.17085561352644 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.52894251155492, + 42.56015108338335 + ], + [ + 65.41409982807123, + 42.754798818311805 + ], + [ + 65.18441446110388, + 42.754798818311805 + ], + [ + 65.0695717776202, + 42.56015108338335 + ], + [ + 65.18441446110388, + 42.3655033484549 + ], + [ + 65.41409982807123, + 42.3655033484549 + ], + [ + 65.52894251155492, + 42.56015108338335 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.52894251155492, + 42.94944655324026 + ], + [ + 65.41409982807123, + 43.14409428816871 + ], + [ + 65.18441446110388, + 43.14409428816871 + ], + [ + 65.0695717776202, + 42.94944655324026 + ], + [ + 65.18441446110388, + 42.754798818311805 + ], + [ + 65.41409982807123, + 42.754798818311805 + ], + [ + 65.52894251155492, + 42.94944655324026 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.52894251155492, + 43.33874202309716 + ], + [ + 65.41409982807123, + 43.53338975802561 + ], + [ + 65.18441446110388, + 43.53338975802561 + ], + [ + 65.0695717776202, + 43.33874202309716 + ], + [ + 65.18441446110388, + 43.14409428816871 + ], + [ + 65.41409982807123, + 43.14409428816871 + ], + [ + 65.52894251155492, + 43.33874202309716 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.52894251155492, + 43.728037492954066 + ], + [ + 65.41409982807123, + 43.92268522788252 + ], + [ + 65.18441446110388, + 43.92268522788252 + ], + [ + 65.0695717776202, + 43.728037492954066 + ], + [ + 65.18441446110388, + 43.53338975802561 + ], + [ + 65.41409982807123, + 43.53338975802561 + ], + [ + 65.52894251155492, + 43.728037492954066 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.52894251155492, + 44.11733296281097 + ], + [ + 65.41409982807123, + 44.31198069773942 + ], + [ + 65.18441446110388, + 44.31198069773942 + ], + [ + 65.0695717776202, + 44.11733296281097 + ], + [ + 65.18441446110388, + 43.92268522788252 + ], + [ + 65.41409982807123, + 43.92268522788252 + ], + [ + 65.52894251155492, + 44.11733296281097 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.52894251155492, + 44.506628432667874 + ], + [ + 65.41409982807123, + 44.701276167596326 + ], + [ + 65.18441446110388, + 44.701276167596326 + ], + [ + 65.0695717776202, + 44.506628432667874 + ], + [ + 65.18441446110388, + 44.31198069773942 + ], + [ + 65.41409982807123, + 44.31198069773942 + ], + [ + 65.52894251155492, + 44.506628432667874 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.52894251155492, + 44.89592390252479 + ], + [ + 65.41409982807123, + 45.090571637453245 + ], + [ + 65.18441446110388, + 45.090571637453245 + ], + [ + 65.0695717776202, + 44.89592390252479 + ], + [ + 65.18441446110388, + 44.70127616759634 + ], + [ + 65.41409982807123, + 44.70127616759634 + ], + [ + 65.52894251155492, + 44.89592390252479 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.52894251155492, + 45.2852193723817 + ], + [ + 65.41409982807123, + 45.47986710731015 + ], + [ + 65.18441446110388, + 45.47986710731015 + ], + [ + 65.0695717776202, + 45.2852193723817 + ], + [ + 65.18441446110388, + 45.090571637453245 + ], + [ + 65.41409982807123, + 45.090571637453245 + ], + [ + 65.52894251155492, + 45.2852193723817 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.52894251155492, + 45.6745148422386 + ], + [ + 65.41409982807123, + 45.86916257716705 + ], + [ + 65.18441446110388, + 45.86916257716705 + ], + [ + 65.0695717776202, + 45.6745148422386 + ], + [ + 65.18441446110388, + 45.47986710731015 + ], + [ + 65.41409982807123, + 45.47986710731015 + ], + [ + 65.52894251155492, + 45.6745148422386 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.52894251155492, + 46.063810312095505 + ], + [ + 65.41409982807123, + 46.25845804702396 + ], + [ + 65.18441446110388, + 46.25845804702396 + ], + [ + 65.0695717776202, + 46.063810312095505 + ], + [ + 65.18441446110388, + 45.86916257716705 + ], + [ + 65.41409982807123, + 45.86916257716705 + ], + [ + 65.52894251155492, + 46.063810312095505 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.52894251155492, + 46.45310578195241 + ], + [ + 65.41409982807123, + 46.64775351688086 + ], + [ + 65.18441446110388, + 46.64775351688086 + ], + [ + 65.0695717776202, + 46.45310578195241 + ], + [ + 65.18441446110388, + 46.25845804702396 + ], + [ + 65.41409982807123, + 46.25845804702396 + ], + [ + 65.52894251155492, + 46.45310578195241 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.52894251155492, + 46.842401251809314 + ], + [ + 65.41409982807123, + 47.037048986737766 + ], + [ + 65.18441446110388, + 47.037048986737766 + ], + [ + 65.0695717776202, + 46.842401251809314 + ], + [ + 65.18441446110388, + 46.64775351688086 + ], + [ + 65.41409982807123, + 46.64775351688086 + ], + [ + 65.52894251155492, + 46.842401251809314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.52894251155492, + 47.23169672166622 + ], + [ + 65.41409982807123, + 47.42634445659467 + ], + [ + 65.18441446110388, + 47.42634445659467 + ], + [ + 65.0695717776202, + 47.23169672166622 + ], + [ + 65.18441446110388, + 47.037048986737766 + ], + [ + 65.41409982807123, + 47.037048986737766 + ], + [ + 65.52894251155492, + 47.23169672166622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.52894251155492, + 47.620992191523136 + ], + [ + 65.41409982807123, + 47.81563992645159 + ], + [ + 65.18441446110388, + 47.81563992645159 + ], + [ + 65.0695717776202, + 47.620992191523136 + ], + [ + 65.18441446110388, + 47.426344456594684 + ], + [ + 65.41409982807123, + 47.426344456594684 + ], + [ + 65.52894251155492, + 47.620992191523136 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.87347056200595, + 12.0004566996162 + ], + [ + 65.75862787852226, + 12.195104434544653 + ], + [ + 65.52894251155492, + 12.195104434544653 + ], + [ + 65.41409982807123, + 12.0004566996162 + ], + [ + 65.52894251155492, + 11.805808964687746 + ], + [ + 65.75862787852226, + 11.805808964687746 + ], + [ + 65.87347056200595, + 12.0004566996162 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.87347056200595, + 12.389752169473105 + ], + [ + 65.75862787852226, + 12.58439990440156 + ], + [ + 65.52894251155492, + 12.58439990440156 + ], + [ + 65.41409982807123, + 12.389752169473105 + ], + [ + 65.52894251155492, + 12.195104434544652 + ], + [ + 65.75862787852226, + 12.195104434544652 + ], + [ + 65.87347056200595, + 12.389752169473105 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.87347056200595, + 12.779047639330013 + ], + [ + 65.75862787852226, + 12.973695374258467 + ], + [ + 65.52894251155492, + 12.973695374258467 + ], + [ + 65.41409982807123, + 12.779047639330013 + ], + [ + 65.52894251155492, + 12.58439990440156 + ], + [ + 65.75862787852226, + 12.58439990440156 + ], + [ + 65.87347056200595, + 12.779047639330013 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.87347056200595, + 13.16834310918692 + ], + [ + 65.75862787852226, + 13.362990844115373 + ], + [ + 65.52894251155492, + 13.362990844115373 + ], + [ + 65.41409982807123, + 13.16834310918692 + ], + [ + 65.52894251155492, + 12.973695374258465 + ], + [ + 65.75862787852226, + 12.973695374258465 + ], + [ + 65.87347056200595, + 13.16834310918692 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.87347056200595, + 13.557638579043825 + ], + [ + 65.75862787852226, + 13.752286313972279 + ], + [ + 65.52894251155492, + 13.752286313972279 + ], + [ + 65.41409982807123, + 13.557638579043825 + ], + [ + 65.52894251155492, + 13.362990844115371 + ], + [ + 65.75862787852226, + 13.362990844115371 + ], + [ + 65.87347056200595, + 13.557638579043825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.87347056200595, + 13.946934048900731 + ], + [ + 65.75862787852226, + 14.141581783829185 + ], + [ + 65.52894251155492, + 14.141581783829185 + ], + [ + 65.41409982807123, + 13.946934048900731 + ], + [ + 65.52894251155492, + 13.752286313972277 + ], + [ + 65.75862787852226, + 13.752286313972277 + ], + [ + 65.87347056200595, + 13.946934048900731 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.87347056200595, + 14.336229518757637 + ], + [ + 65.75862787852226, + 14.530877253686091 + ], + [ + 65.52894251155492, + 14.530877253686091 + ], + [ + 65.41409982807123, + 14.336229518757637 + ], + [ + 65.52894251155492, + 14.141581783829183 + ], + [ + 65.75862787852226, + 14.141581783829183 + ], + [ + 65.87347056200595, + 14.336229518757637 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.87347056200595, + 14.725524988614545 + ], + [ + 65.75862787852226, + 14.920172723542999 + ], + [ + 65.52894251155492, + 14.920172723542999 + ], + [ + 65.41409982807123, + 14.725524988614545 + ], + [ + 65.52894251155492, + 14.530877253686091 + ], + [ + 65.75862787852226, + 14.530877253686091 + ], + [ + 65.87347056200595, + 14.725524988614545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.87347056200595, + 15.114820458471451 + ], + [ + 65.75862787852226, + 15.309468193399905 + ], + [ + 65.52894251155492, + 15.309468193399905 + ], + [ + 65.41409982807123, + 15.114820458471451 + ], + [ + 65.52894251155492, + 14.920172723542997 + ], + [ + 65.75862787852226, + 14.920172723542997 + ], + [ + 65.87347056200595, + 15.114820458471451 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.87347056200595, + 15.504115928328357 + ], + [ + 65.75862787852226, + 15.69876366325681 + ], + [ + 65.52894251155492, + 15.69876366325681 + ], + [ + 65.41409982807123, + 15.504115928328357 + ], + [ + 65.52894251155492, + 15.309468193399903 + ], + [ + 65.75862787852226, + 15.309468193399903 + ], + [ + 65.87347056200595, + 15.504115928328357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.87347056200595, + 15.893411398185265 + ], + [ + 65.75862787852226, + 16.088059133113717 + ], + [ + 65.52894251155492, + 16.088059133113717 + ], + [ + 65.41409982807123, + 15.893411398185265 + ], + [ + 65.52894251155492, + 15.69876366325681 + ], + [ + 65.75862787852226, + 15.69876366325681 + ], + [ + 65.87347056200595, + 15.893411398185265 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.87347056200595, + 16.28270686804217 + ], + [ + 65.75862787852226, + 16.47735460297062 + ], + [ + 65.52894251155492, + 16.47735460297062 + ], + [ + 65.41409982807123, + 16.28270686804217 + ], + [ + 65.52894251155492, + 16.088059133113717 + ], + [ + 65.75862787852226, + 16.088059133113717 + ], + [ + 65.87347056200595, + 16.28270686804217 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.87347056200595, + 16.672002337899077 + ], + [ + 65.75862787852226, + 16.86665007282753 + ], + [ + 65.52894251155492, + 16.86665007282753 + ], + [ + 65.41409982807123, + 16.672002337899077 + ], + [ + 65.52894251155492, + 16.477354602970625 + ], + [ + 65.75862787852226, + 16.477354602970625 + ], + [ + 65.87347056200595, + 16.672002337899077 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.87347056200595, + 17.06129780775598 + ], + [ + 65.75862787852226, + 17.255945542684433 + ], + [ + 65.52894251155492, + 17.255945542684433 + ], + [ + 65.41409982807123, + 17.06129780775598 + ], + [ + 65.52894251155492, + 16.86665007282753 + ], + [ + 65.75862787852226, + 16.86665007282753 + ], + [ + 65.87347056200595, + 17.06129780775598 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.87347056200595, + 17.45059327761289 + ], + [ + 65.75862787852226, + 17.64524101254134 + ], + [ + 65.52894251155492, + 17.64524101254134 + ], + [ + 65.41409982807123, + 17.45059327761289 + ], + [ + 65.52894251155492, + 17.255945542684437 + ], + [ + 65.75862787852226, + 17.255945542684437 + ], + [ + 65.87347056200595, + 17.45059327761289 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.87347056200595, + 17.839888747469793 + ], + [ + 65.75862787852226, + 18.034536482398245 + ], + [ + 65.52894251155492, + 18.034536482398245 + ], + [ + 65.41409982807123, + 17.839888747469793 + ], + [ + 65.52894251155492, + 17.64524101254134 + ], + [ + 65.75862787852226, + 17.64524101254134 + ], + [ + 65.87347056200595, + 17.839888747469793 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.87347056200595, + 18.2291842173267 + ], + [ + 65.75862787852226, + 18.423831952255153 + ], + [ + 65.52894251155492, + 18.423831952255153 + ], + [ + 65.41409982807123, + 18.2291842173267 + ], + [ + 65.52894251155492, + 18.03453648239825 + ], + [ + 65.75862787852226, + 18.03453648239825 + ], + [ + 65.87347056200595, + 18.2291842173267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.87347056200595, + 18.61847968718361 + ], + [ + 65.75862787852226, + 18.81312742211206 + ], + [ + 65.52894251155492, + 18.81312742211206 + ], + [ + 65.41409982807123, + 18.61847968718361 + ], + [ + 65.52894251155492, + 18.423831952255156 + ], + [ + 65.75862787852226, + 18.423831952255156 + ], + [ + 65.87347056200595, + 18.61847968718361 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.87347056200595, + 19.007775157040513 + ], + [ + 65.75862787852226, + 19.202422891968965 + ], + [ + 65.52894251155492, + 19.202422891968965 + ], + [ + 65.41409982807123, + 19.007775157040513 + ], + [ + 65.52894251155492, + 18.81312742211206 + ], + [ + 65.75862787852226, + 18.81312742211206 + ], + [ + 65.87347056200595, + 19.007775157040513 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.87347056200595, + 19.39707062689742 + ], + [ + 65.75862787852226, + 19.591718361825873 + ], + [ + 65.52894251155492, + 19.591718361825873 + ], + [ + 65.41409982807123, + 19.39707062689742 + ], + [ + 65.52894251155492, + 19.20242289196897 + ], + [ + 65.75862787852226, + 19.20242289196897 + ], + [ + 65.87347056200595, + 19.39707062689742 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.87347056200595, + 19.78636609675433 + ], + [ + 65.75862787852226, + 19.98101383168278 + ], + [ + 65.52894251155492, + 19.98101383168278 + ], + [ + 65.41409982807123, + 19.78636609675433 + ], + [ + 65.52894251155492, + 19.591718361825876 + ], + [ + 65.75862787852226, + 19.591718361825876 + ], + [ + 65.87347056200595, + 19.78636609675433 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.87347056200595, + 20.175661566611232 + ], + [ + 65.75862787852226, + 20.370309301539685 + ], + [ + 65.52894251155492, + 20.370309301539685 + ], + [ + 65.41409982807123, + 20.175661566611232 + ], + [ + 65.52894251155492, + 19.98101383168278 + ], + [ + 65.75862787852226, + 19.98101383168278 + ], + [ + 65.87347056200595, + 20.175661566611232 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.87347056200595, + 20.564957036468137 + ], + [ + 65.75862787852226, + 20.75960477139659 + ], + [ + 65.52894251155492, + 20.75960477139659 + ], + [ + 65.41409982807123, + 20.564957036468137 + ], + [ + 65.52894251155492, + 20.370309301539685 + ], + [ + 65.75862787852226, + 20.370309301539685 + ], + [ + 65.87347056200595, + 20.564957036468137 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.87347056200595, + 20.954252506325044 + ], + [ + 65.75862787852226, + 21.148900241253497 + ], + [ + 65.52894251155492, + 21.148900241253497 + ], + [ + 65.41409982807123, + 20.954252506325044 + ], + [ + 65.52894251155492, + 20.759604771396592 + ], + [ + 65.75862787852226, + 20.759604771396592 + ], + [ + 65.87347056200595, + 20.954252506325044 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.87347056200595, + 21.343547976181952 + ], + [ + 65.75862787852226, + 21.538195711110404 + ], + [ + 65.52894251155492, + 21.538195711110404 + ], + [ + 65.41409982807123, + 21.343547976181952 + ], + [ + 65.52894251155492, + 21.1489002412535 + ], + [ + 65.75862787852226, + 21.1489002412535 + ], + [ + 65.87347056200595, + 21.343547976181952 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.87347056200595, + 21.732843446038856 + ], + [ + 65.75862787852226, + 21.92749118096731 + ], + [ + 65.52894251155492, + 21.92749118096731 + ], + [ + 65.41409982807123, + 21.732843446038856 + ], + [ + 65.52894251155492, + 21.538195711110404 + ], + [ + 65.75862787852226, + 21.538195711110404 + ], + [ + 65.87347056200595, + 21.732843446038856 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.87347056200595, + 22.122138915895764 + ], + [ + 65.75862787852226, + 22.316786650824216 + ], + [ + 65.52894251155492, + 22.316786650824216 + ], + [ + 65.41409982807123, + 22.122138915895764 + ], + [ + 65.52894251155492, + 21.927491180967312 + ], + [ + 65.75862787852226, + 21.927491180967312 + ], + [ + 65.87347056200595, + 22.122138915895764 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.87347056200595, + 22.511434385752672 + ], + [ + 65.75862787852226, + 22.706082120681124 + ], + [ + 65.52894251155492, + 22.706082120681124 + ], + [ + 65.41409982807123, + 22.511434385752672 + ], + [ + 65.52894251155492, + 22.31678665082422 + ], + [ + 65.75862787852226, + 22.31678665082422 + ], + [ + 65.87347056200595, + 22.511434385752672 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.87347056200595, + 22.900729855609576 + ], + [ + 65.75862787852226, + 23.09537759053803 + ], + [ + 65.52894251155492, + 23.09537759053803 + ], + [ + 65.41409982807123, + 22.900729855609576 + ], + [ + 65.52894251155492, + 22.706082120681124 + ], + [ + 65.75862787852226, + 22.706082120681124 + ], + [ + 65.87347056200595, + 22.900729855609576 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.87347056200595, + 23.290025325466484 + ], + [ + 65.75862787852226, + 23.484673060394936 + ], + [ + 65.52894251155492, + 23.484673060394936 + ], + [ + 65.41409982807123, + 23.290025325466484 + ], + [ + 65.52894251155492, + 23.095377590538032 + ], + [ + 65.75862787852226, + 23.095377590538032 + ], + [ + 65.87347056200595, + 23.290025325466484 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.87347056200595, + 23.67932079532339 + ], + [ + 65.75862787852226, + 23.873968530251844 + ], + [ + 65.52894251155492, + 23.873968530251844 + ], + [ + 65.41409982807123, + 23.67932079532339 + ], + [ + 65.52894251155492, + 23.48467306039494 + ], + [ + 65.75862787852226, + 23.48467306039494 + ], + [ + 65.87347056200595, + 23.67932079532339 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.87347056200595, + 24.068616265180296 + ], + [ + 65.75862787852226, + 24.263264000108748 + ], + [ + 65.52894251155492, + 24.263264000108748 + ], + [ + 65.41409982807123, + 24.068616265180296 + ], + [ + 65.52894251155492, + 23.873968530251844 + ], + [ + 65.75862787852226, + 23.873968530251844 + ], + [ + 65.87347056200595, + 24.068616265180296 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.87347056200595, + 24.4579117350372 + ], + [ + 65.75862787852226, + 24.652559469965652 + ], + [ + 65.52894251155492, + 24.652559469965652 + ], + [ + 65.41409982807123, + 24.4579117350372 + ], + [ + 65.52894251155492, + 24.263264000108748 + ], + [ + 65.75862787852226, + 24.263264000108748 + ], + [ + 65.87347056200595, + 24.4579117350372 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.87347056200595, + 24.847207204894108 + ], + [ + 65.75862787852226, + 25.04185493982256 + ], + [ + 65.52894251155492, + 25.04185493982256 + ], + [ + 65.41409982807123, + 24.847207204894108 + ], + [ + 65.52894251155492, + 24.652559469965656 + ], + [ + 65.75862787852226, + 24.652559469965656 + ], + [ + 65.87347056200595, + 24.847207204894108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.87347056200595, + 25.236502674751016 + ], + [ + 65.75862787852226, + 25.431150409679468 + ], + [ + 65.52894251155492, + 25.431150409679468 + ], + [ + 65.41409982807123, + 25.236502674751016 + ], + [ + 65.52894251155492, + 25.041854939822564 + ], + [ + 65.75862787852226, + 25.041854939822564 + ], + [ + 65.87347056200595, + 25.236502674751016 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.87347056200595, + 25.62579814460792 + ], + [ + 65.75862787852226, + 25.820445879536372 + ], + [ + 65.52894251155492, + 25.820445879536372 + ], + [ + 65.41409982807123, + 25.62579814460792 + ], + [ + 65.52894251155492, + 25.431150409679468 + ], + [ + 65.75862787852226, + 25.431150409679468 + ], + [ + 65.87347056200595, + 25.62579814460792 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.87347056200595, + 26.015093614464828 + ], + [ + 65.75862787852226, + 26.20974134939328 + ], + [ + 65.52894251155492, + 26.20974134939328 + ], + [ + 65.41409982807123, + 26.015093614464828 + ], + [ + 65.52894251155492, + 25.820445879536376 + ], + [ + 65.75862787852226, + 25.820445879536376 + ], + [ + 65.87347056200595, + 26.015093614464828 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.87347056200595, + 26.404389084321735 + ], + [ + 65.75862787852226, + 26.599036819250188 + ], + [ + 65.52894251155492, + 26.599036819250188 + ], + [ + 65.41409982807123, + 26.404389084321735 + ], + [ + 65.52894251155492, + 26.209741349393283 + ], + [ + 65.75862787852226, + 26.209741349393283 + ], + [ + 65.87347056200595, + 26.404389084321735 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.87347056200595, + 26.79368455417864 + ], + [ + 65.75862787852226, + 26.988332289107092 + ], + [ + 65.52894251155492, + 26.988332289107092 + ], + [ + 65.41409982807123, + 26.79368455417864 + ], + [ + 65.52894251155492, + 26.599036819250188 + ], + [ + 65.75862787852226, + 26.599036819250188 + ], + [ + 65.87347056200595, + 26.79368455417864 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.87347056200595, + 27.182980024035547 + ], + [ + 65.75862787852226, + 27.377627758964 + ], + [ + 65.52894251155492, + 27.377627758964 + ], + [ + 65.41409982807123, + 27.182980024035547 + ], + [ + 65.52894251155492, + 26.988332289107095 + ], + [ + 65.75862787852226, + 26.988332289107095 + ], + [ + 65.87347056200595, + 27.182980024035547 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.87347056200595, + 27.572275493892455 + ], + [ + 65.75862787852226, + 27.766923228820907 + ], + [ + 65.52894251155492, + 27.766923228820907 + ], + [ + 65.41409982807123, + 27.572275493892455 + ], + [ + 65.52894251155492, + 27.377627758964003 + ], + [ + 65.75862787852226, + 27.377627758964003 + ], + [ + 65.87347056200595, + 27.572275493892455 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.87347056200595, + 27.96157096374936 + ], + [ + 65.75862787852226, + 28.15621869867781 + ], + [ + 65.52894251155492, + 28.15621869867781 + ], + [ + 65.41409982807123, + 27.96157096374936 + ], + [ + 65.52894251155492, + 27.766923228820907 + ], + [ + 65.75862787852226, + 27.766923228820907 + ], + [ + 65.87347056200595, + 27.96157096374936 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.87347056200595, + 28.350866433606267 + ], + [ + 65.75862787852226, + 28.54551416853472 + ], + [ + 65.52894251155492, + 28.54551416853472 + ], + [ + 65.41409982807123, + 28.350866433606267 + ], + [ + 65.52894251155492, + 28.156218698677815 + ], + [ + 65.75862787852226, + 28.156218698677815 + ], + [ + 65.87347056200595, + 28.350866433606267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.87347056200595, + 28.74016190346317 + ], + [ + 65.75862787852226, + 28.934809638391624 + ], + [ + 65.52894251155492, + 28.934809638391624 + ], + [ + 65.41409982807123, + 28.74016190346317 + ], + [ + 65.52894251155492, + 28.54551416853472 + ], + [ + 65.75862787852226, + 28.54551416853472 + ], + [ + 65.87347056200595, + 28.74016190346317 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.87347056200595, + 29.12945737332008 + ], + [ + 65.75862787852226, + 29.32410510824853 + ], + [ + 65.52894251155492, + 29.32410510824853 + ], + [ + 65.41409982807123, + 29.12945737332008 + ], + [ + 65.52894251155492, + 28.934809638391627 + ], + [ + 65.75862787852226, + 28.934809638391627 + ], + [ + 65.87347056200595, + 29.12945737332008 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.87347056200595, + 29.518752843176983 + ], + [ + 65.75862787852226, + 29.713400578105436 + ], + [ + 65.52894251155492, + 29.713400578105436 + ], + [ + 65.41409982807123, + 29.518752843176983 + ], + [ + 65.52894251155492, + 29.32410510824853 + ], + [ + 65.75862787852226, + 29.32410510824853 + ], + [ + 65.87347056200595, + 29.518752843176983 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.87347056200595, + 29.90804831303389 + ], + [ + 65.75862787852226, + 30.102696047962343 + ], + [ + 65.52894251155492, + 30.102696047962343 + ], + [ + 65.41409982807123, + 29.90804831303389 + ], + [ + 65.52894251155492, + 29.71340057810544 + ], + [ + 65.75862787852226, + 29.71340057810544 + ], + [ + 65.87347056200595, + 29.90804831303389 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.87347056200595, + 30.297343782890795 + ], + [ + 65.75862787852226, + 30.491991517819248 + ], + [ + 65.52894251155492, + 30.491991517819248 + ], + [ + 65.41409982807123, + 30.297343782890795 + ], + [ + 65.52894251155492, + 30.102696047962343 + ], + [ + 65.75862787852226, + 30.102696047962343 + ], + [ + 65.87347056200595, + 30.297343782890795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.87347056200595, + 30.686639252747703 + ], + [ + 65.75862787852226, + 30.881286987676155 + ], + [ + 65.52894251155492, + 30.881286987676155 + ], + [ + 65.41409982807123, + 30.686639252747703 + ], + [ + 65.52894251155492, + 30.49199151781925 + ], + [ + 65.75862787852226, + 30.49199151781925 + ], + [ + 65.87347056200595, + 30.686639252747703 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.87347056200595, + 31.07593472260461 + ], + [ + 65.75862787852226, + 31.270582457533063 + ], + [ + 65.52894251155492, + 31.270582457533063 + ], + [ + 65.41409982807123, + 31.07593472260461 + ], + [ + 65.52894251155492, + 30.88128698767616 + ], + [ + 65.75862787852226, + 30.88128698767616 + ], + [ + 65.87347056200595, + 31.07593472260461 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.87347056200595, + 31.465230192461515 + ], + [ + 65.75862787852226, + 31.659877927389967 + ], + [ + 65.52894251155492, + 31.659877927389967 + ], + [ + 65.41409982807123, + 31.465230192461515 + ], + [ + 65.52894251155492, + 31.270582457533063 + ], + [ + 65.75862787852226, + 31.270582457533063 + ], + [ + 65.87347056200595, + 31.465230192461515 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.87347056200595, + 31.854525662318423 + ], + [ + 65.75862787852226, + 32.049173397246875 + ], + [ + 65.52894251155492, + 32.049173397246875 + ], + [ + 65.41409982807123, + 31.854525662318423 + ], + [ + 65.52894251155492, + 31.65987792738997 + ], + [ + 65.75862787852226, + 31.65987792738997 + ], + [ + 65.87347056200595, + 31.854525662318423 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.87347056200595, + 32.24382113217533 + ], + [ + 65.75862787852226, + 32.43846886710378 + ], + [ + 65.52894251155492, + 32.43846886710378 + ], + [ + 65.41409982807123, + 32.24382113217533 + ], + [ + 65.52894251155492, + 32.049173397246875 + ], + [ + 65.75862787852226, + 32.049173397246875 + ], + [ + 65.87347056200595, + 32.24382113217533 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.87347056200595, + 32.63311660203224 + ], + [ + 65.75862787852226, + 32.82776433696069 + ], + [ + 65.52894251155492, + 32.82776433696069 + ], + [ + 65.41409982807123, + 32.63311660203224 + ], + [ + 65.52894251155492, + 32.438468867103786 + ], + [ + 65.75862787852226, + 32.438468867103786 + ], + [ + 65.87347056200595, + 32.63311660203224 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.87347056200595, + 33.02241207188914 + ], + [ + 65.75862787852226, + 33.217059806817595 + ], + [ + 65.52894251155492, + 33.217059806817595 + ], + [ + 65.41409982807123, + 33.02241207188914 + ], + [ + 65.52894251155492, + 32.82776433696069 + ], + [ + 65.75862787852226, + 32.82776433696069 + ], + [ + 65.87347056200595, + 33.02241207188914 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.87347056200595, + 33.41170754174605 + ], + [ + 65.75862787852226, + 33.6063552766745 + ], + [ + 65.52894251155492, + 33.6063552766745 + ], + [ + 65.41409982807123, + 33.41170754174605 + ], + [ + 65.52894251155492, + 33.217059806817595 + ], + [ + 65.75862787852226, + 33.217059806817595 + ], + [ + 65.87347056200595, + 33.41170754174605 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.87347056200595, + 33.80100301160295 + ], + [ + 65.75862787852226, + 33.9956507465314 + ], + [ + 65.52894251155492, + 33.9956507465314 + ], + [ + 65.41409982807123, + 33.80100301160295 + ], + [ + 65.52894251155492, + 33.6063552766745 + ], + [ + 65.75862787852226, + 33.6063552766745 + ], + [ + 65.87347056200595, + 33.80100301160295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.87347056200595, + 34.190298481459855 + ], + [ + 65.75862787852226, + 34.38494621638831 + ], + [ + 65.52894251155492, + 34.38494621638831 + ], + [ + 65.41409982807123, + 34.190298481459855 + ], + [ + 65.52894251155492, + 33.9956507465314 + ], + [ + 65.75862787852226, + 33.9956507465314 + ], + [ + 65.87347056200595, + 34.190298481459855 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.87347056200595, + 34.57959395131677 + ], + [ + 65.75862787852226, + 34.77424168624522 + ], + [ + 65.52894251155492, + 34.77424168624522 + ], + [ + 65.41409982807123, + 34.57959395131677 + ], + [ + 65.52894251155492, + 34.384946216388315 + ], + [ + 65.75862787852226, + 34.384946216388315 + ], + [ + 65.87347056200595, + 34.57959395131677 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.87347056200595, + 34.96888942117368 + ], + [ + 65.75862787852226, + 35.16353715610213 + ], + [ + 65.52894251155492, + 35.16353715610213 + ], + [ + 65.41409982807123, + 34.96888942117368 + ], + [ + 65.52894251155492, + 34.774241686245226 + ], + [ + 65.75862787852226, + 34.774241686245226 + ], + [ + 65.87347056200595, + 34.96888942117368 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.87347056200595, + 35.35818489103058 + ], + [ + 65.75862787852226, + 35.552832625959034 + ], + [ + 65.52894251155492, + 35.552832625959034 + ], + [ + 65.41409982807123, + 35.35818489103058 + ], + [ + 65.52894251155492, + 35.16353715610213 + ], + [ + 65.75862787852226, + 35.16353715610213 + ], + [ + 65.87347056200595, + 35.35818489103058 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.87347056200595, + 35.74748036088749 + ], + [ + 65.75862787852226, + 35.94212809581594 + ], + [ + 65.52894251155492, + 35.94212809581594 + ], + [ + 65.41409982807123, + 35.74748036088749 + ], + [ + 65.52894251155492, + 35.552832625959034 + ], + [ + 65.75862787852226, + 35.552832625959034 + ], + [ + 65.87347056200595, + 35.74748036088749 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.87347056200595, + 36.13677583074439 + ], + [ + 65.75862787852226, + 36.33142356567284 + ], + [ + 65.52894251155492, + 36.33142356567284 + ], + [ + 65.41409982807123, + 36.13677583074439 + ], + [ + 65.52894251155492, + 35.94212809581594 + ], + [ + 65.75862787852226, + 35.94212809581594 + ], + [ + 65.87347056200595, + 36.13677583074439 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.87347056200595, + 36.526071300601295 + ], + [ + 65.75862787852226, + 36.72071903552975 + ], + [ + 65.52894251155492, + 36.72071903552975 + ], + [ + 65.41409982807123, + 36.526071300601295 + ], + [ + 65.52894251155492, + 36.33142356567284 + ], + [ + 65.75862787852226, + 36.33142356567284 + ], + [ + 65.87347056200595, + 36.526071300601295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.87347056200595, + 36.915366770458206 + ], + [ + 65.75862787852226, + 37.11001450538666 + ], + [ + 65.52894251155492, + 37.11001450538666 + ], + [ + 65.41409982807123, + 36.915366770458206 + ], + [ + 65.52894251155492, + 36.720719035529754 + ], + [ + 65.75862787852226, + 36.720719035529754 + ], + [ + 65.87347056200595, + 36.915366770458206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.87347056200595, + 37.30466224031511 + ], + [ + 65.75862787852226, + 37.49930997524356 + ], + [ + 65.52894251155492, + 37.49930997524356 + ], + [ + 65.41409982807123, + 37.30466224031511 + ], + [ + 65.52894251155492, + 37.11001450538666 + ], + [ + 65.75862787852226, + 37.11001450538666 + ], + [ + 65.87347056200595, + 37.30466224031511 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.87347056200595, + 37.69395771017202 + ], + [ + 65.75862787852226, + 37.888605445100474 + ], + [ + 65.52894251155492, + 37.888605445100474 + ], + [ + 65.41409982807123, + 37.69395771017202 + ], + [ + 65.52894251155492, + 37.49930997524357 + ], + [ + 65.75862787852226, + 37.49930997524357 + ], + [ + 65.87347056200595, + 37.69395771017202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.87347056200595, + 38.083253180028926 + ], + [ + 65.75862787852226, + 38.27790091495738 + ], + [ + 65.52894251155492, + 38.27790091495738 + ], + [ + 65.41409982807123, + 38.083253180028926 + ], + [ + 65.52894251155492, + 37.888605445100474 + ], + [ + 65.75862787852226, + 37.888605445100474 + ], + [ + 65.87347056200595, + 38.083253180028926 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.87347056200595, + 38.47254864988583 + ], + [ + 65.75862787852226, + 38.66719638481428 + ], + [ + 65.52894251155492, + 38.66719638481428 + ], + [ + 65.41409982807123, + 38.47254864988583 + ], + [ + 65.52894251155492, + 38.27790091495738 + ], + [ + 65.75862787852226, + 38.27790091495738 + ], + [ + 65.87347056200595, + 38.47254864988583 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.87347056200595, + 38.861844119742734 + ], + [ + 65.75862787852226, + 39.05649185467119 + ], + [ + 65.52894251155492, + 39.05649185467119 + ], + [ + 65.41409982807123, + 38.861844119742734 + ], + [ + 65.52894251155492, + 38.66719638481428 + ], + [ + 65.75862787852226, + 38.66719638481428 + ], + [ + 65.87347056200595, + 38.861844119742734 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.87347056200595, + 39.25113958959964 + ], + [ + 65.75862787852226, + 39.44578732452809 + ], + [ + 65.52894251155492, + 39.44578732452809 + ], + [ + 65.41409982807123, + 39.25113958959964 + ], + [ + 65.52894251155492, + 39.05649185467119 + ], + [ + 65.75862787852226, + 39.05649185467119 + ], + [ + 65.87347056200595, + 39.25113958959964 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.87347056200595, + 39.64043505945655 + ], + [ + 65.75862787852226, + 39.835082794385 + ], + [ + 65.52894251155492, + 39.835082794385 + ], + [ + 65.41409982807123, + 39.64043505945655 + ], + [ + 65.52894251155492, + 39.4457873245281 + ], + [ + 65.75862787852226, + 39.4457873245281 + ], + [ + 65.87347056200595, + 39.64043505945655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.87347056200595, + 40.029730529313454 + ], + [ + 65.75862787852226, + 40.224378264241906 + ], + [ + 65.52894251155492, + 40.224378264241906 + ], + [ + 65.41409982807123, + 40.029730529313454 + ], + [ + 65.52894251155492, + 39.835082794385 + ], + [ + 65.75862787852226, + 39.835082794385 + ], + [ + 65.87347056200595, + 40.029730529313454 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.87347056200595, + 40.419025999170366 + ], + [ + 65.75862787852226, + 40.61367373409882 + ], + [ + 65.52894251155492, + 40.61367373409882 + ], + [ + 65.41409982807123, + 40.419025999170366 + ], + [ + 65.52894251155492, + 40.22437826424191 + ], + [ + 65.75862787852226, + 40.22437826424191 + ], + [ + 65.87347056200595, + 40.419025999170366 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.87347056200595, + 40.80832146902727 + ], + [ + 65.75862787852226, + 41.00296920395572 + ], + [ + 65.52894251155492, + 41.00296920395572 + ], + [ + 65.41409982807123, + 40.80832146902727 + ], + [ + 65.52894251155492, + 40.61367373409882 + ], + [ + 65.75862787852226, + 40.61367373409882 + ], + [ + 65.87347056200595, + 40.80832146902727 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.87347056200595, + 41.197616938884174 + ], + [ + 65.75862787852226, + 41.392264673812626 + ], + [ + 65.52894251155492, + 41.392264673812626 + ], + [ + 65.41409982807123, + 41.197616938884174 + ], + [ + 65.52894251155492, + 41.00296920395572 + ], + [ + 65.75862787852226, + 41.00296920395572 + ], + [ + 65.87347056200595, + 41.197616938884174 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.87347056200595, + 41.58691240874108 + ], + [ + 65.75862787852226, + 41.78156014366953 + ], + [ + 65.52894251155492, + 41.78156014366953 + ], + [ + 65.41409982807123, + 41.58691240874108 + ], + [ + 65.52894251155492, + 41.392264673812626 + ], + [ + 65.75862787852226, + 41.392264673812626 + ], + [ + 65.87347056200595, + 41.58691240874108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.87347056200595, + 41.97620787859798 + ], + [ + 65.75862787852226, + 42.170855613526435 + ], + [ + 65.52894251155492, + 42.170855613526435 + ], + [ + 65.41409982807123, + 41.97620787859798 + ], + [ + 65.52894251155492, + 41.78156014366953 + ], + [ + 65.75862787852226, + 41.78156014366953 + ], + [ + 65.87347056200595, + 41.97620787859798 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.87347056200595, + 42.365503348454894 + ], + [ + 65.75862787852226, + 42.560151083383346 + ], + [ + 65.52894251155492, + 42.560151083383346 + ], + [ + 65.41409982807123, + 42.365503348454894 + ], + [ + 65.52894251155492, + 42.17085561352644 + ], + [ + 65.75862787852226, + 42.17085561352644 + ], + [ + 65.87347056200595, + 42.365503348454894 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.87347056200595, + 42.754798818311805 + ], + [ + 65.75862787852226, + 42.94944655324026 + ], + [ + 65.52894251155492, + 42.94944655324026 + ], + [ + 65.41409982807123, + 42.754798818311805 + ], + [ + 65.52894251155492, + 42.56015108338335 + ], + [ + 65.75862787852226, + 42.56015108338335 + ], + [ + 65.87347056200595, + 42.754798818311805 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.87347056200595, + 43.14409428816871 + ], + [ + 65.75862787852226, + 43.33874202309716 + ], + [ + 65.52894251155492, + 43.33874202309716 + ], + [ + 65.41409982807123, + 43.14409428816871 + ], + [ + 65.52894251155492, + 42.94944655324026 + ], + [ + 65.75862787852226, + 42.94944655324026 + ], + [ + 65.87347056200595, + 43.14409428816871 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.87347056200595, + 43.53338975802561 + ], + [ + 65.75862787852226, + 43.728037492954066 + ], + [ + 65.52894251155492, + 43.728037492954066 + ], + [ + 65.41409982807123, + 43.53338975802561 + ], + [ + 65.52894251155492, + 43.33874202309716 + ], + [ + 65.75862787852226, + 43.33874202309716 + ], + [ + 65.87347056200595, + 43.53338975802561 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.87347056200595, + 43.92268522788252 + ], + [ + 65.75862787852226, + 44.11733296281097 + ], + [ + 65.52894251155492, + 44.11733296281097 + ], + [ + 65.41409982807123, + 43.92268522788252 + ], + [ + 65.52894251155492, + 43.728037492954066 + ], + [ + 65.75862787852226, + 43.728037492954066 + ], + [ + 65.87347056200595, + 43.92268522788252 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.87347056200595, + 44.31198069773942 + ], + [ + 65.75862787852226, + 44.506628432667874 + ], + [ + 65.52894251155492, + 44.506628432667874 + ], + [ + 65.41409982807123, + 44.31198069773942 + ], + [ + 65.52894251155492, + 44.11733296281097 + ], + [ + 65.75862787852226, + 44.11733296281097 + ], + [ + 65.87347056200595, + 44.31198069773942 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.87347056200595, + 44.701276167596326 + ], + [ + 65.75862787852226, + 44.89592390252478 + ], + [ + 65.52894251155492, + 44.89592390252478 + ], + [ + 65.41409982807123, + 44.701276167596326 + ], + [ + 65.52894251155492, + 44.506628432667874 + ], + [ + 65.75862787852226, + 44.506628432667874 + ], + [ + 65.87347056200595, + 44.701276167596326 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.87347056200595, + 45.090571637453245 + ], + [ + 65.75862787852226, + 45.2852193723817 + ], + [ + 65.52894251155492, + 45.2852193723817 + ], + [ + 65.41409982807123, + 45.090571637453245 + ], + [ + 65.52894251155492, + 44.89592390252479 + ], + [ + 65.75862787852226, + 44.89592390252479 + ], + [ + 65.87347056200595, + 45.090571637453245 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.87347056200595, + 45.47986710731015 + ], + [ + 65.75862787852226, + 45.6745148422386 + ], + [ + 65.52894251155492, + 45.6745148422386 + ], + [ + 65.41409982807123, + 45.47986710731015 + ], + [ + 65.52894251155492, + 45.2852193723817 + ], + [ + 65.75862787852226, + 45.2852193723817 + ], + [ + 65.87347056200595, + 45.47986710731015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.87347056200595, + 45.86916257716705 + ], + [ + 65.75862787852226, + 46.063810312095505 + ], + [ + 65.52894251155492, + 46.063810312095505 + ], + [ + 65.41409982807123, + 45.86916257716705 + ], + [ + 65.52894251155492, + 45.6745148422386 + ], + [ + 65.75862787852226, + 45.6745148422386 + ], + [ + 65.87347056200595, + 45.86916257716705 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.87347056200595, + 46.25845804702396 + ], + [ + 65.75862787852226, + 46.45310578195241 + ], + [ + 65.52894251155492, + 46.45310578195241 + ], + [ + 65.41409982807123, + 46.25845804702396 + ], + [ + 65.52894251155492, + 46.063810312095505 + ], + [ + 65.75862787852226, + 46.063810312095505 + ], + [ + 65.87347056200595, + 46.25845804702396 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.87347056200595, + 46.64775351688086 + ], + [ + 65.75862787852226, + 46.842401251809314 + ], + [ + 65.52894251155492, + 46.842401251809314 + ], + [ + 65.41409982807123, + 46.64775351688086 + ], + [ + 65.52894251155492, + 46.45310578195241 + ], + [ + 65.75862787852226, + 46.45310578195241 + ], + [ + 65.87347056200595, + 46.64775351688086 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.87347056200595, + 47.037048986737766 + ], + [ + 65.75862787852226, + 47.23169672166622 + ], + [ + 65.52894251155492, + 47.23169672166622 + ], + [ + 65.41409982807123, + 47.037048986737766 + ], + [ + 65.52894251155492, + 46.842401251809314 + ], + [ + 65.75862787852226, + 46.842401251809314 + ], + [ + 65.87347056200595, + 47.037048986737766 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.87347056200595, + 47.42634445659467 + ], + [ + 65.75862787852226, + 47.62099219152312 + ], + [ + 65.52894251155492, + 47.62099219152312 + ], + [ + 65.41409982807123, + 47.42634445659467 + ], + [ + 65.52894251155492, + 47.23169672166622 + ], + [ + 65.75862787852226, + 47.23169672166622 + ], + [ + 65.87347056200595, + 47.42634445659467 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.87347056200595, + 47.81563992645159 + ], + [ + 65.75862787852226, + 48.01028766138004 + ], + [ + 65.52894251155492, + 48.01028766138004 + ], + [ + 65.41409982807123, + 47.81563992645159 + ], + [ + 65.52894251155492, + 47.620992191523136 + ], + [ + 65.75862787852226, + 47.620992191523136 + ], + [ + 65.87347056200595, + 47.81563992645159 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.217998612457, + 11.805808964687746 + ], + [ + 66.10315592897331, + 12.0004566996162 + ], + [ + 65.87347056200596, + 12.0004566996162 + ], + [ + 65.75862787852228, + 11.805808964687746 + ], + [ + 65.87347056200596, + 11.611161229759292 + ], + [ + 66.10315592897331, + 11.611161229759292 + ], + [ + 66.217998612457, + 11.805808964687746 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.217998612457, + 12.195104434544652 + ], + [ + 66.10315592897331, + 12.389752169473105 + ], + [ + 65.87347056200596, + 12.389752169473105 + ], + [ + 65.75862787852228, + 12.195104434544652 + ], + [ + 65.87347056200596, + 12.000456699616198 + ], + [ + 66.10315592897331, + 12.000456699616198 + ], + [ + 66.217998612457, + 12.195104434544652 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.217998612457, + 12.58439990440156 + ], + [ + 66.10315592897331, + 12.779047639330013 + ], + [ + 65.87347056200596, + 12.779047639330013 + ], + [ + 65.75862787852228, + 12.58439990440156 + ], + [ + 65.87347056200596, + 12.389752169473105 + ], + [ + 66.10315592897331, + 12.389752169473105 + ], + [ + 66.217998612457, + 12.58439990440156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.217998612457, + 12.973695374258465 + ], + [ + 66.10315592897331, + 13.16834310918692 + ], + [ + 65.87347056200596, + 13.16834310918692 + ], + [ + 65.75862787852228, + 12.973695374258465 + ], + [ + 65.87347056200596, + 12.779047639330011 + ], + [ + 66.10315592897331, + 12.779047639330011 + ], + [ + 66.217998612457, + 12.973695374258465 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.217998612457, + 13.362990844115371 + ], + [ + 66.10315592897331, + 13.557638579043825 + ], + [ + 65.87347056200596, + 13.557638579043825 + ], + [ + 65.75862787852228, + 13.362990844115371 + ], + [ + 65.87347056200596, + 13.168343109186917 + ], + [ + 66.10315592897331, + 13.168343109186917 + ], + [ + 66.217998612457, + 13.362990844115371 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.217998612457, + 13.752286313972277 + ], + [ + 66.10315592897331, + 13.946934048900731 + ], + [ + 65.87347056200596, + 13.946934048900731 + ], + [ + 65.75862787852228, + 13.752286313972277 + ], + [ + 65.87347056200596, + 13.557638579043823 + ], + [ + 66.10315592897331, + 13.557638579043823 + ], + [ + 66.217998612457, + 13.752286313972277 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.217998612457, + 14.141581783829183 + ], + [ + 66.10315592897331, + 14.336229518757637 + ], + [ + 65.87347056200596, + 14.336229518757637 + ], + [ + 65.75862787852228, + 14.141581783829183 + ], + [ + 65.87347056200596, + 13.94693404890073 + ], + [ + 66.10315592897331, + 13.94693404890073 + ], + [ + 66.217998612457, + 14.141581783829183 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.217998612457, + 14.530877253686091 + ], + [ + 66.10315592897331, + 14.725524988614545 + ], + [ + 65.87347056200596, + 14.725524988614545 + ], + [ + 65.75862787852228, + 14.530877253686091 + ], + [ + 65.87347056200596, + 14.336229518757637 + ], + [ + 66.10315592897331, + 14.336229518757637 + ], + [ + 66.217998612457, + 14.530877253686091 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.217998612457, + 14.920172723542997 + ], + [ + 66.10315592897331, + 15.114820458471451 + ], + [ + 65.87347056200596, + 15.114820458471451 + ], + [ + 65.75862787852228, + 14.920172723542997 + ], + [ + 65.87347056200596, + 14.725524988614543 + ], + [ + 66.10315592897331, + 14.725524988614543 + ], + [ + 66.217998612457, + 14.920172723542997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.217998612457, + 15.309468193399903 + ], + [ + 66.10315592897331, + 15.504115928328357 + ], + [ + 65.87347056200596, + 15.504115928328357 + ], + [ + 65.75862787852228, + 15.309468193399903 + ], + [ + 65.87347056200596, + 15.11482045847145 + ], + [ + 66.10315592897331, + 15.11482045847145 + ], + [ + 66.217998612457, + 15.309468193399903 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.217998612457, + 15.69876366325681 + ], + [ + 66.10315592897331, + 15.893411398185265 + ], + [ + 65.87347056200596, + 15.893411398185265 + ], + [ + 65.75862787852228, + 15.69876366325681 + ], + [ + 65.87347056200596, + 15.504115928328357 + ], + [ + 66.10315592897331, + 15.504115928328357 + ], + [ + 66.217998612457, + 15.69876366325681 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.217998612457, + 16.088059133113717 + ], + [ + 66.10315592897331, + 16.28270686804217 + ], + [ + 65.87347056200596, + 16.28270686804217 + ], + [ + 65.75862787852228, + 16.088059133113717 + ], + [ + 65.87347056200596, + 15.893411398185263 + ], + [ + 66.10315592897331, + 15.893411398185263 + ], + [ + 66.217998612457, + 16.088059133113717 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.217998612457, + 16.477354602970625 + ], + [ + 66.10315592897331, + 16.672002337899077 + ], + [ + 65.87347056200596, + 16.672002337899077 + ], + [ + 65.75862787852228, + 16.477354602970625 + ], + [ + 65.87347056200596, + 16.282706868042172 + ], + [ + 66.10315592897331, + 16.282706868042172 + ], + [ + 66.217998612457, + 16.477354602970625 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.217998612457, + 16.86665007282753 + ], + [ + 66.10315592897331, + 17.06129780775598 + ], + [ + 65.87347056200596, + 17.06129780775598 + ], + [ + 65.75862787852228, + 16.86665007282753 + ], + [ + 65.87347056200596, + 16.672002337899077 + ], + [ + 66.10315592897331, + 16.672002337899077 + ], + [ + 66.217998612457, + 16.86665007282753 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.217998612457, + 17.255945542684437 + ], + [ + 66.10315592897331, + 17.45059327761289 + ], + [ + 65.87347056200596, + 17.45059327761289 + ], + [ + 65.75862787852228, + 17.255945542684437 + ], + [ + 65.87347056200596, + 17.061297807755984 + ], + [ + 66.10315592897331, + 17.061297807755984 + ], + [ + 66.217998612457, + 17.255945542684437 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.217998612457, + 17.64524101254134 + ], + [ + 66.10315592897331, + 17.839888747469793 + ], + [ + 65.87347056200596, + 17.839888747469793 + ], + [ + 65.75862787852228, + 17.64524101254134 + ], + [ + 65.87347056200596, + 17.45059327761289 + ], + [ + 66.10315592897331, + 17.45059327761289 + ], + [ + 66.217998612457, + 17.64524101254134 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.217998612457, + 18.03453648239825 + ], + [ + 66.10315592897331, + 18.2291842173267 + ], + [ + 65.87347056200596, + 18.2291842173267 + ], + [ + 65.75862787852228, + 18.03453648239825 + ], + [ + 65.87347056200596, + 17.839888747469796 + ], + [ + 66.10315592897331, + 17.839888747469796 + ], + [ + 66.217998612457, + 18.03453648239825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.217998612457, + 18.423831952255156 + ], + [ + 66.10315592897331, + 18.61847968718361 + ], + [ + 65.87347056200596, + 18.61847968718361 + ], + [ + 65.75862787852228, + 18.423831952255156 + ], + [ + 65.87347056200596, + 18.229184217326704 + ], + [ + 66.10315592897331, + 18.229184217326704 + ], + [ + 66.217998612457, + 18.423831952255156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.217998612457, + 18.81312742211206 + ], + [ + 66.10315592897331, + 19.007775157040513 + ], + [ + 65.87347056200596, + 19.007775157040513 + ], + [ + 65.75862787852228, + 18.81312742211206 + ], + [ + 65.87347056200596, + 18.61847968718361 + ], + [ + 66.10315592897331, + 18.61847968718361 + ], + [ + 66.217998612457, + 18.81312742211206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.217998612457, + 19.20242289196897 + ], + [ + 66.10315592897331, + 19.39707062689742 + ], + [ + 65.87347056200596, + 19.39707062689742 + ], + [ + 65.75862787852228, + 19.20242289196897 + ], + [ + 65.87347056200596, + 19.007775157040516 + ], + [ + 66.10315592897331, + 19.007775157040516 + ], + [ + 66.217998612457, + 19.20242289196897 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.217998612457, + 19.591718361825876 + ], + [ + 66.10315592897331, + 19.78636609675433 + ], + [ + 65.87347056200596, + 19.78636609675433 + ], + [ + 65.75862787852228, + 19.591718361825876 + ], + [ + 65.87347056200596, + 19.397070626897424 + ], + [ + 66.10315592897331, + 19.397070626897424 + ], + [ + 66.217998612457, + 19.591718361825876 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.217998612457, + 19.98101383168278 + ], + [ + 66.10315592897331, + 20.175661566611232 + ], + [ + 65.87347056200596, + 20.175661566611232 + ], + [ + 65.75862787852228, + 19.98101383168278 + ], + [ + 65.87347056200596, + 19.78636609675433 + ], + [ + 66.10315592897331, + 19.78636609675433 + ], + [ + 66.217998612457, + 19.98101383168278 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.217998612457, + 20.370309301539685 + ], + [ + 66.10315592897331, + 20.564957036468137 + ], + [ + 65.87347056200596, + 20.564957036468137 + ], + [ + 65.75862787852228, + 20.370309301539685 + ], + [ + 65.87347056200596, + 20.175661566611232 + ], + [ + 66.10315592897331, + 20.175661566611232 + ], + [ + 66.217998612457, + 20.370309301539685 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.217998612457, + 20.759604771396592 + ], + [ + 66.10315592897331, + 20.954252506325044 + ], + [ + 65.87347056200596, + 20.954252506325044 + ], + [ + 65.75862787852228, + 20.759604771396592 + ], + [ + 65.87347056200596, + 20.56495703646814 + ], + [ + 66.10315592897331, + 20.56495703646814 + ], + [ + 66.217998612457, + 20.759604771396592 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.217998612457, + 21.1489002412535 + ], + [ + 66.10315592897331, + 21.343547976181952 + ], + [ + 65.87347056200596, + 21.343547976181952 + ], + [ + 65.75862787852228, + 21.1489002412535 + ], + [ + 65.87347056200596, + 20.954252506325048 + ], + [ + 66.10315592897331, + 20.954252506325048 + ], + [ + 66.217998612457, + 21.1489002412535 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.217998612457, + 21.538195711110404 + ], + [ + 66.10315592897331, + 21.732843446038856 + ], + [ + 65.87347056200596, + 21.732843446038856 + ], + [ + 65.75862787852228, + 21.538195711110404 + ], + [ + 65.87347056200596, + 21.343547976181952 + ], + [ + 66.10315592897331, + 21.343547976181952 + ], + [ + 66.217998612457, + 21.538195711110404 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.217998612457, + 21.927491180967312 + ], + [ + 66.10315592897331, + 22.122138915895764 + ], + [ + 65.87347056200596, + 22.122138915895764 + ], + [ + 65.75862787852228, + 21.927491180967312 + ], + [ + 65.87347056200596, + 21.73284344603886 + ], + [ + 66.10315592897331, + 21.73284344603886 + ], + [ + 66.217998612457, + 21.927491180967312 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.217998612457, + 22.31678665082422 + ], + [ + 66.10315592897331, + 22.511434385752672 + ], + [ + 65.87347056200596, + 22.511434385752672 + ], + [ + 65.75862787852228, + 22.31678665082422 + ], + [ + 65.87347056200596, + 22.122138915895768 + ], + [ + 66.10315592897331, + 22.122138915895768 + ], + [ + 66.217998612457, + 22.31678665082422 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.217998612457, + 22.706082120681124 + ], + [ + 66.10315592897331, + 22.900729855609576 + ], + [ + 65.87347056200596, + 22.900729855609576 + ], + [ + 65.75862787852228, + 22.706082120681124 + ], + [ + 65.87347056200596, + 22.511434385752672 + ], + [ + 66.10315592897331, + 22.511434385752672 + ], + [ + 66.217998612457, + 22.706082120681124 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.217998612457, + 23.095377590538032 + ], + [ + 66.10315592897331, + 23.290025325466484 + ], + [ + 65.87347056200596, + 23.290025325466484 + ], + [ + 65.75862787852228, + 23.095377590538032 + ], + [ + 65.87347056200596, + 22.90072985560958 + ], + [ + 66.10315592897331, + 22.90072985560958 + ], + [ + 66.217998612457, + 23.095377590538032 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.217998612457, + 23.48467306039494 + ], + [ + 66.10315592897331, + 23.67932079532339 + ], + [ + 65.87347056200596, + 23.67932079532339 + ], + [ + 65.75862787852228, + 23.48467306039494 + ], + [ + 65.87347056200596, + 23.290025325466488 + ], + [ + 66.10315592897331, + 23.290025325466488 + ], + [ + 66.217998612457, + 23.48467306039494 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.217998612457, + 23.873968530251844 + ], + [ + 66.10315592897331, + 24.068616265180296 + ], + [ + 65.87347056200596, + 24.068616265180296 + ], + [ + 65.75862787852228, + 23.873968530251844 + ], + [ + 65.87347056200596, + 23.67932079532339 + ], + [ + 66.10315592897331, + 23.67932079532339 + ], + [ + 66.217998612457, + 23.873968530251844 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.217998612457, + 24.263264000108748 + ], + [ + 66.10315592897331, + 24.4579117350372 + ], + [ + 65.87347056200596, + 24.4579117350372 + ], + [ + 65.75862787852228, + 24.263264000108748 + ], + [ + 65.87347056200596, + 24.068616265180296 + ], + [ + 66.10315592897331, + 24.068616265180296 + ], + [ + 66.217998612457, + 24.263264000108748 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.217998612457, + 24.652559469965656 + ], + [ + 66.10315592897331, + 24.847207204894108 + ], + [ + 65.87347056200596, + 24.847207204894108 + ], + [ + 65.75862787852228, + 24.652559469965656 + ], + [ + 65.87347056200596, + 24.457911735037204 + ], + [ + 66.10315592897331, + 24.457911735037204 + ], + [ + 66.217998612457, + 24.652559469965656 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.217998612457, + 25.041854939822564 + ], + [ + 66.10315592897331, + 25.236502674751016 + ], + [ + 65.87347056200596, + 25.236502674751016 + ], + [ + 65.75862787852228, + 25.041854939822564 + ], + [ + 65.87347056200596, + 24.84720720489411 + ], + [ + 66.10315592897331, + 24.84720720489411 + ], + [ + 66.217998612457, + 25.041854939822564 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.217998612457, + 25.431150409679468 + ], + [ + 66.10315592897331, + 25.62579814460792 + ], + [ + 65.87347056200596, + 25.62579814460792 + ], + [ + 65.75862787852228, + 25.431150409679468 + ], + [ + 65.87347056200596, + 25.236502674751016 + ], + [ + 66.10315592897331, + 25.236502674751016 + ], + [ + 66.217998612457, + 25.431150409679468 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.217998612457, + 25.820445879536376 + ], + [ + 66.10315592897331, + 26.015093614464828 + ], + [ + 65.87347056200596, + 26.015093614464828 + ], + [ + 65.75862787852228, + 25.820445879536376 + ], + [ + 65.87347056200596, + 25.625798144607923 + ], + [ + 66.10315592897331, + 25.625798144607923 + ], + [ + 66.217998612457, + 25.820445879536376 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.217998612457, + 26.209741349393283 + ], + [ + 66.10315592897331, + 26.404389084321735 + ], + [ + 65.87347056200596, + 26.404389084321735 + ], + [ + 65.75862787852228, + 26.209741349393283 + ], + [ + 65.87347056200596, + 26.01509361446483 + ], + [ + 66.10315592897331, + 26.01509361446483 + ], + [ + 66.217998612457, + 26.209741349393283 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.217998612457, + 26.599036819250188 + ], + [ + 66.10315592897331, + 26.79368455417864 + ], + [ + 65.87347056200596, + 26.79368455417864 + ], + [ + 65.75862787852228, + 26.599036819250188 + ], + [ + 65.87347056200596, + 26.404389084321735 + ], + [ + 66.10315592897331, + 26.404389084321735 + ], + [ + 66.217998612457, + 26.599036819250188 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.217998612457, + 26.988332289107095 + ], + [ + 66.10315592897331, + 27.182980024035547 + ], + [ + 65.87347056200596, + 27.182980024035547 + ], + [ + 65.75862787852228, + 26.988332289107095 + ], + [ + 65.87347056200596, + 26.793684554178643 + ], + [ + 66.10315592897331, + 26.793684554178643 + ], + [ + 66.217998612457, + 26.988332289107095 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.217998612457, + 27.377627758964003 + ], + [ + 66.10315592897331, + 27.572275493892455 + ], + [ + 65.87347056200596, + 27.572275493892455 + ], + [ + 65.75862787852228, + 27.377627758964003 + ], + [ + 65.87347056200596, + 27.18298002403555 + ], + [ + 66.10315592897331, + 27.18298002403555 + ], + [ + 66.217998612457, + 27.377627758964003 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.217998612457, + 27.766923228820907 + ], + [ + 66.10315592897331, + 27.96157096374936 + ], + [ + 65.87347056200596, + 27.96157096374936 + ], + [ + 65.75862787852228, + 27.766923228820907 + ], + [ + 65.87347056200596, + 27.572275493892455 + ], + [ + 66.10315592897331, + 27.572275493892455 + ], + [ + 66.217998612457, + 27.766923228820907 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.217998612457, + 28.156218698677815 + ], + [ + 66.10315592897331, + 28.350866433606267 + ], + [ + 65.87347056200596, + 28.350866433606267 + ], + [ + 65.75862787852228, + 28.156218698677815 + ], + [ + 65.87347056200596, + 27.961570963749363 + ], + [ + 66.10315592897331, + 27.961570963749363 + ], + [ + 66.217998612457, + 28.156218698677815 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.217998612457, + 28.54551416853472 + ], + [ + 66.10315592897331, + 28.74016190346317 + ], + [ + 65.87347056200596, + 28.74016190346317 + ], + [ + 65.75862787852228, + 28.54551416853472 + ], + [ + 65.87347056200596, + 28.350866433606267 + ], + [ + 66.10315592897331, + 28.350866433606267 + ], + [ + 66.217998612457, + 28.54551416853472 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.217998612457, + 28.934809638391627 + ], + [ + 66.10315592897331, + 29.12945737332008 + ], + [ + 65.87347056200596, + 29.12945737332008 + ], + [ + 65.75862787852228, + 28.934809638391627 + ], + [ + 65.87347056200596, + 28.740161903463175 + ], + [ + 66.10315592897331, + 28.740161903463175 + ], + [ + 66.217998612457, + 28.934809638391627 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.217998612457, + 29.32410510824853 + ], + [ + 66.10315592897331, + 29.518752843176983 + ], + [ + 65.87347056200596, + 29.518752843176983 + ], + [ + 65.75862787852228, + 29.32410510824853 + ], + [ + 65.87347056200596, + 29.12945737332008 + ], + [ + 66.10315592897331, + 29.12945737332008 + ], + [ + 66.217998612457, + 29.32410510824853 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.217998612457, + 29.71340057810544 + ], + [ + 66.10315592897331, + 29.90804831303389 + ], + [ + 65.87347056200596, + 29.90804831303389 + ], + [ + 65.75862787852228, + 29.71340057810544 + ], + [ + 65.87347056200596, + 29.518752843176987 + ], + [ + 66.10315592897331, + 29.518752843176987 + ], + [ + 66.217998612457, + 29.71340057810544 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.217998612457, + 30.102696047962343 + ], + [ + 66.10315592897331, + 30.297343782890795 + ], + [ + 65.87347056200596, + 30.297343782890795 + ], + [ + 65.75862787852228, + 30.102696047962343 + ], + [ + 65.87347056200596, + 29.90804831303389 + ], + [ + 66.10315592897331, + 29.90804831303389 + ], + [ + 66.217998612457, + 30.102696047962343 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.217998612457, + 30.49199151781925 + ], + [ + 66.10315592897331, + 30.686639252747703 + ], + [ + 65.87347056200596, + 30.686639252747703 + ], + [ + 65.75862787852228, + 30.49199151781925 + ], + [ + 65.87347056200596, + 30.2973437828908 + ], + [ + 66.10315592897331, + 30.2973437828908 + ], + [ + 66.217998612457, + 30.49199151781925 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.217998612457, + 30.88128698767616 + ], + [ + 66.10315592897331, + 31.07593472260461 + ], + [ + 65.87347056200596, + 31.07593472260461 + ], + [ + 65.75862787852228, + 30.88128698767616 + ], + [ + 65.87347056200596, + 30.686639252747707 + ], + [ + 66.10315592897331, + 30.686639252747707 + ], + [ + 66.217998612457, + 30.88128698767616 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.217998612457, + 31.270582457533063 + ], + [ + 66.10315592897331, + 31.465230192461515 + ], + [ + 65.87347056200596, + 31.465230192461515 + ], + [ + 65.75862787852228, + 31.270582457533063 + ], + [ + 65.87347056200596, + 31.07593472260461 + ], + [ + 66.10315592897331, + 31.07593472260461 + ], + [ + 66.217998612457, + 31.270582457533063 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.217998612457, + 31.65987792738997 + ], + [ + 66.10315592897331, + 31.854525662318423 + ], + [ + 65.87347056200596, + 31.854525662318423 + ], + [ + 65.75862787852228, + 31.65987792738997 + ], + [ + 65.87347056200596, + 31.46523019246152 + ], + [ + 66.10315592897331, + 31.46523019246152 + ], + [ + 66.217998612457, + 31.65987792738997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.217998612457, + 32.049173397246875 + ], + [ + 66.10315592897331, + 32.24382113217533 + ], + [ + 65.87347056200596, + 32.24382113217533 + ], + [ + 65.75862787852228, + 32.049173397246875 + ], + [ + 65.87347056200596, + 31.854525662318423 + ], + [ + 66.10315592897331, + 31.854525662318423 + ], + [ + 66.217998612457, + 32.049173397246875 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.217998612457, + 32.438468867103786 + ], + [ + 66.10315592897331, + 32.63311660203224 + ], + [ + 65.87347056200596, + 32.63311660203224 + ], + [ + 65.75862787852228, + 32.438468867103786 + ], + [ + 65.87347056200596, + 32.243821132175334 + ], + [ + 66.10315592897331, + 32.243821132175334 + ], + [ + 66.217998612457, + 32.438468867103786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.217998612457, + 32.82776433696069 + ], + [ + 66.10315592897331, + 33.02241207188914 + ], + [ + 65.87347056200596, + 33.02241207188914 + ], + [ + 65.75862787852228, + 32.82776433696069 + ], + [ + 65.87347056200596, + 32.63311660203224 + ], + [ + 66.10315592897331, + 32.63311660203224 + ], + [ + 66.217998612457, + 32.82776433696069 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.217998612457, + 33.217059806817595 + ], + [ + 66.10315592897331, + 33.41170754174605 + ], + [ + 65.87347056200596, + 33.41170754174605 + ], + [ + 65.75862787852228, + 33.217059806817595 + ], + [ + 65.87347056200596, + 33.02241207188914 + ], + [ + 66.10315592897331, + 33.02241207188914 + ], + [ + 66.217998612457, + 33.217059806817595 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.217998612457, + 33.6063552766745 + ], + [ + 66.10315592897331, + 33.80100301160295 + ], + [ + 65.87347056200596, + 33.80100301160295 + ], + [ + 65.75862787852228, + 33.6063552766745 + ], + [ + 65.87347056200596, + 33.41170754174605 + ], + [ + 66.10315592897331, + 33.41170754174605 + ], + [ + 66.217998612457, + 33.6063552766745 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.217998612457, + 33.9956507465314 + ], + [ + 66.10315592897331, + 34.190298481459855 + ], + [ + 65.87347056200596, + 34.190298481459855 + ], + [ + 65.75862787852228, + 33.9956507465314 + ], + [ + 65.87347056200596, + 33.80100301160295 + ], + [ + 66.10315592897331, + 33.80100301160295 + ], + [ + 66.217998612457, + 33.9956507465314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.217998612457, + 34.384946216388315 + ], + [ + 66.10315592897331, + 34.57959395131677 + ], + [ + 65.87347056200596, + 34.57959395131677 + ], + [ + 65.75862787852228, + 34.384946216388315 + ], + [ + 65.87347056200596, + 34.19029848145986 + ], + [ + 66.10315592897331, + 34.19029848145986 + ], + [ + 66.217998612457, + 34.384946216388315 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.217998612457, + 34.774241686245226 + ], + [ + 66.10315592897331, + 34.96888942117368 + ], + [ + 65.87347056200596, + 34.96888942117368 + ], + [ + 65.75862787852228, + 34.774241686245226 + ], + [ + 65.87347056200596, + 34.579593951316774 + ], + [ + 66.10315592897331, + 34.579593951316774 + ], + [ + 66.217998612457, + 34.774241686245226 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.217998612457, + 35.16353715610213 + ], + [ + 66.10315592897331, + 35.35818489103058 + ], + [ + 65.87347056200596, + 35.35818489103058 + ], + [ + 65.75862787852228, + 35.16353715610213 + ], + [ + 65.87347056200596, + 34.96888942117368 + ], + [ + 66.10315592897331, + 34.96888942117368 + ], + [ + 66.217998612457, + 35.16353715610213 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.217998612457, + 35.552832625959034 + ], + [ + 66.10315592897331, + 35.74748036088749 + ], + [ + 65.87347056200596, + 35.74748036088749 + ], + [ + 65.75862787852228, + 35.552832625959034 + ], + [ + 65.87347056200596, + 35.35818489103058 + ], + [ + 66.10315592897331, + 35.35818489103058 + ], + [ + 66.217998612457, + 35.552832625959034 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.217998612457, + 35.94212809581594 + ], + [ + 66.10315592897331, + 36.13677583074439 + ], + [ + 65.87347056200596, + 36.13677583074439 + ], + [ + 65.75862787852228, + 35.94212809581594 + ], + [ + 65.87347056200596, + 35.74748036088749 + ], + [ + 66.10315592897331, + 35.74748036088749 + ], + [ + 66.217998612457, + 35.94212809581594 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.217998612457, + 36.33142356567284 + ], + [ + 66.10315592897331, + 36.526071300601295 + ], + [ + 65.87347056200596, + 36.526071300601295 + ], + [ + 65.75862787852228, + 36.33142356567284 + ], + [ + 65.87347056200596, + 36.13677583074439 + ], + [ + 66.10315592897331, + 36.13677583074439 + ], + [ + 66.217998612457, + 36.33142356567284 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.217998612457, + 36.720719035529754 + ], + [ + 66.10315592897331, + 36.915366770458206 + ], + [ + 65.87347056200596, + 36.915366770458206 + ], + [ + 65.75862787852228, + 36.720719035529754 + ], + [ + 65.87347056200596, + 36.5260713006013 + ], + [ + 66.10315592897331, + 36.5260713006013 + ], + [ + 66.217998612457, + 36.720719035529754 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.217998612457, + 37.11001450538666 + ], + [ + 66.10315592897331, + 37.30466224031511 + ], + [ + 65.87347056200596, + 37.30466224031511 + ], + [ + 65.75862787852228, + 37.11001450538666 + ], + [ + 65.87347056200596, + 36.915366770458206 + ], + [ + 66.10315592897331, + 36.915366770458206 + ], + [ + 66.217998612457, + 37.11001450538666 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.217998612457, + 37.49930997524357 + ], + [ + 66.10315592897331, + 37.69395771017202 + ], + [ + 65.87347056200596, + 37.69395771017202 + ], + [ + 65.75862787852228, + 37.49930997524357 + ], + [ + 65.87347056200596, + 37.30466224031512 + ], + [ + 66.10315592897331, + 37.30466224031512 + ], + [ + 66.217998612457, + 37.49930997524357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.217998612457, + 37.888605445100474 + ], + [ + 66.10315592897331, + 38.083253180028926 + ], + [ + 65.87347056200596, + 38.083253180028926 + ], + [ + 65.75862787852228, + 37.888605445100474 + ], + [ + 65.87347056200596, + 37.69395771017202 + ], + [ + 66.10315592897331, + 37.69395771017202 + ], + [ + 66.217998612457, + 37.888605445100474 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.217998612457, + 38.27790091495738 + ], + [ + 66.10315592897331, + 38.47254864988583 + ], + [ + 65.87347056200596, + 38.47254864988583 + ], + [ + 65.75862787852228, + 38.27790091495738 + ], + [ + 65.87347056200596, + 38.083253180028926 + ], + [ + 66.10315592897331, + 38.083253180028926 + ], + [ + 66.217998612457, + 38.27790091495738 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.217998612457, + 38.66719638481428 + ], + [ + 66.10315592897331, + 38.861844119742734 + ], + [ + 65.87347056200596, + 38.861844119742734 + ], + [ + 65.75862787852228, + 38.66719638481428 + ], + [ + 65.87347056200596, + 38.47254864988583 + ], + [ + 66.10315592897331, + 38.47254864988583 + ], + [ + 66.217998612457, + 38.66719638481428 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.217998612457, + 39.05649185467119 + ], + [ + 66.10315592897331, + 39.25113958959964 + ], + [ + 65.87347056200596, + 39.25113958959964 + ], + [ + 65.75862787852228, + 39.05649185467119 + ], + [ + 65.87347056200596, + 38.861844119742734 + ], + [ + 66.10315592897331, + 38.861844119742734 + ], + [ + 66.217998612457, + 39.05649185467119 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.217998612457, + 39.4457873245281 + ], + [ + 66.10315592897331, + 39.64043505945655 + ], + [ + 65.87347056200596, + 39.64043505945655 + ], + [ + 65.75862787852228, + 39.4457873245281 + ], + [ + 65.87347056200596, + 39.251139589599646 + ], + [ + 66.10315592897331, + 39.251139589599646 + ], + [ + 66.217998612457, + 39.4457873245281 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.217998612457, + 39.835082794385 + ], + [ + 66.10315592897331, + 40.029730529313454 + ], + [ + 65.87347056200596, + 40.029730529313454 + ], + [ + 65.75862787852228, + 39.835082794385 + ], + [ + 65.87347056200596, + 39.64043505945655 + ], + [ + 66.10315592897331, + 39.64043505945655 + ], + [ + 66.217998612457, + 39.835082794385 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.217998612457, + 40.22437826424191 + ], + [ + 66.10315592897331, + 40.419025999170366 + ], + [ + 65.87347056200596, + 40.419025999170366 + ], + [ + 65.75862787852228, + 40.22437826424191 + ], + [ + 65.87347056200596, + 40.02973052931346 + ], + [ + 66.10315592897331, + 40.02973052931346 + ], + [ + 66.217998612457, + 40.22437826424191 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.217998612457, + 40.61367373409882 + ], + [ + 66.10315592897331, + 40.80832146902727 + ], + [ + 65.87347056200596, + 40.80832146902727 + ], + [ + 65.75862787852228, + 40.61367373409882 + ], + [ + 65.87347056200596, + 40.419025999170366 + ], + [ + 66.10315592897331, + 40.419025999170366 + ], + [ + 66.217998612457, + 40.61367373409882 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.217998612457, + 41.00296920395572 + ], + [ + 66.10315592897331, + 41.197616938884174 + ], + [ + 65.87347056200596, + 41.197616938884174 + ], + [ + 65.75862787852228, + 41.00296920395572 + ], + [ + 65.87347056200596, + 40.80832146902727 + ], + [ + 66.10315592897331, + 40.80832146902727 + ], + [ + 66.217998612457, + 41.00296920395572 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.217998612457, + 41.392264673812626 + ], + [ + 66.10315592897331, + 41.58691240874108 + ], + [ + 65.87347056200596, + 41.58691240874108 + ], + [ + 65.75862787852228, + 41.392264673812626 + ], + [ + 65.87347056200596, + 41.197616938884174 + ], + [ + 66.10315592897331, + 41.197616938884174 + ], + [ + 66.217998612457, + 41.392264673812626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.217998612457, + 41.78156014366953 + ], + [ + 66.10315592897331, + 41.97620787859798 + ], + [ + 65.87347056200596, + 41.97620787859798 + ], + [ + 65.75862787852228, + 41.78156014366953 + ], + [ + 65.87347056200596, + 41.58691240874108 + ], + [ + 66.10315592897331, + 41.58691240874108 + ], + [ + 66.217998612457, + 41.78156014366953 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.217998612457, + 42.17085561352644 + ], + [ + 66.10315592897331, + 42.365503348454894 + ], + [ + 65.87347056200596, + 42.365503348454894 + ], + [ + 65.75862787852228, + 42.17085561352644 + ], + [ + 65.87347056200596, + 41.97620787859799 + ], + [ + 66.10315592897331, + 41.97620787859799 + ], + [ + 66.217998612457, + 42.17085561352644 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.217998612457, + 42.56015108338335 + ], + [ + 66.10315592897331, + 42.754798818311805 + ], + [ + 65.87347056200596, + 42.754798818311805 + ], + [ + 65.75862787852228, + 42.56015108338335 + ], + [ + 65.87347056200596, + 42.3655033484549 + ], + [ + 66.10315592897331, + 42.3655033484549 + ], + [ + 66.217998612457, + 42.56015108338335 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.217998612457, + 42.94944655324026 + ], + [ + 66.10315592897331, + 43.14409428816871 + ], + [ + 65.87347056200596, + 43.14409428816871 + ], + [ + 65.75862787852228, + 42.94944655324026 + ], + [ + 65.87347056200596, + 42.754798818311805 + ], + [ + 66.10315592897331, + 42.754798818311805 + ], + [ + 66.217998612457, + 42.94944655324026 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.217998612457, + 43.33874202309716 + ], + [ + 66.10315592897331, + 43.53338975802561 + ], + [ + 65.87347056200596, + 43.53338975802561 + ], + [ + 65.75862787852228, + 43.33874202309716 + ], + [ + 65.87347056200596, + 43.14409428816871 + ], + [ + 66.10315592897331, + 43.14409428816871 + ], + [ + 66.217998612457, + 43.33874202309716 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.217998612457, + 43.728037492954066 + ], + [ + 66.10315592897331, + 43.92268522788252 + ], + [ + 65.87347056200596, + 43.92268522788252 + ], + [ + 65.75862787852228, + 43.728037492954066 + ], + [ + 65.87347056200596, + 43.53338975802561 + ], + [ + 66.10315592897331, + 43.53338975802561 + ], + [ + 66.217998612457, + 43.728037492954066 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.217998612457, + 44.11733296281097 + ], + [ + 66.10315592897331, + 44.31198069773942 + ], + [ + 65.87347056200596, + 44.31198069773942 + ], + [ + 65.75862787852228, + 44.11733296281097 + ], + [ + 65.87347056200596, + 43.92268522788252 + ], + [ + 66.10315592897331, + 43.92268522788252 + ], + [ + 66.217998612457, + 44.11733296281097 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.217998612457, + 44.506628432667874 + ], + [ + 66.10315592897331, + 44.701276167596326 + ], + [ + 65.87347056200596, + 44.701276167596326 + ], + [ + 65.75862787852228, + 44.506628432667874 + ], + [ + 65.87347056200596, + 44.31198069773942 + ], + [ + 66.10315592897331, + 44.31198069773942 + ], + [ + 66.217998612457, + 44.506628432667874 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.217998612457, + 44.89592390252479 + ], + [ + 66.10315592897331, + 45.090571637453245 + ], + [ + 65.87347056200596, + 45.090571637453245 + ], + [ + 65.75862787852228, + 44.89592390252479 + ], + [ + 65.87347056200596, + 44.70127616759634 + ], + [ + 66.10315592897331, + 44.70127616759634 + ], + [ + 66.217998612457, + 44.89592390252479 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.217998612457, + 45.2852193723817 + ], + [ + 66.10315592897331, + 45.47986710731015 + ], + [ + 65.87347056200596, + 45.47986710731015 + ], + [ + 65.75862787852228, + 45.2852193723817 + ], + [ + 65.87347056200596, + 45.090571637453245 + ], + [ + 66.10315592897331, + 45.090571637453245 + ], + [ + 66.217998612457, + 45.2852193723817 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.217998612457, + 45.6745148422386 + ], + [ + 66.10315592897331, + 45.86916257716705 + ], + [ + 65.87347056200596, + 45.86916257716705 + ], + [ + 65.75862787852228, + 45.6745148422386 + ], + [ + 65.87347056200596, + 45.47986710731015 + ], + [ + 66.10315592897331, + 45.47986710731015 + ], + [ + 66.217998612457, + 45.6745148422386 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.217998612457, + 46.063810312095505 + ], + [ + 66.10315592897331, + 46.25845804702396 + ], + [ + 65.87347056200596, + 46.25845804702396 + ], + [ + 65.75862787852228, + 46.063810312095505 + ], + [ + 65.87347056200596, + 45.86916257716705 + ], + [ + 66.10315592897331, + 45.86916257716705 + ], + [ + 66.217998612457, + 46.063810312095505 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.217998612457, + 46.45310578195241 + ], + [ + 66.10315592897331, + 46.64775351688086 + ], + [ + 65.87347056200596, + 46.64775351688086 + ], + [ + 65.75862787852228, + 46.45310578195241 + ], + [ + 65.87347056200596, + 46.25845804702396 + ], + [ + 66.10315592897331, + 46.25845804702396 + ], + [ + 66.217998612457, + 46.45310578195241 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.217998612457, + 46.842401251809314 + ], + [ + 66.10315592897331, + 47.037048986737766 + ], + [ + 65.87347056200596, + 47.037048986737766 + ], + [ + 65.75862787852228, + 46.842401251809314 + ], + [ + 65.87347056200596, + 46.64775351688086 + ], + [ + 66.10315592897331, + 46.64775351688086 + ], + [ + 66.217998612457, + 46.842401251809314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.217998612457, + 47.23169672166622 + ], + [ + 66.10315592897331, + 47.42634445659467 + ], + [ + 65.87347056200596, + 47.42634445659467 + ], + [ + 65.75862787852228, + 47.23169672166622 + ], + [ + 65.87347056200596, + 47.037048986737766 + ], + [ + 66.10315592897331, + 47.037048986737766 + ], + [ + 66.217998612457, + 47.23169672166622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.217998612457, + 47.620992191523136 + ], + [ + 66.10315592897331, + 47.81563992645159 + ], + [ + 65.87347056200596, + 47.81563992645159 + ], + [ + 65.75862787852228, + 47.620992191523136 + ], + [ + 65.87347056200596, + 47.426344456594684 + ], + [ + 66.10315592897331, + 47.426344456594684 + ], + [ + 66.217998612457, + 47.620992191523136 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.56252666290803, + 12.0004566996162 + ], + [ + 66.44768397942434, + 12.195104434544653 + ], + [ + 66.217998612457, + 12.195104434544653 + ], + [ + 66.10315592897331, + 12.0004566996162 + ], + [ + 66.217998612457, + 11.805808964687746 + ], + [ + 66.44768397942434, + 11.805808964687746 + ], + [ + 66.56252666290803, + 12.0004566996162 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.56252666290803, + 12.389752169473105 + ], + [ + 66.44768397942434, + 12.58439990440156 + ], + [ + 66.217998612457, + 12.58439990440156 + ], + [ + 66.10315592897331, + 12.389752169473105 + ], + [ + 66.217998612457, + 12.195104434544652 + ], + [ + 66.44768397942434, + 12.195104434544652 + ], + [ + 66.56252666290803, + 12.389752169473105 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.56252666290803, + 12.779047639330013 + ], + [ + 66.44768397942434, + 12.973695374258467 + ], + [ + 66.217998612457, + 12.973695374258467 + ], + [ + 66.10315592897331, + 12.779047639330013 + ], + [ + 66.217998612457, + 12.58439990440156 + ], + [ + 66.44768397942434, + 12.58439990440156 + ], + [ + 66.56252666290803, + 12.779047639330013 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.56252666290803, + 13.16834310918692 + ], + [ + 66.44768397942434, + 13.362990844115373 + ], + [ + 66.217998612457, + 13.362990844115373 + ], + [ + 66.10315592897331, + 13.16834310918692 + ], + [ + 66.217998612457, + 12.973695374258465 + ], + [ + 66.44768397942434, + 12.973695374258465 + ], + [ + 66.56252666290803, + 13.16834310918692 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.56252666290803, + 13.557638579043825 + ], + [ + 66.44768397942434, + 13.752286313972279 + ], + [ + 66.217998612457, + 13.752286313972279 + ], + [ + 66.10315592897331, + 13.557638579043825 + ], + [ + 66.217998612457, + 13.362990844115371 + ], + [ + 66.44768397942434, + 13.362990844115371 + ], + [ + 66.56252666290803, + 13.557638579043825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.56252666290803, + 13.946934048900731 + ], + [ + 66.44768397942434, + 14.141581783829185 + ], + [ + 66.217998612457, + 14.141581783829185 + ], + [ + 66.10315592897331, + 13.946934048900731 + ], + [ + 66.217998612457, + 13.752286313972277 + ], + [ + 66.44768397942434, + 13.752286313972277 + ], + [ + 66.56252666290803, + 13.946934048900731 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.56252666290803, + 14.336229518757637 + ], + [ + 66.44768397942434, + 14.530877253686091 + ], + [ + 66.217998612457, + 14.530877253686091 + ], + [ + 66.10315592897331, + 14.336229518757637 + ], + [ + 66.217998612457, + 14.141581783829183 + ], + [ + 66.44768397942434, + 14.141581783829183 + ], + [ + 66.56252666290803, + 14.336229518757637 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.56252666290803, + 14.725524988614545 + ], + [ + 66.44768397942434, + 14.920172723542999 + ], + [ + 66.217998612457, + 14.920172723542999 + ], + [ + 66.10315592897331, + 14.725524988614545 + ], + [ + 66.217998612457, + 14.530877253686091 + ], + [ + 66.44768397942434, + 14.530877253686091 + ], + [ + 66.56252666290803, + 14.725524988614545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.56252666290803, + 15.114820458471451 + ], + [ + 66.44768397942434, + 15.309468193399905 + ], + [ + 66.217998612457, + 15.309468193399905 + ], + [ + 66.10315592897331, + 15.114820458471451 + ], + [ + 66.217998612457, + 14.920172723542997 + ], + [ + 66.44768397942434, + 14.920172723542997 + ], + [ + 66.56252666290803, + 15.114820458471451 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.56252666290803, + 15.504115928328357 + ], + [ + 66.44768397942434, + 15.69876366325681 + ], + [ + 66.217998612457, + 15.69876366325681 + ], + [ + 66.10315592897331, + 15.504115928328357 + ], + [ + 66.217998612457, + 15.309468193399903 + ], + [ + 66.44768397942434, + 15.309468193399903 + ], + [ + 66.56252666290803, + 15.504115928328357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.56252666290803, + 15.893411398185265 + ], + [ + 66.44768397942434, + 16.088059133113717 + ], + [ + 66.217998612457, + 16.088059133113717 + ], + [ + 66.10315592897331, + 15.893411398185265 + ], + [ + 66.217998612457, + 15.69876366325681 + ], + [ + 66.44768397942434, + 15.69876366325681 + ], + [ + 66.56252666290803, + 15.893411398185265 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.56252666290803, + 16.28270686804217 + ], + [ + 66.44768397942434, + 16.47735460297062 + ], + [ + 66.217998612457, + 16.47735460297062 + ], + [ + 66.10315592897331, + 16.28270686804217 + ], + [ + 66.217998612457, + 16.088059133113717 + ], + [ + 66.44768397942434, + 16.088059133113717 + ], + [ + 66.56252666290803, + 16.28270686804217 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.56252666290803, + 16.672002337899077 + ], + [ + 66.44768397942434, + 16.86665007282753 + ], + [ + 66.217998612457, + 16.86665007282753 + ], + [ + 66.10315592897331, + 16.672002337899077 + ], + [ + 66.217998612457, + 16.477354602970625 + ], + [ + 66.44768397942434, + 16.477354602970625 + ], + [ + 66.56252666290803, + 16.672002337899077 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.56252666290803, + 17.06129780775598 + ], + [ + 66.44768397942434, + 17.255945542684433 + ], + [ + 66.217998612457, + 17.255945542684433 + ], + [ + 66.10315592897331, + 17.06129780775598 + ], + [ + 66.217998612457, + 16.86665007282753 + ], + [ + 66.44768397942434, + 16.86665007282753 + ], + [ + 66.56252666290803, + 17.06129780775598 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.56252666290803, + 17.45059327761289 + ], + [ + 66.44768397942434, + 17.64524101254134 + ], + [ + 66.217998612457, + 17.64524101254134 + ], + [ + 66.10315592897331, + 17.45059327761289 + ], + [ + 66.217998612457, + 17.255945542684437 + ], + [ + 66.44768397942434, + 17.255945542684437 + ], + [ + 66.56252666290803, + 17.45059327761289 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.56252666290803, + 17.839888747469793 + ], + [ + 66.44768397942434, + 18.034536482398245 + ], + [ + 66.217998612457, + 18.034536482398245 + ], + [ + 66.10315592897331, + 17.839888747469793 + ], + [ + 66.217998612457, + 17.64524101254134 + ], + [ + 66.44768397942434, + 17.64524101254134 + ], + [ + 66.56252666290803, + 17.839888747469793 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.56252666290803, + 18.2291842173267 + ], + [ + 66.44768397942434, + 18.423831952255153 + ], + [ + 66.217998612457, + 18.423831952255153 + ], + [ + 66.10315592897331, + 18.2291842173267 + ], + [ + 66.217998612457, + 18.03453648239825 + ], + [ + 66.44768397942434, + 18.03453648239825 + ], + [ + 66.56252666290803, + 18.2291842173267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.56252666290803, + 18.61847968718361 + ], + [ + 66.44768397942434, + 18.81312742211206 + ], + [ + 66.217998612457, + 18.81312742211206 + ], + [ + 66.10315592897331, + 18.61847968718361 + ], + [ + 66.217998612457, + 18.423831952255156 + ], + [ + 66.44768397942434, + 18.423831952255156 + ], + [ + 66.56252666290803, + 18.61847968718361 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.56252666290803, + 19.007775157040513 + ], + [ + 66.44768397942434, + 19.202422891968965 + ], + [ + 66.217998612457, + 19.202422891968965 + ], + [ + 66.10315592897331, + 19.007775157040513 + ], + [ + 66.217998612457, + 18.81312742211206 + ], + [ + 66.44768397942434, + 18.81312742211206 + ], + [ + 66.56252666290803, + 19.007775157040513 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.56252666290803, + 19.39707062689742 + ], + [ + 66.44768397942434, + 19.591718361825873 + ], + [ + 66.217998612457, + 19.591718361825873 + ], + [ + 66.10315592897331, + 19.39707062689742 + ], + [ + 66.217998612457, + 19.20242289196897 + ], + [ + 66.44768397942434, + 19.20242289196897 + ], + [ + 66.56252666290803, + 19.39707062689742 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.56252666290803, + 19.78636609675433 + ], + [ + 66.44768397942434, + 19.98101383168278 + ], + [ + 66.217998612457, + 19.98101383168278 + ], + [ + 66.10315592897331, + 19.78636609675433 + ], + [ + 66.217998612457, + 19.591718361825876 + ], + [ + 66.44768397942434, + 19.591718361825876 + ], + [ + 66.56252666290803, + 19.78636609675433 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.56252666290803, + 20.175661566611232 + ], + [ + 66.44768397942434, + 20.370309301539685 + ], + [ + 66.217998612457, + 20.370309301539685 + ], + [ + 66.10315592897331, + 20.175661566611232 + ], + [ + 66.217998612457, + 19.98101383168278 + ], + [ + 66.44768397942434, + 19.98101383168278 + ], + [ + 66.56252666290803, + 20.175661566611232 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.56252666290803, + 20.564957036468137 + ], + [ + 66.44768397942434, + 20.75960477139659 + ], + [ + 66.217998612457, + 20.75960477139659 + ], + [ + 66.10315592897331, + 20.564957036468137 + ], + [ + 66.217998612457, + 20.370309301539685 + ], + [ + 66.44768397942434, + 20.370309301539685 + ], + [ + 66.56252666290803, + 20.564957036468137 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.56252666290803, + 20.954252506325044 + ], + [ + 66.44768397942434, + 21.148900241253497 + ], + [ + 66.217998612457, + 21.148900241253497 + ], + [ + 66.10315592897331, + 20.954252506325044 + ], + [ + 66.217998612457, + 20.759604771396592 + ], + [ + 66.44768397942434, + 20.759604771396592 + ], + [ + 66.56252666290803, + 20.954252506325044 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.56252666290803, + 21.343547976181952 + ], + [ + 66.44768397942434, + 21.538195711110404 + ], + [ + 66.217998612457, + 21.538195711110404 + ], + [ + 66.10315592897331, + 21.343547976181952 + ], + [ + 66.217998612457, + 21.1489002412535 + ], + [ + 66.44768397942434, + 21.1489002412535 + ], + [ + 66.56252666290803, + 21.343547976181952 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.56252666290803, + 21.732843446038856 + ], + [ + 66.44768397942434, + 21.92749118096731 + ], + [ + 66.217998612457, + 21.92749118096731 + ], + [ + 66.10315592897331, + 21.732843446038856 + ], + [ + 66.217998612457, + 21.538195711110404 + ], + [ + 66.44768397942434, + 21.538195711110404 + ], + [ + 66.56252666290803, + 21.732843446038856 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.56252666290803, + 22.122138915895764 + ], + [ + 66.44768397942434, + 22.316786650824216 + ], + [ + 66.217998612457, + 22.316786650824216 + ], + [ + 66.10315592897331, + 22.122138915895764 + ], + [ + 66.217998612457, + 21.927491180967312 + ], + [ + 66.44768397942434, + 21.927491180967312 + ], + [ + 66.56252666290803, + 22.122138915895764 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.56252666290803, + 22.511434385752672 + ], + [ + 66.44768397942434, + 22.706082120681124 + ], + [ + 66.217998612457, + 22.706082120681124 + ], + [ + 66.10315592897331, + 22.511434385752672 + ], + [ + 66.217998612457, + 22.31678665082422 + ], + [ + 66.44768397942434, + 22.31678665082422 + ], + [ + 66.56252666290803, + 22.511434385752672 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.56252666290803, + 22.900729855609576 + ], + [ + 66.44768397942434, + 23.09537759053803 + ], + [ + 66.217998612457, + 23.09537759053803 + ], + [ + 66.10315592897331, + 22.900729855609576 + ], + [ + 66.217998612457, + 22.706082120681124 + ], + [ + 66.44768397942434, + 22.706082120681124 + ], + [ + 66.56252666290803, + 22.900729855609576 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.56252666290803, + 23.290025325466484 + ], + [ + 66.44768397942434, + 23.484673060394936 + ], + [ + 66.217998612457, + 23.484673060394936 + ], + [ + 66.10315592897331, + 23.290025325466484 + ], + [ + 66.217998612457, + 23.095377590538032 + ], + [ + 66.44768397942434, + 23.095377590538032 + ], + [ + 66.56252666290803, + 23.290025325466484 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.56252666290803, + 23.67932079532339 + ], + [ + 66.44768397942434, + 23.873968530251844 + ], + [ + 66.217998612457, + 23.873968530251844 + ], + [ + 66.10315592897331, + 23.67932079532339 + ], + [ + 66.217998612457, + 23.48467306039494 + ], + [ + 66.44768397942434, + 23.48467306039494 + ], + [ + 66.56252666290803, + 23.67932079532339 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.56252666290803, + 24.068616265180296 + ], + [ + 66.44768397942434, + 24.263264000108748 + ], + [ + 66.217998612457, + 24.263264000108748 + ], + [ + 66.10315592897331, + 24.068616265180296 + ], + [ + 66.217998612457, + 23.873968530251844 + ], + [ + 66.44768397942434, + 23.873968530251844 + ], + [ + 66.56252666290803, + 24.068616265180296 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.56252666290803, + 24.4579117350372 + ], + [ + 66.44768397942434, + 24.652559469965652 + ], + [ + 66.217998612457, + 24.652559469965652 + ], + [ + 66.10315592897331, + 24.4579117350372 + ], + [ + 66.217998612457, + 24.263264000108748 + ], + [ + 66.44768397942434, + 24.263264000108748 + ], + [ + 66.56252666290803, + 24.4579117350372 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.56252666290803, + 24.847207204894108 + ], + [ + 66.44768397942434, + 25.04185493982256 + ], + [ + 66.217998612457, + 25.04185493982256 + ], + [ + 66.10315592897331, + 24.847207204894108 + ], + [ + 66.217998612457, + 24.652559469965656 + ], + [ + 66.44768397942434, + 24.652559469965656 + ], + [ + 66.56252666290803, + 24.847207204894108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.56252666290803, + 25.236502674751016 + ], + [ + 66.44768397942434, + 25.431150409679468 + ], + [ + 66.217998612457, + 25.431150409679468 + ], + [ + 66.10315592897331, + 25.236502674751016 + ], + [ + 66.217998612457, + 25.041854939822564 + ], + [ + 66.44768397942434, + 25.041854939822564 + ], + [ + 66.56252666290803, + 25.236502674751016 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.56252666290803, + 25.62579814460792 + ], + [ + 66.44768397942434, + 25.820445879536372 + ], + [ + 66.217998612457, + 25.820445879536372 + ], + [ + 66.10315592897331, + 25.62579814460792 + ], + [ + 66.217998612457, + 25.431150409679468 + ], + [ + 66.44768397942434, + 25.431150409679468 + ], + [ + 66.56252666290803, + 25.62579814460792 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.56252666290803, + 26.015093614464828 + ], + [ + 66.44768397942434, + 26.20974134939328 + ], + [ + 66.217998612457, + 26.20974134939328 + ], + [ + 66.10315592897331, + 26.015093614464828 + ], + [ + 66.217998612457, + 25.820445879536376 + ], + [ + 66.44768397942434, + 25.820445879536376 + ], + [ + 66.56252666290803, + 26.015093614464828 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.56252666290803, + 26.404389084321735 + ], + [ + 66.44768397942434, + 26.599036819250188 + ], + [ + 66.217998612457, + 26.599036819250188 + ], + [ + 66.10315592897331, + 26.404389084321735 + ], + [ + 66.217998612457, + 26.209741349393283 + ], + [ + 66.44768397942434, + 26.209741349393283 + ], + [ + 66.56252666290803, + 26.404389084321735 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.56252666290803, + 26.79368455417864 + ], + [ + 66.44768397942434, + 26.988332289107092 + ], + [ + 66.217998612457, + 26.988332289107092 + ], + [ + 66.10315592897331, + 26.79368455417864 + ], + [ + 66.217998612457, + 26.599036819250188 + ], + [ + 66.44768397942434, + 26.599036819250188 + ], + [ + 66.56252666290803, + 26.79368455417864 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.56252666290803, + 27.182980024035547 + ], + [ + 66.44768397942434, + 27.377627758964 + ], + [ + 66.217998612457, + 27.377627758964 + ], + [ + 66.10315592897331, + 27.182980024035547 + ], + [ + 66.217998612457, + 26.988332289107095 + ], + [ + 66.44768397942434, + 26.988332289107095 + ], + [ + 66.56252666290803, + 27.182980024035547 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.56252666290803, + 27.572275493892455 + ], + [ + 66.44768397942434, + 27.766923228820907 + ], + [ + 66.217998612457, + 27.766923228820907 + ], + [ + 66.10315592897331, + 27.572275493892455 + ], + [ + 66.217998612457, + 27.377627758964003 + ], + [ + 66.44768397942434, + 27.377627758964003 + ], + [ + 66.56252666290803, + 27.572275493892455 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.56252666290803, + 27.96157096374936 + ], + [ + 66.44768397942434, + 28.15621869867781 + ], + [ + 66.217998612457, + 28.15621869867781 + ], + [ + 66.10315592897331, + 27.96157096374936 + ], + [ + 66.217998612457, + 27.766923228820907 + ], + [ + 66.44768397942434, + 27.766923228820907 + ], + [ + 66.56252666290803, + 27.96157096374936 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.56252666290803, + 28.350866433606267 + ], + [ + 66.44768397942434, + 28.54551416853472 + ], + [ + 66.217998612457, + 28.54551416853472 + ], + [ + 66.10315592897331, + 28.350866433606267 + ], + [ + 66.217998612457, + 28.156218698677815 + ], + [ + 66.44768397942434, + 28.156218698677815 + ], + [ + 66.56252666290803, + 28.350866433606267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.56252666290803, + 28.74016190346317 + ], + [ + 66.44768397942434, + 28.934809638391624 + ], + [ + 66.217998612457, + 28.934809638391624 + ], + [ + 66.10315592897331, + 28.74016190346317 + ], + [ + 66.217998612457, + 28.54551416853472 + ], + [ + 66.44768397942434, + 28.54551416853472 + ], + [ + 66.56252666290803, + 28.74016190346317 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.56252666290803, + 29.12945737332008 + ], + [ + 66.44768397942434, + 29.32410510824853 + ], + [ + 66.217998612457, + 29.32410510824853 + ], + [ + 66.10315592897331, + 29.12945737332008 + ], + [ + 66.217998612457, + 28.934809638391627 + ], + [ + 66.44768397942434, + 28.934809638391627 + ], + [ + 66.56252666290803, + 29.12945737332008 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.56252666290803, + 29.518752843176983 + ], + [ + 66.44768397942434, + 29.713400578105436 + ], + [ + 66.217998612457, + 29.713400578105436 + ], + [ + 66.10315592897331, + 29.518752843176983 + ], + [ + 66.217998612457, + 29.32410510824853 + ], + [ + 66.44768397942434, + 29.32410510824853 + ], + [ + 66.56252666290803, + 29.518752843176983 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.56252666290803, + 29.90804831303389 + ], + [ + 66.44768397942434, + 30.102696047962343 + ], + [ + 66.217998612457, + 30.102696047962343 + ], + [ + 66.10315592897331, + 29.90804831303389 + ], + [ + 66.217998612457, + 29.71340057810544 + ], + [ + 66.44768397942434, + 29.71340057810544 + ], + [ + 66.56252666290803, + 29.90804831303389 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.56252666290803, + 30.297343782890795 + ], + [ + 66.44768397942434, + 30.491991517819248 + ], + [ + 66.217998612457, + 30.491991517819248 + ], + [ + 66.10315592897331, + 30.297343782890795 + ], + [ + 66.217998612457, + 30.102696047962343 + ], + [ + 66.44768397942434, + 30.102696047962343 + ], + [ + 66.56252666290803, + 30.297343782890795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.56252666290803, + 30.686639252747703 + ], + [ + 66.44768397942434, + 30.881286987676155 + ], + [ + 66.217998612457, + 30.881286987676155 + ], + [ + 66.10315592897331, + 30.686639252747703 + ], + [ + 66.217998612457, + 30.49199151781925 + ], + [ + 66.44768397942434, + 30.49199151781925 + ], + [ + 66.56252666290803, + 30.686639252747703 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.56252666290803, + 31.07593472260461 + ], + [ + 66.44768397942434, + 31.270582457533063 + ], + [ + 66.217998612457, + 31.270582457533063 + ], + [ + 66.10315592897331, + 31.07593472260461 + ], + [ + 66.217998612457, + 30.88128698767616 + ], + [ + 66.44768397942434, + 30.88128698767616 + ], + [ + 66.56252666290803, + 31.07593472260461 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.56252666290803, + 31.465230192461515 + ], + [ + 66.44768397942434, + 31.659877927389967 + ], + [ + 66.217998612457, + 31.659877927389967 + ], + [ + 66.10315592897331, + 31.465230192461515 + ], + [ + 66.217998612457, + 31.270582457533063 + ], + [ + 66.44768397942434, + 31.270582457533063 + ], + [ + 66.56252666290803, + 31.465230192461515 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.56252666290803, + 31.854525662318423 + ], + [ + 66.44768397942434, + 32.049173397246875 + ], + [ + 66.217998612457, + 32.049173397246875 + ], + [ + 66.10315592897331, + 31.854525662318423 + ], + [ + 66.217998612457, + 31.65987792738997 + ], + [ + 66.44768397942434, + 31.65987792738997 + ], + [ + 66.56252666290803, + 31.854525662318423 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.56252666290803, + 32.24382113217533 + ], + [ + 66.44768397942434, + 32.43846886710378 + ], + [ + 66.217998612457, + 32.43846886710378 + ], + [ + 66.10315592897331, + 32.24382113217533 + ], + [ + 66.217998612457, + 32.049173397246875 + ], + [ + 66.44768397942434, + 32.049173397246875 + ], + [ + 66.56252666290803, + 32.24382113217533 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.56252666290803, + 32.63311660203224 + ], + [ + 66.44768397942434, + 32.82776433696069 + ], + [ + 66.217998612457, + 32.82776433696069 + ], + [ + 66.10315592897331, + 32.63311660203224 + ], + [ + 66.217998612457, + 32.438468867103786 + ], + [ + 66.44768397942434, + 32.438468867103786 + ], + [ + 66.56252666290803, + 32.63311660203224 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.56252666290803, + 33.02241207188914 + ], + [ + 66.44768397942434, + 33.217059806817595 + ], + [ + 66.217998612457, + 33.217059806817595 + ], + [ + 66.10315592897331, + 33.02241207188914 + ], + [ + 66.217998612457, + 32.82776433696069 + ], + [ + 66.44768397942434, + 32.82776433696069 + ], + [ + 66.56252666290803, + 33.02241207188914 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.56252666290803, + 33.41170754174605 + ], + [ + 66.44768397942434, + 33.6063552766745 + ], + [ + 66.217998612457, + 33.6063552766745 + ], + [ + 66.10315592897331, + 33.41170754174605 + ], + [ + 66.217998612457, + 33.217059806817595 + ], + [ + 66.44768397942434, + 33.217059806817595 + ], + [ + 66.56252666290803, + 33.41170754174605 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.56252666290803, + 33.80100301160295 + ], + [ + 66.44768397942434, + 33.9956507465314 + ], + [ + 66.217998612457, + 33.9956507465314 + ], + [ + 66.10315592897331, + 33.80100301160295 + ], + [ + 66.217998612457, + 33.6063552766745 + ], + [ + 66.44768397942434, + 33.6063552766745 + ], + [ + 66.56252666290803, + 33.80100301160295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.56252666290803, + 34.190298481459855 + ], + [ + 66.44768397942434, + 34.38494621638831 + ], + [ + 66.217998612457, + 34.38494621638831 + ], + [ + 66.10315592897331, + 34.190298481459855 + ], + [ + 66.217998612457, + 33.9956507465314 + ], + [ + 66.44768397942434, + 33.9956507465314 + ], + [ + 66.56252666290803, + 34.190298481459855 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.56252666290803, + 34.57959395131677 + ], + [ + 66.44768397942434, + 34.77424168624522 + ], + [ + 66.217998612457, + 34.77424168624522 + ], + [ + 66.10315592897331, + 34.57959395131677 + ], + [ + 66.217998612457, + 34.384946216388315 + ], + [ + 66.44768397942434, + 34.384946216388315 + ], + [ + 66.56252666290803, + 34.57959395131677 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.56252666290803, + 34.96888942117368 + ], + [ + 66.44768397942434, + 35.16353715610213 + ], + [ + 66.217998612457, + 35.16353715610213 + ], + [ + 66.10315592897331, + 34.96888942117368 + ], + [ + 66.217998612457, + 34.774241686245226 + ], + [ + 66.44768397942434, + 34.774241686245226 + ], + [ + 66.56252666290803, + 34.96888942117368 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.56252666290803, + 35.35818489103058 + ], + [ + 66.44768397942434, + 35.552832625959034 + ], + [ + 66.217998612457, + 35.552832625959034 + ], + [ + 66.10315592897331, + 35.35818489103058 + ], + [ + 66.217998612457, + 35.16353715610213 + ], + [ + 66.44768397942434, + 35.16353715610213 + ], + [ + 66.56252666290803, + 35.35818489103058 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.56252666290803, + 35.74748036088749 + ], + [ + 66.44768397942434, + 35.94212809581594 + ], + [ + 66.217998612457, + 35.94212809581594 + ], + [ + 66.10315592897331, + 35.74748036088749 + ], + [ + 66.217998612457, + 35.552832625959034 + ], + [ + 66.44768397942434, + 35.552832625959034 + ], + [ + 66.56252666290803, + 35.74748036088749 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.56252666290803, + 36.13677583074439 + ], + [ + 66.44768397942434, + 36.33142356567284 + ], + [ + 66.217998612457, + 36.33142356567284 + ], + [ + 66.10315592897331, + 36.13677583074439 + ], + [ + 66.217998612457, + 35.94212809581594 + ], + [ + 66.44768397942434, + 35.94212809581594 + ], + [ + 66.56252666290803, + 36.13677583074439 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.56252666290803, + 36.526071300601295 + ], + [ + 66.44768397942434, + 36.72071903552975 + ], + [ + 66.217998612457, + 36.72071903552975 + ], + [ + 66.10315592897331, + 36.526071300601295 + ], + [ + 66.217998612457, + 36.33142356567284 + ], + [ + 66.44768397942434, + 36.33142356567284 + ], + [ + 66.56252666290803, + 36.526071300601295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.56252666290803, + 36.915366770458206 + ], + [ + 66.44768397942434, + 37.11001450538666 + ], + [ + 66.217998612457, + 37.11001450538666 + ], + [ + 66.10315592897331, + 36.915366770458206 + ], + [ + 66.217998612457, + 36.720719035529754 + ], + [ + 66.44768397942434, + 36.720719035529754 + ], + [ + 66.56252666290803, + 36.915366770458206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.56252666290803, + 37.30466224031511 + ], + [ + 66.44768397942434, + 37.49930997524356 + ], + [ + 66.217998612457, + 37.49930997524356 + ], + [ + 66.10315592897331, + 37.30466224031511 + ], + [ + 66.217998612457, + 37.11001450538666 + ], + [ + 66.44768397942434, + 37.11001450538666 + ], + [ + 66.56252666290803, + 37.30466224031511 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.56252666290803, + 37.69395771017202 + ], + [ + 66.44768397942434, + 37.888605445100474 + ], + [ + 66.217998612457, + 37.888605445100474 + ], + [ + 66.10315592897331, + 37.69395771017202 + ], + [ + 66.217998612457, + 37.49930997524357 + ], + [ + 66.44768397942434, + 37.49930997524357 + ], + [ + 66.56252666290803, + 37.69395771017202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.56252666290803, + 38.083253180028926 + ], + [ + 66.44768397942434, + 38.27790091495738 + ], + [ + 66.217998612457, + 38.27790091495738 + ], + [ + 66.10315592897331, + 38.083253180028926 + ], + [ + 66.217998612457, + 37.888605445100474 + ], + [ + 66.44768397942434, + 37.888605445100474 + ], + [ + 66.56252666290803, + 38.083253180028926 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.56252666290803, + 38.47254864988583 + ], + [ + 66.44768397942434, + 38.66719638481428 + ], + [ + 66.217998612457, + 38.66719638481428 + ], + [ + 66.10315592897331, + 38.47254864988583 + ], + [ + 66.217998612457, + 38.27790091495738 + ], + [ + 66.44768397942434, + 38.27790091495738 + ], + [ + 66.56252666290803, + 38.47254864988583 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.56252666290803, + 38.861844119742734 + ], + [ + 66.44768397942434, + 39.05649185467119 + ], + [ + 66.217998612457, + 39.05649185467119 + ], + [ + 66.10315592897331, + 38.861844119742734 + ], + [ + 66.217998612457, + 38.66719638481428 + ], + [ + 66.44768397942434, + 38.66719638481428 + ], + [ + 66.56252666290803, + 38.861844119742734 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.56252666290803, + 39.25113958959964 + ], + [ + 66.44768397942434, + 39.44578732452809 + ], + [ + 66.217998612457, + 39.44578732452809 + ], + [ + 66.10315592897331, + 39.25113958959964 + ], + [ + 66.217998612457, + 39.05649185467119 + ], + [ + 66.44768397942434, + 39.05649185467119 + ], + [ + 66.56252666290803, + 39.25113958959964 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.56252666290803, + 39.64043505945655 + ], + [ + 66.44768397942434, + 39.835082794385 + ], + [ + 66.217998612457, + 39.835082794385 + ], + [ + 66.10315592897331, + 39.64043505945655 + ], + [ + 66.217998612457, + 39.4457873245281 + ], + [ + 66.44768397942434, + 39.4457873245281 + ], + [ + 66.56252666290803, + 39.64043505945655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.56252666290803, + 40.029730529313454 + ], + [ + 66.44768397942434, + 40.224378264241906 + ], + [ + 66.217998612457, + 40.224378264241906 + ], + [ + 66.10315592897331, + 40.029730529313454 + ], + [ + 66.217998612457, + 39.835082794385 + ], + [ + 66.44768397942434, + 39.835082794385 + ], + [ + 66.56252666290803, + 40.029730529313454 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.56252666290803, + 40.419025999170366 + ], + [ + 66.44768397942434, + 40.61367373409882 + ], + [ + 66.217998612457, + 40.61367373409882 + ], + [ + 66.10315592897331, + 40.419025999170366 + ], + [ + 66.217998612457, + 40.22437826424191 + ], + [ + 66.44768397942434, + 40.22437826424191 + ], + [ + 66.56252666290803, + 40.419025999170366 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.56252666290803, + 40.80832146902727 + ], + [ + 66.44768397942434, + 41.00296920395572 + ], + [ + 66.217998612457, + 41.00296920395572 + ], + [ + 66.10315592897331, + 40.80832146902727 + ], + [ + 66.217998612457, + 40.61367373409882 + ], + [ + 66.44768397942434, + 40.61367373409882 + ], + [ + 66.56252666290803, + 40.80832146902727 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.56252666290803, + 41.197616938884174 + ], + [ + 66.44768397942434, + 41.392264673812626 + ], + [ + 66.217998612457, + 41.392264673812626 + ], + [ + 66.10315592897331, + 41.197616938884174 + ], + [ + 66.217998612457, + 41.00296920395572 + ], + [ + 66.44768397942434, + 41.00296920395572 + ], + [ + 66.56252666290803, + 41.197616938884174 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.56252666290803, + 41.58691240874108 + ], + [ + 66.44768397942434, + 41.78156014366953 + ], + [ + 66.217998612457, + 41.78156014366953 + ], + [ + 66.10315592897331, + 41.58691240874108 + ], + [ + 66.217998612457, + 41.392264673812626 + ], + [ + 66.44768397942434, + 41.392264673812626 + ], + [ + 66.56252666290803, + 41.58691240874108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.56252666290803, + 41.97620787859798 + ], + [ + 66.44768397942434, + 42.170855613526435 + ], + [ + 66.217998612457, + 42.170855613526435 + ], + [ + 66.10315592897331, + 41.97620787859798 + ], + [ + 66.217998612457, + 41.78156014366953 + ], + [ + 66.44768397942434, + 41.78156014366953 + ], + [ + 66.56252666290803, + 41.97620787859798 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.56252666290803, + 42.365503348454894 + ], + [ + 66.44768397942434, + 42.560151083383346 + ], + [ + 66.217998612457, + 42.560151083383346 + ], + [ + 66.10315592897331, + 42.365503348454894 + ], + [ + 66.217998612457, + 42.17085561352644 + ], + [ + 66.44768397942434, + 42.17085561352644 + ], + [ + 66.56252666290803, + 42.365503348454894 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.56252666290803, + 42.754798818311805 + ], + [ + 66.44768397942434, + 42.94944655324026 + ], + [ + 66.217998612457, + 42.94944655324026 + ], + [ + 66.10315592897331, + 42.754798818311805 + ], + [ + 66.217998612457, + 42.56015108338335 + ], + [ + 66.44768397942434, + 42.56015108338335 + ], + [ + 66.56252666290803, + 42.754798818311805 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.56252666290803, + 43.14409428816871 + ], + [ + 66.44768397942434, + 43.33874202309716 + ], + [ + 66.217998612457, + 43.33874202309716 + ], + [ + 66.10315592897331, + 43.14409428816871 + ], + [ + 66.217998612457, + 42.94944655324026 + ], + [ + 66.44768397942434, + 42.94944655324026 + ], + [ + 66.56252666290803, + 43.14409428816871 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.56252666290803, + 43.53338975802561 + ], + [ + 66.44768397942434, + 43.728037492954066 + ], + [ + 66.217998612457, + 43.728037492954066 + ], + [ + 66.10315592897331, + 43.53338975802561 + ], + [ + 66.217998612457, + 43.33874202309716 + ], + [ + 66.44768397942434, + 43.33874202309716 + ], + [ + 66.56252666290803, + 43.53338975802561 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.56252666290803, + 43.92268522788252 + ], + [ + 66.44768397942434, + 44.11733296281097 + ], + [ + 66.217998612457, + 44.11733296281097 + ], + [ + 66.10315592897331, + 43.92268522788252 + ], + [ + 66.217998612457, + 43.728037492954066 + ], + [ + 66.44768397942434, + 43.728037492954066 + ], + [ + 66.56252666290803, + 43.92268522788252 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.56252666290803, + 44.31198069773942 + ], + [ + 66.44768397942434, + 44.506628432667874 + ], + [ + 66.217998612457, + 44.506628432667874 + ], + [ + 66.10315592897331, + 44.31198069773942 + ], + [ + 66.217998612457, + 44.11733296281097 + ], + [ + 66.44768397942434, + 44.11733296281097 + ], + [ + 66.56252666290803, + 44.31198069773942 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.56252666290803, + 44.701276167596326 + ], + [ + 66.44768397942434, + 44.89592390252478 + ], + [ + 66.217998612457, + 44.89592390252478 + ], + [ + 66.10315592897331, + 44.701276167596326 + ], + [ + 66.217998612457, + 44.506628432667874 + ], + [ + 66.44768397942434, + 44.506628432667874 + ], + [ + 66.56252666290803, + 44.701276167596326 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.56252666290803, + 45.090571637453245 + ], + [ + 66.44768397942434, + 45.2852193723817 + ], + [ + 66.217998612457, + 45.2852193723817 + ], + [ + 66.10315592897331, + 45.090571637453245 + ], + [ + 66.217998612457, + 44.89592390252479 + ], + [ + 66.44768397942434, + 44.89592390252479 + ], + [ + 66.56252666290803, + 45.090571637453245 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.56252666290803, + 45.47986710731015 + ], + [ + 66.44768397942434, + 45.6745148422386 + ], + [ + 66.217998612457, + 45.6745148422386 + ], + [ + 66.10315592897331, + 45.47986710731015 + ], + [ + 66.217998612457, + 45.2852193723817 + ], + [ + 66.44768397942434, + 45.2852193723817 + ], + [ + 66.56252666290803, + 45.47986710731015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.56252666290803, + 45.86916257716705 + ], + [ + 66.44768397942434, + 46.063810312095505 + ], + [ + 66.217998612457, + 46.063810312095505 + ], + [ + 66.10315592897331, + 45.86916257716705 + ], + [ + 66.217998612457, + 45.6745148422386 + ], + [ + 66.44768397942434, + 45.6745148422386 + ], + [ + 66.56252666290803, + 45.86916257716705 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.56252666290803, + 46.25845804702396 + ], + [ + 66.44768397942434, + 46.45310578195241 + ], + [ + 66.217998612457, + 46.45310578195241 + ], + [ + 66.10315592897331, + 46.25845804702396 + ], + [ + 66.217998612457, + 46.063810312095505 + ], + [ + 66.44768397942434, + 46.063810312095505 + ], + [ + 66.56252666290803, + 46.25845804702396 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.56252666290803, + 46.64775351688086 + ], + [ + 66.44768397942434, + 46.842401251809314 + ], + [ + 66.217998612457, + 46.842401251809314 + ], + [ + 66.10315592897331, + 46.64775351688086 + ], + [ + 66.217998612457, + 46.45310578195241 + ], + [ + 66.44768397942434, + 46.45310578195241 + ], + [ + 66.56252666290803, + 46.64775351688086 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.56252666290803, + 47.037048986737766 + ], + [ + 66.44768397942434, + 47.23169672166622 + ], + [ + 66.217998612457, + 47.23169672166622 + ], + [ + 66.10315592897331, + 47.037048986737766 + ], + [ + 66.217998612457, + 46.842401251809314 + ], + [ + 66.44768397942434, + 46.842401251809314 + ], + [ + 66.56252666290803, + 47.037048986737766 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.56252666290803, + 47.42634445659467 + ], + [ + 66.44768397942434, + 47.62099219152312 + ], + [ + 66.217998612457, + 47.62099219152312 + ], + [ + 66.10315592897331, + 47.42634445659467 + ], + [ + 66.217998612457, + 47.23169672166622 + ], + [ + 66.44768397942434, + 47.23169672166622 + ], + [ + 66.56252666290803, + 47.42634445659467 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.56252666290803, + 47.81563992645159 + ], + [ + 66.44768397942434, + 48.01028766138004 + ], + [ + 66.217998612457, + 48.01028766138004 + ], + [ + 66.10315592897331, + 47.81563992645159 + ], + [ + 66.217998612457, + 47.620992191523136 + ], + [ + 66.44768397942434, + 47.620992191523136 + ], + [ + 66.56252666290803, + 47.81563992645159 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.90705471335906, + 11.805808964687746 + ], + [ + 66.79221202987537, + 12.0004566996162 + ], + [ + 66.56252666290803, + 12.0004566996162 + ], + [ + 66.44768397942434, + 11.805808964687746 + ], + [ + 66.56252666290803, + 11.611161229759292 + ], + [ + 66.79221202987537, + 11.611161229759292 + ], + [ + 66.90705471335906, + 11.805808964687746 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.90705471335906, + 12.195104434544652 + ], + [ + 66.79221202987537, + 12.389752169473105 + ], + [ + 66.56252666290803, + 12.389752169473105 + ], + [ + 66.44768397942434, + 12.195104434544652 + ], + [ + 66.56252666290803, + 12.000456699616198 + ], + [ + 66.79221202987537, + 12.000456699616198 + ], + [ + 66.90705471335906, + 12.195104434544652 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.90705471335906, + 12.58439990440156 + ], + [ + 66.79221202987537, + 12.779047639330013 + ], + [ + 66.56252666290803, + 12.779047639330013 + ], + [ + 66.44768397942434, + 12.58439990440156 + ], + [ + 66.56252666290803, + 12.389752169473105 + ], + [ + 66.79221202987537, + 12.389752169473105 + ], + [ + 66.90705471335906, + 12.58439990440156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.90705471335906, + 12.973695374258465 + ], + [ + 66.79221202987537, + 13.16834310918692 + ], + [ + 66.56252666290803, + 13.16834310918692 + ], + [ + 66.44768397942434, + 12.973695374258465 + ], + [ + 66.56252666290803, + 12.779047639330011 + ], + [ + 66.79221202987537, + 12.779047639330011 + ], + [ + 66.90705471335906, + 12.973695374258465 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.90705471335906, + 13.362990844115371 + ], + [ + 66.79221202987537, + 13.557638579043825 + ], + [ + 66.56252666290803, + 13.557638579043825 + ], + [ + 66.44768397942434, + 13.362990844115371 + ], + [ + 66.56252666290803, + 13.168343109186917 + ], + [ + 66.79221202987537, + 13.168343109186917 + ], + [ + 66.90705471335906, + 13.362990844115371 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.90705471335906, + 13.752286313972277 + ], + [ + 66.79221202987537, + 13.946934048900731 + ], + [ + 66.56252666290803, + 13.946934048900731 + ], + [ + 66.44768397942434, + 13.752286313972277 + ], + [ + 66.56252666290803, + 13.557638579043823 + ], + [ + 66.79221202987537, + 13.557638579043823 + ], + [ + 66.90705471335906, + 13.752286313972277 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.90705471335906, + 14.141581783829183 + ], + [ + 66.79221202987537, + 14.336229518757637 + ], + [ + 66.56252666290803, + 14.336229518757637 + ], + [ + 66.44768397942434, + 14.141581783829183 + ], + [ + 66.56252666290803, + 13.94693404890073 + ], + [ + 66.79221202987537, + 13.94693404890073 + ], + [ + 66.90705471335906, + 14.141581783829183 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.90705471335906, + 14.530877253686091 + ], + [ + 66.79221202987537, + 14.725524988614545 + ], + [ + 66.56252666290803, + 14.725524988614545 + ], + [ + 66.44768397942434, + 14.530877253686091 + ], + [ + 66.56252666290803, + 14.336229518757637 + ], + [ + 66.79221202987537, + 14.336229518757637 + ], + [ + 66.90705471335906, + 14.530877253686091 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.90705471335906, + 14.920172723542997 + ], + [ + 66.79221202987537, + 15.114820458471451 + ], + [ + 66.56252666290803, + 15.114820458471451 + ], + [ + 66.44768397942434, + 14.920172723542997 + ], + [ + 66.56252666290803, + 14.725524988614543 + ], + [ + 66.79221202987537, + 14.725524988614543 + ], + [ + 66.90705471335906, + 14.920172723542997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.90705471335906, + 15.309468193399903 + ], + [ + 66.79221202987537, + 15.504115928328357 + ], + [ + 66.56252666290803, + 15.504115928328357 + ], + [ + 66.44768397942434, + 15.309468193399903 + ], + [ + 66.56252666290803, + 15.11482045847145 + ], + [ + 66.79221202987537, + 15.11482045847145 + ], + [ + 66.90705471335906, + 15.309468193399903 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.90705471335906, + 15.69876366325681 + ], + [ + 66.79221202987537, + 15.893411398185265 + ], + [ + 66.56252666290803, + 15.893411398185265 + ], + [ + 66.44768397942434, + 15.69876366325681 + ], + [ + 66.56252666290803, + 15.504115928328357 + ], + [ + 66.79221202987537, + 15.504115928328357 + ], + [ + 66.90705471335906, + 15.69876366325681 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.90705471335906, + 16.088059133113717 + ], + [ + 66.79221202987537, + 16.28270686804217 + ], + [ + 66.56252666290803, + 16.28270686804217 + ], + [ + 66.44768397942434, + 16.088059133113717 + ], + [ + 66.56252666290803, + 15.893411398185263 + ], + [ + 66.79221202987537, + 15.893411398185263 + ], + [ + 66.90705471335906, + 16.088059133113717 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.90705471335906, + 16.477354602970625 + ], + [ + 66.79221202987537, + 16.672002337899077 + ], + [ + 66.56252666290803, + 16.672002337899077 + ], + [ + 66.44768397942434, + 16.477354602970625 + ], + [ + 66.56252666290803, + 16.282706868042172 + ], + [ + 66.79221202987537, + 16.282706868042172 + ], + [ + 66.90705471335906, + 16.477354602970625 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.90705471335906, + 16.86665007282753 + ], + [ + 66.79221202987537, + 17.06129780775598 + ], + [ + 66.56252666290803, + 17.06129780775598 + ], + [ + 66.44768397942434, + 16.86665007282753 + ], + [ + 66.56252666290803, + 16.672002337899077 + ], + [ + 66.79221202987537, + 16.672002337899077 + ], + [ + 66.90705471335906, + 16.86665007282753 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.90705471335906, + 17.255945542684437 + ], + [ + 66.79221202987537, + 17.45059327761289 + ], + [ + 66.56252666290803, + 17.45059327761289 + ], + [ + 66.44768397942434, + 17.255945542684437 + ], + [ + 66.56252666290803, + 17.061297807755984 + ], + [ + 66.79221202987537, + 17.061297807755984 + ], + [ + 66.90705471335906, + 17.255945542684437 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.90705471335906, + 17.64524101254134 + ], + [ + 66.79221202987537, + 17.839888747469793 + ], + [ + 66.56252666290803, + 17.839888747469793 + ], + [ + 66.44768397942434, + 17.64524101254134 + ], + [ + 66.56252666290803, + 17.45059327761289 + ], + [ + 66.79221202987537, + 17.45059327761289 + ], + [ + 66.90705471335906, + 17.64524101254134 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.90705471335906, + 18.03453648239825 + ], + [ + 66.79221202987537, + 18.2291842173267 + ], + [ + 66.56252666290803, + 18.2291842173267 + ], + [ + 66.44768397942434, + 18.03453648239825 + ], + [ + 66.56252666290803, + 17.839888747469796 + ], + [ + 66.79221202987537, + 17.839888747469796 + ], + [ + 66.90705471335906, + 18.03453648239825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.90705471335906, + 18.423831952255156 + ], + [ + 66.79221202987537, + 18.61847968718361 + ], + [ + 66.56252666290803, + 18.61847968718361 + ], + [ + 66.44768397942434, + 18.423831952255156 + ], + [ + 66.56252666290803, + 18.229184217326704 + ], + [ + 66.79221202987537, + 18.229184217326704 + ], + [ + 66.90705471335906, + 18.423831952255156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.90705471335906, + 18.81312742211206 + ], + [ + 66.79221202987537, + 19.007775157040513 + ], + [ + 66.56252666290803, + 19.007775157040513 + ], + [ + 66.44768397942434, + 18.81312742211206 + ], + [ + 66.56252666290803, + 18.61847968718361 + ], + [ + 66.79221202987537, + 18.61847968718361 + ], + [ + 66.90705471335906, + 18.81312742211206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.90705471335906, + 19.20242289196897 + ], + [ + 66.79221202987537, + 19.39707062689742 + ], + [ + 66.56252666290803, + 19.39707062689742 + ], + [ + 66.44768397942434, + 19.20242289196897 + ], + [ + 66.56252666290803, + 19.007775157040516 + ], + [ + 66.79221202987537, + 19.007775157040516 + ], + [ + 66.90705471335906, + 19.20242289196897 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.90705471335906, + 19.591718361825876 + ], + [ + 66.79221202987537, + 19.78636609675433 + ], + [ + 66.56252666290803, + 19.78636609675433 + ], + [ + 66.44768397942434, + 19.591718361825876 + ], + [ + 66.56252666290803, + 19.397070626897424 + ], + [ + 66.79221202987537, + 19.397070626897424 + ], + [ + 66.90705471335906, + 19.591718361825876 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.90705471335906, + 19.98101383168278 + ], + [ + 66.79221202987537, + 20.175661566611232 + ], + [ + 66.56252666290803, + 20.175661566611232 + ], + [ + 66.44768397942434, + 19.98101383168278 + ], + [ + 66.56252666290803, + 19.78636609675433 + ], + [ + 66.79221202987537, + 19.78636609675433 + ], + [ + 66.90705471335906, + 19.98101383168278 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.90705471335906, + 20.370309301539685 + ], + [ + 66.79221202987537, + 20.564957036468137 + ], + [ + 66.56252666290803, + 20.564957036468137 + ], + [ + 66.44768397942434, + 20.370309301539685 + ], + [ + 66.56252666290803, + 20.175661566611232 + ], + [ + 66.79221202987537, + 20.175661566611232 + ], + [ + 66.90705471335906, + 20.370309301539685 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.90705471335906, + 20.759604771396592 + ], + [ + 66.79221202987537, + 20.954252506325044 + ], + [ + 66.56252666290803, + 20.954252506325044 + ], + [ + 66.44768397942434, + 20.759604771396592 + ], + [ + 66.56252666290803, + 20.56495703646814 + ], + [ + 66.79221202987537, + 20.56495703646814 + ], + [ + 66.90705471335906, + 20.759604771396592 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.90705471335906, + 21.1489002412535 + ], + [ + 66.79221202987537, + 21.343547976181952 + ], + [ + 66.56252666290803, + 21.343547976181952 + ], + [ + 66.44768397942434, + 21.1489002412535 + ], + [ + 66.56252666290803, + 20.954252506325048 + ], + [ + 66.79221202987537, + 20.954252506325048 + ], + [ + 66.90705471335906, + 21.1489002412535 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.90705471335906, + 21.538195711110404 + ], + [ + 66.79221202987537, + 21.732843446038856 + ], + [ + 66.56252666290803, + 21.732843446038856 + ], + [ + 66.44768397942434, + 21.538195711110404 + ], + [ + 66.56252666290803, + 21.343547976181952 + ], + [ + 66.79221202987537, + 21.343547976181952 + ], + [ + 66.90705471335906, + 21.538195711110404 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.90705471335906, + 21.927491180967312 + ], + [ + 66.79221202987537, + 22.122138915895764 + ], + [ + 66.56252666290803, + 22.122138915895764 + ], + [ + 66.44768397942434, + 21.927491180967312 + ], + [ + 66.56252666290803, + 21.73284344603886 + ], + [ + 66.79221202987537, + 21.73284344603886 + ], + [ + 66.90705471335906, + 21.927491180967312 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.90705471335906, + 22.31678665082422 + ], + [ + 66.79221202987537, + 22.511434385752672 + ], + [ + 66.56252666290803, + 22.511434385752672 + ], + [ + 66.44768397942434, + 22.31678665082422 + ], + [ + 66.56252666290803, + 22.122138915895768 + ], + [ + 66.79221202987537, + 22.122138915895768 + ], + [ + 66.90705471335906, + 22.31678665082422 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.90705471335906, + 22.706082120681124 + ], + [ + 66.79221202987537, + 22.900729855609576 + ], + [ + 66.56252666290803, + 22.900729855609576 + ], + [ + 66.44768397942434, + 22.706082120681124 + ], + [ + 66.56252666290803, + 22.511434385752672 + ], + [ + 66.79221202987537, + 22.511434385752672 + ], + [ + 66.90705471335906, + 22.706082120681124 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.90705471335906, + 23.095377590538032 + ], + [ + 66.79221202987537, + 23.290025325466484 + ], + [ + 66.56252666290803, + 23.290025325466484 + ], + [ + 66.44768397942434, + 23.095377590538032 + ], + [ + 66.56252666290803, + 22.90072985560958 + ], + [ + 66.79221202987537, + 22.90072985560958 + ], + [ + 66.90705471335906, + 23.095377590538032 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.90705471335906, + 23.48467306039494 + ], + [ + 66.79221202987537, + 23.67932079532339 + ], + [ + 66.56252666290803, + 23.67932079532339 + ], + [ + 66.44768397942434, + 23.48467306039494 + ], + [ + 66.56252666290803, + 23.290025325466488 + ], + [ + 66.79221202987537, + 23.290025325466488 + ], + [ + 66.90705471335906, + 23.48467306039494 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.90705471335906, + 23.873968530251844 + ], + [ + 66.79221202987537, + 24.068616265180296 + ], + [ + 66.56252666290803, + 24.068616265180296 + ], + [ + 66.44768397942434, + 23.873968530251844 + ], + [ + 66.56252666290803, + 23.67932079532339 + ], + [ + 66.79221202987537, + 23.67932079532339 + ], + [ + 66.90705471335906, + 23.873968530251844 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.90705471335906, + 24.263264000108748 + ], + [ + 66.79221202987537, + 24.4579117350372 + ], + [ + 66.56252666290803, + 24.4579117350372 + ], + [ + 66.44768397942434, + 24.263264000108748 + ], + [ + 66.56252666290803, + 24.068616265180296 + ], + [ + 66.79221202987537, + 24.068616265180296 + ], + [ + 66.90705471335906, + 24.263264000108748 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.90705471335906, + 24.652559469965656 + ], + [ + 66.79221202987537, + 24.847207204894108 + ], + [ + 66.56252666290803, + 24.847207204894108 + ], + [ + 66.44768397942434, + 24.652559469965656 + ], + [ + 66.56252666290803, + 24.457911735037204 + ], + [ + 66.79221202987537, + 24.457911735037204 + ], + [ + 66.90705471335906, + 24.652559469965656 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.90705471335906, + 25.041854939822564 + ], + [ + 66.79221202987537, + 25.236502674751016 + ], + [ + 66.56252666290803, + 25.236502674751016 + ], + [ + 66.44768397942434, + 25.041854939822564 + ], + [ + 66.56252666290803, + 24.84720720489411 + ], + [ + 66.79221202987537, + 24.84720720489411 + ], + [ + 66.90705471335906, + 25.041854939822564 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.90705471335906, + 25.431150409679468 + ], + [ + 66.79221202987537, + 25.62579814460792 + ], + [ + 66.56252666290803, + 25.62579814460792 + ], + [ + 66.44768397942434, + 25.431150409679468 + ], + [ + 66.56252666290803, + 25.236502674751016 + ], + [ + 66.79221202987537, + 25.236502674751016 + ], + [ + 66.90705471335906, + 25.431150409679468 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.90705471335906, + 25.820445879536376 + ], + [ + 66.79221202987537, + 26.015093614464828 + ], + [ + 66.56252666290803, + 26.015093614464828 + ], + [ + 66.44768397942434, + 25.820445879536376 + ], + [ + 66.56252666290803, + 25.625798144607923 + ], + [ + 66.79221202987537, + 25.625798144607923 + ], + [ + 66.90705471335906, + 25.820445879536376 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.90705471335906, + 26.209741349393283 + ], + [ + 66.79221202987537, + 26.404389084321735 + ], + [ + 66.56252666290803, + 26.404389084321735 + ], + [ + 66.44768397942434, + 26.209741349393283 + ], + [ + 66.56252666290803, + 26.01509361446483 + ], + [ + 66.79221202987537, + 26.01509361446483 + ], + [ + 66.90705471335906, + 26.209741349393283 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.90705471335906, + 26.599036819250188 + ], + [ + 66.79221202987537, + 26.79368455417864 + ], + [ + 66.56252666290803, + 26.79368455417864 + ], + [ + 66.44768397942434, + 26.599036819250188 + ], + [ + 66.56252666290803, + 26.404389084321735 + ], + [ + 66.79221202987537, + 26.404389084321735 + ], + [ + 66.90705471335906, + 26.599036819250188 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.90705471335906, + 26.988332289107095 + ], + [ + 66.79221202987537, + 27.182980024035547 + ], + [ + 66.56252666290803, + 27.182980024035547 + ], + [ + 66.44768397942434, + 26.988332289107095 + ], + [ + 66.56252666290803, + 26.793684554178643 + ], + [ + 66.79221202987537, + 26.793684554178643 + ], + [ + 66.90705471335906, + 26.988332289107095 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.90705471335906, + 27.377627758964003 + ], + [ + 66.79221202987537, + 27.572275493892455 + ], + [ + 66.56252666290803, + 27.572275493892455 + ], + [ + 66.44768397942434, + 27.377627758964003 + ], + [ + 66.56252666290803, + 27.18298002403555 + ], + [ + 66.79221202987537, + 27.18298002403555 + ], + [ + 66.90705471335906, + 27.377627758964003 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.90705471335906, + 27.766923228820907 + ], + [ + 66.79221202987537, + 27.96157096374936 + ], + [ + 66.56252666290803, + 27.96157096374936 + ], + [ + 66.44768397942434, + 27.766923228820907 + ], + [ + 66.56252666290803, + 27.572275493892455 + ], + [ + 66.79221202987537, + 27.572275493892455 + ], + [ + 66.90705471335906, + 27.766923228820907 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.90705471335906, + 28.156218698677815 + ], + [ + 66.79221202987537, + 28.350866433606267 + ], + [ + 66.56252666290803, + 28.350866433606267 + ], + [ + 66.44768397942434, + 28.156218698677815 + ], + [ + 66.56252666290803, + 27.961570963749363 + ], + [ + 66.79221202987537, + 27.961570963749363 + ], + [ + 66.90705471335906, + 28.156218698677815 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.90705471335906, + 28.54551416853472 + ], + [ + 66.79221202987537, + 28.74016190346317 + ], + [ + 66.56252666290803, + 28.74016190346317 + ], + [ + 66.44768397942434, + 28.54551416853472 + ], + [ + 66.56252666290803, + 28.350866433606267 + ], + [ + 66.79221202987537, + 28.350866433606267 + ], + [ + 66.90705471335906, + 28.54551416853472 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.90705471335906, + 28.934809638391627 + ], + [ + 66.79221202987537, + 29.12945737332008 + ], + [ + 66.56252666290803, + 29.12945737332008 + ], + [ + 66.44768397942434, + 28.934809638391627 + ], + [ + 66.56252666290803, + 28.740161903463175 + ], + [ + 66.79221202987537, + 28.740161903463175 + ], + [ + 66.90705471335906, + 28.934809638391627 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.90705471335906, + 29.32410510824853 + ], + [ + 66.79221202987537, + 29.518752843176983 + ], + [ + 66.56252666290803, + 29.518752843176983 + ], + [ + 66.44768397942434, + 29.32410510824853 + ], + [ + 66.56252666290803, + 29.12945737332008 + ], + [ + 66.79221202987537, + 29.12945737332008 + ], + [ + 66.90705471335906, + 29.32410510824853 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.90705471335906, + 29.71340057810544 + ], + [ + 66.79221202987537, + 29.90804831303389 + ], + [ + 66.56252666290803, + 29.90804831303389 + ], + [ + 66.44768397942434, + 29.71340057810544 + ], + [ + 66.56252666290803, + 29.518752843176987 + ], + [ + 66.79221202987537, + 29.518752843176987 + ], + [ + 66.90705471335906, + 29.71340057810544 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.90705471335906, + 30.102696047962343 + ], + [ + 66.79221202987537, + 30.297343782890795 + ], + [ + 66.56252666290803, + 30.297343782890795 + ], + [ + 66.44768397942434, + 30.102696047962343 + ], + [ + 66.56252666290803, + 29.90804831303389 + ], + [ + 66.79221202987537, + 29.90804831303389 + ], + [ + 66.90705471335906, + 30.102696047962343 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.90705471335906, + 30.49199151781925 + ], + [ + 66.79221202987537, + 30.686639252747703 + ], + [ + 66.56252666290803, + 30.686639252747703 + ], + [ + 66.44768397942434, + 30.49199151781925 + ], + [ + 66.56252666290803, + 30.2973437828908 + ], + [ + 66.79221202987537, + 30.2973437828908 + ], + [ + 66.90705471335906, + 30.49199151781925 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.90705471335906, + 30.88128698767616 + ], + [ + 66.79221202987537, + 31.07593472260461 + ], + [ + 66.56252666290803, + 31.07593472260461 + ], + [ + 66.44768397942434, + 30.88128698767616 + ], + [ + 66.56252666290803, + 30.686639252747707 + ], + [ + 66.79221202987537, + 30.686639252747707 + ], + [ + 66.90705471335906, + 30.88128698767616 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.90705471335906, + 31.270582457533063 + ], + [ + 66.79221202987537, + 31.465230192461515 + ], + [ + 66.56252666290803, + 31.465230192461515 + ], + [ + 66.44768397942434, + 31.270582457533063 + ], + [ + 66.56252666290803, + 31.07593472260461 + ], + [ + 66.79221202987537, + 31.07593472260461 + ], + [ + 66.90705471335906, + 31.270582457533063 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.90705471335906, + 31.65987792738997 + ], + [ + 66.79221202987537, + 31.854525662318423 + ], + [ + 66.56252666290803, + 31.854525662318423 + ], + [ + 66.44768397942434, + 31.65987792738997 + ], + [ + 66.56252666290803, + 31.46523019246152 + ], + [ + 66.79221202987537, + 31.46523019246152 + ], + [ + 66.90705471335906, + 31.65987792738997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.90705471335906, + 32.049173397246875 + ], + [ + 66.79221202987537, + 32.24382113217533 + ], + [ + 66.56252666290803, + 32.24382113217533 + ], + [ + 66.44768397942434, + 32.049173397246875 + ], + [ + 66.56252666290803, + 31.854525662318423 + ], + [ + 66.79221202987537, + 31.854525662318423 + ], + [ + 66.90705471335906, + 32.049173397246875 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.90705471335906, + 32.438468867103786 + ], + [ + 66.79221202987537, + 32.63311660203224 + ], + [ + 66.56252666290803, + 32.63311660203224 + ], + [ + 66.44768397942434, + 32.438468867103786 + ], + [ + 66.56252666290803, + 32.243821132175334 + ], + [ + 66.79221202987537, + 32.243821132175334 + ], + [ + 66.90705471335906, + 32.438468867103786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.90705471335906, + 32.82776433696069 + ], + [ + 66.79221202987537, + 33.02241207188914 + ], + [ + 66.56252666290803, + 33.02241207188914 + ], + [ + 66.44768397942434, + 32.82776433696069 + ], + [ + 66.56252666290803, + 32.63311660203224 + ], + [ + 66.79221202987537, + 32.63311660203224 + ], + [ + 66.90705471335906, + 32.82776433696069 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.90705471335906, + 33.217059806817595 + ], + [ + 66.79221202987537, + 33.41170754174605 + ], + [ + 66.56252666290803, + 33.41170754174605 + ], + [ + 66.44768397942434, + 33.217059806817595 + ], + [ + 66.56252666290803, + 33.02241207188914 + ], + [ + 66.79221202987537, + 33.02241207188914 + ], + [ + 66.90705471335906, + 33.217059806817595 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.90705471335906, + 33.6063552766745 + ], + [ + 66.79221202987537, + 33.80100301160295 + ], + [ + 66.56252666290803, + 33.80100301160295 + ], + [ + 66.44768397942434, + 33.6063552766745 + ], + [ + 66.56252666290803, + 33.41170754174605 + ], + [ + 66.79221202987537, + 33.41170754174605 + ], + [ + 66.90705471335906, + 33.6063552766745 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.90705471335906, + 33.9956507465314 + ], + [ + 66.79221202987537, + 34.190298481459855 + ], + [ + 66.56252666290803, + 34.190298481459855 + ], + [ + 66.44768397942434, + 33.9956507465314 + ], + [ + 66.56252666290803, + 33.80100301160295 + ], + [ + 66.79221202987537, + 33.80100301160295 + ], + [ + 66.90705471335906, + 33.9956507465314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.90705471335906, + 34.384946216388315 + ], + [ + 66.79221202987537, + 34.57959395131677 + ], + [ + 66.56252666290803, + 34.57959395131677 + ], + [ + 66.44768397942434, + 34.384946216388315 + ], + [ + 66.56252666290803, + 34.19029848145986 + ], + [ + 66.79221202987537, + 34.19029848145986 + ], + [ + 66.90705471335906, + 34.384946216388315 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.90705471335906, + 34.774241686245226 + ], + [ + 66.79221202987537, + 34.96888942117368 + ], + [ + 66.56252666290803, + 34.96888942117368 + ], + [ + 66.44768397942434, + 34.774241686245226 + ], + [ + 66.56252666290803, + 34.579593951316774 + ], + [ + 66.79221202987537, + 34.579593951316774 + ], + [ + 66.90705471335906, + 34.774241686245226 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.90705471335906, + 35.16353715610213 + ], + [ + 66.79221202987537, + 35.35818489103058 + ], + [ + 66.56252666290803, + 35.35818489103058 + ], + [ + 66.44768397942434, + 35.16353715610213 + ], + [ + 66.56252666290803, + 34.96888942117368 + ], + [ + 66.79221202987537, + 34.96888942117368 + ], + [ + 66.90705471335906, + 35.16353715610213 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.90705471335906, + 35.552832625959034 + ], + [ + 66.79221202987537, + 35.74748036088749 + ], + [ + 66.56252666290803, + 35.74748036088749 + ], + [ + 66.44768397942434, + 35.552832625959034 + ], + [ + 66.56252666290803, + 35.35818489103058 + ], + [ + 66.79221202987537, + 35.35818489103058 + ], + [ + 66.90705471335906, + 35.552832625959034 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.90705471335906, + 35.94212809581594 + ], + [ + 66.79221202987537, + 36.13677583074439 + ], + [ + 66.56252666290803, + 36.13677583074439 + ], + [ + 66.44768397942434, + 35.94212809581594 + ], + [ + 66.56252666290803, + 35.74748036088749 + ], + [ + 66.79221202987537, + 35.74748036088749 + ], + [ + 66.90705471335906, + 35.94212809581594 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.90705471335906, + 36.33142356567284 + ], + [ + 66.79221202987537, + 36.526071300601295 + ], + [ + 66.56252666290803, + 36.526071300601295 + ], + [ + 66.44768397942434, + 36.33142356567284 + ], + [ + 66.56252666290803, + 36.13677583074439 + ], + [ + 66.79221202987537, + 36.13677583074439 + ], + [ + 66.90705471335906, + 36.33142356567284 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.90705471335906, + 36.720719035529754 + ], + [ + 66.79221202987537, + 36.915366770458206 + ], + [ + 66.56252666290803, + 36.915366770458206 + ], + [ + 66.44768397942434, + 36.720719035529754 + ], + [ + 66.56252666290803, + 36.5260713006013 + ], + [ + 66.79221202987537, + 36.5260713006013 + ], + [ + 66.90705471335906, + 36.720719035529754 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.90705471335906, + 37.11001450538666 + ], + [ + 66.79221202987537, + 37.30466224031511 + ], + [ + 66.56252666290803, + 37.30466224031511 + ], + [ + 66.44768397942434, + 37.11001450538666 + ], + [ + 66.56252666290803, + 36.915366770458206 + ], + [ + 66.79221202987537, + 36.915366770458206 + ], + [ + 66.90705471335906, + 37.11001450538666 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.90705471335906, + 37.49930997524357 + ], + [ + 66.79221202987537, + 37.69395771017202 + ], + [ + 66.56252666290803, + 37.69395771017202 + ], + [ + 66.44768397942434, + 37.49930997524357 + ], + [ + 66.56252666290803, + 37.30466224031512 + ], + [ + 66.79221202987537, + 37.30466224031512 + ], + [ + 66.90705471335906, + 37.49930997524357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.90705471335906, + 37.888605445100474 + ], + [ + 66.79221202987537, + 38.083253180028926 + ], + [ + 66.56252666290803, + 38.083253180028926 + ], + [ + 66.44768397942434, + 37.888605445100474 + ], + [ + 66.56252666290803, + 37.69395771017202 + ], + [ + 66.79221202987537, + 37.69395771017202 + ], + [ + 66.90705471335906, + 37.888605445100474 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.90705471335906, + 38.27790091495738 + ], + [ + 66.79221202987537, + 38.47254864988583 + ], + [ + 66.56252666290803, + 38.47254864988583 + ], + [ + 66.44768397942434, + 38.27790091495738 + ], + [ + 66.56252666290803, + 38.083253180028926 + ], + [ + 66.79221202987537, + 38.083253180028926 + ], + [ + 66.90705471335906, + 38.27790091495738 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.90705471335906, + 38.66719638481428 + ], + [ + 66.79221202987537, + 38.861844119742734 + ], + [ + 66.56252666290803, + 38.861844119742734 + ], + [ + 66.44768397942434, + 38.66719638481428 + ], + [ + 66.56252666290803, + 38.47254864988583 + ], + [ + 66.79221202987537, + 38.47254864988583 + ], + [ + 66.90705471335906, + 38.66719638481428 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.90705471335906, + 39.05649185467119 + ], + [ + 66.79221202987537, + 39.25113958959964 + ], + [ + 66.56252666290803, + 39.25113958959964 + ], + [ + 66.44768397942434, + 39.05649185467119 + ], + [ + 66.56252666290803, + 38.861844119742734 + ], + [ + 66.79221202987537, + 38.861844119742734 + ], + [ + 66.90705471335906, + 39.05649185467119 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.90705471335906, + 39.4457873245281 + ], + [ + 66.79221202987537, + 39.64043505945655 + ], + [ + 66.56252666290803, + 39.64043505945655 + ], + [ + 66.44768397942434, + 39.4457873245281 + ], + [ + 66.56252666290803, + 39.251139589599646 + ], + [ + 66.79221202987537, + 39.251139589599646 + ], + [ + 66.90705471335906, + 39.4457873245281 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.90705471335906, + 39.835082794385 + ], + [ + 66.79221202987537, + 40.029730529313454 + ], + [ + 66.56252666290803, + 40.029730529313454 + ], + [ + 66.44768397942434, + 39.835082794385 + ], + [ + 66.56252666290803, + 39.64043505945655 + ], + [ + 66.79221202987537, + 39.64043505945655 + ], + [ + 66.90705471335906, + 39.835082794385 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.90705471335906, + 40.22437826424191 + ], + [ + 66.79221202987537, + 40.419025999170366 + ], + [ + 66.56252666290803, + 40.419025999170366 + ], + [ + 66.44768397942434, + 40.22437826424191 + ], + [ + 66.56252666290803, + 40.02973052931346 + ], + [ + 66.79221202987537, + 40.02973052931346 + ], + [ + 66.90705471335906, + 40.22437826424191 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.90705471335906, + 40.61367373409882 + ], + [ + 66.79221202987537, + 40.80832146902727 + ], + [ + 66.56252666290803, + 40.80832146902727 + ], + [ + 66.44768397942434, + 40.61367373409882 + ], + [ + 66.56252666290803, + 40.419025999170366 + ], + [ + 66.79221202987537, + 40.419025999170366 + ], + [ + 66.90705471335906, + 40.61367373409882 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.90705471335906, + 41.00296920395572 + ], + [ + 66.79221202987537, + 41.197616938884174 + ], + [ + 66.56252666290803, + 41.197616938884174 + ], + [ + 66.44768397942434, + 41.00296920395572 + ], + [ + 66.56252666290803, + 40.80832146902727 + ], + [ + 66.79221202987537, + 40.80832146902727 + ], + [ + 66.90705471335906, + 41.00296920395572 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.90705471335906, + 41.392264673812626 + ], + [ + 66.79221202987537, + 41.58691240874108 + ], + [ + 66.56252666290803, + 41.58691240874108 + ], + [ + 66.44768397942434, + 41.392264673812626 + ], + [ + 66.56252666290803, + 41.197616938884174 + ], + [ + 66.79221202987537, + 41.197616938884174 + ], + [ + 66.90705471335906, + 41.392264673812626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.90705471335906, + 41.78156014366953 + ], + [ + 66.79221202987537, + 41.97620787859798 + ], + [ + 66.56252666290803, + 41.97620787859798 + ], + [ + 66.44768397942434, + 41.78156014366953 + ], + [ + 66.56252666290803, + 41.58691240874108 + ], + [ + 66.79221202987537, + 41.58691240874108 + ], + [ + 66.90705471335906, + 41.78156014366953 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.90705471335906, + 42.17085561352644 + ], + [ + 66.79221202987537, + 42.365503348454894 + ], + [ + 66.56252666290803, + 42.365503348454894 + ], + [ + 66.44768397942434, + 42.17085561352644 + ], + [ + 66.56252666290803, + 41.97620787859799 + ], + [ + 66.79221202987537, + 41.97620787859799 + ], + [ + 66.90705471335906, + 42.17085561352644 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.90705471335906, + 42.56015108338335 + ], + [ + 66.79221202987537, + 42.754798818311805 + ], + [ + 66.56252666290803, + 42.754798818311805 + ], + [ + 66.44768397942434, + 42.56015108338335 + ], + [ + 66.56252666290803, + 42.3655033484549 + ], + [ + 66.79221202987537, + 42.3655033484549 + ], + [ + 66.90705471335906, + 42.56015108338335 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.90705471335906, + 42.94944655324026 + ], + [ + 66.79221202987537, + 43.14409428816871 + ], + [ + 66.56252666290803, + 43.14409428816871 + ], + [ + 66.44768397942434, + 42.94944655324026 + ], + [ + 66.56252666290803, + 42.754798818311805 + ], + [ + 66.79221202987537, + 42.754798818311805 + ], + [ + 66.90705471335906, + 42.94944655324026 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.90705471335906, + 43.33874202309716 + ], + [ + 66.79221202987537, + 43.53338975802561 + ], + [ + 66.56252666290803, + 43.53338975802561 + ], + [ + 66.44768397942434, + 43.33874202309716 + ], + [ + 66.56252666290803, + 43.14409428816871 + ], + [ + 66.79221202987537, + 43.14409428816871 + ], + [ + 66.90705471335906, + 43.33874202309716 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.90705471335906, + 43.728037492954066 + ], + [ + 66.79221202987537, + 43.92268522788252 + ], + [ + 66.56252666290803, + 43.92268522788252 + ], + [ + 66.44768397942434, + 43.728037492954066 + ], + [ + 66.56252666290803, + 43.53338975802561 + ], + [ + 66.79221202987537, + 43.53338975802561 + ], + [ + 66.90705471335906, + 43.728037492954066 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.90705471335906, + 44.11733296281097 + ], + [ + 66.79221202987537, + 44.31198069773942 + ], + [ + 66.56252666290803, + 44.31198069773942 + ], + [ + 66.44768397942434, + 44.11733296281097 + ], + [ + 66.56252666290803, + 43.92268522788252 + ], + [ + 66.79221202987537, + 43.92268522788252 + ], + [ + 66.90705471335906, + 44.11733296281097 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.90705471335906, + 44.506628432667874 + ], + [ + 66.79221202987537, + 44.701276167596326 + ], + [ + 66.56252666290803, + 44.701276167596326 + ], + [ + 66.44768397942434, + 44.506628432667874 + ], + [ + 66.56252666290803, + 44.31198069773942 + ], + [ + 66.79221202987537, + 44.31198069773942 + ], + [ + 66.90705471335906, + 44.506628432667874 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.90705471335906, + 44.89592390252479 + ], + [ + 66.79221202987537, + 45.090571637453245 + ], + [ + 66.56252666290803, + 45.090571637453245 + ], + [ + 66.44768397942434, + 44.89592390252479 + ], + [ + 66.56252666290803, + 44.70127616759634 + ], + [ + 66.79221202987537, + 44.70127616759634 + ], + [ + 66.90705471335906, + 44.89592390252479 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.90705471335906, + 45.2852193723817 + ], + [ + 66.79221202987537, + 45.47986710731015 + ], + [ + 66.56252666290803, + 45.47986710731015 + ], + [ + 66.44768397942434, + 45.2852193723817 + ], + [ + 66.56252666290803, + 45.090571637453245 + ], + [ + 66.79221202987537, + 45.090571637453245 + ], + [ + 66.90705471335906, + 45.2852193723817 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.90705471335906, + 45.6745148422386 + ], + [ + 66.79221202987537, + 45.86916257716705 + ], + [ + 66.56252666290803, + 45.86916257716705 + ], + [ + 66.44768397942434, + 45.6745148422386 + ], + [ + 66.56252666290803, + 45.47986710731015 + ], + [ + 66.79221202987537, + 45.47986710731015 + ], + [ + 66.90705471335906, + 45.6745148422386 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.90705471335906, + 46.063810312095505 + ], + [ + 66.79221202987537, + 46.25845804702396 + ], + [ + 66.56252666290803, + 46.25845804702396 + ], + [ + 66.44768397942434, + 46.063810312095505 + ], + [ + 66.56252666290803, + 45.86916257716705 + ], + [ + 66.79221202987537, + 45.86916257716705 + ], + [ + 66.90705471335906, + 46.063810312095505 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.90705471335906, + 46.45310578195241 + ], + [ + 66.79221202987537, + 46.64775351688086 + ], + [ + 66.56252666290803, + 46.64775351688086 + ], + [ + 66.44768397942434, + 46.45310578195241 + ], + [ + 66.56252666290803, + 46.25845804702396 + ], + [ + 66.79221202987537, + 46.25845804702396 + ], + [ + 66.90705471335906, + 46.45310578195241 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.90705471335906, + 46.842401251809314 + ], + [ + 66.79221202987537, + 47.037048986737766 + ], + [ + 66.56252666290803, + 47.037048986737766 + ], + [ + 66.44768397942434, + 46.842401251809314 + ], + [ + 66.56252666290803, + 46.64775351688086 + ], + [ + 66.79221202987537, + 46.64775351688086 + ], + [ + 66.90705471335906, + 46.842401251809314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.90705471335906, + 47.23169672166622 + ], + [ + 66.79221202987537, + 47.42634445659467 + ], + [ + 66.56252666290803, + 47.42634445659467 + ], + [ + 66.44768397942434, + 47.23169672166622 + ], + [ + 66.56252666290803, + 47.037048986737766 + ], + [ + 66.79221202987537, + 47.037048986737766 + ], + [ + 66.90705471335906, + 47.23169672166622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.90705471335906, + 47.620992191523136 + ], + [ + 66.79221202987537, + 47.81563992645159 + ], + [ + 66.56252666290803, + 47.81563992645159 + ], + [ + 66.44768397942434, + 47.620992191523136 + ], + [ + 66.56252666290803, + 47.426344456594684 + ], + [ + 66.79221202987537, + 47.426344456594684 + ], + [ + 66.90705471335906, + 47.620992191523136 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.2515827638101, + 12.0004566996162 + ], + [ + 67.13674008032642, + 12.195104434544653 + ], + [ + 66.90705471335907, + 12.195104434544653 + ], + [ + 66.79221202987539, + 12.0004566996162 + ], + [ + 66.90705471335907, + 11.805808964687746 + ], + [ + 67.13674008032642, + 11.805808964687746 + ], + [ + 67.2515827638101, + 12.0004566996162 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.2515827638101, + 12.389752169473105 + ], + [ + 67.13674008032642, + 12.58439990440156 + ], + [ + 66.90705471335907, + 12.58439990440156 + ], + [ + 66.79221202987539, + 12.389752169473105 + ], + [ + 66.90705471335907, + 12.195104434544652 + ], + [ + 67.13674008032642, + 12.195104434544652 + ], + [ + 67.2515827638101, + 12.389752169473105 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.2515827638101, + 12.779047639330013 + ], + [ + 67.13674008032642, + 12.973695374258467 + ], + [ + 66.90705471335907, + 12.973695374258467 + ], + [ + 66.79221202987539, + 12.779047639330013 + ], + [ + 66.90705471335907, + 12.58439990440156 + ], + [ + 67.13674008032642, + 12.58439990440156 + ], + [ + 67.2515827638101, + 12.779047639330013 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.2515827638101, + 13.16834310918692 + ], + [ + 67.13674008032642, + 13.362990844115373 + ], + [ + 66.90705471335907, + 13.362990844115373 + ], + [ + 66.79221202987539, + 13.16834310918692 + ], + [ + 66.90705471335907, + 12.973695374258465 + ], + [ + 67.13674008032642, + 12.973695374258465 + ], + [ + 67.2515827638101, + 13.16834310918692 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.2515827638101, + 13.557638579043825 + ], + [ + 67.13674008032642, + 13.752286313972279 + ], + [ + 66.90705471335907, + 13.752286313972279 + ], + [ + 66.79221202987539, + 13.557638579043825 + ], + [ + 66.90705471335907, + 13.362990844115371 + ], + [ + 67.13674008032642, + 13.362990844115371 + ], + [ + 67.2515827638101, + 13.557638579043825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.2515827638101, + 13.946934048900731 + ], + [ + 67.13674008032642, + 14.141581783829185 + ], + [ + 66.90705471335907, + 14.141581783829185 + ], + [ + 66.79221202987539, + 13.946934048900731 + ], + [ + 66.90705471335907, + 13.752286313972277 + ], + [ + 67.13674008032642, + 13.752286313972277 + ], + [ + 67.2515827638101, + 13.946934048900731 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.2515827638101, + 14.336229518757637 + ], + [ + 67.13674008032642, + 14.530877253686091 + ], + [ + 66.90705471335907, + 14.530877253686091 + ], + [ + 66.79221202987539, + 14.336229518757637 + ], + [ + 66.90705471335907, + 14.141581783829183 + ], + [ + 67.13674008032642, + 14.141581783829183 + ], + [ + 67.2515827638101, + 14.336229518757637 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.2515827638101, + 14.725524988614545 + ], + [ + 67.13674008032642, + 14.920172723542999 + ], + [ + 66.90705471335907, + 14.920172723542999 + ], + [ + 66.79221202987539, + 14.725524988614545 + ], + [ + 66.90705471335907, + 14.530877253686091 + ], + [ + 67.13674008032642, + 14.530877253686091 + ], + [ + 67.2515827638101, + 14.725524988614545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.2515827638101, + 15.114820458471451 + ], + [ + 67.13674008032642, + 15.309468193399905 + ], + [ + 66.90705471335907, + 15.309468193399905 + ], + [ + 66.79221202987539, + 15.114820458471451 + ], + [ + 66.90705471335907, + 14.920172723542997 + ], + [ + 67.13674008032642, + 14.920172723542997 + ], + [ + 67.2515827638101, + 15.114820458471451 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.2515827638101, + 15.504115928328357 + ], + [ + 67.13674008032642, + 15.69876366325681 + ], + [ + 66.90705471335907, + 15.69876366325681 + ], + [ + 66.79221202987539, + 15.504115928328357 + ], + [ + 66.90705471335907, + 15.309468193399903 + ], + [ + 67.13674008032642, + 15.309468193399903 + ], + [ + 67.2515827638101, + 15.504115928328357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.2515827638101, + 15.893411398185265 + ], + [ + 67.13674008032642, + 16.088059133113717 + ], + [ + 66.90705471335907, + 16.088059133113717 + ], + [ + 66.79221202987539, + 15.893411398185265 + ], + [ + 66.90705471335907, + 15.69876366325681 + ], + [ + 67.13674008032642, + 15.69876366325681 + ], + [ + 67.2515827638101, + 15.893411398185265 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.2515827638101, + 16.28270686804217 + ], + [ + 67.13674008032642, + 16.47735460297062 + ], + [ + 66.90705471335907, + 16.47735460297062 + ], + [ + 66.79221202987539, + 16.28270686804217 + ], + [ + 66.90705471335907, + 16.088059133113717 + ], + [ + 67.13674008032642, + 16.088059133113717 + ], + [ + 67.2515827638101, + 16.28270686804217 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.2515827638101, + 16.672002337899077 + ], + [ + 67.13674008032642, + 16.86665007282753 + ], + [ + 66.90705471335907, + 16.86665007282753 + ], + [ + 66.79221202987539, + 16.672002337899077 + ], + [ + 66.90705471335907, + 16.477354602970625 + ], + [ + 67.13674008032642, + 16.477354602970625 + ], + [ + 67.2515827638101, + 16.672002337899077 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.2515827638101, + 17.06129780775598 + ], + [ + 67.13674008032642, + 17.255945542684433 + ], + [ + 66.90705471335907, + 17.255945542684433 + ], + [ + 66.79221202987539, + 17.06129780775598 + ], + [ + 66.90705471335907, + 16.86665007282753 + ], + [ + 67.13674008032642, + 16.86665007282753 + ], + [ + 67.2515827638101, + 17.06129780775598 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.2515827638101, + 17.45059327761289 + ], + [ + 67.13674008032642, + 17.64524101254134 + ], + [ + 66.90705471335907, + 17.64524101254134 + ], + [ + 66.79221202987539, + 17.45059327761289 + ], + [ + 66.90705471335907, + 17.255945542684437 + ], + [ + 67.13674008032642, + 17.255945542684437 + ], + [ + 67.2515827638101, + 17.45059327761289 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.2515827638101, + 17.839888747469793 + ], + [ + 67.13674008032642, + 18.034536482398245 + ], + [ + 66.90705471335907, + 18.034536482398245 + ], + [ + 66.79221202987539, + 17.839888747469793 + ], + [ + 66.90705471335907, + 17.64524101254134 + ], + [ + 67.13674008032642, + 17.64524101254134 + ], + [ + 67.2515827638101, + 17.839888747469793 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.2515827638101, + 18.2291842173267 + ], + [ + 67.13674008032642, + 18.423831952255153 + ], + [ + 66.90705471335907, + 18.423831952255153 + ], + [ + 66.79221202987539, + 18.2291842173267 + ], + [ + 66.90705471335907, + 18.03453648239825 + ], + [ + 67.13674008032642, + 18.03453648239825 + ], + [ + 67.2515827638101, + 18.2291842173267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.2515827638101, + 18.61847968718361 + ], + [ + 67.13674008032642, + 18.81312742211206 + ], + [ + 66.90705471335907, + 18.81312742211206 + ], + [ + 66.79221202987539, + 18.61847968718361 + ], + [ + 66.90705471335907, + 18.423831952255156 + ], + [ + 67.13674008032642, + 18.423831952255156 + ], + [ + 67.2515827638101, + 18.61847968718361 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.2515827638101, + 19.007775157040513 + ], + [ + 67.13674008032642, + 19.202422891968965 + ], + [ + 66.90705471335907, + 19.202422891968965 + ], + [ + 66.79221202987539, + 19.007775157040513 + ], + [ + 66.90705471335907, + 18.81312742211206 + ], + [ + 67.13674008032642, + 18.81312742211206 + ], + [ + 67.2515827638101, + 19.007775157040513 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.2515827638101, + 19.39707062689742 + ], + [ + 67.13674008032642, + 19.591718361825873 + ], + [ + 66.90705471335907, + 19.591718361825873 + ], + [ + 66.79221202987539, + 19.39707062689742 + ], + [ + 66.90705471335907, + 19.20242289196897 + ], + [ + 67.13674008032642, + 19.20242289196897 + ], + [ + 67.2515827638101, + 19.39707062689742 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.2515827638101, + 19.78636609675433 + ], + [ + 67.13674008032642, + 19.98101383168278 + ], + [ + 66.90705471335907, + 19.98101383168278 + ], + [ + 66.79221202987539, + 19.78636609675433 + ], + [ + 66.90705471335907, + 19.591718361825876 + ], + [ + 67.13674008032642, + 19.591718361825876 + ], + [ + 67.2515827638101, + 19.78636609675433 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.2515827638101, + 20.175661566611232 + ], + [ + 67.13674008032642, + 20.370309301539685 + ], + [ + 66.90705471335907, + 20.370309301539685 + ], + [ + 66.79221202987539, + 20.175661566611232 + ], + [ + 66.90705471335907, + 19.98101383168278 + ], + [ + 67.13674008032642, + 19.98101383168278 + ], + [ + 67.2515827638101, + 20.175661566611232 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.2515827638101, + 20.564957036468137 + ], + [ + 67.13674008032642, + 20.75960477139659 + ], + [ + 66.90705471335907, + 20.75960477139659 + ], + [ + 66.79221202987539, + 20.564957036468137 + ], + [ + 66.90705471335907, + 20.370309301539685 + ], + [ + 67.13674008032642, + 20.370309301539685 + ], + [ + 67.2515827638101, + 20.564957036468137 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.2515827638101, + 20.954252506325044 + ], + [ + 67.13674008032642, + 21.148900241253497 + ], + [ + 66.90705471335907, + 21.148900241253497 + ], + [ + 66.79221202987539, + 20.954252506325044 + ], + [ + 66.90705471335907, + 20.759604771396592 + ], + [ + 67.13674008032642, + 20.759604771396592 + ], + [ + 67.2515827638101, + 20.954252506325044 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.2515827638101, + 21.343547976181952 + ], + [ + 67.13674008032642, + 21.538195711110404 + ], + [ + 66.90705471335907, + 21.538195711110404 + ], + [ + 66.79221202987539, + 21.343547976181952 + ], + [ + 66.90705471335907, + 21.1489002412535 + ], + [ + 67.13674008032642, + 21.1489002412535 + ], + [ + 67.2515827638101, + 21.343547976181952 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.2515827638101, + 21.732843446038856 + ], + [ + 67.13674008032642, + 21.92749118096731 + ], + [ + 66.90705471335907, + 21.92749118096731 + ], + [ + 66.79221202987539, + 21.732843446038856 + ], + [ + 66.90705471335907, + 21.538195711110404 + ], + [ + 67.13674008032642, + 21.538195711110404 + ], + [ + 67.2515827638101, + 21.732843446038856 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.2515827638101, + 22.122138915895764 + ], + [ + 67.13674008032642, + 22.316786650824216 + ], + [ + 66.90705471335907, + 22.316786650824216 + ], + [ + 66.79221202987539, + 22.122138915895764 + ], + [ + 66.90705471335907, + 21.927491180967312 + ], + [ + 67.13674008032642, + 21.927491180967312 + ], + [ + 67.2515827638101, + 22.122138915895764 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.2515827638101, + 22.511434385752672 + ], + [ + 67.13674008032642, + 22.706082120681124 + ], + [ + 66.90705471335907, + 22.706082120681124 + ], + [ + 66.79221202987539, + 22.511434385752672 + ], + [ + 66.90705471335907, + 22.31678665082422 + ], + [ + 67.13674008032642, + 22.31678665082422 + ], + [ + 67.2515827638101, + 22.511434385752672 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.2515827638101, + 22.900729855609576 + ], + [ + 67.13674008032642, + 23.09537759053803 + ], + [ + 66.90705471335907, + 23.09537759053803 + ], + [ + 66.79221202987539, + 22.900729855609576 + ], + [ + 66.90705471335907, + 22.706082120681124 + ], + [ + 67.13674008032642, + 22.706082120681124 + ], + [ + 67.2515827638101, + 22.900729855609576 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.2515827638101, + 23.290025325466484 + ], + [ + 67.13674008032642, + 23.484673060394936 + ], + [ + 66.90705471335907, + 23.484673060394936 + ], + [ + 66.79221202987539, + 23.290025325466484 + ], + [ + 66.90705471335907, + 23.095377590538032 + ], + [ + 67.13674008032642, + 23.095377590538032 + ], + [ + 67.2515827638101, + 23.290025325466484 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.2515827638101, + 23.67932079532339 + ], + [ + 67.13674008032642, + 23.873968530251844 + ], + [ + 66.90705471335907, + 23.873968530251844 + ], + [ + 66.79221202987539, + 23.67932079532339 + ], + [ + 66.90705471335907, + 23.48467306039494 + ], + [ + 67.13674008032642, + 23.48467306039494 + ], + [ + 67.2515827638101, + 23.67932079532339 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.2515827638101, + 24.068616265180296 + ], + [ + 67.13674008032642, + 24.263264000108748 + ], + [ + 66.90705471335907, + 24.263264000108748 + ], + [ + 66.79221202987539, + 24.068616265180296 + ], + [ + 66.90705471335907, + 23.873968530251844 + ], + [ + 67.13674008032642, + 23.873968530251844 + ], + [ + 67.2515827638101, + 24.068616265180296 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.2515827638101, + 24.4579117350372 + ], + [ + 67.13674008032642, + 24.652559469965652 + ], + [ + 66.90705471335907, + 24.652559469965652 + ], + [ + 66.79221202987539, + 24.4579117350372 + ], + [ + 66.90705471335907, + 24.263264000108748 + ], + [ + 67.13674008032642, + 24.263264000108748 + ], + [ + 67.2515827638101, + 24.4579117350372 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.2515827638101, + 24.847207204894108 + ], + [ + 67.13674008032642, + 25.04185493982256 + ], + [ + 66.90705471335907, + 25.04185493982256 + ], + [ + 66.79221202987539, + 24.847207204894108 + ], + [ + 66.90705471335907, + 24.652559469965656 + ], + [ + 67.13674008032642, + 24.652559469965656 + ], + [ + 67.2515827638101, + 24.847207204894108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.2515827638101, + 25.236502674751016 + ], + [ + 67.13674008032642, + 25.431150409679468 + ], + [ + 66.90705471335907, + 25.431150409679468 + ], + [ + 66.79221202987539, + 25.236502674751016 + ], + [ + 66.90705471335907, + 25.041854939822564 + ], + [ + 67.13674008032642, + 25.041854939822564 + ], + [ + 67.2515827638101, + 25.236502674751016 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.2515827638101, + 25.62579814460792 + ], + [ + 67.13674008032642, + 25.820445879536372 + ], + [ + 66.90705471335907, + 25.820445879536372 + ], + [ + 66.79221202987539, + 25.62579814460792 + ], + [ + 66.90705471335907, + 25.431150409679468 + ], + [ + 67.13674008032642, + 25.431150409679468 + ], + [ + 67.2515827638101, + 25.62579814460792 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.2515827638101, + 26.015093614464828 + ], + [ + 67.13674008032642, + 26.20974134939328 + ], + [ + 66.90705471335907, + 26.20974134939328 + ], + [ + 66.79221202987539, + 26.015093614464828 + ], + [ + 66.90705471335907, + 25.820445879536376 + ], + [ + 67.13674008032642, + 25.820445879536376 + ], + [ + 67.2515827638101, + 26.015093614464828 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.2515827638101, + 26.404389084321735 + ], + [ + 67.13674008032642, + 26.599036819250188 + ], + [ + 66.90705471335907, + 26.599036819250188 + ], + [ + 66.79221202987539, + 26.404389084321735 + ], + [ + 66.90705471335907, + 26.209741349393283 + ], + [ + 67.13674008032642, + 26.209741349393283 + ], + [ + 67.2515827638101, + 26.404389084321735 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.2515827638101, + 26.79368455417864 + ], + [ + 67.13674008032642, + 26.988332289107092 + ], + [ + 66.90705471335907, + 26.988332289107092 + ], + [ + 66.79221202987539, + 26.79368455417864 + ], + [ + 66.90705471335907, + 26.599036819250188 + ], + [ + 67.13674008032642, + 26.599036819250188 + ], + [ + 67.2515827638101, + 26.79368455417864 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.2515827638101, + 27.182980024035547 + ], + [ + 67.13674008032642, + 27.377627758964 + ], + [ + 66.90705471335907, + 27.377627758964 + ], + [ + 66.79221202987539, + 27.182980024035547 + ], + [ + 66.90705471335907, + 26.988332289107095 + ], + [ + 67.13674008032642, + 26.988332289107095 + ], + [ + 67.2515827638101, + 27.182980024035547 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.2515827638101, + 27.572275493892455 + ], + [ + 67.13674008032642, + 27.766923228820907 + ], + [ + 66.90705471335907, + 27.766923228820907 + ], + [ + 66.79221202987539, + 27.572275493892455 + ], + [ + 66.90705471335907, + 27.377627758964003 + ], + [ + 67.13674008032642, + 27.377627758964003 + ], + [ + 67.2515827638101, + 27.572275493892455 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.2515827638101, + 27.96157096374936 + ], + [ + 67.13674008032642, + 28.15621869867781 + ], + [ + 66.90705471335907, + 28.15621869867781 + ], + [ + 66.79221202987539, + 27.96157096374936 + ], + [ + 66.90705471335907, + 27.766923228820907 + ], + [ + 67.13674008032642, + 27.766923228820907 + ], + [ + 67.2515827638101, + 27.96157096374936 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.2515827638101, + 28.350866433606267 + ], + [ + 67.13674008032642, + 28.54551416853472 + ], + [ + 66.90705471335907, + 28.54551416853472 + ], + [ + 66.79221202987539, + 28.350866433606267 + ], + [ + 66.90705471335907, + 28.156218698677815 + ], + [ + 67.13674008032642, + 28.156218698677815 + ], + [ + 67.2515827638101, + 28.350866433606267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.2515827638101, + 28.74016190346317 + ], + [ + 67.13674008032642, + 28.934809638391624 + ], + [ + 66.90705471335907, + 28.934809638391624 + ], + [ + 66.79221202987539, + 28.74016190346317 + ], + [ + 66.90705471335907, + 28.54551416853472 + ], + [ + 67.13674008032642, + 28.54551416853472 + ], + [ + 67.2515827638101, + 28.74016190346317 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.2515827638101, + 29.12945737332008 + ], + [ + 67.13674008032642, + 29.32410510824853 + ], + [ + 66.90705471335907, + 29.32410510824853 + ], + [ + 66.79221202987539, + 29.12945737332008 + ], + [ + 66.90705471335907, + 28.934809638391627 + ], + [ + 67.13674008032642, + 28.934809638391627 + ], + [ + 67.2515827638101, + 29.12945737332008 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.2515827638101, + 29.518752843176983 + ], + [ + 67.13674008032642, + 29.713400578105436 + ], + [ + 66.90705471335907, + 29.713400578105436 + ], + [ + 66.79221202987539, + 29.518752843176983 + ], + [ + 66.90705471335907, + 29.32410510824853 + ], + [ + 67.13674008032642, + 29.32410510824853 + ], + [ + 67.2515827638101, + 29.518752843176983 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.2515827638101, + 29.90804831303389 + ], + [ + 67.13674008032642, + 30.102696047962343 + ], + [ + 66.90705471335907, + 30.102696047962343 + ], + [ + 66.79221202987539, + 29.90804831303389 + ], + [ + 66.90705471335907, + 29.71340057810544 + ], + [ + 67.13674008032642, + 29.71340057810544 + ], + [ + 67.2515827638101, + 29.90804831303389 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.2515827638101, + 30.297343782890795 + ], + [ + 67.13674008032642, + 30.491991517819248 + ], + [ + 66.90705471335907, + 30.491991517819248 + ], + [ + 66.79221202987539, + 30.297343782890795 + ], + [ + 66.90705471335907, + 30.102696047962343 + ], + [ + 67.13674008032642, + 30.102696047962343 + ], + [ + 67.2515827638101, + 30.297343782890795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.2515827638101, + 30.686639252747703 + ], + [ + 67.13674008032642, + 30.881286987676155 + ], + [ + 66.90705471335907, + 30.881286987676155 + ], + [ + 66.79221202987539, + 30.686639252747703 + ], + [ + 66.90705471335907, + 30.49199151781925 + ], + [ + 67.13674008032642, + 30.49199151781925 + ], + [ + 67.2515827638101, + 30.686639252747703 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.2515827638101, + 31.07593472260461 + ], + [ + 67.13674008032642, + 31.270582457533063 + ], + [ + 66.90705471335907, + 31.270582457533063 + ], + [ + 66.79221202987539, + 31.07593472260461 + ], + [ + 66.90705471335907, + 30.88128698767616 + ], + [ + 67.13674008032642, + 30.88128698767616 + ], + [ + 67.2515827638101, + 31.07593472260461 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.2515827638101, + 31.465230192461515 + ], + [ + 67.13674008032642, + 31.659877927389967 + ], + [ + 66.90705471335907, + 31.659877927389967 + ], + [ + 66.79221202987539, + 31.465230192461515 + ], + [ + 66.90705471335907, + 31.270582457533063 + ], + [ + 67.13674008032642, + 31.270582457533063 + ], + [ + 67.2515827638101, + 31.465230192461515 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.2515827638101, + 31.854525662318423 + ], + [ + 67.13674008032642, + 32.049173397246875 + ], + [ + 66.90705471335907, + 32.049173397246875 + ], + [ + 66.79221202987539, + 31.854525662318423 + ], + [ + 66.90705471335907, + 31.65987792738997 + ], + [ + 67.13674008032642, + 31.65987792738997 + ], + [ + 67.2515827638101, + 31.854525662318423 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.2515827638101, + 32.24382113217533 + ], + [ + 67.13674008032642, + 32.43846886710378 + ], + [ + 66.90705471335907, + 32.43846886710378 + ], + [ + 66.79221202987539, + 32.24382113217533 + ], + [ + 66.90705471335907, + 32.049173397246875 + ], + [ + 67.13674008032642, + 32.049173397246875 + ], + [ + 67.2515827638101, + 32.24382113217533 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.2515827638101, + 32.63311660203224 + ], + [ + 67.13674008032642, + 32.82776433696069 + ], + [ + 66.90705471335907, + 32.82776433696069 + ], + [ + 66.79221202987539, + 32.63311660203224 + ], + [ + 66.90705471335907, + 32.438468867103786 + ], + [ + 67.13674008032642, + 32.438468867103786 + ], + [ + 67.2515827638101, + 32.63311660203224 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.2515827638101, + 33.02241207188914 + ], + [ + 67.13674008032642, + 33.217059806817595 + ], + [ + 66.90705471335907, + 33.217059806817595 + ], + [ + 66.79221202987539, + 33.02241207188914 + ], + [ + 66.90705471335907, + 32.82776433696069 + ], + [ + 67.13674008032642, + 32.82776433696069 + ], + [ + 67.2515827638101, + 33.02241207188914 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.2515827638101, + 33.41170754174605 + ], + [ + 67.13674008032642, + 33.6063552766745 + ], + [ + 66.90705471335907, + 33.6063552766745 + ], + [ + 66.79221202987539, + 33.41170754174605 + ], + [ + 66.90705471335907, + 33.217059806817595 + ], + [ + 67.13674008032642, + 33.217059806817595 + ], + [ + 67.2515827638101, + 33.41170754174605 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.2515827638101, + 33.80100301160295 + ], + [ + 67.13674008032642, + 33.9956507465314 + ], + [ + 66.90705471335907, + 33.9956507465314 + ], + [ + 66.79221202987539, + 33.80100301160295 + ], + [ + 66.90705471335907, + 33.6063552766745 + ], + [ + 67.13674008032642, + 33.6063552766745 + ], + [ + 67.2515827638101, + 33.80100301160295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.2515827638101, + 34.190298481459855 + ], + [ + 67.13674008032642, + 34.38494621638831 + ], + [ + 66.90705471335907, + 34.38494621638831 + ], + [ + 66.79221202987539, + 34.190298481459855 + ], + [ + 66.90705471335907, + 33.9956507465314 + ], + [ + 67.13674008032642, + 33.9956507465314 + ], + [ + 67.2515827638101, + 34.190298481459855 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.2515827638101, + 34.57959395131677 + ], + [ + 67.13674008032642, + 34.77424168624522 + ], + [ + 66.90705471335907, + 34.77424168624522 + ], + [ + 66.79221202987539, + 34.57959395131677 + ], + [ + 66.90705471335907, + 34.384946216388315 + ], + [ + 67.13674008032642, + 34.384946216388315 + ], + [ + 67.2515827638101, + 34.57959395131677 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.2515827638101, + 34.96888942117368 + ], + [ + 67.13674008032642, + 35.16353715610213 + ], + [ + 66.90705471335907, + 35.16353715610213 + ], + [ + 66.79221202987539, + 34.96888942117368 + ], + [ + 66.90705471335907, + 34.774241686245226 + ], + [ + 67.13674008032642, + 34.774241686245226 + ], + [ + 67.2515827638101, + 34.96888942117368 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.2515827638101, + 35.35818489103058 + ], + [ + 67.13674008032642, + 35.552832625959034 + ], + [ + 66.90705471335907, + 35.552832625959034 + ], + [ + 66.79221202987539, + 35.35818489103058 + ], + [ + 66.90705471335907, + 35.16353715610213 + ], + [ + 67.13674008032642, + 35.16353715610213 + ], + [ + 67.2515827638101, + 35.35818489103058 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.2515827638101, + 35.74748036088749 + ], + [ + 67.13674008032642, + 35.94212809581594 + ], + [ + 66.90705471335907, + 35.94212809581594 + ], + [ + 66.79221202987539, + 35.74748036088749 + ], + [ + 66.90705471335907, + 35.552832625959034 + ], + [ + 67.13674008032642, + 35.552832625959034 + ], + [ + 67.2515827638101, + 35.74748036088749 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.2515827638101, + 36.13677583074439 + ], + [ + 67.13674008032642, + 36.33142356567284 + ], + [ + 66.90705471335907, + 36.33142356567284 + ], + [ + 66.79221202987539, + 36.13677583074439 + ], + [ + 66.90705471335907, + 35.94212809581594 + ], + [ + 67.13674008032642, + 35.94212809581594 + ], + [ + 67.2515827638101, + 36.13677583074439 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.2515827638101, + 36.526071300601295 + ], + [ + 67.13674008032642, + 36.72071903552975 + ], + [ + 66.90705471335907, + 36.72071903552975 + ], + [ + 66.79221202987539, + 36.526071300601295 + ], + [ + 66.90705471335907, + 36.33142356567284 + ], + [ + 67.13674008032642, + 36.33142356567284 + ], + [ + 67.2515827638101, + 36.526071300601295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.2515827638101, + 36.915366770458206 + ], + [ + 67.13674008032642, + 37.11001450538666 + ], + [ + 66.90705471335907, + 37.11001450538666 + ], + [ + 66.79221202987539, + 36.915366770458206 + ], + [ + 66.90705471335907, + 36.720719035529754 + ], + [ + 67.13674008032642, + 36.720719035529754 + ], + [ + 67.2515827638101, + 36.915366770458206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.2515827638101, + 37.30466224031511 + ], + [ + 67.13674008032642, + 37.49930997524356 + ], + [ + 66.90705471335907, + 37.49930997524356 + ], + [ + 66.79221202987539, + 37.30466224031511 + ], + [ + 66.90705471335907, + 37.11001450538666 + ], + [ + 67.13674008032642, + 37.11001450538666 + ], + [ + 67.2515827638101, + 37.30466224031511 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.2515827638101, + 37.69395771017202 + ], + [ + 67.13674008032642, + 37.888605445100474 + ], + [ + 66.90705471335907, + 37.888605445100474 + ], + [ + 66.79221202987539, + 37.69395771017202 + ], + [ + 66.90705471335907, + 37.49930997524357 + ], + [ + 67.13674008032642, + 37.49930997524357 + ], + [ + 67.2515827638101, + 37.69395771017202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.2515827638101, + 38.083253180028926 + ], + [ + 67.13674008032642, + 38.27790091495738 + ], + [ + 66.90705471335907, + 38.27790091495738 + ], + [ + 66.79221202987539, + 38.083253180028926 + ], + [ + 66.90705471335907, + 37.888605445100474 + ], + [ + 67.13674008032642, + 37.888605445100474 + ], + [ + 67.2515827638101, + 38.083253180028926 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.2515827638101, + 38.47254864988583 + ], + [ + 67.13674008032642, + 38.66719638481428 + ], + [ + 66.90705471335907, + 38.66719638481428 + ], + [ + 66.79221202987539, + 38.47254864988583 + ], + [ + 66.90705471335907, + 38.27790091495738 + ], + [ + 67.13674008032642, + 38.27790091495738 + ], + [ + 67.2515827638101, + 38.47254864988583 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.2515827638101, + 38.861844119742734 + ], + [ + 67.13674008032642, + 39.05649185467119 + ], + [ + 66.90705471335907, + 39.05649185467119 + ], + [ + 66.79221202987539, + 38.861844119742734 + ], + [ + 66.90705471335907, + 38.66719638481428 + ], + [ + 67.13674008032642, + 38.66719638481428 + ], + [ + 67.2515827638101, + 38.861844119742734 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.2515827638101, + 39.25113958959964 + ], + [ + 67.13674008032642, + 39.44578732452809 + ], + [ + 66.90705471335907, + 39.44578732452809 + ], + [ + 66.79221202987539, + 39.25113958959964 + ], + [ + 66.90705471335907, + 39.05649185467119 + ], + [ + 67.13674008032642, + 39.05649185467119 + ], + [ + 67.2515827638101, + 39.25113958959964 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.2515827638101, + 39.64043505945655 + ], + [ + 67.13674008032642, + 39.835082794385 + ], + [ + 66.90705471335907, + 39.835082794385 + ], + [ + 66.79221202987539, + 39.64043505945655 + ], + [ + 66.90705471335907, + 39.4457873245281 + ], + [ + 67.13674008032642, + 39.4457873245281 + ], + [ + 67.2515827638101, + 39.64043505945655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.2515827638101, + 40.029730529313454 + ], + [ + 67.13674008032642, + 40.224378264241906 + ], + [ + 66.90705471335907, + 40.224378264241906 + ], + [ + 66.79221202987539, + 40.029730529313454 + ], + [ + 66.90705471335907, + 39.835082794385 + ], + [ + 67.13674008032642, + 39.835082794385 + ], + [ + 67.2515827638101, + 40.029730529313454 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.2515827638101, + 40.419025999170366 + ], + [ + 67.13674008032642, + 40.61367373409882 + ], + [ + 66.90705471335907, + 40.61367373409882 + ], + [ + 66.79221202987539, + 40.419025999170366 + ], + [ + 66.90705471335907, + 40.22437826424191 + ], + [ + 67.13674008032642, + 40.22437826424191 + ], + [ + 67.2515827638101, + 40.419025999170366 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.2515827638101, + 40.80832146902727 + ], + [ + 67.13674008032642, + 41.00296920395572 + ], + [ + 66.90705471335907, + 41.00296920395572 + ], + [ + 66.79221202987539, + 40.80832146902727 + ], + [ + 66.90705471335907, + 40.61367373409882 + ], + [ + 67.13674008032642, + 40.61367373409882 + ], + [ + 67.2515827638101, + 40.80832146902727 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.2515827638101, + 41.197616938884174 + ], + [ + 67.13674008032642, + 41.392264673812626 + ], + [ + 66.90705471335907, + 41.392264673812626 + ], + [ + 66.79221202987539, + 41.197616938884174 + ], + [ + 66.90705471335907, + 41.00296920395572 + ], + [ + 67.13674008032642, + 41.00296920395572 + ], + [ + 67.2515827638101, + 41.197616938884174 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.2515827638101, + 41.58691240874108 + ], + [ + 67.13674008032642, + 41.78156014366953 + ], + [ + 66.90705471335907, + 41.78156014366953 + ], + [ + 66.79221202987539, + 41.58691240874108 + ], + [ + 66.90705471335907, + 41.392264673812626 + ], + [ + 67.13674008032642, + 41.392264673812626 + ], + [ + 67.2515827638101, + 41.58691240874108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.2515827638101, + 41.97620787859798 + ], + [ + 67.13674008032642, + 42.170855613526435 + ], + [ + 66.90705471335907, + 42.170855613526435 + ], + [ + 66.79221202987539, + 41.97620787859798 + ], + [ + 66.90705471335907, + 41.78156014366953 + ], + [ + 67.13674008032642, + 41.78156014366953 + ], + [ + 67.2515827638101, + 41.97620787859798 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.2515827638101, + 42.365503348454894 + ], + [ + 67.13674008032642, + 42.560151083383346 + ], + [ + 66.90705471335907, + 42.560151083383346 + ], + [ + 66.79221202987539, + 42.365503348454894 + ], + [ + 66.90705471335907, + 42.17085561352644 + ], + [ + 67.13674008032642, + 42.17085561352644 + ], + [ + 67.2515827638101, + 42.365503348454894 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.2515827638101, + 42.754798818311805 + ], + [ + 67.13674008032642, + 42.94944655324026 + ], + [ + 66.90705471335907, + 42.94944655324026 + ], + [ + 66.79221202987539, + 42.754798818311805 + ], + [ + 66.90705471335907, + 42.56015108338335 + ], + [ + 67.13674008032642, + 42.56015108338335 + ], + [ + 67.2515827638101, + 42.754798818311805 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.2515827638101, + 43.14409428816871 + ], + [ + 67.13674008032642, + 43.33874202309716 + ], + [ + 66.90705471335907, + 43.33874202309716 + ], + [ + 66.79221202987539, + 43.14409428816871 + ], + [ + 66.90705471335907, + 42.94944655324026 + ], + [ + 67.13674008032642, + 42.94944655324026 + ], + [ + 67.2515827638101, + 43.14409428816871 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.2515827638101, + 43.53338975802561 + ], + [ + 67.13674008032642, + 43.728037492954066 + ], + [ + 66.90705471335907, + 43.728037492954066 + ], + [ + 66.79221202987539, + 43.53338975802561 + ], + [ + 66.90705471335907, + 43.33874202309716 + ], + [ + 67.13674008032642, + 43.33874202309716 + ], + [ + 67.2515827638101, + 43.53338975802561 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.2515827638101, + 43.92268522788252 + ], + [ + 67.13674008032642, + 44.11733296281097 + ], + [ + 66.90705471335907, + 44.11733296281097 + ], + [ + 66.79221202987539, + 43.92268522788252 + ], + [ + 66.90705471335907, + 43.728037492954066 + ], + [ + 67.13674008032642, + 43.728037492954066 + ], + [ + 67.2515827638101, + 43.92268522788252 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.2515827638101, + 44.31198069773942 + ], + [ + 67.13674008032642, + 44.506628432667874 + ], + [ + 66.90705471335907, + 44.506628432667874 + ], + [ + 66.79221202987539, + 44.31198069773942 + ], + [ + 66.90705471335907, + 44.11733296281097 + ], + [ + 67.13674008032642, + 44.11733296281097 + ], + [ + 67.2515827638101, + 44.31198069773942 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.2515827638101, + 44.701276167596326 + ], + [ + 67.13674008032642, + 44.89592390252478 + ], + [ + 66.90705471335907, + 44.89592390252478 + ], + [ + 66.79221202987539, + 44.701276167596326 + ], + [ + 66.90705471335907, + 44.506628432667874 + ], + [ + 67.13674008032642, + 44.506628432667874 + ], + [ + 67.2515827638101, + 44.701276167596326 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.2515827638101, + 45.090571637453245 + ], + [ + 67.13674008032642, + 45.2852193723817 + ], + [ + 66.90705471335907, + 45.2852193723817 + ], + [ + 66.79221202987539, + 45.090571637453245 + ], + [ + 66.90705471335907, + 44.89592390252479 + ], + [ + 67.13674008032642, + 44.89592390252479 + ], + [ + 67.2515827638101, + 45.090571637453245 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.2515827638101, + 45.47986710731015 + ], + [ + 67.13674008032642, + 45.6745148422386 + ], + [ + 66.90705471335907, + 45.6745148422386 + ], + [ + 66.79221202987539, + 45.47986710731015 + ], + [ + 66.90705471335907, + 45.2852193723817 + ], + [ + 67.13674008032642, + 45.2852193723817 + ], + [ + 67.2515827638101, + 45.47986710731015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.2515827638101, + 45.86916257716705 + ], + [ + 67.13674008032642, + 46.063810312095505 + ], + [ + 66.90705471335907, + 46.063810312095505 + ], + [ + 66.79221202987539, + 45.86916257716705 + ], + [ + 66.90705471335907, + 45.6745148422386 + ], + [ + 67.13674008032642, + 45.6745148422386 + ], + [ + 67.2515827638101, + 45.86916257716705 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.2515827638101, + 46.25845804702396 + ], + [ + 67.13674008032642, + 46.45310578195241 + ], + [ + 66.90705471335907, + 46.45310578195241 + ], + [ + 66.79221202987539, + 46.25845804702396 + ], + [ + 66.90705471335907, + 46.063810312095505 + ], + [ + 67.13674008032642, + 46.063810312095505 + ], + [ + 67.2515827638101, + 46.25845804702396 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.2515827638101, + 46.64775351688086 + ], + [ + 67.13674008032642, + 46.842401251809314 + ], + [ + 66.90705471335907, + 46.842401251809314 + ], + [ + 66.79221202987539, + 46.64775351688086 + ], + [ + 66.90705471335907, + 46.45310578195241 + ], + [ + 67.13674008032642, + 46.45310578195241 + ], + [ + 67.2515827638101, + 46.64775351688086 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.2515827638101, + 47.037048986737766 + ], + [ + 67.13674008032642, + 47.23169672166622 + ], + [ + 66.90705471335907, + 47.23169672166622 + ], + [ + 66.79221202987539, + 47.037048986737766 + ], + [ + 66.90705471335907, + 46.842401251809314 + ], + [ + 67.13674008032642, + 46.842401251809314 + ], + [ + 67.2515827638101, + 47.037048986737766 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.2515827638101, + 47.42634445659467 + ], + [ + 67.13674008032642, + 47.62099219152312 + ], + [ + 66.90705471335907, + 47.62099219152312 + ], + [ + 66.79221202987539, + 47.42634445659467 + ], + [ + 66.90705471335907, + 47.23169672166622 + ], + [ + 67.13674008032642, + 47.23169672166622 + ], + [ + 67.2515827638101, + 47.42634445659467 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.2515827638101, + 47.81563992645159 + ], + [ + 67.13674008032642, + 48.01028766138004 + ], + [ + 66.90705471335907, + 48.01028766138004 + ], + [ + 66.79221202987539, + 47.81563992645159 + ], + [ + 66.90705471335907, + 47.620992191523136 + ], + [ + 67.13674008032642, + 47.620992191523136 + ], + [ + 67.2515827638101, + 47.81563992645159 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.59611081426114, + 11.805808964687746 + ], + [ + 67.48126813077745, + 12.0004566996162 + ], + [ + 67.2515827638101, + 12.0004566996162 + ], + [ + 67.13674008032642, + 11.805808964687746 + ], + [ + 67.2515827638101, + 11.611161229759292 + ], + [ + 67.48126813077745, + 11.611161229759292 + ], + [ + 67.59611081426114, + 11.805808964687746 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.59611081426114, + 12.195104434544652 + ], + [ + 67.48126813077745, + 12.389752169473105 + ], + [ + 67.2515827638101, + 12.389752169473105 + ], + [ + 67.13674008032642, + 12.195104434544652 + ], + [ + 67.2515827638101, + 12.000456699616198 + ], + [ + 67.48126813077745, + 12.000456699616198 + ], + [ + 67.59611081426114, + 12.195104434544652 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.59611081426114, + 12.58439990440156 + ], + [ + 67.48126813077745, + 12.779047639330013 + ], + [ + 67.2515827638101, + 12.779047639330013 + ], + [ + 67.13674008032642, + 12.58439990440156 + ], + [ + 67.2515827638101, + 12.389752169473105 + ], + [ + 67.48126813077745, + 12.389752169473105 + ], + [ + 67.59611081426114, + 12.58439990440156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.59611081426114, + 12.973695374258465 + ], + [ + 67.48126813077745, + 13.16834310918692 + ], + [ + 67.2515827638101, + 13.16834310918692 + ], + [ + 67.13674008032642, + 12.973695374258465 + ], + [ + 67.2515827638101, + 12.779047639330011 + ], + [ + 67.48126813077745, + 12.779047639330011 + ], + [ + 67.59611081426114, + 12.973695374258465 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.59611081426114, + 13.362990844115371 + ], + [ + 67.48126813077745, + 13.557638579043825 + ], + [ + 67.2515827638101, + 13.557638579043825 + ], + [ + 67.13674008032642, + 13.362990844115371 + ], + [ + 67.2515827638101, + 13.168343109186917 + ], + [ + 67.48126813077745, + 13.168343109186917 + ], + [ + 67.59611081426114, + 13.362990844115371 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.59611081426114, + 13.752286313972277 + ], + [ + 67.48126813077745, + 13.946934048900731 + ], + [ + 67.2515827638101, + 13.946934048900731 + ], + [ + 67.13674008032642, + 13.752286313972277 + ], + [ + 67.2515827638101, + 13.557638579043823 + ], + [ + 67.48126813077745, + 13.557638579043823 + ], + [ + 67.59611081426114, + 13.752286313972277 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.59611081426114, + 14.141581783829183 + ], + [ + 67.48126813077745, + 14.336229518757637 + ], + [ + 67.2515827638101, + 14.336229518757637 + ], + [ + 67.13674008032642, + 14.141581783829183 + ], + [ + 67.2515827638101, + 13.94693404890073 + ], + [ + 67.48126813077745, + 13.94693404890073 + ], + [ + 67.59611081426114, + 14.141581783829183 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.59611081426114, + 14.530877253686091 + ], + [ + 67.48126813077745, + 14.725524988614545 + ], + [ + 67.2515827638101, + 14.725524988614545 + ], + [ + 67.13674008032642, + 14.530877253686091 + ], + [ + 67.2515827638101, + 14.336229518757637 + ], + [ + 67.48126813077745, + 14.336229518757637 + ], + [ + 67.59611081426114, + 14.530877253686091 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.59611081426114, + 14.920172723542997 + ], + [ + 67.48126813077745, + 15.114820458471451 + ], + [ + 67.2515827638101, + 15.114820458471451 + ], + [ + 67.13674008032642, + 14.920172723542997 + ], + [ + 67.2515827638101, + 14.725524988614543 + ], + [ + 67.48126813077745, + 14.725524988614543 + ], + [ + 67.59611081426114, + 14.920172723542997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.59611081426114, + 15.309468193399903 + ], + [ + 67.48126813077745, + 15.504115928328357 + ], + [ + 67.2515827638101, + 15.504115928328357 + ], + [ + 67.13674008032642, + 15.309468193399903 + ], + [ + 67.2515827638101, + 15.11482045847145 + ], + [ + 67.48126813077745, + 15.11482045847145 + ], + [ + 67.59611081426114, + 15.309468193399903 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.59611081426114, + 15.69876366325681 + ], + [ + 67.48126813077745, + 15.893411398185265 + ], + [ + 67.2515827638101, + 15.893411398185265 + ], + [ + 67.13674008032642, + 15.69876366325681 + ], + [ + 67.2515827638101, + 15.504115928328357 + ], + [ + 67.48126813077745, + 15.504115928328357 + ], + [ + 67.59611081426114, + 15.69876366325681 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.59611081426114, + 16.088059133113717 + ], + [ + 67.48126813077745, + 16.28270686804217 + ], + [ + 67.2515827638101, + 16.28270686804217 + ], + [ + 67.13674008032642, + 16.088059133113717 + ], + [ + 67.2515827638101, + 15.893411398185263 + ], + [ + 67.48126813077745, + 15.893411398185263 + ], + [ + 67.59611081426114, + 16.088059133113717 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.59611081426114, + 16.477354602970625 + ], + [ + 67.48126813077745, + 16.672002337899077 + ], + [ + 67.2515827638101, + 16.672002337899077 + ], + [ + 67.13674008032642, + 16.477354602970625 + ], + [ + 67.2515827638101, + 16.282706868042172 + ], + [ + 67.48126813077745, + 16.282706868042172 + ], + [ + 67.59611081426114, + 16.477354602970625 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.59611081426114, + 16.86665007282753 + ], + [ + 67.48126813077745, + 17.06129780775598 + ], + [ + 67.2515827638101, + 17.06129780775598 + ], + [ + 67.13674008032642, + 16.86665007282753 + ], + [ + 67.2515827638101, + 16.672002337899077 + ], + [ + 67.48126813077745, + 16.672002337899077 + ], + [ + 67.59611081426114, + 16.86665007282753 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.59611081426114, + 17.255945542684437 + ], + [ + 67.48126813077745, + 17.45059327761289 + ], + [ + 67.2515827638101, + 17.45059327761289 + ], + [ + 67.13674008032642, + 17.255945542684437 + ], + [ + 67.2515827638101, + 17.061297807755984 + ], + [ + 67.48126813077745, + 17.061297807755984 + ], + [ + 67.59611081426114, + 17.255945542684437 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.59611081426114, + 17.64524101254134 + ], + [ + 67.48126813077745, + 17.839888747469793 + ], + [ + 67.2515827638101, + 17.839888747469793 + ], + [ + 67.13674008032642, + 17.64524101254134 + ], + [ + 67.2515827638101, + 17.45059327761289 + ], + [ + 67.48126813077745, + 17.45059327761289 + ], + [ + 67.59611081426114, + 17.64524101254134 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.59611081426114, + 18.03453648239825 + ], + [ + 67.48126813077745, + 18.2291842173267 + ], + [ + 67.2515827638101, + 18.2291842173267 + ], + [ + 67.13674008032642, + 18.03453648239825 + ], + [ + 67.2515827638101, + 17.839888747469796 + ], + [ + 67.48126813077745, + 17.839888747469796 + ], + [ + 67.59611081426114, + 18.03453648239825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.59611081426114, + 18.423831952255156 + ], + [ + 67.48126813077745, + 18.61847968718361 + ], + [ + 67.2515827638101, + 18.61847968718361 + ], + [ + 67.13674008032642, + 18.423831952255156 + ], + [ + 67.2515827638101, + 18.229184217326704 + ], + [ + 67.48126813077745, + 18.229184217326704 + ], + [ + 67.59611081426114, + 18.423831952255156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.59611081426114, + 18.81312742211206 + ], + [ + 67.48126813077745, + 19.007775157040513 + ], + [ + 67.2515827638101, + 19.007775157040513 + ], + [ + 67.13674008032642, + 18.81312742211206 + ], + [ + 67.2515827638101, + 18.61847968718361 + ], + [ + 67.48126813077745, + 18.61847968718361 + ], + [ + 67.59611081426114, + 18.81312742211206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.59611081426114, + 19.20242289196897 + ], + [ + 67.48126813077745, + 19.39707062689742 + ], + [ + 67.2515827638101, + 19.39707062689742 + ], + [ + 67.13674008032642, + 19.20242289196897 + ], + [ + 67.2515827638101, + 19.007775157040516 + ], + [ + 67.48126813077745, + 19.007775157040516 + ], + [ + 67.59611081426114, + 19.20242289196897 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.59611081426114, + 19.591718361825876 + ], + [ + 67.48126813077745, + 19.78636609675433 + ], + [ + 67.2515827638101, + 19.78636609675433 + ], + [ + 67.13674008032642, + 19.591718361825876 + ], + [ + 67.2515827638101, + 19.397070626897424 + ], + [ + 67.48126813077745, + 19.397070626897424 + ], + [ + 67.59611081426114, + 19.591718361825876 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.59611081426114, + 19.98101383168278 + ], + [ + 67.48126813077745, + 20.175661566611232 + ], + [ + 67.2515827638101, + 20.175661566611232 + ], + [ + 67.13674008032642, + 19.98101383168278 + ], + [ + 67.2515827638101, + 19.78636609675433 + ], + [ + 67.48126813077745, + 19.78636609675433 + ], + [ + 67.59611081426114, + 19.98101383168278 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.59611081426114, + 20.370309301539685 + ], + [ + 67.48126813077745, + 20.564957036468137 + ], + [ + 67.2515827638101, + 20.564957036468137 + ], + [ + 67.13674008032642, + 20.370309301539685 + ], + [ + 67.2515827638101, + 20.175661566611232 + ], + [ + 67.48126813077745, + 20.175661566611232 + ], + [ + 67.59611081426114, + 20.370309301539685 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.59611081426114, + 20.759604771396592 + ], + [ + 67.48126813077745, + 20.954252506325044 + ], + [ + 67.2515827638101, + 20.954252506325044 + ], + [ + 67.13674008032642, + 20.759604771396592 + ], + [ + 67.2515827638101, + 20.56495703646814 + ], + [ + 67.48126813077745, + 20.56495703646814 + ], + [ + 67.59611081426114, + 20.759604771396592 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.59611081426114, + 21.1489002412535 + ], + [ + 67.48126813077745, + 21.343547976181952 + ], + [ + 67.2515827638101, + 21.343547976181952 + ], + [ + 67.13674008032642, + 21.1489002412535 + ], + [ + 67.2515827638101, + 20.954252506325048 + ], + [ + 67.48126813077745, + 20.954252506325048 + ], + [ + 67.59611081426114, + 21.1489002412535 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.59611081426114, + 21.538195711110404 + ], + [ + 67.48126813077745, + 21.732843446038856 + ], + [ + 67.2515827638101, + 21.732843446038856 + ], + [ + 67.13674008032642, + 21.538195711110404 + ], + [ + 67.2515827638101, + 21.343547976181952 + ], + [ + 67.48126813077745, + 21.343547976181952 + ], + [ + 67.59611081426114, + 21.538195711110404 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.59611081426114, + 21.927491180967312 + ], + [ + 67.48126813077745, + 22.122138915895764 + ], + [ + 67.2515827638101, + 22.122138915895764 + ], + [ + 67.13674008032642, + 21.927491180967312 + ], + [ + 67.2515827638101, + 21.73284344603886 + ], + [ + 67.48126813077745, + 21.73284344603886 + ], + [ + 67.59611081426114, + 21.927491180967312 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.59611081426114, + 22.31678665082422 + ], + [ + 67.48126813077745, + 22.511434385752672 + ], + [ + 67.2515827638101, + 22.511434385752672 + ], + [ + 67.13674008032642, + 22.31678665082422 + ], + [ + 67.2515827638101, + 22.122138915895768 + ], + [ + 67.48126813077745, + 22.122138915895768 + ], + [ + 67.59611081426114, + 22.31678665082422 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.59611081426114, + 22.706082120681124 + ], + [ + 67.48126813077745, + 22.900729855609576 + ], + [ + 67.2515827638101, + 22.900729855609576 + ], + [ + 67.13674008032642, + 22.706082120681124 + ], + [ + 67.2515827638101, + 22.511434385752672 + ], + [ + 67.48126813077745, + 22.511434385752672 + ], + [ + 67.59611081426114, + 22.706082120681124 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.59611081426114, + 23.095377590538032 + ], + [ + 67.48126813077745, + 23.290025325466484 + ], + [ + 67.2515827638101, + 23.290025325466484 + ], + [ + 67.13674008032642, + 23.095377590538032 + ], + [ + 67.2515827638101, + 22.90072985560958 + ], + [ + 67.48126813077745, + 22.90072985560958 + ], + [ + 67.59611081426114, + 23.095377590538032 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.59611081426114, + 23.48467306039494 + ], + [ + 67.48126813077745, + 23.67932079532339 + ], + [ + 67.2515827638101, + 23.67932079532339 + ], + [ + 67.13674008032642, + 23.48467306039494 + ], + [ + 67.2515827638101, + 23.290025325466488 + ], + [ + 67.48126813077745, + 23.290025325466488 + ], + [ + 67.59611081426114, + 23.48467306039494 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.59611081426114, + 23.873968530251844 + ], + [ + 67.48126813077745, + 24.068616265180296 + ], + [ + 67.2515827638101, + 24.068616265180296 + ], + [ + 67.13674008032642, + 23.873968530251844 + ], + [ + 67.2515827638101, + 23.67932079532339 + ], + [ + 67.48126813077745, + 23.67932079532339 + ], + [ + 67.59611081426114, + 23.873968530251844 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.59611081426114, + 24.263264000108748 + ], + [ + 67.48126813077745, + 24.4579117350372 + ], + [ + 67.2515827638101, + 24.4579117350372 + ], + [ + 67.13674008032642, + 24.263264000108748 + ], + [ + 67.2515827638101, + 24.068616265180296 + ], + [ + 67.48126813077745, + 24.068616265180296 + ], + [ + 67.59611081426114, + 24.263264000108748 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.59611081426114, + 24.652559469965656 + ], + [ + 67.48126813077745, + 24.847207204894108 + ], + [ + 67.2515827638101, + 24.847207204894108 + ], + [ + 67.13674008032642, + 24.652559469965656 + ], + [ + 67.2515827638101, + 24.457911735037204 + ], + [ + 67.48126813077745, + 24.457911735037204 + ], + [ + 67.59611081426114, + 24.652559469965656 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.59611081426114, + 25.041854939822564 + ], + [ + 67.48126813077745, + 25.236502674751016 + ], + [ + 67.2515827638101, + 25.236502674751016 + ], + [ + 67.13674008032642, + 25.041854939822564 + ], + [ + 67.2515827638101, + 24.84720720489411 + ], + [ + 67.48126813077745, + 24.84720720489411 + ], + [ + 67.59611081426114, + 25.041854939822564 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.59611081426114, + 25.431150409679468 + ], + [ + 67.48126813077745, + 25.62579814460792 + ], + [ + 67.2515827638101, + 25.62579814460792 + ], + [ + 67.13674008032642, + 25.431150409679468 + ], + [ + 67.2515827638101, + 25.236502674751016 + ], + [ + 67.48126813077745, + 25.236502674751016 + ], + [ + 67.59611081426114, + 25.431150409679468 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.59611081426114, + 25.820445879536376 + ], + [ + 67.48126813077745, + 26.015093614464828 + ], + [ + 67.2515827638101, + 26.015093614464828 + ], + [ + 67.13674008032642, + 25.820445879536376 + ], + [ + 67.2515827638101, + 25.625798144607923 + ], + [ + 67.48126813077745, + 25.625798144607923 + ], + [ + 67.59611081426114, + 25.820445879536376 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.59611081426114, + 26.209741349393283 + ], + [ + 67.48126813077745, + 26.404389084321735 + ], + [ + 67.2515827638101, + 26.404389084321735 + ], + [ + 67.13674008032642, + 26.209741349393283 + ], + [ + 67.2515827638101, + 26.01509361446483 + ], + [ + 67.48126813077745, + 26.01509361446483 + ], + [ + 67.59611081426114, + 26.209741349393283 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.59611081426114, + 26.599036819250188 + ], + [ + 67.48126813077745, + 26.79368455417864 + ], + [ + 67.2515827638101, + 26.79368455417864 + ], + [ + 67.13674008032642, + 26.599036819250188 + ], + [ + 67.2515827638101, + 26.404389084321735 + ], + [ + 67.48126813077745, + 26.404389084321735 + ], + [ + 67.59611081426114, + 26.599036819250188 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.59611081426114, + 26.988332289107095 + ], + [ + 67.48126813077745, + 27.182980024035547 + ], + [ + 67.2515827638101, + 27.182980024035547 + ], + [ + 67.13674008032642, + 26.988332289107095 + ], + [ + 67.2515827638101, + 26.793684554178643 + ], + [ + 67.48126813077745, + 26.793684554178643 + ], + [ + 67.59611081426114, + 26.988332289107095 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.59611081426114, + 27.377627758964003 + ], + [ + 67.48126813077745, + 27.572275493892455 + ], + [ + 67.2515827638101, + 27.572275493892455 + ], + [ + 67.13674008032642, + 27.377627758964003 + ], + [ + 67.2515827638101, + 27.18298002403555 + ], + [ + 67.48126813077745, + 27.18298002403555 + ], + [ + 67.59611081426114, + 27.377627758964003 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.59611081426114, + 27.766923228820907 + ], + [ + 67.48126813077745, + 27.96157096374936 + ], + [ + 67.2515827638101, + 27.96157096374936 + ], + [ + 67.13674008032642, + 27.766923228820907 + ], + [ + 67.2515827638101, + 27.572275493892455 + ], + [ + 67.48126813077745, + 27.572275493892455 + ], + [ + 67.59611081426114, + 27.766923228820907 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.59611081426114, + 28.156218698677815 + ], + [ + 67.48126813077745, + 28.350866433606267 + ], + [ + 67.2515827638101, + 28.350866433606267 + ], + [ + 67.13674008032642, + 28.156218698677815 + ], + [ + 67.2515827638101, + 27.961570963749363 + ], + [ + 67.48126813077745, + 27.961570963749363 + ], + [ + 67.59611081426114, + 28.156218698677815 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.59611081426114, + 28.54551416853472 + ], + [ + 67.48126813077745, + 28.74016190346317 + ], + [ + 67.2515827638101, + 28.74016190346317 + ], + [ + 67.13674008032642, + 28.54551416853472 + ], + [ + 67.2515827638101, + 28.350866433606267 + ], + [ + 67.48126813077745, + 28.350866433606267 + ], + [ + 67.59611081426114, + 28.54551416853472 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.59611081426114, + 28.934809638391627 + ], + [ + 67.48126813077745, + 29.12945737332008 + ], + [ + 67.2515827638101, + 29.12945737332008 + ], + [ + 67.13674008032642, + 28.934809638391627 + ], + [ + 67.2515827638101, + 28.740161903463175 + ], + [ + 67.48126813077745, + 28.740161903463175 + ], + [ + 67.59611081426114, + 28.934809638391627 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.59611081426114, + 29.32410510824853 + ], + [ + 67.48126813077745, + 29.518752843176983 + ], + [ + 67.2515827638101, + 29.518752843176983 + ], + [ + 67.13674008032642, + 29.32410510824853 + ], + [ + 67.2515827638101, + 29.12945737332008 + ], + [ + 67.48126813077745, + 29.12945737332008 + ], + [ + 67.59611081426114, + 29.32410510824853 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.59611081426114, + 29.71340057810544 + ], + [ + 67.48126813077745, + 29.90804831303389 + ], + [ + 67.2515827638101, + 29.90804831303389 + ], + [ + 67.13674008032642, + 29.71340057810544 + ], + [ + 67.2515827638101, + 29.518752843176987 + ], + [ + 67.48126813077745, + 29.518752843176987 + ], + [ + 67.59611081426114, + 29.71340057810544 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.59611081426114, + 30.102696047962343 + ], + [ + 67.48126813077745, + 30.297343782890795 + ], + [ + 67.2515827638101, + 30.297343782890795 + ], + [ + 67.13674008032642, + 30.102696047962343 + ], + [ + 67.2515827638101, + 29.90804831303389 + ], + [ + 67.48126813077745, + 29.90804831303389 + ], + [ + 67.59611081426114, + 30.102696047962343 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.59611081426114, + 30.49199151781925 + ], + [ + 67.48126813077745, + 30.686639252747703 + ], + [ + 67.2515827638101, + 30.686639252747703 + ], + [ + 67.13674008032642, + 30.49199151781925 + ], + [ + 67.2515827638101, + 30.2973437828908 + ], + [ + 67.48126813077745, + 30.2973437828908 + ], + [ + 67.59611081426114, + 30.49199151781925 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.59611081426114, + 30.88128698767616 + ], + [ + 67.48126813077745, + 31.07593472260461 + ], + [ + 67.2515827638101, + 31.07593472260461 + ], + [ + 67.13674008032642, + 30.88128698767616 + ], + [ + 67.2515827638101, + 30.686639252747707 + ], + [ + 67.48126813077745, + 30.686639252747707 + ], + [ + 67.59611081426114, + 30.88128698767616 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.59611081426114, + 31.270582457533063 + ], + [ + 67.48126813077745, + 31.465230192461515 + ], + [ + 67.2515827638101, + 31.465230192461515 + ], + [ + 67.13674008032642, + 31.270582457533063 + ], + [ + 67.2515827638101, + 31.07593472260461 + ], + [ + 67.48126813077745, + 31.07593472260461 + ], + [ + 67.59611081426114, + 31.270582457533063 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.59611081426114, + 31.65987792738997 + ], + [ + 67.48126813077745, + 31.854525662318423 + ], + [ + 67.2515827638101, + 31.854525662318423 + ], + [ + 67.13674008032642, + 31.65987792738997 + ], + [ + 67.2515827638101, + 31.46523019246152 + ], + [ + 67.48126813077745, + 31.46523019246152 + ], + [ + 67.59611081426114, + 31.65987792738997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.59611081426114, + 32.049173397246875 + ], + [ + 67.48126813077745, + 32.24382113217533 + ], + [ + 67.2515827638101, + 32.24382113217533 + ], + [ + 67.13674008032642, + 32.049173397246875 + ], + [ + 67.2515827638101, + 31.854525662318423 + ], + [ + 67.48126813077745, + 31.854525662318423 + ], + [ + 67.59611081426114, + 32.049173397246875 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.59611081426114, + 32.438468867103786 + ], + [ + 67.48126813077745, + 32.63311660203224 + ], + [ + 67.2515827638101, + 32.63311660203224 + ], + [ + 67.13674008032642, + 32.438468867103786 + ], + [ + 67.2515827638101, + 32.243821132175334 + ], + [ + 67.48126813077745, + 32.243821132175334 + ], + [ + 67.59611081426114, + 32.438468867103786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.59611081426114, + 32.82776433696069 + ], + [ + 67.48126813077745, + 33.02241207188914 + ], + [ + 67.2515827638101, + 33.02241207188914 + ], + [ + 67.13674008032642, + 32.82776433696069 + ], + [ + 67.2515827638101, + 32.63311660203224 + ], + [ + 67.48126813077745, + 32.63311660203224 + ], + [ + 67.59611081426114, + 32.82776433696069 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.59611081426114, + 33.217059806817595 + ], + [ + 67.48126813077745, + 33.41170754174605 + ], + [ + 67.2515827638101, + 33.41170754174605 + ], + [ + 67.13674008032642, + 33.217059806817595 + ], + [ + 67.2515827638101, + 33.02241207188914 + ], + [ + 67.48126813077745, + 33.02241207188914 + ], + [ + 67.59611081426114, + 33.217059806817595 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.59611081426114, + 33.6063552766745 + ], + [ + 67.48126813077745, + 33.80100301160295 + ], + [ + 67.2515827638101, + 33.80100301160295 + ], + [ + 67.13674008032642, + 33.6063552766745 + ], + [ + 67.2515827638101, + 33.41170754174605 + ], + [ + 67.48126813077745, + 33.41170754174605 + ], + [ + 67.59611081426114, + 33.6063552766745 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.59611081426114, + 33.9956507465314 + ], + [ + 67.48126813077745, + 34.190298481459855 + ], + [ + 67.2515827638101, + 34.190298481459855 + ], + [ + 67.13674008032642, + 33.9956507465314 + ], + [ + 67.2515827638101, + 33.80100301160295 + ], + [ + 67.48126813077745, + 33.80100301160295 + ], + [ + 67.59611081426114, + 33.9956507465314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.59611081426114, + 34.384946216388315 + ], + [ + 67.48126813077745, + 34.57959395131677 + ], + [ + 67.2515827638101, + 34.57959395131677 + ], + [ + 67.13674008032642, + 34.384946216388315 + ], + [ + 67.2515827638101, + 34.19029848145986 + ], + [ + 67.48126813077745, + 34.19029848145986 + ], + [ + 67.59611081426114, + 34.384946216388315 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.59611081426114, + 34.774241686245226 + ], + [ + 67.48126813077745, + 34.96888942117368 + ], + [ + 67.2515827638101, + 34.96888942117368 + ], + [ + 67.13674008032642, + 34.774241686245226 + ], + [ + 67.2515827638101, + 34.579593951316774 + ], + [ + 67.48126813077745, + 34.579593951316774 + ], + [ + 67.59611081426114, + 34.774241686245226 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.59611081426114, + 35.16353715610213 + ], + [ + 67.48126813077745, + 35.35818489103058 + ], + [ + 67.2515827638101, + 35.35818489103058 + ], + [ + 67.13674008032642, + 35.16353715610213 + ], + [ + 67.2515827638101, + 34.96888942117368 + ], + [ + 67.48126813077745, + 34.96888942117368 + ], + [ + 67.59611081426114, + 35.16353715610213 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.59611081426114, + 35.552832625959034 + ], + [ + 67.48126813077745, + 35.74748036088749 + ], + [ + 67.2515827638101, + 35.74748036088749 + ], + [ + 67.13674008032642, + 35.552832625959034 + ], + [ + 67.2515827638101, + 35.35818489103058 + ], + [ + 67.48126813077745, + 35.35818489103058 + ], + [ + 67.59611081426114, + 35.552832625959034 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.59611081426114, + 35.94212809581594 + ], + [ + 67.48126813077745, + 36.13677583074439 + ], + [ + 67.2515827638101, + 36.13677583074439 + ], + [ + 67.13674008032642, + 35.94212809581594 + ], + [ + 67.2515827638101, + 35.74748036088749 + ], + [ + 67.48126813077745, + 35.74748036088749 + ], + [ + 67.59611081426114, + 35.94212809581594 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.59611081426114, + 36.33142356567284 + ], + [ + 67.48126813077745, + 36.526071300601295 + ], + [ + 67.2515827638101, + 36.526071300601295 + ], + [ + 67.13674008032642, + 36.33142356567284 + ], + [ + 67.2515827638101, + 36.13677583074439 + ], + [ + 67.48126813077745, + 36.13677583074439 + ], + [ + 67.59611081426114, + 36.33142356567284 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.59611081426114, + 36.720719035529754 + ], + [ + 67.48126813077745, + 36.915366770458206 + ], + [ + 67.2515827638101, + 36.915366770458206 + ], + [ + 67.13674008032642, + 36.720719035529754 + ], + [ + 67.2515827638101, + 36.5260713006013 + ], + [ + 67.48126813077745, + 36.5260713006013 + ], + [ + 67.59611081426114, + 36.720719035529754 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.59611081426114, + 37.11001450538666 + ], + [ + 67.48126813077745, + 37.30466224031511 + ], + [ + 67.2515827638101, + 37.30466224031511 + ], + [ + 67.13674008032642, + 37.11001450538666 + ], + [ + 67.2515827638101, + 36.915366770458206 + ], + [ + 67.48126813077745, + 36.915366770458206 + ], + [ + 67.59611081426114, + 37.11001450538666 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.59611081426114, + 37.49930997524357 + ], + [ + 67.48126813077745, + 37.69395771017202 + ], + [ + 67.2515827638101, + 37.69395771017202 + ], + [ + 67.13674008032642, + 37.49930997524357 + ], + [ + 67.2515827638101, + 37.30466224031512 + ], + [ + 67.48126813077745, + 37.30466224031512 + ], + [ + 67.59611081426114, + 37.49930997524357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.59611081426114, + 37.888605445100474 + ], + [ + 67.48126813077745, + 38.083253180028926 + ], + [ + 67.2515827638101, + 38.083253180028926 + ], + [ + 67.13674008032642, + 37.888605445100474 + ], + [ + 67.2515827638101, + 37.69395771017202 + ], + [ + 67.48126813077745, + 37.69395771017202 + ], + [ + 67.59611081426114, + 37.888605445100474 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.59611081426114, + 38.27790091495738 + ], + [ + 67.48126813077745, + 38.47254864988583 + ], + [ + 67.2515827638101, + 38.47254864988583 + ], + [ + 67.13674008032642, + 38.27790091495738 + ], + [ + 67.2515827638101, + 38.083253180028926 + ], + [ + 67.48126813077745, + 38.083253180028926 + ], + [ + 67.59611081426114, + 38.27790091495738 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.59611081426114, + 38.66719638481428 + ], + [ + 67.48126813077745, + 38.861844119742734 + ], + [ + 67.2515827638101, + 38.861844119742734 + ], + [ + 67.13674008032642, + 38.66719638481428 + ], + [ + 67.2515827638101, + 38.47254864988583 + ], + [ + 67.48126813077745, + 38.47254864988583 + ], + [ + 67.59611081426114, + 38.66719638481428 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.59611081426114, + 39.05649185467119 + ], + [ + 67.48126813077745, + 39.25113958959964 + ], + [ + 67.2515827638101, + 39.25113958959964 + ], + [ + 67.13674008032642, + 39.05649185467119 + ], + [ + 67.2515827638101, + 38.861844119742734 + ], + [ + 67.48126813077745, + 38.861844119742734 + ], + [ + 67.59611081426114, + 39.05649185467119 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.59611081426114, + 39.4457873245281 + ], + [ + 67.48126813077745, + 39.64043505945655 + ], + [ + 67.2515827638101, + 39.64043505945655 + ], + [ + 67.13674008032642, + 39.4457873245281 + ], + [ + 67.2515827638101, + 39.251139589599646 + ], + [ + 67.48126813077745, + 39.251139589599646 + ], + [ + 67.59611081426114, + 39.4457873245281 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.59611081426114, + 39.835082794385 + ], + [ + 67.48126813077745, + 40.029730529313454 + ], + [ + 67.2515827638101, + 40.029730529313454 + ], + [ + 67.13674008032642, + 39.835082794385 + ], + [ + 67.2515827638101, + 39.64043505945655 + ], + [ + 67.48126813077745, + 39.64043505945655 + ], + [ + 67.59611081426114, + 39.835082794385 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.59611081426114, + 40.22437826424191 + ], + [ + 67.48126813077745, + 40.419025999170366 + ], + [ + 67.2515827638101, + 40.419025999170366 + ], + [ + 67.13674008032642, + 40.22437826424191 + ], + [ + 67.2515827638101, + 40.02973052931346 + ], + [ + 67.48126813077745, + 40.02973052931346 + ], + [ + 67.59611081426114, + 40.22437826424191 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.59611081426114, + 40.61367373409882 + ], + [ + 67.48126813077745, + 40.80832146902727 + ], + [ + 67.2515827638101, + 40.80832146902727 + ], + [ + 67.13674008032642, + 40.61367373409882 + ], + [ + 67.2515827638101, + 40.419025999170366 + ], + [ + 67.48126813077745, + 40.419025999170366 + ], + [ + 67.59611081426114, + 40.61367373409882 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.59611081426114, + 41.00296920395572 + ], + [ + 67.48126813077745, + 41.197616938884174 + ], + [ + 67.2515827638101, + 41.197616938884174 + ], + [ + 67.13674008032642, + 41.00296920395572 + ], + [ + 67.2515827638101, + 40.80832146902727 + ], + [ + 67.48126813077745, + 40.80832146902727 + ], + [ + 67.59611081426114, + 41.00296920395572 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.59611081426114, + 41.392264673812626 + ], + [ + 67.48126813077745, + 41.58691240874108 + ], + [ + 67.2515827638101, + 41.58691240874108 + ], + [ + 67.13674008032642, + 41.392264673812626 + ], + [ + 67.2515827638101, + 41.197616938884174 + ], + [ + 67.48126813077745, + 41.197616938884174 + ], + [ + 67.59611081426114, + 41.392264673812626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.59611081426114, + 41.78156014366953 + ], + [ + 67.48126813077745, + 41.97620787859798 + ], + [ + 67.2515827638101, + 41.97620787859798 + ], + [ + 67.13674008032642, + 41.78156014366953 + ], + [ + 67.2515827638101, + 41.58691240874108 + ], + [ + 67.48126813077745, + 41.58691240874108 + ], + [ + 67.59611081426114, + 41.78156014366953 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.59611081426114, + 42.17085561352644 + ], + [ + 67.48126813077745, + 42.365503348454894 + ], + [ + 67.2515827638101, + 42.365503348454894 + ], + [ + 67.13674008032642, + 42.17085561352644 + ], + [ + 67.2515827638101, + 41.97620787859799 + ], + [ + 67.48126813077745, + 41.97620787859799 + ], + [ + 67.59611081426114, + 42.17085561352644 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.59611081426114, + 42.56015108338335 + ], + [ + 67.48126813077745, + 42.754798818311805 + ], + [ + 67.2515827638101, + 42.754798818311805 + ], + [ + 67.13674008032642, + 42.56015108338335 + ], + [ + 67.2515827638101, + 42.3655033484549 + ], + [ + 67.48126813077745, + 42.3655033484549 + ], + [ + 67.59611081426114, + 42.56015108338335 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.59611081426114, + 42.94944655324026 + ], + [ + 67.48126813077745, + 43.14409428816871 + ], + [ + 67.2515827638101, + 43.14409428816871 + ], + [ + 67.13674008032642, + 42.94944655324026 + ], + [ + 67.2515827638101, + 42.754798818311805 + ], + [ + 67.48126813077745, + 42.754798818311805 + ], + [ + 67.59611081426114, + 42.94944655324026 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.59611081426114, + 43.33874202309716 + ], + [ + 67.48126813077745, + 43.53338975802561 + ], + [ + 67.2515827638101, + 43.53338975802561 + ], + [ + 67.13674008032642, + 43.33874202309716 + ], + [ + 67.2515827638101, + 43.14409428816871 + ], + [ + 67.48126813077745, + 43.14409428816871 + ], + [ + 67.59611081426114, + 43.33874202309716 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.59611081426114, + 43.728037492954066 + ], + [ + 67.48126813077745, + 43.92268522788252 + ], + [ + 67.2515827638101, + 43.92268522788252 + ], + [ + 67.13674008032642, + 43.728037492954066 + ], + [ + 67.2515827638101, + 43.53338975802561 + ], + [ + 67.48126813077745, + 43.53338975802561 + ], + [ + 67.59611081426114, + 43.728037492954066 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.59611081426114, + 44.11733296281097 + ], + [ + 67.48126813077745, + 44.31198069773942 + ], + [ + 67.2515827638101, + 44.31198069773942 + ], + [ + 67.13674008032642, + 44.11733296281097 + ], + [ + 67.2515827638101, + 43.92268522788252 + ], + [ + 67.48126813077745, + 43.92268522788252 + ], + [ + 67.59611081426114, + 44.11733296281097 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.59611081426114, + 44.506628432667874 + ], + [ + 67.48126813077745, + 44.701276167596326 + ], + [ + 67.2515827638101, + 44.701276167596326 + ], + [ + 67.13674008032642, + 44.506628432667874 + ], + [ + 67.2515827638101, + 44.31198069773942 + ], + [ + 67.48126813077745, + 44.31198069773942 + ], + [ + 67.59611081426114, + 44.506628432667874 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.59611081426114, + 44.89592390252479 + ], + [ + 67.48126813077745, + 45.090571637453245 + ], + [ + 67.2515827638101, + 45.090571637453245 + ], + [ + 67.13674008032642, + 44.89592390252479 + ], + [ + 67.2515827638101, + 44.70127616759634 + ], + [ + 67.48126813077745, + 44.70127616759634 + ], + [ + 67.59611081426114, + 44.89592390252479 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.59611081426114, + 45.2852193723817 + ], + [ + 67.48126813077745, + 45.47986710731015 + ], + [ + 67.2515827638101, + 45.47986710731015 + ], + [ + 67.13674008032642, + 45.2852193723817 + ], + [ + 67.2515827638101, + 45.090571637453245 + ], + [ + 67.48126813077745, + 45.090571637453245 + ], + [ + 67.59611081426114, + 45.2852193723817 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.59611081426114, + 45.6745148422386 + ], + [ + 67.48126813077745, + 45.86916257716705 + ], + [ + 67.2515827638101, + 45.86916257716705 + ], + [ + 67.13674008032642, + 45.6745148422386 + ], + [ + 67.2515827638101, + 45.47986710731015 + ], + [ + 67.48126813077745, + 45.47986710731015 + ], + [ + 67.59611081426114, + 45.6745148422386 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.59611081426114, + 46.063810312095505 + ], + [ + 67.48126813077745, + 46.25845804702396 + ], + [ + 67.2515827638101, + 46.25845804702396 + ], + [ + 67.13674008032642, + 46.063810312095505 + ], + [ + 67.2515827638101, + 45.86916257716705 + ], + [ + 67.48126813077745, + 45.86916257716705 + ], + [ + 67.59611081426114, + 46.063810312095505 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.59611081426114, + 46.45310578195241 + ], + [ + 67.48126813077745, + 46.64775351688086 + ], + [ + 67.2515827638101, + 46.64775351688086 + ], + [ + 67.13674008032642, + 46.45310578195241 + ], + [ + 67.2515827638101, + 46.25845804702396 + ], + [ + 67.48126813077745, + 46.25845804702396 + ], + [ + 67.59611081426114, + 46.45310578195241 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.59611081426114, + 46.842401251809314 + ], + [ + 67.48126813077745, + 47.037048986737766 + ], + [ + 67.2515827638101, + 47.037048986737766 + ], + [ + 67.13674008032642, + 46.842401251809314 + ], + [ + 67.2515827638101, + 46.64775351688086 + ], + [ + 67.48126813077745, + 46.64775351688086 + ], + [ + 67.59611081426114, + 46.842401251809314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.59611081426114, + 47.23169672166622 + ], + [ + 67.48126813077745, + 47.42634445659467 + ], + [ + 67.2515827638101, + 47.42634445659467 + ], + [ + 67.13674008032642, + 47.23169672166622 + ], + [ + 67.2515827638101, + 47.037048986737766 + ], + [ + 67.48126813077745, + 47.037048986737766 + ], + [ + 67.59611081426114, + 47.23169672166622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.59611081426114, + 47.620992191523136 + ], + [ + 67.48126813077745, + 47.81563992645159 + ], + [ + 67.2515827638101, + 47.81563992645159 + ], + [ + 67.13674008032642, + 47.620992191523136 + ], + [ + 67.2515827638101, + 47.426344456594684 + ], + [ + 67.48126813077745, + 47.426344456594684 + ], + [ + 67.59611081426114, + 47.620992191523136 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.94063886471217, + 12.0004566996162 + ], + [ + 67.82579618122848, + 12.195104434544653 + ], + [ + 67.59611081426114, + 12.195104434544653 + ], + [ + 67.48126813077745, + 12.0004566996162 + ], + [ + 67.59611081426114, + 11.805808964687746 + ], + [ + 67.82579618122848, + 11.805808964687746 + ], + [ + 67.94063886471217, + 12.0004566996162 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.94063886471217, + 12.389752169473105 + ], + [ + 67.82579618122848, + 12.58439990440156 + ], + [ + 67.59611081426114, + 12.58439990440156 + ], + [ + 67.48126813077745, + 12.389752169473105 + ], + [ + 67.59611081426114, + 12.195104434544652 + ], + [ + 67.82579618122848, + 12.195104434544652 + ], + [ + 67.94063886471217, + 12.389752169473105 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.94063886471217, + 12.779047639330013 + ], + [ + 67.82579618122848, + 12.973695374258467 + ], + [ + 67.59611081426114, + 12.973695374258467 + ], + [ + 67.48126813077745, + 12.779047639330013 + ], + [ + 67.59611081426114, + 12.58439990440156 + ], + [ + 67.82579618122848, + 12.58439990440156 + ], + [ + 67.94063886471217, + 12.779047639330013 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.94063886471217, + 13.16834310918692 + ], + [ + 67.82579618122848, + 13.362990844115373 + ], + [ + 67.59611081426114, + 13.362990844115373 + ], + [ + 67.48126813077745, + 13.16834310918692 + ], + [ + 67.59611081426114, + 12.973695374258465 + ], + [ + 67.82579618122848, + 12.973695374258465 + ], + [ + 67.94063886471217, + 13.16834310918692 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.94063886471217, + 13.557638579043825 + ], + [ + 67.82579618122848, + 13.752286313972279 + ], + [ + 67.59611081426114, + 13.752286313972279 + ], + [ + 67.48126813077745, + 13.557638579043825 + ], + [ + 67.59611081426114, + 13.362990844115371 + ], + [ + 67.82579618122848, + 13.362990844115371 + ], + [ + 67.94063886471217, + 13.557638579043825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.94063886471217, + 13.946934048900731 + ], + [ + 67.82579618122848, + 14.141581783829185 + ], + [ + 67.59611081426114, + 14.141581783829185 + ], + [ + 67.48126813077745, + 13.946934048900731 + ], + [ + 67.59611081426114, + 13.752286313972277 + ], + [ + 67.82579618122848, + 13.752286313972277 + ], + [ + 67.94063886471217, + 13.946934048900731 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.94063886471217, + 14.336229518757637 + ], + [ + 67.82579618122848, + 14.530877253686091 + ], + [ + 67.59611081426114, + 14.530877253686091 + ], + [ + 67.48126813077745, + 14.336229518757637 + ], + [ + 67.59611081426114, + 14.141581783829183 + ], + [ + 67.82579618122848, + 14.141581783829183 + ], + [ + 67.94063886471217, + 14.336229518757637 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.94063886471217, + 14.725524988614545 + ], + [ + 67.82579618122848, + 14.920172723542999 + ], + [ + 67.59611081426114, + 14.920172723542999 + ], + [ + 67.48126813077745, + 14.725524988614545 + ], + [ + 67.59611081426114, + 14.530877253686091 + ], + [ + 67.82579618122848, + 14.530877253686091 + ], + [ + 67.94063886471217, + 14.725524988614545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.94063886471217, + 15.114820458471451 + ], + [ + 67.82579618122848, + 15.309468193399905 + ], + [ + 67.59611081426114, + 15.309468193399905 + ], + [ + 67.48126813077745, + 15.114820458471451 + ], + [ + 67.59611081426114, + 14.920172723542997 + ], + [ + 67.82579618122848, + 14.920172723542997 + ], + [ + 67.94063886471217, + 15.114820458471451 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.94063886471217, + 15.504115928328357 + ], + [ + 67.82579618122848, + 15.69876366325681 + ], + [ + 67.59611081426114, + 15.69876366325681 + ], + [ + 67.48126813077745, + 15.504115928328357 + ], + [ + 67.59611081426114, + 15.309468193399903 + ], + [ + 67.82579618122848, + 15.309468193399903 + ], + [ + 67.94063886471217, + 15.504115928328357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.94063886471217, + 15.893411398185265 + ], + [ + 67.82579618122848, + 16.088059133113717 + ], + [ + 67.59611081426114, + 16.088059133113717 + ], + [ + 67.48126813077745, + 15.893411398185265 + ], + [ + 67.59611081426114, + 15.69876366325681 + ], + [ + 67.82579618122848, + 15.69876366325681 + ], + [ + 67.94063886471217, + 15.893411398185265 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.94063886471217, + 16.28270686804217 + ], + [ + 67.82579618122848, + 16.47735460297062 + ], + [ + 67.59611081426114, + 16.47735460297062 + ], + [ + 67.48126813077745, + 16.28270686804217 + ], + [ + 67.59611081426114, + 16.088059133113717 + ], + [ + 67.82579618122848, + 16.088059133113717 + ], + [ + 67.94063886471217, + 16.28270686804217 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.94063886471217, + 16.672002337899077 + ], + [ + 67.82579618122848, + 16.86665007282753 + ], + [ + 67.59611081426114, + 16.86665007282753 + ], + [ + 67.48126813077745, + 16.672002337899077 + ], + [ + 67.59611081426114, + 16.477354602970625 + ], + [ + 67.82579618122848, + 16.477354602970625 + ], + [ + 67.94063886471217, + 16.672002337899077 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.94063886471217, + 17.06129780775598 + ], + [ + 67.82579618122848, + 17.255945542684433 + ], + [ + 67.59611081426114, + 17.255945542684433 + ], + [ + 67.48126813077745, + 17.06129780775598 + ], + [ + 67.59611081426114, + 16.86665007282753 + ], + [ + 67.82579618122848, + 16.86665007282753 + ], + [ + 67.94063886471217, + 17.06129780775598 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.94063886471217, + 17.45059327761289 + ], + [ + 67.82579618122848, + 17.64524101254134 + ], + [ + 67.59611081426114, + 17.64524101254134 + ], + [ + 67.48126813077745, + 17.45059327761289 + ], + [ + 67.59611081426114, + 17.255945542684437 + ], + [ + 67.82579618122848, + 17.255945542684437 + ], + [ + 67.94063886471217, + 17.45059327761289 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.94063886471217, + 17.839888747469793 + ], + [ + 67.82579618122848, + 18.034536482398245 + ], + [ + 67.59611081426114, + 18.034536482398245 + ], + [ + 67.48126813077745, + 17.839888747469793 + ], + [ + 67.59611081426114, + 17.64524101254134 + ], + [ + 67.82579618122848, + 17.64524101254134 + ], + [ + 67.94063886471217, + 17.839888747469793 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.94063886471217, + 18.2291842173267 + ], + [ + 67.82579618122848, + 18.423831952255153 + ], + [ + 67.59611081426114, + 18.423831952255153 + ], + [ + 67.48126813077745, + 18.2291842173267 + ], + [ + 67.59611081426114, + 18.03453648239825 + ], + [ + 67.82579618122848, + 18.03453648239825 + ], + [ + 67.94063886471217, + 18.2291842173267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.94063886471217, + 18.61847968718361 + ], + [ + 67.82579618122848, + 18.81312742211206 + ], + [ + 67.59611081426114, + 18.81312742211206 + ], + [ + 67.48126813077745, + 18.61847968718361 + ], + [ + 67.59611081426114, + 18.423831952255156 + ], + [ + 67.82579618122848, + 18.423831952255156 + ], + [ + 67.94063886471217, + 18.61847968718361 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.94063886471217, + 19.007775157040513 + ], + [ + 67.82579618122848, + 19.202422891968965 + ], + [ + 67.59611081426114, + 19.202422891968965 + ], + [ + 67.48126813077745, + 19.007775157040513 + ], + [ + 67.59611081426114, + 18.81312742211206 + ], + [ + 67.82579618122848, + 18.81312742211206 + ], + [ + 67.94063886471217, + 19.007775157040513 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.94063886471217, + 19.39707062689742 + ], + [ + 67.82579618122848, + 19.591718361825873 + ], + [ + 67.59611081426114, + 19.591718361825873 + ], + [ + 67.48126813077745, + 19.39707062689742 + ], + [ + 67.59611081426114, + 19.20242289196897 + ], + [ + 67.82579618122848, + 19.20242289196897 + ], + [ + 67.94063886471217, + 19.39707062689742 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.94063886471217, + 19.78636609675433 + ], + [ + 67.82579618122848, + 19.98101383168278 + ], + [ + 67.59611081426114, + 19.98101383168278 + ], + [ + 67.48126813077745, + 19.78636609675433 + ], + [ + 67.59611081426114, + 19.591718361825876 + ], + [ + 67.82579618122848, + 19.591718361825876 + ], + [ + 67.94063886471217, + 19.78636609675433 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.94063886471217, + 20.175661566611232 + ], + [ + 67.82579618122848, + 20.370309301539685 + ], + [ + 67.59611081426114, + 20.370309301539685 + ], + [ + 67.48126813077745, + 20.175661566611232 + ], + [ + 67.59611081426114, + 19.98101383168278 + ], + [ + 67.82579618122848, + 19.98101383168278 + ], + [ + 67.94063886471217, + 20.175661566611232 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.94063886471217, + 20.564957036468137 + ], + [ + 67.82579618122848, + 20.75960477139659 + ], + [ + 67.59611081426114, + 20.75960477139659 + ], + [ + 67.48126813077745, + 20.564957036468137 + ], + [ + 67.59611081426114, + 20.370309301539685 + ], + [ + 67.82579618122848, + 20.370309301539685 + ], + [ + 67.94063886471217, + 20.564957036468137 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.94063886471217, + 20.954252506325044 + ], + [ + 67.82579618122848, + 21.148900241253497 + ], + [ + 67.59611081426114, + 21.148900241253497 + ], + [ + 67.48126813077745, + 20.954252506325044 + ], + [ + 67.59611081426114, + 20.759604771396592 + ], + [ + 67.82579618122848, + 20.759604771396592 + ], + [ + 67.94063886471217, + 20.954252506325044 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.94063886471217, + 21.343547976181952 + ], + [ + 67.82579618122848, + 21.538195711110404 + ], + [ + 67.59611081426114, + 21.538195711110404 + ], + [ + 67.48126813077745, + 21.343547976181952 + ], + [ + 67.59611081426114, + 21.1489002412535 + ], + [ + 67.82579618122848, + 21.1489002412535 + ], + [ + 67.94063886471217, + 21.343547976181952 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.94063886471217, + 21.732843446038856 + ], + [ + 67.82579618122848, + 21.92749118096731 + ], + [ + 67.59611081426114, + 21.92749118096731 + ], + [ + 67.48126813077745, + 21.732843446038856 + ], + [ + 67.59611081426114, + 21.538195711110404 + ], + [ + 67.82579618122848, + 21.538195711110404 + ], + [ + 67.94063886471217, + 21.732843446038856 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.94063886471217, + 22.122138915895764 + ], + [ + 67.82579618122848, + 22.316786650824216 + ], + [ + 67.59611081426114, + 22.316786650824216 + ], + [ + 67.48126813077745, + 22.122138915895764 + ], + [ + 67.59611081426114, + 21.927491180967312 + ], + [ + 67.82579618122848, + 21.927491180967312 + ], + [ + 67.94063886471217, + 22.122138915895764 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.94063886471217, + 22.511434385752672 + ], + [ + 67.82579618122848, + 22.706082120681124 + ], + [ + 67.59611081426114, + 22.706082120681124 + ], + [ + 67.48126813077745, + 22.511434385752672 + ], + [ + 67.59611081426114, + 22.31678665082422 + ], + [ + 67.82579618122848, + 22.31678665082422 + ], + [ + 67.94063886471217, + 22.511434385752672 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.94063886471217, + 22.900729855609576 + ], + [ + 67.82579618122848, + 23.09537759053803 + ], + [ + 67.59611081426114, + 23.09537759053803 + ], + [ + 67.48126813077745, + 22.900729855609576 + ], + [ + 67.59611081426114, + 22.706082120681124 + ], + [ + 67.82579618122848, + 22.706082120681124 + ], + [ + 67.94063886471217, + 22.900729855609576 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.94063886471217, + 23.290025325466484 + ], + [ + 67.82579618122848, + 23.484673060394936 + ], + [ + 67.59611081426114, + 23.484673060394936 + ], + [ + 67.48126813077745, + 23.290025325466484 + ], + [ + 67.59611081426114, + 23.095377590538032 + ], + [ + 67.82579618122848, + 23.095377590538032 + ], + [ + 67.94063886471217, + 23.290025325466484 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.94063886471217, + 23.67932079532339 + ], + [ + 67.82579618122848, + 23.873968530251844 + ], + [ + 67.59611081426114, + 23.873968530251844 + ], + [ + 67.48126813077745, + 23.67932079532339 + ], + [ + 67.59611081426114, + 23.48467306039494 + ], + [ + 67.82579618122848, + 23.48467306039494 + ], + [ + 67.94063886471217, + 23.67932079532339 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.94063886471217, + 24.068616265180296 + ], + [ + 67.82579618122848, + 24.263264000108748 + ], + [ + 67.59611081426114, + 24.263264000108748 + ], + [ + 67.48126813077745, + 24.068616265180296 + ], + [ + 67.59611081426114, + 23.873968530251844 + ], + [ + 67.82579618122848, + 23.873968530251844 + ], + [ + 67.94063886471217, + 24.068616265180296 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.94063886471217, + 24.4579117350372 + ], + [ + 67.82579618122848, + 24.652559469965652 + ], + [ + 67.59611081426114, + 24.652559469965652 + ], + [ + 67.48126813077745, + 24.4579117350372 + ], + [ + 67.59611081426114, + 24.263264000108748 + ], + [ + 67.82579618122848, + 24.263264000108748 + ], + [ + 67.94063886471217, + 24.4579117350372 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.94063886471217, + 24.847207204894108 + ], + [ + 67.82579618122848, + 25.04185493982256 + ], + [ + 67.59611081426114, + 25.04185493982256 + ], + [ + 67.48126813077745, + 24.847207204894108 + ], + [ + 67.59611081426114, + 24.652559469965656 + ], + [ + 67.82579618122848, + 24.652559469965656 + ], + [ + 67.94063886471217, + 24.847207204894108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.94063886471217, + 25.236502674751016 + ], + [ + 67.82579618122848, + 25.431150409679468 + ], + [ + 67.59611081426114, + 25.431150409679468 + ], + [ + 67.48126813077745, + 25.236502674751016 + ], + [ + 67.59611081426114, + 25.041854939822564 + ], + [ + 67.82579618122848, + 25.041854939822564 + ], + [ + 67.94063886471217, + 25.236502674751016 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.94063886471217, + 25.62579814460792 + ], + [ + 67.82579618122848, + 25.820445879536372 + ], + [ + 67.59611081426114, + 25.820445879536372 + ], + [ + 67.48126813077745, + 25.62579814460792 + ], + [ + 67.59611081426114, + 25.431150409679468 + ], + [ + 67.82579618122848, + 25.431150409679468 + ], + [ + 67.94063886471217, + 25.62579814460792 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.94063886471217, + 26.015093614464828 + ], + [ + 67.82579618122848, + 26.20974134939328 + ], + [ + 67.59611081426114, + 26.20974134939328 + ], + [ + 67.48126813077745, + 26.015093614464828 + ], + [ + 67.59611081426114, + 25.820445879536376 + ], + [ + 67.82579618122848, + 25.820445879536376 + ], + [ + 67.94063886471217, + 26.015093614464828 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.94063886471217, + 26.404389084321735 + ], + [ + 67.82579618122848, + 26.599036819250188 + ], + [ + 67.59611081426114, + 26.599036819250188 + ], + [ + 67.48126813077745, + 26.404389084321735 + ], + [ + 67.59611081426114, + 26.209741349393283 + ], + [ + 67.82579618122848, + 26.209741349393283 + ], + [ + 67.94063886471217, + 26.404389084321735 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.94063886471217, + 26.79368455417864 + ], + [ + 67.82579618122848, + 26.988332289107092 + ], + [ + 67.59611081426114, + 26.988332289107092 + ], + [ + 67.48126813077745, + 26.79368455417864 + ], + [ + 67.59611081426114, + 26.599036819250188 + ], + [ + 67.82579618122848, + 26.599036819250188 + ], + [ + 67.94063886471217, + 26.79368455417864 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.94063886471217, + 27.182980024035547 + ], + [ + 67.82579618122848, + 27.377627758964 + ], + [ + 67.59611081426114, + 27.377627758964 + ], + [ + 67.48126813077745, + 27.182980024035547 + ], + [ + 67.59611081426114, + 26.988332289107095 + ], + [ + 67.82579618122848, + 26.988332289107095 + ], + [ + 67.94063886471217, + 27.182980024035547 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.94063886471217, + 27.572275493892455 + ], + [ + 67.82579618122848, + 27.766923228820907 + ], + [ + 67.59611081426114, + 27.766923228820907 + ], + [ + 67.48126813077745, + 27.572275493892455 + ], + [ + 67.59611081426114, + 27.377627758964003 + ], + [ + 67.82579618122848, + 27.377627758964003 + ], + [ + 67.94063886471217, + 27.572275493892455 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.94063886471217, + 27.96157096374936 + ], + [ + 67.82579618122848, + 28.15621869867781 + ], + [ + 67.59611081426114, + 28.15621869867781 + ], + [ + 67.48126813077745, + 27.96157096374936 + ], + [ + 67.59611081426114, + 27.766923228820907 + ], + [ + 67.82579618122848, + 27.766923228820907 + ], + [ + 67.94063886471217, + 27.96157096374936 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.94063886471217, + 28.350866433606267 + ], + [ + 67.82579618122848, + 28.54551416853472 + ], + [ + 67.59611081426114, + 28.54551416853472 + ], + [ + 67.48126813077745, + 28.350866433606267 + ], + [ + 67.59611081426114, + 28.156218698677815 + ], + [ + 67.82579618122848, + 28.156218698677815 + ], + [ + 67.94063886471217, + 28.350866433606267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.94063886471217, + 28.74016190346317 + ], + [ + 67.82579618122848, + 28.934809638391624 + ], + [ + 67.59611081426114, + 28.934809638391624 + ], + [ + 67.48126813077745, + 28.74016190346317 + ], + [ + 67.59611081426114, + 28.54551416853472 + ], + [ + 67.82579618122848, + 28.54551416853472 + ], + [ + 67.94063886471217, + 28.74016190346317 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.94063886471217, + 29.12945737332008 + ], + [ + 67.82579618122848, + 29.32410510824853 + ], + [ + 67.59611081426114, + 29.32410510824853 + ], + [ + 67.48126813077745, + 29.12945737332008 + ], + [ + 67.59611081426114, + 28.934809638391627 + ], + [ + 67.82579618122848, + 28.934809638391627 + ], + [ + 67.94063886471217, + 29.12945737332008 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.94063886471217, + 29.518752843176983 + ], + [ + 67.82579618122848, + 29.713400578105436 + ], + [ + 67.59611081426114, + 29.713400578105436 + ], + [ + 67.48126813077745, + 29.518752843176983 + ], + [ + 67.59611081426114, + 29.32410510824853 + ], + [ + 67.82579618122848, + 29.32410510824853 + ], + [ + 67.94063886471217, + 29.518752843176983 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.94063886471217, + 29.90804831303389 + ], + [ + 67.82579618122848, + 30.102696047962343 + ], + [ + 67.59611081426114, + 30.102696047962343 + ], + [ + 67.48126813077745, + 29.90804831303389 + ], + [ + 67.59611081426114, + 29.71340057810544 + ], + [ + 67.82579618122848, + 29.71340057810544 + ], + [ + 67.94063886471217, + 29.90804831303389 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.94063886471217, + 30.297343782890795 + ], + [ + 67.82579618122848, + 30.491991517819248 + ], + [ + 67.59611081426114, + 30.491991517819248 + ], + [ + 67.48126813077745, + 30.297343782890795 + ], + [ + 67.59611081426114, + 30.102696047962343 + ], + [ + 67.82579618122848, + 30.102696047962343 + ], + [ + 67.94063886471217, + 30.297343782890795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.94063886471217, + 30.686639252747703 + ], + [ + 67.82579618122848, + 30.881286987676155 + ], + [ + 67.59611081426114, + 30.881286987676155 + ], + [ + 67.48126813077745, + 30.686639252747703 + ], + [ + 67.59611081426114, + 30.49199151781925 + ], + [ + 67.82579618122848, + 30.49199151781925 + ], + [ + 67.94063886471217, + 30.686639252747703 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.94063886471217, + 31.07593472260461 + ], + [ + 67.82579618122848, + 31.270582457533063 + ], + [ + 67.59611081426114, + 31.270582457533063 + ], + [ + 67.48126813077745, + 31.07593472260461 + ], + [ + 67.59611081426114, + 30.88128698767616 + ], + [ + 67.82579618122848, + 30.88128698767616 + ], + [ + 67.94063886471217, + 31.07593472260461 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.94063886471217, + 31.465230192461515 + ], + [ + 67.82579618122848, + 31.659877927389967 + ], + [ + 67.59611081426114, + 31.659877927389967 + ], + [ + 67.48126813077745, + 31.465230192461515 + ], + [ + 67.59611081426114, + 31.270582457533063 + ], + [ + 67.82579618122848, + 31.270582457533063 + ], + [ + 67.94063886471217, + 31.465230192461515 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.94063886471217, + 31.854525662318423 + ], + [ + 67.82579618122848, + 32.049173397246875 + ], + [ + 67.59611081426114, + 32.049173397246875 + ], + [ + 67.48126813077745, + 31.854525662318423 + ], + [ + 67.59611081426114, + 31.65987792738997 + ], + [ + 67.82579618122848, + 31.65987792738997 + ], + [ + 67.94063886471217, + 31.854525662318423 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.94063886471217, + 32.24382113217533 + ], + [ + 67.82579618122848, + 32.43846886710378 + ], + [ + 67.59611081426114, + 32.43846886710378 + ], + [ + 67.48126813077745, + 32.24382113217533 + ], + [ + 67.59611081426114, + 32.049173397246875 + ], + [ + 67.82579618122848, + 32.049173397246875 + ], + [ + 67.94063886471217, + 32.24382113217533 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.94063886471217, + 32.63311660203224 + ], + [ + 67.82579618122848, + 32.82776433696069 + ], + [ + 67.59611081426114, + 32.82776433696069 + ], + [ + 67.48126813077745, + 32.63311660203224 + ], + [ + 67.59611081426114, + 32.438468867103786 + ], + [ + 67.82579618122848, + 32.438468867103786 + ], + [ + 67.94063886471217, + 32.63311660203224 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.94063886471217, + 33.02241207188914 + ], + [ + 67.82579618122848, + 33.217059806817595 + ], + [ + 67.59611081426114, + 33.217059806817595 + ], + [ + 67.48126813077745, + 33.02241207188914 + ], + [ + 67.59611081426114, + 32.82776433696069 + ], + [ + 67.82579618122848, + 32.82776433696069 + ], + [ + 67.94063886471217, + 33.02241207188914 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.94063886471217, + 33.41170754174605 + ], + [ + 67.82579618122848, + 33.6063552766745 + ], + [ + 67.59611081426114, + 33.6063552766745 + ], + [ + 67.48126813077745, + 33.41170754174605 + ], + [ + 67.59611081426114, + 33.217059806817595 + ], + [ + 67.82579618122848, + 33.217059806817595 + ], + [ + 67.94063886471217, + 33.41170754174605 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.94063886471217, + 33.80100301160295 + ], + [ + 67.82579618122848, + 33.9956507465314 + ], + [ + 67.59611081426114, + 33.9956507465314 + ], + [ + 67.48126813077745, + 33.80100301160295 + ], + [ + 67.59611081426114, + 33.6063552766745 + ], + [ + 67.82579618122848, + 33.6063552766745 + ], + [ + 67.94063886471217, + 33.80100301160295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.94063886471217, + 34.190298481459855 + ], + [ + 67.82579618122848, + 34.38494621638831 + ], + [ + 67.59611081426114, + 34.38494621638831 + ], + [ + 67.48126813077745, + 34.190298481459855 + ], + [ + 67.59611081426114, + 33.9956507465314 + ], + [ + 67.82579618122848, + 33.9956507465314 + ], + [ + 67.94063886471217, + 34.190298481459855 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.94063886471217, + 34.57959395131677 + ], + [ + 67.82579618122848, + 34.77424168624522 + ], + [ + 67.59611081426114, + 34.77424168624522 + ], + [ + 67.48126813077745, + 34.57959395131677 + ], + [ + 67.59611081426114, + 34.384946216388315 + ], + [ + 67.82579618122848, + 34.384946216388315 + ], + [ + 67.94063886471217, + 34.57959395131677 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.94063886471217, + 34.96888942117368 + ], + [ + 67.82579618122848, + 35.16353715610213 + ], + [ + 67.59611081426114, + 35.16353715610213 + ], + [ + 67.48126813077745, + 34.96888942117368 + ], + [ + 67.59611081426114, + 34.774241686245226 + ], + [ + 67.82579618122848, + 34.774241686245226 + ], + [ + 67.94063886471217, + 34.96888942117368 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.94063886471217, + 35.35818489103058 + ], + [ + 67.82579618122848, + 35.552832625959034 + ], + [ + 67.59611081426114, + 35.552832625959034 + ], + [ + 67.48126813077745, + 35.35818489103058 + ], + [ + 67.59611081426114, + 35.16353715610213 + ], + [ + 67.82579618122848, + 35.16353715610213 + ], + [ + 67.94063886471217, + 35.35818489103058 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.94063886471217, + 35.74748036088749 + ], + [ + 67.82579618122848, + 35.94212809581594 + ], + [ + 67.59611081426114, + 35.94212809581594 + ], + [ + 67.48126813077745, + 35.74748036088749 + ], + [ + 67.59611081426114, + 35.552832625959034 + ], + [ + 67.82579618122848, + 35.552832625959034 + ], + [ + 67.94063886471217, + 35.74748036088749 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.94063886471217, + 36.13677583074439 + ], + [ + 67.82579618122848, + 36.33142356567284 + ], + [ + 67.59611081426114, + 36.33142356567284 + ], + [ + 67.48126813077745, + 36.13677583074439 + ], + [ + 67.59611081426114, + 35.94212809581594 + ], + [ + 67.82579618122848, + 35.94212809581594 + ], + [ + 67.94063886471217, + 36.13677583074439 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.94063886471217, + 36.526071300601295 + ], + [ + 67.82579618122848, + 36.72071903552975 + ], + [ + 67.59611081426114, + 36.72071903552975 + ], + [ + 67.48126813077745, + 36.526071300601295 + ], + [ + 67.59611081426114, + 36.33142356567284 + ], + [ + 67.82579618122848, + 36.33142356567284 + ], + [ + 67.94063886471217, + 36.526071300601295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.94063886471217, + 36.915366770458206 + ], + [ + 67.82579618122848, + 37.11001450538666 + ], + [ + 67.59611081426114, + 37.11001450538666 + ], + [ + 67.48126813077745, + 36.915366770458206 + ], + [ + 67.59611081426114, + 36.720719035529754 + ], + [ + 67.82579618122848, + 36.720719035529754 + ], + [ + 67.94063886471217, + 36.915366770458206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.94063886471217, + 37.30466224031511 + ], + [ + 67.82579618122848, + 37.49930997524356 + ], + [ + 67.59611081426114, + 37.49930997524356 + ], + [ + 67.48126813077745, + 37.30466224031511 + ], + [ + 67.59611081426114, + 37.11001450538666 + ], + [ + 67.82579618122848, + 37.11001450538666 + ], + [ + 67.94063886471217, + 37.30466224031511 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.94063886471217, + 37.69395771017202 + ], + [ + 67.82579618122848, + 37.888605445100474 + ], + [ + 67.59611081426114, + 37.888605445100474 + ], + [ + 67.48126813077745, + 37.69395771017202 + ], + [ + 67.59611081426114, + 37.49930997524357 + ], + [ + 67.82579618122848, + 37.49930997524357 + ], + [ + 67.94063886471217, + 37.69395771017202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.94063886471217, + 38.083253180028926 + ], + [ + 67.82579618122848, + 38.27790091495738 + ], + [ + 67.59611081426114, + 38.27790091495738 + ], + [ + 67.48126813077745, + 38.083253180028926 + ], + [ + 67.59611081426114, + 37.888605445100474 + ], + [ + 67.82579618122848, + 37.888605445100474 + ], + [ + 67.94063886471217, + 38.083253180028926 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.94063886471217, + 38.47254864988583 + ], + [ + 67.82579618122848, + 38.66719638481428 + ], + [ + 67.59611081426114, + 38.66719638481428 + ], + [ + 67.48126813077745, + 38.47254864988583 + ], + [ + 67.59611081426114, + 38.27790091495738 + ], + [ + 67.82579618122848, + 38.27790091495738 + ], + [ + 67.94063886471217, + 38.47254864988583 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.94063886471217, + 38.861844119742734 + ], + [ + 67.82579618122848, + 39.05649185467119 + ], + [ + 67.59611081426114, + 39.05649185467119 + ], + [ + 67.48126813077745, + 38.861844119742734 + ], + [ + 67.59611081426114, + 38.66719638481428 + ], + [ + 67.82579618122848, + 38.66719638481428 + ], + [ + 67.94063886471217, + 38.861844119742734 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.94063886471217, + 39.25113958959964 + ], + [ + 67.82579618122848, + 39.44578732452809 + ], + [ + 67.59611081426114, + 39.44578732452809 + ], + [ + 67.48126813077745, + 39.25113958959964 + ], + [ + 67.59611081426114, + 39.05649185467119 + ], + [ + 67.82579618122848, + 39.05649185467119 + ], + [ + 67.94063886471217, + 39.25113958959964 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.94063886471217, + 39.64043505945655 + ], + [ + 67.82579618122848, + 39.835082794385 + ], + [ + 67.59611081426114, + 39.835082794385 + ], + [ + 67.48126813077745, + 39.64043505945655 + ], + [ + 67.59611081426114, + 39.4457873245281 + ], + [ + 67.82579618122848, + 39.4457873245281 + ], + [ + 67.94063886471217, + 39.64043505945655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.94063886471217, + 40.029730529313454 + ], + [ + 67.82579618122848, + 40.224378264241906 + ], + [ + 67.59611081426114, + 40.224378264241906 + ], + [ + 67.48126813077745, + 40.029730529313454 + ], + [ + 67.59611081426114, + 39.835082794385 + ], + [ + 67.82579618122848, + 39.835082794385 + ], + [ + 67.94063886471217, + 40.029730529313454 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.94063886471217, + 40.419025999170366 + ], + [ + 67.82579618122848, + 40.61367373409882 + ], + [ + 67.59611081426114, + 40.61367373409882 + ], + [ + 67.48126813077745, + 40.419025999170366 + ], + [ + 67.59611081426114, + 40.22437826424191 + ], + [ + 67.82579618122848, + 40.22437826424191 + ], + [ + 67.94063886471217, + 40.419025999170366 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.94063886471217, + 40.80832146902727 + ], + [ + 67.82579618122848, + 41.00296920395572 + ], + [ + 67.59611081426114, + 41.00296920395572 + ], + [ + 67.48126813077745, + 40.80832146902727 + ], + [ + 67.59611081426114, + 40.61367373409882 + ], + [ + 67.82579618122848, + 40.61367373409882 + ], + [ + 67.94063886471217, + 40.80832146902727 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.94063886471217, + 41.197616938884174 + ], + [ + 67.82579618122848, + 41.392264673812626 + ], + [ + 67.59611081426114, + 41.392264673812626 + ], + [ + 67.48126813077745, + 41.197616938884174 + ], + [ + 67.59611081426114, + 41.00296920395572 + ], + [ + 67.82579618122848, + 41.00296920395572 + ], + [ + 67.94063886471217, + 41.197616938884174 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.94063886471217, + 41.58691240874108 + ], + [ + 67.82579618122848, + 41.78156014366953 + ], + [ + 67.59611081426114, + 41.78156014366953 + ], + [ + 67.48126813077745, + 41.58691240874108 + ], + [ + 67.59611081426114, + 41.392264673812626 + ], + [ + 67.82579618122848, + 41.392264673812626 + ], + [ + 67.94063886471217, + 41.58691240874108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.94063886471217, + 41.97620787859798 + ], + [ + 67.82579618122848, + 42.170855613526435 + ], + [ + 67.59611081426114, + 42.170855613526435 + ], + [ + 67.48126813077745, + 41.97620787859798 + ], + [ + 67.59611081426114, + 41.78156014366953 + ], + [ + 67.82579618122848, + 41.78156014366953 + ], + [ + 67.94063886471217, + 41.97620787859798 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.94063886471217, + 42.365503348454894 + ], + [ + 67.82579618122848, + 42.560151083383346 + ], + [ + 67.59611081426114, + 42.560151083383346 + ], + [ + 67.48126813077745, + 42.365503348454894 + ], + [ + 67.59611081426114, + 42.17085561352644 + ], + [ + 67.82579618122848, + 42.17085561352644 + ], + [ + 67.94063886471217, + 42.365503348454894 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.94063886471217, + 42.754798818311805 + ], + [ + 67.82579618122848, + 42.94944655324026 + ], + [ + 67.59611081426114, + 42.94944655324026 + ], + [ + 67.48126813077745, + 42.754798818311805 + ], + [ + 67.59611081426114, + 42.56015108338335 + ], + [ + 67.82579618122848, + 42.56015108338335 + ], + [ + 67.94063886471217, + 42.754798818311805 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.94063886471217, + 43.14409428816871 + ], + [ + 67.82579618122848, + 43.33874202309716 + ], + [ + 67.59611081426114, + 43.33874202309716 + ], + [ + 67.48126813077745, + 43.14409428816871 + ], + [ + 67.59611081426114, + 42.94944655324026 + ], + [ + 67.82579618122848, + 42.94944655324026 + ], + [ + 67.94063886471217, + 43.14409428816871 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.94063886471217, + 43.53338975802561 + ], + [ + 67.82579618122848, + 43.728037492954066 + ], + [ + 67.59611081426114, + 43.728037492954066 + ], + [ + 67.48126813077745, + 43.53338975802561 + ], + [ + 67.59611081426114, + 43.33874202309716 + ], + [ + 67.82579618122848, + 43.33874202309716 + ], + [ + 67.94063886471217, + 43.53338975802561 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.94063886471217, + 43.92268522788252 + ], + [ + 67.82579618122848, + 44.11733296281097 + ], + [ + 67.59611081426114, + 44.11733296281097 + ], + [ + 67.48126813077745, + 43.92268522788252 + ], + [ + 67.59611081426114, + 43.728037492954066 + ], + [ + 67.82579618122848, + 43.728037492954066 + ], + [ + 67.94063886471217, + 43.92268522788252 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.94063886471217, + 44.31198069773942 + ], + [ + 67.82579618122848, + 44.506628432667874 + ], + [ + 67.59611081426114, + 44.506628432667874 + ], + [ + 67.48126813077745, + 44.31198069773942 + ], + [ + 67.59611081426114, + 44.11733296281097 + ], + [ + 67.82579618122848, + 44.11733296281097 + ], + [ + 67.94063886471217, + 44.31198069773942 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.94063886471217, + 44.701276167596326 + ], + [ + 67.82579618122848, + 44.89592390252478 + ], + [ + 67.59611081426114, + 44.89592390252478 + ], + [ + 67.48126813077745, + 44.701276167596326 + ], + [ + 67.59611081426114, + 44.506628432667874 + ], + [ + 67.82579618122848, + 44.506628432667874 + ], + [ + 67.94063886471217, + 44.701276167596326 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.94063886471217, + 45.090571637453245 + ], + [ + 67.82579618122848, + 45.2852193723817 + ], + [ + 67.59611081426114, + 45.2852193723817 + ], + [ + 67.48126813077745, + 45.090571637453245 + ], + [ + 67.59611081426114, + 44.89592390252479 + ], + [ + 67.82579618122848, + 44.89592390252479 + ], + [ + 67.94063886471217, + 45.090571637453245 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.94063886471217, + 45.47986710731015 + ], + [ + 67.82579618122848, + 45.6745148422386 + ], + [ + 67.59611081426114, + 45.6745148422386 + ], + [ + 67.48126813077745, + 45.47986710731015 + ], + [ + 67.59611081426114, + 45.2852193723817 + ], + [ + 67.82579618122848, + 45.2852193723817 + ], + [ + 67.94063886471217, + 45.47986710731015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.94063886471217, + 45.86916257716705 + ], + [ + 67.82579618122848, + 46.063810312095505 + ], + [ + 67.59611081426114, + 46.063810312095505 + ], + [ + 67.48126813077745, + 45.86916257716705 + ], + [ + 67.59611081426114, + 45.6745148422386 + ], + [ + 67.82579618122848, + 45.6745148422386 + ], + [ + 67.94063886471217, + 45.86916257716705 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.94063886471217, + 46.25845804702396 + ], + [ + 67.82579618122848, + 46.45310578195241 + ], + [ + 67.59611081426114, + 46.45310578195241 + ], + [ + 67.48126813077745, + 46.25845804702396 + ], + [ + 67.59611081426114, + 46.063810312095505 + ], + [ + 67.82579618122848, + 46.063810312095505 + ], + [ + 67.94063886471217, + 46.25845804702396 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.94063886471217, + 46.64775351688086 + ], + [ + 67.82579618122848, + 46.842401251809314 + ], + [ + 67.59611081426114, + 46.842401251809314 + ], + [ + 67.48126813077745, + 46.64775351688086 + ], + [ + 67.59611081426114, + 46.45310578195241 + ], + [ + 67.82579618122848, + 46.45310578195241 + ], + [ + 67.94063886471217, + 46.64775351688086 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.94063886471217, + 47.037048986737766 + ], + [ + 67.82579618122848, + 47.23169672166622 + ], + [ + 67.59611081426114, + 47.23169672166622 + ], + [ + 67.48126813077745, + 47.037048986737766 + ], + [ + 67.59611081426114, + 46.842401251809314 + ], + [ + 67.82579618122848, + 46.842401251809314 + ], + [ + 67.94063886471217, + 47.037048986737766 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.94063886471217, + 47.42634445659467 + ], + [ + 67.82579618122848, + 47.62099219152312 + ], + [ + 67.59611081426114, + 47.62099219152312 + ], + [ + 67.48126813077745, + 47.42634445659467 + ], + [ + 67.59611081426114, + 47.23169672166622 + ], + [ + 67.82579618122848, + 47.23169672166622 + ], + [ + 67.94063886471217, + 47.42634445659467 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.94063886471217, + 47.81563992645159 + ], + [ + 67.82579618122848, + 48.01028766138004 + ], + [ + 67.59611081426114, + 48.01028766138004 + ], + [ + 67.48126813077745, + 47.81563992645159 + ], + [ + 67.59611081426114, + 47.620992191523136 + ], + [ + 67.82579618122848, + 47.620992191523136 + ], + [ + 67.94063886471217, + 47.81563992645159 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.28516691516322, + 11.805808964687746 + ], + [ + 68.17032423167953, + 12.0004566996162 + ], + [ + 67.94063886471218, + 12.0004566996162 + ], + [ + 67.8257961812285, + 11.805808964687746 + ], + [ + 67.94063886471218, + 11.611161229759292 + ], + [ + 68.17032423167953, + 11.611161229759292 + ], + [ + 68.28516691516322, + 11.805808964687746 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.28516691516322, + 12.195104434544652 + ], + [ + 68.17032423167953, + 12.389752169473105 + ], + [ + 67.94063886471218, + 12.389752169473105 + ], + [ + 67.8257961812285, + 12.195104434544652 + ], + [ + 67.94063886471218, + 12.000456699616198 + ], + [ + 68.17032423167953, + 12.000456699616198 + ], + [ + 68.28516691516322, + 12.195104434544652 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.28516691516322, + 12.58439990440156 + ], + [ + 68.17032423167953, + 12.779047639330013 + ], + [ + 67.94063886471218, + 12.779047639330013 + ], + [ + 67.8257961812285, + 12.58439990440156 + ], + [ + 67.94063886471218, + 12.389752169473105 + ], + [ + 68.17032423167953, + 12.389752169473105 + ], + [ + 68.28516691516322, + 12.58439990440156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.28516691516322, + 12.973695374258465 + ], + [ + 68.17032423167953, + 13.16834310918692 + ], + [ + 67.94063886471218, + 13.16834310918692 + ], + [ + 67.8257961812285, + 12.973695374258465 + ], + [ + 67.94063886471218, + 12.779047639330011 + ], + [ + 68.17032423167953, + 12.779047639330011 + ], + [ + 68.28516691516322, + 12.973695374258465 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.28516691516322, + 13.362990844115371 + ], + [ + 68.17032423167953, + 13.557638579043825 + ], + [ + 67.94063886471218, + 13.557638579043825 + ], + [ + 67.8257961812285, + 13.362990844115371 + ], + [ + 67.94063886471218, + 13.168343109186917 + ], + [ + 68.17032423167953, + 13.168343109186917 + ], + [ + 68.28516691516322, + 13.362990844115371 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.28516691516322, + 13.752286313972277 + ], + [ + 68.17032423167953, + 13.946934048900731 + ], + [ + 67.94063886471218, + 13.946934048900731 + ], + [ + 67.8257961812285, + 13.752286313972277 + ], + [ + 67.94063886471218, + 13.557638579043823 + ], + [ + 68.17032423167953, + 13.557638579043823 + ], + [ + 68.28516691516322, + 13.752286313972277 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.28516691516322, + 14.141581783829183 + ], + [ + 68.17032423167953, + 14.336229518757637 + ], + [ + 67.94063886471218, + 14.336229518757637 + ], + [ + 67.8257961812285, + 14.141581783829183 + ], + [ + 67.94063886471218, + 13.94693404890073 + ], + [ + 68.17032423167953, + 13.94693404890073 + ], + [ + 68.28516691516322, + 14.141581783829183 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.28516691516322, + 14.530877253686091 + ], + [ + 68.17032423167953, + 14.725524988614545 + ], + [ + 67.94063886471218, + 14.725524988614545 + ], + [ + 67.8257961812285, + 14.530877253686091 + ], + [ + 67.94063886471218, + 14.336229518757637 + ], + [ + 68.17032423167953, + 14.336229518757637 + ], + [ + 68.28516691516322, + 14.530877253686091 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.28516691516322, + 14.920172723542997 + ], + [ + 68.17032423167953, + 15.114820458471451 + ], + [ + 67.94063886471218, + 15.114820458471451 + ], + [ + 67.8257961812285, + 14.920172723542997 + ], + [ + 67.94063886471218, + 14.725524988614543 + ], + [ + 68.17032423167953, + 14.725524988614543 + ], + [ + 68.28516691516322, + 14.920172723542997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.28516691516322, + 15.309468193399903 + ], + [ + 68.17032423167953, + 15.504115928328357 + ], + [ + 67.94063886471218, + 15.504115928328357 + ], + [ + 67.8257961812285, + 15.309468193399903 + ], + [ + 67.94063886471218, + 15.11482045847145 + ], + [ + 68.17032423167953, + 15.11482045847145 + ], + [ + 68.28516691516322, + 15.309468193399903 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.28516691516322, + 15.69876366325681 + ], + [ + 68.17032423167953, + 15.893411398185265 + ], + [ + 67.94063886471218, + 15.893411398185265 + ], + [ + 67.8257961812285, + 15.69876366325681 + ], + [ + 67.94063886471218, + 15.504115928328357 + ], + [ + 68.17032423167953, + 15.504115928328357 + ], + [ + 68.28516691516322, + 15.69876366325681 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.28516691516322, + 16.088059133113717 + ], + [ + 68.17032423167953, + 16.28270686804217 + ], + [ + 67.94063886471218, + 16.28270686804217 + ], + [ + 67.8257961812285, + 16.088059133113717 + ], + [ + 67.94063886471218, + 15.893411398185263 + ], + [ + 68.17032423167953, + 15.893411398185263 + ], + [ + 68.28516691516322, + 16.088059133113717 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.28516691516322, + 16.477354602970625 + ], + [ + 68.17032423167953, + 16.672002337899077 + ], + [ + 67.94063886471218, + 16.672002337899077 + ], + [ + 67.8257961812285, + 16.477354602970625 + ], + [ + 67.94063886471218, + 16.282706868042172 + ], + [ + 68.17032423167953, + 16.282706868042172 + ], + [ + 68.28516691516322, + 16.477354602970625 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.28516691516322, + 16.86665007282753 + ], + [ + 68.17032423167953, + 17.06129780775598 + ], + [ + 67.94063886471218, + 17.06129780775598 + ], + [ + 67.8257961812285, + 16.86665007282753 + ], + [ + 67.94063886471218, + 16.672002337899077 + ], + [ + 68.17032423167953, + 16.672002337899077 + ], + [ + 68.28516691516322, + 16.86665007282753 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.28516691516322, + 17.255945542684437 + ], + [ + 68.17032423167953, + 17.45059327761289 + ], + [ + 67.94063886471218, + 17.45059327761289 + ], + [ + 67.8257961812285, + 17.255945542684437 + ], + [ + 67.94063886471218, + 17.061297807755984 + ], + [ + 68.17032423167953, + 17.061297807755984 + ], + [ + 68.28516691516322, + 17.255945542684437 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.28516691516322, + 17.64524101254134 + ], + [ + 68.17032423167953, + 17.839888747469793 + ], + [ + 67.94063886471218, + 17.839888747469793 + ], + [ + 67.8257961812285, + 17.64524101254134 + ], + [ + 67.94063886471218, + 17.45059327761289 + ], + [ + 68.17032423167953, + 17.45059327761289 + ], + [ + 68.28516691516322, + 17.64524101254134 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.28516691516322, + 18.03453648239825 + ], + [ + 68.17032423167953, + 18.2291842173267 + ], + [ + 67.94063886471218, + 18.2291842173267 + ], + [ + 67.8257961812285, + 18.03453648239825 + ], + [ + 67.94063886471218, + 17.839888747469796 + ], + [ + 68.17032423167953, + 17.839888747469796 + ], + [ + 68.28516691516322, + 18.03453648239825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.28516691516322, + 18.423831952255156 + ], + [ + 68.17032423167953, + 18.61847968718361 + ], + [ + 67.94063886471218, + 18.61847968718361 + ], + [ + 67.8257961812285, + 18.423831952255156 + ], + [ + 67.94063886471218, + 18.229184217326704 + ], + [ + 68.17032423167953, + 18.229184217326704 + ], + [ + 68.28516691516322, + 18.423831952255156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.28516691516322, + 18.81312742211206 + ], + [ + 68.17032423167953, + 19.007775157040513 + ], + [ + 67.94063886471218, + 19.007775157040513 + ], + [ + 67.8257961812285, + 18.81312742211206 + ], + [ + 67.94063886471218, + 18.61847968718361 + ], + [ + 68.17032423167953, + 18.61847968718361 + ], + [ + 68.28516691516322, + 18.81312742211206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.28516691516322, + 19.20242289196897 + ], + [ + 68.17032423167953, + 19.39707062689742 + ], + [ + 67.94063886471218, + 19.39707062689742 + ], + [ + 67.8257961812285, + 19.20242289196897 + ], + [ + 67.94063886471218, + 19.007775157040516 + ], + [ + 68.17032423167953, + 19.007775157040516 + ], + [ + 68.28516691516322, + 19.20242289196897 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.28516691516322, + 19.591718361825876 + ], + [ + 68.17032423167953, + 19.78636609675433 + ], + [ + 67.94063886471218, + 19.78636609675433 + ], + [ + 67.8257961812285, + 19.591718361825876 + ], + [ + 67.94063886471218, + 19.397070626897424 + ], + [ + 68.17032423167953, + 19.397070626897424 + ], + [ + 68.28516691516322, + 19.591718361825876 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.28516691516322, + 19.98101383168278 + ], + [ + 68.17032423167953, + 20.175661566611232 + ], + [ + 67.94063886471218, + 20.175661566611232 + ], + [ + 67.8257961812285, + 19.98101383168278 + ], + [ + 67.94063886471218, + 19.78636609675433 + ], + [ + 68.17032423167953, + 19.78636609675433 + ], + [ + 68.28516691516322, + 19.98101383168278 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.28516691516322, + 20.370309301539685 + ], + [ + 68.17032423167953, + 20.564957036468137 + ], + [ + 67.94063886471218, + 20.564957036468137 + ], + [ + 67.8257961812285, + 20.370309301539685 + ], + [ + 67.94063886471218, + 20.175661566611232 + ], + [ + 68.17032423167953, + 20.175661566611232 + ], + [ + 68.28516691516322, + 20.370309301539685 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.28516691516322, + 20.759604771396592 + ], + [ + 68.17032423167953, + 20.954252506325044 + ], + [ + 67.94063886471218, + 20.954252506325044 + ], + [ + 67.8257961812285, + 20.759604771396592 + ], + [ + 67.94063886471218, + 20.56495703646814 + ], + [ + 68.17032423167953, + 20.56495703646814 + ], + [ + 68.28516691516322, + 20.759604771396592 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.28516691516322, + 21.1489002412535 + ], + [ + 68.17032423167953, + 21.343547976181952 + ], + [ + 67.94063886471218, + 21.343547976181952 + ], + [ + 67.8257961812285, + 21.1489002412535 + ], + [ + 67.94063886471218, + 20.954252506325048 + ], + [ + 68.17032423167953, + 20.954252506325048 + ], + [ + 68.28516691516322, + 21.1489002412535 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.28516691516322, + 21.538195711110404 + ], + [ + 68.17032423167953, + 21.732843446038856 + ], + [ + 67.94063886471218, + 21.732843446038856 + ], + [ + 67.8257961812285, + 21.538195711110404 + ], + [ + 67.94063886471218, + 21.343547976181952 + ], + [ + 68.17032423167953, + 21.343547976181952 + ], + [ + 68.28516691516322, + 21.538195711110404 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.28516691516322, + 21.927491180967312 + ], + [ + 68.17032423167953, + 22.122138915895764 + ], + [ + 67.94063886471218, + 22.122138915895764 + ], + [ + 67.8257961812285, + 21.927491180967312 + ], + [ + 67.94063886471218, + 21.73284344603886 + ], + [ + 68.17032423167953, + 21.73284344603886 + ], + [ + 68.28516691516322, + 21.927491180967312 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.28516691516322, + 22.31678665082422 + ], + [ + 68.17032423167953, + 22.511434385752672 + ], + [ + 67.94063886471218, + 22.511434385752672 + ], + [ + 67.8257961812285, + 22.31678665082422 + ], + [ + 67.94063886471218, + 22.122138915895768 + ], + [ + 68.17032423167953, + 22.122138915895768 + ], + [ + 68.28516691516322, + 22.31678665082422 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.28516691516322, + 22.706082120681124 + ], + [ + 68.17032423167953, + 22.900729855609576 + ], + [ + 67.94063886471218, + 22.900729855609576 + ], + [ + 67.8257961812285, + 22.706082120681124 + ], + [ + 67.94063886471218, + 22.511434385752672 + ], + [ + 68.17032423167953, + 22.511434385752672 + ], + [ + 68.28516691516322, + 22.706082120681124 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.28516691516322, + 23.095377590538032 + ], + [ + 68.17032423167953, + 23.290025325466484 + ], + [ + 67.94063886471218, + 23.290025325466484 + ], + [ + 67.8257961812285, + 23.095377590538032 + ], + [ + 67.94063886471218, + 22.90072985560958 + ], + [ + 68.17032423167953, + 22.90072985560958 + ], + [ + 68.28516691516322, + 23.095377590538032 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.28516691516322, + 23.48467306039494 + ], + [ + 68.17032423167953, + 23.67932079532339 + ], + [ + 67.94063886471218, + 23.67932079532339 + ], + [ + 67.8257961812285, + 23.48467306039494 + ], + [ + 67.94063886471218, + 23.290025325466488 + ], + [ + 68.17032423167953, + 23.290025325466488 + ], + [ + 68.28516691516322, + 23.48467306039494 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.28516691516322, + 23.873968530251844 + ], + [ + 68.17032423167953, + 24.068616265180296 + ], + [ + 67.94063886471218, + 24.068616265180296 + ], + [ + 67.8257961812285, + 23.873968530251844 + ], + [ + 67.94063886471218, + 23.67932079532339 + ], + [ + 68.17032423167953, + 23.67932079532339 + ], + [ + 68.28516691516322, + 23.873968530251844 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.28516691516322, + 24.263264000108748 + ], + [ + 68.17032423167953, + 24.4579117350372 + ], + [ + 67.94063886471218, + 24.4579117350372 + ], + [ + 67.8257961812285, + 24.263264000108748 + ], + [ + 67.94063886471218, + 24.068616265180296 + ], + [ + 68.17032423167953, + 24.068616265180296 + ], + [ + 68.28516691516322, + 24.263264000108748 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.28516691516322, + 24.652559469965656 + ], + [ + 68.17032423167953, + 24.847207204894108 + ], + [ + 67.94063886471218, + 24.847207204894108 + ], + [ + 67.8257961812285, + 24.652559469965656 + ], + [ + 67.94063886471218, + 24.457911735037204 + ], + [ + 68.17032423167953, + 24.457911735037204 + ], + [ + 68.28516691516322, + 24.652559469965656 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.28516691516322, + 25.041854939822564 + ], + [ + 68.17032423167953, + 25.236502674751016 + ], + [ + 67.94063886471218, + 25.236502674751016 + ], + [ + 67.8257961812285, + 25.041854939822564 + ], + [ + 67.94063886471218, + 24.84720720489411 + ], + [ + 68.17032423167953, + 24.84720720489411 + ], + [ + 68.28516691516322, + 25.041854939822564 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.28516691516322, + 25.431150409679468 + ], + [ + 68.17032423167953, + 25.62579814460792 + ], + [ + 67.94063886471218, + 25.62579814460792 + ], + [ + 67.8257961812285, + 25.431150409679468 + ], + [ + 67.94063886471218, + 25.236502674751016 + ], + [ + 68.17032423167953, + 25.236502674751016 + ], + [ + 68.28516691516322, + 25.431150409679468 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.28516691516322, + 25.820445879536376 + ], + [ + 68.17032423167953, + 26.015093614464828 + ], + [ + 67.94063886471218, + 26.015093614464828 + ], + [ + 67.8257961812285, + 25.820445879536376 + ], + [ + 67.94063886471218, + 25.625798144607923 + ], + [ + 68.17032423167953, + 25.625798144607923 + ], + [ + 68.28516691516322, + 25.820445879536376 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.28516691516322, + 26.209741349393283 + ], + [ + 68.17032423167953, + 26.404389084321735 + ], + [ + 67.94063886471218, + 26.404389084321735 + ], + [ + 67.8257961812285, + 26.209741349393283 + ], + [ + 67.94063886471218, + 26.01509361446483 + ], + [ + 68.17032423167953, + 26.01509361446483 + ], + [ + 68.28516691516322, + 26.209741349393283 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.28516691516322, + 26.599036819250188 + ], + [ + 68.17032423167953, + 26.79368455417864 + ], + [ + 67.94063886471218, + 26.79368455417864 + ], + [ + 67.8257961812285, + 26.599036819250188 + ], + [ + 67.94063886471218, + 26.404389084321735 + ], + [ + 68.17032423167953, + 26.404389084321735 + ], + [ + 68.28516691516322, + 26.599036819250188 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.28516691516322, + 26.988332289107095 + ], + [ + 68.17032423167953, + 27.182980024035547 + ], + [ + 67.94063886471218, + 27.182980024035547 + ], + [ + 67.8257961812285, + 26.988332289107095 + ], + [ + 67.94063886471218, + 26.793684554178643 + ], + [ + 68.17032423167953, + 26.793684554178643 + ], + [ + 68.28516691516322, + 26.988332289107095 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.28516691516322, + 27.377627758964003 + ], + [ + 68.17032423167953, + 27.572275493892455 + ], + [ + 67.94063886471218, + 27.572275493892455 + ], + [ + 67.8257961812285, + 27.377627758964003 + ], + [ + 67.94063886471218, + 27.18298002403555 + ], + [ + 68.17032423167953, + 27.18298002403555 + ], + [ + 68.28516691516322, + 27.377627758964003 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.28516691516322, + 27.766923228820907 + ], + [ + 68.17032423167953, + 27.96157096374936 + ], + [ + 67.94063886471218, + 27.96157096374936 + ], + [ + 67.8257961812285, + 27.766923228820907 + ], + [ + 67.94063886471218, + 27.572275493892455 + ], + [ + 68.17032423167953, + 27.572275493892455 + ], + [ + 68.28516691516322, + 27.766923228820907 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.28516691516322, + 28.156218698677815 + ], + [ + 68.17032423167953, + 28.350866433606267 + ], + [ + 67.94063886471218, + 28.350866433606267 + ], + [ + 67.8257961812285, + 28.156218698677815 + ], + [ + 67.94063886471218, + 27.961570963749363 + ], + [ + 68.17032423167953, + 27.961570963749363 + ], + [ + 68.28516691516322, + 28.156218698677815 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.28516691516322, + 28.54551416853472 + ], + [ + 68.17032423167953, + 28.74016190346317 + ], + [ + 67.94063886471218, + 28.74016190346317 + ], + [ + 67.8257961812285, + 28.54551416853472 + ], + [ + 67.94063886471218, + 28.350866433606267 + ], + [ + 68.17032423167953, + 28.350866433606267 + ], + [ + 68.28516691516322, + 28.54551416853472 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.28516691516322, + 28.934809638391627 + ], + [ + 68.17032423167953, + 29.12945737332008 + ], + [ + 67.94063886471218, + 29.12945737332008 + ], + [ + 67.8257961812285, + 28.934809638391627 + ], + [ + 67.94063886471218, + 28.740161903463175 + ], + [ + 68.17032423167953, + 28.740161903463175 + ], + [ + 68.28516691516322, + 28.934809638391627 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.28516691516322, + 29.32410510824853 + ], + [ + 68.17032423167953, + 29.518752843176983 + ], + [ + 67.94063886471218, + 29.518752843176983 + ], + [ + 67.8257961812285, + 29.32410510824853 + ], + [ + 67.94063886471218, + 29.12945737332008 + ], + [ + 68.17032423167953, + 29.12945737332008 + ], + [ + 68.28516691516322, + 29.32410510824853 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.28516691516322, + 29.71340057810544 + ], + [ + 68.17032423167953, + 29.90804831303389 + ], + [ + 67.94063886471218, + 29.90804831303389 + ], + [ + 67.8257961812285, + 29.71340057810544 + ], + [ + 67.94063886471218, + 29.518752843176987 + ], + [ + 68.17032423167953, + 29.518752843176987 + ], + [ + 68.28516691516322, + 29.71340057810544 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.28516691516322, + 30.102696047962343 + ], + [ + 68.17032423167953, + 30.297343782890795 + ], + [ + 67.94063886471218, + 30.297343782890795 + ], + [ + 67.8257961812285, + 30.102696047962343 + ], + [ + 67.94063886471218, + 29.90804831303389 + ], + [ + 68.17032423167953, + 29.90804831303389 + ], + [ + 68.28516691516322, + 30.102696047962343 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.28516691516322, + 30.49199151781925 + ], + [ + 68.17032423167953, + 30.686639252747703 + ], + [ + 67.94063886471218, + 30.686639252747703 + ], + [ + 67.8257961812285, + 30.49199151781925 + ], + [ + 67.94063886471218, + 30.2973437828908 + ], + [ + 68.17032423167953, + 30.2973437828908 + ], + [ + 68.28516691516322, + 30.49199151781925 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.28516691516322, + 30.88128698767616 + ], + [ + 68.17032423167953, + 31.07593472260461 + ], + [ + 67.94063886471218, + 31.07593472260461 + ], + [ + 67.8257961812285, + 30.88128698767616 + ], + [ + 67.94063886471218, + 30.686639252747707 + ], + [ + 68.17032423167953, + 30.686639252747707 + ], + [ + 68.28516691516322, + 30.88128698767616 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.28516691516322, + 31.270582457533063 + ], + [ + 68.17032423167953, + 31.465230192461515 + ], + [ + 67.94063886471218, + 31.465230192461515 + ], + [ + 67.8257961812285, + 31.270582457533063 + ], + [ + 67.94063886471218, + 31.07593472260461 + ], + [ + 68.17032423167953, + 31.07593472260461 + ], + [ + 68.28516691516322, + 31.270582457533063 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.28516691516322, + 31.65987792738997 + ], + [ + 68.17032423167953, + 31.854525662318423 + ], + [ + 67.94063886471218, + 31.854525662318423 + ], + [ + 67.8257961812285, + 31.65987792738997 + ], + [ + 67.94063886471218, + 31.46523019246152 + ], + [ + 68.17032423167953, + 31.46523019246152 + ], + [ + 68.28516691516322, + 31.65987792738997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.28516691516322, + 32.049173397246875 + ], + [ + 68.17032423167953, + 32.24382113217533 + ], + [ + 67.94063886471218, + 32.24382113217533 + ], + [ + 67.8257961812285, + 32.049173397246875 + ], + [ + 67.94063886471218, + 31.854525662318423 + ], + [ + 68.17032423167953, + 31.854525662318423 + ], + [ + 68.28516691516322, + 32.049173397246875 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.28516691516322, + 32.438468867103786 + ], + [ + 68.17032423167953, + 32.63311660203224 + ], + [ + 67.94063886471218, + 32.63311660203224 + ], + [ + 67.8257961812285, + 32.438468867103786 + ], + [ + 67.94063886471218, + 32.243821132175334 + ], + [ + 68.17032423167953, + 32.243821132175334 + ], + [ + 68.28516691516322, + 32.438468867103786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.28516691516322, + 32.82776433696069 + ], + [ + 68.17032423167953, + 33.02241207188914 + ], + [ + 67.94063886471218, + 33.02241207188914 + ], + [ + 67.8257961812285, + 32.82776433696069 + ], + [ + 67.94063886471218, + 32.63311660203224 + ], + [ + 68.17032423167953, + 32.63311660203224 + ], + [ + 68.28516691516322, + 32.82776433696069 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.28516691516322, + 33.217059806817595 + ], + [ + 68.17032423167953, + 33.41170754174605 + ], + [ + 67.94063886471218, + 33.41170754174605 + ], + [ + 67.8257961812285, + 33.217059806817595 + ], + [ + 67.94063886471218, + 33.02241207188914 + ], + [ + 68.17032423167953, + 33.02241207188914 + ], + [ + 68.28516691516322, + 33.217059806817595 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.28516691516322, + 33.6063552766745 + ], + [ + 68.17032423167953, + 33.80100301160295 + ], + [ + 67.94063886471218, + 33.80100301160295 + ], + [ + 67.8257961812285, + 33.6063552766745 + ], + [ + 67.94063886471218, + 33.41170754174605 + ], + [ + 68.17032423167953, + 33.41170754174605 + ], + [ + 68.28516691516322, + 33.6063552766745 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.28516691516322, + 33.9956507465314 + ], + [ + 68.17032423167953, + 34.190298481459855 + ], + [ + 67.94063886471218, + 34.190298481459855 + ], + [ + 67.8257961812285, + 33.9956507465314 + ], + [ + 67.94063886471218, + 33.80100301160295 + ], + [ + 68.17032423167953, + 33.80100301160295 + ], + [ + 68.28516691516322, + 33.9956507465314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.28516691516322, + 34.384946216388315 + ], + [ + 68.17032423167953, + 34.57959395131677 + ], + [ + 67.94063886471218, + 34.57959395131677 + ], + [ + 67.8257961812285, + 34.384946216388315 + ], + [ + 67.94063886471218, + 34.19029848145986 + ], + [ + 68.17032423167953, + 34.19029848145986 + ], + [ + 68.28516691516322, + 34.384946216388315 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.28516691516322, + 34.774241686245226 + ], + [ + 68.17032423167953, + 34.96888942117368 + ], + [ + 67.94063886471218, + 34.96888942117368 + ], + [ + 67.8257961812285, + 34.774241686245226 + ], + [ + 67.94063886471218, + 34.579593951316774 + ], + [ + 68.17032423167953, + 34.579593951316774 + ], + [ + 68.28516691516322, + 34.774241686245226 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.28516691516322, + 35.16353715610213 + ], + [ + 68.17032423167953, + 35.35818489103058 + ], + [ + 67.94063886471218, + 35.35818489103058 + ], + [ + 67.8257961812285, + 35.16353715610213 + ], + [ + 67.94063886471218, + 34.96888942117368 + ], + [ + 68.17032423167953, + 34.96888942117368 + ], + [ + 68.28516691516322, + 35.16353715610213 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.28516691516322, + 35.552832625959034 + ], + [ + 68.17032423167953, + 35.74748036088749 + ], + [ + 67.94063886471218, + 35.74748036088749 + ], + [ + 67.8257961812285, + 35.552832625959034 + ], + [ + 67.94063886471218, + 35.35818489103058 + ], + [ + 68.17032423167953, + 35.35818489103058 + ], + [ + 68.28516691516322, + 35.552832625959034 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.28516691516322, + 35.94212809581594 + ], + [ + 68.17032423167953, + 36.13677583074439 + ], + [ + 67.94063886471218, + 36.13677583074439 + ], + [ + 67.8257961812285, + 35.94212809581594 + ], + [ + 67.94063886471218, + 35.74748036088749 + ], + [ + 68.17032423167953, + 35.74748036088749 + ], + [ + 68.28516691516322, + 35.94212809581594 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.28516691516322, + 36.33142356567284 + ], + [ + 68.17032423167953, + 36.526071300601295 + ], + [ + 67.94063886471218, + 36.526071300601295 + ], + [ + 67.8257961812285, + 36.33142356567284 + ], + [ + 67.94063886471218, + 36.13677583074439 + ], + [ + 68.17032423167953, + 36.13677583074439 + ], + [ + 68.28516691516322, + 36.33142356567284 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.28516691516322, + 36.720719035529754 + ], + [ + 68.17032423167953, + 36.915366770458206 + ], + [ + 67.94063886471218, + 36.915366770458206 + ], + [ + 67.8257961812285, + 36.720719035529754 + ], + [ + 67.94063886471218, + 36.5260713006013 + ], + [ + 68.17032423167953, + 36.5260713006013 + ], + [ + 68.28516691516322, + 36.720719035529754 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.28516691516322, + 37.11001450538666 + ], + [ + 68.17032423167953, + 37.30466224031511 + ], + [ + 67.94063886471218, + 37.30466224031511 + ], + [ + 67.8257961812285, + 37.11001450538666 + ], + [ + 67.94063886471218, + 36.915366770458206 + ], + [ + 68.17032423167953, + 36.915366770458206 + ], + [ + 68.28516691516322, + 37.11001450538666 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.28516691516322, + 37.49930997524357 + ], + [ + 68.17032423167953, + 37.69395771017202 + ], + [ + 67.94063886471218, + 37.69395771017202 + ], + [ + 67.8257961812285, + 37.49930997524357 + ], + [ + 67.94063886471218, + 37.30466224031512 + ], + [ + 68.17032423167953, + 37.30466224031512 + ], + [ + 68.28516691516322, + 37.49930997524357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.28516691516322, + 37.888605445100474 + ], + [ + 68.17032423167953, + 38.083253180028926 + ], + [ + 67.94063886471218, + 38.083253180028926 + ], + [ + 67.8257961812285, + 37.888605445100474 + ], + [ + 67.94063886471218, + 37.69395771017202 + ], + [ + 68.17032423167953, + 37.69395771017202 + ], + [ + 68.28516691516322, + 37.888605445100474 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.28516691516322, + 38.27790091495738 + ], + [ + 68.17032423167953, + 38.47254864988583 + ], + [ + 67.94063886471218, + 38.47254864988583 + ], + [ + 67.8257961812285, + 38.27790091495738 + ], + [ + 67.94063886471218, + 38.083253180028926 + ], + [ + 68.17032423167953, + 38.083253180028926 + ], + [ + 68.28516691516322, + 38.27790091495738 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.28516691516322, + 38.66719638481428 + ], + [ + 68.17032423167953, + 38.861844119742734 + ], + [ + 67.94063886471218, + 38.861844119742734 + ], + [ + 67.8257961812285, + 38.66719638481428 + ], + [ + 67.94063886471218, + 38.47254864988583 + ], + [ + 68.17032423167953, + 38.47254864988583 + ], + [ + 68.28516691516322, + 38.66719638481428 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.28516691516322, + 39.05649185467119 + ], + [ + 68.17032423167953, + 39.25113958959964 + ], + [ + 67.94063886471218, + 39.25113958959964 + ], + [ + 67.8257961812285, + 39.05649185467119 + ], + [ + 67.94063886471218, + 38.861844119742734 + ], + [ + 68.17032423167953, + 38.861844119742734 + ], + [ + 68.28516691516322, + 39.05649185467119 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.28516691516322, + 39.4457873245281 + ], + [ + 68.17032423167953, + 39.64043505945655 + ], + [ + 67.94063886471218, + 39.64043505945655 + ], + [ + 67.8257961812285, + 39.4457873245281 + ], + [ + 67.94063886471218, + 39.251139589599646 + ], + [ + 68.17032423167953, + 39.251139589599646 + ], + [ + 68.28516691516322, + 39.4457873245281 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.28516691516322, + 39.835082794385 + ], + [ + 68.17032423167953, + 40.029730529313454 + ], + [ + 67.94063886471218, + 40.029730529313454 + ], + [ + 67.8257961812285, + 39.835082794385 + ], + [ + 67.94063886471218, + 39.64043505945655 + ], + [ + 68.17032423167953, + 39.64043505945655 + ], + [ + 68.28516691516322, + 39.835082794385 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.28516691516322, + 40.22437826424191 + ], + [ + 68.17032423167953, + 40.419025999170366 + ], + [ + 67.94063886471218, + 40.419025999170366 + ], + [ + 67.8257961812285, + 40.22437826424191 + ], + [ + 67.94063886471218, + 40.02973052931346 + ], + [ + 68.17032423167953, + 40.02973052931346 + ], + [ + 68.28516691516322, + 40.22437826424191 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.28516691516322, + 40.61367373409882 + ], + [ + 68.17032423167953, + 40.80832146902727 + ], + [ + 67.94063886471218, + 40.80832146902727 + ], + [ + 67.8257961812285, + 40.61367373409882 + ], + [ + 67.94063886471218, + 40.419025999170366 + ], + [ + 68.17032423167953, + 40.419025999170366 + ], + [ + 68.28516691516322, + 40.61367373409882 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.28516691516322, + 41.00296920395572 + ], + [ + 68.17032423167953, + 41.197616938884174 + ], + [ + 67.94063886471218, + 41.197616938884174 + ], + [ + 67.8257961812285, + 41.00296920395572 + ], + [ + 67.94063886471218, + 40.80832146902727 + ], + [ + 68.17032423167953, + 40.80832146902727 + ], + [ + 68.28516691516322, + 41.00296920395572 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.28516691516322, + 41.392264673812626 + ], + [ + 68.17032423167953, + 41.58691240874108 + ], + [ + 67.94063886471218, + 41.58691240874108 + ], + [ + 67.8257961812285, + 41.392264673812626 + ], + [ + 67.94063886471218, + 41.197616938884174 + ], + [ + 68.17032423167953, + 41.197616938884174 + ], + [ + 68.28516691516322, + 41.392264673812626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.28516691516322, + 41.78156014366953 + ], + [ + 68.17032423167953, + 41.97620787859798 + ], + [ + 67.94063886471218, + 41.97620787859798 + ], + [ + 67.8257961812285, + 41.78156014366953 + ], + [ + 67.94063886471218, + 41.58691240874108 + ], + [ + 68.17032423167953, + 41.58691240874108 + ], + [ + 68.28516691516322, + 41.78156014366953 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.28516691516322, + 42.17085561352644 + ], + [ + 68.17032423167953, + 42.365503348454894 + ], + [ + 67.94063886471218, + 42.365503348454894 + ], + [ + 67.8257961812285, + 42.17085561352644 + ], + [ + 67.94063886471218, + 41.97620787859799 + ], + [ + 68.17032423167953, + 41.97620787859799 + ], + [ + 68.28516691516322, + 42.17085561352644 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.28516691516322, + 42.56015108338335 + ], + [ + 68.17032423167953, + 42.754798818311805 + ], + [ + 67.94063886471218, + 42.754798818311805 + ], + [ + 67.8257961812285, + 42.56015108338335 + ], + [ + 67.94063886471218, + 42.3655033484549 + ], + [ + 68.17032423167953, + 42.3655033484549 + ], + [ + 68.28516691516322, + 42.56015108338335 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.28516691516322, + 42.94944655324026 + ], + [ + 68.17032423167953, + 43.14409428816871 + ], + [ + 67.94063886471218, + 43.14409428816871 + ], + [ + 67.8257961812285, + 42.94944655324026 + ], + [ + 67.94063886471218, + 42.754798818311805 + ], + [ + 68.17032423167953, + 42.754798818311805 + ], + [ + 68.28516691516322, + 42.94944655324026 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.28516691516322, + 43.33874202309716 + ], + [ + 68.17032423167953, + 43.53338975802561 + ], + [ + 67.94063886471218, + 43.53338975802561 + ], + [ + 67.8257961812285, + 43.33874202309716 + ], + [ + 67.94063886471218, + 43.14409428816871 + ], + [ + 68.17032423167953, + 43.14409428816871 + ], + [ + 68.28516691516322, + 43.33874202309716 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.28516691516322, + 43.728037492954066 + ], + [ + 68.17032423167953, + 43.92268522788252 + ], + [ + 67.94063886471218, + 43.92268522788252 + ], + [ + 67.8257961812285, + 43.728037492954066 + ], + [ + 67.94063886471218, + 43.53338975802561 + ], + [ + 68.17032423167953, + 43.53338975802561 + ], + [ + 68.28516691516322, + 43.728037492954066 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.28516691516322, + 44.11733296281097 + ], + [ + 68.17032423167953, + 44.31198069773942 + ], + [ + 67.94063886471218, + 44.31198069773942 + ], + [ + 67.8257961812285, + 44.11733296281097 + ], + [ + 67.94063886471218, + 43.92268522788252 + ], + [ + 68.17032423167953, + 43.92268522788252 + ], + [ + 68.28516691516322, + 44.11733296281097 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.28516691516322, + 44.506628432667874 + ], + [ + 68.17032423167953, + 44.701276167596326 + ], + [ + 67.94063886471218, + 44.701276167596326 + ], + [ + 67.8257961812285, + 44.506628432667874 + ], + [ + 67.94063886471218, + 44.31198069773942 + ], + [ + 68.17032423167953, + 44.31198069773942 + ], + [ + 68.28516691516322, + 44.506628432667874 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.28516691516322, + 44.89592390252479 + ], + [ + 68.17032423167953, + 45.090571637453245 + ], + [ + 67.94063886471218, + 45.090571637453245 + ], + [ + 67.8257961812285, + 44.89592390252479 + ], + [ + 67.94063886471218, + 44.70127616759634 + ], + [ + 68.17032423167953, + 44.70127616759634 + ], + [ + 68.28516691516322, + 44.89592390252479 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.28516691516322, + 45.2852193723817 + ], + [ + 68.17032423167953, + 45.47986710731015 + ], + [ + 67.94063886471218, + 45.47986710731015 + ], + [ + 67.8257961812285, + 45.2852193723817 + ], + [ + 67.94063886471218, + 45.090571637453245 + ], + [ + 68.17032423167953, + 45.090571637453245 + ], + [ + 68.28516691516322, + 45.2852193723817 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.28516691516322, + 45.6745148422386 + ], + [ + 68.17032423167953, + 45.86916257716705 + ], + [ + 67.94063886471218, + 45.86916257716705 + ], + [ + 67.8257961812285, + 45.6745148422386 + ], + [ + 67.94063886471218, + 45.47986710731015 + ], + [ + 68.17032423167953, + 45.47986710731015 + ], + [ + 68.28516691516322, + 45.6745148422386 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.28516691516322, + 46.063810312095505 + ], + [ + 68.17032423167953, + 46.25845804702396 + ], + [ + 67.94063886471218, + 46.25845804702396 + ], + [ + 67.8257961812285, + 46.063810312095505 + ], + [ + 67.94063886471218, + 45.86916257716705 + ], + [ + 68.17032423167953, + 45.86916257716705 + ], + [ + 68.28516691516322, + 46.063810312095505 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.28516691516322, + 46.45310578195241 + ], + [ + 68.17032423167953, + 46.64775351688086 + ], + [ + 67.94063886471218, + 46.64775351688086 + ], + [ + 67.8257961812285, + 46.45310578195241 + ], + [ + 67.94063886471218, + 46.25845804702396 + ], + [ + 68.17032423167953, + 46.25845804702396 + ], + [ + 68.28516691516322, + 46.45310578195241 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.28516691516322, + 46.842401251809314 + ], + [ + 68.17032423167953, + 47.037048986737766 + ], + [ + 67.94063886471218, + 47.037048986737766 + ], + [ + 67.8257961812285, + 46.842401251809314 + ], + [ + 67.94063886471218, + 46.64775351688086 + ], + [ + 68.17032423167953, + 46.64775351688086 + ], + [ + 68.28516691516322, + 46.842401251809314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.28516691516322, + 47.23169672166622 + ], + [ + 68.17032423167953, + 47.42634445659467 + ], + [ + 67.94063886471218, + 47.42634445659467 + ], + [ + 67.8257961812285, + 47.23169672166622 + ], + [ + 67.94063886471218, + 47.037048986737766 + ], + [ + 68.17032423167953, + 47.037048986737766 + ], + [ + 68.28516691516322, + 47.23169672166622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.28516691516322, + 47.620992191523136 + ], + [ + 68.17032423167953, + 47.81563992645159 + ], + [ + 67.94063886471218, + 47.81563992645159 + ], + [ + 67.8257961812285, + 47.620992191523136 + ], + [ + 67.94063886471218, + 47.426344456594684 + ], + [ + 68.17032423167953, + 47.426344456594684 + ], + [ + 68.28516691516322, + 47.620992191523136 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.62969496561425, + 12.0004566996162 + ], + [ + 68.51485228213056, + 12.195104434544653 + ], + [ + 68.28516691516322, + 12.195104434544653 + ], + [ + 68.17032423167953, + 12.0004566996162 + ], + [ + 68.28516691516322, + 11.805808964687746 + ], + [ + 68.51485228213056, + 11.805808964687746 + ], + [ + 68.62969496561425, + 12.0004566996162 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.62969496561425, + 12.389752169473105 + ], + [ + 68.51485228213056, + 12.58439990440156 + ], + [ + 68.28516691516322, + 12.58439990440156 + ], + [ + 68.17032423167953, + 12.389752169473105 + ], + [ + 68.28516691516322, + 12.195104434544652 + ], + [ + 68.51485228213056, + 12.195104434544652 + ], + [ + 68.62969496561425, + 12.389752169473105 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.62969496561425, + 12.779047639330013 + ], + [ + 68.51485228213056, + 12.973695374258467 + ], + [ + 68.28516691516322, + 12.973695374258467 + ], + [ + 68.17032423167953, + 12.779047639330013 + ], + [ + 68.28516691516322, + 12.58439990440156 + ], + [ + 68.51485228213056, + 12.58439990440156 + ], + [ + 68.62969496561425, + 12.779047639330013 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.62969496561425, + 13.16834310918692 + ], + [ + 68.51485228213056, + 13.362990844115373 + ], + [ + 68.28516691516322, + 13.362990844115373 + ], + [ + 68.17032423167953, + 13.16834310918692 + ], + [ + 68.28516691516322, + 12.973695374258465 + ], + [ + 68.51485228213056, + 12.973695374258465 + ], + [ + 68.62969496561425, + 13.16834310918692 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.62969496561425, + 13.557638579043825 + ], + [ + 68.51485228213056, + 13.752286313972279 + ], + [ + 68.28516691516322, + 13.752286313972279 + ], + [ + 68.17032423167953, + 13.557638579043825 + ], + [ + 68.28516691516322, + 13.362990844115371 + ], + [ + 68.51485228213056, + 13.362990844115371 + ], + [ + 68.62969496561425, + 13.557638579043825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.62969496561425, + 13.946934048900731 + ], + [ + 68.51485228213056, + 14.141581783829185 + ], + [ + 68.28516691516322, + 14.141581783829185 + ], + [ + 68.17032423167953, + 13.946934048900731 + ], + [ + 68.28516691516322, + 13.752286313972277 + ], + [ + 68.51485228213056, + 13.752286313972277 + ], + [ + 68.62969496561425, + 13.946934048900731 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.62969496561425, + 14.336229518757637 + ], + [ + 68.51485228213056, + 14.530877253686091 + ], + [ + 68.28516691516322, + 14.530877253686091 + ], + [ + 68.17032423167953, + 14.336229518757637 + ], + [ + 68.28516691516322, + 14.141581783829183 + ], + [ + 68.51485228213056, + 14.141581783829183 + ], + [ + 68.62969496561425, + 14.336229518757637 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.62969496561425, + 14.725524988614545 + ], + [ + 68.51485228213056, + 14.920172723542999 + ], + [ + 68.28516691516322, + 14.920172723542999 + ], + [ + 68.17032423167953, + 14.725524988614545 + ], + [ + 68.28516691516322, + 14.530877253686091 + ], + [ + 68.51485228213056, + 14.530877253686091 + ], + [ + 68.62969496561425, + 14.725524988614545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.62969496561425, + 15.114820458471451 + ], + [ + 68.51485228213056, + 15.309468193399905 + ], + [ + 68.28516691516322, + 15.309468193399905 + ], + [ + 68.17032423167953, + 15.114820458471451 + ], + [ + 68.28516691516322, + 14.920172723542997 + ], + [ + 68.51485228213056, + 14.920172723542997 + ], + [ + 68.62969496561425, + 15.114820458471451 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.62969496561425, + 15.504115928328357 + ], + [ + 68.51485228213056, + 15.69876366325681 + ], + [ + 68.28516691516322, + 15.69876366325681 + ], + [ + 68.17032423167953, + 15.504115928328357 + ], + [ + 68.28516691516322, + 15.309468193399903 + ], + [ + 68.51485228213056, + 15.309468193399903 + ], + [ + 68.62969496561425, + 15.504115928328357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.62969496561425, + 15.893411398185265 + ], + [ + 68.51485228213056, + 16.088059133113717 + ], + [ + 68.28516691516322, + 16.088059133113717 + ], + [ + 68.17032423167953, + 15.893411398185265 + ], + [ + 68.28516691516322, + 15.69876366325681 + ], + [ + 68.51485228213056, + 15.69876366325681 + ], + [ + 68.62969496561425, + 15.893411398185265 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.62969496561425, + 16.28270686804217 + ], + [ + 68.51485228213056, + 16.47735460297062 + ], + [ + 68.28516691516322, + 16.47735460297062 + ], + [ + 68.17032423167953, + 16.28270686804217 + ], + [ + 68.28516691516322, + 16.088059133113717 + ], + [ + 68.51485228213056, + 16.088059133113717 + ], + [ + 68.62969496561425, + 16.28270686804217 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.62969496561425, + 16.672002337899077 + ], + [ + 68.51485228213056, + 16.86665007282753 + ], + [ + 68.28516691516322, + 16.86665007282753 + ], + [ + 68.17032423167953, + 16.672002337899077 + ], + [ + 68.28516691516322, + 16.477354602970625 + ], + [ + 68.51485228213056, + 16.477354602970625 + ], + [ + 68.62969496561425, + 16.672002337899077 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.62969496561425, + 17.06129780775598 + ], + [ + 68.51485228213056, + 17.255945542684433 + ], + [ + 68.28516691516322, + 17.255945542684433 + ], + [ + 68.17032423167953, + 17.06129780775598 + ], + [ + 68.28516691516322, + 16.86665007282753 + ], + [ + 68.51485228213056, + 16.86665007282753 + ], + [ + 68.62969496561425, + 17.06129780775598 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.62969496561425, + 17.45059327761289 + ], + [ + 68.51485228213056, + 17.64524101254134 + ], + [ + 68.28516691516322, + 17.64524101254134 + ], + [ + 68.17032423167953, + 17.45059327761289 + ], + [ + 68.28516691516322, + 17.255945542684437 + ], + [ + 68.51485228213056, + 17.255945542684437 + ], + [ + 68.62969496561425, + 17.45059327761289 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.62969496561425, + 17.839888747469793 + ], + [ + 68.51485228213056, + 18.034536482398245 + ], + [ + 68.28516691516322, + 18.034536482398245 + ], + [ + 68.17032423167953, + 17.839888747469793 + ], + [ + 68.28516691516322, + 17.64524101254134 + ], + [ + 68.51485228213056, + 17.64524101254134 + ], + [ + 68.62969496561425, + 17.839888747469793 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.62969496561425, + 18.2291842173267 + ], + [ + 68.51485228213056, + 18.423831952255153 + ], + [ + 68.28516691516322, + 18.423831952255153 + ], + [ + 68.17032423167953, + 18.2291842173267 + ], + [ + 68.28516691516322, + 18.03453648239825 + ], + [ + 68.51485228213056, + 18.03453648239825 + ], + [ + 68.62969496561425, + 18.2291842173267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.62969496561425, + 18.61847968718361 + ], + [ + 68.51485228213056, + 18.81312742211206 + ], + [ + 68.28516691516322, + 18.81312742211206 + ], + [ + 68.17032423167953, + 18.61847968718361 + ], + [ + 68.28516691516322, + 18.423831952255156 + ], + [ + 68.51485228213056, + 18.423831952255156 + ], + [ + 68.62969496561425, + 18.61847968718361 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.62969496561425, + 19.007775157040513 + ], + [ + 68.51485228213056, + 19.202422891968965 + ], + [ + 68.28516691516322, + 19.202422891968965 + ], + [ + 68.17032423167953, + 19.007775157040513 + ], + [ + 68.28516691516322, + 18.81312742211206 + ], + [ + 68.51485228213056, + 18.81312742211206 + ], + [ + 68.62969496561425, + 19.007775157040513 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.62969496561425, + 19.39707062689742 + ], + [ + 68.51485228213056, + 19.591718361825873 + ], + [ + 68.28516691516322, + 19.591718361825873 + ], + [ + 68.17032423167953, + 19.39707062689742 + ], + [ + 68.28516691516322, + 19.20242289196897 + ], + [ + 68.51485228213056, + 19.20242289196897 + ], + [ + 68.62969496561425, + 19.39707062689742 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.62969496561425, + 19.78636609675433 + ], + [ + 68.51485228213056, + 19.98101383168278 + ], + [ + 68.28516691516322, + 19.98101383168278 + ], + [ + 68.17032423167953, + 19.78636609675433 + ], + [ + 68.28516691516322, + 19.591718361825876 + ], + [ + 68.51485228213056, + 19.591718361825876 + ], + [ + 68.62969496561425, + 19.78636609675433 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.62969496561425, + 20.175661566611232 + ], + [ + 68.51485228213056, + 20.370309301539685 + ], + [ + 68.28516691516322, + 20.370309301539685 + ], + [ + 68.17032423167953, + 20.175661566611232 + ], + [ + 68.28516691516322, + 19.98101383168278 + ], + [ + 68.51485228213056, + 19.98101383168278 + ], + [ + 68.62969496561425, + 20.175661566611232 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.62969496561425, + 20.564957036468137 + ], + [ + 68.51485228213056, + 20.75960477139659 + ], + [ + 68.28516691516322, + 20.75960477139659 + ], + [ + 68.17032423167953, + 20.564957036468137 + ], + [ + 68.28516691516322, + 20.370309301539685 + ], + [ + 68.51485228213056, + 20.370309301539685 + ], + [ + 68.62969496561425, + 20.564957036468137 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.62969496561425, + 20.954252506325044 + ], + [ + 68.51485228213056, + 21.148900241253497 + ], + [ + 68.28516691516322, + 21.148900241253497 + ], + [ + 68.17032423167953, + 20.954252506325044 + ], + [ + 68.28516691516322, + 20.759604771396592 + ], + [ + 68.51485228213056, + 20.759604771396592 + ], + [ + 68.62969496561425, + 20.954252506325044 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.62969496561425, + 21.343547976181952 + ], + [ + 68.51485228213056, + 21.538195711110404 + ], + [ + 68.28516691516322, + 21.538195711110404 + ], + [ + 68.17032423167953, + 21.343547976181952 + ], + [ + 68.28516691516322, + 21.1489002412535 + ], + [ + 68.51485228213056, + 21.1489002412535 + ], + [ + 68.62969496561425, + 21.343547976181952 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.62969496561425, + 21.732843446038856 + ], + [ + 68.51485228213056, + 21.92749118096731 + ], + [ + 68.28516691516322, + 21.92749118096731 + ], + [ + 68.17032423167953, + 21.732843446038856 + ], + [ + 68.28516691516322, + 21.538195711110404 + ], + [ + 68.51485228213056, + 21.538195711110404 + ], + [ + 68.62969496561425, + 21.732843446038856 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.62969496561425, + 22.122138915895764 + ], + [ + 68.51485228213056, + 22.316786650824216 + ], + [ + 68.28516691516322, + 22.316786650824216 + ], + [ + 68.17032423167953, + 22.122138915895764 + ], + [ + 68.28516691516322, + 21.927491180967312 + ], + [ + 68.51485228213056, + 21.927491180967312 + ], + [ + 68.62969496561425, + 22.122138915895764 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.62969496561425, + 22.511434385752672 + ], + [ + 68.51485228213056, + 22.706082120681124 + ], + [ + 68.28516691516322, + 22.706082120681124 + ], + [ + 68.17032423167953, + 22.511434385752672 + ], + [ + 68.28516691516322, + 22.31678665082422 + ], + [ + 68.51485228213056, + 22.31678665082422 + ], + [ + 68.62969496561425, + 22.511434385752672 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.62969496561425, + 22.900729855609576 + ], + [ + 68.51485228213056, + 23.09537759053803 + ], + [ + 68.28516691516322, + 23.09537759053803 + ], + [ + 68.17032423167953, + 22.900729855609576 + ], + [ + 68.28516691516322, + 22.706082120681124 + ], + [ + 68.51485228213056, + 22.706082120681124 + ], + [ + 68.62969496561425, + 22.900729855609576 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.62969496561425, + 23.290025325466484 + ], + [ + 68.51485228213056, + 23.484673060394936 + ], + [ + 68.28516691516322, + 23.484673060394936 + ], + [ + 68.17032423167953, + 23.290025325466484 + ], + [ + 68.28516691516322, + 23.095377590538032 + ], + [ + 68.51485228213056, + 23.095377590538032 + ], + [ + 68.62969496561425, + 23.290025325466484 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.62969496561425, + 23.67932079532339 + ], + [ + 68.51485228213056, + 23.873968530251844 + ], + [ + 68.28516691516322, + 23.873968530251844 + ], + [ + 68.17032423167953, + 23.67932079532339 + ], + [ + 68.28516691516322, + 23.48467306039494 + ], + [ + 68.51485228213056, + 23.48467306039494 + ], + [ + 68.62969496561425, + 23.67932079532339 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.62969496561425, + 24.068616265180296 + ], + [ + 68.51485228213056, + 24.263264000108748 + ], + [ + 68.28516691516322, + 24.263264000108748 + ], + [ + 68.17032423167953, + 24.068616265180296 + ], + [ + 68.28516691516322, + 23.873968530251844 + ], + [ + 68.51485228213056, + 23.873968530251844 + ], + [ + 68.62969496561425, + 24.068616265180296 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.62969496561425, + 24.4579117350372 + ], + [ + 68.51485228213056, + 24.652559469965652 + ], + [ + 68.28516691516322, + 24.652559469965652 + ], + [ + 68.17032423167953, + 24.4579117350372 + ], + [ + 68.28516691516322, + 24.263264000108748 + ], + [ + 68.51485228213056, + 24.263264000108748 + ], + [ + 68.62969496561425, + 24.4579117350372 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.62969496561425, + 24.847207204894108 + ], + [ + 68.51485228213056, + 25.04185493982256 + ], + [ + 68.28516691516322, + 25.04185493982256 + ], + [ + 68.17032423167953, + 24.847207204894108 + ], + [ + 68.28516691516322, + 24.652559469965656 + ], + [ + 68.51485228213056, + 24.652559469965656 + ], + [ + 68.62969496561425, + 24.847207204894108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.62969496561425, + 25.236502674751016 + ], + [ + 68.51485228213056, + 25.431150409679468 + ], + [ + 68.28516691516322, + 25.431150409679468 + ], + [ + 68.17032423167953, + 25.236502674751016 + ], + [ + 68.28516691516322, + 25.041854939822564 + ], + [ + 68.51485228213056, + 25.041854939822564 + ], + [ + 68.62969496561425, + 25.236502674751016 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.62969496561425, + 25.62579814460792 + ], + [ + 68.51485228213056, + 25.820445879536372 + ], + [ + 68.28516691516322, + 25.820445879536372 + ], + [ + 68.17032423167953, + 25.62579814460792 + ], + [ + 68.28516691516322, + 25.431150409679468 + ], + [ + 68.51485228213056, + 25.431150409679468 + ], + [ + 68.62969496561425, + 25.62579814460792 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.62969496561425, + 26.015093614464828 + ], + [ + 68.51485228213056, + 26.20974134939328 + ], + [ + 68.28516691516322, + 26.20974134939328 + ], + [ + 68.17032423167953, + 26.015093614464828 + ], + [ + 68.28516691516322, + 25.820445879536376 + ], + [ + 68.51485228213056, + 25.820445879536376 + ], + [ + 68.62969496561425, + 26.015093614464828 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.62969496561425, + 26.404389084321735 + ], + [ + 68.51485228213056, + 26.599036819250188 + ], + [ + 68.28516691516322, + 26.599036819250188 + ], + [ + 68.17032423167953, + 26.404389084321735 + ], + [ + 68.28516691516322, + 26.209741349393283 + ], + [ + 68.51485228213056, + 26.209741349393283 + ], + [ + 68.62969496561425, + 26.404389084321735 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.62969496561425, + 26.79368455417864 + ], + [ + 68.51485228213056, + 26.988332289107092 + ], + [ + 68.28516691516322, + 26.988332289107092 + ], + [ + 68.17032423167953, + 26.79368455417864 + ], + [ + 68.28516691516322, + 26.599036819250188 + ], + [ + 68.51485228213056, + 26.599036819250188 + ], + [ + 68.62969496561425, + 26.79368455417864 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.62969496561425, + 27.182980024035547 + ], + [ + 68.51485228213056, + 27.377627758964 + ], + [ + 68.28516691516322, + 27.377627758964 + ], + [ + 68.17032423167953, + 27.182980024035547 + ], + [ + 68.28516691516322, + 26.988332289107095 + ], + [ + 68.51485228213056, + 26.988332289107095 + ], + [ + 68.62969496561425, + 27.182980024035547 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.62969496561425, + 27.572275493892455 + ], + [ + 68.51485228213056, + 27.766923228820907 + ], + [ + 68.28516691516322, + 27.766923228820907 + ], + [ + 68.17032423167953, + 27.572275493892455 + ], + [ + 68.28516691516322, + 27.377627758964003 + ], + [ + 68.51485228213056, + 27.377627758964003 + ], + [ + 68.62969496561425, + 27.572275493892455 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.62969496561425, + 27.96157096374936 + ], + [ + 68.51485228213056, + 28.15621869867781 + ], + [ + 68.28516691516322, + 28.15621869867781 + ], + [ + 68.17032423167953, + 27.96157096374936 + ], + [ + 68.28516691516322, + 27.766923228820907 + ], + [ + 68.51485228213056, + 27.766923228820907 + ], + [ + 68.62969496561425, + 27.96157096374936 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.62969496561425, + 28.350866433606267 + ], + [ + 68.51485228213056, + 28.54551416853472 + ], + [ + 68.28516691516322, + 28.54551416853472 + ], + [ + 68.17032423167953, + 28.350866433606267 + ], + [ + 68.28516691516322, + 28.156218698677815 + ], + [ + 68.51485228213056, + 28.156218698677815 + ], + [ + 68.62969496561425, + 28.350866433606267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.62969496561425, + 28.74016190346317 + ], + [ + 68.51485228213056, + 28.934809638391624 + ], + [ + 68.28516691516322, + 28.934809638391624 + ], + [ + 68.17032423167953, + 28.74016190346317 + ], + [ + 68.28516691516322, + 28.54551416853472 + ], + [ + 68.51485228213056, + 28.54551416853472 + ], + [ + 68.62969496561425, + 28.74016190346317 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.62969496561425, + 29.12945737332008 + ], + [ + 68.51485228213056, + 29.32410510824853 + ], + [ + 68.28516691516322, + 29.32410510824853 + ], + [ + 68.17032423167953, + 29.12945737332008 + ], + [ + 68.28516691516322, + 28.934809638391627 + ], + [ + 68.51485228213056, + 28.934809638391627 + ], + [ + 68.62969496561425, + 29.12945737332008 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.62969496561425, + 29.518752843176983 + ], + [ + 68.51485228213056, + 29.713400578105436 + ], + [ + 68.28516691516322, + 29.713400578105436 + ], + [ + 68.17032423167953, + 29.518752843176983 + ], + [ + 68.28516691516322, + 29.32410510824853 + ], + [ + 68.51485228213056, + 29.32410510824853 + ], + [ + 68.62969496561425, + 29.518752843176983 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.62969496561425, + 29.90804831303389 + ], + [ + 68.51485228213056, + 30.102696047962343 + ], + [ + 68.28516691516322, + 30.102696047962343 + ], + [ + 68.17032423167953, + 29.90804831303389 + ], + [ + 68.28516691516322, + 29.71340057810544 + ], + [ + 68.51485228213056, + 29.71340057810544 + ], + [ + 68.62969496561425, + 29.90804831303389 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.62969496561425, + 30.297343782890795 + ], + [ + 68.51485228213056, + 30.491991517819248 + ], + [ + 68.28516691516322, + 30.491991517819248 + ], + [ + 68.17032423167953, + 30.297343782890795 + ], + [ + 68.28516691516322, + 30.102696047962343 + ], + [ + 68.51485228213056, + 30.102696047962343 + ], + [ + 68.62969496561425, + 30.297343782890795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.62969496561425, + 30.686639252747703 + ], + [ + 68.51485228213056, + 30.881286987676155 + ], + [ + 68.28516691516322, + 30.881286987676155 + ], + [ + 68.17032423167953, + 30.686639252747703 + ], + [ + 68.28516691516322, + 30.49199151781925 + ], + [ + 68.51485228213056, + 30.49199151781925 + ], + [ + 68.62969496561425, + 30.686639252747703 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.62969496561425, + 31.07593472260461 + ], + [ + 68.51485228213056, + 31.270582457533063 + ], + [ + 68.28516691516322, + 31.270582457533063 + ], + [ + 68.17032423167953, + 31.07593472260461 + ], + [ + 68.28516691516322, + 30.88128698767616 + ], + [ + 68.51485228213056, + 30.88128698767616 + ], + [ + 68.62969496561425, + 31.07593472260461 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.62969496561425, + 31.465230192461515 + ], + [ + 68.51485228213056, + 31.659877927389967 + ], + [ + 68.28516691516322, + 31.659877927389967 + ], + [ + 68.17032423167953, + 31.465230192461515 + ], + [ + 68.28516691516322, + 31.270582457533063 + ], + [ + 68.51485228213056, + 31.270582457533063 + ], + [ + 68.62969496561425, + 31.465230192461515 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.62969496561425, + 31.854525662318423 + ], + [ + 68.51485228213056, + 32.049173397246875 + ], + [ + 68.28516691516322, + 32.049173397246875 + ], + [ + 68.17032423167953, + 31.854525662318423 + ], + [ + 68.28516691516322, + 31.65987792738997 + ], + [ + 68.51485228213056, + 31.65987792738997 + ], + [ + 68.62969496561425, + 31.854525662318423 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.62969496561425, + 32.24382113217533 + ], + [ + 68.51485228213056, + 32.43846886710378 + ], + [ + 68.28516691516322, + 32.43846886710378 + ], + [ + 68.17032423167953, + 32.24382113217533 + ], + [ + 68.28516691516322, + 32.049173397246875 + ], + [ + 68.51485228213056, + 32.049173397246875 + ], + [ + 68.62969496561425, + 32.24382113217533 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.62969496561425, + 32.63311660203224 + ], + [ + 68.51485228213056, + 32.82776433696069 + ], + [ + 68.28516691516322, + 32.82776433696069 + ], + [ + 68.17032423167953, + 32.63311660203224 + ], + [ + 68.28516691516322, + 32.438468867103786 + ], + [ + 68.51485228213056, + 32.438468867103786 + ], + [ + 68.62969496561425, + 32.63311660203224 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.62969496561425, + 33.02241207188914 + ], + [ + 68.51485228213056, + 33.217059806817595 + ], + [ + 68.28516691516322, + 33.217059806817595 + ], + [ + 68.17032423167953, + 33.02241207188914 + ], + [ + 68.28516691516322, + 32.82776433696069 + ], + [ + 68.51485228213056, + 32.82776433696069 + ], + [ + 68.62969496561425, + 33.02241207188914 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.62969496561425, + 33.41170754174605 + ], + [ + 68.51485228213056, + 33.6063552766745 + ], + [ + 68.28516691516322, + 33.6063552766745 + ], + [ + 68.17032423167953, + 33.41170754174605 + ], + [ + 68.28516691516322, + 33.217059806817595 + ], + [ + 68.51485228213056, + 33.217059806817595 + ], + [ + 68.62969496561425, + 33.41170754174605 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.62969496561425, + 33.80100301160295 + ], + [ + 68.51485228213056, + 33.9956507465314 + ], + [ + 68.28516691516322, + 33.9956507465314 + ], + [ + 68.17032423167953, + 33.80100301160295 + ], + [ + 68.28516691516322, + 33.6063552766745 + ], + [ + 68.51485228213056, + 33.6063552766745 + ], + [ + 68.62969496561425, + 33.80100301160295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.62969496561425, + 34.190298481459855 + ], + [ + 68.51485228213056, + 34.38494621638831 + ], + [ + 68.28516691516322, + 34.38494621638831 + ], + [ + 68.17032423167953, + 34.190298481459855 + ], + [ + 68.28516691516322, + 33.9956507465314 + ], + [ + 68.51485228213056, + 33.9956507465314 + ], + [ + 68.62969496561425, + 34.190298481459855 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.62969496561425, + 34.57959395131677 + ], + [ + 68.51485228213056, + 34.77424168624522 + ], + [ + 68.28516691516322, + 34.77424168624522 + ], + [ + 68.17032423167953, + 34.57959395131677 + ], + [ + 68.28516691516322, + 34.384946216388315 + ], + [ + 68.51485228213056, + 34.384946216388315 + ], + [ + 68.62969496561425, + 34.57959395131677 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.62969496561425, + 34.96888942117368 + ], + [ + 68.51485228213056, + 35.16353715610213 + ], + [ + 68.28516691516322, + 35.16353715610213 + ], + [ + 68.17032423167953, + 34.96888942117368 + ], + [ + 68.28516691516322, + 34.774241686245226 + ], + [ + 68.51485228213056, + 34.774241686245226 + ], + [ + 68.62969496561425, + 34.96888942117368 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.62969496561425, + 35.35818489103058 + ], + [ + 68.51485228213056, + 35.552832625959034 + ], + [ + 68.28516691516322, + 35.552832625959034 + ], + [ + 68.17032423167953, + 35.35818489103058 + ], + [ + 68.28516691516322, + 35.16353715610213 + ], + [ + 68.51485228213056, + 35.16353715610213 + ], + [ + 68.62969496561425, + 35.35818489103058 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.62969496561425, + 35.74748036088749 + ], + [ + 68.51485228213056, + 35.94212809581594 + ], + [ + 68.28516691516322, + 35.94212809581594 + ], + [ + 68.17032423167953, + 35.74748036088749 + ], + [ + 68.28516691516322, + 35.552832625959034 + ], + [ + 68.51485228213056, + 35.552832625959034 + ], + [ + 68.62969496561425, + 35.74748036088749 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.62969496561425, + 36.13677583074439 + ], + [ + 68.51485228213056, + 36.33142356567284 + ], + [ + 68.28516691516322, + 36.33142356567284 + ], + [ + 68.17032423167953, + 36.13677583074439 + ], + [ + 68.28516691516322, + 35.94212809581594 + ], + [ + 68.51485228213056, + 35.94212809581594 + ], + [ + 68.62969496561425, + 36.13677583074439 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.62969496561425, + 36.526071300601295 + ], + [ + 68.51485228213056, + 36.72071903552975 + ], + [ + 68.28516691516322, + 36.72071903552975 + ], + [ + 68.17032423167953, + 36.526071300601295 + ], + [ + 68.28516691516322, + 36.33142356567284 + ], + [ + 68.51485228213056, + 36.33142356567284 + ], + [ + 68.62969496561425, + 36.526071300601295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.62969496561425, + 36.915366770458206 + ], + [ + 68.51485228213056, + 37.11001450538666 + ], + [ + 68.28516691516322, + 37.11001450538666 + ], + [ + 68.17032423167953, + 36.915366770458206 + ], + [ + 68.28516691516322, + 36.720719035529754 + ], + [ + 68.51485228213056, + 36.720719035529754 + ], + [ + 68.62969496561425, + 36.915366770458206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.62969496561425, + 37.30466224031511 + ], + [ + 68.51485228213056, + 37.49930997524356 + ], + [ + 68.28516691516322, + 37.49930997524356 + ], + [ + 68.17032423167953, + 37.30466224031511 + ], + [ + 68.28516691516322, + 37.11001450538666 + ], + [ + 68.51485228213056, + 37.11001450538666 + ], + [ + 68.62969496561425, + 37.30466224031511 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.62969496561425, + 37.69395771017202 + ], + [ + 68.51485228213056, + 37.888605445100474 + ], + [ + 68.28516691516322, + 37.888605445100474 + ], + [ + 68.17032423167953, + 37.69395771017202 + ], + [ + 68.28516691516322, + 37.49930997524357 + ], + [ + 68.51485228213056, + 37.49930997524357 + ], + [ + 68.62969496561425, + 37.69395771017202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.62969496561425, + 38.083253180028926 + ], + [ + 68.51485228213056, + 38.27790091495738 + ], + [ + 68.28516691516322, + 38.27790091495738 + ], + [ + 68.17032423167953, + 38.083253180028926 + ], + [ + 68.28516691516322, + 37.888605445100474 + ], + [ + 68.51485228213056, + 37.888605445100474 + ], + [ + 68.62969496561425, + 38.083253180028926 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.62969496561425, + 38.47254864988583 + ], + [ + 68.51485228213056, + 38.66719638481428 + ], + [ + 68.28516691516322, + 38.66719638481428 + ], + [ + 68.17032423167953, + 38.47254864988583 + ], + [ + 68.28516691516322, + 38.27790091495738 + ], + [ + 68.51485228213056, + 38.27790091495738 + ], + [ + 68.62969496561425, + 38.47254864988583 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.62969496561425, + 38.861844119742734 + ], + [ + 68.51485228213056, + 39.05649185467119 + ], + [ + 68.28516691516322, + 39.05649185467119 + ], + [ + 68.17032423167953, + 38.861844119742734 + ], + [ + 68.28516691516322, + 38.66719638481428 + ], + [ + 68.51485228213056, + 38.66719638481428 + ], + [ + 68.62969496561425, + 38.861844119742734 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.62969496561425, + 39.25113958959964 + ], + [ + 68.51485228213056, + 39.44578732452809 + ], + [ + 68.28516691516322, + 39.44578732452809 + ], + [ + 68.17032423167953, + 39.25113958959964 + ], + [ + 68.28516691516322, + 39.05649185467119 + ], + [ + 68.51485228213056, + 39.05649185467119 + ], + [ + 68.62969496561425, + 39.25113958959964 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.62969496561425, + 39.64043505945655 + ], + [ + 68.51485228213056, + 39.835082794385 + ], + [ + 68.28516691516322, + 39.835082794385 + ], + [ + 68.17032423167953, + 39.64043505945655 + ], + [ + 68.28516691516322, + 39.4457873245281 + ], + [ + 68.51485228213056, + 39.4457873245281 + ], + [ + 68.62969496561425, + 39.64043505945655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.62969496561425, + 40.029730529313454 + ], + [ + 68.51485228213056, + 40.224378264241906 + ], + [ + 68.28516691516322, + 40.224378264241906 + ], + [ + 68.17032423167953, + 40.029730529313454 + ], + [ + 68.28516691516322, + 39.835082794385 + ], + [ + 68.51485228213056, + 39.835082794385 + ], + [ + 68.62969496561425, + 40.029730529313454 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.62969496561425, + 40.419025999170366 + ], + [ + 68.51485228213056, + 40.61367373409882 + ], + [ + 68.28516691516322, + 40.61367373409882 + ], + [ + 68.17032423167953, + 40.419025999170366 + ], + [ + 68.28516691516322, + 40.22437826424191 + ], + [ + 68.51485228213056, + 40.22437826424191 + ], + [ + 68.62969496561425, + 40.419025999170366 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.62969496561425, + 40.80832146902727 + ], + [ + 68.51485228213056, + 41.00296920395572 + ], + [ + 68.28516691516322, + 41.00296920395572 + ], + [ + 68.17032423167953, + 40.80832146902727 + ], + [ + 68.28516691516322, + 40.61367373409882 + ], + [ + 68.51485228213056, + 40.61367373409882 + ], + [ + 68.62969496561425, + 40.80832146902727 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.62969496561425, + 41.197616938884174 + ], + [ + 68.51485228213056, + 41.392264673812626 + ], + [ + 68.28516691516322, + 41.392264673812626 + ], + [ + 68.17032423167953, + 41.197616938884174 + ], + [ + 68.28516691516322, + 41.00296920395572 + ], + [ + 68.51485228213056, + 41.00296920395572 + ], + [ + 68.62969496561425, + 41.197616938884174 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.62969496561425, + 41.58691240874108 + ], + [ + 68.51485228213056, + 41.78156014366953 + ], + [ + 68.28516691516322, + 41.78156014366953 + ], + [ + 68.17032423167953, + 41.58691240874108 + ], + [ + 68.28516691516322, + 41.392264673812626 + ], + [ + 68.51485228213056, + 41.392264673812626 + ], + [ + 68.62969496561425, + 41.58691240874108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.62969496561425, + 41.97620787859798 + ], + [ + 68.51485228213056, + 42.170855613526435 + ], + [ + 68.28516691516322, + 42.170855613526435 + ], + [ + 68.17032423167953, + 41.97620787859798 + ], + [ + 68.28516691516322, + 41.78156014366953 + ], + [ + 68.51485228213056, + 41.78156014366953 + ], + [ + 68.62969496561425, + 41.97620787859798 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.62969496561425, + 42.365503348454894 + ], + [ + 68.51485228213056, + 42.560151083383346 + ], + [ + 68.28516691516322, + 42.560151083383346 + ], + [ + 68.17032423167953, + 42.365503348454894 + ], + [ + 68.28516691516322, + 42.17085561352644 + ], + [ + 68.51485228213056, + 42.17085561352644 + ], + [ + 68.62969496561425, + 42.365503348454894 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.62969496561425, + 42.754798818311805 + ], + [ + 68.51485228213056, + 42.94944655324026 + ], + [ + 68.28516691516322, + 42.94944655324026 + ], + [ + 68.17032423167953, + 42.754798818311805 + ], + [ + 68.28516691516322, + 42.56015108338335 + ], + [ + 68.51485228213056, + 42.56015108338335 + ], + [ + 68.62969496561425, + 42.754798818311805 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.62969496561425, + 43.14409428816871 + ], + [ + 68.51485228213056, + 43.33874202309716 + ], + [ + 68.28516691516322, + 43.33874202309716 + ], + [ + 68.17032423167953, + 43.14409428816871 + ], + [ + 68.28516691516322, + 42.94944655324026 + ], + [ + 68.51485228213056, + 42.94944655324026 + ], + [ + 68.62969496561425, + 43.14409428816871 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.62969496561425, + 43.53338975802561 + ], + [ + 68.51485228213056, + 43.728037492954066 + ], + [ + 68.28516691516322, + 43.728037492954066 + ], + [ + 68.17032423167953, + 43.53338975802561 + ], + [ + 68.28516691516322, + 43.33874202309716 + ], + [ + 68.51485228213056, + 43.33874202309716 + ], + [ + 68.62969496561425, + 43.53338975802561 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.62969496561425, + 43.92268522788252 + ], + [ + 68.51485228213056, + 44.11733296281097 + ], + [ + 68.28516691516322, + 44.11733296281097 + ], + [ + 68.17032423167953, + 43.92268522788252 + ], + [ + 68.28516691516322, + 43.728037492954066 + ], + [ + 68.51485228213056, + 43.728037492954066 + ], + [ + 68.62969496561425, + 43.92268522788252 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.62969496561425, + 44.31198069773942 + ], + [ + 68.51485228213056, + 44.506628432667874 + ], + [ + 68.28516691516322, + 44.506628432667874 + ], + [ + 68.17032423167953, + 44.31198069773942 + ], + [ + 68.28516691516322, + 44.11733296281097 + ], + [ + 68.51485228213056, + 44.11733296281097 + ], + [ + 68.62969496561425, + 44.31198069773942 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.62969496561425, + 44.701276167596326 + ], + [ + 68.51485228213056, + 44.89592390252478 + ], + [ + 68.28516691516322, + 44.89592390252478 + ], + [ + 68.17032423167953, + 44.701276167596326 + ], + [ + 68.28516691516322, + 44.506628432667874 + ], + [ + 68.51485228213056, + 44.506628432667874 + ], + [ + 68.62969496561425, + 44.701276167596326 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.62969496561425, + 45.090571637453245 + ], + [ + 68.51485228213056, + 45.2852193723817 + ], + [ + 68.28516691516322, + 45.2852193723817 + ], + [ + 68.17032423167953, + 45.090571637453245 + ], + [ + 68.28516691516322, + 44.89592390252479 + ], + [ + 68.51485228213056, + 44.89592390252479 + ], + [ + 68.62969496561425, + 45.090571637453245 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.62969496561425, + 45.47986710731015 + ], + [ + 68.51485228213056, + 45.6745148422386 + ], + [ + 68.28516691516322, + 45.6745148422386 + ], + [ + 68.17032423167953, + 45.47986710731015 + ], + [ + 68.28516691516322, + 45.2852193723817 + ], + [ + 68.51485228213056, + 45.2852193723817 + ], + [ + 68.62969496561425, + 45.47986710731015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.62969496561425, + 45.86916257716705 + ], + [ + 68.51485228213056, + 46.063810312095505 + ], + [ + 68.28516691516322, + 46.063810312095505 + ], + [ + 68.17032423167953, + 45.86916257716705 + ], + [ + 68.28516691516322, + 45.6745148422386 + ], + [ + 68.51485228213056, + 45.6745148422386 + ], + [ + 68.62969496561425, + 45.86916257716705 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.62969496561425, + 46.25845804702396 + ], + [ + 68.51485228213056, + 46.45310578195241 + ], + [ + 68.28516691516322, + 46.45310578195241 + ], + [ + 68.17032423167953, + 46.25845804702396 + ], + [ + 68.28516691516322, + 46.063810312095505 + ], + [ + 68.51485228213056, + 46.063810312095505 + ], + [ + 68.62969496561425, + 46.25845804702396 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.62969496561425, + 46.64775351688086 + ], + [ + 68.51485228213056, + 46.842401251809314 + ], + [ + 68.28516691516322, + 46.842401251809314 + ], + [ + 68.17032423167953, + 46.64775351688086 + ], + [ + 68.28516691516322, + 46.45310578195241 + ], + [ + 68.51485228213056, + 46.45310578195241 + ], + [ + 68.62969496561425, + 46.64775351688086 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.62969496561425, + 47.037048986737766 + ], + [ + 68.51485228213056, + 47.23169672166622 + ], + [ + 68.28516691516322, + 47.23169672166622 + ], + [ + 68.17032423167953, + 47.037048986737766 + ], + [ + 68.28516691516322, + 46.842401251809314 + ], + [ + 68.51485228213056, + 46.842401251809314 + ], + [ + 68.62969496561425, + 47.037048986737766 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.62969496561425, + 47.42634445659467 + ], + [ + 68.51485228213056, + 47.62099219152312 + ], + [ + 68.28516691516322, + 47.62099219152312 + ], + [ + 68.17032423167953, + 47.42634445659467 + ], + [ + 68.28516691516322, + 47.23169672166622 + ], + [ + 68.51485228213056, + 47.23169672166622 + ], + [ + 68.62969496561425, + 47.42634445659467 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.62969496561425, + 47.81563992645159 + ], + [ + 68.51485228213056, + 48.01028766138004 + ], + [ + 68.28516691516322, + 48.01028766138004 + ], + [ + 68.17032423167953, + 47.81563992645159 + ], + [ + 68.28516691516322, + 47.620992191523136 + ], + [ + 68.51485228213056, + 47.620992191523136 + ], + [ + 68.62969496561425, + 47.81563992645159 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.97422301606528, + 11.805808964687746 + ], + [ + 68.8593803325816, + 12.0004566996162 + ], + [ + 68.62969496561425, + 12.0004566996162 + ], + [ + 68.51485228213056, + 11.805808964687746 + ], + [ + 68.62969496561425, + 11.611161229759292 + ], + [ + 68.8593803325816, + 11.611161229759292 + ], + [ + 68.97422301606528, + 11.805808964687746 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.97422301606528, + 12.195104434544652 + ], + [ + 68.8593803325816, + 12.389752169473105 + ], + [ + 68.62969496561425, + 12.389752169473105 + ], + [ + 68.51485228213056, + 12.195104434544652 + ], + [ + 68.62969496561425, + 12.000456699616198 + ], + [ + 68.8593803325816, + 12.000456699616198 + ], + [ + 68.97422301606528, + 12.195104434544652 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.97422301606528, + 12.58439990440156 + ], + [ + 68.8593803325816, + 12.779047639330013 + ], + [ + 68.62969496561425, + 12.779047639330013 + ], + [ + 68.51485228213056, + 12.58439990440156 + ], + [ + 68.62969496561425, + 12.389752169473105 + ], + [ + 68.8593803325816, + 12.389752169473105 + ], + [ + 68.97422301606528, + 12.58439990440156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.97422301606528, + 12.973695374258465 + ], + [ + 68.8593803325816, + 13.16834310918692 + ], + [ + 68.62969496561425, + 13.16834310918692 + ], + [ + 68.51485228213056, + 12.973695374258465 + ], + [ + 68.62969496561425, + 12.779047639330011 + ], + [ + 68.8593803325816, + 12.779047639330011 + ], + [ + 68.97422301606528, + 12.973695374258465 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.97422301606528, + 13.362990844115371 + ], + [ + 68.8593803325816, + 13.557638579043825 + ], + [ + 68.62969496561425, + 13.557638579043825 + ], + [ + 68.51485228213056, + 13.362990844115371 + ], + [ + 68.62969496561425, + 13.168343109186917 + ], + [ + 68.8593803325816, + 13.168343109186917 + ], + [ + 68.97422301606528, + 13.362990844115371 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.97422301606528, + 13.752286313972277 + ], + [ + 68.8593803325816, + 13.946934048900731 + ], + [ + 68.62969496561425, + 13.946934048900731 + ], + [ + 68.51485228213056, + 13.752286313972277 + ], + [ + 68.62969496561425, + 13.557638579043823 + ], + [ + 68.8593803325816, + 13.557638579043823 + ], + [ + 68.97422301606528, + 13.752286313972277 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.97422301606528, + 14.141581783829183 + ], + [ + 68.8593803325816, + 14.336229518757637 + ], + [ + 68.62969496561425, + 14.336229518757637 + ], + [ + 68.51485228213056, + 14.141581783829183 + ], + [ + 68.62969496561425, + 13.94693404890073 + ], + [ + 68.8593803325816, + 13.94693404890073 + ], + [ + 68.97422301606528, + 14.141581783829183 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.97422301606528, + 14.530877253686091 + ], + [ + 68.8593803325816, + 14.725524988614545 + ], + [ + 68.62969496561425, + 14.725524988614545 + ], + [ + 68.51485228213056, + 14.530877253686091 + ], + [ + 68.62969496561425, + 14.336229518757637 + ], + [ + 68.8593803325816, + 14.336229518757637 + ], + [ + 68.97422301606528, + 14.530877253686091 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.97422301606528, + 14.920172723542997 + ], + [ + 68.8593803325816, + 15.114820458471451 + ], + [ + 68.62969496561425, + 15.114820458471451 + ], + [ + 68.51485228213056, + 14.920172723542997 + ], + [ + 68.62969496561425, + 14.725524988614543 + ], + [ + 68.8593803325816, + 14.725524988614543 + ], + [ + 68.97422301606528, + 14.920172723542997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.97422301606528, + 15.309468193399903 + ], + [ + 68.8593803325816, + 15.504115928328357 + ], + [ + 68.62969496561425, + 15.504115928328357 + ], + [ + 68.51485228213056, + 15.309468193399903 + ], + [ + 68.62969496561425, + 15.11482045847145 + ], + [ + 68.8593803325816, + 15.11482045847145 + ], + [ + 68.97422301606528, + 15.309468193399903 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.97422301606528, + 15.69876366325681 + ], + [ + 68.8593803325816, + 15.893411398185265 + ], + [ + 68.62969496561425, + 15.893411398185265 + ], + [ + 68.51485228213056, + 15.69876366325681 + ], + [ + 68.62969496561425, + 15.504115928328357 + ], + [ + 68.8593803325816, + 15.504115928328357 + ], + [ + 68.97422301606528, + 15.69876366325681 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.97422301606528, + 16.088059133113717 + ], + [ + 68.8593803325816, + 16.28270686804217 + ], + [ + 68.62969496561425, + 16.28270686804217 + ], + [ + 68.51485228213056, + 16.088059133113717 + ], + [ + 68.62969496561425, + 15.893411398185263 + ], + [ + 68.8593803325816, + 15.893411398185263 + ], + [ + 68.97422301606528, + 16.088059133113717 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.97422301606528, + 16.477354602970625 + ], + [ + 68.8593803325816, + 16.672002337899077 + ], + [ + 68.62969496561425, + 16.672002337899077 + ], + [ + 68.51485228213056, + 16.477354602970625 + ], + [ + 68.62969496561425, + 16.282706868042172 + ], + [ + 68.8593803325816, + 16.282706868042172 + ], + [ + 68.97422301606528, + 16.477354602970625 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.97422301606528, + 16.86665007282753 + ], + [ + 68.8593803325816, + 17.06129780775598 + ], + [ + 68.62969496561425, + 17.06129780775598 + ], + [ + 68.51485228213056, + 16.86665007282753 + ], + [ + 68.62969496561425, + 16.672002337899077 + ], + [ + 68.8593803325816, + 16.672002337899077 + ], + [ + 68.97422301606528, + 16.86665007282753 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.97422301606528, + 17.255945542684437 + ], + [ + 68.8593803325816, + 17.45059327761289 + ], + [ + 68.62969496561425, + 17.45059327761289 + ], + [ + 68.51485228213056, + 17.255945542684437 + ], + [ + 68.62969496561425, + 17.061297807755984 + ], + [ + 68.8593803325816, + 17.061297807755984 + ], + [ + 68.97422301606528, + 17.255945542684437 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.97422301606528, + 17.64524101254134 + ], + [ + 68.8593803325816, + 17.839888747469793 + ], + [ + 68.62969496561425, + 17.839888747469793 + ], + [ + 68.51485228213056, + 17.64524101254134 + ], + [ + 68.62969496561425, + 17.45059327761289 + ], + [ + 68.8593803325816, + 17.45059327761289 + ], + [ + 68.97422301606528, + 17.64524101254134 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.97422301606528, + 18.03453648239825 + ], + [ + 68.8593803325816, + 18.2291842173267 + ], + [ + 68.62969496561425, + 18.2291842173267 + ], + [ + 68.51485228213056, + 18.03453648239825 + ], + [ + 68.62969496561425, + 17.839888747469796 + ], + [ + 68.8593803325816, + 17.839888747469796 + ], + [ + 68.97422301606528, + 18.03453648239825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.97422301606528, + 18.423831952255156 + ], + [ + 68.8593803325816, + 18.61847968718361 + ], + [ + 68.62969496561425, + 18.61847968718361 + ], + [ + 68.51485228213056, + 18.423831952255156 + ], + [ + 68.62969496561425, + 18.229184217326704 + ], + [ + 68.8593803325816, + 18.229184217326704 + ], + [ + 68.97422301606528, + 18.423831952255156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.97422301606528, + 18.81312742211206 + ], + [ + 68.8593803325816, + 19.007775157040513 + ], + [ + 68.62969496561425, + 19.007775157040513 + ], + [ + 68.51485228213056, + 18.81312742211206 + ], + [ + 68.62969496561425, + 18.61847968718361 + ], + [ + 68.8593803325816, + 18.61847968718361 + ], + [ + 68.97422301606528, + 18.81312742211206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.97422301606528, + 19.20242289196897 + ], + [ + 68.8593803325816, + 19.39707062689742 + ], + [ + 68.62969496561425, + 19.39707062689742 + ], + [ + 68.51485228213056, + 19.20242289196897 + ], + [ + 68.62969496561425, + 19.007775157040516 + ], + [ + 68.8593803325816, + 19.007775157040516 + ], + [ + 68.97422301606528, + 19.20242289196897 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.97422301606528, + 19.591718361825876 + ], + [ + 68.8593803325816, + 19.78636609675433 + ], + [ + 68.62969496561425, + 19.78636609675433 + ], + [ + 68.51485228213056, + 19.591718361825876 + ], + [ + 68.62969496561425, + 19.397070626897424 + ], + [ + 68.8593803325816, + 19.397070626897424 + ], + [ + 68.97422301606528, + 19.591718361825876 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.97422301606528, + 19.98101383168278 + ], + [ + 68.8593803325816, + 20.175661566611232 + ], + [ + 68.62969496561425, + 20.175661566611232 + ], + [ + 68.51485228213056, + 19.98101383168278 + ], + [ + 68.62969496561425, + 19.78636609675433 + ], + [ + 68.8593803325816, + 19.78636609675433 + ], + [ + 68.97422301606528, + 19.98101383168278 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.97422301606528, + 20.370309301539685 + ], + [ + 68.8593803325816, + 20.564957036468137 + ], + [ + 68.62969496561425, + 20.564957036468137 + ], + [ + 68.51485228213056, + 20.370309301539685 + ], + [ + 68.62969496561425, + 20.175661566611232 + ], + [ + 68.8593803325816, + 20.175661566611232 + ], + [ + 68.97422301606528, + 20.370309301539685 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.97422301606528, + 20.759604771396592 + ], + [ + 68.8593803325816, + 20.954252506325044 + ], + [ + 68.62969496561425, + 20.954252506325044 + ], + [ + 68.51485228213056, + 20.759604771396592 + ], + [ + 68.62969496561425, + 20.56495703646814 + ], + [ + 68.8593803325816, + 20.56495703646814 + ], + [ + 68.97422301606528, + 20.759604771396592 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.97422301606528, + 21.1489002412535 + ], + [ + 68.8593803325816, + 21.343547976181952 + ], + [ + 68.62969496561425, + 21.343547976181952 + ], + [ + 68.51485228213056, + 21.1489002412535 + ], + [ + 68.62969496561425, + 20.954252506325048 + ], + [ + 68.8593803325816, + 20.954252506325048 + ], + [ + 68.97422301606528, + 21.1489002412535 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.97422301606528, + 21.538195711110404 + ], + [ + 68.8593803325816, + 21.732843446038856 + ], + [ + 68.62969496561425, + 21.732843446038856 + ], + [ + 68.51485228213056, + 21.538195711110404 + ], + [ + 68.62969496561425, + 21.343547976181952 + ], + [ + 68.8593803325816, + 21.343547976181952 + ], + [ + 68.97422301606528, + 21.538195711110404 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.97422301606528, + 21.927491180967312 + ], + [ + 68.8593803325816, + 22.122138915895764 + ], + [ + 68.62969496561425, + 22.122138915895764 + ], + [ + 68.51485228213056, + 21.927491180967312 + ], + [ + 68.62969496561425, + 21.73284344603886 + ], + [ + 68.8593803325816, + 21.73284344603886 + ], + [ + 68.97422301606528, + 21.927491180967312 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.97422301606528, + 22.31678665082422 + ], + [ + 68.8593803325816, + 22.511434385752672 + ], + [ + 68.62969496561425, + 22.511434385752672 + ], + [ + 68.51485228213056, + 22.31678665082422 + ], + [ + 68.62969496561425, + 22.122138915895768 + ], + [ + 68.8593803325816, + 22.122138915895768 + ], + [ + 68.97422301606528, + 22.31678665082422 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.97422301606528, + 22.706082120681124 + ], + [ + 68.8593803325816, + 22.900729855609576 + ], + [ + 68.62969496561425, + 22.900729855609576 + ], + [ + 68.51485228213056, + 22.706082120681124 + ], + [ + 68.62969496561425, + 22.511434385752672 + ], + [ + 68.8593803325816, + 22.511434385752672 + ], + [ + 68.97422301606528, + 22.706082120681124 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.97422301606528, + 23.095377590538032 + ], + [ + 68.8593803325816, + 23.290025325466484 + ], + [ + 68.62969496561425, + 23.290025325466484 + ], + [ + 68.51485228213056, + 23.095377590538032 + ], + [ + 68.62969496561425, + 22.90072985560958 + ], + [ + 68.8593803325816, + 22.90072985560958 + ], + [ + 68.97422301606528, + 23.095377590538032 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.97422301606528, + 23.48467306039494 + ], + [ + 68.8593803325816, + 23.67932079532339 + ], + [ + 68.62969496561425, + 23.67932079532339 + ], + [ + 68.51485228213056, + 23.48467306039494 + ], + [ + 68.62969496561425, + 23.290025325466488 + ], + [ + 68.8593803325816, + 23.290025325466488 + ], + [ + 68.97422301606528, + 23.48467306039494 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.97422301606528, + 23.873968530251844 + ], + [ + 68.8593803325816, + 24.068616265180296 + ], + [ + 68.62969496561425, + 24.068616265180296 + ], + [ + 68.51485228213056, + 23.873968530251844 + ], + [ + 68.62969496561425, + 23.67932079532339 + ], + [ + 68.8593803325816, + 23.67932079532339 + ], + [ + 68.97422301606528, + 23.873968530251844 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.97422301606528, + 24.263264000108748 + ], + [ + 68.8593803325816, + 24.4579117350372 + ], + [ + 68.62969496561425, + 24.4579117350372 + ], + [ + 68.51485228213056, + 24.263264000108748 + ], + [ + 68.62969496561425, + 24.068616265180296 + ], + [ + 68.8593803325816, + 24.068616265180296 + ], + [ + 68.97422301606528, + 24.263264000108748 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.97422301606528, + 24.652559469965656 + ], + [ + 68.8593803325816, + 24.847207204894108 + ], + [ + 68.62969496561425, + 24.847207204894108 + ], + [ + 68.51485228213056, + 24.652559469965656 + ], + [ + 68.62969496561425, + 24.457911735037204 + ], + [ + 68.8593803325816, + 24.457911735037204 + ], + [ + 68.97422301606528, + 24.652559469965656 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.97422301606528, + 25.041854939822564 + ], + [ + 68.8593803325816, + 25.236502674751016 + ], + [ + 68.62969496561425, + 25.236502674751016 + ], + [ + 68.51485228213056, + 25.041854939822564 + ], + [ + 68.62969496561425, + 24.84720720489411 + ], + [ + 68.8593803325816, + 24.84720720489411 + ], + [ + 68.97422301606528, + 25.041854939822564 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.97422301606528, + 25.431150409679468 + ], + [ + 68.8593803325816, + 25.62579814460792 + ], + [ + 68.62969496561425, + 25.62579814460792 + ], + [ + 68.51485228213056, + 25.431150409679468 + ], + [ + 68.62969496561425, + 25.236502674751016 + ], + [ + 68.8593803325816, + 25.236502674751016 + ], + [ + 68.97422301606528, + 25.431150409679468 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.97422301606528, + 25.820445879536376 + ], + [ + 68.8593803325816, + 26.015093614464828 + ], + [ + 68.62969496561425, + 26.015093614464828 + ], + [ + 68.51485228213056, + 25.820445879536376 + ], + [ + 68.62969496561425, + 25.625798144607923 + ], + [ + 68.8593803325816, + 25.625798144607923 + ], + [ + 68.97422301606528, + 25.820445879536376 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.97422301606528, + 26.209741349393283 + ], + [ + 68.8593803325816, + 26.404389084321735 + ], + [ + 68.62969496561425, + 26.404389084321735 + ], + [ + 68.51485228213056, + 26.209741349393283 + ], + [ + 68.62969496561425, + 26.01509361446483 + ], + [ + 68.8593803325816, + 26.01509361446483 + ], + [ + 68.97422301606528, + 26.209741349393283 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.97422301606528, + 26.599036819250188 + ], + [ + 68.8593803325816, + 26.79368455417864 + ], + [ + 68.62969496561425, + 26.79368455417864 + ], + [ + 68.51485228213056, + 26.599036819250188 + ], + [ + 68.62969496561425, + 26.404389084321735 + ], + [ + 68.8593803325816, + 26.404389084321735 + ], + [ + 68.97422301606528, + 26.599036819250188 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.97422301606528, + 26.988332289107095 + ], + [ + 68.8593803325816, + 27.182980024035547 + ], + [ + 68.62969496561425, + 27.182980024035547 + ], + [ + 68.51485228213056, + 26.988332289107095 + ], + [ + 68.62969496561425, + 26.793684554178643 + ], + [ + 68.8593803325816, + 26.793684554178643 + ], + [ + 68.97422301606528, + 26.988332289107095 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.97422301606528, + 27.377627758964003 + ], + [ + 68.8593803325816, + 27.572275493892455 + ], + [ + 68.62969496561425, + 27.572275493892455 + ], + [ + 68.51485228213056, + 27.377627758964003 + ], + [ + 68.62969496561425, + 27.18298002403555 + ], + [ + 68.8593803325816, + 27.18298002403555 + ], + [ + 68.97422301606528, + 27.377627758964003 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.97422301606528, + 27.766923228820907 + ], + [ + 68.8593803325816, + 27.96157096374936 + ], + [ + 68.62969496561425, + 27.96157096374936 + ], + [ + 68.51485228213056, + 27.766923228820907 + ], + [ + 68.62969496561425, + 27.572275493892455 + ], + [ + 68.8593803325816, + 27.572275493892455 + ], + [ + 68.97422301606528, + 27.766923228820907 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.97422301606528, + 28.156218698677815 + ], + [ + 68.8593803325816, + 28.350866433606267 + ], + [ + 68.62969496561425, + 28.350866433606267 + ], + [ + 68.51485228213056, + 28.156218698677815 + ], + [ + 68.62969496561425, + 27.961570963749363 + ], + [ + 68.8593803325816, + 27.961570963749363 + ], + [ + 68.97422301606528, + 28.156218698677815 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.97422301606528, + 28.54551416853472 + ], + [ + 68.8593803325816, + 28.74016190346317 + ], + [ + 68.62969496561425, + 28.74016190346317 + ], + [ + 68.51485228213056, + 28.54551416853472 + ], + [ + 68.62969496561425, + 28.350866433606267 + ], + [ + 68.8593803325816, + 28.350866433606267 + ], + [ + 68.97422301606528, + 28.54551416853472 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.97422301606528, + 28.934809638391627 + ], + [ + 68.8593803325816, + 29.12945737332008 + ], + [ + 68.62969496561425, + 29.12945737332008 + ], + [ + 68.51485228213056, + 28.934809638391627 + ], + [ + 68.62969496561425, + 28.740161903463175 + ], + [ + 68.8593803325816, + 28.740161903463175 + ], + [ + 68.97422301606528, + 28.934809638391627 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.97422301606528, + 29.32410510824853 + ], + [ + 68.8593803325816, + 29.518752843176983 + ], + [ + 68.62969496561425, + 29.518752843176983 + ], + [ + 68.51485228213056, + 29.32410510824853 + ], + [ + 68.62969496561425, + 29.12945737332008 + ], + [ + 68.8593803325816, + 29.12945737332008 + ], + [ + 68.97422301606528, + 29.32410510824853 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.97422301606528, + 29.71340057810544 + ], + [ + 68.8593803325816, + 29.90804831303389 + ], + [ + 68.62969496561425, + 29.90804831303389 + ], + [ + 68.51485228213056, + 29.71340057810544 + ], + [ + 68.62969496561425, + 29.518752843176987 + ], + [ + 68.8593803325816, + 29.518752843176987 + ], + [ + 68.97422301606528, + 29.71340057810544 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.97422301606528, + 30.102696047962343 + ], + [ + 68.8593803325816, + 30.297343782890795 + ], + [ + 68.62969496561425, + 30.297343782890795 + ], + [ + 68.51485228213056, + 30.102696047962343 + ], + [ + 68.62969496561425, + 29.90804831303389 + ], + [ + 68.8593803325816, + 29.90804831303389 + ], + [ + 68.97422301606528, + 30.102696047962343 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.97422301606528, + 30.49199151781925 + ], + [ + 68.8593803325816, + 30.686639252747703 + ], + [ + 68.62969496561425, + 30.686639252747703 + ], + [ + 68.51485228213056, + 30.49199151781925 + ], + [ + 68.62969496561425, + 30.2973437828908 + ], + [ + 68.8593803325816, + 30.2973437828908 + ], + [ + 68.97422301606528, + 30.49199151781925 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.97422301606528, + 30.88128698767616 + ], + [ + 68.8593803325816, + 31.07593472260461 + ], + [ + 68.62969496561425, + 31.07593472260461 + ], + [ + 68.51485228213056, + 30.88128698767616 + ], + [ + 68.62969496561425, + 30.686639252747707 + ], + [ + 68.8593803325816, + 30.686639252747707 + ], + [ + 68.97422301606528, + 30.88128698767616 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.97422301606528, + 31.270582457533063 + ], + [ + 68.8593803325816, + 31.465230192461515 + ], + [ + 68.62969496561425, + 31.465230192461515 + ], + [ + 68.51485228213056, + 31.270582457533063 + ], + [ + 68.62969496561425, + 31.07593472260461 + ], + [ + 68.8593803325816, + 31.07593472260461 + ], + [ + 68.97422301606528, + 31.270582457533063 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.97422301606528, + 31.65987792738997 + ], + [ + 68.8593803325816, + 31.854525662318423 + ], + [ + 68.62969496561425, + 31.854525662318423 + ], + [ + 68.51485228213056, + 31.65987792738997 + ], + [ + 68.62969496561425, + 31.46523019246152 + ], + [ + 68.8593803325816, + 31.46523019246152 + ], + [ + 68.97422301606528, + 31.65987792738997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.97422301606528, + 32.049173397246875 + ], + [ + 68.8593803325816, + 32.24382113217533 + ], + [ + 68.62969496561425, + 32.24382113217533 + ], + [ + 68.51485228213056, + 32.049173397246875 + ], + [ + 68.62969496561425, + 31.854525662318423 + ], + [ + 68.8593803325816, + 31.854525662318423 + ], + [ + 68.97422301606528, + 32.049173397246875 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.97422301606528, + 32.438468867103786 + ], + [ + 68.8593803325816, + 32.63311660203224 + ], + [ + 68.62969496561425, + 32.63311660203224 + ], + [ + 68.51485228213056, + 32.438468867103786 + ], + [ + 68.62969496561425, + 32.243821132175334 + ], + [ + 68.8593803325816, + 32.243821132175334 + ], + [ + 68.97422301606528, + 32.438468867103786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.97422301606528, + 32.82776433696069 + ], + [ + 68.8593803325816, + 33.02241207188914 + ], + [ + 68.62969496561425, + 33.02241207188914 + ], + [ + 68.51485228213056, + 32.82776433696069 + ], + [ + 68.62969496561425, + 32.63311660203224 + ], + [ + 68.8593803325816, + 32.63311660203224 + ], + [ + 68.97422301606528, + 32.82776433696069 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.97422301606528, + 33.217059806817595 + ], + [ + 68.8593803325816, + 33.41170754174605 + ], + [ + 68.62969496561425, + 33.41170754174605 + ], + [ + 68.51485228213056, + 33.217059806817595 + ], + [ + 68.62969496561425, + 33.02241207188914 + ], + [ + 68.8593803325816, + 33.02241207188914 + ], + [ + 68.97422301606528, + 33.217059806817595 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.97422301606528, + 33.6063552766745 + ], + [ + 68.8593803325816, + 33.80100301160295 + ], + [ + 68.62969496561425, + 33.80100301160295 + ], + [ + 68.51485228213056, + 33.6063552766745 + ], + [ + 68.62969496561425, + 33.41170754174605 + ], + [ + 68.8593803325816, + 33.41170754174605 + ], + [ + 68.97422301606528, + 33.6063552766745 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.97422301606528, + 33.9956507465314 + ], + [ + 68.8593803325816, + 34.190298481459855 + ], + [ + 68.62969496561425, + 34.190298481459855 + ], + [ + 68.51485228213056, + 33.9956507465314 + ], + [ + 68.62969496561425, + 33.80100301160295 + ], + [ + 68.8593803325816, + 33.80100301160295 + ], + [ + 68.97422301606528, + 33.9956507465314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.97422301606528, + 34.384946216388315 + ], + [ + 68.8593803325816, + 34.57959395131677 + ], + [ + 68.62969496561425, + 34.57959395131677 + ], + [ + 68.51485228213056, + 34.384946216388315 + ], + [ + 68.62969496561425, + 34.19029848145986 + ], + [ + 68.8593803325816, + 34.19029848145986 + ], + [ + 68.97422301606528, + 34.384946216388315 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.97422301606528, + 34.774241686245226 + ], + [ + 68.8593803325816, + 34.96888942117368 + ], + [ + 68.62969496561425, + 34.96888942117368 + ], + [ + 68.51485228213056, + 34.774241686245226 + ], + [ + 68.62969496561425, + 34.579593951316774 + ], + [ + 68.8593803325816, + 34.579593951316774 + ], + [ + 68.97422301606528, + 34.774241686245226 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.97422301606528, + 35.16353715610213 + ], + [ + 68.8593803325816, + 35.35818489103058 + ], + [ + 68.62969496561425, + 35.35818489103058 + ], + [ + 68.51485228213056, + 35.16353715610213 + ], + [ + 68.62969496561425, + 34.96888942117368 + ], + [ + 68.8593803325816, + 34.96888942117368 + ], + [ + 68.97422301606528, + 35.16353715610213 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.97422301606528, + 35.552832625959034 + ], + [ + 68.8593803325816, + 35.74748036088749 + ], + [ + 68.62969496561425, + 35.74748036088749 + ], + [ + 68.51485228213056, + 35.552832625959034 + ], + [ + 68.62969496561425, + 35.35818489103058 + ], + [ + 68.8593803325816, + 35.35818489103058 + ], + [ + 68.97422301606528, + 35.552832625959034 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.97422301606528, + 35.94212809581594 + ], + [ + 68.8593803325816, + 36.13677583074439 + ], + [ + 68.62969496561425, + 36.13677583074439 + ], + [ + 68.51485228213056, + 35.94212809581594 + ], + [ + 68.62969496561425, + 35.74748036088749 + ], + [ + 68.8593803325816, + 35.74748036088749 + ], + [ + 68.97422301606528, + 35.94212809581594 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.97422301606528, + 36.33142356567284 + ], + [ + 68.8593803325816, + 36.526071300601295 + ], + [ + 68.62969496561425, + 36.526071300601295 + ], + [ + 68.51485228213056, + 36.33142356567284 + ], + [ + 68.62969496561425, + 36.13677583074439 + ], + [ + 68.8593803325816, + 36.13677583074439 + ], + [ + 68.97422301606528, + 36.33142356567284 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.97422301606528, + 36.720719035529754 + ], + [ + 68.8593803325816, + 36.915366770458206 + ], + [ + 68.62969496561425, + 36.915366770458206 + ], + [ + 68.51485228213056, + 36.720719035529754 + ], + [ + 68.62969496561425, + 36.5260713006013 + ], + [ + 68.8593803325816, + 36.5260713006013 + ], + [ + 68.97422301606528, + 36.720719035529754 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.97422301606528, + 37.11001450538666 + ], + [ + 68.8593803325816, + 37.30466224031511 + ], + [ + 68.62969496561425, + 37.30466224031511 + ], + [ + 68.51485228213056, + 37.11001450538666 + ], + [ + 68.62969496561425, + 36.915366770458206 + ], + [ + 68.8593803325816, + 36.915366770458206 + ], + [ + 68.97422301606528, + 37.11001450538666 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.97422301606528, + 37.49930997524357 + ], + [ + 68.8593803325816, + 37.69395771017202 + ], + [ + 68.62969496561425, + 37.69395771017202 + ], + [ + 68.51485228213056, + 37.49930997524357 + ], + [ + 68.62969496561425, + 37.30466224031512 + ], + [ + 68.8593803325816, + 37.30466224031512 + ], + [ + 68.97422301606528, + 37.49930997524357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.97422301606528, + 37.888605445100474 + ], + [ + 68.8593803325816, + 38.083253180028926 + ], + [ + 68.62969496561425, + 38.083253180028926 + ], + [ + 68.51485228213056, + 37.888605445100474 + ], + [ + 68.62969496561425, + 37.69395771017202 + ], + [ + 68.8593803325816, + 37.69395771017202 + ], + [ + 68.97422301606528, + 37.888605445100474 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.97422301606528, + 38.27790091495738 + ], + [ + 68.8593803325816, + 38.47254864988583 + ], + [ + 68.62969496561425, + 38.47254864988583 + ], + [ + 68.51485228213056, + 38.27790091495738 + ], + [ + 68.62969496561425, + 38.083253180028926 + ], + [ + 68.8593803325816, + 38.083253180028926 + ], + [ + 68.97422301606528, + 38.27790091495738 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.97422301606528, + 38.66719638481428 + ], + [ + 68.8593803325816, + 38.861844119742734 + ], + [ + 68.62969496561425, + 38.861844119742734 + ], + [ + 68.51485228213056, + 38.66719638481428 + ], + [ + 68.62969496561425, + 38.47254864988583 + ], + [ + 68.8593803325816, + 38.47254864988583 + ], + [ + 68.97422301606528, + 38.66719638481428 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.97422301606528, + 39.05649185467119 + ], + [ + 68.8593803325816, + 39.25113958959964 + ], + [ + 68.62969496561425, + 39.25113958959964 + ], + [ + 68.51485228213056, + 39.05649185467119 + ], + [ + 68.62969496561425, + 38.861844119742734 + ], + [ + 68.8593803325816, + 38.861844119742734 + ], + [ + 68.97422301606528, + 39.05649185467119 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.97422301606528, + 39.4457873245281 + ], + [ + 68.8593803325816, + 39.64043505945655 + ], + [ + 68.62969496561425, + 39.64043505945655 + ], + [ + 68.51485228213056, + 39.4457873245281 + ], + [ + 68.62969496561425, + 39.251139589599646 + ], + [ + 68.8593803325816, + 39.251139589599646 + ], + [ + 68.97422301606528, + 39.4457873245281 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.97422301606528, + 39.835082794385 + ], + [ + 68.8593803325816, + 40.029730529313454 + ], + [ + 68.62969496561425, + 40.029730529313454 + ], + [ + 68.51485228213056, + 39.835082794385 + ], + [ + 68.62969496561425, + 39.64043505945655 + ], + [ + 68.8593803325816, + 39.64043505945655 + ], + [ + 68.97422301606528, + 39.835082794385 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.97422301606528, + 40.22437826424191 + ], + [ + 68.8593803325816, + 40.419025999170366 + ], + [ + 68.62969496561425, + 40.419025999170366 + ], + [ + 68.51485228213056, + 40.22437826424191 + ], + [ + 68.62969496561425, + 40.02973052931346 + ], + [ + 68.8593803325816, + 40.02973052931346 + ], + [ + 68.97422301606528, + 40.22437826424191 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.97422301606528, + 40.61367373409882 + ], + [ + 68.8593803325816, + 40.80832146902727 + ], + [ + 68.62969496561425, + 40.80832146902727 + ], + [ + 68.51485228213056, + 40.61367373409882 + ], + [ + 68.62969496561425, + 40.419025999170366 + ], + [ + 68.8593803325816, + 40.419025999170366 + ], + [ + 68.97422301606528, + 40.61367373409882 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.97422301606528, + 41.00296920395572 + ], + [ + 68.8593803325816, + 41.197616938884174 + ], + [ + 68.62969496561425, + 41.197616938884174 + ], + [ + 68.51485228213056, + 41.00296920395572 + ], + [ + 68.62969496561425, + 40.80832146902727 + ], + [ + 68.8593803325816, + 40.80832146902727 + ], + [ + 68.97422301606528, + 41.00296920395572 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.97422301606528, + 41.392264673812626 + ], + [ + 68.8593803325816, + 41.58691240874108 + ], + [ + 68.62969496561425, + 41.58691240874108 + ], + [ + 68.51485228213056, + 41.392264673812626 + ], + [ + 68.62969496561425, + 41.197616938884174 + ], + [ + 68.8593803325816, + 41.197616938884174 + ], + [ + 68.97422301606528, + 41.392264673812626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.97422301606528, + 41.78156014366953 + ], + [ + 68.8593803325816, + 41.97620787859798 + ], + [ + 68.62969496561425, + 41.97620787859798 + ], + [ + 68.51485228213056, + 41.78156014366953 + ], + [ + 68.62969496561425, + 41.58691240874108 + ], + [ + 68.8593803325816, + 41.58691240874108 + ], + [ + 68.97422301606528, + 41.78156014366953 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.97422301606528, + 42.17085561352644 + ], + [ + 68.8593803325816, + 42.365503348454894 + ], + [ + 68.62969496561425, + 42.365503348454894 + ], + [ + 68.51485228213056, + 42.17085561352644 + ], + [ + 68.62969496561425, + 41.97620787859799 + ], + [ + 68.8593803325816, + 41.97620787859799 + ], + [ + 68.97422301606528, + 42.17085561352644 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.97422301606528, + 42.56015108338335 + ], + [ + 68.8593803325816, + 42.754798818311805 + ], + [ + 68.62969496561425, + 42.754798818311805 + ], + [ + 68.51485228213056, + 42.56015108338335 + ], + [ + 68.62969496561425, + 42.3655033484549 + ], + [ + 68.8593803325816, + 42.3655033484549 + ], + [ + 68.97422301606528, + 42.56015108338335 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.97422301606528, + 42.94944655324026 + ], + [ + 68.8593803325816, + 43.14409428816871 + ], + [ + 68.62969496561425, + 43.14409428816871 + ], + [ + 68.51485228213056, + 42.94944655324026 + ], + [ + 68.62969496561425, + 42.754798818311805 + ], + [ + 68.8593803325816, + 42.754798818311805 + ], + [ + 68.97422301606528, + 42.94944655324026 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.97422301606528, + 43.33874202309716 + ], + [ + 68.8593803325816, + 43.53338975802561 + ], + [ + 68.62969496561425, + 43.53338975802561 + ], + [ + 68.51485228213056, + 43.33874202309716 + ], + [ + 68.62969496561425, + 43.14409428816871 + ], + [ + 68.8593803325816, + 43.14409428816871 + ], + [ + 68.97422301606528, + 43.33874202309716 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.97422301606528, + 43.728037492954066 + ], + [ + 68.8593803325816, + 43.92268522788252 + ], + [ + 68.62969496561425, + 43.92268522788252 + ], + [ + 68.51485228213056, + 43.728037492954066 + ], + [ + 68.62969496561425, + 43.53338975802561 + ], + [ + 68.8593803325816, + 43.53338975802561 + ], + [ + 68.97422301606528, + 43.728037492954066 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.97422301606528, + 44.11733296281097 + ], + [ + 68.8593803325816, + 44.31198069773942 + ], + [ + 68.62969496561425, + 44.31198069773942 + ], + [ + 68.51485228213056, + 44.11733296281097 + ], + [ + 68.62969496561425, + 43.92268522788252 + ], + [ + 68.8593803325816, + 43.92268522788252 + ], + [ + 68.97422301606528, + 44.11733296281097 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.97422301606528, + 44.506628432667874 + ], + [ + 68.8593803325816, + 44.701276167596326 + ], + [ + 68.62969496561425, + 44.701276167596326 + ], + [ + 68.51485228213056, + 44.506628432667874 + ], + [ + 68.62969496561425, + 44.31198069773942 + ], + [ + 68.8593803325816, + 44.31198069773942 + ], + [ + 68.97422301606528, + 44.506628432667874 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.97422301606528, + 44.89592390252479 + ], + [ + 68.8593803325816, + 45.090571637453245 + ], + [ + 68.62969496561425, + 45.090571637453245 + ], + [ + 68.51485228213056, + 44.89592390252479 + ], + [ + 68.62969496561425, + 44.70127616759634 + ], + [ + 68.8593803325816, + 44.70127616759634 + ], + [ + 68.97422301606528, + 44.89592390252479 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.97422301606528, + 45.2852193723817 + ], + [ + 68.8593803325816, + 45.47986710731015 + ], + [ + 68.62969496561425, + 45.47986710731015 + ], + [ + 68.51485228213056, + 45.2852193723817 + ], + [ + 68.62969496561425, + 45.090571637453245 + ], + [ + 68.8593803325816, + 45.090571637453245 + ], + [ + 68.97422301606528, + 45.2852193723817 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.97422301606528, + 45.6745148422386 + ], + [ + 68.8593803325816, + 45.86916257716705 + ], + [ + 68.62969496561425, + 45.86916257716705 + ], + [ + 68.51485228213056, + 45.6745148422386 + ], + [ + 68.62969496561425, + 45.47986710731015 + ], + [ + 68.8593803325816, + 45.47986710731015 + ], + [ + 68.97422301606528, + 45.6745148422386 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.97422301606528, + 46.063810312095505 + ], + [ + 68.8593803325816, + 46.25845804702396 + ], + [ + 68.62969496561425, + 46.25845804702396 + ], + [ + 68.51485228213056, + 46.063810312095505 + ], + [ + 68.62969496561425, + 45.86916257716705 + ], + [ + 68.8593803325816, + 45.86916257716705 + ], + [ + 68.97422301606528, + 46.063810312095505 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.97422301606528, + 46.45310578195241 + ], + [ + 68.8593803325816, + 46.64775351688086 + ], + [ + 68.62969496561425, + 46.64775351688086 + ], + [ + 68.51485228213056, + 46.45310578195241 + ], + [ + 68.62969496561425, + 46.25845804702396 + ], + [ + 68.8593803325816, + 46.25845804702396 + ], + [ + 68.97422301606528, + 46.45310578195241 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.97422301606528, + 46.842401251809314 + ], + [ + 68.8593803325816, + 47.037048986737766 + ], + [ + 68.62969496561425, + 47.037048986737766 + ], + [ + 68.51485228213056, + 46.842401251809314 + ], + [ + 68.62969496561425, + 46.64775351688086 + ], + [ + 68.8593803325816, + 46.64775351688086 + ], + [ + 68.97422301606528, + 46.842401251809314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.97422301606528, + 47.23169672166622 + ], + [ + 68.8593803325816, + 47.42634445659467 + ], + [ + 68.62969496561425, + 47.42634445659467 + ], + [ + 68.51485228213056, + 47.23169672166622 + ], + [ + 68.62969496561425, + 47.037048986737766 + ], + [ + 68.8593803325816, + 47.037048986737766 + ], + [ + 68.97422301606528, + 47.23169672166622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.97422301606528, + 47.620992191523136 + ], + [ + 68.8593803325816, + 47.81563992645159 + ], + [ + 68.62969496561425, + 47.81563992645159 + ], + [ + 68.51485228213056, + 47.620992191523136 + ], + [ + 68.62969496561425, + 47.426344456594684 + ], + [ + 68.8593803325816, + 47.426344456594684 + ], + [ + 68.97422301606528, + 47.620992191523136 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.31875106651633, + 12.0004566996162 + ], + [ + 69.20390838303264, + 12.195104434544653 + ], + [ + 68.9742230160653, + 12.195104434544653 + ], + [ + 68.85938033258161, + 12.0004566996162 + ], + [ + 68.9742230160653, + 11.805808964687746 + ], + [ + 69.20390838303264, + 11.805808964687746 + ], + [ + 69.31875106651633, + 12.0004566996162 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.31875106651633, + 12.389752169473105 + ], + [ + 69.20390838303264, + 12.58439990440156 + ], + [ + 68.9742230160653, + 12.58439990440156 + ], + [ + 68.85938033258161, + 12.389752169473105 + ], + [ + 68.9742230160653, + 12.195104434544652 + ], + [ + 69.20390838303264, + 12.195104434544652 + ], + [ + 69.31875106651633, + 12.389752169473105 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.31875106651633, + 12.779047639330013 + ], + [ + 69.20390838303264, + 12.973695374258467 + ], + [ + 68.9742230160653, + 12.973695374258467 + ], + [ + 68.85938033258161, + 12.779047639330013 + ], + [ + 68.9742230160653, + 12.58439990440156 + ], + [ + 69.20390838303264, + 12.58439990440156 + ], + [ + 69.31875106651633, + 12.779047639330013 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.31875106651633, + 13.16834310918692 + ], + [ + 69.20390838303264, + 13.362990844115373 + ], + [ + 68.9742230160653, + 13.362990844115373 + ], + [ + 68.85938033258161, + 13.16834310918692 + ], + [ + 68.9742230160653, + 12.973695374258465 + ], + [ + 69.20390838303264, + 12.973695374258465 + ], + [ + 69.31875106651633, + 13.16834310918692 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.31875106651633, + 13.557638579043825 + ], + [ + 69.20390838303264, + 13.752286313972279 + ], + [ + 68.9742230160653, + 13.752286313972279 + ], + [ + 68.85938033258161, + 13.557638579043825 + ], + [ + 68.9742230160653, + 13.362990844115371 + ], + [ + 69.20390838303264, + 13.362990844115371 + ], + [ + 69.31875106651633, + 13.557638579043825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.31875106651633, + 13.946934048900731 + ], + [ + 69.20390838303264, + 14.141581783829185 + ], + [ + 68.9742230160653, + 14.141581783829185 + ], + [ + 68.85938033258161, + 13.946934048900731 + ], + [ + 68.9742230160653, + 13.752286313972277 + ], + [ + 69.20390838303264, + 13.752286313972277 + ], + [ + 69.31875106651633, + 13.946934048900731 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.31875106651633, + 14.336229518757637 + ], + [ + 69.20390838303264, + 14.530877253686091 + ], + [ + 68.9742230160653, + 14.530877253686091 + ], + [ + 68.85938033258161, + 14.336229518757637 + ], + [ + 68.9742230160653, + 14.141581783829183 + ], + [ + 69.20390838303264, + 14.141581783829183 + ], + [ + 69.31875106651633, + 14.336229518757637 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.31875106651633, + 14.725524988614545 + ], + [ + 69.20390838303264, + 14.920172723542999 + ], + [ + 68.9742230160653, + 14.920172723542999 + ], + [ + 68.85938033258161, + 14.725524988614545 + ], + [ + 68.9742230160653, + 14.530877253686091 + ], + [ + 69.20390838303264, + 14.530877253686091 + ], + [ + 69.31875106651633, + 14.725524988614545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.31875106651633, + 15.114820458471451 + ], + [ + 69.20390838303264, + 15.309468193399905 + ], + [ + 68.9742230160653, + 15.309468193399905 + ], + [ + 68.85938033258161, + 15.114820458471451 + ], + [ + 68.9742230160653, + 14.920172723542997 + ], + [ + 69.20390838303264, + 14.920172723542997 + ], + [ + 69.31875106651633, + 15.114820458471451 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.31875106651633, + 15.504115928328357 + ], + [ + 69.20390838303264, + 15.69876366325681 + ], + [ + 68.9742230160653, + 15.69876366325681 + ], + [ + 68.85938033258161, + 15.504115928328357 + ], + [ + 68.9742230160653, + 15.309468193399903 + ], + [ + 69.20390838303264, + 15.309468193399903 + ], + [ + 69.31875106651633, + 15.504115928328357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.31875106651633, + 15.893411398185265 + ], + [ + 69.20390838303264, + 16.088059133113717 + ], + [ + 68.9742230160653, + 16.088059133113717 + ], + [ + 68.85938033258161, + 15.893411398185265 + ], + [ + 68.9742230160653, + 15.69876366325681 + ], + [ + 69.20390838303264, + 15.69876366325681 + ], + [ + 69.31875106651633, + 15.893411398185265 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.31875106651633, + 16.28270686804217 + ], + [ + 69.20390838303264, + 16.47735460297062 + ], + [ + 68.9742230160653, + 16.47735460297062 + ], + [ + 68.85938033258161, + 16.28270686804217 + ], + [ + 68.9742230160653, + 16.088059133113717 + ], + [ + 69.20390838303264, + 16.088059133113717 + ], + [ + 69.31875106651633, + 16.28270686804217 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.31875106651633, + 16.672002337899077 + ], + [ + 69.20390838303264, + 16.86665007282753 + ], + [ + 68.9742230160653, + 16.86665007282753 + ], + [ + 68.85938033258161, + 16.672002337899077 + ], + [ + 68.9742230160653, + 16.477354602970625 + ], + [ + 69.20390838303264, + 16.477354602970625 + ], + [ + 69.31875106651633, + 16.672002337899077 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.31875106651633, + 17.06129780775598 + ], + [ + 69.20390838303264, + 17.255945542684433 + ], + [ + 68.9742230160653, + 17.255945542684433 + ], + [ + 68.85938033258161, + 17.06129780775598 + ], + [ + 68.9742230160653, + 16.86665007282753 + ], + [ + 69.20390838303264, + 16.86665007282753 + ], + [ + 69.31875106651633, + 17.06129780775598 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.31875106651633, + 17.45059327761289 + ], + [ + 69.20390838303264, + 17.64524101254134 + ], + [ + 68.9742230160653, + 17.64524101254134 + ], + [ + 68.85938033258161, + 17.45059327761289 + ], + [ + 68.9742230160653, + 17.255945542684437 + ], + [ + 69.20390838303264, + 17.255945542684437 + ], + [ + 69.31875106651633, + 17.45059327761289 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.31875106651633, + 17.839888747469793 + ], + [ + 69.20390838303264, + 18.034536482398245 + ], + [ + 68.9742230160653, + 18.034536482398245 + ], + [ + 68.85938033258161, + 17.839888747469793 + ], + [ + 68.9742230160653, + 17.64524101254134 + ], + [ + 69.20390838303264, + 17.64524101254134 + ], + [ + 69.31875106651633, + 17.839888747469793 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.31875106651633, + 18.2291842173267 + ], + [ + 69.20390838303264, + 18.423831952255153 + ], + [ + 68.9742230160653, + 18.423831952255153 + ], + [ + 68.85938033258161, + 18.2291842173267 + ], + [ + 68.9742230160653, + 18.03453648239825 + ], + [ + 69.20390838303264, + 18.03453648239825 + ], + [ + 69.31875106651633, + 18.2291842173267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.31875106651633, + 18.61847968718361 + ], + [ + 69.20390838303264, + 18.81312742211206 + ], + [ + 68.9742230160653, + 18.81312742211206 + ], + [ + 68.85938033258161, + 18.61847968718361 + ], + [ + 68.9742230160653, + 18.423831952255156 + ], + [ + 69.20390838303264, + 18.423831952255156 + ], + [ + 69.31875106651633, + 18.61847968718361 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.31875106651633, + 19.007775157040513 + ], + [ + 69.20390838303264, + 19.202422891968965 + ], + [ + 68.9742230160653, + 19.202422891968965 + ], + [ + 68.85938033258161, + 19.007775157040513 + ], + [ + 68.9742230160653, + 18.81312742211206 + ], + [ + 69.20390838303264, + 18.81312742211206 + ], + [ + 69.31875106651633, + 19.007775157040513 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.31875106651633, + 19.39707062689742 + ], + [ + 69.20390838303264, + 19.591718361825873 + ], + [ + 68.9742230160653, + 19.591718361825873 + ], + [ + 68.85938033258161, + 19.39707062689742 + ], + [ + 68.9742230160653, + 19.20242289196897 + ], + [ + 69.20390838303264, + 19.20242289196897 + ], + [ + 69.31875106651633, + 19.39707062689742 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.31875106651633, + 19.78636609675433 + ], + [ + 69.20390838303264, + 19.98101383168278 + ], + [ + 68.9742230160653, + 19.98101383168278 + ], + [ + 68.85938033258161, + 19.78636609675433 + ], + [ + 68.9742230160653, + 19.591718361825876 + ], + [ + 69.20390838303264, + 19.591718361825876 + ], + [ + 69.31875106651633, + 19.78636609675433 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.31875106651633, + 20.175661566611232 + ], + [ + 69.20390838303264, + 20.370309301539685 + ], + [ + 68.9742230160653, + 20.370309301539685 + ], + [ + 68.85938033258161, + 20.175661566611232 + ], + [ + 68.9742230160653, + 19.98101383168278 + ], + [ + 69.20390838303264, + 19.98101383168278 + ], + [ + 69.31875106651633, + 20.175661566611232 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.31875106651633, + 20.564957036468137 + ], + [ + 69.20390838303264, + 20.75960477139659 + ], + [ + 68.9742230160653, + 20.75960477139659 + ], + [ + 68.85938033258161, + 20.564957036468137 + ], + [ + 68.9742230160653, + 20.370309301539685 + ], + [ + 69.20390838303264, + 20.370309301539685 + ], + [ + 69.31875106651633, + 20.564957036468137 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.31875106651633, + 20.954252506325044 + ], + [ + 69.20390838303264, + 21.148900241253497 + ], + [ + 68.9742230160653, + 21.148900241253497 + ], + [ + 68.85938033258161, + 20.954252506325044 + ], + [ + 68.9742230160653, + 20.759604771396592 + ], + [ + 69.20390838303264, + 20.759604771396592 + ], + [ + 69.31875106651633, + 20.954252506325044 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.31875106651633, + 21.343547976181952 + ], + [ + 69.20390838303264, + 21.538195711110404 + ], + [ + 68.9742230160653, + 21.538195711110404 + ], + [ + 68.85938033258161, + 21.343547976181952 + ], + [ + 68.9742230160653, + 21.1489002412535 + ], + [ + 69.20390838303264, + 21.1489002412535 + ], + [ + 69.31875106651633, + 21.343547976181952 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.31875106651633, + 21.732843446038856 + ], + [ + 69.20390838303264, + 21.92749118096731 + ], + [ + 68.9742230160653, + 21.92749118096731 + ], + [ + 68.85938033258161, + 21.732843446038856 + ], + [ + 68.9742230160653, + 21.538195711110404 + ], + [ + 69.20390838303264, + 21.538195711110404 + ], + [ + 69.31875106651633, + 21.732843446038856 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.31875106651633, + 22.122138915895764 + ], + [ + 69.20390838303264, + 22.316786650824216 + ], + [ + 68.9742230160653, + 22.316786650824216 + ], + [ + 68.85938033258161, + 22.122138915895764 + ], + [ + 68.9742230160653, + 21.927491180967312 + ], + [ + 69.20390838303264, + 21.927491180967312 + ], + [ + 69.31875106651633, + 22.122138915895764 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.31875106651633, + 22.511434385752672 + ], + [ + 69.20390838303264, + 22.706082120681124 + ], + [ + 68.9742230160653, + 22.706082120681124 + ], + [ + 68.85938033258161, + 22.511434385752672 + ], + [ + 68.9742230160653, + 22.31678665082422 + ], + [ + 69.20390838303264, + 22.31678665082422 + ], + [ + 69.31875106651633, + 22.511434385752672 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.31875106651633, + 22.900729855609576 + ], + [ + 69.20390838303264, + 23.09537759053803 + ], + [ + 68.9742230160653, + 23.09537759053803 + ], + [ + 68.85938033258161, + 22.900729855609576 + ], + [ + 68.9742230160653, + 22.706082120681124 + ], + [ + 69.20390838303264, + 22.706082120681124 + ], + [ + 69.31875106651633, + 22.900729855609576 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.31875106651633, + 23.290025325466484 + ], + [ + 69.20390838303264, + 23.484673060394936 + ], + [ + 68.9742230160653, + 23.484673060394936 + ], + [ + 68.85938033258161, + 23.290025325466484 + ], + [ + 68.9742230160653, + 23.095377590538032 + ], + [ + 69.20390838303264, + 23.095377590538032 + ], + [ + 69.31875106651633, + 23.290025325466484 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.31875106651633, + 23.67932079532339 + ], + [ + 69.20390838303264, + 23.873968530251844 + ], + [ + 68.9742230160653, + 23.873968530251844 + ], + [ + 68.85938033258161, + 23.67932079532339 + ], + [ + 68.9742230160653, + 23.48467306039494 + ], + [ + 69.20390838303264, + 23.48467306039494 + ], + [ + 69.31875106651633, + 23.67932079532339 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.31875106651633, + 24.068616265180296 + ], + [ + 69.20390838303264, + 24.263264000108748 + ], + [ + 68.9742230160653, + 24.263264000108748 + ], + [ + 68.85938033258161, + 24.068616265180296 + ], + [ + 68.9742230160653, + 23.873968530251844 + ], + [ + 69.20390838303264, + 23.873968530251844 + ], + [ + 69.31875106651633, + 24.068616265180296 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.31875106651633, + 24.4579117350372 + ], + [ + 69.20390838303264, + 24.652559469965652 + ], + [ + 68.9742230160653, + 24.652559469965652 + ], + [ + 68.85938033258161, + 24.4579117350372 + ], + [ + 68.9742230160653, + 24.263264000108748 + ], + [ + 69.20390838303264, + 24.263264000108748 + ], + [ + 69.31875106651633, + 24.4579117350372 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.31875106651633, + 24.847207204894108 + ], + [ + 69.20390838303264, + 25.04185493982256 + ], + [ + 68.9742230160653, + 25.04185493982256 + ], + [ + 68.85938033258161, + 24.847207204894108 + ], + [ + 68.9742230160653, + 24.652559469965656 + ], + [ + 69.20390838303264, + 24.652559469965656 + ], + [ + 69.31875106651633, + 24.847207204894108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.31875106651633, + 25.236502674751016 + ], + [ + 69.20390838303264, + 25.431150409679468 + ], + [ + 68.9742230160653, + 25.431150409679468 + ], + [ + 68.85938033258161, + 25.236502674751016 + ], + [ + 68.9742230160653, + 25.041854939822564 + ], + [ + 69.20390838303264, + 25.041854939822564 + ], + [ + 69.31875106651633, + 25.236502674751016 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.31875106651633, + 25.62579814460792 + ], + [ + 69.20390838303264, + 25.820445879536372 + ], + [ + 68.9742230160653, + 25.820445879536372 + ], + [ + 68.85938033258161, + 25.62579814460792 + ], + [ + 68.9742230160653, + 25.431150409679468 + ], + [ + 69.20390838303264, + 25.431150409679468 + ], + [ + 69.31875106651633, + 25.62579814460792 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.31875106651633, + 26.015093614464828 + ], + [ + 69.20390838303264, + 26.20974134939328 + ], + [ + 68.9742230160653, + 26.20974134939328 + ], + [ + 68.85938033258161, + 26.015093614464828 + ], + [ + 68.9742230160653, + 25.820445879536376 + ], + [ + 69.20390838303264, + 25.820445879536376 + ], + [ + 69.31875106651633, + 26.015093614464828 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.31875106651633, + 26.404389084321735 + ], + [ + 69.20390838303264, + 26.599036819250188 + ], + [ + 68.9742230160653, + 26.599036819250188 + ], + [ + 68.85938033258161, + 26.404389084321735 + ], + [ + 68.9742230160653, + 26.209741349393283 + ], + [ + 69.20390838303264, + 26.209741349393283 + ], + [ + 69.31875106651633, + 26.404389084321735 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.31875106651633, + 26.79368455417864 + ], + [ + 69.20390838303264, + 26.988332289107092 + ], + [ + 68.9742230160653, + 26.988332289107092 + ], + [ + 68.85938033258161, + 26.79368455417864 + ], + [ + 68.9742230160653, + 26.599036819250188 + ], + [ + 69.20390838303264, + 26.599036819250188 + ], + [ + 69.31875106651633, + 26.79368455417864 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.31875106651633, + 27.182980024035547 + ], + [ + 69.20390838303264, + 27.377627758964 + ], + [ + 68.9742230160653, + 27.377627758964 + ], + [ + 68.85938033258161, + 27.182980024035547 + ], + [ + 68.9742230160653, + 26.988332289107095 + ], + [ + 69.20390838303264, + 26.988332289107095 + ], + [ + 69.31875106651633, + 27.182980024035547 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.31875106651633, + 27.572275493892455 + ], + [ + 69.20390838303264, + 27.766923228820907 + ], + [ + 68.9742230160653, + 27.766923228820907 + ], + [ + 68.85938033258161, + 27.572275493892455 + ], + [ + 68.9742230160653, + 27.377627758964003 + ], + [ + 69.20390838303264, + 27.377627758964003 + ], + [ + 69.31875106651633, + 27.572275493892455 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.31875106651633, + 27.96157096374936 + ], + [ + 69.20390838303264, + 28.15621869867781 + ], + [ + 68.9742230160653, + 28.15621869867781 + ], + [ + 68.85938033258161, + 27.96157096374936 + ], + [ + 68.9742230160653, + 27.766923228820907 + ], + [ + 69.20390838303264, + 27.766923228820907 + ], + [ + 69.31875106651633, + 27.96157096374936 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.31875106651633, + 28.350866433606267 + ], + [ + 69.20390838303264, + 28.54551416853472 + ], + [ + 68.9742230160653, + 28.54551416853472 + ], + [ + 68.85938033258161, + 28.350866433606267 + ], + [ + 68.9742230160653, + 28.156218698677815 + ], + [ + 69.20390838303264, + 28.156218698677815 + ], + [ + 69.31875106651633, + 28.350866433606267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.31875106651633, + 28.74016190346317 + ], + [ + 69.20390838303264, + 28.934809638391624 + ], + [ + 68.9742230160653, + 28.934809638391624 + ], + [ + 68.85938033258161, + 28.74016190346317 + ], + [ + 68.9742230160653, + 28.54551416853472 + ], + [ + 69.20390838303264, + 28.54551416853472 + ], + [ + 69.31875106651633, + 28.74016190346317 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.31875106651633, + 29.12945737332008 + ], + [ + 69.20390838303264, + 29.32410510824853 + ], + [ + 68.9742230160653, + 29.32410510824853 + ], + [ + 68.85938033258161, + 29.12945737332008 + ], + [ + 68.9742230160653, + 28.934809638391627 + ], + [ + 69.20390838303264, + 28.934809638391627 + ], + [ + 69.31875106651633, + 29.12945737332008 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.31875106651633, + 29.518752843176983 + ], + [ + 69.20390838303264, + 29.713400578105436 + ], + [ + 68.9742230160653, + 29.713400578105436 + ], + [ + 68.85938033258161, + 29.518752843176983 + ], + [ + 68.9742230160653, + 29.32410510824853 + ], + [ + 69.20390838303264, + 29.32410510824853 + ], + [ + 69.31875106651633, + 29.518752843176983 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.31875106651633, + 29.90804831303389 + ], + [ + 69.20390838303264, + 30.102696047962343 + ], + [ + 68.9742230160653, + 30.102696047962343 + ], + [ + 68.85938033258161, + 29.90804831303389 + ], + [ + 68.9742230160653, + 29.71340057810544 + ], + [ + 69.20390838303264, + 29.71340057810544 + ], + [ + 69.31875106651633, + 29.90804831303389 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.31875106651633, + 30.297343782890795 + ], + [ + 69.20390838303264, + 30.491991517819248 + ], + [ + 68.9742230160653, + 30.491991517819248 + ], + [ + 68.85938033258161, + 30.297343782890795 + ], + [ + 68.9742230160653, + 30.102696047962343 + ], + [ + 69.20390838303264, + 30.102696047962343 + ], + [ + 69.31875106651633, + 30.297343782890795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.31875106651633, + 30.686639252747703 + ], + [ + 69.20390838303264, + 30.881286987676155 + ], + [ + 68.9742230160653, + 30.881286987676155 + ], + [ + 68.85938033258161, + 30.686639252747703 + ], + [ + 68.9742230160653, + 30.49199151781925 + ], + [ + 69.20390838303264, + 30.49199151781925 + ], + [ + 69.31875106651633, + 30.686639252747703 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.31875106651633, + 31.07593472260461 + ], + [ + 69.20390838303264, + 31.270582457533063 + ], + [ + 68.9742230160653, + 31.270582457533063 + ], + [ + 68.85938033258161, + 31.07593472260461 + ], + [ + 68.9742230160653, + 30.88128698767616 + ], + [ + 69.20390838303264, + 30.88128698767616 + ], + [ + 69.31875106651633, + 31.07593472260461 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.31875106651633, + 31.465230192461515 + ], + [ + 69.20390838303264, + 31.659877927389967 + ], + [ + 68.9742230160653, + 31.659877927389967 + ], + [ + 68.85938033258161, + 31.465230192461515 + ], + [ + 68.9742230160653, + 31.270582457533063 + ], + [ + 69.20390838303264, + 31.270582457533063 + ], + [ + 69.31875106651633, + 31.465230192461515 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.31875106651633, + 31.854525662318423 + ], + [ + 69.20390838303264, + 32.049173397246875 + ], + [ + 68.9742230160653, + 32.049173397246875 + ], + [ + 68.85938033258161, + 31.854525662318423 + ], + [ + 68.9742230160653, + 31.65987792738997 + ], + [ + 69.20390838303264, + 31.65987792738997 + ], + [ + 69.31875106651633, + 31.854525662318423 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.31875106651633, + 32.24382113217533 + ], + [ + 69.20390838303264, + 32.43846886710378 + ], + [ + 68.9742230160653, + 32.43846886710378 + ], + [ + 68.85938033258161, + 32.24382113217533 + ], + [ + 68.9742230160653, + 32.049173397246875 + ], + [ + 69.20390838303264, + 32.049173397246875 + ], + [ + 69.31875106651633, + 32.24382113217533 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.31875106651633, + 32.63311660203224 + ], + [ + 69.20390838303264, + 32.82776433696069 + ], + [ + 68.9742230160653, + 32.82776433696069 + ], + [ + 68.85938033258161, + 32.63311660203224 + ], + [ + 68.9742230160653, + 32.438468867103786 + ], + [ + 69.20390838303264, + 32.438468867103786 + ], + [ + 69.31875106651633, + 32.63311660203224 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.31875106651633, + 33.02241207188914 + ], + [ + 69.20390838303264, + 33.217059806817595 + ], + [ + 68.9742230160653, + 33.217059806817595 + ], + [ + 68.85938033258161, + 33.02241207188914 + ], + [ + 68.9742230160653, + 32.82776433696069 + ], + [ + 69.20390838303264, + 32.82776433696069 + ], + [ + 69.31875106651633, + 33.02241207188914 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.31875106651633, + 33.41170754174605 + ], + [ + 69.20390838303264, + 33.6063552766745 + ], + [ + 68.9742230160653, + 33.6063552766745 + ], + [ + 68.85938033258161, + 33.41170754174605 + ], + [ + 68.9742230160653, + 33.217059806817595 + ], + [ + 69.20390838303264, + 33.217059806817595 + ], + [ + 69.31875106651633, + 33.41170754174605 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.31875106651633, + 33.80100301160295 + ], + [ + 69.20390838303264, + 33.9956507465314 + ], + [ + 68.9742230160653, + 33.9956507465314 + ], + [ + 68.85938033258161, + 33.80100301160295 + ], + [ + 68.9742230160653, + 33.6063552766745 + ], + [ + 69.20390838303264, + 33.6063552766745 + ], + [ + 69.31875106651633, + 33.80100301160295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.31875106651633, + 34.190298481459855 + ], + [ + 69.20390838303264, + 34.38494621638831 + ], + [ + 68.9742230160653, + 34.38494621638831 + ], + [ + 68.85938033258161, + 34.190298481459855 + ], + [ + 68.9742230160653, + 33.9956507465314 + ], + [ + 69.20390838303264, + 33.9956507465314 + ], + [ + 69.31875106651633, + 34.190298481459855 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.31875106651633, + 34.57959395131677 + ], + [ + 69.20390838303264, + 34.77424168624522 + ], + [ + 68.9742230160653, + 34.77424168624522 + ], + [ + 68.85938033258161, + 34.57959395131677 + ], + [ + 68.9742230160653, + 34.384946216388315 + ], + [ + 69.20390838303264, + 34.384946216388315 + ], + [ + 69.31875106651633, + 34.57959395131677 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.31875106651633, + 34.96888942117368 + ], + [ + 69.20390838303264, + 35.16353715610213 + ], + [ + 68.9742230160653, + 35.16353715610213 + ], + [ + 68.85938033258161, + 34.96888942117368 + ], + [ + 68.9742230160653, + 34.774241686245226 + ], + [ + 69.20390838303264, + 34.774241686245226 + ], + [ + 69.31875106651633, + 34.96888942117368 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.31875106651633, + 35.35818489103058 + ], + [ + 69.20390838303264, + 35.552832625959034 + ], + [ + 68.9742230160653, + 35.552832625959034 + ], + [ + 68.85938033258161, + 35.35818489103058 + ], + [ + 68.9742230160653, + 35.16353715610213 + ], + [ + 69.20390838303264, + 35.16353715610213 + ], + [ + 69.31875106651633, + 35.35818489103058 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.31875106651633, + 35.74748036088749 + ], + [ + 69.20390838303264, + 35.94212809581594 + ], + [ + 68.9742230160653, + 35.94212809581594 + ], + [ + 68.85938033258161, + 35.74748036088749 + ], + [ + 68.9742230160653, + 35.552832625959034 + ], + [ + 69.20390838303264, + 35.552832625959034 + ], + [ + 69.31875106651633, + 35.74748036088749 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.31875106651633, + 36.13677583074439 + ], + [ + 69.20390838303264, + 36.33142356567284 + ], + [ + 68.9742230160653, + 36.33142356567284 + ], + [ + 68.85938033258161, + 36.13677583074439 + ], + [ + 68.9742230160653, + 35.94212809581594 + ], + [ + 69.20390838303264, + 35.94212809581594 + ], + [ + 69.31875106651633, + 36.13677583074439 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.31875106651633, + 36.526071300601295 + ], + [ + 69.20390838303264, + 36.72071903552975 + ], + [ + 68.9742230160653, + 36.72071903552975 + ], + [ + 68.85938033258161, + 36.526071300601295 + ], + [ + 68.9742230160653, + 36.33142356567284 + ], + [ + 69.20390838303264, + 36.33142356567284 + ], + [ + 69.31875106651633, + 36.526071300601295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.31875106651633, + 36.915366770458206 + ], + [ + 69.20390838303264, + 37.11001450538666 + ], + [ + 68.9742230160653, + 37.11001450538666 + ], + [ + 68.85938033258161, + 36.915366770458206 + ], + [ + 68.9742230160653, + 36.720719035529754 + ], + [ + 69.20390838303264, + 36.720719035529754 + ], + [ + 69.31875106651633, + 36.915366770458206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.31875106651633, + 37.30466224031511 + ], + [ + 69.20390838303264, + 37.49930997524356 + ], + [ + 68.9742230160653, + 37.49930997524356 + ], + [ + 68.85938033258161, + 37.30466224031511 + ], + [ + 68.9742230160653, + 37.11001450538666 + ], + [ + 69.20390838303264, + 37.11001450538666 + ], + [ + 69.31875106651633, + 37.30466224031511 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.31875106651633, + 37.69395771017202 + ], + [ + 69.20390838303264, + 37.888605445100474 + ], + [ + 68.9742230160653, + 37.888605445100474 + ], + [ + 68.85938033258161, + 37.69395771017202 + ], + [ + 68.9742230160653, + 37.49930997524357 + ], + [ + 69.20390838303264, + 37.49930997524357 + ], + [ + 69.31875106651633, + 37.69395771017202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.31875106651633, + 38.083253180028926 + ], + [ + 69.20390838303264, + 38.27790091495738 + ], + [ + 68.9742230160653, + 38.27790091495738 + ], + [ + 68.85938033258161, + 38.083253180028926 + ], + [ + 68.9742230160653, + 37.888605445100474 + ], + [ + 69.20390838303264, + 37.888605445100474 + ], + [ + 69.31875106651633, + 38.083253180028926 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.31875106651633, + 38.47254864988583 + ], + [ + 69.20390838303264, + 38.66719638481428 + ], + [ + 68.9742230160653, + 38.66719638481428 + ], + [ + 68.85938033258161, + 38.47254864988583 + ], + [ + 68.9742230160653, + 38.27790091495738 + ], + [ + 69.20390838303264, + 38.27790091495738 + ], + [ + 69.31875106651633, + 38.47254864988583 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.31875106651633, + 38.861844119742734 + ], + [ + 69.20390838303264, + 39.05649185467119 + ], + [ + 68.9742230160653, + 39.05649185467119 + ], + [ + 68.85938033258161, + 38.861844119742734 + ], + [ + 68.9742230160653, + 38.66719638481428 + ], + [ + 69.20390838303264, + 38.66719638481428 + ], + [ + 69.31875106651633, + 38.861844119742734 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.31875106651633, + 39.25113958959964 + ], + [ + 69.20390838303264, + 39.44578732452809 + ], + [ + 68.9742230160653, + 39.44578732452809 + ], + [ + 68.85938033258161, + 39.25113958959964 + ], + [ + 68.9742230160653, + 39.05649185467119 + ], + [ + 69.20390838303264, + 39.05649185467119 + ], + [ + 69.31875106651633, + 39.25113958959964 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.31875106651633, + 39.64043505945655 + ], + [ + 69.20390838303264, + 39.835082794385 + ], + [ + 68.9742230160653, + 39.835082794385 + ], + [ + 68.85938033258161, + 39.64043505945655 + ], + [ + 68.9742230160653, + 39.4457873245281 + ], + [ + 69.20390838303264, + 39.4457873245281 + ], + [ + 69.31875106651633, + 39.64043505945655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.31875106651633, + 40.029730529313454 + ], + [ + 69.20390838303264, + 40.224378264241906 + ], + [ + 68.9742230160653, + 40.224378264241906 + ], + [ + 68.85938033258161, + 40.029730529313454 + ], + [ + 68.9742230160653, + 39.835082794385 + ], + [ + 69.20390838303264, + 39.835082794385 + ], + [ + 69.31875106651633, + 40.029730529313454 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.31875106651633, + 40.419025999170366 + ], + [ + 69.20390838303264, + 40.61367373409882 + ], + [ + 68.9742230160653, + 40.61367373409882 + ], + [ + 68.85938033258161, + 40.419025999170366 + ], + [ + 68.9742230160653, + 40.22437826424191 + ], + [ + 69.20390838303264, + 40.22437826424191 + ], + [ + 69.31875106651633, + 40.419025999170366 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.31875106651633, + 40.80832146902727 + ], + [ + 69.20390838303264, + 41.00296920395572 + ], + [ + 68.9742230160653, + 41.00296920395572 + ], + [ + 68.85938033258161, + 40.80832146902727 + ], + [ + 68.9742230160653, + 40.61367373409882 + ], + [ + 69.20390838303264, + 40.61367373409882 + ], + [ + 69.31875106651633, + 40.80832146902727 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.31875106651633, + 41.197616938884174 + ], + [ + 69.20390838303264, + 41.392264673812626 + ], + [ + 68.9742230160653, + 41.392264673812626 + ], + [ + 68.85938033258161, + 41.197616938884174 + ], + [ + 68.9742230160653, + 41.00296920395572 + ], + [ + 69.20390838303264, + 41.00296920395572 + ], + [ + 69.31875106651633, + 41.197616938884174 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.31875106651633, + 41.58691240874108 + ], + [ + 69.20390838303264, + 41.78156014366953 + ], + [ + 68.9742230160653, + 41.78156014366953 + ], + [ + 68.85938033258161, + 41.58691240874108 + ], + [ + 68.9742230160653, + 41.392264673812626 + ], + [ + 69.20390838303264, + 41.392264673812626 + ], + [ + 69.31875106651633, + 41.58691240874108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.31875106651633, + 41.97620787859798 + ], + [ + 69.20390838303264, + 42.170855613526435 + ], + [ + 68.9742230160653, + 42.170855613526435 + ], + [ + 68.85938033258161, + 41.97620787859798 + ], + [ + 68.9742230160653, + 41.78156014366953 + ], + [ + 69.20390838303264, + 41.78156014366953 + ], + [ + 69.31875106651633, + 41.97620787859798 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.31875106651633, + 42.365503348454894 + ], + [ + 69.20390838303264, + 42.560151083383346 + ], + [ + 68.9742230160653, + 42.560151083383346 + ], + [ + 68.85938033258161, + 42.365503348454894 + ], + [ + 68.9742230160653, + 42.17085561352644 + ], + [ + 69.20390838303264, + 42.17085561352644 + ], + [ + 69.31875106651633, + 42.365503348454894 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.31875106651633, + 42.754798818311805 + ], + [ + 69.20390838303264, + 42.94944655324026 + ], + [ + 68.9742230160653, + 42.94944655324026 + ], + [ + 68.85938033258161, + 42.754798818311805 + ], + [ + 68.9742230160653, + 42.56015108338335 + ], + [ + 69.20390838303264, + 42.56015108338335 + ], + [ + 69.31875106651633, + 42.754798818311805 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.31875106651633, + 43.14409428816871 + ], + [ + 69.20390838303264, + 43.33874202309716 + ], + [ + 68.9742230160653, + 43.33874202309716 + ], + [ + 68.85938033258161, + 43.14409428816871 + ], + [ + 68.9742230160653, + 42.94944655324026 + ], + [ + 69.20390838303264, + 42.94944655324026 + ], + [ + 69.31875106651633, + 43.14409428816871 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.31875106651633, + 43.53338975802561 + ], + [ + 69.20390838303264, + 43.728037492954066 + ], + [ + 68.9742230160653, + 43.728037492954066 + ], + [ + 68.85938033258161, + 43.53338975802561 + ], + [ + 68.9742230160653, + 43.33874202309716 + ], + [ + 69.20390838303264, + 43.33874202309716 + ], + [ + 69.31875106651633, + 43.53338975802561 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.31875106651633, + 43.92268522788252 + ], + [ + 69.20390838303264, + 44.11733296281097 + ], + [ + 68.9742230160653, + 44.11733296281097 + ], + [ + 68.85938033258161, + 43.92268522788252 + ], + [ + 68.9742230160653, + 43.728037492954066 + ], + [ + 69.20390838303264, + 43.728037492954066 + ], + [ + 69.31875106651633, + 43.92268522788252 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.31875106651633, + 44.31198069773942 + ], + [ + 69.20390838303264, + 44.506628432667874 + ], + [ + 68.9742230160653, + 44.506628432667874 + ], + [ + 68.85938033258161, + 44.31198069773942 + ], + [ + 68.9742230160653, + 44.11733296281097 + ], + [ + 69.20390838303264, + 44.11733296281097 + ], + [ + 69.31875106651633, + 44.31198069773942 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.31875106651633, + 44.701276167596326 + ], + [ + 69.20390838303264, + 44.89592390252478 + ], + [ + 68.9742230160653, + 44.89592390252478 + ], + [ + 68.85938033258161, + 44.701276167596326 + ], + [ + 68.9742230160653, + 44.506628432667874 + ], + [ + 69.20390838303264, + 44.506628432667874 + ], + [ + 69.31875106651633, + 44.701276167596326 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.31875106651633, + 45.090571637453245 + ], + [ + 69.20390838303264, + 45.2852193723817 + ], + [ + 68.9742230160653, + 45.2852193723817 + ], + [ + 68.85938033258161, + 45.090571637453245 + ], + [ + 68.9742230160653, + 44.89592390252479 + ], + [ + 69.20390838303264, + 44.89592390252479 + ], + [ + 69.31875106651633, + 45.090571637453245 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.31875106651633, + 45.47986710731015 + ], + [ + 69.20390838303264, + 45.6745148422386 + ], + [ + 68.9742230160653, + 45.6745148422386 + ], + [ + 68.85938033258161, + 45.47986710731015 + ], + [ + 68.9742230160653, + 45.2852193723817 + ], + [ + 69.20390838303264, + 45.2852193723817 + ], + [ + 69.31875106651633, + 45.47986710731015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.31875106651633, + 45.86916257716705 + ], + [ + 69.20390838303264, + 46.063810312095505 + ], + [ + 68.9742230160653, + 46.063810312095505 + ], + [ + 68.85938033258161, + 45.86916257716705 + ], + [ + 68.9742230160653, + 45.6745148422386 + ], + [ + 69.20390838303264, + 45.6745148422386 + ], + [ + 69.31875106651633, + 45.86916257716705 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.31875106651633, + 46.25845804702396 + ], + [ + 69.20390838303264, + 46.45310578195241 + ], + [ + 68.9742230160653, + 46.45310578195241 + ], + [ + 68.85938033258161, + 46.25845804702396 + ], + [ + 68.9742230160653, + 46.063810312095505 + ], + [ + 69.20390838303264, + 46.063810312095505 + ], + [ + 69.31875106651633, + 46.25845804702396 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.31875106651633, + 46.64775351688086 + ], + [ + 69.20390838303264, + 46.842401251809314 + ], + [ + 68.9742230160653, + 46.842401251809314 + ], + [ + 68.85938033258161, + 46.64775351688086 + ], + [ + 68.9742230160653, + 46.45310578195241 + ], + [ + 69.20390838303264, + 46.45310578195241 + ], + [ + 69.31875106651633, + 46.64775351688086 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.31875106651633, + 47.037048986737766 + ], + [ + 69.20390838303264, + 47.23169672166622 + ], + [ + 68.9742230160653, + 47.23169672166622 + ], + [ + 68.85938033258161, + 47.037048986737766 + ], + [ + 68.9742230160653, + 46.842401251809314 + ], + [ + 69.20390838303264, + 46.842401251809314 + ], + [ + 69.31875106651633, + 47.037048986737766 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.31875106651633, + 47.42634445659467 + ], + [ + 69.20390838303264, + 47.62099219152312 + ], + [ + 68.9742230160653, + 47.62099219152312 + ], + [ + 68.85938033258161, + 47.42634445659467 + ], + [ + 68.9742230160653, + 47.23169672166622 + ], + [ + 69.20390838303264, + 47.23169672166622 + ], + [ + 69.31875106651633, + 47.42634445659467 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.31875106651633, + 47.81563992645159 + ], + [ + 69.20390838303264, + 48.01028766138004 + ], + [ + 68.9742230160653, + 48.01028766138004 + ], + [ + 68.85938033258161, + 47.81563992645159 + ], + [ + 68.9742230160653, + 47.620992191523136 + ], + [ + 69.20390838303264, + 47.620992191523136 + ], + [ + 69.31875106651633, + 47.81563992645159 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.66327911696736, + 11.805808964687746 + ], + [ + 69.54843643348367, + 12.0004566996162 + ], + [ + 69.31875106651633, + 12.0004566996162 + ], + [ + 69.20390838303264, + 11.805808964687746 + ], + [ + 69.31875106651633, + 11.611161229759292 + ], + [ + 69.54843643348367, + 11.611161229759292 + ], + [ + 69.66327911696736, + 11.805808964687746 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.66327911696736, + 12.195104434544652 + ], + [ + 69.54843643348367, + 12.389752169473105 + ], + [ + 69.31875106651633, + 12.389752169473105 + ], + [ + 69.20390838303264, + 12.195104434544652 + ], + [ + 69.31875106651633, + 12.000456699616198 + ], + [ + 69.54843643348367, + 12.000456699616198 + ], + [ + 69.66327911696736, + 12.195104434544652 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.66327911696736, + 12.58439990440156 + ], + [ + 69.54843643348367, + 12.779047639330013 + ], + [ + 69.31875106651633, + 12.779047639330013 + ], + [ + 69.20390838303264, + 12.58439990440156 + ], + [ + 69.31875106651633, + 12.389752169473105 + ], + [ + 69.54843643348367, + 12.389752169473105 + ], + [ + 69.66327911696736, + 12.58439990440156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.66327911696736, + 12.973695374258465 + ], + [ + 69.54843643348367, + 13.16834310918692 + ], + [ + 69.31875106651633, + 13.16834310918692 + ], + [ + 69.20390838303264, + 12.973695374258465 + ], + [ + 69.31875106651633, + 12.779047639330011 + ], + [ + 69.54843643348367, + 12.779047639330011 + ], + [ + 69.66327911696736, + 12.973695374258465 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.66327911696736, + 13.362990844115371 + ], + [ + 69.54843643348367, + 13.557638579043825 + ], + [ + 69.31875106651633, + 13.557638579043825 + ], + [ + 69.20390838303264, + 13.362990844115371 + ], + [ + 69.31875106651633, + 13.168343109186917 + ], + [ + 69.54843643348367, + 13.168343109186917 + ], + [ + 69.66327911696736, + 13.362990844115371 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.66327911696736, + 13.752286313972277 + ], + [ + 69.54843643348367, + 13.946934048900731 + ], + [ + 69.31875106651633, + 13.946934048900731 + ], + [ + 69.20390838303264, + 13.752286313972277 + ], + [ + 69.31875106651633, + 13.557638579043823 + ], + [ + 69.54843643348367, + 13.557638579043823 + ], + [ + 69.66327911696736, + 13.752286313972277 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.66327911696736, + 14.141581783829183 + ], + [ + 69.54843643348367, + 14.336229518757637 + ], + [ + 69.31875106651633, + 14.336229518757637 + ], + [ + 69.20390838303264, + 14.141581783829183 + ], + [ + 69.31875106651633, + 13.94693404890073 + ], + [ + 69.54843643348367, + 13.94693404890073 + ], + [ + 69.66327911696736, + 14.141581783829183 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.66327911696736, + 14.530877253686091 + ], + [ + 69.54843643348367, + 14.725524988614545 + ], + [ + 69.31875106651633, + 14.725524988614545 + ], + [ + 69.20390838303264, + 14.530877253686091 + ], + [ + 69.31875106651633, + 14.336229518757637 + ], + [ + 69.54843643348367, + 14.336229518757637 + ], + [ + 69.66327911696736, + 14.530877253686091 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.66327911696736, + 14.920172723542997 + ], + [ + 69.54843643348367, + 15.114820458471451 + ], + [ + 69.31875106651633, + 15.114820458471451 + ], + [ + 69.20390838303264, + 14.920172723542997 + ], + [ + 69.31875106651633, + 14.725524988614543 + ], + [ + 69.54843643348367, + 14.725524988614543 + ], + [ + 69.66327911696736, + 14.920172723542997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.66327911696736, + 15.309468193399903 + ], + [ + 69.54843643348367, + 15.504115928328357 + ], + [ + 69.31875106651633, + 15.504115928328357 + ], + [ + 69.20390838303264, + 15.309468193399903 + ], + [ + 69.31875106651633, + 15.11482045847145 + ], + [ + 69.54843643348367, + 15.11482045847145 + ], + [ + 69.66327911696736, + 15.309468193399903 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.66327911696736, + 15.69876366325681 + ], + [ + 69.54843643348367, + 15.893411398185265 + ], + [ + 69.31875106651633, + 15.893411398185265 + ], + [ + 69.20390838303264, + 15.69876366325681 + ], + [ + 69.31875106651633, + 15.504115928328357 + ], + [ + 69.54843643348367, + 15.504115928328357 + ], + [ + 69.66327911696736, + 15.69876366325681 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.66327911696736, + 16.088059133113717 + ], + [ + 69.54843643348367, + 16.28270686804217 + ], + [ + 69.31875106651633, + 16.28270686804217 + ], + [ + 69.20390838303264, + 16.088059133113717 + ], + [ + 69.31875106651633, + 15.893411398185263 + ], + [ + 69.54843643348367, + 15.893411398185263 + ], + [ + 69.66327911696736, + 16.088059133113717 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.66327911696736, + 16.477354602970625 + ], + [ + 69.54843643348367, + 16.672002337899077 + ], + [ + 69.31875106651633, + 16.672002337899077 + ], + [ + 69.20390838303264, + 16.477354602970625 + ], + [ + 69.31875106651633, + 16.282706868042172 + ], + [ + 69.54843643348367, + 16.282706868042172 + ], + [ + 69.66327911696736, + 16.477354602970625 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.66327911696736, + 16.86665007282753 + ], + [ + 69.54843643348367, + 17.06129780775598 + ], + [ + 69.31875106651633, + 17.06129780775598 + ], + [ + 69.20390838303264, + 16.86665007282753 + ], + [ + 69.31875106651633, + 16.672002337899077 + ], + [ + 69.54843643348367, + 16.672002337899077 + ], + [ + 69.66327911696736, + 16.86665007282753 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.66327911696736, + 17.255945542684437 + ], + [ + 69.54843643348367, + 17.45059327761289 + ], + [ + 69.31875106651633, + 17.45059327761289 + ], + [ + 69.20390838303264, + 17.255945542684437 + ], + [ + 69.31875106651633, + 17.061297807755984 + ], + [ + 69.54843643348367, + 17.061297807755984 + ], + [ + 69.66327911696736, + 17.255945542684437 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.66327911696736, + 17.64524101254134 + ], + [ + 69.54843643348367, + 17.839888747469793 + ], + [ + 69.31875106651633, + 17.839888747469793 + ], + [ + 69.20390838303264, + 17.64524101254134 + ], + [ + 69.31875106651633, + 17.45059327761289 + ], + [ + 69.54843643348367, + 17.45059327761289 + ], + [ + 69.66327911696736, + 17.64524101254134 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.66327911696736, + 18.03453648239825 + ], + [ + 69.54843643348367, + 18.2291842173267 + ], + [ + 69.31875106651633, + 18.2291842173267 + ], + [ + 69.20390838303264, + 18.03453648239825 + ], + [ + 69.31875106651633, + 17.839888747469796 + ], + [ + 69.54843643348367, + 17.839888747469796 + ], + [ + 69.66327911696736, + 18.03453648239825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.66327911696736, + 18.423831952255156 + ], + [ + 69.54843643348367, + 18.61847968718361 + ], + [ + 69.31875106651633, + 18.61847968718361 + ], + [ + 69.20390838303264, + 18.423831952255156 + ], + [ + 69.31875106651633, + 18.229184217326704 + ], + [ + 69.54843643348367, + 18.229184217326704 + ], + [ + 69.66327911696736, + 18.423831952255156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.66327911696736, + 18.81312742211206 + ], + [ + 69.54843643348367, + 19.007775157040513 + ], + [ + 69.31875106651633, + 19.007775157040513 + ], + [ + 69.20390838303264, + 18.81312742211206 + ], + [ + 69.31875106651633, + 18.61847968718361 + ], + [ + 69.54843643348367, + 18.61847968718361 + ], + [ + 69.66327911696736, + 18.81312742211206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.66327911696736, + 19.20242289196897 + ], + [ + 69.54843643348367, + 19.39707062689742 + ], + [ + 69.31875106651633, + 19.39707062689742 + ], + [ + 69.20390838303264, + 19.20242289196897 + ], + [ + 69.31875106651633, + 19.007775157040516 + ], + [ + 69.54843643348367, + 19.007775157040516 + ], + [ + 69.66327911696736, + 19.20242289196897 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.66327911696736, + 19.591718361825876 + ], + [ + 69.54843643348367, + 19.78636609675433 + ], + [ + 69.31875106651633, + 19.78636609675433 + ], + [ + 69.20390838303264, + 19.591718361825876 + ], + [ + 69.31875106651633, + 19.397070626897424 + ], + [ + 69.54843643348367, + 19.397070626897424 + ], + [ + 69.66327911696736, + 19.591718361825876 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.66327911696736, + 19.98101383168278 + ], + [ + 69.54843643348367, + 20.175661566611232 + ], + [ + 69.31875106651633, + 20.175661566611232 + ], + [ + 69.20390838303264, + 19.98101383168278 + ], + [ + 69.31875106651633, + 19.78636609675433 + ], + [ + 69.54843643348367, + 19.78636609675433 + ], + [ + 69.66327911696736, + 19.98101383168278 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.66327911696736, + 20.370309301539685 + ], + [ + 69.54843643348367, + 20.564957036468137 + ], + [ + 69.31875106651633, + 20.564957036468137 + ], + [ + 69.20390838303264, + 20.370309301539685 + ], + [ + 69.31875106651633, + 20.175661566611232 + ], + [ + 69.54843643348367, + 20.175661566611232 + ], + [ + 69.66327911696736, + 20.370309301539685 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.66327911696736, + 20.759604771396592 + ], + [ + 69.54843643348367, + 20.954252506325044 + ], + [ + 69.31875106651633, + 20.954252506325044 + ], + [ + 69.20390838303264, + 20.759604771396592 + ], + [ + 69.31875106651633, + 20.56495703646814 + ], + [ + 69.54843643348367, + 20.56495703646814 + ], + [ + 69.66327911696736, + 20.759604771396592 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.66327911696736, + 21.1489002412535 + ], + [ + 69.54843643348367, + 21.343547976181952 + ], + [ + 69.31875106651633, + 21.343547976181952 + ], + [ + 69.20390838303264, + 21.1489002412535 + ], + [ + 69.31875106651633, + 20.954252506325048 + ], + [ + 69.54843643348367, + 20.954252506325048 + ], + [ + 69.66327911696736, + 21.1489002412535 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.66327911696736, + 21.538195711110404 + ], + [ + 69.54843643348367, + 21.732843446038856 + ], + [ + 69.31875106651633, + 21.732843446038856 + ], + [ + 69.20390838303264, + 21.538195711110404 + ], + [ + 69.31875106651633, + 21.343547976181952 + ], + [ + 69.54843643348367, + 21.343547976181952 + ], + [ + 69.66327911696736, + 21.538195711110404 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.66327911696736, + 21.927491180967312 + ], + [ + 69.54843643348367, + 22.122138915895764 + ], + [ + 69.31875106651633, + 22.122138915895764 + ], + [ + 69.20390838303264, + 21.927491180967312 + ], + [ + 69.31875106651633, + 21.73284344603886 + ], + [ + 69.54843643348367, + 21.73284344603886 + ], + [ + 69.66327911696736, + 21.927491180967312 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.66327911696736, + 22.31678665082422 + ], + [ + 69.54843643348367, + 22.511434385752672 + ], + [ + 69.31875106651633, + 22.511434385752672 + ], + [ + 69.20390838303264, + 22.31678665082422 + ], + [ + 69.31875106651633, + 22.122138915895768 + ], + [ + 69.54843643348367, + 22.122138915895768 + ], + [ + 69.66327911696736, + 22.31678665082422 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.66327911696736, + 22.706082120681124 + ], + [ + 69.54843643348367, + 22.900729855609576 + ], + [ + 69.31875106651633, + 22.900729855609576 + ], + [ + 69.20390838303264, + 22.706082120681124 + ], + [ + 69.31875106651633, + 22.511434385752672 + ], + [ + 69.54843643348367, + 22.511434385752672 + ], + [ + 69.66327911696736, + 22.706082120681124 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.66327911696736, + 23.095377590538032 + ], + [ + 69.54843643348367, + 23.290025325466484 + ], + [ + 69.31875106651633, + 23.290025325466484 + ], + [ + 69.20390838303264, + 23.095377590538032 + ], + [ + 69.31875106651633, + 22.90072985560958 + ], + [ + 69.54843643348367, + 22.90072985560958 + ], + [ + 69.66327911696736, + 23.095377590538032 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.66327911696736, + 23.48467306039494 + ], + [ + 69.54843643348367, + 23.67932079532339 + ], + [ + 69.31875106651633, + 23.67932079532339 + ], + [ + 69.20390838303264, + 23.48467306039494 + ], + [ + 69.31875106651633, + 23.290025325466488 + ], + [ + 69.54843643348367, + 23.290025325466488 + ], + [ + 69.66327911696736, + 23.48467306039494 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.66327911696736, + 23.873968530251844 + ], + [ + 69.54843643348367, + 24.068616265180296 + ], + [ + 69.31875106651633, + 24.068616265180296 + ], + [ + 69.20390838303264, + 23.873968530251844 + ], + [ + 69.31875106651633, + 23.67932079532339 + ], + [ + 69.54843643348367, + 23.67932079532339 + ], + [ + 69.66327911696736, + 23.873968530251844 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.66327911696736, + 24.263264000108748 + ], + [ + 69.54843643348367, + 24.4579117350372 + ], + [ + 69.31875106651633, + 24.4579117350372 + ], + [ + 69.20390838303264, + 24.263264000108748 + ], + [ + 69.31875106651633, + 24.068616265180296 + ], + [ + 69.54843643348367, + 24.068616265180296 + ], + [ + 69.66327911696736, + 24.263264000108748 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.66327911696736, + 24.652559469965656 + ], + [ + 69.54843643348367, + 24.847207204894108 + ], + [ + 69.31875106651633, + 24.847207204894108 + ], + [ + 69.20390838303264, + 24.652559469965656 + ], + [ + 69.31875106651633, + 24.457911735037204 + ], + [ + 69.54843643348367, + 24.457911735037204 + ], + [ + 69.66327911696736, + 24.652559469965656 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.66327911696736, + 25.041854939822564 + ], + [ + 69.54843643348367, + 25.236502674751016 + ], + [ + 69.31875106651633, + 25.236502674751016 + ], + [ + 69.20390838303264, + 25.041854939822564 + ], + [ + 69.31875106651633, + 24.84720720489411 + ], + [ + 69.54843643348367, + 24.84720720489411 + ], + [ + 69.66327911696736, + 25.041854939822564 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.66327911696736, + 25.431150409679468 + ], + [ + 69.54843643348367, + 25.62579814460792 + ], + [ + 69.31875106651633, + 25.62579814460792 + ], + [ + 69.20390838303264, + 25.431150409679468 + ], + [ + 69.31875106651633, + 25.236502674751016 + ], + [ + 69.54843643348367, + 25.236502674751016 + ], + [ + 69.66327911696736, + 25.431150409679468 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.66327911696736, + 25.820445879536376 + ], + [ + 69.54843643348367, + 26.015093614464828 + ], + [ + 69.31875106651633, + 26.015093614464828 + ], + [ + 69.20390838303264, + 25.820445879536376 + ], + [ + 69.31875106651633, + 25.625798144607923 + ], + [ + 69.54843643348367, + 25.625798144607923 + ], + [ + 69.66327911696736, + 25.820445879536376 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.66327911696736, + 26.209741349393283 + ], + [ + 69.54843643348367, + 26.404389084321735 + ], + [ + 69.31875106651633, + 26.404389084321735 + ], + [ + 69.20390838303264, + 26.209741349393283 + ], + [ + 69.31875106651633, + 26.01509361446483 + ], + [ + 69.54843643348367, + 26.01509361446483 + ], + [ + 69.66327911696736, + 26.209741349393283 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.66327911696736, + 26.599036819250188 + ], + [ + 69.54843643348367, + 26.79368455417864 + ], + [ + 69.31875106651633, + 26.79368455417864 + ], + [ + 69.20390838303264, + 26.599036819250188 + ], + [ + 69.31875106651633, + 26.404389084321735 + ], + [ + 69.54843643348367, + 26.404389084321735 + ], + [ + 69.66327911696736, + 26.599036819250188 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.66327911696736, + 26.988332289107095 + ], + [ + 69.54843643348367, + 27.182980024035547 + ], + [ + 69.31875106651633, + 27.182980024035547 + ], + [ + 69.20390838303264, + 26.988332289107095 + ], + [ + 69.31875106651633, + 26.793684554178643 + ], + [ + 69.54843643348367, + 26.793684554178643 + ], + [ + 69.66327911696736, + 26.988332289107095 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.66327911696736, + 27.377627758964003 + ], + [ + 69.54843643348367, + 27.572275493892455 + ], + [ + 69.31875106651633, + 27.572275493892455 + ], + [ + 69.20390838303264, + 27.377627758964003 + ], + [ + 69.31875106651633, + 27.18298002403555 + ], + [ + 69.54843643348367, + 27.18298002403555 + ], + [ + 69.66327911696736, + 27.377627758964003 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.66327911696736, + 27.766923228820907 + ], + [ + 69.54843643348367, + 27.96157096374936 + ], + [ + 69.31875106651633, + 27.96157096374936 + ], + [ + 69.20390838303264, + 27.766923228820907 + ], + [ + 69.31875106651633, + 27.572275493892455 + ], + [ + 69.54843643348367, + 27.572275493892455 + ], + [ + 69.66327911696736, + 27.766923228820907 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.66327911696736, + 28.156218698677815 + ], + [ + 69.54843643348367, + 28.350866433606267 + ], + [ + 69.31875106651633, + 28.350866433606267 + ], + [ + 69.20390838303264, + 28.156218698677815 + ], + [ + 69.31875106651633, + 27.961570963749363 + ], + [ + 69.54843643348367, + 27.961570963749363 + ], + [ + 69.66327911696736, + 28.156218698677815 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.66327911696736, + 28.54551416853472 + ], + [ + 69.54843643348367, + 28.74016190346317 + ], + [ + 69.31875106651633, + 28.74016190346317 + ], + [ + 69.20390838303264, + 28.54551416853472 + ], + [ + 69.31875106651633, + 28.350866433606267 + ], + [ + 69.54843643348367, + 28.350866433606267 + ], + [ + 69.66327911696736, + 28.54551416853472 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.66327911696736, + 28.934809638391627 + ], + [ + 69.54843643348367, + 29.12945737332008 + ], + [ + 69.31875106651633, + 29.12945737332008 + ], + [ + 69.20390838303264, + 28.934809638391627 + ], + [ + 69.31875106651633, + 28.740161903463175 + ], + [ + 69.54843643348367, + 28.740161903463175 + ], + [ + 69.66327911696736, + 28.934809638391627 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.66327911696736, + 29.32410510824853 + ], + [ + 69.54843643348367, + 29.518752843176983 + ], + [ + 69.31875106651633, + 29.518752843176983 + ], + [ + 69.20390838303264, + 29.32410510824853 + ], + [ + 69.31875106651633, + 29.12945737332008 + ], + [ + 69.54843643348367, + 29.12945737332008 + ], + [ + 69.66327911696736, + 29.32410510824853 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.66327911696736, + 29.71340057810544 + ], + [ + 69.54843643348367, + 29.90804831303389 + ], + [ + 69.31875106651633, + 29.90804831303389 + ], + [ + 69.20390838303264, + 29.71340057810544 + ], + [ + 69.31875106651633, + 29.518752843176987 + ], + [ + 69.54843643348367, + 29.518752843176987 + ], + [ + 69.66327911696736, + 29.71340057810544 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.66327911696736, + 30.102696047962343 + ], + [ + 69.54843643348367, + 30.297343782890795 + ], + [ + 69.31875106651633, + 30.297343782890795 + ], + [ + 69.20390838303264, + 30.102696047962343 + ], + [ + 69.31875106651633, + 29.90804831303389 + ], + [ + 69.54843643348367, + 29.90804831303389 + ], + [ + 69.66327911696736, + 30.102696047962343 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.66327911696736, + 30.49199151781925 + ], + [ + 69.54843643348367, + 30.686639252747703 + ], + [ + 69.31875106651633, + 30.686639252747703 + ], + [ + 69.20390838303264, + 30.49199151781925 + ], + [ + 69.31875106651633, + 30.2973437828908 + ], + [ + 69.54843643348367, + 30.2973437828908 + ], + [ + 69.66327911696736, + 30.49199151781925 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.66327911696736, + 30.88128698767616 + ], + [ + 69.54843643348367, + 31.07593472260461 + ], + [ + 69.31875106651633, + 31.07593472260461 + ], + [ + 69.20390838303264, + 30.88128698767616 + ], + [ + 69.31875106651633, + 30.686639252747707 + ], + [ + 69.54843643348367, + 30.686639252747707 + ], + [ + 69.66327911696736, + 30.88128698767616 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.66327911696736, + 31.270582457533063 + ], + [ + 69.54843643348367, + 31.465230192461515 + ], + [ + 69.31875106651633, + 31.465230192461515 + ], + [ + 69.20390838303264, + 31.270582457533063 + ], + [ + 69.31875106651633, + 31.07593472260461 + ], + [ + 69.54843643348367, + 31.07593472260461 + ], + [ + 69.66327911696736, + 31.270582457533063 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.66327911696736, + 31.65987792738997 + ], + [ + 69.54843643348367, + 31.854525662318423 + ], + [ + 69.31875106651633, + 31.854525662318423 + ], + [ + 69.20390838303264, + 31.65987792738997 + ], + [ + 69.31875106651633, + 31.46523019246152 + ], + [ + 69.54843643348367, + 31.46523019246152 + ], + [ + 69.66327911696736, + 31.65987792738997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.66327911696736, + 32.049173397246875 + ], + [ + 69.54843643348367, + 32.24382113217533 + ], + [ + 69.31875106651633, + 32.24382113217533 + ], + [ + 69.20390838303264, + 32.049173397246875 + ], + [ + 69.31875106651633, + 31.854525662318423 + ], + [ + 69.54843643348367, + 31.854525662318423 + ], + [ + 69.66327911696736, + 32.049173397246875 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.66327911696736, + 32.438468867103786 + ], + [ + 69.54843643348367, + 32.63311660203224 + ], + [ + 69.31875106651633, + 32.63311660203224 + ], + [ + 69.20390838303264, + 32.438468867103786 + ], + [ + 69.31875106651633, + 32.243821132175334 + ], + [ + 69.54843643348367, + 32.243821132175334 + ], + [ + 69.66327911696736, + 32.438468867103786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.66327911696736, + 32.82776433696069 + ], + [ + 69.54843643348367, + 33.02241207188914 + ], + [ + 69.31875106651633, + 33.02241207188914 + ], + [ + 69.20390838303264, + 32.82776433696069 + ], + [ + 69.31875106651633, + 32.63311660203224 + ], + [ + 69.54843643348367, + 32.63311660203224 + ], + [ + 69.66327911696736, + 32.82776433696069 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.66327911696736, + 33.217059806817595 + ], + [ + 69.54843643348367, + 33.41170754174605 + ], + [ + 69.31875106651633, + 33.41170754174605 + ], + [ + 69.20390838303264, + 33.217059806817595 + ], + [ + 69.31875106651633, + 33.02241207188914 + ], + [ + 69.54843643348367, + 33.02241207188914 + ], + [ + 69.66327911696736, + 33.217059806817595 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.66327911696736, + 33.6063552766745 + ], + [ + 69.54843643348367, + 33.80100301160295 + ], + [ + 69.31875106651633, + 33.80100301160295 + ], + [ + 69.20390838303264, + 33.6063552766745 + ], + [ + 69.31875106651633, + 33.41170754174605 + ], + [ + 69.54843643348367, + 33.41170754174605 + ], + [ + 69.66327911696736, + 33.6063552766745 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.66327911696736, + 33.9956507465314 + ], + [ + 69.54843643348367, + 34.190298481459855 + ], + [ + 69.31875106651633, + 34.190298481459855 + ], + [ + 69.20390838303264, + 33.9956507465314 + ], + [ + 69.31875106651633, + 33.80100301160295 + ], + [ + 69.54843643348367, + 33.80100301160295 + ], + [ + 69.66327911696736, + 33.9956507465314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.66327911696736, + 34.384946216388315 + ], + [ + 69.54843643348367, + 34.57959395131677 + ], + [ + 69.31875106651633, + 34.57959395131677 + ], + [ + 69.20390838303264, + 34.384946216388315 + ], + [ + 69.31875106651633, + 34.19029848145986 + ], + [ + 69.54843643348367, + 34.19029848145986 + ], + [ + 69.66327911696736, + 34.384946216388315 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.66327911696736, + 34.774241686245226 + ], + [ + 69.54843643348367, + 34.96888942117368 + ], + [ + 69.31875106651633, + 34.96888942117368 + ], + [ + 69.20390838303264, + 34.774241686245226 + ], + [ + 69.31875106651633, + 34.579593951316774 + ], + [ + 69.54843643348367, + 34.579593951316774 + ], + [ + 69.66327911696736, + 34.774241686245226 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.66327911696736, + 35.16353715610213 + ], + [ + 69.54843643348367, + 35.35818489103058 + ], + [ + 69.31875106651633, + 35.35818489103058 + ], + [ + 69.20390838303264, + 35.16353715610213 + ], + [ + 69.31875106651633, + 34.96888942117368 + ], + [ + 69.54843643348367, + 34.96888942117368 + ], + [ + 69.66327911696736, + 35.16353715610213 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.66327911696736, + 35.552832625959034 + ], + [ + 69.54843643348367, + 35.74748036088749 + ], + [ + 69.31875106651633, + 35.74748036088749 + ], + [ + 69.20390838303264, + 35.552832625959034 + ], + [ + 69.31875106651633, + 35.35818489103058 + ], + [ + 69.54843643348367, + 35.35818489103058 + ], + [ + 69.66327911696736, + 35.552832625959034 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.66327911696736, + 35.94212809581594 + ], + [ + 69.54843643348367, + 36.13677583074439 + ], + [ + 69.31875106651633, + 36.13677583074439 + ], + [ + 69.20390838303264, + 35.94212809581594 + ], + [ + 69.31875106651633, + 35.74748036088749 + ], + [ + 69.54843643348367, + 35.74748036088749 + ], + [ + 69.66327911696736, + 35.94212809581594 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.66327911696736, + 36.33142356567284 + ], + [ + 69.54843643348367, + 36.526071300601295 + ], + [ + 69.31875106651633, + 36.526071300601295 + ], + [ + 69.20390838303264, + 36.33142356567284 + ], + [ + 69.31875106651633, + 36.13677583074439 + ], + [ + 69.54843643348367, + 36.13677583074439 + ], + [ + 69.66327911696736, + 36.33142356567284 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.66327911696736, + 36.720719035529754 + ], + [ + 69.54843643348367, + 36.915366770458206 + ], + [ + 69.31875106651633, + 36.915366770458206 + ], + [ + 69.20390838303264, + 36.720719035529754 + ], + [ + 69.31875106651633, + 36.5260713006013 + ], + [ + 69.54843643348367, + 36.5260713006013 + ], + [ + 69.66327911696736, + 36.720719035529754 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.66327911696736, + 37.11001450538666 + ], + [ + 69.54843643348367, + 37.30466224031511 + ], + [ + 69.31875106651633, + 37.30466224031511 + ], + [ + 69.20390838303264, + 37.11001450538666 + ], + [ + 69.31875106651633, + 36.915366770458206 + ], + [ + 69.54843643348367, + 36.915366770458206 + ], + [ + 69.66327911696736, + 37.11001450538666 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.66327911696736, + 37.49930997524357 + ], + [ + 69.54843643348367, + 37.69395771017202 + ], + [ + 69.31875106651633, + 37.69395771017202 + ], + [ + 69.20390838303264, + 37.49930997524357 + ], + [ + 69.31875106651633, + 37.30466224031512 + ], + [ + 69.54843643348367, + 37.30466224031512 + ], + [ + 69.66327911696736, + 37.49930997524357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.66327911696736, + 37.888605445100474 + ], + [ + 69.54843643348367, + 38.083253180028926 + ], + [ + 69.31875106651633, + 38.083253180028926 + ], + [ + 69.20390838303264, + 37.888605445100474 + ], + [ + 69.31875106651633, + 37.69395771017202 + ], + [ + 69.54843643348367, + 37.69395771017202 + ], + [ + 69.66327911696736, + 37.888605445100474 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.66327911696736, + 38.27790091495738 + ], + [ + 69.54843643348367, + 38.47254864988583 + ], + [ + 69.31875106651633, + 38.47254864988583 + ], + [ + 69.20390838303264, + 38.27790091495738 + ], + [ + 69.31875106651633, + 38.083253180028926 + ], + [ + 69.54843643348367, + 38.083253180028926 + ], + [ + 69.66327911696736, + 38.27790091495738 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.66327911696736, + 38.66719638481428 + ], + [ + 69.54843643348367, + 38.861844119742734 + ], + [ + 69.31875106651633, + 38.861844119742734 + ], + [ + 69.20390838303264, + 38.66719638481428 + ], + [ + 69.31875106651633, + 38.47254864988583 + ], + [ + 69.54843643348367, + 38.47254864988583 + ], + [ + 69.66327911696736, + 38.66719638481428 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.66327911696736, + 39.05649185467119 + ], + [ + 69.54843643348367, + 39.25113958959964 + ], + [ + 69.31875106651633, + 39.25113958959964 + ], + [ + 69.20390838303264, + 39.05649185467119 + ], + [ + 69.31875106651633, + 38.861844119742734 + ], + [ + 69.54843643348367, + 38.861844119742734 + ], + [ + 69.66327911696736, + 39.05649185467119 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.66327911696736, + 39.4457873245281 + ], + [ + 69.54843643348367, + 39.64043505945655 + ], + [ + 69.31875106651633, + 39.64043505945655 + ], + [ + 69.20390838303264, + 39.4457873245281 + ], + [ + 69.31875106651633, + 39.251139589599646 + ], + [ + 69.54843643348367, + 39.251139589599646 + ], + [ + 69.66327911696736, + 39.4457873245281 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.66327911696736, + 39.835082794385 + ], + [ + 69.54843643348367, + 40.029730529313454 + ], + [ + 69.31875106651633, + 40.029730529313454 + ], + [ + 69.20390838303264, + 39.835082794385 + ], + [ + 69.31875106651633, + 39.64043505945655 + ], + [ + 69.54843643348367, + 39.64043505945655 + ], + [ + 69.66327911696736, + 39.835082794385 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.66327911696736, + 40.22437826424191 + ], + [ + 69.54843643348367, + 40.419025999170366 + ], + [ + 69.31875106651633, + 40.419025999170366 + ], + [ + 69.20390838303264, + 40.22437826424191 + ], + [ + 69.31875106651633, + 40.02973052931346 + ], + [ + 69.54843643348367, + 40.02973052931346 + ], + [ + 69.66327911696736, + 40.22437826424191 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.66327911696736, + 40.61367373409882 + ], + [ + 69.54843643348367, + 40.80832146902727 + ], + [ + 69.31875106651633, + 40.80832146902727 + ], + [ + 69.20390838303264, + 40.61367373409882 + ], + [ + 69.31875106651633, + 40.419025999170366 + ], + [ + 69.54843643348367, + 40.419025999170366 + ], + [ + 69.66327911696736, + 40.61367373409882 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.66327911696736, + 41.00296920395572 + ], + [ + 69.54843643348367, + 41.197616938884174 + ], + [ + 69.31875106651633, + 41.197616938884174 + ], + [ + 69.20390838303264, + 41.00296920395572 + ], + [ + 69.31875106651633, + 40.80832146902727 + ], + [ + 69.54843643348367, + 40.80832146902727 + ], + [ + 69.66327911696736, + 41.00296920395572 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.66327911696736, + 41.392264673812626 + ], + [ + 69.54843643348367, + 41.58691240874108 + ], + [ + 69.31875106651633, + 41.58691240874108 + ], + [ + 69.20390838303264, + 41.392264673812626 + ], + [ + 69.31875106651633, + 41.197616938884174 + ], + [ + 69.54843643348367, + 41.197616938884174 + ], + [ + 69.66327911696736, + 41.392264673812626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.66327911696736, + 41.78156014366953 + ], + [ + 69.54843643348367, + 41.97620787859798 + ], + [ + 69.31875106651633, + 41.97620787859798 + ], + [ + 69.20390838303264, + 41.78156014366953 + ], + [ + 69.31875106651633, + 41.58691240874108 + ], + [ + 69.54843643348367, + 41.58691240874108 + ], + [ + 69.66327911696736, + 41.78156014366953 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.66327911696736, + 42.17085561352644 + ], + [ + 69.54843643348367, + 42.365503348454894 + ], + [ + 69.31875106651633, + 42.365503348454894 + ], + [ + 69.20390838303264, + 42.17085561352644 + ], + [ + 69.31875106651633, + 41.97620787859799 + ], + [ + 69.54843643348367, + 41.97620787859799 + ], + [ + 69.66327911696736, + 42.17085561352644 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.66327911696736, + 42.56015108338335 + ], + [ + 69.54843643348367, + 42.754798818311805 + ], + [ + 69.31875106651633, + 42.754798818311805 + ], + [ + 69.20390838303264, + 42.56015108338335 + ], + [ + 69.31875106651633, + 42.3655033484549 + ], + [ + 69.54843643348367, + 42.3655033484549 + ], + [ + 69.66327911696736, + 42.56015108338335 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.66327911696736, + 42.94944655324026 + ], + [ + 69.54843643348367, + 43.14409428816871 + ], + [ + 69.31875106651633, + 43.14409428816871 + ], + [ + 69.20390838303264, + 42.94944655324026 + ], + [ + 69.31875106651633, + 42.754798818311805 + ], + [ + 69.54843643348367, + 42.754798818311805 + ], + [ + 69.66327911696736, + 42.94944655324026 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.66327911696736, + 43.33874202309716 + ], + [ + 69.54843643348367, + 43.53338975802561 + ], + [ + 69.31875106651633, + 43.53338975802561 + ], + [ + 69.20390838303264, + 43.33874202309716 + ], + [ + 69.31875106651633, + 43.14409428816871 + ], + [ + 69.54843643348367, + 43.14409428816871 + ], + [ + 69.66327911696736, + 43.33874202309716 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.66327911696736, + 43.728037492954066 + ], + [ + 69.54843643348367, + 43.92268522788252 + ], + [ + 69.31875106651633, + 43.92268522788252 + ], + [ + 69.20390838303264, + 43.728037492954066 + ], + [ + 69.31875106651633, + 43.53338975802561 + ], + [ + 69.54843643348367, + 43.53338975802561 + ], + [ + 69.66327911696736, + 43.728037492954066 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.66327911696736, + 44.11733296281097 + ], + [ + 69.54843643348367, + 44.31198069773942 + ], + [ + 69.31875106651633, + 44.31198069773942 + ], + [ + 69.20390838303264, + 44.11733296281097 + ], + [ + 69.31875106651633, + 43.92268522788252 + ], + [ + 69.54843643348367, + 43.92268522788252 + ], + [ + 69.66327911696736, + 44.11733296281097 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.66327911696736, + 44.506628432667874 + ], + [ + 69.54843643348367, + 44.701276167596326 + ], + [ + 69.31875106651633, + 44.701276167596326 + ], + [ + 69.20390838303264, + 44.506628432667874 + ], + [ + 69.31875106651633, + 44.31198069773942 + ], + [ + 69.54843643348367, + 44.31198069773942 + ], + [ + 69.66327911696736, + 44.506628432667874 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.66327911696736, + 44.89592390252479 + ], + [ + 69.54843643348367, + 45.090571637453245 + ], + [ + 69.31875106651633, + 45.090571637453245 + ], + [ + 69.20390838303264, + 44.89592390252479 + ], + [ + 69.31875106651633, + 44.70127616759634 + ], + [ + 69.54843643348367, + 44.70127616759634 + ], + [ + 69.66327911696736, + 44.89592390252479 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.66327911696736, + 45.2852193723817 + ], + [ + 69.54843643348367, + 45.47986710731015 + ], + [ + 69.31875106651633, + 45.47986710731015 + ], + [ + 69.20390838303264, + 45.2852193723817 + ], + [ + 69.31875106651633, + 45.090571637453245 + ], + [ + 69.54843643348367, + 45.090571637453245 + ], + [ + 69.66327911696736, + 45.2852193723817 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.66327911696736, + 45.6745148422386 + ], + [ + 69.54843643348367, + 45.86916257716705 + ], + [ + 69.31875106651633, + 45.86916257716705 + ], + [ + 69.20390838303264, + 45.6745148422386 + ], + [ + 69.31875106651633, + 45.47986710731015 + ], + [ + 69.54843643348367, + 45.47986710731015 + ], + [ + 69.66327911696736, + 45.6745148422386 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.66327911696736, + 46.063810312095505 + ], + [ + 69.54843643348367, + 46.25845804702396 + ], + [ + 69.31875106651633, + 46.25845804702396 + ], + [ + 69.20390838303264, + 46.063810312095505 + ], + [ + 69.31875106651633, + 45.86916257716705 + ], + [ + 69.54843643348367, + 45.86916257716705 + ], + [ + 69.66327911696736, + 46.063810312095505 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.66327911696736, + 46.45310578195241 + ], + [ + 69.54843643348367, + 46.64775351688086 + ], + [ + 69.31875106651633, + 46.64775351688086 + ], + [ + 69.20390838303264, + 46.45310578195241 + ], + [ + 69.31875106651633, + 46.25845804702396 + ], + [ + 69.54843643348367, + 46.25845804702396 + ], + [ + 69.66327911696736, + 46.45310578195241 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.66327911696736, + 46.842401251809314 + ], + [ + 69.54843643348367, + 47.037048986737766 + ], + [ + 69.31875106651633, + 47.037048986737766 + ], + [ + 69.20390838303264, + 46.842401251809314 + ], + [ + 69.31875106651633, + 46.64775351688086 + ], + [ + 69.54843643348367, + 46.64775351688086 + ], + [ + 69.66327911696736, + 46.842401251809314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.66327911696736, + 47.23169672166622 + ], + [ + 69.54843643348367, + 47.42634445659467 + ], + [ + 69.31875106651633, + 47.42634445659467 + ], + [ + 69.20390838303264, + 47.23169672166622 + ], + [ + 69.31875106651633, + 47.037048986737766 + ], + [ + 69.54843643348367, + 47.037048986737766 + ], + [ + 69.66327911696736, + 47.23169672166622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.66327911696736, + 47.620992191523136 + ], + [ + 69.54843643348367, + 47.81563992645159 + ], + [ + 69.31875106651633, + 47.81563992645159 + ], + [ + 69.20390838303264, + 47.620992191523136 + ], + [ + 69.31875106651633, + 47.426344456594684 + ], + [ + 69.54843643348367, + 47.426344456594684 + ], + [ + 69.66327911696736, + 47.620992191523136 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.0078071674184, + 12.0004566996162 + ], + [ + 69.89296448393472, + 12.195104434544653 + ], + [ + 69.66327911696737, + 12.195104434544653 + ], + [ + 69.54843643348369, + 12.0004566996162 + ], + [ + 69.66327911696737, + 11.805808964687746 + ], + [ + 69.89296448393472, + 11.805808964687746 + ], + [ + 70.0078071674184, + 12.0004566996162 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.0078071674184, + 12.389752169473105 + ], + [ + 69.89296448393472, + 12.58439990440156 + ], + [ + 69.66327911696737, + 12.58439990440156 + ], + [ + 69.54843643348369, + 12.389752169473105 + ], + [ + 69.66327911696737, + 12.195104434544652 + ], + [ + 69.89296448393472, + 12.195104434544652 + ], + [ + 70.0078071674184, + 12.389752169473105 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.0078071674184, + 12.779047639330013 + ], + [ + 69.89296448393472, + 12.973695374258467 + ], + [ + 69.66327911696737, + 12.973695374258467 + ], + [ + 69.54843643348369, + 12.779047639330013 + ], + [ + 69.66327911696737, + 12.58439990440156 + ], + [ + 69.89296448393472, + 12.58439990440156 + ], + [ + 70.0078071674184, + 12.779047639330013 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.0078071674184, + 13.16834310918692 + ], + [ + 69.89296448393472, + 13.362990844115373 + ], + [ + 69.66327911696737, + 13.362990844115373 + ], + [ + 69.54843643348369, + 13.16834310918692 + ], + [ + 69.66327911696737, + 12.973695374258465 + ], + [ + 69.89296448393472, + 12.973695374258465 + ], + [ + 70.0078071674184, + 13.16834310918692 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.0078071674184, + 13.557638579043825 + ], + [ + 69.89296448393472, + 13.752286313972279 + ], + [ + 69.66327911696737, + 13.752286313972279 + ], + [ + 69.54843643348369, + 13.557638579043825 + ], + [ + 69.66327911696737, + 13.362990844115371 + ], + [ + 69.89296448393472, + 13.362990844115371 + ], + [ + 70.0078071674184, + 13.557638579043825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.0078071674184, + 13.946934048900731 + ], + [ + 69.89296448393472, + 14.141581783829185 + ], + [ + 69.66327911696737, + 14.141581783829185 + ], + [ + 69.54843643348369, + 13.946934048900731 + ], + [ + 69.66327911696737, + 13.752286313972277 + ], + [ + 69.89296448393472, + 13.752286313972277 + ], + [ + 70.0078071674184, + 13.946934048900731 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.0078071674184, + 14.336229518757637 + ], + [ + 69.89296448393472, + 14.530877253686091 + ], + [ + 69.66327911696737, + 14.530877253686091 + ], + [ + 69.54843643348369, + 14.336229518757637 + ], + [ + 69.66327911696737, + 14.141581783829183 + ], + [ + 69.89296448393472, + 14.141581783829183 + ], + [ + 70.0078071674184, + 14.336229518757637 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.0078071674184, + 14.725524988614545 + ], + [ + 69.89296448393472, + 14.920172723542999 + ], + [ + 69.66327911696737, + 14.920172723542999 + ], + [ + 69.54843643348369, + 14.725524988614545 + ], + [ + 69.66327911696737, + 14.530877253686091 + ], + [ + 69.89296448393472, + 14.530877253686091 + ], + [ + 70.0078071674184, + 14.725524988614545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.0078071674184, + 15.114820458471451 + ], + [ + 69.89296448393472, + 15.309468193399905 + ], + [ + 69.66327911696737, + 15.309468193399905 + ], + [ + 69.54843643348369, + 15.114820458471451 + ], + [ + 69.66327911696737, + 14.920172723542997 + ], + [ + 69.89296448393472, + 14.920172723542997 + ], + [ + 70.0078071674184, + 15.114820458471451 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.0078071674184, + 15.504115928328357 + ], + [ + 69.89296448393472, + 15.69876366325681 + ], + [ + 69.66327911696737, + 15.69876366325681 + ], + [ + 69.54843643348369, + 15.504115928328357 + ], + [ + 69.66327911696737, + 15.309468193399903 + ], + [ + 69.89296448393472, + 15.309468193399903 + ], + [ + 70.0078071674184, + 15.504115928328357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.0078071674184, + 15.893411398185265 + ], + [ + 69.89296448393472, + 16.088059133113717 + ], + [ + 69.66327911696737, + 16.088059133113717 + ], + [ + 69.54843643348369, + 15.893411398185265 + ], + [ + 69.66327911696737, + 15.69876366325681 + ], + [ + 69.89296448393472, + 15.69876366325681 + ], + [ + 70.0078071674184, + 15.893411398185265 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.0078071674184, + 16.28270686804217 + ], + [ + 69.89296448393472, + 16.47735460297062 + ], + [ + 69.66327911696737, + 16.47735460297062 + ], + [ + 69.54843643348369, + 16.28270686804217 + ], + [ + 69.66327911696737, + 16.088059133113717 + ], + [ + 69.89296448393472, + 16.088059133113717 + ], + [ + 70.0078071674184, + 16.28270686804217 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.0078071674184, + 16.672002337899077 + ], + [ + 69.89296448393472, + 16.86665007282753 + ], + [ + 69.66327911696737, + 16.86665007282753 + ], + [ + 69.54843643348369, + 16.672002337899077 + ], + [ + 69.66327911696737, + 16.477354602970625 + ], + [ + 69.89296448393472, + 16.477354602970625 + ], + [ + 70.0078071674184, + 16.672002337899077 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.0078071674184, + 17.06129780775598 + ], + [ + 69.89296448393472, + 17.255945542684433 + ], + [ + 69.66327911696737, + 17.255945542684433 + ], + [ + 69.54843643348369, + 17.06129780775598 + ], + [ + 69.66327911696737, + 16.86665007282753 + ], + [ + 69.89296448393472, + 16.86665007282753 + ], + [ + 70.0078071674184, + 17.06129780775598 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.0078071674184, + 17.45059327761289 + ], + [ + 69.89296448393472, + 17.64524101254134 + ], + [ + 69.66327911696737, + 17.64524101254134 + ], + [ + 69.54843643348369, + 17.45059327761289 + ], + [ + 69.66327911696737, + 17.255945542684437 + ], + [ + 69.89296448393472, + 17.255945542684437 + ], + [ + 70.0078071674184, + 17.45059327761289 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.0078071674184, + 17.839888747469793 + ], + [ + 69.89296448393472, + 18.034536482398245 + ], + [ + 69.66327911696737, + 18.034536482398245 + ], + [ + 69.54843643348369, + 17.839888747469793 + ], + [ + 69.66327911696737, + 17.64524101254134 + ], + [ + 69.89296448393472, + 17.64524101254134 + ], + [ + 70.0078071674184, + 17.839888747469793 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.0078071674184, + 18.2291842173267 + ], + [ + 69.89296448393472, + 18.423831952255153 + ], + [ + 69.66327911696737, + 18.423831952255153 + ], + [ + 69.54843643348369, + 18.2291842173267 + ], + [ + 69.66327911696737, + 18.03453648239825 + ], + [ + 69.89296448393472, + 18.03453648239825 + ], + [ + 70.0078071674184, + 18.2291842173267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.0078071674184, + 18.61847968718361 + ], + [ + 69.89296448393472, + 18.81312742211206 + ], + [ + 69.66327911696737, + 18.81312742211206 + ], + [ + 69.54843643348369, + 18.61847968718361 + ], + [ + 69.66327911696737, + 18.423831952255156 + ], + [ + 69.89296448393472, + 18.423831952255156 + ], + [ + 70.0078071674184, + 18.61847968718361 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.0078071674184, + 19.007775157040513 + ], + [ + 69.89296448393472, + 19.202422891968965 + ], + [ + 69.66327911696737, + 19.202422891968965 + ], + [ + 69.54843643348369, + 19.007775157040513 + ], + [ + 69.66327911696737, + 18.81312742211206 + ], + [ + 69.89296448393472, + 18.81312742211206 + ], + [ + 70.0078071674184, + 19.007775157040513 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.0078071674184, + 19.39707062689742 + ], + [ + 69.89296448393472, + 19.591718361825873 + ], + [ + 69.66327911696737, + 19.591718361825873 + ], + [ + 69.54843643348369, + 19.39707062689742 + ], + [ + 69.66327911696737, + 19.20242289196897 + ], + [ + 69.89296448393472, + 19.20242289196897 + ], + [ + 70.0078071674184, + 19.39707062689742 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.0078071674184, + 19.78636609675433 + ], + [ + 69.89296448393472, + 19.98101383168278 + ], + [ + 69.66327911696737, + 19.98101383168278 + ], + [ + 69.54843643348369, + 19.78636609675433 + ], + [ + 69.66327911696737, + 19.591718361825876 + ], + [ + 69.89296448393472, + 19.591718361825876 + ], + [ + 70.0078071674184, + 19.78636609675433 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.0078071674184, + 20.175661566611232 + ], + [ + 69.89296448393472, + 20.370309301539685 + ], + [ + 69.66327911696737, + 20.370309301539685 + ], + [ + 69.54843643348369, + 20.175661566611232 + ], + [ + 69.66327911696737, + 19.98101383168278 + ], + [ + 69.89296448393472, + 19.98101383168278 + ], + [ + 70.0078071674184, + 20.175661566611232 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.0078071674184, + 20.564957036468137 + ], + [ + 69.89296448393472, + 20.75960477139659 + ], + [ + 69.66327911696737, + 20.75960477139659 + ], + [ + 69.54843643348369, + 20.564957036468137 + ], + [ + 69.66327911696737, + 20.370309301539685 + ], + [ + 69.89296448393472, + 20.370309301539685 + ], + [ + 70.0078071674184, + 20.564957036468137 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.0078071674184, + 20.954252506325044 + ], + [ + 69.89296448393472, + 21.148900241253497 + ], + [ + 69.66327911696737, + 21.148900241253497 + ], + [ + 69.54843643348369, + 20.954252506325044 + ], + [ + 69.66327911696737, + 20.759604771396592 + ], + [ + 69.89296448393472, + 20.759604771396592 + ], + [ + 70.0078071674184, + 20.954252506325044 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.0078071674184, + 21.343547976181952 + ], + [ + 69.89296448393472, + 21.538195711110404 + ], + [ + 69.66327911696737, + 21.538195711110404 + ], + [ + 69.54843643348369, + 21.343547976181952 + ], + [ + 69.66327911696737, + 21.1489002412535 + ], + [ + 69.89296448393472, + 21.1489002412535 + ], + [ + 70.0078071674184, + 21.343547976181952 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.0078071674184, + 21.732843446038856 + ], + [ + 69.89296448393472, + 21.92749118096731 + ], + [ + 69.66327911696737, + 21.92749118096731 + ], + [ + 69.54843643348369, + 21.732843446038856 + ], + [ + 69.66327911696737, + 21.538195711110404 + ], + [ + 69.89296448393472, + 21.538195711110404 + ], + [ + 70.0078071674184, + 21.732843446038856 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.0078071674184, + 22.122138915895764 + ], + [ + 69.89296448393472, + 22.316786650824216 + ], + [ + 69.66327911696737, + 22.316786650824216 + ], + [ + 69.54843643348369, + 22.122138915895764 + ], + [ + 69.66327911696737, + 21.927491180967312 + ], + [ + 69.89296448393472, + 21.927491180967312 + ], + [ + 70.0078071674184, + 22.122138915895764 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.0078071674184, + 22.511434385752672 + ], + [ + 69.89296448393472, + 22.706082120681124 + ], + [ + 69.66327911696737, + 22.706082120681124 + ], + [ + 69.54843643348369, + 22.511434385752672 + ], + [ + 69.66327911696737, + 22.31678665082422 + ], + [ + 69.89296448393472, + 22.31678665082422 + ], + [ + 70.0078071674184, + 22.511434385752672 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.0078071674184, + 22.900729855609576 + ], + [ + 69.89296448393472, + 23.09537759053803 + ], + [ + 69.66327911696737, + 23.09537759053803 + ], + [ + 69.54843643348369, + 22.900729855609576 + ], + [ + 69.66327911696737, + 22.706082120681124 + ], + [ + 69.89296448393472, + 22.706082120681124 + ], + [ + 70.0078071674184, + 22.900729855609576 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.0078071674184, + 23.290025325466484 + ], + [ + 69.89296448393472, + 23.484673060394936 + ], + [ + 69.66327911696737, + 23.484673060394936 + ], + [ + 69.54843643348369, + 23.290025325466484 + ], + [ + 69.66327911696737, + 23.095377590538032 + ], + [ + 69.89296448393472, + 23.095377590538032 + ], + [ + 70.0078071674184, + 23.290025325466484 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.0078071674184, + 23.67932079532339 + ], + [ + 69.89296448393472, + 23.873968530251844 + ], + [ + 69.66327911696737, + 23.873968530251844 + ], + [ + 69.54843643348369, + 23.67932079532339 + ], + [ + 69.66327911696737, + 23.48467306039494 + ], + [ + 69.89296448393472, + 23.48467306039494 + ], + [ + 70.0078071674184, + 23.67932079532339 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.0078071674184, + 24.068616265180296 + ], + [ + 69.89296448393472, + 24.263264000108748 + ], + [ + 69.66327911696737, + 24.263264000108748 + ], + [ + 69.54843643348369, + 24.068616265180296 + ], + [ + 69.66327911696737, + 23.873968530251844 + ], + [ + 69.89296448393472, + 23.873968530251844 + ], + [ + 70.0078071674184, + 24.068616265180296 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.0078071674184, + 24.4579117350372 + ], + [ + 69.89296448393472, + 24.652559469965652 + ], + [ + 69.66327911696737, + 24.652559469965652 + ], + [ + 69.54843643348369, + 24.4579117350372 + ], + [ + 69.66327911696737, + 24.263264000108748 + ], + [ + 69.89296448393472, + 24.263264000108748 + ], + [ + 70.0078071674184, + 24.4579117350372 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.0078071674184, + 24.847207204894108 + ], + [ + 69.89296448393472, + 25.04185493982256 + ], + [ + 69.66327911696737, + 25.04185493982256 + ], + [ + 69.54843643348369, + 24.847207204894108 + ], + [ + 69.66327911696737, + 24.652559469965656 + ], + [ + 69.89296448393472, + 24.652559469965656 + ], + [ + 70.0078071674184, + 24.847207204894108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.0078071674184, + 25.236502674751016 + ], + [ + 69.89296448393472, + 25.431150409679468 + ], + [ + 69.66327911696737, + 25.431150409679468 + ], + [ + 69.54843643348369, + 25.236502674751016 + ], + [ + 69.66327911696737, + 25.041854939822564 + ], + [ + 69.89296448393472, + 25.041854939822564 + ], + [ + 70.0078071674184, + 25.236502674751016 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.0078071674184, + 25.62579814460792 + ], + [ + 69.89296448393472, + 25.820445879536372 + ], + [ + 69.66327911696737, + 25.820445879536372 + ], + [ + 69.54843643348369, + 25.62579814460792 + ], + [ + 69.66327911696737, + 25.431150409679468 + ], + [ + 69.89296448393472, + 25.431150409679468 + ], + [ + 70.0078071674184, + 25.62579814460792 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.0078071674184, + 26.015093614464828 + ], + [ + 69.89296448393472, + 26.20974134939328 + ], + [ + 69.66327911696737, + 26.20974134939328 + ], + [ + 69.54843643348369, + 26.015093614464828 + ], + [ + 69.66327911696737, + 25.820445879536376 + ], + [ + 69.89296448393472, + 25.820445879536376 + ], + [ + 70.0078071674184, + 26.015093614464828 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.0078071674184, + 26.404389084321735 + ], + [ + 69.89296448393472, + 26.599036819250188 + ], + [ + 69.66327911696737, + 26.599036819250188 + ], + [ + 69.54843643348369, + 26.404389084321735 + ], + [ + 69.66327911696737, + 26.209741349393283 + ], + [ + 69.89296448393472, + 26.209741349393283 + ], + [ + 70.0078071674184, + 26.404389084321735 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.0078071674184, + 26.79368455417864 + ], + [ + 69.89296448393472, + 26.988332289107092 + ], + [ + 69.66327911696737, + 26.988332289107092 + ], + [ + 69.54843643348369, + 26.79368455417864 + ], + [ + 69.66327911696737, + 26.599036819250188 + ], + [ + 69.89296448393472, + 26.599036819250188 + ], + [ + 70.0078071674184, + 26.79368455417864 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.0078071674184, + 27.182980024035547 + ], + [ + 69.89296448393472, + 27.377627758964 + ], + [ + 69.66327911696737, + 27.377627758964 + ], + [ + 69.54843643348369, + 27.182980024035547 + ], + [ + 69.66327911696737, + 26.988332289107095 + ], + [ + 69.89296448393472, + 26.988332289107095 + ], + [ + 70.0078071674184, + 27.182980024035547 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.0078071674184, + 27.572275493892455 + ], + [ + 69.89296448393472, + 27.766923228820907 + ], + [ + 69.66327911696737, + 27.766923228820907 + ], + [ + 69.54843643348369, + 27.572275493892455 + ], + [ + 69.66327911696737, + 27.377627758964003 + ], + [ + 69.89296448393472, + 27.377627758964003 + ], + [ + 70.0078071674184, + 27.572275493892455 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.0078071674184, + 27.96157096374936 + ], + [ + 69.89296448393472, + 28.15621869867781 + ], + [ + 69.66327911696737, + 28.15621869867781 + ], + [ + 69.54843643348369, + 27.96157096374936 + ], + [ + 69.66327911696737, + 27.766923228820907 + ], + [ + 69.89296448393472, + 27.766923228820907 + ], + [ + 70.0078071674184, + 27.96157096374936 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.0078071674184, + 28.350866433606267 + ], + [ + 69.89296448393472, + 28.54551416853472 + ], + [ + 69.66327911696737, + 28.54551416853472 + ], + [ + 69.54843643348369, + 28.350866433606267 + ], + [ + 69.66327911696737, + 28.156218698677815 + ], + [ + 69.89296448393472, + 28.156218698677815 + ], + [ + 70.0078071674184, + 28.350866433606267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.0078071674184, + 28.74016190346317 + ], + [ + 69.89296448393472, + 28.934809638391624 + ], + [ + 69.66327911696737, + 28.934809638391624 + ], + [ + 69.54843643348369, + 28.74016190346317 + ], + [ + 69.66327911696737, + 28.54551416853472 + ], + [ + 69.89296448393472, + 28.54551416853472 + ], + [ + 70.0078071674184, + 28.74016190346317 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.0078071674184, + 29.12945737332008 + ], + [ + 69.89296448393472, + 29.32410510824853 + ], + [ + 69.66327911696737, + 29.32410510824853 + ], + [ + 69.54843643348369, + 29.12945737332008 + ], + [ + 69.66327911696737, + 28.934809638391627 + ], + [ + 69.89296448393472, + 28.934809638391627 + ], + [ + 70.0078071674184, + 29.12945737332008 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.0078071674184, + 29.518752843176983 + ], + [ + 69.89296448393472, + 29.713400578105436 + ], + [ + 69.66327911696737, + 29.713400578105436 + ], + [ + 69.54843643348369, + 29.518752843176983 + ], + [ + 69.66327911696737, + 29.32410510824853 + ], + [ + 69.89296448393472, + 29.32410510824853 + ], + [ + 70.0078071674184, + 29.518752843176983 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.0078071674184, + 29.90804831303389 + ], + [ + 69.89296448393472, + 30.102696047962343 + ], + [ + 69.66327911696737, + 30.102696047962343 + ], + [ + 69.54843643348369, + 29.90804831303389 + ], + [ + 69.66327911696737, + 29.71340057810544 + ], + [ + 69.89296448393472, + 29.71340057810544 + ], + [ + 70.0078071674184, + 29.90804831303389 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.0078071674184, + 30.297343782890795 + ], + [ + 69.89296448393472, + 30.491991517819248 + ], + [ + 69.66327911696737, + 30.491991517819248 + ], + [ + 69.54843643348369, + 30.297343782890795 + ], + [ + 69.66327911696737, + 30.102696047962343 + ], + [ + 69.89296448393472, + 30.102696047962343 + ], + [ + 70.0078071674184, + 30.297343782890795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.0078071674184, + 30.686639252747703 + ], + [ + 69.89296448393472, + 30.881286987676155 + ], + [ + 69.66327911696737, + 30.881286987676155 + ], + [ + 69.54843643348369, + 30.686639252747703 + ], + [ + 69.66327911696737, + 30.49199151781925 + ], + [ + 69.89296448393472, + 30.49199151781925 + ], + [ + 70.0078071674184, + 30.686639252747703 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.0078071674184, + 31.07593472260461 + ], + [ + 69.89296448393472, + 31.270582457533063 + ], + [ + 69.66327911696737, + 31.270582457533063 + ], + [ + 69.54843643348369, + 31.07593472260461 + ], + [ + 69.66327911696737, + 30.88128698767616 + ], + [ + 69.89296448393472, + 30.88128698767616 + ], + [ + 70.0078071674184, + 31.07593472260461 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.0078071674184, + 31.465230192461515 + ], + [ + 69.89296448393472, + 31.659877927389967 + ], + [ + 69.66327911696737, + 31.659877927389967 + ], + [ + 69.54843643348369, + 31.465230192461515 + ], + [ + 69.66327911696737, + 31.270582457533063 + ], + [ + 69.89296448393472, + 31.270582457533063 + ], + [ + 70.0078071674184, + 31.465230192461515 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.0078071674184, + 31.854525662318423 + ], + [ + 69.89296448393472, + 32.049173397246875 + ], + [ + 69.66327911696737, + 32.049173397246875 + ], + [ + 69.54843643348369, + 31.854525662318423 + ], + [ + 69.66327911696737, + 31.65987792738997 + ], + [ + 69.89296448393472, + 31.65987792738997 + ], + [ + 70.0078071674184, + 31.854525662318423 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.0078071674184, + 32.24382113217533 + ], + [ + 69.89296448393472, + 32.43846886710378 + ], + [ + 69.66327911696737, + 32.43846886710378 + ], + [ + 69.54843643348369, + 32.24382113217533 + ], + [ + 69.66327911696737, + 32.049173397246875 + ], + [ + 69.89296448393472, + 32.049173397246875 + ], + [ + 70.0078071674184, + 32.24382113217533 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.0078071674184, + 32.63311660203224 + ], + [ + 69.89296448393472, + 32.82776433696069 + ], + [ + 69.66327911696737, + 32.82776433696069 + ], + [ + 69.54843643348369, + 32.63311660203224 + ], + [ + 69.66327911696737, + 32.438468867103786 + ], + [ + 69.89296448393472, + 32.438468867103786 + ], + [ + 70.0078071674184, + 32.63311660203224 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.0078071674184, + 33.02241207188914 + ], + [ + 69.89296448393472, + 33.217059806817595 + ], + [ + 69.66327911696737, + 33.217059806817595 + ], + [ + 69.54843643348369, + 33.02241207188914 + ], + [ + 69.66327911696737, + 32.82776433696069 + ], + [ + 69.89296448393472, + 32.82776433696069 + ], + [ + 70.0078071674184, + 33.02241207188914 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.0078071674184, + 33.41170754174605 + ], + [ + 69.89296448393472, + 33.6063552766745 + ], + [ + 69.66327911696737, + 33.6063552766745 + ], + [ + 69.54843643348369, + 33.41170754174605 + ], + [ + 69.66327911696737, + 33.217059806817595 + ], + [ + 69.89296448393472, + 33.217059806817595 + ], + [ + 70.0078071674184, + 33.41170754174605 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.0078071674184, + 33.80100301160295 + ], + [ + 69.89296448393472, + 33.9956507465314 + ], + [ + 69.66327911696737, + 33.9956507465314 + ], + [ + 69.54843643348369, + 33.80100301160295 + ], + [ + 69.66327911696737, + 33.6063552766745 + ], + [ + 69.89296448393472, + 33.6063552766745 + ], + [ + 70.0078071674184, + 33.80100301160295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.0078071674184, + 34.190298481459855 + ], + [ + 69.89296448393472, + 34.38494621638831 + ], + [ + 69.66327911696737, + 34.38494621638831 + ], + [ + 69.54843643348369, + 34.190298481459855 + ], + [ + 69.66327911696737, + 33.9956507465314 + ], + [ + 69.89296448393472, + 33.9956507465314 + ], + [ + 70.0078071674184, + 34.190298481459855 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.0078071674184, + 34.57959395131677 + ], + [ + 69.89296448393472, + 34.77424168624522 + ], + [ + 69.66327911696737, + 34.77424168624522 + ], + [ + 69.54843643348369, + 34.57959395131677 + ], + [ + 69.66327911696737, + 34.384946216388315 + ], + [ + 69.89296448393472, + 34.384946216388315 + ], + [ + 70.0078071674184, + 34.57959395131677 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.0078071674184, + 34.96888942117368 + ], + [ + 69.89296448393472, + 35.16353715610213 + ], + [ + 69.66327911696737, + 35.16353715610213 + ], + [ + 69.54843643348369, + 34.96888942117368 + ], + [ + 69.66327911696737, + 34.774241686245226 + ], + [ + 69.89296448393472, + 34.774241686245226 + ], + [ + 70.0078071674184, + 34.96888942117368 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.0078071674184, + 35.35818489103058 + ], + [ + 69.89296448393472, + 35.552832625959034 + ], + [ + 69.66327911696737, + 35.552832625959034 + ], + [ + 69.54843643348369, + 35.35818489103058 + ], + [ + 69.66327911696737, + 35.16353715610213 + ], + [ + 69.89296448393472, + 35.16353715610213 + ], + [ + 70.0078071674184, + 35.35818489103058 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.0078071674184, + 35.74748036088749 + ], + [ + 69.89296448393472, + 35.94212809581594 + ], + [ + 69.66327911696737, + 35.94212809581594 + ], + [ + 69.54843643348369, + 35.74748036088749 + ], + [ + 69.66327911696737, + 35.552832625959034 + ], + [ + 69.89296448393472, + 35.552832625959034 + ], + [ + 70.0078071674184, + 35.74748036088749 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.0078071674184, + 36.13677583074439 + ], + [ + 69.89296448393472, + 36.33142356567284 + ], + [ + 69.66327911696737, + 36.33142356567284 + ], + [ + 69.54843643348369, + 36.13677583074439 + ], + [ + 69.66327911696737, + 35.94212809581594 + ], + [ + 69.89296448393472, + 35.94212809581594 + ], + [ + 70.0078071674184, + 36.13677583074439 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.0078071674184, + 36.526071300601295 + ], + [ + 69.89296448393472, + 36.72071903552975 + ], + [ + 69.66327911696737, + 36.72071903552975 + ], + [ + 69.54843643348369, + 36.526071300601295 + ], + [ + 69.66327911696737, + 36.33142356567284 + ], + [ + 69.89296448393472, + 36.33142356567284 + ], + [ + 70.0078071674184, + 36.526071300601295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.0078071674184, + 36.915366770458206 + ], + [ + 69.89296448393472, + 37.11001450538666 + ], + [ + 69.66327911696737, + 37.11001450538666 + ], + [ + 69.54843643348369, + 36.915366770458206 + ], + [ + 69.66327911696737, + 36.720719035529754 + ], + [ + 69.89296448393472, + 36.720719035529754 + ], + [ + 70.0078071674184, + 36.915366770458206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.0078071674184, + 37.30466224031511 + ], + [ + 69.89296448393472, + 37.49930997524356 + ], + [ + 69.66327911696737, + 37.49930997524356 + ], + [ + 69.54843643348369, + 37.30466224031511 + ], + [ + 69.66327911696737, + 37.11001450538666 + ], + [ + 69.89296448393472, + 37.11001450538666 + ], + [ + 70.0078071674184, + 37.30466224031511 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.0078071674184, + 37.69395771017202 + ], + [ + 69.89296448393472, + 37.888605445100474 + ], + [ + 69.66327911696737, + 37.888605445100474 + ], + [ + 69.54843643348369, + 37.69395771017202 + ], + [ + 69.66327911696737, + 37.49930997524357 + ], + [ + 69.89296448393472, + 37.49930997524357 + ], + [ + 70.0078071674184, + 37.69395771017202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.0078071674184, + 38.083253180028926 + ], + [ + 69.89296448393472, + 38.27790091495738 + ], + [ + 69.66327911696737, + 38.27790091495738 + ], + [ + 69.54843643348369, + 38.083253180028926 + ], + [ + 69.66327911696737, + 37.888605445100474 + ], + [ + 69.89296448393472, + 37.888605445100474 + ], + [ + 70.0078071674184, + 38.083253180028926 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.0078071674184, + 38.47254864988583 + ], + [ + 69.89296448393472, + 38.66719638481428 + ], + [ + 69.66327911696737, + 38.66719638481428 + ], + [ + 69.54843643348369, + 38.47254864988583 + ], + [ + 69.66327911696737, + 38.27790091495738 + ], + [ + 69.89296448393472, + 38.27790091495738 + ], + [ + 70.0078071674184, + 38.47254864988583 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.0078071674184, + 38.861844119742734 + ], + [ + 69.89296448393472, + 39.05649185467119 + ], + [ + 69.66327911696737, + 39.05649185467119 + ], + [ + 69.54843643348369, + 38.861844119742734 + ], + [ + 69.66327911696737, + 38.66719638481428 + ], + [ + 69.89296448393472, + 38.66719638481428 + ], + [ + 70.0078071674184, + 38.861844119742734 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.0078071674184, + 39.25113958959964 + ], + [ + 69.89296448393472, + 39.44578732452809 + ], + [ + 69.66327911696737, + 39.44578732452809 + ], + [ + 69.54843643348369, + 39.25113958959964 + ], + [ + 69.66327911696737, + 39.05649185467119 + ], + [ + 69.89296448393472, + 39.05649185467119 + ], + [ + 70.0078071674184, + 39.25113958959964 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.0078071674184, + 39.64043505945655 + ], + [ + 69.89296448393472, + 39.835082794385 + ], + [ + 69.66327911696737, + 39.835082794385 + ], + [ + 69.54843643348369, + 39.64043505945655 + ], + [ + 69.66327911696737, + 39.4457873245281 + ], + [ + 69.89296448393472, + 39.4457873245281 + ], + [ + 70.0078071674184, + 39.64043505945655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.0078071674184, + 40.029730529313454 + ], + [ + 69.89296448393472, + 40.224378264241906 + ], + [ + 69.66327911696737, + 40.224378264241906 + ], + [ + 69.54843643348369, + 40.029730529313454 + ], + [ + 69.66327911696737, + 39.835082794385 + ], + [ + 69.89296448393472, + 39.835082794385 + ], + [ + 70.0078071674184, + 40.029730529313454 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.0078071674184, + 40.419025999170366 + ], + [ + 69.89296448393472, + 40.61367373409882 + ], + [ + 69.66327911696737, + 40.61367373409882 + ], + [ + 69.54843643348369, + 40.419025999170366 + ], + [ + 69.66327911696737, + 40.22437826424191 + ], + [ + 69.89296448393472, + 40.22437826424191 + ], + [ + 70.0078071674184, + 40.419025999170366 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.0078071674184, + 40.80832146902727 + ], + [ + 69.89296448393472, + 41.00296920395572 + ], + [ + 69.66327911696737, + 41.00296920395572 + ], + [ + 69.54843643348369, + 40.80832146902727 + ], + [ + 69.66327911696737, + 40.61367373409882 + ], + [ + 69.89296448393472, + 40.61367373409882 + ], + [ + 70.0078071674184, + 40.80832146902727 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.0078071674184, + 41.197616938884174 + ], + [ + 69.89296448393472, + 41.392264673812626 + ], + [ + 69.66327911696737, + 41.392264673812626 + ], + [ + 69.54843643348369, + 41.197616938884174 + ], + [ + 69.66327911696737, + 41.00296920395572 + ], + [ + 69.89296448393472, + 41.00296920395572 + ], + [ + 70.0078071674184, + 41.197616938884174 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.0078071674184, + 41.58691240874108 + ], + [ + 69.89296448393472, + 41.78156014366953 + ], + [ + 69.66327911696737, + 41.78156014366953 + ], + [ + 69.54843643348369, + 41.58691240874108 + ], + [ + 69.66327911696737, + 41.392264673812626 + ], + [ + 69.89296448393472, + 41.392264673812626 + ], + [ + 70.0078071674184, + 41.58691240874108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.0078071674184, + 41.97620787859798 + ], + [ + 69.89296448393472, + 42.170855613526435 + ], + [ + 69.66327911696737, + 42.170855613526435 + ], + [ + 69.54843643348369, + 41.97620787859798 + ], + [ + 69.66327911696737, + 41.78156014366953 + ], + [ + 69.89296448393472, + 41.78156014366953 + ], + [ + 70.0078071674184, + 41.97620787859798 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.0078071674184, + 42.365503348454894 + ], + [ + 69.89296448393472, + 42.560151083383346 + ], + [ + 69.66327911696737, + 42.560151083383346 + ], + [ + 69.54843643348369, + 42.365503348454894 + ], + [ + 69.66327911696737, + 42.17085561352644 + ], + [ + 69.89296448393472, + 42.17085561352644 + ], + [ + 70.0078071674184, + 42.365503348454894 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.0078071674184, + 42.754798818311805 + ], + [ + 69.89296448393472, + 42.94944655324026 + ], + [ + 69.66327911696737, + 42.94944655324026 + ], + [ + 69.54843643348369, + 42.754798818311805 + ], + [ + 69.66327911696737, + 42.56015108338335 + ], + [ + 69.89296448393472, + 42.56015108338335 + ], + [ + 70.0078071674184, + 42.754798818311805 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.0078071674184, + 43.14409428816871 + ], + [ + 69.89296448393472, + 43.33874202309716 + ], + [ + 69.66327911696737, + 43.33874202309716 + ], + [ + 69.54843643348369, + 43.14409428816871 + ], + [ + 69.66327911696737, + 42.94944655324026 + ], + [ + 69.89296448393472, + 42.94944655324026 + ], + [ + 70.0078071674184, + 43.14409428816871 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.0078071674184, + 43.53338975802561 + ], + [ + 69.89296448393472, + 43.728037492954066 + ], + [ + 69.66327911696737, + 43.728037492954066 + ], + [ + 69.54843643348369, + 43.53338975802561 + ], + [ + 69.66327911696737, + 43.33874202309716 + ], + [ + 69.89296448393472, + 43.33874202309716 + ], + [ + 70.0078071674184, + 43.53338975802561 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.0078071674184, + 43.92268522788252 + ], + [ + 69.89296448393472, + 44.11733296281097 + ], + [ + 69.66327911696737, + 44.11733296281097 + ], + [ + 69.54843643348369, + 43.92268522788252 + ], + [ + 69.66327911696737, + 43.728037492954066 + ], + [ + 69.89296448393472, + 43.728037492954066 + ], + [ + 70.0078071674184, + 43.92268522788252 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.0078071674184, + 44.31198069773942 + ], + [ + 69.89296448393472, + 44.506628432667874 + ], + [ + 69.66327911696737, + 44.506628432667874 + ], + [ + 69.54843643348369, + 44.31198069773942 + ], + [ + 69.66327911696737, + 44.11733296281097 + ], + [ + 69.89296448393472, + 44.11733296281097 + ], + [ + 70.0078071674184, + 44.31198069773942 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.0078071674184, + 44.701276167596326 + ], + [ + 69.89296448393472, + 44.89592390252478 + ], + [ + 69.66327911696737, + 44.89592390252478 + ], + [ + 69.54843643348369, + 44.701276167596326 + ], + [ + 69.66327911696737, + 44.506628432667874 + ], + [ + 69.89296448393472, + 44.506628432667874 + ], + [ + 70.0078071674184, + 44.701276167596326 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.0078071674184, + 45.090571637453245 + ], + [ + 69.89296448393472, + 45.2852193723817 + ], + [ + 69.66327911696737, + 45.2852193723817 + ], + [ + 69.54843643348369, + 45.090571637453245 + ], + [ + 69.66327911696737, + 44.89592390252479 + ], + [ + 69.89296448393472, + 44.89592390252479 + ], + [ + 70.0078071674184, + 45.090571637453245 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.0078071674184, + 45.47986710731015 + ], + [ + 69.89296448393472, + 45.6745148422386 + ], + [ + 69.66327911696737, + 45.6745148422386 + ], + [ + 69.54843643348369, + 45.47986710731015 + ], + [ + 69.66327911696737, + 45.2852193723817 + ], + [ + 69.89296448393472, + 45.2852193723817 + ], + [ + 70.0078071674184, + 45.47986710731015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.0078071674184, + 45.86916257716705 + ], + [ + 69.89296448393472, + 46.063810312095505 + ], + [ + 69.66327911696737, + 46.063810312095505 + ], + [ + 69.54843643348369, + 45.86916257716705 + ], + [ + 69.66327911696737, + 45.6745148422386 + ], + [ + 69.89296448393472, + 45.6745148422386 + ], + [ + 70.0078071674184, + 45.86916257716705 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.0078071674184, + 46.25845804702396 + ], + [ + 69.89296448393472, + 46.45310578195241 + ], + [ + 69.66327911696737, + 46.45310578195241 + ], + [ + 69.54843643348369, + 46.25845804702396 + ], + [ + 69.66327911696737, + 46.063810312095505 + ], + [ + 69.89296448393472, + 46.063810312095505 + ], + [ + 70.0078071674184, + 46.25845804702396 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.0078071674184, + 46.64775351688086 + ], + [ + 69.89296448393472, + 46.842401251809314 + ], + [ + 69.66327911696737, + 46.842401251809314 + ], + [ + 69.54843643348369, + 46.64775351688086 + ], + [ + 69.66327911696737, + 46.45310578195241 + ], + [ + 69.89296448393472, + 46.45310578195241 + ], + [ + 70.0078071674184, + 46.64775351688086 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.0078071674184, + 47.037048986737766 + ], + [ + 69.89296448393472, + 47.23169672166622 + ], + [ + 69.66327911696737, + 47.23169672166622 + ], + [ + 69.54843643348369, + 47.037048986737766 + ], + [ + 69.66327911696737, + 46.842401251809314 + ], + [ + 69.89296448393472, + 46.842401251809314 + ], + [ + 70.0078071674184, + 47.037048986737766 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.0078071674184, + 47.42634445659467 + ], + [ + 69.89296448393472, + 47.62099219152312 + ], + [ + 69.66327911696737, + 47.62099219152312 + ], + [ + 69.54843643348369, + 47.42634445659467 + ], + [ + 69.66327911696737, + 47.23169672166622 + ], + [ + 69.89296448393472, + 47.23169672166622 + ], + [ + 70.0078071674184, + 47.42634445659467 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.0078071674184, + 47.81563992645159 + ], + [ + 69.89296448393472, + 48.01028766138004 + ], + [ + 69.66327911696737, + 48.01028766138004 + ], + [ + 69.54843643348369, + 47.81563992645159 + ], + [ + 69.66327911696737, + 47.620992191523136 + ], + [ + 69.89296448393472, + 47.620992191523136 + ], + [ + 70.0078071674184, + 47.81563992645159 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.35233521786944, + 11.805808964687746 + ], + [ + 70.23749253438575, + 12.0004566996162 + ], + [ + 70.0078071674184, + 12.0004566996162 + ], + [ + 69.89296448393472, + 11.805808964687746 + ], + [ + 70.0078071674184, + 11.611161229759292 + ], + [ + 70.23749253438575, + 11.611161229759292 + ], + [ + 70.35233521786944, + 11.805808964687746 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.35233521786944, + 12.195104434544652 + ], + [ + 70.23749253438575, + 12.389752169473105 + ], + [ + 70.0078071674184, + 12.389752169473105 + ], + [ + 69.89296448393472, + 12.195104434544652 + ], + [ + 70.0078071674184, + 12.000456699616198 + ], + [ + 70.23749253438575, + 12.000456699616198 + ], + [ + 70.35233521786944, + 12.195104434544652 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.35233521786944, + 12.58439990440156 + ], + [ + 70.23749253438575, + 12.779047639330013 + ], + [ + 70.0078071674184, + 12.779047639330013 + ], + [ + 69.89296448393472, + 12.58439990440156 + ], + [ + 70.0078071674184, + 12.389752169473105 + ], + [ + 70.23749253438575, + 12.389752169473105 + ], + [ + 70.35233521786944, + 12.58439990440156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.35233521786944, + 12.973695374258465 + ], + [ + 70.23749253438575, + 13.16834310918692 + ], + [ + 70.0078071674184, + 13.16834310918692 + ], + [ + 69.89296448393472, + 12.973695374258465 + ], + [ + 70.0078071674184, + 12.779047639330011 + ], + [ + 70.23749253438575, + 12.779047639330011 + ], + [ + 70.35233521786944, + 12.973695374258465 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.35233521786944, + 13.362990844115371 + ], + [ + 70.23749253438575, + 13.557638579043825 + ], + [ + 70.0078071674184, + 13.557638579043825 + ], + [ + 69.89296448393472, + 13.362990844115371 + ], + [ + 70.0078071674184, + 13.168343109186917 + ], + [ + 70.23749253438575, + 13.168343109186917 + ], + [ + 70.35233521786944, + 13.362990844115371 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.35233521786944, + 13.752286313972277 + ], + [ + 70.23749253438575, + 13.946934048900731 + ], + [ + 70.0078071674184, + 13.946934048900731 + ], + [ + 69.89296448393472, + 13.752286313972277 + ], + [ + 70.0078071674184, + 13.557638579043823 + ], + [ + 70.23749253438575, + 13.557638579043823 + ], + [ + 70.35233521786944, + 13.752286313972277 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.35233521786944, + 14.141581783829183 + ], + [ + 70.23749253438575, + 14.336229518757637 + ], + [ + 70.0078071674184, + 14.336229518757637 + ], + [ + 69.89296448393472, + 14.141581783829183 + ], + [ + 70.0078071674184, + 13.94693404890073 + ], + [ + 70.23749253438575, + 13.94693404890073 + ], + [ + 70.35233521786944, + 14.141581783829183 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.35233521786944, + 14.530877253686091 + ], + [ + 70.23749253438575, + 14.725524988614545 + ], + [ + 70.0078071674184, + 14.725524988614545 + ], + [ + 69.89296448393472, + 14.530877253686091 + ], + [ + 70.0078071674184, + 14.336229518757637 + ], + [ + 70.23749253438575, + 14.336229518757637 + ], + [ + 70.35233521786944, + 14.530877253686091 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.35233521786944, + 14.920172723542997 + ], + [ + 70.23749253438575, + 15.114820458471451 + ], + [ + 70.0078071674184, + 15.114820458471451 + ], + [ + 69.89296448393472, + 14.920172723542997 + ], + [ + 70.0078071674184, + 14.725524988614543 + ], + [ + 70.23749253438575, + 14.725524988614543 + ], + [ + 70.35233521786944, + 14.920172723542997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.35233521786944, + 15.309468193399903 + ], + [ + 70.23749253438575, + 15.504115928328357 + ], + [ + 70.0078071674184, + 15.504115928328357 + ], + [ + 69.89296448393472, + 15.309468193399903 + ], + [ + 70.0078071674184, + 15.11482045847145 + ], + [ + 70.23749253438575, + 15.11482045847145 + ], + [ + 70.35233521786944, + 15.309468193399903 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.35233521786944, + 15.69876366325681 + ], + [ + 70.23749253438575, + 15.893411398185265 + ], + [ + 70.0078071674184, + 15.893411398185265 + ], + [ + 69.89296448393472, + 15.69876366325681 + ], + [ + 70.0078071674184, + 15.504115928328357 + ], + [ + 70.23749253438575, + 15.504115928328357 + ], + [ + 70.35233521786944, + 15.69876366325681 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.35233521786944, + 16.088059133113717 + ], + [ + 70.23749253438575, + 16.28270686804217 + ], + [ + 70.0078071674184, + 16.28270686804217 + ], + [ + 69.89296448393472, + 16.088059133113717 + ], + [ + 70.0078071674184, + 15.893411398185263 + ], + [ + 70.23749253438575, + 15.893411398185263 + ], + [ + 70.35233521786944, + 16.088059133113717 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.35233521786944, + 16.477354602970625 + ], + [ + 70.23749253438575, + 16.672002337899077 + ], + [ + 70.0078071674184, + 16.672002337899077 + ], + [ + 69.89296448393472, + 16.477354602970625 + ], + [ + 70.0078071674184, + 16.282706868042172 + ], + [ + 70.23749253438575, + 16.282706868042172 + ], + [ + 70.35233521786944, + 16.477354602970625 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.35233521786944, + 16.86665007282753 + ], + [ + 70.23749253438575, + 17.06129780775598 + ], + [ + 70.0078071674184, + 17.06129780775598 + ], + [ + 69.89296448393472, + 16.86665007282753 + ], + [ + 70.0078071674184, + 16.672002337899077 + ], + [ + 70.23749253438575, + 16.672002337899077 + ], + [ + 70.35233521786944, + 16.86665007282753 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.35233521786944, + 17.255945542684437 + ], + [ + 70.23749253438575, + 17.45059327761289 + ], + [ + 70.0078071674184, + 17.45059327761289 + ], + [ + 69.89296448393472, + 17.255945542684437 + ], + [ + 70.0078071674184, + 17.061297807755984 + ], + [ + 70.23749253438575, + 17.061297807755984 + ], + [ + 70.35233521786944, + 17.255945542684437 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.35233521786944, + 17.64524101254134 + ], + [ + 70.23749253438575, + 17.839888747469793 + ], + [ + 70.0078071674184, + 17.839888747469793 + ], + [ + 69.89296448393472, + 17.64524101254134 + ], + [ + 70.0078071674184, + 17.45059327761289 + ], + [ + 70.23749253438575, + 17.45059327761289 + ], + [ + 70.35233521786944, + 17.64524101254134 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.35233521786944, + 18.03453648239825 + ], + [ + 70.23749253438575, + 18.2291842173267 + ], + [ + 70.0078071674184, + 18.2291842173267 + ], + [ + 69.89296448393472, + 18.03453648239825 + ], + [ + 70.0078071674184, + 17.839888747469796 + ], + [ + 70.23749253438575, + 17.839888747469796 + ], + [ + 70.35233521786944, + 18.03453648239825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.35233521786944, + 18.423831952255156 + ], + [ + 70.23749253438575, + 18.61847968718361 + ], + [ + 70.0078071674184, + 18.61847968718361 + ], + [ + 69.89296448393472, + 18.423831952255156 + ], + [ + 70.0078071674184, + 18.229184217326704 + ], + [ + 70.23749253438575, + 18.229184217326704 + ], + [ + 70.35233521786944, + 18.423831952255156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.35233521786944, + 18.81312742211206 + ], + [ + 70.23749253438575, + 19.007775157040513 + ], + [ + 70.0078071674184, + 19.007775157040513 + ], + [ + 69.89296448393472, + 18.81312742211206 + ], + [ + 70.0078071674184, + 18.61847968718361 + ], + [ + 70.23749253438575, + 18.61847968718361 + ], + [ + 70.35233521786944, + 18.81312742211206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.35233521786944, + 19.20242289196897 + ], + [ + 70.23749253438575, + 19.39707062689742 + ], + [ + 70.0078071674184, + 19.39707062689742 + ], + [ + 69.89296448393472, + 19.20242289196897 + ], + [ + 70.0078071674184, + 19.007775157040516 + ], + [ + 70.23749253438575, + 19.007775157040516 + ], + [ + 70.35233521786944, + 19.20242289196897 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.35233521786944, + 19.591718361825876 + ], + [ + 70.23749253438575, + 19.78636609675433 + ], + [ + 70.0078071674184, + 19.78636609675433 + ], + [ + 69.89296448393472, + 19.591718361825876 + ], + [ + 70.0078071674184, + 19.397070626897424 + ], + [ + 70.23749253438575, + 19.397070626897424 + ], + [ + 70.35233521786944, + 19.591718361825876 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.35233521786944, + 19.98101383168278 + ], + [ + 70.23749253438575, + 20.175661566611232 + ], + [ + 70.0078071674184, + 20.175661566611232 + ], + [ + 69.89296448393472, + 19.98101383168278 + ], + [ + 70.0078071674184, + 19.78636609675433 + ], + [ + 70.23749253438575, + 19.78636609675433 + ], + [ + 70.35233521786944, + 19.98101383168278 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.35233521786944, + 20.370309301539685 + ], + [ + 70.23749253438575, + 20.564957036468137 + ], + [ + 70.0078071674184, + 20.564957036468137 + ], + [ + 69.89296448393472, + 20.370309301539685 + ], + [ + 70.0078071674184, + 20.175661566611232 + ], + [ + 70.23749253438575, + 20.175661566611232 + ], + [ + 70.35233521786944, + 20.370309301539685 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.35233521786944, + 20.759604771396592 + ], + [ + 70.23749253438575, + 20.954252506325044 + ], + [ + 70.0078071674184, + 20.954252506325044 + ], + [ + 69.89296448393472, + 20.759604771396592 + ], + [ + 70.0078071674184, + 20.56495703646814 + ], + [ + 70.23749253438575, + 20.56495703646814 + ], + [ + 70.35233521786944, + 20.759604771396592 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.35233521786944, + 21.1489002412535 + ], + [ + 70.23749253438575, + 21.343547976181952 + ], + [ + 70.0078071674184, + 21.343547976181952 + ], + [ + 69.89296448393472, + 21.1489002412535 + ], + [ + 70.0078071674184, + 20.954252506325048 + ], + [ + 70.23749253438575, + 20.954252506325048 + ], + [ + 70.35233521786944, + 21.1489002412535 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.35233521786944, + 21.538195711110404 + ], + [ + 70.23749253438575, + 21.732843446038856 + ], + [ + 70.0078071674184, + 21.732843446038856 + ], + [ + 69.89296448393472, + 21.538195711110404 + ], + [ + 70.0078071674184, + 21.343547976181952 + ], + [ + 70.23749253438575, + 21.343547976181952 + ], + [ + 70.35233521786944, + 21.538195711110404 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.35233521786944, + 21.927491180967312 + ], + [ + 70.23749253438575, + 22.122138915895764 + ], + [ + 70.0078071674184, + 22.122138915895764 + ], + [ + 69.89296448393472, + 21.927491180967312 + ], + [ + 70.0078071674184, + 21.73284344603886 + ], + [ + 70.23749253438575, + 21.73284344603886 + ], + [ + 70.35233521786944, + 21.927491180967312 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.35233521786944, + 22.31678665082422 + ], + [ + 70.23749253438575, + 22.511434385752672 + ], + [ + 70.0078071674184, + 22.511434385752672 + ], + [ + 69.89296448393472, + 22.31678665082422 + ], + [ + 70.0078071674184, + 22.122138915895768 + ], + [ + 70.23749253438575, + 22.122138915895768 + ], + [ + 70.35233521786944, + 22.31678665082422 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.35233521786944, + 22.706082120681124 + ], + [ + 70.23749253438575, + 22.900729855609576 + ], + [ + 70.0078071674184, + 22.900729855609576 + ], + [ + 69.89296448393472, + 22.706082120681124 + ], + [ + 70.0078071674184, + 22.511434385752672 + ], + [ + 70.23749253438575, + 22.511434385752672 + ], + [ + 70.35233521786944, + 22.706082120681124 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.35233521786944, + 23.095377590538032 + ], + [ + 70.23749253438575, + 23.290025325466484 + ], + [ + 70.0078071674184, + 23.290025325466484 + ], + [ + 69.89296448393472, + 23.095377590538032 + ], + [ + 70.0078071674184, + 22.90072985560958 + ], + [ + 70.23749253438575, + 22.90072985560958 + ], + [ + 70.35233521786944, + 23.095377590538032 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.35233521786944, + 23.48467306039494 + ], + [ + 70.23749253438575, + 23.67932079532339 + ], + [ + 70.0078071674184, + 23.67932079532339 + ], + [ + 69.89296448393472, + 23.48467306039494 + ], + [ + 70.0078071674184, + 23.290025325466488 + ], + [ + 70.23749253438575, + 23.290025325466488 + ], + [ + 70.35233521786944, + 23.48467306039494 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.35233521786944, + 23.873968530251844 + ], + [ + 70.23749253438575, + 24.068616265180296 + ], + [ + 70.0078071674184, + 24.068616265180296 + ], + [ + 69.89296448393472, + 23.873968530251844 + ], + [ + 70.0078071674184, + 23.67932079532339 + ], + [ + 70.23749253438575, + 23.67932079532339 + ], + [ + 70.35233521786944, + 23.873968530251844 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.35233521786944, + 24.263264000108748 + ], + [ + 70.23749253438575, + 24.4579117350372 + ], + [ + 70.0078071674184, + 24.4579117350372 + ], + [ + 69.89296448393472, + 24.263264000108748 + ], + [ + 70.0078071674184, + 24.068616265180296 + ], + [ + 70.23749253438575, + 24.068616265180296 + ], + [ + 70.35233521786944, + 24.263264000108748 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.35233521786944, + 24.652559469965656 + ], + [ + 70.23749253438575, + 24.847207204894108 + ], + [ + 70.0078071674184, + 24.847207204894108 + ], + [ + 69.89296448393472, + 24.652559469965656 + ], + [ + 70.0078071674184, + 24.457911735037204 + ], + [ + 70.23749253438575, + 24.457911735037204 + ], + [ + 70.35233521786944, + 24.652559469965656 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.35233521786944, + 25.041854939822564 + ], + [ + 70.23749253438575, + 25.236502674751016 + ], + [ + 70.0078071674184, + 25.236502674751016 + ], + [ + 69.89296448393472, + 25.041854939822564 + ], + [ + 70.0078071674184, + 24.84720720489411 + ], + [ + 70.23749253438575, + 24.84720720489411 + ], + [ + 70.35233521786944, + 25.041854939822564 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.35233521786944, + 25.431150409679468 + ], + [ + 70.23749253438575, + 25.62579814460792 + ], + [ + 70.0078071674184, + 25.62579814460792 + ], + [ + 69.89296448393472, + 25.431150409679468 + ], + [ + 70.0078071674184, + 25.236502674751016 + ], + [ + 70.23749253438575, + 25.236502674751016 + ], + [ + 70.35233521786944, + 25.431150409679468 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.35233521786944, + 25.820445879536376 + ], + [ + 70.23749253438575, + 26.015093614464828 + ], + [ + 70.0078071674184, + 26.015093614464828 + ], + [ + 69.89296448393472, + 25.820445879536376 + ], + [ + 70.0078071674184, + 25.625798144607923 + ], + [ + 70.23749253438575, + 25.625798144607923 + ], + [ + 70.35233521786944, + 25.820445879536376 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.35233521786944, + 26.209741349393283 + ], + [ + 70.23749253438575, + 26.404389084321735 + ], + [ + 70.0078071674184, + 26.404389084321735 + ], + [ + 69.89296448393472, + 26.209741349393283 + ], + [ + 70.0078071674184, + 26.01509361446483 + ], + [ + 70.23749253438575, + 26.01509361446483 + ], + [ + 70.35233521786944, + 26.209741349393283 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.35233521786944, + 26.599036819250188 + ], + [ + 70.23749253438575, + 26.79368455417864 + ], + [ + 70.0078071674184, + 26.79368455417864 + ], + [ + 69.89296448393472, + 26.599036819250188 + ], + [ + 70.0078071674184, + 26.404389084321735 + ], + [ + 70.23749253438575, + 26.404389084321735 + ], + [ + 70.35233521786944, + 26.599036819250188 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.35233521786944, + 26.988332289107095 + ], + [ + 70.23749253438575, + 27.182980024035547 + ], + [ + 70.0078071674184, + 27.182980024035547 + ], + [ + 69.89296448393472, + 26.988332289107095 + ], + [ + 70.0078071674184, + 26.793684554178643 + ], + [ + 70.23749253438575, + 26.793684554178643 + ], + [ + 70.35233521786944, + 26.988332289107095 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.35233521786944, + 27.377627758964003 + ], + [ + 70.23749253438575, + 27.572275493892455 + ], + [ + 70.0078071674184, + 27.572275493892455 + ], + [ + 69.89296448393472, + 27.377627758964003 + ], + [ + 70.0078071674184, + 27.18298002403555 + ], + [ + 70.23749253438575, + 27.18298002403555 + ], + [ + 70.35233521786944, + 27.377627758964003 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.35233521786944, + 27.766923228820907 + ], + [ + 70.23749253438575, + 27.96157096374936 + ], + [ + 70.0078071674184, + 27.96157096374936 + ], + [ + 69.89296448393472, + 27.766923228820907 + ], + [ + 70.0078071674184, + 27.572275493892455 + ], + [ + 70.23749253438575, + 27.572275493892455 + ], + [ + 70.35233521786944, + 27.766923228820907 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.35233521786944, + 28.156218698677815 + ], + [ + 70.23749253438575, + 28.350866433606267 + ], + [ + 70.0078071674184, + 28.350866433606267 + ], + [ + 69.89296448393472, + 28.156218698677815 + ], + [ + 70.0078071674184, + 27.961570963749363 + ], + [ + 70.23749253438575, + 27.961570963749363 + ], + [ + 70.35233521786944, + 28.156218698677815 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.35233521786944, + 28.54551416853472 + ], + [ + 70.23749253438575, + 28.74016190346317 + ], + [ + 70.0078071674184, + 28.74016190346317 + ], + [ + 69.89296448393472, + 28.54551416853472 + ], + [ + 70.0078071674184, + 28.350866433606267 + ], + [ + 70.23749253438575, + 28.350866433606267 + ], + [ + 70.35233521786944, + 28.54551416853472 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.35233521786944, + 28.934809638391627 + ], + [ + 70.23749253438575, + 29.12945737332008 + ], + [ + 70.0078071674184, + 29.12945737332008 + ], + [ + 69.89296448393472, + 28.934809638391627 + ], + [ + 70.0078071674184, + 28.740161903463175 + ], + [ + 70.23749253438575, + 28.740161903463175 + ], + [ + 70.35233521786944, + 28.934809638391627 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.35233521786944, + 29.32410510824853 + ], + [ + 70.23749253438575, + 29.518752843176983 + ], + [ + 70.0078071674184, + 29.518752843176983 + ], + [ + 69.89296448393472, + 29.32410510824853 + ], + [ + 70.0078071674184, + 29.12945737332008 + ], + [ + 70.23749253438575, + 29.12945737332008 + ], + [ + 70.35233521786944, + 29.32410510824853 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.35233521786944, + 29.71340057810544 + ], + [ + 70.23749253438575, + 29.90804831303389 + ], + [ + 70.0078071674184, + 29.90804831303389 + ], + [ + 69.89296448393472, + 29.71340057810544 + ], + [ + 70.0078071674184, + 29.518752843176987 + ], + [ + 70.23749253438575, + 29.518752843176987 + ], + [ + 70.35233521786944, + 29.71340057810544 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.35233521786944, + 30.102696047962343 + ], + [ + 70.23749253438575, + 30.297343782890795 + ], + [ + 70.0078071674184, + 30.297343782890795 + ], + [ + 69.89296448393472, + 30.102696047962343 + ], + [ + 70.0078071674184, + 29.90804831303389 + ], + [ + 70.23749253438575, + 29.90804831303389 + ], + [ + 70.35233521786944, + 30.102696047962343 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.35233521786944, + 30.49199151781925 + ], + [ + 70.23749253438575, + 30.686639252747703 + ], + [ + 70.0078071674184, + 30.686639252747703 + ], + [ + 69.89296448393472, + 30.49199151781925 + ], + [ + 70.0078071674184, + 30.2973437828908 + ], + [ + 70.23749253438575, + 30.2973437828908 + ], + [ + 70.35233521786944, + 30.49199151781925 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.35233521786944, + 30.88128698767616 + ], + [ + 70.23749253438575, + 31.07593472260461 + ], + [ + 70.0078071674184, + 31.07593472260461 + ], + [ + 69.89296448393472, + 30.88128698767616 + ], + [ + 70.0078071674184, + 30.686639252747707 + ], + [ + 70.23749253438575, + 30.686639252747707 + ], + [ + 70.35233521786944, + 30.88128698767616 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.35233521786944, + 31.270582457533063 + ], + [ + 70.23749253438575, + 31.465230192461515 + ], + [ + 70.0078071674184, + 31.465230192461515 + ], + [ + 69.89296448393472, + 31.270582457533063 + ], + [ + 70.0078071674184, + 31.07593472260461 + ], + [ + 70.23749253438575, + 31.07593472260461 + ], + [ + 70.35233521786944, + 31.270582457533063 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.35233521786944, + 31.65987792738997 + ], + [ + 70.23749253438575, + 31.854525662318423 + ], + [ + 70.0078071674184, + 31.854525662318423 + ], + [ + 69.89296448393472, + 31.65987792738997 + ], + [ + 70.0078071674184, + 31.46523019246152 + ], + [ + 70.23749253438575, + 31.46523019246152 + ], + [ + 70.35233521786944, + 31.65987792738997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.35233521786944, + 32.049173397246875 + ], + [ + 70.23749253438575, + 32.24382113217533 + ], + [ + 70.0078071674184, + 32.24382113217533 + ], + [ + 69.89296448393472, + 32.049173397246875 + ], + [ + 70.0078071674184, + 31.854525662318423 + ], + [ + 70.23749253438575, + 31.854525662318423 + ], + [ + 70.35233521786944, + 32.049173397246875 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.35233521786944, + 32.438468867103786 + ], + [ + 70.23749253438575, + 32.63311660203224 + ], + [ + 70.0078071674184, + 32.63311660203224 + ], + [ + 69.89296448393472, + 32.438468867103786 + ], + [ + 70.0078071674184, + 32.243821132175334 + ], + [ + 70.23749253438575, + 32.243821132175334 + ], + [ + 70.35233521786944, + 32.438468867103786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.35233521786944, + 32.82776433696069 + ], + [ + 70.23749253438575, + 33.02241207188914 + ], + [ + 70.0078071674184, + 33.02241207188914 + ], + [ + 69.89296448393472, + 32.82776433696069 + ], + [ + 70.0078071674184, + 32.63311660203224 + ], + [ + 70.23749253438575, + 32.63311660203224 + ], + [ + 70.35233521786944, + 32.82776433696069 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.35233521786944, + 33.217059806817595 + ], + [ + 70.23749253438575, + 33.41170754174605 + ], + [ + 70.0078071674184, + 33.41170754174605 + ], + [ + 69.89296448393472, + 33.217059806817595 + ], + [ + 70.0078071674184, + 33.02241207188914 + ], + [ + 70.23749253438575, + 33.02241207188914 + ], + [ + 70.35233521786944, + 33.217059806817595 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.35233521786944, + 33.6063552766745 + ], + [ + 70.23749253438575, + 33.80100301160295 + ], + [ + 70.0078071674184, + 33.80100301160295 + ], + [ + 69.89296448393472, + 33.6063552766745 + ], + [ + 70.0078071674184, + 33.41170754174605 + ], + [ + 70.23749253438575, + 33.41170754174605 + ], + [ + 70.35233521786944, + 33.6063552766745 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.35233521786944, + 33.9956507465314 + ], + [ + 70.23749253438575, + 34.190298481459855 + ], + [ + 70.0078071674184, + 34.190298481459855 + ], + [ + 69.89296448393472, + 33.9956507465314 + ], + [ + 70.0078071674184, + 33.80100301160295 + ], + [ + 70.23749253438575, + 33.80100301160295 + ], + [ + 70.35233521786944, + 33.9956507465314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.35233521786944, + 34.384946216388315 + ], + [ + 70.23749253438575, + 34.57959395131677 + ], + [ + 70.0078071674184, + 34.57959395131677 + ], + [ + 69.89296448393472, + 34.384946216388315 + ], + [ + 70.0078071674184, + 34.19029848145986 + ], + [ + 70.23749253438575, + 34.19029848145986 + ], + [ + 70.35233521786944, + 34.384946216388315 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.35233521786944, + 34.774241686245226 + ], + [ + 70.23749253438575, + 34.96888942117368 + ], + [ + 70.0078071674184, + 34.96888942117368 + ], + [ + 69.89296448393472, + 34.774241686245226 + ], + [ + 70.0078071674184, + 34.579593951316774 + ], + [ + 70.23749253438575, + 34.579593951316774 + ], + [ + 70.35233521786944, + 34.774241686245226 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.35233521786944, + 35.16353715610213 + ], + [ + 70.23749253438575, + 35.35818489103058 + ], + [ + 70.0078071674184, + 35.35818489103058 + ], + [ + 69.89296448393472, + 35.16353715610213 + ], + [ + 70.0078071674184, + 34.96888942117368 + ], + [ + 70.23749253438575, + 34.96888942117368 + ], + [ + 70.35233521786944, + 35.16353715610213 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.35233521786944, + 35.552832625959034 + ], + [ + 70.23749253438575, + 35.74748036088749 + ], + [ + 70.0078071674184, + 35.74748036088749 + ], + [ + 69.89296448393472, + 35.552832625959034 + ], + [ + 70.0078071674184, + 35.35818489103058 + ], + [ + 70.23749253438575, + 35.35818489103058 + ], + [ + 70.35233521786944, + 35.552832625959034 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.35233521786944, + 35.94212809581594 + ], + [ + 70.23749253438575, + 36.13677583074439 + ], + [ + 70.0078071674184, + 36.13677583074439 + ], + [ + 69.89296448393472, + 35.94212809581594 + ], + [ + 70.0078071674184, + 35.74748036088749 + ], + [ + 70.23749253438575, + 35.74748036088749 + ], + [ + 70.35233521786944, + 35.94212809581594 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.35233521786944, + 36.33142356567284 + ], + [ + 70.23749253438575, + 36.526071300601295 + ], + [ + 70.0078071674184, + 36.526071300601295 + ], + [ + 69.89296448393472, + 36.33142356567284 + ], + [ + 70.0078071674184, + 36.13677583074439 + ], + [ + 70.23749253438575, + 36.13677583074439 + ], + [ + 70.35233521786944, + 36.33142356567284 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.35233521786944, + 36.720719035529754 + ], + [ + 70.23749253438575, + 36.915366770458206 + ], + [ + 70.0078071674184, + 36.915366770458206 + ], + [ + 69.89296448393472, + 36.720719035529754 + ], + [ + 70.0078071674184, + 36.5260713006013 + ], + [ + 70.23749253438575, + 36.5260713006013 + ], + [ + 70.35233521786944, + 36.720719035529754 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.35233521786944, + 37.11001450538666 + ], + [ + 70.23749253438575, + 37.30466224031511 + ], + [ + 70.0078071674184, + 37.30466224031511 + ], + [ + 69.89296448393472, + 37.11001450538666 + ], + [ + 70.0078071674184, + 36.915366770458206 + ], + [ + 70.23749253438575, + 36.915366770458206 + ], + [ + 70.35233521786944, + 37.11001450538666 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.35233521786944, + 37.49930997524357 + ], + [ + 70.23749253438575, + 37.69395771017202 + ], + [ + 70.0078071674184, + 37.69395771017202 + ], + [ + 69.89296448393472, + 37.49930997524357 + ], + [ + 70.0078071674184, + 37.30466224031512 + ], + [ + 70.23749253438575, + 37.30466224031512 + ], + [ + 70.35233521786944, + 37.49930997524357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.35233521786944, + 37.888605445100474 + ], + [ + 70.23749253438575, + 38.083253180028926 + ], + [ + 70.0078071674184, + 38.083253180028926 + ], + [ + 69.89296448393472, + 37.888605445100474 + ], + [ + 70.0078071674184, + 37.69395771017202 + ], + [ + 70.23749253438575, + 37.69395771017202 + ], + [ + 70.35233521786944, + 37.888605445100474 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.35233521786944, + 38.27790091495738 + ], + [ + 70.23749253438575, + 38.47254864988583 + ], + [ + 70.0078071674184, + 38.47254864988583 + ], + [ + 69.89296448393472, + 38.27790091495738 + ], + [ + 70.0078071674184, + 38.083253180028926 + ], + [ + 70.23749253438575, + 38.083253180028926 + ], + [ + 70.35233521786944, + 38.27790091495738 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.35233521786944, + 38.66719638481428 + ], + [ + 70.23749253438575, + 38.861844119742734 + ], + [ + 70.0078071674184, + 38.861844119742734 + ], + [ + 69.89296448393472, + 38.66719638481428 + ], + [ + 70.0078071674184, + 38.47254864988583 + ], + [ + 70.23749253438575, + 38.47254864988583 + ], + [ + 70.35233521786944, + 38.66719638481428 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.35233521786944, + 39.05649185467119 + ], + [ + 70.23749253438575, + 39.25113958959964 + ], + [ + 70.0078071674184, + 39.25113958959964 + ], + [ + 69.89296448393472, + 39.05649185467119 + ], + [ + 70.0078071674184, + 38.861844119742734 + ], + [ + 70.23749253438575, + 38.861844119742734 + ], + [ + 70.35233521786944, + 39.05649185467119 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.35233521786944, + 39.4457873245281 + ], + [ + 70.23749253438575, + 39.64043505945655 + ], + [ + 70.0078071674184, + 39.64043505945655 + ], + [ + 69.89296448393472, + 39.4457873245281 + ], + [ + 70.0078071674184, + 39.251139589599646 + ], + [ + 70.23749253438575, + 39.251139589599646 + ], + [ + 70.35233521786944, + 39.4457873245281 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.35233521786944, + 39.835082794385 + ], + [ + 70.23749253438575, + 40.029730529313454 + ], + [ + 70.0078071674184, + 40.029730529313454 + ], + [ + 69.89296448393472, + 39.835082794385 + ], + [ + 70.0078071674184, + 39.64043505945655 + ], + [ + 70.23749253438575, + 39.64043505945655 + ], + [ + 70.35233521786944, + 39.835082794385 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.35233521786944, + 40.22437826424191 + ], + [ + 70.23749253438575, + 40.419025999170366 + ], + [ + 70.0078071674184, + 40.419025999170366 + ], + [ + 69.89296448393472, + 40.22437826424191 + ], + [ + 70.0078071674184, + 40.02973052931346 + ], + [ + 70.23749253438575, + 40.02973052931346 + ], + [ + 70.35233521786944, + 40.22437826424191 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.35233521786944, + 40.61367373409882 + ], + [ + 70.23749253438575, + 40.80832146902727 + ], + [ + 70.0078071674184, + 40.80832146902727 + ], + [ + 69.89296448393472, + 40.61367373409882 + ], + [ + 70.0078071674184, + 40.419025999170366 + ], + [ + 70.23749253438575, + 40.419025999170366 + ], + [ + 70.35233521786944, + 40.61367373409882 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.35233521786944, + 41.00296920395572 + ], + [ + 70.23749253438575, + 41.197616938884174 + ], + [ + 70.0078071674184, + 41.197616938884174 + ], + [ + 69.89296448393472, + 41.00296920395572 + ], + [ + 70.0078071674184, + 40.80832146902727 + ], + [ + 70.23749253438575, + 40.80832146902727 + ], + [ + 70.35233521786944, + 41.00296920395572 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.35233521786944, + 41.392264673812626 + ], + [ + 70.23749253438575, + 41.58691240874108 + ], + [ + 70.0078071674184, + 41.58691240874108 + ], + [ + 69.89296448393472, + 41.392264673812626 + ], + [ + 70.0078071674184, + 41.197616938884174 + ], + [ + 70.23749253438575, + 41.197616938884174 + ], + [ + 70.35233521786944, + 41.392264673812626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.35233521786944, + 41.78156014366953 + ], + [ + 70.23749253438575, + 41.97620787859798 + ], + [ + 70.0078071674184, + 41.97620787859798 + ], + [ + 69.89296448393472, + 41.78156014366953 + ], + [ + 70.0078071674184, + 41.58691240874108 + ], + [ + 70.23749253438575, + 41.58691240874108 + ], + [ + 70.35233521786944, + 41.78156014366953 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.35233521786944, + 42.17085561352644 + ], + [ + 70.23749253438575, + 42.365503348454894 + ], + [ + 70.0078071674184, + 42.365503348454894 + ], + [ + 69.89296448393472, + 42.17085561352644 + ], + [ + 70.0078071674184, + 41.97620787859799 + ], + [ + 70.23749253438575, + 41.97620787859799 + ], + [ + 70.35233521786944, + 42.17085561352644 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.35233521786944, + 42.56015108338335 + ], + [ + 70.23749253438575, + 42.754798818311805 + ], + [ + 70.0078071674184, + 42.754798818311805 + ], + [ + 69.89296448393472, + 42.56015108338335 + ], + [ + 70.0078071674184, + 42.3655033484549 + ], + [ + 70.23749253438575, + 42.3655033484549 + ], + [ + 70.35233521786944, + 42.56015108338335 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.35233521786944, + 42.94944655324026 + ], + [ + 70.23749253438575, + 43.14409428816871 + ], + [ + 70.0078071674184, + 43.14409428816871 + ], + [ + 69.89296448393472, + 42.94944655324026 + ], + [ + 70.0078071674184, + 42.754798818311805 + ], + [ + 70.23749253438575, + 42.754798818311805 + ], + [ + 70.35233521786944, + 42.94944655324026 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.35233521786944, + 43.33874202309716 + ], + [ + 70.23749253438575, + 43.53338975802561 + ], + [ + 70.0078071674184, + 43.53338975802561 + ], + [ + 69.89296448393472, + 43.33874202309716 + ], + [ + 70.0078071674184, + 43.14409428816871 + ], + [ + 70.23749253438575, + 43.14409428816871 + ], + [ + 70.35233521786944, + 43.33874202309716 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.35233521786944, + 43.728037492954066 + ], + [ + 70.23749253438575, + 43.92268522788252 + ], + [ + 70.0078071674184, + 43.92268522788252 + ], + [ + 69.89296448393472, + 43.728037492954066 + ], + [ + 70.0078071674184, + 43.53338975802561 + ], + [ + 70.23749253438575, + 43.53338975802561 + ], + [ + 70.35233521786944, + 43.728037492954066 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.35233521786944, + 44.11733296281097 + ], + [ + 70.23749253438575, + 44.31198069773942 + ], + [ + 70.0078071674184, + 44.31198069773942 + ], + [ + 69.89296448393472, + 44.11733296281097 + ], + [ + 70.0078071674184, + 43.92268522788252 + ], + [ + 70.23749253438575, + 43.92268522788252 + ], + [ + 70.35233521786944, + 44.11733296281097 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.35233521786944, + 44.506628432667874 + ], + [ + 70.23749253438575, + 44.701276167596326 + ], + [ + 70.0078071674184, + 44.701276167596326 + ], + [ + 69.89296448393472, + 44.506628432667874 + ], + [ + 70.0078071674184, + 44.31198069773942 + ], + [ + 70.23749253438575, + 44.31198069773942 + ], + [ + 70.35233521786944, + 44.506628432667874 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.35233521786944, + 44.89592390252479 + ], + [ + 70.23749253438575, + 45.090571637453245 + ], + [ + 70.0078071674184, + 45.090571637453245 + ], + [ + 69.89296448393472, + 44.89592390252479 + ], + [ + 70.0078071674184, + 44.70127616759634 + ], + [ + 70.23749253438575, + 44.70127616759634 + ], + [ + 70.35233521786944, + 44.89592390252479 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.35233521786944, + 45.2852193723817 + ], + [ + 70.23749253438575, + 45.47986710731015 + ], + [ + 70.0078071674184, + 45.47986710731015 + ], + [ + 69.89296448393472, + 45.2852193723817 + ], + [ + 70.0078071674184, + 45.090571637453245 + ], + [ + 70.23749253438575, + 45.090571637453245 + ], + [ + 70.35233521786944, + 45.2852193723817 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.35233521786944, + 45.6745148422386 + ], + [ + 70.23749253438575, + 45.86916257716705 + ], + [ + 70.0078071674184, + 45.86916257716705 + ], + [ + 69.89296448393472, + 45.6745148422386 + ], + [ + 70.0078071674184, + 45.47986710731015 + ], + [ + 70.23749253438575, + 45.47986710731015 + ], + [ + 70.35233521786944, + 45.6745148422386 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.35233521786944, + 46.063810312095505 + ], + [ + 70.23749253438575, + 46.25845804702396 + ], + [ + 70.0078071674184, + 46.25845804702396 + ], + [ + 69.89296448393472, + 46.063810312095505 + ], + [ + 70.0078071674184, + 45.86916257716705 + ], + [ + 70.23749253438575, + 45.86916257716705 + ], + [ + 70.35233521786944, + 46.063810312095505 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.35233521786944, + 46.45310578195241 + ], + [ + 70.23749253438575, + 46.64775351688086 + ], + [ + 70.0078071674184, + 46.64775351688086 + ], + [ + 69.89296448393472, + 46.45310578195241 + ], + [ + 70.0078071674184, + 46.25845804702396 + ], + [ + 70.23749253438575, + 46.25845804702396 + ], + [ + 70.35233521786944, + 46.45310578195241 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.35233521786944, + 46.842401251809314 + ], + [ + 70.23749253438575, + 47.037048986737766 + ], + [ + 70.0078071674184, + 47.037048986737766 + ], + [ + 69.89296448393472, + 46.842401251809314 + ], + [ + 70.0078071674184, + 46.64775351688086 + ], + [ + 70.23749253438575, + 46.64775351688086 + ], + [ + 70.35233521786944, + 46.842401251809314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.35233521786944, + 47.23169672166622 + ], + [ + 70.23749253438575, + 47.42634445659467 + ], + [ + 70.0078071674184, + 47.42634445659467 + ], + [ + 69.89296448393472, + 47.23169672166622 + ], + [ + 70.0078071674184, + 47.037048986737766 + ], + [ + 70.23749253438575, + 47.037048986737766 + ], + [ + 70.35233521786944, + 47.23169672166622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.35233521786944, + 47.620992191523136 + ], + [ + 70.23749253438575, + 47.81563992645159 + ], + [ + 70.0078071674184, + 47.81563992645159 + ], + [ + 69.89296448393472, + 47.620992191523136 + ], + [ + 70.0078071674184, + 47.426344456594684 + ], + [ + 70.23749253438575, + 47.426344456594684 + ], + [ + 70.35233521786944, + 47.620992191523136 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.69686326832047, + 12.0004566996162 + ], + [ + 70.58202058483678, + 12.195104434544653 + ], + [ + 70.35233521786944, + 12.195104434544653 + ], + [ + 70.23749253438575, + 12.0004566996162 + ], + [ + 70.35233521786944, + 11.805808964687746 + ], + [ + 70.58202058483678, + 11.805808964687746 + ], + [ + 70.69686326832047, + 12.0004566996162 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.69686326832047, + 12.389752169473105 + ], + [ + 70.58202058483678, + 12.58439990440156 + ], + [ + 70.35233521786944, + 12.58439990440156 + ], + [ + 70.23749253438575, + 12.389752169473105 + ], + [ + 70.35233521786944, + 12.195104434544652 + ], + [ + 70.58202058483678, + 12.195104434544652 + ], + [ + 70.69686326832047, + 12.389752169473105 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.69686326832047, + 12.779047639330013 + ], + [ + 70.58202058483678, + 12.973695374258467 + ], + [ + 70.35233521786944, + 12.973695374258467 + ], + [ + 70.23749253438575, + 12.779047639330013 + ], + [ + 70.35233521786944, + 12.58439990440156 + ], + [ + 70.58202058483678, + 12.58439990440156 + ], + [ + 70.69686326832047, + 12.779047639330013 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.69686326832047, + 13.16834310918692 + ], + [ + 70.58202058483678, + 13.362990844115373 + ], + [ + 70.35233521786944, + 13.362990844115373 + ], + [ + 70.23749253438575, + 13.16834310918692 + ], + [ + 70.35233521786944, + 12.973695374258465 + ], + [ + 70.58202058483678, + 12.973695374258465 + ], + [ + 70.69686326832047, + 13.16834310918692 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.69686326832047, + 13.557638579043825 + ], + [ + 70.58202058483678, + 13.752286313972279 + ], + [ + 70.35233521786944, + 13.752286313972279 + ], + [ + 70.23749253438575, + 13.557638579043825 + ], + [ + 70.35233521786944, + 13.362990844115371 + ], + [ + 70.58202058483678, + 13.362990844115371 + ], + [ + 70.69686326832047, + 13.557638579043825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.69686326832047, + 13.946934048900731 + ], + [ + 70.58202058483678, + 14.141581783829185 + ], + [ + 70.35233521786944, + 14.141581783829185 + ], + [ + 70.23749253438575, + 13.946934048900731 + ], + [ + 70.35233521786944, + 13.752286313972277 + ], + [ + 70.58202058483678, + 13.752286313972277 + ], + [ + 70.69686326832047, + 13.946934048900731 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.69686326832047, + 14.336229518757637 + ], + [ + 70.58202058483678, + 14.530877253686091 + ], + [ + 70.35233521786944, + 14.530877253686091 + ], + [ + 70.23749253438575, + 14.336229518757637 + ], + [ + 70.35233521786944, + 14.141581783829183 + ], + [ + 70.58202058483678, + 14.141581783829183 + ], + [ + 70.69686326832047, + 14.336229518757637 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.69686326832047, + 14.725524988614545 + ], + [ + 70.58202058483678, + 14.920172723542999 + ], + [ + 70.35233521786944, + 14.920172723542999 + ], + [ + 70.23749253438575, + 14.725524988614545 + ], + [ + 70.35233521786944, + 14.530877253686091 + ], + [ + 70.58202058483678, + 14.530877253686091 + ], + [ + 70.69686326832047, + 14.725524988614545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.69686326832047, + 15.114820458471451 + ], + [ + 70.58202058483678, + 15.309468193399905 + ], + [ + 70.35233521786944, + 15.309468193399905 + ], + [ + 70.23749253438575, + 15.114820458471451 + ], + [ + 70.35233521786944, + 14.920172723542997 + ], + [ + 70.58202058483678, + 14.920172723542997 + ], + [ + 70.69686326832047, + 15.114820458471451 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.69686326832047, + 15.504115928328357 + ], + [ + 70.58202058483678, + 15.69876366325681 + ], + [ + 70.35233521786944, + 15.69876366325681 + ], + [ + 70.23749253438575, + 15.504115928328357 + ], + [ + 70.35233521786944, + 15.309468193399903 + ], + [ + 70.58202058483678, + 15.309468193399903 + ], + [ + 70.69686326832047, + 15.504115928328357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.69686326832047, + 15.893411398185265 + ], + [ + 70.58202058483678, + 16.088059133113717 + ], + [ + 70.35233521786944, + 16.088059133113717 + ], + [ + 70.23749253438575, + 15.893411398185265 + ], + [ + 70.35233521786944, + 15.69876366325681 + ], + [ + 70.58202058483678, + 15.69876366325681 + ], + [ + 70.69686326832047, + 15.893411398185265 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.69686326832047, + 16.28270686804217 + ], + [ + 70.58202058483678, + 16.47735460297062 + ], + [ + 70.35233521786944, + 16.47735460297062 + ], + [ + 70.23749253438575, + 16.28270686804217 + ], + [ + 70.35233521786944, + 16.088059133113717 + ], + [ + 70.58202058483678, + 16.088059133113717 + ], + [ + 70.69686326832047, + 16.28270686804217 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.69686326832047, + 16.672002337899077 + ], + [ + 70.58202058483678, + 16.86665007282753 + ], + [ + 70.35233521786944, + 16.86665007282753 + ], + [ + 70.23749253438575, + 16.672002337899077 + ], + [ + 70.35233521786944, + 16.477354602970625 + ], + [ + 70.58202058483678, + 16.477354602970625 + ], + [ + 70.69686326832047, + 16.672002337899077 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.69686326832047, + 17.06129780775598 + ], + [ + 70.58202058483678, + 17.255945542684433 + ], + [ + 70.35233521786944, + 17.255945542684433 + ], + [ + 70.23749253438575, + 17.06129780775598 + ], + [ + 70.35233521786944, + 16.86665007282753 + ], + [ + 70.58202058483678, + 16.86665007282753 + ], + [ + 70.69686326832047, + 17.06129780775598 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.69686326832047, + 17.45059327761289 + ], + [ + 70.58202058483678, + 17.64524101254134 + ], + [ + 70.35233521786944, + 17.64524101254134 + ], + [ + 70.23749253438575, + 17.45059327761289 + ], + [ + 70.35233521786944, + 17.255945542684437 + ], + [ + 70.58202058483678, + 17.255945542684437 + ], + [ + 70.69686326832047, + 17.45059327761289 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.69686326832047, + 17.839888747469793 + ], + [ + 70.58202058483678, + 18.034536482398245 + ], + [ + 70.35233521786944, + 18.034536482398245 + ], + [ + 70.23749253438575, + 17.839888747469793 + ], + [ + 70.35233521786944, + 17.64524101254134 + ], + [ + 70.58202058483678, + 17.64524101254134 + ], + [ + 70.69686326832047, + 17.839888747469793 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.69686326832047, + 18.2291842173267 + ], + [ + 70.58202058483678, + 18.423831952255153 + ], + [ + 70.35233521786944, + 18.423831952255153 + ], + [ + 70.23749253438575, + 18.2291842173267 + ], + [ + 70.35233521786944, + 18.03453648239825 + ], + [ + 70.58202058483678, + 18.03453648239825 + ], + [ + 70.69686326832047, + 18.2291842173267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.69686326832047, + 18.61847968718361 + ], + [ + 70.58202058483678, + 18.81312742211206 + ], + [ + 70.35233521786944, + 18.81312742211206 + ], + [ + 70.23749253438575, + 18.61847968718361 + ], + [ + 70.35233521786944, + 18.423831952255156 + ], + [ + 70.58202058483678, + 18.423831952255156 + ], + [ + 70.69686326832047, + 18.61847968718361 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.69686326832047, + 19.007775157040513 + ], + [ + 70.58202058483678, + 19.202422891968965 + ], + [ + 70.35233521786944, + 19.202422891968965 + ], + [ + 70.23749253438575, + 19.007775157040513 + ], + [ + 70.35233521786944, + 18.81312742211206 + ], + [ + 70.58202058483678, + 18.81312742211206 + ], + [ + 70.69686326832047, + 19.007775157040513 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.69686326832047, + 19.39707062689742 + ], + [ + 70.58202058483678, + 19.591718361825873 + ], + [ + 70.35233521786944, + 19.591718361825873 + ], + [ + 70.23749253438575, + 19.39707062689742 + ], + [ + 70.35233521786944, + 19.20242289196897 + ], + [ + 70.58202058483678, + 19.20242289196897 + ], + [ + 70.69686326832047, + 19.39707062689742 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.69686326832047, + 19.78636609675433 + ], + [ + 70.58202058483678, + 19.98101383168278 + ], + [ + 70.35233521786944, + 19.98101383168278 + ], + [ + 70.23749253438575, + 19.78636609675433 + ], + [ + 70.35233521786944, + 19.591718361825876 + ], + [ + 70.58202058483678, + 19.591718361825876 + ], + [ + 70.69686326832047, + 19.78636609675433 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.69686326832047, + 20.175661566611232 + ], + [ + 70.58202058483678, + 20.370309301539685 + ], + [ + 70.35233521786944, + 20.370309301539685 + ], + [ + 70.23749253438575, + 20.175661566611232 + ], + [ + 70.35233521786944, + 19.98101383168278 + ], + [ + 70.58202058483678, + 19.98101383168278 + ], + [ + 70.69686326832047, + 20.175661566611232 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.69686326832047, + 20.564957036468137 + ], + [ + 70.58202058483678, + 20.75960477139659 + ], + [ + 70.35233521786944, + 20.75960477139659 + ], + [ + 70.23749253438575, + 20.564957036468137 + ], + [ + 70.35233521786944, + 20.370309301539685 + ], + [ + 70.58202058483678, + 20.370309301539685 + ], + [ + 70.69686326832047, + 20.564957036468137 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.69686326832047, + 20.954252506325044 + ], + [ + 70.58202058483678, + 21.148900241253497 + ], + [ + 70.35233521786944, + 21.148900241253497 + ], + [ + 70.23749253438575, + 20.954252506325044 + ], + [ + 70.35233521786944, + 20.759604771396592 + ], + [ + 70.58202058483678, + 20.759604771396592 + ], + [ + 70.69686326832047, + 20.954252506325044 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.69686326832047, + 21.343547976181952 + ], + [ + 70.58202058483678, + 21.538195711110404 + ], + [ + 70.35233521786944, + 21.538195711110404 + ], + [ + 70.23749253438575, + 21.343547976181952 + ], + [ + 70.35233521786944, + 21.1489002412535 + ], + [ + 70.58202058483678, + 21.1489002412535 + ], + [ + 70.69686326832047, + 21.343547976181952 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.69686326832047, + 21.732843446038856 + ], + [ + 70.58202058483678, + 21.92749118096731 + ], + [ + 70.35233521786944, + 21.92749118096731 + ], + [ + 70.23749253438575, + 21.732843446038856 + ], + [ + 70.35233521786944, + 21.538195711110404 + ], + [ + 70.58202058483678, + 21.538195711110404 + ], + [ + 70.69686326832047, + 21.732843446038856 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.69686326832047, + 22.122138915895764 + ], + [ + 70.58202058483678, + 22.316786650824216 + ], + [ + 70.35233521786944, + 22.316786650824216 + ], + [ + 70.23749253438575, + 22.122138915895764 + ], + [ + 70.35233521786944, + 21.927491180967312 + ], + [ + 70.58202058483678, + 21.927491180967312 + ], + [ + 70.69686326832047, + 22.122138915895764 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.69686326832047, + 22.511434385752672 + ], + [ + 70.58202058483678, + 22.706082120681124 + ], + [ + 70.35233521786944, + 22.706082120681124 + ], + [ + 70.23749253438575, + 22.511434385752672 + ], + [ + 70.35233521786944, + 22.31678665082422 + ], + [ + 70.58202058483678, + 22.31678665082422 + ], + [ + 70.69686326832047, + 22.511434385752672 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.69686326832047, + 22.900729855609576 + ], + [ + 70.58202058483678, + 23.09537759053803 + ], + [ + 70.35233521786944, + 23.09537759053803 + ], + [ + 70.23749253438575, + 22.900729855609576 + ], + [ + 70.35233521786944, + 22.706082120681124 + ], + [ + 70.58202058483678, + 22.706082120681124 + ], + [ + 70.69686326832047, + 22.900729855609576 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.69686326832047, + 23.290025325466484 + ], + [ + 70.58202058483678, + 23.484673060394936 + ], + [ + 70.35233521786944, + 23.484673060394936 + ], + [ + 70.23749253438575, + 23.290025325466484 + ], + [ + 70.35233521786944, + 23.095377590538032 + ], + [ + 70.58202058483678, + 23.095377590538032 + ], + [ + 70.69686326832047, + 23.290025325466484 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.69686326832047, + 23.67932079532339 + ], + [ + 70.58202058483678, + 23.873968530251844 + ], + [ + 70.35233521786944, + 23.873968530251844 + ], + [ + 70.23749253438575, + 23.67932079532339 + ], + [ + 70.35233521786944, + 23.48467306039494 + ], + [ + 70.58202058483678, + 23.48467306039494 + ], + [ + 70.69686326832047, + 23.67932079532339 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.69686326832047, + 24.068616265180296 + ], + [ + 70.58202058483678, + 24.263264000108748 + ], + [ + 70.35233521786944, + 24.263264000108748 + ], + [ + 70.23749253438575, + 24.068616265180296 + ], + [ + 70.35233521786944, + 23.873968530251844 + ], + [ + 70.58202058483678, + 23.873968530251844 + ], + [ + 70.69686326832047, + 24.068616265180296 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.69686326832047, + 24.4579117350372 + ], + [ + 70.58202058483678, + 24.652559469965652 + ], + [ + 70.35233521786944, + 24.652559469965652 + ], + [ + 70.23749253438575, + 24.4579117350372 + ], + [ + 70.35233521786944, + 24.263264000108748 + ], + [ + 70.58202058483678, + 24.263264000108748 + ], + [ + 70.69686326832047, + 24.4579117350372 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.69686326832047, + 24.847207204894108 + ], + [ + 70.58202058483678, + 25.04185493982256 + ], + [ + 70.35233521786944, + 25.04185493982256 + ], + [ + 70.23749253438575, + 24.847207204894108 + ], + [ + 70.35233521786944, + 24.652559469965656 + ], + [ + 70.58202058483678, + 24.652559469965656 + ], + [ + 70.69686326832047, + 24.847207204894108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.69686326832047, + 25.236502674751016 + ], + [ + 70.58202058483678, + 25.431150409679468 + ], + [ + 70.35233521786944, + 25.431150409679468 + ], + [ + 70.23749253438575, + 25.236502674751016 + ], + [ + 70.35233521786944, + 25.041854939822564 + ], + [ + 70.58202058483678, + 25.041854939822564 + ], + [ + 70.69686326832047, + 25.236502674751016 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.69686326832047, + 25.62579814460792 + ], + [ + 70.58202058483678, + 25.820445879536372 + ], + [ + 70.35233521786944, + 25.820445879536372 + ], + [ + 70.23749253438575, + 25.62579814460792 + ], + [ + 70.35233521786944, + 25.431150409679468 + ], + [ + 70.58202058483678, + 25.431150409679468 + ], + [ + 70.69686326832047, + 25.62579814460792 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.69686326832047, + 26.015093614464828 + ], + [ + 70.58202058483678, + 26.20974134939328 + ], + [ + 70.35233521786944, + 26.20974134939328 + ], + [ + 70.23749253438575, + 26.015093614464828 + ], + [ + 70.35233521786944, + 25.820445879536376 + ], + [ + 70.58202058483678, + 25.820445879536376 + ], + [ + 70.69686326832047, + 26.015093614464828 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.69686326832047, + 26.404389084321735 + ], + [ + 70.58202058483678, + 26.599036819250188 + ], + [ + 70.35233521786944, + 26.599036819250188 + ], + [ + 70.23749253438575, + 26.404389084321735 + ], + [ + 70.35233521786944, + 26.209741349393283 + ], + [ + 70.58202058483678, + 26.209741349393283 + ], + [ + 70.69686326832047, + 26.404389084321735 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.69686326832047, + 26.79368455417864 + ], + [ + 70.58202058483678, + 26.988332289107092 + ], + [ + 70.35233521786944, + 26.988332289107092 + ], + [ + 70.23749253438575, + 26.79368455417864 + ], + [ + 70.35233521786944, + 26.599036819250188 + ], + [ + 70.58202058483678, + 26.599036819250188 + ], + [ + 70.69686326832047, + 26.79368455417864 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.69686326832047, + 27.182980024035547 + ], + [ + 70.58202058483678, + 27.377627758964 + ], + [ + 70.35233521786944, + 27.377627758964 + ], + [ + 70.23749253438575, + 27.182980024035547 + ], + [ + 70.35233521786944, + 26.988332289107095 + ], + [ + 70.58202058483678, + 26.988332289107095 + ], + [ + 70.69686326832047, + 27.182980024035547 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.69686326832047, + 27.572275493892455 + ], + [ + 70.58202058483678, + 27.766923228820907 + ], + [ + 70.35233521786944, + 27.766923228820907 + ], + [ + 70.23749253438575, + 27.572275493892455 + ], + [ + 70.35233521786944, + 27.377627758964003 + ], + [ + 70.58202058483678, + 27.377627758964003 + ], + [ + 70.69686326832047, + 27.572275493892455 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.69686326832047, + 27.96157096374936 + ], + [ + 70.58202058483678, + 28.15621869867781 + ], + [ + 70.35233521786944, + 28.15621869867781 + ], + [ + 70.23749253438575, + 27.96157096374936 + ], + [ + 70.35233521786944, + 27.766923228820907 + ], + [ + 70.58202058483678, + 27.766923228820907 + ], + [ + 70.69686326832047, + 27.96157096374936 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.69686326832047, + 28.350866433606267 + ], + [ + 70.58202058483678, + 28.54551416853472 + ], + [ + 70.35233521786944, + 28.54551416853472 + ], + [ + 70.23749253438575, + 28.350866433606267 + ], + [ + 70.35233521786944, + 28.156218698677815 + ], + [ + 70.58202058483678, + 28.156218698677815 + ], + [ + 70.69686326832047, + 28.350866433606267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.69686326832047, + 28.74016190346317 + ], + [ + 70.58202058483678, + 28.934809638391624 + ], + [ + 70.35233521786944, + 28.934809638391624 + ], + [ + 70.23749253438575, + 28.74016190346317 + ], + [ + 70.35233521786944, + 28.54551416853472 + ], + [ + 70.58202058483678, + 28.54551416853472 + ], + [ + 70.69686326832047, + 28.74016190346317 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.69686326832047, + 29.12945737332008 + ], + [ + 70.58202058483678, + 29.32410510824853 + ], + [ + 70.35233521786944, + 29.32410510824853 + ], + [ + 70.23749253438575, + 29.12945737332008 + ], + [ + 70.35233521786944, + 28.934809638391627 + ], + [ + 70.58202058483678, + 28.934809638391627 + ], + [ + 70.69686326832047, + 29.12945737332008 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.69686326832047, + 29.518752843176983 + ], + [ + 70.58202058483678, + 29.713400578105436 + ], + [ + 70.35233521786944, + 29.713400578105436 + ], + [ + 70.23749253438575, + 29.518752843176983 + ], + [ + 70.35233521786944, + 29.32410510824853 + ], + [ + 70.58202058483678, + 29.32410510824853 + ], + [ + 70.69686326832047, + 29.518752843176983 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.69686326832047, + 29.90804831303389 + ], + [ + 70.58202058483678, + 30.102696047962343 + ], + [ + 70.35233521786944, + 30.102696047962343 + ], + [ + 70.23749253438575, + 29.90804831303389 + ], + [ + 70.35233521786944, + 29.71340057810544 + ], + [ + 70.58202058483678, + 29.71340057810544 + ], + [ + 70.69686326832047, + 29.90804831303389 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.69686326832047, + 30.297343782890795 + ], + [ + 70.58202058483678, + 30.491991517819248 + ], + [ + 70.35233521786944, + 30.491991517819248 + ], + [ + 70.23749253438575, + 30.297343782890795 + ], + [ + 70.35233521786944, + 30.102696047962343 + ], + [ + 70.58202058483678, + 30.102696047962343 + ], + [ + 70.69686326832047, + 30.297343782890795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.69686326832047, + 30.686639252747703 + ], + [ + 70.58202058483678, + 30.881286987676155 + ], + [ + 70.35233521786944, + 30.881286987676155 + ], + [ + 70.23749253438575, + 30.686639252747703 + ], + [ + 70.35233521786944, + 30.49199151781925 + ], + [ + 70.58202058483678, + 30.49199151781925 + ], + [ + 70.69686326832047, + 30.686639252747703 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.69686326832047, + 31.07593472260461 + ], + [ + 70.58202058483678, + 31.270582457533063 + ], + [ + 70.35233521786944, + 31.270582457533063 + ], + [ + 70.23749253438575, + 31.07593472260461 + ], + [ + 70.35233521786944, + 30.88128698767616 + ], + [ + 70.58202058483678, + 30.88128698767616 + ], + [ + 70.69686326832047, + 31.07593472260461 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.69686326832047, + 31.465230192461515 + ], + [ + 70.58202058483678, + 31.659877927389967 + ], + [ + 70.35233521786944, + 31.659877927389967 + ], + [ + 70.23749253438575, + 31.465230192461515 + ], + [ + 70.35233521786944, + 31.270582457533063 + ], + [ + 70.58202058483678, + 31.270582457533063 + ], + [ + 70.69686326832047, + 31.465230192461515 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.69686326832047, + 31.854525662318423 + ], + [ + 70.58202058483678, + 32.049173397246875 + ], + [ + 70.35233521786944, + 32.049173397246875 + ], + [ + 70.23749253438575, + 31.854525662318423 + ], + [ + 70.35233521786944, + 31.65987792738997 + ], + [ + 70.58202058483678, + 31.65987792738997 + ], + [ + 70.69686326832047, + 31.854525662318423 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.69686326832047, + 32.24382113217533 + ], + [ + 70.58202058483678, + 32.43846886710378 + ], + [ + 70.35233521786944, + 32.43846886710378 + ], + [ + 70.23749253438575, + 32.24382113217533 + ], + [ + 70.35233521786944, + 32.049173397246875 + ], + [ + 70.58202058483678, + 32.049173397246875 + ], + [ + 70.69686326832047, + 32.24382113217533 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.69686326832047, + 32.63311660203224 + ], + [ + 70.58202058483678, + 32.82776433696069 + ], + [ + 70.35233521786944, + 32.82776433696069 + ], + [ + 70.23749253438575, + 32.63311660203224 + ], + [ + 70.35233521786944, + 32.438468867103786 + ], + [ + 70.58202058483678, + 32.438468867103786 + ], + [ + 70.69686326832047, + 32.63311660203224 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.69686326832047, + 33.02241207188914 + ], + [ + 70.58202058483678, + 33.217059806817595 + ], + [ + 70.35233521786944, + 33.217059806817595 + ], + [ + 70.23749253438575, + 33.02241207188914 + ], + [ + 70.35233521786944, + 32.82776433696069 + ], + [ + 70.58202058483678, + 32.82776433696069 + ], + [ + 70.69686326832047, + 33.02241207188914 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.69686326832047, + 33.41170754174605 + ], + [ + 70.58202058483678, + 33.6063552766745 + ], + [ + 70.35233521786944, + 33.6063552766745 + ], + [ + 70.23749253438575, + 33.41170754174605 + ], + [ + 70.35233521786944, + 33.217059806817595 + ], + [ + 70.58202058483678, + 33.217059806817595 + ], + [ + 70.69686326832047, + 33.41170754174605 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.69686326832047, + 33.80100301160295 + ], + [ + 70.58202058483678, + 33.9956507465314 + ], + [ + 70.35233521786944, + 33.9956507465314 + ], + [ + 70.23749253438575, + 33.80100301160295 + ], + [ + 70.35233521786944, + 33.6063552766745 + ], + [ + 70.58202058483678, + 33.6063552766745 + ], + [ + 70.69686326832047, + 33.80100301160295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.69686326832047, + 34.190298481459855 + ], + [ + 70.58202058483678, + 34.38494621638831 + ], + [ + 70.35233521786944, + 34.38494621638831 + ], + [ + 70.23749253438575, + 34.190298481459855 + ], + [ + 70.35233521786944, + 33.9956507465314 + ], + [ + 70.58202058483678, + 33.9956507465314 + ], + [ + 70.69686326832047, + 34.190298481459855 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.69686326832047, + 34.57959395131677 + ], + [ + 70.58202058483678, + 34.77424168624522 + ], + [ + 70.35233521786944, + 34.77424168624522 + ], + [ + 70.23749253438575, + 34.57959395131677 + ], + [ + 70.35233521786944, + 34.384946216388315 + ], + [ + 70.58202058483678, + 34.384946216388315 + ], + [ + 70.69686326832047, + 34.57959395131677 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.69686326832047, + 34.96888942117368 + ], + [ + 70.58202058483678, + 35.16353715610213 + ], + [ + 70.35233521786944, + 35.16353715610213 + ], + [ + 70.23749253438575, + 34.96888942117368 + ], + [ + 70.35233521786944, + 34.774241686245226 + ], + [ + 70.58202058483678, + 34.774241686245226 + ], + [ + 70.69686326832047, + 34.96888942117368 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.69686326832047, + 35.35818489103058 + ], + [ + 70.58202058483678, + 35.552832625959034 + ], + [ + 70.35233521786944, + 35.552832625959034 + ], + [ + 70.23749253438575, + 35.35818489103058 + ], + [ + 70.35233521786944, + 35.16353715610213 + ], + [ + 70.58202058483678, + 35.16353715610213 + ], + [ + 70.69686326832047, + 35.35818489103058 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.69686326832047, + 35.74748036088749 + ], + [ + 70.58202058483678, + 35.94212809581594 + ], + [ + 70.35233521786944, + 35.94212809581594 + ], + [ + 70.23749253438575, + 35.74748036088749 + ], + [ + 70.35233521786944, + 35.552832625959034 + ], + [ + 70.58202058483678, + 35.552832625959034 + ], + [ + 70.69686326832047, + 35.74748036088749 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.69686326832047, + 36.13677583074439 + ], + [ + 70.58202058483678, + 36.33142356567284 + ], + [ + 70.35233521786944, + 36.33142356567284 + ], + [ + 70.23749253438575, + 36.13677583074439 + ], + [ + 70.35233521786944, + 35.94212809581594 + ], + [ + 70.58202058483678, + 35.94212809581594 + ], + [ + 70.69686326832047, + 36.13677583074439 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.69686326832047, + 36.526071300601295 + ], + [ + 70.58202058483678, + 36.72071903552975 + ], + [ + 70.35233521786944, + 36.72071903552975 + ], + [ + 70.23749253438575, + 36.526071300601295 + ], + [ + 70.35233521786944, + 36.33142356567284 + ], + [ + 70.58202058483678, + 36.33142356567284 + ], + [ + 70.69686326832047, + 36.526071300601295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.69686326832047, + 36.915366770458206 + ], + [ + 70.58202058483678, + 37.11001450538666 + ], + [ + 70.35233521786944, + 37.11001450538666 + ], + [ + 70.23749253438575, + 36.915366770458206 + ], + [ + 70.35233521786944, + 36.720719035529754 + ], + [ + 70.58202058483678, + 36.720719035529754 + ], + [ + 70.69686326832047, + 36.915366770458206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.69686326832047, + 37.30466224031511 + ], + [ + 70.58202058483678, + 37.49930997524356 + ], + [ + 70.35233521786944, + 37.49930997524356 + ], + [ + 70.23749253438575, + 37.30466224031511 + ], + [ + 70.35233521786944, + 37.11001450538666 + ], + [ + 70.58202058483678, + 37.11001450538666 + ], + [ + 70.69686326832047, + 37.30466224031511 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.69686326832047, + 37.69395771017202 + ], + [ + 70.58202058483678, + 37.888605445100474 + ], + [ + 70.35233521786944, + 37.888605445100474 + ], + [ + 70.23749253438575, + 37.69395771017202 + ], + [ + 70.35233521786944, + 37.49930997524357 + ], + [ + 70.58202058483678, + 37.49930997524357 + ], + [ + 70.69686326832047, + 37.69395771017202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.69686326832047, + 38.083253180028926 + ], + [ + 70.58202058483678, + 38.27790091495738 + ], + [ + 70.35233521786944, + 38.27790091495738 + ], + [ + 70.23749253438575, + 38.083253180028926 + ], + [ + 70.35233521786944, + 37.888605445100474 + ], + [ + 70.58202058483678, + 37.888605445100474 + ], + [ + 70.69686326832047, + 38.083253180028926 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.69686326832047, + 38.47254864988583 + ], + [ + 70.58202058483678, + 38.66719638481428 + ], + [ + 70.35233521786944, + 38.66719638481428 + ], + [ + 70.23749253438575, + 38.47254864988583 + ], + [ + 70.35233521786944, + 38.27790091495738 + ], + [ + 70.58202058483678, + 38.27790091495738 + ], + [ + 70.69686326832047, + 38.47254864988583 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.69686326832047, + 38.861844119742734 + ], + [ + 70.58202058483678, + 39.05649185467119 + ], + [ + 70.35233521786944, + 39.05649185467119 + ], + [ + 70.23749253438575, + 38.861844119742734 + ], + [ + 70.35233521786944, + 38.66719638481428 + ], + [ + 70.58202058483678, + 38.66719638481428 + ], + [ + 70.69686326832047, + 38.861844119742734 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.69686326832047, + 39.25113958959964 + ], + [ + 70.58202058483678, + 39.44578732452809 + ], + [ + 70.35233521786944, + 39.44578732452809 + ], + [ + 70.23749253438575, + 39.25113958959964 + ], + [ + 70.35233521786944, + 39.05649185467119 + ], + [ + 70.58202058483678, + 39.05649185467119 + ], + [ + 70.69686326832047, + 39.25113958959964 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.69686326832047, + 39.64043505945655 + ], + [ + 70.58202058483678, + 39.835082794385 + ], + [ + 70.35233521786944, + 39.835082794385 + ], + [ + 70.23749253438575, + 39.64043505945655 + ], + [ + 70.35233521786944, + 39.4457873245281 + ], + [ + 70.58202058483678, + 39.4457873245281 + ], + [ + 70.69686326832047, + 39.64043505945655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.69686326832047, + 40.029730529313454 + ], + [ + 70.58202058483678, + 40.224378264241906 + ], + [ + 70.35233521786944, + 40.224378264241906 + ], + [ + 70.23749253438575, + 40.029730529313454 + ], + [ + 70.35233521786944, + 39.835082794385 + ], + [ + 70.58202058483678, + 39.835082794385 + ], + [ + 70.69686326832047, + 40.029730529313454 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.69686326832047, + 40.419025999170366 + ], + [ + 70.58202058483678, + 40.61367373409882 + ], + [ + 70.35233521786944, + 40.61367373409882 + ], + [ + 70.23749253438575, + 40.419025999170366 + ], + [ + 70.35233521786944, + 40.22437826424191 + ], + [ + 70.58202058483678, + 40.22437826424191 + ], + [ + 70.69686326832047, + 40.419025999170366 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.69686326832047, + 40.80832146902727 + ], + [ + 70.58202058483678, + 41.00296920395572 + ], + [ + 70.35233521786944, + 41.00296920395572 + ], + [ + 70.23749253438575, + 40.80832146902727 + ], + [ + 70.35233521786944, + 40.61367373409882 + ], + [ + 70.58202058483678, + 40.61367373409882 + ], + [ + 70.69686326832047, + 40.80832146902727 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.69686326832047, + 41.197616938884174 + ], + [ + 70.58202058483678, + 41.392264673812626 + ], + [ + 70.35233521786944, + 41.392264673812626 + ], + [ + 70.23749253438575, + 41.197616938884174 + ], + [ + 70.35233521786944, + 41.00296920395572 + ], + [ + 70.58202058483678, + 41.00296920395572 + ], + [ + 70.69686326832047, + 41.197616938884174 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.69686326832047, + 41.58691240874108 + ], + [ + 70.58202058483678, + 41.78156014366953 + ], + [ + 70.35233521786944, + 41.78156014366953 + ], + [ + 70.23749253438575, + 41.58691240874108 + ], + [ + 70.35233521786944, + 41.392264673812626 + ], + [ + 70.58202058483678, + 41.392264673812626 + ], + [ + 70.69686326832047, + 41.58691240874108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.69686326832047, + 41.97620787859798 + ], + [ + 70.58202058483678, + 42.170855613526435 + ], + [ + 70.35233521786944, + 42.170855613526435 + ], + [ + 70.23749253438575, + 41.97620787859798 + ], + [ + 70.35233521786944, + 41.78156014366953 + ], + [ + 70.58202058483678, + 41.78156014366953 + ], + [ + 70.69686326832047, + 41.97620787859798 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.69686326832047, + 42.365503348454894 + ], + [ + 70.58202058483678, + 42.560151083383346 + ], + [ + 70.35233521786944, + 42.560151083383346 + ], + [ + 70.23749253438575, + 42.365503348454894 + ], + [ + 70.35233521786944, + 42.17085561352644 + ], + [ + 70.58202058483678, + 42.17085561352644 + ], + [ + 70.69686326832047, + 42.365503348454894 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.69686326832047, + 42.754798818311805 + ], + [ + 70.58202058483678, + 42.94944655324026 + ], + [ + 70.35233521786944, + 42.94944655324026 + ], + [ + 70.23749253438575, + 42.754798818311805 + ], + [ + 70.35233521786944, + 42.56015108338335 + ], + [ + 70.58202058483678, + 42.56015108338335 + ], + [ + 70.69686326832047, + 42.754798818311805 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.69686326832047, + 43.14409428816871 + ], + [ + 70.58202058483678, + 43.33874202309716 + ], + [ + 70.35233521786944, + 43.33874202309716 + ], + [ + 70.23749253438575, + 43.14409428816871 + ], + [ + 70.35233521786944, + 42.94944655324026 + ], + [ + 70.58202058483678, + 42.94944655324026 + ], + [ + 70.69686326832047, + 43.14409428816871 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.69686326832047, + 43.53338975802561 + ], + [ + 70.58202058483678, + 43.728037492954066 + ], + [ + 70.35233521786944, + 43.728037492954066 + ], + [ + 70.23749253438575, + 43.53338975802561 + ], + [ + 70.35233521786944, + 43.33874202309716 + ], + [ + 70.58202058483678, + 43.33874202309716 + ], + [ + 70.69686326832047, + 43.53338975802561 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.69686326832047, + 43.92268522788252 + ], + [ + 70.58202058483678, + 44.11733296281097 + ], + [ + 70.35233521786944, + 44.11733296281097 + ], + [ + 70.23749253438575, + 43.92268522788252 + ], + [ + 70.35233521786944, + 43.728037492954066 + ], + [ + 70.58202058483678, + 43.728037492954066 + ], + [ + 70.69686326832047, + 43.92268522788252 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.69686326832047, + 44.31198069773942 + ], + [ + 70.58202058483678, + 44.506628432667874 + ], + [ + 70.35233521786944, + 44.506628432667874 + ], + [ + 70.23749253438575, + 44.31198069773942 + ], + [ + 70.35233521786944, + 44.11733296281097 + ], + [ + 70.58202058483678, + 44.11733296281097 + ], + [ + 70.69686326832047, + 44.31198069773942 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.69686326832047, + 44.701276167596326 + ], + [ + 70.58202058483678, + 44.89592390252478 + ], + [ + 70.35233521786944, + 44.89592390252478 + ], + [ + 70.23749253438575, + 44.701276167596326 + ], + [ + 70.35233521786944, + 44.506628432667874 + ], + [ + 70.58202058483678, + 44.506628432667874 + ], + [ + 70.69686326832047, + 44.701276167596326 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.69686326832047, + 45.090571637453245 + ], + [ + 70.58202058483678, + 45.2852193723817 + ], + [ + 70.35233521786944, + 45.2852193723817 + ], + [ + 70.23749253438575, + 45.090571637453245 + ], + [ + 70.35233521786944, + 44.89592390252479 + ], + [ + 70.58202058483678, + 44.89592390252479 + ], + [ + 70.69686326832047, + 45.090571637453245 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.69686326832047, + 45.47986710731015 + ], + [ + 70.58202058483678, + 45.6745148422386 + ], + [ + 70.35233521786944, + 45.6745148422386 + ], + [ + 70.23749253438575, + 45.47986710731015 + ], + [ + 70.35233521786944, + 45.2852193723817 + ], + [ + 70.58202058483678, + 45.2852193723817 + ], + [ + 70.69686326832047, + 45.47986710731015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.69686326832047, + 45.86916257716705 + ], + [ + 70.58202058483678, + 46.063810312095505 + ], + [ + 70.35233521786944, + 46.063810312095505 + ], + [ + 70.23749253438575, + 45.86916257716705 + ], + [ + 70.35233521786944, + 45.6745148422386 + ], + [ + 70.58202058483678, + 45.6745148422386 + ], + [ + 70.69686326832047, + 45.86916257716705 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.69686326832047, + 46.25845804702396 + ], + [ + 70.58202058483678, + 46.45310578195241 + ], + [ + 70.35233521786944, + 46.45310578195241 + ], + [ + 70.23749253438575, + 46.25845804702396 + ], + [ + 70.35233521786944, + 46.063810312095505 + ], + [ + 70.58202058483678, + 46.063810312095505 + ], + [ + 70.69686326832047, + 46.25845804702396 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.69686326832047, + 46.64775351688086 + ], + [ + 70.58202058483678, + 46.842401251809314 + ], + [ + 70.35233521786944, + 46.842401251809314 + ], + [ + 70.23749253438575, + 46.64775351688086 + ], + [ + 70.35233521786944, + 46.45310578195241 + ], + [ + 70.58202058483678, + 46.45310578195241 + ], + [ + 70.69686326832047, + 46.64775351688086 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.69686326832047, + 47.037048986737766 + ], + [ + 70.58202058483678, + 47.23169672166622 + ], + [ + 70.35233521786944, + 47.23169672166622 + ], + [ + 70.23749253438575, + 47.037048986737766 + ], + [ + 70.35233521786944, + 46.842401251809314 + ], + [ + 70.58202058483678, + 46.842401251809314 + ], + [ + 70.69686326832047, + 47.037048986737766 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.69686326832047, + 47.42634445659467 + ], + [ + 70.58202058483678, + 47.62099219152312 + ], + [ + 70.35233521786944, + 47.62099219152312 + ], + [ + 70.23749253438575, + 47.42634445659467 + ], + [ + 70.35233521786944, + 47.23169672166622 + ], + [ + 70.58202058483678, + 47.23169672166622 + ], + [ + 70.69686326832047, + 47.42634445659467 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.69686326832047, + 47.81563992645159 + ], + [ + 70.58202058483678, + 48.01028766138004 + ], + [ + 70.35233521786944, + 48.01028766138004 + ], + [ + 70.23749253438575, + 47.81563992645159 + ], + [ + 70.35233521786944, + 47.620992191523136 + ], + [ + 70.58202058483678, + 47.620992191523136 + ], + [ + 70.69686326832047, + 47.81563992645159 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.04139131877152, + 11.805808964687746 + ], + [ + 70.92654863528783, + 12.0004566996162 + ], + [ + 70.69686326832048, + 12.0004566996162 + ], + [ + 70.5820205848368, + 11.805808964687746 + ], + [ + 70.69686326832048, + 11.611161229759292 + ], + [ + 70.92654863528783, + 11.611161229759292 + ], + [ + 71.04139131877152, + 11.805808964687746 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.04139131877152, + 12.195104434544652 + ], + [ + 70.92654863528783, + 12.389752169473105 + ], + [ + 70.69686326832048, + 12.389752169473105 + ], + [ + 70.5820205848368, + 12.195104434544652 + ], + [ + 70.69686326832048, + 12.000456699616198 + ], + [ + 70.92654863528783, + 12.000456699616198 + ], + [ + 71.04139131877152, + 12.195104434544652 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.04139131877152, + 12.58439990440156 + ], + [ + 70.92654863528783, + 12.779047639330013 + ], + [ + 70.69686326832048, + 12.779047639330013 + ], + [ + 70.5820205848368, + 12.58439990440156 + ], + [ + 70.69686326832048, + 12.389752169473105 + ], + [ + 70.92654863528783, + 12.389752169473105 + ], + [ + 71.04139131877152, + 12.58439990440156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.04139131877152, + 12.973695374258465 + ], + [ + 70.92654863528783, + 13.16834310918692 + ], + [ + 70.69686326832048, + 13.16834310918692 + ], + [ + 70.5820205848368, + 12.973695374258465 + ], + [ + 70.69686326832048, + 12.779047639330011 + ], + [ + 70.92654863528783, + 12.779047639330011 + ], + [ + 71.04139131877152, + 12.973695374258465 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.04139131877152, + 13.362990844115371 + ], + [ + 70.92654863528783, + 13.557638579043825 + ], + [ + 70.69686326832048, + 13.557638579043825 + ], + [ + 70.5820205848368, + 13.362990844115371 + ], + [ + 70.69686326832048, + 13.168343109186917 + ], + [ + 70.92654863528783, + 13.168343109186917 + ], + [ + 71.04139131877152, + 13.362990844115371 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.04139131877152, + 13.752286313972277 + ], + [ + 70.92654863528783, + 13.946934048900731 + ], + [ + 70.69686326832048, + 13.946934048900731 + ], + [ + 70.5820205848368, + 13.752286313972277 + ], + [ + 70.69686326832048, + 13.557638579043823 + ], + [ + 70.92654863528783, + 13.557638579043823 + ], + [ + 71.04139131877152, + 13.752286313972277 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.04139131877152, + 14.141581783829183 + ], + [ + 70.92654863528783, + 14.336229518757637 + ], + [ + 70.69686326832048, + 14.336229518757637 + ], + [ + 70.5820205848368, + 14.141581783829183 + ], + [ + 70.69686326832048, + 13.94693404890073 + ], + [ + 70.92654863528783, + 13.94693404890073 + ], + [ + 71.04139131877152, + 14.141581783829183 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.04139131877152, + 14.530877253686091 + ], + [ + 70.92654863528783, + 14.725524988614545 + ], + [ + 70.69686326832048, + 14.725524988614545 + ], + [ + 70.5820205848368, + 14.530877253686091 + ], + [ + 70.69686326832048, + 14.336229518757637 + ], + [ + 70.92654863528783, + 14.336229518757637 + ], + [ + 71.04139131877152, + 14.530877253686091 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.04139131877152, + 14.920172723542997 + ], + [ + 70.92654863528783, + 15.114820458471451 + ], + [ + 70.69686326832048, + 15.114820458471451 + ], + [ + 70.5820205848368, + 14.920172723542997 + ], + [ + 70.69686326832048, + 14.725524988614543 + ], + [ + 70.92654863528783, + 14.725524988614543 + ], + [ + 71.04139131877152, + 14.920172723542997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.04139131877152, + 15.309468193399903 + ], + [ + 70.92654863528783, + 15.504115928328357 + ], + [ + 70.69686326832048, + 15.504115928328357 + ], + [ + 70.5820205848368, + 15.309468193399903 + ], + [ + 70.69686326832048, + 15.11482045847145 + ], + [ + 70.92654863528783, + 15.11482045847145 + ], + [ + 71.04139131877152, + 15.309468193399903 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.04139131877152, + 15.69876366325681 + ], + [ + 70.92654863528783, + 15.893411398185265 + ], + [ + 70.69686326832048, + 15.893411398185265 + ], + [ + 70.5820205848368, + 15.69876366325681 + ], + [ + 70.69686326832048, + 15.504115928328357 + ], + [ + 70.92654863528783, + 15.504115928328357 + ], + [ + 71.04139131877152, + 15.69876366325681 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.04139131877152, + 16.088059133113717 + ], + [ + 70.92654863528783, + 16.28270686804217 + ], + [ + 70.69686326832048, + 16.28270686804217 + ], + [ + 70.5820205848368, + 16.088059133113717 + ], + [ + 70.69686326832048, + 15.893411398185263 + ], + [ + 70.92654863528783, + 15.893411398185263 + ], + [ + 71.04139131877152, + 16.088059133113717 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.04139131877152, + 16.477354602970625 + ], + [ + 70.92654863528783, + 16.672002337899077 + ], + [ + 70.69686326832048, + 16.672002337899077 + ], + [ + 70.5820205848368, + 16.477354602970625 + ], + [ + 70.69686326832048, + 16.282706868042172 + ], + [ + 70.92654863528783, + 16.282706868042172 + ], + [ + 71.04139131877152, + 16.477354602970625 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.04139131877152, + 16.86665007282753 + ], + [ + 70.92654863528783, + 17.06129780775598 + ], + [ + 70.69686326832048, + 17.06129780775598 + ], + [ + 70.5820205848368, + 16.86665007282753 + ], + [ + 70.69686326832048, + 16.672002337899077 + ], + [ + 70.92654863528783, + 16.672002337899077 + ], + [ + 71.04139131877152, + 16.86665007282753 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.04139131877152, + 17.255945542684437 + ], + [ + 70.92654863528783, + 17.45059327761289 + ], + [ + 70.69686326832048, + 17.45059327761289 + ], + [ + 70.5820205848368, + 17.255945542684437 + ], + [ + 70.69686326832048, + 17.061297807755984 + ], + [ + 70.92654863528783, + 17.061297807755984 + ], + [ + 71.04139131877152, + 17.255945542684437 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.04139131877152, + 17.64524101254134 + ], + [ + 70.92654863528783, + 17.839888747469793 + ], + [ + 70.69686326832048, + 17.839888747469793 + ], + [ + 70.5820205848368, + 17.64524101254134 + ], + [ + 70.69686326832048, + 17.45059327761289 + ], + [ + 70.92654863528783, + 17.45059327761289 + ], + [ + 71.04139131877152, + 17.64524101254134 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.04139131877152, + 18.03453648239825 + ], + [ + 70.92654863528783, + 18.2291842173267 + ], + [ + 70.69686326832048, + 18.2291842173267 + ], + [ + 70.5820205848368, + 18.03453648239825 + ], + [ + 70.69686326832048, + 17.839888747469796 + ], + [ + 70.92654863528783, + 17.839888747469796 + ], + [ + 71.04139131877152, + 18.03453648239825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.04139131877152, + 18.423831952255156 + ], + [ + 70.92654863528783, + 18.61847968718361 + ], + [ + 70.69686326832048, + 18.61847968718361 + ], + [ + 70.5820205848368, + 18.423831952255156 + ], + [ + 70.69686326832048, + 18.229184217326704 + ], + [ + 70.92654863528783, + 18.229184217326704 + ], + [ + 71.04139131877152, + 18.423831952255156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.04139131877152, + 18.81312742211206 + ], + [ + 70.92654863528783, + 19.007775157040513 + ], + [ + 70.69686326832048, + 19.007775157040513 + ], + [ + 70.5820205848368, + 18.81312742211206 + ], + [ + 70.69686326832048, + 18.61847968718361 + ], + [ + 70.92654863528783, + 18.61847968718361 + ], + [ + 71.04139131877152, + 18.81312742211206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.04139131877152, + 19.20242289196897 + ], + [ + 70.92654863528783, + 19.39707062689742 + ], + [ + 70.69686326832048, + 19.39707062689742 + ], + [ + 70.5820205848368, + 19.20242289196897 + ], + [ + 70.69686326832048, + 19.007775157040516 + ], + [ + 70.92654863528783, + 19.007775157040516 + ], + [ + 71.04139131877152, + 19.20242289196897 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.04139131877152, + 19.591718361825876 + ], + [ + 70.92654863528783, + 19.78636609675433 + ], + [ + 70.69686326832048, + 19.78636609675433 + ], + [ + 70.5820205848368, + 19.591718361825876 + ], + [ + 70.69686326832048, + 19.397070626897424 + ], + [ + 70.92654863528783, + 19.397070626897424 + ], + [ + 71.04139131877152, + 19.591718361825876 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.04139131877152, + 19.98101383168278 + ], + [ + 70.92654863528783, + 20.175661566611232 + ], + [ + 70.69686326832048, + 20.175661566611232 + ], + [ + 70.5820205848368, + 19.98101383168278 + ], + [ + 70.69686326832048, + 19.78636609675433 + ], + [ + 70.92654863528783, + 19.78636609675433 + ], + [ + 71.04139131877152, + 19.98101383168278 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.04139131877152, + 20.370309301539685 + ], + [ + 70.92654863528783, + 20.564957036468137 + ], + [ + 70.69686326832048, + 20.564957036468137 + ], + [ + 70.5820205848368, + 20.370309301539685 + ], + [ + 70.69686326832048, + 20.175661566611232 + ], + [ + 70.92654863528783, + 20.175661566611232 + ], + [ + 71.04139131877152, + 20.370309301539685 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.04139131877152, + 20.759604771396592 + ], + [ + 70.92654863528783, + 20.954252506325044 + ], + [ + 70.69686326832048, + 20.954252506325044 + ], + [ + 70.5820205848368, + 20.759604771396592 + ], + [ + 70.69686326832048, + 20.56495703646814 + ], + [ + 70.92654863528783, + 20.56495703646814 + ], + [ + 71.04139131877152, + 20.759604771396592 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.04139131877152, + 21.1489002412535 + ], + [ + 70.92654863528783, + 21.343547976181952 + ], + [ + 70.69686326832048, + 21.343547976181952 + ], + [ + 70.5820205848368, + 21.1489002412535 + ], + [ + 70.69686326832048, + 20.954252506325048 + ], + [ + 70.92654863528783, + 20.954252506325048 + ], + [ + 71.04139131877152, + 21.1489002412535 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.04139131877152, + 21.538195711110404 + ], + [ + 70.92654863528783, + 21.732843446038856 + ], + [ + 70.69686326832048, + 21.732843446038856 + ], + [ + 70.5820205848368, + 21.538195711110404 + ], + [ + 70.69686326832048, + 21.343547976181952 + ], + [ + 70.92654863528783, + 21.343547976181952 + ], + [ + 71.04139131877152, + 21.538195711110404 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.04139131877152, + 21.927491180967312 + ], + [ + 70.92654863528783, + 22.122138915895764 + ], + [ + 70.69686326832048, + 22.122138915895764 + ], + [ + 70.5820205848368, + 21.927491180967312 + ], + [ + 70.69686326832048, + 21.73284344603886 + ], + [ + 70.92654863528783, + 21.73284344603886 + ], + [ + 71.04139131877152, + 21.927491180967312 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.04139131877152, + 22.31678665082422 + ], + [ + 70.92654863528783, + 22.511434385752672 + ], + [ + 70.69686326832048, + 22.511434385752672 + ], + [ + 70.5820205848368, + 22.31678665082422 + ], + [ + 70.69686326832048, + 22.122138915895768 + ], + [ + 70.92654863528783, + 22.122138915895768 + ], + [ + 71.04139131877152, + 22.31678665082422 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.04139131877152, + 22.706082120681124 + ], + [ + 70.92654863528783, + 22.900729855609576 + ], + [ + 70.69686326832048, + 22.900729855609576 + ], + [ + 70.5820205848368, + 22.706082120681124 + ], + [ + 70.69686326832048, + 22.511434385752672 + ], + [ + 70.92654863528783, + 22.511434385752672 + ], + [ + 71.04139131877152, + 22.706082120681124 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.04139131877152, + 23.095377590538032 + ], + [ + 70.92654863528783, + 23.290025325466484 + ], + [ + 70.69686326832048, + 23.290025325466484 + ], + [ + 70.5820205848368, + 23.095377590538032 + ], + [ + 70.69686326832048, + 22.90072985560958 + ], + [ + 70.92654863528783, + 22.90072985560958 + ], + [ + 71.04139131877152, + 23.095377590538032 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.04139131877152, + 23.48467306039494 + ], + [ + 70.92654863528783, + 23.67932079532339 + ], + [ + 70.69686326832048, + 23.67932079532339 + ], + [ + 70.5820205848368, + 23.48467306039494 + ], + [ + 70.69686326832048, + 23.290025325466488 + ], + [ + 70.92654863528783, + 23.290025325466488 + ], + [ + 71.04139131877152, + 23.48467306039494 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.04139131877152, + 23.873968530251844 + ], + [ + 70.92654863528783, + 24.068616265180296 + ], + [ + 70.69686326832048, + 24.068616265180296 + ], + [ + 70.5820205848368, + 23.873968530251844 + ], + [ + 70.69686326832048, + 23.67932079532339 + ], + [ + 70.92654863528783, + 23.67932079532339 + ], + [ + 71.04139131877152, + 23.873968530251844 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.04139131877152, + 24.263264000108748 + ], + [ + 70.92654863528783, + 24.4579117350372 + ], + [ + 70.69686326832048, + 24.4579117350372 + ], + [ + 70.5820205848368, + 24.263264000108748 + ], + [ + 70.69686326832048, + 24.068616265180296 + ], + [ + 70.92654863528783, + 24.068616265180296 + ], + [ + 71.04139131877152, + 24.263264000108748 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.04139131877152, + 24.652559469965656 + ], + [ + 70.92654863528783, + 24.847207204894108 + ], + [ + 70.69686326832048, + 24.847207204894108 + ], + [ + 70.5820205848368, + 24.652559469965656 + ], + [ + 70.69686326832048, + 24.457911735037204 + ], + [ + 70.92654863528783, + 24.457911735037204 + ], + [ + 71.04139131877152, + 24.652559469965656 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.04139131877152, + 25.041854939822564 + ], + [ + 70.92654863528783, + 25.236502674751016 + ], + [ + 70.69686326832048, + 25.236502674751016 + ], + [ + 70.5820205848368, + 25.041854939822564 + ], + [ + 70.69686326832048, + 24.84720720489411 + ], + [ + 70.92654863528783, + 24.84720720489411 + ], + [ + 71.04139131877152, + 25.041854939822564 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.04139131877152, + 25.431150409679468 + ], + [ + 70.92654863528783, + 25.62579814460792 + ], + [ + 70.69686326832048, + 25.62579814460792 + ], + [ + 70.5820205848368, + 25.431150409679468 + ], + [ + 70.69686326832048, + 25.236502674751016 + ], + [ + 70.92654863528783, + 25.236502674751016 + ], + [ + 71.04139131877152, + 25.431150409679468 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.04139131877152, + 25.820445879536376 + ], + [ + 70.92654863528783, + 26.015093614464828 + ], + [ + 70.69686326832048, + 26.015093614464828 + ], + [ + 70.5820205848368, + 25.820445879536376 + ], + [ + 70.69686326832048, + 25.625798144607923 + ], + [ + 70.92654863528783, + 25.625798144607923 + ], + [ + 71.04139131877152, + 25.820445879536376 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.04139131877152, + 26.209741349393283 + ], + [ + 70.92654863528783, + 26.404389084321735 + ], + [ + 70.69686326832048, + 26.404389084321735 + ], + [ + 70.5820205848368, + 26.209741349393283 + ], + [ + 70.69686326832048, + 26.01509361446483 + ], + [ + 70.92654863528783, + 26.01509361446483 + ], + [ + 71.04139131877152, + 26.209741349393283 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.04139131877152, + 26.599036819250188 + ], + [ + 70.92654863528783, + 26.79368455417864 + ], + [ + 70.69686326832048, + 26.79368455417864 + ], + [ + 70.5820205848368, + 26.599036819250188 + ], + [ + 70.69686326832048, + 26.404389084321735 + ], + [ + 70.92654863528783, + 26.404389084321735 + ], + [ + 71.04139131877152, + 26.599036819250188 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.04139131877152, + 26.988332289107095 + ], + [ + 70.92654863528783, + 27.182980024035547 + ], + [ + 70.69686326832048, + 27.182980024035547 + ], + [ + 70.5820205848368, + 26.988332289107095 + ], + [ + 70.69686326832048, + 26.793684554178643 + ], + [ + 70.92654863528783, + 26.793684554178643 + ], + [ + 71.04139131877152, + 26.988332289107095 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.04139131877152, + 27.377627758964003 + ], + [ + 70.92654863528783, + 27.572275493892455 + ], + [ + 70.69686326832048, + 27.572275493892455 + ], + [ + 70.5820205848368, + 27.377627758964003 + ], + [ + 70.69686326832048, + 27.18298002403555 + ], + [ + 70.92654863528783, + 27.18298002403555 + ], + [ + 71.04139131877152, + 27.377627758964003 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.04139131877152, + 27.766923228820907 + ], + [ + 70.92654863528783, + 27.96157096374936 + ], + [ + 70.69686326832048, + 27.96157096374936 + ], + [ + 70.5820205848368, + 27.766923228820907 + ], + [ + 70.69686326832048, + 27.572275493892455 + ], + [ + 70.92654863528783, + 27.572275493892455 + ], + [ + 71.04139131877152, + 27.766923228820907 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.04139131877152, + 28.156218698677815 + ], + [ + 70.92654863528783, + 28.350866433606267 + ], + [ + 70.69686326832048, + 28.350866433606267 + ], + [ + 70.5820205848368, + 28.156218698677815 + ], + [ + 70.69686326832048, + 27.961570963749363 + ], + [ + 70.92654863528783, + 27.961570963749363 + ], + [ + 71.04139131877152, + 28.156218698677815 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.04139131877152, + 28.54551416853472 + ], + [ + 70.92654863528783, + 28.74016190346317 + ], + [ + 70.69686326832048, + 28.74016190346317 + ], + [ + 70.5820205848368, + 28.54551416853472 + ], + [ + 70.69686326832048, + 28.350866433606267 + ], + [ + 70.92654863528783, + 28.350866433606267 + ], + [ + 71.04139131877152, + 28.54551416853472 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.04139131877152, + 28.934809638391627 + ], + [ + 70.92654863528783, + 29.12945737332008 + ], + [ + 70.69686326832048, + 29.12945737332008 + ], + [ + 70.5820205848368, + 28.934809638391627 + ], + [ + 70.69686326832048, + 28.740161903463175 + ], + [ + 70.92654863528783, + 28.740161903463175 + ], + [ + 71.04139131877152, + 28.934809638391627 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.04139131877152, + 29.32410510824853 + ], + [ + 70.92654863528783, + 29.518752843176983 + ], + [ + 70.69686326832048, + 29.518752843176983 + ], + [ + 70.5820205848368, + 29.32410510824853 + ], + [ + 70.69686326832048, + 29.12945737332008 + ], + [ + 70.92654863528783, + 29.12945737332008 + ], + [ + 71.04139131877152, + 29.32410510824853 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.04139131877152, + 29.71340057810544 + ], + [ + 70.92654863528783, + 29.90804831303389 + ], + [ + 70.69686326832048, + 29.90804831303389 + ], + [ + 70.5820205848368, + 29.71340057810544 + ], + [ + 70.69686326832048, + 29.518752843176987 + ], + [ + 70.92654863528783, + 29.518752843176987 + ], + [ + 71.04139131877152, + 29.71340057810544 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.04139131877152, + 30.102696047962343 + ], + [ + 70.92654863528783, + 30.297343782890795 + ], + [ + 70.69686326832048, + 30.297343782890795 + ], + [ + 70.5820205848368, + 30.102696047962343 + ], + [ + 70.69686326832048, + 29.90804831303389 + ], + [ + 70.92654863528783, + 29.90804831303389 + ], + [ + 71.04139131877152, + 30.102696047962343 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.04139131877152, + 30.49199151781925 + ], + [ + 70.92654863528783, + 30.686639252747703 + ], + [ + 70.69686326832048, + 30.686639252747703 + ], + [ + 70.5820205848368, + 30.49199151781925 + ], + [ + 70.69686326832048, + 30.2973437828908 + ], + [ + 70.92654863528783, + 30.2973437828908 + ], + [ + 71.04139131877152, + 30.49199151781925 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.04139131877152, + 30.88128698767616 + ], + [ + 70.92654863528783, + 31.07593472260461 + ], + [ + 70.69686326832048, + 31.07593472260461 + ], + [ + 70.5820205848368, + 30.88128698767616 + ], + [ + 70.69686326832048, + 30.686639252747707 + ], + [ + 70.92654863528783, + 30.686639252747707 + ], + [ + 71.04139131877152, + 30.88128698767616 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.04139131877152, + 31.270582457533063 + ], + [ + 70.92654863528783, + 31.465230192461515 + ], + [ + 70.69686326832048, + 31.465230192461515 + ], + [ + 70.5820205848368, + 31.270582457533063 + ], + [ + 70.69686326832048, + 31.07593472260461 + ], + [ + 70.92654863528783, + 31.07593472260461 + ], + [ + 71.04139131877152, + 31.270582457533063 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.04139131877152, + 31.65987792738997 + ], + [ + 70.92654863528783, + 31.854525662318423 + ], + [ + 70.69686326832048, + 31.854525662318423 + ], + [ + 70.5820205848368, + 31.65987792738997 + ], + [ + 70.69686326832048, + 31.46523019246152 + ], + [ + 70.92654863528783, + 31.46523019246152 + ], + [ + 71.04139131877152, + 31.65987792738997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.04139131877152, + 32.049173397246875 + ], + [ + 70.92654863528783, + 32.24382113217533 + ], + [ + 70.69686326832048, + 32.24382113217533 + ], + [ + 70.5820205848368, + 32.049173397246875 + ], + [ + 70.69686326832048, + 31.854525662318423 + ], + [ + 70.92654863528783, + 31.854525662318423 + ], + [ + 71.04139131877152, + 32.049173397246875 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.04139131877152, + 32.438468867103786 + ], + [ + 70.92654863528783, + 32.63311660203224 + ], + [ + 70.69686326832048, + 32.63311660203224 + ], + [ + 70.5820205848368, + 32.438468867103786 + ], + [ + 70.69686326832048, + 32.243821132175334 + ], + [ + 70.92654863528783, + 32.243821132175334 + ], + [ + 71.04139131877152, + 32.438468867103786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.04139131877152, + 32.82776433696069 + ], + [ + 70.92654863528783, + 33.02241207188914 + ], + [ + 70.69686326832048, + 33.02241207188914 + ], + [ + 70.5820205848368, + 32.82776433696069 + ], + [ + 70.69686326832048, + 32.63311660203224 + ], + [ + 70.92654863528783, + 32.63311660203224 + ], + [ + 71.04139131877152, + 32.82776433696069 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.04139131877152, + 33.217059806817595 + ], + [ + 70.92654863528783, + 33.41170754174605 + ], + [ + 70.69686326832048, + 33.41170754174605 + ], + [ + 70.5820205848368, + 33.217059806817595 + ], + [ + 70.69686326832048, + 33.02241207188914 + ], + [ + 70.92654863528783, + 33.02241207188914 + ], + [ + 71.04139131877152, + 33.217059806817595 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.04139131877152, + 33.6063552766745 + ], + [ + 70.92654863528783, + 33.80100301160295 + ], + [ + 70.69686326832048, + 33.80100301160295 + ], + [ + 70.5820205848368, + 33.6063552766745 + ], + [ + 70.69686326832048, + 33.41170754174605 + ], + [ + 70.92654863528783, + 33.41170754174605 + ], + [ + 71.04139131877152, + 33.6063552766745 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.04139131877152, + 33.9956507465314 + ], + [ + 70.92654863528783, + 34.190298481459855 + ], + [ + 70.69686326832048, + 34.190298481459855 + ], + [ + 70.5820205848368, + 33.9956507465314 + ], + [ + 70.69686326832048, + 33.80100301160295 + ], + [ + 70.92654863528783, + 33.80100301160295 + ], + [ + 71.04139131877152, + 33.9956507465314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.04139131877152, + 34.384946216388315 + ], + [ + 70.92654863528783, + 34.57959395131677 + ], + [ + 70.69686326832048, + 34.57959395131677 + ], + [ + 70.5820205848368, + 34.384946216388315 + ], + [ + 70.69686326832048, + 34.19029848145986 + ], + [ + 70.92654863528783, + 34.19029848145986 + ], + [ + 71.04139131877152, + 34.384946216388315 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.04139131877152, + 34.774241686245226 + ], + [ + 70.92654863528783, + 34.96888942117368 + ], + [ + 70.69686326832048, + 34.96888942117368 + ], + [ + 70.5820205848368, + 34.774241686245226 + ], + [ + 70.69686326832048, + 34.579593951316774 + ], + [ + 70.92654863528783, + 34.579593951316774 + ], + [ + 71.04139131877152, + 34.774241686245226 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.04139131877152, + 35.16353715610213 + ], + [ + 70.92654863528783, + 35.35818489103058 + ], + [ + 70.69686326832048, + 35.35818489103058 + ], + [ + 70.5820205848368, + 35.16353715610213 + ], + [ + 70.69686326832048, + 34.96888942117368 + ], + [ + 70.92654863528783, + 34.96888942117368 + ], + [ + 71.04139131877152, + 35.16353715610213 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.04139131877152, + 35.552832625959034 + ], + [ + 70.92654863528783, + 35.74748036088749 + ], + [ + 70.69686326832048, + 35.74748036088749 + ], + [ + 70.5820205848368, + 35.552832625959034 + ], + [ + 70.69686326832048, + 35.35818489103058 + ], + [ + 70.92654863528783, + 35.35818489103058 + ], + [ + 71.04139131877152, + 35.552832625959034 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.04139131877152, + 35.94212809581594 + ], + [ + 70.92654863528783, + 36.13677583074439 + ], + [ + 70.69686326832048, + 36.13677583074439 + ], + [ + 70.5820205848368, + 35.94212809581594 + ], + [ + 70.69686326832048, + 35.74748036088749 + ], + [ + 70.92654863528783, + 35.74748036088749 + ], + [ + 71.04139131877152, + 35.94212809581594 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.04139131877152, + 36.33142356567284 + ], + [ + 70.92654863528783, + 36.526071300601295 + ], + [ + 70.69686326832048, + 36.526071300601295 + ], + [ + 70.5820205848368, + 36.33142356567284 + ], + [ + 70.69686326832048, + 36.13677583074439 + ], + [ + 70.92654863528783, + 36.13677583074439 + ], + [ + 71.04139131877152, + 36.33142356567284 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.04139131877152, + 36.720719035529754 + ], + [ + 70.92654863528783, + 36.915366770458206 + ], + [ + 70.69686326832048, + 36.915366770458206 + ], + [ + 70.5820205848368, + 36.720719035529754 + ], + [ + 70.69686326832048, + 36.5260713006013 + ], + [ + 70.92654863528783, + 36.5260713006013 + ], + [ + 71.04139131877152, + 36.720719035529754 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.04139131877152, + 37.11001450538666 + ], + [ + 70.92654863528783, + 37.30466224031511 + ], + [ + 70.69686326832048, + 37.30466224031511 + ], + [ + 70.5820205848368, + 37.11001450538666 + ], + [ + 70.69686326832048, + 36.915366770458206 + ], + [ + 70.92654863528783, + 36.915366770458206 + ], + [ + 71.04139131877152, + 37.11001450538666 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.04139131877152, + 37.49930997524357 + ], + [ + 70.92654863528783, + 37.69395771017202 + ], + [ + 70.69686326832048, + 37.69395771017202 + ], + [ + 70.5820205848368, + 37.49930997524357 + ], + [ + 70.69686326832048, + 37.30466224031512 + ], + [ + 70.92654863528783, + 37.30466224031512 + ], + [ + 71.04139131877152, + 37.49930997524357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.04139131877152, + 37.888605445100474 + ], + [ + 70.92654863528783, + 38.083253180028926 + ], + [ + 70.69686326832048, + 38.083253180028926 + ], + [ + 70.5820205848368, + 37.888605445100474 + ], + [ + 70.69686326832048, + 37.69395771017202 + ], + [ + 70.92654863528783, + 37.69395771017202 + ], + [ + 71.04139131877152, + 37.888605445100474 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.04139131877152, + 38.27790091495738 + ], + [ + 70.92654863528783, + 38.47254864988583 + ], + [ + 70.69686326832048, + 38.47254864988583 + ], + [ + 70.5820205848368, + 38.27790091495738 + ], + [ + 70.69686326832048, + 38.083253180028926 + ], + [ + 70.92654863528783, + 38.083253180028926 + ], + [ + 71.04139131877152, + 38.27790091495738 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.04139131877152, + 38.66719638481428 + ], + [ + 70.92654863528783, + 38.861844119742734 + ], + [ + 70.69686326832048, + 38.861844119742734 + ], + [ + 70.5820205848368, + 38.66719638481428 + ], + [ + 70.69686326832048, + 38.47254864988583 + ], + [ + 70.92654863528783, + 38.47254864988583 + ], + [ + 71.04139131877152, + 38.66719638481428 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.04139131877152, + 39.05649185467119 + ], + [ + 70.92654863528783, + 39.25113958959964 + ], + [ + 70.69686326832048, + 39.25113958959964 + ], + [ + 70.5820205848368, + 39.05649185467119 + ], + [ + 70.69686326832048, + 38.861844119742734 + ], + [ + 70.92654863528783, + 38.861844119742734 + ], + [ + 71.04139131877152, + 39.05649185467119 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.04139131877152, + 39.4457873245281 + ], + [ + 70.92654863528783, + 39.64043505945655 + ], + [ + 70.69686326832048, + 39.64043505945655 + ], + [ + 70.5820205848368, + 39.4457873245281 + ], + [ + 70.69686326832048, + 39.251139589599646 + ], + [ + 70.92654863528783, + 39.251139589599646 + ], + [ + 71.04139131877152, + 39.4457873245281 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.04139131877152, + 39.835082794385 + ], + [ + 70.92654863528783, + 40.029730529313454 + ], + [ + 70.69686326832048, + 40.029730529313454 + ], + [ + 70.5820205848368, + 39.835082794385 + ], + [ + 70.69686326832048, + 39.64043505945655 + ], + [ + 70.92654863528783, + 39.64043505945655 + ], + [ + 71.04139131877152, + 39.835082794385 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.04139131877152, + 40.22437826424191 + ], + [ + 70.92654863528783, + 40.419025999170366 + ], + [ + 70.69686326832048, + 40.419025999170366 + ], + [ + 70.5820205848368, + 40.22437826424191 + ], + [ + 70.69686326832048, + 40.02973052931346 + ], + [ + 70.92654863528783, + 40.02973052931346 + ], + [ + 71.04139131877152, + 40.22437826424191 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.04139131877152, + 40.61367373409882 + ], + [ + 70.92654863528783, + 40.80832146902727 + ], + [ + 70.69686326832048, + 40.80832146902727 + ], + [ + 70.5820205848368, + 40.61367373409882 + ], + [ + 70.69686326832048, + 40.419025999170366 + ], + [ + 70.92654863528783, + 40.419025999170366 + ], + [ + 71.04139131877152, + 40.61367373409882 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.04139131877152, + 41.00296920395572 + ], + [ + 70.92654863528783, + 41.197616938884174 + ], + [ + 70.69686326832048, + 41.197616938884174 + ], + [ + 70.5820205848368, + 41.00296920395572 + ], + [ + 70.69686326832048, + 40.80832146902727 + ], + [ + 70.92654863528783, + 40.80832146902727 + ], + [ + 71.04139131877152, + 41.00296920395572 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.04139131877152, + 41.392264673812626 + ], + [ + 70.92654863528783, + 41.58691240874108 + ], + [ + 70.69686326832048, + 41.58691240874108 + ], + [ + 70.5820205848368, + 41.392264673812626 + ], + [ + 70.69686326832048, + 41.197616938884174 + ], + [ + 70.92654863528783, + 41.197616938884174 + ], + [ + 71.04139131877152, + 41.392264673812626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.04139131877152, + 41.78156014366953 + ], + [ + 70.92654863528783, + 41.97620787859798 + ], + [ + 70.69686326832048, + 41.97620787859798 + ], + [ + 70.5820205848368, + 41.78156014366953 + ], + [ + 70.69686326832048, + 41.58691240874108 + ], + [ + 70.92654863528783, + 41.58691240874108 + ], + [ + 71.04139131877152, + 41.78156014366953 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.04139131877152, + 42.17085561352644 + ], + [ + 70.92654863528783, + 42.365503348454894 + ], + [ + 70.69686326832048, + 42.365503348454894 + ], + [ + 70.5820205848368, + 42.17085561352644 + ], + [ + 70.69686326832048, + 41.97620787859799 + ], + [ + 70.92654863528783, + 41.97620787859799 + ], + [ + 71.04139131877152, + 42.17085561352644 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.04139131877152, + 42.56015108338335 + ], + [ + 70.92654863528783, + 42.754798818311805 + ], + [ + 70.69686326832048, + 42.754798818311805 + ], + [ + 70.5820205848368, + 42.56015108338335 + ], + [ + 70.69686326832048, + 42.3655033484549 + ], + [ + 70.92654863528783, + 42.3655033484549 + ], + [ + 71.04139131877152, + 42.56015108338335 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.04139131877152, + 42.94944655324026 + ], + [ + 70.92654863528783, + 43.14409428816871 + ], + [ + 70.69686326832048, + 43.14409428816871 + ], + [ + 70.5820205848368, + 42.94944655324026 + ], + [ + 70.69686326832048, + 42.754798818311805 + ], + [ + 70.92654863528783, + 42.754798818311805 + ], + [ + 71.04139131877152, + 42.94944655324026 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.04139131877152, + 43.33874202309716 + ], + [ + 70.92654863528783, + 43.53338975802561 + ], + [ + 70.69686326832048, + 43.53338975802561 + ], + [ + 70.5820205848368, + 43.33874202309716 + ], + [ + 70.69686326832048, + 43.14409428816871 + ], + [ + 70.92654863528783, + 43.14409428816871 + ], + [ + 71.04139131877152, + 43.33874202309716 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.04139131877152, + 43.728037492954066 + ], + [ + 70.92654863528783, + 43.92268522788252 + ], + [ + 70.69686326832048, + 43.92268522788252 + ], + [ + 70.5820205848368, + 43.728037492954066 + ], + [ + 70.69686326832048, + 43.53338975802561 + ], + [ + 70.92654863528783, + 43.53338975802561 + ], + [ + 71.04139131877152, + 43.728037492954066 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.04139131877152, + 44.11733296281097 + ], + [ + 70.92654863528783, + 44.31198069773942 + ], + [ + 70.69686326832048, + 44.31198069773942 + ], + [ + 70.5820205848368, + 44.11733296281097 + ], + [ + 70.69686326832048, + 43.92268522788252 + ], + [ + 70.92654863528783, + 43.92268522788252 + ], + [ + 71.04139131877152, + 44.11733296281097 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.04139131877152, + 44.506628432667874 + ], + [ + 70.92654863528783, + 44.701276167596326 + ], + [ + 70.69686326832048, + 44.701276167596326 + ], + [ + 70.5820205848368, + 44.506628432667874 + ], + [ + 70.69686326832048, + 44.31198069773942 + ], + [ + 70.92654863528783, + 44.31198069773942 + ], + [ + 71.04139131877152, + 44.506628432667874 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.04139131877152, + 44.89592390252479 + ], + [ + 70.92654863528783, + 45.090571637453245 + ], + [ + 70.69686326832048, + 45.090571637453245 + ], + [ + 70.5820205848368, + 44.89592390252479 + ], + [ + 70.69686326832048, + 44.70127616759634 + ], + [ + 70.92654863528783, + 44.70127616759634 + ], + [ + 71.04139131877152, + 44.89592390252479 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.04139131877152, + 45.2852193723817 + ], + [ + 70.92654863528783, + 45.47986710731015 + ], + [ + 70.69686326832048, + 45.47986710731015 + ], + [ + 70.5820205848368, + 45.2852193723817 + ], + [ + 70.69686326832048, + 45.090571637453245 + ], + [ + 70.92654863528783, + 45.090571637453245 + ], + [ + 71.04139131877152, + 45.2852193723817 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.04139131877152, + 45.6745148422386 + ], + [ + 70.92654863528783, + 45.86916257716705 + ], + [ + 70.69686326832048, + 45.86916257716705 + ], + [ + 70.5820205848368, + 45.6745148422386 + ], + [ + 70.69686326832048, + 45.47986710731015 + ], + [ + 70.92654863528783, + 45.47986710731015 + ], + [ + 71.04139131877152, + 45.6745148422386 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.04139131877152, + 46.063810312095505 + ], + [ + 70.92654863528783, + 46.25845804702396 + ], + [ + 70.69686326832048, + 46.25845804702396 + ], + [ + 70.5820205848368, + 46.063810312095505 + ], + [ + 70.69686326832048, + 45.86916257716705 + ], + [ + 70.92654863528783, + 45.86916257716705 + ], + [ + 71.04139131877152, + 46.063810312095505 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.04139131877152, + 46.45310578195241 + ], + [ + 70.92654863528783, + 46.64775351688086 + ], + [ + 70.69686326832048, + 46.64775351688086 + ], + [ + 70.5820205848368, + 46.45310578195241 + ], + [ + 70.69686326832048, + 46.25845804702396 + ], + [ + 70.92654863528783, + 46.25845804702396 + ], + [ + 71.04139131877152, + 46.45310578195241 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.04139131877152, + 46.842401251809314 + ], + [ + 70.92654863528783, + 47.037048986737766 + ], + [ + 70.69686326832048, + 47.037048986737766 + ], + [ + 70.5820205848368, + 46.842401251809314 + ], + [ + 70.69686326832048, + 46.64775351688086 + ], + [ + 70.92654863528783, + 46.64775351688086 + ], + [ + 71.04139131877152, + 46.842401251809314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.04139131877152, + 47.23169672166622 + ], + [ + 70.92654863528783, + 47.42634445659467 + ], + [ + 70.69686326832048, + 47.42634445659467 + ], + [ + 70.5820205848368, + 47.23169672166622 + ], + [ + 70.69686326832048, + 47.037048986737766 + ], + [ + 70.92654863528783, + 47.037048986737766 + ], + [ + 71.04139131877152, + 47.23169672166622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.04139131877152, + 47.620992191523136 + ], + [ + 70.92654863528783, + 47.81563992645159 + ], + [ + 70.69686326832048, + 47.81563992645159 + ], + [ + 70.5820205848368, + 47.620992191523136 + ], + [ + 70.69686326832048, + 47.426344456594684 + ], + [ + 70.92654863528783, + 47.426344456594684 + ], + [ + 71.04139131877152, + 47.620992191523136 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.38591936922255, + 12.0004566996162 + ], + [ + 71.27107668573886, + 12.195104434544653 + ], + [ + 71.04139131877152, + 12.195104434544653 + ], + [ + 70.92654863528783, + 12.0004566996162 + ], + [ + 71.04139131877152, + 11.805808964687746 + ], + [ + 71.27107668573886, + 11.805808964687746 + ], + [ + 71.38591936922255, + 12.0004566996162 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.38591936922255, + 12.389752169473105 + ], + [ + 71.27107668573886, + 12.58439990440156 + ], + [ + 71.04139131877152, + 12.58439990440156 + ], + [ + 70.92654863528783, + 12.389752169473105 + ], + [ + 71.04139131877152, + 12.195104434544652 + ], + [ + 71.27107668573886, + 12.195104434544652 + ], + [ + 71.38591936922255, + 12.389752169473105 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.38591936922255, + 12.779047639330013 + ], + [ + 71.27107668573886, + 12.973695374258467 + ], + [ + 71.04139131877152, + 12.973695374258467 + ], + [ + 70.92654863528783, + 12.779047639330013 + ], + [ + 71.04139131877152, + 12.58439990440156 + ], + [ + 71.27107668573886, + 12.58439990440156 + ], + [ + 71.38591936922255, + 12.779047639330013 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.38591936922255, + 13.16834310918692 + ], + [ + 71.27107668573886, + 13.362990844115373 + ], + [ + 71.04139131877152, + 13.362990844115373 + ], + [ + 70.92654863528783, + 13.16834310918692 + ], + [ + 71.04139131877152, + 12.973695374258465 + ], + [ + 71.27107668573886, + 12.973695374258465 + ], + [ + 71.38591936922255, + 13.16834310918692 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.38591936922255, + 13.557638579043825 + ], + [ + 71.27107668573886, + 13.752286313972279 + ], + [ + 71.04139131877152, + 13.752286313972279 + ], + [ + 70.92654863528783, + 13.557638579043825 + ], + [ + 71.04139131877152, + 13.362990844115371 + ], + [ + 71.27107668573886, + 13.362990844115371 + ], + [ + 71.38591936922255, + 13.557638579043825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.38591936922255, + 13.946934048900731 + ], + [ + 71.27107668573886, + 14.141581783829185 + ], + [ + 71.04139131877152, + 14.141581783829185 + ], + [ + 70.92654863528783, + 13.946934048900731 + ], + [ + 71.04139131877152, + 13.752286313972277 + ], + [ + 71.27107668573886, + 13.752286313972277 + ], + [ + 71.38591936922255, + 13.946934048900731 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.38591936922255, + 14.336229518757637 + ], + [ + 71.27107668573886, + 14.530877253686091 + ], + [ + 71.04139131877152, + 14.530877253686091 + ], + [ + 70.92654863528783, + 14.336229518757637 + ], + [ + 71.04139131877152, + 14.141581783829183 + ], + [ + 71.27107668573886, + 14.141581783829183 + ], + [ + 71.38591936922255, + 14.336229518757637 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.38591936922255, + 14.725524988614545 + ], + [ + 71.27107668573886, + 14.920172723542999 + ], + [ + 71.04139131877152, + 14.920172723542999 + ], + [ + 70.92654863528783, + 14.725524988614545 + ], + [ + 71.04139131877152, + 14.530877253686091 + ], + [ + 71.27107668573886, + 14.530877253686091 + ], + [ + 71.38591936922255, + 14.725524988614545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.38591936922255, + 15.114820458471451 + ], + [ + 71.27107668573886, + 15.309468193399905 + ], + [ + 71.04139131877152, + 15.309468193399905 + ], + [ + 70.92654863528783, + 15.114820458471451 + ], + [ + 71.04139131877152, + 14.920172723542997 + ], + [ + 71.27107668573886, + 14.920172723542997 + ], + [ + 71.38591936922255, + 15.114820458471451 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.38591936922255, + 15.504115928328357 + ], + [ + 71.27107668573886, + 15.69876366325681 + ], + [ + 71.04139131877152, + 15.69876366325681 + ], + [ + 70.92654863528783, + 15.504115928328357 + ], + [ + 71.04139131877152, + 15.309468193399903 + ], + [ + 71.27107668573886, + 15.309468193399903 + ], + [ + 71.38591936922255, + 15.504115928328357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.38591936922255, + 15.893411398185265 + ], + [ + 71.27107668573886, + 16.088059133113717 + ], + [ + 71.04139131877152, + 16.088059133113717 + ], + [ + 70.92654863528783, + 15.893411398185265 + ], + [ + 71.04139131877152, + 15.69876366325681 + ], + [ + 71.27107668573886, + 15.69876366325681 + ], + [ + 71.38591936922255, + 15.893411398185265 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.38591936922255, + 16.28270686804217 + ], + [ + 71.27107668573886, + 16.47735460297062 + ], + [ + 71.04139131877152, + 16.47735460297062 + ], + [ + 70.92654863528783, + 16.28270686804217 + ], + [ + 71.04139131877152, + 16.088059133113717 + ], + [ + 71.27107668573886, + 16.088059133113717 + ], + [ + 71.38591936922255, + 16.28270686804217 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.38591936922255, + 16.672002337899077 + ], + [ + 71.27107668573886, + 16.86665007282753 + ], + [ + 71.04139131877152, + 16.86665007282753 + ], + [ + 70.92654863528783, + 16.672002337899077 + ], + [ + 71.04139131877152, + 16.477354602970625 + ], + [ + 71.27107668573886, + 16.477354602970625 + ], + [ + 71.38591936922255, + 16.672002337899077 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.38591936922255, + 17.06129780775598 + ], + [ + 71.27107668573886, + 17.255945542684433 + ], + [ + 71.04139131877152, + 17.255945542684433 + ], + [ + 70.92654863528783, + 17.06129780775598 + ], + [ + 71.04139131877152, + 16.86665007282753 + ], + [ + 71.27107668573886, + 16.86665007282753 + ], + [ + 71.38591936922255, + 17.06129780775598 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.38591936922255, + 17.45059327761289 + ], + [ + 71.27107668573886, + 17.64524101254134 + ], + [ + 71.04139131877152, + 17.64524101254134 + ], + [ + 70.92654863528783, + 17.45059327761289 + ], + [ + 71.04139131877152, + 17.255945542684437 + ], + [ + 71.27107668573886, + 17.255945542684437 + ], + [ + 71.38591936922255, + 17.45059327761289 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.38591936922255, + 17.839888747469793 + ], + [ + 71.27107668573886, + 18.034536482398245 + ], + [ + 71.04139131877152, + 18.034536482398245 + ], + [ + 70.92654863528783, + 17.839888747469793 + ], + [ + 71.04139131877152, + 17.64524101254134 + ], + [ + 71.27107668573886, + 17.64524101254134 + ], + [ + 71.38591936922255, + 17.839888747469793 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.38591936922255, + 18.2291842173267 + ], + [ + 71.27107668573886, + 18.423831952255153 + ], + [ + 71.04139131877152, + 18.423831952255153 + ], + [ + 70.92654863528783, + 18.2291842173267 + ], + [ + 71.04139131877152, + 18.03453648239825 + ], + [ + 71.27107668573886, + 18.03453648239825 + ], + [ + 71.38591936922255, + 18.2291842173267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.38591936922255, + 18.61847968718361 + ], + [ + 71.27107668573886, + 18.81312742211206 + ], + [ + 71.04139131877152, + 18.81312742211206 + ], + [ + 70.92654863528783, + 18.61847968718361 + ], + [ + 71.04139131877152, + 18.423831952255156 + ], + [ + 71.27107668573886, + 18.423831952255156 + ], + [ + 71.38591936922255, + 18.61847968718361 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.38591936922255, + 19.007775157040513 + ], + [ + 71.27107668573886, + 19.202422891968965 + ], + [ + 71.04139131877152, + 19.202422891968965 + ], + [ + 70.92654863528783, + 19.007775157040513 + ], + [ + 71.04139131877152, + 18.81312742211206 + ], + [ + 71.27107668573886, + 18.81312742211206 + ], + [ + 71.38591936922255, + 19.007775157040513 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.38591936922255, + 19.39707062689742 + ], + [ + 71.27107668573886, + 19.591718361825873 + ], + [ + 71.04139131877152, + 19.591718361825873 + ], + [ + 70.92654863528783, + 19.39707062689742 + ], + [ + 71.04139131877152, + 19.20242289196897 + ], + [ + 71.27107668573886, + 19.20242289196897 + ], + [ + 71.38591936922255, + 19.39707062689742 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.38591936922255, + 19.78636609675433 + ], + [ + 71.27107668573886, + 19.98101383168278 + ], + [ + 71.04139131877152, + 19.98101383168278 + ], + [ + 70.92654863528783, + 19.78636609675433 + ], + [ + 71.04139131877152, + 19.591718361825876 + ], + [ + 71.27107668573886, + 19.591718361825876 + ], + [ + 71.38591936922255, + 19.78636609675433 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.38591936922255, + 20.175661566611232 + ], + [ + 71.27107668573886, + 20.370309301539685 + ], + [ + 71.04139131877152, + 20.370309301539685 + ], + [ + 70.92654863528783, + 20.175661566611232 + ], + [ + 71.04139131877152, + 19.98101383168278 + ], + [ + 71.27107668573886, + 19.98101383168278 + ], + [ + 71.38591936922255, + 20.175661566611232 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.38591936922255, + 20.564957036468137 + ], + [ + 71.27107668573886, + 20.75960477139659 + ], + [ + 71.04139131877152, + 20.75960477139659 + ], + [ + 70.92654863528783, + 20.564957036468137 + ], + [ + 71.04139131877152, + 20.370309301539685 + ], + [ + 71.27107668573886, + 20.370309301539685 + ], + [ + 71.38591936922255, + 20.564957036468137 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.38591936922255, + 20.954252506325044 + ], + [ + 71.27107668573886, + 21.148900241253497 + ], + [ + 71.04139131877152, + 21.148900241253497 + ], + [ + 70.92654863528783, + 20.954252506325044 + ], + [ + 71.04139131877152, + 20.759604771396592 + ], + [ + 71.27107668573886, + 20.759604771396592 + ], + [ + 71.38591936922255, + 20.954252506325044 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.38591936922255, + 21.343547976181952 + ], + [ + 71.27107668573886, + 21.538195711110404 + ], + [ + 71.04139131877152, + 21.538195711110404 + ], + [ + 70.92654863528783, + 21.343547976181952 + ], + [ + 71.04139131877152, + 21.1489002412535 + ], + [ + 71.27107668573886, + 21.1489002412535 + ], + [ + 71.38591936922255, + 21.343547976181952 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.38591936922255, + 21.732843446038856 + ], + [ + 71.27107668573886, + 21.92749118096731 + ], + [ + 71.04139131877152, + 21.92749118096731 + ], + [ + 70.92654863528783, + 21.732843446038856 + ], + [ + 71.04139131877152, + 21.538195711110404 + ], + [ + 71.27107668573886, + 21.538195711110404 + ], + [ + 71.38591936922255, + 21.732843446038856 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.38591936922255, + 22.122138915895764 + ], + [ + 71.27107668573886, + 22.316786650824216 + ], + [ + 71.04139131877152, + 22.316786650824216 + ], + [ + 70.92654863528783, + 22.122138915895764 + ], + [ + 71.04139131877152, + 21.927491180967312 + ], + [ + 71.27107668573886, + 21.927491180967312 + ], + [ + 71.38591936922255, + 22.122138915895764 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.38591936922255, + 22.511434385752672 + ], + [ + 71.27107668573886, + 22.706082120681124 + ], + [ + 71.04139131877152, + 22.706082120681124 + ], + [ + 70.92654863528783, + 22.511434385752672 + ], + [ + 71.04139131877152, + 22.31678665082422 + ], + [ + 71.27107668573886, + 22.31678665082422 + ], + [ + 71.38591936922255, + 22.511434385752672 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.38591936922255, + 22.900729855609576 + ], + [ + 71.27107668573886, + 23.09537759053803 + ], + [ + 71.04139131877152, + 23.09537759053803 + ], + [ + 70.92654863528783, + 22.900729855609576 + ], + [ + 71.04139131877152, + 22.706082120681124 + ], + [ + 71.27107668573886, + 22.706082120681124 + ], + [ + 71.38591936922255, + 22.900729855609576 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.38591936922255, + 23.290025325466484 + ], + [ + 71.27107668573886, + 23.484673060394936 + ], + [ + 71.04139131877152, + 23.484673060394936 + ], + [ + 70.92654863528783, + 23.290025325466484 + ], + [ + 71.04139131877152, + 23.095377590538032 + ], + [ + 71.27107668573886, + 23.095377590538032 + ], + [ + 71.38591936922255, + 23.290025325466484 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.38591936922255, + 23.67932079532339 + ], + [ + 71.27107668573886, + 23.873968530251844 + ], + [ + 71.04139131877152, + 23.873968530251844 + ], + [ + 70.92654863528783, + 23.67932079532339 + ], + [ + 71.04139131877152, + 23.48467306039494 + ], + [ + 71.27107668573886, + 23.48467306039494 + ], + [ + 71.38591936922255, + 23.67932079532339 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.38591936922255, + 24.068616265180296 + ], + [ + 71.27107668573886, + 24.263264000108748 + ], + [ + 71.04139131877152, + 24.263264000108748 + ], + [ + 70.92654863528783, + 24.068616265180296 + ], + [ + 71.04139131877152, + 23.873968530251844 + ], + [ + 71.27107668573886, + 23.873968530251844 + ], + [ + 71.38591936922255, + 24.068616265180296 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.38591936922255, + 24.4579117350372 + ], + [ + 71.27107668573886, + 24.652559469965652 + ], + [ + 71.04139131877152, + 24.652559469965652 + ], + [ + 70.92654863528783, + 24.4579117350372 + ], + [ + 71.04139131877152, + 24.263264000108748 + ], + [ + 71.27107668573886, + 24.263264000108748 + ], + [ + 71.38591936922255, + 24.4579117350372 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.38591936922255, + 24.847207204894108 + ], + [ + 71.27107668573886, + 25.04185493982256 + ], + [ + 71.04139131877152, + 25.04185493982256 + ], + [ + 70.92654863528783, + 24.847207204894108 + ], + [ + 71.04139131877152, + 24.652559469965656 + ], + [ + 71.27107668573886, + 24.652559469965656 + ], + [ + 71.38591936922255, + 24.847207204894108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.38591936922255, + 25.236502674751016 + ], + [ + 71.27107668573886, + 25.431150409679468 + ], + [ + 71.04139131877152, + 25.431150409679468 + ], + [ + 70.92654863528783, + 25.236502674751016 + ], + [ + 71.04139131877152, + 25.041854939822564 + ], + [ + 71.27107668573886, + 25.041854939822564 + ], + [ + 71.38591936922255, + 25.236502674751016 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.38591936922255, + 25.62579814460792 + ], + [ + 71.27107668573886, + 25.820445879536372 + ], + [ + 71.04139131877152, + 25.820445879536372 + ], + [ + 70.92654863528783, + 25.62579814460792 + ], + [ + 71.04139131877152, + 25.431150409679468 + ], + [ + 71.27107668573886, + 25.431150409679468 + ], + [ + 71.38591936922255, + 25.62579814460792 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.38591936922255, + 26.015093614464828 + ], + [ + 71.27107668573886, + 26.20974134939328 + ], + [ + 71.04139131877152, + 26.20974134939328 + ], + [ + 70.92654863528783, + 26.015093614464828 + ], + [ + 71.04139131877152, + 25.820445879536376 + ], + [ + 71.27107668573886, + 25.820445879536376 + ], + [ + 71.38591936922255, + 26.015093614464828 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.38591936922255, + 26.404389084321735 + ], + [ + 71.27107668573886, + 26.599036819250188 + ], + [ + 71.04139131877152, + 26.599036819250188 + ], + [ + 70.92654863528783, + 26.404389084321735 + ], + [ + 71.04139131877152, + 26.209741349393283 + ], + [ + 71.27107668573886, + 26.209741349393283 + ], + [ + 71.38591936922255, + 26.404389084321735 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.38591936922255, + 26.79368455417864 + ], + [ + 71.27107668573886, + 26.988332289107092 + ], + [ + 71.04139131877152, + 26.988332289107092 + ], + [ + 70.92654863528783, + 26.79368455417864 + ], + [ + 71.04139131877152, + 26.599036819250188 + ], + [ + 71.27107668573886, + 26.599036819250188 + ], + [ + 71.38591936922255, + 26.79368455417864 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.38591936922255, + 27.182980024035547 + ], + [ + 71.27107668573886, + 27.377627758964 + ], + [ + 71.04139131877152, + 27.377627758964 + ], + [ + 70.92654863528783, + 27.182980024035547 + ], + [ + 71.04139131877152, + 26.988332289107095 + ], + [ + 71.27107668573886, + 26.988332289107095 + ], + [ + 71.38591936922255, + 27.182980024035547 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.38591936922255, + 27.572275493892455 + ], + [ + 71.27107668573886, + 27.766923228820907 + ], + [ + 71.04139131877152, + 27.766923228820907 + ], + [ + 70.92654863528783, + 27.572275493892455 + ], + [ + 71.04139131877152, + 27.377627758964003 + ], + [ + 71.27107668573886, + 27.377627758964003 + ], + [ + 71.38591936922255, + 27.572275493892455 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.38591936922255, + 27.96157096374936 + ], + [ + 71.27107668573886, + 28.15621869867781 + ], + [ + 71.04139131877152, + 28.15621869867781 + ], + [ + 70.92654863528783, + 27.96157096374936 + ], + [ + 71.04139131877152, + 27.766923228820907 + ], + [ + 71.27107668573886, + 27.766923228820907 + ], + [ + 71.38591936922255, + 27.96157096374936 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.38591936922255, + 28.350866433606267 + ], + [ + 71.27107668573886, + 28.54551416853472 + ], + [ + 71.04139131877152, + 28.54551416853472 + ], + [ + 70.92654863528783, + 28.350866433606267 + ], + [ + 71.04139131877152, + 28.156218698677815 + ], + [ + 71.27107668573886, + 28.156218698677815 + ], + [ + 71.38591936922255, + 28.350866433606267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.38591936922255, + 28.74016190346317 + ], + [ + 71.27107668573886, + 28.934809638391624 + ], + [ + 71.04139131877152, + 28.934809638391624 + ], + [ + 70.92654863528783, + 28.74016190346317 + ], + [ + 71.04139131877152, + 28.54551416853472 + ], + [ + 71.27107668573886, + 28.54551416853472 + ], + [ + 71.38591936922255, + 28.74016190346317 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.38591936922255, + 29.12945737332008 + ], + [ + 71.27107668573886, + 29.32410510824853 + ], + [ + 71.04139131877152, + 29.32410510824853 + ], + [ + 70.92654863528783, + 29.12945737332008 + ], + [ + 71.04139131877152, + 28.934809638391627 + ], + [ + 71.27107668573886, + 28.934809638391627 + ], + [ + 71.38591936922255, + 29.12945737332008 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.38591936922255, + 29.518752843176983 + ], + [ + 71.27107668573886, + 29.713400578105436 + ], + [ + 71.04139131877152, + 29.713400578105436 + ], + [ + 70.92654863528783, + 29.518752843176983 + ], + [ + 71.04139131877152, + 29.32410510824853 + ], + [ + 71.27107668573886, + 29.32410510824853 + ], + [ + 71.38591936922255, + 29.518752843176983 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.38591936922255, + 29.90804831303389 + ], + [ + 71.27107668573886, + 30.102696047962343 + ], + [ + 71.04139131877152, + 30.102696047962343 + ], + [ + 70.92654863528783, + 29.90804831303389 + ], + [ + 71.04139131877152, + 29.71340057810544 + ], + [ + 71.27107668573886, + 29.71340057810544 + ], + [ + 71.38591936922255, + 29.90804831303389 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.38591936922255, + 30.297343782890795 + ], + [ + 71.27107668573886, + 30.491991517819248 + ], + [ + 71.04139131877152, + 30.491991517819248 + ], + [ + 70.92654863528783, + 30.297343782890795 + ], + [ + 71.04139131877152, + 30.102696047962343 + ], + [ + 71.27107668573886, + 30.102696047962343 + ], + [ + 71.38591936922255, + 30.297343782890795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.38591936922255, + 30.686639252747703 + ], + [ + 71.27107668573886, + 30.881286987676155 + ], + [ + 71.04139131877152, + 30.881286987676155 + ], + [ + 70.92654863528783, + 30.686639252747703 + ], + [ + 71.04139131877152, + 30.49199151781925 + ], + [ + 71.27107668573886, + 30.49199151781925 + ], + [ + 71.38591936922255, + 30.686639252747703 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.38591936922255, + 31.07593472260461 + ], + [ + 71.27107668573886, + 31.270582457533063 + ], + [ + 71.04139131877152, + 31.270582457533063 + ], + [ + 70.92654863528783, + 31.07593472260461 + ], + [ + 71.04139131877152, + 30.88128698767616 + ], + [ + 71.27107668573886, + 30.88128698767616 + ], + [ + 71.38591936922255, + 31.07593472260461 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.38591936922255, + 31.465230192461515 + ], + [ + 71.27107668573886, + 31.659877927389967 + ], + [ + 71.04139131877152, + 31.659877927389967 + ], + [ + 70.92654863528783, + 31.465230192461515 + ], + [ + 71.04139131877152, + 31.270582457533063 + ], + [ + 71.27107668573886, + 31.270582457533063 + ], + [ + 71.38591936922255, + 31.465230192461515 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.38591936922255, + 31.854525662318423 + ], + [ + 71.27107668573886, + 32.049173397246875 + ], + [ + 71.04139131877152, + 32.049173397246875 + ], + [ + 70.92654863528783, + 31.854525662318423 + ], + [ + 71.04139131877152, + 31.65987792738997 + ], + [ + 71.27107668573886, + 31.65987792738997 + ], + [ + 71.38591936922255, + 31.854525662318423 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.38591936922255, + 32.24382113217533 + ], + [ + 71.27107668573886, + 32.43846886710378 + ], + [ + 71.04139131877152, + 32.43846886710378 + ], + [ + 70.92654863528783, + 32.24382113217533 + ], + [ + 71.04139131877152, + 32.049173397246875 + ], + [ + 71.27107668573886, + 32.049173397246875 + ], + [ + 71.38591936922255, + 32.24382113217533 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.38591936922255, + 32.63311660203224 + ], + [ + 71.27107668573886, + 32.82776433696069 + ], + [ + 71.04139131877152, + 32.82776433696069 + ], + [ + 70.92654863528783, + 32.63311660203224 + ], + [ + 71.04139131877152, + 32.438468867103786 + ], + [ + 71.27107668573886, + 32.438468867103786 + ], + [ + 71.38591936922255, + 32.63311660203224 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.38591936922255, + 33.02241207188914 + ], + [ + 71.27107668573886, + 33.217059806817595 + ], + [ + 71.04139131877152, + 33.217059806817595 + ], + [ + 70.92654863528783, + 33.02241207188914 + ], + [ + 71.04139131877152, + 32.82776433696069 + ], + [ + 71.27107668573886, + 32.82776433696069 + ], + [ + 71.38591936922255, + 33.02241207188914 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.38591936922255, + 33.41170754174605 + ], + [ + 71.27107668573886, + 33.6063552766745 + ], + [ + 71.04139131877152, + 33.6063552766745 + ], + [ + 70.92654863528783, + 33.41170754174605 + ], + [ + 71.04139131877152, + 33.217059806817595 + ], + [ + 71.27107668573886, + 33.217059806817595 + ], + [ + 71.38591936922255, + 33.41170754174605 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.38591936922255, + 33.80100301160295 + ], + [ + 71.27107668573886, + 33.9956507465314 + ], + [ + 71.04139131877152, + 33.9956507465314 + ], + [ + 70.92654863528783, + 33.80100301160295 + ], + [ + 71.04139131877152, + 33.6063552766745 + ], + [ + 71.27107668573886, + 33.6063552766745 + ], + [ + 71.38591936922255, + 33.80100301160295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.38591936922255, + 34.190298481459855 + ], + [ + 71.27107668573886, + 34.38494621638831 + ], + [ + 71.04139131877152, + 34.38494621638831 + ], + [ + 70.92654863528783, + 34.190298481459855 + ], + [ + 71.04139131877152, + 33.9956507465314 + ], + [ + 71.27107668573886, + 33.9956507465314 + ], + [ + 71.38591936922255, + 34.190298481459855 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.38591936922255, + 34.57959395131677 + ], + [ + 71.27107668573886, + 34.77424168624522 + ], + [ + 71.04139131877152, + 34.77424168624522 + ], + [ + 70.92654863528783, + 34.57959395131677 + ], + [ + 71.04139131877152, + 34.384946216388315 + ], + [ + 71.27107668573886, + 34.384946216388315 + ], + [ + 71.38591936922255, + 34.57959395131677 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.38591936922255, + 34.96888942117368 + ], + [ + 71.27107668573886, + 35.16353715610213 + ], + [ + 71.04139131877152, + 35.16353715610213 + ], + [ + 70.92654863528783, + 34.96888942117368 + ], + [ + 71.04139131877152, + 34.774241686245226 + ], + [ + 71.27107668573886, + 34.774241686245226 + ], + [ + 71.38591936922255, + 34.96888942117368 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.38591936922255, + 35.35818489103058 + ], + [ + 71.27107668573886, + 35.552832625959034 + ], + [ + 71.04139131877152, + 35.552832625959034 + ], + [ + 70.92654863528783, + 35.35818489103058 + ], + [ + 71.04139131877152, + 35.16353715610213 + ], + [ + 71.27107668573886, + 35.16353715610213 + ], + [ + 71.38591936922255, + 35.35818489103058 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.38591936922255, + 35.74748036088749 + ], + [ + 71.27107668573886, + 35.94212809581594 + ], + [ + 71.04139131877152, + 35.94212809581594 + ], + [ + 70.92654863528783, + 35.74748036088749 + ], + [ + 71.04139131877152, + 35.552832625959034 + ], + [ + 71.27107668573886, + 35.552832625959034 + ], + [ + 71.38591936922255, + 35.74748036088749 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.38591936922255, + 36.13677583074439 + ], + [ + 71.27107668573886, + 36.33142356567284 + ], + [ + 71.04139131877152, + 36.33142356567284 + ], + [ + 70.92654863528783, + 36.13677583074439 + ], + [ + 71.04139131877152, + 35.94212809581594 + ], + [ + 71.27107668573886, + 35.94212809581594 + ], + [ + 71.38591936922255, + 36.13677583074439 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.38591936922255, + 36.526071300601295 + ], + [ + 71.27107668573886, + 36.72071903552975 + ], + [ + 71.04139131877152, + 36.72071903552975 + ], + [ + 70.92654863528783, + 36.526071300601295 + ], + [ + 71.04139131877152, + 36.33142356567284 + ], + [ + 71.27107668573886, + 36.33142356567284 + ], + [ + 71.38591936922255, + 36.526071300601295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.38591936922255, + 36.915366770458206 + ], + [ + 71.27107668573886, + 37.11001450538666 + ], + [ + 71.04139131877152, + 37.11001450538666 + ], + [ + 70.92654863528783, + 36.915366770458206 + ], + [ + 71.04139131877152, + 36.720719035529754 + ], + [ + 71.27107668573886, + 36.720719035529754 + ], + [ + 71.38591936922255, + 36.915366770458206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.38591936922255, + 37.30466224031511 + ], + [ + 71.27107668573886, + 37.49930997524356 + ], + [ + 71.04139131877152, + 37.49930997524356 + ], + [ + 70.92654863528783, + 37.30466224031511 + ], + [ + 71.04139131877152, + 37.11001450538666 + ], + [ + 71.27107668573886, + 37.11001450538666 + ], + [ + 71.38591936922255, + 37.30466224031511 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.38591936922255, + 37.69395771017202 + ], + [ + 71.27107668573886, + 37.888605445100474 + ], + [ + 71.04139131877152, + 37.888605445100474 + ], + [ + 70.92654863528783, + 37.69395771017202 + ], + [ + 71.04139131877152, + 37.49930997524357 + ], + [ + 71.27107668573886, + 37.49930997524357 + ], + [ + 71.38591936922255, + 37.69395771017202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.38591936922255, + 38.083253180028926 + ], + [ + 71.27107668573886, + 38.27790091495738 + ], + [ + 71.04139131877152, + 38.27790091495738 + ], + [ + 70.92654863528783, + 38.083253180028926 + ], + [ + 71.04139131877152, + 37.888605445100474 + ], + [ + 71.27107668573886, + 37.888605445100474 + ], + [ + 71.38591936922255, + 38.083253180028926 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.38591936922255, + 38.47254864988583 + ], + [ + 71.27107668573886, + 38.66719638481428 + ], + [ + 71.04139131877152, + 38.66719638481428 + ], + [ + 70.92654863528783, + 38.47254864988583 + ], + [ + 71.04139131877152, + 38.27790091495738 + ], + [ + 71.27107668573886, + 38.27790091495738 + ], + [ + 71.38591936922255, + 38.47254864988583 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.38591936922255, + 38.861844119742734 + ], + [ + 71.27107668573886, + 39.05649185467119 + ], + [ + 71.04139131877152, + 39.05649185467119 + ], + [ + 70.92654863528783, + 38.861844119742734 + ], + [ + 71.04139131877152, + 38.66719638481428 + ], + [ + 71.27107668573886, + 38.66719638481428 + ], + [ + 71.38591936922255, + 38.861844119742734 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.38591936922255, + 39.25113958959964 + ], + [ + 71.27107668573886, + 39.44578732452809 + ], + [ + 71.04139131877152, + 39.44578732452809 + ], + [ + 70.92654863528783, + 39.25113958959964 + ], + [ + 71.04139131877152, + 39.05649185467119 + ], + [ + 71.27107668573886, + 39.05649185467119 + ], + [ + 71.38591936922255, + 39.25113958959964 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.38591936922255, + 39.64043505945655 + ], + [ + 71.27107668573886, + 39.835082794385 + ], + [ + 71.04139131877152, + 39.835082794385 + ], + [ + 70.92654863528783, + 39.64043505945655 + ], + [ + 71.04139131877152, + 39.4457873245281 + ], + [ + 71.27107668573886, + 39.4457873245281 + ], + [ + 71.38591936922255, + 39.64043505945655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.38591936922255, + 40.029730529313454 + ], + [ + 71.27107668573886, + 40.224378264241906 + ], + [ + 71.04139131877152, + 40.224378264241906 + ], + [ + 70.92654863528783, + 40.029730529313454 + ], + [ + 71.04139131877152, + 39.835082794385 + ], + [ + 71.27107668573886, + 39.835082794385 + ], + [ + 71.38591936922255, + 40.029730529313454 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.38591936922255, + 40.419025999170366 + ], + [ + 71.27107668573886, + 40.61367373409882 + ], + [ + 71.04139131877152, + 40.61367373409882 + ], + [ + 70.92654863528783, + 40.419025999170366 + ], + [ + 71.04139131877152, + 40.22437826424191 + ], + [ + 71.27107668573886, + 40.22437826424191 + ], + [ + 71.38591936922255, + 40.419025999170366 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.38591936922255, + 40.80832146902727 + ], + [ + 71.27107668573886, + 41.00296920395572 + ], + [ + 71.04139131877152, + 41.00296920395572 + ], + [ + 70.92654863528783, + 40.80832146902727 + ], + [ + 71.04139131877152, + 40.61367373409882 + ], + [ + 71.27107668573886, + 40.61367373409882 + ], + [ + 71.38591936922255, + 40.80832146902727 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.38591936922255, + 41.197616938884174 + ], + [ + 71.27107668573886, + 41.392264673812626 + ], + [ + 71.04139131877152, + 41.392264673812626 + ], + [ + 70.92654863528783, + 41.197616938884174 + ], + [ + 71.04139131877152, + 41.00296920395572 + ], + [ + 71.27107668573886, + 41.00296920395572 + ], + [ + 71.38591936922255, + 41.197616938884174 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.38591936922255, + 41.58691240874108 + ], + [ + 71.27107668573886, + 41.78156014366953 + ], + [ + 71.04139131877152, + 41.78156014366953 + ], + [ + 70.92654863528783, + 41.58691240874108 + ], + [ + 71.04139131877152, + 41.392264673812626 + ], + [ + 71.27107668573886, + 41.392264673812626 + ], + [ + 71.38591936922255, + 41.58691240874108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.38591936922255, + 41.97620787859798 + ], + [ + 71.27107668573886, + 42.170855613526435 + ], + [ + 71.04139131877152, + 42.170855613526435 + ], + [ + 70.92654863528783, + 41.97620787859798 + ], + [ + 71.04139131877152, + 41.78156014366953 + ], + [ + 71.27107668573886, + 41.78156014366953 + ], + [ + 71.38591936922255, + 41.97620787859798 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.38591936922255, + 42.365503348454894 + ], + [ + 71.27107668573886, + 42.560151083383346 + ], + [ + 71.04139131877152, + 42.560151083383346 + ], + [ + 70.92654863528783, + 42.365503348454894 + ], + [ + 71.04139131877152, + 42.17085561352644 + ], + [ + 71.27107668573886, + 42.17085561352644 + ], + [ + 71.38591936922255, + 42.365503348454894 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.38591936922255, + 42.754798818311805 + ], + [ + 71.27107668573886, + 42.94944655324026 + ], + [ + 71.04139131877152, + 42.94944655324026 + ], + [ + 70.92654863528783, + 42.754798818311805 + ], + [ + 71.04139131877152, + 42.56015108338335 + ], + [ + 71.27107668573886, + 42.56015108338335 + ], + [ + 71.38591936922255, + 42.754798818311805 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.38591936922255, + 43.14409428816871 + ], + [ + 71.27107668573886, + 43.33874202309716 + ], + [ + 71.04139131877152, + 43.33874202309716 + ], + [ + 70.92654863528783, + 43.14409428816871 + ], + [ + 71.04139131877152, + 42.94944655324026 + ], + [ + 71.27107668573886, + 42.94944655324026 + ], + [ + 71.38591936922255, + 43.14409428816871 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.38591936922255, + 43.53338975802561 + ], + [ + 71.27107668573886, + 43.728037492954066 + ], + [ + 71.04139131877152, + 43.728037492954066 + ], + [ + 70.92654863528783, + 43.53338975802561 + ], + [ + 71.04139131877152, + 43.33874202309716 + ], + [ + 71.27107668573886, + 43.33874202309716 + ], + [ + 71.38591936922255, + 43.53338975802561 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.38591936922255, + 43.92268522788252 + ], + [ + 71.27107668573886, + 44.11733296281097 + ], + [ + 71.04139131877152, + 44.11733296281097 + ], + [ + 70.92654863528783, + 43.92268522788252 + ], + [ + 71.04139131877152, + 43.728037492954066 + ], + [ + 71.27107668573886, + 43.728037492954066 + ], + [ + 71.38591936922255, + 43.92268522788252 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.38591936922255, + 44.31198069773942 + ], + [ + 71.27107668573886, + 44.506628432667874 + ], + [ + 71.04139131877152, + 44.506628432667874 + ], + [ + 70.92654863528783, + 44.31198069773942 + ], + [ + 71.04139131877152, + 44.11733296281097 + ], + [ + 71.27107668573886, + 44.11733296281097 + ], + [ + 71.38591936922255, + 44.31198069773942 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.38591936922255, + 44.701276167596326 + ], + [ + 71.27107668573886, + 44.89592390252478 + ], + [ + 71.04139131877152, + 44.89592390252478 + ], + [ + 70.92654863528783, + 44.701276167596326 + ], + [ + 71.04139131877152, + 44.506628432667874 + ], + [ + 71.27107668573886, + 44.506628432667874 + ], + [ + 71.38591936922255, + 44.701276167596326 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.38591936922255, + 45.090571637453245 + ], + [ + 71.27107668573886, + 45.2852193723817 + ], + [ + 71.04139131877152, + 45.2852193723817 + ], + [ + 70.92654863528783, + 45.090571637453245 + ], + [ + 71.04139131877152, + 44.89592390252479 + ], + [ + 71.27107668573886, + 44.89592390252479 + ], + [ + 71.38591936922255, + 45.090571637453245 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.38591936922255, + 45.47986710731015 + ], + [ + 71.27107668573886, + 45.6745148422386 + ], + [ + 71.04139131877152, + 45.6745148422386 + ], + [ + 70.92654863528783, + 45.47986710731015 + ], + [ + 71.04139131877152, + 45.2852193723817 + ], + [ + 71.27107668573886, + 45.2852193723817 + ], + [ + 71.38591936922255, + 45.47986710731015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.38591936922255, + 45.86916257716705 + ], + [ + 71.27107668573886, + 46.063810312095505 + ], + [ + 71.04139131877152, + 46.063810312095505 + ], + [ + 70.92654863528783, + 45.86916257716705 + ], + [ + 71.04139131877152, + 45.6745148422386 + ], + [ + 71.27107668573886, + 45.6745148422386 + ], + [ + 71.38591936922255, + 45.86916257716705 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.38591936922255, + 46.25845804702396 + ], + [ + 71.27107668573886, + 46.45310578195241 + ], + [ + 71.04139131877152, + 46.45310578195241 + ], + [ + 70.92654863528783, + 46.25845804702396 + ], + [ + 71.04139131877152, + 46.063810312095505 + ], + [ + 71.27107668573886, + 46.063810312095505 + ], + [ + 71.38591936922255, + 46.25845804702396 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.38591936922255, + 46.64775351688086 + ], + [ + 71.27107668573886, + 46.842401251809314 + ], + [ + 71.04139131877152, + 46.842401251809314 + ], + [ + 70.92654863528783, + 46.64775351688086 + ], + [ + 71.04139131877152, + 46.45310578195241 + ], + [ + 71.27107668573886, + 46.45310578195241 + ], + [ + 71.38591936922255, + 46.64775351688086 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.38591936922255, + 47.037048986737766 + ], + [ + 71.27107668573886, + 47.23169672166622 + ], + [ + 71.04139131877152, + 47.23169672166622 + ], + [ + 70.92654863528783, + 47.037048986737766 + ], + [ + 71.04139131877152, + 46.842401251809314 + ], + [ + 71.27107668573886, + 46.842401251809314 + ], + [ + 71.38591936922255, + 47.037048986737766 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.38591936922255, + 47.42634445659467 + ], + [ + 71.27107668573886, + 47.62099219152312 + ], + [ + 71.04139131877152, + 47.62099219152312 + ], + [ + 70.92654863528783, + 47.42634445659467 + ], + [ + 71.04139131877152, + 47.23169672166622 + ], + [ + 71.27107668573886, + 47.23169672166622 + ], + [ + 71.38591936922255, + 47.42634445659467 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.38591936922255, + 47.81563992645159 + ], + [ + 71.27107668573886, + 48.01028766138004 + ], + [ + 71.04139131877152, + 48.01028766138004 + ], + [ + 70.92654863528783, + 47.81563992645159 + ], + [ + 71.04139131877152, + 47.620992191523136 + ], + [ + 71.27107668573886, + 47.620992191523136 + ], + [ + 71.38591936922255, + 47.81563992645159 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.73044741967358, + 11.805808964687746 + ], + [ + 71.6156047361899, + 12.0004566996162 + ], + [ + 71.38591936922255, + 12.0004566996162 + ], + [ + 71.27107668573886, + 11.805808964687746 + ], + [ + 71.38591936922255, + 11.611161229759292 + ], + [ + 71.6156047361899, + 11.611161229759292 + ], + [ + 71.73044741967358, + 11.805808964687746 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.73044741967358, + 12.195104434544652 + ], + [ + 71.6156047361899, + 12.389752169473105 + ], + [ + 71.38591936922255, + 12.389752169473105 + ], + [ + 71.27107668573886, + 12.195104434544652 + ], + [ + 71.38591936922255, + 12.000456699616198 + ], + [ + 71.6156047361899, + 12.000456699616198 + ], + [ + 71.73044741967358, + 12.195104434544652 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.73044741967358, + 12.58439990440156 + ], + [ + 71.6156047361899, + 12.779047639330013 + ], + [ + 71.38591936922255, + 12.779047639330013 + ], + [ + 71.27107668573886, + 12.58439990440156 + ], + [ + 71.38591936922255, + 12.389752169473105 + ], + [ + 71.6156047361899, + 12.389752169473105 + ], + [ + 71.73044741967358, + 12.58439990440156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.73044741967358, + 12.973695374258465 + ], + [ + 71.6156047361899, + 13.16834310918692 + ], + [ + 71.38591936922255, + 13.16834310918692 + ], + [ + 71.27107668573886, + 12.973695374258465 + ], + [ + 71.38591936922255, + 12.779047639330011 + ], + [ + 71.6156047361899, + 12.779047639330011 + ], + [ + 71.73044741967358, + 12.973695374258465 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.73044741967358, + 13.362990844115371 + ], + [ + 71.6156047361899, + 13.557638579043825 + ], + [ + 71.38591936922255, + 13.557638579043825 + ], + [ + 71.27107668573886, + 13.362990844115371 + ], + [ + 71.38591936922255, + 13.168343109186917 + ], + [ + 71.6156047361899, + 13.168343109186917 + ], + [ + 71.73044741967358, + 13.362990844115371 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.73044741967358, + 13.752286313972277 + ], + [ + 71.6156047361899, + 13.946934048900731 + ], + [ + 71.38591936922255, + 13.946934048900731 + ], + [ + 71.27107668573886, + 13.752286313972277 + ], + [ + 71.38591936922255, + 13.557638579043823 + ], + [ + 71.6156047361899, + 13.557638579043823 + ], + [ + 71.73044741967358, + 13.752286313972277 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.73044741967358, + 14.141581783829183 + ], + [ + 71.6156047361899, + 14.336229518757637 + ], + [ + 71.38591936922255, + 14.336229518757637 + ], + [ + 71.27107668573886, + 14.141581783829183 + ], + [ + 71.38591936922255, + 13.94693404890073 + ], + [ + 71.6156047361899, + 13.94693404890073 + ], + [ + 71.73044741967358, + 14.141581783829183 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.73044741967358, + 14.530877253686091 + ], + [ + 71.6156047361899, + 14.725524988614545 + ], + [ + 71.38591936922255, + 14.725524988614545 + ], + [ + 71.27107668573886, + 14.530877253686091 + ], + [ + 71.38591936922255, + 14.336229518757637 + ], + [ + 71.6156047361899, + 14.336229518757637 + ], + [ + 71.73044741967358, + 14.530877253686091 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.73044741967358, + 14.920172723542997 + ], + [ + 71.6156047361899, + 15.114820458471451 + ], + [ + 71.38591936922255, + 15.114820458471451 + ], + [ + 71.27107668573886, + 14.920172723542997 + ], + [ + 71.38591936922255, + 14.725524988614543 + ], + [ + 71.6156047361899, + 14.725524988614543 + ], + [ + 71.73044741967358, + 14.920172723542997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.73044741967358, + 15.309468193399903 + ], + [ + 71.6156047361899, + 15.504115928328357 + ], + [ + 71.38591936922255, + 15.504115928328357 + ], + [ + 71.27107668573886, + 15.309468193399903 + ], + [ + 71.38591936922255, + 15.11482045847145 + ], + [ + 71.6156047361899, + 15.11482045847145 + ], + [ + 71.73044741967358, + 15.309468193399903 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.73044741967358, + 15.69876366325681 + ], + [ + 71.6156047361899, + 15.893411398185265 + ], + [ + 71.38591936922255, + 15.893411398185265 + ], + [ + 71.27107668573886, + 15.69876366325681 + ], + [ + 71.38591936922255, + 15.504115928328357 + ], + [ + 71.6156047361899, + 15.504115928328357 + ], + [ + 71.73044741967358, + 15.69876366325681 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.73044741967358, + 16.088059133113717 + ], + [ + 71.6156047361899, + 16.28270686804217 + ], + [ + 71.38591936922255, + 16.28270686804217 + ], + [ + 71.27107668573886, + 16.088059133113717 + ], + [ + 71.38591936922255, + 15.893411398185263 + ], + [ + 71.6156047361899, + 15.893411398185263 + ], + [ + 71.73044741967358, + 16.088059133113717 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.73044741967358, + 16.477354602970625 + ], + [ + 71.6156047361899, + 16.672002337899077 + ], + [ + 71.38591936922255, + 16.672002337899077 + ], + [ + 71.27107668573886, + 16.477354602970625 + ], + [ + 71.38591936922255, + 16.282706868042172 + ], + [ + 71.6156047361899, + 16.282706868042172 + ], + [ + 71.73044741967358, + 16.477354602970625 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.73044741967358, + 16.86665007282753 + ], + [ + 71.6156047361899, + 17.06129780775598 + ], + [ + 71.38591936922255, + 17.06129780775598 + ], + [ + 71.27107668573886, + 16.86665007282753 + ], + [ + 71.38591936922255, + 16.672002337899077 + ], + [ + 71.6156047361899, + 16.672002337899077 + ], + [ + 71.73044741967358, + 16.86665007282753 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.73044741967358, + 17.255945542684437 + ], + [ + 71.6156047361899, + 17.45059327761289 + ], + [ + 71.38591936922255, + 17.45059327761289 + ], + [ + 71.27107668573886, + 17.255945542684437 + ], + [ + 71.38591936922255, + 17.061297807755984 + ], + [ + 71.6156047361899, + 17.061297807755984 + ], + [ + 71.73044741967358, + 17.255945542684437 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.73044741967358, + 17.64524101254134 + ], + [ + 71.6156047361899, + 17.839888747469793 + ], + [ + 71.38591936922255, + 17.839888747469793 + ], + [ + 71.27107668573886, + 17.64524101254134 + ], + [ + 71.38591936922255, + 17.45059327761289 + ], + [ + 71.6156047361899, + 17.45059327761289 + ], + [ + 71.73044741967358, + 17.64524101254134 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.73044741967358, + 18.03453648239825 + ], + [ + 71.6156047361899, + 18.2291842173267 + ], + [ + 71.38591936922255, + 18.2291842173267 + ], + [ + 71.27107668573886, + 18.03453648239825 + ], + [ + 71.38591936922255, + 17.839888747469796 + ], + [ + 71.6156047361899, + 17.839888747469796 + ], + [ + 71.73044741967358, + 18.03453648239825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.73044741967358, + 18.423831952255156 + ], + [ + 71.6156047361899, + 18.61847968718361 + ], + [ + 71.38591936922255, + 18.61847968718361 + ], + [ + 71.27107668573886, + 18.423831952255156 + ], + [ + 71.38591936922255, + 18.229184217326704 + ], + [ + 71.6156047361899, + 18.229184217326704 + ], + [ + 71.73044741967358, + 18.423831952255156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.73044741967358, + 18.81312742211206 + ], + [ + 71.6156047361899, + 19.007775157040513 + ], + [ + 71.38591936922255, + 19.007775157040513 + ], + [ + 71.27107668573886, + 18.81312742211206 + ], + [ + 71.38591936922255, + 18.61847968718361 + ], + [ + 71.6156047361899, + 18.61847968718361 + ], + [ + 71.73044741967358, + 18.81312742211206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.73044741967358, + 19.20242289196897 + ], + [ + 71.6156047361899, + 19.39707062689742 + ], + [ + 71.38591936922255, + 19.39707062689742 + ], + [ + 71.27107668573886, + 19.20242289196897 + ], + [ + 71.38591936922255, + 19.007775157040516 + ], + [ + 71.6156047361899, + 19.007775157040516 + ], + [ + 71.73044741967358, + 19.20242289196897 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.73044741967358, + 19.591718361825876 + ], + [ + 71.6156047361899, + 19.78636609675433 + ], + [ + 71.38591936922255, + 19.78636609675433 + ], + [ + 71.27107668573886, + 19.591718361825876 + ], + [ + 71.38591936922255, + 19.397070626897424 + ], + [ + 71.6156047361899, + 19.397070626897424 + ], + [ + 71.73044741967358, + 19.591718361825876 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.73044741967358, + 19.98101383168278 + ], + [ + 71.6156047361899, + 20.175661566611232 + ], + [ + 71.38591936922255, + 20.175661566611232 + ], + [ + 71.27107668573886, + 19.98101383168278 + ], + [ + 71.38591936922255, + 19.78636609675433 + ], + [ + 71.6156047361899, + 19.78636609675433 + ], + [ + 71.73044741967358, + 19.98101383168278 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.73044741967358, + 20.370309301539685 + ], + [ + 71.6156047361899, + 20.564957036468137 + ], + [ + 71.38591936922255, + 20.564957036468137 + ], + [ + 71.27107668573886, + 20.370309301539685 + ], + [ + 71.38591936922255, + 20.175661566611232 + ], + [ + 71.6156047361899, + 20.175661566611232 + ], + [ + 71.73044741967358, + 20.370309301539685 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.73044741967358, + 20.759604771396592 + ], + [ + 71.6156047361899, + 20.954252506325044 + ], + [ + 71.38591936922255, + 20.954252506325044 + ], + [ + 71.27107668573886, + 20.759604771396592 + ], + [ + 71.38591936922255, + 20.56495703646814 + ], + [ + 71.6156047361899, + 20.56495703646814 + ], + [ + 71.73044741967358, + 20.759604771396592 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.73044741967358, + 21.1489002412535 + ], + [ + 71.6156047361899, + 21.343547976181952 + ], + [ + 71.38591936922255, + 21.343547976181952 + ], + [ + 71.27107668573886, + 21.1489002412535 + ], + [ + 71.38591936922255, + 20.954252506325048 + ], + [ + 71.6156047361899, + 20.954252506325048 + ], + [ + 71.73044741967358, + 21.1489002412535 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.73044741967358, + 21.538195711110404 + ], + [ + 71.6156047361899, + 21.732843446038856 + ], + [ + 71.38591936922255, + 21.732843446038856 + ], + [ + 71.27107668573886, + 21.538195711110404 + ], + [ + 71.38591936922255, + 21.343547976181952 + ], + [ + 71.6156047361899, + 21.343547976181952 + ], + [ + 71.73044741967358, + 21.538195711110404 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.73044741967358, + 21.927491180967312 + ], + [ + 71.6156047361899, + 22.122138915895764 + ], + [ + 71.38591936922255, + 22.122138915895764 + ], + [ + 71.27107668573886, + 21.927491180967312 + ], + [ + 71.38591936922255, + 21.73284344603886 + ], + [ + 71.6156047361899, + 21.73284344603886 + ], + [ + 71.73044741967358, + 21.927491180967312 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.73044741967358, + 22.31678665082422 + ], + [ + 71.6156047361899, + 22.511434385752672 + ], + [ + 71.38591936922255, + 22.511434385752672 + ], + [ + 71.27107668573886, + 22.31678665082422 + ], + [ + 71.38591936922255, + 22.122138915895768 + ], + [ + 71.6156047361899, + 22.122138915895768 + ], + [ + 71.73044741967358, + 22.31678665082422 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.73044741967358, + 22.706082120681124 + ], + [ + 71.6156047361899, + 22.900729855609576 + ], + [ + 71.38591936922255, + 22.900729855609576 + ], + [ + 71.27107668573886, + 22.706082120681124 + ], + [ + 71.38591936922255, + 22.511434385752672 + ], + [ + 71.6156047361899, + 22.511434385752672 + ], + [ + 71.73044741967358, + 22.706082120681124 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.73044741967358, + 23.095377590538032 + ], + [ + 71.6156047361899, + 23.290025325466484 + ], + [ + 71.38591936922255, + 23.290025325466484 + ], + [ + 71.27107668573886, + 23.095377590538032 + ], + [ + 71.38591936922255, + 22.90072985560958 + ], + [ + 71.6156047361899, + 22.90072985560958 + ], + [ + 71.73044741967358, + 23.095377590538032 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.73044741967358, + 23.48467306039494 + ], + [ + 71.6156047361899, + 23.67932079532339 + ], + [ + 71.38591936922255, + 23.67932079532339 + ], + [ + 71.27107668573886, + 23.48467306039494 + ], + [ + 71.38591936922255, + 23.290025325466488 + ], + [ + 71.6156047361899, + 23.290025325466488 + ], + [ + 71.73044741967358, + 23.48467306039494 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.73044741967358, + 23.873968530251844 + ], + [ + 71.6156047361899, + 24.068616265180296 + ], + [ + 71.38591936922255, + 24.068616265180296 + ], + [ + 71.27107668573886, + 23.873968530251844 + ], + [ + 71.38591936922255, + 23.67932079532339 + ], + [ + 71.6156047361899, + 23.67932079532339 + ], + [ + 71.73044741967358, + 23.873968530251844 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.73044741967358, + 24.263264000108748 + ], + [ + 71.6156047361899, + 24.4579117350372 + ], + [ + 71.38591936922255, + 24.4579117350372 + ], + [ + 71.27107668573886, + 24.263264000108748 + ], + [ + 71.38591936922255, + 24.068616265180296 + ], + [ + 71.6156047361899, + 24.068616265180296 + ], + [ + 71.73044741967358, + 24.263264000108748 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.73044741967358, + 24.652559469965656 + ], + [ + 71.6156047361899, + 24.847207204894108 + ], + [ + 71.38591936922255, + 24.847207204894108 + ], + [ + 71.27107668573886, + 24.652559469965656 + ], + [ + 71.38591936922255, + 24.457911735037204 + ], + [ + 71.6156047361899, + 24.457911735037204 + ], + [ + 71.73044741967358, + 24.652559469965656 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.73044741967358, + 25.041854939822564 + ], + [ + 71.6156047361899, + 25.236502674751016 + ], + [ + 71.38591936922255, + 25.236502674751016 + ], + [ + 71.27107668573886, + 25.041854939822564 + ], + [ + 71.38591936922255, + 24.84720720489411 + ], + [ + 71.6156047361899, + 24.84720720489411 + ], + [ + 71.73044741967358, + 25.041854939822564 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.73044741967358, + 25.431150409679468 + ], + [ + 71.6156047361899, + 25.62579814460792 + ], + [ + 71.38591936922255, + 25.62579814460792 + ], + [ + 71.27107668573886, + 25.431150409679468 + ], + [ + 71.38591936922255, + 25.236502674751016 + ], + [ + 71.6156047361899, + 25.236502674751016 + ], + [ + 71.73044741967358, + 25.431150409679468 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.73044741967358, + 25.820445879536376 + ], + [ + 71.6156047361899, + 26.015093614464828 + ], + [ + 71.38591936922255, + 26.015093614464828 + ], + [ + 71.27107668573886, + 25.820445879536376 + ], + [ + 71.38591936922255, + 25.625798144607923 + ], + [ + 71.6156047361899, + 25.625798144607923 + ], + [ + 71.73044741967358, + 25.820445879536376 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.73044741967358, + 26.209741349393283 + ], + [ + 71.6156047361899, + 26.404389084321735 + ], + [ + 71.38591936922255, + 26.404389084321735 + ], + [ + 71.27107668573886, + 26.209741349393283 + ], + [ + 71.38591936922255, + 26.01509361446483 + ], + [ + 71.6156047361899, + 26.01509361446483 + ], + [ + 71.73044741967358, + 26.209741349393283 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.73044741967358, + 26.599036819250188 + ], + [ + 71.6156047361899, + 26.79368455417864 + ], + [ + 71.38591936922255, + 26.79368455417864 + ], + [ + 71.27107668573886, + 26.599036819250188 + ], + [ + 71.38591936922255, + 26.404389084321735 + ], + [ + 71.6156047361899, + 26.404389084321735 + ], + [ + 71.73044741967358, + 26.599036819250188 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.73044741967358, + 26.988332289107095 + ], + [ + 71.6156047361899, + 27.182980024035547 + ], + [ + 71.38591936922255, + 27.182980024035547 + ], + [ + 71.27107668573886, + 26.988332289107095 + ], + [ + 71.38591936922255, + 26.793684554178643 + ], + [ + 71.6156047361899, + 26.793684554178643 + ], + [ + 71.73044741967358, + 26.988332289107095 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.73044741967358, + 27.377627758964003 + ], + [ + 71.6156047361899, + 27.572275493892455 + ], + [ + 71.38591936922255, + 27.572275493892455 + ], + [ + 71.27107668573886, + 27.377627758964003 + ], + [ + 71.38591936922255, + 27.18298002403555 + ], + [ + 71.6156047361899, + 27.18298002403555 + ], + [ + 71.73044741967358, + 27.377627758964003 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.73044741967358, + 27.766923228820907 + ], + [ + 71.6156047361899, + 27.96157096374936 + ], + [ + 71.38591936922255, + 27.96157096374936 + ], + [ + 71.27107668573886, + 27.766923228820907 + ], + [ + 71.38591936922255, + 27.572275493892455 + ], + [ + 71.6156047361899, + 27.572275493892455 + ], + [ + 71.73044741967358, + 27.766923228820907 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.73044741967358, + 28.156218698677815 + ], + [ + 71.6156047361899, + 28.350866433606267 + ], + [ + 71.38591936922255, + 28.350866433606267 + ], + [ + 71.27107668573886, + 28.156218698677815 + ], + [ + 71.38591936922255, + 27.961570963749363 + ], + [ + 71.6156047361899, + 27.961570963749363 + ], + [ + 71.73044741967358, + 28.156218698677815 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.73044741967358, + 28.54551416853472 + ], + [ + 71.6156047361899, + 28.74016190346317 + ], + [ + 71.38591936922255, + 28.74016190346317 + ], + [ + 71.27107668573886, + 28.54551416853472 + ], + [ + 71.38591936922255, + 28.350866433606267 + ], + [ + 71.6156047361899, + 28.350866433606267 + ], + [ + 71.73044741967358, + 28.54551416853472 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.73044741967358, + 28.934809638391627 + ], + [ + 71.6156047361899, + 29.12945737332008 + ], + [ + 71.38591936922255, + 29.12945737332008 + ], + [ + 71.27107668573886, + 28.934809638391627 + ], + [ + 71.38591936922255, + 28.740161903463175 + ], + [ + 71.6156047361899, + 28.740161903463175 + ], + [ + 71.73044741967358, + 28.934809638391627 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.73044741967358, + 29.32410510824853 + ], + [ + 71.6156047361899, + 29.518752843176983 + ], + [ + 71.38591936922255, + 29.518752843176983 + ], + [ + 71.27107668573886, + 29.32410510824853 + ], + [ + 71.38591936922255, + 29.12945737332008 + ], + [ + 71.6156047361899, + 29.12945737332008 + ], + [ + 71.73044741967358, + 29.32410510824853 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.73044741967358, + 29.71340057810544 + ], + [ + 71.6156047361899, + 29.90804831303389 + ], + [ + 71.38591936922255, + 29.90804831303389 + ], + [ + 71.27107668573886, + 29.71340057810544 + ], + [ + 71.38591936922255, + 29.518752843176987 + ], + [ + 71.6156047361899, + 29.518752843176987 + ], + [ + 71.73044741967358, + 29.71340057810544 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.73044741967358, + 30.102696047962343 + ], + [ + 71.6156047361899, + 30.297343782890795 + ], + [ + 71.38591936922255, + 30.297343782890795 + ], + [ + 71.27107668573886, + 30.102696047962343 + ], + [ + 71.38591936922255, + 29.90804831303389 + ], + [ + 71.6156047361899, + 29.90804831303389 + ], + [ + 71.73044741967358, + 30.102696047962343 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.73044741967358, + 30.49199151781925 + ], + [ + 71.6156047361899, + 30.686639252747703 + ], + [ + 71.38591936922255, + 30.686639252747703 + ], + [ + 71.27107668573886, + 30.49199151781925 + ], + [ + 71.38591936922255, + 30.2973437828908 + ], + [ + 71.6156047361899, + 30.2973437828908 + ], + [ + 71.73044741967358, + 30.49199151781925 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.73044741967358, + 30.88128698767616 + ], + [ + 71.6156047361899, + 31.07593472260461 + ], + [ + 71.38591936922255, + 31.07593472260461 + ], + [ + 71.27107668573886, + 30.88128698767616 + ], + [ + 71.38591936922255, + 30.686639252747707 + ], + [ + 71.6156047361899, + 30.686639252747707 + ], + [ + 71.73044741967358, + 30.88128698767616 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.73044741967358, + 31.270582457533063 + ], + [ + 71.6156047361899, + 31.465230192461515 + ], + [ + 71.38591936922255, + 31.465230192461515 + ], + [ + 71.27107668573886, + 31.270582457533063 + ], + [ + 71.38591936922255, + 31.07593472260461 + ], + [ + 71.6156047361899, + 31.07593472260461 + ], + [ + 71.73044741967358, + 31.270582457533063 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.73044741967358, + 31.65987792738997 + ], + [ + 71.6156047361899, + 31.854525662318423 + ], + [ + 71.38591936922255, + 31.854525662318423 + ], + [ + 71.27107668573886, + 31.65987792738997 + ], + [ + 71.38591936922255, + 31.46523019246152 + ], + [ + 71.6156047361899, + 31.46523019246152 + ], + [ + 71.73044741967358, + 31.65987792738997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.73044741967358, + 32.049173397246875 + ], + [ + 71.6156047361899, + 32.24382113217533 + ], + [ + 71.38591936922255, + 32.24382113217533 + ], + [ + 71.27107668573886, + 32.049173397246875 + ], + [ + 71.38591936922255, + 31.854525662318423 + ], + [ + 71.6156047361899, + 31.854525662318423 + ], + [ + 71.73044741967358, + 32.049173397246875 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.73044741967358, + 32.438468867103786 + ], + [ + 71.6156047361899, + 32.63311660203224 + ], + [ + 71.38591936922255, + 32.63311660203224 + ], + [ + 71.27107668573886, + 32.438468867103786 + ], + [ + 71.38591936922255, + 32.243821132175334 + ], + [ + 71.6156047361899, + 32.243821132175334 + ], + [ + 71.73044741967358, + 32.438468867103786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.73044741967358, + 32.82776433696069 + ], + [ + 71.6156047361899, + 33.02241207188914 + ], + [ + 71.38591936922255, + 33.02241207188914 + ], + [ + 71.27107668573886, + 32.82776433696069 + ], + [ + 71.38591936922255, + 32.63311660203224 + ], + [ + 71.6156047361899, + 32.63311660203224 + ], + [ + 71.73044741967358, + 32.82776433696069 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.73044741967358, + 33.217059806817595 + ], + [ + 71.6156047361899, + 33.41170754174605 + ], + [ + 71.38591936922255, + 33.41170754174605 + ], + [ + 71.27107668573886, + 33.217059806817595 + ], + [ + 71.38591936922255, + 33.02241207188914 + ], + [ + 71.6156047361899, + 33.02241207188914 + ], + [ + 71.73044741967358, + 33.217059806817595 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.73044741967358, + 33.6063552766745 + ], + [ + 71.6156047361899, + 33.80100301160295 + ], + [ + 71.38591936922255, + 33.80100301160295 + ], + [ + 71.27107668573886, + 33.6063552766745 + ], + [ + 71.38591936922255, + 33.41170754174605 + ], + [ + 71.6156047361899, + 33.41170754174605 + ], + [ + 71.73044741967358, + 33.6063552766745 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.73044741967358, + 33.9956507465314 + ], + [ + 71.6156047361899, + 34.190298481459855 + ], + [ + 71.38591936922255, + 34.190298481459855 + ], + [ + 71.27107668573886, + 33.9956507465314 + ], + [ + 71.38591936922255, + 33.80100301160295 + ], + [ + 71.6156047361899, + 33.80100301160295 + ], + [ + 71.73044741967358, + 33.9956507465314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.73044741967358, + 34.384946216388315 + ], + [ + 71.6156047361899, + 34.57959395131677 + ], + [ + 71.38591936922255, + 34.57959395131677 + ], + [ + 71.27107668573886, + 34.384946216388315 + ], + [ + 71.38591936922255, + 34.19029848145986 + ], + [ + 71.6156047361899, + 34.19029848145986 + ], + [ + 71.73044741967358, + 34.384946216388315 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.73044741967358, + 34.774241686245226 + ], + [ + 71.6156047361899, + 34.96888942117368 + ], + [ + 71.38591936922255, + 34.96888942117368 + ], + [ + 71.27107668573886, + 34.774241686245226 + ], + [ + 71.38591936922255, + 34.579593951316774 + ], + [ + 71.6156047361899, + 34.579593951316774 + ], + [ + 71.73044741967358, + 34.774241686245226 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.73044741967358, + 35.16353715610213 + ], + [ + 71.6156047361899, + 35.35818489103058 + ], + [ + 71.38591936922255, + 35.35818489103058 + ], + [ + 71.27107668573886, + 35.16353715610213 + ], + [ + 71.38591936922255, + 34.96888942117368 + ], + [ + 71.6156047361899, + 34.96888942117368 + ], + [ + 71.73044741967358, + 35.16353715610213 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.73044741967358, + 35.552832625959034 + ], + [ + 71.6156047361899, + 35.74748036088749 + ], + [ + 71.38591936922255, + 35.74748036088749 + ], + [ + 71.27107668573886, + 35.552832625959034 + ], + [ + 71.38591936922255, + 35.35818489103058 + ], + [ + 71.6156047361899, + 35.35818489103058 + ], + [ + 71.73044741967358, + 35.552832625959034 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.73044741967358, + 35.94212809581594 + ], + [ + 71.6156047361899, + 36.13677583074439 + ], + [ + 71.38591936922255, + 36.13677583074439 + ], + [ + 71.27107668573886, + 35.94212809581594 + ], + [ + 71.38591936922255, + 35.74748036088749 + ], + [ + 71.6156047361899, + 35.74748036088749 + ], + [ + 71.73044741967358, + 35.94212809581594 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.73044741967358, + 36.33142356567284 + ], + [ + 71.6156047361899, + 36.526071300601295 + ], + [ + 71.38591936922255, + 36.526071300601295 + ], + [ + 71.27107668573886, + 36.33142356567284 + ], + [ + 71.38591936922255, + 36.13677583074439 + ], + [ + 71.6156047361899, + 36.13677583074439 + ], + [ + 71.73044741967358, + 36.33142356567284 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.73044741967358, + 36.720719035529754 + ], + [ + 71.6156047361899, + 36.915366770458206 + ], + [ + 71.38591936922255, + 36.915366770458206 + ], + [ + 71.27107668573886, + 36.720719035529754 + ], + [ + 71.38591936922255, + 36.5260713006013 + ], + [ + 71.6156047361899, + 36.5260713006013 + ], + [ + 71.73044741967358, + 36.720719035529754 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.73044741967358, + 37.11001450538666 + ], + [ + 71.6156047361899, + 37.30466224031511 + ], + [ + 71.38591936922255, + 37.30466224031511 + ], + [ + 71.27107668573886, + 37.11001450538666 + ], + [ + 71.38591936922255, + 36.915366770458206 + ], + [ + 71.6156047361899, + 36.915366770458206 + ], + [ + 71.73044741967358, + 37.11001450538666 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.73044741967358, + 37.49930997524357 + ], + [ + 71.6156047361899, + 37.69395771017202 + ], + [ + 71.38591936922255, + 37.69395771017202 + ], + [ + 71.27107668573886, + 37.49930997524357 + ], + [ + 71.38591936922255, + 37.30466224031512 + ], + [ + 71.6156047361899, + 37.30466224031512 + ], + [ + 71.73044741967358, + 37.49930997524357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.73044741967358, + 37.888605445100474 + ], + [ + 71.6156047361899, + 38.083253180028926 + ], + [ + 71.38591936922255, + 38.083253180028926 + ], + [ + 71.27107668573886, + 37.888605445100474 + ], + [ + 71.38591936922255, + 37.69395771017202 + ], + [ + 71.6156047361899, + 37.69395771017202 + ], + [ + 71.73044741967358, + 37.888605445100474 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.73044741967358, + 38.27790091495738 + ], + [ + 71.6156047361899, + 38.47254864988583 + ], + [ + 71.38591936922255, + 38.47254864988583 + ], + [ + 71.27107668573886, + 38.27790091495738 + ], + [ + 71.38591936922255, + 38.083253180028926 + ], + [ + 71.6156047361899, + 38.083253180028926 + ], + [ + 71.73044741967358, + 38.27790091495738 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.73044741967358, + 38.66719638481428 + ], + [ + 71.6156047361899, + 38.861844119742734 + ], + [ + 71.38591936922255, + 38.861844119742734 + ], + [ + 71.27107668573886, + 38.66719638481428 + ], + [ + 71.38591936922255, + 38.47254864988583 + ], + [ + 71.6156047361899, + 38.47254864988583 + ], + [ + 71.73044741967358, + 38.66719638481428 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.73044741967358, + 39.05649185467119 + ], + [ + 71.6156047361899, + 39.25113958959964 + ], + [ + 71.38591936922255, + 39.25113958959964 + ], + [ + 71.27107668573886, + 39.05649185467119 + ], + [ + 71.38591936922255, + 38.861844119742734 + ], + [ + 71.6156047361899, + 38.861844119742734 + ], + [ + 71.73044741967358, + 39.05649185467119 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.73044741967358, + 39.4457873245281 + ], + [ + 71.6156047361899, + 39.64043505945655 + ], + [ + 71.38591936922255, + 39.64043505945655 + ], + [ + 71.27107668573886, + 39.4457873245281 + ], + [ + 71.38591936922255, + 39.251139589599646 + ], + [ + 71.6156047361899, + 39.251139589599646 + ], + [ + 71.73044741967358, + 39.4457873245281 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.73044741967358, + 39.835082794385 + ], + [ + 71.6156047361899, + 40.029730529313454 + ], + [ + 71.38591936922255, + 40.029730529313454 + ], + [ + 71.27107668573886, + 39.835082794385 + ], + [ + 71.38591936922255, + 39.64043505945655 + ], + [ + 71.6156047361899, + 39.64043505945655 + ], + [ + 71.73044741967358, + 39.835082794385 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.73044741967358, + 40.22437826424191 + ], + [ + 71.6156047361899, + 40.419025999170366 + ], + [ + 71.38591936922255, + 40.419025999170366 + ], + [ + 71.27107668573886, + 40.22437826424191 + ], + [ + 71.38591936922255, + 40.02973052931346 + ], + [ + 71.6156047361899, + 40.02973052931346 + ], + [ + 71.73044741967358, + 40.22437826424191 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.73044741967358, + 40.61367373409882 + ], + [ + 71.6156047361899, + 40.80832146902727 + ], + [ + 71.38591936922255, + 40.80832146902727 + ], + [ + 71.27107668573886, + 40.61367373409882 + ], + [ + 71.38591936922255, + 40.419025999170366 + ], + [ + 71.6156047361899, + 40.419025999170366 + ], + [ + 71.73044741967358, + 40.61367373409882 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.73044741967358, + 41.00296920395572 + ], + [ + 71.6156047361899, + 41.197616938884174 + ], + [ + 71.38591936922255, + 41.197616938884174 + ], + [ + 71.27107668573886, + 41.00296920395572 + ], + [ + 71.38591936922255, + 40.80832146902727 + ], + [ + 71.6156047361899, + 40.80832146902727 + ], + [ + 71.73044741967358, + 41.00296920395572 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.73044741967358, + 41.392264673812626 + ], + [ + 71.6156047361899, + 41.58691240874108 + ], + [ + 71.38591936922255, + 41.58691240874108 + ], + [ + 71.27107668573886, + 41.392264673812626 + ], + [ + 71.38591936922255, + 41.197616938884174 + ], + [ + 71.6156047361899, + 41.197616938884174 + ], + [ + 71.73044741967358, + 41.392264673812626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.73044741967358, + 41.78156014366953 + ], + [ + 71.6156047361899, + 41.97620787859798 + ], + [ + 71.38591936922255, + 41.97620787859798 + ], + [ + 71.27107668573886, + 41.78156014366953 + ], + [ + 71.38591936922255, + 41.58691240874108 + ], + [ + 71.6156047361899, + 41.58691240874108 + ], + [ + 71.73044741967358, + 41.78156014366953 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.73044741967358, + 42.17085561352644 + ], + [ + 71.6156047361899, + 42.365503348454894 + ], + [ + 71.38591936922255, + 42.365503348454894 + ], + [ + 71.27107668573886, + 42.17085561352644 + ], + [ + 71.38591936922255, + 41.97620787859799 + ], + [ + 71.6156047361899, + 41.97620787859799 + ], + [ + 71.73044741967358, + 42.17085561352644 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.73044741967358, + 42.56015108338335 + ], + [ + 71.6156047361899, + 42.754798818311805 + ], + [ + 71.38591936922255, + 42.754798818311805 + ], + [ + 71.27107668573886, + 42.56015108338335 + ], + [ + 71.38591936922255, + 42.3655033484549 + ], + [ + 71.6156047361899, + 42.3655033484549 + ], + [ + 71.73044741967358, + 42.56015108338335 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.73044741967358, + 42.94944655324026 + ], + [ + 71.6156047361899, + 43.14409428816871 + ], + [ + 71.38591936922255, + 43.14409428816871 + ], + [ + 71.27107668573886, + 42.94944655324026 + ], + [ + 71.38591936922255, + 42.754798818311805 + ], + [ + 71.6156047361899, + 42.754798818311805 + ], + [ + 71.73044741967358, + 42.94944655324026 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.73044741967358, + 43.33874202309716 + ], + [ + 71.6156047361899, + 43.53338975802561 + ], + [ + 71.38591936922255, + 43.53338975802561 + ], + [ + 71.27107668573886, + 43.33874202309716 + ], + [ + 71.38591936922255, + 43.14409428816871 + ], + [ + 71.6156047361899, + 43.14409428816871 + ], + [ + 71.73044741967358, + 43.33874202309716 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.73044741967358, + 43.728037492954066 + ], + [ + 71.6156047361899, + 43.92268522788252 + ], + [ + 71.38591936922255, + 43.92268522788252 + ], + [ + 71.27107668573886, + 43.728037492954066 + ], + [ + 71.38591936922255, + 43.53338975802561 + ], + [ + 71.6156047361899, + 43.53338975802561 + ], + [ + 71.73044741967358, + 43.728037492954066 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.73044741967358, + 44.11733296281097 + ], + [ + 71.6156047361899, + 44.31198069773942 + ], + [ + 71.38591936922255, + 44.31198069773942 + ], + [ + 71.27107668573886, + 44.11733296281097 + ], + [ + 71.38591936922255, + 43.92268522788252 + ], + [ + 71.6156047361899, + 43.92268522788252 + ], + [ + 71.73044741967358, + 44.11733296281097 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.73044741967358, + 44.506628432667874 + ], + [ + 71.6156047361899, + 44.701276167596326 + ], + [ + 71.38591936922255, + 44.701276167596326 + ], + [ + 71.27107668573886, + 44.506628432667874 + ], + [ + 71.38591936922255, + 44.31198069773942 + ], + [ + 71.6156047361899, + 44.31198069773942 + ], + [ + 71.73044741967358, + 44.506628432667874 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.73044741967358, + 44.89592390252479 + ], + [ + 71.6156047361899, + 45.090571637453245 + ], + [ + 71.38591936922255, + 45.090571637453245 + ], + [ + 71.27107668573886, + 44.89592390252479 + ], + [ + 71.38591936922255, + 44.70127616759634 + ], + [ + 71.6156047361899, + 44.70127616759634 + ], + [ + 71.73044741967358, + 44.89592390252479 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.73044741967358, + 45.2852193723817 + ], + [ + 71.6156047361899, + 45.47986710731015 + ], + [ + 71.38591936922255, + 45.47986710731015 + ], + [ + 71.27107668573886, + 45.2852193723817 + ], + [ + 71.38591936922255, + 45.090571637453245 + ], + [ + 71.6156047361899, + 45.090571637453245 + ], + [ + 71.73044741967358, + 45.2852193723817 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.73044741967358, + 45.6745148422386 + ], + [ + 71.6156047361899, + 45.86916257716705 + ], + [ + 71.38591936922255, + 45.86916257716705 + ], + [ + 71.27107668573886, + 45.6745148422386 + ], + [ + 71.38591936922255, + 45.47986710731015 + ], + [ + 71.6156047361899, + 45.47986710731015 + ], + [ + 71.73044741967358, + 45.6745148422386 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.73044741967358, + 46.063810312095505 + ], + [ + 71.6156047361899, + 46.25845804702396 + ], + [ + 71.38591936922255, + 46.25845804702396 + ], + [ + 71.27107668573886, + 46.063810312095505 + ], + [ + 71.38591936922255, + 45.86916257716705 + ], + [ + 71.6156047361899, + 45.86916257716705 + ], + [ + 71.73044741967358, + 46.063810312095505 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.73044741967358, + 46.45310578195241 + ], + [ + 71.6156047361899, + 46.64775351688086 + ], + [ + 71.38591936922255, + 46.64775351688086 + ], + [ + 71.27107668573886, + 46.45310578195241 + ], + [ + 71.38591936922255, + 46.25845804702396 + ], + [ + 71.6156047361899, + 46.25845804702396 + ], + [ + 71.73044741967358, + 46.45310578195241 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.73044741967358, + 46.842401251809314 + ], + [ + 71.6156047361899, + 47.037048986737766 + ], + [ + 71.38591936922255, + 47.037048986737766 + ], + [ + 71.27107668573886, + 46.842401251809314 + ], + [ + 71.38591936922255, + 46.64775351688086 + ], + [ + 71.6156047361899, + 46.64775351688086 + ], + [ + 71.73044741967358, + 46.842401251809314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.73044741967358, + 47.23169672166622 + ], + [ + 71.6156047361899, + 47.42634445659467 + ], + [ + 71.38591936922255, + 47.42634445659467 + ], + [ + 71.27107668573886, + 47.23169672166622 + ], + [ + 71.38591936922255, + 47.037048986737766 + ], + [ + 71.6156047361899, + 47.037048986737766 + ], + [ + 71.73044741967358, + 47.23169672166622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.73044741967358, + 47.620992191523136 + ], + [ + 71.6156047361899, + 47.81563992645159 + ], + [ + 71.38591936922255, + 47.81563992645159 + ], + [ + 71.27107668573886, + 47.620992191523136 + ], + [ + 71.38591936922255, + 47.426344456594684 + ], + [ + 71.6156047361899, + 47.426344456594684 + ], + [ + 71.73044741967358, + 47.620992191523136 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.07497547012463, + 12.0004566996162 + ], + [ + 71.96013278664094, + 12.195104434544653 + ], + [ + 71.7304474196736, + 12.195104434544653 + ], + [ + 71.61560473618991, + 12.0004566996162 + ], + [ + 71.7304474196736, + 11.805808964687746 + ], + [ + 71.96013278664094, + 11.805808964687746 + ], + [ + 72.07497547012463, + 12.0004566996162 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.07497547012463, + 12.389752169473105 + ], + [ + 71.96013278664094, + 12.58439990440156 + ], + [ + 71.7304474196736, + 12.58439990440156 + ], + [ + 71.61560473618991, + 12.389752169473105 + ], + [ + 71.7304474196736, + 12.195104434544652 + ], + [ + 71.96013278664094, + 12.195104434544652 + ], + [ + 72.07497547012463, + 12.389752169473105 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.07497547012463, + 12.779047639330013 + ], + [ + 71.96013278664094, + 12.973695374258467 + ], + [ + 71.7304474196736, + 12.973695374258467 + ], + [ + 71.61560473618991, + 12.779047639330013 + ], + [ + 71.7304474196736, + 12.58439990440156 + ], + [ + 71.96013278664094, + 12.58439990440156 + ], + [ + 72.07497547012463, + 12.779047639330013 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.07497547012463, + 13.16834310918692 + ], + [ + 71.96013278664094, + 13.362990844115373 + ], + [ + 71.7304474196736, + 13.362990844115373 + ], + [ + 71.61560473618991, + 13.16834310918692 + ], + [ + 71.7304474196736, + 12.973695374258465 + ], + [ + 71.96013278664094, + 12.973695374258465 + ], + [ + 72.07497547012463, + 13.16834310918692 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.07497547012463, + 13.557638579043825 + ], + [ + 71.96013278664094, + 13.752286313972279 + ], + [ + 71.7304474196736, + 13.752286313972279 + ], + [ + 71.61560473618991, + 13.557638579043825 + ], + [ + 71.7304474196736, + 13.362990844115371 + ], + [ + 71.96013278664094, + 13.362990844115371 + ], + [ + 72.07497547012463, + 13.557638579043825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.07497547012463, + 13.946934048900731 + ], + [ + 71.96013278664094, + 14.141581783829185 + ], + [ + 71.7304474196736, + 14.141581783829185 + ], + [ + 71.61560473618991, + 13.946934048900731 + ], + [ + 71.7304474196736, + 13.752286313972277 + ], + [ + 71.96013278664094, + 13.752286313972277 + ], + [ + 72.07497547012463, + 13.946934048900731 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.07497547012463, + 14.336229518757637 + ], + [ + 71.96013278664094, + 14.530877253686091 + ], + [ + 71.7304474196736, + 14.530877253686091 + ], + [ + 71.61560473618991, + 14.336229518757637 + ], + [ + 71.7304474196736, + 14.141581783829183 + ], + [ + 71.96013278664094, + 14.141581783829183 + ], + [ + 72.07497547012463, + 14.336229518757637 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.07497547012463, + 14.725524988614545 + ], + [ + 71.96013278664094, + 14.920172723542999 + ], + [ + 71.7304474196736, + 14.920172723542999 + ], + [ + 71.61560473618991, + 14.725524988614545 + ], + [ + 71.7304474196736, + 14.530877253686091 + ], + [ + 71.96013278664094, + 14.530877253686091 + ], + [ + 72.07497547012463, + 14.725524988614545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.07497547012463, + 15.114820458471451 + ], + [ + 71.96013278664094, + 15.309468193399905 + ], + [ + 71.7304474196736, + 15.309468193399905 + ], + [ + 71.61560473618991, + 15.114820458471451 + ], + [ + 71.7304474196736, + 14.920172723542997 + ], + [ + 71.96013278664094, + 14.920172723542997 + ], + [ + 72.07497547012463, + 15.114820458471451 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.07497547012463, + 15.504115928328357 + ], + [ + 71.96013278664094, + 15.69876366325681 + ], + [ + 71.7304474196736, + 15.69876366325681 + ], + [ + 71.61560473618991, + 15.504115928328357 + ], + [ + 71.7304474196736, + 15.309468193399903 + ], + [ + 71.96013278664094, + 15.309468193399903 + ], + [ + 72.07497547012463, + 15.504115928328357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.07497547012463, + 15.893411398185265 + ], + [ + 71.96013278664094, + 16.088059133113717 + ], + [ + 71.7304474196736, + 16.088059133113717 + ], + [ + 71.61560473618991, + 15.893411398185265 + ], + [ + 71.7304474196736, + 15.69876366325681 + ], + [ + 71.96013278664094, + 15.69876366325681 + ], + [ + 72.07497547012463, + 15.893411398185265 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.07497547012463, + 16.28270686804217 + ], + [ + 71.96013278664094, + 16.47735460297062 + ], + [ + 71.7304474196736, + 16.47735460297062 + ], + [ + 71.61560473618991, + 16.28270686804217 + ], + [ + 71.7304474196736, + 16.088059133113717 + ], + [ + 71.96013278664094, + 16.088059133113717 + ], + [ + 72.07497547012463, + 16.28270686804217 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.07497547012463, + 16.672002337899077 + ], + [ + 71.96013278664094, + 16.86665007282753 + ], + [ + 71.7304474196736, + 16.86665007282753 + ], + [ + 71.61560473618991, + 16.672002337899077 + ], + [ + 71.7304474196736, + 16.477354602970625 + ], + [ + 71.96013278664094, + 16.477354602970625 + ], + [ + 72.07497547012463, + 16.672002337899077 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.07497547012463, + 17.06129780775598 + ], + [ + 71.96013278664094, + 17.255945542684433 + ], + [ + 71.7304474196736, + 17.255945542684433 + ], + [ + 71.61560473618991, + 17.06129780775598 + ], + [ + 71.7304474196736, + 16.86665007282753 + ], + [ + 71.96013278664094, + 16.86665007282753 + ], + [ + 72.07497547012463, + 17.06129780775598 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.07497547012463, + 17.45059327761289 + ], + [ + 71.96013278664094, + 17.64524101254134 + ], + [ + 71.7304474196736, + 17.64524101254134 + ], + [ + 71.61560473618991, + 17.45059327761289 + ], + [ + 71.7304474196736, + 17.255945542684437 + ], + [ + 71.96013278664094, + 17.255945542684437 + ], + [ + 72.07497547012463, + 17.45059327761289 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.07497547012463, + 17.839888747469793 + ], + [ + 71.96013278664094, + 18.034536482398245 + ], + [ + 71.7304474196736, + 18.034536482398245 + ], + [ + 71.61560473618991, + 17.839888747469793 + ], + [ + 71.7304474196736, + 17.64524101254134 + ], + [ + 71.96013278664094, + 17.64524101254134 + ], + [ + 72.07497547012463, + 17.839888747469793 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.07497547012463, + 18.2291842173267 + ], + [ + 71.96013278664094, + 18.423831952255153 + ], + [ + 71.7304474196736, + 18.423831952255153 + ], + [ + 71.61560473618991, + 18.2291842173267 + ], + [ + 71.7304474196736, + 18.03453648239825 + ], + [ + 71.96013278664094, + 18.03453648239825 + ], + [ + 72.07497547012463, + 18.2291842173267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.07497547012463, + 18.61847968718361 + ], + [ + 71.96013278664094, + 18.81312742211206 + ], + [ + 71.7304474196736, + 18.81312742211206 + ], + [ + 71.61560473618991, + 18.61847968718361 + ], + [ + 71.7304474196736, + 18.423831952255156 + ], + [ + 71.96013278664094, + 18.423831952255156 + ], + [ + 72.07497547012463, + 18.61847968718361 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.07497547012463, + 19.007775157040513 + ], + [ + 71.96013278664094, + 19.202422891968965 + ], + [ + 71.7304474196736, + 19.202422891968965 + ], + [ + 71.61560473618991, + 19.007775157040513 + ], + [ + 71.7304474196736, + 18.81312742211206 + ], + [ + 71.96013278664094, + 18.81312742211206 + ], + [ + 72.07497547012463, + 19.007775157040513 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.07497547012463, + 19.39707062689742 + ], + [ + 71.96013278664094, + 19.591718361825873 + ], + [ + 71.7304474196736, + 19.591718361825873 + ], + [ + 71.61560473618991, + 19.39707062689742 + ], + [ + 71.7304474196736, + 19.20242289196897 + ], + [ + 71.96013278664094, + 19.20242289196897 + ], + [ + 72.07497547012463, + 19.39707062689742 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.07497547012463, + 19.78636609675433 + ], + [ + 71.96013278664094, + 19.98101383168278 + ], + [ + 71.7304474196736, + 19.98101383168278 + ], + [ + 71.61560473618991, + 19.78636609675433 + ], + [ + 71.7304474196736, + 19.591718361825876 + ], + [ + 71.96013278664094, + 19.591718361825876 + ], + [ + 72.07497547012463, + 19.78636609675433 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.07497547012463, + 20.175661566611232 + ], + [ + 71.96013278664094, + 20.370309301539685 + ], + [ + 71.7304474196736, + 20.370309301539685 + ], + [ + 71.61560473618991, + 20.175661566611232 + ], + [ + 71.7304474196736, + 19.98101383168278 + ], + [ + 71.96013278664094, + 19.98101383168278 + ], + [ + 72.07497547012463, + 20.175661566611232 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.07497547012463, + 20.564957036468137 + ], + [ + 71.96013278664094, + 20.75960477139659 + ], + [ + 71.7304474196736, + 20.75960477139659 + ], + [ + 71.61560473618991, + 20.564957036468137 + ], + [ + 71.7304474196736, + 20.370309301539685 + ], + [ + 71.96013278664094, + 20.370309301539685 + ], + [ + 72.07497547012463, + 20.564957036468137 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.07497547012463, + 20.954252506325044 + ], + [ + 71.96013278664094, + 21.148900241253497 + ], + [ + 71.7304474196736, + 21.148900241253497 + ], + [ + 71.61560473618991, + 20.954252506325044 + ], + [ + 71.7304474196736, + 20.759604771396592 + ], + [ + 71.96013278664094, + 20.759604771396592 + ], + [ + 72.07497547012463, + 20.954252506325044 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.07497547012463, + 21.343547976181952 + ], + [ + 71.96013278664094, + 21.538195711110404 + ], + [ + 71.7304474196736, + 21.538195711110404 + ], + [ + 71.61560473618991, + 21.343547976181952 + ], + [ + 71.7304474196736, + 21.1489002412535 + ], + [ + 71.96013278664094, + 21.1489002412535 + ], + [ + 72.07497547012463, + 21.343547976181952 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.07497547012463, + 21.732843446038856 + ], + [ + 71.96013278664094, + 21.92749118096731 + ], + [ + 71.7304474196736, + 21.92749118096731 + ], + [ + 71.61560473618991, + 21.732843446038856 + ], + [ + 71.7304474196736, + 21.538195711110404 + ], + [ + 71.96013278664094, + 21.538195711110404 + ], + [ + 72.07497547012463, + 21.732843446038856 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.07497547012463, + 22.122138915895764 + ], + [ + 71.96013278664094, + 22.316786650824216 + ], + [ + 71.7304474196736, + 22.316786650824216 + ], + [ + 71.61560473618991, + 22.122138915895764 + ], + [ + 71.7304474196736, + 21.927491180967312 + ], + [ + 71.96013278664094, + 21.927491180967312 + ], + [ + 72.07497547012463, + 22.122138915895764 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.07497547012463, + 22.511434385752672 + ], + [ + 71.96013278664094, + 22.706082120681124 + ], + [ + 71.7304474196736, + 22.706082120681124 + ], + [ + 71.61560473618991, + 22.511434385752672 + ], + [ + 71.7304474196736, + 22.31678665082422 + ], + [ + 71.96013278664094, + 22.31678665082422 + ], + [ + 72.07497547012463, + 22.511434385752672 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.07497547012463, + 22.900729855609576 + ], + [ + 71.96013278664094, + 23.09537759053803 + ], + [ + 71.7304474196736, + 23.09537759053803 + ], + [ + 71.61560473618991, + 22.900729855609576 + ], + [ + 71.7304474196736, + 22.706082120681124 + ], + [ + 71.96013278664094, + 22.706082120681124 + ], + [ + 72.07497547012463, + 22.900729855609576 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.07497547012463, + 23.290025325466484 + ], + [ + 71.96013278664094, + 23.484673060394936 + ], + [ + 71.7304474196736, + 23.484673060394936 + ], + [ + 71.61560473618991, + 23.290025325466484 + ], + [ + 71.7304474196736, + 23.095377590538032 + ], + [ + 71.96013278664094, + 23.095377590538032 + ], + [ + 72.07497547012463, + 23.290025325466484 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.07497547012463, + 23.67932079532339 + ], + [ + 71.96013278664094, + 23.873968530251844 + ], + [ + 71.7304474196736, + 23.873968530251844 + ], + [ + 71.61560473618991, + 23.67932079532339 + ], + [ + 71.7304474196736, + 23.48467306039494 + ], + [ + 71.96013278664094, + 23.48467306039494 + ], + [ + 72.07497547012463, + 23.67932079532339 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.07497547012463, + 24.068616265180296 + ], + [ + 71.96013278664094, + 24.263264000108748 + ], + [ + 71.7304474196736, + 24.263264000108748 + ], + [ + 71.61560473618991, + 24.068616265180296 + ], + [ + 71.7304474196736, + 23.873968530251844 + ], + [ + 71.96013278664094, + 23.873968530251844 + ], + [ + 72.07497547012463, + 24.068616265180296 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.07497547012463, + 24.4579117350372 + ], + [ + 71.96013278664094, + 24.652559469965652 + ], + [ + 71.7304474196736, + 24.652559469965652 + ], + [ + 71.61560473618991, + 24.4579117350372 + ], + [ + 71.7304474196736, + 24.263264000108748 + ], + [ + 71.96013278664094, + 24.263264000108748 + ], + [ + 72.07497547012463, + 24.4579117350372 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.07497547012463, + 24.847207204894108 + ], + [ + 71.96013278664094, + 25.04185493982256 + ], + [ + 71.7304474196736, + 25.04185493982256 + ], + [ + 71.61560473618991, + 24.847207204894108 + ], + [ + 71.7304474196736, + 24.652559469965656 + ], + [ + 71.96013278664094, + 24.652559469965656 + ], + [ + 72.07497547012463, + 24.847207204894108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.07497547012463, + 25.236502674751016 + ], + [ + 71.96013278664094, + 25.431150409679468 + ], + [ + 71.7304474196736, + 25.431150409679468 + ], + [ + 71.61560473618991, + 25.236502674751016 + ], + [ + 71.7304474196736, + 25.041854939822564 + ], + [ + 71.96013278664094, + 25.041854939822564 + ], + [ + 72.07497547012463, + 25.236502674751016 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.07497547012463, + 25.62579814460792 + ], + [ + 71.96013278664094, + 25.820445879536372 + ], + [ + 71.7304474196736, + 25.820445879536372 + ], + [ + 71.61560473618991, + 25.62579814460792 + ], + [ + 71.7304474196736, + 25.431150409679468 + ], + [ + 71.96013278664094, + 25.431150409679468 + ], + [ + 72.07497547012463, + 25.62579814460792 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.07497547012463, + 26.015093614464828 + ], + [ + 71.96013278664094, + 26.20974134939328 + ], + [ + 71.7304474196736, + 26.20974134939328 + ], + [ + 71.61560473618991, + 26.015093614464828 + ], + [ + 71.7304474196736, + 25.820445879536376 + ], + [ + 71.96013278664094, + 25.820445879536376 + ], + [ + 72.07497547012463, + 26.015093614464828 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.07497547012463, + 26.404389084321735 + ], + [ + 71.96013278664094, + 26.599036819250188 + ], + [ + 71.7304474196736, + 26.599036819250188 + ], + [ + 71.61560473618991, + 26.404389084321735 + ], + [ + 71.7304474196736, + 26.209741349393283 + ], + [ + 71.96013278664094, + 26.209741349393283 + ], + [ + 72.07497547012463, + 26.404389084321735 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.07497547012463, + 26.79368455417864 + ], + [ + 71.96013278664094, + 26.988332289107092 + ], + [ + 71.7304474196736, + 26.988332289107092 + ], + [ + 71.61560473618991, + 26.79368455417864 + ], + [ + 71.7304474196736, + 26.599036819250188 + ], + [ + 71.96013278664094, + 26.599036819250188 + ], + [ + 72.07497547012463, + 26.79368455417864 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.07497547012463, + 27.182980024035547 + ], + [ + 71.96013278664094, + 27.377627758964 + ], + [ + 71.7304474196736, + 27.377627758964 + ], + [ + 71.61560473618991, + 27.182980024035547 + ], + [ + 71.7304474196736, + 26.988332289107095 + ], + [ + 71.96013278664094, + 26.988332289107095 + ], + [ + 72.07497547012463, + 27.182980024035547 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.07497547012463, + 27.572275493892455 + ], + [ + 71.96013278664094, + 27.766923228820907 + ], + [ + 71.7304474196736, + 27.766923228820907 + ], + [ + 71.61560473618991, + 27.572275493892455 + ], + [ + 71.7304474196736, + 27.377627758964003 + ], + [ + 71.96013278664094, + 27.377627758964003 + ], + [ + 72.07497547012463, + 27.572275493892455 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.07497547012463, + 27.96157096374936 + ], + [ + 71.96013278664094, + 28.15621869867781 + ], + [ + 71.7304474196736, + 28.15621869867781 + ], + [ + 71.61560473618991, + 27.96157096374936 + ], + [ + 71.7304474196736, + 27.766923228820907 + ], + [ + 71.96013278664094, + 27.766923228820907 + ], + [ + 72.07497547012463, + 27.96157096374936 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.07497547012463, + 28.350866433606267 + ], + [ + 71.96013278664094, + 28.54551416853472 + ], + [ + 71.7304474196736, + 28.54551416853472 + ], + [ + 71.61560473618991, + 28.350866433606267 + ], + [ + 71.7304474196736, + 28.156218698677815 + ], + [ + 71.96013278664094, + 28.156218698677815 + ], + [ + 72.07497547012463, + 28.350866433606267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.07497547012463, + 28.74016190346317 + ], + [ + 71.96013278664094, + 28.934809638391624 + ], + [ + 71.7304474196736, + 28.934809638391624 + ], + [ + 71.61560473618991, + 28.74016190346317 + ], + [ + 71.7304474196736, + 28.54551416853472 + ], + [ + 71.96013278664094, + 28.54551416853472 + ], + [ + 72.07497547012463, + 28.74016190346317 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.07497547012463, + 29.12945737332008 + ], + [ + 71.96013278664094, + 29.32410510824853 + ], + [ + 71.7304474196736, + 29.32410510824853 + ], + [ + 71.61560473618991, + 29.12945737332008 + ], + [ + 71.7304474196736, + 28.934809638391627 + ], + [ + 71.96013278664094, + 28.934809638391627 + ], + [ + 72.07497547012463, + 29.12945737332008 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.07497547012463, + 29.518752843176983 + ], + [ + 71.96013278664094, + 29.713400578105436 + ], + [ + 71.7304474196736, + 29.713400578105436 + ], + [ + 71.61560473618991, + 29.518752843176983 + ], + [ + 71.7304474196736, + 29.32410510824853 + ], + [ + 71.96013278664094, + 29.32410510824853 + ], + [ + 72.07497547012463, + 29.518752843176983 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.07497547012463, + 29.90804831303389 + ], + [ + 71.96013278664094, + 30.102696047962343 + ], + [ + 71.7304474196736, + 30.102696047962343 + ], + [ + 71.61560473618991, + 29.90804831303389 + ], + [ + 71.7304474196736, + 29.71340057810544 + ], + [ + 71.96013278664094, + 29.71340057810544 + ], + [ + 72.07497547012463, + 29.90804831303389 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.07497547012463, + 30.297343782890795 + ], + [ + 71.96013278664094, + 30.491991517819248 + ], + [ + 71.7304474196736, + 30.491991517819248 + ], + [ + 71.61560473618991, + 30.297343782890795 + ], + [ + 71.7304474196736, + 30.102696047962343 + ], + [ + 71.96013278664094, + 30.102696047962343 + ], + [ + 72.07497547012463, + 30.297343782890795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.07497547012463, + 30.686639252747703 + ], + [ + 71.96013278664094, + 30.881286987676155 + ], + [ + 71.7304474196736, + 30.881286987676155 + ], + [ + 71.61560473618991, + 30.686639252747703 + ], + [ + 71.7304474196736, + 30.49199151781925 + ], + [ + 71.96013278664094, + 30.49199151781925 + ], + [ + 72.07497547012463, + 30.686639252747703 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.07497547012463, + 31.07593472260461 + ], + [ + 71.96013278664094, + 31.270582457533063 + ], + [ + 71.7304474196736, + 31.270582457533063 + ], + [ + 71.61560473618991, + 31.07593472260461 + ], + [ + 71.7304474196736, + 30.88128698767616 + ], + [ + 71.96013278664094, + 30.88128698767616 + ], + [ + 72.07497547012463, + 31.07593472260461 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.07497547012463, + 31.465230192461515 + ], + [ + 71.96013278664094, + 31.659877927389967 + ], + [ + 71.7304474196736, + 31.659877927389967 + ], + [ + 71.61560473618991, + 31.465230192461515 + ], + [ + 71.7304474196736, + 31.270582457533063 + ], + [ + 71.96013278664094, + 31.270582457533063 + ], + [ + 72.07497547012463, + 31.465230192461515 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.07497547012463, + 31.854525662318423 + ], + [ + 71.96013278664094, + 32.049173397246875 + ], + [ + 71.7304474196736, + 32.049173397246875 + ], + [ + 71.61560473618991, + 31.854525662318423 + ], + [ + 71.7304474196736, + 31.65987792738997 + ], + [ + 71.96013278664094, + 31.65987792738997 + ], + [ + 72.07497547012463, + 31.854525662318423 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.07497547012463, + 32.24382113217533 + ], + [ + 71.96013278664094, + 32.43846886710378 + ], + [ + 71.7304474196736, + 32.43846886710378 + ], + [ + 71.61560473618991, + 32.24382113217533 + ], + [ + 71.7304474196736, + 32.049173397246875 + ], + [ + 71.96013278664094, + 32.049173397246875 + ], + [ + 72.07497547012463, + 32.24382113217533 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.07497547012463, + 32.63311660203224 + ], + [ + 71.96013278664094, + 32.82776433696069 + ], + [ + 71.7304474196736, + 32.82776433696069 + ], + [ + 71.61560473618991, + 32.63311660203224 + ], + [ + 71.7304474196736, + 32.438468867103786 + ], + [ + 71.96013278664094, + 32.438468867103786 + ], + [ + 72.07497547012463, + 32.63311660203224 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.07497547012463, + 33.02241207188914 + ], + [ + 71.96013278664094, + 33.217059806817595 + ], + [ + 71.7304474196736, + 33.217059806817595 + ], + [ + 71.61560473618991, + 33.02241207188914 + ], + [ + 71.7304474196736, + 32.82776433696069 + ], + [ + 71.96013278664094, + 32.82776433696069 + ], + [ + 72.07497547012463, + 33.02241207188914 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.07497547012463, + 33.41170754174605 + ], + [ + 71.96013278664094, + 33.6063552766745 + ], + [ + 71.7304474196736, + 33.6063552766745 + ], + [ + 71.61560473618991, + 33.41170754174605 + ], + [ + 71.7304474196736, + 33.217059806817595 + ], + [ + 71.96013278664094, + 33.217059806817595 + ], + [ + 72.07497547012463, + 33.41170754174605 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.07497547012463, + 33.80100301160295 + ], + [ + 71.96013278664094, + 33.9956507465314 + ], + [ + 71.7304474196736, + 33.9956507465314 + ], + [ + 71.61560473618991, + 33.80100301160295 + ], + [ + 71.7304474196736, + 33.6063552766745 + ], + [ + 71.96013278664094, + 33.6063552766745 + ], + [ + 72.07497547012463, + 33.80100301160295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.07497547012463, + 34.190298481459855 + ], + [ + 71.96013278664094, + 34.38494621638831 + ], + [ + 71.7304474196736, + 34.38494621638831 + ], + [ + 71.61560473618991, + 34.190298481459855 + ], + [ + 71.7304474196736, + 33.9956507465314 + ], + [ + 71.96013278664094, + 33.9956507465314 + ], + [ + 72.07497547012463, + 34.190298481459855 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.07497547012463, + 34.57959395131677 + ], + [ + 71.96013278664094, + 34.77424168624522 + ], + [ + 71.7304474196736, + 34.77424168624522 + ], + [ + 71.61560473618991, + 34.57959395131677 + ], + [ + 71.7304474196736, + 34.384946216388315 + ], + [ + 71.96013278664094, + 34.384946216388315 + ], + [ + 72.07497547012463, + 34.57959395131677 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.07497547012463, + 34.96888942117368 + ], + [ + 71.96013278664094, + 35.16353715610213 + ], + [ + 71.7304474196736, + 35.16353715610213 + ], + [ + 71.61560473618991, + 34.96888942117368 + ], + [ + 71.7304474196736, + 34.774241686245226 + ], + [ + 71.96013278664094, + 34.774241686245226 + ], + [ + 72.07497547012463, + 34.96888942117368 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.07497547012463, + 35.35818489103058 + ], + [ + 71.96013278664094, + 35.552832625959034 + ], + [ + 71.7304474196736, + 35.552832625959034 + ], + [ + 71.61560473618991, + 35.35818489103058 + ], + [ + 71.7304474196736, + 35.16353715610213 + ], + [ + 71.96013278664094, + 35.16353715610213 + ], + [ + 72.07497547012463, + 35.35818489103058 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.07497547012463, + 35.74748036088749 + ], + [ + 71.96013278664094, + 35.94212809581594 + ], + [ + 71.7304474196736, + 35.94212809581594 + ], + [ + 71.61560473618991, + 35.74748036088749 + ], + [ + 71.7304474196736, + 35.552832625959034 + ], + [ + 71.96013278664094, + 35.552832625959034 + ], + [ + 72.07497547012463, + 35.74748036088749 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.07497547012463, + 36.13677583074439 + ], + [ + 71.96013278664094, + 36.33142356567284 + ], + [ + 71.7304474196736, + 36.33142356567284 + ], + [ + 71.61560473618991, + 36.13677583074439 + ], + [ + 71.7304474196736, + 35.94212809581594 + ], + [ + 71.96013278664094, + 35.94212809581594 + ], + [ + 72.07497547012463, + 36.13677583074439 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.07497547012463, + 36.526071300601295 + ], + [ + 71.96013278664094, + 36.72071903552975 + ], + [ + 71.7304474196736, + 36.72071903552975 + ], + [ + 71.61560473618991, + 36.526071300601295 + ], + [ + 71.7304474196736, + 36.33142356567284 + ], + [ + 71.96013278664094, + 36.33142356567284 + ], + [ + 72.07497547012463, + 36.526071300601295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.07497547012463, + 36.915366770458206 + ], + [ + 71.96013278664094, + 37.11001450538666 + ], + [ + 71.7304474196736, + 37.11001450538666 + ], + [ + 71.61560473618991, + 36.915366770458206 + ], + [ + 71.7304474196736, + 36.720719035529754 + ], + [ + 71.96013278664094, + 36.720719035529754 + ], + [ + 72.07497547012463, + 36.915366770458206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.07497547012463, + 37.30466224031511 + ], + [ + 71.96013278664094, + 37.49930997524356 + ], + [ + 71.7304474196736, + 37.49930997524356 + ], + [ + 71.61560473618991, + 37.30466224031511 + ], + [ + 71.7304474196736, + 37.11001450538666 + ], + [ + 71.96013278664094, + 37.11001450538666 + ], + [ + 72.07497547012463, + 37.30466224031511 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.07497547012463, + 37.69395771017202 + ], + [ + 71.96013278664094, + 37.888605445100474 + ], + [ + 71.7304474196736, + 37.888605445100474 + ], + [ + 71.61560473618991, + 37.69395771017202 + ], + [ + 71.7304474196736, + 37.49930997524357 + ], + [ + 71.96013278664094, + 37.49930997524357 + ], + [ + 72.07497547012463, + 37.69395771017202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.07497547012463, + 38.083253180028926 + ], + [ + 71.96013278664094, + 38.27790091495738 + ], + [ + 71.7304474196736, + 38.27790091495738 + ], + [ + 71.61560473618991, + 38.083253180028926 + ], + [ + 71.7304474196736, + 37.888605445100474 + ], + [ + 71.96013278664094, + 37.888605445100474 + ], + [ + 72.07497547012463, + 38.083253180028926 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.07497547012463, + 38.47254864988583 + ], + [ + 71.96013278664094, + 38.66719638481428 + ], + [ + 71.7304474196736, + 38.66719638481428 + ], + [ + 71.61560473618991, + 38.47254864988583 + ], + [ + 71.7304474196736, + 38.27790091495738 + ], + [ + 71.96013278664094, + 38.27790091495738 + ], + [ + 72.07497547012463, + 38.47254864988583 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.07497547012463, + 38.861844119742734 + ], + [ + 71.96013278664094, + 39.05649185467119 + ], + [ + 71.7304474196736, + 39.05649185467119 + ], + [ + 71.61560473618991, + 38.861844119742734 + ], + [ + 71.7304474196736, + 38.66719638481428 + ], + [ + 71.96013278664094, + 38.66719638481428 + ], + [ + 72.07497547012463, + 38.861844119742734 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.07497547012463, + 39.25113958959964 + ], + [ + 71.96013278664094, + 39.44578732452809 + ], + [ + 71.7304474196736, + 39.44578732452809 + ], + [ + 71.61560473618991, + 39.25113958959964 + ], + [ + 71.7304474196736, + 39.05649185467119 + ], + [ + 71.96013278664094, + 39.05649185467119 + ], + [ + 72.07497547012463, + 39.25113958959964 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.07497547012463, + 39.64043505945655 + ], + [ + 71.96013278664094, + 39.835082794385 + ], + [ + 71.7304474196736, + 39.835082794385 + ], + [ + 71.61560473618991, + 39.64043505945655 + ], + [ + 71.7304474196736, + 39.4457873245281 + ], + [ + 71.96013278664094, + 39.4457873245281 + ], + [ + 72.07497547012463, + 39.64043505945655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.07497547012463, + 40.029730529313454 + ], + [ + 71.96013278664094, + 40.224378264241906 + ], + [ + 71.7304474196736, + 40.224378264241906 + ], + [ + 71.61560473618991, + 40.029730529313454 + ], + [ + 71.7304474196736, + 39.835082794385 + ], + [ + 71.96013278664094, + 39.835082794385 + ], + [ + 72.07497547012463, + 40.029730529313454 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.07497547012463, + 40.419025999170366 + ], + [ + 71.96013278664094, + 40.61367373409882 + ], + [ + 71.7304474196736, + 40.61367373409882 + ], + [ + 71.61560473618991, + 40.419025999170366 + ], + [ + 71.7304474196736, + 40.22437826424191 + ], + [ + 71.96013278664094, + 40.22437826424191 + ], + [ + 72.07497547012463, + 40.419025999170366 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.07497547012463, + 40.80832146902727 + ], + [ + 71.96013278664094, + 41.00296920395572 + ], + [ + 71.7304474196736, + 41.00296920395572 + ], + [ + 71.61560473618991, + 40.80832146902727 + ], + [ + 71.7304474196736, + 40.61367373409882 + ], + [ + 71.96013278664094, + 40.61367373409882 + ], + [ + 72.07497547012463, + 40.80832146902727 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.07497547012463, + 41.197616938884174 + ], + [ + 71.96013278664094, + 41.392264673812626 + ], + [ + 71.7304474196736, + 41.392264673812626 + ], + [ + 71.61560473618991, + 41.197616938884174 + ], + [ + 71.7304474196736, + 41.00296920395572 + ], + [ + 71.96013278664094, + 41.00296920395572 + ], + [ + 72.07497547012463, + 41.197616938884174 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.07497547012463, + 41.58691240874108 + ], + [ + 71.96013278664094, + 41.78156014366953 + ], + [ + 71.7304474196736, + 41.78156014366953 + ], + [ + 71.61560473618991, + 41.58691240874108 + ], + [ + 71.7304474196736, + 41.392264673812626 + ], + [ + 71.96013278664094, + 41.392264673812626 + ], + [ + 72.07497547012463, + 41.58691240874108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.07497547012463, + 41.97620787859798 + ], + [ + 71.96013278664094, + 42.170855613526435 + ], + [ + 71.7304474196736, + 42.170855613526435 + ], + [ + 71.61560473618991, + 41.97620787859798 + ], + [ + 71.7304474196736, + 41.78156014366953 + ], + [ + 71.96013278664094, + 41.78156014366953 + ], + [ + 72.07497547012463, + 41.97620787859798 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.07497547012463, + 42.365503348454894 + ], + [ + 71.96013278664094, + 42.560151083383346 + ], + [ + 71.7304474196736, + 42.560151083383346 + ], + [ + 71.61560473618991, + 42.365503348454894 + ], + [ + 71.7304474196736, + 42.17085561352644 + ], + [ + 71.96013278664094, + 42.17085561352644 + ], + [ + 72.07497547012463, + 42.365503348454894 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.07497547012463, + 42.754798818311805 + ], + [ + 71.96013278664094, + 42.94944655324026 + ], + [ + 71.7304474196736, + 42.94944655324026 + ], + [ + 71.61560473618991, + 42.754798818311805 + ], + [ + 71.7304474196736, + 42.56015108338335 + ], + [ + 71.96013278664094, + 42.56015108338335 + ], + [ + 72.07497547012463, + 42.754798818311805 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.07497547012463, + 43.14409428816871 + ], + [ + 71.96013278664094, + 43.33874202309716 + ], + [ + 71.7304474196736, + 43.33874202309716 + ], + [ + 71.61560473618991, + 43.14409428816871 + ], + [ + 71.7304474196736, + 42.94944655324026 + ], + [ + 71.96013278664094, + 42.94944655324026 + ], + [ + 72.07497547012463, + 43.14409428816871 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.07497547012463, + 43.53338975802561 + ], + [ + 71.96013278664094, + 43.728037492954066 + ], + [ + 71.7304474196736, + 43.728037492954066 + ], + [ + 71.61560473618991, + 43.53338975802561 + ], + [ + 71.7304474196736, + 43.33874202309716 + ], + [ + 71.96013278664094, + 43.33874202309716 + ], + [ + 72.07497547012463, + 43.53338975802561 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.07497547012463, + 43.92268522788252 + ], + [ + 71.96013278664094, + 44.11733296281097 + ], + [ + 71.7304474196736, + 44.11733296281097 + ], + [ + 71.61560473618991, + 43.92268522788252 + ], + [ + 71.7304474196736, + 43.728037492954066 + ], + [ + 71.96013278664094, + 43.728037492954066 + ], + [ + 72.07497547012463, + 43.92268522788252 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.07497547012463, + 44.31198069773942 + ], + [ + 71.96013278664094, + 44.506628432667874 + ], + [ + 71.7304474196736, + 44.506628432667874 + ], + [ + 71.61560473618991, + 44.31198069773942 + ], + [ + 71.7304474196736, + 44.11733296281097 + ], + [ + 71.96013278664094, + 44.11733296281097 + ], + [ + 72.07497547012463, + 44.31198069773942 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.07497547012463, + 44.701276167596326 + ], + [ + 71.96013278664094, + 44.89592390252478 + ], + [ + 71.7304474196736, + 44.89592390252478 + ], + [ + 71.61560473618991, + 44.701276167596326 + ], + [ + 71.7304474196736, + 44.506628432667874 + ], + [ + 71.96013278664094, + 44.506628432667874 + ], + [ + 72.07497547012463, + 44.701276167596326 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.07497547012463, + 45.090571637453245 + ], + [ + 71.96013278664094, + 45.2852193723817 + ], + [ + 71.7304474196736, + 45.2852193723817 + ], + [ + 71.61560473618991, + 45.090571637453245 + ], + [ + 71.7304474196736, + 44.89592390252479 + ], + [ + 71.96013278664094, + 44.89592390252479 + ], + [ + 72.07497547012463, + 45.090571637453245 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.07497547012463, + 45.47986710731015 + ], + [ + 71.96013278664094, + 45.6745148422386 + ], + [ + 71.7304474196736, + 45.6745148422386 + ], + [ + 71.61560473618991, + 45.47986710731015 + ], + [ + 71.7304474196736, + 45.2852193723817 + ], + [ + 71.96013278664094, + 45.2852193723817 + ], + [ + 72.07497547012463, + 45.47986710731015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.07497547012463, + 45.86916257716705 + ], + [ + 71.96013278664094, + 46.063810312095505 + ], + [ + 71.7304474196736, + 46.063810312095505 + ], + [ + 71.61560473618991, + 45.86916257716705 + ], + [ + 71.7304474196736, + 45.6745148422386 + ], + [ + 71.96013278664094, + 45.6745148422386 + ], + [ + 72.07497547012463, + 45.86916257716705 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.07497547012463, + 46.25845804702396 + ], + [ + 71.96013278664094, + 46.45310578195241 + ], + [ + 71.7304474196736, + 46.45310578195241 + ], + [ + 71.61560473618991, + 46.25845804702396 + ], + [ + 71.7304474196736, + 46.063810312095505 + ], + [ + 71.96013278664094, + 46.063810312095505 + ], + [ + 72.07497547012463, + 46.25845804702396 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.07497547012463, + 46.64775351688086 + ], + [ + 71.96013278664094, + 46.842401251809314 + ], + [ + 71.7304474196736, + 46.842401251809314 + ], + [ + 71.61560473618991, + 46.64775351688086 + ], + [ + 71.7304474196736, + 46.45310578195241 + ], + [ + 71.96013278664094, + 46.45310578195241 + ], + [ + 72.07497547012463, + 46.64775351688086 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.07497547012463, + 47.037048986737766 + ], + [ + 71.96013278664094, + 47.23169672166622 + ], + [ + 71.7304474196736, + 47.23169672166622 + ], + [ + 71.61560473618991, + 47.037048986737766 + ], + [ + 71.7304474196736, + 46.842401251809314 + ], + [ + 71.96013278664094, + 46.842401251809314 + ], + [ + 72.07497547012463, + 47.037048986737766 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.07497547012463, + 47.42634445659467 + ], + [ + 71.96013278664094, + 47.62099219152312 + ], + [ + 71.7304474196736, + 47.62099219152312 + ], + [ + 71.61560473618991, + 47.42634445659467 + ], + [ + 71.7304474196736, + 47.23169672166622 + ], + [ + 71.96013278664094, + 47.23169672166622 + ], + [ + 72.07497547012463, + 47.42634445659467 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.07497547012463, + 47.81563992645159 + ], + [ + 71.96013278664094, + 48.01028766138004 + ], + [ + 71.7304474196736, + 48.01028766138004 + ], + [ + 71.61560473618991, + 47.81563992645159 + ], + [ + 71.7304474196736, + 47.620992191523136 + ], + [ + 71.96013278664094, + 47.620992191523136 + ], + [ + 72.07497547012463, + 47.81563992645159 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.41950352057566, + 11.805808964687746 + ], + [ + 72.30466083709197, + 12.0004566996162 + ], + [ + 72.07497547012463, + 12.0004566996162 + ], + [ + 71.96013278664094, + 11.805808964687746 + ], + [ + 72.07497547012463, + 11.611161229759292 + ], + [ + 72.30466083709197, + 11.611161229759292 + ], + [ + 72.41950352057566, + 11.805808964687746 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.41950352057566, + 12.195104434544652 + ], + [ + 72.30466083709197, + 12.389752169473105 + ], + [ + 72.07497547012463, + 12.389752169473105 + ], + [ + 71.96013278664094, + 12.195104434544652 + ], + [ + 72.07497547012463, + 12.000456699616198 + ], + [ + 72.30466083709197, + 12.000456699616198 + ], + [ + 72.41950352057566, + 12.195104434544652 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.41950352057566, + 12.58439990440156 + ], + [ + 72.30466083709197, + 12.779047639330013 + ], + [ + 72.07497547012463, + 12.779047639330013 + ], + [ + 71.96013278664094, + 12.58439990440156 + ], + [ + 72.07497547012463, + 12.389752169473105 + ], + [ + 72.30466083709197, + 12.389752169473105 + ], + [ + 72.41950352057566, + 12.58439990440156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.41950352057566, + 12.973695374258465 + ], + [ + 72.30466083709197, + 13.16834310918692 + ], + [ + 72.07497547012463, + 13.16834310918692 + ], + [ + 71.96013278664094, + 12.973695374258465 + ], + [ + 72.07497547012463, + 12.779047639330011 + ], + [ + 72.30466083709197, + 12.779047639330011 + ], + [ + 72.41950352057566, + 12.973695374258465 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.41950352057566, + 13.362990844115371 + ], + [ + 72.30466083709197, + 13.557638579043825 + ], + [ + 72.07497547012463, + 13.557638579043825 + ], + [ + 71.96013278664094, + 13.362990844115371 + ], + [ + 72.07497547012463, + 13.168343109186917 + ], + [ + 72.30466083709197, + 13.168343109186917 + ], + [ + 72.41950352057566, + 13.362990844115371 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.41950352057566, + 13.752286313972277 + ], + [ + 72.30466083709197, + 13.946934048900731 + ], + [ + 72.07497547012463, + 13.946934048900731 + ], + [ + 71.96013278664094, + 13.752286313972277 + ], + [ + 72.07497547012463, + 13.557638579043823 + ], + [ + 72.30466083709197, + 13.557638579043823 + ], + [ + 72.41950352057566, + 13.752286313972277 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.41950352057566, + 14.141581783829183 + ], + [ + 72.30466083709197, + 14.336229518757637 + ], + [ + 72.07497547012463, + 14.336229518757637 + ], + [ + 71.96013278664094, + 14.141581783829183 + ], + [ + 72.07497547012463, + 13.94693404890073 + ], + [ + 72.30466083709197, + 13.94693404890073 + ], + [ + 72.41950352057566, + 14.141581783829183 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.41950352057566, + 14.530877253686091 + ], + [ + 72.30466083709197, + 14.725524988614545 + ], + [ + 72.07497547012463, + 14.725524988614545 + ], + [ + 71.96013278664094, + 14.530877253686091 + ], + [ + 72.07497547012463, + 14.336229518757637 + ], + [ + 72.30466083709197, + 14.336229518757637 + ], + [ + 72.41950352057566, + 14.530877253686091 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.41950352057566, + 14.920172723542997 + ], + [ + 72.30466083709197, + 15.114820458471451 + ], + [ + 72.07497547012463, + 15.114820458471451 + ], + [ + 71.96013278664094, + 14.920172723542997 + ], + [ + 72.07497547012463, + 14.725524988614543 + ], + [ + 72.30466083709197, + 14.725524988614543 + ], + [ + 72.41950352057566, + 14.920172723542997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.41950352057566, + 15.309468193399903 + ], + [ + 72.30466083709197, + 15.504115928328357 + ], + [ + 72.07497547012463, + 15.504115928328357 + ], + [ + 71.96013278664094, + 15.309468193399903 + ], + [ + 72.07497547012463, + 15.11482045847145 + ], + [ + 72.30466083709197, + 15.11482045847145 + ], + [ + 72.41950352057566, + 15.309468193399903 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.41950352057566, + 15.69876366325681 + ], + [ + 72.30466083709197, + 15.893411398185265 + ], + [ + 72.07497547012463, + 15.893411398185265 + ], + [ + 71.96013278664094, + 15.69876366325681 + ], + [ + 72.07497547012463, + 15.504115928328357 + ], + [ + 72.30466083709197, + 15.504115928328357 + ], + [ + 72.41950352057566, + 15.69876366325681 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.41950352057566, + 16.088059133113717 + ], + [ + 72.30466083709197, + 16.28270686804217 + ], + [ + 72.07497547012463, + 16.28270686804217 + ], + [ + 71.96013278664094, + 16.088059133113717 + ], + [ + 72.07497547012463, + 15.893411398185263 + ], + [ + 72.30466083709197, + 15.893411398185263 + ], + [ + 72.41950352057566, + 16.088059133113717 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.41950352057566, + 16.477354602970625 + ], + [ + 72.30466083709197, + 16.672002337899077 + ], + [ + 72.07497547012463, + 16.672002337899077 + ], + [ + 71.96013278664094, + 16.477354602970625 + ], + [ + 72.07497547012463, + 16.282706868042172 + ], + [ + 72.30466083709197, + 16.282706868042172 + ], + [ + 72.41950352057566, + 16.477354602970625 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.41950352057566, + 16.86665007282753 + ], + [ + 72.30466083709197, + 17.06129780775598 + ], + [ + 72.07497547012463, + 17.06129780775598 + ], + [ + 71.96013278664094, + 16.86665007282753 + ], + [ + 72.07497547012463, + 16.672002337899077 + ], + [ + 72.30466083709197, + 16.672002337899077 + ], + [ + 72.41950352057566, + 16.86665007282753 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.41950352057566, + 17.255945542684437 + ], + [ + 72.30466083709197, + 17.45059327761289 + ], + [ + 72.07497547012463, + 17.45059327761289 + ], + [ + 71.96013278664094, + 17.255945542684437 + ], + [ + 72.07497547012463, + 17.061297807755984 + ], + [ + 72.30466083709197, + 17.061297807755984 + ], + [ + 72.41950352057566, + 17.255945542684437 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.41950352057566, + 17.64524101254134 + ], + [ + 72.30466083709197, + 17.839888747469793 + ], + [ + 72.07497547012463, + 17.839888747469793 + ], + [ + 71.96013278664094, + 17.64524101254134 + ], + [ + 72.07497547012463, + 17.45059327761289 + ], + [ + 72.30466083709197, + 17.45059327761289 + ], + [ + 72.41950352057566, + 17.64524101254134 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.41950352057566, + 18.03453648239825 + ], + [ + 72.30466083709197, + 18.2291842173267 + ], + [ + 72.07497547012463, + 18.2291842173267 + ], + [ + 71.96013278664094, + 18.03453648239825 + ], + [ + 72.07497547012463, + 17.839888747469796 + ], + [ + 72.30466083709197, + 17.839888747469796 + ], + [ + 72.41950352057566, + 18.03453648239825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.41950352057566, + 18.423831952255156 + ], + [ + 72.30466083709197, + 18.61847968718361 + ], + [ + 72.07497547012463, + 18.61847968718361 + ], + [ + 71.96013278664094, + 18.423831952255156 + ], + [ + 72.07497547012463, + 18.229184217326704 + ], + [ + 72.30466083709197, + 18.229184217326704 + ], + [ + 72.41950352057566, + 18.423831952255156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.41950352057566, + 18.81312742211206 + ], + [ + 72.30466083709197, + 19.007775157040513 + ], + [ + 72.07497547012463, + 19.007775157040513 + ], + [ + 71.96013278664094, + 18.81312742211206 + ], + [ + 72.07497547012463, + 18.61847968718361 + ], + [ + 72.30466083709197, + 18.61847968718361 + ], + [ + 72.41950352057566, + 18.81312742211206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.41950352057566, + 19.20242289196897 + ], + [ + 72.30466083709197, + 19.39707062689742 + ], + [ + 72.07497547012463, + 19.39707062689742 + ], + [ + 71.96013278664094, + 19.20242289196897 + ], + [ + 72.07497547012463, + 19.007775157040516 + ], + [ + 72.30466083709197, + 19.007775157040516 + ], + [ + 72.41950352057566, + 19.20242289196897 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.41950352057566, + 19.591718361825876 + ], + [ + 72.30466083709197, + 19.78636609675433 + ], + [ + 72.07497547012463, + 19.78636609675433 + ], + [ + 71.96013278664094, + 19.591718361825876 + ], + [ + 72.07497547012463, + 19.397070626897424 + ], + [ + 72.30466083709197, + 19.397070626897424 + ], + [ + 72.41950352057566, + 19.591718361825876 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.41950352057566, + 19.98101383168278 + ], + [ + 72.30466083709197, + 20.175661566611232 + ], + [ + 72.07497547012463, + 20.175661566611232 + ], + [ + 71.96013278664094, + 19.98101383168278 + ], + [ + 72.07497547012463, + 19.78636609675433 + ], + [ + 72.30466083709197, + 19.78636609675433 + ], + [ + 72.41950352057566, + 19.98101383168278 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.41950352057566, + 20.370309301539685 + ], + [ + 72.30466083709197, + 20.564957036468137 + ], + [ + 72.07497547012463, + 20.564957036468137 + ], + [ + 71.96013278664094, + 20.370309301539685 + ], + [ + 72.07497547012463, + 20.175661566611232 + ], + [ + 72.30466083709197, + 20.175661566611232 + ], + [ + 72.41950352057566, + 20.370309301539685 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.41950352057566, + 20.759604771396592 + ], + [ + 72.30466083709197, + 20.954252506325044 + ], + [ + 72.07497547012463, + 20.954252506325044 + ], + [ + 71.96013278664094, + 20.759604771396592 + ], + [ + 72.07497547012463, + 20.56495703646814 + ], + [ + 72.30466083709197, + 20.56495703646814 + ], + [ + 72.41950352057566, + 20.759604771396592 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.41950352057566, + 21.1489002412535 + ], + [ + 72.30466083709197, + 21.343547976181952 + ], + [ + 72.07497547012463, + 21.343547976181952 + ], + [ + 71.96013278664094, + 21.1489002412535 + ], + [ + 72.07497547012463, + 20.954252506325048 + ], + [ + 72.30466083709197, + 20.954252506325048 + ], + [ + 72.41950352057566, + 21.1489002412535 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.41950352057566, + 21.538195711110404 + ], + [ + 72.30466083709197, + 21.732843446038856 + ], + [ + 72.07497547012463, + 21.732843446038856 + ], + [ + 71.96013278664094, + 21.538195711110404 + ], + [ + 72.07497547012463, + 21.343547976181952 + ], + [ + 72.30466083709197, + 21.343547976181952 + ], + [ + 72.41950352057566, + 21.538195711110404 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.41950352057566, + 21.927491180967312 + ], + [ + 72.30466083709197, + 22.122138915895764 + ], + [ + 72.07497547012463, + 22.122138915895764 + ], + [ + 71.96013278664094, + 21.927491180967312 + ], + [ + 72.07497547012463, + 21.73284344603886 + ], + [ + 72.30466083709197, + 21.73284344603886 + ], + [ + 72.41950352057566, + 21.927491180967312 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.41950352057566, + 22.31678665082422 + ], + [ + 72.30466083709197, + 22.511434385752672 + ], + [ + 72.07497547012463, + 22.511434385752672 + ], + [ + 71.96013278664094, + 22.31678665082422 + ], + [ + 72.07497547012463, + 22.122138915895768 + ], + [ + 72.30466083709197, + 22.122138915895768 + ], + [ + 72.41950352057566, + 22.31678665082422 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.41950352057566, + 22.706082120681124 + ], + [ + 72.30466083709197, + 22.900729855609576 + ], + [ + 72.07497547012463, + 22.900729855609576 + ], + [ + 71.96013278664094, + 22.706082120681124 + ], + [ + 72.07497547012463, + 22.511434385752672 + ], + [ + 72.30466083709197, + 22.511434385752672 + ], + [ + 72.41950352057566, + 22.706082120681124 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.41950352057566, + 23.095377590538032 + ], + [ + 72.30466083709197, + 23.290025325466484 + ], + [ + 72.07497547012463, + 23.290025325466484 + ], + [ + 71.96013278664094, + 23.095377590538032 + ], + [ + 72.07497547012463, + 22.90072985560958 + ], + [ + 72.30466083709197, + 22.90072985560958 + ], + [ + 72.41950352057566, + 23.095377590538032 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.41950352057566, + 23.48467306039494 + ], + [ + 72.30466083709197, + 23.67932079532339 + ], + [ + 72.07497547012463, + 23.67932079532339 + ], + [ + 71.96013278664094, + 23.48467306039494 + ], + [ + 72.07497547012463, + 23.290025325466488 + ], + [ + 72.30466083709197, + 23.290025325466488 + ], + [ + 72.41950352057566, + 23.48467306039494 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.41950352057566, + 23.873968530251844 + ], + [ + 72.30466083709197, + 24.068616265180296 + ], + [ + 72.07497547012463, + 24.068616265180296 + ], + [ + 71.96013278664094, + 23.873968530251844 + ], + [ + 72.07497547012463, + 23.67932079532339 + ], + [ + 72.30466083709197, + 23.67932079532339 + ], + [ + 72.41950352057566, + 23.873968530251844 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.41950352057566, + 24.263264000108748 + ], + [ + 72.30466083709197, + 24.4579117350372 + ], + [ + 72.07497547012463, + 24.4579117350372 + ], + [ + 71.96013278664094, + 24.263264000108748 + ], + [ + 72.07497547012463, + 24.068616265180296 + ], + [ + 72.30466083709197, + 24.068616265180296 + ], + [ + 72.41950352057566, + 24.263264000108748 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.41950352057566, + 24.652559469965656 + ], + [ + 72.30466083709197, + 24.847207204894108 + ], + [ + 72.07497547012463, + 24.847207204894108 + ], + [ + 71.96013278664094, + 24.652559469965656 + ], + [ + 72.07497547012463, + 24.457911735037204 + ], + [ + 72.30466083709197, + 24.457911735037204 + ], + [ + 72.41950352057566, + 24.652559469965656 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.41950352057566, + 25.041854939822564 + ], + [ + 72.30466083709197, + 25.236502674751016 + ], + [ + 72.07497547012463, + 25.236502674751016 + ], + [ + 71.96013278664094, + 25.041854939822564 + ], + [ + 72.07497547012463, + 24.84720720489411 + ], + [ + 72.30466083709197, + 24.84720720489411 + ], + [ + 72.41950352057566, + 25.041854939822564 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.41950352057566, + 25.431150409679468 + ], + [ + 72.30466083709197, + 25.62579814460792 + ], + [ + 72.07497547012463, + 25.62579814460792 + ], + [ + 71.96013278664094, + 25.431150409679468 + ], + [ + 72.07497547012463, + 25.236502674751016 + ], + [ + 72.30466083709197, + 25.236502674751016 + ], + [ + 72.41950352057566, + 25.431150409679468 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.41950352057566, + 25.820445879536376 + ], + [ + 72.30466083709197, + 26.015093614464828 + ], + [ + 72.07497547012463, + 26.015093614464828 + ], + [ + 71.96013278664094, + 25.820445879536376 + ], + [ + 72.07497547012463, + 25.625798144607923 + ], + [ + 72.30466083709197, + 25.625798144607923 + ], + [ + 72.41950352057566, + 25.820445879536376 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.41950352057566, + 26.209741349393283 + ], + [ + 72.30466083709197, + 26.404389084321735 + ], + [ + 72.07497547012463, + 26.404389084321735 + ], + [ + 71.96013278664094, + 26.209741349393283 + ], + [ + 72.07497547012463, + 26.01509361446483 + ], + [ + 72.30466083709197, + 26.01509361446483 + ], + [ + 72.41950352057566, + 26.209741349393283 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.41950352057566, + 26.599036819250188 + ], + [ + 72.30466083709197, + 26.79368455417864 + ], + [ + 72.07497547012463, + 26.79368455417864 + ], + [ + 71.96013278664094, + 26.599036819250188 + ], + [ + 72.07497547012463, + 26.404389084321735 + ], + [ + 72.30466083709197, + 26.404389084321735 + ], + [ + 72.41950352057566, + 26.599036819250188 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.41950352057566, + 26.988332289107095 + ], + [ + 72.30466083709197, + 27.182980024035547 + ], + [ + 72.07497547012463, + 27.182980024035547 + ], + [ + 71.96013278664094, + 26.988332289107095 + ], + [ + 72.07497547012463, + 26.793684554178643 + ], + [ + 72.30466083709197, + 26.793684554178643 + ], + [ + 72.41950352057566, + 26.988332289107095 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.41950352057566, + 27.377627758964003 + ], + [ + 72.30466083709197, + 27.572275493892455 + ], + [ + 72.07497547012463, + 27.572275493892455 + ], + [ + 71.96013278664094, + 27.377627758964003 + ], + [ + 72.07497547012463, + 27.18298002403555 + ], + [ + 72.30466083709197, + 27.18298002403555 + ], + [ + 72.41950352057566, + 27.377627758964003 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.41950352057566, + 27.766923228820907 + ], + [ + 72.30466083709197, + 27.96157096374936 + ], + [ + 72.07497547012463, + 27.96157096374936 + ], + [ + 71.96013278664094, + 27.766923228820907 + ], + [ + 72.07497547012463, + 27.572275493892455 + ], + [ + 72.30466083709197, + 27.572275493892455 + ], + [ + 72.41950352057566, + 27.766923228820907 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.41950352057566, + 28.156218698677815 + ], + [ + 72.30466083709197, + 28.350866433606267 + ], + [ + 72.07497547012463, + 28.350866433606267 + ], + [ + 71.96013278664094, + 28.156218698677815 + ], + [ + 72.07497547012463, + 27.961570963749363 + ], + [ + 72.30466083709197, + 27.961570963749363 + ], + [ + 72.41950352057566, + 28.156218698677815 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.41950352057566, + 28.54551416853472 + ], + [ + 72.30466083709197, + 28.74016190346317 + ], + [ + 72.07497547012463, + 28.74016190346317 + ], + [ + 71.96013278664094, + 28.54551416853472 + ], + [ + 72.07497547012463, + 28.350866433606267 + ], + [ + 72.30466083709197, + 28.350866433606267 + ], + [ + 72.41950352057566, + 28.54551416853472 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.41950352057566, + 28.934809638391627 + ], + [ + 72.30466083709197, + 29.12945737332008 + ], + [ + 72.07497547012463, + 29.12945737332008 + ], + [ + 71.96013278664094, + 28.934809638391627 + ], + [ + 72.07497547012463, + 28.740161903463175 + ], + [ + 72.30466083709197, + 28.740161903463175 + ], + [ + 72.41950352057566, + 28.934809638391627 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.41950352057566, + 29.32410510824853 + ], + [ + 72.30466083709197, + 29.518752843176983 + ], + [ + 72.07497547012463, + 29.518752843176983 + ], + [ + 71.96013278664094, + 29.32410510824853 + ], + [ + 72.07497547012463, + 29.12945737332008 + ], + [ + 72.30466083709197, + 29.12945737332008 + ], + [ + 72.41950352057566, + 29.32410510824853 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.41950352057566, + 29.71340057810544 + ], + [ + 72.30466083709197, + 29.90804831303389 + ], + [ + 72.07497547012463, + 29.90804831303389 + ], + [ + 71.96013278664094, + 29.71340057810544 + ], + [ + 72.07497547012463, + 29.518752843176987 + ], + [ + 72.30466083709197, + 29.518752843176987 + ], + [ + 72.41950352057566, + 29.71340057810544 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.41950352057566, + 30.102696047962343 + ], + [ + 72.30466083709197, + 30.297343782890795 + ], + [ + 72.07497547012463, + 30.297343782890795 + ], + [ + 71.96013278664094, + 30.102696047962343 + ], + [ + 72.07497547012463, + 29.90804831303389 + ], + [ + 72.30466083709197, + 29.90804831303389 + ], + [ + 72.41950352057566, + 30.102696047962343 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.41950352057566, + 30.49199151781925 + ], + [ + 72.30466083709197, + 30.686639252747703 + ], + [ + 72.07497547012463, + 30.686639252747703 + ], + [ + 71.96013278664094, + 30.49199151781925 + ], + [ + 72.07497547012463, + 30.2973437828908 + ], + [ + 72.30466083709197, + 30.2973437828908 + ], + [ + 72.41950352057566, + 30.49199151781925 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.41950352057566, + 30.88128698767616 + ], + [ + 72.30466083709197, + 31.07593472260461 + ], + [ + 72.07497547012463, + 31.07593472260461 + ], + [ + 71.96013278664094, + 30.88128698767616 + ], + [ + 72.07497547012463, + 30.686639252747707 + ], + [ + 72.30466083709197, + 30.686639252747707 + ], + [ + 72.41950352057566, + 30.88128698767616 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.41950352057566, + 31.270582457533063 + ], + [ + 72.30466083709197, + 31.465230192461515 + ], + [ + 72.07497547012463, + 31.465230192461515 + ], + [ + 71.96013278664094, + 31.270582457533063 + ], + [ + 72.07497547012463, + 31.07593472260461 + ], + [ + 72.30466083709197, + 31.07593472260461 + ], + [ + 72.41950352057566, + 31.270582457533063 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.41950352057566, + 31.65987792738997 + ], + [ + 72.30466083709197, + 31.854525662318423 + ], + [ + 72.07497547012463, + 31.854525662318423 + ], + [ + 71.96013278664094, + 31.65987792738997 + ], + [ + 72.07497547012463, + 31.46523019246152 + ], + [ + 72.30466083709197, + 31.46523019246152 + ], + [ + 72.41950352057566, + 31.65987792738997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.41950352057566, + 32.049173397246875 + ], + [ + 72.30466083709197, + 32.24382113217533 + ], + [ + 72.07497547012463, + 32.24382113217533 + ], + [ + 71.96013278664094, + 32.049173397246875 + ], + [ + 72.07497547012463, + 31.854525662318423 + ], + [ + 72.30466083709197, + 31.854525662318423 + ], + [ + 72.41950352057566, + 32.049173397246875 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.41950352057566, + 32.438468867103786 + ], + [ + 72.30466083709197, + 32.63311660203224 + ], + [ + 72.07497547012463, + 32.63311660203224 + ], + [ + 71.96013278664094, + 32.438468867103786 + ], + [ + 72.07497547012463, + 32.243821132175334 + ], + [ + 72.30466083709197, + 32.243821132175334 + ], + [ + 72.41950352057566, + 32.438468867103786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.41950352057566, + 32.82776433696069 + ], + [ + 72.30466083709197, + 33.02241207188914 + ], + [ + 72.07497547012463, + 33.02241207188914 + ], + [ + 71.96013278664094, + 32.82776433696069 + ], + [ + 72.07497547012463, + 32.63311660203224 + ], + [ + 72.30466083709197, + 32.63311660203224 + ], + [ + 72.41950352057566, + 32.82776433696069 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.41950352057566, + 33.217059806817595 + ], + [ + 72.30466083709197, + 33.41170754174605 + ], + [ + 72.07497547012463, + 33.41170754174605 + ], + [ + 71.96013278664094, + 33.217059806817595 + ], + [ + 72.07497547012463, + 33.02241207188914 + ], + [ + 72.30466083709197, + 33.02241207188914 + ], + [ + 72.41950352057566, + 33.217059806817595 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.41950352057566, + 33.6063552766745 + ], + [ + 72.30466083709197, + 33.80100301160295 + ], + [ + 72.07497547012463, + 33.80100301160295 + ], + [ + 71.96013278664094, + 33.6063552766745 + ], + [ + 72.07497547012463, + 33.41170754174605 + ], + [ + 72.30466083709197, + 33.41170754174605 + ], + [ + 72.41950352057566, + 33.6063552766745 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.41950352057566, + 33.9956507465314 + ], + [ + 72.30466083709197, + 34.190298481459855 + ], + [ + 72.07497547012463, + 34.190298481459855 + ], + [ + 71.96013278664094, + 33.9956507465314 + ], + [ + 72.07497547012463, + 33.80100301160295 + ], + [ + 72.30466083709197, + 33.80100301160295 + ], + [ + 72.41950352057566, + 33.9956507465314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.41950352057566, + 34.384946216388315 + ], + [ + 72.30466083709197, + 34.57959395131677 + ], + [ + 72.07497547012463, + 34.57959395131677 + ], + [ + 71.96013278664094, + 34.384946216388315 + ], + [ + 72.07497547012463, + 34.19029848145986 + ], + [ + 72.30466083709197, + 34.19029848145986 + ], + [ + 72.41950352057566, + 34.384946216388315 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.41950352057566, + 34.774241686245226 + ], + [ + 72.30466083709197, + 34.96888942117368 + ], + [ + 72.07497547012463, + 34.96888942117368 + ], + [ + 71.96013278664094, + 34.774241686245226 + ], + [ + 72.07497547012463, + 34.579593951316774 + ], + [ + 72.30466083709197, + 34.579593951316774 + ], + [ + 72.41950352057566, + 34.774241686245226 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.41950352057566, + 35.16353715610213 + ], + [ + 72.30466083709197, + 35.35818489103058 + ], + [ + 72.07497547012463, + 35.35818489103058 + ], + [ + 71.96013278664094, + 35.16353715610213 + ], + [ + 72.07497547012463, + 34.96888942117368 + ], + [ + 72.30466083709197, + 34.96888942117368 + ], + [ + 72.41950352057566, + 35.16353715610213 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.41950352057566, + 35.552832625959034 + ], + [ + 72.30466083709197, + 35.74748036088749 + ], + [ + 72.07497547012463, + 35.74748036088749 + ], + [ + 71.96013278664094, + 35.552832625959034 + ], + [ + 72.07497547012463, + 35.35818489103058 + ], + [ + 72.30466083709197, + 35.35818489103058 + ], + [ + 72.41950352057566, + 35.552832625959034 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.41950352057566, + 35.94212809581594 + ], + [ + 72.30466083709197, + 36.13677583074439 + ], + [ + 72.07497547012463, + 36.13677583074439 + ], + [ + 71.96013278664094, + 35.94212809581594 + ], + [ + 72.07497547012463, + 35.74748036088749 + ], + [ + 72.30466083709197, + 35.74748036088749 + ], + [ + 72.41950352057566, + 35.94212809581594 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.41950352057566, + 36.33142356567284 + ], + [ + 72.30466083709197, + 36.526071300601295 + ], + [ + 72.07497547012463, + 36.526071300601295 + ], + [ + 71.96013278664094, + 36.33142356567284 + ], + [ + 72.07497547012463, + 36.13677583074439 + ], + [ + 72.30466083709197, + 36.13677583074439 + ], + [ + 72.41950352057566, + 36.33142356567284 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.41950352057566, + 36.720719035529754 + ], + [ + 72.30466083709197, + 36.915366770458206 + ], + [ + 72.07497547012463, + 36.915366770458206 + ], + [ + 71.96013278664094, + 36.720719035529754 + ], + [ + 72.07497547012463, + 36.5260713006013 + ], + [ + 72.30466083709197, + 36.5260713006013 + ], + [ + 72.41950352057566, + 36.720719035529754 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.41950352057566, + 37.11001450538666 + ], + [ + 72.30466083709197, + 37.30466224031511 + ], + [ + 72.07497547012463, + 37.30466224031511 + ], + [ + 71.96013278664094, + 37.11001450538666 + ], + [ + 72.07497547012463, + 36.915366770458206 + ], + [ + 72.30466083709197, + 36.915366770458206 + ], + [ + 72.41950352057566, + 37.11001450538666 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.41950352057566, + 37.49930997524357 + ], + [ + 72.30466083709197, + 37.69395771017202 + ], + [ + 72.07497547012463, + 37.69395771017202 + ], + [ + 71.96013278664094, + 37.49930997524357 + ], + [ + 72.07497547012463, + 37.30466224031512 + ], + [ + 72.30466083709197, + 37.30466224031512 + ], + [ + 72.41950352057566, + 37.49930997524357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.41950352057566, + 37.888605445100474 + ], + [ + 72.30466083709197, + 38.083253180028926 + ], + [ + 72.07497547012463, + 38.083253180028926 + ], + [ + 71.96013278664094, + 37.888605445100474 + ], + [ + 72.07497547012463, + 37.69395771017202 + ], + [ + 72.30466083709197, + 37.69395771017202 + ], + [ + 72.41950352057566, + 37.888605445100474 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.41950352057566, + 38.27790091495738 + ], + [ + 72.30466083709197, + 38.47254864988583 + ], + [ + 72.07497547012463, + 38.47254864988583 + ], + [ + 71.96013278664094, + 38.27790091495738 + ], + [ + 72.07497547012463, + 38.083253180028926 + ], + [ + 72.30466083709197, + 38.083253180028926 + ], + [ + 72.41950352057566, + 38.27790091495738 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.41950352057566, + 38.66719638481428 + ], + [ + 72.30466083709197, + 38.861844119742734 + ], + [ + 72.07497547012463, + 38.861844119742734 + ], + [ + 71.96013278664094, + 38.66719638481428 + ], + [ + 72.07497547012463, + 38.47254864988583 + ], + [ + 72.30466083709197, + 38.47254864988583 + ], + [ + 72.41950352057566, + 38.66719638481428 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.41950352057566, + 39.05649185467119 + ], + [ + 72.30466083709197, + 39.25113958959964 + ], + [ + 72.07497547012463, + 39.25113958959964 + ], + [ + 71.96013278664094, + 39.05649185467119 + ], + [ + 72.07497547012463, + 38.861844119742734 + ], + [ + 72.30466083709197, + 38.861844119742734 + ], + [ + 72.41950352057566, + 39.05649185467119 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.41950352057566, + 39.4457873245281 + ], + [ + 72.30466083709197, + 39.64043505945655 + ], + [ + 72.07497547012463, + 39.64043505945655 + ], + [ + 71.96013278664094, + 39.4457873245281 + ], + [ + 72.07497547012463, + 39.251139589599646 + ], + [ + 72.30466083709197, + 39.251139589599646 + ], + [ + 72.41950352057566, + 39.4457873245281 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.41950352057566, + 39.835082794385 + ], + [ + 72.30466083709197, + 40.029730529313454 + ], + [ + 72.07497547012463, + 40.029730529313454 + ], + [ + 71.96013278664094, + 39.835082794385 + ], + [ + 72.07497547012463, + 39.64043505945655 + ], + [ + 72.30466083709197, + 39.64043505945655 + ], + [ + 72.41950352057566, + 39.835082794385 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.41950352057566, + 40.22437826424191 + ], + [ + 72.30466083709197, + 40.419025999170366 + ], + [ + 72.07497547012463, + 40.419025999170366 + ], + [ + 71.96013278664094, + 40.22437826424191 + ], + [ + 72.07497547012463, + 40.02973052931346 + ], + [ + 72.30466083709197, + 40.02973052931346 + ], + [ + 72.41950352057566, + 40.22437826424191 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.41950352057566, + 40.61367373409882 + ], + [ + 72.30466083709197, + 40.80832146902727 + ], + [ + 72.07497547012463, + 40.80832146902727 + ], + [ + 71.96013278664094, + 40.61367373409882 + ], + [ + 72.07497547012463, + 40.419025999170366 + ], + [ + 72.30466083709197, + 40.419025999170366 + ], + [ + 72.41950352057566, + 40.61367373409882 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.41950352057566, + 41.00296920395572 + ], + [ + 72.30466083709197, + 41.197616938884174 + ], + [ + 72.07497547012463, + 41.197616938884174 + ], + [ + 71.96013278664094, + 41.00296920395572 + ], + [ + 72.07497547012463, + 40.80832146902727 + ], + [ + 72.30466083709197, + 40.80832146902727 + ], + [ + 72.41950352057566, + 41.00296920395572 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.41950352057566, + 41.392264673812626 + ], + [ + 72.30466083709197, + 41.58691240874108 + ], + [ + 72.07497547012463, + 41.58691240874108 + ], + [ + 71.96013278664094, + 41.392264673812626 + ], + [ + 72.07497547012463, + 41.197616938884174 + ], + [ + 72.30466083709197, + 41.197616938884174 + ], + [ + 72.41950352057566, + 41.392264673812626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.41950352057566, + 41.78156014366953 + ], + [ + 72.30466083709197, + 41.97620787859798 + ], + [ + 72.07497547012463, + 41.97620787859798 + ], + [ + 71.96013278664094, + 41.78156014366953 + ], + [ + 72.07497547012463, + 41.58691240874108 + ], + [ + 72.30466083709197, + 41.58691240874108 + ], + [ + 72.41950352057566, + 41.78156014366953 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.41950352057566, + 42.17085561352644 + ], + [ + 72.30466083709197, + 42.365503348454894 + ], + [ + 72.07497547012463, + 42.365503348454894 + ], + [ + 71.96013278664094, + 42.17085561352644 + ], + [ + 72.07497547012463, + 41.97620787859799 + ], + [ + 72.30466083709197, + 41.97620787859799 + ], + [ + 72.41950352057566, + 42.17085561352644 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.41950352057566, + 42.56015108338335 + ], + [ + 72.30466083709197, + 42.754798818311805 + ], + [ + 72.07497547012463, + 42.754798818311805 + ], + [ + 71.96013278664094, + 42.56015108338335 + ], + [ + 72.07497547012463, + 42.3655033484549 + ], + [ + 72.30466083709197, + 42.3655033484549 + ], + [ + 72.41950352057566, + 42.56015108338335 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.41950352057566, + 42.94944655324026 + ], + [ + 72.30466083709197, + 43.14409428816871 + ], + [ + 72.07497547012463, + 43.14409428816871 + ], + [ + 71.96013278664094, + 42.94944655324026 + ], + [ + 72.07497547012463, + 42.754798818311805 + ], + [ + 72.30466083709197, + 42.754798818311805 + ], + [ + 72.41950352057566, + 42.94944655324026 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.41950352057566, + 43.33874202309716 + ], + [ + 72.30466083709197, + 43.53338975802561 + ], + [ + 72.07497547012463, + 43.53338975802561 + ], + [ + 71.96013278664094, + 43.33874202309716 + ], + [ + 72.07497547012463, + 43.14409428816871 + ], + [ + 72.30466083709197, + 43.14409428816871 + ], + [ + 72.41950352057566, + 43.33874202309716 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.41950352057566, + 43.728037492954066 + ], + [ + 72.30466083709197, + 43.92268522788252 + ], + [ + 72.07497547012463, + 43.92268522788252 + ], + [ + 71.96013278664094, + 43.728037492954066 + ], + [ + 72.07497547012463, + 43.53338975802561 + ], + [ + 72.30466083709197, + 43.53338975802561 + ], + [ + 72.41950352057566, + 43.728037492954066 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.41950352057566, + 44.11733296281097 + ], + [ + 72.30466083709197, + 44.31198069773942 + ], + [ + 72.07497547012463, + 44.31198069773942 + ], + [ + 71.96013278664094, + 44.11733296281097 + ], + [ + 72.07497547012463, + 43.92268522788252 + ], + [ + 72.30466083709197, + 43.92268522788252 + ], + [ + 72.41950352057566, + 44.11733296281097 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.41950352057566, + 44.506628432667874 + ], + [ + 72.30466083709197, + 44.701276167596326 + ], + [ + 72.07497547012463, + 44.701276167596326 + ], + [ + 71.96013278664094, + 44.506628432667874 + ], + [ + 72.07497547012463, + 44.31198069773942 + ], + [ + 72.30466083709197, + 44.31198069773942 + ], + [ + 72.41950352057566, + 44.506628432667874 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.41950352057566, + 44.89592390252479 + ], + [ + 72.30466083709197, + 45.090571637453245 + ], + [ + 72.07497547012463, + 45.090571637453245 + ], + [ + 71.96013278664094, + 44.89592390252479 + ], + [ + 72.07497547012463, + 44.70127616759634 + ], + [ + 72.30466083709197, + 44.70127616759634 + ], + [ + 72.41950352057566, + 44.89592390252479 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.41950352057566, + 45.2852193723817 + ], + [ + 72.30466083709197, + 45.47986710731015 + ], + [ + 72.07497547012463, + 45.47986710731015 + ], + [ + 71.96013278664094, + 45.2852193723817 + ], + [ + 72.07497547012463, + 45.090571637453245 + ], + [ + 72.30466083709197, + 45.090571637453245 + ], + [ + 72.41950352057566, + 45.2852193723817 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.41950352057566, + 45.6745148422386 + ], + [ + 72.30466083709197, + 45.86916257716705 + ], + [ + 72.07497547012463, + 45.86916257716705 + ], + [ + 71.96013278664094, + 45.6745148422386 + ], + [ + 72.07497547012463, + 45.47986710731015 + ], + [ + 72.30466083709197, + 45.47986710731015 + ], + [ + 72.41950352057566, + 45.6745148422386 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.41950352057566, + 46.063810312095505 + ], + [ + 72.30466083709197, + 46.25845804702396 + ], + [ + 72.07497547012463, + 46.25845804702396 + ], + [ + 71.96013278664094, + 46.063810312095505 + ], + [ + 72.07497547012463, + 45.86916257716705 + ], + [ + 72.30466083709197, + 45.86916257716705 + ], + [ + 72.41950352057566, + 46.063810312095505 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.41950352057566, + 46.45310578195241 + ], + [ + 72.30466083709197, + 46.64775351688086 + ], + [ + 72.07497547012463, + 46.64775351688086 + ], + [ + 71.96013278664094, + 46.45310578195241 + ], + [ + 72.07497547012463, + 46.25845804702396 + ], + [ + 72.30466083709197, + 46.25845804702396 + ], + [ + 72.41950352057566, + 46.45310578195241 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.41950352057566, + 46.842401251809314 + ], + [ + 72.30466083709197, + 47.037048986737766 + ], + [ + 72.07497547012463, + 47.037048986737766 + ], + [ + 71.96013278664094, + 46.842401251809314 + ], + [ + 72.07497547012463, + 46.64775351688086 + ], + [ + 72.30466083709197, + 46.64775351688086 + ], + [ + 72.41950352057566, + 46.842401251809314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.41950352057566, + 47.23169672166622 + ], + [ + 72.30466083709197, + 47.42634445659467 + ], + [ + 72.07497547012463, + 47.42634445659467 + ], + [ + 71.96013278664094, + 47.23169672166622 + ], + [ + 72.07497547012463, + 47.037048986737766 + ], + [ + 72.30466083709197, + 47.037048986737766 + ], + [ + 72.41950352057566, + 47.23169672166622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.41950352057566, + 47.620992191523136 + ], + [ + 72.30466083709197, + 47.81563992645159 + ], + [ + 72.07497547012463, + 47.81563992645159 + ], + [ + 71.96013278664094, + 47.620992191523136 + ], + [ + 72.07497547012463, + 47.426344456594684 + ], + [ + 72.30466083709197, + 47.426344456594684 + ], + [ + 72.41950352057566, + 47.620992191523136 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.7640315710267, + 12.0004566996162 + ], + [ + 72.64918888754302, + 12.195104434544653 + ], + [ + 72.41950352057567, + 12.195104434544653 + ], + [ + 72.30466083709199, + 12.0004566996162 + ], + [ + 72.41950352057567, + 11.805808964687746 + ], + [ + 72.64918888754302, + 11.805808964687746 + ], + [ + 72.7640315710267, + 12.0004566996162 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.7640315710267, + 12.389752169473105 + ], + [ + 72.64918888754302, + 12.58439990440156 + ], + [ + 72.41950352057567, + 12.58439990440156 + ], + [ + 72.30466083709199, + 12.389752169473105 + ], + [ + 72.41950352057567, + 12.195104434544652 + ], + [ + 72.64918888754302, + 12.195104434544652 + ], + [ + 72.7640315710267, + 12.389752169473105 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.7640315710267, + 12.779047639330013 + ], + [ + 72.64918888754302, + 12.973695374258467 + ], + [ + 72.41950352057567, + 12.973695374258467 + ], + [ + 72.30466083709199, + 12.779047639330013 + ], + [ + 72.41950352057567, + 12.58439990440156 + ], + [ + 72.64918888754302, + 12.58439990440156 + ], + [ + 72.7640315710267, + 12.779047639330013 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.7640315710267, + 13.16834310918692 + ], + [ + 72.64918888754302, + 13.362990844115373 + ], + [ + 72.41950352057567, + 13.362990844115373 + ], + [ + 72.30466083709199, + 13.16834310918692 + ], + [ + 72.41950352057567, + 12.973695374258465 + ], + [ + 72.64918888754302, + 12.973695374258465 + ], + [ + 72.7640315710267, + 13.16834310918692 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.7640315710267, + 13.557638579043825 + ], + [ + 72.64918888754302, + 13.752286313972279 + ], + [ + 72.41950352057567, + 13.752286313972279 + ], + [ + 72.30466083709199, + 13.557638579043825 + ], + [ + 72.41950352057567, + 13.362990844115371 + ], + [ + 72.64918888754302, + 13.362990844115371 + ], + [ + 72.7640315710267, + 13.557638579043825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.7640315710267, + 13.946934048900731 + ], + [ + 72.64918888754302, + 14.141581783829185 + ], + [ + 72.41950352057567, + 14.141581783829185 + ], + [ + 72.30466083709199, + 13.946934048900731 + ], + [ + 72.41950352057567, + 13.752286313972277 + ], + [ + 72.64918888754302, + 13.752286313972277 + ], + [ + 72.7640315710267, + 13.946934048900731 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.7640315710267, + 14.336229518757637 + ], + [ + 72.64918888754302, + 14.530877253686091 + ], + [ + 72.41950352057567, + 14.530877253686091 + ], + [ + 72.30466083709199, + 14.336229518757637 + ], + [ + 72.41950352057567, + 14.141581783829183 + ], + [ + 72.64918888754302, + 14.141581783829183 + ], + [ + 72.7640315710267, + 14.336229518757637 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.7640315710267, + 14.725524988614545 + ], + [ + 72.64918888754302, + 14.920172723542999 + ], + [ + 72.41950352057567, + 14.920172723542999 + ], + [ + 72.30466083709199, + 14.725524988614545 + ], + [ + 72.41950352057567, + 14.530877253686091 + ], + [ + 72.64918888754302, + 14.530877253686091 + ], + [ + 72.7640315710267, + 14.725524988614545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.7640315710267, + 15.114820458471451 + ], + [ + 72.64918888754302, + 15.309468193399905 + ], + [ + 72.41950352057567, + 15.309468193399905 + ], + [ + 72.30466083709199, + 15.114820458471451 + ], + [ + 72.41950352057567, + 14.920172723542997 + ], + [ + 72.64918888754302, + 14.920172723542997 + ], + [ + 72.7640315710267, + 15.114820458471451 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.7640315710267, + 15.504115928328357 + ], + [ + 72.64918888754302, + 15.69876366325681 + ], + [ + 72.41950352057567, + 15.69876366325681 + ], + [ + 72.30466083709199, + 15.504115928328357 + ], + [ + 72.41950352057567, + 15.309468193399903 + ], + [ + 72.64918888754302, + 15.309468193399903 + ], + [ + 72.7640315710267, + 15.504115928328357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.7640315710267, + 15.893411398185265 + ], + [ + 72.64918888754302, + 16.088059133113717 + ], + [ + 72.41950352057567, + 16.088059133113717 + ], + [ + 72.30466083709199, + 15.893411398185265 + ], + [ + 72.41950352057567, + 15.69876366325681 + ], + [ + 72.64918888754302, + 15.69876366325681 + ], + [ + 72.7640315710267, + 15.893411398185265 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.7640315710267, + 16.28270686804217 + ], + [ + 72.64918888754302, + 16.47735460297062 + ], + [ + 72.41950352057567, + 16.47735460297062 + ], + [ + 72.30466083709199, + 16.28270686804217 + ], + [ + 72.41950352057567, + 16.088059133113717 + ], + [ + 72.64918888754302, + 16.088059133113717 + ], + [ + 72.7640315710267, + 16.28270686804217 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.7640315710267, + 16.672002337899077 + ], + [ + 72.64918888754302, + 16.86665007282753 + ], + [ + 72.41950352057567, + 16.86665007282753 + ], + [ + 72.30466083709199, + 16.672002337899077 + ], + [ + 72.41950352057567, + 16.477354602970625 + ], + [ + 72.64918888754302, + 16.477354602970625 + ], + [ + 72.7640315710267, + 16.672002337899077 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.7640315710267, + 17.06129780775598 + ], + [ + 72.64918888754302, + 17.255945542684433 + ], + [ + 72.41950352057567, + 17.255945542684433 + ], + [ + 72.30466083709199, + 17.06129780775598 + ], + [ + 72.41950352057567, + 16.86665007282753 + ], + [ + 72.64918888754302, + 16.86665007282753 + ], + [ + 72.7640315710267, + 17.06129780775598 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.7640315710267, + 17.45059327761289 + ], + [ + 72.64918888754302, + 17.64524101254134 + ], + [ + 72.41950352057567, + 17.64524101254134 + ], + [ + 72.30466083709199, + 17.45059327761289 + ], + [ + 72.41950352057567, + 17.255945542684437 + ], + [ + 72.64918888754302, + 17.255945542684437 + ], + [ + 72.7640315710267, + 17.45059327761289 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.7640315710267, + 17.839888747469793 + ], + [ + 72.64918888754302, + 18.034536482398245 + ], + [ + 72.41950352057567, + 18.034536482398245 + ], + [ + 72.30466083709199, + 17.839888747469793 + ], + [ + 72.41950352057567, + 17.64524101254134 + ], + [ + 72.64918888754302, + 17.64524101254134 + ], + [ + 72.7640315710267, + 17.839888747469793 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.7640315710267, + 18.2291842173267 + ], + [ + 72.64918888754302, + 18.423831952255153 + ], + [ + 72.41950352057567, + 18.423831952255153 + ], + [ + 72.30466083709199, + 18.2291842173267 + ], + [ + 72.41950352057567, + 18.03453648239825 + ], + [ + 72.64918888754302, + 18.03453648239825 + ], + [ + 72.7640315710267, + 18.2291842173267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.7640315710267, + 18.61847968718361 + ], + [ + 72.64918888754302, + 18.81312742211206 + ], + [ + 72.41950352057567, + 18.81312742211206 + ], + [ + 72.30466083709199, + 18.61847968718361 + ], + [ + 72.41950352057567, + 18.423831952255156 + ], + [ + 72.64918888754302, + 18.423831952255156 + ], + [ + 72.7640315710267, + 18.61847968718361 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.7640315710267, + 19.007775157040513 + ], + [ + 72.64918888754302, + 19.202422891968965 + ], + [ + 72.41950352057567, + 19.202422891968965 + ], + [ + 72.30466083709199, + 19.007775157040513 + ], + [ + 72.41950352057567, + 18.81312742211206 + ], + [ + 72.64918888754302, + 18.81312742211206 + ], + [ + 72.7640315710267, + 19.007775157040513 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.7640315710267, + 19.39707062689742 + ], + [ + 72.64918888754302, + 19.591718361825873 + ], + [ + 72.41950352057567, + 19.591718361825873 + ], + [ + 72.30466083709199, + 19.39707062689742 + ], + [ + 72.41950352057567, + 19.20242289196897 + ], + [ + 72.64918888754302, + 19.20242289196897 + ], + [ + 72.7640315710267, + 19.39707062689742 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.7640315710267, + 19.78636609675433 + ], + [ + 72.64918888754302, + 19.98101383168278 + ], + [ + 72.41950352057567, + 19.98101383168278 + ], + [ + 72.30466083709199, + 19.78636609675433 + ], + [ + 72.41950352057567, + 19.591718361825876 + ], + [ + 72.64918888754302, + 19.591718361825876 + ], + [ + 72.7640315710267, + 19.78636609675433 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.7640315710267, + 20.175661566611232 + ], + [ + 72.64918888754302, + 20.370309301539685 + ], + [ + 72.41950352057567, + 20.370309301539685 + ], + [ + 72.30466083709199, + 20.175661566611232 + ], + [ + 72.41950352057567, + 19.98101383168278 + ], + [ + 72.64918888754302, + 19.98101383168278 + ], + [ + 72.7640315710267, + 20.175661566611232 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.7640315710267, + 20.564957036468137 + ], + [ + 72.64918888754302, + 20.75960477139659 + ], + [ + 72.41950352057567, + 20.75960477139659 + ], + [ + 72.30466083709199, + 20.564957036468137 + ], + [ + 72.41950352057567, + 20.370309301539685 + ], + [ + 72.64918888754302, + 20.370309301539685 + ], + [ + 72.7640315710267, + 20.564957036468137 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.7640315710267, + 20.954252506325044 + ], + [ + 72.64918888754302, + 21.148900241253497 + ], + [ + 72.41950352057567, + 21.148900241253497 + ], + [ + 72.30466083709199, + 20.954252506325044 + ], + [ + 72.41950352057567, + 20.759604771396592 + ], + [ + 72.64918888754302, + 20.759604771396592 + ], + [ + 72.7640315710267, + 20.954252506325044 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.7640315710267, + 21.343547976181952 + ], + [ + 72.64918888754302, + 21.538195711110404 + ], + [ + 72.41950352057567, + 21.538195711110404 + ], + [ + 72.30466083709199, + 21.343547976181952 + ], + [ + 72.41950352057567, + 21.1489002412535 + ], + [ + 72.64918888754302, + 21.1489002412535 + ], + [ + 72.7640315710267, + 21.343547976181952 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.7640315710267, + 21.732843446038856 + ], + [ + 72.64918888754302, + 21.92749118096731 + ], + [ + 72.41950352057567, + 21.92749118096731 + ], + [ + 72.30466083709199, + 21.732843446038856 + ], + [ + 72.41950352057567, + 21.538195711110404 + ], + [ + 72.64918888754302, + 21.538195711110404 + ], + [ + 72.7640315710267, + 21.732843446038856 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.7640315710267, + 22.122138915895764 + ], + [ + 72.64918888754302, + 22.316786650824216 + ], + [ + 72.41950352057567, + 22.316786650824216 + ], + [ + 72.30466083709199, + 22.122138915895764 + ], + [ + 72.41950352057567, + 21.927491180967312 + ], + [ + 72.64918888754302, + 21.927491180967312 + ], + [ + 72.7640315710267, + 22.122138915895764 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.7640315710267, + 22.511434385752672 + ], + [ + 72.64918888754302, + 22.706082120681124 + ], + [ + 72.41950352057567, + 22.706082120681124 + ], + [ + 72.30466083709199, + 22.511434385752672 + ], + [ + 72.41950352057567, + 22.31678665082422 + ], + [ + 72.64918888754302, + 22.31678665082422 + ], + [ + 72.7640315710267, + 22.511434385752672 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.7640315710267, + 22.900729855609576 + ], + [ + 72.64918888754302, + 23.09537759053803 + ], + [ + 72.41950352057567, + 23.09537759053803 + ], + [ + 72.30466083709199, + 22.900729855609576 + ], + [ + 72.41950352057567, + 22.706082120681124 + ], + [ + 72.64918888754302, + 22.706082120681124 + ], + [ + 72.7640315710267, + 22.900729855609576 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.7640315710267, + 23.290025325466484 + ], + [ + 72.64918888754302, + 23.484673060394936 + ], + [ + 72.41950352057567, + 23.484673060394936 + ], + [ + 72.30466083709199, + 23.290025325466484 + ], + [ + 72.41950352057567, + 23.095377590538032 + ], + [ + 72.64918888754302, + 23.095377590538032 + ], + [ + 72.7640315710267, + 23.290025325466484 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.7640315710267, + 23.67932079532339 + ], + [ + 72.64918888754302, + 23.873968530251844 + ], + [ + 72.41950352057567, + 23.873968530251844 + ], + [ + 72.30466083709199, + 23.67932079532339 + ], + [ + 72.41950352057567, + 23.48467306039494 + ], + [ + 72.64918888754302, + 23.48467306039494 + ], + [ + 72.7640315710267, + 23.67932079532339 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.7640315710267, + 24.068616265180296 + ], + [ + 72.64918888754302, + 24.263264000108748 + ], + [ + 72.41950352057567, + 24.263264000108748 + ], + [ + 72.30466083709199, + 24.068616265180296 + ], + [ + 72.41950352057567, + 23.873968530251844 + ], + [ + 72.64918888754302, + 23.873968530251844 + ], + [ + 72.7640315710267, + 24.068616265180296 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.7640315710267, + 24.4579117350372 + ], + [ + 72.64918888754302, + 24.652559469965652 + ], + [ + 72.41950352057567, + 24.652559469965652 + ], + [ + 72.30466083709199, + 24.4579117350372 + ], + [ + 72.41950352057567, + 24.263264000108748 + ], + [ + 72.64918888754302, + 24.263264000108748 + ], + [ + 72.7640315710267, + 24.4579117350372 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.7640315710267, + 24.847207204894108 + ], + [ + 72.64918888754302, + 25.04185493982256 + ], + [ + 72.41950352057567, + 25.04185493982256 + ], + [ + 72.30466083709199, + 24.847207204894108 + ], + [ + 72.41950352057567, + 24.652559469965656 + ], + [ + 72.64918888754302, + 24.652559469965656 + ], + [ + 72.7640315710267, + 24.847207204894108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.7640315710267, + 25.236502674751016 + ], + [ + 72.64918888754302, + 25.431150409679468 + ], + [ + 72.41950352057567, + 25.431150409679468 + ], + [ + 72.30466083709199, + 25.236502674751016 + ], + [ + 72.41950352057567, + 25.041854939822564 + ], + [ + 72.64918888754302, + 25.041854939822564 + ], + [ + 72.7640315710267, + 25.236502674751016 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.7640315710267, + 25.62579814460792 + ], + [ + 72.64918888754302, + 25.820445879536372 + ], + [ + 72.41950352057567, + 25.820445879536372 + ], + [ + 72.30466083709199, + 25.62579814460792 + ], + [ + 72.41950352057567, + 25.431150409679468 + ], + [ + 72.64918888754302, + 25.431150409679468 + ], + [ + 72.7640315710267, + 25.62579814460792 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.7640315710267, + 26.015093614464828 + ], + [ + 72.64918888754302, + 26.20974134939328 + ], + [ + 72.41950352057567, + 26.20974134939328 + ], + [ + 72.30466083709199, + 26.015093614464828 + ], + [ + 72.41950352057567, + 25.820445879536376 + ], + [ + 72.64918888754302, + 25.820445879536376 + ], + [ + 72.7640315710267, + 26.015093614464828 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.7640315710267, + 26.404389084321735 + ], + [ + 72.64918888754302, + 26.599036819250188 + ], + [ + 72.41950352057567, + 26.599036819250188 + ], + [ + 72.30466083709199, + 26.404389084321735 + ], + [ + 72.41950352057567, + 26.209741349393283 + ], + [ + 72.64918888754302, + 26.209741349393283 + ], + [ + 72.7640315710267, + 26.404389084321735 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.7640315710267, + 26.79368455417864 + ], + [ + 72.64918888754302, + 26.988332289107092 + ], + [ + 72.41950352057567, + 26.988332289107092 + ], + [ + 72.30466083709199, + 26.79368455417864 + ], + [ + 72.41950352057567, + 26.599036819250188 + ], + [ + 72.64918888754302, + 26.599036819250188 + ], + [ + 72.7640315710267, + 26.79368455417864 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.7640315710267, + 27.182980024035547 + ], + [ + 72.64918888754302, + 27.377627758964 + ], + [ + 72.41950352057567, + 27.377627758964 + ], + [ + 72.30466083709199, + 27.182980024035547 + ], + [ + 72.41950352057567, + 26.988332289107095 + ], + [ + 72.64918888754302, + 26.988332289107095 + ], + [ + 72.7640315710267, + 27.182980024035547 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.7640315710267, + 27.572275493892455 + ], + [ + 72.64918888754302, + 27.766923228820907 + ], + [ + 72.41950352057567, + 27.766923228820907 + ], + [ + 72.30466083709199, + 27.572275493892455 + ], + [ + 72.41950352057567, + 27.377627758964003 + ], + [ + 72.64918888754302, + 27.377627758964003 + ], + [ + 72.7640315710267, + 27.572275493892455 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.7640315710267, + 27.96157096374936 + ], + [ + 72.64918888754302, + 28.15621869867781 + ], + [ + 72.41950352057567, + 28.15621869867781 + ], + [ + 72.30466083709199, + 27.96157096374936 + ], + [ + 72.41950352057567, + 27.766923228820907 + ], + [ + 72.64918888754302, + 27.766923228820907 + ], + [ + 72.7640315710267, + 27.96157096374936 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.7640315710267, + 28.350866433606267 + ], + [ + 72.64918888754302, + 28.54551416853472 + ], + [ + 72.41950352057567, + 28.54551416853472 + ], + [ + 72.30466083709199, + 28.350866433606267 + ], + [ + 72.41950352057567, + 28.156218698677815 + ], + [ + 72.64918888754302, + 28.156218698677815 + ], + [ + 72.7640315710267, + 28.350866433606267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.7640315710267, + 28.74016190346317 + ], + [ + 72.64918888754302, + 28.934809638391624 + ], + [ + 72.41950352057567, + 28.934809638391624 + ], + [ + 72.30466083709199, + 28.74016190346317 + ], + [ + 72.41950352057567, + 28.54551416853472 + ], + [ + 72.64918888754302, + 28.54551416853472 + ], + [ + 72.7640315710267, + 28.74016190346317 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.7640315710267, + 29.12945737332008 + ], + [ + 72.64918888754302, + 29.32410510824853 + ], + [ + 72.41950352057567, + 29.32410510824853 + ], + [ + 72.30466083709199, + 29.12945737332008 + ], + [ + 72.41950352057567, + 28.934809638391627 + ], + [ + 72.64918888754302, + 28.934809638391627 + ], + [ + 72.7640315710267, + 29.12945737332008 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.7640315710267, + 29.518752843176983 + ], + [ + 72.64918888754302, + 29.713400578105436 + ], + [ + 72.41950352057567, + 29.713400578105436 + ], + [ + 72.30466083709199, + 29.518752843176983 + ], + [ + 72.41950352057567, + 29.32410510824853 + ], + [ + 72.64918888754302, + 29.32410510824853 + ], + [ + 72.7640315710267, + 29.518752843176983 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.7640315710267, + 29.90804831303389 + ], + [ + 72.64918888754302, + 30.102696047962343 + ], + [ + 72.41950352057567, + 30.102696047962343 + ], + [ + 72.30466083709199, + 29.90804831303389 + ], + [ + 72.41950352057567, + 29.71340057810544 + ], + [ + 72.64918888754302, + 29.71340057810544 + ], + [ + 72.7640315710267, + 29.90804831303389 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.7640315710267, + 30.297343782890795 + ], + [ + 72.64918888754302, + 30.491991517819248 + ], + [ + 72.41950352057567, + 30.491991517819248 + ], + [ + 72.30466083709199, + 30.297343782890795 + ], + [ + 72.41950352057567, + 30.102696047962343 + ], + [ + 72.64918888754302, + 30.102696047962343 + ], + [ + 72.7640315710267, + 30.297343782890795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.7640315710267, + 30.686639252747703 + ], + [ + 72.64918888754302, + 30.881286987676155 + ], + [ + 72.41950352057567, + 30.881286987676155 + ], + [ + 72.30466083709199, + 30.686639252747703 + ], + [ + 72.41950352057567, + 30.49199151781925 + ], + [ + 72.64918888754302, + 30.49199151781925 + ], + [ + 72.7640315710267, + 30.686639252747703 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.7640315710267, + 31.07593472260461 + ], + [ + 72.64918888754302, + 31.270582457533063 + ], + [ + 72.41950352057567, + 31.270582457533063 + ], + [ + 72.30466083709199, + 31.07593472260461 + ], + [ + 72.41950352057567, + 30.88128698767616 + ], + [ + 72.64918888754302, + 30.88128698767616 + ], + [ + 72.7640315710267, + 31.07593472260461 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.7640315710267, + 31.465230192461515 + ], + [ + 72.64918888754302, + 31.659877927389967 + ], + [ + 72.41950352057567, + 31.659877927389967 + ], + [ + 72.30466083709199, + 31.465230192461515 + ], + [ + 72.41950352057567, + 31.270582457533063 + ], + [ + 72.64918888754302, + 31.270582457533063 + ], + [ + 72.7640315710267, + 31.465230192461515 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.7640315710267, + 31.854525662318423 + ], + [ + 72.64918888754302, + 32.049173397246875 + ], + [ + 72.41950352057567, + 32.049173397246875 + ], + [ + 72.30466083709199, + 31.854525662318423 + ], + [ + 72.41950352057567, + 31.65987792738997 + ], + [ + 72.64918888754302, + 31.65987792738997 + ], + [ + 72.7640315710267, + 31.854525662318423 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.7640315710267, + 32.24382113217533 + ], + [ + 72.64918888754302, + 32.43846886710378 + ], + [ + 72.41950352057567, + 32.43846886710378 + ], + [ + 72.30466083709199, + 32.24382113217533 + ], + [ + 72.41950352057567, + 32.049173397246875 + ], + [ + 72.64918888754302, + 32.049173397246875 + ], + [ + 72.7640315710267, + 32.24382113217533 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.7640315710267, + 32.63311660203224 + ], + [ + 72.64918888754302, + 32.82776433696069 + ], + [ + 72.41950352057567, + 32.82776433696069 + ], + [ + 72.30466083709199, + 32.63311660203224 + ], + [ + 72.41950352057567, + 32.438468867103786 + ], + [ + 72.64918888754302, + 32.438468867103786 + ], + [ + 72.7640315710267, + 32.63311660203224 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.7640315710267, + 33.02241207188914 + ], + [ + 72.64918888754302, + 33.217059806817595 + ], + [ + 72.41950352057567, + 33.217059806817595 + ], + [ + 72.30466083709199, + 33.02241207188914 + ], + [ + 72.41950352057567, + 32.82776433696069 + ], + [ + 72.64918888754302, + 32.82776433696069 + ], + [ + 72.7640315710267, + 33.02241207188914 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.7640315710267, + 33.41170754174605 + ], + [ + 72.64918888754302, + 33.6063552766745 + ], + [ + 72.41950352057567, + 33.6063552766745 + ], + [ + 72.30466083709199, + 33.41170754174605 + ], + [ + 72.41950352057567, + 33.217059806817595 + ], + [ + 72.64918888754302, + 33.217059806817595 + ], + [ + 72.7640315710267, + 33.41170754174605 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.7640315710267, + 33.80100301160295 + ], + [ + 72.64918888754302, + 33.9956507465314 + ], + [ + 72.41950352057567, + 33.9956507465314 + ], + [ + 72.30466083709199, + 33.80100301160295 + ], + [ + 72.41950352057567, + 33.6063552766745 + ], + [ + 72.64918888754302, + 33.6063552766745 + ], + [ + 72.7640315710267, + 33.80100301160295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.7640315710267, + 34.190298481459855 + ], + [ + 72.64918888754302, + 34.38494621638831 + ], + [ + 72.41950352057567, + 34.38494621638831 + ], + [ + 72.30466083709199, + 34.190298481459855 + ], + [ + 72.41950352057567, + 33.9956507465314 + ], + [ + 72.64918888754302, + 33.9956507465314 + ], + [ + 72.7640315710267, + 34.190298481459855 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.7640315710267, + 34.57959395131677 + ], + [ + 72.64918888754302, + 34.77424168624522 + ], + [ + 72.41950352057567, + 34.77424168624522 + ], + [ + 72.30466083709199, + 34.57959395131677 + ], + [ + 72.41950352057567, + 34.384946216388315 + ], + [ + 72.64918888754302, + 34.384946216388315 + ], + [ + 72.7640315710267, + 34.57959395131677 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.7640315710267, + 34.96888942117368 + ], + [ + 72.64918888754302, + 35.16353715610213 + ], + [ + 72.41950352057567, + 35.16353715610213 + ], + [ + 72.30466083709199, + 34.96888942117368 + ], + [ + 72.41950352057567, + 34.774241686245226 + ], + [ + 72.64918888754302, + 34.774241686245226 + ], + [ + 72.7640315710267, + 34.96888942117368 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.7640315710267, + 35.35818489103058 + ], + [ + 72.64918888754302, + 35.552832625959034 + ], + [ + 72.41950352057567, + 35.552832625959034 + ], + [ + 72.30466083709199, + 35.35818489103058 + ], + [ + 72.41950352057567, + 35.16353715610213 + ], + [ + 72.64918888754302, + 35.16353715610213 + ], + [ + 72.7640315710267, + 35.35818489103058 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.7640315710267, + 35.74748036088749 + ], + [ + 72.64918888754302, + 35.94212809581594 + ], + [ + 72.41950352057567, + 35.94212809581594 + ], + [ + 72.30466083709199, + 35.74748036088749 + ], + [ + 72.41950352057567, + 35.552832625959034 + ], + [ + 72.64918888754302, + 35.552832625959034 + ], + [ + 72.7640315710267, + 35.74748036088749 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.7640315710267, + 36.13677583074439 + ], + [ + 72.64918888754302, + 36.33142356567284 + ], + [ + 72.41950352057567, + 36.33142356567284 + ], + [ + 72.30466083709199, + 36.13677583074439 + ], + [ + 72.41950352057567, + 35.94212809581594 + ], + [ + 72.64918888754302, + 35.94212809581594 + ], + [ + 72.7640315710267, + 36.13677583074439 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.7640315710267, + 36.526071300601295 + ], + [ + 72.64918888754302, + 36.72071903552975 + ], + [ + 72.41950352057567, + 36.72071903552975 + ], + [ + 72.30466083709199, + 36.526071300601295 + ], + [ + 72.41950352057567, + 36.33142356567284 + ], + [ + 72.64918888754302, + 36.33142356567284 + ], + [ + 72.7640315710267, + 36.526071300601295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.7640315710267, + 36.915366770458206 + ], + [ + 72.64918888754302, + 37.11001450538666 + ], + [ + 72.41950352057567, + 37.11001450538666 + ], + [ + 72.30466083709199, + 36.915366770458206 + ], + [ + 72.41950352057567, + 36.720719035529754 + ], + [ + 72.64918888754302, + 36.720719035529754 + ], + [ + 72.7640315710267, + 36.915366770458206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.7640315710267, + 37.30466224031511 + ], + [ + 72.64918888754302, + 37.49930997524356 + ], + [ + 72.41950352057567, + 37.49930997524356 + ], + [ + 72.30466083709199, + 37.30466224031511 + ], + [ + 72.41950352057567, + 37.11001450538666 + ], + [ + 72.64918888754302, + 37.11001450538666 + ], + [ + 72.7640315710267, + 37.30466224031511 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.7640315710267, + 37.69395771017202 + ], + [ + 72.64918888754302, + 37.888605445100474 + ], + [ + 72.41950352057567, + 37.888605445100474 + ], + [ + 72.30466083709199, + 37.69395771017202 + ], + [ + 72.41950352057567, + 37.49930997524357 + ], + [ + 72.64918888754302, + 37.49930997524357 + ], + [ + 72.7640315710267, + 37.69395771017202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.7640315710267, + 38.083253180028926 + ], + [ + 72.64918888754302, + 38.27790091495738 + ], + [ + 72.41950352057567, + 38.27790091495738 + ], + [ + 72.30466083709199, + 38.083253180028926 + ], + [ + 72.41950352057567, + 37.888605445100474 + ], + [ + 72.64918888754302, + 37.888605445100474 + ], + [ + 72.7640315710267, + 38.083253180028926 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.7640315710267, + 38.47254864988583 + ], + [ + 72.64918888754302, + 38.66719638481428 + ], + [ + 72.41950352057567, + 38.66719638481428 + ], + [ + 72.30466083709199, + 38.47254864988583 + ], + [ + 72.41950352057567, + 38.27790091495738 + ], + [ + 72.64918888754302, + 38.27790091495738 + ], + [ + 72.7640315710267, + 38.47254864988583 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.7640315710267, + 38.861844119742734 + ], + [ + 72.64918888754302, + 39.05649185467119 + ], + [ + 72.41950352057567, + 39.05649185467119 + ], + [ + 72.30466083709199, + 38.861844119742734 + ], + [ + 72.41950352057567, + 38.66719638481428 + ], + [ + 72.64918888754302, + 38.66719638481428 + ], + [ + 72.7640315710267, + 38.861844119742734 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.7640315710267, + 39.25113958959964 + ], + [ + 72.64918888754302, + 39.44578732452809 + ], + [ + 72.41950352057567, + 39.44578732452809 + ], + [ + 72.30466083709199, + 39.25113958959964 + ], + [ + 72.41950352057567, + 39.05649185467119 + ], + [ + 72.64918888754302, + 39.05649185467119 + ], + [ + 72.7640315710267, + 39.25113958959964 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.7640315710267, + 39.64043505945655 + ], + [ + 72.64918888754302, + 39.835082794385 + ], + [ + 72.41950352057567, + 39.835082794385 + ], + [ + 72.30466083709199, + 39.64043505945655 + ], + [ + 72.41950352057567, + 39.4457873245281 + ], + [ + 72.64918888754302, + 39.4457873245281 + ], + [ + 72.7640315710267, + 39.64043505945655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.7640315710267, + 40.029730529313454 + ], + [ + 72.64918888754302, + 40.224378264241906 + ], + [ + 72.41950352057567, + 40.224378264241906 + ], + [ + 72.30466083709199, + 40.029730529313454 + ], + [ + 72.41950352057567, + 39.835082794385 + ], + [ + 72.64918888754302, + 39.835082794385 + ], + [ + 72.7640315710267, + 40.029730529313454 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.7640315710267, + 40.419025999170366 + ], + [ + 72.64918888754302, + 40.61367373409882 + ], + [ + 72.41950352057567, + 40.61367373409882 + ], + [ + 72.30466083709199, + 40.419025999170366 + ], + [ + 72.41950352057567, + 40.22437826424191 + ], + [ + 72.64918888754302, + 40.22437826424191 + ], + [ + 72.7640315710267, + 40.419025999170366 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.7640315710267, + 40.80832146902727 + ], + [ + 72.64918888754302, + 41.00296920395572 + ], + [ + 72.41950352057567, + 41.00296920395572 + ], + [ + 72.30466083709199, + 40.80832146902727 + ], + [ + 72.41950352057567, + 40.61367373409882 + ], + [ + 72.64918888754302, + 40.61367373409882 + ], + [ + 72.7640315710267, + 40.80832146902727 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.7640315710267, + 41.197616938884174 + ], + [ + 72.64918888754302, + 41.392264673812626 + ], + [ + 72.41950352057567, + 41.392264673812626 + ], + [ + 72.30466083709199, + 41.197616938884174 + ], + [ + 72.41950352057567, + 41.00296920395572 + ], + [ + 72.64918888754302, + 41.00296920395572 + ], + [ + 72.7640315710267, + 41.197616938884174 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.7640315710267, + 41.58691240874108 + ], + [ + 72.64918888754302, + 41.78156014366953 + ], + [ + 72.41950352057567, + 41.78156014366953 + ], + [ + 72.30466083709199, + 41.58691240874108 + ], + [ + 72.41950352057567, + 41.392264673812626 + ], + [ + 72.64918888754302, + 41.392264673812626 + ], + [ + 72.7640315710267, + 41.58691240874108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.7640315710267, + 41.97620787859798 + ], + [ + 72.64918888754302, + 42.170855613526435 + ], + [ + 72.41950352057567, + 42.170855613526435 + ], + [ + 72.30466083709199, + 41.97620787859798 + ], + [ + 72.41950352057567, + 41.78156014366953 + ], + [ + 72.64918888754302, + 41.78156014366953 + ], + [ + 72.7640315710267, + 41.97620787859798 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.7640315710267, + 42.365503348454894 + ], + [ + 72.64918888754302, + 42.560151083383346 + ], + [ + 72.41950352057567, + 42.560151083383346 + ], + [ + 72.30466083709199, + 42.365503348454894 + ], + [ + 72.41950352057567, + 42.17085561352644 + ], + [ + 72.64918888754302, + 42.17085561352644 + ], + [ + 72.7640315710267, + 42.365503348454894 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.7640315710267, + 42.754798818311805 + ], + [ + 72.64918888754302, + 42.94944655324026 + ], + [ + 72.41950352057567, + 42.94944655324026 + ], + [ + 72.30466083709199, + 42.754798818311805 + ], + [ + 72.41950352057567, + 42.56015108338335 + ], + [ + 72.64918888754302, + 42.56015108338335 + ], + [ + 72.7640315710267, + 42.754798818311805 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.7640315710267, + 43.14409428816871 + ], + [ + 72.64918888754302, + 43.33874202309716 + ], + [ + 72.41950352057567, + 43.33874202309716 + ], + [ + 72.30466083709199, + 43.14409428816871 + ], + [ + 72.41950352057567, + 42.94944655324026 + ], + [ + 72.64918888754302, + 42.94944655324026 + ], + [ + 72.7640315710267, + 43.14409428816871 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.7640315710267, + 43.53338975802561 + ], + [ + 72.64918888754302, + 43.728037492954066 + ], + [ + 72.41950352057567, + 43.728037492954066 + ], + [ + 72.30466083709199, + 43.53338975802561 + ], + [ + 72.41950352057567, + 43.33874202309716 + ], + [ + 72.64918888754302, + 43.33874202309716 + ], + [ + 72.7640315710267, + 43.53338975802561 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.7640315710267, + 43.92268522788252 + ], + [ + 72.64918888754302, + 44.11733296281097 + ], + [ + 72.41950352057567, + 44.11733296281097 + ], + [ + 72.30466083709199, + 43.92268522788252 + ], + [ + 72.41950352057567, + 43.728037492954066 + ], + [ + 72.64918888754302, + 43.728037492954066 + ], + [ + 72.7640315710267, + 43.92268522788252 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.7640315710267, + 44.31198069773942 + ], + [ + 72.64918888754302, + 44.506628432667874 + ], + [ + 72.41950352057567, + 44.506628432667874 + ], + [ + 72.30466083709199, + 44.31198069773942 + ], + [ + 72.41950352057567, + 44.11733296281097 + ], + [ + 72.64918888754302, + 44.11733296281097 + ], + [ + 72.7640315710267, + 44.31198069773942 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.7640315710267, + 44.701276167596326 + ], + [ + 72.64918888754302, + 44.89592390252478 + ], + [ + 72.41950352057567, + 44.89592390252478 + ], + [ + 72.30466083709199, + 44.701276167596326 + ], + [ + 72.41950352057567, + 44.506628432667874 + ], + [ + 72.64918888754302, + 44.506628432667874 + ], + [ + 72.7640315710267, + 44.701276167596326 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.7640315710267, + 45.090571637453245 + ], + [ + 72.64918888754302, + 45.2852193723817 + ], + [ + 72.41950352057567, + 45.2852193723817 + ], + [ + 72.30466083709199, + 45.090571637453245 + ], + [ + 72.41950352057567, + 44.89592390252479 + ], + [ + 72.64918888754302, + 44.89592390252479 + ], + [ + 72.7640315710267, + 45.090571637453245 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.7640315710267, + 45.47986710731015 + ], + [ + 72.64918888754302, + 45.6745148422386 + ], + [ + 72.41950352057567, + 45.6745148422386 + ], + [ + 72.30466083709199, + 45.47986710731015 + ], + [ + 72.41950352057567, + 45.2852193723817 + ], + [ + 72.64918888754302, + 45.2852193723817 + ], + [ + 72.7640315710267, + 45.47986710731015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.7640315710267, + 45.86916257716705 + ], + [ + 72.64918888754302, + 46.063810312095505 + ], + [ + 72.41950352057567, + 46.063810312095505 + ], + [ + 72.30466083709199, + 45.86916257716705 + ], + [ + 72.41950352057567, + 45.6745148422386 + ], + [ + 72.64918888754302, + 45.6745148422386 + ], + [ + 72.7640315710267, + 45.86916257716705 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.7640315710267, + 46.25845804702396 + ], + [ + 72.64918888754302, + 46.45310578195241 + ], + [ + 72.41950352057567, + 46.45310578195241 + ], + [ + 72.30466083709199, + 46.25845804702396 + ], + [ + 72.41950352057567, + 46.063810312095505 + ], + [ + 72.64918888754302, + 46.063810312095505 + ], + [ + 72.7640315710267, + 46.25845804702396 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.7640315710267, + 46.64775351688086 + ], + [ + 72.64918888754302, + 46.842401251809314 + ], + [ + 72.41950352057567, + 46.842401251809314 + ], + [ + 72.30466083709199, + 46.64775351688086 + ], + [ + 72.41950352057567, + 46.45310578195241 + ], + [ + 72.64918888754302, + 46.45310578195241 + ], + [ + 72.7640315710267, + 46.64775351688086 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.7640315710267, + 47.037048986737766 + ], + [ + 72.64918888754302, + 47.23169672166622 + ], + [ + 72.41950352057567, + 47.23169672166622 + ], + [ + 72.30466083709199, + 47.037048986737766 + ], + [ + 72.41950352057567, + 46.842401251809314 + ], + [ + 72.64918888754302, + 46.842401251809314 + ], + [ + 72.7640315710267, + 47.037048986737766 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.7640315710267, + 47.42634445659467 + ], + [ + 72.64918888754302, + 47.62099219152312 + ], + [ + 72.41950352057567, + 47.62099219152312 + ], + [ + 72.30466083709199, + 47.42634445659467 + ], + [ + 72.41950352057567, + 47.23169672166622 + ], + [ + 72.64918888754302, + 47.23169672166622 + ], + [ + 72.7640315710267, + 47.42634445659467 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.7640315710267, + 47.81563992645159 + ], + [ + 72.64918888754302, + 48.01028766138004 + ], + [ + 72.41950352057567, + 48.01028766138004 + ], + [ + 72.30466083709199, + 47.81563992645159 + ], + [ + 72.41950352057567, + 47.620992191523136 + ], + [ + 72.64918888754302, + 47.620992191523136 + ], + [ + 72.7640315710267, + 47.81563992645159 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.10855962147774, + 11.805808964687746 + ], + [ + 72.99371693799405, + 12.0004566996162 + ], + [ + 72.7640315710267, + 12.0004566996162 + ], + [ + 72.64918888754302, + 11.805808964687746 + ], + [ + 72.7640315710267, + 11.611161229759292 + ], + [ + 72.99371693799405, + 11.611161229759292 + ], + [ + 73.10855962147774, + 11.805808964687746 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.10855962147774, + 12.195104434544652 + ], + [ + 72.99371693799405, + 12.389752169473105 + ], + [ + 72.7640315710267, + 12.389752169473105 + ], + [ + 72.64918888754302, + 12.195104434544652 + ], + [ + 72.7640315710267, + 12.000456699616198 + ], + [ + 72.99371693799405, + 12.000456699616198 + ], + [ + 73.10855962147774, + 12.195104434544652 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.10855962147774, + 12.58439990440156 + ], + [ + 72.99371693799405, + 12.779047639330013 + ], + [ + 72.7640315710267, + 12.779047639330013 + ], + [ + 72.64918888754302, + 12.58439990440156 + ], + [ + 72.7640315710267, + 12.389752169473105 + ], + [ + 72.99371693799405, + 12.389752169473105 + ], + [ + 73.10855962147774, + 12.58439990440156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.10855962147774, + 12.973695374258465 + ], + [ + 72.99371693799405, + 13.16834310918692 + ], + [ + 72.7640315710267, + 13.16834310918692 + ], + [ + 72.64918888754302, + 12.973695374258465 + ], + [ + 72.7640315710267, + 12.779047639330011 + ], + [ + 72.99371693799405, + 12.779047639330011 + ], + [ + 73.10855962147774, + 12.973695374258465 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.10855962147774, + 13.362990844115371 + ], + [ + 72.99371693799405, + 13.557638579043825 + ], + [ + 72.7640315710267, + 13.557638579043825 + ], + [ + 72.64918888754302, + 13.362990844115371 + ], + [ + 72.7640315710267, + 13.168343109186917 + ], + [ + 72.99371693799405, + 13.168343109186917 + ], + [ + 73.10855962147774, + 13.362990844115371 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.10855962147774, + 13.752286313972277 + ], + [ + 72.99371693799405, + 13.946934048900731 + ], + [ + 72.7640315710267, + 13.946934048900731 + ], + [ + 72.64918888754302, + 13.752286313972277 + ], + [ + 72.7640315710267, + 13.557638579043823 + ], + [ + 72.99371693799405, + 13.557638579043823 + ], + [ + 73.10855962147774, + 13.752286313972277 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.10855962147774, + 14.141581783829183 + ], + [ + 72.99371693799405, + 14.336229518757637 + ], + [ + 72.7640315710267, + 14.336229518757637 + ], + [ + 72.64918888754302, + 14.141581783829183 + ], + [ + 72.7640315710267, + 13.94693404890073 + ], + [ + 72.99371693799405, + 13.94693404890073 + ], + [ + 73.10855962147774, + 14.141581783829183 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.10855962147774, + 14.530877253686091 + ], + [ + 72.99371693799405, + 14.725524988614545 + ], + [ + 72.7640315710267, + 14.725524988614545 + ], + [ + 72.64918888754302, + 14.530877253686091 + ], + [ + 72.7640315710267, + 14.336229518757637 + ], + [ + 72.99371693799405, + 14.336229518757637 + ], + [ + 73.10855962147774, + 14.530877253686091 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.10855962147774, + 14.920172723542997 + ], + [ + 72.99371693799405, + 15.114820458471451 + ], + [ + 72.7640315710267, + 15.114820458471451 + ], + [ + 72.64918888754302, + 14.920172723542997 + ], + [ + 72.7640315710267, + 14.725524988614543 + ], + [ + 72.99371693799405, + 14.725524988614543 + ], + [ + 73.10855962147774, + 14.920172723542997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.10855962147774, + 15.309468193399903 + ], + [ + 72.99371693799405, + 15.504115928328357 + ], + [ + 72.7640315710267, + 15.504115928328357 + ], + [ + 72.64918888754302, + 15.309468193399903 + ], + [ + 72.7640315710267, + 15.11482045847145 + ], + [ + 72.99371693799405, + 15.11482045847145 + ], + [ + 73.10855962147774, + 15.309468193399903 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.10855962147774, + 15.69876366325681 + ], + [ + 72.99371693799405, + 15.893411398185265 + ], + [ + 72.7640315710267, + 15.893411398185265 + ], + [ + 72.64918888754302, + 15.69876366325681 + ], + [ + 72.7640315710267, + 15.504115928328357 + ], + [ + 72.99371693799405, + 15.504115928328357 + ], + [ + 73.10855962147774, + 15.69876366325681 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.10855962147774, + 16.088059133113717 + ], + [ + 72.99371693799405, + 16.28270686804217 + ], + [ + 72.7640315710267, + 16.28270686804217 + ], + [ + 72.64918888754302, + 16.088059133113717 + ], + [ + 72.7640315710267, + 15.893411398185263 + ], + [ + 72.99371693799405, + 15.893411398185263 + ], + [ + 73.10855962147774, + 16.088059133113717 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.10855962147774, + 16.477354602970625 + ], + [ + 72.99371693799405, + 16.672002337899077 + ], + [ + 72.7640315710267, + 16.672002337899077 + ], + [ + 72.64918888754302, + 16.477354602970625 + ], + [ + 72.7640315710267, + 16.282706868042172 + ], + [ + 72.99371693799405, + 16.282706868042172 + ], + [ + 73.10855962147774, + 16.477354602970625 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.10855962147774, + 16.86665007282753 + ], + [ + 72.99371693799405, + 17.06129780775598 + ], + [ + 72.7640315710267, + 17.06129780775598 + ], + [ + 72.64918888754302, + 16.86665007282753 + ], + [ + 72.7640315710267, + 16.672002337899077 + ], + [ + 72.99371693799405, + 16.672002337899077 + ], + [ + 73.10855962147774, + 16.86665007282753 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.10855962147774, + 17.255945542684437 + ], + [ + 72.99371693799405, + 17.45059327761289 + ], + [ + 72.7640315710267, + 17.45059327761289 + ], + [ + 72.64918888754302, + 17.255945542684437 + ], + [ + 72.7640315710267, + 17.061297807755984 + ], + [ + 72.99371693799405, + 17.061297807755984 + ], + [ + 73.10855962147774, + 17.255945542684437 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.10855962147774, + 17.64524101254134 + ], + [ + 72.99371693799405, + 17.839888747469793 + ], + [ + 72.7640315710267, + 17.839888747469793 + ], + [ + 72.64918888754302, + 17.64524101254134 + ], + [ + 72.7640315710267, + 17.45059327761289 + ], + [ + 72.99371693799405, + 17.45059327761289 + ], + [ + 73.10855962147774, + 17.64524101254134 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.10855962147774, + 18.03453648239825 + ], + [ + 72.99371693799405, + 18.2291842173267 + ], + [ + 72.7640315710267, + 18.2291842173267 + ], + [ + 72.64918888754302, + 18.03453648239825 + ], + [ + 72.7640315710267, + 17.839888747469796 + ], + [ + 72.99371693799405, + 17.839888747469796 + ], + [ + 73.10855962147774, + 18.03453648239825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.10855962147774, + 18.423831952255156 + ], + [ + 72.99371693799405, + 18.61847968718361 + ], + [ + 72.7640315710267, + 18.61847968718361 + ], + [ + 72.64918888754302, + 18.423831952255156 + ], + [ + 72.7640315710267, + 18.229184217326704 + ], + [ + 72.99371693799405, + 18.229184217326704 + ], + [ + 73.10855962147774, + 18.423831952255156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.10855962147774, + 18.81312742211206 + ], + [ + 72.99371693799405, + 19.007775157040513 + ], + [ + 72.7640315710267, + 19.007775157040513 + ], + [ + 72.64918888754302, + 18.81312742211206 + ], + [ + 72.7640315710267, + 18.61847968718361 + ], + [ + 72.99371693799405, + 18.61847968718361 + ], + [ + 73.10855962147774, + 18.81312742211206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.10855962147774, + 19.20242289196897 + ], + [ + 72.99371693799405, + 19.39707062689742 + ], + [ + 72.7640315710267, + 19.39707062689742 + ], + [ + 72.64918888754302, + 19.20242289196897 + ], + [ + 72.7640315710267, + 19.007775157040516 + ], + [ + 72.99371693799405, + 19.007775157040516 + ], + [ + 73.10855962147774, + 19.20242289196897 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.10855962147774, + 19.591718361825876 + ], + [ + 72.99371693799405, + 19.78636609675433 + ], + [ + 72.7640315710267, + 19.78636609675433 + ], + [ + 72.64918888754302, + 19.591718361825876 + ], + [ + 72.7640315710267, + 19.397070626897424 + ], + [ + 72.99371693799405, + 19.397070626897424 + ], + [ + 73.10855962147774, + 19.591718361825876 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.10855962147774, + 19.98101383168278 + ], + [ + 72.99371693799405, + 20.175661566611232 + ], + [ + 72.7640315710267, + 20.175661566611232 + ], + [ + 72.64918888754302, + 19.98101383168278 + ], + [ + 72.7640315710267, + 19.78636609675433 + ], + [ + 72.99371693799405, + 19.78636609675433 + ], + [ + 73.10855962147774, + 19.98101383168278 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.10855962147774, + 20.370309301539685 + ], + [ + 72.99371693799405, + 20.564957036468137 + ], + [ + 72.7640315710267, + 20.564957036468137 + ], + [ + 72.64918888754302, + 20.370309301539685 + ], + [ + 72.7640315710267, + 20.175661566611232 + ], + [ + 72.99371693799405, + 20.175661566611232 + ], + [ + 73.10855962147774, + 20.370309301539685 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.10855962147774, + 20.759604771396592 + ], + [ + 72.99371693799405, + 20.954252506325044 + ], + [ + 72.7640315710267, + 20.954252506325044 + ], + [ + 72.64918888754302, + 20.759604771396592 + ], + [ + 72.7640315710267, + 20.56495703646814 + ], + [ + 72.99371693799405, + 20.56495703646814 + ], + [ + 73.10855962147774, + 20.759604771396592 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.10855962147774, + 21.1489002412535 + ], + [ + 72.99371693799405, + 21.343547976181952 + ], + [ + 72.7640315710267, + 21.343547976181952 + ], + [ + 72.64918888754302, + 21.1489002412535 + ], + [ + 72.7640315710267, + 20.954252506325048 + ], + [ + 72.99371693799405, + 20.954252506325048 + ], + [ + 73.10855962147774, + 21.1489002412535 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.10855962147774, + 21.538195711110404 + ], + [ + 72.99371693799405, + 21.732843446038856 + ], + [ + 72.7640315710267, + 21.732843446038856 + ], + [ + 72.64918888754302, + 21.538195711110404 + ], + [ + 72.7640315710267, + 21.343547976181952 + ], + [ + 72.99371693799405, + 21.343547976181952 + ], + [ + 73.10855962147774, + 21.538195711110404 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.10855962147774, + 21.927491180967312 + ], + [ + 72.99371693799405, + 22.122138915895764 + ], + [ + 72.7640315710267, + 22.122138915895764 + ], + [ + 72.64918888754302, + 21.927491180967312 + ], + [ + 72.7640315710267, + 21.73284344603886 + ], + [ + 72.99371693799405, + 21.73284344603886 + ], + [ + 73.10855962147774, + 21.927491180967312 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.10855962147774, + 22.31678665082422 + ], + [ + 72.99371693799405, + 22.511434385752672 + ], + [ + 72.7640315710267, + 22.511434385752672 + ], + [ + 72.64918888754302, + 22.31678665082422 + ], + [ + 72.7640315710267, + 22.122138915895768 + ], + [ + 72.99371693799405, + 22.122138915895768 + ], + [ + 73.10855962147774, + 22.31678665082422 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.10855962147774, + 22.706082120681124 + ], + [ + 72.99371693799405, + 22.900729855609576 + ], + [ + 72.7640315710267, + 22.900729855609576 + ], + [ + 72.64918888754302, + 22.706082120681124 + ], + [ + 72.7640315710267, + 22.511434385752672 + ], + [ + 72.99371693799405, + 22.511434385752672 + ], + [ + 73.10855962147774, + 22.706082120681124 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.10855962147774, + 23.095377590538032 + ], + [ + 72.99371693799405, + 23.290025325466484 + ], + [ + 72.7640315710267, + 23.290025325466484 + ], + [ + 72.64918888754302, + 23.095377590538032 + ], + [ + 72.7640315710267, + 22.90072985560958 + ], + [ + 72.99371693799405, + 22.90072985560958 + ], + [ + 73.10855962147774, + 23.095377590538032 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.10855962147774, + 23.48467306039494 + ], + [ + 72.99371693799405, + 23.67932079532339 + ], + [ + 72.7640315710267, + 23.67932079532339 + ], + [ + 72.64918888754302, + 23.48467306039494 + ], + [ + 72.7640315710267, + 23.290025325466488 + ], + [ + 72.99371693799405, + 23.290025325466488 + ], + [ + 73.10855962147774, + 23.48467306039494 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.10855962147774, + 23.873968530251844 + ], + [ + 72.99371693799405, + 24.068616265180296 + ], + [ + 72.7640315710267, + 24.068616265180296 + ], + [ + 72.64918888754302, + 23.873968530251844 + ], + [ + 72.7640315710267, + 23.67932079532339 + ], + [ + 72.99371693799405, + 23.67932079532339 + ], + [ + 73.10855962147774, + 23.873968530251844 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.10855962147774, + 24.263264000108748 + ], + [ + 72.99371693799405, + 24.4579117350372 + ], + [ + 72.7640315710267, + 24.4579117350372 + ], + [ + 72.64918888754302, + 24.263264000108748 + ], + [ + 72.7640315710267, + 24.068616265180296 + ], + [ + 72.99371693799405, + 24.068616265180296 + ], + [ + 73.10855962147774, + 24.263264000108748 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.10855962147774, + 24.652559469965656 + ], + [ + 72.99371693799405, + 24.847207204894108 + ], + [ + 72.7640315710267, + 24.847207204894108 + ], + [ + 72.64918888754302, + 24.652559469965656 + ], + [ + 72.7640315710267, + 24.457911735037204 + ], + [ + 72.99371693799405, + 24.457911735037204 + ], + [ + 73.10855962147774, + 24.652559469965656 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.10855962147774, + 25.041854939822564 + ], + [ + 72.99371693799405, + 25.236502674751016 + ], + [ + 72.7640315710267, + 25.236502674751016 + ], + [ + 72.64918888754302, + 25.041854939822564 + ], + [ + 72.7640315710267, + 24.84720720489411 + ], + [ + 72.99371693799405, + 24.84720720489411 + ], + [ + 73.10855962147774, + 25.041854939822564 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.10855962147774, + 25.431150409679468 + ], + [ + 72.99371693799405, + 25.62579814460792 + ], + [ + 72.7640315710267, + 25.62579814460792 + ], + [ + 72.64918888754302, + 25.431150409679468 + ], + [ + 72.7640315710267, + 25.236502674751016 + ], + [ + 72.99371693799405, + 25.236502674751016 + ], + [ + 73.10855962147774, + 25.431150409679468 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.10855962147774, + 25.820445879536376 + ], + [ + 72.99371693799405, + 26.015093614464828 + ], + [ + 72.7640315710267, + 26.015093614464828 + ], + [ + 72.64918888754302, + 25.820445879536376 + ], + [ + 72.7640315710267, + 25.625798144607923 + ], + [ + 72.99371693799405, + 25.625798144607923 + ], + [ + 73.10855962147774, + 25.820445879536376 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.10855962147774, + 26.209741349393283 + ], + [ + 72.99371693799405, + 26.404389084321735 + ], + [ + 72.7640315710267, + 26.404389084321735 + ], + [ + 72.64918888754302, + 26.209741349393283 + ], + [ + 72.7640315710267, + 26.01509361446483 + ], + [ + 72.99371693799405, + 26.01509361446483 + ], + [ + 73.10855962147774, + 26.209741349393283 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.10855962147774, + 26.599036819250188 + ], + [ + 72.99371693799405, + 26.79368455417864 + ], + [ + 72.7640315710267, + 26.79368455417864 + ], + [ + 72.64918888754302, + 26.599036819250188 + ], + [ + 72.7640315710267, + 26.404389084321735 + ], + [ + 72.99371693799405, + 26.404389084321735 + ], + [ + 73.10855962147774, + 26.599036819250188 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.10855962147774, + 26.988332289107095 + ], + [ + 72.99371693799405, + 27.182980024035547 + ], + [ + 72.7640315710267, + 27.182980024035547 + ], + [ + 72.64918888754302, + 26.988332289107095 + ], + [ + 72.7640315710267, + 26.793684554178643 + ], + [ + 72.99371693799405, + 26.793684554178643 + ], + [ + 73.10855962147774, + 26.988332289107095 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.10855962147774, + 27.377627758964003 + ], + [ + 72.99371693799405, + 27.572275493892455 + ], + [ + 72.7640315710267, + 27.572275493892455 + ], + [ + 72.64918888754302, + 27.377627758964003 + ], + [ + 72.7640315710267, + 27.18298002403555 + ], + [ + 72.99371693799405, + 27.18298002403555 + ], + [ + 73.10855962147774, + 27.377627758964003 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.10855962147774, + 27.766923228820907 + ], + [ + 72.99371693799405, + 27.96157096374936 + ], + [ + 72.7640315710267, + 27.96157096374936 + ], + [ + 72.64918888754302, + 27.766923228820907 + ], + [ + 72.7640315710267, + 27.572275493892455 + ], + [ + 72.99371693799405, + 27.572275493892455 + ], + [ + 73.10855962147774, + 27.766923228820907 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.10855962147774, + 28.156218698677815 + ], + [ + 72.99371693799405, + 28.350866433606267 + ], + [ + 72.7640315710267, + 28.350866433606267 + ], + [ + 72.64918888754302, + 28.156218698677815 + ], + [ + 72.7640315710267, + 27.961570963749363 + ], + [ + 72.99371693799405, + 27.961570963749363 + ], + [ + 73.10855962147774, + 28.156218698677815 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.10855962147774, + 28.54551416853472 + ], + [ + 72.99371693799405, + 28.74016190346317 + ], + [ + 72.7640315710267, + 28.74016190346317 + ], + [ + 72.64918888754302, + 28.54551416853472 + ], + [ + 72.7640315710267, + 28.350866433606267 + ], + [ + 72.99371693799405, + 28.350866433606267 + ], + [ + 73.10855962147774, + 28.54551416853472 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.10855962147774, + 28.934809638391627 + ], + [ + 72.99371693799405, + 29.12945737332008 + ], + [ + 72.7640315710267, + 29.12945737332008 + ], + [ + 72.64918888754302, + 28.934809638391627 + ], + [ + 72.7640315710267, + 28.740161903463175 + ], + [ + 72.99371693799405, + 28.740161903463175 + ], + [ + 73.10855962147774, + 28.934809638391627 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.10855962147774, + 29.32410510824853 + ], + [ + 72.99371693799405, + 29.518752843176983 + ], + [ + 72.7640315710267, + 29.518752843176983 + ], + [ + 72.64918888754302, + 29.32410510824853 + ], + [ + 72.7640315710267, + 29.12945737332008 + ], + [ + 72.99371693799405, + 29.12945737332008 + ], + [ + 73.10855962147774, + 29.32410510824853 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.10855962147774, + 29.71340057810544 + ], + [ + 72.99371693799405, + 29.90804831303389 + ], + [ + 72.7640315710267, + 29.90804831303389 + ], + [ + 72.64918888754302, + 29.71340057810544 + ], + [ + 72.7640315710267, + 29.518752843176987 + ], + [ + 72.99371693799405, + 29.518752843176987 + ], + [ + 73.10855962147774, + 29.71340057810544 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.10855962147774, + 30.102696047962343 + ], + [ + 72.99371693799405, + 30.297343782890795 + ], + [ + 72.7640315710267, + 30.297343782890795 + ], + [ + 72.64918888754302, + 30.102696047962343 + ], + [ + 72.7640315710267, + 29.90804831303389 + ], + [ + 72.99371693799405, + 29.90804831303389 + ], + [ + 73.10855962147774, + 30.102696047962343 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.10855962147774, + 30.49199151781925 + ], + [ + 72.99371693799405, + 30.686639252747703 + ], + [ + 72.7640315710267, + 30.686639252747703 + ], + [ + 72.64918888754302, + 30.49199151781925 + ], + [ + 72.7640315710267, + 30.2973437828908 + ], + [ + 72.99371693799405, + 30.2973437828908 + ], + [ + 73.10855962147774, + 30.49199151781925 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.10855962147774, + 30.88128698767616 + ], + [ + 72.99371693799405, + 31.07593472260461 + ], + [ + 72.7640315710267, + 31.07593472260461 + ], + [ + 72.64918888754302, + 30.88128698767616 + ], + [ + 72.7640315710267, + 30.686639252747707 + ], + [ + 72.99371693799405, + 30.686639252747707 + ], + [ + 73.10855962147774, + 30.88128698767616 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.10855962147774, + 31.270582457533063 + ], + [ + 72.99371693799405, + 31.465230192461515 + ], + [ + 72.7640315710267, + 31.465230192461515 + ], + [ + 72.64918888754302, + 31.270582457533063 + ], + [ + 72.7640315710267, + 31.07593472260461 + ], + [ + 72.99371693799405, + 31.07593472260461 + ], + [ + 73.10855962147774, + 31.270582457533063 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.10855962147774, + 31.65987792738997 + ], + [ + 72.99371693799405, + 31.854525662318423 + ], + [ + 72.7640315710267, + 31.854525662318423 + ], + [ + 72.64918888754302, + 31.65987792738997 + ], + [ + 72.7640315710267, + 31.46523019246152 + ], + [ + 72.99371693799405, + 31.46523019246152 + ], + [ + 73.10855962147774, + 31.65987792738997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.10855962147774, + 32.049173397246875 + ], + [ + 72.99371693799405, + 32.24382113217533 + ], + [ + 72.7640315710267, + 32.24382113217533 + ], + [ + 72.64918888754302, + 32.049173397246875 + ], + [ + 72.7640315710267, + 31.854525662318423 + ], + [ + 72.99371693799405, + 31.854525662318423 + ], + [ + 73.10855962147774, + 32.049173397246875 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.10855962147774, + 32.438468867103786 + ], + [ + 72.99371693799405, + 32.63311660203224 + ], + [ + 72.7640315710267, + 32.63311660203224 + ], + [ + 72.64918888754302, + 32.438468867103786 + ], + [ + 72.7640315710267, + 32.243821132175334 + ], + [ + 72.99371693799405, + 32.243821132175334 + ], + [ + 73.10855962147774, + 32.438468867103786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.10855962147774, + 32.82776433696069 + ], + [ + 72.99371693799405, + 33.02241207188914 + ], + [ + 72.7640315710267, + 33.02241207188914 + ], + [ + 72.64918888754302, + 32.82776433696069 + ], + [ + 72.7640315710267, + 32.63311660203224 + ], + [ + 72.99371693799405, + 32.63311660203224 + ], + [ + 73.10855962147774, + 32.82776433696069 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.10855962147774, + 33.217059806817595 + ], + [ + 72.99371693799405, + 33.41170754174605 + ], + [ + 72.7640315710267, + 33.41170754174605 + ], + [ + 72.64918888754302, + 33.217059806817595 + ], + [ + 72.7640315710267, + 33.02241207188914 + ], + [ + 72.99371693799405, + 33.02241207188914 + ], + [ + 73.10855962147774, + 33.217059806817595 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.10855962147774, + 33.6063552766745 + ], + [ + 72.99371693799405, + 33.80100301160295 + ], + [ + 72.7640315710267, + 33.80100301160295 + ], + [ + 72.64918888754302, + 33.6063552766745 + ], + [ + 72.7640315710267, + 33.41170754174605 + ], + [ + 72.99371693799405, + 33.41170754174605 + ], + [ + 73.10855962147774, + 33.6063552766745 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.10855962147774, + 33.9956507465314 + ], + [ + 72.99371693799405, + 34.190298481459855 + ], + [ + 72.7640315710267, + 34.190298481459855 + ], + [ + 72.64918888754302, + 33.9956507465314 + ], + [ + 72.7640315710267, + 33.80100301160295 + ], + [ + 72.99371693799405, + 33.80100301160295 + ], + [ + 73.10855962147774, + 33.9956507465314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.10855962147774, + 34.384946216388315 + ], + [ + 72.99371693799405, + 34.57959395131677 + ], + [ + 72.7640315710267, + 34.57959395131677 + ], + [ + 72.64918888754302, + 34.384946216388315 + ], + [ + 72.7640315710267, + 34.19029848145986 + ], + [ + 72.99371693799405, + 34.19029848145986 + ], + [ + 73.10855962147774, + 34.384946216388315 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.10855962147774, + 34.774241686245226 + ], + [ + 72.99371693799405, + 34.96888942117368 + ], + [ + 72.7640315710267, + 34.96888942117368 + ], + [ + 72.64918888754302, + 34.774241686245226 + ], + [ + 72.7640315710267, + 34.579593951316774 + ], + [ + 72.99371693799405, + 34.579593951316774 + ], + [ + 73.10855962147774, + 34.774241686245226 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.10855962147774, + 35.16353715610213 + ], + [ + 72.99371693799405, + 35.35818489103058 + ], + [ + 72.7640315710267, + 35.35818489103058 + ], + [ + 72.64918888754302, + 35.16353715610213 + ], + [ + 72.7640315710267, + 34.96888942117368 + ], + [ + 72.99371693799405, + 34.96888942117368 + ], + [ + 73.10855962147774, + 35.16353715610213 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.10855962147774, + 35.552832625959034 + ], + [ + 72.99371693799405, + 35.74748036088749 + ], + [ + 72.7640315710267, + 35.74748036088749 + ], + [ + 72.64918888754302, + 35.552832625959034 + ], + [ + 72.7640315710267, + 35.35818489103058 + ], + [ + 72.99371693799405, + 35.35818489103058 + ], + [ + 73.10855962147774, + 35.552832625959034 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.10855962147774, + 35.94212809581594 + ], + [ + 72.99371693799405, + 36.13677583074439 + ], + [ + 72.7640315710267, + 36.13677583074439 + ], + [ + 72.64918888754302, + 35.94212809581594 + ], + [ + 72.7640315710267, + 35.74748036088749 + ], + [ + 72.99371693799405, + 35.74748036088749 + ], + [ + 73.10855962147774, + 35.94212809581594 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.10855962147774, + 36.33142356567284 + ], + [ + 72.99371693799405, + 36.526071300601295 + ], + [ + 72.7640315710267, + 36.526071300601295 + ], + [ + 72.64918888754302, + 36.33142356567284 + ], + [ + 72.7640315710267, + 36.13677583074439 + ], + [ + 72.99371693799405, + 36.13677583074439 + ], + [ + 73.10855962147774, + 36.33142356567284 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.10855962147774, + 36.720719035529754 + ], + [ + 72.99371693799405, + 36.915366770458206 + ], + [ + 72.7640315710267, + 36.915366770458206 + ], + [ + 72.64918888754302, + 36.720719035529754 + ], + [ + 72.7640315710267, + 36.5260713006013 + ], + [ + 72.99371693799405, + 36.5260713006013 + ], + [ + 73.10855962147774, + 36.720719035529754 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.10855962147774, + 37.11001450538666 + ], + [ + 72.99371693799405, + 37.30466224031511 + ], + [ + 72.7640315710267, + 37.30466224031511 + ], + [ + 72.64918888754302, + 37.11001450538666 + ], + [ + 72.7640315710267, + 36.915366770458206 + ], + [ + 72.99371693799405, + 36.915366770458206 + ], + [ + 73.10855962147774, + 37.11001450538666 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.10855962147774, + 37.49930997524357 + ], + [ + 72.99371693799405, + 37.69395771017202 + ], + [ + 72.7640315710267, + 37.69395771017202 + ], + [ + 72.64918888754302, + 37.49930997524357 + ], + [ + 72.7640315710267, + 37.30466224031512 + ], + [ + 72.99371693799405, + 37.30466224031512 + ], + [ + 73.10855962147774, + 37.49930997524357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.10855962147774, + 37.888605445100474 + ], + [ + 72.99371693799405, + 38.083253180028926 + ], + [ + 72.7640315710267, + 38.083253180028926 + ], + [ + 72.64918888754302, + 37.888605445100474 + ], + [ + 72.7640315710267, + 37.69395771017202 + ], + [ + 72.99371693799405, + 37.69395771017202 + ], + [ + 73.10855962147774, + 37.888605445100474 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.10855962147774, + 38.27790091495738 + ], + [ + 72.99371693799405, + 38.47254864988583 + ], + [ + 72.7640315710267, + 38.47254864988583 + ], + [ + 72.64918888754302, + 38.27790091495738 + ], + [ + 72.7640315710267, + 38.083253180028926 + ], + [ + 72.99371693799405, + 38.083253180028926 + ], + [ + 73.10855962147774, + 38.27790091495738 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.10855962147774, + 38.66719638481428 + ], + [ + 72.99371693799405, + 38.861844119742734 + ], + [ + 72.7640315710267, + 38.861844119742734 + ], + [ + 72.64918888754302, + 38.66719638481428 + ], + [ + 72.7640315710267, + 38.47254864988583 + ], + [ + 72.99371693799405, + 38.47254864988583 + ], + [ + 73.10855962147774, + 38.66719638481428 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.10855962147774, + 39.05649185467119 + ], + [ + 72.99371693799405, + 39.25113958959964 + ], + [ + 72.7640315710267, + 39.25113958959964 + ], + [ + 72.64918888754302, + 39.05649185467119 + ], + [ + 72.7640315710267, + 38.861844119742734 + ], + [ + 72.99371693799405, + 38.861844119742734 + ], + [ + 73.10855962147774, + 39.05649185467119 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.10855962147774, + 39.4457873245281 + ], + [ + 72.99371693799405, + 39.64043505945655 + ], + [ + 72.7640315710267, + 39.64043505945655 + ], + [ + 72.64918888754302, + 39.4457873245281 + ], + [ + 72.7640315710267, + 39.251139589599646 + ], + [ + 72.99371693799405, + 39.251139589599646 + ], + [ + 73.10855962147774, + 39.4457873245281 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.10855962147774, + 39.835082794385 + ], + [ + 72.99371693799405, + 40.029730529313454 + ], + [ + 72.7640315710267, + 40.029730529313454 + ], + [ + 72.64918888754302, + 39.835082794385 + ], + [ + 72.7640315710267, + 39.64043505945655 + ], + [ + 72.99371693799405, + 39.64043505945655 + ], + [ + 73.10855962147774, + 39.835082794385 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.10855962147774, + 40.22437826424191 + ], + [ + 72.99371693799405, + 40.419025999170366 + ], + [ + 72.7640315710267, + 40.419025999170366 + ], + [ + 72.64918888754302, + 40.22437826424191 + ], + [ + 72.7640315710267, + 40.02973052931346 + ], + [ + 72.99371693799405, + 40.02973052931346 + ], + [ + 73.10855962147774, + 40.22437826424191 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.10855962147774, + 40.61367373409882 + ], + [ + 72.99371693799405, + 40.80832146902727 + ], + [ + 72.7640315710267, + 40.80832146902727 + ], + [ + 72.64918888754302, + 40.61367373409882 + ], + [ + 72.7640315710267, + 40.419025999170366 + ], + [ + 72.99371693799405, + 40.419025999170366 + ], + [ + 73.10855962147774, + 40.61367373409882 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.10855962147774, + 41.00296920395572 + ], + [ + 72.99371693799405, + 41.197616938884174 + ], + [ + 72.7640315710267, + 41.197616938884174 + ], + [ + 72.64918888754302, + 41.00296920395572 + ], + [ + 72.7640315710267, + 40.80832146902727 + ], + [ + 72.99371693799405, + 40.80832146902727 + ], + [ + 73.10855962147774, + 41.00296920395572 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.10855962147774, + 41.392264673812626 + ], + [ + 72.99371693799405, + 41.58691240874108 + ], + [ + 72.7640315710267, + 41.58691240874108 + ], + [ + 72.64918888754302, + 41.392264673812626 + ], + [ + 72.7640315710267, + 41.197616938884174 + ], + [ + 72.99371693799405, + 41.197616938884174 + ], + [ + 73.10855962147774, + 41.392264673812626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.10855962147774, + 41.78156014366953 + ], + [ + 72.99371693799405, + 41.97620787859798 + ], + [ + 72.7640315710267, + 41.97620787859798 + ], + [ + 72.64918888754302, + 41.78156014366953 + ], + [ + 72.7640315710267, + 41.58691240874108 + ], + [ + 72.99371693799405, + 41.58691240874108 + ], + [ + 73.10855962147774, + 41.78156014366953 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.10855962147774, + 42.17085561352644 + ], + [ + 72.99371693799405, + 42.365503348454894 + ], + [ + 72.7640315710267, + 42.365503348454894 + ], + [ + 72.64918888754302, + 42.17085561352644 + ], + [ + 72.7640315710267, + 41.97620787859799 + ], + [ + 72.99371693799405, + 41.97620787859799 + ], + [ + 73.10855962147774, + 42.17085561352644 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.10855962147774, + 42.56015108338335 + ], + [ + 72.99371693799405, + 42.754798818311805 + ], + [ + 72.7640315710267, + 42.754798818311805 + ], + [ + 72.64918888754302, + 42.56015108338335 + ], + [ + 72.7640315710267, + 42.3655033484549 + ], + [ + 72.99371693799405, + 42.3655033484549 + ], + [ + 73.10855962147774, + 42.56015108338335 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.10855962147774, + 42.94944655324026 + ], + [ + 72.99371693799405, + 43.14409428816871 + ], + [ + 72.7640315710267, + 43.14409428816871 + ], + [ + 72.64918888754302, + 42.94944655324026 + ], + [ + 72.7640315710267, + 42.754798818311805 + ], + [ + 72.99371693799405, + 42.754798818311805 + ], + [ + 73.10855962147774, + 42.94944655324026 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.10855962147774, + 43.33874202309716 + ], + [ + 72.99371693799405, + 43.53338975802561 + ], + [ + 72.7640315710267, + 43.53338975802561 + ], + [ + 72.64918888754302, + 43.33874202309716 + ], + [ + 72.7640315710267, + 43.14409428816871 + ], + [ + 72.99371693799405, + 43.14409428816871 + ], + [ + 73.10855962147774, + 43.33874202309716 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.10855962147774, + 43.728037492954066 + ], + [ + 72.99371693799405, + 43.92268522788252 + ], + [ + 72.7640315710267, + 43.92268522788252 + ], + [ + 72.64918888754302, + 43.728037492954066 + ], + [ + 72.7640315710267, + 43.53338975802561 + ], + [ + 72.99371693799405, + 43.53338975802561 + ], + [ + 73.10855962147774, + 43.728037492954066 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.10855962147774, + 44.11733296281097 + ], + [ + 72.99371693799405, + 44.31198069773942 + ], + [ + 72.7640315710267, + 44.31198069773942 + ], + [ + 72.64918888754302, + 44.11733296281097 + ], + [ + 72.7640315710267, + 43.92268522788252 + ], + [ + 72.99371693799405, + 43.92268522788252 + ], + [ + 73.10855962147774, + 44.11733296281097 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.10855962147774, + 44.506628432667874 + ], + [ + 72.99371693799405, + 44.701276167596326 + ], + [ + 72.7640315710267, + 44.701276167596326 + ], + [ + 72.64918888754302, + 44.506628432667874 + ], + [ + 72.7640315710267, + 44.31198069773942 + ], + [ + 72.99371693799405, + 44.31198069773942 + ], + [ + 73.10855962147774, + 44.506628432667874 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.10855962147774, + 44.89592390252479 + ], + [ + 72.99371693799405, + 45.090571637453245 + ], + [ + 72.7640315710267, + 45.090571637453245 + ], + [ + 72.64918888754302, + 44.89592390252479 + ], + [ + 72.7640315710267, + 44.70127616759634 + ], + [ + 72.99371693799405, + 44.70127616759634 + ], + [ + 73.10855962147774, + 44.89592390252479 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.10855962147774, + 45.2852193723817 + ], + [ + 72.99371693799405, + 45.47986710731015 + ], + [ + 72.7640315710267, + 45.47986710731015 + ], + [ + 72.64918888754302, + 45.2852193723817 + ], + [ + 72.7640315710267, + 45.090571637453245 + ], + [ + 72.99371693799405, + 45.090571637453245 + ], + [ + 73.10855962147774, + 45.2852193723817 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.10855962147774, + 45.6745148422386 + ], + [ + 72.99371693799405, + 45.86916257716705 + ], + [ + 72.7640315710267, + 45.86916257716705 + ], + [ + 72.64918888754302, + 45.6745148422386 + ], + [ + 72.7640315710267, + 45.47986710731015 + ], + [ + 72.99371693799405, + 45.47986710731015 + ], + [ + 73.10855962147774, + 45.6745148422386 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.10855962147774, + 46.063810312095505 + ], + [ + 72.99371693799405, + 46.25845804702396 + ], + [ + 72.7640315710267, + 46.25845804702396 + ], + [ + 72.64918888754302, + 46.063810312095505 + ], + [ + 72.7640315710267, + 45.86916257716705 + ], + [ + 72.99371693799405, + 45.86916257716705 + ], + [ + 73.10855962147774, + 46.063810312095505 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.10855962147774, + 46.45310578195241 + ], + [ + 72.99371693799405, + 46.64775351688086 + ], + [ + 72.7640315710267, + 46.64775351688086 + ], + [ + 72.64918888754302, + 46.45310578195241 + ], + [ + 72.7640315710267, + 46.25845804702396 + ], + [ + 72.99371693799405, + 46.25845804702396 + ], + [ + 73.10855962147774, + 46.45310578195241 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.10855962147774, + 46.842401251809314 + ], + [ + 72.99371693799405, + 47.037048986737766 + ], + [ + 72.7640315710267, + 47.037048986737766 + ], + [ + 72.64918888754302, + 46.842401251809314 + ], + [ + 72.7640315710267, + 46.64775351688086 + ], + [ + 72.99371693799405, + 46.64775351688086 + ], + [ + 73.10855962147774, + 46.842401251809314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.10855962147774, + 47.23169672166622 + ], + [ + 72.99371693799405, + 47.42634445659467 + ], + [ + 72.7640315710267, + 47.42634445659467 + ], + [ + 72.64918888754302, + 47.23169672166622 + ], + [ + 72.7640315710267, + 47.037048986737766 + ], + [ + 72.99371693799405, + 47.037048986737766 + ], + [ + 73.10855962147774, + 47.23169672166622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.10855962147774, + 47.620992191523136 + ], + [ + 72.99371693799405, + 47.81563992645159 + ], + [ + 72.7640315710267, + 47.81563992645159 + ], + [ + 72.64918888754302, + 47.620992191523136 + ], + [ + 72.7640315710267, + 47.426344456594684 + ], + [ + 72.99371693799405, + 47.426344456594684 + ], + [ + 73.10855962147774, + 47.620992191523136 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.45308767192877, + 12.0004566996162 + ], + [ + 73.33824498844508, + 12.195104434544653 + ], + [ + 73.10855962147774, + 12.195104434544653 + ], + [ + 72.99371693799405, + 12.0004566996162 + ], + [ + 73.10855962147774, + 11.805808964687746 + ], + [ + 73.33824498844508, + 11.805808964687746 + ], + [ + 73.45308767192877, + 12.0004566996162 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.45308767192877, + 12.389752169473105 + ], + [ + 73.33824498844508, + 12.58439990440156 + ], + [ + 73.10855962147774, + 12.58439990440156 + ], + [ + 72.99371693799405, + 12.389752169473105 + ], + [ + 73.10855962147774, + 12.195104434544652 + ], + [ + 73.33824498844508, + 12.195104434544652 + ], + [ + 73.45308767192877, + 12.389752169473105 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.45308767192877, + 12.779047639330013 + ], + [ + 73.33824498844508, + 12.973695374258467 + ], + [ + 73.10855962147774, + 12.973695374258467 + ], + [ + 72.99371693799405, + 12.779047639330013 + ], + [ + 73.10855962147774, + 12.58439990440156 + ], + [ + 73.33824498844508, + 12.58439990440156 + ], + [ + 73.45308767192877, + 12.779047639330013 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.45308767192877, + 13.16834310918692 + ], + [ + 73.33824498844508, + 13.362990844115373 + ], + [ + 73.10855962147774, + 13.362990844115373 + ], + [ + 72.99371693799405, + 13.16834310918692 + ], + [ + 73.10855962147774, + 12.973695374258465 + ], + [ + 73.33824498844508, + 12.973695374258465 + ], + [ + 73.45308767192877, + 13.16834310918692 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.45308767192877, + 13.557638579043825 + ], + [ + 73.33824498844508, + 13.752286313972279 + ], + [ + 73.10855962147774, + 13.752286313972279 + ], + [ + 72.99371693799405, + 13.557638579043825 + ], + [ + 73.10855962147774, + 13.362990844115371 + ], + [ + 73.33824498844508, + 13.362990844115371 + ], + [ + 73.45308767192877, + 13.557638579043825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.45308767192877, + 13.946934048900731 + ], + [ + 73.33824498844508, + 14.141581783829185 + ], + [ + 73.10855962147774, + 14.141581783829185 + ], + [ + 72.99371693799405, + 13.946934048900731 + ], + [ + 73.10855962147774, + 13.752286313972277 + ], + [ + 73.33824498844508, + 13.752286313972277 + ], + [ + 73.45308767192877, + 13.946934048900731 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.45308767192877, + 14.336229518757637 + ], + [ + 73.33824498844508, + 14.530877253686091 + ], + [ + 73.10855962147774, + 14.530877253686091 + ], + [ + 72.99371693799405, + 14.336229518757637 + ], + [ + 73.10855962147774, + 14.141581783829183 + ], + [ + 73.33824498844508, + 14.141581783829183 + ], + [ + 73.45308767192877, + 14.336229518757637 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.45308767192877, + 14.725524988614545 + ], + [ + 73.33824498844508, + 14.920172723542999 + ], + [ + 73.10855962147774, + 14.920172723542999 + ], + [ + 72.99371693799405, + 14.725524988614545 + ], + [ + 73.10855962147774, + 14.530877253686091 + ], + [ + 73.33824498844508, + 14.530877253686091 + ], + [ + 73.45308767192877, + 14.725524988614545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.45308767192877, + 15.114820458471451 + ], + [ + 73.33824498844508, + 15.309468193399905 + ], + [ + 73.10855962147774, + 15.309468193399905 + ], + [ + 72.99371693799405, + 15.114820458471451 + ], + [ + 73.10855962147774, + 14.920172723542997 + ], + [ + 73.33824498844508, + 14.920172723542997 + ], + [ + 73.45308767192877, + 15.114820458471451 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.45308767192877, + 15.504115928328357 + ], + [ + 73.33824498844508, + 15.69876366325681 + ], + [ + 73.10855962147774, + 15.69876366325681 + ], + [ + 72.99371693799405, + 15.504115928328357 + ], + [ + 73.10855962147774, + 15.309468193399903 + ], + [ + 73.33824498844508, + 15.309468193399903 + ], + [ + 73.45308767192877, + 15.504115928328357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.45308767192877, + 15.893411398185265 + ], + [ + 73.33824498844508, + 16.088059133113717 + ], + [ + 73.10855962147774, + 16.088059133113717 + ], + [ + 72.99371693799405, + 15.893411398185265 + ], + [ + 73.10855962147774, + 15.69876366325681 + ], + [ + 73.33824498844508, + 15.69876366325681 + ], + [ + 73.45308767192877, + 15.893411398185265 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.45308767192877, + 16.28270686804217 + ], + [ + 73.33824498844508, + 16.47735460297062 + ], + [ + 73.10855962147774, + 16.47735460297062 + ], + [ + 72.99371693799405, + 16.28270686804217 + ], + [ + 73.10855962147774, + 16.088059133113717 + ], + [ + 73.33824498844508, + 16.088059133113717 + ], + [ + 73.45308767192877, + 16.28270686804217 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.45308767192877, + 16.672002337899077 + ], + [ + 73.33824498844508, + 16.86665007282753 + ], + [ + 73.10855962147774, + 16.86665007282753 + ], + [ + 72.99371693799405, + 16.672002337899077 + ], + [ + 73.10855962147774, + 16.477354602970625 + ], + [ + 73.33824498844508, + 16.477354602970625 + ], + [ + 73.45308767192877, + 16.672002337899077 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.45308767192877, + 17.06129780775598 + ], + [ + 73.33824498844508, + 17.255945542684433 + ], + [ + 73.10855962147774, + 17.255945542684433 + ], + [ + 72.99371693799405, + 17.06129780775598 + ], + [ + 73.10855962147774, + 16.86665007282753 + ], + [ + 73.33824498844508, + 16.86665007282753 + ], + [ + 73.45308767192877, + 17.06129780775598 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.45308767192877, + 17.45059327761289 + ], + [ + 73.33824498844508, + 17.64524101254134 + ], + [ + 73.10855962147774, + 17.64524101254134 + ], + [ + 72.99371693799405, + 17.45059327761289 + ], + [ + 73.10855962147774, + 17.255945542684437 + ], + [ + 73.33824498844508, + 17.255945542684437 + ], + [ + 73.45308767192877, + 17.45059327761289 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.45308767192877, + 17.839888747469793 + ], + [ + 73.33824498844508, + 18.034536482398245 + ], + [ + 73.10855962147774, + 18.034536482398245 + ], + [ + 72.99371693799405, + 17.839888747469793 + ], + [ + 73.10855962147774, + 17.64524101254134 + ], + [ + 73.33824498844508, + 17.64524101254134 + ], + [ + 73.45308767192877, + 17.839888747469793 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.45308767192877, + 18.2291842173267 + ], + [ + 73.33824498844508, + 18.423831952255153 + ], + [ + 73.10855962147774, + 18.423831952255153 + ], + [ + 72.99371693799405, + 18.2291842173267 + ], + [ + 73.10855962147774, + 18.03453648239825 + ], + [ + 73.33824498844508, + 18.03453648239825 + ], + [ + 73.45308767192877, + 18.2291842173267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.45308767192877, + 18.61847968718361 + ], + [ + 73.33824498844508, + 18.81312742211206 + ], + [ + 73.10855962147774, + 18.81312742211206 + ], + [ + 72.99371693799405, + 18.61847968718361 + ], + [ + 73.10855962147774, + 18.423831952255156 + ], + [ + 73.33824498844508, + 18.423831952255156 + ], + [ + 73.45308767192877, + 18.61847968718361 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.45308767192877, + 19.007775157040513 + ], + [ + 73.33824498844508, + 19.202422891968965 + ], + [ + 73.10855962147774, + 19.202422891968965 + ], + [ + 72.99371693799405, + 19.007775157040513 + ], + [ + 73.10855962147774, + 18.81312742211206 + ], + [ + 73.33824498844508, + 18.81312742211206 + ], + [ + 73.45308767192877, + 19.007775157040513 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.45308767192877, + 19.39707062689742 + ], + [ + 73.33824498844508, + 19.591718361825873 + ], + [ + 73.10855962147774, + 19.591718361825873 + ], + [ + 72.99371693799405, + 19.39707062689742 + ], + [ + 73.10855962147774, + 19.20242289196897 + ], + [ + 73.33824498844508, + 19.20242289196897 + ], + [ + 73.45308767192877, + 19.39707062689742 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.45308767192877, + 19.78636609675433 + ], + [ + 73.33824498844508, + 19.98101383168278 + ], + [ + 73.10855962147774, + 19.98101383168278 + ], + [ + 72.99371693799405, + 19.78636609675433 + ], + [ + 73.10855962147774, + 19.591718361825876 + ], + [ + 73.33824498844508, + 19.591718361825876 + ], + [ + 73.45308767192877, + 19.78636609675433 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.45308767192877, + 20.175661566611232 + ], + [ + 73.33824498844508, + 20.370309301539685 + ], + [ + 73.10855962147774, + 20.370309301539685 + ], + [ + 72.99371693799405, + 20.175661566611232 + ], + [ + 73.10855962147774, + 19.98101383168278 + ], + [ + 73.33824498844508, + 19.98101383168278 + ], + [ + 73.45308767192877, + 20.175661566611232 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.45308767192877, + 20.564957036468137 + ], + [ + 73.33824498844508, + 20.75960477139659 + ], + [ + 73.10855962147774, + 20.75960477139659 + ], + [ + 72.99371693799405, + 20.564957036468137 + ], + [ + 73.10855962147774, + 20.370309301539685 + ], + [ + 73.33824498844508, + 20.370309301539685 + ], + [ + 73.45308767192877, + 20.564957036468137 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.45308767192877, + 20.954252506325044 + ], + [ + 73.33824498844508, + 21.148900241253497 + ], + [ + 73.10855962147774, + 21.148900241253497 + ], + [ + 72.99371693799405, + 20.954252506325044 + ], + [ + 73.10855962147774, + 20.759604771396592 + ], + [ + 73.33824498844508, + 20.759604771396592 + ], + [ + 73.45308767192877, + 20.954252506325044 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.45308767192877, + 21.343547976181952 + ], + [ + 73.33824498844508, + 21.538195711110404 + ], + [ + 73.10855962147774, + 21.538195711110404 + ], + [ + 72.99371693799405, + 21.343547976181952 + ], + [ + 73.10855962147774, + 21.1489002412535 + ], + [ + 73.33824498844508, + 21.1489002412535 + ], + [ + 73.45308767192877, + 21.343547976181952 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.45308767192877, + 21.732843446038856 + ], + [ + 73.33824498844508, + 21.92749118096731 + ], + [ + 73.10855962147774, + 21.92749118096731 + ], + [ + 72.99371693799405, + 21.732843446038856 + ], + [ + 73.10855962147774, + 21.538195711110404 + ], + [ + 73.33824498844508, + 21.538195711110404 + ], + [ + 73.45308767192877, + 21.732843446038856 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.45308767192877, + 22.122138915895764 + ], + [ + 73.33824498844508, + 22.316786650824216 + ], + [ + 73.10855962147774, + 22.316786650824216 + ], + [ + 72.99371693799405, + 22.122138915895764 + ], + [ + 73.10855962147774, + 21.927491180967312 + ], + [ + 73.33824498844508, + 21.927491180967312 + ], + [ + 73.45308767192877, + 22.122138915895764 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.45308767192877, + 22.511434385752672 + ], + [ + 73.33824498844508, + 22.706082120681124 + ], + [ + 73.10855962147774, + 22.706082120681124 + ], + [ + 72.99371693799405, + 22.511434385752672 + ], + [ + 73.10855962147774, + 22.31678665082422 + ], + [ + 73.33824498844508, + 22.31678665082422 + ], + [ + 73.45308767192877, + 22.511434385752672 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.45308767192877, + 22.900729855609576 + ], + [ + 73.33824498844508, + 23.09537759053803 + ], + [ + 73.10855962147774, + 23.09537759053803 + ], + [ + 72.99371693799405, + 22.900729855609576 + ], + [ + 73.10855962147774, + 22.706082120681124 + ], + [ + 73.33824498844508, + 22.706082120681124 + ], + [ + 73.45308767192877, + 22.900729855609576 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.45308767192877, + 23.290025325466484 + ], + [ + 73.33824498844508, + 23.484673060394936 + ], + [ + 73.10855962147774, + 23.484673060394936 + ], + [ + 72.99371693799405, + 23.290025325466484 + ], + [ + 73.10855962147774, + 23.095377590538032 + ], + [ + 73.33824498844508, + 23.095377590538032 + ], + [ + 73.45308767192877, + 23.290025325466484 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.45308767192877, + 23.67932079532339 + ], + [ + 73.33824498844508, + 23.873968530251844 + ], + [ + 73.10855962147774, + 23.873968530251844 + ], + [ + 72.99371693799405, + 23.67932079532339 + ], + [ + 73.10855962147774, + 23.48467306039494 + ], + [ + 73.33824498844508, + 23.48467306039494 + ], + [ + 73.45308767192877, + 23.67932079532339 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.45308767192877, + 24.068616265180296 + ], + [ + 73.33824498844508, + 24.263264000108748 + ], + [ + 73.10855962147774, + 24.263264000108748 + ], + [ + 72.99371693799405, + 24.068616265180296 + ], + [ + 73.10855962147774, + 23.873968530251844 + ], + [ + 73.33824498844508, + 23.873968530251844 + ], + [ + 73.45308767192877, + 24.068616265180296 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.45308767192877, + 24.4579117350372 + ], + [ + 73.33824498844508, + 24.652559469965652 + ], + [ + 73.10855962147774, + 24.652559469965652 + ], + [ + 72.99371693799405, + 24.4579117350372 + ], + [ + 73.10855962147774, + 24.263264000108748 + ], + [ + 73.33824498844508, + 24.263264000108748 + ], + [ + 73.45308767192877, + 24.4579117350372 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.45308767192877, + 24.847207204894108 + ], + [ + 73.33824498844508, + 25.04185493982256 + ], + [ + 73.10855962147774, + 25.04185493982256 + ], + [ + 72.99371693799405, + 24.847207204894108 + ], + [ + 73.10855962147774, + 24.652559469965656 + ], + [ + 73.33824498844508, + 24.652559469965656 + ], + [ + 73.45308767192877, + 24.847207204894108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.45308767192877, + 25.236502674751016 + ], + [ + 73.33824498844508, + 25.431150409679468 + ], + [ + 73.10855962147774, + 25.431150409679468 + ], + [ + 72.99371693799405, + 25.236502674751016 + ], + [ + 73.10855962147774, + 25.041854939822564 + ], + [ + 73.33824498844508, + 25.041854939822564 + ], + [ + 73.45308767192877, + 25.236502674751016 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.45308767192877, + 25.62579814460792 + ], + [ + 73.33824498844508, + 25.820445879536372 + ], + [ + 73.10855962147774, + 25.820445879536372 + ], + [ + 72.99371693799405, + 25.62579814460792 + ], + [ + 73.10855962147774, + 25.431150409679468 + ], + [ + 73.33824498844508, + 25.431150409679468 + ], + [ + 73.45308767192877, + 25.62579814460792 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.45308767192877, + 26.015093614464828 + ], + [ + 73.33824498844508, + 26.20974134939328 + ], + [ + 73.10855962147774, + 26.20974134939328 + ], + [ + 72.99371693799405, + 26.015093614464828 + ], + [ + 73.10855962147774, + 25.820445879536376 + ], + [ + 73.33824498844508, + 25.820445879536376 + ], + [ + 73.45308767192877, + 26.015093614464828 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.45308767192877, + 26.404389084321735 + ], + [ + 73.33824498844508, + 26.599036819250188 + ], + [ + 73.10855962147774, + 26.599036819250188 + ], + [ + 72.99371693799405, + 26.404389084321735 + ], + [ + 73.10855962147774, + 26.209741349393283 + ], + [ + 73.33824498844508, + 26.209741349393283 + ], + [ + 73.45308767192877, + 26.404389084321735 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.45308767192877, + 26.79368455417864 + ], + [ + 73.33824498844508, + 26.988332289107092 + ], + [ + 73.10855962147774, + 26.988332289107092 + ], + [ + 72.99371693799405, + 26.79368455417864 + ], + [ + 73.10855962147774, + 26.599036819250188 + ], + [ + 73.33824498844508, + 26.599036819250188 + ], + [ + 73.45308767192877, + 26.79368455417864 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.45308767192877, + 27.182980024035547 + ], + [ + 73.33824498844508, + 27.377627758964 + ], + [ + 73.10855962147774, + 27.377627758964 + ], + [ + 72.99371693799405, + 27.182980024035547 + ], + [ + 73.10855962147774, + 26.988332289107095 + ], + [ + 73.33824498844508, + 26.988332289107095 + ], + [ + 73.45308767192877, + 27.182980024035547 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.45308767192877, + 27.572275493892455 + ], + [ + 73.33824498844508, + 27.766923228820907 + ], + [ + 73.10855962147774, + 27.766923228820907 + ], + [ + 72.99371693799405, + 27.572275493892455 + ], + [ + 73.10855962147774, + 27.377627758964003 + ], + [ + 73.33824498844508, + 27.377627758964003 + ], + [ + 73.45308767192877, + 27.572275493892455 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.45308767192877, + 27.96157096374936 + ], + [ + 73.33824498844508, + 28.15621869867781 + ], + [ + 73.10855962147774, + 28.15621869867781 + ], + [ + 72.99371693799405, + 27.96157096374936 + ], + [ + 73.10855962147774, + 27.766923228820907 + ], + [ + 73.33824498844508, + 27.766923228820907 + ], + [ + 73.45308767192877, + 27.96157096374936 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.45308767192877, + 28.350866433606267 + ], + [ + 73.33824498844508, + 28.54551416853472 + ], + [ + 73.10855962147774, + 28.54551416853472 + ], + [ + 72.99371693799405, + 28.350866433606267 + ], + [ + 73.10855962147774, + 28.156218698677815 + ], + [ + 73.33824498844508, + 28.156218698677815 + ], + [ + 73.45308767192877, + 28.350866433606267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.45308767192877, + 28.74016190346317 + ], + [ + 73.33824498844508, + 28.934809638391624 + ], + [ + 73.10855962147774, + 28.934809638391624 + ], + [ + 72.99371693799405, + 28.74016190346317 + ], + [ + 73.10855962147774, + 28.54551416853472 + ], + [ + 73.33824498844508, + 28.54551416853472 + ], + [ + 73.45308767192877, + 28.74016190346317 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.45308767192877, + 29.12945737332008 + ], + [ + 73.33824498844508, + 29.32410510824853 + ], + [ + 73.10855962147774, + 29.32410510824853 + ], + [ + 72.99371693799405, + 29.12945737332008 + ], + [ + 73.10855962147774, + 28.934809638391627 + ], + [ + 73.33824498844508, + 28.934809638391627 + ], + [ + 73.45308767192877, + 29.12945737332008 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.45308767192877, + 29.518752843176983 + ], + [ + 73.33824498844508, + 29.713400578105436 + ], + [ + 73.10855962147774, + 29.713400578105436 + ], + [ + 72.99371693799405, + 29.518752843176983 + ], + [ + 73.10855962147774, + 29.32410510824853 + ], + [ + 73.33824498844508, + 29.32410510824853 + ], + [ + 73.45308767192877, + 29.518752843176983 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.45308767192877, + 29.90804831303389 + ], + [ + 73.33824498844508, + 30.102696047962343 + ], + [ + 73.10855962147774, + 30.102696047962343 + ], + [ + 72.99371693799405, + 29.90804831303389 + ], + [ + 73.10855962147774, + 29.71340057810544 + ], + [ + 73.33824498844508, + 29.71340057810544 + ], + [ + 73.45308767192877, + 29.90804831303389 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.45308767192877, + 30.297343782890795 + ], + [ + 73.33824498844508, + 30.491991517819248 + ], + [ + 73.10855962147774, + 30.491991517819248 + ], + [ + 72.99371693799405, + 30.297343782890795 + ], + [ + 73.10855962147774, + 30.102696047962343 + ], + [ + 73.33824498844508, + 30.102696047962343 + ], + [ + 73.45308767192877, + 30.297343782890795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.45308767192877, + 30.686639252747703 + ], + [ + 73.33824498844508, + 30.881286987676155 + ], + [ + 73.10855962147774, + 30.881286987676155 + ], + [ + 72.99371693799405, + 30.686639252747703 + ], + [ + 73.10855962147774, + 30.49199151781925 + ], + [ + 73.33824498844508, + 30.49199151781925 + ], + [ + 73.45308767192877, + 30.686639252747703 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.45308767192877, + 31.07593472260461 + ], + [ + 73.33824498844508, + 31.270582457533063 + ], + [ + 73.10855962147774, + 31.270582457533063 + ], + [ + 72.99371693799405, + 31.07593472260461 + ], + [ + 73.10855962147774, + 30.88128698767616 + ], + [ + 73.33824498844508, + 30.88128698767616 + ], + [ + 73.45308767192877, + 31.07593472260461 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.45308767192877, + 31.465230192461515 + ], + [ + 73.33824498844508, + 31.659877927389967 + ], + [ + 73.10855962147774, + 31.659877927389967 + ], + [ + 72.99371693799405, + 31.465230192461515 + ], + [ + 73.10855962147774, + 31.270582457533063 + ], + [ + 73.33824498844508, + 31.270582457533063 + ], + [ + 73.45308767192877, + 31.465230192461515 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.45308767192877, + 31.854525662318423 + ], + [ + 73.33824498844508, + 32.049173397246875 + ], + [ + 73.10855962147774, + 32.049173397246875 + ], + [ + 72.99371693799405, + 31.854525662318423 + ], + [ + 73.10855962147774, + 31.65987792738997 + ], + [ + 73.33824498844508, + 31.65987792738997 + ], + [ + 73.45308767192877, + 31.854525662318423 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.45308767192877, + 32.24382113217533 + ], + [ + 73.33824498844508, + 32.43846886710378 + ], + [ + 73.10855962147774, + 32.43846886710378 + ], + [ + 72.99371693799405, + 32.24382113217533 + ], + [ + 73.10855962147774, + 32.049173397246875 + ], + [ + 73.33824498844508, + 32.049173397246875 + ], + [ + 73.45308767192877, + 32.24382113217533 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.45308767192877, + 32.63311660203224 + ], + [ + 73.33824498844508, + 32.82776433696069 + ], + [ + 73.10855962147774, + 32.82776433696069 + ], + [ + 72.99371693799405, + 32.63311660203224 + ], + [ + 73.10855962147774, + 32.438468867103786 + ], + [ + 73.33824498844508, + 32.438468867103786 + ], + [ + 73.45308767192877, + 32.63311660203224 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.45308767192877, + 33.02241207188914 + ], + [ + 73.33824498844508, + 33.217059806817595 + ], + [ + 73.10855962147774, + 33.217059806817595 + ], + [ + 72.99371693799405, + 33.02241207188914 + ], + [ + 73.10855962147774, + 32.82776433696069 + ], + [ + 73.33824498844508, + 32.82776433696069 + ], + [ + 73.45308767192877, + 33.02241207188914 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.45308767192877, + 33.41170754174605 + ], + [ + 73.33824498844508, + 33.6063552766745 + ], + [ + 73.10855962147774, + 33.6063552766745 + ], + [ + 72.99371693799405, + 33.41170754174605 + ], + [ + 73.10855962147774, + 33.217059806817595 + ], + [ + 73.33824498844508, + 33.217059806817595 + ], + [ + 73.45308767192877, + 33.41170754174605 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.45308767192877, + 33.80100301160295 + ], + [ + 73.33824498844508, + 33.9956507465314 + ], + [ + 73.10855962147774, + 33.9956507465314 + ], + [ + 72.99371693799405, + 33.80100301160295 + ], + [ + 73.10855962147774, + 33.6063552766745 + ], + [ + 73.33824498844508, + 33.6063552766745 + ], + [ + 73.45308767192877, + 33.80100301160295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.45308767192877, + 34.190298481459855 + ], + [ + 73.33824498844508, + 34.38494621638831 + ], + [ + 73.10855962147774, + 34.38494621638831 + ], + [ + 72.99371693799405, + 34.190298481459855 + ], + [ + 73.10855962147774, + 33.9956507465314 + ], + [ + 73.33824498844508, + 33.9956507465314 + ], + [ + 73.45308767192877, + 34.190298481459855 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.45308767192877, + 34.57959395131677 + ], + [ + 73.33824498844508, + 34.77424168624522 + ], + [ + 73.10855962147774, + 34.77424168624522 + ], + [ + 72.99371693799405, + 34.57959395131677 + ], + [ + 73.10855962147774, + 34.384946216388315 + ], + [ + 73.33824498844508, + 34.384946216388315 + ], + [ + 73.45308767192877, + 34.57959395131677 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.45308767192877, + 34.96888942117368 + ], + [ + 73.33824498844508, + 35.16353715610213 + ], + [ + 73.10855962147774, + 35.16353715610213 + ], + [ + 72.99371693799405, + 34.96888942117368 + ], + [ + 73.10855962147774, + 34.774241686245226 + ], + [ + 73.33824498844508, + 34.774241686245226 + ], + [ + 73.45308767192877, + 34.96888942117368 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.45308767192877, + 35.35818489103058 + ], + [ + 73.33824498844508, + 35.552832625959034 + ], + [ + 73.10855962147774, + 35.552832625959034 + ], + [ + 72.99371693799405, + 35.35818489103058 + ], + [ + 73.10855962147774, + 35.16353715610213 + ], + [ + 73.33824498844508, + 35.16353715610213 + ], + [ + 73.45308767192877, + 35.35818489103058 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.45308767192877, + 35.74748036088749 + ], + [ + 73.33824498844508, + 35.94212809581594 + ], + [ + 73.10855962147774, + 35.94212809581594 + ], + [ + 72.99371693799405, + 35.74748036088749 + ], + [ + 73.10855962147774, + 35.552832625959034 + ], + [ + 73.33824498844508, + 35.552832625959034 + ], + [ + 73.45308767192877, + 35.74748036088749 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.45308767192877, + 36.13677583074439 + ], + [ + 73.33824498844508, + 36.33142356567284 + ], + [ + 73.10855962147774, + 36.33142356567284 + ], + [ + 72.99371693799405, + 36.13677583074439 + ], + [ + 73.10855962147774, + 35.94212809581594 + ], + [ + 73.33824498844508, + 35.94212809581594 + ], + [ + 73.45308767192877, + 36.13677583074439 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.45308767192877, + 36.526071300601295 + ], + [ + 73.33824498844508, + 36.72071903552975 + ], + [ + 73.10855962147774, + 36.72071903552975 + ], + [ + 72.99371693799405, + 36.526071300601295 + ], + [ + 73.10855962147774, + 36.33142356567284 + ], + [ + 73.33824498844508, + 36.33142356567284 + ], + [ + 73.45308767192877, + 36.526071300601295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.45308767192877, + 36.915366770458206 + ], + [ + 73.33824498844508, + 37.11001450538666 + ], + [ + 73.10855962147774, + 37.11001450538666 + ], + [ + 72.99371693799405, + 36.915366770458206 + ], + [ + 73.10855962147774, + 36.720719035529754 + ], + [ + 73.33824498844508, + 36.720719035529754 + ], + [ + 73.45308767192877, + 36.915366770458206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.45308767192877, + 37.30466224031511 + ], + [ + 73.33824498844508, + 37.49930997524356 + ], + [ + 73.10855962147774, + 37.49930997524356 + ], + [ + 72.99371693799405, + 37.30466224031511 + ], + [ + 73.10855962147774, + 37.11001450538666 + ], + [ + 73.33824498844508, + 37.11001450538666 + ], + [ + 73.45308767192877, + 37.30466224031511 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.45308767192877, + 37.69395771017202 + ], + [ + 73.33824498844508, + 37.888605445100474 + ], + [ + 73.10855962147774, + 37.888605445100474 + ], + [ + 72.99371693799405, + 37.69395771017202 + ], + [ + 73.10855962147774, + 37.49930997524357 + ], + [ + 73.33824498844508, + 37.49930997524357 + ], + [ + 73.45308767192877, + 37.69395771017202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.45308767192877, + 38.083253180028926 + ], + [ + 73.33824498844508, + 38.27790091495738 + ], + [ + 73.10855962147774, + 38.27790091495738 + ], + [ + 72.99371693799405, + 38.083253180028926 + ], + [ + 73.10855962147774, + 37.888605445100474 + ], + [ + 73.33824498844508, + 37.888605445100474 + ], + [ + 73.45308767192877, + 38.083253180028926 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.45308767192877, + 38.47254864988583 + ], + [ + 73.33824498844508, + 38.66719638481428 + ], + [ + 73.10855962147774, + 38.66719638481428 + ], + [ + 72.99371693799405, + 38.47254864988583 + ], + [ + 73.10855962147774, + 38.27790091495738 + ], + [ + 73.33824498844508, + 38.27790091495738 + ], + [ + 73.45308767192877, + 38.47254864988583 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.45308767192877, + 38.861844119742734 + ], + [ + 73.33824498844508, + 39.05649185467119 + ], + [ + 73.10855962147774, + 39.05649185467119 + ], + [ + 72.99371693799405, + 38.861844119742734 + ], + [ + 73.10855962147774, + 38.66719638481428 + ], + [ + 73.33824498844508, + 38.66719638481428 + ], + [ + 73.45308767192877, + 38.861844119742734 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.45308767192877, + 39.25113958959964 + ], + [ + 73.33824498844508, + 39.44578732452809 + ], + [ + 73.10855962147774, + 39.44578732452809 + ], + [ + 72.99371693799405, + 39.25113958959964 + ], + [ + 73.10855962147774, + 39.05649185467119 + ], + [ + 73.33824498844508, + 39.05649185467119 + ], + [ + 73.45308767192877, + 39.25113958959964 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.45308767192877, + 39.64043505945655 + ], + [ + 73.33824498844508, + 39.835082794385 + ], + [ + 73.10855962147774, + 39.835082794385 + ], + [ + 72.99371693799405, + 39.64043505945655 + ], + [ + 73.10855962147774, + 39.4457873245281 + ], + [ + 73.33824498844508, + 39.4457873245281 + ], + [ + 73.45308767192877, + 39.64043505945655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.45308767192877, + 40.029730529313454 + ], + [ + 73.33824498844508, + 40.224378264241906 + ], + [ + 73.10855962147774, + 40.224378264241906 + ], + [ + 72.99371693799405, + 40.029730529313454 + ], + [ + 73.10855962147774, + 39.835082794385 + ], + [ + 73.33824498844508, + 39.835082794385 + ], + [ + 73.45308767192877, + 40.029730529313454 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.45308767192877, + 40.419025999170366 + ], + [ + 73.33824498844508, + 40.61367373409882 + ], + [ + 73.10855962147774, + 40.61367373409882 + ], + [ + 72.99371693799405, + 40.419025999170366 + ], + [ + 73.10855962147774, + 40.22437826424191 + ], + [ + 73.33824498844508, + 40.22437826424191 + ], + [ + 73.45308767192877, + 40.419025999170366 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.45308767192877, + 40.80832146902727 + ], + [ + 73.33824498844508, + 41.00296920395572 + ], + [ + 73.10855962147774, + 41.00296920395572 + ], + [ + 72.99371693799405, + 40.80832146902727 + ], + [ + 73.10855962147774, + 40.61367373409882 + ], + [ + 73.33824498844508, + 40.61367373409882 + ], + [ + 73.45308767192877, + 40.80832146902727 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.45308767192877, + 41.197616938884174 + ], + [ + 73.33824498844508, + 41.392264673812626 + ], + [ + 73.10855962147774, + 41.392264673812626 + ], + [ + 72.99371693799405, + 41.197616938884174 + ], + [ + 73.10855962147774, + 41.00296920395572 + ], + [ + 73.33824498844508, + 41.00296920395572 + ], + [ + 73.45308767192877, + 41.197616938884174 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.45308767192877, + 41.58691240874108 + ], + [ + 73.33824498844508, + 41.78156014366953 + ], + [ + 73.10855962147774, + 41.78156014366953 + ], + [ + 72.99371693799405, + 41.58691240874108 + ], + [ + 73.10855962147774, + 41.392264673812626 + ], + [ + 73.33824498844508, + 41.392264673812626 + ], + [ + 73.45308767192877, + 41.58691240874108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.45308767192877, + 41.97620787859798 + ], + [ + 73.33824498844508, + 42.170855613526435 + ], + [ + 73.10855962147774, + 42.170855613526435 + ], + [ + 72.99371693799405, + 41.97620787859798 + ], + [ + 73.10855962147774, + 41.78156014366953 + ], + [ + 73.33824498844508, + 41.78156014366953 + ], + [ + 73.45308767192877, + 41.97620787859798 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.45308767192877, + 42.365503348454894 + ], + [ + 73.33824498844508, + 42.560151083383346 + ], + [ + 73.10855962147774, + 42.560151083383346 + ], + [ + 72.99371693799405, + 42.365503348454894 + ], + [ + 73.10855962147774, + 42.17085561352644 + ], + [ + 73.33824498844508, + 42.17085561352644 + ], + [ + 73.45308767192877, + 42.365503348454894 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.45308767192877, + 42.754798818311805 + ], + [ + 73.33824498844508, + 42.94944655324026 + ], + [ + 73.10855962147774, + 42.94944655324026 + ], + [ + 72.99371693799405, + 42.754798818311805 + ], + [ + 73.10855962147774, + 42.56015108338335 + ], + [ + 73.33824498844508, + 42.56015108338335 + ], + [ + 73.45308767192877, + 42.754798818311805 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.45308767192877, + 43.14409428816871 + ], + [ + 73.33824498844508, + 43.33874202309716 + ], + [ + 73.10855962147774, + 43.33874202309716 + ], + [ + 72.99371693799405, + 43.14409428816871 + ], + [ + 73.10855962147774, + 42.94944655324026 + ], + [ + 73.33824498844508, + 42.94944655324026 + ], + [ + 73.45308767192877, + 43.14409428816871 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.45308767192877, + 43.53338975802561 + ], + [ + 73.33824498844508, + 43.728037492954066 + ], + [ + 73.10855962147774, + 43.728037492954066 + ], + [ + 72.99371693799405, + 43.53338975802561 + ], + [ + 73.10855962147774, + 43.33874202309716 + ], + [ + 73.33824498844508, + 43.33874202309716 + ], + [ + 73.45308767192877, + 43.53338975802561 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.45308767192877, + 43.92268522788252 + ], + [ + 73.33824498844508, + 44.11733296281097 + ], + [ + 73.10855962147774, + 44.11733296281097 + ], + [ + 72.99371693799405, + 43.92268522788252 + ], + [ + 73.10855962147774, + 43.728037492954066 + ], + [ + 73.33824498844508, + 43.728037492954066 + ], + [ + 73.45308767192877, + 43.92268522788252 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.45308767192877, + 44.31198069773942 + ], + [ + 73.33824498844508, + 44.506628432667874 + ], + [ + 73.10855962147774, + 44.506628432667874 + ], + [ + 72.99371693799405, + 44.31198069773942 + ], + [ + 73.10855962147774, + 44.11733296281097 + ], + [ + 73.33824498844508, + 44.11733296281097 + ], + [ + 73.45308767192877, + 44.31198069773942 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.45308767192877, + 44.701276167596326 + ], + [ + 73.33824498844508, + 44.89592390252478 + ], + [ + 73.10855962147774, + 44.89592390252478 + ], + [ + 72.99371693799405, + 44.701276167596326 + ], + [ + 73.10855962147774, + 44.506628432667874 + ], + [ + 73.33824498844508, + 44.506628432667874 + ], + [ + 73.45308767192877, + 44.701276167596326 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.45308767192877, + 45.090571637453245 + ], + [ + 73.33824498844508, + 45.2852193723817 + ], + [ + 73.10855962147774, + 45.2852193723817 + ], + [ + 72.99371693799405, + 45.090571637453245 + ], + [ + 73.10855962147774, + 44.89592390252479 + ], + [ + 73.33824498844508, + 44.89592390252479 + ], + [ + 73.45308767192877, + 45.090571637453245 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.45308767192877, + 45.47986710731015 + ], + [ + 73.33824498844508, + 45.6745148422386 + ], + [ + 73.10855962147774, + 45.6745148422386 + ], + [ + 72.99371693799405, + 45.47986710731015 + ], + [ + 73.10855962147774, + 45.2852193723817 + ], + [ + 73.33824498844508, + 45.2852193723817 + ], + [ + 73.45308767192877, + 45.47986710731015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.45308767192877, + 45.86916257716705 + ], + [ + 73.33824498844508, + 46.063810312095505 + ], + [ + 73.10855962147774, + 46.063810312095505 + ], + [ + 72.99371693799405, + 45.86916257716705 + ], + [ + 73.10855962147774, + 45.6745148422386 + ], + [ + 73.33824498844508, + 45.6745148422386 + ], + [ + 73.45308767192877, + 45.86916257716705 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.45308767192877, + 46.25845804702396 + ], + [ + 73.33824498844508, + 46.45310578195241 + ], + [ + 73.10855962147774, + 46.45310578195241 + ], + [ + 72.99371693799405, + 46.25845804702396 + ], + [ + 73.10855962147774, + 46.063810312095505 + ], + [ + 73.33824498844508, + 46.063810312095505 + ], + [ + 73.45308767192877, + 46.25845804702396 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.45308767192877, + 46.64775351688086 + ], + [ + 73.33824498844508, + 46.842401251809314 + ], + [ + 73.10855962147774, + 46.842401251809314 + ], + [ + 72.99371693799405, + 46.64775351688086 + ], + [ + 73.10855962147774, + 46.45310578195241 + ], + [ + 73.33824498844508, + 46.45310578195241 + ], + [ + 73.45308767192877, + 46.64775351688086 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.45308767192877, + 47.037048986737766 + ], + [ + 73.33824498844508, + 47.23169672166622 + ], + [ + 73.10855962147774, + 47.23169672166622 + ], + [ + 72.99371693799405, + 47.037048986737766 + ], + [ + 73.10855962147774, + 46.842401251809314 + ], + [ + 73.33824498844508, + 46.842401251809314 + ], + [ + 73.45308767192877, + 47.037048986737766 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.45308767192877, + 47.42634445659467 + ], + [ + 73.33824498844508, + 47.62099219152312 + ], + [ + 73.10855962147774, + 47.62099219152312 + ], + [ + 72.99371693799405, + 47.42634445659467 + ], + [ + 73.10855962147774, + 47.23169672166622 + ], + [ + 73.33824498844508, + 47.23169672166622 + ], + [ + 73.45308767192877, + 47.42634445659467 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.45308767192877, + 47.81563992645159 + ], + [ + 73.33824498844508, + 48.01028766138004 + ], + [ + 73.10855962147774, + 48.01028766138004 + ], + [ + 72.99371693799405, + 47.81563992645159 + ], + [ + 73.10855962147774, + 47.620992191523136 + ], + [ + 73.33824498844508, + 47.620992191523136 + ], + [ + 73.45308767192877, + 47.81563992645159 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.7976157223798, + 11.805808964687746 + ], + [ + 73.68277303889612, + 12.0004566996162 + ], + [ + 73.45308767192877, + 12.0004566996162 + ], + [ + 73.33824498844508, + 11.805808964687746 + ], + [ + 73.45308767192877, + 11.611161229759292 + ], + [ + 73.68277303889612, + 11.611161229759292 + ], + [ + 73.7976157223798, + 11.805808964687746 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.7976157223798, + 12.195104434544652 + ], + [ + 73.68277303889612, + 12.389752169473105 + ], + [ + 73.45308767192877, + 12.389752169473105 + ], + [ + 73.33824498844508, + 12.195104434544652 + ], + [ + 73.45308767192877, + 12.000456699616198 + ], + [ + 73.68277303889612, + 12.000456699616198 + ], + [ + 73.7976157223798, + 12.195104434544652 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.7976157223798, + 12.58439990440156 + ], + [ + 73.68277303889612, + 12.779047639330013 + ], + [ + 73.45308767192877, + 12.779047639330013 + ], + [ + 73.33824498844508, + 12.58439990440156 + ], + [ + 73.45308767192877, + 12.389752169473105 + ], + [ + 73.68277303889612, + 12.389752169473105 + ], + [ + 73.7976157223798, + 12.58439990440156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.7976157223798, + 12.973695374258465 + ], + [ + 73.68277303889612, + 13.16834310918692 + ], + [ + 73.45308767192877, + 13.16834310918692 + ], + [ + 73.33824498844508, + 12.973695374258465 + ], + [ + 73.45308767192877, + 12.779047639330011 + ], + [ + 73.68277303889612, + 12.779047639330011 + ], + [ + 73.7976157223798, + 12.973695374258465 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.7976157223798, + 13.362990844115371 + ], + [ + 73.68277303889612, + 13.557638579043825 + ], + [ + 73.45308767192877, + 13.557638579043825 + ], + [ + 73.33824498844508, + 13.362990844115371 + ], + [ + 73.45308767192877, + 13.168343109186917 + ], + [ + 73.68277303889612, + 13.168343109186917 + ], + [ + 73.7976157223798, + 13.362990844115371 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.7976157223798, + 13.752286313972277 + ], + [ + 73.68277303889612, + 13.946934048900731 + ], + [ + 73.45308767192877, + 13.946934048900731 + ], + [ + 73.33824498844508, + 13.752286313972277 + ], + [ + 73.45308767192877, + 13.557638579043823 + ], + [ + 73.68277303889612, + 13.557638579043823 + ], + [ + 73.7976157223798, + 13.752286313972277 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.7976157223798, + 14.141581783829183 + ], + [ + 73.68277303889612, + 14.336229518757637 + ], + [ + 73.45308767192877, + 14.336229518757637 + ], + [ + 73.33824498844508, + 14.141581783829183 + ], + [ + 73.45308767192877, + 13.94693404890073 + ], + [ + 73.68277303889612, + 13.94693404890073 + ], + [ + 73.7976157223798, + 14.141581783829183 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.7976157223798, + 14.530877253686091 + ], + [ + 73.68277303889612, + 14.725524988614545 + ], + [ + 73.45308767192877, + 14.725524988614545 + ], + [ + 73.33824498844508, + 14.530877253686091 + ], + [ + 73.45308767192877, + 14.336229518757637 + ], + [ + 73.68277303889612, + 14.336229518757637 + ], + [ + 73.7976157223798, + 14.530877253686091 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.7976157223798, + 14.920172723542997 + ], + [ + 73.68277303889612, + 15.114820458471451 + ], + [ + 73.45308767192877, + 15.114820458471451 + ], + [ + 73.33824498844508, + 14.920172723542997 + ], + [ + 73.45308767192877, + 14.725524988614543 + ], + [ + 73.68277303889612, + 14.725524988614543 + ], + [ + 73.7976157223798, + 14.920172723542997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.7976157223798, + 15.309468193399903 + ], + [ + 73.68277303889612, + 15.504115928328357 + ], + [ + 73.45308767192877, + 15.504115928328357 + ], + [ + 73.33824498844508, + 15.309468193399903 + ], + [ + 73.45308767192877, + 15.11482045847145 + ], + [ + 73.68277303889612, + 15.11482045847145 + ], + [ + 73.7976157223798, + 15.309468193399903 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.7976157223798, + 15.69876366325681 + ], + [ + 73.68277303889612, + 15.893411398185265 + ], + [ + 73.45308767192877, + 15.893411398185265 + ], + [ + 73.33824498844508, + 15.69876366325681 + ], + [ + 73.45308767192877, + 15.504115928328357 + ], + [ + 73.68277303889612, + 15.504115928328357 + ], + [ + 73.7976157223798, + 15.69876366325681 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.7976157223798, + 16.088059133113717 + ], + [ + 73.68277303889612, + 16.28270686804217 + ], + [ + 73.45308767192877, + 16.28270686804217 + ], + [ + 73.33824498844508, + 16.088059133113717 + ], + [ + 73.45308767192877, + 15.893411398185263 + ], + [ + 73.68277303889612, + 15.893411398185263 + ], + [ + 73.7976157223798, + 16.088059133113717 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.7976157223798, + 16.477354602970625 + ], + [ + 73.68277303889612, + 16.672002337899077 + ], + [ + 73.45308767192877, + 16.672002337899077 + ], + [ + 73.33824498844508, + 16.477354602970625 + ], + [ + 73.45308767192877, + 16.282706868042172 + ], + [ + 73.68277303889612, + 16.282706868042172 + ], + [ + 73.7976157223798, + 16.477354602970625 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.7976157223798, + 16.86665007282753 + ], + [ + 73.68277303889612, + 17.06129780775598 + ], + [ + 73.45308767192877, + 17.06129780775598 + ], + [ + 73.33824498844508, + 16.86665007282753 + ], + [ + 73.45308767192877, + 16.672002337899077 + ], + [ + 73.68277303889612, + 16.672002337899077 + ], + [ + 73.7976157223798, + 16.86665007282753 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.7976157223798, + 17.255945542684437 + ], + [ + 73.68277303889612, + 17.45059327761289 + ], + [ + 73.45308767192877, + 17.45059327761289 + ], + [ + 73.33824498844508, + 17.255945542684437 + ], + [ + 73.45308767192877, + 17.061297807755984 + ], + [ + 73.68277303889612, + 17.061297807755984 + ], + [ + 73.7976157223798, + 17.255945542684437 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.7976157223798, + 17.64524101254134 + ], + [ + 73.68277303889612, + 17.839888747469793 + ], + [ + 73.45308767192877, + 17.839888747469793 + ], + [ + 73.33824498844508, + 17.64524101254134 + ], + [ + 73.45308767192877, + 17.45059327761289 + ], + [ + 73.68277303889612, + 17.45059327761289 + ], + [ + 73.7976157223798, + 17.64524101254134 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.7976157223798, + 18.03453648239825 + ], + [ + 73.68277303889612, + 18.2291842173267 + ], + [ + 73.45308767192877, + 18.2291842173267 + ], + [ + 73.33824498844508, + 18.03453648239825 + ], + [ + 73.45308767192877, + 17.839888747469796 + ], + [ + 73.68277303889612, + 17.839888747469796 + ], + [ + 73.7976157223798, + 18.03453648239825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.7976157223798, + 18.423831952255156 + ], + [ + 73.68277303889612, + 18.61847968718361 + ], + [ + 73.45308767192877, + 18.61847968718361 + ], + [ + 73.33824498844508, + 18.423831952255156 + ], + [ + 73.45308767192877, + 18.229184217326704 + ], + [ + 73.68277303889612, + 18.229184217326704 + ], + [ + 73.7976157223798, + 18.423831952255156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.7976157223798, + 18.81312742211206 + ], + [ + 73.68277303889612, + 19.007775157040513 + ], + [ + 73.45308767192877, + 19.007775157040513 + ], + [ + 73.33824498844508, + 18.81312742211206 + ], + [ + 73.45308767192877, + 18.61847968718361 + ], + [ + 73.68277303889612, + 18.61847968718361 + ], + [ + 73.7976157223798, + 18.81312742211206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.7976157223798, + 19.20242289196897 + ], + [ + 73.68277303889612, + 19.39707062689742 + ], + [ + 73.45308767192877, + 19.39707062689742 + ], + [ + 73.33824498844508, + 19.20242289196897 + ], + [ + 73.45308767192877, + 19.007775157040516 + ], + [ + 73.68277303889612, + 19.007775157040516 + ], + [ + 73.7976157223798, + 19.20242289196897 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.7976157223798, + 19.591718361825876 + ], + [ + 73.68277303889612, + 19.78636609675433 + ], + [ + 73.45308767192877, + 19.78636609675433 + ], + [ + 73.33824498844508, + 19.591718361825876 + ], + [ + 73.45308767192877, + 19.397070626897424 + ], + [ + 73.68277303889612, + 19.397070626897424 + ], + [ + 73.7976157223798, + 19.591718361825876 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.7976157223798, + 19.98101383168278 + ], + [ + 73.68277303889612, + 20.175661566611232 + ], + [ + 73.45308767192877, + 20.175661566611232 + ], + [ + 73.33824498844508, + 19.98101383168278 + ], + [ + 73.45308767192877, + 19.78636609675433 + ], + [ + 73.68277303889612, + 19.78636609675433 + ], + [ + 73.7976157223798, + 19.98101383168278 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.7976157223798, + 20.370309301539685 + ], + [ + 73.68277303889612, + 20.564957036468137 + ], + [ + 73.45308767192877, + 20.564957036468137 + ], + [ + 73.33824498844508, + 20.370309301539685 + ], + [ + 73.45308767192877, + 20.175661566611232 + ], + [ + 73.68277303889612, + 20.175661566611232 + ], + [ + 73.7976157223798, + 20.370309301539685 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.7976157223798, + 20.759604771396592 + ], + [ + 73.68277303889612, + 20.954252506325044 + ], + [ + 73.45308767192877, + 20.954252506325044 + ], + [ + 73.33824498844508, + 20.759604771396592 + ], + [ + 73.45308767192877, + 20.56495703646814 + ], + [ + 73.68277303889612, + 20.56495703646814 + ], + [ + 73.7976157223798, + 20.759604771396592 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.7976157223798, + 21.1489002412535 + ], + [ + 73.68277303889612, + 21.343547976181952 + ], + [ + 73.45308767192877, + 21.343547976181952 + ], + [ + 73.33824498844508, + 21.1489002412535 + ], + [ + 73.45308767192877, + 20.954252506325048 + ], + [ + 73.68277303889612, + 20.954252506325048 + ], + [ + 73.7976157223798, + 21.1489002412535 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.7976157223798, + 21.538195711110404 + ], + [ + 73.68277303889612, + 21.732843446038856 + ], + [ + 73.45308767192877, + 21.732843446038856 + ], + [ + 73.33824498844508, + 21.538195711110404 + ], + [ + 73.45308767192877, + 21.343547976181952 + ], + [ + 73.68277303889612, + 21.343547976181952 + ], + [ + 73.7976157223798, + 21.538195711110404 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.7976157223798, + 21.927491180967312 + ], + [ + 73.68277303889612, + 22.122138915895764 + ], + [ + 73.45308767192877, + 22.122138915895764 + ], + [ + 73.33824498844508, + 21.927491180967312 + ], + [ + 73.45308767192877, + 21.73284344603886 + ], + [ + 73.68277303889612, + 21.73284344603886 + ], + [ + 73.7976157223798, + 21.927491180967312 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.7976157223798, + 22.31678665082422 + ], + [ + 73.68277303889612, + 22.511434385752672 + ], + [ + 73.45308767192877, + 22.511434385752672 + ], + [ + 73.33824498844508, + 22.31678665082422 + ], + [ + 73.45308767192877, + 22.122138915895768 + ], + [ + 73.68277303889612, + 22.122138915895768 + ], + [ + 73.7976157223798, + 22.31678665082422 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.7976157223798, + 22.706082120681124 + ], + [ + 73.68277303889612, + 22.900729855609576 + ], + [ + 73.45308767192877, + 22.900729855609576 + ], + [ + 73.33824498844508, + 22.706082120681124 + ], + [ + 73.45308767192877, + 22.511434385752672 + ], + [ + 73.68277303889612, + 22.511434385752672 + ], + [ + 73.7976157223798, + 22.706082120681124 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.7976157223798, + 23.095377590538032 + ], + [ + 73.68277303889612, + 23.290025325466484 + ], + [ + 73.45308767192877, + 23.290025325466484 + ], + [ + 73.33824498844508, + 23.095377590538032 + ], + [ + 73.45308767192877, + 22.90072985560958 + ], + [ + 73.68277303889612, + 22.90072985560958 + ], + [ + 73.7976157223798, + 23.095377590538032 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.7976157223798, + 23.48467306039494 + ], + [ + 73.68277303889612, + 23.67932079532339 + ], + [ + 73.45308767192877, + 23.67932079532339 + ], + [ + 73.33824498844508, + 23.48467306039494 + ], + [ + 73.45308767192877, + 23.290025325466488 + ], + [ + 73.68277303889612, + 23.290025325466488 + ], + [ + 73.7976157223798, + 23.48467306039494 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.7976157223798, + 23.873968530251844 + ], + [ + 73.68277303889612, + 24.068616265180296 + ], + [ + 73.45308767192877, + 24.068616265180296 + ], + [ + 73.33824498844508, + 23.873968530251844 + ], + [ + 73.45308767192877, + 23.67932079532339 + ], + [ + 73.68277303889612, + 23.67932079532339 + ], + [ + 73.7976157223798, + 23.873968530251844 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.7976157223798, + 24.263264000108748 + ], + [ + 73.68277303889612, + 24.4579117350372 + ], + [ + 73.45308767192877, + 24.4579117350372 + ], + [ + 73.33824498844508, + 24.263264000108748 + ], + [ + 73.45308767192877, + 24.068616265180296 + ], + [ + 73.68277303889612, + 24.068616265180296 + ], + [ + 73.7976157223798, + 24.263264000108748 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.7976157223798, + 24.652559469965656 + ], + [ + 73.68277303889612, + 24.847207204894108 + ], + [ + 73.45308767192877, + 24.847207204894108 + ], + [ + 73.33824498844508, + 24.652559469965656 + ], + [ + 73.45308767192877, + 24.457911735037204 + ], + [ + 73.68277303889612, + 24.457911735037204 + ], + [ + 73.7976157223798, + 24.652559469965656 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.7976157223798, + 25.041854939822564 + ], + [ + 73.68277303889612, + 25.236502674751016 + ], + [ + 73.45308767192877, + 25.236502674751016 + ], + [ + 73.33824498844508, + 25.041854939822564 + ], + [ + 73.45308767192877, + 24.84720720489411 + ], + [ + 73.68277303889612, + 24.84720720489411 + ], + [ + 73.7976157223798, + 25.041854939822564 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.7976157223798, + 25.431150409679468 + ], + [ + 73.68277303889612, + 25.62579814460792 + ], + [ + 73.45308767192877, + 25.62579814460792 + ], + [ + 73.33824498844508, + 25.431150409679468 + ], + [ + 73.45308767192877, + 25.236502674751016 + ], + [ + 73.68277303889612, + 25.236502674751016 + ], + [ + 73.7976157223798, + 25.431150409679468 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.7976157223798, + 25.820445879536376 + ], + [ + 73.68277303889612, + 26.015093614464828 + ], + [ + 73.45308767192877, + 26.015093614464828 + ], + [ + 73.33824498844508, + 25.820445879536376 + ], + [ + 73.45308767192877, + 25.625798144607923 + ], + [ + 73.68277303889612, + 25.625798144607923 + ], + [ + 73.7976157223798, + 25.820445879536376 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.7976157223798, + 26.209741349393283 + ], + [ + 73.68277303889612, + 26.404389084321735 + ], + [ + 73.45308767192877, + 26.404389084321735 + ], + [ + 73.33824498844508, + 26.209741349393283 + ], + [ + 73.45308767192877, + 26.01509361446483 + ], + [ + 73.68277303889612, + 26.01509361446483 + ], + [ + 73.7976157223798, + 26.209741349393283 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.7976157223798, + 26.599036819250188 + ], + [ + 73.68277303889612, + 26.79368455417864 + ], + [ + 73.45308767192877, + 26.79368455417864 + ], + [ + 73.33824498844508, + 26.599036819250188 + ], + [ + 73.45308767192877, + 26.404389084321735 + ], + [ + 73.68277303889612, + 26.404389084321735 + ], + [ + 73.7976157223798, + 26.599036819250188 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.7976157223798, + 26.988332289107095 + ], + [ + 73.68277303889612, + 27.182980024035547 + ], + [ + 73.45308767192877, + 27.182980024035547 + ], + [ + 73.33824498844508, + 26.988332289107095 + ], + [ + 73.45308767192877, + 26.793684554178643 + ], + [ + 73.68277303889612, + 26.793684554178643 + ], + [ + 73.7976157223798, + 26.988332289107095 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.7976157223798, + 27.377627758964003 + ], + [ + 73.68277303889612, + 27.572275493892455 + ], + [ + 73.45308767192877, + 27.572275493892455 + ], + [ + 73.33824498844508, + 27.377627758964003 + ], + [ + 73.45308767192877, + 27.18298002403555 + ], + [ + 73.68277303889612, + 27.18298002403555 + ], + [ + 73.7976157223798, + 27.377627758964003 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.7976157223798, + 27.766923228820907 + ], + [ + 73.68277303889612, + 27.96157096374936 + ], + [ + 73.45308767192877, + 27.96157096374936 + ], + [ + 73.33824498844508, + 27.766923228820907 + ], + [ + 73.45308767192877, + 27.572275493892455 + ], + [ + 73.68277303889612, + 27.572275493892455 + ], + [ + 73.7976157223798, + 27.766923228820907 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.7976157223798, + 28.156218698677815 + ], + [ + 73.68277303889612, + 28.350866433606267 + ], + [ + 73.45308767192877, + 28.350866433606267 + ], + [ + 73.33824498844508, + 28.156218698677815 + ], + [ + 73.45308767192877, + 27.961570963749363 + ], + [ + 73.68277303889612, + 27.961570963749363 + ], + [ + 73.7976157223798, + 28.156218698677815 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.7976157223798, + 28.54551416853472 + ], + [ + 73.68277303889612, + 28.74016190346317 + ], + [ + 73.45308767192877, + 28.74016190346317 + ], + [ + 73.33824498844508, + 28.54551416853472 + ], + [ + 73.45308767192877, + 28.350866433606267 + ], + [ + 73.68277303889612, + 28.350866433606267 + ], + [ + 73.7976157223798, + 28.54551416853472 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.7976157223798, + 28.934809638391627 + ], + [ + 73.68277303889612, + 29.12945737332008 + ], + [ + 73.45308767192877, + 29.12945737332008 + ], + [ + 73.33824498844508, + 28.934809638391627 + ], + [ + 73.45308767192877, + 28.740161903463175 + ], + [ + 73.68277303889612, + 28.740161903463175 + ], + [ + 73.7976157223798, + 28.934809638391627 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.7976157223798, + 29.32410510824853 + ], + [ + 73.68277303889612, + 29.518752843176983 + ], + [ + 73.45308767192877, + 29.518752843176983 + ], + [ + 73.33824498844508, + 29.32410510824853 + ], + [ + 73.45308767192877, + 29.12945737332008 + ], + [ + 73.68277303889612, + 29.12945737332008 + ], + [ + 73.7976157223798, + 29.32410510824853 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.7976157223798, + 29.71340057810544 + ], + [ + 73.68277303889612, + 29.90804831303389 + ], + [ + 73.45308767192877, + 29.90804831303389 + ], + [ + 73.33824498844508, + 29.71340057810544 + ], + [ + 73.45308767192877, + 29.518752843176987 + ], + [ + 73.68277303889612, + 29.518752843176987 + ], + [ + 73.7976157223798, + 29.71340057810544 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.7976157223798, + 30.102696047962343 + ], + [ + 73.68277303889612, + 30.297343782890795 + ], + [ + 73.45308767192877, + 30.297343782890795 + ], + [ + 73.33824498844508, + 30.102696047962343 + ], + [ + 73.45308767192877, + 29.90804831303389 + ], + [ + 73.68277303889612, + 29.90804831303389 + ], + [ + 73.7976157223798, + 30.102696047962343 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.7976157223798, + 30.49199151781925 + ], + [ + 73.68277303889612, + 30.686639252747703 + ], + [ + 73.45308767192877, + 30.686639252747703 + ], + [ + 73.33824498844508, + 30.49199151781925 + ], + [ + 73.45308767192877, + 30.2973437828908 + ], + [ + 73.68277303889612, + 30.2973437828908 + ], + [ + 73.7976157223798, + 30.49199151781925 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.7976157223798, + 30.88128698767616 + ], + [ + 73.68277303889612, + 31.07593472260461 + ], + [ + 73.45308767192877, + 31.07593472260461 + ], + [ + 73.33824498844508, + 30.88128698767616 + ], + [ + 73.45308767192877, + 30.686639252747707 + ], + [ + 73.68277303889612, + 30.686639252747707 + ], + [ + 73.7976157223798, + 30.88128698767616 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.7976157223798, + 31.270582457533063 + ], + [ + 73.68277303889612, + 31.465230192461515 + ], + [ + 73.45308767192877, + 31.465230192461515 + ], + [ + 73.33824498844508, + 31.270582457533063 + ], + [ + 73.45308767192877, + 31.07593472260461 + ], + [ + 73.68277303889612, + 31.07593472260461 + ], + [ + 73.7976157223798, + 31.270582457533063 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.7976157223798, + 31.65987792738997 + ], + [ + 73.68277303889612, + 31.854525662318423 + ], + [ + 73.45308767192877, + 31.854525662318423 + ], + [ + 73.33824498844508, + 31.65987792738997 + ], + [ + 73.45308767192877, + 31.46523019246152 + ], + [ + 73.68277303889612, + 31.46523019246152 + ], + [ + 73.7976157223798, + 31.65987792738997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.7976157223798, + 32.049173397246875 + ], + [ + 73.68277303889612, + 32.24382113217533 + ], + [ + 73.45308767192877, + 32.24382113217533 + ], + [ + 73.33824498844508, + 32.049173397246875 + ], + [ + 73.45308767192877, + 31.854525662318423 + ], + [ + 73.68277303889612, + 31.854525662318423 + ], + [ + 73.7976157223798, + 32.049173397246875 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.7976157223798, + 32.438468867103786 + ], + [ + 73.68277303889612, + 32.63311660203224 + ], + [ + 73.45308767192877, + 32.63311660203224 + ], + [ + 73.33824498844508, + 32.438468867103786 + ], + [ + 73.45308767192877, + 32.243821132175334 + ], + [ + 73.68277303889612, + 32.243821132175334 + ], + [ + 73.7976157223798, + 32.438468867103786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.7976157223798, + 32.82776433696069 + ], + [ + 73.68277303889612, + 33.02241207188914 + ], + [ + 73.45308767192877, + 33.02241207188914 + ], + [ + 73.33824498844508, + 32.82776433696069 + ], + [ + 73.45308767192877, + 32.63311660203224 + ], + [ + 73.68277303889612, + 32.63311660203224 + ], + [ + 73.7976157223798, + 32.82776433696069 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.7976157223798, + 33.217059806817595 + ], + [ + 73.68277303889612, + 33.41170754174605 + ], + [ + 73.45308767192877, + 33.41170754174605 + ], + [ + 73.33824498844508, + 33.217059806817595 + ], + [ + 73.45308767192877, + 33.02241207188914 + ], + [ + 73.68277303889612, + 33.02241207188914 + ], + [ + 73.7976157223798, + 33.217059806817595 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.7976157223798, + 33.6063552766745 + ], + [ + 73.68277303889612, + 33.80100301160295 + ], + [ + 73.45308767192877, + 33.80100301160295 + ], + [ + 73.33824498844508, + 33.6063552766745 + ], + [ + 73.45308767192877, + 33.41170754174605 + ], + [ + 73.68277303889612, + 33.41170754174605 + ], + [ + 73.7976157223798, + 33.6063552766745 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.7976157223798, + 33.9956507465314 + ], + [ + 73.68277303889612, + 34.190298481459855 + ], + [ + 73.45308767192877, + 34.190298481459855 + ], + [ + 73.33824498844508, + 33.9956507465314 + ], + [ + 73.45308767192877, + 33.80100301160295 + ], + [ + 73.68277303889612, + 33.80100301160295 + ], + [ + 73.7976157223798, + 33.9956507465314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.7976157223798, + 34.384946216388315 + ], + [ + 73.68277303889612, + 34.57959395131677 + ], + [ + 73.45308767192877, + 34.57959395131677 + ], + [ + 73.33824498844508, + 34.384946216388315 + ], + [ + 73.45308767192877, + 34.19029848145986 + ], + [ + 73.68277303889612, + 34.19029848145986 + ], + [ + 73.7976157223798, + 34.384946216388315 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.7976157223798, + 34.774241686245226 + ], + [ + 73.68277303889612, + 34.96888942117368 + ], + [ + 73.45308767192877, + 34.96888942117368 + ], + [ + 73.33824498844508, + 34.774241686245226 + ], + [ + 73.45308767192877, + 34.579593951316774 + ], + [ + 73.68277303889612, + 34.579593951316774 + ], + [ + 73.7976157223798, + 34.774241686245226 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.7976157223798, + 35.16353715610213 + ], + [ + 73.68277303889612, + 35.35818489103058 + ], + [ + 73.45308767192877, + 35.35818489103058 + ], + [ + 73.33824498844508, + 35.16353715610213 + ], + [ + 73.45308767192877, + 34.96888942117368 + ], + [ + 73.68277303889612, + 34.96888942117368 + ], + [ + 73.7976157223798, + 35.16353715610213 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.7976157223798, + 35.552832625959034 + ], + [ + 73.68277303889612, + 35.74748036088749 + ], + [ + 73.45308767192877, + 35.74748036088749 + ], + [ + 73.33824498844508, + 35.552832625959034 + ], + [ + 73.45308767192877, + 35.35818489103058 + ], + [ + 73.68277303889612, + 35.35818489103058 + ], + [ + 73.7976157223798, + 35.552832625959034 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.7976157223798, + 35.94212809581594 + ], + [ + 73.68277303889612, + 36.13677583074439 + ], + [ + 73.45308767192877, + 36.13677583074439 + ], + [ + 73.33824498844508, + 35.94212809581594 + ], + [ + 73.45308767192877, + 35.74748036088749 + ], + [ + 73.68277303889612, + 35.74748036088749 + ], + [ + 73.7976157223798, + 35.94212809581594 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.7976157223798, + 36.33142356567284 + ], + [ + 73.68277303889612, + 36.526071300601295 + ], + [ + 73.45308767192877, + 36.526071300601295 + ], + [ + 73.33824498844508, + 36.33142356567284 + ], + [ + 73.45308767192877, + 36.13677583074439 + ], + [ + 73.68277303889612, + 36.13677583074439 + ], + [ + 73.7976157223798, + 36.33142356567284 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.7976157223798, + 36.720719035529754 + ], + [ + 73.68277303889612, + 36.915366770458206 + ], + [ + 73.45308767192877, + 36.915366770458206 + ], + [ + 73.33824498844508, + 36.720719035529754 + ], + [ + 73.45308767192877, + 36.5260713006013 + ], + [ + 73.68277303889612, + 36.5260713006013 + ], + [ + 73.7976157223798, + 36.720719035529754 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.7976157223798, + 37.11001450538666 + ], + [ + 73.68277303889612, + 37.30466224031511 + ], + [ + 73.45308767192877, + 37.30466224031511 + ], + [ + 73.33824498844508, + 37.11001450538666 + ], + [ + 73.45308767192877, + 36.915366770458206 + ], + [ + 73.68277303889612, + 36.915366770458206 + ], + [ + 73.7976157223798, + 37.11001450538666 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.7976157223798, + 37.49930997524357 + ], + [ + 73.68277303889612, + 37.69395771017202 + ], + [ + 73.45308767192877, + 37.69395771017202 + ], + [ + 73.33824498844508, + 37.49930997524357 + ], + [ + 73.45308767192877, + 37.30466224031512 + ], + [ + 73.68277303889612, + 37.30466224031512 + ], + [ + 73.7976157223798, + 37.49930997524357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.7976157223798, + 37.888605445100474 + ], + [ + 73.68277303889612, + 38.083253180028926 + ], + [ + 73.45308767192877, + 38.083253180028926 + ], + [ + 73.33824498844508, + 37.888605445100474 + ], + [ + 73.45308767192877, + 37.69395771017202 + ], + [ + 73.68277303889612, + 37.69395771017202 + ], + [ + 73.7976157223798, + 37.888605445100474 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.7976157223798, + 38.27790091495738 + ], + [ + 73.68277303889612, + 38.47254864988583 + ], + [ + 73.45308767192877, + 38.47254864988583 + ], + [ + 73.33824498844508, + 38.27790091495738 + ], + [ + 73.45308767192877, + 38.083253180028926 + ], + [ + 73.68277303889612, + 38.083253180028926 + ], + [ + 73.7976157223798, + 38.27790091495738 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.7976157223798, + 38.66719638481428 + ], + [ + 73.68277303889612, + 38.861844119742734 + ], + [ + 73.45308767192877, + 38.861844119742734 + ], + [ + 73.33824498844508, + 38.66719638481428 + ], + [ + 73.45308767192877, + 38.47254864988583 + ], + [ + 73.68277303889612, + 38.47254864988583 + ], + [ + 73.7976157223798, + 38.66719638481428 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.7976157223798, + 39.05649185467119 + ], + [ + 73.68277303889612, + 39.25113958959964 + ], + [ + 73.45308767192877, + 39.25113958959964 + ], + [ + 73.33824498844508, + 39.05649185467119 + ], + [ + 73.45308767192877, + 38.861844119742734 + ], + [ + 73.68277303889612, + 38.861844119742734 + ], + [ + 73.7976157223798, + 39.05649185467119 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.7976157223798, + 39.4457873245281 + ], + [ + 73.68277303889612, + 39.64043505945655 + ], + [ + 73.45308767192877, + 39.64043505945655 + ], + [ + 73.33824498844508, + 39.4457873245281 + ], + [ + 73.45308767192877, + 39.251139589599646 + ], + [ + 73.68277303889612, + 39.251139589599646 + ], + [ + 73.7976157223798, + 39.4457873245281 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.7976157223798, + 39.835082794385 + ], + [ + 73.68277303889612, + 40.029730529313454 + ], + [ + 73.45308767192877, + 40.029730529313454 + ], + [ + 73.33824498844508, + 39.835082794385 + ], + [ + 73.45308767192877, + 39.64043505945655 + ], + [ + 73.68277303889612, + 39.64043505945655 + ], + [ + 73.7976157223798, + 39.835082794385 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.7976157223798, + 40.22437826424191 + ], + [ + 73.68277303889612, + 40.419025999170366 + ], + [ + 73.45308767192877, + 40.419025999170366 + ], + [ + 73.33824498844508, + 40.22437826424191 + ], + [ + 73.45308767192877, + 40.02973052931346 + ], + [ + 73.68277303889612, + 40.02973052931346 + ], + [ + 73.7976157223798, + 40.22437826424191 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.7976157223798, + 40.61367373409882 + ], + [ + 73.68277303889612, + 40.80832146902727 + ], + [ + 73.45308767192877, + 40.80832146902727 + ], + [ + 73.33824498844508, + 40.61367373409882 + ], + [ + 73.45308767192877, + 40.419025999170366 + ], + [ + 73.68277303889612, + 40.419025999170366 + ], + [ + 73.7976157223798, + 40.61367373409882 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.7976157223798, + 41.00296920395572 + ], + [ + 73.68277303889612, + 41.197616938884174 + ], + [ + 73.45308767192877, + 41.197616938884174 + ], + [ + 73.33824498844508, + 41.00296920395572 + ], + [ + 73.45308767192877, + 40.80832146902727 + ], + [ + 73.68277303889612, + 40.80832146902727 + ], + [ + 73.7976157223798, + 41.00296920395572 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.7976157223798, + 41.392264673812626 + ], + [ + 73.68277303889612, + 41.58691240874108 + ], + [ + 73.45308767192877, + 41.58691240874108 + ], + [ + 73.33824498844508, + 41.392264673812626 + ], + [ + 73.45308767192877, + 41.197616938884174 + ], + [ + 73.68277303889612, + 41.197616938884174 + ], + [ + 73.7976157223798, + 41.392264673812626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.7976157223798, + 41.78156014366953 + ], + [ + 73.68277303889612, + 41.97620787859798 + ], + [ + 73.45308767192877, + 41.97620787859798 + ], + [ + 73.33824498844508, + 41.78156014366953 + ], + [ + 73.45308767192877, + 41.58691240874108 + ], + [ + 73.68277303889612, + 41.58691240874108 + ], + [ + 73.7976157223798, + 41.78156014366953 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.7976157223798, + 42.17085561352644 + ], + [ + 73.68277303889612, + 42.365503348454894 + ], + [ + 73.45308767192877, + 42.365503348454894 + ], + [ + 73.33824498844508, + 42.17085561352644 + ], + [ + 73.45308767192877, + 41.97620787859799 + ], + [ + 73.68277303889612, + 41.97620787859799 + ], + [ + 73.7976157223798, + 42.17085561352644 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.7976157223798, + 42.56015108338335 + ], + [ + 73.68277303889612, + 42.754798818311805 + ], + [ + 73.45308767192877, + 42.754798818311805 + ], + [ + 73.33824498844508, + 42.56015108338335 + ], + [ + 73.45308767192877, + 42.3655033484549 + ], + [ + 73.68277303889612, + 42.3655033484549 + ], + [ + 73.7976157223798, + 42.56015108338335 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.7976157223798, + 42.94944655324026 + ], + [ + 73.68277303889612, + 43.14409428816871 + ], + [ + 73.45308767192877, + 43.14409428816871 + ], + [ + 73.33824498844508, + 42.94944655324026 + ], + [ + 73.45308767192877, + 42.754798818311805 + ], + [ + 73.68277303889612, + 42.754798818311805 + ], + [ + 73.7976157223798, + 42.94944655324026 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.7976157223798, + 43.33874202309716 + ], + [ + 73.68277303889612, + 43.53338975802561 + ], + [ + 73.45308767192877, + 43.53338975802561 + ], + [ + 73.33824498844508, + 43.33874202309716 + ], + [ + 73.45308767192877, + 43.14409428816871 + ], + [ + 73.68277303889612, + 43.14409428816871 + ], + [ + 73.7976157223798, + 43.33874202309716 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.7976157223798, + 43.728037492954066 + ], + [ + 73.68277303889612, + 43.92268522788252 + ], + [ + 73.45308767192877, + 43.92268522788252 + ], + [ + 73.33824498844508, + 43.728037492954066 + ], + [ + 73.45308767192877, + 43.53338975802561 + ], + [ + 73.68277303889612, + 43.53338975802561 + ], + [ + 73.7976157223798, + 43.728037492954066 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.7976157223798, + 44.11733296281097 + ], + [ + 73.68277303889612, + 44.31198069773942 + ], + [ + 73.45308767192877, + 44.31198069773942 + ], + [ + 73.33824498844508, + 44.11733296281097 + ], + [ + 73.45308767192877, + 43.92268522788252 + ], + [ + 73.68277303889612, + 43.92268522788252 + ], + [ + 73.7976157223798, + 44.11733296281097 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.7976157223798, + 44.506628432667874 + ], + [ + 73.68277303889612, + 44.701276167596326 + ], + [ + 73.45308767192877, + 44.701276167596326 + ], + [ + 73.33824498844508, + 44.506628432667874 + ], + [ + 73.45308767192877, + 44.31198069773942 + ], + [ + 73.68277303889612, + 44.31198069773942 + ], + [ + 73.7976157223798, + 44.506628432667874 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.7976157223798, + 44.89592390252479 + ], + [ + 73.68277303889612, + 45.090571637453245 + ], + [ + 73.45308767192877, + 45.090571637453245 + ], + [ + 73.33824498844508, + 44.89592390252479 + ], + [ + 73.45308767192877, + 44.70127616759634 + ], + [ + 73.68277303889612, + 44.70127616759634 + ], + [ + 73.7976157223798, + 44.89592390252479 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.7976157223798, + 45.2852193723817 + ], + [ + 73.68277303889612, + 45.47986710731015 + ], + [ + 73.45308767192877, + 45.47986710731015 + ], + [ + 73.33824498844508, + 45.2852193723817 + ], + [ + 73.45308767192877, + 45.090571637453245 + ], + [ + 73.68277303889612, + 45.090571637453245 + ], + [ + 73.7976157223798, + 45.2852193723817 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.7976157223798, + 45.6745148422386 + ], + [ + 73.68277303889612, + 45.86916257716705 + ], + [ + 73.45308767192877, + 45.86916257716705 + ], + [ + 73.33824498844508, + 45.6745148422386 + ], + [ + 73.45308767192877, + 45.47986710731015 + ], + [ + 73.68277303889612, + 45.47986710731015 + ], + [ + 73.7976157223798, + 45.6745148422386 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.7976157223798, + 46.063810312095505 + ], + [ + 73.68277303889612, + 46.25845804702396 + ], + [ + 73.45308767192877, + 46.25845804702396 + ], + [ + 73.33824498844508, + 46.063810312095505 + ], + [ + 73.45308767192877, + 45.86916257716705 + ], + [ + 73.68277303889612, + 45.86916257716705 + ], + [ + 73.7976157223798, + 46.063810312095505 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.7976157223798, + 46.45310578195241 + ], + [ + 73.68277303889612, + 46.64775351688086 + ], + [ + 73.45308767192877, + 46.64775351688086 + ], + [ + 73.33824498844508, + 46.45310578195241 + ], + [ + 73.45308767192877, + 46.25845804702396 + ], + [ + 73.68277303889612, + 46.25845804702396 + ], + [ + 73.7976157223798, + 46.45310578195241 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.7976157223798, + 46.842401251809314 + ], + [ + 73.68277303889612, + 47.037048986737766 + ], + [ + 73.45308767192877, + 47.037048986737766 + ], + [ + 73.33824498844508, + 46.842401251809314 + ], + [ + 73.45308767192877, + 46.64775351688086 + ], + [ + 73.68277303889612, + 46.64775351688086 + ], + [ + 73.7976157223798, + 46.842401251809314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.7976157223798, + 47.23169672166622 + ], + [ + 73.68277303889612, + 47.42634445659467 + ], + [ + 73.45308767192877, + 47.42634445659467 + ], + [ + 73.33824498844508, + 47.23169672166622 + ], + [ + 73.45308767192877, + 47.037048986737766 + ], + [ + 73.68277303889612, + 47.037048986737766 + ], + [ + 73.7976157223798, + 47.23169672166622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.7976157223798, + 47.620992191523136 + ], + [ + 73.68277303889612, + 47.81563992645159 + ], + [ + 73.45308767192877, + 47.81563992645159 + ], + [ + 73.33824498844508, + 47.620992191523136 + ], + [ + 73.45308767192877, + 47.426344456594684 + ], + [ + 73.68277303889612, + 47.426344456594684 + ], + [ + 73.7976157223798, + 47.620992191523136 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.14214377283085, + 12.0004566996162 + ], + [ + 74.02730108934716, + 12.195104434544653 + ], + [ + 73.79761572237982, + 12.195104434544653 + ], + [ + 73.68277303889613, + 12.0004566996162 + ], + [ + 73.79761572237982, + 11.805808964687746 + ], + [ + 74.02730108934716, + 11.805808964687746 + ], + [ + 74.14214377283085, + 12.0004566996162 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.14214377283085, + 12.389752169473105 + ], + [ + 74.02730108934716, + 12.58439990440156 + ], + [ + 73.79761572237982, + 12.58439990440156 + ], + [ + 73.68277303889613, + 12.389752169473105 + ], + [ + 73.79761572237982, + 12.195104434544652 + ], + [ + 74.02730108934716, + 12.195104434544652 + ], + [ + 74.14214377283085, + 12.389752169473105 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.14214377283085, + 12.779047639330013 + ], + [ + 74.02730108934716, + 12.973695374258467 + ], + [ + 73.79761572237982, + 12.973695374258467 + ], + [ + 73.68277303889613, + 12.779047639330013 + ], + [ + 73.79761572237982, + 12.58439990440156 + ], + [ + 74.02730108934716, + 12.58439990440156 + ], + [ + 74.14214377283085, + 12.779047639330013 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.14214377283085, + 13.16834310918692 + ], + [ + 74.02730108934716, + 13.362990844115373 + ], + [ + 73.79761572237982, + 13.362990844115373 + ], + [ + 73.68277303889613, + 13.16834310918692 + ], + [ + 73.79761572237982, + 12.973695374258465 + ], + [ + 74.02730108934716, + 12.973695374258465 + ], + [ + 74.14214377283085, + 13.16834310918692 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.14214377283085, + 13.557638579043825 + ], + [ + 74.02730108934716, + 13.752286313972279 + ], + [ + 73.79761572237982, + 13.752286313972279 + ], + [ + 73.68277303889613, + 13.557638579043825 + ], + [ + 73.79761572237982, + 13.362990844115371 + ], + [ + 74.02730108934716, + 13.362990844115371 + ], + [ + 74.14214377283085, + 13.557638579043825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.14214377283085, + 13.946934048900731 + ], + [ + 74.02730108934716, + 14.141581783829185 + ], + [ + 73.79761572237982, + 14.141581783829185 + ], + [ + 73.68277303889613, + 13.946934048900731 + ], + [ + 73.79761572237982, + 13.752286313972277 + ], + [ + 74.02730108934716, + 13.752286313972277 + ], + [ + 74.14214377283085, + 13.946934048900731 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.14214377283085, + 14.336229518757637 + ], + [ + 74.02730108934716, + 14.530877253686091 + ], + [ + 73.79761572237982, + 14.530877253686091 + ], + [ + 73.68277303889613, + 14.336229518757637 + ], + [ + 73.79761572237982, + 14.141581783829183 + ], + [ + 74.02730108934716, + 14.141581783829183 + ], + [ + 74.14214377283085, + 14.336229518757637 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.14214377283085, + 14.725524988614545 + ], + [ + 74.02730108934716, + 14.920172723542999 + ], + [ + 73.79761572237982, + 14.920172723542999 + ], + [ + 73.68277303889613, + 14.725524988614545 + ], + [ + 73.79761572237982, + 14.530877253686091 + ], + [ + 74.02730108934716, + 14.530877253686091 + ], + [ + 74.14214377283085, + 14.725524988614545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.14214377283085, + 15.114820458471451 + ], + [ + 74.02730108934716, + 15.309468193399905 + ], + [ + 73.79761572237982, + 15.309468193399905 + ], + [ + 73.68277303889613, + 15.114820458471451 + ], + [ + 73.79761572237982, + 14.920172723542997 + ], + [ + 74.02730108934716, + 14.920172723542997 + ], + [ + 74.14214377283085, + 15.114820458471451 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.14214377283085, + 15.504115928328357 + ], + [ + 74.02730108934716, + 15.69876366325681 + ], + [ + 73.79761572237982, + 15.69876366325681 + ], + [ + 73.68277303889613, + 15.504115928328357 + ], + [ + 73.79761572237982, + 15.309468193399903 + ], + [ + 74.02730108934716, + 15.309468193399903 + ], + [ + 74.14214377283085, + 15.504115928328357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.14214377283085, + 15.893411398185265 + ], + [ + 74.02730108934716, + 16.088059133113717 + ], + [ + 73.79761572237982, + 16.088059133113717 + ], + [ + 73.68277303889613, + 15.893411398185265 + ], + [ + 73.79761572237982, + 15.69876366325681 + ], + [ + 74.02730108934716, + 15.69876366325681 + ], + [ + 74.14214377283085, + 15.893411398185265 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.14214377283085, + 16.28270686804217 + ], + [ + 74.02730108934716, + 16.47735460297062 + ], + [ + 73.79761572237982, + 16.47735460297062 + ], + [ + 73.68277303889613, + 16.28270686804217 + ], + [ + 73.79761572237982, + 16.088059133113717 + ], + [ + 74.02730108934716, + 16.088059133113717 + ], + [ + 74.14214377283085, + 16.28270686804217 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.14214377283085, + 16.672002337899077 + ], + [ + 74.02730108934716, + 16.86665007282753 + ], + [ + 73.79761572237982, + 16.86665007282753 + ], + [ + 73.68277303889613, + 16.672002337899077 + ], + [ + 73.79761572237982, + 16.477354602970625 + ], + [ + 74.02730108934716, + 16.477354602970625 + ], + [ + 74.14214377283085, + 16.672002337899077 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.14214377283085, + 17.06129780775598 + ], + [ + 74.02730108934716, + 17.255945542684433 + ], + [ + 73.79761572237982, + 17.255945542684433 + ], + [ + 73.68277303889613, + 17.06129780775598 + ], + [ + 73.79761572237982, + 16.86665007282753 + ], + [ + 74.02730108934716, + 16.86665007282753 + ], + [ + 74.14214377283085, + 17.06129780775598 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.14214377283085, + 17.45059327761289 + ], + [ + 74.02730108934716, + 17.64524101254134 + ], + [ + 73.79761572237982, + 17.64524101254134 + ], + [ + 73.68277303889613, + 17.45059327761289 + ], + [ + 73.79761572237982, + 17.255945542684437 + ], + [ + 74.02730108934716, + 17.255945542684437 + ], + [ + 74.14214377283085, + 17.45059327761289 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.14214377283085, + 17.839888747469793 + ], + [ + 74.02730108934716, + 18.034536482398245 + ], + [ + 73.79761572237982, + 18.034536482398245 + ], + [ + 73.68277303889613, + 17.839888747469793 + ], + [ + 73.79761572237982, + 17.64524101254134 + ], + [ + 74.02730108934716, + 17.64524101254134 + ], + [ + 74.14214377283085, + 17.839888747469793 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.14214377283085, + 18.2291842173267 + ], + [ + 74.02730108934716, + 18.423831952255153 + ], + [ + 73.79761572237982, + 18.423831952255153 + ], + [ + 73.68277303889613, + 18.2291842173267 + ], + [ + 73.79761572237982, + 18.03453648239825 + ], + [ + 74.02730108934716, + 18.03453648239825 + ], + [ + 74.14214377283085, + 18.2291842173267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.14214377283085, + 18.61847968718361 + ], + [ + 74.02730108934716, + 18.81312742211206 + ], + [ + 73.79761572237982, + 18.81312742211206 + ], + [ + 73.68277303889613, + 18.61847968718361 + ], + [ + 73.79761572237982, + 18.423831952255156 + ], + [ + 74.02730108934716, + 18.423831952255156 + ], + [ + 74.14214377283085, + 18.61847968718361 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.14214377283085, + 19.007775157040513 + ], + [ + 74.02730108934716, + 19.202422891968965 + ], + [ + 73.79761572237982, + 19.202422891968965 + ], + [ + 73.68277303889613, + 19.007775157040513 + ], + [ + 73.79761572237982, + 18.81312742211206 + ], + [ + 74.02730108934716, + 18.81312742211206 + ], + [ + 74.14214377283085, + 19.007775157040513 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.14214377283085, + 19.39707062689742 + ], + [ + 74.02730108934716, + 19.591718361825873 + ], + [ + 73.79761572237982, + 19.591718361825873 + ], + [ + 73.68277303889613, + 19.39707062689742 + ], + [ + 73.79761572237982, + 19.20242289196897 + ], + [ + 74.02730108934716, + 19.20242289196897 + ], + [ + 74.14214377283085, + 19.39707062689742 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.14214377283085, + 19.78636609675433 + ], + [ + 74.02730108934716, + 19.98101383168278 + ], + [ + 73.79761572237982, + 19.98101383168278 + ], + [ + 73.68277303889613, + 19.78636609675433 + ], + [ + 73.79761572237982, + 19.591718361825876 + ], + [ + 74.02730108934716, + 19.591718361825876 + ], + [ + 74.14214377283085, + 19.78636609675433 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.14214377283085, + 20.175661566611232 + ], + [ + 74.02730108934716, + 20.370309301539685 + ], + [ + 73.79761572237982, + 20.370309301539685 + ], + [ + 73.68277303889613, + 20.175661566611232 + ], + [ + 73.79761572237982, + 19.98101383168278 + ], + [ + 74.02730108934716, + 19.98101383168278 + ], + [ + 74.14214377283085, + 20.175661566611232 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.14214377283085, + 20.564957036468137 + ], + [ + 74.02730108934716, + 20.75960477139659 + ], + [ + 73.79761572237982, + 20.75960477139659 + ], + [ + 73.68277303889613, + 20.564957036468137 + ], + [ + 73.79761572237982, + 20.370309301539685 + ], + [ + 74.02730108934716, + 20.370309301539685 + ], + [ + 74.14214377283085, + 20.564957036468137 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.14214377283085, + 20.954252506325044 + ], + [ + 74.02730108934716, + 21.148900241253497 + ], + [ + 73.79761572237982, + 21.148900241253497 + ], + [ + 73.68277303889613, + 20.954252506325044 + ], + [ + 73.79761572237982, + 20.759604771396592 + ], + [ + 74.02730108934716, + 20.759604771396592 + ], + [ + 74.14214377283085, + 20.954252506325044 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.14214377283085, + 21.343547976181952 + ], + [ + 74.02730108934716, + 21.538195711110404 + ], + [ + 73.79761572237982, + 21.538195711110404 + ], + [ + 73.68277303889613, + 21.343547976181952 + ], + [ + 73.79761572237982, + 21.1489002412535 + ], + [ + 74.02730108934716, + 21.1489002412535 + ], + [ + 74.14214377283085, + 21.343547976181952 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.14214377283085, + 21.732843446038856 + ], + [ + 74.02730108934716, + 21.92749118096731 + ], + [ + 73.79761572237982, + 21.92749118096731 + ], + [ + 73.68277303889613, + 21.732843446038856 + ], + [ + 73.79761572237982, + 21.538195711110404 + ], + [ + 74.02730108934716, + 21.538195711110404 + ], + [ + 74.14214377283085, + 21.732843446038856 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.14214377283085, + 22.122138915895764 + ], + [ + 74.02730108934716, + 22.316786650824216 + ], + [ + 73.79761572237982, + 22.316786650824216 + ], + [ + 73.68277303889613, + 22.122138915895764 + ], + [ + 73.79761572237982, + 21.927491180967312 + ], + [ + 74.02730108934716, + 21.927491180967312 + ], + [ + 74.14214377283085, + 22.122138915895764 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.14214377283085, + 22.511434385752672 + ], + [ + 74.02730108934716, + 22.706082120681124 + ], + [ + 73.79761572237982, + 22.706082120681124 + ], + [ + 73.68277303889613, + 22.511434385752672 + ], + [ + 73.79761572237982, + 22.31678665082422 + ], + [ + 74.02730108934716, + 22.31678665082422 + ], + [ + 74.14214377283085, + 22.511434385752672 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.14214377283085, + 22.900729855609576 + ], + [ + 74.02730108934716, + 23.09537759053803 + ], + [ + 73.79761572237982, + 23.09537759053803 + ], + [ + 73.68277303889613, + 22.900729855609576 + ], + [ + 73.79761572237982, + 22.706082120681124 + ], + [ + 74.02730108934716, + 22.706082120681124 + ], + [ + 74.14214377283085, + 22.900729855609576 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.14214377283085, + 23.290025325466484 + ], + [ + 74.02730108934716, + 23.484673060394936 + ], + [ + 73.79761572237982, + 23.484673060394936 + ], + [ + 73.68277303889613, + 23.290025325466484 + ], + [ + 73.79761572237982, + 23.095377590538032 + ], + [ + 74.02730108934716, + 23.095377590538032 + ], + [ + 74.14214377283085, + 23.290025325466484 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.14214377283085, + 23.67932079532339 + ], + [ + 74.02730108934716, + 23.873968530251844 + ], + [ + 73.79761572237982, + 23.873968530251844 + ], + [ + 73.68277303889613, + 23.67932079532339 + ], + [ + 73.79761572237982, + 23.48467306039494 + ], + [ + 74.02730108934716, + 23.48467306039494 + ], + [ + 74.14214377283085, + 23.67932079532339 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.14214377283085, + 24.068616265180296 + ], + [ + 74.02730108934716, + 24.263264000108748 + ], + [ + 73.79761572237982, + 24.263264000108748 + ], + [ + 73.68277303889613, + 24.068616265180296 + ], + [ + 73.79761572237982, + 23.873968530251844 + ], + [ + 74.02730108934716, + 23.873968530251844 + ], + [ + 74.14214377283085, + 24.068616265180296 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.14214377283085, + 24.4579117350372 + ], + [ + 74.02730108934716, + 24.652559469965652 + ], + [ + 73.79761572237982, + 24.652559469965652 + ], + [ + 73.68277303889613, + 24.4579117350372 + ], + [ + 73.79761572237982, + 24.263264000108748 + ], + [ + 74.02730108934716, + 24.263264000108748 + ], + [ + 74.14214377283085, + 24.4579117350372 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.14214377283085, + 24.847207204894108 + ], + [ + 74.02730108934716, + 25.04185493982256 + ], + [ + 73.79761572237982, + 25.04185493982256 + ], + [ + 73.68277303889613, + 24.847207204894108 + ], + [ + 73.79761572237982, + 24.652559469965656 + ], + [ + 74.02730108934716, + 24.652559469965656 + ], + [ + 74.14214377283085, + 24.847207204894108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.14214377283085, + 25.236502674751016 + ], + [ + 74.02730108934716, + 25.431150409679468 + ], + [ + 73.79761572237982, + 25.431150409679468 + ], + [ + 73.68277303889613, + 25.236502674751016 + ], + [ + 73.79761572237982, + 25.041854939822564 + ], + [ + 74.02730108934716, + 25.041854939822564 + ], + [ + 74.14214377283085, + 25.236502674751016 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.14214377283085, + 25.62579814460792 + ], + [ + 74.02730108934716, + 25.820445879536372 + ], + [ + 73.79761572237982, + 25.820445879536372 + ], + [ + 73.68277303889613, + 25.62579814460792 + ], + [ + 73.79761572237982, + 25.431150409679468 + ], + [ + 74.02730108934716, + 25.431150409679468 + ], + [ + 74.14214377283085, + 25.62579814460792 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.14214377283085, + 26.015093614464828 + ], + [ + 74.02730108934716, + 26.20974134939328 + ], + [ + 73.79761572237982, + 26.20974134939328 + ], + [ + 73.68277303889613, + 26.015093614464828 + ], + [ + 73.79761572237982, + 25.820445879536376 + ], + [ + 74.02730108934716, + 25.820445879536376 + ], + [ + 74.14214377283085, + 26.015093614464828 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.14214377283085, + 26.404389084321735 + ], + [ + 74.02730108934716, + 26.599036819250188 + ], + [ + 73.79761572237982, + 26.599036819250188 + ], + [ + 73.68277303889613, + 26.404389084321735 + ], + [ + 73.79761572237982, + 26.209741349393283 + ], + [ + 74.02730108934716, + 26.209741349393283 + ], + [ + 74.14214377283085, + 26.404389084321735 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.14214377283085, + 26.79368455417864 + ], + [ + 74.02730108934716, + 26.988332289107092 + ], + [ + 73.79761572237982, + 26.988332289107092 + ], + [ + 73.68277303889613, + 26.79368455417864 + ], + [ + 73.79761572237982, + 26.599036819250188 + ], + [ + 74.02730108934716, + 26.599036819250188 + ], + [ + 74.14214377283085, + 26.79368455417864 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.14214377283085, + 27.182980024035547 + ], + [ + 74.02730108934716, + 27.377627758964 + ], + [ + 73.79761572237982, + 27.377627758964 + ], + [ + 73.68277303889613, + 27.182980024035547 + ], + [ + 73.79761572237982, + 26.988332289107095 + ], + [ + 74.02730108934716, + 26.988332289107095 + ], + [ + 74.14214377283085, + 27.182980024035547 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.14214377283085, + 27.572275493892455 + ], + [ + 74.02730108934716, + 27.766923228820907 + ], + [ + 73.79761572237982, + 27.766923228820907 + ], + [ + 73.68277303889613, + 27.572275493892455 + ], + [ + 73.79761572237982, + 27.377627758964003 + ], + [ + 74.02730108934716, + 27.377627758964003 + ], + [ + 74.14214377283085, + 27.572275493892455 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.14214377283085, + 27.96157096374936 + ], + [ + 74.02730108934716, + 28.15621869867781 + ], + [ + 73.79761572237982, + 28.15621869867781 + ], + [ + 73.68277303889613, + 27.96157096374936 + ], + [ + 73.79761572237982, + 27.766923228820907 + ], + [ + 74.02730108934716, + 27.766923228820907 + ], + [ + 74.14214377283085, + 27.96157096374936 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.14214377283085, + 28.350866433606267 + ], + [ + 74.02730108934716, + 28.54551416853472 + ], + [ + 73.79761572237982, + 28.54551416853472 + ], + [ + 73.68277303889613, + 28.350866433606267 + ], + [ + 73.79761572237982, + 28.156218698677815 + ], + [ + 74.02730108934716, + 28.156218698677815 + ], + [ + 74.14214377283085, + 28.350866433606267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.14214377283085, + 28.74016190346317 + ], + [ + 74.02730108934716, + 28.934809638391624 + ], + [ + 73.79761572237982, + 28.934809638391624 + ], + [ + 73.68277303889613, + 28.74016190346317 + ], + [ + 73.79761572237982, + 28.54551416853472 + ], + [ + 74.02730108934716, + 28.54551416853472 + ], + [ + 74.14214377283085, + 28.74016190346317 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.14214377283085, + 29.12945737332008 + ], + [ + 74.02730108934716, + 29.32410510824853 + ], + [ + 73.79761572237982, + 29.32410510824853 + ], + [ + 73.68277303889613, + 29.12945737332008 + ], + [ + 73.79761572237982, + 28.934809638391627 + ], + [ + 74.02730108934716, + 28.934809638391627 + ], + [ + 74.14214377283085, + 29.12945737332008 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.14214377283085, + 29.518752843176983 + ], + [ + 74.02730108934716, + 29.713400578105436 + ], + [ + 73.79761572237982, + 29.713400578105436 + ], + [ + 73.68277303889613, + 29.518752843176983 + ], + [ + 73.79761572237982, + 29.32410510824853 + ], + [ + 74.02730108934716, + 29.32410510824853 + ], + [ + 74.14214377283085, + 29.518752843176983 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.14214377283085, + 29.90804831303389 + ], + [ + 74.02730108934716, + 30.102696047962343 + ], + [ + 73.79761572237982, + 30.102696047962343 + ], + [ + 73.68277303889613, + 29.90804831303389 + ], + [ + 73.79761572237982, + 29.71340057810544 + ], + [ + 74.02730108934716, + 29.71340057810544 + ], + [ + 74.14214377283085, + 29.90804831303389 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.14214377283085, + 30.297343782890795 + ], + [ + 74.02730108934716, + 30.491991517819248 + ], + [ + 73.79761572237982, + 30.491991517819248 + ], + [ + 73.68277303889613, + 30.297343782890795 + ], + [ + 73.79761572237982, + 30.102696047962343 + ], + [ + 74.02730108934716, + 30.102696047962343 + ], + [ + 74.14214377283085, + 30.297343782890795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.14214377283085, + 30.686639252747703 + ], + [ + 74.02730108934716, + 30.881286987676155 + ], + [ + 73.79761572237982, + 30.881286987676155 + ], + [ + 73.68277303889613, + 30.686639252747703 + ], + [ + 73.79761572237982, + 30.49199151781925 + ], + [ + 74.02730108934716, + 30.49199151781925 + ], + [ + 74.14214377283085, + 30.686639252747703 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.14214377283085, + 31.07593472260461 + ], + [ + 74.02730108934716, + 31.270582457533063 + ], + [ + 73.79761572237982, + 31.270582457533063 + ], + [ + 73.68277303889613, + 31.07593472260461 + ], + [ + 73.79761572237982, + 30.88128698767616 + ], + [ + 74.02730108934716, + 30.88128698767616 + ], + [ + 74.14214377283085, + 31.07593472260461 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.14214377283085, + 31.465230192461515 + ], + [ + 74.02730108934716, + 31.659877927389967 + ], + [ + 73.79761572237982, + 31.659877927389967 + ], + [ + 73.68277303889613, + 31.465230192461515 + ], + [ + 73.79761572237982, + 31.270582457533063 + ], + [ + 74.02730108934716, + 31.270582457533063 + ], + [ + 74.14214377283085, + 31.465230192461515 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.14214377283085, + 31.854525662318423 + ], + [ + 74.02730108934716, + 32.049173397246875 + ], + [ + 73.79761572237982, + 32.049173397246875 + ], + [ + 73.68277303889613, + 31.854525662318423 + ], + [ + 73.79761572237982, + 31.65987792738997 + ], + [ + 74.02730108934716, + 31.65987792738997 + ], + [ + 74.14214377283085, + 31.854525662318423 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.14214377283085, + 32.24382113217533 + ], + [ + 74.02730108934716, + 32.43846886710378 + ], + [ + 73.79761572237982, + 32.43846886710378 + ], + [ + 73.68277303889613, + 32.24382113217533 + ], + [ + 73.79761572237982, + 32.049173397246875 + ], + [ + 74.02730108934716, + 32.049173397246875 + ], + [ + 74.14214377283085, + 32.24382113217533 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.14214377283085, + 32.63311660203224 + ], + [ + 74.02730108934716, + 32.82776433696069 + ], + [ + 73.79761572237982, + 32.82776433696069 + ], + [ + 73.68277303889613, + 32.63311660203224 + ], + [ + 73.79761572237982, + 32.438468867103786 + ], + [ + 74.02730108934716, + 32.438468867103786 + ], + [ + 74.14214377283085, + 32.63311660203224 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.14214377283085, + 33.02241207188914 + ], + [ + 74.02730108934716, + 33.217059806817595 + ], + [ + 73.79761572237982, + 33.217059806817595 + ], + [ + 73.68277303889613, + 33.02241207188914 + ], + [ + 73.79761572237982, + 32.82776433696069 + ], + [ + 74.02730108934716, + 32.82776433696069 + ], + [ + 74.14214377283085, + 33.02241207188914 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.14214377283085, + 33.41170754174605 + ], + [ + 74.02730108934716, + 33.6063552766745 + ], + [ + 73.79761572237982, + 33.6063552766745 + ], + [ + 73.68277303889613, + 33.41170754174605 + ], + [ + 73.79761572237982, + 33.217059806817595 + ], + [ + 74.02730108934716, + 33.217059806817595 + ], + [ + 74.14214377283085, + 33.41170754174605 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.14214377283085, + 33.80100301160295 + ], + [ + 74.02730108934716, + 33.9956507465314 + ], + [ + 73.79761572237982, + 33.9956507465314 + ], + [ + 73.68277303889613, + 33.80100301160295 + ], + [ + 73.79761572237982, + 33.6063552766745 + ], + [ + 74.02730108934716, + 33.6063552766745 + ], + [ + 74.14214377283085, + 33.80100301160295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.14214377283085, + 34.190298481459855 + ], + [ + 74.02730108934716, + 34.38494621638831 + ], + [ + 73.79761572237982, + 34.38494621638831 + ], + [ + 73.68277303889613, + 34.190298481459855 + ], + [ + 73.79761572237982, + 33.9956507465314 + ], + [ + 74.02730108934716, + 33.9956507465314 + ], + [ + 74.14214377283085, + 34.190298481459855 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.14214377283085, + 34.57959395131677 + ], + [ + 74.02730108934716, + 34.77424168624522 + ], + [ + 73.79761572237982, + 34.77424168624522 + ], + [ + 73.68277303889613, + 34.57959395131677 + ], + [ + 73.79761572237982, + 34.384946216388315 + ], + [ + 74.02730108934716, + 34.384946216388315 + ], + [ + 74.14214377283085, + 34.57959395131677 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.14214377283085, + 34.96888942117368 + ], + [ + 74.02730108934716, + 35.16353715610213 + ], + [ + 73.79761572237982, + 35.16353715610213 + ], + [ + 73.68277303889613, + 34.96888942117368 + ], + [ + 73.79761572237982, + 34.774241686245226 + ], + [ + 74.02730108934716, + 34.774241686245226 + ], + [ + 74.14214377283085, + 34.96888942117368 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.14214377283085, + 35.35818489103058 + ], + [ + 74.02730108934716, + 35.552832625959034 + ], + [ + 73.79761572237982, + 35.552832625959034 + ], + [ + 73.68277303889613, + 35.35818489103058 + ], + [ + 73.79761572237982, + 35.16353715610213 + ], + [ + 74.02730108934716, + 35.16353715610213 + ], + [ + 74.14214377283085, + 35.35818489103058 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.14214377283085, + 35.74748036088749 + ], + [ + 74.02730108934716, + 35.94212809581594 + ], + [ + 73.79761572237982, + 35.94212809581594 + ], + [ + 73.68277303889613, + 35.74748036088749 + ], + [ + 73.79761572237982, + 35.552832625959034 + ], + [ + 74.02730108934716, + 35.552832625959034 + ], + [ + 74.14214377283085, + 35.74748036088749 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.14214377283085, + 36.13677583074439 + ], + [ + 74.02730108934716, + 36.33142356567284 + ], + [ + 73.79761572237982, + 36.33142356567284 + ], + [ + 73.68277303889613, + 36.13677583074439 + ], + [ + 73.79761572237982, + 35.94212809581594 + ], + [ + 74.02730108934716, + 35.94212809581594 + ], + [ + 74.14214377283085, + 36.13677583074439 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.14214377283085, + 36.526071300601295 + ], + [ + 74.02730108934716, + 36.72071903552975 + ], + [ + 73.79761572237982, + 36.72071903552975 + ], + [ + 73.68277303889613, + 36.526071300601295 + ], + [ + 73.79761572237982, + 36.33142356567284 + ], + [ + 74.02730108934716, + 36.33142356567284 + ], + [ + 74.14214377283085, + 36.526071300601295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.14214377283085, + 36.915366770458206 + ], + [ + 74.02730108934716, + 37.11001450538666 + ], + [ + 73.79761572237982, + 37.11001450538666 + ], + [ + 73.68277303889613, + 36.915366770458206 + ], + [ + 73.79761572237982, + 36.720719035529754 + ], + [ + 74.02730108934716, + 36.720719035529754 + ], + [ + 74.14214377283085, + 36.915366770458206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.14214377283085, + 37.30466224031511 + ], + [ + 74.02730108934716, + 37.49930997524356 + ], + [ + 73.79761572237982, + 37.49930997524356 + ], + [ + 73.68277303889613, + 37.30466224031511 + ], + [ + 73.79761572237982, + 37.11001450538666 + ], + [ + 74.02730108934716, + 37.11001450538666 + ], + [ + 74.14214377283085, + 37.30466224031511 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.14214377283085, + 37.69395771017202 + ], + [ + 74.02730108934716, + 37.888605445100474 + ], + [ + 73.79761572237982, + 37.888605445100474 + ], + [ + 73.68277303889613, + 37.69395771017202 + ], + [ + 73.79761572237982, + 37.49930997524357 + ], + [ + 74.02730108934716, + 37.49930997524357 + ], + [ + 74.14214377283085, + 37.69395771017202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.14214377283085, + 38.083253180028926 + ], + [ + 74.02730108934716, + 38.27790091495738 + ], + [ + 73.79761572237982, + 38.27790091495738 + ], + [ + 73.68277303889613, + 38.083253180028926 + ], + [ + 73.79761572237982, + 37.888605445100474 + ], + [ + 74.02730108934716, + 37.888605445100474 + ], + [ + 74.14214377283085, + 38.083253180028926 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.14214377283085, + 38.47254864988583 + ], + [ + 74.02730108934716, + 38.66719638481428 + ], + [ + 73.79761572237982, + 38.66719638481428 + ], + [ + 73.68277303889613, + 38.47254864988583 + ], + [ + 73.79761572237982, + 38.27790091495738 + ], + [ + 74.02730108934716, + 38.27790091495738 + ], + [ + 74.14214377283085, + 38.47254864988583 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.14214377283085, + 38.861844119742734 + ], + [ + 74.02730108934716, + 39.05649185467119 + ], + [ + 73.79761572237982, + 39.05649185467119 + ], + [ + 73.68277303889613, + 38.861844119742734 + ], + [ + 73.79761572237982, + 38.66719638481428 + ], + [ + 74.02730108934716, + 38.66719638481428 + ], + [ + 74.14214377283085, + 38.861844119742734 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.14214377283085, + 39.25113958959964 + ], + [ + 74.02730108934716, + 39.44578732452809 + ], + [ + 73.79761572237982, + 39.44578732452809 + ], + [ + 73.68277303889613, + 39.25113958959964 + ], + [ + 73.79761572237982, + 39.05649185467119 + ], + [ + 74.02730108934716, + 39.05649185467119 + ], + [ + 74.14214377283085, + 39.25113958959964 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.14214377283085, + 39.64043505945655 + ], + [ + 74.02730108934716, + 39.835082794385 + ], + [ + 73.79761572237982, + 39.835082794385 + ], + [ + 73.68277303889613, + 39.64043505945655 + ], + [ + 73.79761572237982, + 39.4457873245281 + ], + [ + 74.02730108934716, + 39.4457873245281 + ], + [ + 74.14214377283085, + 39.64043505945655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.14214377283085, + 40.029730529313454 + ], + [ + 74.02730108934716, + 40.224378264241906 + ], + [ + 73.79761572237982, + 40.224378264241906 + ], + [ + 73.68277303889613, + 40.029730529313454 + ], + [ + 73.79761572237982, + 39.835082794385 + ], + [ + 74.02730108934716, + 39.835082794385 + ], + [ + 74.14214377283085, + 40.029730529313454 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.14214377283085, + 40.419025999170366 + ], + [ + 74.02730108934716, + 40.61367373409882 + ], + [ + 73.79761572237982, + 40.61367373409882 + ], + [ + 73.68277303889613, + 40.419025999170366 + ], + [ + 73.79761572237982, + 40.22437826424191 + ], + [ + 74.02730108934716, + 40.22437826424191 + ], + [ + 74.14214377283085, + 40.419025999170366 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.14214377283085, + 40.80832146902727 + ], + [ + 74.02730108934716, + 41.00296920395572 + ], + [ + 73.79761572237982, + 41.00296920395572 + ], + [ + 73.68277303889613, + 40.80832146902727 + ], + [ + 73.79761572237982, + 40.61367373409882 + ], + [ + 74.02730108934716, + 40.61367373409882 + ], + [ + 74.14214377283085, + 40.80832146902727 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.14214377283085, + 41.197616938884174 + ], + [ + 74.02730108934716, + 41.392264673812626 + ], + [ + 73.79761572237982, + 41.392264673812626 + ], + [ + 73.68277303889613, + 41.197616938884174 + ], + [ + 73.79761572237982, + 41.00296920395572 + ], + [ + 74.02730108934716, + 41.00296920395572 + ], + [ + 74.14214377283085, + 41.197616938884174 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.14214377283085, + 41.58691240874108 + ], + [ + 74.02730108934716, + 41.78156014366953 + ], + [ + 73.79761572237982, + 41.78156014366953 + ], + [ + 73.68277303889613, + 41.58691240874108 + ], + [ + 73.79761572237982, + 41.392264673812626 + ], + [ + 74.02730108934716, + 41.392264673812626 + ], + [ + 74.14214377283085, + 41.58691240874108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.14214377283085, + 41.97620787859798 + ], + [ + 74.02730108934716, + 42.170855613526435 + ], + [ + 73.79761572237982, + 42.170855613526435 + ], + [ + 73.68277303889613, + 41.97620787859798 + ], + [ + 73.79761572237982, + 41.78156014366953 + ], + [ + 74.02730108934716, + 41.78156014366953 + ], + [ + 74.14214377283085, + 41.97620787859798 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.14214377283085, + 42.365503348454894 + ], + [ + 74.02730108934716, + 42.560151083383346 + ], + [ + 73.79761572237982, + 42.560151083383346 + ], + [ + 73.68277303889613, + 42.365503348454894 + ], + [ + 73.79761572237982, + 42.17085561352644 + ], + [ + 74.02730108934716, + 42.17085561352644 + ], + [ + 74.14214377283085, + 42.365503348454894 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.14214377283085, + 42.754798818311805 + ], + [ + 74.02730108934716, + 42.94944655324026 + ], + [ + 73.79761572237982, + 42.94944655324026 + ], + [ + 73.68277303889613, + 42.754798818311805 + ], + [ + 73.79761572237982, + 42.56015108338335 + ], + [ + 74.02730108934716, + 42.56015108338335 + ], + [ + 74.14214377283085, + 42.754798818311805 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.14214377283085, + 43.14409428816871 + ], + [ + 74.02730108934716, + 43.33874202309716 + ], + [ + 73.79761572237982, + 43.33874202309716 + ], + [ + 73.68277303889613, + 43.14409428816871 + ], + [ + 73.79761572237982, + 42.94944655324026 + ], + [ + 74.02730108934716, + 42.94944655324026 + ], + [ + 74.14214377283085, + 43.14409428816871 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.14214377283085, + 43.53338975802561 + ], + [ + 74.02730108934716, + 43.728037492954066 + ], + [ + 73.79761572237982, + 43.728037492954066 + ], + [ + 73.68277303889613, + 43.53338975802561 + ], + [ + 73.79761572237982, + 43.33874202309716 + ], + [ + 74.02730108934716, + 43.33874202309716 + ], + [ + 74.14214377283085, + 43.53338975802561 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.14214377283085, + 43.92268522788252 + ], + [ + 74.02730108934716, + 44.11733296281097 + ], + [ + 73.79761572237982, + 44.11733296281097 + ], + [ + 73.68277303889613, + 43.92268522788252 + ], + [ + 73.79761572237982, + 43.728037492954066 + ], + [ + 74.02730108934716, + 43.728037492954066 + ], + [ + 74.14214377283085, + 43.92268522788252 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.14214377283085, + 44.31198069773942 + ], + [ + 74.02730108934716, + 44.506628432667874 + ], + [ + 73.79761572237982, + 44.506628432667874 + ], + [ + 73.68277303889613, + 44.31198069773942 + ], + [ + 73.79761572237982, + 44.11733296281097 + ], + [ + 74.02730108934716, + 44.11733296281097 + ], + [ + 74.14214377283085, + 44.31198069773942 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.14214377283085, + 44.701276167596326 + ], + [ + 74.02730108934716, + 44.89592390252478 + ], + [ + 73.79761572237982, + 44.89592390252478 + ], + [ + 73.68277303889613, + 44.701276167596326 + ], + [ + 73.79761572237982, + 44.506628432667874 + ], + [ + 74.02730108934716, + 44.506628432667874 + ], + [ + 74.14214377283085, + 44.701276167596326 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.14214377283085, + 45.090571637453245 + ], + [ + 74.02730108934716, + 45.2852193723817 + ], + [ + 73.79761572237982, + 45.2852193723817 + ], + [ + 73.68277303889613, + 45.090571637453245 + ], + [ + 73.79761572237982, + 44.89592390252479 + ], + [ + 74.02730108934716, + 44.89592390252479 + ], + [ + 74.14214377283085, + 45.090571637453245 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.14214377283085, + 45.47986710731015 + ], + [ + 74.02730108934716, + 45.6745148422386 + ], + [ + 73.79761572237982, + 45.6745148422386 + ], + [ + 73.68277303889613, + 45.47986710731015 + ], + [ + 73.79761572237982, + 45.2852193723817 + ], + [ + 74.02730108934716, + 45.2852193723817 + ], + [ + 74.14214377283085, + 45.47986710731015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.14214377283085, + 45.86916257716705 + ], + [ + 74.02730108934716, + 46.063810312095505 + ], + [ + 73.79761572237982, + 46.063810312095505 + ], + [ + 73.68277303889613, + 45.86916257716705 + ], + [ + 73.79761572237982, + 45.6745148422386 + ], + [ + 74.02730108934716, + 45.6745148422386 + ], + [ + 74.14214377283085, + 45.86916257716705 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.14214377283085, + 46.25845804702396 + ], + [ + 74.02730108934716, + 46.45310578195241 + ], + [ + 73.79761572237982, + 46.45310578195241 + ], + [ + 73.68277303889613, + 46.25845804702396 + ], + [ + 73.79761572237982, + 46.063810312095505 + ], + [ + 74.02730108934716, + 46.063810312095505 + ], + [ + 74.14214377283085, + 46.25845804702396 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.14214377283085, + 46.64775351688086 + ], + [ + 74.02730108934716, + 46.842401251809314 + ], + [ + 73.79761572237982, + 46.842401251809314 + ], + [ + 73.68277303889613, + 46.64775351688086 + ], + [ + 73.79761572237982, + 46.45310578195241 + ], + [ + 74.02730108934716, + 46.45310578195241 + ], + [ + 74.14214377283085, + 46.64775351688086 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.14214377283085, + 47.037048986737766 + ], + [ + 74.02730108934716, + 47.23169672166622 + ], + [ + 73.79761572237982, + 47.23169672166622 + ], + [ + 73.68277303889613, + 47.037048986737766 + ], + [ + 73.79761572237982, + 46.842401251809314 + ], + [ + 74.02730108934716, + 46.842401251809314 + ], + [ + 74.14214377283085, + 47.037048986737766 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.14214377283085, + 47.42634445659467 + ], + [ + 74.02730108934716, + 47.62099219152312 + ], + [ + 73.79761572237982, + 47.62099219152312 + ], + [ + 73.68277303889613, + 47.42634445659467 + ], + [ + 73.79761572237982, + 47.23169672166622 + ], + [ + 74.02730108934716, + 47.23169672166622 + ], + [ + 74.14214377283085, + 47.42634445659467 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.14214377283085, + 47.81563992645159 + ], + [ + 74.02730108934716, + 48.01028766138004 + ], + [ + 73.79761572237982, + 48.01028766138004 + ], + [ + 73.68277303889613, + 47.81563992645159 + ], + [ + 73.79761572237982, + 47.620992191523136 + ], + [ + 74.02730108934716, + 47.620992191523136 + ], + [ + 74.14214377283085, + 47.81563992645159 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.48667182328188, + 11.805808964687746 + ], + [ + 74.3718291397982, + 12.0004566996162 + ], + [ + 74.14214377283085, + 12.0004566996162 + ], + [ + 74.02730108934716, + 11.805808964687746 + ], + [ + 74.14214377283085, + 11.611161229759292 + ], + [ + 74.3718291397982, + 11.611161229759292 + ], + [ + 74.48667182328188, + 11.805808964687746 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.48667182328188, + 12.195104434544652 + ], + [ + 74.3718291397982, + 12.389752169473105 + ], + [ + 74.14214377283085, + 12.389752169473105 + ], + [ + 74.02730108934716, + 12.195104434544652 + ], + [ + 74.14214377283085, + 12.000456699616198 + ], + [ + 74.3718291397982, + 12.000456699616198 + ], + [ + 74.48667182328188, + 12.195104434544652 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.48667182328188, + 12.58439990440156 + ], + [ + 74.3718291397982, + 12.779047639330013 + ], + [ + 74.14214377283085, + 12.779047639330013 + ], + [ + 74.02730108934716, + 12.58439990440156 + ], + [ + 74.14214377283085, + 12.389752169473105 + ], + [ + 74.3718291397982, + 12.389752169473105 + ], + [ + 74.48667182328188, + 12.58439990440156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.48667182328188, + 12.973695374258465 + ], + [ + 74.3718291397982, + 13.16834310918692 + ], + [ + 74.14214377283085, + 13.16834310918692 + ], + [ + 74.02730108934716, + 12.973695374258465 + ], + [ + 74.14214377283085, + 12.779047639330011 + ], + [ + 74.3718291397982, + 12.779047639330011 + ], + [ + 74.48667182328188, + 12.973695374258465 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.48667182328188, + 13.362990844115371 + ], + [ + 74.3718291397982, + 13.557638579043825 + ], + [ + 74.14214377283085, + 13.557638579043825 + ], + [ + 74.02730108934716, + 13.362990844115371 + ], + [ + 74.14214377283085, + 13.168343109186917 + ], + [ + 74.3718291397982, + 13.168343109186917 + ], + [ + 74.48667182328188, + 13.362990844115371 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.48667182328188, + 13.752286313972277 + ], + [ + 74.3718291397982, + 13.946934048900731 + ], + [ + 74.14214377283085, + 13.946934048900731 + ], + [ + 74.02730108934716, + 13.752286313972277 + ], + [ + 74.14214377283085, + 13.557638579043823 + ], + [ + 74.3718291397982, + 13.557638579043823 + ], + [ + 74.48667182328188, + 13.752286313972277 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.48667182328188, + 14.141581783829183 + ], + [ + 74.3718291397982, + 14.336229518757637 + ], + [ + 74.14214377283085, + 14.336229518757637 + ], + [ + 74.02730108934716, + 14.141581783829183 + ], + [ + 74.14214377283085, + 13.94693404890073 + ], + [ + 74.3718291397982, + 13.94693404890073 + ], + [ + 74.48667182328188, + 14.141581783829183 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.48667182328188, + 14.530877253686091 + ], + [ + 74.3718291397982, + 14.725524988614545 + ], + [ + 74.14214377283085, + 14.725524988614545 + ], + [ + 74.02730108934716, + 14.530877253686091 + ], + [ + 74.14214377283085, + 14.336229518757637 + ], + [ + 74.3718291397982, + 14.336229518757637 + ], + [ + 74.48667182328188, + 14.530877253686091 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.48667182328188, + 14.920172723542997 + ], + [ + 74.3718291397982, + 15.114820458471451 + ], + [ + 74.14214377283085, + 15.114820458471451 + ], + [ + 74.02730108934716, + 14.920172723542997 + ], + [ + 74.14214377283085, + 14.725524988614543 + ], + [ + 74.3718291397982, + 14.725524988614543 + ], + [ + 74.48667182328188, + 14.920172723542997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.48667182328188, + 15.309468193399903 + ], + [ + 74.3718291397982, + 15.504115928328357 + ], + [ + 74.14214377283085, + 15.504115928328357 + ], + [ + 74.02730108934716, + 15.309468193399903 + ], + [ + 74.14214377283085, + 15.11482045847145 + ], + [ + 74.3718291397982, + 15.11482045847145 + ], + [ + 74.48667182328188, + 15.309468193399903 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.48667182328188, + 15.69876366325681 + ], + [ + 74.3718291397982, + 15.893411398185265 + ], + [ + 74.14214377283085, + 15.893411398185265 + ], + [ + 74.02730108934716, + 15.69876366325681 + ], + [ + 74.14214377283085, + 15.504115928328357 + ], + [ + 74.3718291397982, + 15.504115928328357 + ], + [ + 74.48667182328188, + 15.69876366325681 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.48667182328188, + 16.088059133113717 + ], + [ + 74.3718291397982, + 16.28270686804217 + ], + [ + 74.14214377283085, + 16.28270686804217 + ], + [ + 74.02730108934716, + 16.088059133113717 + ], + [ + 74.14214377283085, + 15.893411398185263 + ], + [ + 74.3718291397982, + 15.893411398185263 + ], + [ + 74.48667182328188, + 16.088059133113717 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.48667182328188, + 16.477354602970625 + ], + [ + 74.3718291397982, + 16.672002337899077 + ], + [ + 74.14214377283085, + 16.672002337899077 + ], + [ + 74.02730108934716, + 16.477354602970625 + ], + [ + 74.14214377283085, + 16.282706868042172 + ], + [ + 74.3718291397982, + 16.282706868042172 + ], + [ + 74.48667182328188, + 16.477354602970625 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.48667182328188, + 16.86665007282753 + ], + [ + 74.3718291397982, + 17.06129780775598 + ], + [ + 74.14214377283085, + 17.06129780775598 + ], + [ + 74.02730108934716, + 16.86665007282753 + ], + [ + 74.14214377283085, + 16.672002337899077 + ], + [ + 74.3718291397982, + 16.672002337899077 + ], + [ + 74.48667182328188, + 16.86665007282753 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.48667182328188, + 17.255945542684437 + ], + [ + 74.3718291397982, + 17.45059327761289 + ], + [ + 74.14214377283085, + 17.45059327761289 + ], + [ + 74.02730108934716, + 17.255945542684437 + ], + [ + 74.14214377283085, + 17.061297807755984 + ], + [ + 74.3718291397982, + 17.061297807755984 + ], + [ + 74.48667182328188, + 17.255945542684437 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.48667182328188, + 17.64524101254134 + ], + [ + 74.3718291397982, + 17.839888747469793 + ], + [ + 74.14214377283085, + 17.839888747469793 + ], + [ + 74.02730108934716, + 17.64524101254134 + ], + [ + 74.14214377283085, + 17.45059327761289 + ], + [ + 74.3718291397982, + 17.45059327761289 + ], + [ + 74.48667182328188, + 17.64524101254134 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.48667182328188, + 18.03453648239825 + ], + [ + 74.3718291397982, + 18.2291842173267 + ], + [ + 74.14214377283085, + 18.2291842173267 + ], + [ + 74.02730108934716, + 18.03453648239825 + ], + [ + 74.14214377283085, + 17.839888747469796 + ], + [ + 74.3718291397982, + 17.839888747469796 + ], + [ + 74.48667182328188, + 18.03453648239825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.48667182328188, + 18.423831952255156 + ], + [ + 74.3718291397982, + 18.61847968718361 + ], + [ + 74.14214377283085, + 18.61847968718361 + ], + [ + 74.02730108934716, + 18.423831952255156 + ], + [ + 74.14214377283085, + 18.229184217326704 + ], + [ + 74.3718291397982, + 18.229184217326704 + ], + [ + 74.48667182328188, + 18.423831952255156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.48667182328188, + 18.81312742211206 + ], + [ + 74.3718291397982, + 19.007775157040513 + ], + [ + 74.14214377283085, + 19.007775157040513 + ], + [ + 74.02730108934716, + 18.81312742211206 + ], + [ + 74.14214377283085, + 18.61847968718361 + ], + [ + 74.3718291397982, + 18.61847968718361 + ], + [ + 74.48667182328188, + 18.81312742211206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.48667182328188, + 19.20242289196897 + ], + [ + 74.3718291397982, + 19.39707062689742 + ], + [ + 74.14214377283085, + 19.39707062689742 + ], + [ + 74.02730108934716, + 19.20242289196897 + ], + [ + 74.14214377283085, + 19.007775157040516 + ], + [ + 74.3718291397982, + 19.007775157040516 + ], + [ + 74.48667182328188, + 19.20242289196897 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.48667182328188, + 19.591718361825876 + ], + [ + 74.3718291397982, + 19.78636609675433 + ], + [ + 74.14214377283085, + 19.78636609675433 + ], + [ + 74.02730108934716, + 19.591718361825876 + ], + [ + 74.14214377283085, + 19.397070626897424 + ], + [ + 74.3718291397982, + 19.397070626897424 + ], + [ + 74.48667182328188, + 19.591718361825876 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.48667182328188, + 19.98101383168278 + ], + [ + 74.3718291397982, + 20.175661566611232 + ], + [ + 74.14214377283085, + 20.175661566611232 + ], + [ + 74.02730108934716, + 19.98101383168278 + ], + [ + 74.14214377283085, + 19.78636609675433 + ], + [ + 74.3718291397982, + 19.78636609675433 + ], + [ + 74.48667182328188, + 19.98101383168278 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.48667182328188, + 20.370309301539685 + ], + [ + 74.3718291397982, + 20.564957036468137 + ], + [ + 74.14214377283085, + 20.564957036468137 + ], + [ + 74.02730108934716, + 20.370309301539685 + ], + [ + 74.14214377283085, + 20.175661566611232 + ], + [ + 74.3718291397982, + 20.175661566611232 + ], + [ + 74.48667182328188, + 20.370309301539685 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.48667182328188, + 20.759604771396592 + ], + [ + 74.3718291397982, + 20.954252506325044 + ], + [ + 74.14214377283085, + 20.954252506325044 + ], + [ + 74.02730108934716, + 20.759604771396592 + ], + [ + 74.14214377283085, + 20.56495703646814 + ], + [ + 74.3718291397982, + 20.56495703646814 + ], + [ + 74.48667182328188, + 20.759604771396592 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.48667182328188, + 21.1489002412535 + ], + [ + 74.3718291397982, + 21.343547976181952 + ], + [ + 74.14214377283085, + 21.343547976181952 + ], + [ + 74.02730108934716, + 21.1489002412535 + ], + [ + 74.14214377283085, + 20.954252506325048 + ], + [ + 74.3718291397982, + 20.954252506325048 + ], + [ + 74.48667182328188, + 21.1489002412535 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.48667182328188, + 21.538195711110404 + ], + [ + 74.3718291397982, + 21.732843446038856 + ], + [ + 74.14214377283085, + 21.732843446038856 + ], + [ + 74.02730108934716, + 21.538195711110404 + ], + [ + 74.14214377283085, + 21.343547976181952 + ], + [ + 74.3718291397982, + 21.343547976181952 + ], + [ + 74.48667182328188, + 21.538195711110404 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.48667182328188, + 21.927491180967312 + ], + [ + 74.3718291397982, + 22.122138915895764 + ], + [ + 74.14214377283085, + 22.122138915895764 + ], + [ + 74.02730108934716, + 21.927491180967312 + ], + [ + 74.14214377283085, + 21.73284344603886 + ], + [ + 74.3718291397982, + 21.73284344603886 + ], + [ + 74.48667182328188, + 21.927491180967312 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.48667182328188, + 22.31678665082422 + ], + [ + 74.3718291397982, + 22.511434385752672 + ], + [ + 74.14214377283085, + 22.511434385752672 + ], + [ + 74.02730108934716, + 22.31678665082422 + ], + [ + 74.14214377283085, + 22.122138915895768 + ], + [ + 74.3718291397982, + 22.122138915895768 + ], + [ + 74.48667182328188, + 22.31678665082422 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.48667182328188, + 22.706082120681124 + ], + [ + 74.3718291397982, + 22.900729855609576 + ], + [ + 74.14214377283085, + 22.900729855609576 + ], + [ + 74.02730108934716, + 22.706082120681124 + ], + [ + 74.14214377283085, + 22.511434385752672 + ], + [ + 74.3718291397982, + 22.511434385752672 + ], + [ + 74.48667182328188, + 22.706082120681124 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.48667182328188, + 23.095377590538032 + ], + [ + 74.3718291397982, + 23.290025325466484 + ], + [ + 74.14214377283085, + 23.290025325466484 + ], + [ + 74.02730108934716, + 23.095377590538032 + ], + [ + 74.14214377283085, + 22.90072985560958 + ], + [ + 74.3718291397982, + 22.90072985560958 + ], + [ + 74.48667182328188, + 23.095377590538032 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.48667182328188, + 23.48467306039494 + ], + [ + 74.3718291397982, + 23.67932079532339 + ], + [ + 74.14214377283085, + 23.67932079532339 + ], + [ + 74.02730108934716, + 23.48467306039494 + ], + [ + 74.14214377283085, + 23.290025325466488 + ], + [ + 74.3718291397982, + 23.290025325466488 + ], + [ + 74.48667182328188, + 23.48467306039494 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.48667182328188, + 23.873968530251844 + ], + [ + 74.3718291397982, + 24.068616265180296 + ], + [ + 74.14214377283085, + 24.068616265180296 + ], + [ + 74.02730108934716, + 23.873968530251844 + ], + [ + 74.14214377283085, + 23.67932079532339 + ], + [ + 74.3718291397982, + 23.67932079532339 + ], + [ + 74.48667182328188, + 23.873968530251844 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.48667182328188, + 24.263264000108748 + ], + [ + 74.3718291397982, + 24.4579117350372 + ], + [ + 74.14214377283085, + 24.4579117350372 + ], + [ + 74.02730108934716, + 24.263264000108748 + ], + [ + 74.14214377283085, + 24.068616265180296 + ], + [ + 74.3718291397982, + 24.068616265180296 + ], + [ + 74.48667182328188, + 24.263264000108748 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.48667182328188, + 24.652559469965656 + ], + [ + 74.3718291397982, + 24.847207204894108 + ], + [ + 74.14214377283085, + 24.847207204894108 + ], + [ + 74.02730108934716, + 24.652559469965656 + ], + [ + 74.14214377283085, + 24.457911735037204 + ], + [ + 74.3718291397982, + 24.457911735037204 + ], + [ + 74.48667182328188, + 24.652559469965656 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.48667182328188, + 25.041854939822564 + ], + [ + 74.3718291397982, + 25.236502674751016 + ], + [ + 74.14214377283085, + 25.236502674751016 + ], + [ + 74.02730108934716, + 25.041854939822564 + ], + [ + 74.14214377283085, + 24.84720720489411 + ], + [ + 74.3718291397982, + 24.84720720489411 + ], + [ + 74.48667182328188, + 25.041854939822564 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.48667182328188, + 25.431150409679468 + ], + [ + 74.3718291397982, + 25.62579814460792 + ], + [ + 74.14214377283085, + 25.62579814460792 + ], + [ + 74.02730108934716, + 25.431150409679468 + ], + [ + 74.14214377283085, + 25.236502674751016 + ], + [ + 74.3718291397982, + 25.236502674751016 + ], + [ + 74.48667182328188, + 25.431150409679468 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.48667182328188, + 25.820445879536376 + ], + [ + 74.3718291397982, + 26.015093614464828 + ], + [ + 74.14214377283085, + 26.015093614464828 + ], + [ + 74.02730108934716, + 25.820445879536376 + ], + [ + 74.14214377283085, + 25.625798144607923 + ], + [ + 74.3718291397982, + 25.625798144607923 + ], + [ + 74.48667182328188, + 25.820445879536376 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.48667182328188, + 26.209741349393283 + ], + [ + 74.3718291397982, + 26.404389084321735 + ], + [ + 74.14214377283085, + 26.404389084321735 + ], + [ + 74.02730108934716, + 26.209741349393283 + ], + [ + 74.14214377283085, + 26.01509361446483 + ], + [ + 74.3718291397982, + 26.01509361446483 + ], + [ + 74.48667182328188, + 26.209741349393283 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.48667182328188, + 26.599036819250188 + ], + [ + 74.3718291397982, + 26.79368455417864 + ], + [ + 74.14214377283085, + 26.79368455417864 + ], + [ + 74.02730108934716, + 26.599036819250188 + ], + [ + 74.14214377283085, + 26.404389084321735 + ], + [ + 74.3718291397982, + 26.404389084321735 + ], + [ + 74.48667182328188, + 26.599036819250188 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.48667182328188, + 26.988332289107095 + ], + [ + 74.3718291397982, + 27.182980024035547 + ], + [ + 74.14214377283085, + 27.182980024035547 + ], + [ + 74.02730108934716, + 26.988332289107095 + ], + [ + 74.14214377283085, + 26.793684554178643 + ], + [ + 74.3718291397982, + 26.793684554178643 + ], + [ + 74.48667182328188, + 26.988332289107095 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.48667182328188, + 27.377627758964003 + ], + [ + 74.3718291397982, + 27.572275493892455 + ], + [ + 74.14214377283085, + 27.572275493892455 + ], + [ + 74.02730108934716, + 27.377627758964003 + ], + [ + 74.14214377283085, + 27.18298002403555 + ], + [ + 74.3718291397982, + 27.18298002403555 + ], + [ + 74.48667182328188, + 27.377627758964003 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.48667182328188, + 27.766923228820907 + ], + [ + 74.3718291397982, + 27.96157096374936 + ], + [ + 74.14214377283085, + 27.96157096374936 + ], + [ + 74.02730108934716, + 27.766923228820907 + ], + [ + 74.14214377283085, + 27.572275493892455 + ], + [ + 74.3718291397982, + 27.572275493892455 + ], + [ + 74.48667182328188, + 27.766923228820907 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.48667182328188, + 28.156218698677815 + ], + [ + 74.3718291397982, + 28.350866433606267 + ], + [ + 74.14214377283085, + 28.350866433606267 + ], + [ + 74.02730108934716, + 28.156218698677815 + ], + [ + 74.14214377283085, + 27.961570963749363 + ], + [ + 74.3718291397982, + 27.961570963749363 + ], + [ + 74.48667182328188, + 28.156218698677815 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.48667182328188, + 28.54551416853472 + ], + [ + 74.3718291397982, + 28.74016190346317 + ], + [ + 74.14214377283085, + 28.74016190346317 + ], + [ + 74.02730108934716, + 28.54551416853472 + ], + [ + 74.14214377283085, + 28.350866433606267 + ], + [ + 74.3718291397982, + 28.350866433606267 + ], + [ + 74.48667182328188, + 28.54551416853472 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.48667182328188, + 28.934809638391627 + ], + [ + 74.3718291397982, + 29.12945737332008 + ], + [ + 74.14214377283085, + 29.12945737332008 + ], + [ + 74.02730108934716, + 28.934809638391627 + ], + [ + 74.14214377283085, + 28.740161903463175 + ], + [ + 74.3718291397982, + 28.740161903463175 + ], + [ + 74.48667182328188, + 28.934809638391627 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.48667182328188, + 29.32410510824853 + ], + [ + 74.3718291397982, + 29.518752843176983 + ], + [ + 74.14214377283085, + 29.518752843176983 + ], + [ + 74.02730108934716, + 29.32410510824853 + ], + [ + 74.14214377283085, + 29.12945737332008 + ], + [ + 74.3718291397982, + 29.12945737332008 + ], + [ + 74.48667182328188, + 29.32410510824853 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.48667182328188, + 29.71340057810544 + ], + [ + 74.3718291397982, + 29.90804831303389 + ], + [ + 74.14214377283085, + 29.90804831303389 + ], + [ + 74.02730108934716, + 29.71340057810544 + ], + [ + 74.14214377283085, + 29.518752843176987 + ], + [ + 74.3718291397982, + 29.518752843176987 + ], + [ + 74.48667182328188, + 29.71340057810544 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.48667182328188, + 30.102696047962343 + ], + [ + 74.3718291397982, + 30.297343782890795 + ], + [ + 74.14214377283085, + 30.297343782890795 + ], + [ + 74.02730108934716, + 30.102696047962343 + ], + [ + 74.14214377283085, + 29.90804831303389 + ], + [ + 74.3718291397982, + 29.90804831303389 + ], + [ + 74.48667182328188, + 30.102696047962343 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.48667182328188, + 30.49199151781925 + ], + [ + 74.3718291397982, + 30.686639252747703 + ], + [ + 74.14214377283085, + 30.686639252747703 + ], + [ + 74.02730108934716, + 30.49199151781925 + ], + [ + 74.14214377283085, + 30.2973437828908 + ], + [ + 74.3718291397982, + 30.2973437828908 + ], + [ + 74.48667182328188, + 30.49199151781925 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.48667182328188, + 30.88128698767616 + ], + [ + 74.3718291397982, + 31.07593472260461 + ], + [ + 74.14214377283085, + 31.07593472260461 + ], + [ + 74.02730108934716, + 30.88128698767616 + ], + [ + 74.14214377283085, + 30.686639252747707 + ], + [ + 74.3718291397982, + 30.686639252747707 + ], + [ + 74.48667182328188, + 30.88128698767616 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.48667182328188, + 31.270582457533063 + ], + [ + 74.3718291397982, + 31.465230192461515 + ], + [ + 74.14214377283085, + 31.465230192461515 + ], + [ + 74.02730108934716, + 31.270582457533063 + ], + [ + 74.14214377283085, + 31.07593472260461 + ], + [ + 74.3718291397982, + 31.07593472260461 + ], + [ + 74.48667182328188, + 31.270582457533063 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.48667182328188, + 31.65987792738997 + ], + [ + 74.3718291397982, + 31.854525662318423 + ], + [ + 74.14214377283085, + 31.854525662318423 + ], + [ + 74.02730108934716, + 31.65987792738997 + ], + [ + 74.14214377283085, + 31.46523019246152 + ], + [ + 74.3718291397982, + 31.46523019246152 + ], + [ + 74.48667182328188, + 31.65987792738997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.48667182328188, + 32.049173397246875 + ], + [ + 74.3718291397982, + 32.24382113217533 + ], + [ + 74.14214377283085, + 32.24382113217533 + ], + [ + 74.02730108934716, + 32.049173397246875 + ], + [ + 74.14214377283085, + 31.854525662318423 + ], + [ + 74.3718291397982, + 31.854525662318423 + ], + [ + 74.48667182328188, + 32.049173397246875 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.48667182328188, + 32.438468867103786 + ], + [ + 74.3718291397982, + 32.63311660203224 + ], + [ + 74.14214377283085, + 32.63311660203224 + ], + [ + 74.02730108934716, + 32.438468867103786 + ], + [ + 74.14214377283085, + 32.243821132175334 + ], + [ + 74.3718291397982, + 32.243821132175334 + ], + [ + 74.48667182328188, + 32.438468867103786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.48667182328188, + 32.82776433696069 + ], + [ + 74.3718291397982, + 33.02241207188914 + ], + [ + 74.14214377283085, + 33.02241207188914 + ], + [ + 74.02730108934716, + 32.82776433696069 + ], + [ + 74.14214377283085, + 32.63311660203224 + ], + [ + 74.3718291397982, + 32.63311660203224 + ], + [ + 74.48667182328188, + 32.82776433696069 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.48667182328188, + 33.217059806817595 + ], + [ + 74.3718291397982, + 33.41170754174605 + ], + [ + 74.14214377283085, + 33.41170754174605 + ], + [ + 74.02730108934716, + 33.217059806817595 + ], + [ + 74.14214377283085, + 33.02241207188914 + ], + [ + 74.3718291397982, + 33.02241207188914 + ], + [ + 74.48667182328188, + 33.217059806817595 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.48667182328188, + 33.6063552766745 + ], + [ + 74.3718291397982, + 33.80100301160295 + ], + [ + 74.14214377283085, + 33.80100301160295 + ], + [ + 74.02730108934716, + 33.6063552766745 + ], + [ + 74.14214377283085, + 33.41170754174605 + ], + [ + 74.3718291397982, + 33.41170754174605 + ], + [ + 74.48667182328188, + 33.6063552766745 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.48667182328188, + 33.9956507465314 + ], + [ + 74.3718291397982, + 34.190298481459855 + ], + [ + 74.14214377283085, + 34.190298481459855 + ], + [ + 74.02730108934716, + 33.9956507465314 + ], + [ + 74.14214377283085, + 33.80100301160295 + ], + [ + 74.3718291397982, + 33.80100301160295 + ], + [ + 74.48667182328188, + 33.9956507465314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.48667182328188, + 34.384946216388315 + ], + [ + 74.3718291397982, + 34.57959395131677 + ], + [ + 74.14214377283085, + 34.57959395131677 + ], + [ + 74.02730108934716, + 34.384946216388315 + ], + [ + 74.14214377283085, + 34.19029848145986 + ], + [ + 74.3718291397982, + 34.19029848145986 + ], + [ + 74.48667182328188, + 34.384946216388315 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.48667182328188, + 34.774241686245226 + ], + [ + 74.3718291397982, + 34.96888942117368 + ], + [ + 74.14214377283085, + 34.96888942117368 + ], + [ + 74.02730108934716, + 34.774241686245226 + ], + [ + 74.14214377283085, + 34.579593951316774 + ], + [ + 74.3718291397982, + 34.579593951316774 + ], + [ + 74.48667182328188, + 34.774241686245226 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.48667182328188, + 35.16353715610213 + ], + [ + 74.3718291397982, + 35.35818489103058 + ], + [ + 74.14214377283085, + 35.35818489103058 + ], + [ + 74.02730108934716, + 35.16353715610213 + ], + [ + 74.14214377283085, + 34.96888942117368 + ], + [ + 74.3718291397982, + 34.96888942117368 + ], + [ + 74.48667182328188, + 35.16353715610213 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.48667182328188, + 35.552832625959034 + ], + [ + 74.3718291397982, + 35.74748036088749 + ], + [ + 74.14214377283085, + 35.74748036088749 + ], + [ + 74.02730108934716, + 35.552832625959034 + ], + [ + 74.14214377283085, + 35.35818489103058 + ], + [ + 74.3718291397982, + 35.35818489103058 + ], + [ + 74.48667182328188, + 35.552832625959034 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.48667182328188, + 35.94212809581594 + ], + [ + 74.3718291397982, + 36.13677583074439 + ], + [ + 74.14214377283085, + 36.13677583074439 + ], + [ + 74.02730108934716, + 35.94212809581594 + ], + [ + 74.14214377283085, + 35.74748036088749 + ], + [ + 74.3718291397982, + 35.74748036088749 + ], + [ + 74.48667182328188, + 35.94212809581594 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.48667182328188, + 36.33142356567284 + ], + [ + 74.3718291397982, + 36.526071300601295 + ], + [ + 74.14214377283085, + 36.526071300601295 + ], + [ + 74.02730108934716, + 36.33142356567284 + ], + [ + 74.14214377283085, + 36.13677583074439 + ], + [ + 74.3718291397982, + 36.13677583074439 + ], + [ + 74.48667182328188, + 36.33142356567284 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.48667182328188, + 36.720719035529754 + ], + [ + 74.3718291397982, + 36.915366770458206 + ], + [ + 74.14214377283085, + 36.915366770458206 + ], + [ + 74.02730108934716, + 36.720719035529754 + ], + [ + 74.14214377283085, + 36.5260713006013 + ], + [ + 74.3718291397982, + 36.5260713006013 + ], + [ + 74.48667182328188, + 36.720719035529754 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.48667182328188, + 37.11001450538666 + ], + [ + 74.3718291397982, + 37.30466224031511 + ], + [ + 74.14214377283085, + 37.30466224031511 + ], + [ + 74.02730108934716, + 37.11001450538666 + ], + [ + 74.14214377283085, + 36.915366770458206 + ], + [ + 74.3718291397982, + 36.915366770458206 + ], + [ + 74.48667182328188, + 37.11001450538666 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.48667182328188, + 37.49930997524357 + ], + [ + 74.3718291397982, + 37.69395771017202 + ], + [ + 74.14214377283085, + 37.69395771017202 + ], + [ + 74.02730108934716, + 37.49930997524357 + ], + [ + 74.14214377283085, + 37.30466224031512 + ], + [ + 74.3718291397982, + 37.30466224031512 + ], + [ + 74.48667182328188, + 37.49930997524357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.48667182328188, + 37.888605445100474 + ], + [ + 74.3718291397982, + 38.083253180028926 + ], + [ + 74.14214377283085, + 38.083253180028926 + ], + [ + 74.02730108934716, + 37.888605445100474 + ], + [ + 74.14214377283085, + 37.69395771017202 + ], + [ + 74.3718291397982, + 37.69395771017202 + ], + [ + 74.48667182328188, + 37.888605445100474 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.48667182328188, + 38.27790091495738 + ], + [ + 74.3718291397982, + 38.47254864988583 + ], + [ + 74.14214377283085, + 38.47254864988583 + ], + [ + 74.02730108934716, + 38.27790091495738 + ], + [ + 74.14214377283085, + 38.083253180028926 + ], + [ + 74.3718291397982, + 38.083253180028926 + ], + [ + 74.48667182328188, + 38.27790091495738 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.48667182328188, + 38.66719638481428 + ], + [ + 74.3718291397982, + 38.861844119742734 + ], + [ + 74.14214377283085, + 38.861844119742734 + ], + [ + 74.02730108934716, + 38.66719638481428 + ], + [ + 74.14214377283085, + 38.47254864988583 + ], + [ + 74.3718291397982, + 38.47254864988583 + ], + [ + 74.48667182328188, + 38.66719638481428 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.48667182328188, + 39.05649185467119 + ], + [ + 74.3718291397982, + 39.25113958959964 + ], + [ + 74.14214377283085, + 39.25113958959964 + ], + [ + 74.02730108934716, + 39.05649185467119 + ], + [ + 74.14214377283085, + 38.861844119742734 + ], + [ + 74.3718291397982, + 38.861844119742734 + ], + [ + 74.48667182328188, + 39.05649185467119 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.48667182328188, + 39.4457873245281 + ], + [ + 74.3718291397982, + 39.64043505945655 + ], + [ + 74.14214377283085, + 39.64043505945655 + ], + [ + 74.02730108934716, + 39.4457873245281 + ], + [ + 74.14214377283085, + 39.251139589599646 + ], + [ + 74.3718291397982, + 39.251139589599646 + ], + [ + 74.48667182328188, + 39.4457873245281 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.48667182328188, + 39.835082794385 + ], + [ + 74.3718291397982, + 40.029730529313454 + ], + [ + 74.14214377283085, + 40.029730529313454 + ], + [ + 74.02730108934716, + 39.835082794385 + ], + [ + 74.14214377283085, + 39.64043505945655 + ], + [ + 74.3718291397982, + 39.64043505945655 + ], + [ + 74.48667182328188, + 39.835082794385 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.48667182328188, + 40.22437826424191 + ], + [ + 74.3718291397982, + 40.419025999170366 + ], + [ + 74.14214377283085, + 40.419025999170366 + ], + [ + 74.02730108934716, + 40.22437826424191 + ], + [ + 74.14214377283085, + 40.02973052931346 + ], + [ + 74.3718291397982, + 40.02973052931346 + ], + [ + 74.48667182328188, + 40.22437826424191 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.48667182328188, + 40.61367373409882 + ], + [ + 74.3718291397982, + 40.80832146902727 + ], + [ + 74.14214377283085, + 40.80832146902727 + ], + [ + 74.02730108934716, + 40.61367373409882 + ], + [ + 74.14214377283085, + 40.419025999170366 + ], + [ + 74.3718291397982, + 40.419025999170366 + ], + [ + 74.48667182328188, + 40.61367373409882 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.48667182328188, + 41.00296920395572 + ], + [ + 74.3718291397982, + 41.197616938884174 + ], + [ + 74.14214377283085, + 41.197616938884174 + ], + [ + 74.02730108934716, + 41.00296920395572 + ], + [ + 74.14214377283085, + 40.80832146902727 + ], + [ + 74.3718291397982, + 40.80832146902727 + ], + [ + 74.48667182328188, + 41.00296920395572 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.48667182328188, + 41.392264673812626 + ], + [ + 74.3718291397982, + 41.58691240874108 + ], + [ + 74.14214377283085, + 41.58691240874108 + ], + [ + 74.02730108934716, + 41.392264673812626 + ], + [ + 74.14214377283085, + 41.197616938884174 + ], + [ + 74.3718291397982, + 41.197616938884174 + ], + [ + 74.48667182328188, + 41.392264673812626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.48667182328188, + 41.78156014366953 + ], + [ + 74.3718291397982, + 41.97620787859798 + ], + [ + 74.14214377283085, + 41.97620787859798 + ], + [ + 74.02730108934716, + 41.78156014366953 + ], + [ + 74.14214377283085, + 41.58691240874108 + ], + [ + 74.3718291397982, + 41.58691240874108 + ], + [ + 74.48667182328188, + 41.78156014366953 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.48667182328188, + 42.17085561352644 + ], + [ + 74.3718291397982, + 42.365503348454894 + ], + [ + 74.14214377283085, + 42.365503348454894 + ], + [ + 74.02730108934716, + 42.17085561352644 + ], + [ + 74.14214377283085, + 41.97620787859799 + ], + [ + 74.3718291397982, + 41.97620787859799 + ], + [ + 74.48667182328188, + 42.17085561352644 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.48667182328188, + 42.56015108338335 + ], + [ + 74.3718291397982, + 42.754798818311805 + ], + [ + 74.14214377283085, + 42.754798818311805 + ], + [ + 74.02730108934716, + 42.56015108338335 + ], + [ + 74.14214377283085, + 42.3655033484549 + ], + [ + 74.3718291397982, + 42.3655033484549 + ], + [ + 74.48667182328188, + 42.56015108338335 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.48667182328188, + 42.94944655324026 + ], + [ + 74.3718291397982, + 43.14409428816871 + ], + [ + 74.14214377283085, + 43.14409428816871 + ], + [ + 74.02730108934716, + 42.94944655324026 + ], + [ + 74.14214377283085, + 42.754798818311805 + ], + [ + 74.3718291397982, + 42.754798818311805 + ], + [ + 74.48667182328188, + 42.94944655324026 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.48667182328188, + 43.33874202309716 + ], + [ + 74.3718291397982, + 43.53338975802561 + ], + [ + 74.14214377283085, + 43.53338975802561 + ], + [ + 74.02730108934716, + 43.33874202309716 + ], + [ + 74.14214377283085, + 43.14409428816871 + ], + [ + 74.3718291397982, + 43.14409428816871 + ], + [ + 74.48667182328188, + 43.33874202309716 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.48667182328188, + 43.728037492954066 + ], + [ + 74.3718291397982, + 43.92268522788252 + ], + [ + 74.14214377283085, + 43.92268522788252 + ], + [ + 74.02730108934716, + 43.728037492954066 + ], + [ + 74.14214377283085, + 43.53338975802561 + ], + [ + 74.3718291397982, + 43.53338975802561 + ], + [ + 74.48667182328188, + 43.728037492954066 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.48667182328188, + 44.11733296281097 + ], + [ + 74.3718291397982, + 44.31198069773942 + ], + [ + 74.14214377283085, + 44.31198069773942 + ], + [ + 74.02730108934716, + 44.11733296281097 + ], + [ + 74.14214377283085, + 43.92268522788252 + ], + [ + 74.3718291397982, + 43.92268522788252 + ], + [ + 74.48667182328188, + 44.11733296281097 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.48667182328188, + 44.506628432667874 + ], + [ + 74.3718291397982, + 44.701276167596326 + ], + [ + 74.14214377283085, + 44.701276167596326 + ], + [ + 74.02730108934716, + 44.506628432667874 + ], + [ + 74.14214377283085, + 44.31198069773942 + ], + [ + 74.3718291397982, + 44.31198069773942 + ], + [ + 74.48667182328188, + 44.506628432667874 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.48667182328188, + 44.89592390252479 + ], + [ + 74.3718291397982, + 45.090571637453245 + ], + [ + 74.14214377283085, + 45.090571637453245 + ], + [ + 74.02730108934716, + 44.89592390252479 + ], + [ + 74.14214377283085, + 44.70127616759634 + ], + [ + 74.3718291397982, + 44.70127616759634 + ], + [ + 74.48667182328188, + 44.89592390252479 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.48667182328188, + 45.2852193723817 + ], + [ + 74.3718291397982, + 45.47986710731015 + ], + [ + 74.14214377283085, + 45.47986710731015 + ], + [ + 74.02730108934716, + 45.2852193723817 + ], + [ + 74.14214377283085, + 45.090571637453245 + ], + [ + 74.3718291397982, + 45.090571637453245 + ], + [ + 74.48667182328188, + 45.2852193723817 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.48667182328188, + 45.6745148422386 + ], + [ + 74.3718291397982, + 45.86916257716705 + ], + [ + 74.14214377283085, + 45.86916257716705 + ], + [ + 74.02730108934716, + 45.6745148422386 + ], + [ + 74.14214377283085, + 45.47986710731015 + ], + [ + 74.3718291397982, + 45.47986710731015 + ], + [ + 74.48667182328188, + 45.6745148422386 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.48667182328188, + 46.063810312095505 + ], + [ + 74.3718291397982, + 46.25845804702396 + ], + [ + 74.14214377283085, + 46.25845804702396 + ], + [ + 74.02730108934716, + 46.063810312095505 + ], + [ + 74.14214377283085, + 45.86916257716705 + ], + [ + 74.3718291397982, + 45.86916257716705 + ], + [ + 74.48667182328188, + 46.063810312095505 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.48667182328188, + 46.45310578195241 + ], + [ + 74.3718291397982, + 46.64775351688086 + ], + [ + 74.14214377283085, + 46.64775351688086 + ], + [ + 74.02730108934716, + 46.45310578195241 + ], + [ + 74.14214377283085, + 46.25845804702396 + ], + [ + 74.3718291397982, + 46.25845804702396 + ], + [ + 74.48667182328188, + 46.45310578195241 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.48667182328188, + 46.842401251809314 + ], + [ + 74.3718291397982, + 47.037048986737766 + ], + [ + 74.14214377283085, + 47.037048986737766 + ], + [ + 74.02730108934716, + 46.842401251809314 + ], + [ + 74.14214377283085, + 46.64775351688086 + ], + [ + 74.3718291397982, + 46.64775351688086 + ], + [ + 74.48667182328188, + 46.842401251809314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.48667182328188, + 47.23169672166622 + ], + [ + 74.3718291397982, + 47.42634445659467 + ], + [ + 74.14214377283085, + 47.42634445659467 + ], + [ + 74.02730108934716, + 47.23169672166622 + ], + [ + 74.14214377283085, + 47.037048986737766 + ], + [ + 74.3718291397982, + 47.037048986737766 + ], + [ + 74.48667182328188, + 47.23169672166622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.48667182328188, + 47.620992191523136 + ], + [ + 74.3718291397982, + 47.81563992645159 + ], + [ + 74.14214377283085, + 47.81563992645159 + ], + [ + 74.02730108934716, + 47.620992191523136 + ], + [ + 74.14214377283085, + 47.426344456594684 + ], + [ + 74.3718291397982, + 47.426344456594684 + ], + [ + 74.48667182328188, + 47.620992191523136 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.83119987373293, + 12.0004566996162 + ], + [ + 74.71635719024924, + 12.195104434544653 + ], + [ + 74.4866718232819, + 12.195104434544653 + ], + [ + 74.37182913979821, + 12.0004566996162 + ], + [ + 74.4866718232819, + 11.805808964687746 + ], + [ + 74.71635719024924, + 11.805808964687746 + ], + [ + 74.83119987373293, + 12.0004566996162 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.83119987373293, + 12.389752169473105 + ], + [ + 74.71635719024924, + 12.58439990440156 + ], + [ + 74.4866718232819, + 12.58439990440156 + ], + [ + 74.37182913979821, + 12.389752169473105 + ], + [ + 74.4866718232819, + 12.195104434544652 + ], + [ + 74.71635719024924, + 12.195104434544652 + ], + [ + 74.83119987373293, + 12.389752169473105 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.83119987373293, + 12.779047639330013 + ], + [ + 74.71635719024924, + 12.973695374258467 + ], + [ + 74.4866718232819, + 12.973695374258467 + ], + [ + 74.37182913979821, + 12.779047639330013 + ], + [ + 74.4866718232819, + 12.58439990440156 + ], + [ + 74.71635719024924, + 12.58439990440156 + ], + [ + 74.83119987373293, + 12.779047639330013 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.83119987373293, + 13.16834310918692 + ], + [ + 74.71635719024924, + 13.362990844115373 + ], + [ + 74.4866718232819, + 13.362990844115373 + ], + [ + 74.37182913979821, + 13.16834310918692 + ], + [ + 74.4866718232819, + 12.973695374258465 + ], + [ + 74.71635719024924, + 12.973695374258465 + ], + [ + 74.83119987373293, + 13.16834310918692 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.83119987373293, + 13.557638579043825 + ], + [ + 74.71635719024924, + 13.752286313972279 + ], + [ + 74.4866718232819, + 13.752286313972279 + ], + [ + 74.37182913979821, + 13.557638579043825 + ], + [ + 74.4866718232819, + 13.362990844115371 + ], + [ + 74.71635719024924, + 13.362990844115371 + ], + [ + 74.83119987373293, + 13.557638579043825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.83119987373293, + 13.946934048900731 + ], + [ + 74.71635719024924, + 14.141581783829185 + ], + [ + 74.4866718232819, + 14.141581783829185 + ], + [ + 74.37182913979821, + 13.946934048900731 + ], + [ + 74.4866718232819, + 13.752286313972277 + ], + [ + 74.71635719024924, + 13.752286313972277 + ], + [ + 74.83119987373293, + 13.946934048900731 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.83119987373293, + 14.336229518757637 + ], + [ + 74.71635719024924, + 14.530877253686091 + ], + [ + 74.4866718232819, + 14.530877253686091 + ], + [ + 74.37182913979821, + 14.336229518757637 + ], + [ + 74.4866718232819, + 14.141581783829183 + ], + [ + 74.71635719024924, + 14.141581783829183 + ], + [ + 74.83119987373293, + 14.336229518757637 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.83119987373293, + 14.725524988614545 + ], + [ + 74.71635719024924, + 14.920172723542999 + ], + [ + 74.4866718232819, + 14.920172723542999 + ], + [ + 74.37182913979821, + 14.725524988614545 + ], + [ + 74.4866718232819, + 14.530877253686091 + ], + [ + 74.71635719024924, + 14.530877253686091 + ], + [ + 74.83119987373293, + 14.725524988614545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.83119987373293, + 15.114820458471451 + ], + [ + 74.71635719024924, + 15.309468193399905 + ], + [ + 74.4866718232819, + 15.309468193399905 + ], + [ + 74.37182913979821, + 15.114820458471451 + ], + [ + 74.4866718232819, + 14.920172723542997 + ], + [ + 74.71635719024924, + 14.920172723542997 + ], + [ + 74.83119987373293, + 15.114820458471451 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.83119987373293, + 15.504115928328357 + ], + [ + 74.71635719024924, + 15.69876366325681 + ], + [ + 74.4866718232819, + 15.69876366325681 + ], + [ + 74.37182913979821, + 15.504115928328357 + ], + [ + 74.4866718232819, + 15.309468193399903 + ], + [ + 74.71635719024924, + 15.309468193399903 + ], + [ + 74.83119987373293, + 15.504115928328357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.83119987373293, + 15.893411398185265 + ], + [ + 74.71635719024924, + 16.088059133113717 + ], + [ + 74.4866718232819, + 16.088059133113717 + ], + [ + 74.37182913979821, + 15.893411398185265 + ], + [ + 74.4866718232819, + 15.69876366325681 + ], + [ + 74.71635719024924, + 15.69876366325681 + ], + [ + 74.83119987373293, + 15.893411398185265 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.83119987373293, + 16.28270686804217 + ], + [ + 74.71635719024924, + 16.47735460297062 + ], + [ + 74.4866718232819, + 16.47735460297062 + ], + [ + 74.37182913979821, + 16.28270686804217 + ], + [ + 74.4866718232819, + 16.088059133113717 + ], + [ + 74.71635719024924, + 16.088059133113717 + ], + [ + 74.83119987373293, + 16.28270686804217 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.83119987373293, + 16.672002337899077 + ], + [ + 74.71635719024924, + 16.86665007282753 + ], + [ + 74.4866718232819, + 16.86665007282753 + ], + [ + 74.37182913979821, + 16.672002337899077 + ], + [ + 74.4866718232819, + 16.477354602970625 + ], + [ + 74.71635719024924, + 16.477354602970625 + ], + [ + 74.83119987373293, + 16.672002337899077 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.83119987373293, + 17.06129780775598 + ], + [ + 74.71635719024924, + 17.255945542684433 + ], + [ + 74.4866718232819, + 17.255945542684433 + ], + [ + 74.37182913979821, + 17.06129780775598 + ], + [ + 74.4866718232819, + 16.86665007282753 + ], + [ + 74.71635719024924, + 16.86665007282753 + ], + [ + 74.83119987373293, + 17.06129780775598 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.83119987373293, + 17.45059327761289 + ], + [ + 74.71635719024924, + 17.64524101254134 + ], + [ + 74.4866718232819, + 17.64524101254134 + ], + [ + 74.37182913979821, + 17.45059327761289 + ], + [ + 74.4866718232819, + 17.255945542684437 + ], + [ + 74.71635719024924, + 17.255945542684437 + ], + [ + 74.83119987373293, + 17.45059327761289 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.83119987373293, + 17.839888747469793 + ], + [ + 74.71635719024924, + 18.034536482398245 + ], + [ + 74.4866718232819, + 18.034536482398245 + ], + [ + 74.37182913979821, + 17.839888747469793 + ], + [ + 74.4866718232819, + 17.64524101254134 + ], + [ + 74.71635719024924, + 17.64524101254134 + ], + [ + 74.83119987373293, + 17.839888747469793 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.83119987373293, + 18.2291842173267 + ], + [ + 74.71635719024924, + 18.423831952255153 + ], + [ + 74.4866718232819, + 18.423831952255153 + ], + [ + 74.37182913979821, + 18.2291842173267 + ], + [ + 74.4866718232819, + 18.03453648239825 + ], + [ + 74.71635719024924, + 18.03453648239825 + ], + [ + 74.83119987373293, + 18.2291842173267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.83119987373293, + 18.61847968718361 + ], + [ + 74.71635719024924, + 18.81312742211206 + ], + [ + 74.4866718232819, + 18.81312742211206 + ], + [ + 74.37182913979821, + 18.61847968718361 + ], + [ + 74.4866718232819, + 18.423831952255156 + ], + [ + 74.71635719024924, + 18.423831952255156 + ], + [ + 74.83119987373293, + 18.61847968718361 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.83119987373293, + 19.007775157040513 + ], + [ + 74.71635719024924, + 19.202422891968965 + ], + [ + 74.4866718232819, + 19.202422891968965 + ], + [ + 74.37182913979821, + 19.007775157040513 + ], + [ + 74.4866718232819, + 18.81312742211206 + ], + [ + 74.71635719024924, + 18.81312742211206 + ], + [ + 74.83119987373293, + 19.007775157040513 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.83119987373293, + 19.39707062689742 + ], + [ + 74.71635719024924, + 19.591718361825873 + ], + [ + 74.4866718232819, + 19.591718361825873 + ], + [ + 74.37182913979821, + 19.39707062689742 + ], + [ + 74.4866718232819, + 19.20242289196897 + ], + [ + 74.71635719024924, + 19.20242289196897 + ], + [ + 74.83119987373293, + 19.39707062689742 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.83119987373293, + 19.78636609675433 + ], + [ + 74.71635719024924, + 19.98101383168278 + ], + [ + 74.4866718232819, + 19.98101383168278 + ], + [ + 74.37182913979821, + 19.78636609675433 + ], + [ + 74.4866718232819, + 19.591718361825876 + ], + [ + 74.71635719024924, + 19.591718361825876 + ], + [ + 74.83119987373293, + 19.78636609675433 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.83119987373293, + 20.175661566611232 + ], + [ + 74.71635719024924, + 20.370309301539685 + ], + [ + 74.4866718232819, + 20.370309301539685 + ], + [ + 74.37182913979821, + 20.175661566611232 + ], + [ + 74.4866718232819, + 19.98101383168278 + ], + [ + 74.71635719024924, + 19.98101383168278 + ], + [ + 74.83119987373293, + 20.175661566611232 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.83119987373293, + 20.564957036468137 + ], + [ + 74.71635719024924, + 20.75960477139659 + ], + [ + 74.4866718232819, + 20.75960477139659 + ], + [ + 74.37182913979821, + 20.564957036468137 + ], + [ + 74.4866718232819, + 20.370309301539685 + ], + [ + 74.71635719024924, + 20.370309301539685 + ], + [ + 74.83119987373293, + 20.564957036468137 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.83119987373293, + 20.954252506325044 + ], + [ + 74.71635719024924, + 21.148900241253497 + ], + [ + 74.4866718232819, + 21.148900241253497 + ], + [ + 74.37182913979821, + 20.954252506325044 + ], + [ + 74.4866718232819, + 20.759604771396592 + ], + [ + 74.71635719024924, + 20.759604771396592 + ], + [ + 74.83119987373293, + 20.954252506325044 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.83119987373293, + 21.343547976181952 + ], + [ + 74.71635719024924, + 21.538195711110404 + ], + [ + 74.4866718232819, + 21.538195711110404 + ], + [ + 74.37182913979821, + 21.343547976181952 + ], + [ + 74.4866718232819, + 21.1489002412535 + ], + [ + 74.71635719024924, + 21.1489002412535 + ], + [ + 74.83119987373293, + 21.343547976181952 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.83119987373293, + 21.732843446038856 + ], + [ + 74.71635719024924, + 21.92749118096731 + ], + [ + 74.4866718232819, + 21.92749118096731 + ], + [ + 74.37182913979821, + 21.732843446038856 + ], + [ + 74.4866718232819, + 21.538195711110404 + ], + [ + 74.71635719024924, + 21.538195711110404 + ], + [ + 74.83119987373293, + 21.732843446038856 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.83119987373293, + 22.122138915895764 + ], + [ + 74.71635719024924, + 22.316786650824216 + ], + [ + 74.4866718232819, + 22.316786650824216 + ], + [ + 74.37182913979821, + 22.122138915895764 + ], + [ + 74.4866718232819, + 21.927491180967312 + ], + [ + 74.71635719024924, + 21.927491180967312 + ], + [ + 74.83119987373293, + 22.122138915895764 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.83119987373293, + 22.511434385752672 + ], + [ + 74.71635719024924, + 22.706082120681124 + ], + [ + 74.4866718232819, + 22.706082120681124 + ], + [ + 74.37182913979821, + 22.511434385752672 + ], + [ + 74.4866718232819, + 22.31678665082422 + ], + [ + 74.71635719024924, + 22.31678665082422 + ], + [ + 74.83119987373293, + 22.511434385752672 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.83119987373293, + 22.900729855609576 + ], + [ + 74.71635719024924, + 23.09537759053803 + ], + [ + 74.4866718232819, + 23.09537759053803 + ], + [ + 74.37182913979821, + 22.900729855609576 + ], + [ + 74.4866718232819, + 22.706082120681124 + ], + [ + 74.71635719024924, + 22.706082120681124 + ], + [ + 74.83119987373293, + 22.900729855609576 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.83119987373293, + 23.290025325466484 + ], + [ + 74.71635719024924, + 23.484673060394936 + ], + [ + 74.4866718232819, + 23.484673060394936 + ], + [ + 74.37182913979821, + 23.290025325466484 + ], + [ + 74.4866718232819, + 23.095377590538032 + ], + [ + 74.71635719024924, + 23.095377590538032 + ], + [ + 74.83119987373293, + 23.290025325466484 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.83119987373293, + 23.67932079532339 + ], + [ + 74.71635719024924, + 23.873968530251844 + ], + [ + 74.4866718232819, + 23.873968530251844 + ], + [ + 74.37182913979821, + 23.67932079532339 + ], + [ + 74.4866718232819, + 23.48467306039494 + ], + [ + 74.71635719024924, + 23.48467306039494 + ], + [ + 74.83119987373293, + 23.67932079532339 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.83119987373293, + 24.068616265180296 + ], + [ + 74.71635719024924, + 24.263264000108748 + ], + [ + 74.4866718232819, + 24.263264000108748 + ], + [ + 74.37182913979821, + 24.068616265180296 + ], + [ + 74.4866718232819, + 23.873968530251844 + ], + [ + 74.71635719024924, + 23.873968530251844 + ], + [ + 74.83119987373293, + 24.068616265180296 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.83119987373293, + 24.4579117350372 + ], + [ + 74.71635719024924, + 24.652559469965652 + ], + [ + 74.4866718232819, + 24.652559469965652 + ], + [ + 74.37182913979821, + 24.4579117350372 + ], + [ + 74.4866718232819, + 24.263264000108748 + ], + [ + 74.71635719024924, + 24.263264000108748 + ], + [ + 74.83119987373293, + 24.4579117350372 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.83119987373293, + 24.847207204894108 + ], + [ + 74.71635719024924, + 25.04185493982256 + ], + [ + 74.4866718232819, + 25.04185493982256 + ], + [ + 74.37182913979821, + 24.847207204894108 + ], + [ + 74.4866718232819, + 24.652559469965656 + ], + [ + 74.71635719024924, + 24.652559469965656 + ], + [ + 74.83119987373293, + 24.847207204894108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.83119987373293, + 25.236502674751016 + ], + [ + 74.71635719024924, + 25.431150409679468 + ], + [ + 74.4866718232819, + 25.431150409679468 + ], + [ + 74.37182913979821, + 25.236502674751016 + ], + [ + 74.4866718232819, + 25.041854939822564 + ], + [ + 74.71635719024924, + 25.041854939822564 + ], + [ + 74.83119987373293, + 25.236502674751016 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.83119987373293, + 25.62579814460792 + ], + [ + 74.71635719024924, + 25.820445879536372 + ], + [ + 74.4866718232819, + 25.820445879536372 + ], + [ + 74.37182913979821, + 25.62579814460792 + ], + [ + 74.4866718232819, + 25.431150409679468 + ], + [ + 74.71635719024924, + 25.431150409679468 + ], + [ + 74.83119987373293, + 25.62579814460792 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.83119987373293, + 26.015093614464828 + ], + [ + 74.71635719024924, + 26.20974134939328 + ], + [ + 74.4866718232819, + 26.20974134939328 + ], + [ + 74.37182913979821, + 26.015093614464828 + ], + [ + 74.4866718232819, + 25.820445879536376 + ], + [ + 74.71635719024924, + 25.820445879536376 + ], + [ + 74.83119987373293, + 26.015093614464828 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.83119987373293, + 26.404389084321735 + ], + [ + 74.71635719024924, + 26.599036819250188 + ], + [ + 74.4866718232819, + 26.599036819250188 + ], + [ + 74.37182913979821, + 26.404389084321735 + ], + [ + 74.4866718232819, + 26.209741349393283 + ], + [ + 74.71635719024924, + 26.209741349393283 + ], + [ + 74.83119987373293, + 26.404389084321735 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.83119987373293, + 26.79368455417864 + ], + [ + 74.71635719024924, + 26.988332289107092 + ], + [ + 74.4866718232819, + 26.988332289107092 + ], + [ + 74.37182913979821, + 26.79368455417864 + ], + [ + 74.4866718232819, + 26.599036819250188 + ], + [ + 74.71635719024924, + 26.599036819250188 + ], + [ + 74.83119987373293, + 26.79368455417864 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.83119987373293, + 27.182980024035547 + ], + [ + 74.71635719024924, + 27.377627758964 + ], + [ + 74.4866718232819, + 27.377627758964 + ], + [ + 74.37182913979821, + 27.182980024035547 + ], + [ + 74.4866718232819, + 26.988332289107095 + ], + [ + 74.71635719024924, + 26.988332289107095 + ], + [ + 74.83119987373293, + 27.182980024035547 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.83119987373293, + 27.572275493892455 + ], + [ + 74.71635719024924, + 27.766923228820907 + ], + [ + 74.4866718232819, + 27.766923228820907 + ], + [ + 74.37182913979821, + 27.572275493892455 + ], + [ + 74.4866718232819, + 27.377627758964003 + ], + [ + 74.71635719024924, + 27.377627758964003 + ], + [ + 74.83119987373293, + 27.572275493892455 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.83119987373293, + 27.96157096374936 + ], + [ + 74.71635719024924, + 28.15621869867781 + ], + [ + 74.4866718232819, + 28.15621869867781 + ], + [ + 74.37182913979821, + 27.96157096374936 + ], + [ + 74.4866718232819, + 27.766923228820907 + ], + [ + 74.71635719024924, + 27.766923228820907 + ], + [ + 74.83119987373293, + 27.96157096374936 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.83119987373293, + 28.350866433606267 + ], + [ + 74.71635719024924, + 28.54551416853472 + ], + [ + 74.4866718232819, + 28.54551416853472 + ], + [ + 74.37182913979821, + 28.350866433606267 + ], + [ + 74.4866718232819, + 28.156218698677815 + ], + [ + 74.71635719024924, + 28.156218698677815 + ], + [ + 74.83119987373293, + 28.350866433606267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.83119987373293, + 28.74016190346317 + ], + [ + 74.71635719024924, + 28.934809638391624 + ], + [ + 74.4866718232819, + 28.934809638391624 + ], + [ + 74.37182913979821, + 28.74016190346317 + ], + [ + 74.4866718232819, + 28.54551416853472 + ], + [ + 74.71635719024924, + 28.54551416853472 + ], + [ + 74.83119987373293, + 28.74016190346317 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.83119987373293, + 29.12945737332008 + ], + [ + 74.71635719024924, + 29.32410510824853 + ], + [ + 74.4866718232819, + 29.32410510824853 + ], + [ + 74.37182913979821, + 29.12945737332008 + ], + [ + 74.4866718232819, + 28.934809638391627 + ], + [ + 74.71635719024924, + 28.934809638391627 + ], + [ + 74.83119987373293, + 29.12945737332008 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.83119987373293, + 29.518752843176983 + ], + [ + 74.71635719024924, + 29.713400578105436 + ], + [ + 74.4866718232819, + 29.713400578105436 + ], + [ + 74.37182913979821, + 29.518752843176983 + ], + [ + 74.4866718232819, + 29.32410510824853 + ], + [ + 74.71635719024924, + 29.32410510824853 + ], + [ + 74.83119987373293, + 29.518752843176983 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.83119987373293, + 29.90804831303389 + ], + [ + 74.71635719024924, + 30.102696047962343 + ], + [ + 74.4866718232819, + 30.102696047962343 + ], + [ + 74.37182913979821, + 29.90804831303389 + ], + [ + 74.4866718232819, + 29.71340057810544 + ], + [ + 74.71635719024924, + 29.71340057810544 + ], + [ + 74.83119987373293, + 29.90804831303389 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.83119987373293, + 30.297343782890795 + ], + [ + 74.71635719024924, + 30.491991517819248 + ], + [ + 74.4866718232819, + 30.491991517819248 + ], + [ + 74.37182913979821, + 30.297343782890795 + ], + [ + 74.4866718232819, + 30.102696047962343 + ], + [ + 74.71635719024924, + 30.102696047962343 + ], + [ + 74.83119987373293, + 30.297343782890795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.83119987373293, + 30.686639252747703 + ], + [ + 74.71635719024924, + 30.881286987676155 + ], + [ + 74.4866718232819, + 30.881286987676155 + ], + [ + 74.37182913979821, + 30.686639252747703 + ], + [ + 74.4866718232819, + 30.49199151781925 + ], + [ + 74.71635719024924, + 30.49199151781925 + ], + [ + 74.83119987373293, + 30.686639252747703 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.83119987373293, + 31.07593472260461 + ], + [ + 74.71635719024924, + 31.270582457533063 + ], + [ + 74.4866718232819, + 31.270582457533063 + ], + [ + 74.37182913979821, + 31.07593472260461 + ], + [ + 74.4866718232819, + 30.88128698767616 + ], + [ + 74.71635719024924, + 30.88128698767616 + ], + [ + 74.83119987373293, + 31.07593472260461 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.83119987373293, + 31.465230192461515 + ], + [ + 74.71635719024924, + 31.659877927389967 + ], + [ + 74.4866718232819, + 31.659877927389967 + ], + [ + 74.37182913979821, + 31.465230192461515 + ], + [ + 74.4866718232819, + 31.270582457533063 + ], + [ + 74.71635719024924, + 31.270582457533063 + ], + [ + 74.83119987373293, + 31.465230192461515 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.83119987373293, + 31.854525662318423 + ], + [ + 74.71635719024924, + 32.049173397246875 + ], + [ + 74.4866718232819, + 32.049173397246875 + ], + [ + 74.37182913979821, + 31.854525662318423 + ], + [ + 74.4866718232819, + 31.65987792738997 + ], + [ + 74.71635719024924, + 31.65987792738997 + ], + [ + 74.83119987373293, + 31.854525662318423 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.83119987373293, + 32.24382113217533 + ], + [ + 74.71635719024924, + 32.43846886710378 + ], + [ + 74.4866718232819, + 32.43846886710378 + ], + [ + 74.37182913979821, + 32.24382113217533 + ], + [ + 74.4866718232819, + 32.049173397246875 + ], + [ + 74.71635719024924, + 32.049173397246875 + ], + [ + 74.83119987373293, + 32.24382113217533 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.83119987373293, + 32.63311660203224 + ], + [ + 74.71635719024924, + 32.82776433696069 + ], + [ + 74.4866718232819, + 32.82776433696069 + ], + [ + 74.37182913979821, + 32.63311660203224 + ], + [ + 74.4866718232819, + 32.438468867103786 + ], + [ + 74.71635719024924, + 32.438468867103786 + ], + [ + 74.83119987373293, + 32.63311660203224 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.83119987373293, + 33.02241207188914 + ], + [ + 74.71635719024924, + 33.217059806817595 + ], + [ + 74.4866718232819, + 33.217059806817595 + ], + [ + 74.37182913979821, + 33.02241207188914 + ], + [ + 74.4866718232819, + 32.82776433696069 + ], + [ + 74.71635719024924, + 32.82776433696069 + ], + [ + 74.83119987373293, + 33.02241207188914 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.83119987373293, + 33.41170754174605 + ], + [ + 74.71635719024924, + 33.6063552766745 + ], + [ + 74.4866718232819, + 33.6063552766745 + ], + [ + 74.37182913979821, + 33.41170754174605 + ], + [ + 74.4866718232819, + 33.217059806817595 + ], + [ + 74.71635719024924, + 33.217059806817595 + ], + [ + 74.83119987373293, + 33.41170754174605 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.83119987373293, + 33.80100301160295 + ], + [ + 74.71635719024924, + 33.9956507465314 + ], + [ + 74.4866718232819, + 33.9956507465314 + ], + [ + 74.37182913979821, + 33.80100301160295 + ], + [ + 74.4866718232819, + 33.6063552766745 + ], + [ + 74.71635719024924, + 33.6063552766745 + ], + [ + 74.83119987373293, + 33.80100301160295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.83119987373293, + 34.190298481459855 + ], + [ + 74.71635719024924, + 34.38494621638831 + ], + [ + 74.4866718232819, + 34.38494621638831 + ], + [ + 74.37182913979821, + 34.190298481459855 + ], + [ + 74.4866718232819, + 33.9956507465314 + ], + [ + 74.71635719024924, + 33.9956507465314 + ], + [ + 74.83119987373293, + 34.190298481459855 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.83119987373293, + 34.57959395131677 + ], + [ + 74.71635719024924, + 34.77424168624522 + ], + [ + 74.4866718232819, + 34.77424168624522 + ], + [ + 74.37182913979821, + 34.57959395131677 + ], + [ + 74.4866718232819, + 34.384946216388315 + ], + [ + 74.71635719024924, + 34.384946216388315 + ], + [ + 74.83119987373293, + 34.57959395131677 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.83119987373293, + 34.96888942117368 + ], + [ + 74.71635719024924, + 35.16353715610213 + ], + [ + 74.4866718232819, + 35.16353715610213 + ], + [ + 74.37182913979821, + 34.96888942117368 + ], + [ + 74.4866718232819, + 34.774241686245226 + ], + [ + 74.71635719024924, + 34.774241686245226 + ], + [ + 74.83119987373293, + 34.96888942117368 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.83119987373293, + 35.35818489103058 + ], + [ + 74.71635719024924, + 35.552832625959034 + ], + [ + 74.4866718232819, + 35.552832625959034 + ], + [ + 74.37182913979821, + 35.35818489103058 + ], + [ + 74.4866718232819, + 35.16353715610213 + ], + [ + 74.71635719024924, + 35.16353715610213 + ], + [ + 74.83119987373293, + 35.35818489103058 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.83119987373293, + 35.74748036088749 + ], + [ + 74.71635719024924, + 35.94212809581594 + ], + [ + 74.4866718232819, + 35.94212809581594 + ], + [ + 74.37182913979821, + 35.74748036088749 + ], + [ + 74.4866718232819, + 35.552832625959034 + ], + [ + 74.71635719024924, + 35.552832625959034 + ], + [ + 74.83119987373293, + 35.74748036088749 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.83119987373293, + 36.13677583074439 + ], + [ + 74.71635719024924, + 36.33142356567284 + ], + [ + 74.4866718232819, + 36.33142356567284 + ], + [ + 74.37182913979821, + 36.13677583074439 + ], + [ + 74.4866718232819, + 35.94212809581594 + ], + [ + 74.71635719024924, + 35.94212809581594 + ], + [ + 74.83119987373293, + 36.13677583074439 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.83119987373293, + 36.526071300601295 + ], + [ + 74.71635719024924, + 36.72071903552975 + ], + [ + 74.4866718232819, + 36.72071903552975 + ], + [ + 74.37182913979821, + 36.526071300601295 + ], + [ + 74.4866718232819, + 36.33142356567284 + ], + [ + 74.71635719024924, + 36.33142356567284 + ], + [ + 74.83119987373293, + 36.526071300601295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.83119987373293, + 36.915366770458206 + ], + [ + 74.71635719024924, + 37.11001450538666 + ], + [ + 74.4866718232819, + 37.11001450538666 + ], + [ + 74.37182913979821, + 36.915366770458206 + ], + [ + 74.4866718232819, + 36.720719035529754 + ], + [ + 74.71635719024924, + 36.720719035529754 + ], + [ + 74.83119987373293, + 36.915366770458206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.83119987373293, + 37.30466224031511 + ], + [ + 74.71635719024924, + 37.49930997524356 + ], + [ + 74.4866718232819, + 37.49930997524356 + ], + [ + 74.37182913979821, + 37.30466224031511 + ], + [ + 74.4866718232819, + 37.11001450538666 + ], + [ + 74.71635719024924, + 37.11001450538666 + ], + [ + 74.83119987373293, + 37.30466224031511 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.83119987373293, + 37.69395771017202 + ], + [ + 74.71635719024924, + 37.888605445100474 + ], + [ + 74.4866718232819, + 37.888605445100474 + ], + [ + 74.37182913979821, + 37.69395771017202 + ], + [ + 74.4866718232819, + 37.49930997524357 + ], + [ + 74.71635719024924, + 37.49930997524357 + ], + [ + 74.83119987373293, + 37.69395771017202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.83119987373293, + 38.083253180028926 + ], + [ + 74.71635719024924, + 38.27790091495738 + ], + [ + 74.4866718232819, + 38.27790091495738 + ], + [ + 74.37182913979821, + 38.083253180028926 + ], + [ + 74.4866718232819, + 37.888605445100474 + ], + [ + 74.71635719024924, + 37.888605445100474 + ], + [ + 74.83119987373293, + 38.083253180028926 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.83119987373293, + 38.47254864988583 + ], + [ + 74.71635719024924, + 38.66719638481428 + ], + [ + 74.4866718232819, + 38.66719638481428 + ], + [ + 74.37182913979821, + 38.47254864988583 + ], + [ + 74.4866718232819, + 38.27790091495738 + ], + [ + 74.71635719024924, + 38.27790091495738 + ], + [ + 74.83119987373293, + 38.47254864988583 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.83119987373293, + 38.861844119742734 + ], + [ + 74.71635719024924, + 39.05649185467119 + ], + [ + 74.4866718232819, + 39.05649185467119 + ], + [ + 74.37182913979821, + 38.861844119742734 + ], + [ + 74.4866718232819, + 38.66719638481428 + ], + [ + 74.71635719024924, + 38.66719638481428 + ], + [ + 74.83119987373293, + 38.861844119742734 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.83119987373293, + 39.25113958959964 + ], + [ + 74.71635719024924, + 39.44578732452809 + ], + [ + 74.4866718232819, + 39.44578732452809 + ], + [ + 74.37182913979821, + 39.25113958959964 + ], + [ + 74.4866718232819, + 39.05649185467119 + ], + [ + 74.71635719024924, + 39.05649185467119 + ], + [ + 74.83119987373293, + 39.25113958959964 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.83119987373293, + 39.64043505945655 + ], + [ + 74.71635719024924, + 39.835082794385 + ], + [ + 74.4866718232819, + 39.835082794385 + ], + [ + 74.37182913979821, + 39.64043505945655 + ], + [ + 74.4866718232819, + 39.4457873245281 + ], + [ + 74.71635719024924, + 39.4457873245281 + ], + [ + 74.83119987373293, + 39.64043505945655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.83119987373293, + 40.029730529313454 + ], + [ + 74.71635719024924, + 40.224378264241906 + ], + [ + 74.4866718232819, + 40.224378264241906 + ], + [ + 74.37182913979821, + 40.029730529313454 + ], + [ + 74.4866718232819, + 39.835082794385 + ], + [ + 74.71635719024924, + 39.835082794385 + ], + [ + 74.83119987373293, + 40.029730529313454 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.83119987373293, + 40.419025999170366 + ], + [ + 74.71635719024924, + 40.61367373409882 + ], + [ + 74.4866718232819, + 40.61367373409882 + ], + [ + 74.37182913979821, + 40.419025999170366 + ], + [ + 74.4866718232819, + 40.22437826424191 + ], + [ + 74.71635719024924, + 40.22437826424191 + ], + [ + 74.83119987373293, + 40.419025999170366 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.83119987373293, + 40.80832146902727 + ], + [ + 74.71635719024924, + 41.00296920395572 + ], + [ + 74.4866718232819, + 41.00296920395572 + ], + [ + 74.37182913979821, + 40.80832146902727 + ], + [ + 74.4866718232819, + 40.61367373409882 + ], + [ + 74.71635719024924, + 40.61367373409882 + ], + [ + 74.83119987373293, + 40.80832146902727 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.83119987373293, + 41.197616938884174 + ], + [ + 74.71635719024924, + 41.392264673812626 + ], + [ + 74.4866718232819, + 41.392264673812626 + ], + [ + 74.37182913979821, + 41.197616938884174 + ], + [ + 74.4866718232819, + 41.00296920395572 + ], + [ + 74.71635719024924, + 41.00296920395572 + ], + [ + 74.83119987373293, + 41.197616938884174 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.83119987373293, + 41.58691240874108 + ], + [ + 74.71635719024924, + 41.78156014366953 + ], + [ + 74.4866718232819, + 41.78156014366953 + ], + [ + 74.37182913979821, + 41.58691240874108 + ], + [ + 74.4866718232819, + 41.392264673812626 + ], + [ + 74.71635719024924, + 41.392264673812626 + ], + [ + 74.83119987373293, + 41.58691240874108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.83119987373293, + 41.97620787859798 + ], + [ + 74.71635719024924, + 42.170855613526435 + ], + [ + 74.4866718232819, + 42.170855613526435 + ], + [ + 74.37182913979821, + 41.97620787859798 + ], + [ + 74.4866718232819, + 41.78156014366953 + ], + [ + 74.71635719024924, + 41.78156014366953 + ], + [ + 74.83119987373293, + 41.97620787859798 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.83119987373293, + 42.365503348454894 + ], + [ + 74.71635719024924, + 42.560151083383346 + ], + [ + 74.4866718232819, + 42.560151083383346 + ], + [ + 74.37182913979821, + 42.365503348454894 + ], + [ + 74.4866718232819, + 42.17085561352644 + ], + [ + 74.71635719024924, + 42.17085561352644 + ], + [ + 74.83119987373293, + 42.365503348454894 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.83119987373293, + 42.754798818311805 + ], + [ + 74.71635719024924, + 42.94944655324026 + ], + [ + 74.4866718232819, + 42.94944655324026 + ], + [ + 74.37182913979821, + 42.754798818311805 + ], + [ + 74.4866718232819, + 42.56015108338335 + ], + [ + 74.71635719024924, + 42.56015108338335 + ], + [ + 74.83119987373293, + 42.754798818311805 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.83119987373293, + 43.14409428816871 + ], + [ + 74.71635719024924, + 43.33874202309716 + ], + [ + 74.4866718232819, + 43.33874202309716 + ], + [ + 74.37182913979821, + 43.14409428816871 + ], + [ + 74.4866718232819, + 42.94944655324026 + ], + [ + 74.71635719024924, + 42.94944655324026 + ], + [ + 74.83119987373293, + 43.14409428816871 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.83119987373293, + 43.53338975802561 + ], + [ + 74.71635719024924, + 43.728037492954066 + ], + [ + 74.4866718232819, + 43.728037492954066 + ], + [ + 74.37182913979821, + 43.53338975802561 + ], + [ + 74.4866718232819, + 43.33874202309716 + ], + [ + 74.71635719024924, + 43.33874202309716 + ], + [ + 74.83119987373293, + 43.53338975802561 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.83119987373293, + 43.92268522788252 + ], + [ + 74.71635719024924, + 44.11733296281097 + ], + [ + 74.4866718232819, + 44.11733296281097 + ], + [ + 74.37182913979821, + 43.92268522788252 + ], + [ + 74.4866718232819, + 43.728037492954066 + ], + [ + 74.71635719024924, + 43.728037492954066 + ], + [ + 74.83119987373293, + 43.92268522788252 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.83119987373293, + 44.31198069773942 + ], + [ + 74.71635719024924, + 44.506628432667874 + ], + [ + 74.4866718232819, + 44.506628432667874 + ], + [ + 74.37182913979821, + 44.31198069773942 + ], + [ + 74.4866718232819, + 44.11733296281097 + ], + [ + 74.71635719024924, + 44.11733296281097 + ], + [ + 74.83119987373293, + 44.31198069773942 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.83119987373293, + 44.701276167596326 + ], + [ + 74.71635719024924, + 44.89592390252478 + ], + [ + 74.4866718232819, + 44.89592390252478 + ], + [ + 74.37182913979821, + 44.701276167596326 + ], + [ + 74.4866718232819, + 44.506628432667874 + ], + [ + 74.71635719024924, + 44.506628432667874 + ], + [ + 74.83119987373293, + 44.701276167596326 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.83119987373293, + 45.090571637453245 + ], + [ + 74.71635719024924, + 45.2852193723817 + ], + [ + 74.4866718232819, + 45.2852193723817 + ], + [ + 74.37182913979821, + 45.090571637453245 + ], + [ + 74.4866718232819, + 44.89592390252479 + ], + [ + 74.71635719024924, + 44.89592390252479 + ], + [ + 74.83119987373293, + 45.090571637453245 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.83119987373293, + 45.47986710731015 + ], + [ + 74.71635719024924, + 45.6745148422386 + ], + [ + 74.4866718232819, + 45.6745148422386 + ], + [ + 74.37182913979821, + 45.47986710731015 + ], + [ + 74.4866718232819, + 45.2852193723817 + ], + [ + 74.71635719024924, + 45.2852193723817 + ], + [ + 74.83119987373293, + 45.47986710731015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.83119987373293, + 45.86916257716705 + ], + [ + 74.71635719024924, + 46.063810312095505 + ], + [ + 74.4866718232819, + 46.063810312095505 + ], + [ + 74.37182913979821, + 45.86916257716705 + ], + [ + 74.4866718232819, + 45.6745148422386 + ], + [ + 74.71635719024924, + 45.6745148422386 + ], + [ + 74.83119987373293, + 45.86916257716705 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.83119987373293, + 46.25845804702396 + ], + [ + 74.71635719024924, + 46.45310578195241 + ], + [ + 74.4866718232819, + 46.45310578195241 + ], + [ + 74.37182913979821, + 46.25845804702396 + ], + [ + 74.4866718232819, + 46.063810312095505 + ], + [ + 74.71635719024924, + 46.063810312095505 + ], + [ + 74.83119987373293, + 46.25845804702396 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.83119987373293, + 46.64775351688086 + ], + [ + 74.71635719024924, + 46.842401251809314 + ], + [ + 74.4866718232819, + 46.842401251809314 + ], + [ + 74.37182913979821, + 46.64775351688086 + ], + [ + 74.4866718232819, + 46.45310578195241 + ], + [ + 74.71635719024924, + 46.45310578195241 + ], + [ + 74.83119987373293, + 46.64775351688086 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.83119987373293, + 47.037048986737766 + ], + [ + 74.71635719024924, + 47.23169672166622 + ], + [ + 74.4866718232819, + 47.23169672166622 + ], + [ + 74.37182913979821, + 47.037048986737766 + ], + [ + 74.4866718232819, + 46.842401251809314 + ], + [ + 74.71635719024924, + 46.842401251809314 + ], + [ + 74.83119987373293, + 47.037048986737766 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.83119987373293, + 47.42634445659467 + ], + [ + 74.71635719024924, + 47.62099219152312 + ], + [ + 74.4866718232819, + 47.62099219152312 + ], + [ + 74.37182913979821, + 47.42634445659467 + ], + [ + 74.4866718232819, + 47.23169672166622 + ], + [ + 74.71635719024924, + 47.23169672166622 + ], + [ + 74.83119987373293, + 47.42634445659467 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.83119987373293, + 47.81563992645159 + ], + [ + 74.71635719024924, + 48.01028766138004 + ], + [ + 74.4866718232819, + 48.01028766138004 + ], + [ + 74.37182913979821, + 47.81563992645159 + ], + [ + 74.4866718232819, + 47.620992191523136 + ], + [ + 74.71635719024924, + 47.620992191523136 + ], + [ + 74.83119987373293, + 47.81563992645159 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.17572792418396, + 11.805808964687746 + ], + [ + 75.06088524070027, + 12.0004566996162 + ], + [ + 74.83119987373293, + 12.0004566996162 + ], + [ + 74.71635719024924, + 11.805808964687746 + ], + [ + 74.83119987373293, + 11.611161229759292 + ], + [ + 75.06088524070027, + 11.611161229759292 + ], + [ + 75.17572792418396, + 11.805808964687746 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.17572792418396, + 12.195104434544652 + ], + [ + 75.06088524070027, + 12.389752169473105 + ], + [ + 74.83119987373293, + 12.389752169473105 + ], + [ + 74.71635719024924, + 12.195104434544652 + ], + [ + 74.83119987373293, + 12.000456699616198 + ], + [ + 75.06088524070027, + 12.000456699616198 + ], + [ + 75.17572792418396, + 12.195104434544652 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.17572792418396, + 12.58439990440156 + ], + [ + 75.06088524070027, + 12.779047639330013 + ], + [ + 74.83119987373293, + 12.779047639330013 + ], + [ + 74.71635719024924, + 12.58439990440156 + ], + [ + 74.83119987373293, + 12.389752169473105 + ], + [ + 75.06088524070027, + 12.389752169473105 + ], + [ + 75.17572792418396, + 12.58439990440156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.17572792418396, + 12.973695374258465 + ], + [ + 75.06088524070027, + 13.16834310918692 + ], + [ + 74.83119987373293, + 13.16834310918692 + ], + [ + 74.71635719024924, + 12.973695374258465 + ], + [ + 74.83119987373293, + 12.779047639330011 + ], + [ + 75.06088524070027, + 12.779047639330011 + ], + [ + 75.17572792418396, + 12.973695374258465 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.17572792418396, + 13.362990844115371 + ], + [ + 75.06088524070027, + 13.557638579043825 + ], + [ + 74.83119987373293, + 13.557638579043825 + ], + [ + 74.71635719024924, + 13.362990844115371 + ], + [ + 74.83119987373293, + 13.168343109186917 + ], + [ + 75.06088524070027, + 13.168343109186917 + ], + [ + 75.17572792418396, + 13.362990844115371 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.17572792418396, + 13.752286313972277 + ], + [ + 75.06088524070027, + 13.946934048900731 + ], + [ + 74.83119987373293, + 13.946934048900731 + ], + [ + 74.71635719024924, + 13.752286313972277 + ], + [ + 74.83119987373293, + 13.557638579043823 + ], + [ + 75.06088524070027, + 13.557638579043823 + ], + [ + 75.17572792418396, + 13.752286313972277 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.17572792418396, + 14.141581783829183 + ], + [ + 75.06088524070027, + 14.336229518757637 + ], + [ + 74.83119987373293, + 14.336229518757637 + ], + [ + 74.71635719024924, + 14.141581783829183 + ], + [ + 74.83119987373293, + 13.94693404890073 + ], + [ + 75.06088524070027, + 13.94693404890073 + ], + [ + 75.17572792418396, + 14.141581783829183 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.17572792418396, + 14.530877253686091 + ], + [ + 75.06088524070027, + 14.725524988614545 + ], + [ + 74.83119987373293, + 14.725524988614545 + ], + [ + 74.71635719024924, + 14.530877253686091 + ], + [ + 74.83119987373293, + 14.336229518757637 + ], + [ + 75.06088524070027, + 14.336229518757637 + ], + [ + 75.17572792418396, + 14.530877253686091 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.17572792418396, + 14.920172723542997 + ], + [ + 75.06088524070027, + 15.114820458471451 + ], + [ + 74.83119987373293, + 15.114820458471451 + ], + [ + 74.71635719024924, + 14.920172723542997 + ], + [ + 74.83119987373293, + 14.725524988614543 + ], + [ + 75.06088524070027, + 14.725524988614543 + ], + [ + 75.17572792418396, + 14.920172723542997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.17572792418396, + 15.309468193399903 + ], + [ + 75.06088524070027, + 15.504115928328357 + ], + [ + 74.83119987373293, + 15.504115928328357 + ], + [ + 74.71635719024924, + 15.309468193399903 + ], + [ + 74.83119987373293, + 15.11482045847145 + ], + [ + 75.06088524070027, + 15.11482045847145 + ], + [ + 75.17572792418396, + 15.309468193399903 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.17572792418396, + 15.69876366325681 + ], + [ + 75.06088524070027, + 15.893411398185265 + ], + [ + 74.83119987373293, + 15.893411398185265 + ], + [ + 74.71635719024924, + 15.69876366325681 + ], + [ + 74.83119987373293, + 15.504115928328357 + ], + [ + 75.06088524070027, + 15.504115928328357 + ], + [ + 75.17572792418396, + 15.69876366325681 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.17572792418396, + 16.088059133113717 + ], + [ + 75.06088524070027, + 16.28270686804217 + ], + [ + 74.83119987373293, + 16.28270686804217 + ], + [ + 74.71635719024924, + 16.088059133113717 + ], + [ + 74.83119987373293, + 15.893411398185263 + ], + [ + 75.06088524070027, + 15.893411398185263 + ], + [ + 75.17572792418396, + 16.088059133113717 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.17572792418396, + 16.477354602970625 + ], + [ + 75.06088524070027, + 16.672002337899077 + ], + [ + 74.83119987373293, + 16.672002337899077 + ], + [ + 74.71635719024924, + 16.477354602970625 + ], + [ + 74.83119987373293, + 16.282706868042172 + ], + [ + 75.06088524070027, + 16.282706868042172 + ], + [ + 75.17572792418396, + 16.477354602970625 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.17572792418396, + 16.86665007282753 + ], + [ + 75.06088524070027, + 17.06129780775598 + ], + [ + 74.83119987373293, + 17.06129780775598 + ], + [ + 74.71635719024924, + 16.86665007282753 + ], + [ + 74.83119987373293, + 16.672002337899077 + ], + [ + 75.06088524070027, + 16.672002337899077 + ], + [ + 75.17572792418396, + 16.86665007282753 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.17572792418396, + 17.255945542684437 + ], + [ + 75.06088524070027, + 17.45059327761289 + ], + [ + 74.83119987373293, + 17.45059327761289 + ], + [ + 74.71635719024924, + 17.255945542684437 + ], + [ + 74.83119987373293, + 17.061297807755984 + ], + [ + 75.06088524070027, + 17.061297807755984 + ], + [ + 75.17572792418396, + 17.255945542684437 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.17572792418396, + 17.64524101254134 + ], + [ + 75.06088524070027, + 17.839888747469793 + ], + [ + 74.83119987373293, + 17.839888747469793 + ], + [ + 74.71635719024924, + 17.64524101254134 + ], + [ + 74.83119987373293, + 17.45059327761289 + ], + [ + 75.06088524070027, + 17.45059327761289 + ], + [ + 75.17572792418396, + 17.64524101254134 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.17572792418396, + 18.03453648239825 + ], + [ + 75.06088524070027, + 18.2291842173267 + ], + [ + 74.83119987373293, + 18.2291842173267 + ], + [ + 74.71635719024924, + 18.03453648239825 + ], + [ + 74.83119987373293, + 17.839888747469796 + ], + [ + 75.06088524070027, + 17.839888747469796 + ], + [ + 75.17572792418396, + 18.03453648239825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.17572792418396, + 18.423831952255156 + ], + [ + 75.06088524070027, + 18.61847968718361 + ], + [ + 74.83119987373293, + 18.61847968718361 + ], + [ + 74.71635719024924, + 18.423831952255156 + ], + [ + 74.83119987373293, + 18.229184217326704 + ], + [ + 75.06088524070027, + 18.229184217326704 + ], + [ + 75.17572792418396, + 18.423831952255156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.17572792418396, + 18.81312742211206 + ], + [ + 75.06088524070027, + 19.007775157040513 + ], + [ + 74.83119987373293, + 19.007775157040513 + ], + [ + 74.71635719024924, + 18.81312742211206 + ], + [ + 74.83119987373293, + 18.61847968718361 + ], + [ + 75.06088524070027, + 18.61847968718361 + ], + [ + 75.17572792418396, + 18.81312742211206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.17572792418396, + 19.20242289196897 + ], + [ + 75.06088524070027, + 19.39707062689742 + ], + [ + 74.83119987373293, + 19.39707062689742 + ], + [ + 74.71635719024924, + 19.20242289196897 + ], + [ + 74.83119987373293, + 19.007775157040516 + ], + [ + 75.06088524070027, + 19.007775157040516 + ], + [ + 75.17572792418396, + 19.20242289196897 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.17572792418396, + 19.591718361825876 + ], + [ + 75.06088524070027, + 19.78636609675433 + ], + [ + 74.83119987373293, + 19.78636609675433 + ], + [ + 74.71635719024924, + 19.591718361825876 + ], + [ + 74.83119987373293, + 19.397070626897424 + ], + [ + 75.06088524070027, + 19.397070626897424 + ], + [ + 75.17572792418396, + 19.591718361825876 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.17572792418396, + 19.98101383168278 + ], + [ + 75.06088524070027, + 20.175661566611232 + ], + [ + 74.83119987373293, + 20.175661566611232 + ], + [ + 74.71635719024924, + 19.98101383168278 + ], + [ + 74.83119987373293, + 19.78636609675433 + ], + [ + 75.06088524070027, + 19.78636609675433 + ], + [ + 75.17572792418396, + 19.98101383168278 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.17572792418396, + 20.370309301539685 + ], + [ + 75.06088524070027, + 20.564957036468137 + ], + [ + 74.83119987373293, + 20.564957036468137 + ], + [ + 74.71635719024924, + 20.370309301539685 + ], + [ + 74.83119987373293, + 20.175661566611232 + ], + [ + 75.06088524070027, + 20.175661566611232 + ], + [ + 75.17572792418396, + 20.370309301539685 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.17572792418396, + 20.759604771396592 + ], + [ + 75.06088524070027, + 20.954252506325044 + ], + [ + 74.83119987373293, + 20.954252506325044 + ], + [ + 74.71635719024924, + 20.759604771396592 + ], + [ + 74.83119987373293, + 20.56495703646814 + ], + [ + 75.06088524070027, + 20.56495703646814 + ], + [ + 75.17572792418396, + 20.759604771396592 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.17572792418396, + 21.1489002412535 + ], + [ + 75.06088524070027, + 21.343547976181952 + ], + [ + 74.83119987373293, + 21.343547976181952 + ], + [ + 74.71635719024924, + 21.1489002412535 + ], + [ + 74.83119987373293, + 20.954252506325048 + ], + [ + 75.06088524070027, + 20.954252506325048 + ], + [ + 75.17572792418396, + 21.1489002412535 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.17572792418396, + 21.538195711110404 + ], + [ + 75.06088524070027, + 21.732843446038856 + ], + [ + 74.83119987373293, + 21.732843446038856 + ], + [ + 74.71635719024924, + 21.538195711110404 + ], + [ + 74.83119987373293, + 21.343547976181952 + ], + [ + 75.06088524070027, + 21.343547976181952 + ], + [ + 75.17572792418396, + 21.538195711110404 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.17572792418396, + 21.927491180967312 + ], + [ + 75.06088524070027, + 22.122138915895764 + ], + [ + 74.83119987373293, + 22.122138915895764 + ], + [ + 74.71635719024924, + 21.927491180967312 + ], + [ + 74.83119987373293, + 21.73284344603886 + ], + [ + 75.06088524070027, + 21.73284344603886 + ], + [ + 75.17572792418396, + 21.927491180967312 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.17572792418396, + 22.31678665082422 + ], + [ + 75.06088524070027, + 22.511434385752672 + ], + [ + 74.83119987373293, + 22.511434385752672 + ], + [ + 74.71635719024924, + 22.31678665082422 + ], + [ + 74.83119987373293, + 22.122138915895768 + ], + [ + 75.06088524070027, + 22.122138915895768 + ], + [ + 75.17572792418396, + 22.31678665082422 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.17572792418396, + 22.706082120681124 + ], + [ + 75.06088524070027, + 22.900729855609576 + ], + [ + 74.83119987373293, + 22.900729855609576 + ], + [ + 74.71635719024924, + 22.706082120681124 + ], + [ + 74.83119987373293, + 22.511434385752672 + ], + [ + 75.06088524070027, + 22.511434385752672 + ], + [ + 75.17572792418396, + 22.706082120681124 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.17572792418396, + 23.095377590538032 + ], + [ + 75.06088524070027, + 23.290025325466484 + ], + [ + 74.83119987373293, + 23.290025325466484 + ], + [ + 74.71635719024924, + 23.095377590538032 + ], + [ + 74.83119987373293, + 22.90072985560958 + ], + [ + 75.06088524070027, + 22.90072985560958 + ], + [ + 75.17572792418396, + 23.095377590538032 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.17572792418396, + 23.48467306039494 + ], + [ + 75.06088524070027, + 23.67932079532339 + ], + [ + 74.83119987373293, + 23.67932079532339 + ], + [ + 74.71635719024924, + 23.48467306039494 + ], + [ + 74.83119987373293, + 23.290025325466488 + ], + [ + 75.06088524070027, + 23.290025325466488 + ], + [ + 75.17572792418396, + 23.48467306039494 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.17572792418396, + 23.873968530251844 + ], + [ + 75.06088524070027, + 24.068616265180296 + ], + [ + 74.83119987373293, + 24.068616265180296 + ], + [ + 74.71635719024924, + 23.873968530251844 + ], + [ + 74.83119987373293, + 23.67932079532339 + ], + [ + 75.06088524070027, + 23.67932079532339 + ], + [ + 75.17572792418396, + 23.873968530251844 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.17572792418396, + 24.263264000108748 + ], + [ + 75.06088524070027, + 24.4579117350372 + ], + [ + 74.83119987373293, + 24.4579117350372 + ], + [ + 74.71635719024924, + 24.263264000108748 + ], + [ + 74.83119987373293, + 24.068616265180296 + ], + [ + 75.06088524070027, + 24.068616265180296 + ], + [ + 75.17572792418396, + 24.263264000108748 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.17572792418396, + 24.652559469965656 + ], + [ + 75.06088524070027, + 24.847207204894108 + ], + [ + 74.83119987373293, + 24.847207204894108 + ], + [ + 74.71635719024924, + 24.652559469965656 + ], + [ + 74.83119987373293, + 24.457911735037204 + ], + [ + 75.06088524070027, + 24.457911735037204 + ], + [ + 75.17572792418396, + 24.652559469965656 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.17572792418396, + 25.041854939822564 + ], + [ + 75.06088524070027, + 25.236502674751016 + ], + [ + 74.83119987373293, + 25.236502674751016 + ], + [ + 74.71635719024924, + 25.041854939822564 + ], + [ + 74.83119987373293, + 24.84720720489411 + ], + [ + 75.06088524070027, + 24.84720720489411 + ], + [ + 75.17572792418396, + 25.041854939822564 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.17572792418396, + 25.431150409679468 + ], + [ + 75.06088524070027, + 25.62579814460792 + ], + [ + 74.83119987373293, + 25.62579814460792 + ], + [ + 74.71635719024924, + 25.431150409679468 + ], + [ + 74.83119987373293, + 25.236502674751016 + ], + [ + 75.06088524070027, + 25.236502674751016 + ], + [ + 75.17572792418396, + 25.431150409679468 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.17572792418396, + 25.820445879536376 + ], + [ + 75.06088524070027, + 26.015093614464828 + ], + [ + 74.83119987373293, + 26.015093614464828 + ], + [ + 74.71635719024924, + 25.820445879536376 + ], + [ + 74.83119987373293, + 25.625798144607923 + ], + [ + 75.06088524070027, + 25.625798144607923 + ], + [ + 75.17572792418396, + 25.820445879536376 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.17572792418396, + 26.209741349393283 + ], + [ + 75.06088524070027, + 26.404389084321735 + ], + [ + 74.83119987373293, + 26.404389084321735 + ], + [ + 74.71635719024924, + 26.209741349393283 + ], + [ + 74.83119987373293, + 26.01509361446483 + ], + [ + 75.06088524070027, + 26.01509361446483 + ], + [ + 75.17572792418396, + 26.209741349393283 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.17572792418396, + 26.599036819250188 + ], + [ + 75.06088524070027, + 26.79368455417864 + ], + [ + 74.83119987373293, + 26.79368455417864 + ], + [ + 74.71635719024924, + 26.599036819250188 + ], + [ + 74.83119987373293, + 26.404389084321735 + ], + [ + 75.06088524070027, + 26.404389084321735 + ], + [ + 75.17572792418396, + 26.599036819250188 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.17572792418396, + 26.988332289107095 + ], + [ + 75.06088524070027, + 27.182980024035547 + ], + [ + 74.83119987373293, + 27.182980024035547 + ], + [ + 74.71635719024924, + 26.988332289107095 + ], + [ + 74.83119987373293, + 26.793684554178643 + ], + [ + 75.06088524070027, + 26.793684554178643 + ], + [ + 75.17572792418396, + 26.988332289107095 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.17572792418396, + 27.377627758964003 + ], + [ + 75.06088524070027, + 27.572275493892455 + ], + [ + 74.83119987373293, + 27.572275493892455 + ], + [ + 74.71635719024924, + 27.377627758964003 + ], + [ + 74.83119987373293, + 27.18298002403555 + ], + [ + 75.06088524070027, + 27.18298002403555 + ], + [ + 75.17572792418396, + 27.377627758964003 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.17572792418396, + 27.766923228820907 + ], + [ + 75.06088524070027, + 27.96157096374936 + ], + [ + 74.83119987373293, + 27.96157096374936 + ], + [ + 74.71635719024924, + 27.766923228820907 + ], + [ + 74.83119987373293, + 27.572275493892455 + ], + [ + 75.06088524070027, + 27.572275493892455 + ], + [ + 75.17572792418396, + 27.766923228820907 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.17572792418396, + 28.156218698677815 + ], + [ + 75.06088524070027, + 28.350866433606267 + ], + [ + 74.83119987373293, + 28.350866433606267 + ], + [ + 74.71635719024924, + 28.156218698677815 + ], + [ + 74.83119987373293, + 27.961570963749363 + ], + [ + 75.06088524070027, + 27.961570963749363 + ], + [ + 75.17572792418396, + 28.156218698677815 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.17572792418396, + 28.54551416853472 + ], + [ + 75.06088524070027, + 28.74016190346317 + ], + [ + 74.83119987373293, + 28.74016190346317 + ], + [ + 74.71635719024924, + 28.54551416853472 + ], + [ + 74.83119987373293, + 28.350866433606267 + ], + [ + 75.06088524070027, + 28.350866433606267 + ], + [ + 75.17572792418396, + 28.54551416853472 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.17572792418396, + 28.934809638391627 + ], + [ + 75.06088524070027, + 29.12945737332008 + ], + [ + 74.83119987373293, + 29.12945737332008 + ], + [ + 74.71635719024924, + 28.934809638391627 + ], + [ + 74.83119987373293, + 28.740161903463175 + ], + [ + 75.06088524070027, + 28.740161903463175 + ], + [ + 75.17572792418396, + 28.934809638391627 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.17572792418396, + 29.32410510824853 + ], + [ + 75.06088524070027, + 29.518752843176983 + ], + [ + 74.83119987373293, + 29.518752843176983 + ], + [ + 74.71635719024924, + 29.32410510824853 + ], + [ + 74.83119987373293, + 29.12945737332008 + ], + [ + 75.06088524070027, + 29.12945737332008 + ], + [ + 75.17572792418396, + 29.32410510824853 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.17572792418396, + 29.71340057810544 + ], + [ + 75.06088524070027, + 29.90804831303389 + ], + [ + 74.83119987373293, + 29.90804831303389 + ], + [ + 74.71635719024924, + 29.71340057810544 + ], + [ + 74.83119987373293, + 29.518752843176987 + ], + [ + 75.06088524070027, + 29.518752843176987 + ], + [ + 75.17572792418396, + 29.71340057810544 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.17572792418396, + 30.102696047962343 + ], + [ + 75.06088524070027, + 30.297343782890795 + ], + [ + 74.83119987373293, + 30.297343782890795 + ], + [ + 74.71635719024924, + 30.102696047962343 + ], + [ + 74.83119987373293, + 29.90804831303389 + ], + [ + 75.06088524070027, + 29.90804831303389 + ], + [ + 75.17572792418396, + 30.102696047962343 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.17572792418396, + 30.49199151781925 + ], + [ + 75.06088524070027, + 30.686639252747703 + ], + [ + 74.83119987373293, + 30.686639252747703 + ], + [ + 74.71635719024924, + 30.49199151781925 + ], + [ + 74.83119987373293, + 30.2973437828908 + ], + [ + 75.06088524070027, + 30.2973437828908 + ], + [ + 75.17572792418396, + 30.49199151781925 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.17572792418396, + 30.88128698767616 + ], + [ + 75.06088524070027, + 31.07593472260461 + ], + [ + 74.83119987373293, + 31.07593472260461 + ], + [ + 74.71635719024924, + 30.88128698767616 + ], + [ + 74.83119987373293, + 30.686639252747707 + ], + [ + 75.06088524070027, + 30.686639252747707 + ], + [ + 75.17572792418396, + 30.88128698767616 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.17572792418396, + 31.270582457533063 + ], + [ + 75.06088524070027, + 31.465230192461515 + ], + [ + 74.83119987373293, + 31.465230192461515 + ], + [ + 74.71635719024924, + 31.270582457533063 + ], + [ + 74.83119987373293, + 31.07593472260461 + ], + [ + 75.06088524070027, + 31.07593472260461 + ], + [ + 75.17572792418396, + 31.270582457533063 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.17572792418396, + 31.65987792738997 + ], + [ + 75.06088524070027, + 31.854525662318423 + ], + [ + 74.83119987373293, + 31.854525662318423 + ], + [ + 74.71635719024924, + 31.65987792738997 + ], + [ + 74.83119987373293, + 31.46523019246152 + ], + [ + 75.06088524070027, + 31.46523019246152 + ], + [ + 75.17572792418396, + 31.65987792738997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.17572792418396, + 32.049173397246875 + ], + [ + 75.06088524070027, + 32.24382113217533 + ], + [ + 74.83119987373293, + 32.24382113217533 + ], + [ + 74.71635719024924, + 32.049173397246875 + ], + [ + 74.83119987373293, + 31.854525662318423 + ], + [ + 75.06088524070027, + 31.854525662318423 + ], + [ + 75.17572792418396, + 32.049173397246875 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.17572792418396, + 32.438468867103786 + ], + [ + 75.06088524070027, + 32.63311660203224 + ], + [ + 74.83119987373293, + 32.63311660203224 + ], + [ + 74.71635719024924, + 32.438468867103786 + ], + [ + 74.83119987373293, + 32.243821132175334 + ], + [ + 75.06088524070027, + 32.243821132175334 + ], + [ + 75.17572792418396, + 32.438468867103786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.17572792418396, + 32.82776433696069 + ], + [ + 75.06088524070027, + 33.02241207188914 + ], + [ + 74.83119987373293, + 33.02241207188914 + ], + [ + 74.71635719024924, + 32.82776433696069 + ], + [ + 74.83119987373293, + 32.63311660203224 + ], + [ + 75.06088524070027, + 32.63311660203224 + ], + [ + 75.17572792418396, + 32.82776433696069 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.17572792418396, + 33.217059806817595 + ], + [ + 75.06088524070027, + 33.41170754174605 + ], + [ + 74.83119987373293, + 33.41170754174605 + ], + [ + 74.71635719024924, + 33.217059806817595 + ], + [ + 74.83119987373293, + 33.02241207188914 + ], + [ + 75.06088524070027, + 33.02241207188914 + ], + [ + 75.17572792418396, + 33.217059806817595 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.17572792418396, + 33.6063552766745 + ], + [ + 75.06088524070027, + 33.80100301160295 + ], + [ + 74.83119987373293, + 33.80100301160295 + ], + [ + 74.71635719024924, + 33.6063552766745 + ], + [ + 74.83119987373293, + 33.41170754174605 + ], + [ + 75.06088524070027, + 33.41170754174605 + ], + [ + 75.17572792418396, + 33.6063552766745 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.17572792418396, + 33.9956507465314 + ], + [ + 75.06088524070027, + 34.190298481459855 + ], + [ + 74.83119987373293, + 34.190298481459855 + ], + [ + 74.71635719024924, + 33.9956507465314 + ], + [ + 74.83119987373293, + 33.80100301160295 + ], + [ + 75.06088524070027, + 33.80100301160295 + ], + [ + 75.17572792418396, + 33.9956507465314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.17572792418396, + 34.384946216388315 + ], + [ + 75.06088524070027, + 34.57959395131677 + ], + [ + 74.83119987373293, + 34.57959395131677 + ], + [ + 74.71635719024924, + 34.384946216388315 + ], + [ + 74.83119987373293, + 34.19029848145986 + ], + [ + 75.06088524070027, + 34.19029848145986 + ], + [ + 75.17572792418396, + 34.384946216388315 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.17572792418396, + 34.774241686245226 + ], + [ + 75.06088524070027, + 34.96888942117368 + ], + [ + 74.83119987373293, + 34.96888942117368 + ], + [ + 74.71635719024924, + 34.774241686245226 + ], + [ + 74.83119987373293, + 34.579593951316774 + ], + [ + 75.06088524070027, + 34.579593951316774 + ], + [ + 75.17572792418396, + 34.774241686245226 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.17572792418396, + 35.16353715610213 + ], + [ + 75.06088524070027, + 35.35818489103058 + ], + [ + 74.83119987373293, + 35.35818489103058 + ], + [ + 74.71635719024924, + 35.16353715610213 + ], + [ + 74.83119987373293, + 34.96888942117368 + ], + [ + 75.06088524070027, + 34.96888942117368 + ], + [ + 75.17572792418396, + 35.16353715610213 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.17572792418396, + 35.552832625959034 + ], + [ + 75.06088524070027, + 35.74748036088749 + ], + [ + 74.83119987373293, + 35.74748036088749 + ], + [ + 74.71635719024924, + 35.552832625959034 + ], + [ + 74.83119987373293, + 35.35818489103058 + ], + [ + 75.06088524070027, + 35.35818489103058 + ], + [ + 75.17572792418396, + 35.552832625959034 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.17572792418396, + 35.94212809581594 + ], + [ + 75.06088524070027, + 36.13677583074439 + ], + [ + 74.83119987373293, + 36.13677583074439 + ], + [ + 74.71635719024924, + 35.94212809581594 + ], + [ + 74.83119987373293, + 35.74748036088749 + ], + [ + 75.06088524070027, + 35.74748036088749 + ], + [ + 75.17572792418396, + 35.94212809581594 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.17572792418396, + 36.33142356567284 + ], + [ + 75.06088524070027, + 36.526071300601295 + ], + [ + 74.83119987373293, + 36.526071300601295 + ], + [ + 74.71635719024924, + 36.33142356567284 + ], + [ + 74.83119987373293, + 36.13677583074439 + ], + [ + 75.06088524070027, + 36.13677583074439 + ], + [ + 75.17572792418396, + 36.33142356567284 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.17572792418396, + 36.720719035529754 + ], + [ + 75.06088524070027, + 36.915366770458206 + ], + [ + 74.83119987373293, + 36.915366770458206 + ], + [ + 74.71635719024924, + 36.720719035529754 + ], + [ + 74.83119987373293, + 36.5260713006013 + ], + [ + 75.06088524070027, + 36.5260713006013 + ], + [ + 75.17572792418396, + 36.720719035529754 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.17572792418396, + 37.11001450538666 + ], + [ + 75.06088524070027, + 37.30466224031511 + ], + [ + 74.83119987373293, + 37.30466224031511 + ], + [ + 74.71635719024924, + 37.11001450538666 + ], + [ + 74.83119987373293, + 36.915366770458206 + ], + [ + 75.06088524070027, + 36.915366770458206 + ], + [ + 75.17572792418396, + 37.11001450538666 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.17572792418396, + 37.49930997524357 + ], + [ + 75.06088524070027, + 37.69395771017202 + ], + [ + 74.83119987373293, + 37.69395771017202 + ], + [ + 74.71635719024924, + 37.49930997524357 + ], + [ + 74.83119987373293, + 37.30466224031512 + ], + [ + 75.06088524070027, + 37.30466224031512 + ], + [ + 75.17572792418396, + 37.49930997524357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.17572792418396, + 37.888605445100474 + ], + [ + 75.06088524070027, + 38.083253180028926 + ], + [ + 74.83119987373293, + 38.083253180028926 + ], + [ + 74.71635719024924, + 37.888605445100474 + ], + [ + 74.83119987373293, + 37.69395771017202 + ], + [ + 75.06088524070027, + 37.69395771017202 + ], + [ + 75.17572792418396, + 37.888605445100474 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.17572792418396, + 38.27790091495738 + ], + [ + 75.06088524070027, + 38.47254864988583 + ], + [ + 74.83119987373293, + 38.47254864988583 + ], + [ + 74.71635719024924, + 38.27790091495738 + ], + [ + 74.83119987373293, + 38.083253180028926 + ], + [ + 75.06088524070027, + 38.083253180028926 + ], + [ + 75.17572792418396, + 38.27790091495738 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.17572792418396, + 38.66719638481428 + ], + [ + 75.06088524070027, + 38.861844119742734 + ], + [ + 74.83119987373293, + 38.861844119742734 + ], + [ + 74.71635719024924, + 38.66719638481428 + ], + [ + 74.83119987373293, + 38.47254864988583 + ], + [ + 75.06088524070027, + 38.47254864988583 + ], + [ + 75.17572792418396, + 38.66719638481428 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.17572792418396, + 39.05649185467119 + ], + [ + 75.06088524070027, + 39.25113958959964 + ], + [ + 74.83119987373293, + 39.25113958959964 + ], + [ + 74.71635719024924, + 39.05649185467119 + ], + [ + 74.83119987373293, + 38.861844119742734 + ], + [ + 75.06088524070027, + 38.861844119742734 + ], + [ + 75.17572792418396, + 39.05649185467119 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.17572792418396, + 39.4457873245281 + ], + [ + 75.06088524070027, + 39.64043505945655 + ], + [ + 74.83119987373293, + 39.64043505945655 + ], + [ + 74.71635719024924, + 39.4457873245281 + ], + [ + 74.83119987373293, + 39.251139589599646 + ], + [ + 75.06088524070027, + 39.251139589599646 + ], + [ + 75.17572792418396, + 39.4457873245281 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.17572792418396, + 39.835082794385 + ], + [ + 75.06088524070027, + 40.029730529313454 + ], + [ + 74.83119987373293, + 40.029730529313454 + ], + [ + 74.71635719024924, + 39.835082794385 + ], + [ + 74.83119987373293, + 39.64043505945655 + ], + [ + 75.06088524070027, + 39.64043505945655 + ], + [ + 75.17572792418396, + 39.835082794385 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.17572792418396, + 40.22437826424191 + ], + [ + 75.06088524070027, + 40.419025999170366 + ], + [ + 74.83119987373293, + 40.419025999170366 + ], + [ + 74.71635719024924, + 40.22437826424191 + ], + [ + 74.83119987373293, + 40.02973052931346 + ], + [ + 75.06088524070027, + 40.02973052931346 + ], + [ + 75.17572792418396, + 40.22437826424191 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.17572792418396, + 40.61367373409882 + ], + [ + 75.06088524070027, + 40.80832146902727 + ], + [ + 74.83119987373293, + 40.80832146902727 + ], + [ + 74.71635719024924, + 40.61367373409882 + ], + [ + 74.83119987373293, + 40.419025999170366 + ], + [ + 75.06088524070027, + 40.419025999170366 + ], + [ + 75.17572792418396, + 40.61367373409882 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.17572792418396, + 41.00296920395572 + ], + [ + 75.06088524070027, + 41.197616938884174 + ], + [ + 74.83119987373293, + 41.197616938884174 + ], + [ + 74.71635719024924, + 41.00296920395572 + ], + [ + 74.83119987373293, + 40.80832146902727 + ], + [ + 75.06088524070027, + 40.80832146902727 + ], + [ + 75.17572792418396, + 41.00296920395572 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.17572792418396, + 41.392264673812626 + ], + [ + 75.06088524070027, + 41.58691240874108 + ], + [ + 74.83119987373293, + 41.58691240874108 + ], + [ + 74.71635719024924, + 41.392264673812626 + ], + [ + 74.83119987373293, + 41.197616938884174 + ], + [ + 75.06088524070027, + 41.197616938884174 + ], + [ + 75.17572792418396, + 41.392264673812626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.17572792418396, + 41.78156014366953 + ], + [ + 75.06088524070027, + 41.97620787859798 + ], + [ + 74.83119987373293, + 41.97620787859798 + ], + [ + 74.71635719024924, + 41.78156014366953 + ], + [ + 74.83119987373293, + 41.58691240874108 + ], + [ + 75.06088524070027, + 41.58691240874108 + ], + [ + 75.17572792418396, + 41.78156014366953 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.17572792418396, + 42.17085561352644 + ], + [ + 75.06088524070027, + 42.365503348454894 + ], + [ + 74.83119987373293, + 42.365503348454894 + ], + [ + 74.71635719024924, + 42.17085561352644 + ], + [ + 74.83119987373293, + 41.97620787859799 + ], + [ + 75.06088524070027, + 41.97620787859799 + ], + [ + 75.17572792418396, + 42.17085561352644 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.17572792418396, + 42.56015108338335 + ], + [ + 75.06088524070027, + 42.754798818311805 + ], + [ + 74.83119987373293, + 42.754798818311805 + ], + [ + 74.71635719024924, + 42.56015108338335 + ], + [ + 74.83119987373293, + 42.3655033484549 + ], + [ + 75.06088524070027, + 42.3655033484549 + ], + [ + 75.17572792418396, + 42.56015108338335 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.17572792418396, + 42.94944655324026 + ], + [ + 75.06088524070027, + 43.14409428816871 + ], + [ + 74.83119987373293, + 43.14409428816871 + ], + [ + 74.71635719024924, + 42.94944655324026 + ], + [ + 74.83119987373293, + 42.754798818311805 + ], + [ + 75.06088524070027, + 42.754798818311805 + ], + [ + 75.17572792418396, + 42.94944655324026 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.17572792418396, + 43.33874202309716 + ], + [ + 75.06088524070027, + 43.53338975802561 + ], + [ + 74.83119987373293, + 43.53338975802561 + ], + [ + 74.71635719024924, + 43.33874202309716 + ], + [ + 74.83119987373293, + 43.14409428816871 + ], + [ + 75.06088524070027, + 43.14409428816871 + ], + [ + 75.17572792418396, + 43.33874202309716 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.17572792418396, + 43.728037492954066 + ], + [ + 75.06088524070027, + 43.92268522788252 + ], + [ + 74.83119987373293, + 43.92268522788252 + ], + [ + 74.71635719024924, + 43.728037492954066 + ], + [ + 74.83119987373293, + 43.53338975802561 + ], + [ + 75.06088524070027, + 43.53338975802561 + ], + [ + 75.17572792418396, + 43.728037492954066 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.17572792418396, + 44.11733296281097 + ], + [ + 75.06088524070027, + 44.31198069773942 + ], + [ + 74.83119987373293, + 44.31198069773942 + ], + [ + 74.71635719024924, + 44.11733296281097 + ], + [ + 74.83119987373293, + 43.92268522788252 + ], + [ + 75.06088524070027, + 43.92268522788252 + ], + [ + 75.17572792418396, + 44.11733296281097 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.17572792418396, + 44.506628432667874 + ], + [ + 75.06088524070027, + 44.701276167596326 + ], + [ + 74.83119987373293, + 44.701276167596326 + ], + [ + 74.71635719024924, + 44.506628432667874 + ], + [ + 74.83119987373293, + 44.31198069773942 + ], + [ + 75.06088524070027, + 44.31198069773942 + ], + [ + 75.17572792418396, + 44.506628432667874 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.17572792418396, + 44.89592390252479 + ], + [ + 75.06088524070027, + 45.090571637453245 + ], + [ + 74.83119987373293, + 45.090571637453245 + ], + [ + 74.71635719024924, + 44.89592390252479 + ], + [ + 74.83119987373293, + 44.70127616759634 + ], + [ + 75.06088524070027, + 44.70127616759634 + ], + [ + 75.17572792418396, + 44.89592390252479 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.17572792418396, + 45.2852193723817 + ], + [ + 75.06088524070027, + 45.47986710731015 + ], + [ + 74.83119987373293, + 45.47986710731015 + ], + [ + 74.71635719024924, + 45.2852193723817 + ], + [ + 74.83119987373293, + 45.090571637453245 + ], + [ + 75.06088524070027, + 45.090571637453245 + ], + [ + 75.17572792418396, + 45.2852193723817 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.17572792418396, + 45.6745148422386 + ], + [ + 75.06088524070027, + 45.86916257716705 + ], + [ + 74.83119987373293, + 45.86916257716705 + ], + [ + 74.71635719024924, + 45.6745148422386 + ], + [ + 74.83119987373293, + 45.47986710731015 + ], + [ + 75.06088524070027, + 45.47986710731015 + ], + [ + 75.17572792418396, + 45.6745148422386 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.17572792418396, + 46.063810312095505 + ], + [ + 75.06088524070027, + 46.25845804702396 + ], + [ + 74.83119987373293, + 46.25845804702396 + ], + [ + 74.71635719024924, + 46.063810312095505 + ], + [ + 74.83119987373293, + 45.86916257716705 + ], + [ + 75.06088524070027, + 45.86916257716705 + ], + [ + 75.17572792418396, + 46.063810312095505 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.17572792418396, + 46.45310578195241 + ], + [ + 75.06088524070027, + 46.64775351688086 + ], + [ + 74.83119987373293, + 46.64775351688086 + ], + [ + 74.71635719024924, + 46.45310578195241 + ], + [ + 74.83119987373293, + 46.25845804702396 + ], + [ + 75.06088524070027, + 46.25845804702396 + ], + [ + 75.17572792418396, + 46.45310578195241 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.17572792418396, + 46.842401251809314 + ], + [ + 75.06088524070027, + 47.037048986737766 + ], + [ + 74.83119987373293, + 47.037048986737766 + ], + [ + 74.71635719024924, + 46.842401251809314 + ], + [ + 74.83119987373293, + 46.64775351688086 + ], + [ + 75.06088524070027, + 46.64775351688086 + ], + [ + 75.17572792418396, + 46.842401251809314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.17572792418396, + 47.23169672166622 + ], + [ + 75.06088524070027, + 47.42634445659467 + ], + [ + 74.83119987373293, + 47.42634445659467 + ], + [ + 74.71635719024924, + 47.23169672166622 + ], + [ + 74.83119987373293, + 47.037048986737766 + ], + [ + 75.06088524070027, + 47.037048986737766 + ], + [ + 75.17572792418396, + 47.23169672166622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.17572792418396, + 47.620992191523136 + ], + [ + 75.06088524070027, + 47.81563992645159 + ], + [ + 74.83119987373293, + 47.81563992645159 + ], + [ + 74.71635719024924, + 47.620992191523136 + ], + [ + 74.83119987373293, + 47.426344456594684 + ], + [ + 75.06088524070027, + 47.426344456594684 + ], + [ + 75.17572792418396, + 47.620992191523136 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.52025597463499, + 12.0004566996162 + ], + [ + 75.4054132911513, + 12.195104434544653 + ], + [ + 75.17572792418396, + 12.195104434544653 + ], + [ + 75.06088524070027, + 12.0004566996162 + ], + [ + 75.17572792418396, + 11.805808964687746 + ], + [ + 75.4054132911513, + 11.805808964687746 + ], + [ + 75.52025597463499, + 12.0004566996162 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.52025597463499, + 12.389752169473105 + ], + [ + 75.4054132911513, + 12.58439990440156 + ], + [ + 75.17572792418396, + 12.58439990440156 + ], + [ + 75.06088524070027, + 12.389752169473105 + ], + [ + 75.17572792418396, + 12.195104434544652 + ], + [ + 75.4054132911513, + 12.195104434544652 + ], + [ + 75.52025597463499, + 12.389752169473105 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.52025597463499, + 12.779047639330013 + ], + [ + 75.4054132911513, + 12.973695374258467 + ], + [ + 75.17572792418396, + 12.973695374258467 + ], + [ + 75.06088524070027, + 12.779047639330013 + ], + [ + 75.17572792418396, + 12.58439990440156 + ], + [ + 75.4054132911513, + 12.58439990440156 + ], + [ + 75.52025597463499, + 12.779047639330013 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.52025597463499, + 13.16834310918692 + ], + [ + 75.4054132911513, + 13.362990844115373 + ], + [ + 75.17572792418396, + 13.362990844115373 + ], + [ + 75.06088524070027, + 13.16834310918692 + ], + [ + 75.17572792418396, + 12.973695374258465 + ], + [ + 75.4054132911513, + 12.973695374258465 + ], + [ + 75.52025597463499, + 13.16834310918692 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.52025597463499, + 13.557638579043825 + ], + [ + 75.4054132911513, + 13.752286313972279 + ], + [ + 75.17572792418396, + 13.752286313972279 + ], + [ + 75.06088524070027, + 13.557638579043825 + ], + [ + 75.17572792418396, + 13.362990844115371 + ], + [ + 75.4054132911513, + 13.362990844115371 + ], + [ + 75.52025597463499, + 13.557638579043825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.52025597463499, + 13.946934048900731 + ], + [ + 75.4054132911513, + 14.141581783829185 + ], + [ + 75.17572792418396, + 14.141581783829185 + ], + [ + 75.06088524070027, + 13.946934048900731 + ], + [ + 75.17572792418396, + 13.752286313972277 + ], + [ + 75.4054132911513, + 13.752286313972277 + ], + [ + 75.52025597463499, + 13.946934048900731 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.52025597463499, + 14.336229518757637 + ], + [ + 75.4054132911513, + 14.530877253686091 + ], + [ + 75.17572792418396, + 14.530877253686091 + ], + [ + 75.06088524070027, + 14.336229518757637 + ], + [ + 75.17572792418396, + 14.141581783829183 + ], + [ + 75.4054132911513, + 14.141581783829183 + ], + [ + 75.52025597463499, + 14.336229518757637 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.52025597463499, + 14.725524988614545 + ], + [ + 75.4054132911513, + 14.920172723542999 + ], + [ + 75.17572792418396, + 14.920172723542999 + ], + [ + 75.06088524070027, + 14.725524988614545 + ], + [ + 75.17572792418396, + 14.530877253686091 + ], + [ + 75.4054132911513, + 14.530877253686091 + ], + [ + 75.52025597463499, + 14.725524988614545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.52025597463499, + 15.114820458471451 + ], + [ + 75.4054132911513, + 15.309468193399905 + ], + [ + 75.17572792418396, + 15.309468193399905 + ], + [ + 75.06088524070027, + 15.114820458471451 + ], + [ + 75.17572792418396, + 14.920172723542997 + ], + [ + 75.4054132911513, + 14.920172723542997 + ], + [ + 75.52025597463499, + 15.114820458471451 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.52025597463499, + 15.504115928328357 + ], + [ + 75.4054132911513, + 15.69876366325681 + ], + [ + 75.17572792418396, + 15.69876366325681 + ], + [ + 75.06088524070027, + 15.504115928328357 + ], + [ + 75.17572792418396, + 15.309468193399903 + ], + [ + 75.4054132911513, + 15.309468193399903 + ], + [ + 75.52025597463499, + 15.504115928328357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.52025597463499, + 15.893411398185265 + ], + [ + 75.4054132911513, + 16.088059133113717 + ], + [ + 75.17572792418396, + 16.088059133113717 + ], + [ + 75.06088524070027, + 15.893411398185265 + ], + [ + 75.17572792418396, + 15.69876366325681 + ], + [ + 75.4054132911513, + 15.69876366325681 + ], + [ + 75.52025597463499, + 15.893411398185265 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.52025597463499, + 16.28270686804217 + ], + [ + 75.4054132911513, + 16.47735460297062 + ], + [ + 75.17572792418396, + 16.47735460297062 + ], + [ + 75.06088524070027, + 16.28270686804217 + ], + [ + 75.17572792418396, + 16.088059133113717 + ], + [ + 75.4054132911513, + 16.088059133113717 + ], + [ + 75.52025597463499, + 16.28270686804217 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.52025597463499, + 16.672002337899077 + ], + [ + 75.4054132911513, + 16.86665007282753 + ], + [ + 75.17572792418396, + 16.86665007282753 + ], + [ + 75.06088524070027, + 16.672002337899077 + ], + [ + 75.17572792418396, + 16.477354602970625 + ], + [ + 75.4054132911513, + 16.477354602970625 + ], + [ + 75.52025597463499, + 16.672002337899077 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.52025597463499, + 17.06129780775598 + ], + [ + 75.4054132911513, + 17.255945542684433 + ], + [ + 75.17572792418396, + 17.255945542684433 + ], + [ + 75.06088524070027, + 17.06129780775598 + ], + [ + 75.17572792418396, + 16.86665007282753 + ], + [ + 75.4054132911513, + 16.86665007282753 + ], + [ + 75.52025597463499, + 17.06129780775598 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.52025597463499, + 17.45059327761289 + ], + [ + 75.4054132911513, + 17.64524101254134 + ], + [ + 75.17572792418396, + 17.64524101254134 + ], + [ + 75.06088524070027, + 17.45059327761289 + ], + [ + 75.17572792418396, + 17.255945542684437 + ], + [ + 75.4054132911513, + 17.255945542684437 + ], + [ + 75.52025597463499, + 17.45059327761289 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.52025597463499, + 17.839888747469793 + ], + [ + 75.4054132911513, + 18.034536482398245 + ], + [ + 75.17572792418396, + 18.034536482398245 + ], + [ + 75.06088524070027, + 17.839888747469793 + ], + [ + 75.17572792418396, + 17.64524101254134 + ], + [ + 75.4054132911513, + 17.64524101254134 + ], + [ + 75.52025597463499, + 17.839888747469793 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.52025597463499, + 18.2291842173267 + ], + [ + 75.4054132911513, + 18.423831952255153 + ], + [ + 75.17572792418396, + 18.423831952255153 + ], + [ + 75.06088524070027, + 18.2291842173267 + ], + [ + 75.17572792418396, + 18.03453648239825 + ], + [ + 75.4054132911513, + 18.03453648239825 + ], + [ + 75.52025597463499, + 18.2291842173267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.52025597463499, + 18.61847968718361 + ], + [ + 75.4054132911513, + 18.81312742211206 + ], + [ + 75.17572792418396, + 18.81312742211206 + ], + [ + 75.06088524070027, + 18.61847968718361 + ], + [ + 75.17572792418396, + 18.423831952255156 + ], + [ + 75.4054132911513, + 18.423831952255156 + ], + [ + 75.52025597463499, + 18.61847968718361 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.52025597463499, + 19.007775157040513 + ], + [ + 75.4054132911513, + 19.202422891968965 + ], + [ + 75.17572792418396, + 19.202422891968965 + ], + [ + 75.06088524070027, + 19.007775157040513 + ], + [ + 75.17572792418396, + 18.81312742211206 + ], + [ + 75.4054132911513, + 18.81312742211206 + ], + [ + 75.52025597463499, + 19.007775157040513 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.52025597463499, + 19.39707062689742 + ], + [ + 75.4054132911513, + 19.591718361825873 + ], + [ + 75.17572792418396, + 19.591718361825873 + ], + [ + 75.06088524070027, + 19.39707062689742 + ], + [ + 75.17572792418396, + 19.20242289196897 + ], + [ + 75.4054132911513, + 19.20242289196897 + ], + [ + 75.52025597463499, + 19.39707062689742 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.52025597463499, + 19.78636609675433 + ], + [ + 75.4054132911513, + 19.98101383168278 + ], + [ + 75.17572792418396, + 19.98101383168278 + ], + [ + 75.06088524070027, + 19.78636609675433 + ], + [ + 75.17572792418396, + 19.591718361825876 + ], + [ + 75.4054132911513, + 19.591718361825876 + ], + [ + 75.52025597463499, + 19.78636609675433 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.52025597463499, + 20.175661566611232 + ], + [ + 75.4054132911513, + 20.370309301539685 + ], + [ + 75.17572792418396, + 20.370309301539685 + ], + [ + 75.06088524070027, + 20.175661566611232 + ], + [ + 75.17572792418396, + 19.98101383168278 + ], + [ + 75.4054132911513, + 19.98101383168278 + ], + [ + 75.52025597463499, + 20.175661566611232 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.52025597463499, + 20.564957036468137 + ], + [ + 75.4054132911513, + 20.75960477139659 + ], + [ + 75.17572792418396, + 20.75960477139659 + ], + [ + 75.06088524070027, + 20.564957036468137 + ], + [ + 75.17572792418396, + 20.370309301539685 + ], + [ + 75.4054132911513, + 20.370309301539685 + ], + [ + 75.52025597463499, + 20.564957036468137 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.52025597463499, + 20.954252506325044 + ], + [ + 75.4054132911513, + 21.148900241253497 + ], + [ + 75.17572792418396, + 21.148900241253497 + ], + [ + 75.06088524070027, + 20.954252506325044 + ], + [ + 75.17572792418396, + 20.759604771396592 + ], + [ + 75.4054132911513, + 20.759604771396592 + ], + [ + 75.52025597463499, + 20.954252506325044 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.52025597463499, + 21.343547976181952 + ], + [ + 75.4054132911513, + 21.538195711110404 + ], + [ + 75.17572792418396, + 21.538195711110404 + ], + [ + 75.06088524070027, + 21.343547976181952 + ], + [ + 75.17572792418396, + 21.1489002412535 + ], + [ + 75.4054132911513, + 21.1489002412535 + ], + [ + 75.52025597463499, + 21.343547976181952 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.52025597463499, + 21.732843446038856 + ], + [ + 75.4054132911513, + 21.92749118096731 + ], + [ + 75.17572792418396, + 21.92749118096731 + ], + [ + 75.06088524070027, + 21.732843446038856 + ], + [ + 75.17572792418396, + 21.538195711110404 + ], + [ + 75.4054132911513, + 21.538195711110404 + ], + [ + 75.52025597463499, + 21.732843446038856 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.52025597463499, + 22.122138915895764 + ], + [ + 75.4054132911513, + 22.316786650824216 + ], + [ + 75.17572792418396, + 22.316786650824216 + ], + [ + 75.06088524070027, + 22.122138915895764 + ], + [ + 75.17572792418396, + 21.927491180967312 + ], + [ + 75.4054132911513, + 21.927491180967312 + ], + [ + 75.52025597463499, + 22.122138915895764 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.52025597463499, + 22.511434385752672 + ], + [ + 75.4054132911513, + 22.706082120681124 + ], + [ + 75.17572792418396, + 22.706082120681124 + ], + [ + 75.06088524070027, + 22.511434385752672 + ], + [ + 75.17572792418396, + 22.31678665082422 + ], + [ + 75.4054132911513, + 22.31678665082422 + ], + [ + 75.52025597463499, + 22.511434385752672 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.52025597463499, + 22.900729855609576 + ], + [ + 75.4054132911513, + 23.09537759053803 + ], + [ + 75.17572792418396, + 23.09537759053803 + ], + [ + 75.06088524070027, + 22.900729855609576 + ], + [ + 75.17572792418396, + 22.706082120681124 + ], + [ + 75.4054132911513, + 22.706082120681124 + ], + [ + 75.52025597463499, + 22.900729855609576 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.52025597463499, + 23.290025325466484 + ], + [ + 75.4054132911513, + 23.484673060394936 + ], + [ + 75.17572792418396, + 23.484673060394936 + ], + [ + 75.06088524070027, + 23.290025325466484 + ], + [ + 75.17572792418396, + 23.095377590538032 + ], + [ + 75.4054132911513, + 23.095377590538032 + ], + [ + 75.52025597463499, + 23.290025325466484 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.52025597463499, + 23.67932079532339 + ], + [ + 75.4054132911513, + 23.873968530251844 + ], + [ + 75.17572792418396, + 23.873968530251844 + ], + [ + 75.06088524070027, + 23.67932079532339 + ], + [ + 75.17572792418396, + 23.48467306039494 + ], + [ + 75.4054132911513, + 23.48467306039494 + ], + [ + 75.52025597463499, + 23.67932079532339 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.52025597463499, + 24.068616265180296 + ], + [ + 75.4054132911513, + 24.263264000108748 + ], + [ + 75.17572792418396, + 24.263264000108748 + ], + [ + 75.06088524070027, + 24.068616265180296 + ], + [ + 75.17572792418396, + 23.873968530251844 + ], + [ + 75.4054132911513, + 23.873968530251844 + ], + [ + 75.52025597463499, + 24.068616265180296 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.52025597463499, + 24.4579117350372 + ], + [ + 75.4054132911513, + 24.652559469965652 + ], + [ + 75.17572792418396, + 24.652559469965652 + ], + [ + 75.06088524070027, + 24.4579117350372 + ], + [ + 75.17572792418396, + 24.263264000108748 + ], + [ + 75.4054132911513, + 24.263264000108748 + ], + [ + 75.52025597463499, + 24.4579117350372 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.52025597463499, + 24.847207204894108 + ], + [ + 75.4054132911513, + 25.04185493982256 + ], + [ + 75.17572792418396, + 25.04185493982256 + ], + [ + 75.06088524070027, + 24.847207204894108 + ], + [ + 75.17572792418396, + 24.652559469965656 + ], + [ + 75.4054132911513, + 24.652559469965656 + ], + [ + 75.52025597463499, + 24.847207204894108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.52025597463499, + 25.236502674751016 + ], + [ + 75.4054132911513, + 25.431150409679468 + ], + [ + 75.17572792418396, + 25.431150409679468 + ], + [ + 75.06088524070027, + 25.236502674751016 + ], + [ + 75.17572792418396, + 25.041854939822564 + ], + [ + 75.4054132911513, + 25.041854939822564 + ], + [ + 75.52025597463499, + 25.236502674751016 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.52025597463499, + 25.62579814460792 + ], + [ + 75.4054132911513, + 25.820445879536372 + ], + [ + 75.17572792418396, + 25.820445879536372 + ], + [ + 75.06088524070027, + 25.62579814460792 + ], + [ + 75.17572792418396, + 25.431150409679468 + ], + [ + 75.4054132911513, + 25.431150409679468 + ], + [ + 75.52025597463499, + 25.62579814460792 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.52025597463499, + 26.015093614464828 + ], + [ + 75.4054132911513, + 26.20974134939328 + ], + [ + 75.17572792418396, + 26.20974134939328 + ], + [ + 75.06088524070027, + 26.015093614464828 + ], + [ + 75.17572792418396, + 25.820445879536376 + ], + [ + 75.4054132911513, + 25.820445879536376 + ], + [ + 75.52025597463499, + 26.015093614464828 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.52025597463499, + 26.404389084321735 + ], + [ + 75.4054132911513, + 26.599036819250188 + ], + [ + 75.17572792418396, + 26.599036819250188 + ], + [ + 75.06088524070027, + 26.404389084321735 + ], + [ + 75.17572792418396, + 26.209741349393283 + ], + [ + 75.4054132911513, + 26.209741349393283 + ], + [ + 75.52025597463499, + 26.404389084321735 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.52025597463499, + 26.79368455417864 + ], + [ + 75.4054132911513, + 26.988332289107092 + ], + [ + 75.17572792418396, + 26.988332289107092 + ], + [ + 75.06088524070027, + 26.79368455417864 + ], + [ + 75.17572792418396, + 26.599036819250188 + ], + [ + 75.4054132911513, + 26.599036819250188 + ], + [ + 75.52025597463499, + 26.79368455417864 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.52025597463499, + 27.182980024035547 + ], + [ + 75.4054132911513, + 27.377627758964 + ], + [ + 75.17572792418396, + 27.377627758964 + ], + [ + 75.06088524070027, + 27.182980024035547 + ], + [ + 75.17572792418396, + 26.988332289107095 + ], + [ + 75.4054132911513, + 26.988332289107095 + ], + [ + 75.52025597463499, + 27.182980024035547 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.52025597463499, + 27.572275493892455 + ], + [ + 75.4054132911513, + 27.766923228820907 + ], + [ + 75.17572792418396, + 27.766923228820907 + ], + [ + 75.06088524070027, + 27.572275493892455 + ], + [ + 75.17572792418396, + 27.377627758964003 + ], + [ + 75.4054132911513, + 27.377627758964003 + ], + [ + 75.52025597463499, + 27.572275493892455 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.52025597463499, + 27.96157096374936 + ], + [ + 75.4054132911513, + 28.15621869867781 + ], + [ + 75.17572792418396, + 28.15621869867781 + ], + [ + 75.06088524070027, + 27.96157096374936 + ], + [ + 75.17572792418396, + 27.766923228820907 + ], + [ + 75.4054132911513, + 27.766923228820907 + ], + [ + 75.52025597463499, + 27.96157096374936 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.52025597463499, + 28.350866433606267 + ], + [ + 75.4054132911513, + 28.54551416853472 + ], + [ + 75.17572792418396, + 28.54551416853472 + ], + [ + 75.06088524070027, + 28.350866433606267 + ], + [ + 75.17572792418396, + 28.156218698677815 + ], + [ + 75.4054132911513, + 28.156218698677815 + ], + [ + 75.52025597463499, + 28.350866433606267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.52025597463499, + 28.74016190346317 + ], + [ + 75.4054132911513, + 28.934809638391624 + ], + [ + 75.17572792418396, + 28.934809638391624 + ], + [ + 75.06088524070027, + 28.74016190346317 + ], + [ + 75.17572792418396, + 28.54551416853472 + ], + [ + 75.4054132911513, + 28.54551416853472 + ], + [ + 75.52025597463499, + 28.74016190346317 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.52025597463499, + 29.12945737332008 + ], + [ + 75.4054132911513, + 29.32410510824853 + ], + [ + 75.17572792418396, + 29.32410510824853 + ], + [ + 75.06088524070027, + 29.12945737332008 + ], + [ + 75.17572792418396, + 28.934809638391627 + ], + [ + 75.4054132911513, + 28.934809638391627 + ], + [ + 75.52025597463499, + 29.12945737332008 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.52025597463499, + 29.518752843176983 + ], + [ + 75.4054132911513, + 29.713400578105436 + ], + [ + 75.17572792418396, + 29.713400578105436 + ], + [ + 75.06088524070027, + 29.518752843176983 + ], + [ + 75.17572792418396, + 29.32410510824853 + ], + [ + 75.4054132911513, + 29.32410510824853 + ], + [ + 75.52025597463499, + 29.518752843176983 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.52025597463499, + 29.90804831303389 + ], + [ + 75.4054132911513, + 30.102696047962343 + ], + [ + 75.17572792418396, + 30.102696047962343 + ], + [ + 75.06088524070027, + 29.90804831303389 + ], + [ + 75.17572792418396, + 29.71340057810544 + ], + [ + 75.4054132911513, + 29.71340057810544 + ], + [ + 75.52025597463499, + 29.90804831303389 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.52025597463499, + 30.297343782890795 + ], + [ + 75.4054132911513, + 30.491991517819248 + ], + [ + 75.17572792418396, + 30.491991517819248 + ], + [ + 75.06088524070027, + 30.297343782890795 + ], + [ + 75.17572792418396, + 30.102696047962343 + ], + [ + 75.4054132911513, + 30.102696047962343 + ], + [ + 75.52025597463499, + 30.297343782890795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.52025597463499, + 30.686639252747703 + ], + [ + 75.4054132911513, + 30.881286987676155 + ], + [ + 75.17572792418396, + 30.881286987676155 + ], + [ + 75.06088524070027, + 30.686639252747703 + ], + [ + 75.17572792418396, + 30.49199151781925 + ], + [ + 75.4054132911513, + 30.49199151781925 + ], + [ + 75.52025597463499, + 30.686639252747703 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.52025597463499, + 31.07593472260461 + ], + [ + 75.4054132911513, + 31.270582457533063 + ], + [ + 75.17572792418396, + 31.270582457533063 + ], + [ + 75.06088524070027, + 31.07593472260461 + ], + [ + 75.17572792418396, + 30.88128698767616 + ], + [ + 75.4054132911513, + 30.88128698767616 + ], + [ + 75.52025597463499, + 31.07593472260461 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.52025597463499, + 31.465230192461515 + ], + [ + 75.4054132911513, + 31.659877927389967 + ], + [ + 75.17572792418396, + 31.659877927389967 + ], + [ + 75.06088524070027, + 31.465230192461515 + ], + [ + 75.17572792418396, + 31.270582457533063 + ], + [ + 75.4054132911513, + 31.270582457533063 + ], + [ + 75.52025597463499, + 31.465230192461515 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.52025597463499, + 31.854525662318423 + ], + [ + 75.4054132911513, + 32.049173397246875 + ], + [ + 75.17572792418396, + 32.049173397246875 + ], + [ + 75.06088524070027, + 31.854525662318423 + ], + [ + 75.17572792418396, + 31.65987792738997 + ], + [ + 75.4054132911513, + 31.65987792738997 + ], + [ + 75.52025597463499, + 31.854525662318423 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.52025597463499, + 32.24382113217533 + ], + [ + 75.4054132911513, + 32.43846886710378 + ], + [ + 75.17572792418396, + 32.43846886710378 + ], + [ + 75.06088524070027, + 32.24382113217533 + ], + [ + 75.17572792418396, + 32.049173397246875 + ], + [ + 75.4054132911513, + 32.049173397246875 + ], + [ + 75.52025597463499, + 32.24382113217533 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.52025597463499, + 32.63311660203224 + ], + [ + 75.4054132911513, + 32.82776433696069 + ], + [ + 75.17572792418396, + 32.82776433696069 + ], + [ + 75.06088524070027, + 32.63311660203224 + ], + [ + 75.17572792418396, + 32.438468867103786 + ], + [ + 75.4054132911513, + 32.438468867103786 + ], + [ + 75.52025597463499, + 32.63311660203224 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.52025597463499, + 33.02241207188914 + ], + [ + 75.4054132911513, + 33.217059806817595 + ], + [ + 75.17572792418396, + 33.217059806817595 + ], + [ + 75.06088524070027, + 33.02241207188914 + ], + [ + 75.17572792418396, + 32.82776433696069 + ], + [ + 75.4054132911513, + 32.82776433696069 + ], + [ + 75.52025597463499, + 33.02241207188914 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.52025597463499, + 33.41170754174605 + ], + [ + 75.4054132911513, + 33.6063552766745 + ], + [ + 75.17572792418396, + 33.6063552766745 + ], + [ + 75.06088524070027, + 33.41170754174605 + ], + [ + 75.17572792418396, + 33.217059806817595 + ], + [ + 75.4054132911513, + 33.217059806817595 + ], + [ + 75.52025597463499, + 33.41170754174605 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.52025597463499, + 33.80100301160295 + ], + [ + 75.4054132911513, + 33.9956507465314 + ], + [ + 75.17572792418396, + 33.9956507465314 + ], + [ + 75.06088524070027, + 33.80100301160295 + ], + [ + 75.17572792418396, + 33.6063552766745 + ], + [ + 75.4054132911513, + 33.6063552766745 + ], + [ + 75.52025597463499, + 33.80100301160295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.52025597463499, + 34.190298481459855 + ], + [ + 75.4054132911513, + 34.38494621638831 + ], + [ + 75.17572792418396, + 34.38494621638831 + ], + [ + 75.06088524070027, + 34.190298481459855 + ], + [ + 75.17572792418396, + 33.9956507465314 + ], + [ + 75.4054132911513, + 33.9956507465314 + ], + [ + 75.52025597463499, + 34.190298481459855 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.52025597463499, + 34.57959395131677 + ], + [ + 75.4054132911513, + 34.77424168624522 + ], + [ + 75.17572792418396, + 34.77424168624522 + ], + [ + 75.06088524070027, + 34.57959395131677 + ], + [ + 75.17572792418396, + 34.384946216388315 + ], + [ + 75.4054132911513, + 34.384946216388315 + ], + [ + 75.52025597463499, + 34.57959395131677 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.52025597463499, + 34.96888942117368 + ], + [ + 75.4054132911513, + 35.16353715610213 + ], + [ + 75.17572792418396, + 35.16353715610213 + ], + [ + 75.06088524070027, + 34.96888942117368 + ], + [ + 75.17572792418396, + 34.774241686245226 + ], + [ + 75.4054132911513, + 34.774241686245226 + ], + [ + 75.52025597463499, + 34.96888942117368 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.52025597463499, + 35.35818489103058 + ], + [ + 75.4054132911513, + 35.552832625959034 + ], + [ + 75.17572792418396, + 35.552832625959034 + ], + [ + 75.06088524070027, + 35.35818489103058 + ], + [ + 75.17572792418396, + 35.16353715610213 + ], + [ + 75.4054132911513, + 35.16353715610213 + ], + [ + 75.52025597463499, + 35.35818489103058 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.52025597463499, + 35.74748036088749 + ], + [ + 75.4054132911513, + 35.94212809581594 + ], + [ + 75.17572792418396, + 35.94212809581594 + ], + [ + 75.06088524070027, + 35.74748036088749 + ], + [ + 75.17572792418396, + 35.552832625959034 + ], + [ + 75.4054132911513, + 35.552832625959034 + ], + [ + 75.52025597463499, + 35.74748036088749 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.52025597463499, + 36.13677583074439 + ], + [ + 75.4054132911513, + 36.33142356567284 + ], + [ + 75.17572792418396, + 36.33142356567284 + ], + [ + 75.06088524070027, + 36.13677583074439 + ], + [ + 75.17572792418396, + 35.94212809581594 + ], + [ + 75.4054132911513, + 35.94212809581594 + ], + [ + 75.52025597463499, + 36.13677583074439 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.52025597463499, + 36.526071300601295 + ], + [ + 75.4054132911513, + 36.72071903552975 + ], + [ + 75.17572792418396, + 36.72071903552975 + ], + [ + 75.06088524070027, + 36.526071300601295 + ], + [ + 75.17572792418396, + 36.33142356567284 + ], + [ + 75.4054132911513, + 36.33142356567284 + ], + [ + 75.52025597463499, + 36.526071300601295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.52025597463499, + 36.915366770458206 + ], + [ + 75.4054132911513, + 37.11001450538666 + ], + [ + 75.17572792418396, + 37.11001450538666 + ], + [ + 75.06088524070027, + 36.915366770458206 + ], + [ + 75.17572792418396, + 36.720719035529754 + ], + [ + 75.4054132911513, + 36.720719035529754 + ], + [ + 75.52025597463499, + 36.915366770458206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.52025597463499, + 37.30466224031511 + ], + [ + 75.4054132911513, + 37.49930997524356 + ], + [ + 75.17572792418396, + 37.49930997524356 + ], + [ + 75.06088524070027, + 37.30466224031511 + ], + [ + 75.17572792418396, + 37.11001450538666 + ], + [ + 75.4054132911513, + 37.11001450538666 + ], + [ + 75.52025597463499, + 37.30466224031511 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.52025597463499, + 37.69395771017202 + ], + [ + 75.4054132911513, + 37.888605445100474 + ], + [ + 75.17572792418396, + 37.888605445100474 + ], + [ + 75.06088524070027, + 37.69395771017202 + ], + [ + 75.17572792418396, + 37.49930997524357 + ], + [ + 75.4054132911513, + 37.49930997524357 + ], + [ + 75.52025597463499, + 37.69395771017202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.52025597463499, + 38.083253180028926 + ], + [ + 75.4054132911513, + 38.27790091495738 + ], + [ + 75.17572792418396, + 38.27790091495738 + ], + [ + 75.06088524070027, + 38.083253180028926 + ], + [ + 75.17572792418396, + 37.888605445100474 + ], + [ + 75.4054132911513, + 37.888605445100474 + ], + [ + 75.52025597463499, + 38.083253180028926 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.52025597463499, + 38.47254864988583 + ], + [ + 75.4054132911513, + 38.66719638481428 + ], + [ + 75.17572792418396, + 38.66719638481428 + ], + [ + 75.06088524070027, + 38.47254864988583 + ], + [ + 75.17572792418396, + 38.27790091495738 + ], + [ + 75.4054132911513, + 38.27790091495738 + ], + [ + 75.52025597463499, + 38.47254864988583 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.52025597463499, + 38.861844119742734 + ], + [ + 75.4054132911513, + 39.05649185467119 + ], + [ + 75.17572792418396, + 39.05649185467119 + ], + [ + 75.06088524070027, + 38.861844119742734 + ], + [ + 75.17572792418396, + 38.66719638481428 + ], + [ + 75.4054132911513, + 38.66719638481428 + ], + [ + 75.52025597463499, + 38.861844119742734 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.52025597463499, + 39.25113958959964 + ], + [ + 75.4054132911513, + 39.44578732452809 + ], + [ + 75.17572792418396, + 39.44578732452809 + ], + [ + 75.06088524070027, + 39.25113958959964 + ], + [ + 75.17572792418396, + 39.05649185467119 + ], + [ + 75.4054132911513, + 39.05649185467119 + ], + [ + 75.52025597463499, + 39.25113958959964 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.52025597463499, + 39.64043505945655 + ], + [ + 75.4054132911513, + 39.835082794385 + ], + [ + 75.17572792418396, + 39.835082794385 + ], + [ + 75.06088524070027, + 39.64043505945655 + ], + [ + 75.17572792418396, + 39.4457873245281 + ], + [ + 75.4054132911513, + 39.4457873245281 + ], + [ + 75.52025597463499, + 39.64043505945655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.52025597463499, + 40.029730529313454 + ], + [ + 75.4054132911513, + 40.224378264241906 + ], + [ + 75.17572792418396, + 40.224378264241906 + ], + [ + 75.06088524070027, + 40.029730529313454 + ], + [ + 75.17572792418396, + 39.835082794385 + ], + [ + 75.4054132911513, + 39.835082794385 + ], + [ + 75.52025597463499, + 40.029730529313454 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.52025597463499, + 40.419025999170366 + ], + [ + 75.4054132911513, + 40.61367373409882 + ], + [ + 75.17572792418396, + 40.61367373409882 + ], + [ + 75.06088524070027, + 40.419025999170366 + ], + [ + 75.17572792418396, + 40.22437826424191 + ], + [ + 75.4054132911513, + 40.22437826424191 + ], + [ + 75.52025597463499, + 40.419025999170366 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.52025597463499, + 40.80832146902727 + ], + [ + 75.4054132911513, + 41.00296920395572 + ], + [ + 75.17572792418396, + 41.00296920395572 + ], + [ + 75.06088524070027, + 40.80832146902727 + ], + [ + 75.17572792418396, + 40.61367373409882 + ], + [ + 75.4054132911513, + 40.61367373409882 + ], + [ + 75.52025597463499, + 40.80832146902727 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.52025597463499, + 41.197616938884174 + ], + [ + 75.4054132911513, + 41.392264673812626 + ], + [ + 75.17572792418396, + 41.392264673812626 + ], + [ + 75.06088524070027, + 41.197616938884174 + ], + [ + 75.17572792418396, + 41.00296920395572 + ], + [ + 75.4054132911513, + 41.00296920395572 + ], + [ + 75.52025597463499, + 41.197616938884174 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.52025597463499, + 41.58691240874108 + ], + [ + 75.4054132911513, + 41.78156014366953 + ], + [ + 75.17572792418396, + 41.78156014366953 + ], + [ + 75.06088524070027, + 41.58691240874108 + ], + [ + 75.17572792418396, + 41.392264673812626 + ], + [ + 75.4054132911513, + 41.392264673812626 + ], + [ + 75.52025597463499, + 41.58691240874108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.52025597463499, + 41.97620787859798 + ], + [ + 75.4054132911513, + 42.170855613526435 + ], + [ + 75.17572792418396, + 42.170855613526435 + ], + [ + 75.06088524070027, + 41.97620787859798 + ], + [ + 75.17572792418396, + 41.78156014366953 + ], + [ + 75.4054132911513, + 41.78156014366953 + ], + [ + 75.52025597463499, + 41.97620787859798 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.52025597463499, + 42.365503348454894 + ], + [ + 75.4054132911513, + 42.560151083383346 + ], + [ + 75.17572792418396, + 42.560151083383346 + ], + [ + 75.06088524070027, + 42.365503348454894 + ], + [ + 75.17572792418396, + 42.17085561352644 + ], + [ + 75.4054132911513, + 42.17085561352644 + ], + [ + 75.52025597463499, + 42.365503348454894 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.52025597463499, + 42.754798818311805 + ], + [ + 75.4054132911513, + 42.94944655324026 + ], + [ + 75.17572792418396, + 42.94944655324026 + ], + [ + 75.06088524070027, + 42.754798818311805 + ], + [ + 75.17572792418396, + 42.56015108338335 + ], + [ + 75.4054132911513, + 42.56015108338335 + ], + [ + 75.52025597463499, + 42.754798818311805 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.52025597463499, + 43.14409428816871 + ], + [ + 75.4054132911513, + 43.33874202309716 + ], + [ + 75.17572792418396, + 43.33874202309716 + ], + [ + 75.06088524070027, + 43.14409428816871 + ], + [ + 75.17572792418396, + 42.94944655324026 + ], + [ + 75.4054132911513, + 42.94944655324026 + ], + [ + 75.52025597463499, + 43.14409428816871 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.52025597463499, + 43.53338975802561 + ], + [ + 75.4054132911513, + 43.728037492954066 + ], + [ + 75.17572792418396, + 43.728037492954066 + ], + [ + 75.06088524070027, + 43.53338975802561 + ], + [ + 75.17572792418396, + 43.33874202309716 + ], + [ + 75.4054132911513, + 43.33874202309716 + ], + [ + 75.52025597463499, + 43.53338975802561 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.52025597463499, + 43.92268522788252 + ], + [ + 75.4054132911513, + 44.11733296281097 + ], + [ + 75.17572792418396, + 44.11733296281097 + ], + [ + 75.06088524070027, + 43.92268522788252 + ], + [ + 75.17572792418396, + 43.728037492954066 + ], + [ + 75.4054132911513, + 43.728037492954066 + ], + [ + 75.52025597463499, + 43.92268522788252 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.52025597463499, + 44.31198069773942 + ], + [ + 75.4054132911513, + 44.506628432667874 + ], + [ + 75.17572792418396, + 44.506628432667874 + ], + [ + 75.06088524070027, + 44.31198069773942 + ], + [ + 75.17572792418396, + 44.11733296281097 + ], + [ + 75.4054132911513, + 44.11733296281097 + ], + [ + 75.52025597463499, + 44.31198069773942 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.52025597463499, + 44.701276167596326 + ], + [ + 75.4054132911513, + 44.89592390252478 + ], + [ + 75.17572792418396, + 44.89592390252478 + ], + [ + 75.06088524070027, + 44.701276167596326 + ], + [ + 75.17572792418396, + 44.506628432667874 + ], + [ + 75.4054132911513, + 44.506628432667874 + ], + [ + 75.52025597463499, + 44.701276167596326 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.52025597463499, + 45.090571637453245 + ], + [ + 75.4054132911513, + 45.2852193723817 + ], + [ + 75.17572792418396, + 45.2852193723817 + ], + [ + 75.06088524070027, + 45.090571637453245 + ], + [ + 75.17572792418396, + 44.89592390252479 + ], + [ + 75.4054132911513, + 44.89592390252479 + ], + [ + 75.52025597463499, + 45.090571637453245 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.52025597463499, + 45.47986710731015 + ], + [ + 75.4054132911513, + 45.6745148422386 + ], + [ + 75.17572792418396, + 45.6745148422386 + ], + [ + 75.06088524070027, + 45.47986710731015 + ], + [ + 75.17572792418396, + 45.2852193723817 + ], + [ + 75.4054132911513, + 45.2852193723817 + ], + [ + 75.52025597463499, + 45.47986710731015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.52025597463499, + 45.86916257716705 + ], + [ + 75.4054132911513, + 46.063810312095505 + ], + [ + 75.17572792418396, + 46.063810312095505 + ], + [ + 75.06088524070027, + 45.86916257716705 + ], + [ + 75.17572792418396, + 45.6745148422386 + ], + [ + 75.4054132911513, + 45.6745148422386 + ], + [ + 75.52025597463499, + 45.86916257716705 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.52025597463499, + 46.25845804702396 + ], + [ + 75.4054132911513, + 46.45310578195241 + ], + [ + 75.17572792418396, + 46.45310578195241 + ], + [ + 75.06088524070027, + 46.25845804702396 + ], + [ + 75.17572792418396, + 46.063810312095505 + ], + [ + 75.4054132911513, + 46.063810312095505 + ], + [ + 75.52025597463499, + 46.25845804702396 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.52025597463499, + 46.64775351688086 + ], + [ + 75.4054132911513, + 46.842401251809314 + ], + [ + 75.17572792418396, + 46.842401251809314 + ], + [ + 75.06088524070027, + 46.64775351688086 + ], + [ + 75.17572792418396, + 46.45310578195241 + ], + [ + 75.4054132911513, + 46.45310578195241 + ], + [ + 75.52025597463499, + 46.64775351688086 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.52025597463499, + 47.037048986737766 + ], + [ + 75.4054132911513, + 47.23169672166622 + ], + [ + 75.17572792418396, + 47.23169672166622 + ], + [ + 75.06088524070027, + 47.037048986737766 + ], + [ + 75.17572792418396, + 46.842401251809314 + ], + [ + 75.4054132911513, + 46.842401251809314 + ], + [ + 75.52025597463499, + 47.037048986737766 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.52025597463499, + 47.42634445659467 + ], + [ + 75.4054132911513, + 47.62099219152312 + ], + [ + 75.17572792418396, + 47.62099219152312 + ], + [ + 75.06088524070027, + 47.42634445659467 + ], + [ + 75.17572792418396, + 47.23169672166622 + ], + [ + 75.4054132911513, + 47.23169672166622 + ], + [ + 75.52025597463499, + 47.42634445659467 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.52025597463499, + 47.81563992645159 + ], + [ + 75.4054132911513, + 48.01028766138004 + ], + [ + 75.17572792418396, + 48.01028766138004 + ], + [ + 75.06088524070027, + 47.81563992645159 + ], + [ + 75.17572792418396, + 47.620992191523136 + ], + [ + 75.4054132911513, + 47.620992191523136 + ], + [ + 75.52025597463499, + 47.81563992645159 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "fill-opacity": 0, + "stroke": "#0ff" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.6328125, + 11.867350911459308 + ], + [ + 75.234375, + 11.867350911459308 + ], + [ + 75.234375, + 47.754097979680026 + ], + [ + 63.6328125, + 47.754097979680026 + ], + [ + 63.6328125, + 11.867350911459308 + ] + ] + ] + } + } + ] +} \ No newline at end of file diff --git a/packages/turf-hex-grid/test/out/trigrid1.geojson b/packages/turf-hex-grid/test/out/trigrid1.geojson new file mode 100644 index 0000000000..ef2c6f46c2 --- /dev/null +++ b/packages/turf-hex-grid/test/out/trigrid1.geojson @@ -0,0 +1,49287 @@ +{ + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.49821323167617, + 31.312193695474356 + ], + [ + -96.07545785340386, + 31.312193695474356 + ], + [ + -96.28683554254002, + 31.625448749691284 + ], + [ + -96.49821323167617, + 31.312193695474356 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.49821323167617, + 31.312193695474356 + ], + [ + -96.28683554254002, + 31.625448749691284 + ], + [ + -96.70959092081233, + 31.625448749691284 + ], + [ + -96.49821323167617, + 31.312193695474356 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.49821323167617, + 31.312193695474356 + ], + [ + -96.70959092081233, + 31.625448749691284 + ], + [ + -96.92096860994849, + 31.312193695474356 + ], + [ + -96.49821323167617, + 31.312193695474356 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.49821323167617, + 31.312193695474356 + ], + [ + -96.92096860994849, + 31.312193695474356 + ], + [ + -96.70959092081233, + 30.99893864125743 + ], + [ + -96.49821323167617, + 31.312193695474356 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.49821323167617, + 31.312193695474356 + ], + [ + -96.70959092081233, + 30.99893864125743 + ], + [ + -96.28683554254002, + 30.99893864125743 + ], + [ + -96.49821323167617, + 31.312193695474356 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.49821323167617, + 31.312193695474356 + ], + [ + -96.28683554254002, + 30.99893864125743 + ], + [ + -96.07545785340386, + 31.312193695474356 + ], + [ + -96.49821323167617, + 31.312193695474356 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.49821323167617, + 31.938703803908208 + ], + [ + -96.07545785340386, + 31.938703803908208 + ], + [ + -96.28683554254002, + 32.251958858125136 + ], + [ + -96.49821323167617, + 31.938703803908208 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.49821323167617, + 31.938703803908208 + ], + [ + -96.28683554254002, + 32.251958858125136 + ], + [ + -96.70959092081233, + 32.251958858125136 + ], + [ + -96.49821323167617, + 31.938703803908208 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.49821323167617, + 31.938703803908208 + ], + [ + -96.70959092081233, + 32.251958858125136 + ], + [ + -96.92096860994849, + 31.938703803908208 + ], + [ + -96.49821323167617, + 31.938703803908208 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.49821323167617, + 31.938703803908208 + ], + [ + -96.92096860994849, + 31.938703803908208 + ], + [ + -96.70959092081233, + 31.62544874969128 + ], + [ + -96.49821323167617, + 31.938703803908208 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.49821323167617, + 31.938703803908208 + ], + [ + -96.70959092081233, + 31.62544874969128 + ], + [ + -96.28683554254002, + 31.62544874969128 + ], + [ + -96.49821323167617, + 31.938703803908208 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.49821323167617, + 31.938703803908208 + ], + [ + -96.28683554254002, + 31.62544874969128 + ], + [ + -96.07545785340386, + 31.938703803908208 + ], + [ + -96.49821323167617, + 31.938703803908208 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.49821323167617, + 32.56521391234206 + ], + [ + -96.07545785340386, + 32.56521391234206 + ], + [ + -96.28683554254002, + 32.878468966558984 + ], + [ + -96.49821323167617, + 32.56521391234206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.49821323167617, + 32.56521391234206 + ], + [ + -96.28683554254002, + 32.878468966558984 + ], + [ + -96.70959092081233, + 32.878468966558984 + ], + [ + -96.49821323167617, + 32.56521391234206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.49821323167617, + 32.56521391234206 + ], + [ + -96.70959092081233, + 32.878468966558984 + ], + [ + -96.92096860994849, + 32.56521391234206 + ], + [ + -96.49821323167617, + 32.56521391234206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.49821323167617, + 32.56521391234206 + ], + [ + -96.92096860994849, + 32.56521391234206 + ], + [ + -96.70959092081233, + 32.251958858125136 + ], + [ + -96.49821323167617, + 32.56521391234206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.49821323167617, + 32.56521391234206 + ], + [ + -96.70959092081233, + 32.251958858125136 + ], + [ + -96.28683554254002, + 32.251958858125136 + ], + [ + -96.49821323167617, + 32.56521391234206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.49821323167617, + 32.56521391234206 + ], + [ + -96.28683554254002, + 32.251958858125136 + ], + [ + -96.07545785340386, + 32.56521391234206 + ], + [ + -96.49821323167617, + 32.56521391234206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.49821323167617, + 33.191724020775915 + ], + [ + -96.07545785340386, + 33.191724020775915 + ], + [ + -96.28683554254002, + 33.50497907499284 + ], + [ + -96.49821323167617, + 33.191724020775915 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.49821323167617, + 33.191724020775915 + ], + [ + -96.28683554254002, + 33.50497907499284 + ], + [ + -96.70959092081233, + 33.50497907499284 + ], + [ + -96.49821323167617, + 33.191724020775915 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.49821323167617, + 33.191724020775915 + ], + [ + -96.70959092081233, + 33.50497907499284 + ], + [ + -96.92096860994849, + 33.191724020775915 + ], + [ + -96.49821323167617, + 33.191724020775915 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.49821323167617, + 33.191724020775915 + ], + [ + -96.92096860994849, + 33.191724020775915 + ], + [ + -96.70959092081233, + 32.87846896655899 + ], + [ + -96.49821323167617, + 33.191724020775915 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.49821323167617, + 33.191724020775915 + ], + [ + -96.70959092081233, + 32.87846896655899 + ], + [ + -96.28683554254002, + 32.87846896655899 + ], + [ + -96.49821323167617, + 33.191724020775915 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.49821323167617, + 33.191724020775915 + ], + [ + -96.28683554254002, + 32.87846896655899 + ], + [ + -96.07545785340386, + 33.191724020775915 + ], + [ + -96.49821323167617, + 33.191724020775915 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.49821323167617, + 33.81823412920977 + ], + [ + -96.07545785340386, + 33.81823412920977 + ], + [ + -96.28683554254002, + 34.131489183426694 + ], + [ + -96.49821323167617, + 33.81823412920977 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.49821323167617, + 33.81823412920977 + ], + [ + -96.28683554254002, + 34.131489183426694 + ], + [ + -96.70959092081233, + 34.131489183426694 + ], + [ + -96.49821323167617, + 33.81823412920977 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.49821323167617, + 33.81823412920977 + ], + [ + -96.70959092081233, + 34.131489183426694 + ], + [ + -96.92096860994849, + 33.81823412920977 + ], + [ + -96.49821323167617, + 33.81823412920977 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.49821323167617, + 33.81823412920977 + ], + [ + -96.92096860994849, + 33.81823412920977 + ], + [ + -96.70959092081233, + 33.504979074992846 + ], + [ + -96.49821323167617, + 33.81823412920977 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.49821323167617, + 33.81823412920977 + ], + [ + -96.70959092081233, + 33.504979074992846 + ], + [ + -96.28683554254002, + 33.504979074992846 + ], + [ + -96.49821323167617, + 33.81823412920977 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.49821323167617, + 33.81823412920977 + ], + [ + -96.28683554254002, + 33.504979074992846 + ], + [ + -96.07545785340386, + 33.81823412920977 + ], + [ + -96.49821323167617, + 33.81823412920977 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.49821323167617, + 34.444744237643626 + ], + [ + -96.07545785340386, + 34.444744237643626 + ], + [ + -96.28683554254002, + 34.75799929186055 + ], + [ + -96.49821323167617, + 34.444744237643626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.49821323167617, + 34.444744237643626 + ], + [ + -96.28683554254002, + 34.75799929186055 + ], + [ + -96.70959092081233, + 34.75799929186055 + ], + [ + -96.49821323167617, + 34.444744237643626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.49821323167617, + 34.444744237643626 + ], + [ + -96.70959092081233, + 34.75799929186055 + ], + [ + -96.92096860994849, + 34.444744237643626 + ], + [ + -96.49821323167617, + 34.444744237643626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.49821323167617, + 34.444744237643626 + ], + [ + -96.92096860994849, + 34.444744237643626 + ], + [ + -96.70959092081233, + 34.1314891834267 + ], + [ + -96.49821323167617, + 34.444744237643626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.49821323167617, + 34.444744237643626 + ], + [ + -96.70959092081233, + 34.1314891834267 + ], + [ + -96.28683554254002, + 34.1314891834267 + ], + [ + -96.49821323167617, + 34.444744237643626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.49821323167617, + 34.444744237643626 + ], + [ + -96.28683554254002, + 34.1314891834267 + ], + [ + -96.07545785340386, + 34.444744237643626 + ], + [ + -96.49821323167617, + 34.444744237643626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.49821323167617, + 35.07125434607748 + ], + [ + -96.07545785340386, + 35.07125434607748 + ], + [ + -96.28683554254002, + 35.384509400294405 + ], + [ + -96.49821323167617, + 35.07125434607748 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.49821323167617, + 35.07125434607748 + ], + [ + -96.28683554254002, + 35.384509400294405 + ], + [ + -96.70959092081233, + 35.384509400294405 + ], + [ + -96.49821323167617, + 35.07125434607748 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.49821323167617, + 35.07125434607748 + ], + [ + -96.70959092081233, + 35.384509400294405 + ], + [ + -96.92096860994849, + 35.07125434607748 + ], + [ + -96.49821323167617, + 35.07125434607748 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.49821323167617, + 35.07125434607748 + ], + [ + -96.92096860994849, + 35.07125434607748 + ], + [ + -96.70959092081233, + 34.75799929186056 + ], + [ + -96.49821323167617, + 35.07125434607748 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.49821323167617, + 35.07125434607748 + ], + [ + -96.70959092081233, + 34.75799929186056 + ], + [ + -96.28683554254002, + 34.75799929186056 + ], + [ + -96.49821323167617, + 35.07125434607748 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.49821323167617, + 35.07125434607748 + ], + [ + -96.28683554254002, + 34.75799929186056 + ], + [ + -96.07545785340386, + 35.07125434607748 + ], + [ + -96.49821323167617, + 35.07125434607748 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.49821323167617, + 35.697764454511336 + ], + [ + -96.07545785340386, + 35.697764454511336 + ], + [ + -96.28683554254002, + 36.01101950872826 + ], + [ + -96.49821323167617, + 35.697764454511336 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.49821323167617, + 35.697764454511336 + ], + [ + -96.28683554254002, + 36.01101950872826 + ], + [ + -96.70959092081233, + 36.01101950872826 + ], + [ + -96.49821323167617, + 35.697764454511336 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.49821323167617, + 35.697764454511336 + ], + [ + -96.70959092081233, + 36.01101950872826 + ], + [ + -96.92096860994849, + 35.697764454511336 + ], + [ + -96.49821323167617, + 35.697764454511336 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.49821323167617, + 35.697764454511336 + ], + [ + -96.92096860994849, + 35.697764454511336 + ], + [ + -96.70959092081233, + 35.38450940029441 + ], + [ + -96.49821323167617, + 35.697764454511336 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.49821323167617, + 35.697764454511336 + ], + [ + -96.70959092081233, + 35.38450940029441 + ], + [ + -96.28683554254002, + 35.38450940029441 + ], + [ + -96.49821323167617, + 35.697764454511336 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.49821323167617, + 35.697764454511336 + ], + [ + -96.28683554254002, + 35.38450940029441 + ], + [ + -96.07545785340386, + 35.697764454511336 + ], + [ + -96.49821323167617, + 35.697764454511336 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.49821323167617, + 36.324274562945185 + ], + [ + -96.07545785340386, + 36.324274562945185 + ], + [ + -96.28683554254002, + 36.63752961716211 + ], + [ + -96.49821323167617, + 36.324274562945185 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.49821323167617, + 36.324274562945185 + ], + [ + -96.28683554254002, + 36.63752961716211 + ], + [ + -96.70959092081233, + 36.63752961716211 + ], + [ + -96.49821323167617, + 36.324274562945185 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.49821323167617, + 36.324274562945185 + ], + [ + -96.70959092081233, + 36.63752961716211 + ], + [ + -96.92096860994849, + 36.324274562945185 + ], + [ + -96.49821323167617, + 36.324274562945185 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.49821323167617, + 36.324274562945185 + ], + [ + -96.92096860994849, + 36.324274562945185 + ], + [ + -96.70959092081233, + 36.01101950872826 + ], + [ + -96.49821323167617, + 36.324274562945185 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.49821323167617, + 36.324274562945185 + ], + [ + -96.70959092081233, + 36.01101950872826 + ], + [ + -96.28683554254002, + 36.01101950872826 + ], + [ + -96.49821323167617, + 36.324274562945185 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.49821323167617, + 36.324274562945185 + ], + [ + -96.28683554254002, + 36.01101950872826 + ], + [ + -96.07545785340386, + 36.324274562945185 + ], + [ + -96.49821323167617, + 36.324274562945185 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.49821323167617, + 36.95078467137904 + ], + [ + -96.07545785340386, + 36.95078467137904 + ], + [ + -96.28683554254002, + 37.264039725595964 + ], + [ + -96.49821323167617, + 36.95078467137904 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.49821323167617, + 36.95078467137904 + ], + [ + -96.28683554254002, + 37.264039725595964 + ], + [ + -96.70959092081233, + 37.264039725595964 + ], + [ + -96.49821323167617, + 36.95078467137904 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.49821323167617, + 36.95078467137904 + ], + [ + -96.70959092081233, + 37.264039725595964 + ], + [ + -96.92096860994849, + 36.95078467137904 + ], + [ + -96.49821323167617, + 36.95078467137904 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.49821323167617, + 36.95078467137904 + ], + [ + -96.92096860994849, + 36.95078467137904 + ], + [ + -96.70959092081233, + 36.637529617162116 + ], + [ + -96.49821323167617, + 36.95078467137904 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.49821323167617, + 36.95078467137904 + ], + [ + -96.70959092081233, + 36.637529617162116 + ], + [ + -96.28683554254002, + 36.637529617162116 + ], + [ + -96.49821323167617, + 36.95078467137904 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.49821323167617, + 36.95078467137904 + ], + [ + -96.28683554254002, + 36.637529617162116 + ], + [ + -96.07545785340386, + 36.95078467137904 + ], + [ + -96.49821323167617, + 36.95078467137904 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.49821323167617, + 37.577294779812895 + ], + [ + -96.07545785340386, + 37.577294779812895 + ], + [ + -96.28683554254002, + 37.89054983402982 + ], + [ + -96.49821323167617, + 37.577294779812895 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.49821323167617, + 37.577294779812895 + ], + [ + -96.28683554254002, + 37.89054983402982 + ], + [ + -96.70959092081233, + 37.89054983402982 + ], + [ + -96.49821323167617, + 37.577294779812895 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.49821323167617, + 37.577294779812895 + ], + [ + -96.70959092081233, + 37.89054983402982 + ], + [ + -96.92096860994849, + 37.577294779812895 + ], + [ + -96.49821323167617, + 37.577294779812895 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.49821323167617, + 37.577294779812895 + ], + [ + -96.92096860994849, + 37.577294779812895 + ], + [ + -96.70959092081233, + 37.26403972559597 + ], + [ + -96.49821323167617, + 37.577294779812895 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.49821323167617, + 37.577294779812895 + ], + [ + -96.70959092081233, + 37.26403972559597 + ], + [ + -96.28683554254002, + 37.26403972559597 + ], + [ + -96.49821323167617, + 37.577294779812895 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.49821323167617, + 37.577294779812895 + ], + [ + -96.28683554254002, + 37.26403972559597 + ], + [ + -96.07545785340386, + 37.577294779812895 + ], + [ + -96.49821323167617, + 37.577294779812895 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.49821323167617, + 38.20380488824675 + ], + [ + -96.07545785340386, + 38.20380488824675 + ], + [ + -96.28683554254002, + 38.517059942463675 + ], + [ + -96.49821323167617, + 38.20380488824675 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.49821323167617, + 38.20380488824675 + ], + [ + -96.28683554254002, + 38.517059942463675 + ], + [ + -96.70959092081233, + 38.517059942463675 + ], + [ + -96.49821323167617, + 38.20380488824675 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.49821323167617, + 38.20380488824675 + ], + [ + -96.70959092081233, + 38.517059942463675 + ], + [ + -96.92096860994849, + 38.20380488824675 + ], + [ + -96.49821323167617, + 38.20380488824675 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.49821323167617, + 38.20380488824675 + ], + [ + -96.92096860994849, + 38.20380488824675 + ], + [ + -96.70959092081233, + 37.89054983402983 + ], + [ + -96.49821323167617, + 38.20380488824675 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.49821323167617, + 38.20380488824675 + ], + [ + -96.70959092081233, + 37.89054983402983 + ], + [ + -96.28683554254002, + 37.89054983402983 + ], + [ + -96.49821323167617, + 38.20380488824675 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.49821323167617, + 38.20380488824675 + ], + [ + -96.28683554254002, + 37.89054983402983 + ], + [ + -96.07545785340386, + 38.20380488824675 + ], + [ + -96.49821323167617, + 38.20380488824675 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.49821323167617, + 38.830314996680606 + ], + [ + -96.07545785340386, + 38.830314996680606 + ], + [ + -96.28683554254002, + 39.14357005089753 + ], + [ + -96.49821323167617, + 38.830314996680606 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.49821323167617, + 38.830314996680606 + ], + [ + -96.28683554254002, + 39.14357005089753 + ], + [ + -96.70959092081233, + 39.14357005089753 + ], + [ + -96.49821323167617, + 38.830314996680606 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.49821323167617, + 38.830314996680606 + ], + [ + -96.70959092081233, + 39.14357005089753 + ], + [ + -96.92096860994849, + 38.830314996680606 + ], + [ + -96.49821323167617, + 38.830314996680606 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.49821323167617, + 38.830314996680606 + ], + [ + -96.92096860994849, + 38.830314996680606 + ], + [ + -96.70959092081233, + 38.51705994246368 + ], + [ + -96.49821323167617, + 38.830314996680606 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.49821323167617, + 38.830314996680606 + ], + [ + -96.70959092081233, + 38.51705994246368 + ], + [ + -96.28683554254002, + 38.51705994246368 + ], + [ + -96.49821323167617, + 38.830314996680606 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.49821323167617, + 38.830314996680606 + ], + [ + -96.28683554254002, + 38.51705994246368 + ], + [ + -96.07545785340386, + 38.830314996680606 + ], + [ + -96.49821323167617, + 38.830314996680606 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.49821323167617, + 39.45682510511446 + ], + [ + -96.07545785340386, + 39.45682510511446 + ], + [ + -96.28683554254002, + 39.770080159331386 + ], + [ + -96.49821323167617, + 39.45682510511446 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.49821323167617, + 39.45682510511446 + ], + [ + -96.28683554254002, + 39.770080159331386 + ], + [ + -96.70959092081233, + 39.770080159331386 + ], + [ + -96.49821323167617, + 39.45682510511446 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.49821323167617, + 39.45682510511446 + ], + [ + -96.70959092081233, + 39.770080159331386 + ], + [ + -96.92096860994849, + 39.45682510511446 + ], + [ + -96.49821323167617, + 39.45682510511446 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.49821323167617, + 39.45682510511446 + ], + [ + -96.92096860994849, + 39.45682510511446 + ], + [ + -96.70959092081233, + 39.14357005089754 + ], + [ + -96.49821323167617, + 39.45682510511446 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.49821323167617, + 39.45682510511446 + ], + [ + -96.70959092081233, + 39.14357005089754 + ], + [ + -96.28683554254002, + 39.14357005089754 + ], + [ + -96.49821323167617, + 39.45682510511446 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.49821323167617, + 39.45682510511446 + ], + [ + -96.28683554254002, + 39.14357005089754 + ], + [ + -96.07545785340386, + 39.45682510511446 + ], + [ + -96.49821323167617, + 39.45682510511446 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.49821323167617, + 40.08333521354832 + ], + [ + -96.07545785340386, + 40.08333521354832 + ], + [ + -96.28683554254002, + 40.39659026776524 + ], + [ + -96.49821323167617, + 40.08333521354832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.49821323167617, + 40.08333521354832 + ], + [ + -96.28683554254002, + 40.39659026776524 + ], + [ + -96.70959092081233, + 40.39659026776524 + ], + [ + -96.49821323167617, + 40.08333521354832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.49821323167617, + 40.08333521354832 + ], + [ + -96.70959092081233, + 40.39659026776524 + ], + [ + -96.92096860994849, + 40.08333521354832 + ], + [ + -96.49821323167617, + 40.08333521354832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.49821323167617, + 40.08333521354832 + ], + [ + -96.92096860994849, + 40.08333521354832 + ], + [ + -96.70959092081233, + 39.77008015933139 + ], + [ + -96.49821323167617, + 40.08333521354832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.49821323167617, + 40.08333521354832 + ], + [ + -96.70959092081233, + 39.77008015933139 + ], + [ + -96.28683554254002, + 39.77008015933139 + ], + [ + -96.49821323167617, + 40.08333521354832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.49821323167617, + 40.08333521354832 + ], + [ + -96.28683554254002, + 39.77008015933139 + ], + [ + -96.07545785340386, + 40.08333521354832 + ], + [ + -96.49821323167617, + 40.08333521354832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.49821323167617, + 40.70984532198217 + ], + [ + -96.07545785340386, + 40.70984532198217 + ], + [ + -96.28683554254002, + 41.023100376199096 + ], + [ + -96.49821323167617, + 40.70984532198217 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.49821323167617, + 40.70984532198217 + ], + [ + -96.28683554254002, + 41.023100376199096 + ], + [ + -96.70959092081233, + 41.023100376199096 + ], + [ + -96.49821323167617, + 40.70984532198217 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.49821323167617, + 40.70984532198217 + ], + [ + -96.70959092081233, + 41.023100376199096 + ], + [ + -96.92096860994849, + 40.70984532198217 + ], + [ + -96.49821323167617, + 40.70984532198217 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.49821323167617, + 40.70984532198217 + ], + [ + -96.92096860994849, + 40.70984532198217 + ], + [ + -96.70959092081233, + 40.39659026776525 + ], + [ + -96.49821323167617, + 40.70984532198217 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.49821323167617, + 40.70984532198217 + ], + [ + -96.70959092081233, + 40.39659026776525 + ], + [ + -96.28683554254002, + 40.39659026776525 + ], + [ + -96.49821323167617, + 40.70984532198217 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.49821323167617, + 40.70984532198217 + ], + [ + -96.28683554254002, + 40.39659026776525 + ], + [ + -96.07545785340386, + 40.70984532198217 + ], + [ + -96.49821323167617, + 40.70984532198217 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.8640801642677, + 30.99893864125743 + ], + [ + -95.44132478599539, + 30.99893864125743 + ], + [ + -95.65270247513155, + 31.312193695474356 + ], + [ + -95.8640801642677, + 30.99893864125743 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.8640801642677, + 30.99893864125743 + ], + [ + -95.65270247513155, + 31.312193695474356 + ], + [ + -96.07545785340386, + 31.312193695474356 + ], + [ + -95.8640801642677, + 30.99893864125743 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.8640801642677, + 30.99893864125743 + ], + [ + -96.07545785340386, + 31.312193695474356 + ], + [ + -96.28683554254002, + 30.99893864125743 + ], + [ + -95.8640801642677, + 30.99893864125743 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.8640801642677, + 30.99893864125743 + ], + [ + -96.28683554254002, + 30.99893864125743 + ], + [ + -96.07545785340386, + 30.6856835870405 + ], + [ + -95.8640801642677, + 30.99893864125743 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.8640801642677, + 30.99893864125743 + ], + [ + -96.07545785340386, + 30.6856835870405 + ], + [ + -95.65270247513155, + 30.6856835870405 + ], + [ + -95.8640801642677, + 30.99893864125743 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.8640801642677, + 30.99893864125743 + ], + [ + -95.65270247513155, + 30.6856835870405 + ], + [ + -95.44132478599539, + 30.99893864125743 + ], + [ + -95.8640801642677, + 30.99893864125743 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.8640801642677, + 31.62544874969128 + ], + [ + -95.44132478599539, + 31.62544874969128 + ], + [ + -95.65270247513155, + 31.938703803908208 + ], + [ + -95.8640801642677, + 31.62544874969128 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.8640801642677, + 31.62544874969128 + ], + [ + -95.65270247513155, + 31.938703803908208 + ], + [ + -96.07545785340386, + 31.938703803908208 + ], + [ + -95.8640801642677, + 31.62544874969128 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.8640801642677, + 31.62544874969128 + ], + [ + -96.07545785340386, + 31.938703803908208 + ], + [ + -96.28683554254002, + 31.62544874969128 + ], + [ + -95.8640801642677, + 31.62544874969128 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.8640801642677, + 31.62544874969128 + ], + [ + -96.28683554254002, + 31.62544874969128 + ], + [ + -96.07545785340386, + 31.312193695474352 + ], + [ + -95.8640801642677, + 31.62544874969128 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.8640801642677, + 31.62544874969128 + ], + [ + -96.07545785340386, + 31.312193695474352 + ], + [ + -95.65270247513155, + 31.312193695474352 + ], + [ + -95.8640801642677, + 31.62544874969128 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.8640801642677, + 31.62544874969128 + ], + [ + -95.65270247513155, + 31.312193695474352 + ], + [ + -95.44132478599539, + 31.62544874969128 + ], + [ + -95.8640801642677, + 31.62544874969128 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.8640801642677, + 32.251958858125136 + ], + [ + -95.44132478599539, + 32.251958858125136 + ], + [ + -95.65270247513155, + 32.56521391234206 + ], + [ + -95.8640801642677, + 32.251958858125136 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.8640801642677, + 32.251958858125136 + ], + [ + -95.65270247513155, + 32.56521391234206 + ], + [ + -96.07545785340386, + 32.56521391234206 + ], + [ + -95.8640801642677, + 32.251958858125136 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.8640801642677, + 32.251958858125136 + ], + [ + -96.07545785340386, + 32.56521391234206 + ], + [ + -96.28683554254002, + 32.251958858125136 + ], + [ + -95.8640801642677, + 32.251958858125136 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.8640801642677, + 32.251958858125136 + ], + [ + -96.28683554254002, + 32.251958858125136 + ], + [ + -96.07545785340386, + 31.938703803908208 + ], + [ + -95.8640801642677, + 32.251958858125136 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.8640801642677, + 32.251958858125136 + ], + [ + -96.07545785340386, + 31.938703803908208 + ], + [ + -95.65270247513155, + 31.938703803908208 + ], + [ + -95.8640801642677, + 32.251958858125136 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.8640801642677, + 32.251958858125136 + ], + [ + -95.65270247513155, + 31.938703803908208 + ], + [ + -95.44132478599539, + 32.251958858125136 + ], + [ + -95.8640801642677, + 32.251958858125136 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.8640801642677, + 32.87846896655899 + ], + [ + -95.44132478599539, + 32.87846896655899 + ], + [ + -95.65270247513155, + 33.191724020775915 + ], + [ + -95.8640801642677, + 32.87846896655899 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.8640801642677, + 32.87846896655899 + ], + [ + -95.65270247513155, + 33.191724020775915 + ], + [ + -96.07545785340386, + 33.191724020775915 + ], + [ + -95.8640801642677, + 32.87846896655899 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.8640801642677, + 32.87846896655899 + ], + [ + -96.07545785340386, + 33.191724020775915 + ], + [ + -96.28683554254002, + 32.87846896655899 + ], + [ + -95.8640801642677, + 32.87846896655899 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.8640801642677, + 32.87846896655899 + ], + [ + -96.28683554254002, + 32.87846896655899 + ], + [ + -96.07545785340386, + 32.56521391234207 + ], + [ + -95.8640801642677, + 32.87846896655899 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.8640801642677, + 32.87846896655899 + ], + [ + -96.07545785340386, + 32.56521391234207 + ], + [ + -95.65270247513155, + 32.56521391234207 + ], + [ + -95.8640801642677, + 32.87846896655899 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.8640801642677, + 32.87846896655899 + ], + [ + -95.65270247513155, + 32.56521391234207 + ], + [ + -95.44132478599539, + 32.87846896655899 + ], + [ + -95.8640801642677, + 32.87846896655899 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.8640801642677, + 33.504979074992846 + ], + [ + -95.44132478599539, + 33.504979074992846 + ], + [ + -95.65270247513155, + 33.81823412920977 + ], + [ + -95.8640801642677, + 33.504979074992846 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.8640801642677, + 33.504979074992846 + ], + [ + -95.65270247513155, + 33.81823412920977 + ], + [ + -96.07545785340386, + 33.81823412920977 + ], + [ + -95.8640801642677, + 33.504979074992846 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.8640801642677, + 33.504979074992846 + ], + [ + -96.07545785340386, + 33.81823412920977 + ], + [ + -96.28683554254002, + 33.504979074992846 + ], + [ + -95.8640801642677, + 33.504979074992846 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.8640801642677, + 33.504979074992846 + ], + [ + -96.28683554254002, + 33.504979074992846 + ], + [ + -96.07545785340386, + 33.19172402077592 + ], + [ + -95.8640801642677, + 33.504979074992846 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.8640801642677, + 33.504979074992846 + ], + [ + -96.07545785340386, + 33.19172402077592 + ], + [ + -95.65270247513155, + 33.19172402077592 + ], + [ + -95.8640801642677, + 33.504979074992846 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.8640801642677, + 33.504979074992846 + ], + [ + -95.65270247513155, + 33.19172402077592 + ], + [ + -95.44132478599539, + 33.504979074992846 + ], + [ + -95.8640801642677, + 33.504979074992846 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.8640801642677, + 34.1314891834267 + ], + [ + -95.44132478599539, + 34.1314891834267 + ], + [ + -95.65270247513155, + 34.444744237643626 + ], + [ + -95.8640801642677, + 34.1314891834267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.8640801642677, + 34.1314891834267 + ], + [ + -95.65270247513155, + 34.444744237643626 + ], + [ + -96.07545785340386, + 34.444744237643626 + ], + [ + -95.8640801642677, + 34.1314891834267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.8640801642677, + 34.1314891834267 + ], + [ + -96.07545785340386, + 34.444744237643626 + ], + [ + -96.28683554254002, + 34.1314891834267 + ], + [ + -95.8640801642677, + 34.1314891834267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.8640801642677, + 34.1314891834267 + ], + [ + -96.28683554254002, + 34.1314891834267 + ], + [ + -96.07545785340386, + 33.81823412920978 + ], + [ + -95.8640801642677, + 34.1314891834267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.8640801642677, + 34.1314891834267 + ], + [ + -96.07545785340386, + 33.81823412920978 + ], + [ + -95.65270247513155, + 33.81823412920978 + ], + [ + -95.8640801642677, + 34.1314891834267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.8640801642677, + 34.1314891834267 + ], + [ + -95.65270247513155, + 33.81823412920978 + ], + [ + -95.44132478599539, + 34.1314891834267 + ], + [ + -95.8640801642677, + 34.1314891834267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.8640801642677, + 34.75799929186056 + ], + [ + -95.44132478599539, + 34.75799929186056 + ], + [ + -95.65270247513155, + 35.07125434607748 + ], + [ + -95.8640801642677, + 34.75799929186056 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.8640801642677, + 34.75799929186056 + ], + [ + -95.65270247513155, + 35.07125434607748 + ], + [ + -96.07545785340386, + 35.07125434607748 + ], + [ + -95.8640801642677, + 34.75799929186056 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.8640801642677, + 34.75799929186056 + ], + [ + -96.07545785340386, + 35.07125434607748 + ], + [ + -96.28683554254002, + 34.75799929186056 + ], + [ + -95.8640801642677, + 34.75799929186056 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.8640801642677, + 34.75799929186056 + ], + [ + -96.28683554254002, + 34.75799929186056 + ], + [ + -96.07545785340386, + 34.44474423764363 + ], + [ + -95.8640801642677, + 34.75799929186056 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.8640801642677, + 34.75799929186056 + ], + [ + -96.07545785340386, + 34.44474423764363 + ], + [ + -95.65270247513155, + 34.44474423764363 + ], + [ + -95.8640801642677, + 34.75799929186056 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.8640801642677, + 34.75799929186056 + ], + [ + -95.65270247513155, + 34.44474423764363 + ], + [ + -95.44132478599539, + 34.75799929186056 + ], + [ + -95.8640801642677, + 34.75799929186056 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.8640801642677, + 35.38450940029441 + ], + [ + -95.44132478599539, + 35.38450940029441 + ], + [ + -95.65270247513155, + 35.697764454511336 + ], + [ + -95.8640801642677, + 35.38450940029441 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.8640801642677, + 35.38450940029441 + ], + [ + -95.65270247513155, + 35.697764454511336 + ], + [ + -96.07545785340386, + 35.697764454511336 + ], + [ + -95.8640801642677, + 35.38450940029441 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.8640801642677, + 35.38450940029441 + ], + [ + -96.07545785340386, + 35.697764454511336 + ], + [ + -96.28683554254002, + 35.38450940029441 + ], + [ + -95.8640801642677, + 35.38450940029441 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.8640801642677, + 35.38450940029441 + ], + [ + -96.28683554254002, + 35.38450940029441 + ], + [ + -96.07545785340386, + 35.07125434607749 + ], + [ + -95.8640801642677, + 35.38450940029441 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.8640801642677, + 35.38450940029441 + ], + [ + -96.07545785340386, + 35.07125434607749 + ], + [ + -95.65270247513155, + 35.07125434607749 + ], + [ + -95.8640801642677, + 35.38450940029441 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.8640801642677, + 35.38450940029441 + ], + [ + -95.65270247513155, + 35.07125434607749 + ], + [ + -95.44132478599539, + 35.38450940029441 + ], + [ + -95.8640801642677, + 35.38450940029441 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.8640801642677, + 36.01101950872826 + ], + [ + -95.44132478599539, + 36.01101950872826 + ], + [ + -95.65270247513155, + 36.324274562945185 + ], + [ + -95.8640801642677, + 36.01101950872826 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.8640801642677, + 36.01101950872826 + ], + [ + -95.65270247513155, + 36.324274562945185 + ], + [ + -96.07545785340386, + 36.324274562945185 + ], + [ + -95.8640801642677, + 36.01101950872826 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.8640801642677, + 36.01101950872826 + ], + [ + -96.07545785340386, + 36.324274562945185 + ], + [ + -96.28683554254002, + 36.01101950872826 + ], + [ + -95.8640801642677, + 36.01101950872826 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.8640801642677, + 36.01101950872826 + ], + [ + -96.28683554254002, + 36.01101950872826 + ], + [ + -96.07545785340386, + 35.697764454511336 + ], + [ + -95.8640801642677, + 36.01101950872826 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.8640801642677, + 36.01101950872826 + ], + [ + -96.07545785340386, + 35.697764454511336 + ], + [ + -95.65270247513155, + 35.697764454511336 + ], + [ + -95.8640801642677, + 36.01101950872826 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.8640801642677, + 36.01101950872826 + ], + [ + -95.65270247513155, + 35.697764454511336 + ], + [ + -95.44132478599539, + 36.01101950872826 + ], + [ + -95.8640801642677, + 36.01101950872826 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.8640801642677, + 36.637529617162116 + ], + [ + -95.44132478599539, + 36.637529617162116 + ], + [ + -95.65270247513155, + 36.95078467137904 + ], + [ + -95.8640801642677, + 36.637529617162116 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.8640801642677, + 36.637529617162116 + ], + [ + -95.65270247513155, + 36.95078467137904 + ], + [ + -96.07545785340386, + 36.95078467137904 + ], + [ + -95.8640801642677, + 36.637529617162116 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.8640801642677, + 36.637529617162116 + ], + [ + -96.07545785340386, + 36.95078467137904 + ], + [ + -96.28683554254002, + 36.637529617162116 + ], + [ + -95.8640801642677, + 36.637529617162116 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.8640801642677, + 36.637529617162116 + ], + [ + -96.28683554254002, + 36.637529617162116 + ], + [ + -96.07545785340386, + 36.32427456294519 + ], + [ + -95.8640801642677, + 36.637529617162116 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.8640801642677, + 36.637529617162116 + ], + [ + -96.07545785340386, + 36.32427456294519 + ], + [ + -95.65270247513155, + 36.32427456294519 + ], + [ + -95.8640801642677, + 36.637529617162116 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.8640801642677, + 36.637529617162116 + ], + [ + -95.65270247513155, + 36.32427456294519 + ], + [ + -95.44132478599539, + 36.637529617162116 + ], + [ + -95.8640801642677, + 36.637529617162116 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.8640801642677, + 37.26403972559597 + ], + [ + -95.44132478599539, + 37.26403972559597 + ], + [ + -95.65270247513155, + 37.577294779812895 + ], + [ + -95.8640801642677, + 37.26403972559597 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.8640801642677, + 37.26403972559597 + ], + [ + -95.65270247513155, + 37.577294779812895 + ], + [ + -96.07545785340386, + 37.577294779812895 + ], + [ + -95.8640801642677, + 37.26403972559597 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.8640801642677, + 37.26403972559597 + ], + [ + -96.07545785340386, + 37.577294779812895 + ], + [ + -96.28683554254002, + 37.26403972559597 + ], + [ + -95.8640801642677, + 37.26403972559597 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.8640801642677, + 37.26403972559597 + ], + [ + -96.28683554254002, + 37.26403972559597 + ], + [ + -96.07545785340386, + 36.95078467137905 + ], + [ + -95.8640801642677, + 37.26403972559597 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.8640801642677, + 37.26403972559597 + ], + [ + -96.07545785340386, + 36.95078467137905 + ], + [ + -95.65270247513155, + 36.95078467137905 + ], + [ + -95.8640801642677, + 37.26403972559597 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.8640801642677, + 37.26403972559597 + ], + [ + -95.65270247513155, + 36.95078467137905 + ], + [ + -95.44132478599539, + 37.26403972559597 + ], + [ + -95.8640801642677, + 37.26403972559597 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.8640801642677, + 37.89054983402983 + ], + [ + -95.44132478599539, + 37.89054983402983 + ], + [ + -95.65270247513155, + 38.20380488824675 + ], + [ + -95.8640801642677, + 37.89054983402983 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.8640801642677, + 37.89054983402983 + ], + [ + -95.65270247513155, + 38.20380488824675 + ], + [ + -96.07545785340386, + 38.20380488824675 + ], + [ + -95.8640801642677, + 37.89054983402983 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.8640801642677, + 37.89054983402983 + ], + [ + -96.07545785340386, + 38.20380488824675 + ], + [ + -96.28683554254002, + 37.89054983402983 + ], + [ + -95.8640801642677, + 37.89054983402983 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.8640801642677, + 37.89054983402983 + ], + [ + -96.28683554254002, + 37.89054983402983 + ], + [ + -96.07545785340386, + 37.5772947798129 + ], + [ + -95.8640801642677, + 37.89054983402983 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.8640801642677, + 37.89054983402983 + ], + [ + -96.07545785340386, + 37.5772947798129 + ], + [ + -95.65270247513155, + 37.5772947798129 + ], + [ + -95.8640801642677, + 37.89054983402983 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.8640801642677, + 37.89054983402983 + ], + [ + -95.65270247513155, + 37.5772947798129 + ], + [ + -95.44132478599539, + 37.89054983402983 + ], + [ + -95.8640801642677, + 37.89054983402983 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.8640801642677, + 38.51705994246368 + ], + [ + -95.44132478599539, + 38.51705994246368 + ], + [ + -95.65270247513155, + 38.830314996680606 + ], + [ + -95.8640801642677, + 38.51705994246368 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.8640801642677, + 38.51705994246368 + ], + [ + -95.65270247513155, + 38.830314996680606 + ], + [ + -96.07545785340386, + 38.830314996680606 + ], + [ + -95.8640801642677, + 38.51705994246368 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.8640801642677, + 38.51705994246368 + ], + [ + -96.07545785340386, + 38.830314996680606 + ], + [ + -96.28683554254002, + 38.51705994246368 + ], + [ + -95.8640801642677, + 38.51705994246368 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.8640801642677, + 38.51705994246368 + ], + [ + -96.28683554254002, + 38.51705994246368 + ], + [ + -96.07545785340386, + 38.20380488824676 + ], + [ + -95.8640801642677, + 38.51705994246368 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.8640801642677, + 38.51705994246368 + ], + [ + -96.07545785340386, + 38.20380488824676 + ], + [ + -95.65270247513155, + 38.20380488824676 + ], + [ + -95.8640801642677, + 38.51705994246368 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.8640801642677, + 38.51705994246368 + ], + [ + -95.65270247513155, + 38.20380488824676 + ], + [ + -95.44132478599539, + 38.51705994246368 + ], + [ + -95.8640801642677, + 38.51705994246368 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.8640801642677, + 39.14357005089754 + ], + [ + -95.44132478599539, + 39.14357005089754 + ], + [ + -95.65270247513155, + 39.45682510511446 + ], + [ + -95.8640801642677, + 39.14357005089754 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.8640801642677, + 39.14357005089754 + ], + [ + -95.65270247513155, + 39.45682510511446 + ], + [ + -96.07545785340386, + 39.45682510511446 + ], + [ + -95.8640801642677, + 39.14357005089754 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.8640801642677, + 39.14357005089754 + ], + [ + -96.07545785340386, + 39.45682510511446 + ], + [ + -96.28683554254002, + 39.14357005089754 + ], + [ + -95.8640801642677, + 39.14357005089754 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.8640801642677, + 39.14357005089754 + ], + [ + -96.28683554254002, + 39.14357005089754 + ], + [ + -96.07545785340386, + 38.83031499668061 + ], + [ + -95.8640801642677, + 39.14357005089754 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.8640801642677, + 39.14357005089754 + ], + [ + -96.07545785340386, + 38.83031499668061 + ], + [ + -95.65270247513155, + 38.83031499668061 + ], + [ + -95.8640801642677, + 39.14357005089754 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.8640801642677, + 39.14357005089754 + ], + [ + -95.65270247513155, + 38.83031499668061 + ], + [ + -95.44132478599539, + 39.14357005089754 + ], + [ + -95.8640801642677, + 39.14357005089754 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.8640801642677, + 39.77008015933139 + ], + [ + -95.44132478599539, + 39.77008015933139 + ], + [ + -95.65270247513155, + 40.08333521354832 + ], + [ + -95.8640801642677, + 39.77008015933139 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.8640801642677, + 39.77008015933139 + ], + [ + -95.65270247513155, + 40.08333521354832 + ], + [ + -96.07545785340386, + 40.08333521354832 + ], + [ + -95.8640801642677, + 39.77008015933139 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.8640801642677, + 39.77008015933139 + ], + [ + -96.07545785340386, + 40.08333521354832 + ], + [ + -96.28683554254002, + 39.77008015933139 + ], + [ + -95.8640801642677, + 39.77008015933139 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.8640801642677, + 39.77008015933139 + ], + [ + -96.28683554254002, + 39.77008015933139 + ], + [ + -96.07545785340386, + 39.45682510511447 + ], + [ + -95.8640801642677, + 39.77008015933139 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.8640801642677, + 39.77008015933139 + ], + [ + -96.07545785340386, + 39.45682510511447 + ], + [ + -95.65270247513155, + 39.45682510511447 + ], + [ + -95.8640801642677, + 39.77008015933139 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.8640801642677, + 39.77008015933139 + ], + [ + -95.65270247513155, + 39.45682510511447 + ], + [ + -95.44132478599539, + 39.77008015933139 + ], + [ + -95.8640801642677, + 39.77008015933139 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.8640801642677, + 40.39659026776525 + ], + [ + -95.44132478599539, + 40.39659026776525 + ], + [ + -95.65270247513155, + 40.70984532198217 + ], + [ + -95.8640801642677, + 40.39659026776525 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.8640801642677, + 40.39659026776525 + ], + [ + -95.65270247513155, + 40.70984532198217 + ], + [ + -96.07545785340386, + 40.70984532198217 + ], + [ + -95.8640801642677, + 40.39659026776525 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.8640801642677, + 40.39659026776525 + ], + [ + -96.07545785340386, + 40.70984532198217 + ], + [ + -96.28683554254002, + 40.39659026776525 + ], + [ + -95.8640801642677, + 40.39659026776525 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.8640801642677, + 40.39659026776525 + ], + [ + -96.28683554254002, + 40.39659026776525 + ], + [ + -96.07545785340386, + 40.083335213548324 + ], + [ + -95.8640801642677, + 40.39659026776525 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.8640801642677, + 40.39659026776525 + ], + [ + -96.07545785340386, + 40.083335213548324 + ], + [ + -95.65270247513155, + 40.083335213548324 + ], + [ + -95.8640801642677, + 40.39659026776525 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.8640801642677, + 40.39659026776525 + ], + [ + -95.65270247513155, + 40.083335213548324 + ], + [ + -95.44132478599539, + 40.39659026776525 + ], + [ + -95.8640801642677, + 40.39659026776525 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.22994709685925, + 31.312193695474356 + ], + [ + -94.80719171858694, + 31.312193695474356 + ], + [ + -95.01856940772309, + 31.625448749691284 + ], + [ + -95.22994709685925, + 31.312193695474356 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.22994709685925, + 31.312193695474356 + ], + [ + -95.01856940772309, + 31.625448749691284 + ], + [ + -95.4413247859954, + 31.625448749691284 + ], + [ + -95.22994709685925, + 31.312193695474356 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.22994709685925, + 31.312193695474356 + ], + [ + -95.4413247859954, + 31.625448749691284 + ], + [ + -95.65270247513156, + 31.312193695474356 + ], + [ + -95.22994709685925, + 31.312193695474356 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.22994709685925, + 31.312193695474356 + ], + [ + -95.65270247513156, + 31.312193695474356 + ], + [ + -95.4413247859954, + 30.99893864125743 + ], + [ + -95.22994709685925, + 31.312193695474356 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.22994709685925, + 31.312193695474356 + ], + [ + -95.4413247859954, + 30.99893864125743 + ], + [ + -95.01856940772309, + 30.99893864125743 + ], + [ + -95.22994709685925, + 31.312193695474356 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.22994709685925, + 31.312193695474356 + ], + [ + -95.01856940772309, + 30.99893864125743 + ], + [ + -94.80719171858694, + 31.312193695474356 + ], + [ + -95.22994709685925, + 31.312193695474356 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.22994709685925, + 31.938703803908208 + ], + [ + -94.80719171858694, + 31.938703803908208 + ], + [ + -95.01856940772309, + 32.251958858125136 + ], + [ + -95.22994709685925, + 31.938703803908208 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.22994709685925, + 31.938703803908208 + ], + [ + -95.01856940772309, + 32.251958858125136 + ], + [ + -95.4413247859954, + 32.251958858125136 + ], + [ + -95.22994709685925, + 31.938703803908208 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.22994709685925, + 31.938703803908208 + ], + [ + -95.4413247859954, + 32.251958858125136 + ], + [ + -95.65270247513156, + 31.938703803908208 + ], + [ + -95.22994709685925, + 31.938703803908208 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.22994709685925, + 31.938703803908208 + ], + [ + -95.65270247513156, + 31.938703803908208 + ], + [ + -95.4413247859954, + 31.62544874969128 + ], + [ + -95.22994709685925, + 31.938703803908208 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.22994709685925, + 31.938703803908208 + ], + [ + -95.4413247859954, + 31.62544874969128 + ], + [ + -95.01856940772309, + 31.62544874969128 + ], + [ + -95.22994709685925, + 31.938703803908208 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.22994709685925, + 31.938703803908208 + ], + [ + -95.01856940772309, + 31.62544874969128 + ], + [ + -94.80719171858694, + 31.938703803908208 + ], + [ + -95.22994709685925, + 31.938703803908208 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.22994709685925, + 32.56521391234206 + ], + [ + -94.80719171858694, + 32.56521391234206 + ], + [ + -95.01856940772309, + 32.878468966558984 + ], + [ + -95.22994709685925, + 32.56521391234206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.22994709685925, + 32.56521391234206 + ], + [ + -95.01856940772309, + 32.878468966558984 + ], + [ + -95.4413247859954, + 32.878468966558984 + ], + [ + -95.22994709685925, + 32.56521391234206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.22994709685925, + 32.56521391234206 + ], + [ + -95.4413247859954, + 32.878468966558984 + ], + [ + -95.65270247513156, + 32.56521391234206 + ], + [ + -95.22994709685925, + 32.56521391234206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.22994709685925, + 32.56521391234206 + ], + [ + -95.65270247513156, + 32.56521391234206 + ], + [ + -95.4413247859954, + 32.251958858125136 + ], + [ + -95.22994709685925, + 32.56521391234206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.22994709685925, + 32.56521391234206 + ], + [ + -95.4413247859954, + 32.251958858125136 + ], + [ + -95.01856940772309, + 32.251958858125136 + ], + [ + -95.22994709685925, + 32.56521391234206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.22994709685925, + 32.56521391234206 + ], + [ + -95.01856940772309, + 32.251958858125136 + ], + [ + -94.80719171858694, + 32.56521391234206 + ], + [ + -95.22994709685925, + 32.56521391234206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.22994709685925, + 33.191724020775915 + ], + [ + -94.80719171858694, + 33.191724020775915 + ], + [ + -95.01856940772309, + 33.50497907499284 + ], + [ + -95.22994709685925, + 33.191724020775915 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.22994709685925, + 33.191724020775915 + ], + [ + -95.01856940772309, + 33.50497907499284 + ], + [ + -95.4413247859954, + 33.50497907499284 + ], + [ + -95.22994709685925, + 33.191724020775915 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.22994709685925, + 33.191724020775915 + ], + [ + -95.4413247859954, + 33.50497907499284 + ], + [ + -95.65270247513156, + 33.191724020775915 + ], + [ + -95.22994709685925, + 33.191724020775915 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.22994709685925, + 33.191724020775915 + ], + [ + -95.65270247513156, + 33.191724020775915 + ], + [ + -95.4413247859954, + 32.87846896655899 + ], + [ + -95.22994709685925, + 33.191724020775915 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.22994709685925, + 33.191724020775915 + ], + [ + -95.4413247859954, + 32.87846896655899 + ], + [ + -95.01856940772309, + 32.87846896655899 + ], + [ + -95.22994709685925, + 33.191724020775915 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.22994709685925, + 33.191724020775915 + ], + [ + -95.01856940772309, + 32.87846896655899 + ], + [ + -94.80719171858694, + 33.191724020775915 + ], + [ + -95.22994709685925, + 33.191724020775915 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.22994709685925, + 33.81823412920977 + ], + [ + -94.80719171858694, + 33.81823412920977 + ], + [ + -95.01856940772309, + 34.131489183426694 + ], + [ + -95.22994709685925, + 33.81823412920977 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.22994709685925, + 33.81823412920977 + ], + [ + -95.01856940772309, + 34.131489183426694 + ], + [ + -95.4413247859954, + 34.131489183426694 + ], + [ + -95.22994709685925, + 33.81823412920977 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.22994709685925, + 33.81823412920977 + ], + [ + -95.4413247859954, + 34.131489183426694 + ], + [ + -95.65270247513156, + 33.81823412920977 + ], + [ + -95.22994709685925, + 33.81823412920977 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.22994709685925, + 33.81823412920977 + ], + [ + -95.65270247513156, + 33.81823412920977 + ], + [ + -95.4413247859954, + 33.504979074992846 + ], + [ + -95.22994709685925, + 33.81823412920977 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.22994709685925, + 33.81823412920977 + ], + [ + -95.4413247859954, + 33.504979074992846 + ], + [ + -95.01856940772309, + 33.504979074992846 + ], + [ + -95.22994709685925, + 33.81823412920977 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.22994709685925, + 33.81823412920977 + ], + [ + -95.01856940772309, + 33.504979074992846 + ], + [ + -94.80719171858694, + 33.81823412920977 + ], + [ + -95.22994709685925, + 33.81823412920977 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.22994709685925, + 34.444744237643626 + ], + [ + -94.80719171858694, + 34.444744237643626 + ], + [ + -95.01856940772309, + 34.75799929186055 + ], + [ + -95.22994709685925, + 34.444744237643626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.22994709685925, + 34.444744237643626 + ], + [ + -95.01856940772309, + 34.75799929186055 + ], + [ + -95.4413247859954, + 34.75799929186055 + ], + [ + -95.22994709685925, + 34.444744237643626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.22994709685925, + 34.444744237643626 + ], + [ + -95.4413247859954, + 34.75799929186055 + ], + [ + -95.65270247513156, + 34.444744237643626 + ], + [ + -95.22994709685925, + 34.444744237643626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.22994709685925, + 34.444744237643626 + ], + [ + -95.65270247513156, + 34.444744237643626 + ], + [ + -95.4413247859954, + 34.1314891834267 + ], + [ + -95.22994709685925, + 34.444744237643626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.22994709685925, + 34.444744237643626 + ], + [ + -95.4413247859954, + 34.1314891834267 + ], + [ + -95.01856940772309, + 34.1314891834267 + ], + [ + -95.22994709685925, + 34.444744237643626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.22994709685925, + 34.444744237643626 + ], + [ + -95.01856940772309, + 34.1314891834267 + ], + [ + -94.80719171858694, + 34.444744237643626 + ], + [ + -95.22994709685925, + 34.444744237643626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.22994709685925, + 35.07125434607748 + ], + [ + -94.80719171858694, + 35.07125434607748 + ], + [ + -95.01856940772309, + 35.384509400294405 + ], + [ + -95.22994709685925, + 35.07125434607748 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.22994709685925, + 35.07125434607748 + ], + [ + -95.01856940772309, + 35.384509400294405 + ], + [ + -95.4413247859954, + 35.384509400294405 + ], + [ + -95.22994709685925, + 35.07125434607748 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.22994709685925, + 35.07125434607748 + ], + [ + -95.4413247859954, + 35.384509400294405 + ], + [ + -95.65270247513156, + 35.07125434607748 + ], + [ + -95.22994709685925, + 35.07125434607748 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.22994709685925, + 35.07125434607748 + ], + [ + -95.65270247513156, + 35.07125434607748 + ], + [ + -95.4413247859954, + 34.75799929186056 + ], + [ + -95.22994709685925, + 35.07125434607748 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.22994709685925, + 35.07125434607748 + ], + [ + -95.4413247859954, + 34.75799929186056 + ], + [ + -95.01856940772309, + 34.75799929186056 + ], + [ + -95.22994709685925, + 35.07125434607748 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.22994709685925, + 35.07125434607748 + ], + [ + -95.01856940772309, + 34.75799929186056 + ], + [ + -94.80719171858694, + 35.07125434607748 + ], + [ + -95.22994709685925, + 35.07125434607748 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.22994709685925, + 35.697764454511336 + ], + [ + -94.80719171858694, + 35.697764454511336 + ], + [ + -95.01856940772309, + 36.01101950872826 + ], + [ + -95.22994709685925, + 35.697764454511336 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.22994709685925, + 35.697764454511336 + ], + [ + -95.01856940772309, + 36.01101950872826 + ], + [ + -95.4413247859954, + 36.01101950872826 + ], + [ + -95.22994709685925, + 35.697764454511336 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.22994709685925, + 35.697764454511336 + ], + [ + -95.4413247859954, + 36.01101950872826 + ], + [ + -95.65270247513156, + 35.697764454511336 + ], + [ + -95.22994709685925, + 35.697764454511336 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.22994709685925, + 35.697764454511336 + ], + [ + -95.65270247513156, + 35.697764454511336 + ], + [ + -95.4413247859954, + 35.38450940029441 + ], + [ + -95.22994709685925, + 35.697764454511336 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.22994709685925, + 35.697764454511336 + ], + [ + -95.4413247859954, + 35.38450940029441 + ], + [ + -95.01856940772309, + 35.38450940029441 + ], + [ + -95.22994709685925, + 35.697764454511336 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.22994709685925, + 35.697764454511336 + ], + [ + -95.01856940772309, + 35.38450940029441 + ], + [ + -94.80719171858694, + 35.697764454511336 + ], + [ + -95.22994709685925, + 35.697764454511336 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.22994709685925, + 36.324274562945185 + ], + [ + -94.80719171858694, + 36.324274562945185 + ], + [ + -95.01856940772309, + 36.63752961716211 + ], + [ + -95.22994709685925, + 36.324274562945185 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.22994709685925, + 36.324274562945185 + ], + [ + -95.01856940772309, + 36.63752961716211 + ], + [ + -95.4413247859954, + 36.63752961716211 + ], + [ + -95.22994709685925, + 36.324274562945185 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.22994709685925, + 36.324274562945185 + ], + [ + -95.4413247859954, + 36.63752961716211 + ], + [ + -95.65270247513156, + 36.324274562945185 + ], + [ + -95.22994709685925, + 36.324274562945185 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.22994709685925, + 36.324274562945185 + ], + [ + -95.65270247513156, + 36.324274562945185 + ], + [ + -95.4413247859954, + 36.01101950872826 + ], + [ + -95.22994709685925, + 36.324274562945185 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.22994709685925, + 36.324274562945185 + ], + [ + -95.4413247859954, + 36.01101950872826 + ], + [ + -95.01856940772309, + 36.01101950872826 + ], + [ + -95.22994709685925, + 36.324274562945185 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.22994709685925, + 36.324274562945185 + ], + [ + -95.01856940772309, + 36.01101950872826 + ], + [ + -94.80719171858694, + 36.324274562945185 + ], + [ + -95.22994709685925, + 36.324274562945185 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.22994709685925, + 36.95078467137904 + ], + [ + -94.80719171858694, + 36.95078467137904 + ], + [ + -95.01856940772309, + 37.264039725595964 + ], + [ + -95.22994709685925, + 36.95078467137904 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.22994709685925, + 36.95078467137904 + ], + [ + -95.01856940772309, + 37.264039725595964 + ], + [ + -95.4413247859954, + 37.264039725595964 + ], + [ + -95.22994709685925, + 36.95078467137904 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.22994709685925, + 36.95078467137904 + ], + [ + -95.4413247859954, + 37.264039725595964 + ], + [ + -95.65270247513156, + 36.95078467137904 + ], + [ + -95.22994709685925, + 36.95078467137904 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.22994709685925, + 36.95078467137904 + ], + [ + -95.65270247513156, + 36.95078467137904 + ], + [ + -95.4413247859954, + 36.637529617162116 + ], + [ + -95.22994709685925, + 36.95078467137904 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.22994709685925, + 36.95078467137904 + ], + [ + -95.4413247859954, + 36.637529617162116 + ], + [ + -95.01856940772309, + 36.637529617162116 + ], + [ + -95.22994709685925, + 36.95078467137904 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.22994709685925, + 36.95078467137904 + ], + [ + -95.01856940772309, + 36.637529617162116 + ], + [ + -94.80719171858694, + 36.95078467137904 + ], + [ + -95.22994709685925, + 36.95078467137904 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.22994709685925, + 37.577294779812895 + ], + [ + -94.80719171858694, + 37.577294779812895 + ], + [ + -95.01856940772309, + 37.89054983402982 + ], + [ + -95.22994709685925, + 37.577294779812895 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.22994709685925, + 37.577294779812895 + ], + [ + -95.01856940772309, + 37.89054983402982 + ], + [ + -95.4413247859954, + 37.89054983402982 + ], + [ + -95.22994709685925, + 37.577294779812895 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.22994709685925, + 37.577294779812895 + ], + [ + -95.4413247859954, + 37.89054983402982 + ], + [ + -95.65270247513156, + 37.577294779812895 + ], + [ + -95.22994709685925, + 37.577294779812895 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.22994709685925, + 37.577294779812895 + ], + [ + -95.65270247513156, + 37.577294779812895 + ], + [ + -95.4413247859954, + 37.26403972559597 + ], + [ + -95.22994709685925, + 37.577294779812895 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.22994709685925, + 37.577294779812895 + ], + [ + -95.4413247859954, + 37.26403972559597 + ], + [ + -95.01856940772309, + 37.26403972559597 + ], + [ + -95.22994709685925, + 37.577294779812895 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.22994709685925, + 37.577294779812895 + ], + [ + -95.01856940772309, + 37.26403972559597 + ], + [ + -94.80719171858694, + 37.577294779812895 + ], + [ + -95.22994709685925, + 37.577294779812895 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.22994709685925, + 38.20380488824675 + ], + [ + -94.80719171858694, + 38.20380488824675 + ], + [ + -95.01856940772309, + 38.517059942463675 + ], + [ + -95.22994709685925, + 38.20380488824675 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.22994709685925, + 38.20380488824675 + ], + [ + -95.01856940772309, + 38.517059942463675 + ], + [ + -95.4413247859954, + 38.517059942463675 + ], + [ + -95.22994709685925, + 38.20380488824675 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.22994709685925, + 38.20380488824675 + ], + [ + -95.4413247859954, + 38.517059942463675 + ], + [ + -95.65270247513156, + 38.20380488824675 + ], + [ + -95.22994709685925, + 38.20380488824675 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.22994709685925, + 38.20380488824675 + ], + [ + -95.65270247513156, + 38.20380488824675 + ], + [ + -95.4413247859954, + 37.89054983402983 + ], + [ + -95.22994709685925, + 38.20380488824675 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.22994709685925, + 38.20380488824675 + ], + [ + -95.4413247859954, + 37.89054983402983 + ], + [ + -95.01856940772309, + 37.89054983402983 + ], + [ + -95.22994709685925, + 38.20380488824675 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.22994709685925, + 38.20380488824675 + ], + [ + -95.01856940772309, + 37.89054983402983 + ], + [ + -94.80719171858694, + 38.20380488824675 + ], + [ + -95.22994709685925, + 38.20380488824675 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.22994709685925, + 38.830314996680606 + ], + [ + -94.80719171858694, + 38.830314996680606 + ], + [ + -95.01856940772309, + 39.14357005089753 + ], + [ + -95.22994709685925, + 38.830314996680606 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.22994709685925, + 38.830314996680606 + ], + [ + -95.01856940772309, + 39.14357005089753 + ], + [ + -95.4413247859954, + 39.14357005089753 + ], + [ + -95.22994709685925, + 38.830314996680606 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.22994709685925, + 38.830314996680606 + ], + [ + -95.4413247859954, + 39.14357005089753 + ], + [ + -95.65270247513156, + 38.830314996680606 + ], + [ + -95.22994709685925, + 38.830314996680606 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.22994709685925, + 38.830314996680606 + ], + [ + -95.65270247513156, + 38.830314996680606 + ], + [ + -95.4413247859954, + 38.51705994246368 + ], + [ + -95.22994709685925, + 38.830314996680606 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.22994709685925, + 38.830314996680606 + ], + [ + -95.4413247859954, + 38.51705994246368 + ], + [ + -95.01856940772309, + 38.51705994246368 + ], + [ + -95.22994709685925, + 38.830314996680606 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.22994709685925, + 38.830314996680606 + ], + [ + -95.01856940772309, + 38.51705994246368 + ], + [ + -94.80719171858694, + 38.830314996680606 + ], + [ + -95.22994709685925, + 38.830314996680606 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.22994709685925, + 39.45682510511446 + ], + [ + -94.80719171858694, + 39.45682510511446 + ], + [ + -95.01856940772309, + 39.770080159331386 + ], + [ + -95.22994709685925, + 39.45682510511446 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.22994709685925, + 39.45682510511446 + ], + [ + -95.01856940772309, + 39.770080159331386 + ], + [ + -95.4413247859954, + 39.770080159331386 + ], + [ + -95.22994709685925, + 39.45682510511446 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.22994709685925, + 39.45682510511446 + ], + [ + -95.4413247859954, + 39.770080159331386 + ], + [ + -95.65270247513156, + 39.45682510511446 + ], + [ + -95.22994709685925, + 39.45682510511446 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.22994709685925, + 39.45682510511446 + ], + [ + -95.65270247513156, + 39.45682510511446 + ], + [ + -95.4413247859954, + 39.14357005089754 + ], + [ + -95.22994709685925, + 39.45682510511446 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.22994709685925, + 39.45682510511446 + ], + [ + -95.4413247859954, + 39.14357005089754 + ], + [ + -95.01856940772309, + 39.14357005089754 + ], + [ + -95.22994709685925, + 39.45682510511446 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.22994709685925, + 39.45682510511446 + ], + [ + -95.01856940772309, + 39.14357005089754 + ], + [ + -94.80719171858694, + 39.45682510511446 + ], + [ + -95.22994709685925, + 39.45682510511446 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.22994709685925, + 40.08333521354832 + ], + [ + -94.80719171858694, + 40.08333521354832 + ], + [ + -95.01856940772309, + 40.39659026776524 + ], + [ + -95.22994709685925, + 40.08333521354832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.22994709685925, + 40.08333521354832 + ], + [ + -95.01856940772309, + 40.39659026776524 + ], + [ + -95.4413247859954, + 40.39659026776524 + ], + [ + -95.22994709685925, + 40.08333521354832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.22994709685925, + 40.08333521354832 + ], + [ + -95.4413247859954, + 40.39659026776524 + ], + [ + -95.65270247513156, + 40.08333521354832 + ], + [ + -95.22994709685925, + 40.08333521354832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.22994709685925, + 40.08333521354832 + ], + [ + -95.65270247513156, + 40.08333521354832 + ], + [ + -95.4413247859954, + 39.77008015933139 + ], + [ + -95.22994709685925, + 40.08333521354832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.22994709685925, + 40.08333521354832 + ], + [ + -95.4413247859954, + 39.77008015933139 + ], + [ + -95.01856940772309, + 39.77008015933139 + ], + [ + -95.22994709685925, + 40.08333521354832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.22994709685925, + 40.08333521354832 + ], + [ + -95.01856940772309, + 39.77008015933139 + ], + [ + -94.80719171858694, + 40.08333521354832 + ], + [ + -95.22994709685925, + 40.08333521354832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.22994709685925, + 40.70984532198217 + ], + [ + -94.80719171858694, + 40.70984532198217 + ], + [ + -95.01856940772309, + 41.023100376199096 + ], + [ + -95.22994709685925, + 40.70984532198217 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.22994709685925, + 40.70984532198217 + ], + [ + -95.01856940772309, + 41.023100376199096 + ], + [ + -95.4413247859954, + 41.023100376199096 + ], + [ + -95.22994709685925, + 40.70984532198217 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.22994709685925, + 40.70984532198217 + ], + [ + -95.4413247859954, + 41.023100376199096 + ], + [ + -95.65270247513156, + 40.70984532198217 + ], + [ + -95.22994709685925, + 40.70984532198217 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.22994709685925, + 40.70984532198217 + ], + [ + -95.65270247513156, + 40.70984532198217 + ], + [ + -95.4413247859954, + 40.39659026776525 + ], + [ + -95.22994709685925, + 40.70984532198217 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.22994709685925, + 40.70984532198217 + ], + [ + -95.4413247859954, + 40.39659026776525 + ], + [ + -95.01856940772309, + 40.39659026776525 + ], + [ + -95.22994709685925, + 40.70984532198217 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.22994709685925, + 40.70984532198217 + ], + [ + -95.01856940772309, + 40.39659026776525 + ], + [ + -94.80719171858694, + 40.70984532198217 + ], + [ + -95.22994709685925, + 40.70984532198217 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.59581402945078, + 30.99893864125743 + ], + [ + -94.17305865117847, + 30.99893864125743 + ], + [ + -94.38443634031462, + 31.312193695474356 + ], + [ + -94.59581402945078, + 30.99893864125743 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.59581402945078, + 30.99893864125743 + ], + [ + -94.38443634031462, + 31.312193695474356 + ], + [ + -94.80719171858694, + 31.312193695474356 + ], + [ + -94.59581402945078, + 30.99893864125743 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.59581402945078, + 30.99893864125743 + ], + [ + -94.80719171858694, + 31.312193695474356 + ], + [ + -95.01856940772309, + 30.99893864125743 + ], + [ + -94.59581402945078, + 30.99893864125743 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.59581402945078, + 30.99893864125743 + ], + [ + -95.01856940772309, + 30.99893864125743 + ], + [ + -94.80719171858694, + 30.6856835870405 + ], + [ + -94.59581402945078, + 30.99893864125743 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.59581402945078, + 30.99893864125743 + ], + [ + -94.80719171858694, + 30.6856835870405 + ], + [ + -94.38443634031462, + 30.6856835870405 + ], + [ + -94.59581402945078, + 30.99893864125743 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.59581402945078, + 30.99893864125743 + ], + [ + -94.38443634031462, + 30.6856835870405 + ], + [ + -94.17305865117847, + 30.99893864125743 + ], + [ + -94.59581402945078, + 30.99893864125743 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.59581402945078, + 31.62544874969128 + ], + [ + -94.17305865117847, + 31.62544874969128 + ], + [ + -94.38443634031462, + 31.938703803908208 + ], + [ + -94.59581402945078, + 31.62544874969128 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.59581402945078, + 31.62544874969128 + ], + [ + -94.38443634031462, + 31.938703803908208 + ], + [ + -94.80719171858694, + 31.938703803908208 + ], + [ + -94.59581402945078, + 31.62544874969128 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.59581402945078, + 31.62544874969128 + ], + [ + -94.80719171858694, + 31.938703803908208 + ], + [ + -95.01856940772309, + 31.62544874969128 + ], + [ + -94.59581402945078, + 31.62544874969128 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.59581402945078, + 31.62544874969128 + ], + [ + -95.01856940772309, + 31.62544874969128 + ], + [ + -94.80719171858694, + 31.312193695474352 + ], + [ + -94.59581402945078, + 31.62544874969128 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.59581402945078, + 31.62544874969128 + ], + [ + -94.80719171858694, + 31.312193695474352 + ], + [ + -94.38443634031462, + 31.312193695474352 + ], + [ + -94.59581402945078, + 31.62544874969128 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.59581402945078, + 31.62544874969128 + ], + [ + -94.38443634031462, + 31.312193695474352 + ], + [ + -94.17305865117847, + 31.62544874969128 + ], + [ + -94.59581402945078, + 31.62544874969128 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.59581402945078, + 32.251958858125136 + ], + [ + -94.17305865117847, + 32.251958858125136 + ], + [ + -94.38443634031462, + 32.56521391234206 + ], + [ + -94.59581402945078, + 32.251958858125136 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.59581402945078, + 32.251958858125136 + ], + [ + -94.38443634031462, + 32.56521391234206 + ], + [ + -94.80719171858694, + 32.56521391234206 + ], + [ + -94.59581402945078, + 32.251958858125136 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.59581402945078, + 32.251958858125136 + ], + [ + -94.80719171858694, + 32.56521391234206 + ], + [ + -95.01856940772309, + 32.251958858125136 + ], + [ + -94.59581402945078, + 32.251958858125136 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.59581402945078, + 32.251958858125136 + ], + [ + -95.01856940772309, + 32.251958858125136 + ], + [ + -94.80719171858694, + 31.938703803908208 + ], + [ + -94.59581402945078, + 32.251958858125136 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.59581402945078, + 32.251958858125136 + ], + [ + -94.80719171858694, + 31.938703803908208 + ], + [ + -94.38443634031462, + 31.938703803908208 + ], + [ + -94.59581402945078, + 32.251958858125136 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.59581402945078, + 32.251958858125136 + ], + [ + -94.38443634031462, + 31.938703803908208 + ], + [ + -94.17305865117847, + 32.251958858125136 + ], + [ + -94.59581402945078, + 32.251958858125136 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.59581402945078, + 32.87846896655899 + ], + [ + -94.17305865117847, + 32.87846896655899 + ], + [ + -94.38443634031462, + 33.191724020775915 + ], + [ + -94.59581402945078, + 32.87846896655899 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.59581402945078, + 32.87846896655899 + ], + [ + -94.38443634031462, + 33.191724020775915 + ], + [ + -94.80719171858694, + 33.191724020775915 + ], + [ + -94.59581402945078, + 32.87846896655899 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.59581402945078, + 32.87846896655899 + ], + [ + -94.80719171858694, + 33.191724020775915 + ], + [ + -95.01856940772309, + 32.87846896655899 + ], + [ + -94.59581402945078, + 32.87846896655899 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.59581402945078, + 32.87846896655899 + ], + [ + -95.01856940772309, + 32.87846896655899 + ], + [ + -94.80719171858694, + 32.56521391234207 + ], + [ + -94.59581402945078, + 32.87846896655899 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.59581402945078, + 32.87846896655899 + ], + [ + -94.80719171858694, + 32.56521391234207 + ], + [ + -94.38443634031462, + 32.56521391234207 + ], + [ + -94.59581402945078, + 32.87846896655899 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.59581402945078, + 32.87846896655899 + ], + [ + -94.38443634031462, + 32.56521391234207 + ], + [ + -94.17305865117847, + 32.87846896655899 + ], + [ + -94.59581402945078, + 32.87846896655899 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.59581402945078, + 33.504979074992846 + ], + [ + -94.17305865117847, + 33.504979074992846 + ], + [ + -94.38443634031462, + 33.81823412920977 + ], + [ + -94.59581402945078, + 33.504979074992846 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.59581402945078, + 33.504979074992846 + ], + [ + -94.38443634031462, + 33.81823412920977 + ], + [ + -94.80719171858694, + 33.81823412920977 + ], + [ + -94.59581402945078, + 33.504979074992846 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.59581402945078, + 33.504979074992846 + ], + [ + -94.80719171858694, + 33.81823412920977 + ], + [ + -95.01856940772309, + 33.504979074992846 + ], + [ + -94.59581402945078, + 33.504979074992846 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.59581402945078, + 33.504979074992846 + ], + [ + -95.01856940772309, + 33.504979074992846 + ], + [ + -94.80719171858694, + 33.19172402077592 + ], + [ + -94.59581402945078, + 33.504979074992846 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.59581402945078, + 33.504979074992846 + ], + [ + -94.80719171858694, + 33.19172402077592 + ], + [ + -94.38443634031462, + 33.19172402077592 + ], + [ + -94.59581402945078, + 33.504979074992846 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.59581402945078, + 33.504979074992846 + ], + [ + -94.38443634031462, + 33.19172402077592 + ], + [ + -94.17305865117847, + 33.504979074992846 + ], + [ + -94.59581402945078, + 33.504979074992846 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.59581402945078, + 34.1314891834267 + ], + [ + -94.17305865117847, + 34.1314891834267 + ], + [ + -94.38443634031462, + 34.444744237643626 + ], + [ + -94.59581402945078, + 34.1314891834267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.59581402945078, + 34.1314891834267 + ], + [ + -94.38443634031462, + 34.444744237643626 + ], + [ + -94.80719171858694, + 34.444744237643626 + ], + [ + -94.59581402945078, + 34.1314891834267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.59581402945078, + 34.1314891834267 + ], + [ + -94.80719171858694, + 34.444744237643626 + ], + [ + -95.01856940772309, + 34.1314891834267 + ], + [ + -94.59581402945078, + 34.1314891834267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.59581402945078, + 34.1314891834267 + ], + [ + -95.01856940772309, + 34.1314891834267 + ], + [ + -94.80719171858694, + 33.81823412920978 + ], + [ + -94.59581402945078, + 34.1314891834267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.59581402945078, + 34.1314891834267 + ], + [ + -94.80719171858694, + 33.81823412920978 + ], + [ + -94.38443634031462, + 33.81823412920978 + ], + [ + -94.59581402945078, + 34.1314891834267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.59581402945078, + 34.1314891834267 + ], + [ + -94.38443634031462, + 33.81823412920978 + ], + [ + -94.17305865117847, + 34.1314891834267 + ], + [ + -94.59581402945078, + 34.1314891834267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.59581402945078, + 34.75799929186056 + ], + [ + -94.17305865117847, + 34.75799929186056 + ], + [ + -94.38443634031462, + 35.07125434607748 + ], + [ + -94.59581402945078, + 34.75799929186056 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.59581402945078, + 34.75799929186056 + ], + [ + -94.38443634031462, + 35.07125434607748 + ], + [ + -94.80719171858694, + 35.07125434607748 + ], + [ + -94.59581402945078, + 34.75799929186056 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.59581402945078, + 34.75799929186056 + ], + [ + -94.80719171858694, + 35.07125434607748 + ], + [ + -95.01856940772309, + 34.75799929186056 + ], + [ + -94.59581402945078, + 34.75799929186056 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.59581402945078, + 34.75799929186056 + ], + [ + -95.01856940772309, + 34.75799929186056 + ], + [ + -94.80719171858694, + 34.44474423764363 + ], + [ + -94.59581402945078, + 34.75799929186056 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.59581402945078, + 34.75799929186056 + ], + [ + -94.80719171858694, + 34.44474423764363 + ], + [ + -94.38443634031462, + 34.44474423764363 + ], + [ + -94.59581402945078, + 34.75799929186056 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.59581402945078, + 34.75799929186056 + ], + [ + -94.38443634031462, + 34.44474423764363 + ], + [ + -94.17305865117847, + 34.75799929186056 + ], + [ + -94.59581402945078, + 34.75799929186056 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.59581402945078, + 35.38450940029441 + ], + [ + -94.17305865117847, + 35.38450940029441 + ], + [ + -94.38443634031462, + 35.697764454511336 + ], + [ + -94.59581402945078, + 35.38450940029441 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.59581402945078, + 35.38450940029441 + ], + [ + -94.38443634031462, + 35.697764454511336 + ], + [ + -94.80719171858694, + 35.697764454511336 + ], + [ + -94.59581402945078, + 35.38450940029441 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.59581402945078, + 35.38450940029441 + ], + [ + -94.80719171858694, + 35.697764454511336 + ], + [ + -95.01856940772309, + 35.38450940029441 + ], + [ + -94.59581402945078, + 35.38450940029441 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.59581402945078, + 35.38450940029441 + ], + [ + -95.01856940772309, + 35.38450940029441 + ], + [ + -94.80719171858694, + 35.07125434607749 + ], + [ + -94.59581402945078, + 35.38450940029441 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.59581402945078, + 35.38450940029441 + ], + [ + -94.80719171858694, + 35.07125434607749 + ], + [ + -94.38443634031462, + 35.07125434607749 + ], + [ + -94.59581402945078, + 35.38450940029441 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.59581402945078, + 35.38450940029441 + ], + [ + -94.38443634031462, + 35.07125434607749 + ], + [ + -94.17305865117847, + 35.38450940029441 + ], + [ + -94.59581402945078, + 35.38450940029441 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.59581402945078, + 36.01101950872826 + ], + [ + -94.17305865117847, + 36.01101950872826 + ], + [ + -94.38443634031462, + 36.324274562945185 + ], + [ + -94.59581402945078, + 36.01101950872826 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.59581402945078, + 36.01101950872826 + ], + [ + -94.38443634031462, + 36.324274562945185 + ], + [ + -94.80719171858694, + 36.324274562945185 + ], + [ + -94.59581402945078, + 36.01101950872826 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.59581402945078, + 36.01101950872826 + ], + [ + -94.80719171858694, + 36.324274562945185 + ], + [ + -95.01856940772309, + 36.01101950872826 + ], + [ + -94.59581402945078, + 36.01101950872826 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.59581402945078, + 36.01101950872826 + ], + [ + -95.01856940772309, + 36.01101950872826 + ], + [ + -94.80719171858694, + 35.697764454511336 + ], + [ + -94.59581402945078, + 36.01101950872826 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.59581402945078, + 36.01101950872826 + ], + [ + -94.80719171858694, + 35.697764454511336 + ], + [ + -94.38443634031462, + 35.697764454511336 + ], + [ + -94.59581402945078, + 36.01101950872826 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.59581402945078, + 36.01101950872826 + ], + [ + -94.38443634031462, + 35.697764454511336 + ], + [ + -94.17305865117847, + 36.01101950872826 + ], + [ + -94.59581402945078, + 36.01101950872826 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.59581402945078, + 36.637529617162116 + ], + [ + -94.17305865117847, + 36.637529617162116 + ], + [ + -94.38443634031462, + 36.95078467137904 + ], + [ + -94.59581402945078, + 36.637529617162116 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.59581402945078, + 36.637529617162116 + ], + [ + -94.38443634031462, + 36.95078467137904 + ], + [ + -94.80719171858694, + 36.95078467137904 + ], + [ + -94.59581402945078, + 36.637529617162116 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.59581402945078, + 36.637529617162116 + ], + [ + -94.80719171858694, + 36.95078467137904 + ], + [ + -95.01856940772309, + 36.637529617162116 + ], + [ + -94.59581402945078, + 36.637529617162116 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.59581402945078, + 36.637529617162116 + ], + [ + -95.01856940772309, + 36.637529617162116 + ], + [ + -94.80719171858694, + 36.32427456294519 + ], + [ + -94.59581402945078, + 36.637529617162116 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.59581402945078, + 36.637529617162116 + ], + [ + -94.80719171858694, + 36.32427456294519 + ], + [ + -94.38443634031462, + 36.32427456294519 + ], + [ + -94.59581402945078, + 36.637529617162116 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.59581402945078, + 36.637529617162116 + ], + [ + -94.38443634031462, + 36.32427456294519 + ], + [ + -94.17305865117847, + 36.637529617162116 + ], + [ + -94.59581402945078, + 36.637529617162116 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.59581402945078, + 37.26403972559597 + ], + [ + -94.17305865117847, + 37.26403972559597 + ], + [ + -94.38443634031462, + 37.577294779812895 + ], + [ + -94.59581402945078, + 37.26403972559597 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.59581402945078, + 37.26403972559597 + ], + [ + -94.38443634031462, + 37.577294779812895 + ], + [ + -94.80719171858694, + 37.577294779812895 + ], + [ + -94.59581402945078, + 37.26403972559597 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.59581402945078, + 37.26403972559597 + ], + [ + -94.80719171858694, + 37.577294779812895 + ], + [ + -95.01856940772309, + 37.26403972559597 + ], + [ + -94.59581402945078, + 37.26403972559597 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.59581402945078, + 37.26403972559597 + ], + [ + -95.01856940772309, + 37.26403972559597 + ], + [ + -94.80719171858694, + 36.95078467137905 + ], + [ + -94.59581402945078, + 37.26403972559597 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.59581402945078, + 37.26403972559597 + ], + [ + -94.80719171858694, + 36.95078467137905 + ], + [ + -94.38443634031462, + 36.95078467137905 + ], + [ + -94.59581402945078, + 37.26403972559597 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.59581402945078, + 37.26403972559597 + ], + [ + -94.38443634031462, + 36.95078467137905 + ], + [ + -94.17305865117847, + 37.26403972559597 + ], + [ + -94.59581402945078, + 37.26403972559597 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.59581402945078, + 37.89054983402983 + ], + [ + -94.17305865117847, + 37.89054983402983 + ], + [ + -94.38443634031462, + 38.20380488824675 + ], + [ + -94.59581402945078, + 37.89054983402983 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.59581402945078, + 37.89054983402983 + ], + [ + -94.38443634031462, + 38.20380488824675 + ], + [ + -94.80719171858694, + 38.20380488824675 + ], + [ + -94.59581402945078, + 37.89054983402983 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.59581402945078, + 37.89054983402983 + ], + [ + -94.80719171858694, + 38.20380488824675 + ], + [ + -95.01856940772309, + 37.89054983402983 + ], + [ + -94.59581402945078, + 37.89054983402983 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.59581402945078, + 37.89054983402983 + ], + [ + -95.01856940772309, + 37.89054983402983 + ], + [ + -94.80719171858694, + 37.5772947798129 + ], + [ + -94.59581402945078, + 37.89054983402983 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.59581402945078, + 37.89054983402983 + ], + [ + -94.80719171858694, + 37.5772947798129 + ], + [ + -94.38443634031462, + 37.5772947798129 + ], + [ + -94.59581402945078, + 37.89054983402983 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.59581402945078, + 37.89054983402983 + ], + [ + -94.38443634031462, + 37.5772947798129 + ], + [ + -94.17305865117847, + 37.89054983402983 + ], + [ + -94.59581402945078, + 37.89054983402983 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.59581402945078, + 38.51705994246368 + ], + [ + -94.17305865117847, + 38.51705994246368 + ], + [ + -94.38443634031462, + 38.830314996680606 + ], + [ + -94.59581402945078, + 38.51705994246368 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.59581402945078, + 38.51705994246368 + ], + [ + -94.38443634031462, + 38.830314996680606 + ], + [ + -94.80719171858694, + 38.830314996680606 + ], + [ + -94.59581402945078, + 38.51705994246368 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.59581402945078, + 38.51705994246368 + ], + [ + -94.80719171858694, + 38.830314996680606 + ], + [ + -95.01856940772309, + 38.51705994246368 + ], + [ + -94.59581402945078, + 38.51705994246368 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.59581402945078, + 38.51705994246368 + ], + [ + -95.01856940772309, + 38.51705994246368 + ], + [ + -94.80719171858694, + 38.20380488824676 + ], + [ + -94.59581402945078, + 38.51705994246368 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.59581402945078, + 38.51705994246368 + ], + [ + -94.80719171858694, + 38.20380488824676 + ], + [ + -94.38443634031462, + 38.20380488824676 + ], + [ + -94.59581402945078, + 38.51705994246368 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.59581402945078, + 38.51705994246368 + ], + [ + -94.38443634031462, + 38.20380488824676 + ], + [ + -94.17305865117847, + 38.51705994246368 + ], + [ + -94.59581402945078, + 38.51705994246368 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.59581402945078, + 39.14357005089754 + ], + [ + -94.17305865117847, + 39.14357005089754 + ], + [ + -94.38443634031462, + 39.45682510511446 + ], + [ + -94.59581402945078, + 39.14357005089754 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.59581402945078, + 39.14357005089754 + ], + [ + -94.38443634031462, + 39.45682510511446 + ], + [ + -94.80719171858694, + 39.45682510511446 + ], + [ + -94.59581402945078, + 39.14357005089754 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.59581402945078, + 39.14357005089754 + ], + [ + -94.80719171858694, + 39.45682510511446 + ], + [ + -95.01856940772309, + 39.14357005089754 + ], + [ + -94.59581402945078, + 39.14357005089754 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.59581402945078, + 39.14357005089754 + ], + [ + -95.01856940772309, + 39.14357005089754 + ], + [ + -94.80719171858694, + 38.83031499668061 + ], + [ + -94.59581402945078, + 39.14357005089754 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.59581402945078, + 39.14357005089754 + ], + [ + -94.80719171858694, + 38.83031499668061 + ], + [ + -94.38443634031462, + 38.83031499668061 + ], + [ + -94.59581402945078, + 39.14357005089754 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.59581402945078, + 39.14357005089754 + ], + [ + -94.38443634031462, + 38.83031499668061 + ], + [ + -94.17305865117847, + 39.14357005089754 + ], + [ + -94.59581402945078, + 39.14357005089754 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.59581402945078, + 39.77008015933139 + ], + [ + -94.17305865117847, + 39.77008015933139 + ], + [ + -94.38443634031462, + 40.08333521354832 + ], + [ + -94.59581402945078, + 39.77008015933139 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.59581402945078, + 39.77008015933139 + ], + [ + -94.38443634031462, + 40.08333521354832 + ], + [ + -94.80719171858694, + 40.08333521354832 + ], + [ + -94.59581402945078, + 39.77008015933139 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.59581402945078, + 39.77008015933139 + ], + [ + -94.80719171858694, + 40.08333521354832 + ], + [ + -95.01856940772309, + 39.77008015933139 + ], + [ + -94.59581402945078, + 39.77008015933139 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.59581402945078, + 39.77008015933139 + ], + [ + -95.01856940772309, + 39.77008015933139 + ], + [ + -94.80719171858694, + 39.45682510511447 + ], + [ + -94.59581402945078, + 39.77008015933139 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.59581402945078, + 39.77008015933139 + ], + [ + -94.80719171858694, + 39.45682510511447 + ], + [ + -94.38443634031462, + 39.45682510511447 + ], + [ + -94.59581402945078, + 39.77008015933139 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.59581402945078, + 39.77008015933139 + ], + [ + -94.38443634031462, + 39.45682510511447 + ], + [ + -94.17305865117847, + 39.77008015933139 + ], + [ + -94.59581402945078, + 39.77008015933139 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.59581402945078, + 40.39659026776525 + ], + [ + -94.17305865117847, + 40.39659026776525 + ], + [ + -94.38443634031462, + 40.70984532198217 + ], + [ + -94.59581402945078, + 40.39659026776525 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.59581402945078, + 40.39659026776525 + ], + [ + -94.38443634031462, + 40.70984532198217 + ], + [ + -94.80719171858694, + 40.70984532198217 + ], + [ + -94.59581402945078, + 40.39659026776525 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.59581402945078, + 40.39659026776525 + ], + [ + -94.80719171858694, + 40.70984532198217 + ], + [ + -95.01856940772309, + 40.39659026776525 + ], + [ + -94.59581402945078, + 40.39659026776525 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.59581402945078, + 40.39659026776525 + ], + [ + -95.01856940772309, + 40.39659026776525 + ], + [ + -94.80719171858694, + 40.083335213548324 + ], + [ + -94.59581402945078, + 40.39659026776525 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.59581402945078, + 40.39659026776525 + ], + [ + -94.80719171858694, + 40.083335213548324 + ], + [ + -94.38443634031462, + 40.083335213548324 + ], + [ + -94.59581402945078, + 40.39659026776525 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.59581402945078, + 40.39659026776525 + ], + [ + -94.38443634031462, + 40.083335213548324 + ], + [ + -94.17305865117847, + 40.39659026776525 + ], + [ + -94.59581402945078, + 40.39659026776525 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.96168096204232, + 31.312193695474356 + ], + [ + -93.53892558377001, + 31.312193695474356 + ], + [ + -93.75030327290617, + 31.625448749691284 + ], + [ + -93.96168096204232, + 31.312193695474356 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.96168096204232, + 31.312193695474356 + ], + [ + -93.75030327290617, + 31.625448749691284 + ], + [ + -94.17305865117848, + 31.625448749691284 + ], + [ + -93.96168096204232, + 31.312193695474356 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.96168096204232, + 31.312193695474356 + ], + [ + -94.17305865117848, + 31.625448749691284 + ], + [ + -94.38443634031464, + 31.312193695474356 + ], + [ + -93.96168096204232, + 31.312193695474356 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.96168096204232, + 31.312193695474356 + ], + [ + -94.38443634031464, + 31.312193695474356 + ], + [ + -94.17305865117848, + 30.99893864125743 + ], + [ + -93.96168096204232, + 31.312193695474356 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.96168096204232, + 31.312193695474356 + ], + [ + -94.17305865117848, + 30.99893864125743 + ], + [ + -93.75030327290617, + 30.99893864125743 + ], + [ + -93.96168096204232, + 31.312193695474356 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.96168096204232, + 31.312193695474356 + ], + [ + -93.75030327290617, + 30.99893864125743 + ], + [ + -93.53892558377001, + 31.312193695474356 + ], + [ + -93.96168096204232, + 31.312193695474356 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.96168096204232, + 31.938703803908208 + ], + [ + -93.53892558377001, + 31.938703803908208 + ], + [ + -93.75030327290617, + 32.251958858125136 + ], + [ + -93.96168096204232, + 31.938703803908208 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.96168096204232, + 31.938703803908208 + ], + [ + -93.75030327290617, + 32.251958858125136 + ], + [ + -94.17305865117848, + 32.251958858125136 + ], + [ + -93.96168096204232, + 31.938703803908208 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.96168096204232, + 31.938703803908208 + ], + [ + -94.17305865117848, + 32.251958858125136 + ], + [ + -94.38443634031464, + 31.938703803908208 + ], + [ + -93.96168096204232, + 31.938703803908208 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.96168096204232, + 31.938703803908208 + ], + [ + -94.38443634031464, + 31.938703803908208 + ], + [ + -94.17305865117848, + 31.62544874969128 + ], + [ + -93.96168096204232, + 31.938703803908208 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.96168096204232, + 31.938703803908208 + ], + [ + -94.17305865117848, + 31.62544874969128 + ], + [ + -93.75030327290617, + 31.62544874969128 + ], + [ + -93.96168096204232, + 31.938703803908208 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.96168096204232, + 31.938703803908208 + ], + [ + -93.75030327290617, + 31.62544874969128 + ], + [ + -93.53892558377001, + 31.938703803908208 + ], + [ + -93.96168096204232, + 31.938703803908208 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.96168096204232, + 32.56521391234206 + ], + [ + -93.53892558377001, + 32.56521391234206 + ], + [ + -93.75030327290617, + 32.878468966558984 + ], + [ + -93.96168096204232, + 32.56521391234206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.96168096204232, + 32.56521391234206 + ], + [ + -93.75030327290617, + 32.878468966558984 + ], + [ + -94.17305865117848, + 32.878468966558984 + ], + [ + -93.96168096204232, + 32.56521391234206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.96168096204232, + 32.56521391234206 + ], + [ + -94.17305865117848, + 32.878468966558984 + ], + [ + -94.38443634031464, + 32.56521391234206 + ], + [ + -93.96168096204232, + 32.56521391234206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.96168096204232, + 32.56521391234206 + ], + [ + -94.38443634031464, + 32.56521391234206 + ], + [ + -94.17305865117848, + 32.251958858125136 + ], + [ + -93.96168096204232, + 32.56521391234206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.96168096204232, + 32.56521391234206 + ], + [ + -94.17305865117848, + 32.251958858125136 + ], + [ + -93.75030327290617, + 32.251958858125136 + ], + [ + -93.96168096204232, + 32.56521391234206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.96168096204232, + 32.56521391234206 + ], + [ + -93.75030327290617, + 32.251958858125136 + ], + [ + -93.53892558377001, + 32.56521391234206 + ], + [ + -93.96168096204232, + 32.56521391234206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.96168096204232, + 33.191724020775915 + ], + [ + -93.53892558377001, + 33.191724020775915 + ], + [ + -93.75030327290617, + 33.50497907499284 + ], + [ + -93.96168096204232, + 33.191724020775915 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.96168096204232, + 33.191724020775915 + ], + [ + -93.75030327290617, + 33.50497907499284 + ], + [ + -94.17305865117848, + 33.50497907499284 + ], + [ + -93.96168096204232, + 33.191724020775915 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.96168096204232, + 33.191724020775915 + ], + [ + -94.17305865117848, + 33.50497907499284 + ], + [ + -94.38443634031464, + 33.191724020775915 + ], + [ + -93.96168096204232, + 33.191724020775915 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.96168096204232, + 33.191724020775915 + ], + [ + -94.38443634031464, + 33.191724020775915 + ], + [ + -94.17305865117848, + 32.87846896655899 + ], + [ + -93.96168096204232, + 33.191724020775915 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.96168096204232, + 33.191724020775915 + ], + [ + -94.17305865117848, + 32.87846896655899 + ], + [ + -93.75030327290617, + 32.87846896655899 + ], + [ + -93.96168096204232, + 33.191724020775915 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.96168096204232, + 33.191724020775915 + ], + [ + -93.75030327290617, + 32.87846896655899 + ], + [ + -93.53892558377001, + 33.191724020775915 + ], + [ + -93.96168096204232, + 33.191724020775915 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.96168096204232, + 33.81823412920977 + ], + [ + -93.53892558377001, + 33.81823412920977 + ], + [ + -93.75030327290617, + 34.131489183426694 + ], + [ + -93.96168096204232, + 33.81823412920977 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.96168096204232, + 33.81823412920977 + ], + [ + -93.75030327290617, + 34.131489183426694 + ], + [ + -94.17305865117848, + 34.131489183426694 + ], + [ + -93.96168096204232, + 33.81823412920977 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.96168096204232, + 33.81823412920977 + ], + [ + -94.17305865117848, + 34.131489183426694 + ], + [ + -94.38443634031464, + 33.81823412920977 + ], + [ + -93.96168096204232, + 33.81823412920977 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.96168096204232, + 33.81823412920977 + ], + [ + -94.38443634031464, + 33.81823412920977 + ], + [ + -94.17305865117848, + 33.504979074992846 + ], + [ + -93.96168096204232, + 33.81823412920977 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.96168096204232, + 33.81823412920977 + ], + [ + -94.17305865117848, + 33.504979074992846 + ], + [ + -93.75030327290617, + 33.504979074992846 + ], + [ + -93.96168096204232, + 33.81823412920977 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.96168096204232, + 33.81823412920977 + ], + [ + -93.75030327290617, + 33.504979074992846 + ], + [ + -93.53892558377001, + 33.81823412920977 + ], + [ + -93.96168096204232, + 33.81823412920977 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.96168096204232, + 34.444744237643626 + ], + [ + -93.53892558377001, + 34.444744237643626 + ], + [ + -93.75030327290617, + 34.75799929186055 + ], + [ + -93.96168096204232, + 34.444744237643626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.96168096204232, + 34.444744237643626 + ], + [ + -93.75030327290617, + 34.75799929186055 + ], + [ + -94.17305865117848, + 34.75799929186055 + ], + [ + -93.96168096204232, + 34.444744237643626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.96168096204232, + 34.444744237643626 + ], + [ + -94.17305865117848, + 34.75799929186055 + ], + [ + -94.38443634031464, + 34.444744237643626 + ], + [ + -93.96168096204232, + 34.444744237643626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.96168096204232, + 34.444744237643626 + ], + [ + -94.38443634031464, + 34.444744237643626 + ], + [ + -94.17305865117848, + 34.1314891834267 + ], + [ + -93.96168096204232, + 34.444744237643626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.96168096204232, + 34.444744237643626 + ], + [ + -94.17305865117848, + 34.1314891834267 + ], + [ + -93.75030327290617, + 34.1314891834267 + ], + [ + -93.96168096204232, + 34.444744237643626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.96168096204232, + 34.444744237643626 + ], + [ + -93.75030327290617, + 34.1314891834267 + ], + [ + -93.53892558377001, + 34.444744237643626 + ], + [ + -93.96168096204232, + 34.444744237643626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.96168096204232, + 35.07125434607748 + ], + [ + -93.53892558377001, + 35.07125434607748 + ], + [ + -93.75030327290617, + 35.384509400294405 + ], + [ + -93.96168096204232, + 35.07125434607748 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.96168096204232, + 35.07125434607748 + ], + [ + -93.75030327290617, + 35.384509400294405 + ], + [ + -94.17305865117848, + 35.384509400294405 + ], + [ + -93.96168096204232, + 35.07125434607748 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.96168096204232, + 35.07125434607748 + ], + [ + -94.17305865117848, + 35.384509400294405 + ], + [ + -94.38443634031464, + 35.07125434607748 + ], + [ + -93.96168096204232, + 35.07125434607748 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.96168096204232, + 35.07125434607748 + ], + [ + -94.38443634031464, + 35.07125434607748 + ], + [ + -94.17305865117848, + 34.75799929186056 + ], + [ + -93.96168096204232, + 35.07125434607748 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.96168096204232, + 35.07125434607748 + ], + [ + -94.17305865117848, + 34.75799929186056 + ], + [ + -93.75030327290617, + 34.75799929186056 + ], + [ + -93.96168096204232, + 35.07125434607748 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.96168096204232, + 35.07125434607748 + ], + [ + -93.75030327290617, + 34.75799929186056 + ], + [ + -93.53892558377001, + 35.07125434607748 + ], + [ + -93.96168096204232, + 35.07125434607748 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.96168096204232, + 35.697764454511336 + ], + [ + -93.53892558377001, + 35.697764454511336 + ], + [ + -93.75030327290617, + 36.01101950872826 + ], + [ + -93.96168096204232, + 35.697764454511336 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.96168096204232, + 35.697764454511336 + ], + [ + -93.75030327290617, + 36.01101950872826 + ], + [ + -94.17305865117848, + 36.01101950872826 + ], + [ + -93.96168096204232, + 35.697764454511336 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.96168096204232, + 35.697764454511336 + ], + [ + -94.17305865117848, + 36.01101950872826 + ], + [ + -94.38443634031464, + 35.697764454511336 + ], + [ + -93.96168096204232, + 35.697764454511336 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.96168096204232, + 35.697764454511336 + ], + [ + -94.38443634031464, + 35.697764454511336 + ], + [ + -94.17305865117848, + 35.38450940029441 + ], + [ + -93.96168096204232, + 35.697764454511336 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.96168096204232, + 35.697764454511336 + ], + [ + -94.17305865117848, + 35.38450940029441 + ], + [ + -93.75030327290617, + 35.38450940029441 + ], + [ + -93.96168096204232, + 35.697764454511336 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.96168096204232, + 35.697764454511336 + ], + [ + -93.75030327290617, + 35.38450940029441 + ], + [ + -93.53892558377001, + 35.697764454511336 + ], + [ + -93.96168096204232, + 35.697764454511336 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.96168096204232, + 36.324274562945185 + ], + [ + -93.53892558377001, + 36.324274562945185 + ], + [ + -93.75030327290617, + 36.63752961716211 + ], + [ + -93.96168096204232, + 36.324274562945185 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.96168096204232, + 36.324274562945185 + ], + [ + -93.75030327290617, + 36.63752961716211 + ], + [ + -94.17305865117848, + 36.63752961716211 + ], + [ + -93.96168096204232, + 36.324274562945185 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.96168096204232, + 36.324274562945185 + ], + [ + -94.17305865117848, + 36.63752961716211 + ], + [ + -94.38443634031464, + 36.324274562945185 + ], + [ + -93.96168096204232, + 36.324274562945185 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.96168096204232, + 36.324274562945185 + ], + [ + -94.38443634031464, + 36.324274562945185 + ], + [ + -94.17305865117848, + 36.01101950872826 + ], + [ + -93.96168096204232, + 36.324274562945185 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.96168096204232, + 36.324274562945185 + ], + [ + -94.17305865117848, + 36.01101950872826 + ], + [ + -93.75030327290617, + 36.01101950872826 + ], + [ + -93.96168096204232, + 36.324274562945185 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.96168096204232, + 36.324274562945185 + ], + [ + -93.75030327290617, + 36.01101950872826 + ], + [ + -93.53892558377001, + 36.324274562945185 + ], + [ + -93.96168096204232, + 36.324274562945185 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.96168096204232, + 36.95078467137904 + ], + [ + -93.53892558377001, + 36.95078467137904 + ], + [ + -93.75030327290617, + 37.264039725595964 + ], + [ + -93.96168096204232, + 36.95078467137904 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.96168096204232, + 36.95078467137904 + ], + [ + -93.75030327290617, + 37.264039725595964 + ], + [ + -94.17305865117848, + 37.264039725595964 + ], + [ + -93.96168096204232, + 36.95078467137904 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.96168096204232, + 36.95078467137904 + ], + [ + -94.17305865117848, + 37.264039725595964 + ], + [ + -94.38443634031464, + 36.95078467137904 + ], + [ + -93.96168096204232, + 36.95078467137904 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.96168096204232, + 36.95078467137904 + ], + [ + -94.38443634031464, + 36.95078467137904 + ], + [ + -94.17305865117848, + 36.637529617162116 + ], + [ + -93.96168096204232, + 36.95078467137904 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.96168096204232, + 36.95078467137904 + ], + [ + -94.17305865117848, + 36.637529617162116 + ], + [ + -93.75030327290617, + 36.637529617162116 + ], + [ + -93.96168096204232, + 36.95078467137904 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.96168096204232, + 36.95078467137904 + ], + [ + -93.75030327290617, + 36.637529617162116 + ], + [ + -93.53892558377001, + 36.95078467137904 + ], + [ + -93.96168096204232, + 36.95078467137904 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.96168096204232, + 37.577294779812895 + ], + [ + -93.53892558377001, + 37.577294779812895 + ], + [ + -93.75030327290617, + 37.89054983402982 + ], + [ + -93.96168096204232, + 37.577294779812895 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.96168096204232, + 37.577294779812895 + ], + [ + -93.75030327290617, + 37.89054983402982 + ], + [ + -94.17305865117848, + 37.89054983402982 + ], + [ + -93.96168096204232, + 37.577294779812895 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.96168096204232, + 37.577294779812895 + ], + [ + -94.17305865117848, + 37.89054983402982 + ], + [ + -94.38443634031464, + 37.577294779812895 + ], + [ + -93.96168096204232, + 37.577294779812895 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.96168096204232, + 37.577294779812895 + ], + [ + -94.38443634031464, + 37.577294779812895 + ], + [ + -94.17305865117848, + 37.26403972559597 + ], + [ + -93.96168096204232, + 37.577294779812895 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.96168096204232, + 37.577294779812895 + ], + [ + -94.17305865117848, + 37.26403972559597 + ], + [ + -93.75030327290617, + 37.26403972559597 + ], + [ + -93.96168096204232, + 37.577294779812895 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.96168096204232, + 37.577294779812895 + ], + [ + -93.75030327290617, + 37.26403972559597 + ], + [ + -93.53892558377001, + 37.577294779812895 + ], + [ + -93.96168096204232, + 37.577294779812895 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.96168096204232, + 38.20380488824675 + ], + [ + -93.53892558377001, + 38.20380488824675 + ], + [ + -93.75030327290617, + 38.517059942463675 + ], + [ + -93.96168096204232, + 38.20380488824675 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.96168096204232, + 38.20380488824675 + ], + [ + -93.75030327290617, + 38.517059942463675 + ], + [ + -94.17305865117848, + 38.517059942463675 + ], + [ + -93.96168096204232, + 38.20380488824675 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.96168096204232, + 38.20380488824675 + ], + [ + -94.17305865117848, + 38.517059942463675 + ], + [ + -94.38443634031464, + 38.20380488824675 + ], + [ + -93.96168096204232, + 38.20380488824675 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.96168096204232, + 38.20380488824675 + ], + [ + -94.38443634031464, + 38.20380488824675 + ], + [ + -94.17305865117848, + 37.89054983402983 + ], + [ + -93.96168096204232, + 38.20380488824675 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.96168096204232, + 38.20380488824675 + ], + [ + -94.17305865117848, + 37.89054983402983 + ], + [ + -93.75030327290617, + 37.89054983402983 + ], + [ + -93.96168096204232, + 38.20380488824675 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.96168096204232, + 38.20380488824675 + ], + [ + -93.75030327290617, + 37.89054983402983 + ], + [ + -93.53892558377001, + 38.20380488824675 + ], + [ + -93.96168096204232, + 38.20380488824675 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.96168096204232, + 38.830314996680606 + ], + [ + -93.53892558377001, + 38.830314996680606 + ], + [ + -93.75030327290617, + 39.14357005089753 + ], + [ + -93.96168096204232, + 38.830314996680606 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.96168096204232, + 38.830314996680606 + ], + [ + -93.75030327290617, + 39.14357005089753 + ], + [ + -94.17305865117848, + 39.14357005089753 + ], + [ + -93.96168096204232, + 38.830314996680606 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.96168096204232, + 38.830314996680606 + ], + [ + -94.17305865117848, + 39.14357005089753 + ], + [ + -94.38443634031464, + 38.830314996680606 + ], + [ + -93.96168096204232, + 38.830314996680606 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.96168096204232, + 38.830314996680606 + ], + [ + -94.38443634031464, + 38.830314996680606 + ], + [ + -94.17305865117848, + 38.51705994246368 + ], + [ + -93.96168096204232, + 38.830314996680606 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.96168096204232, + 38.830314996680606 + ], + [ + -94.17305865117848, + 38.51705994246368 + ], + [ + -93.75030327290617, + 38.51705994246368 + ], + [ + -93.96168096204232, + 38.830314996680606 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.96168096204232, + 38.830314996680606 + ], + [ + -93.75030327290617, + 38.51705994246368 + ], + [ + -93.53892558377001, + 38.830314996680606 + ], + [ + -93.96168096204232, + 38.830314996680606 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.96168096204232, + 39.45682510511446 + ], + [ + -93.53892558377001, + 39.45682510511446 + ], + [ + -93.75030327290617, + 39.770080159331386 + ], + [ + -93.96168096204232, + 39.45682510511446 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.96168096204232, + 39.45682510511446 + ], + [ + -93.75030327290617, + 39.770080159331386 + ], + [ + -94.17305865117848, + 39.770080159331386 + ], + [ + -93.96168096204232, + 39.45682510511446 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.96168096204232, + 39.45682510511446 + ], + [ + -94.17305865117848, + 39.770080159331386 + ], + [ + -94.38443634031464, + 39.45682510511446 + ], + [ + -93.96168096204232, + 39.45682510511446 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.96168096204232, + 39.45682510511446 + ], + [ + -94.38443634031464, + 39.45682510511446 + ], + [ + -94.17305865117848, + 39.14357005089754 + ], + [ + -93.96168096204232, + 39.45682510511446 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.96168096204232, + 39.45682510511446 + ], + [ + -94.17305865117848, + 39.14357005089754 + ], + [ + -93.75030327290617, + 39.14357005089754 + ], + [ + -93.96168096204232, + 39.45682510511446 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.96168096204232, + 39.45682510511446 + ], + [ + -93.75030327290617, + 39.14357005089754 + ], + [ + -93.53892558377001, + 39.45682510511446 + ], + [ + -93.96168096204232, + 39.45682510511446 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.96168096204232, + 40.08333521354832 + ], + [ + -93.53892558377001, + 40.08333521354832 + ], + [ + -93.75030327290617, + 40.39659026776524 + ], + [ + -93.96168096204232, + 40.08333521354832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.96168096204232, + 40.08333521354832 + ], + [ + -93.75030327290617, + 40.39659026776524 + ], + [ + -94.17305865117848, + 40.39659026776524 + ], + [ + -93.96168096204232, + 40.08333521354832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.96168096204232, + 40.08333521354832 + ], + [ + -94.17305865117848, + 40.39659026776524 + ], + [ + -94.38443634031464, + 40.08333521354832 + ], + [ + -93.96168096204232, + 40.08333521354832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.96168096204232, + 40.08333521354832 + ], + [ + -94.38443634031464, + 40.08333521354832 + ], + [ + -94.17305865117848, + 39.77008015933139 + ], + [ + -93.96168096204232, + 40.08333521354832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.96168096204232, + 40.08333521354832 + ], + [ + -94.17305865117848, + 39.77008015933139 + ], + [ + -93.75030327290617, + 39.77008015933139 + ], + [ + -93.96168096204232, + 40.08333521354832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.96168096204232, + 40.08333521354832 + ], + [ + -93.75030327290617, + 39.77008015933139 + ], + [ + -93.53892558377001, + 40.08333521354832 + ], + [ + -93.96168096204232, + 40.08333521354832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.96168096204232, + 40.70984532198217 + ], + [ + -93.53892558377001, + 40.70984532198217 + ], + [ + -93.75030327290617, + 41.023100376199096 + ], + [ + -93.96168096204232, + 40.70984532198217 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.96168096204232, + 40.70984532198217 + ], + [ + -93.75030327290617, + 41.023100376199096 + ], + [ + -94.17305865117848, + 41.023100376199096 + ], + [ + -93.96168096204232, + 40.70984532198217 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.96168096204232, + 40.70984532198217 + ], + [ + -94.17305865117848, + 41.023100376199096 + ], + [ + -94.38443634031464, + 40.70984532198217 + ], + [ + -93.96168096204232, + 40.70984532198217 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.96168096204232, + 40.70984532198217 + ], + [ + -94.38443634031464, + 40.70984532198217 + ], + [ + -94.17305865117848, + 40.39659026776525 + ], + [ + -93.96168096204232, + 40.70984532198217 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.96168096204232, + 40.70984532198217 + ], + [ + -94.17305865117848, + 40.39659026776525 + ], + [ + -93.75030327290617, + 40.39659026776525 + ], + [ + -93.96168096204232, + 40.70984532198217 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.96168096204232, + 40.70984532198217 + ], + [ + -93.75030327290617, + 40.39659026776525 + ], + [ + -93.53892558377001, + 40.70984532198217 + ], + [ + -93.96168096204232, + 40.70984532198217 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.32754789463385, + 30.99893864125743 + ], + [ + -92.90479251636154, + 30.99893864125743 + ], + [ + -93.1161702054977, + 31.312193695474356 + ], + [ + -93.32754789463385, + 30.99893864125743 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.32754789463385, + 30.99893864125743 + ], + [ + -93.1161702054977, + 31.312193695474356 + ], + [ + -93.53892558377001, + 31.312193695474356 + ], + [ + -93.32754789463385, + 30.99893864125743 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.32754789463385, + 30.99893864125743 + ], + [ + -93.53892558377001, + 31.312193695474356 + ], + [ + -93.75030327290617, + 30.99893864125743 + ], + [ + -93.32754789463385, + 30.99893864125743 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.32754789463385, + 30.99893864125743 + ], + [ + -93.75030327290617, + 30.99893864125743 + ], + [ + -93.53892558377001, + 30.6856835870405 + ], + [ + -93.32754789463385, + 30.99893864125743 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.32754789463385, + 30.99893864125743 + ], + [ + -93.53892558377001, + 30.6856835870405 + ], + [ + -93.1161702054977, + 30.6856835870405 + ], + [ + -93.32754789463385, + 30.99893864125743 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.32754789463385, + 30.99893864125743 + ], + [ + -93.1161702054977, + 30.6856835870405 + ], + [ + -92.90479251636154, + 30.99893864125743 + ], + [ + -93.32754789463385, + 30.99893864125743 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.32754789463385, + 31.62544874969128 + ], + [ + -92.90479251636154, + 31.62544874969128 + ], + [ + -93.1161702054977, + 31.938703803908208 + ], + [ + -93.32754789463385, + 31.62544874969128 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.32754789463385, + 31.62544874969128 + ], + [ + -93.1161702054977, + 31.938703803908208 + ], + [ + -93.53892558377001, + 31.938703803908208 + ], + [ + -93.32754789463385, + 31.62544874969128 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.32754789463385, + 31.62544874969128 + ], + [ + -93.53892558377001, + 31.938703803908208 + ], + [ + -93.75030327290617, + 31.62544874969128 + ], + [ + -93.32754789463385, + 31.62544874969128 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.32754789463385, + 31.62544874969128 + ], + [ + -93.75030327290617, + 31.62544874969128 + ], + [ + -93.53892558377001, + 31.312193695474352 + ], + [ + -93.32754789463385, + 31.62544874969128 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.32754789463385, + 31.62544874969128 + ], + [ + -93.53892558377001, + 31.312193695474352 + ], + [ + -93.1161702054977, + 31.312193695474352 + ], + [ + -93.32754789463385, + 31.62544874969128 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.32754789463385, + 31.62544874969128 + ], + [ + -93.1161702054977, + 31.312193695474352 + ], + [ + -92.90479251636154, + 31.62544874969128 + ], + [ + -93.32754789463385, + 31.62544874969128 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.32754789463385, + 32.251958858125136 + ], + [ + -92.90479251636154, + 32.251958858125136 + ], + [ + -93.1161702054977, + 32.56521391234206 + ], + [ + -93.32754789463385, + 32.251958858125136 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.32754789463385, + 32.251958858125136 + ], + [ + -93.1161702054977, + 32.56521391234206 + ], + [ + -93.53892558377001, + 32.56521391234206 + ], + [ + -93.32754789463385, + 32.251958858125136 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.32754789463385, + 32.251958858125136 + ], + [ + -93.53892558377001, + 32.56521391234206 + ], + [ + -93.75030327290617, + 32.251958858125136 + ], + [ + -93.32754789463385, + 32.251958858125136 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.32754789463385, + 32.251958858125136 + ], + [ + -93.75030327290617, + 32.251958858125136 + ], + [ + -93.53892558377001, + 31.938703803908208 + ], + [ + -93.32754789463385, + 32.251958858125136 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.32754789463385, + 32.251958858125136 + ], + [ + -93.53892558377001, + 31.938703803908208 + ], + [ + -93.1161702054977, + 31.938703803908208 + ], + [ + -93.32754789463385, + 32.251958858125136 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.32754789463385, + 32.251958858125136 + ], + [ + -93.1161702054977, + 31.938703803908208 + ], + [ + -92.90479251636154, + 32.251958858125136 + ], + [ + -93.32754789463385, + 32.251958858125136 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.32754789463385, + 32.87846896655899 + ], + [ + -92.90479251636154, + 32.87846896655899 + ], + [ + -93.1161702054977, + 33.191724020775915 + ], + [ + -93.32754789463385, + 32.87846896655899 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.32754789463385, + 32.87846896655899 + ], + [ + -93.1161702054977, + 33.191724020775915 + ], + [ + -93.53892558377001, + 33.191724020775915 + ], + [ + -93.32754789463385, + 32.87846896655899 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.32754789463385, + 32.87846896655899 + ], + [ + -93.53892558377001, + 33.191724020775915 + ], + [ + -93.75030327290617, + 32.87846896655899 + ], + [ + -93.32754789463385, + 32.87846896655899 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.32754789463385, + 32.87846896655899 + ], + [ + -93.75030327290617, + 32.87846896655899 + ], + [ + -93.53892558377001, + 32.56521391234207 + ], + [ + -93.32754789463385, + 32.87846896655899 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.32754789463385, + 32.87846896655899 + ], + [ + -93.53892558377001, + 32.56521391234207 + ], + [ + -93.1161702054977, + 32.56521391234207 + ], + [ + -93.32754789463385, + 32.87846896655899 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.32754789463385, + 32.87846896655899 + ], + [ + -93.1161702054977, + 32.56521391234207 + ], + [ + -92.90479251636154, + 32.87846896655899 + ], + [ + -93.32754789463385, + 32.87846896655899 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.32754789463385, + 33.504979074992846 + ], + [ + -92.90479251636154, + 33.504979074992846 + ], + [ + -93.1161702054977, + 33.81823412920977 + ], + [ + -93.32754789463385, + 33.504979074992846 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.32754789463385, + 33.504979074992846 + ], + [ + -93.1161702054977, + 33.81823412920977 + ], + [ + -93.53892558377001, + 33.81823412920977 + ], + [ + -93.32754789463385, + 33.504979074992846 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.32754789463385, + 33.504979074992846 + ], + [ + -93.53892558377001, + 33.81823412920977 + ], + [ + -93.75030327290617, + 33.504979074992846 + ], + [ + -93.32754789463385, + 33.504979074992846 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.32754789463385, + 33.504979074992846 + ], + [ + -93.75030327290617, + 33.504979074992846 + ], + [ + -93.53892558377001, + 33.19172402077592 + ], + [ + -93.32754789463385, + 33.504979074992846 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.32754789463385, + 33.504979074992846 + ], + [ + -93.53892558377001, + 33.19172402077592 + ], + [ + -93.1161702054977, + 33.19172402077592 + ], + [ + -93.32754789463385, + 33.504979074992846 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.32754789463385, + 33.504979074992846 + ], + [ + -93.1161702054977, + 33.19172402077592 + ], + [ + -92.90479251636154, + 33.504979074992846 + ], + [ + -93.32754789463385, + 33.504979074992846 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.32754789463385, + 34.1314891834267 + ], + [ + -92.90479251636154, + 34.1314891834267 + ], + [ + -93.1161702054977, + 34.444744237643626 + ], + [ + -93.32754789463385, + 34.1314891834267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.32754789463385, + 34.1314891834267 + ], + [ + -93.1161702054977, + 34.444744237643626 + ], + [ + -93.53892558377001, + 34.444744237643626 + ], + [ + -93.32754789463385, + 34.1314891834267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.32754789463385, + 34.1314891834267 + ], + [ + -93.53892558377001, + 34.444744237643626 + ], + [ + -93.75030327290617, + 34.1314891834267 + ], + [ + -93.32754789463385, + 34.1314891834267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.32754789463385, + 34.1314891834267 + ], + [ + -93.75030327290617, + 34.1314891834267 + ], + [ + -93.53892558377001, + 33.81823412920978 + ], + [ + -93.32754789463385, + 34.1314891834267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.32754789463385, + 34.1314891834267 + ], + [ + -93.53892558377001, + 33.81823412920978 + ], + [ + -93.1161702054977, + 33.81823412920978 + ], + [ + -93.32754789463385, + 34.1314891834267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.32754789463385, + 34.1314891834267 + ], + [ + -93.1161702054977, + 33.81823412920978 + ], + [ + -92.90479251636154, + 34.1314891834267 + ], + [ + -93.32754789463385, + 34.1314891834267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.32754789463385, + 34.75799929186056 + ], + [ + -92.90479251636154, + 34.75799929186056 + ], + [ + -93.1161702054977, + 35.07125434607748 + ], + [ + -93.32754789463385, + 34.75799929186056 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.32754789463385, + 34.75799929186056 + ], + [ + -93.1161702054977, + 35.07125434607748 + ], + [ + -93.53892558377001, + 35.07125434607748 + ], + [ + -93.32754789463385, + 34.75799929186056 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.32754789463385, + 34.75799929186056 + ], + [ + -93.53892558377001, + 35.07125434607748 + ], + [ + -93.75030327290617, + 34.75799929186056 + ], + [ + -93.32754789463385, + 34.75799929186056 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.32754789463385, + 34.75799929186056 + ], + [ + -93.75030327290617, + 34.75799929186056 + ], + [ + -93.53892558377001, + 34.44474423764363 + ], + [ + -93.32754789463385, + 34.75799929186056 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.32754789463385, + 34.75799929186056 + ], + [ + -93.53892558377001, + 34.44474423764363 + ], + [ + -93.1161702054977, + 34.44474423764363 + ], + [ + -93.32754789463385, + 34.75799929186056 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.32754789463385, + 34.75799929186056 + ], + [ + -93.1161702054977, + 34.44474423764363 + ], + [ + -92.90479251636154, + 34.75799929186056 + ], + [ + -93.32754789463385, + 34.75799929186056 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.32754789463385, + 35.38450940029441 + ], + [ + -92.90479251636154, + 35.38450940029441 + ], + [ + -93.1161702054977, + 35.697764454511336 + ], + [ + -93.32754789463385, + 35.38450940029441 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.32754789463385, + 35.38450940029441 + ], + [ + -93.1161702054977, + 35.697764454511336 + ], + [ + -93.53892558377001, + 35.697764454511336 + ], + [ + -93.32754789463385, + 35.38450940029441 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.32754789463385, + 35.38450940029441 + ], + [ + -93.53892558377001, + 35.697764454511336 + ], + [ + -93.75030327290617, + 35.38450940029441 + ], + [ + -93.32754789463385, + 35.38450940029441 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.32754789463385, + 35.38450940029441 + ], + [ + -93.75030327290617, + 35.38450940029441 + ], + [ + -93.53892558377001, + 35.07125434607749 + ], + [ + -93.32754789463385, + 35.38450940029441 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.32754789463385, + 35.38450940029441 + ], + [ + -93.53892558377001, + 35.07125434607749 + ], + [ + -93.1161702054977, + 35.07125434607749 + ], + [ + -93.32754789463385, + 35.38450940029441 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.32754789463385, + 35.38450940029441 + ], + [ + -93.1161702054977, + 35.07125434607749 + ], + [ + -92.90479251636154, + 35.38450940029441 + ], + [ + -93.32754789463385, + 35.38450940029441 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.32754789463385, + 36.01101950872826 + ], + [ + -92.90479251636154, + 36.01101950872826 + ], + [ + -93.1161702054977, + 36.324274562945185 + ], + [ + -93.32754789463385, + 36.01101950872826 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.32754789463385, + 36.01101950872826 + ], + [ + -93.1161702054977, + 36.324274562945185 + ], + [ + -93.53892558377001, + 36.324274562945185 + ], + [ + -93.32754789463385, + 36.01101950872826 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.32754789463385, + 36.01101950872826 + ], + [ + -93.53892558377001, + 36.324274562945185 + ], + [ + -93.75030327290617, + 36.01101950872826 + ], + [ + -93.32754789463385, + 36.01101950872826 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.32754789463385, + 36.01101950872826 + ], + [ + -93.75030327290617, + 36.01101950872826 + ], + [ + -93.53892558377001, + 35.697764454511336 + ], + [ + -93.32754789463385, + 36.01101950872826 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.32754789463385, + 36.01101950872826 + ], + [ + -93.53892558377001, + 35.697764454511336 + ], + [ + -93.1161702054977, + 35.697764454511336 + ], + [ + -93.32754789463385, + 36.01101950872826 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.32754789463385, + 36.01101950872826 + ], + [ + -93.1161702054977, + 35.697764454511336 + ], + [ + -92.90479251636154, + 36.01101950872826 + ], + [ + -93.32754789463385, + 36.01101950872826 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.32754789463385, + 36.637529617162116 + ], + [ + -92.90479251636154, + 36.637529617162116 + ], + [ + -93.1161702054977, + 36.95078467137904 + ], + [ + -93.32754789463385, + 36.637529617162116 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.32754789463385, + 36.637529617162116 + ], + [ + -93.1161702054977, + 36.95078467137904 + ], + [ + -93.53892558377001, + 36.95078467137904 + ], + [ + -93.32754789463385, + 36.637529617162116 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.32754789463385, + 36.637529617162116 + ], + [ + -93.53892558377001, + 36.95078467137904 + ], + [ + -93.75030327290617, + 36.637529617162116 + ], + [ + -93.32754789463385, + 36.637529617162116 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.32754789463385, + 36.637529617162116 + ], + [ + -93.75030327290617, + 36.637529617162116 + ], + [ + -93.53892558377001, + 36.32427456294519 + ], + [ + -93.32754789463385, + 36.637529617162116 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.32754789463385, + 36.637529617162116 + ], + [ + -93.53892558377001, + 36.32427456294519 + ], + [ + -93.1161702054977, + 36.32427456294519 + ], + [ + -93.32754789463385, + 36.637529617162116 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.32754789463385, + 36.637529617162116 + ], + [ + -93.1161702054977, + 36.32427456294519 + ], + [ + -92.90479251636154, + 36.637529617162116 + ], + [ + -93.32754789463385, + 36.637529617162116 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.32754789463385, + 37.26403972559597 + ], + [ + -92.90479251636154, + 37.26403972559597 + ], + [ + -93.1161702054977, + 37.577294779812895 + ], + [ + -93.32754789463385, + 37.26403972559597 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.32754789463385, + 37.26403972559597 + ], + [ + -93.1161702054977, + 37.577294779812895 + ], + [ + -93.53892558377001, + 37.577294779812895 + ], + [ + -93.32754789463385, + 37.26403972559597 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.32754789463385, + 37.26403972559597 + ], + [ + -93.53892558377001, + 37.577294779812895 + ], + [ + -93.75030327290617, + 37.26403972559597 + ], + [ + -93.32754789463385, + 37.26403972559597 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.32754789463385, + 37.26403972559597 + ], + [ + -93.75030327290617, + 37.26403972559597 + ], + [ + -93.53892558377001, + 36.95078467137905 + ], + [ + -93.32754789463385, + 37.26403972559597 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.32754789463385, + 37.26403972559597 + ], + [ + -93.53892558377001, + 36.95078467137905 + ], + [ + -93.1161702054977, + 36.95078467137905 + ], + [ + -93.32754789463385, + 37.26403972559597 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.32754789463385, + 37.26403972559597 + ], + [ + -93.1161702054977, + 36.95078467137905 + ], + [ + -92.90479251636154, + 37.26403972559597 + ], + [ + -93.32754789463385, + 37.26403972559597 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.32754789463385, + 37.89054983402983 + ], + [ + -92.90479251636154, + 37.89054983402983 + ], + [ + -93.1161702054977, + 38.20380488824675 + ], + [ + -93.32754789463385, + 37.89054983402983 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.32754789463385, + 37.89054983402983 + ], + [ + -93.1161702054977, + 38.20380488824675 + ], + [ + -93.53892558377001, + 38.20380488824675 + ], + [ + -93.32754789463385, + 37.89054983402983 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.32754789463385, + 37.89054983402983 + ], + [ + -93.53892558377001, + 38.20380488824675 + ], + [ + -93.75030327290617, + 37.89054983402983 + ], + [ + -93.32754789463385, + 37.89054983402983 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.32754789463385, + 37.89054983402983 + ], + [ + -93.75030327290617, + 37.89054983402983 + ], + [ + -93.53892558377001, + 37.5772947798129 + ], + [ + -93.32754789463385, + 37.89054983402983 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.32754789463385, + 37.89054983402983 + ], + [ + -93.53892558377001, + 37.5772947798129 + ], + [ + -93.1161702054977, + 37.5772947798129 + ], + [ + -93.32754789463385, + 37.89054983402983 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.32754789463385, + 37.89054983402983 + ], + [ + -93.1161702054977, + 37.5772947798129 + ], + [ + -92.90479251636154, + 37.89054983402983 + ], + [ + -93.32754789463385, + 37.89054983402983 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.32754789463385, + 38.51705994246368 + ], + [ + -92.90479251636154, + 38.51705994246368 + ], + [ + -93.1161702054977, + 38.830314996680606 + ], + [ + -93.32754789463385, + 38.51705994246368 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.32754789463385, + 38.51705994246368 + ], + [ + -93.1161702054977, + 38.830314996680606 + ], + [ + -93.53892558377001, + 38.830314996680606 + ], + [ + -93.32754789463385, + 38.51705994246368 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.32754789463385, + 38.51705994246368 + ], + [ + -93.53892558377001, + 38.830314996680606 + ], + [ + -93.75030327290617, + 38.51705994246368 + ], + [ + -93.32754789463385, + 38.51705994246368 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.32754789463385, + 38.51705994246368 + ], + [ + -93.75030327290617, + 38.51705994246368 + ], + [ + -93.53892558377001, + 38.20380488824676 + ], + [ + -93.32754789463385, + 38.51705994246368 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.32754789463385, + 38.51705994246368 + ], + [ + -93.53892558377001, + 38.20380488824676 + ], + [ + -93.1161702054977, + 38.20380488824676 + ], + [ + -93.32754789463385, + 38.51705994246368 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.32754789463385, + 38.51705994246368 + ], + [ + -93.1161702054977, + 38.20380488824676 + ], + [ + -92.90479251636154, + 38.51705994246368 + ], + [ + -93.32754789463385, + 38.51705994246368 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.32754789463385, + 39.14357005089754 + ], + [ + -92.90479251636154, + 39.14357005089754 + ], + [ + -93.1161702054977, + 39.45682510511446 + ], + [ + -93.32754789463385, + 39.14357005089754 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.32754789463385, + 39.14357005089754 + ], + [ + -93.1161702054977, + 39.45682510511446 + ], + [ + -93.53892558377001, + 39.45682510511446 + ], + [ + -93.32754789463385, + 39.14357005089754 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.32754789463385, + 39.14357005089754 + ], + [ + -93.53892558377001, + 39.45682510511446 + ], + [ + -93.75030327290617, + 39.14357005089754 + ], + [ + -93.32754789463385, + 39.14357005089754 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.32754789463385, + 39.14357005089754 + ], + [ + -93.75030327290617, + 39.14357005089754 + ], + [ + -93.53892558377001, + 38.83031499668061 + ], + [ + -93.32754789463385, + 39.14357005089754 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.32754789463385, + 39.14357005089754 + ], + [ + -93.53892558377001, + 38.83031499668061 + ], + [ + -93.1161702054977, + 38.83031499668061 + ], + [ + -93.32754789463385, + 39.14357005089754 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.32754789463385, + 39.14357005089754 + ], + [ + -93.1161702054977, + 38.83031499668061 + ], + [ + -92.90479251636154, + 39.14357005089754 + ], + [ + -93.32754789463385, + 39.14357005089754 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.32754789463385, + 39.77008015933139 + ], + [ + -92.90479251636154, + 39.77008015933139 + ], + [ + -93.1161702054977, + 40.08333521354832 + ], + [ + -93.32754789463385, + 39.77008015933139 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.32754789463385, + 39.77008015933139 + ], + [ + -93.1161702054977, + 40.08333521354832 + ], + [ + -93.53892558377001, + 40.08333521354832 + ], + [ + -93.32754789463385, + 39.77008015933139 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.32754789463385, + 39.77008015933139 + ], + [ + -93.53892558377001, + 40.08333521354832 + ], + [ + -93.75030327290617, + 39.77008015933139 + ], + [ + -93.32754789463385, + 39.77008015933139 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.32754789463385, + 39.77008015933139 + ], + [ + -93.75030327290617, + 39.77008015933139 + ], + [ + -93.53892558377001, + 39.45682510511447 + ], + [ + -93.32754789463385, + 39.77008015933139 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.32754789463385, + 39.77008015933139 + ], + [ + -93.53892558377001, + 39.45682510511447 + ], + [ + -93.1161702054977, + 39.45682510511447 + ], + [ + -93.32754789463385, + 39.77008015933139 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.32754789463385, + 39.77008015933139 + ], + [ + -93.1161702054977, + 39.45682510511447 + ], + [ + -92.90479251636154, + 39.77008015933139 + ], + [ + -93.32754789463385, + 39.77008015933139 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.32754789463385, + 40.39659026776525 + ], + [ + -92.90479251636154, + 40.39659026776525 + ], + [ + -93.1161702054977, + 40.70984532198217 + ], + [ + -93.32754789463385, + 40.39659026776525 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.32754789463385, + 40.39659026776525 + ], + [ + -93.1161702054977, + 40.70984532198217 + ], + [ + -93.53892558377001, + 40.70984532198217 + ], + [ + -93.32754789463385, + 40.39659026776525 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.32754789463385, + 40.39659026776525 + ], + [ + -93.53892558377001, + 40.70984532198217 + ], + [ + -93.75030327290617, + 40.39659026776525 + ], + [ + -93.32754789463385, + 40.39659026776525 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.32754789463385, + 40.39659026776525 + ], + [ + -93.75030327290617, + 40.39659026776525 + ], + [ + -93.53892558377001, + 40.083335213548324 + ], + [ + -93.32754789463385, + 40.39659026776525 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.32754789463385, + 40.39659026776525 + ], + [ + -93.53892558377001, + 40.083335213548324 + ], + [ + -93.1161702054977, + 40.083335213548324 + ], + [ + -93.32754789463385, + 40.39659026776525 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.32754789463385, + 40.39659026776525 + ], + [ + -93.1161702054977, + 40.083335213548324 + ], + [ + -92.90479251636154, + 40.39659026776525 + ], + [ + -93.32754789463385, + 40.39659026776525 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.69341482722538, + 31.312193695474356 + ], + [ + -92.27065944895307, + 31.312193695474356 + ], + [ + -92.48203713808923, + 31.625448749691284 + ], + [ + -92.69341482722538, + 31.312193695474356 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.69341482722538, + 31.312193695474356 + ], + [ + -92.48203713808923, + 31.625448749691284 + ], + [ + -92.90479251636154, + 31.625448749691284 + ], + [ + -92.69341482722538, + 31.312193695474356 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.69341482722538, + 31.312193695474356 + ], + [ + -92.90479251636154, + 31.625448749691284 + ], + [ + -93.1161702054977, + 31.312193695474356 + ], + [ + -92.69341482722538, + 31.312193695474356 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.69341482722538, + 31.312193695474356 + ], + [ + -93.1161702054977, + 31.312193695474356 + ], + [ + -92.90479251636154, + 30.99893864125743 + ], + [ + -92.69341482722538, + 31.312193695474356 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.69341482722538, + 31.312193695474356 + ], + [ + -92.90479251636154, + 30.99893864125743 + ], + [ + -92.48203713808923, + 30.99893864125743 + ], + [ + -92.69341482722538, + 31.312193695474356 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.69341482722538, + 31.312193695474356 + ], + [ + -92.48203713808923, + 30.99893864125743 + ], + [ + -92.27065944895307, + 31.312193695474356 + ], + [ + -92.69341482722538, + 31.312193695474356 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.69341482722538, + 31.938703803908208 + ], + [ + -92.27065944895307, + 31.938703803908208 + ], + [ + -92.48203713808923, + 32.251958858125136 + ], + [ + -92.69341482722538, + 31.938703803908208 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.69341482722538, + 31.938703803908208 + ], + [ + -92.48203713808923, + 32.251958858125136 + ], + [ + -92.90479251636154, + 32.251958858125136 + ], + [ + -92.69341482722538, + 31.938703803908208 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.69341482722538, + 31.938703803908208 + ], + [ + -92.90479251636154, + 32.251958858125136 + ], + [ + -93.1161702054977, + 31.938703803908208 + ], + [ + -92.69341482722538, + 31.938703803908208 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.69341482722538, + 31.938703803908208 + ], + [ + -93.1161702054977, + 31.938703803908208 + ], + [ + -92.90479251636154, + 31.62544874969128 + ], + [ + -92.69341482722538, + 31.938703803908208 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.69341482722538, + 31.938703803908208 + ], + [ + -92.90479251636154, + 31.62544874969128 + ], + [ + -92.48203713808923, + 31.62544874969128 + ], + [ + -92.69341482722538, + 31.938703803908208 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.69341482722538, + 31.938703803908208 + ], + [ + -92.48203713808923, + 31.62544874969128 + ], + [ + -92.27065944895307, + 31.938703803908208 + ], + [ + -92.69341482722538, + 31.938703803908208 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.69341482722538, + 32.56521391234206 + ], + [ + -92.27065944895307, + 32.56521391234206 + ], + [ + -92.48203713808923, + 32.878468966558984 + ], + [ + -92.69341482722538, + 32.56521391234206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.69341482722538, + 32.56521391234206 + ], + [ + -92.48203713808923, + 32.878468966558984 + ], + [ + -92.90479251636154, + 32.878468966558984 + ], + [ + -92.69341482722538, + 32.56521391234206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.69341482722538, + 32.56521391234206 + ], + [ + -92.90479251636154, + 32.878468966558984 + ], + [ + -93.1161702054977, + 32.56521391234206 + ], + [ + -92.69341482722538, + 32.56521391234206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.69341482722538, + 32.56521391234206 + ], + [ + -93.1161702054977, + 32.56521391234206 + ], + [ + -92.90479251636154, + 32.251958858125136 + ], + [ + -92.69341482722538, + 32.56521391234206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.69341482722538, + 32.56521391234206 + ], + [ + -92.90479251636154, + 32.251958858125136 + ], + [ + -92.48203713808923, + 32.251958858125136 + ], + [ + -92.69341482722538, + 32.56521391234206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.69341482722538, + 32.56521391234206 + ], + [ + -92.48203713808923, + 32.251958858125136 + ], + [ + -92.27065944895307, + 32.56521391234206 + ], + [ + -92.69341482722538, + 32.56521391234206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.69341482722538, + 33.191724020775915 + ], + [ + -92.27065944895307, + 33.191724020775915 + ], + [ + -92.48203713808923, + 33.50497907499284 + ], + [ + -92.69341482722538, + 33.191724020775915 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.69341482722538, + 33.191724020775915 + ], + [ + -92.48203713808923, + 33.50497907499284 + ], + [ + -92.90479251636154, + 33.50497907499284 + ], + [ + -92.69341482722538, + 33.191724020775915 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.69341482722538, + 33.191724020775915 + ], + [ + -92.90479251636154, + 33.50497907499284 + ], + [ + -93.1161702054977, + 33.191724020775915 + ], + [ + -92.69341482722538, + 33.191724020775915 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.69341482722538, + 33.191724020775915 + ], + [ + -93.1161702054977, + 33.191724020775915 + ], + [ + -92.90479251636154, + 32.87846896655899 + ], + [ + -92.69341482722538, + 33.191724020775915 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.69341482722538, + 33.191724020775915 + ], + [ + -92.90479251636154, + 32.87846896655899 + ], + [ + -92.48203713808923, + 32.87846896655899 + ], + [ + -92.69341482722538, + 33.191724020775915 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.69341482722538, + 33.191724020775915 + ], + [ + -92.48203713808923, + 32.87846896655899 + ], + [ + -92.27065944895307, + 33.191724020775915 + ], + [ + -92.69341482722538, + 33.191724020775915 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.69341482722538, + 33.81823412920977 + ], + [ + -92.27065944895307, + 33.81823412920977 + ], + [ + -92.48203713808923, + 34.131489183426694 + ], + [ + -92.69341482722538, + 33.81823412920977 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.69341482722538, + 33.81823412920977 + ], + [ + -92.48203713808923, + 34.131489183426694 + ], + [ + -92.90479251636154, + 34.131489183426694 + ], + [ + -92.69341482722538, + 33.81823412920977 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.69341482722538, + 33.81823412920977 + ], + [ + -92.90479251636154, + 34.131489183426694 + ], + [ + -93.1161702054977, + 33.81823412920977 + ], + [ + -92.69341482722538, + 33.81823412920977 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.69341482722538, + 33.81823412920977 + ], + [ + -93.1161702054977, + 33.81823412920977 + ], + [ + -92.90479251636154, + 33.504979074992846 + ], + [ + -92.69341482722538, + 33.81823412920977 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.69341482722538, + 33.81823412920977 + ], + [ + -92.90479251636154, + 33.504979074992846 + ], + [ + -92.48203713808923, + 33.504979074992846 + ], + [ + -92.69341482722538, + 33.81823412920977 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.69341482722538, + 33.81823412920977 + ], + [ + -92.48203713808923, + 33.504979074992846 + ], + [ + -92.27065944895307, + 33.81823412920977 + ], + [ + -92.69341482722538, + 33.81823412920977 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.69341482722538, + 34.444744237643626 + ], + [ + -92.27065944895307, + 34.444744237643626 + ], + [ + -92.48203713808923, + 34.75799929186055 + ], + [ + -92.69341482722538, + 34.444744237643626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.69341482722538, + 34.444744237643626 + ], + [ + -92.48203713808923, + 34.75799929186055 + ], + [ + -92.90479251636154, + 34.75799929186055 + ], + [ + -92.69341482722538, + 34.444744237643626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.69341482722538, + 34.444744237643626 + ], + [ + -92.90479251636154, + 34.75799929186055 + ], + [ + -93.1161702054977, + 34.444744237643626 + ], + [ + -92.69341482722538, + 34.444744237643626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.69341482722538, + 34.444744237643626 + ], + [ + -93.1161702054977, + 34.444744237643626 + ], + [ + -92.90479251636154, + 34.1314891834267 + ], + [ + -92.69341482722538, + 34.444744237643626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.69341482722538, + 34.444744237643626 + ], + [ + -92.90479251636154, + 34.1314891834267 + ], + [ + -92.48203713808923, + 34.1314891834267 + ], + [ + -92.69341482722538, + 34.444744237643626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.69341482722538, + 34.444744237643626 + ], + [ + -92.48203713808923, + 34.1314891834267 + ], + [ + -92.27065944895307, + 34.444744237643626 + ], + [ + -92.69341482722538, + 34.444744237643626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.69341482722538, + 35.07125434607748 + ], + [ + -92.27065944895307, + 35.07125434607748 + ], + [ + -92.48203713808923, + 35.384509400294405 + ], + [ + -92.69341482722538, + 35.07125434607748 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.69341482722538, + 35.07125434607748 + ], + [ + -92.48203713808923, + 35.384509400294405 + ], + [ + -92.90479251636154, + 35.384509400294405 + ], + [ + -92.69341482722538, + 35.07125434607748 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.69341482722538, + 35.07125434607748 + ], + [ + -92.90479251636154, + 35.384509400294405 + ], + [ + -93.1161702054977, + 35.07125434607748 + ], + [ + -92.69341482722538, + 35.07125434607748 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.69341482722538, + 35.07125434607748 + ], + [ + -93.1161702054977, + 35.07125434607748 + ], + [ + -92.90479251636154, + 34.75799929186056 + ], + [ + -92.69341482722538, + 35.07125434607748 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.69341482722538, + 35.07125434607748 + ], + [ + -92.90479251636154, + 34.75799929186056 + ], + [ + -92.48203713808923, + 34.75799929186056 + ], + [ + -92.69341482722538, + 35.07125434607748 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.69341482722538, + 35.07125434607748 + ], + [ + -92.48203713808923, + 34.75799929186056 + ], + [ + -92.27065944895307, + 35.07125434607748 + ], + [ + -92.69341482722538, + 35.07125434607748 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.69341482722538, + 35.697764454511336 + ], + [ + -92.27065944895307, + 35.697764454511336 + ], + [ + -92.48203713808923, + 36.01101950872826 + ], + [ + -92.69341482722538, + 35.697764454511336 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.69341482722538, + 35.697764454511336 + ], + [ + -92.48203713808923, + 36.01101950872826 + ], + [ + -92.90479251636154, + 36.01101950872826 + ], + [ + -92.69341482722538, + 35.697764454511336 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.69341482722538, + 35.697764454511336 + ], + [ + -92.90479251636154, + 36.01101950872826 + ], + [ + -93.1161702054977, + 35.697764454511336 + ], + [ + -92.69341482722538, + 35.697764454511336 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.69341482722538, + 35.697764454511336 + ], + [ + -93.1161702054977, + 35.697764454511336 + ], + [ + -92.90479251636154, + 35.38450940029441 + ], + [ + -92.69341482722538, + 35.697764454511336 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.69341482722538, + 35.697764454511336 + ], + [ + -92.90479251636154, + 35.38450940029441 + ], + [ + -92.48203713808923, + 35.38450940029441 + ], + [ + -92.69341482722538, + 35.697764454511336 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.69341482722538, + 35.697764454511336 + ], + [ + -92.48203713808923, + 35.38450940029441 + ], + [ + -92.27065944895307, + 35.697764454511336 + ], + [ + -92.69341482722538, + 35.697764454511336 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.69341482722538, + 36.324274562945185 + ], + [ + -92.27065944895307, + 36.324274562945185 + ], + [ + -92.48203713808923, + 36.63752961716211 + ], + [ + -92.69341482722538, + 36.324274562945185 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.69341482722538, + 36.324274562945185 + ], + [ + -92.48203713808923, + 36.63752961716211 + ], + [ + -92.90479251636154, + 36.63752961716211 + ], + [ + -92.69341482722538, + 36.324274562945185 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.69341482722538, + 36.324274562945185 + ], + [ + -92.90479251636154, + 36.63752961716211 + ], + [ + -93.1161702054977, + 36.324274562945185 + ], + [ + -92.69341482722538, + 36.324274562945185 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.69341482722538, + 36.324274562945185 + ], + [ + -93.1161702054977, + 36.324274562945185 + ], + [ + -92.90479251636154, + 36.01101950872826 + ], + [ + -92.69341482722538, + 36.324274562945185 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.69341482722538, + 36.324274562945185 + ], + [ + -92.90479251636154, + 36.01101950872826 + ], + [ + -92.48203713808923, + 36.01101950872826 + ], + [ + -92.69341482722538, + 36.324274562945185 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.69341482722538, + 36.324274562945185 + ], + [ + -92.48203713808923, + 36.01101950872826 + ], + [ + -92.27065944895307, + 36.324274562945185 + ], + [ + -92.69341482722538, + 36.324274562945185 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.69341482722538, + 36.95078467137904 + ], + [ + -92.27065944895307, + 36.95078467137904 + ], + [ + -92.48203713808923, + 37.264039725595964 + ], + [ + -92.69341482722538, + 36.95078467137904 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.69341482722538, + 36.95078467137904 + ], + [ + -92.48203713808923, + 37.264039725595964 + ], + [ + -92.90479251636154, + 37.264039725595964 + ], + [ + -92.69341482722538, + 36.95078467137904 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.69341482722538, + 36.95078467137904 + ], + [ + -92.90479251636154, + 37.264039725595964 + ], + [ + -93.1161702054977, + 36.95078467137904 + ], + [ + -92.69341482722538, + 36.95078467137904 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.69341482722538, + 36.95078467137904 + ], + [ + -93.1161702054977, + 36.95078467137904 + ], + [ + -92.90479251636154, + 36.637529617162116 + ], + [ + -92.69341482722538, + 36.95078467137904 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.69341482722538, + 36.95078467137904 + ], + [ + -92.90479251636154, + 36.637529617162116 + ], + [ + -92.48203713808923, + 36.637529617162116 + ], + [ + -92.69341482722538, + 36.95078467137904 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.69341482722538, + 36.95078467137904 + ], + [ + -92.48203713808923, + 36.637529617162116 + ], + [ + -92.27065944895307, + 36.95078467137904 + ], + [ + -92.69341482722538, + 36.95078467137904 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.69341482722538, + 37.577294779812895 + ], + [ + -92.27065944895307, + 37.577294779812895 + ], + [ + -92.48203713808923, + 37.89054983402982 + ], + [ + -92.69341482722538, + 37.577294779812895 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.69341482722538, + 37.577294779812895 + ], + [ + -92.48203713808923, + 37.89054983402982 + ], + [ + -92.90479251636154, + 37.89054983402982 + ], + [ + -92.69341482722538, + 37.577294779812895 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.69341482722538, + 37.577294779812895 + ], + [ + -92.90479251636154, + 37.89054983402982 + ], + [ + -93.1161702054977, + 37.577294779812895 + ], + [ + -92.69341482722538, + 37.577294779812895 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.69341482722538, + 37.577294779812895 + ], + [ + -93.1161702054977, + 37.577294779812895 + ], + [ + -92.90479251636154, + 37.26403972559597 + ], + [ + -92.69341482722538, + 37.577294779812895 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.69341482722538, + 37.577294779812895 + ], + [ + -92.90479251636154, + 37.26403972559597 + ], + [ + -92.48203713808923, + 37.26403972559597 + ], + [ + -92.69341482722538, + 37.577294779812895 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.69341482722538, + 37.577294779812895 + ], + [ + -92.48203713808923, + 37.26403972559597 + ], + [ + -92.27065944895307, + 37.577294779812895 + ], + [ + -92.69341482722538, + 37.577294779812895 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.69341482722538, + 38.20380488824675 + ], + [ + -92.27065944895307, + 38.20380488824675 + ], + [ + -92.48203713808923, + 38.517059942463675 + ], + [ + -92.69341482722538, + 38.20380488824675 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.69341482722538, + 38.20380488824675 + ], + [ + -92.48203713808923, + 38.517059942463675 + ], + [ + -92.90479251636154, + 38.517059942463675 + ], + [ + -92.69341482722538, + 38.20380488824675 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.69341482722538, + 38.20380488824675 + ], + [ + -92.90479251636154, + 38.517059942463675 + ], + [ + -93.1161702054977, + 38.20380488824675 + ], + [ + -92.69341482722538, + 38.20380488824675 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.69341482722538, + 38.20380488824675 + ], + [ + -93.1161702054977, + 38.20380488824675 + ], + [ + -92.90479251636154, + 37.89054983402983 + ], + [ + -92.69341482722538, + 38.20380488824675 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.69341482722538, + 38.20380488824675 + ], + [ + -92.90479251636154, + 37.89054983402983 + ], + [ + -92.48203713808923, + 37.89054983402983 + ], + [ + -92.69341482722538, + 38.20380488824675 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.69341482722538, + 38.20380488824675 + ], + [ + -92.48203713808923, + 37.89054983402983 + ], + [ + -92.27065944895307, + 38.20380488824675 + ], + [ + -92.69341482722538, + 38.20380488824675 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.69341482722538, + 38.830314996680606 + ], + [ + -92.27065944895307, + 38.830314996680606 + ], + [ + -92.48203713808923, + 39.14357005089753 + ], + [ + -92.69341482722538, + 38.830314996680606 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.69341482722538, + 38.830314996680606 + ], + [ + -92.48203713808923, + 39.14357005089753 + ], + [ + -92.90479251636154, + 39.14357005089753 + ], + [ + -92.69341482722538, + 38.830314996680606 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.69341482722538, + 38.830314996680606 + ], + [ + -92.90479251636154, + 39.14357005089753 + ], + [ + -93.1161702054977, + 38.830314996680606 + ], + [ + -92.69341482722538, + 38.830314996680606 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.69341482722538, + 38.830314996680606 + ], + [ + -93.1161702054977, + 38.830314996680606 + ], + [ + -92.90479251636154, + 38.51705994246368 + ], + [ + -92.69341482722538, + 38.830314996680606 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.69341482722538, + 38.830314996680606 + ], + [ + -92.90479251636154, + 38.51705994246368 + ], + [ + -92.48203713808923, + 38.51705994246368 + ], + [ + -92.69341482722538, + 38.830314996680606 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.69341482722538, + 38.830314996680606 + ], + [ + -92.48203713808923, + 38.51705994246368 + ], + [ + -92.27065944895307, + 38.830314996680606 + ], + [ + -92.69341482722538, + 38.830314996680606 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.69341482722538, + 39.45682510511446 + ], + [ + -92.27065944895307, + 39.45682510511446 + ], + [ + -92.48203713808923, + 39.770080159331386 + ], + [ + -92.69341482722538, + 39.45682510511446 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.69341482722538, + 39.45682510511446 + ], + [ + -92.48203713808923, + 39.770080159331386 + ], + [ + -92.90479251636154, + 39.770080159331386 + ], + [ + -92.69341482722538, + 39.45682510511446 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.69341482722538, + 39.45682510511446 + ], + [ + -92.90479251636154, + 39.770080159331386 + ], + [ + -93.1161702054977, + 39.45682510511446 + ], + [ + -92.69341482722538, + 39.45682510511446 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.69341482722538, + 39.45682510511446 + ], + [ + -93.1161702054977, + 39.45682510511446 + ], + [ + -92.90479251636154, + 39.14357005089754 + ], + [ + -92.69341482722538, + 39.45682510511446 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.69341482722538, + 39.45682510511446 + ], + [ + -92.90479251636154, + 39.14357005089754 + ], + [ + -92.48203713808923, + 39.14357005089754 + ], + [ + -92.69341482722538, + 39.45682510511446 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.69341482722538, + 39.45682510511446 + ], + [ + -92.48203713808923, + 39.14357005089754 + ], + [ + -92.27065944895307, + 39.45682510511446 + ], + [ + -92.69341482722538, + 39.45682510511446 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.69341482722538, + 40.08333521354832 + ], + [ + -92.27065944895307, + 40.08333521354832 + ], + [ + -92.48203713808923, + 40.39659026776524 + ], + [ + -92.69341482722538, + 40.08333521354832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.69341482722538, + 40.08333521354832 + ], + [ + -92.48203713808923, + 40.39659026776524 + ], + [ + -92.90479251636154, + 40.39659026776524 + ], + [ + -92.69341482722538, + 40.08333521354832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.69341482722538, + 40.08333521354832 + ], + [ + -92.90479251636154, + 40.39659026776524 + ], + [ + -93.1161702054977, + 40.08333521354832 + ], + [ + -92.69341482722538, + 40.08333521354832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.69341482722538, + 40.08333521354832 + ], + [ + -93.1161702054977, + 40.08333521354832 + ], + [ + -92.90479251636154, + 39.77008015933139 + ], + [ + -92.69341482722538, + 40.08333521354832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.69341482722538, + 40.08333521354832 + ], + [ + -92.90479251636154, + 39.77008015933139 + ], + [ + -92.48203713808923, + 39.77008015933139 + ], + [ + -92.69341482722538, + 40.08333521354832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.69341482722538, + 40.08333521354832 + ], + [ + -92.48203713808923, + 39.77008015933139 + ], + [ + -92.27065944895307, + 40.08333521354832 + ], + [ + -92.69341482722538, + 40.08333521354832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.69341482722538, + 40.70984532198217 + ], + [ + -92.27065944895307, + 40.70984532198217 + ], + [ + -92.48203713808923, + 41.023100376199096 + ], + [ + -92.69341482722538, + 40.70984532198217 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.69341482722538, + 40.70984532198217 + ], + [ + -92.48203713808923, + 41.023100376199096 + ], + [ + -92.90479251636154, + 41.023100376199096 + ], + [ + -92.69341482722538, + 40.70984532198217 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.69341482722538, + 40.70984532198217 + ], + [ + -92.90479251636154, + 41.023100376199096 + ], + [ + -93.1161702054977, + 40.70984532198217 + ], + [ + -92.69341482722538, + 40.70984532198217 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.69341482722538, + 40.70984532198217 + ], + [ + -93.1161702054977, + 40.70984532198217 + ], + [ + -92.90479251636154, + 40.39659026776525 + ], + [ + -92.69341482722538, + 40.70984532198217 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.69341482722538, + 40.70984532198217 + ], + [ + -92.90479251636154, + 40.39659026776525 + ], + [ + -92.48203713808923, + 40.39659026776525 + ], + [ + -92.69341482722538, + 40.70984532198217 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.69341482722538, + 40.70984532198217 + ], + [ + -92.48203713808923, + 40.39659026776525 + ], + [ + -92.27065944895307, + 40.70984532198217 + ], + [ + -92.69341482722538, + 40.70984532198217 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.05928175981693, + 30.99893864125743 + ], + [ + -91.63652638154461, + 30.99893864125743 + ], + [ + -91.84790407068077, + 31.312193695474356 + ], + [ + -92.05928175981693, + 30.99893864125743 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.05928175981693, + 30.99893864125743 + ], + [ + -91.84790407068077, + 31.312193695474356 + ], + [ + -92.27065944895308, + 31.312193695474356 + ], + [ + -92.05928175981693, + 30.99893864125743 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.05928175981693, + 30.99893864125743 + ], + [ + -92.27065944895308, + 31.312193695474356 + ], + [ + -92.48203713808924, + 30.99893864125743 + ], + [ + -92.05928175981693, + 30.99893864125743 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.05928175981693, + 30.99893864125743 + ], + [ + -92.48203713808924, + 30.99893864125743 + ], + [ + -92.27065944895308, + 30.6856835870405 + ], + [ + -92.05928175981693, + 30.99893864125743 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.05928175981693, + 30.99893864125743 + ], + [ + -92.27065944895308, + 30.6856835870405 + ], + [ + -91.84790407068077, + 30.6856835870405 + ], + [ + -92.05928175981693, + 30.99893864125743 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.05928175981693, + 30.99893864125743 + ], + [ + -91.84790407068077, + 30.6856835870405 + ], + [ + -91.63652638154461, + 30.99893864125743 + ], + [ + -92.05928175981693, + 30.99893864125743 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.05928175981693, + 31.62544874969128 + ], + [ + -91.63652638154461, + 31.62544874969128 + ], + [ + -91.84790407068077, + 31.938703803908208 + ], + [ + -92.05928175981693, + 31.62544874969128 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.05928175981693, + 31.62544874969128 + ], + [ + -91.84790407068077, + 31.938703803908208 + ], + [ + -92.27065944895308, + 31.938703803908208 + ], + [ + -92.05928175981693, + 31.62544874969128 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.05928175981693, + 31.62544874969128 + ], + [ + -92.27065944895308, + 31.938703803908208 + ], + [ + -92.48203713808924, + 31.62544874969128 + ], + [ + -92.05928175981693, + 31.62544874969128 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.05928175981693, + 31.62544874969128 + ], + [ + -92.48203713808924, + 31.62544874969128 + ], + [ + -92.27065944895308, + 31.312193695474352 + ], + [ + -92.05928175981693, + 31.62544874969128 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.05928175981693, + 31.62544874969128 + ], + [ + -92.27065944895308, + 31.312193695474352 + ], + [ + -91.84790407068077, + 31.312193695474352 + ], + [ + -92.05928175981693, + 31.62544874969128 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.05928175981693, + 31.62544874969128 + ], + [ + -91.84790407068077, + 31.312193695474352 + ], + [ + -91.63652638154461, + 31.62544874969128 + ], + [ + -92.05928175981693, + 31.62544874969128 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.05928175981693, + 32.251958858125136 + ], + [ + -91.63652638154461, + 32.251958858125136 + ], + [ + -91.84790407068077, + 32.56521391234206 + ], + [ + -92.05928175981693, + 32.251958858125136 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.05928175981693, + 32.251958858125136 + ], + [ + -91.84790407068077, + 32.56521391234206 + ], + [ + -92.27065944895308, + 32.56521391234206 + ], + [ + -92.05928175981693, + 32.251958858125136 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.05928175981693, + 32.251958858125136 + ], + [ + -92.27065944895308, + 32.56521391234206 + ], + [ + -92.48203713808924, + 32.251958858125136 + ], + [ + -92.05928175981693, + 32.251958858125136 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.05928175981693, + 32.251958858125136 + ], + [ + -92.48203713808924, + 32.251958858125136 + ], + [ + -92.27065944895308, + 31.938703803908208 + ], + [ + -92.05928175981693, + 32.251958858125136 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.05928175981693, + 32.251958858125136 + ], + [ + -92.27065944895308, + 31.938703803908208 + ], + [ + -91.84790407068077, + 31.938703803908208 + ], + [ + -92.05928175981693, + 32.251958858125136 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.05928175981693, + 32.251958858125136 + ], + [ + -91.84790407068077, + 31.938703803908208 + ], + [ + -91.63652638154461, + 32.251958858125136 + ], + [ + -92.05928175981693, + 32.251958858125136 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.05928175981693, + 32.87846896655899 + ], + [ + -91.63652638154461, + 32.87846896655899 + ], + [ + -91.84790407068077, + 33.191724020775915 + ], + [ + -92.05928175981693, + 32.87846896655899 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.05928175981693, + 32.87846896655899 + ], + [ + -91.84790407068077, + 33.191724020775915 + ], + [ + -92.27065944895308, + 33.191724020775915 + ], + [ + -92.05928175981693, + 32.87846896655899 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.05928175981693, + 32.87846896655899 + ], + [ + -92.27065944895308, + 33.191724020775915 + ], + [ + -92.48203713808924, + 32.87846896655899 + ], + [ + -92.05928175981693, + 32.87846896655899 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.05928175981693, + 32.87846896655899 + ], + [ + -92.48203713808924, + 32.87846896655899 + ], + [ + -92.27065944895308, + 32.56521391234207 + ], + [ + -92.05928175981693, + 32.87846896655899 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.05928175981693, + 32.87846896655899 + ], + [ + -92.27065944895308, + 32.56521391234207 + ], + [ + -91.84790407068077, + 32.56521391234207 + ], + [ + -92.05928175981693, + 32.87846896655899 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.05928175981693, + 32.87846896655899 + ], + [ + -91.84790407068077, + 32.56521391234207 + ], + [ + -91.63652638154461, + 32.87846896655899 + ], + [ + -92.05928175981693, + 32.87846896655899 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.05928175981693, + 33.504979074992846 + ], + [ + -91.63652638154461, + 33.504979074992846 + ], + [ + -91.84790407068077, + 33.81823412920977 + ], + [ + -92.05928175981693, + 33.504979074992846 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.05928175981693, + 33.504979074992846 + ], + [ + -91.84790407068077, + 33.81823412920977 + ], + [ + -92.27065944895308, + 33.81823412920977 + ], + [ + -92.05928175981693, + 33.504979074992846 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.05928175981693, + 33.504979074992846 + ], + [ + -92.27065944895308, + 33.81823412920977 + ], + [ + -92.48203713808924, + 33.504979074992846 + ], + [ + -92.05928175981693, + 33.504979074992846 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.05928175981693, + 33.504979074992846 + ], + [ + -92.48203713808924, + 33.504979074992846 + ], + [ + -92.27065944895308, + 33.19172402077592 + ], + [ + -92.05928175981693, + 33.504979074992846 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.05928175981693, + 33.504979074992846 + ], + [ + -92.27065944895308, + 33.19172402077592 + ], + [ + -91.84790407068077, + 33.19172402077592 + ], + [ + -92.05928175981693, + 33.504979074992846 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.05928175981693, + 33.504979074992846 + ], + [ + -91.84790407068077, + 33.19172402077592 + ], + [ + -91.63652638154461, + 33.504979074992846 + ], + [ + -92.05928175981693, + 33.504979074992846 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.05928175981693, + 34.1314891834267 + ], + [ + -91.63652638154461, + 34.1314891834267 + ], + [ + -91.84790407068077, + 34.444744237643626 + ], + [ + -92.05928175981693, + 34.1314891834267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.05928175981693, + 34.1314891834267 + ], + [ + -91.84790407068077, + 34.444744237643626 + ], + [ + -92.27065944895308, + 34.444744237643626 + ], + [ + -92.05928175981693, + 34.1314891834267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.05928175981693, + 34.1314891834267 + ], + [ + -92.27065944895308, + 34.444744237643626 + ], + [ + -92.48203713808924, + 34.1314891834267 + ], + [ + -92.05928175981693, + 34.1314891834267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.05928175981693, + 34.1314891834267 + ], + [ + -92.48203713808924, + 34.1314891834267 + ], + [ + -92.27065944895308, + 33.81823412920978 + ], + [ + -92.05928175981693, + 34.1314891834267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.05928175981693, + 34.1314891834267 + ], + [ + -92.27065944895308, + 33.81823412920978 + ], + [ + -91.84790407068077, + 33.81823412920978 + ], + [ + -92.05928175981693, + 34.1314891834267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.05928175981693, + 34.1314891834267 + ], + [ + -91.84790407068077, + 33.81823412920978 + ], + [ + -91.63652638154461, + 34.1314891834267 + ], + [ + -92.05928175981693, + 34.1314891834267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.05928175981693, + 34.75799929186056 + ], + [ + -91.63652638154461, + 34.75799929186056 + ], + [ + -91.84790407068077, + 35.07125434607748 + ], + [ + -92.05928175981693, + 34.75799929186056 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.05928175981693, + 34.75799929186056 + ], + [ + -91.84790407068077, + 35.07125434607748 + ], + [ + -92.27065944895308, + 35.07125434607748 + ], + [ + -92.05928175981693, + 34.75799929186056 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.05928175981693, + 34.75799929186056 + ], + [ + -92.27065944895308, + 35.07125434607748 + ], + [ + -92.48203713808924, + 34.75799929186056 + ], + [ + -92.05928175981693, + 34.75799929186056 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.05928175981693, + 34.75799929186056 + ], + [ + -92.48203713808924, + 34.75799929186056 + ], + [ + -92.27065944895308, + 34.44474423764363 + ], + [ + -92.05928175981693, + 34.75799929186056 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.05928175981693, + 34.75799929186056 + ], + [ + -92.27065944895308, + 34.44474423764363 + ], + [ + -91.84790407068077, + 34.44474423764363 + ], + [ + -92.05928175981693, + 34.75799929186056 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.05928175981693, + 34.75799929186056 + ], + [ + -91.84790407068077, + 34.44474423764363 + ], + [ + -91.63652638154461, + 34.75799929186056 + ], + [ + -92.05928175981693, + 34.75799929186056 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.05928175981693, + 35.38450940029441 + ], + [ + -91.63652638154461, + 35.38450940029441 + ], + [ + -91.84790407068077, + 35.697764454511336 + ], + [ + -92.05928175981693, + 35.38450940029441 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.05928175981693, + 35.38450940029441 + ], + [ + -91.84790407068077, + 35.697764454511336 + ], + [ + -92.27065944895308, + 35.697764454511336 + ], + [ + -92.05928175981693, + 35.38450940029441 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.05928175981693, + 35.38450940029441 + ], + [ + -92.27065944895308, + 35.697764454511336 + ], + [ + -92.48203713808924, + 35.38450940029441 + ], + [ + -92.05928175981693, + 35.38450940029441 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.05928175981693, + 35.38450940029441 + ], + [ + -92.48203713808924, + 35.38450940029441 + ], + [ + -92.27065944895308, + 35.07125434607749 + ], + [ + -92.05928175981693, + 35.38450940029441 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.05928175981693, + 35.38450940029441 + ], + [ + -92.27065944895308, + 35.07125434607749 + ], + [ + -91.84790407068077, + 35.07125434607749 + ], + [ + -92.05928175981693, + 35.38450940029441 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.05928175981693, + 35.38450940029441 + ], + [ + -91.84790407068077, + 35.07125434607749 + ], + [ + -91.63652638154461, + 35.38450940029441 + ], + [ + -92.05928175981693, + 35.38450940029441 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.05928175981693, + 36.01101950872826 + ], + [ + -91.63652638154461, + 36.01101950872826 + ], + [ + -91.84790407068077, + 36.324274562945185 + ], + [ + -92.05928175981693, + 36.01101950872826 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.05928175981693, + 36.01101950872826 + ], + [ + -91.84790407068077, + 36.324274562945185 + ], + [ + -92.27065944895308, + 36.324274562945185 + ], + [ + -92.05928175981693, + 36.01101950872826 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.05928175981693, + 36.01101950872826 + ], + [ + -92.27065944895308, + 36.324274562945185 + ], + [ + -92.48203713808924, + 36.01101950872826 + ], + [ + -92.05928175981693, + 36.01101950872826 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.05928175981693, + 36.01101950872826 + ], + [ + -92.48203713808924, + 36.01101950872826 + ], + [ + -92.27065944895308, + 35.697764454511336 + ], + [ + -92.05928175981693, + 36.01101950872826 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.05928175981693, + 36.01101950872826 + ], + [ + -92.27065944895308, + 35.697764454511336 + ], + [ + -91.84790407068077, + 35.697764454511336 + ], + [ + -92.05928175981693, + 36.01101950872826 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.05928175981693, + 36.01101950872826 + ], + [ + -91.84790407068077, + 35.697764454511336 + ], + [ + -91.63652638154461, + 36.01101950872826 + ], + [ + -92.05928175981693, + 36.01101950872826 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.05928175981693, + 36.637529617162116 + ], + [ + -91.63652638154461, + 36.637529617162116 + ], + [ + -91.84790407068077, + 36.95078467137904 + ], + [ + -92.05928175981693, + 36.637529617162116 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.05928175981693, + 36.637529617162116 + ], + [ + -91.84790407068077, + 36.95078467137904 + ], + [ + -92.27065944895308, + 36.95078467137904 + ], + [ + -92.05928175981693, + 36.637529617162116 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.05928175981693, + 36.637529617162116 + ], + [ + -92.27065944895308, + 36.95078467137904 + ], + [ + -92.48203713808924, + 36.637529617162116 + ], + [ + -92.05928175981693, + 36.637529617162116 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.05928175981693, + 36.637529617162116 + ], + [ + -92.48203713808924, + 36.637529617162116 + ], + [ + -92.27065944895308, + 36.32427456294519 + ], + [ + -92.05928175981693, + 36.637529617162116 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.05928175981693, + 36.637529617162116 + ], + [ + -92.27065944895308, + 36.32427456294519 + ], + [ + -91.84790407068077, + 36.32427456294519 + ], + [ + -92.05928175981693, + 36.637529617162116 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.05928175981693, + 36.637529617162116 + ], + [ + -91.84790407068077, + 36.32427456294519 + ], + [ + -91.63652638154461, + 36.637529617162116 + ], + [ + -92.05928175981693, + 36.637529617162116 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.05928175981693, + 37.26403972559597 + ], + [ + -91.63652638154461, + 37.26403972559597 + ], + [ + -91.84790407068077, + 37.577294779812895 + ], + [ + -92.05928175981693, + 37.26403972559597 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.05928175981693, + 37.26403972559597 + ], + [ + -91.84790407068077, + 37.577294779812895 + ], + [ + -92.27065944895308, + 37.577294779812895 + ], + [ + -92.05928175981693, + 37.26403972559597 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.05928175981693, + 37.26403972559597 + ], + [ + -92.27065944895308, + 37.577294779812895 + ], + [ + -92.48203713808924, + 37.26403972559597 + ], + [ + -92.05928175981693, + 37.26403972559597 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.05928175981693, + 37.26403972559597 + ], + [ + -92.48203713808924, + 37.26403972559597 + ], + [ + -92.27065944895308, + 36.95078467137905 + ], + [ + -92.05928175981693, + 37.26403972559597 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.05928175981693, + 37.26403972559597 + ], + [ + -92.27065944895308, + 36.95078467137905 + ], + [ + -91.84790407068077, + 36.95078467137905 + ], + [ + -92.05928175981693, + 37.26403972559597 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.05928175981693, + 37.26403972559597 + ], + [ + -91.84790407068077, + 36.95078467137905 + ], + [ + -91.63652638154461, + 37.26403972559597 + ], + [ + -92.05928175981693, + 37.26403972559597 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.05928175981693, + 37.89054983402983 + ], + [ + -91.63652638154461, + 37.89054983402983 + ], + [ + -91.84790407068077, + 38.20380488824675 + ], + [ + -92.05928175981693, + 37.89054983402983 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.05928175981693, + 37.89054983402983 + ], + [ + -91.84790407068077, + 38.20380488824675 + ], + [ + -92.27065944895308, + 38.20380488824675 + ], + [ + -92.05928175981693, + 37.89054983402983 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.05928175981693, + 37.89054983402983 + ], + [ + -92.27065944895308, + 38.20380488824675 + ], + [ + -92.48203713808924, + 37.89054983402983 + ], + [ + -92.05928175981693, + 37.89054983402983 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.05928175981693, + 37.89054983402983 + ], + [ + -92.48203713808924, + 37.89054983402983 + ], + [ + -92.27065944895308, + 37.5772947798129 + ], + [ + -92.05928175981693, + 37.89054983402983 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.05928175981693, + 37.89054983402983 + ], + [ + -92.27065944895308, + 37.5772947798129 + ], + [ + -91.84790407068077, + 37.5772947798129 + ], + [ + -92.05928175981693, + 37.89054983402983 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.05928175981693, + 37.89054983402983 + ], + [ + -91.84790407068077, + 37.5772947798129 + ], + [ + -91.63652638154461, + 37.89054983402983 + ], + [ + -92.05928175981693, + 37.89054983402983 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.05928175981693, + 38.51705994246368 + ], + [ + -91.63652638154461, + 38.51705994246368 + ], + [ + -91.84790407068077, + 38.830314996680606 + ], + [ + -92.05928175981693, + 38.51705994246368 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.05928175981693, + 38.51705994246368 + ], + [ + -91.84790407068077, + 38.830314996680606 + ], + [ + -92.27065944895308, + 38.830314996680606 + ], + [ + -92.05928175981693, + 38.51705994246368 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.05928175981693, + 38.51705994246368 + ], + [ + -92.27065944895308, + 38.830314996680606 + ], + [ + -92.48203713808924, + 38.51705994246368 + ], + [ + -92.05928175981693, + 38.51705994246368 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.05928175981693, + 38.51705994246368 + ], + [ + -92.48203713808924, + 38.51705994246368 + ], + [ + -92.27065944895308, + 38.20380488824676 + ], + [ + -92.05928175981693, + 38.51705994246368 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.05928175981693, + 38.51705994246368 + ], + [ + -92.27065944895308, + 38.20380488824676 + ], + [ + -91.84790407068077, + 38.20380488824676 + ], + [ + -92.05928175981693, + 38.51705994246368 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.05928175981693, + 38.51705994246368 + ], + [ + -91.84790407068077, + 38.20380488824676 + ], + [ + -91.63652638154461, + 38.51705994246368 + ], + [ + -92.05928175981693, + 38.51705994246368 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.05928175981693, + 39.14357005089754 + ], + [ + -91.63652638154461, + 39.14357005089754 + ], + [ + -91.84790407068077, + 39.45682510511446 + ], + [ + -92.05928175981693, + 39.14357005089754 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.05928175981693, + 39.14357005089754 + ], + [ + -91.84790407068077, + 39.45682510511446 + ], + [ + -92.27065944895308, + 39.45682510511446 + ], + [ + -92.05928175981693, + 39.14357005089754 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.05928175981693, + 39.14357005089754 + ], + [ + -92.27065944895308, + 39.45682510511446 + ], + [ + -92.48203713808924, + 39.14357005089754 + ], + [ + -92.05928175981693, + 39.14357005089754 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.05928175981693, + 39.14357005089754 + ], + [ + -92.48203713808924, + 39.14357005089754 + ], + [ + -92.27065944895308, + 38.83031499668061 + ], + [ + -92.05928175981693, + 39.14357005089754 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.05928175981693, + 39.14357005089754 + ], + [ + -92.27065944895308, + 38.83031499668061 + ], + [ + -91.84790407068077, + 38.83031499668061 + ], + [ + -92.05928175981693, + 39.14357005089754 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.05928175981693, + 39.14357005089754 + ], + [ + -91.84790407068077, + 38.83031499668061 + ], + [ + -91.63652638154461, + 39.14357005089754 + ], + [ + -92.05928175981693, + 39.14357005089754 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.05928175981693, + 39.77008015933139 + ], + [ + -91.63652638154461, + 39.77008015933139 + ], + [ + -91.84790407068077, + 40.08333521354832 + ], + [ + -92.05928175981693, + 39.77008015933139 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.05928175981693, + 39.77008015933139 + ], + [ + -91.84790407068077, + 40.08333521354832 + ], + [ + -92.27065944895308, + 40.08333521354832 + ], + [ + -92.05928175981693, + 39.77008015933139 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.05928175981693, + 39.77008015933139 + ], + [ + -92.27065944895308, + 40.08333521354832 + ], + [ + -92.48203713808924, + 39.77008015933139 + ], + [ + -92.05928175981693, + 39.77008015933139 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.05928175981693, + 39.77008015933139 + ], + [ + -92.48203713808924, + 39.77008015933139 + ], + [ + -92.27065944895308, + 39.45682510511447 + ], + [ + -92.05928175981693, + 39.77008015933139 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.05928175981693, + 39.77008015933139 + ], + [ + -92.27065944895308, + 39.45682510511447 + ], + [ + -91.84790407068077, + 39.45682510511447 + ], + [ + -92.05928175981693, + 39.77008015933139 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.05928175981693, + 39.77008015933139 + ], + [ + -91.84790407068077, + 39.45682510511447 + ], + [ + -91.63652638154461, + 39.77008015933139 + ], + [ + -92.05928175981693, + 39.77008015933139 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.05928175981693, + 40.39659026776525 + ], + [ + -91.63652638154461, + 40.39659026776525 + ], + [ + -91.84790407068077, + 40.70984532198217 + ], + [ + -92.05928175981693, + 40.39659026776525 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.05928175981693, + 40.39659026776525 + ], + [ + -91.84790407068077, + 40.70984532198217 + ], + [ + -92.27065944895308, + 40.70984532198217 + ], + [ + -92.05928175981693, + 40.39659026776525 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.05928175981693, + 40.39659026776525 + ], + [ + -92.27065944895308, + 40.70984532198217 + ], + [ + -92.48203713808924, + 40.39659026776525 + ], + [ + -92.05928175981693, + 40.39659026776525 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.05928175981693, + 40.39659026776525 + ], + [ + -92.48203713808924, + 40.39659026776525 + ], + [ + -92.27065944895308, + 40.083335213548324 + ], + [ + -92.05928175981693, + 40.39659026776525 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.05928175981693, + 40.39659026776525 + ], + [ + -92.27065944895308, + 40.083335213548324 + ], + [ + -91.84790407068077, + 40.083335213548324 + ], + [ + -92.05928175981693, + 40.39659026776525 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.05928175981693, + 40.39659026776525 + ], + [ + -91.84790407068077, + 40.083335213548324 + ], + [ + -91.63652638154461, + 40.39659026776525 + ], + [ + -92.05928175981693, + 40.39659026776525 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.42514869240846, + 31.312193695474356 + ], + [ + -91.00239331413614, + 31.312193695474356 + ], + [ + -91.2137710032723, + 31.625448749691284 + ], + [ + -91.42514869240846, + 31.312193695474356 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.42514869240846, + 31.312193695474356 + ], + [ + -91.2137710032723, + 31.625448749691284 + ], + [ + -91.63652638154461, + 31.625448749691284 + ], + [ + -91.42514869240846, + 31.312193695474356 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.42514869240846, + 31.312193695474356 + ], + [ + -91.63652638154461, + 31.625448749691284 + ], + [ + -91.84790407068077, + 31.312193695474356 + ], + [ + -91.42514869240846, + 31.312193695474356 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.42514869240846, + 31.312193695474356 + ], + [ + -91.84790407068077, + 31.312193695474356 + ], + [ + -91.63652638154461, + 30.99893864125743 + ], + [ + -91.42514869240846, + 31.312193695474356 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.42514869240846, + 31.312193695474356 + ], + [ + -91.63652638154461, + 30.99893864125743 + ], + [ + -91.2137710032723, + 30.99893864125743 + ], + [ + -91.42514869240846, + 31.312193695474356 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.42514869240846, + 31.312193695474356 + ], + [ + -91.2137710032723, + 30.99893864125743 + ], + [ + -91.00239331413614, + 31.312193695474356 + ], + [ + -91.42514869240846, + 31.312193695474356 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.42514869240846, + 31.938703803908208 + ], + [ + -91.00239331413614, + 31.938703803908208 + ], + [ + -91.2137710032723, + 32.251958858125136 + ], + [ + -91.42514869240846, + 31.938703803908208 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.42514869240846, + 31.938703803908208 + ], + [ + -91.2137710032723, + 32.251958858125136 + ], + [ + -91.63652638154461, + 32.251958858125136 + ], + [ + -91.42514869240846, + 31.938703803908208 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.42514869240846, + 31.938703803908208 + ], + [ + -91.63652638154461, + 32.251958858125136 + ], + [ + -91.84790407068077, + 31.938703803908208 + ], + [ + -91.42514869240846, + 31.938703803908208 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.42514869240846, + 31.938703803908208 + ], + [ + -91.84790407068077, + 31.938703803908208 + ], + [ + -91.63652638154461, + 31.62544874969128 + ], + [ + -91.42514869240846, + 31.938703803908208 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.42514869240846, + 31.938703803908208 + ], + [ + -91.63652638154461, + 31.62544874969128 + ], + [ + -91.2137710032723, + 31.62544874969128 + ], + [ + -91.42514869240846, + 31.938703803908208 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.42514869240846, + 31.938703803908208 + ], + [ + -91.2137710032723, + 31.62544874969128 + ], + [ + -91.00239331413614, + 31.938703803908208 + ], + [ + -91.42514869240846, + 31.938703803908208 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.42514869240846, + 32.56521391234206 + ], + [ + -91.00239331413614, + 32.56521391234206 + ], + [ + -91.2137710032723, + 32.878468966558984 + ], + [ + -91.42514869240846, + 32.56521391234206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.42514869240846, + 32.56521391234206 + ], + [ + -91.2137710032723, + 32.878468966558984 + ], + [ + -91.63652638154461, + 32.878468966558984 + ], + [ + -91.42514869240846, + 32.56521391234206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.42514869240846, + 32.56521391234206 + ], + [ + -91.63652638154461, + 32.878468966558984 + ], + [ + -91.84790407068077, + 32.56521391234206 + ], + [ + -91.42514869240846, + 32.56521391234206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.42514869240846, + 32.56521391234206 + ], + [ + -91.84790407068077, + 32.56521391234206 + ], + [ + -91.63652638154461, + 32.251958858125136 + ], + [ + -91.42514869240846, + 32.56521391234206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.42514869240846, + 32.56521391234206 + ], + [ + -91.63652638154461, + 32.251958858125136 + ], + [ + -91.2137710032723, + 32.251958858125136 + ], + [ + -91.42514869240846, + 32.56521391234206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.42514869240846, + 32.56521391234206 + ], + [ + -91.2137710032723, + 32.251958858125136 + ], + [ + -91.00239331413614, + 32.56521391234206 + ], + [ + -91.42514869240846, + 32.56521391234206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.42514869240846, + 33.191724020775915 + ], + [ + -91.00239331413614, + 33.191724020775915 + ], + [ + -91.2137710032723, + 33.50497907499284 + ], + [ + -91.42514869240846, + 33.191724020775915 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.42514869240846, + 33.191724020775915 + ], + [ + -91.2137710032723, + 33.50497907499284 + ], + [ + -91.63652638154461, + 33.50497907499284 + ], + [ + -91.42514869240846, + 33.191724020775915 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.42514869240846, + 33.191724020775915 + ], + [ + -91.63652638154461, + 33.50497907499284 + ], + [ + -91.84790407068077, + 33.191724020775915 + ], + [ + -91.42514869240846, + 33.191724020775915 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.42514869240846, + 33.191724020775915 + ], + [ + -91.84790407068077, + 33.191724020775915 + ], + [ + -91.63652638154461, + 32.87846896655899 + ], + [ + -91.42514869240846, + 33.191724020775915 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.42514869240846, + 33.191724020775915 + ], + [ + -91.63652638154461, + 32.87846896655899 + ], + [ + -91.2137710032723, + 32.87846896655899 + ], + [ + -91.42514869240846, + 33.191724020775915 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.42514869240846, + 33.191724020775915 + ], + [ + -91.2137710032723, + 32.87846896655899 + ], + [ + -91.00239331413614, + 33.191724020775915 + ], + [ + -91.42514869240846, + 33.191724020775915 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.42514869240846, + 33.81823412920977 + ], + [ + -91.00239331413614, + 33.81823412920977 + ], + [ + -91.2137710032723, + 34.131489183426694 + ], + [ + -91.42514869240846, + 33.81823412920977 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.42514869240846, + 33.81823412920977 + ], + [ + -91.2137710032723, + 34.131489183426694 + ], + [ + -91.63652638154461, + 34.131489183426694 + ], + [ + -91.42514869240846, + 33.81823412920977 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.42514869240846, + 33.81823412920977 + ], + [ + -91.63652638154461, + 34.131489183426694 + ], + [ + -91.84790407068077, + 33.81823412920977 + ], + [ + -91.42514869240846, + 33.81823412920977 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.42514869240846, + 33.81823412920977 + ], + [ + -91.84790407068077, + 33.81823412920977 + ], + [ + -91.63652638154461, + 33.504979074992846 + ], + [ + -91.42514869240846, + 33.81823412920977 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.42514869240846, + 33.81823412920977 + ], + [ + -91.63652638154461, + 33.504979074992846 + ], + [ + -91.2137710032723, + 33.504979074992846 + ], + [ + -91.42514869240846, + 33.81823412920977 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.42514869240846, + 33.81823412920977 + ], + [ + -91.2137710032723, + 33.504979074992846 + ], + [ + -91.00239331413614, + 33.81823412920977 + ], + [ + -91.42514869240846, + 33.81823412920977 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.42514869240846, + 34.444744237643626 + ], + [ + -91.00239331413614, + 34.444744237643626 + ], + [ + -91.2137710032723, + 34.75799929186055 + ], + [ + -91.42514869240846, + 34.444744237643626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.42514869240846, + 34.444744237643626 + ], + [ + -91.2137710032723, + 34.75799929186055 + ], + [ + -91.63652638154461, + 34.75799929186055 + ], + [ + -91.42514869240846, + 34.444744237643626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.42514869240846, + 34.444744237643626 + ], + [ + -91.63652638154461, + 34.75799929186055 + ], + [ + -91.84790407068077, + 34.444744237643626 + ], + [ + -91.42514869240846, + 34.444744237643626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.42514869240846, + 34.444744237643626 + ], + [ + -91.84790407068077, + 34.444744237643626 + ], + [ + -91.63652638154461, + 34.1314891834267 + ], + [ + -91.42514869240846, + 34.444744237643626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.42514869240846, + 34.444744237643626 + ], + [ + -91.63652638154461, + 34.1314891834267 + ], + [ + -91.2137710032723, + 34.1314891834267 + ], + [ + -91.42514869240846, + 34.444744237643626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.42514869240846, + 34.444744237643626 + ], + [ + -91.2137710032723, + 34.1314891834267 + ], + [ + -91.00239331413614, + 34.444744237643626 + ], + [ + -91.42514869240846, + 34.444744237643626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.42514869240846, + 35.07125434607748 + ], + [ + -91.00239331413614, + 35.07125434607748 + ], + [ + -91.2137710032723, + 35.384509400294405 + ], + [ + -91.42514869240846, + 35.07125434607748 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.42514869240846, + 35.07125434607748 + ], + [ + -91.2137710032723, + 35.384509400294405 + ], + [ + -91.63652638154461, + 35.384509400294405 + ], + [ + -91.42514869240846, + 35.07125434607748 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.42514869240846, + 35.07125434607748 + ], + [ + -91.63652638154461, + 35.384509400294405 + ], + [ + -91.84790407068077, + 35.07125434607748 + ], + [ + -91.42514869240846, + 35.07125434607748 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.42514869240846, + 35.07125434607748 + ], + [ + -91.84790407068077, + 35.07125434607748 + ], + [ + -91.63652638154461, + 34.75799929186056 + ], + [ + -91.42514869240846, + 35.07125434607748 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.42514869240846, + 35.07125434607748 + ], + [ + -91.63652638154461, + 34.75799929186056 + ], + [ + -91.2137710032723, + 34.75799929186056 + ], + [ + -91.42514869240846, + 35.07125434607748 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.42514869240846, + 35.07125434607748 + ], + [ + -91.2137710032723, + 34.75799929186056 + ], + [ + -91.00239331413614, + 35.07125434607748 + ], + [ + -91.42514869240846, + 35.07125434607748 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.42514869240846, + 35.697764454511336 + ], + [ + -91.00239331413614, + 35.697764454511336 + ], + [ + -91.2137710032723, + 36.01101950872826 + ], + [ + -91.42514869240846, + 35.697764454511336 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.42514869240846, + 35.697764454511336 + ], + [ + -91.2137710032723, + 36.01101950872826 + ], + [ + -91.63652638154461, + 36.01101950872826 + ], + [ + -91.42514869240846, + 35.697764454511336 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.42514869240846, + 35.697764454511336 + ], + [ + -91.63652638154461, + 36.01101950872826 + ], + [ + -91.84790407068077, + 35.697764454511336 + ], + [ + -91.42514869240846, + 35.697764454511336 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.42514869240846, + 35.697764454511336 + ], + [ + -91.84790407068077, + 35.697764454511336 + ], + [ + -91.63652638154461, + 35.38450940029441 + ], + [ + -91.42514869240846, + 35.697764454511336 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.42514869240846, + 35.697764454511336 + ], + [ + -91.63652638154461, + 35.38450940029441 + ], + [ + -91.2137710032723, + 35.38450940029441 + ], + [ + -91.42514869240846, + 35.697764454511336 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.42514869240846, + 35.697764454511336 + ], + [ + -91.2137710032723, + 35.38450940029441 + ], + [ + -91.00239331413614, + 35.697764454511336 + ], + [ + -91.42514869240846, + 35.697764454511336 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.42514869240846, + 36.324274562945185 + ], + [ + -91.00239331413614, + 36.324274562945185 + ], + [ + -91.2137710032723, + 36.63752961716211 + ], + [ + -91.42514869240846, + 36.324274562945185 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.42514869240846, + 36.324274562945185 + ], + [ + -91.2137710032723, + 36.63752961716211 + ], + [ + -91.63652638154461, + 36.63752961716211 + ], + [ + -91.42514869240846, + 36.324274562945185 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.42514869240846, + 36.324274562945185 + ], + [ + -91.63652638154461, + 36.63752961716211 + ], + [ + -91.84790407068077, + 36.324274562945185 + ], + [ + -91.42514869240846, + 36.324274562945185 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.42514869240846, + 36.324274562945185 + ], + [ + -91.84790407068077, + 36.324274562945185 + ], + [ + -91.63652638154461, + 36.01101950872826 + ], + [ + -91.42514869240846, + 36.324274562945185 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.42514869240846, + 36.324274562945185 + ], + [ + -91.63652638154461, + 36.01101950872826 + ], + [ + -91.2137710032723, + 36.01101950872826 + ], + [ + -91.42514869240846, + 36.324274562945185 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.42514869240846, + 36.324274562945185 + ], + [ + -91.2137710032723, + 36.01101950872826 + ], + [ + -91.00239331413614, + 36.324274562945185 + ], + [ + -91.42514869240846, + 36.324274562945185 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.42514869240846, + 36.95078467137904 + ], + [ + -91.00239331413614, + 36.95078467137904 + ], + [ + -91.2137710032723, + 37.264039725595964 + ], + [ + -91.42514869240846, + 36.95078467137904 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.42514869240846, + 36.95078467137904 + ], + [ + -91.2137710032723, + 37.264039725595964 + ], + [ + -91.63652638154461, + 37.264039725595964 + ], + [ + -91.42514869240846, + 36.95078467137904 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.42514869240846, + 36.95078467137904 + ], + [ + -91.63652638154461, + 37.264039725595964 + ], + [ + -91.84790407068077, + 36.95078467137904 + ], + [ + -91.42514869240846, + 36.95078467137904 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.42514869240846, + 36.95078467137904 + ], + [ + -91.84790407068077, + 36.95078467137904 + ], + [ + -91.63652638154461, + 36.637529617162116 + ], + [ + -91.42514869240846, + 36.95078467137904 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.42514869240846, + 36.95078467137904 + ], + [ + -91.63652638154461, + 36.637529617162116 + ], + [ + -91.2137710032723, + 36.637529617162116 + ], + [ + -91.42514869240846, + 36.95078467137904 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.42514869240846, + 36.95078467137904 + ], + [ + -91.2137710032723, + 36.637529617162116 + ], + [ + -91.00239331413614, + 36.95078467137904 + ], + [ + -91.42514869240846, + 36.95078467137904 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.42514869240846, + 37.577294779812895 + ], + [ + -91.00239331413614, + 37.577294779812895 + ], + [ + -91.2137710032723, + 37.89054983402982 + ], + [ + -91.42514869240846, + 37.577294779812895 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.42514869240846, + 37.577294779812895 + ], + [ + -91.2137710032723, + 37.89054983402982 + ], + [ + -91.63652638154461, + 37.89054983402982 + ], + [ + -91.42514869240846, + 37.577294779812895 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.42514869240846, + 37.577294779812895 + ], + [ + -91.63652638154461, + 37.89054983402982 + ], + [ + -91.84790407068077, + 37.577294779812895 + ], + [ + -91.42514869240846, + 37.577294779812895 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.42514869240846, + 37.577294779812895 + ], + [ + -91.84790407068077, + 37.577294779812895 + ], + [ + -91.63652638154461, + 37.26403972559597 + ], + [ + -91.42514869240846, + 37.577294779812895 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.42514869240846, + 37.577294779812895 + ], + [ + -91.63652638154461, + 37.26403972559597 + ], + [ + -91.2137710032723, + 37.26403972559597 + ], + [ + -91.42514869240846, + 37.577294779812895 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.42514869240846, + 37.577294779812895 + ], + [ + -91.2137710032723, + 37.26403972559597 + ], + [ + -91.00239331413614, + 37.577294779812895 + ], + [ + -91.42514869240846, + 37.577294779812895 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.42514869240846, + 38.20380488824675 + ], + [ + -91.00239331413614, + 38.20380488824675 + ], + [ + -91.2137710032723, + 38.517059942463675 + ], + [ + -91.42514869240846, + 38.20380488824675 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.42514869240846, + 38.20380488824675 + ], + [ + -91.2137710032723, + 38.517059942463675 + ], + [ + -91.63652638154461, + 38.517059942463675 + ], + [ + -91.42514869240846, + 38.20380488824675 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.42514869240846, + 38.20380488824675 + ], + [ + -91.63652638154461, + 38.517059942463675 + ], + [ + -91.84790407068077, + 38.20380488824675 + ], + [ + -91.42514869240846, + 38.20380488824675 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.42514869240846, + 38.20380488824675 + ], + [ + -91.84790407068077, + 38.20380488824675 + ], + [ + -91.63652638154461, + 37.89054983402983 + ], + [ + -91.42514869240846, + 38.20380488824675 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.42514869240846, + 38.20380488824675 + ], + [ + -91.63652638154461, + 37.89054983402983 + ], + [ + -91.2137710032723, + 37.89054983402983 + ], + [ + -91.42514869240846, + 38.20380488824675 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.42514869240846, + 38.20380488824675 + ], + [ + -91.2137710032723, + 37.89054983402983 + ], + [ + -91.00239331413614, + 38.20380488824675 + ], + [ + -91.42514869240846, + 38.20380488824675 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.42514869240846, + 38.830314996680606 + ], + [ + -91.00239331413614, + 38.830314996680606 + ], + [ + -91.2137710032723, + 39.14357005089753 + ], + [ + -91.42514869240846, + 38.830314996680606 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.42514869240846, + 38.830314996680606 + ], + [ + -91.2137710032723, + 39.14357005089753 + ], + [ + -91.63652638154461, + 39.14357005089753 + ], + [ + -91.42514869240846, + 38.830314996680606 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.42514869240846, + 38.830314996680606 + ], + [ + -91.63652638154461, + 39.14357005089753 + ], + [ + -91.84790407068077, + 38.830314996680606 + ], + [ + -91.42514869240846, + 38.830314996680606 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.42514869240846, + 38.830314996680606 + ], + [ + -91.84790407068077, + 38.830314996680606 + ], + [ + -91.63652638154461, + 38.51705994246368 + ], + [ + -91.42514869240846, + 38.830314996680606 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.42514869240846, + 38.830314996680606 + ], + [ + -91.63652638154461, + 38.51705994246368 + ], + [ + -91.2137710032723, + 38.51705994246368 + ], + [ + -91.42514869240846, + 38.830314996680606 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.42514869240846, + 38.830314996680606 + ], + [ + -91.2137710032723, + 38.51705994246368 + ], + [ + -91.00239331413614, + 38.830314996680606 + ], + [ + -91.42514869240846, + 38.830314996680606 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.42514869240846, + 39.45682510511446 + ], + [ + -91.00239331413614, + 39.45682510511446 + ], + [ + -91.2137710032723, + 39.770080159331386 + ], + [ + -91.42514869240846, + 39.45682510511446 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.42514869240846, + 39.45682510511446 + ], + [ + -91.2137710032723, + 39.770080159331386 + ], + [ + -91.63652638154461, + 39.770080159331386 + ], + [ + -91.42514869240846, + 39.45682510511446 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.42514869240846, + 39.45682510511446 + ], + [ + -91.63652638154461, + 39.770080159331386 + ], + [ + -91.84790407068077, + 39.45682510511446 + ], + [ + -91.42514869240846, + 39.45682510511446 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.42514869240846, + 39.45682510511446 + ], + [ + -91.84790407068077, + 39.45682510511446 + ], + [ + -91.63652638154461, + 39.14357005089754 + ], + [ + -91.42514869240846, + 39.45682510511446 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.42514869240846, + 39.45682510511446 + ], + [ + -91.63652638154461, + 39.14357005089754 + ], + [ + -91.2137710032723, + 39.14357005089754 + ], + [ + -91.42514869240846, + 39.45682510511446 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.42514869240846, + 39.45682510511446 + ], + [ + -91.2137710032723, + 39.14357005089754 + ], + [ + -91.00239331413614, + 39.45682510511446 + ], + [ + -91.42514869240846, + 39.45682510511446 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.42514869240846, + 40.08333521354832 + ], + [ + -91.00239331413614, + 40.08333521354832 + ], + [ + -91.2137710032723, + 40.39659026776524 + ], + [ + -91.42514869240846, + 40.08333521354832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.42514869240846, + 40.08333521354832 + ], + [ + -91.2137710032723, + 40.39659026776524 + ], + [ + -91.63652638154461, + 40.39659026776524 + ], + [ + -91.42514869240846, + 40.08333521354832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.42514869240846, + 40.08333521354832 + ], + [ + -91.63652638154461, + 40.39659026776524 + ], + [ + -91.84790407068077, + 40.08333521354832 + ], + [ + -91.42514869240846, + 40.08333521354832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.42514869240846, + 40.08333521354832 + ], + [ + -91.84790407068077, + 40.08333521354832 + ], + [ + -91.63652638154461, + 39.77008015933139 + ], + [ + -91.42514869240846, + 40.08333521354832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.42514869240846, + 40.08333521354832 + ], + [ + -91.63652638154461, + 39.77008015933139 + ], + [ + -91.2137710032723, + 39.77008015933139 + ], + [ + -91.42514869240846, + 40.08333521354832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.42514869240846, + 40.08333521354832 + ], + [ + -91.2137710032723, + 39.77008015933139 + ], + [ + -91.00239331413614, + 40.08333521354832 + ], + [ + -91.42514869240846, + 40.08333521354832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.42514869240846, + 40.70984532198217 + ], + [ + -91.00239331413614, + 40.70984532198217 + ], + [ + -91.2137710032723, + 41.023100376199096 + ], + [ + -91.42514869240846, + 40.70984532198217 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.42514869240846, + 40.70984532198217 + ], + [ + -91.2137710032723, + 41.023100376199096 + ], + [ + -91.63652638154461, + 41.023100376199096 + ], + [ + -91.42514869240846, + 40.70984532198217 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.42514869240846, + 40.70984532198217 + ], + [ + -91.63652638154461, + 41.023100376199096 + ], + [ + -91.84790407068077, + 40.70984532198217 + ], + [ + -91.42514869240846, + 40.70984532198217 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.42514869240846, + 40.70984532198217 + ], + [ + -91.84790407068077, + 40.70984532198217 + ], + [ + -91.63652638154461, + 40.39659026776525 + ], + [ + -91.42514869240846, + 40.70984532198217 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.42514869240846, + 40.70984532198217 + ], + [ + -91.63652638154461, + 40.39659026776525 + ], + [ + -91.2137710032723, + 40.39659026776525 + ], + [ + -91.42514869240846, + 40.70984532198217 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.42514869240846, + 40.70984532198217 + ], + [ + -91.2137710032723, + 40.39659026776525 + ], + [ + -91.00239331413614, + 40.70984532198217 + ], + [ + -91.42514869240846, + 40.70984532198217 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.791015625, + 30.99893864125743 + ], + [ + -90.36826024672769, + 30.99893864125743 + ], + [ + -90.57963793586384, + 31.312193695474356 + ], + [ + -90.791015625, + 30.99893864125743 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.791015625, + 30.99893864125743 + ], + [ + -90.57963793586384, + 31.312193695474356 + ], + [ + -91.00239331413616, + 31.312193695474356 + ], + [ + -90.791015625, + 30.99893864125743 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.791015625, + 30.99893864125743 + ], + [ + -91.00239331413616, + 31.312193695474356 + ], + [ + -91.21377100327231, + 30.99893864125743 + ], + [ + -90.791015625, + 30.99893864125743 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.791015625, + 30.99893864125743 + ], + [ + -91.21377100327231, + 30.99893864125743 + ], + [ + -91.00239331413616, + 30.6856835870405 + ], + [ + -90.791015625, + 30.99893864125743 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.791015625, + 30.99893864125743 + ], + [ + -91.00239331413616, + 30.6856835870405 + ], + [ + -90.57963793586384, + 30.6856835870405 + ], + [ + -90.791015625, + 30.99893864125743 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.791015625, + 30.99893864125743 + ], + [ + -90.57963793586384, + 30.6856835870405 + ], + [ + -90.36826024672769, + 30.99893864125743 + ], + [ + -90.791015625, + 30.99893864125743 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.791015625, + 31.62544874969128 + ], + [ + -90.36826024672769, + 31.62544874969128 + ], + [ + -90.57963793586384, + 31.938703803908208 + ], + [ + -90.791015625, + 31.62544874969128 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.791015625, + 31.62544874969128 + ], + [ + -90.57963793586384, + 31.938703803908208 + ], + [ + -91.00239331413616, + 31.938703803908208 + ], + [ + -90.791015625, + 31.62544874969128 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.791015625, + 31.62544874969128 + ], + [ + -91.00239331413616, + 31.938703803908208 + ], + [ + -91.21377100327231, + 31.62544874969128 + ], + [ + -90.791015625, + 31.62544874969128 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.791015625, + 31.62544874969128 + ], + [ + -91.21377100327231, + 31.62544874969128 + ], + [ + -91.00239331413616, + 31.312193695474352 + ], + [ + -90.791015625, + 31.62544874969128 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.791015625, + 31.62544874969128 + ], + [ + -91.00239331413616, + 31.312193695474352 + ], + [ + -90.57963793586384, + 31.312193695474352 + ], + [ + -90.791015625, + 31.62544874969128 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.791015625, + 31.62544874969128 + ], + [ + -90.57963793586384, + 31.312193695474352 + ], + [ + -90.36826024672769, + 31.62544874969128 + ], + [ + -90.791015625, + 31.62544874969128 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.791015625, + 32.251958858125136 + ], + [ + -90.36826024672769, + 32.251958858125136 + ], + [ + -90.57963793586384, + 32.56521391234206 + ], + [ + -90.791015625, + 32.251958858125136 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.791015625, + 32.251958858125136 + ], + [ + -90.57963793586384, + 32.56521391234206 + ], + [ + -91.00239331413616, + 32.56521391234206 + ], + [ + -90.791015625, + 32.251958858125136 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.791015625, + 32.251958858125136 + ], + [ + -91.00239331413616, + 32.56521391234206 + ], + [ + -91.21377100327231, + 32.251958858125136 + ], + [ + -90.791015625, + 32.251958858125136 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.791015625, + 32.251958858125136 + ], + [ + -91.21377100327231, + 32.251958858125136 + ], + [ + -91.00239331413616, + 31.938703803908208 + ], + [ + -90.791015625, + 32.251958858125136 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.791015625, + 32.251958858125136 + ], + [ + -91.00239331413616, + 31.938703803908208 + ], + [ + -90.57963793586384, + 31.938703803908208 + ], + [ + -90.791015625, + 32.251958858125136 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.791015625, + 32.251958858125136 + ], + [ + -90.57963793586384, + 31.938703803908208 + ], + [ + -90.36826024672769, + 32.251958858125136 + ], + [ + -90.791015625, + 32.251958858125136 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.791015625, + 32.87846896655899 + ], + [ + -90.36826024672769, + 32.87846896655899 + ], + [ + -90.57963793586384, + 33.191724020775915 + ], + [ + -90.791015625, + 32.87846896655899 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.791015625, + 32.87846896655899 + ], + [ + -90.57963793586384, + 33.191724020775915 + ], + [ + -91.00239331413616, + 33.191724020775915 + ], + [ + -90.791015625, + 32.87846896655899 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.791015625, + 32.87846896655899 + ], + [ + -91.00239331413616, + 33.191724020775915 + ], + [ + -91.21377100327231, + 32.87846896655899 + ], + [ + -90.791015625, + 32.87846896655899 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.791015625, + 32.87846896655899 + ], + [ + -91.21377100327231, + 32.87846896655899 + ], + [ + -91.00239331413616, + 32.56521391234207 + ], + [ + -90.791015625, + 32.87846896655899 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.791015625, + 32.87846896655899 + ], + [ + -91.00239331413616, + 32.56521391234207 + ], + [ + -90.57963793586384, + 32.56521391234207 + ], + [ + -90.791015625, + 32.87846896655899 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.791015625, + 32.87846896655899 + ], + [ + -90.57963793586384, + 32.56521391234207 + ], + [ + -90.36826024672769, + 32.87846896655899 + ], + [ + -90.791015625, + 32.87846896655899 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.791015625, + 33.504979074992846 + ], + [ + -90.36826024672769, + 33.504979074992846 + ], + [ + -90.57963793586384, + 33.81823412920977 + ], + [ + -90.791015625, + 33.504979074992846 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.791015625, + 33.504979074992846 + ], + [ + -90.57963793586384, + 33.81823412920977 + ], + [ + -91.00239331413616, + 33.81823412920977 + ], + [ + -90.791015625, + 33.504979074992846 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.791015625, + 33.504979074992846 + ], + [ + -91.00239331413616, + 33.81823412920977 + ], + [ + -91.21377100327231, + 33.504979074992846 + ], + [ + -90.791015625, + 33.504979074992846 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.791015625, + 33.504979074992846 + ], + [ + -91.21377100327231, + 33.504979074992846 + ], + [ + -91.00239331413616, + 33.19172402077592 + ], + [ + -90.791015625, + 33.504979074992846 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.791015625, + 33.504979074992846 + ], + [ + -91.00239331413616, + 33.19172402077592 + ], + [ + -90.57963793586384, + 33.19172402077592 + ], + [ + -90.791015625, + 33.504979074992846 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.791015625, + 33.504979074992846 + ], + [ + -90.57963793586384, + 33.19172402077592 + ], + [ + -90.36826024672769, + 33.504979074992846 + ], + [ + -90.791015625, + 33.504979074992846 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.791015625, + 34.1314891834267 + ], + [ + -90.36826024672769, + 34.1314891834267 + ], + [ + -90.57963793586384, + 34.444744237643626 + ], + [ + -90.791015625, + 34.1314891834267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.791015625, + 34.1314891834267 + ], + [ + -90.57963793586384, + 34.444744237643626 + ], + [ + -91.00239331413616, + 34.444744237643626 + ], + [ + -90.791015625, + 34.1314891834267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.791015625, + 34.1314891834267 + ], + [ + -91.00239331413616, + 34.444744237643626 + ], + [ + -91.21377100327231, + 34.1314891834267 + ], + [ + -90.791015625, + 34.1314891834267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.791015625, + 34.1314891834267 + ], + [ + -91.21377100327231, + 34.1314891834267 + ], + [ + -91.00239331413616, + 33.81823412920978 + ], + [ + -90.791015625, + 34.1314891834267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.791015625, + 34.1314891834267 + ], + [ + -91.00239331413616, + 33.81823412920978 + ], + [ + -90.57963793586384, + 33.81823412920978 + ], + [ + -90.791015625, + 34.1314891834267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.791015625, + 34.1314891834267 + ], + [ + -90.57963793586384, + 33.81823412920978 + ], + [ + -90.36826024672769, + 34.1314891834267 + ], + [ + -90.791015625, + 34.1314891834267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.791015625, + 34.75799929186056 + ], + [ + -90.36826024672769, + 34.75799929186056 + ], + [ + -90.57963793586384, + 35.07125434607748 + ], + [ + -90.791015625, + 34.75799929186056 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.791015625, + 34.75799929186056 + ], + [ + -90.57963793586384, + 35.07125434607748 + ], + [ + -91.00239331413616, + 35.07125434607748 + ], + [ + -90.791015625, + 34.75799929186056 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.791015625, + 34.75799929186056 + ], + [ + -91.00239331413616, + 35.07125434607748 + ], + [ + -91.21377100327231, + 34.75799929186056 + ], + [ + -90.791015625, + 34.75799929186056 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.791015625, + 34.75799929186056 + ], + [ + -91.21377100327231, + 34.75799929186056 + ], + [ + -91.00239331413616, + 34.44474423764363 + ], + [ + -90.791015625, + 34.75799929186056 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.791015625, + 34.75799929186056 + ], + [ + -91.00239331413616, + 34.44474423764363 + ], + [ + -90.57963793586384, + 34.44474423764363 + ], + [ + -90.791015625, + 34.75799929186056 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.791015625, + 34.75799929186056 + ], + [ + -90.57963793586384, + 34.44474423764363 + ], + [ + -90.36826024672769, + 34.75799929186056 + ], + [ + -90.791015625, + 34.75799929186056 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.791015625, + 35.38450940029441 + ], + [ + -90.36826024672769, + 35.38450940029441 + ], + [ + -90.57963793586384, + 35.697764454511336 + ], + [ + -90.791015625, + 35.38450940029441 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.791015625, + 35.38450940029441 + ], + [ + -90.57963793586384, + 35.697764454511336 + ], + [ + -91.00239331413616, + 35.697764454511336 + ], + [ + -90.791015625, + 35.38450940029441 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.791015625, + 35.38450940029441 + ], + [ + -91.00239331413616, + 35.697764454511336 + ], + [ + -91.21377100327231, + 35.38450940029441 + ], + [ + -90.791015625, + 35.38450940029441 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.791015625, + 35.38450940029441 + ], + [ + -91.21377100327231, + 35.38450940029441 + ], + [ + -91.00239331413616, + 35.07125434607749 + ], + [ + -90.791015625, + 35.38450940029441 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.791015625, + 35.38450940029441 + ], + [ + -91.00239331413616, + 35.07125434607749 + ], + [ + -90.57963793586384, + 35.07125434607749 + ], + [ + -90.791015625, + 35.38450940029441 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.791015625, + 35.38450940029441 + ], + [ + -90.57963793586384, + 35.07125434607749 + ], + [ + -90.36826024672769, + 35.38450940029441 + ], + [ + -90.791015625, + 35.38450940029441 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.791015625, + 36.01101950872826 + ], + [ + -90.36826024672769, + 36.01101950872826 + ], + [ + -90.57963793586384, + 36.324274562945185 + ], + [ + -90.791015625, + 36.01101950872826 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.791015625, + 36.01101950872826 + ], + [ + -90.57963793586384, + 36.324274562945185 + ], + [ + -91.00239331413616, + 36.324274562945185 + ], + [ + -90.791015625, + 36.01101950872826 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.791015625, + 36.01101950872826 + ], + [ + -91.00239331413616, + 36.324274562945185 + ], + [ + -91.21377100327231, + 36.01101950872826 + ], + [ + -90.791015625, + 36.01101950872826 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.791015625, + 36.01101950872826 + ], + [ + -91.21377100327231, + 36.01101950872826 + ], + [ + -91.00239331413616, + 35.697764454511336 + ], + [ + -90.791015625, + 36.01101950872826 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.791015625, + 36.01101950872826 + ], + [ + -91.00239331413616, + 35.697764454511336 + ], + [ + -90.57963793586384, + 35.697764454511336 + ], + [ + -90.791015625, + 36.01101950872826 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.791015625, + 36.01101950872826 + ], + [ + -90.57963793586384, + 35.697764454511336 + ], + [ + -90.36826024672769, + 36.01101950872826 + ], + [ + -90.791015625, + 36.01101950872826 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.791015625, + 36.637529617162116 + ], + [ + -90.36826024672769, + 36.637529617162116 + ], + [ + -90.57963793586384, + 36.95078467137904 + ], + [ + -90.791015625, + 36.637529617162116 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.791015625, + 36.637529617162116 + ], + [ + -90.57963793586384, + 36.95078467137904 + ], + [ + -91.00239331413616, + 36.95078467137904 + ], + [ + -90.791015625, + 36.637529617162116 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.791015625, + 36.637529617162116 + ], + [ + -91.00239331413616, + 36.95078467137904 + ], + [ + -91.21377100327231, + 36.637529617162116 + ], + [ + -90.791015625, + 36.637529617162116 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.791015625, + 36.637529617162116 + ], + [ + -91.21377100327231, + 36.637529617162116 + ], + [ + -91.00239331413616, + 36.32427456294519 + ], + [ + -90.791015625, + 36.637529617162116 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.791015625, + 36.637529617162116 + ], + [ + -91.00239331413616, + 36.32427456294519 + ], + [ + -90.57963793586384, + 36.32427456294519 + ], + [ + -90.791015625, + 36.637529617162116 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.791015625, + 36.637529617162116 + ], + [ + -90.57963793586384, + 36.32427456294519 + ], + [ + -90.36826024672769, + 36.637529617162116 + ], + [ + -90.791015625, + 36.637529617162116 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.791015625, + 37.26403972559597 + ], + [ + -90.36826024672769, + 37.26403972559597 + ], + [ + -90.57963793586384, + 37.577294779812895 + ], + [ + -90.791015625, + 37.26403972559597 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.791015625, + 37.26403972559597 + ], + [ + -90.57963793586384, + 37.577294779812895 + ], + [ + -91.00239331413616, + 37.577294779812895 + ], + [ + -90.791015625, + 37.26403972559597 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.791015625, + 37.26403972559597 + ], + [ + -91.00239331413616, + 37.577294779812895 + ], + [ + -91.21377100327231, + 37.26403972559597 + ], + [ + -90.791015625, + 37.26403972559597 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.791015625, + 37.26403972559597 + ], + [ + -91.21377100327231, + 37.26403972559597 + ], + [ + -91.00239331413616, + 36.95078467137905 + ], + [ + -90.791015625, + 37.26403972559597 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.791015625, + 37.26403972559597 + ], + [ + -91.00239331413616, + 36.95078467137905 + ], + [ + -90.57963793586384, + 36.95078467137905 + ], + [ + -90.791015625, + 37.26403972559597 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.791015625, + 37.26403972559597 + ], + [ + -90.57963793586384, + 36.95078467137905 + ], + [ + -90.36826024672769, + 37.26403972559597 + ], + [ + -90.791015625, + 37.26403972559597 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.791015625, + 37.89054983402983 + ], + [ + -90.36826024672769, + 37.89054983402983 + ], + [ + -90.57963793586384, + 38.20380488824675 + ], + [ + -90.791015625, + 37.89054983402983 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.791015625, + 37.89054983402983 + ], + [ + -90.57963793586384, + 38.20380488824675 + ], + [ + -91.00239331413616, + 38.20380488824675 + ], + [ + -90.791015625, + 37.89054983402983 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.791015625, + 37.89054983402983 + ], + [ + -91.00239331413616, + 38.20380488824675 + ], + [ + -91.21377100327231, + 37.89054983402983 + ], + [ + -90.791015625, + 37.89054983402983 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.791015625, + 37.89054983402983 + ], + [ + -91.21377100327231, + 37.89054983402983 + ], + [ + -91.00239331413616, + 37.5772947798129 + ], + [ + -90.791015625, + 37.89054983402983 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.791015625, + 37.89054983402983 + ], + [ + -91.00239331413616, + 37.5772947798129 + ], + [ + -90.57963793586384, + 37.5772947798129 + ], + [ + -90.791015625, + 37.89054983402983 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.791015625, + 37.89054983402983 + ], + [ + -90.57963793586384, + 37.5772947798129 + ], + [ + -90.36826024672769, + 37.89054983402983 + ], + [ + -90.791015625, + 37.89054983402983 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.791015625, + 38.51705994246368 + ], + [ + -90.36826024672769, + 38.51705994246368 + ], + [ + -90.57963793586384, + 38.830314996680606 + ], + [ + -90.791015625, + 38.51705994246368 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.791015625, + 38.51705994246368 + ], + [ + -90.57963793586384, + 38.830314996680606 + ], + [ + -91.00239331413616, + 38.830314996680606 + ], + [ + -90.791015625, + 38.51705994246368 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.791015625, + 38.51705994246368 + ], + [ + -91.00239331413616, + 38.830314996680606 + ], + [ + -91.21377100327231, + 38.51705994246368 + ], + [ + -90.791015625, + 38.51705994246368 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.791015625, + 38.51705994246368 + ], + [ + -91.21377100327231, + 38.51705994246368 + ], + [ + -91.00239331413616, + 38.20380488824676 + ], + [ + -90.791015625, + 38.51705994246368 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.791015625, + 38.51705994246368 + ], + [ + -91.00239331413616, + 38.20380488824676 + ], + [ + -90.57963793586384, + 38.20380488824676 + ], + [ + -90.791015625, + 38.51705994246368 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.791015625, + 38.51705994246368 + ], + [ + -90.57963793586384, + 38.20380488824676 + ], + [ + -90.36826024672769, + 38.51705994246368 + ], + [ + -90.791015625, + 38.51705994246368 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.791015625, + 39.14357005089754 + ], + [ + -90.36826024672769, + 39.14357005089754 + ], + [ + -90.57963793586384, + 39.45682510511446 + ], + [ + -90.791015625, + 39.14357005089754 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.791015625, + 39.14357005089754 + ], + [ + -90.57963793586384, + 39.45682510511446 + ], + [ + -91.00239331413616, + 39.45682510511446 + ], + [ + -90.791015625, + 39.14357005089754 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.791015625, + 39.14357005089754 + ], + [ + -91.00239331413616, + 39.45682510511446 + ], + [ + -91.21377100327231, + 39.14357005089754 + ], + [ + -90.791015625, + 39.14357005089754 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.791015625, + 39.14357005089754 + ], + [ + -91.21377100327231, + 39.14357005089754 + ], + [ + -91.00239331413616, + 38.83031499668061 + ], + [ + -90.791015625, + 39.14357005089754 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.791015625, + 39.14357005089754 + ], + [ + -91.00239331413616, + 38.83031499668061 + ], + [ + -90.57963793586384, + 38.83031499668061 + ], + [ + -90.791015625, + 39.14357005089754 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.791015625, + 39.14357005089754 + ], + [ + -90.57963793586384, + 38.83031499668061 + ], + [ + -90.36826024672769, + 39.14357005089754 + ], + [ + -90.791015625, + 39.14357005089754 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.791015625, + 39.77008015933139 + ], + [ + -90.36826024672769, + 39.77008015933139 + ], + [ + -90.57963793586384, + 40.08333521354832 + ], + [ + -90.791015625, + 39.77008015933139 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.791015625, + 39.77008015933139 + ], + [ + -90.57963793586384, + 40.08333521354832 + ], + [ + -91.00239331413616, + 40.08333521354832 + ], + [ + -90.791015625, + 39.77008015933139 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.791015625, + 39.77008015933139 + ], + [ + -91.00239331413616, + 40.08333521354832 + ], + [ + -91.21377100327231, + 39.77008015933139 + ], + [ + -90.791015625, + 39.77008015933139 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.791015625, + 39.77008015933139 + ], + [ + -91.21377100327231, + 39.77008015933139 + ], + [ + -91.00239331413616, + 39.45682510511447 + ], + [ + -90.791015625, + 39.77008015933139 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.791015625, + 39.77008015933139 + ], + [ + -91.00239331413616, + 39.45682510511447 + ], + [ + -90.57963793586384, + 39.45682510511447 + ], + [ + -90.791015625, + 39.77008015933139 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.791015625, + 39.77008015933139 + ], + [ + -90.57963793586384, + 39.45682510511447 + ], + [ + -90.36826024672769, + 39.77008015933139 + ], + [ + -90.791015625, + 39.77008015933139 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.791015625, + 40.39659026776525 + ], + [ + -90.36826024672769, + 40.39659026776525 + ], + [ + -90.57963793586384, + 40.70984532198217 + ], + [ + -90.791015625, + 40.39659026776525 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.791015625, + 40.39659026776525 + ], + [ + -90.57963793586384, + 40.70984532198217 + ], + [ + -91.00239331413616, + 40.70984532198217 + ], + [ + -90.791015625, + 40.39659026776525 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.791015625, + 40.39659026776525 + ], + [ + -91.00239331413616, + 40.70984532198217 + ], + [ + -91.21377100327231, + 40.39659026776525 + ], + [ + -90.791015625, + 40.39659026776525 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.791015625, + 40.39659026776525 + ], + [ + -91.21377100327231, + 40.39659026776525 + ], + [ + -91.00239331413616, + 40.083335213548324 + ], + [ + -90.791015625, + 40.39659026776525 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.791015625, + 40.39659026776525 + ], + [ + -91.00239331413616, + 40.083335213548324 + ], + [ + -90.57963793586384, + 40.083335213548324 + ], + [ + -90.791015625, + 40.39659026776525 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.791015625, + 40.39659026776525 + ], + [ + -90.57963793586384, + 40.083335213548324 + ], + [ + -90.36826024672769, + 40.39659026776525 + ], + [ + -90.791015625, + 40.39659026776525 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.15688255759153, + 31.312193695474356 + ], + [ + -89.73412717931922, + 31.312193695474356 + ], + [ + -89.94550486845537, + 31.625448749691284 + ], + [ + -90.15688255759153, + 31.312193695474356 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.15688255759153, + 31.312193695474356 + ], + [ + -89.94550486845537, + 31.625448749691284 + ], + [ + -90.36826024672769, + 31.625448749691284 + ], + [ + -90.15688255759153, + 31.312193695474356 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.15688255759153, + 31.312193695474356 + ], + [ + -90.36826024672769, + 31.625448749691284 + ], + [ + -90.57963793586384, + 31.312193695474356 + ], + [ + -90.15688255759153, + 31.312193695474356 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.15688255759153, + 31.312193695474356 + ], + [ + -90.57963793586384, + 31.312193695474356 + ], + [ + -90.36826024672769, + 30.99893864125743 + ], + [ + -90.15688255759153, + 31.312193695474356 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.15688255759153, + 31.312193695474356 + ], + [ + -90.36826024672769, + 30.99893864125743 + ], + [ + -89.94550486845537, + 30.99893864125743 + ], + [ + -90.15688255759153, + 31.312193695474356 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.15688255759153, + 31.312193695474356 + ], + [ + -89.94550486845537, + 30.99893864125743 + ], + [ + -89.73412717931922, + 31.312193695474356 + ], + [ + -90.15688255759153, + 31.312193695474356 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.15688255759153, + 31.938703803908208 + ], + [ + -89.73412717931922, + 31.938703803908208 + ], + [ + -89.94550486845537, + 32.251958858125136 + ], + [ + -90.15688255759153, + 31.938703803908208 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.15688255759153, + 31.938703803908208 + ], + [ + -89.94550486845537, + 32.251958858125136 + ], + [ + -90.36826024672769, + 32.251958858125136 + ], + [ + -90.15688255759153, + 31.938703803908208 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.15688255759153, + 31.938703803908208 + ], + [ + -90.36826024672769, + 32.251958858125136 + ], + [ + -90.57963793586384, + 31.938703803908208 + ], + [ + -90.15688255759153, + 31.938703803908208 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.15688255759153, + 31.938703803908208 + ], + [ + -90.57963793586384, + 31.938703803908208 + ], + [ + -90.36826024672769, + 31.62544874969128 + ], + [ + -90.15688255759153, + 31.938703803908208 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.15688255759153, + 31.938703803908208 + ], + [ + -90.36826024672769, + 31.62544874969128 + ], + [ + -89.94550486845537, + 31.62544874969128 + ], + [ + -90.15688255759153, + 31.938703803908208 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.15688255759153, + 31.938703803908208 + ], + [ + -89.94550486845537, + 31.62544874969128 + ], + [ + -89.73412717931922, + 31.938703803908208 + ], + [ + -90.15688255759153, + 31.938703803908208 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.15688255759153, + 32.56521391234206 + ], + [ + -89.73412717931922, + 32.56521391234206 + ], + [ + -89.94550486845537, + 32.878468966558984 + ], + [ + -90.15688255759153, + 32.56521391234206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.15688255759153, + 32.56521391234206 + ], + [ + -89.94550486845537, + 32.878468966558984 + ], + [ + -90.36826024672769, + 32.878468966558984 + ], + [ + -90.15688255759153, + 32.56521391234206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.15688255759153, + 32.56521391234206 + ], + [ + -90.36826024672769, + 32.878468966558984 + ], + [ + -90.57963793586384, + 32.56521391234206 + ], + [ + -90.15688255759153, + 32.56521391234206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.15688255759153, + 32.56521391234206 + ], + [ + -90.57963793586384, + 32.56521391234206 + ], + [ + -90.36826024672769, + 32.251958858125136 + ], + [ + -90.15688255759153, + 32.56521391234206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.15688255759153, + 32.56521391234206 + ], + [ + -90.36826024672769, + 32.251958858125136 + ], + [ + -89.94550486845537, + 32.251958858125136 + ], + [ + -90.15688255759153, + 32.56521391234206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.15688255759153, + 32.56521391234206 + ], + [ + -89.94550486845537, + 32.251958858125136 + ], + [ + -89.73412717931922, + 32.56521391234206 + ], + [ + -90.15688255759153, + 32.56521391234206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.15688255759153, + 33.191724020775915 + ], + [ + -89.73412717931922, + 33.191724020775915 + ], + [ + -89.94550486845537, + 33.50497907499284 + ], + [ + -90.15688255759153, + 33.191724020775915 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.15688255759153, + 33.191724020775915 + ], + [ + -89.94550486845537, + 33.50497907499284 + ], + [ + -90.36826024672769, + 33.50497907499284 + ], + [ + -90.15688255759153, + 33.191724020775915 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.15688255759153, + 33.191724020775915 + ], + [ + -90.36826024672769, + 33.50497907499284 + ], + [ + -90.57963793586384, + 33.191724020775915 + ], + [ + -90.15688255759153, + 33.191724020775915 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.15688255759153, + 33.191724020775915 + ], + [ + -90.57963793586384, + 33.191724020775915 + ], + [ + -90.36826024672769, + 32.87846896655899 + ], + [ + -90.15688255759153, + 33.191724020775915 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.15688255759153, + 33.191724020775915 + ], + [ + -90.36826024672769, + 32.87846896655899 + ], + [ + -89.94550486845537, + 32.87846896655899 + ], + [ + -90.15688255759153, + 33.191724020775915 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.15688255759153, + 33.191724020775915 + ], + [ + -89.94550486845537, + 32.87846896655899 + ], + [ + -89.73412717931922, + 33.191724020775915 + ], + [ + -90.15688255759153, + 33.191724020775915 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.15688255759153, + 33.81823412920977 + ], + [ + -89.73412717931922, + 33.81823412920977 + ], + [ + -89.94550486845537, + 34.131489183426694 + ], + [ + -90.15688255759153, + 33.81823412920977 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.15688255759153, + 33.81823412920977 + ], + [ + -89.94550486845537, + 34.131489183426694 + ], + [ + -90.36826024672769, + 34.131489183426694 + ], + [ + -90.15688255759153, + 33.81823412920977 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.15688255759153, + 33.81823412920977 + ], + [ + -90.36826024672769, + 34.131489183426694 + ], + [ + -90.57963793586384, + 33.81823412920977 + ], + [ + -90.15688255759153, + 33.81823412920977 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.15688255759153, + 33.81823412920977 + ], + [ + -90.57963793586384, + 33.81823412920977 + ], + [ + -90.36826024672769, + 33.504979074992846 + ], + [ + -90.15688255759153, + 33.81823412920977 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.15688255759153, + 33.81823412920977 + ], + [ + -90.36826024672769, + 33.504979074992846 + ], + [ + -89.94550486845537, + 33.504979074992846 + ], + [ + -90.15688255759153, + 33.81823412920977 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.15688255759153, + 33.81823412920977 + ], + [ + -89.94550486845537, + 33.504979074992846 + ], + [ + -89.73412717931922, + 33.81823412920977 + ], + [ + -90.15688255759153, + 33.81823412920977 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.15688255759153, + 34.444744237643626 + ], + [ + -89.73412717931922, + 34.444744237643626 + ], + [ + -89.94550486845537, + 34.75799929186055 + ], + [ + -90.15688255759153, + 34.444744237643626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.15688255759153, + 34.444744237643626 + ], + [ + -89.94550486845537, + 34.75799929186055 + ], + [ + -90.36826024672769, + 34.75799929186055 + ], + [ + -90.15688255759153, + 34.444744237643626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.15688255759153, + 34.444744237643626 + ], + [ + -90.36826024672769, + 34.75799929186055 + ], + [ + -90.57963793586384, + 34.444744237643626 + ], + [ + -90.15688255759153, + 34.444744237643626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.15688255759153, + 34.444744237643626 + ], + [ + -90.57963793586384, + 34.444744237643626 + ], + [ + -90.36826024672769, + 34.1314891834267 + ], + [ + -90.15688255759153, + 34.444744237643626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.15688255759153, + 34.444744237643626 + ], + [ + -90.36826024672769, + 34.1314891834267 + ], + [ + -89.94550486845537, + 34.1314891834267 + ], + [ + -90.15688255759153, + 34.444744237643626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.15688255759153, + 34.444744237643626 + ], + [ + -89.94550486845537, + 34.1314891834267 + ], + [ + -89.73412717931922, + 34.444744237643626 + ], + [ + -90.15688255759153, + 34.444744237643626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.15688255759153, + 35.07125434607748 + ], + [ + -89.73412717931922, + 35.07125434607748 + ], + [ + -89.94550486845537, + 35.384509400294405 + ], + [ + -90.15688255759153, + 35.07125434607748 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.15688255759153, + 35.07125434607748 + ], + [ + -89.94550486845537, + 35.384509400294405 + ], + [ + -90.36826024672769, + 35.384509400294405 + ], + [ + -90.15688255759153, + 35.07125434607748 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.15688255759153, + 35.07125434607748 + ], + [ + -90.36826024672769, + 35.384509400294405 + ], + [ + -90.57963793586384, + 35.07125434607748 + ], + [ + -90.15688255759153, + 35.07125434607748 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.15688255759153, + 35.07125434607748 + ], + [ + -90.57963793586384, + 35.07125434607748 + ], + [ + -90.36826024672769, + 34.75799929186056 + ], + [ + -90.15688255759153, + 35.07125434607748 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.15688255759153, + 35.07125434607748 + ], + [ + -90.36826024672769, + 34.75799929186056 + ], + [ + -89.94550486845537, + 34.75799929186056 + ], + [ + -90.15688255759153, + 35.07125434607748 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.15688255759153, + 35.07125434607748 + ], + [ + -89.94550486845537, + 34.75799929186056 + ], + [ + -89.73412717931922, + 35.07125434607748 + ], + [ + -90.15688255759153, + 35.07125434607748 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.15688255759153, + 35.697764454511336 + ], + [ + -89.73412717931922, + 35.697764454511336 + ], + [ + -89.94550486845537, + 36.01101950872826 + ], + [ + -90.15688255759153, + 35.697764454511336 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.15688255759153, + 35.697764454511336 + ], + [ + -89.94550486845537, + 36.01101950872826 + ], + [ + -90.36826024672769, + 36.01101950872826 + ], + [ + -90.15688255759153, + 35.697764454511336 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.15688255759153, + 35.697764454511336 + ], + [ + -90.36826024672769, + 36.01101950872826 + ], + [ + -90.57963793586384, + 35.697764454511336 + ], + [ + -90.15688255759153, + 35.697764454511336 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.15688255759153, + 35.697764454511336 + ], + [ + -90.57963793586384, + 35.697764454511336 + ], + [ + -90.36826024672769, + 35.38450940029441 + ], + [ + -90.15688255759153, + 35.697764454511336 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.15688255759153, + 35.697764454511336 + ], + [ + -90.36826024672769, + 35.38450940029441 + ], + [ + -89.94550486845537, + 35.38450940029441 + ], + [ + -90.15688255759153, + 35.697764454511336 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.15688255759153, + 35.697764454511336 + ], + [ + -89.94550486845537, + 35.38450940029441 + ], + [ + -89.73412717931922, + 35.697764454511336 + ], + [ + -90.15688255759153, + 35.697764454511336 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.15688255759153, + 36.324274562945185 + ], + [ + -89.73412717931922, + 36.324274562945185 + ], + [ + -89.94550486845537, + 36.63752961716211 + ], + [ + -90.15688255759153, + 36.324274562945185 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.15688255759153, + 36.324274562945185 + ], + [ + -89.94550486845537, + 36.63752961716211 + ], + [ + -90.36826024672769, + 36.63752961716211 + ], + [ + -90.15688255759153, + 36.324274562945185 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.15688255759153, + 36.324274562945185 + ], + [ + -90.36826024672769, + 36.63752961716211 + ], + [ + -90.57963793586384, + 36.324274562945185 + ], + [ + -90.15688255759153, + 36.324274562945185 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.15688255759153, + 36.324274562945185 + ], + [ + -90.57963793586384, + 36.324274562945185 + ], + [ + -90.36826024672769, + 36.01101950872826 + ], + [ + -90.15688255759153, + 36.324274562945185 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.15688255759153, + 36.324274562945185 + ], + [ + -90.36826024672769, + 36.01101950872826 + ], + [ + -89.94550486845537, + 36.01101950872826 + ], + [ + -90.15688255759153, + 36.324274562945185 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.15688255759153, + 36.324274562945185 + ], + [ + -89.94550486845537, + 36.01101950872826 + ], + [ + -89.73412717931922, + 36.324274562945185 + ], + [ + -90.15688255759153, + 36.324274562945185 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.15688255759153, + 36.95078467137904 + ], + [ + -89.73412717931922, + 36.95078467137904 + ], + [ + -89.94550486845537, + 37.264039725595964 + ], + [ + -90.15688255759153, + 36.95078467137904 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.15688255759153, + 36.95078467137904 + ], + [ + -89.94550486845537, + 37.264039725595964 + ], + [ + -90.36826024672769, + 37.264039725595964 + ], + [ + -90.15688255759153, + 36.95078467137904 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.15688255759153, + 36.95078467137904 + ], + [ + -90.36826024672769, + 37.264039725595964 + ], + [ + -90.57963793586384, + 36.95078467137904 + ], + [ + -90.15688255759153, + 36.95078467137904 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.15688255759153, + 36.95078467137904 + ], + [ + -90.57963793586384, + 36.95078467137904 + ], + [ + -90.36826024672769, + 36.637529617162116 + ], + [ + -90.15688255759153, + 36.95078467137904 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.15688255759153, + 36.95078467137904 + ], + [ + -90.36826024672769, + 36.637529617162116 + ], + [ + -89.94550486845537, + 36.637529617162116 + ], + [ + -90.15688255759153, + 36.95078467137904 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.15688255759153, + 36.95078467137904 + ], + [ + -89.94550486845537, + 36.637529617162116 + ], + [ + -89.73412717931922, + 36.95078467137904 + ], + [ + -90.15688255759153, + 36.95078467137904 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.15688255759153, + 37.577294779812895 + ], + [ + -89.73412717931922, + 37.577294779812895 + ], + [ + -89.94550486845537, + 37.89054983402982 + ], + [ + -90.15688255759153, + 37.577294779812895 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.15688255759153, + 37.577294779812895 + ], + [ + -89.94550486845537, + 37.89054983402982 + ], + [ + -90.36826024672769, + 37.89054983402982 + ], + [ + -90.15688255759153, + 37.577294779812895 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.15688255759153, + 37.577294779812895 + ], + [ + -90.36826024672769, + 37.89054983402982 + ], + [ + -90.57963793586384, + 37.577294779812895 + ], + [ + -90.15688255759153, + 37.577294779812895 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.15688255759153, + 37.577294779812895 + ], + [ + -90.57963793586384, + 37.577294779812895 + ], + [ + -90.36826024672769, + 37.26403972559597 + ], + [ + -90.15688255759153, + 37.577294779812895 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.15688255759153, + 37.577294779812895 + ], + [ + -90.36826024672769, + 37.26403972559597 + ], + [ + -89.94550486845537, + 37.26403972559597 + ], + [ + -90.15688255759153, + 37.577294779812895 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.15688255759153, + 37.577294779812895 + ], + [ + -89.94550486845537, + 37.26403972559597 + ], + [ + -89.73412717931922, + 37.577294779812895 + ], + [ + -90.15688255759153, + 37.577294779812895 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.15688255759153, + 38.20380488824675 + ], + [ + -89.73412717931922, + 38.20380488824675 + ], + [ + -89.94550486845537, + 38.517059942463675 + ], + [ + -90.15688255759153, + 38.20380488824675 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.15688255759153, + 38.20380488824675 + ], + [ + -89.94550486845537, + 38.517059942463675 + ], + [ + -90.36826024672769, + 38.517059942463675 + ], + [ + -90.15688255759153, + 38.20380488824675 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.15688255759153, + 38.20380488824675 + ], + [ + -90.36826024672769, + 38.517059942463675 + ], + [ + -90.57963793586384, + 38.20380488824675 + ], + [ + -90.15688255759153, + 38.20380488824675 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.15688255759153, + 38.20380488824675 + ], + [ + -90.57963793586384, + 38.20380488824675 + ], + [ + -90.36826024672769, + 37.89054983402983 + ], + [ + -90.15688255759153, + 38.20380488824675 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.15688255759153, + 38.20380488824675 + ], + [ + -90.36826024672769, + 37.89054983402983 + ], + [ + -89.94550486845537, + 37.89054983402983 + ], + [ + -90.15688255759153, + 38.20380488824675 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.15688255759153, + 38.20380488824675 + ], + [ + -89.94550486845537, + 37.89054983402983 + ], + [ + -89.73412717931922, + 38.20380488824675 + ], + [ + -90.15688255759153, + 38.20380488824675 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.15688255759153, + 38.830314996680606 + ], + [ + -89.73412717931922, + 38.830314996680606 + ], + [ + -89.94550486845537, + 39.14357005089753 + ], + [ + -90.15688255759153, + 38.830314996680606 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.15688255759153, + 38.830314996680606 + ], + [ + -89.94550486845537, + 39.14357005089753 + ], + [ + -90.36826024672769, + 39.14357005089753 + ], + [ + -90.15688255759153, + 38.830314996680606 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.15688255759153, + 38.830314996680606 + ], + [ + -90.36826024672769, + 39.14357005089753 + ], + [ + -90.57963793586384, + 38.830314996680606 + ], + [ + -90.15688255759153, + 38.830314996680606 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.15688255759153, + 38.830314996680606 + ], + [ + -90.57963793586384, + 38.830314996680606 + ], + [ + -90.36826024672769, + 38.51705994246368 + ], + [ + -90.15688255759153, + 38.830314996680606 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.15688255759153, + 38.830314996680606 + ], + [ + -90.36826024672769, + 38.51705994246368 + ], + [ + -89.94550486845537, + 38.51705994246368 + ], + [ + -90.15688255759153, + 38.830314996680606 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.15688255759153, + 38.830314996680606 + ], + [ + -89.94550486845537, + 38.51705994246368 + ], + [ + -89.73412717931922, + 38.830314996680606 + ], + [ + -90.15688255759153, + 38.830314996680606 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.15688255759153, + 39.45682510511446 + ], + [ + -89.73412717931922, + 39.45682510511446 + ], + [ + -89.94550486845537, + 39.770080159331386 + ], + [ + -90.15688255759153, + 39.45682510511446 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.15688255759153, + 39.45682510511446 + ], + [ + -89.94550486845537, + 39.770080159331386 + ], + [ + -90.36826024672769, + 39.770080159331386 + ], + [ + -90.15688255759153, + 39.45682510511446 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.15688255759153, + 39.45682510511446 + ], + [ + -90.36826024672769, + 39.770080159331386 + ], + [ + -90.57963793586384, + 39.45682510511446 + ], + [ + -90.15688255759153, + 39.45682510511446 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.15688255759153, + 39.45682510511446 + ], + [ + -90.57963793586384, + 39.45682510511446 + ], + [ + -90.36826024672769, + 39.14357005089754 + ], + [ + -90.15688255759153, + 39.45682510511446 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.15688255759153, + 39.45682510511446 + ], + [ + -90.36826024672769, + 39.14357005089754 + ], + [ + -89.94550486845537, + 39.14357005089754 + ], + [ + -90.15688255759153, + 39.45682510511446 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.15688255759153, + 39.45682510511446 + ], + [ + -89.94550486845537, + 39.14357005089754 + ], + [ + -89.73412717931922, + 39.45682510511446 + ], + [ + -90.15688255759153, + 39.45682510511446 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.15688255759153, + 40.08333521354832 + ], + [ + -89.73412717931922, + 40.08333521354832 + ], + [ + -89.94550486845537, + 40.39659026776524 + ], + [ + -90.15688255759153, + 40.08333521354832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.15688255759153, + 40.08333521354832 + ], + [ + -89.94550486845537, + 40.39659026776524 + ], + [ + -90.36826024672769, + 40.39659026776524 + ], + [ + -90.15688255759153, + 40.08333521354832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.15688255759153, + 40.08333521354832 + ], + [ + -90.36826024672769, + 40.39659026776524 + ], + [ + -90.57963793586384, + 40.08333521354832 + ], + [ + -90.15688255759153, + 40.08333521354832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.15688255759153, + 40.08333521354832 + ], + [ + -90.57963793586384, + 40.08333521354832 + ], + [ + -90.36826024672769, + 39.77008015933139 + ], + [ + -90.15688255759153, + 40.08333521354832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.15688255759153, + 40.08333521354832 + ], + [ + -90.36826024672769, + 39.77008015933139 + ], + [ + -89.94550486845537, + 39.77008015933139 + ], + [ + -90.15688255759153, + 40.08333521354832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.15688255759153, + 40.08333521354832 + ], + [ + -89.94550486845537, + 39.77008015933139 + ], + [ + -89.73412717931922, + 40.08333521354832 + ], + [ + -90.15688255759153, + 40.08333521354832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.15688255759153, + 40.70984532198217 + ], + [ + -89.73412717931922, + 40.70984532198217 + ], + [ + -89.94550486845537, + 41.023100376199096 + ], + [ + -90.15688255759153, + 40.70984532198217 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.15688255759153, + 40.70984532198217 + ], + [ + -89.94550486845537, + 41.023100376199096 + ], + [ + -90.36826024672769, + 41.023100376199096 + ], + [ + -90.15688255759153, + 40.70984532198217 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.15688255759153, + 40.70984532198217 + ], + [ + -90.36826024672769, + 41.023100376199096 + ], + [ + -90.57963793586384, + 40.70984532198217 + ], + [ + -90.15688255759153, + 40.70984532198217 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.15688255759153, + 40.70984532198217 + ], + [ + -90.57963793586384, + 40.70984532198217 + ], + [ + -90.36826024672769, + 40.39659026776525 + ], + [ + -90.15688255759153, + 40.70984532198217 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.15688255759153, + 40.70984532198217 + ], + [ + -90.36826024672769, + 40.39659026776525 + ], + [ + -89.94550486845537, + 40.39659026776525 + ], + [ + -90.15688255759153, + 40.70984532198217 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.15688255759153, + 40.70984532198217 + ], + [ + -89.94550486845537, + 40.39659026776525 + ], + [ + -89.73412717931922, + 40.70984532198217 + ], + [ + -90.15688255759153, + 40.70984532198217 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.52274949018306, + 30.99893864125743 + ], + [ + -89.09999411191075, + 30.99893864125743 + ], + [ + -89.3113718010469, + 31.312193695474356 + ], + [ + -89.52274949018306, + 30.99893864125743 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.52274949018306, + 30.99893864125743 + ], + [ + -89.3113718010469, + 31.312193695474356 + ], + [ + -89.73412717931922, + 31.312193695474356 + ], + [ + -89.52274949018306, + 30.99893864125743 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.52274949018306, + 30.99893864125743 + ], + [ + -89.73412717931922, + 31.312193695474356 + ], + [ + -89.94550486845537, + 30.99893864125743 + ], + [ + -89.52274949018306, + 30.99893864125743 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.52274949018306, + 30.99893864125743 + ], + [ + -89.94550486845537, + 30.99893864125743 + ], + [ + -89.73412717931922, + 30.6856835870405 + ], + [ + -89.52274949018306, + 30.99893864125743 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.52274949018306, + 30.99893864125743 + ], + [ + -89.73412717931922, + 30.6856835870405 + ], + [ + -89.3113718010469, + 30.6856835870405 + ], + [ + -89.52274949018306, + 30.99893864125743 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.52274949018306, + 30.99893864125743 + ], + [ + -89.3113718010469, + 30.6856835870405 + ], + [ + -89.09999411191075, + 30.99893864125743 + ], + [ + -89.52274949018306, + 30.99893864125743 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.52274949018306, + 31.62544874969128 + ], + [ + -89.09999411191075, + 31.62544874969128 + ], + [ + -89.3113718010469, + 31.938703803908208 + ], + [ + -89.52274949018306, + 31.62544874969128 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.52274949018306, + 31.62544874969128 + ], + [ + -89.3113718010469, + 31.938703803908208 + ], + [ + -89.73412717931922, + 31.938703803908208 + ], + [ + -89.52274949018306, + 31.62544874969128 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.52274949018306, + 31.62544874969128 + ], + [ + -89.73412717931922, + 31.938703803908208 + ], + [ + -89.94550486845537, + 31.62544874969128 + ], + [ + -89.52274949018306, + 31.62544874969128 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.52274949018306, + 31.62544874969128 + ], + [ + -89.94550486845537, + 31.62544874969128 + ], + [ + -89.73412717931922, + 31.312193695474352 + ], + [ + -89.52274949018306, + 31.62544874969128 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.52274949018306, + 31.62544874969128 + ], + [ + -89.73412717931922, + 31.312193695474352 + ], + [ + -89.3113718010469, + 31.312193695474352 + ], + [ + -89.52274949018306, + 31.62544874969128 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.52274949018306, + 31.62544874969128 + ], + [ + -89.3113718010469, + 31.312193695474352 + ], + [ + -89.09999411191075, + 31.62544874969128 + ], + [ + -89.52274949018306, + 31.62544874969128 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.52274949018306, + 32.251958858125136 + ], + [ + -89.09999411191075, + 32.251958858125136 + ], + [ + -89.3113718010469, + 32.56521391234206 + ], + [ + -89.52274949018306, + 32.251958858125136 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.52274949018306, + 32.251958858125136 + ], + [ + -89.3113718010469, + 32.56521391234206 + ], + [ + -89.73412717931922, + 32.56521391234206 + ], + [ + -89.52274949018306, + 32.251958858125136 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.52274949018306, + 32.251958858125136 + ], + [ + -89.73412717931922, + 32.56521391234206 + ], + [ + -89.94550486845537, + 32.251958858125136 + ], + [ + -89.52274949018306, + 32.251958858125136 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.52274949018306, + 32.251958858125136 + ], + [ + -89.94550486845537, + 32.251958858125136 + ], + [ + -89.73412717931922, + 31.938703803908208 + ], + [ + -89.52274949018306, + 32.251958858125136 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.52274949018306, + 32.251958858125136 + ], + [ + -89.73412717931922, + 31.938703803908208 + ], + [ + -89.3113718010469, + 31.938703803908208 + ], + [ + -89.52274949018306, + 32.251958858125136 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.52274949018306, + 32.251958858125136 + ], + [ + -89.3113718010469, + 31.938703803908208 + ], + [ + -89.09999411191075, + 32.251958858125136 + ], + [ + -89.52274949018306, + 32.251958858125136 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.52274949018306, + 32.87846896655899 + ], + [ + -89.09999411191075, + 32.87846896655899 + ], + [ + -89.3113718010469, + 33.191724020775915 + ], + [ + -89.52274949018306, + 32.87846896655899 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.52274949018306, + 32.87846896655899 + ], + [ + -89.3113718010469, + 33.191724020775915 + ], + [ + -89.73412717931922, + 33.191724020775915 + ], + [ + -89.52274949018306, + 32.87846896655899 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.52274949018306, + 32.87846896655899 + ], + [ + -89.73412717931922, + 33.191724020775915 + ], + [ + -89.94550486845537, + 32.87846896655899 + ], + [ + -89.52274949018306, + 32.87846896655899 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.52274949018306, + 32.87846896655899 + ], + [ + -89.94550486845537, + 32.87846896655899 + ], + [ + -89.73412717931922, + 32.56521391234207 + ], + [ + -89.52274949018306, + 32.87846896655899 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.52274949018306, + 32.87846896655899 + ], + [ + -89.73412717931922, + 32.56521391234207 + ], + [ + -89.3113718010469, + 32.56521391234207 + ], + [ + -89.52274949018306, + 32.87846896655899 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.52274949018306, + 32.87846896655899 + ], + [ + -89.3113718010469, + 32.56521391234207 + ], + [ + -89.09999411191075, + 32.87846896655899 + ], + [ + -89.52274949018306, + 32.87846896655899 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.52274949018306, + 33.504979074992846 + ], + [ + -89.09999411191075, + 33.504979074992846 + ], + [ + -89.3113718010469, + 33.81823412920977 + ], + [ + -89.52274949018306, + 33.504979074992846 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.52274949018306, + 33.504979074992846 + ], + [ + -89.3113718010469, + 33.81823412920977 + ], + [ + -89.73412717931922, + 33.81823412920977 + ], + [ + -89.52274949018306, + 33.504979074992846 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.52274949018306, + 33.504979074992846 + ], + [ + -89.73412717931922, + 33.81823412920977 + ], + [ + -89.94550486845537, + 33.504979074992846 + ], + [ + -89.52274949018306, + 33.504979074992846 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.52274949018306, + 33.504979074992846 + ], + [ + -89.94550486845537, + 33.504979074992846 + ], + [ + -89.73412717931922, + 33.19172402077592 + ], + [ + -89.52274949018306, + 33.504979074992846 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.52274949018306, + 33.504979074992846 + ], + [ + -89.73412717931922, + 33.19172402077592 + ], + [ + -89.3113718010469, + 33.19172402077592 + ], + [ + -89.52274949018306, + 33.504979074992846 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.52274949018306, + 33.504979074992846 + ], + [ + -89.3113718010469, + 33.19172402077592 + ], + [ + -89.09999411191075, + 33.504979074992846 + ], + [ + -89.52274949018306, + 33.504979074992846 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.52274949018306, + 34.1314891834267 + ], + [ + -89.09999411191075, + 34.1314891834267 + ], + [ + -89.3113718010469, + 34.444744237643626 + ], + [ + -89.52274949018306, + 34.1314891834267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.52274949018306, + 34.1314891834267 + ], + [ + -89.3113718010469, + 34.444744237643626 + ], + [ + -89.73412717931922, + 34.444744237643626 + ], + [ + -89.52274949018306, + 34.1314891834267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.52274949018306, + 34.1314891834267 + ], + [ + -89.73412717931922, + 34.444744237643626 + ], + [ + -89.94550486845537, + 34.1314891834267 + ], + [ + -89.52274949018306, + 34.1314891834267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.52274949018306, + 34.1314891834267 + ], + [ + -89.94550486845537, + 34.1314891834267 + ], + [ + -89.73412717931922, + 33.81823412920978 + ], + [ + -89.52274949018306, + 34.1314891834267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.52274949018306, + 34.1314891834267 + ], + [ + -89.73412717931922, + 33.81823412920978 + ], + [ + -89.3113718010469, + 33.81823412920978 + ], + [ + -89.52274949018306, + 34.1314891834267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.52274949018306, + 34.1314891834267 + ], + [ + -89.3113718010469, + 33.81823412920978 + ], + [ + -89.09999411191075, + 34.1314891834267 + ], + [ + -89.52274949018306, + 34.1314891834267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.52274949018306, + 34.75799929186056 + ], + [ + -89.09999411191075, + 34.75799929186056 + ], + [ + -89.3113718010469, + 35.07125434607748 + ], + [ + -89.52274949018306, + 34.75799929186056 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.52274949018306, + 34.75799929186056 + ], + [ + -89.3113718010469, + 35.07125434607748 + ], + [ + -89.73412717931922, + 35.07125434607748 + ], + [ + -89.52274949018306, + 34.75799929186056 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.52274949018306, + 34.75799929186056 + ], + [ + -89.73412717931922, + 35.07125434607748 + ], + [ + -89.94550486845537, + 34.75799929186056 + ], + [ + -89.52274949018306, + 34.75799929186056 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.52274949018306, + 34.75799929186056 + ], + [ + -89.94550486845537, + 34.75799929186056 + ], + [ + -89.73412717931922, + 34.44474423764363 + ], + [ + -89.52274949018306, + 34.75799929186056 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.52274949018306, + 34.75799929186056 + ], + [ + -89.73412717931922, + 34.44474423764363 + ], + [ + -89.3113718010469, + 34.44474423764363 + ], + [ + -89.52274949018306, + 34.75799929186056 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.52274949018306, + 34.75799929186056 + ], + [ + -89.3113718010469, + 34.44474423764363 + ], + [ + -89.09999411191075, + 34.75799929186056 + ], + [ + -89.52274949018306, + 34.75799929186056 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.52274949018306, + 35.38450940029441 + ], + [ + -89.09999411191075, + 35.38450940029441 + ], + [ + -89.3113718010469, + 35.697764454511336 + ], + [ + -89.52274949018306, + 35.38450940029441 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.52274949018306, + 35.38450940029441 + ], + [ + -89.3113718010469, + 35.697764454511336 + ], + [ + -89.73412717931922, + 35.697764454511336 + ], + [ + -89.52274949018306, + 35.38450940029441 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.52274949018306, + 35.38450940029441 + ], + [ + -89.73412717931922, + 35.697764454511336 + ], + [ + -89.94550486845537, + 35.38450940029441 + ], + [ + -89.52274949018306, + 35.38450940029441 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.52274949018306, + 35.38450940029441 + ], + [ + -89.94550486845537, + 35.38450940029441 + ], + [ + -89.73412717931922, + 35.07125434607749 + ], + [ + -89.52274949018306, + 35.38450940029441 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.52274949018306, + 35.38450940029441 + ], + [ + -89.73412717931922, + 35.07125434607749 + ], + [ + -89.3113718010469, + 35.07125434607749 + ], + [ + -89.52274949018306, + 35.38450940029441 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.52274949018306, + 35.38450940029441 + ], + [ + -89.3113718010469, + 35.07125434607749 + ], + [ + -89.09999411191075, + 35.38450940029441 + ], + [ + -89.52274949018306, + 35.38450940029441 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.52274949018306, + 36.01101950872826 + ], + [ + -89.09999411191075, + 36.01101950872826 + ], + [ + -89.3113718010469, + 36.324274562945185 + ], + [ + -89.52274949018306, + 36.01101950872826 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.52274949018306, + 36.01101950872826 + ], + [ + -89.3113718010469, + 36.324274562945185 + ], + [ + -89.73412717931922, + 36.324274562945185 + ], + [ + -89.52274949018306, + 36.01101950872826 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.52274949018306, + 36.01101950872826 + ], + [ + -89.73412717931922, + 36.324274562945185 + ], + [ + -89.94550486845537, + 36.01101950872826 + ], + [ + -89.52274949018306, + 36.01101950872826 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.52274949018306, + 36.01101950872826 + ], + [ + -89.94550486845537, + 36.01101950872826 + ], + [ + -89.73412717931922, + 35.697764454511336 + ], + [ + -89.52274949018306, + 36.01101950872826 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.52274949018306, + 36.01101950872826 + ], + [ + -89.73412717931922, + 35.697764454511336 + ], + [ + -89.3113718010469, + 35.697764454511336 + ], + [ + -89.52274949018306, + 36.01101950872826 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.52274949018306, + 36.01101950872826 + ], + [ + -89.3113718010469, + 35.697764454511336 + ], + [ + -89.09999411191075, + 36.01101950872826 + ], + [ + -89.52274949018306, + 36.01101950872826 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.52274949018306, + 36.637529617162116 + ], + [ + -89.09999411191075, + 36.637529617162116 + ], + [ + -89.3113718010469, + 36.95078467137904 + ], + [ + -89.52274949018306, + 36.637529617162116 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.52274949018306, + 36.637529617162116 + ], + [ + -89.3113718010469, + 36.95078467137904 + ], + [ + -89.73412717931922, + 36.95078467137904 + ], + [ + -89.52274949018306, + 36.637529617162116 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.52274949018306, + 36.637529617162116 + ], + [ + -89.73412717931922, + 36.95078467137904 + ], + [ + -89.94550486845537, + 36.637529617162116 + ], + [ + -89.52274949018306, + 36.637529617162116 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.52274949018306, + 36.637529617162116 + ], + [ + -89.94550486845537, + 36.637529617162116 + ], + [ + -89.73412717931922, + 36.32427456294519 + ], + [ + -89.52274949018306, + 36.637529617162116 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.52274949018306, + 36.637529617162116 + ], + [ + -89.73412717931922, + 36.32427456294519 + ], + [ + -89.3113718010469, + 36.32427456294519 + ], + [ + -89.52274949018306, + 36.637529617162116 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.52274949018306, + 36.637529617162116 + ], + [ + -89.3113718010469, + 36.32427456294519 + ], + [ + -89.09999411191075, + 36.637529617162116 + ], + [ + -89.52274949018306, + 36.637529617162116 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.52274949018306, + 37.26403972559597 + ], + [ + -89.09999411191075, + 37.26403972559597 + ], + [ + -89.3113718010469, + 37.577294779812895 + ], + [ + -89.52274949018306, + 37.26403972559597 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.52274949018306, + 37.26403972559597 + ], + [ + -89.3113718010469, + 37.577294779812895 + ], + [ + -89.73412717931922, + 37.577294779812895 + ], + [ + -89.52274949018306, + 37.26403972559597 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.52274949018306, + 37.26403972559597 + ], + [ + -89.73412717931922, + 37.577294779812895 + ], + [ + -89.94550486845537, + 37.26403972559597 + ], + [ + -89.52274949018306, + 37.26403972559597 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.52274949018306, + 37.26403972559597 + ], + [ + -89.94550486845537, + 37.26403972559597 + ], + [ + -89.73412717931922, + 36.95078467137905 + ], + [ + -89.52274949018306, + 37.26403972559597 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.52274949018306, + 37.26403972559597 + ], + [ + -89.73412717931922, + 36.95078467137905 + ], + [ + -89.3113718010469, + 36.95078467137905 + ], + [ + -89.52274949018306, + 37.26403972559597 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.52274949018306, + 37.26403972559597 + ], + [ + -89.3113718010469, + 36.95078467137905 + ], + [ + -89.09999411191075, + 37.26403972559597 + ], + [ + -89.52274949018306, + 37.26403972559597 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.52274949018306, + 37.89054983402983 + ], + [ + -89.09999411191075, + 37.89054983402983 + ], + [ + -89.3113718010469, + 38.20380488824675 + ], + [ + -89.52274949018306, + 37.89054983402983 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.52274949018306, + 37.89054983402983 + ], + [ + -89.3113718010469, + 38.20380488824675 + ], + [ + -89.73412717931922, + 38.20380488824675 + ], + [ + -89.52274949018306, + 37.89054983402983 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.52274949018306, + 37.89054983402983 + ], + [ + -89.73412717931922, + 38.20380488824675 + ], + [ + -89.94550486845537, + 37.89054983402983 + ], + [ + -89.52274949018306, + 37.89054983402983 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.52274949018306, + 37.89054983402983 + ], + [ + -89.94550486845537, + 37.89054983402983 + ], + [ + -89.73412717931922, + 37.5772947798129 + ], + [ + -89.52274949018306, + 37.89054983402983 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.52274949018306, + 37.89054983402983 + ], + [ + -89.73412717931922, + 37.5772947798129 + ], + [ + -89.3113718010469, + 37.5772947798129 + ], + [ + -89.52274949018306, + 37.89054983402983 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.52274949018306, + 37.89054983402983 + ], + [ + -89.3113718010469, + 37.5772947798129 + ], + [ + -89.09999411191075, + 37.89054983402983 + ], + [ + -89.52274949018306, + 37.89054983402983 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.52274949018306, + 38.51705994246368 + ], + [ + -89.09999411191075, + 38.51705994246368 + ], + [ + -89.3113718010469, + 38.830314996680606 + ], + [ + -89.52274949018306, + 38.51705994246368 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.52274949018306, + 38.51705994246368 + ], + [ + -89.3113718010469, + 38.830314996680606 + ], + [ + -89.73412717931922, + 38.830314996680606 + ], + [ + -89.52274949018306, + 38.51705994246368 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.52274949018306, + 38.51705994246368 + ], + [ + -89.73412717931922, + 38.830314996680606 + ], + [ + -89.94550486845537, + 38.51705994246368 + ], + [ + -89.52274949018306, + 38.51705994246368 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.52274949018306, + 38.51705994246368 + ], + [ + -89.94550486845537, + 38.51705994246368 + ], + [ + -89.73412717931922, + 38.20380488824676 + ], + [ + -89.52274949018306, + 38.51705994246368 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.52274949018306, + 38.51705994246368 + ], + [ + -89.73412717931922, + 38.20380488824676 + ], + [ + -89.3113718010469, + 38.20380488824676 + ], + [ + -89.52274949018306, + 38.51705994246368 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.52274949018306, + 38.51705994246368 + ], + [ + -89.3113718010469, + 38.20380488824676 + ], + [ + -89.09999411191075, + 38.51705994246368 + ], + [ + -89.52274949018306, + 38.51705994246368 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.52274949018306, + 39.14357005089754 + ], + [ + -89.09999411191075, + 39.14357005089754 + ], + [ + -89.3113718010469, + 39.45682510511446 + ], + [ + -89.52274949018306, + 39.14357005089754 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.52274949018306, + 39.14357005089754 + ], + [ + -89.3113718010469, + 39.45682510511446 + ], + [ + -89.73412717931922, + 39.45682510511446 + ], + [ + -89.52274949018306, + 39.14357005089754 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.52274949018306, + 39.14357005089754 + ], + [ + -89.73412717931922, + 39.45682510511446 + ], + [ + -89.94550486845537, + 39.14357005089754 + ], + [ + -89.52274949018306, + 39.14357005089754 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.52274949018306, + 39.14357005089754 + ], + [ + -89.94550486845537, + 39.14357005089754 + ], + [ + -89.73412717931922, + 38.83031499668061 + ], + [ + -89.52274949018306, + 39.14357005089754 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.52274949018306, + 39.14357005089754 + ], + [ + -89.73412717931922, + 38.83031499668061 + ], + [ + -89.3113718010469, + 38.83031499668061 + ], + [ + -89.52274949018306, + 39.14357005089754 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.52274949018306, + 39.14357005089754 + ], + [ + -89.3113718010469, + 38.83031499668061 + ], + [ + -89.09999411191075, + 39.14357005089754 + ], + [ + -89.52274949018306, + 39.14357005089754 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.52274949018306, + 39.77008015933139 + ], + [ + -89.09999411191075, + 39.77008015933139 + ], + [ + -89.3113718010469, + 40.08333521354832 + ], + [ + -89.52274949018306, + 39.77008015933139 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.52274949018306, + 39.77008015933139 + ], + [ + -89.3113718010469, + 40.08333521354832 + ], + [ + -89.73412717931922, + 40.08333521354832 + ], + [ + -89.52274949018306, + 39.77008015933139 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.52274949018306, + 39.77008015933139 + ], + [ + -89.73412717931922, + 40.08333521354832 + ], + [ + -89.94550486845537, + 39.77008015933139 + ], + [ + -89.52274949018306, + 39.77008015933139 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.52274949018306, + 39.77008015933139 + ], + [ + -89.94550486845537, + 39.77008015933139 + ], + [ + -89.73412717931922, + 39.45682510511447 + ], + [ + -89.52274949018306, + 39.77008015933139 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.52274949018306, + 39.77008015933139 + ], + [ + -89.73412717931922, + 39.45682510511447 + ], + [ + -89.3113718010469, + 39.45682510511447 + ], + [ + -89.52274949018306, + 39.77008015933139 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.52274949018306, + 39.77008015933139 + ], + [ + -89.3113718010469, + 39.45682510511447 + ], + [ + -89.09999411191075, + 39.77008015933139 + ], + [ + -89.52274949018306, + 39.77008015933139 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.52274949018306, + 40.39659026776525 + ], + [ + -89.09999411191075, + 40.39659026776525 + ], + [ + -89.3113718010469, + 40.70984532198217 + ], + [ + -89.52274949018306, + 40.39659026776525 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.52274949018306, + 40.39659026776525 + ], + [ + -89.3113718010469, + 40.70984532198217 + ], + [ + -89.73412717931922, + 40.70984532198217 + ], + [ + -89.52274949018306, + 40.39659026776525 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.52274949018306, + 40.39659026776525 + ], + [ + -89.73412717931922, + 40.70984532198217 + ], + [ + -89.94550486845537, + 40.39659026776525 + ], + [ + -89.52274949018306, + 40.39659026776525 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.52274949018306, + 40.39659026776525 + ], + [ + -89.94550486845537, + 40.39659026776525 + ], + [ + -89.73412717931922, + 40.083335213548324 + ], + [ + -89.52274949018306, + 40.39659026776525 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.52274949018306, + 40.39659026776525 + ], + [ + -89.73412717931922, + 40.083335213548324 + ], + [ + -89.3113718010469, + 40.083335213548324 + ], + [ + -89.52274949018306, + 40.39659026776525 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.52274949018306, + 40.39659026776525 + ], + [ + -89.3113718010469, + 40.083335213548324 + ], + [ + -89.09999411191075, + 40.39659026776525 + ], + [ + -89.52274949018306, + 40.39659026776525 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.8886164227746, + 31.312193695474356 + ], + [ + -88.46586104450229, + 31.312193695474356 + ], + [ + -88.67723873363845, + 31.625448749691284 + ], + [ + -88.8886164227746, + 31.312193695474356 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.8886164227746, + 31.312193695474356 + ], + [ + -88.67723873363845, + 31.625448749691284 + ], + [ + -89.09999411191076, + 31.625448749691284 + ], + [ + -88.8886164227746, + 31.312193695474356 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.8886164227746, + 31.312193695474356 + ], + [ + -89.09999411191076, + 31.625448749691284 + ], + [ + -89.31137180104692, + 31.312193695474356 + ], + [ + -88.8886164227746, + 31.312193695474356 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.8886164227746, + 31.312193695474356 + ], + [ + -89.31137180104692, + 31.312193695474356 + ], + [ + -89.09999411191076, + 30.99893864125743 + ], + [ + -88.8886164227746, + 31.312193695474356 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.8886164227746, + 31.312193695474356 + ], + [ + -89.09999411191076, + 30.99893864125743 + ], + [ + -88.67723873363845, + 30.99893864125743 + ], + [ + -88.8886164227746, + 31.312193695474356 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.8886164227746, + 31.312193695474356 + ], + [ + -88.67723873363845, + 30.99893864125743 + ], + [ + -88.46586104450229, + 31.312193695474356 + ], + [ + -88.8886164227746, + 31.312193695474356 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.8886164227746, + 31.938703803908208 + ], + [ + -88.46586104450229, + 31.938703803908208 + ], + [ + -88.67723873363845, + 32.251958858125136 + ], + [ + -88.8886164227746, + 31.938703803908208 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.8886164227746, + 31.938703803908208 + ], + [ + -88.67723873363845, + 32.251958858125136 + ], + [ + -89.09999411191076, + 32.251958858125136 + ], + [ + -88.8886164227746, + 31.938703803908208 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.8886164227746, + 31.938703803908208 + ], + [ + -89.09999411191076, + 32.251958858125136 + ], + [ + -89.31137180104692, + 31.938703803908208 + ], + [ + -88.8886164227746, + 31.938703803908208 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.8886164227746, + 31.938703803908208 + ], + [ + -89.31137180104692, + 31.938703803908208 + ], + [ + -89.09999411191076, + 31.62544874969128 + ], + [ + -88.8886164227746, + 31.938703803908208 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.8886164227746, + 31.938703803908208 + ], + [ + -89.09999411191076, + 31.62544874969128 + ], + [ + -88.67723873363845, + 31.62544874969128 + ], + [ + -88.8886164227746, + 31.938703803908208 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.8886164227746, + 31.938703803908208 + ], + [ + -88.67723873363845, + 31.62544874969128 + ], + [ + -88.46586104450229, + 31.938703803908208 + ], + [ + -88.8886164227746, + 31.938703803908208 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.8886164227746, + 32.56521391234206 + ], + [ + -88.46586104450229, + 32.56521391234206 + ], + [ + -88.67723873363845, + 32.878468966558984 + ], + [ + -88.8886164227746, + 32.56521391234206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.8886164227746, + 32.56521391234206 + ], + [ + -88.67723873363845, + 32.878468966558984 + ], + [ + -89.09999411191076, + 32.878468966558984 + ], + [ + -88.8886164227746, + 32.56521391234206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.8886164227746, + 32.56521391234206 + ], + [ + -89.09999411191076, + 32.878468966558984 + ], + [ + -89.31137180104692, + 32.56521391234206 + ], + [ + -88.8886164227746, + 32.56521391234206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.8886164227746, + 32.56521391234206 + ], + [ + -89.31137180104692, + 32.56521391234206 + ], + [ + -89.09999411191076, + 32.251958858125136 + ], + [ + -88.8886164227746, + 32.56521391234206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.8886164227746, + 32.56521391234206 + ], + [ + -89.09999411191076, + 32.251958858125136 + ], + [ + -88.67723873363845, + 32.251958858125136 + ], + [ + -88.8886164227746, + 32.56521391234206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.8886164227746, + 32.56521391234206 + ], + [ + -88.67723873363845, + 32.251958858125136 + ], + [ + -88.46586104450229, + 32.56521391234206 + ], + [ + -88.8886164227746, + 32.56521391234206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.8886164227746, + 33.191724020775915 + ], + [ + -88.46586104450229, + 33.191724020775915 + ], + [ + -88.67723873363845, + 33.50497907499284 + ], + [ + -88.8886164227746, + 33.191724020775915 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.8886164227746, + 33.191724020775915 + ], + [ + -88.67723873363845, + 33.50497907499284 + ], + [ + -89.09999411191076, + 33.50497907499284 + ], + [ + -88.8886164227746, + 33.191724020775915 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.8886164227746, + 33.191724020775915 + ], + [ + -89.09999411191076, + 33.50497907499284 + ], + [ + -89.31137180104692, + 33.191724020775915 + ], + [ + -88.8886164227746, + 33.191724020775915 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.8886164227746, + 33.191724020775915 + ], + [ + -89.31137180104692, + 33.191724020775915 + ], + [ + -89.09999411191076, + 32.87846896655899 + ], + [ + -88.8886164227746, + 33.191724020775915 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.8886164227746, + 33.191724020775915 + ], + [ + -89.09999411191076, + 32.87846896655899 + ], + [ + -88.67723873363845, + 32.87846896655899 + ], + [ + -88.8886164227746, + 33.191724020775915 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.8886164227746, + 33.191724020775915 + ], + [ + -88.67723873363845, + 32.87846896655899 + ], + [ + -88.46586104450229, + 33.191724020775915 + ], + [ + -88.8886164227746, + 33.191724020775915 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.8886164227746, + 33.81823412920977 + ], + [ + -88.46586104450229, + 33.81823412920977 + ], + [ + -88.67723873363845, + 34.131489183426694 + ], + [ + -88.8886164227746, + 33.81823412920977 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.8886164227746, + 33.81823412920977 + ], + [ + -88.67723873363845, + 34.131489183426694 + ], + [ + -89.09999411191076, + 34.131489183426694 + ], + [ + -88.8886164227746, + 33.81823412920977 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.8886164227746, + 33.81823412920977 + ], + [ + -89.09999411191076, + 34.131489183426694 + ], + [ + -89.31137180104692, + 33.81823412920977 + ], + [ + -88.8886164227746, + 33.81823412920977 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.8886164227746, + 33.81823412920977 + ], + [ + -89.31137180104692, + 33.81823412920977 + ], + [ + -89.09999411191076, + 33.504979074992846 + ], + [ + -88.8886164227746, + 33.81823412920977 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.8886164227746, + 33.81823412920977 + ], + [ + -89.09999411191076, + 33.504979074992846 + ], + [ + -88.67723873363845, + 33.504979074992846 + ], + [ + -88.8886164227746, + 33.81823412920977 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.8886164227746, + 33.81823412920977 + ], + [ + -88.67723873363845, + 33.504979074992846 + ], + [ + -88.46586104450229, + 33.81823412920977 + ], + [ + -88.8886164227746, + 33.81823412920977 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.8886164227746, + 34.444744237643626 + ], + [ + -88.46586104450229, + 34.444744237643626 + ], + [ + -88.67723873363845, + 34.75799929186055 + ], + [ + -88.8886164227746, + 34.444744237643626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.8886164227746, + 34.444744237643626 + ], + [ + -88.67723873363845, + 34.75799929186055 + ], + [ + -89.09999411191076, + 34.75799929186055 + ], + [ + -88.8886164227746, + 34.444744237643626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.8886164227746, + 34.444744237643626 + ], + [ + -89.09999411191076, + 34.75799929186055 + ], + [ + -89.31137180104692, + 34.444744237643626 + ], + [ + -88.8886164227746, + 34.444744237643626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.8886164227746, + 34.444744237643626 + ], + [ + -89.31137180104692, + 34.444744237643626 + ], + [ + -89.09999411191076, + 34.1314891834267 + ], + [ + -88.8886164227746, + 34.444744237643626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.8886164227746, + 34.444744237643626 + ], + [ + -89.09999411191076, + 34.1314891834267 + ], + [ + -88.67723873363845, + 34.1314891834267 + ], + [ + -88.8886164227746, + 34.444744237643626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.8886164227746, + 34.444744237643626 + ], + [ + -88.67723873363845, + 34.1314891834267 + ], + [ + -88.46586104450229, + 34.444744237643626 + ], + [ + -88.8886164227746, + 34.444744237643626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.8886164227746, + 35.07125434607748 + ], + [ + -88.46586104450229, + 35.07125434607748 + ], + [ + -88.67723873363845, + 35.384509400294405 + ], + [ + -88.8886164227746, + 35.07125434607748 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.8886164227746, + 35.07125434607748 + ], + [ + -88.67723873363845, + 35.384509400294405 + ], + [ + -89.09999411191076, + 35.384509400294405 + ], + [ + -88.8886164227746, + 35.07125434607748 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.8886164227746, + 35.07125434607748 + ], + [ + -89.09999411191076, + 35.384509400294405 + ], + [ + -89.31137180104692, + 35.07125434607748 + ], + [ + -88.8886164227746, + 35.07125434607748 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.8886164227746, + 35.07125434607748 + ], + [ + -89.31137180104692, + 35.07125434607748 + ], + [ + -89.09999411191076, + 34.75799929186056 + ], + [ + -88.8886164227746, + 35.07125434607748 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.8886164227746, + 35.07125434607748 + ], + [ + -89.09999411191076, + 34.75799929186056 + ], + [ + -88.67723873363845, + 34.75799929186056 + ], + [ + -88.8886164227746, + 35.07125434607748 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.8886164227746, + 35.07125434607748 + ], + [ + -88.67723873363845, + 34.75799929186056 + ], + [ + -88.46586104450229, + 35.07125434607748 + ], + [ + -88.8886164227746, + 35.07125434607748 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.8886164227746, + 35.697764454511336 + ], + [ + -88.46586104450229, + 35.697764454511336 + ], + [ + -88.67723873363845, + 36.01101950872826 + ], + [ + -88.8886164227746, + 35.697764454511336 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.8886164227746, + 35.697764454511336 + ], + [ + -88.67723873363845, + 36.01101950872826 + ], + [ + -89.09999411191076, + 36.01101950872826 + ], + [ + -88.8886164227746, + 35.697764454511336 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.8886164227746, + 35.697764454511336 + ], + [ + -89.09999411191076, + 36.01101950872826 + ], + [ + -89.31137180104692, + 35.697764454511336 + ], + [ + -88.8886164227746, + 35.697764454511336 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.8886164227746, + 35.697764454511336 + ], + [ + -89.31137180104692, + 35.697764454511336 + ], + [ + -89.09999411191076, + 35.38450940029441 + ], + [ + -88.8886164227746, + 35.697764454511336 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.8886164227746, + 35.697764454511336 + ], + [ + -89.09999411191076, + 35.38450940029441 + ], + [ + -88.67723873363845, + 35.38450940029441 + ], + [ + -88.8886164227746, + 35.697764454511336 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.8886164227746, + 35.697764454511336 + ], + [ + -88.67723873363845, + 35.38450940029441 + ], + [ + -88.46586104450229, + 35.697764454511336 + ], + [ + -88.8886164227746, + 35.697764454511336 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.8886164227746, + 36.324274562945185 + ], + [ + -88.46586104450229, + 36.324274562945185 + ], + [ + -88.67723873363845, + 36.63752961716211 + ], + [ + -88.8886164227746, + 36.324274562945185 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.8886164227746, + 36.324274562945185 + ], + [ + -88.67723873363845, + 36.63752961716211 + ], + [ + -89.09999411191076, + 36.63752961716211 + ], + [ + -88.8886164227746, + 36.324274562945185 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.8886164227746, + 36.324274562945185 + ], + [ + -89.09999411191076, + 36.63752961716211 + ], + [ + -89.31137180104692, + 36.324274562945185 + ], + [ + -88.8886164227746, + 36.324274562945185 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.8886164227746, + 36.324274562945185 + ], + [ + -89.31137180104692, + 36.324274562945185 + ], + [ + -89.09999411191076, + 36.01101950872826 + ], + [ + -88.8886164227746, + 36.324274562945185 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.8886164227746, + 36.324274562945185 + ], + [ + -89.09999411191076, + 36.01101950872826 + ], + [ + -88.67723873363845, + 36.01101950872826 + ], + [ + -88.8886164227746, + 36.324274562945185 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.8886164227746, + 36.324274562945185 + ], + [ + -88.67723873363845, + 36.01101950872826 + ], + [ + -88.46586104450229, + 36.324274562945185 + ], + [ + -88.8886164227746, + 36.324274562945185 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.8886164227746, + 36.95078467137904 + ], + [ + -88.46586104450229, + 36.95078467137904 + ], + [ + -88.67723873363845, + 37.264039725595964 + ], + [ + -88.8886164227746, + 36.95078467137904 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.8886164227746, + 36.95078467137904 + ], + [ + -88.67723873363845, + 37.264039725595964 + ], + [ + -89.09999411191076, + 37.264039725595964 + ], + [ + -88.8886164227746, + 36.95078467137904 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.8886164227746, + 36.95078467137904 + ], + [ + -89.09999411191076, + 37.264039725595964 + ], + [ + -89.31137180104692, + 36.95078467137904 + ], + [ + -88.8886164227746, + 36.95078467137904 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.8886164227746, + 36.95078467137904 + ], + [ + -89.31137180104692, + 36.95078467137904 + ], + [ + -89.09999411191076, + 36.637529617162116 + ], + [ + -88.8886164227746, + 36.95078467137904 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.8886164227746, + 36.95078467137904 + ], + [ + -89.09999411191076, + 36.637529617162116 + ], + [ + -88.67723873363845, + 36.637529617162116 + ], + [ + -88.8886164227746, + 36.95078467137904 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.8886164227746, + 36.95078467137904 + ], + [ + -88.67723873363845, + 36.637529617162116 + ], + [ + -88.46586104450229, + 36.95078467137904 + ], + [ + -88.8886164227746, + 36.95078467137904 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.8886164227746, + 37.577294779812895 + ], + [ + -88.46586104450229, + 37.577294779812895 + ], + [ + -88.67723873363845, + 37.89054983402982 + ], + [ + -88.8886164227746, + 37.577294779812895 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.8886164227746, + 37.577294779812895 + ], + [ + -88.67723873363845, + 37.89054983402982 + ], + [ + -89.09999411191076, + 37.89054983402982 + ], + [ + -88.8886164227746, + 37.577294779812895 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.8886164227746, + 37.577294779812895 + ], + [ + -89.09999411191076, + 37.89054983402982 + ], + [ + -89.31137180104692, + 37.577294779812895 + ], + [ + -88.8886164227746, + 37.577294779812895 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.8886164227746, + 37.577294779812895 + ], + [ + -89.31137180104692, + 37.577294779812895 + ], + [ + -89.09999411191076, + 37.26403972559597 + ], + [ + -88.8886164227746, + 37.577294779812895 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.8886164227746, + 37.577294779812895 + ], + [ + -89.09999411191076, + 37.26403972559597 + ], + [ + -88.67723873363845, + 37.26403972559597 + ], + [ + -88.8886164227746, + 37.577294779812895 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.8886164227746, + 37.577294779812895 + ], + [ + -88.67723873363845, + 37.26403972559597 + ], + [ + -88.46586104450229, + 37.577294779812895 + ], + [ + -88.8886164227746, + 37.577294779812895 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.8886164227746, + 38.20380488824675 + ], + [ + -88.46586104450229, + 38.20380488824675 + ], + [ + -88.67723873363845, + 38.517059942463675 + ], + [ + -88.8886164227746, + 38.20380488824675 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.8886164227746, + 38.20380488824675 + ], + [ + -88.67723873363845, + 38.517059942463675 + ], + [ + -89.09999411191076, + 38.517059942463675 + ], + [ + -88.8886164227746, + 38.20380488824675 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.8886164227746, + 38.20380488824675 + ], + [ + -89.09999411191076, + 38.517059942463675 + ], + [ + -89.31137180104692, + 38.20380488824675 + ], + [ + -88.8886164227746, + 38.20380488824675 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.8886164227746, + 38.20380488824675 + ], + [ + -89.31137180104692, + 38.20380488824675 + ], + [ + -89.09999411191076, + 37.89054983402983 + ], + [ + -88.8886164227746, + 38.20380488824675 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.8886164227746, + 38.20380488824675 + ], + [ + -89.09999411191076, + 37.89054983402983 + ], + [ + -88.67723873363845, + 37.89054983402983 + ], + [ + -88.8886164227746, + 38.20380488824675 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.8886164227746, + 38.20380488824675 + ], + [ + -88.67723873363845, + 37.89054983402983 + ], + [ + -88.46586104450229, + 38.20380488824675 + ], + [ + -88.8886164227746, + 38.20380488824675 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.8886164227746, + 38.830314996680606 + ], + [ + -88.46586104450229, + 38.830314996680606 + ], + [ + -88.67723873363845, + 39.14357005089753 + ], + [ + -88.8886164227746, + 38.830314996680606 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.8886164227746, + 38.830314996680606 + ], + [ + -88.67723873363845, + 39.14357005089753 + ], + [ + -89.09999411191076, + 39.14357005089753 + ], + [ + -88.8886164227746, + 38.830314996680606 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.8886164227746, + 38.830314996680606 + ], + [ + -89.09999411191076, + 39.14357005089753 + ], + [ + -89.31137180104692, + 38.830314996680606 + ], + [ + -88.8886164227746, + 38.830314996680606 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.8886164227746, + 38.830314996680606 + ], + [ + -89.31137180104692, + 38.830314996680606 + ], + [ + -89.09999411191076, + 38.51705994246368 + ], + [ + -88.8886164227746, + 38.830314996680606 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.8886164227746, + 38.830314996680606 + ], + [ + -89.09999411191076, + 38.51705994246368 + ], + [ + -88.67723873363845, + 38.51705994246368 + ], + [ + -88.8886164227746, + 38.830314996680606 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.8886164227746, + 38.830314996680606 + ], + [ + -88.67723873363845, + 38.51705994246368 + ], + [ + -88.46586104450229, + 38.830314996680606 + ], + [ + -88.8886164227746, + 38.830314996680606 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.8886164227746, + 39.45682510511446 + ], + [ + -88.46586104450229, + 39.45682510511446 + ], + [ + -88.67723873363845, + 39.770080159331386 + ], + [ + -88.8886164227746, + 39.45682510511446 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.8886164227746, + 39.45682510511446 + ], + [ + -88.67723873363845, + 39.770080159331386 + ], + [ + -89.09999411191076, + 39.770080159331386 + ], + [ + -88.8886164227746, + 39.45682510511446 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.8886164227746, + 39.45682510511446 + ], + [ + -89.09999411191076, + 39.770080159331386 + ], + [ + -89.31137180104692, + 39.45682510511446 + ], + [ + -88.8886164227746, + 39.45682510511446 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.8886164227746, + 39.45682510511446 + ], + [ + -89.31137180104692, + 39.45682510511446 + ], + [ + -89.09999411191076, + 39.14357005089754 + ], + [ + -88.8886164227746, + 39.45682510511446 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.8886164227746, + 39.45682510511446 + ], + [ + -89.09999411191076, + 39.14357005089754 + ], + [ + -88.67723873363845, + 39.14357005089754 + ], + [ + -88.8886164227746, + 39.45682510511446 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.8886164227746, + 39.45682510511446 + ], + [ + -88.67723873363845, + 39.14357005089754 + ], + [ + -88.46586104450229, + 39.45682510511446 + ], + [ + -88.8886164227746, + 39.45682510511446 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.8886164227746, + 40.08333521354832 + ], + [ + -88.46586104450229, + 40.08333521354832 + ], + [ + -88.67723873363845, + 40.39659026776524 + ], + [ + -88.8886164227746, + 40.08333521354832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.8886164227746, + 40.08333521354832 + ], + [ + -88.67723873363845, + 40.39659026776524 + ], + [ + -89.09999411191076, + 40.39659026776524 + ], + [ + -88.8886164227746, + 40.08333521354832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.8886164227746, + 40.08333521354832 + ], + [ + -89.09999411191076, + 40.39659026776524 + ], + [ + -89.31137180104692, + 40.08333521354832 + ], + [ + -88.8886164227746, + 40.08333521354832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.8886164227746, + 40.08333521354832 + ], + [ + -89.31137180104692, + 40.08333521354832 + ], + [ + -89.09999411191076, + 39.77008015933139 + ], + [ + -88.8886164227746, + 40.08333521354832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.8886164227746, + 40.08333521354832 + ], + [ + -89.09999411191076, + 39.77008015933139 + ], + [ + -88.67723873363845, + 39.77008015933139 + ], + [ + -88.8886164227746, + 40.08333521354832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.8886164227746, + 40.08333521354832 + ], + [ + -88.67723873363845, + 39.77008015933139 + ], + [ + -88.46586104450229, + 40.08333521354832 + ], + [ + -88.8886164227746, + 40.08333521354832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.8886164227746, + 40.70984532198217 + ], + [ + -88.46586104450229, + 40.70984532198217 + ], + [ + -88.67723873363845, + 41.023100376199096 + ], + [ + -88.8886164227746, + 40.70984532198217 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.8886164227746, + 40.70984532198217 + ], + [ + -88.67723873363845, + 41.023100376199096 + ], + [ + -89.09999411191076, + 41.023100376199096 + ], + [ + -88.8886164227746, + 40.70984532198217 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.8886164227746, + 40.70984532198217 + ], + [ + -89.09999411191076, + 41.023100376199096 + ], + [ + -89.31137180104692, + 40.70984532198217 + ], + [ + -88.8886164227746, + 40.70984532198217 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.8886164227746, + 40.70984532198217 + ], + [ + -89.31137180104692, + 40.70984532198217 + ], + [ + -89.09999411191076, + 40.39659026776525 + ], + [ + -88.8886164227746, + 40.70984532198217 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.8886164227746, + 40.70984532198217 + ], + [ + -89.09999411191076, + 40.39659026776525 + ], + [ + -88.67723873363845, + 40.39659026776525 + ], + [ + -88.8886164227746, + 40.70984532198217 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.8886164227746, + 40.70984532198217 + ], + [ + -88.67723873363845, + 40.39659026776525 + ], + [ + -88.46586104450229, + 40.70984532198217 + ], + [ + -88.8886164227746, + 40.70984532198217 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.25448335536613, + 30.99893864125743 + ], + [ + -87.83172797709382, + 30.99893864125743 + ], + [ + -88.04310566622998, + 31.312193695474356 + ], + [ + -88.25448335536613, + 30.99893864125743 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.25448335536613, + 30.99893864125743 + ], + [ + -88.04310566622998, + 31.312193695474356 + ], + [ + -88.46586104450229, + 31.312193695474356 + ], + [ + -88.25448335536613, + 30.99893864125743 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.25448335536613, + 30.99893864125743 + ], + [ + -88.46586104450229, + 31.312193695474356 + ], + [ + -88.67723873363845, + 30.99893864125743 + ], + [ + -88.25448335536613, + 30.99893864125743 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.25448335536613, + 30.99893864125743 + ], + [ + -88.67723873363845, + 30.99893864125743 + ], + [ + -88.46586104450229, + 30.6856835870405 + ], + [ + -88.25448335536613, + 30.99893864125743 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.25448335536613, + 30.99893864125743 + ], + [ + -88.46586104450229, + 30.6856835870405 + ], + [ + -88.04310566622998, + 30.6856835870405 + ], + [ + -88.25448335536613, + 30.99893864125743 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.25448335536613, + 30.99893864125743 + ], + [ + -88.04310566622998, + 30.6856835870405 + ], + [ + -87.83172797709382, + 30.99893864125743 + ], + [ + -88.25448335536613, + 30.99893864125743 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.25448335536613, + 31.62544874969128 + ], + [ + -87.83172797709382, + 31.62544874969128 + ], + [ + -88.04310566622998, + 31.938703803908208 + ], + [ + -88.25448335536613, + 31.62544874969128 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.25448335536613, + 31.62544874969128 + ], + [ + -88.04310566622998, + 31.938703803908208 + ], + [ + -88.46586104450229, + 31.938703803908208 + ], + [ + -88.25448335536613, + 31.62544874969128 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.25448335536613, + 31.62544874969128 + ], + [ + -88.46586104450229, + 31.938703803908208 + ], + [ + -88.67723873363845, + 31.62544874969128 + ], + [ + -88.25448335536613, + 31.62544874969128 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.25448335536613, + 31.62544874969128 + ], + [ + -88.67723873363845, + 31.62544874969128 + ], + [ + -88.46586104450229, + 31.312193695474352 + ], + [ + -88.25448335536613, + 31.62544874969128 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.25448335536613, + 31.62544874969128 + ], + [ + -88.46586104450229, + 31.312193695474352 + ], + [ + -88.04310566622998, + 31.312193695474352 + ], + [ + -88.25448335536613, + 31.62544874969128 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.25448335536613, + 31.62544874969128 + ], + [ + -88.04310566622998, + 31.312193695474352 + ], + [ + -87.83172797709382, + 31.62544874969128 + ], + [ + -88.25448335536613, + 31.62544874969128 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.25448335536613, + 32.251958858125136 + ], + [ + -87.83172797709382, + 32.251958858125136 + ], + [ + -88.04310566622998, + 32.56521391234206 + ], + [ + -88.25448335536613, + 32.251958858125136 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.25448335536613, + 32.251958858125136 + ], + [ + -88.04310566622998, + 32.56521391234206 + ], + [ + -88.46586104450229, + 32.56521391234206 + ], + [ + -88.25448335536613, + 32.251958858125136 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.25448335536613, + 32.251958858125136 + ], + [ + -88.46586104450229, + 32.56521391234206 + ], + [ + -88.67723873363845, + 32.251958858125136 + ], + [ + -88.25448335536613, + 32.251958858125136 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.25448335536613, + 32.251958858125136 + ], + [ + -88.67723873363845, + 32.251958858125136 + ], + [ + -88.46586104450229, + 31.938703803908208 + ], + [ + -88.25448335536613, + 32.251958858125136 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.25448335536613, + 32.251958858125136 + ], + [ + -88.46586104450229, + 31.938703803908208 + ], + [ + -88.04310566622998, + 31.938703803908208 + ], + [ + -88.25448335536613, + 32.251958858125136 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.25448335536613, + 32.251958858125136 + ], + [ + -88.04310566622998, + 31.938703803908208 + ], + [ + -87.83172797709382, + 32.251958858125136 + ], + [ + -88.25448335536613, + 32.251958858125136 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.25448335536613, + 32.87846896655899 + ], + [ + -87.83172797709382, + 32.87846896655899 + ], + [ + -88.04310566622998, + 33.191724020775915 + ], + [ + -88.25448335536613, + 32.87846896655899 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.25448335536613, + 32.87846896655899 + ], + [ + -88.04310566622998, + 33.191724020775915 + ], + [ + -88.46586104450229, + 33.191724020775915 + ], + [ + -88.25448335536613, + 32.87846896655899 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.25448335536613, + 32.87846896655899 + ], + [ + -88.46586104450229, + 33.191724020775915 + ], + [ + -88.67723873363845, + 32.87846896655899 + ], + [ + -88.25448335536613, + 32.87846896655899 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.25448335536613, + 32.87846896655899 + ], + [ + -88.67723873363845, + 32.87846896655899 + ], + [ + -88.46586104450229, + 32.56521391234207 + ], + [ + -88.25448335536613, + 32.87846896655899 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.25448335536613, + 32.87846896655899 + ], + [ + -88.46586104450229, + 32.56521391234207 + ], + [ + -88.04310566622998, + 32.56521391234207 + ], + [ + -88.25448335536613, + 32.87846896655899 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.25448335536613, + 32.87846896655899 + ], + [ + -88.04310566622998, + 32.56521391234207 + ], + [ + -87.83172797709382, + 32.87846896655899 + ], + [ + -88.25448335536613, + 32.87846896655899 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.25448335536613, + 33.504979074992846 + ], + [ + -87.83172797709382, + 33.504979074992846 + ], + [ + -88.04310566622998, + 33.81823412920977 + ], + [ + -88.25448335536613, + 33.504979074992846 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.25448335536613, + 33.504979074992846 + ], + [ + -88.04310566622998, + 33.81823412920977 + ], + [ + -88.46586104450229, + 33.81823412920977 + ], + [ + -88.25448335536613, + 33.504979074992846 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.25448335536613, + 33.504979074992846 + ], + [ + -88.46586104450229, + 33.81823412920977 + ], + [ + -88.67723873363845, + 33.504979074992846 + ], + [ + -88.25448335536613, + 33.504979074992846 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.25448335536613, + 33.504979074992846 + ], + [ + -88.67723873363845, + 33.504979074992846 + ], + [ + -88.46586104450229, + 33.19172402077592 + ], + [ + -88.25448335536613, + 33.504979074992846 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.25448335536613, + 33.504979074992846 + ], + [ + -88.46586104450229, + 33.19172402077592 + ], + [ + -88.04310566622998, + 33.19172402077592 + ], + [ + -88.25448335536613, + 33.504979074992846 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.25448335536613, + 33.504979074992846 + ], + [ + -88.04310566622998, + 33.19172402077592 + ], + [ + -87.83172797709382, + 33.504979074992846 + ], + [ + -88.25448335536613, + 33.504979074992846 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.25448335536613, + 34.1314891834267 + ], + [ + -87.83172797709382, + 34.1314891834267 + ], + [ + -88.04310566622998, + 34.444744237643626 + ], + [ + -88.25448335536613, + 34.1314891834267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.25448335536613, + 34.1314891834267 + ], + [ + -88.04310566622998, + 34.444744237643626 + ], + [ + -88.46586104450229, + 34.444744237643626 + ], + [ + -88.25448335536613, + 34.1314891834267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.25448335536613, + 34.1314891834267 + ], + [ + -88.46586104450229, + 34.444744237643626 + ], + [ + -88.67723873363845, + 34.1314891834267 + ], + [ + -88.25448335536613, + 34.1314891834267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.25448335536613, + 34.1314891834267 + ], + [ + -88.67723873363845, + 34.1314891834267 + ], + [ + -88.46586104450229, + 33.81823412920978 + ], + [ + -88.25448335536613, + 34.1314891834267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.25448335536613, + 34.1314891834267 + ], + [ + -88.46586104450229, + 33.81823412920978 + ], + [ + -88.04310566622998, + 33.81823412920978 + ], + [ + -88.25448335536613, + 34.1314891834267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.25448335536613, + 34.1314891834267 + ], + [ + -88.04310566622998, + 33.81823412920978 + ], + [ + -87.83172797709382, + 34.1314891834267 + ], + [ + -88.25448335536613, + 34.1314891834267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.25448335536613, + 34.75799929186056 + ], + [ + -87.83172797709382, + 34.75799929186056 + ], + [ + -88.04310566622998, + 35.07125434607748 + ], + [ + -88.25448335536613, + 34.75799929186056 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.25448335536613, + 34.75799929186056 + ], + [ + -88.04310566622998, + 35.07125434607748 + ], + [ + -88.46586104450229, + 35.07125434607748 + ], + [ + -88.25448335536613, + 34.75799929186056 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.25448335536613, + 34.75799929186056 + ], + [ + -88.46586104450229, + 35.07125434607748 + ], + [ + -88.67723873363845, + 34.75799929186056 + ], + [ + -88.25448335536613, + 34.75799929186056 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.25448335536613, + 34.75799929186056 + ], + [ + -88.67723873363845, + 34.75799929186056 + ], + [ + -88.46586104450229, + 34.44474423764363 + ], + [ + -88.25448335536613, + 34.75799929186056 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.25448335536613, + 34.75799929186056 + ], + [ + -88.46586104450229, + 34.44474423764363 + ], + [ + -88.04310566622998, + 34.44474423764363 + ], + [ + -88.25448335536613, + 34.75799929186056 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.25448335536613, + 34.75799929186056 + ], + [ + -88.04310566622998, + 34.44474423764363 + ], + [ + -87.83172797709382, + 34.75799929186056 + ], + [ + -88.25448335536613, + 34.75799929186056 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.25448335536613, + 35.38450940029441 + ], + [ + -87.83172797709382, + 35.38450940029441 + ], + [ + -88.04310566622998, + 35.697764454511336 + ], + [ + -88.25448335536613, + 35.38450940029441 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.25448335536613, + 35.38450940029441 + ], + [ + -88.04310566622998, + 35.697764454511336 + ], + [ + -88.46586104450229, + 35.697764454511336 + ], + [ + -88.25448335536613, + 35.38450940029441 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.25448335536613, + 35.38450940029441 + ], + [ + -88.46586104450229, + 35.697764454511336 + ], + [ + -88.67723873363845, + 35.38450940029441 + ], + [ + -88.25448335536613, + 35.38450940029441 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.25448335536613, + 35.38450940029441 + ], + [ + -88.67723873363845, + 35.38450940029441 + ], + [ + -88.46586104450229, + 35.07125434607749 + ], + [ + -88.25448335536613, + 35.38450940029441 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.25448335536613, + 35.38450940029441 + ], + [ + -88.46586104450229, + 35.07125434607749 + ], + [ + -88.04310566622998, + 35.07125434607749 + ], + [ + -88.25448335536613, + 35.38450940029441 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.25448335536613, + 35.38450940029441 + ], + [ + -88.04310566622998, + 35.07125434607749 + ], + [ + -87.83172797709382, + 35.38450940029441 + ], + [ + -88.25448335536613, + 35.38450940029441 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.25448335536613, + 36.01101950872826 + ], + [ + -87.83172797709382, + 36.01101950872826 + ], + [ + -88.04310566622998, + 36.324274562945185 + ], + [ + -88.25448335536613, + 36.01101950872826 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.25448335536613, + 36.01101950872826 + ], + [ + -88.04310566622998, + 36.324274562945185 + ], + [ + -88.46586104450229, + 36.324274562945185 + ], + [ + -88.25448335536613, + 36.01101950872826 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.25448335536613, + 36.01101950872826 + ], + [ + -88.46586104450229, + 36.324274562945185 + ], + [ + -88.67723873363845, + 36.01101950872826 + ], + [ + -88.25448335536613, + 36.01101950872826 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.25448335536613, + 36.01101950872826 + ], + [ + -88.67723873363845, + 36.01101950872826 + ], + [ + -88.46586104450229, + 35.697764454511336 + ], + [ + -88.25448335536613, + 36.01101950872826 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.25448335536613, + 36.01101950872826 + ], + [ + -88.46586104450229, + 35.697764454511336 + ], + [ + -88.04310566622998, + 35.697764454511336 + ], + [ + -88.25448335536613, + 36.01101950872826 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.25448335536613, + 36.01101950872826 + ], + [ + -88.04310566622998, + 35.697764454511336 + ], + [ + -87.83172797709382, + 36.01101950872826 + ], + [ + -88.25448335536613, + 36.01101950872826 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.25448335536613, + 36.637529617162116 + ], + [ + -87.83172797709382, + 36.637529617162116 + ], + [ + -88.04310566622998, + 36.95078467137904 + ], + [ + -88.25448335536613, + 36.637529617162116 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.25448335536613, + 36.637529617162116 + ], + [ + -88.04310566622998, + 36.95078467137904 + ], + [ + -88.46586104450229, + 36.95078467137904 + ], + [ + -88.25448335536613, + 36.637529617162116 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.25448335536613, + 36.637529617162116 + ], + [ + -88.46586104450229, + 36.95078467137904 + ], + [ + -88.67723873363845, + 36.637529617162116 + ], + [ + -88.25448335536613, + 36.637529617162116 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.25448335536613, + 36.637529617162116 + ], + [ + -88.67723873363845, + 36.637529617162116 + ], + [ + -88.46586104450229, + 36.32427456294519 + ], + [ + -88.25448335536613, + 36.637529617162116 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.25448335536613, + 36.637529617162116 + ], + [ + -88.46586104450229, + 36.32427456294519 + ], + [ + -88.04310566622998, + 36.32427456294519 + ], + [ + -88.25448335536613, + 36.637529617162116 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.25448335536613, + 36.637529617162116 + ], + [ + -88.04310566622998, + 36.32427456294519 + ], + [ + -87.83172797709382, + 36.637529617162116 + ], + [ + -88.25448335536613, + 36.637529617162116 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.25448335536613, + 37.26403972559597 + ], + [ + -87.83172797709382, + 37.26403972559597 + ], + [ + -88.04310566622998, + 37.577294779812895 + ], + [ + -88.25448335536613, + 37.26403972559597 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.25448335536613, + 37.26403972559597 + ], + [ + -88.04310566622998, + 37.577294779812895 + ], + [ + -88.46586104450229, + 37.577294779812895 + ], + [ + -88.25448335536613, + 37.26403972559597 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.25448335536613, + 37.26403972559597 + ], + [ + -88.46586104450229, + 37.577294779812895 + ], + [ + -88.67723873363845, + 37.26403972559597 + ], + [ + -88.25448335536613, + 37.26403972559597 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.25448335536613, + 37.26403972559597 + ], + [ + -88.67723873363845, + 37.26403972559597 + ], + [ + -88.46586104450229, + 36.95078467137905 + ], + [ + -88.25448335536613, + 37.26403972559597 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.25448335536613, + 37.26403972559597 + ], + [ + -88.46586104450229, + 36.95078467137905 + ], + [ + -88.04310566622998, + 36.95078467137905 + ], + [ + -88.25448335536613, + 37.26403972559597 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.25448335536613, + 37.26403972559597 + ], + [ + -88.04310566622998, + 36.95078467137905 + ], + [ + -87.83172797709382, + 37.26403972559597 + ], + [ + -88.25448335536613, + 37.26403972559597 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.25448335536613, + 37.89054983402983 + ], + [ + -87.83172797709382, + 37.89054983402983 + ], + [ + -88.04310566622998, + 38.20380488824675 + ], + [ + -88.25448335536613, + 37.89054983402983 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.25448335536613, + 37.89054983402983 + ], + [ + -88.04310566622998, + 38.20380488824675 + ], + [ + -88.46586104450229, + 38.20380488824675 + ], + [ + -88.25448335536613, + 37.89054983402983 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.25448335536613, + 37.89054983402983 + ], + [ + -88.46586104450229, + 38.20380488824675 + ], + [ + -88.67723873363845, + 37.89054983402983 + ], + [ + -88.25448335536613, + 37.89054983402983 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.25448335536613, + 37.89054983402983 + ], + [ + -88.67723873363845, + 37.89054983402983 + ], + [ + -88.46586104450229, + 37.5772947798129 + ], + [ + -88.25448335536613, + 37.89054983402983 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.25448335536613, + 37.89054983402983 + ], + [ + -88.46586104450229, + 37.5772947798129 + ], + [ + -88.04310566622998, + 37.5772947798129 + ], + [ + -88.25448335536613, + 37.89054983402983 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.25448335536613, + 37.89054983402983 + ], + [ + -88.04310566622998, + 37.5772947798129 + ], + [ + -87.83172797709382, + 37.89054983402983 + ], + [ + -88.25448335536613, + 37.89054983402983 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.25448335536613, + 38.51705994246368 + ], + [ + -87.83172797709382, + 38.51705994246368 + ], + [ + -88.04310566622998, + 38.830314996680606 + ], + [ + -88.25448335536613, + 38.51705994246368 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.25448335536613, + 38.51705994246368 + ], + [ + -88.04310566622998, + 38.830314996680606 + ], + [ + -88.46586104450229, + 38.830314996680606 + ], + [ + -88.25448335536613, + 38.51705994246368 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.25448335536613, + 38.51705994246368 + ], + [ + -88.46586104450229, + 38.830314996680606 + ], + [ + -88.67723873363845, + 38.51705994246368 + ], + [ + -88.25448335536613, + 38.51705994246368 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.25448335536613, + 38.51705994246368 + ], + [ + -88.67723873363845, + 38.51705994246368 + ], + [ + -88.46586104450229, + 38.20380488824676 + ], + [ + -88.25448335536613, + 38.51705994246368 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.25448335536613, + 38.51705994246368 + ], + [ + -88.46586104450229, + 38.20380488824676 + ], + [ + -88.04310566622998, + 38.20380488824676 + ], + [ + -88.25448335536613, + 38.51705994246368 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.25448335536613, + 38.51705994246368 + ], + [ + -88.04310566622998, + 38.20380488824676 + ], + [ + -87.83172797709382, + 38.51705994246368 + ], + [ + -88.25448335536613, + 38.51705994246368 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.25448335536613, + 39.14357005089754 + ], + [ + -87.83172797709382, + 39.14357005089754 + ], + [ + -88.04310566622998, + 39.45682510511446 + ], + [ + -88.25448335536613, + 39.14357005089754 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.25448335536613, + 39.14357005089754 + ], + [ + -88.04310566622998, + 39.45682510511446 + ], + [ + -88.46586104450229, + 39.45682510511446 + ], + [ + -88.25448335536613, + 39.14357005089754 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.25448335536613, + 39.14357005089754 + ], + [ + -88.46586104450229, + 39.45682510511446 + ], + [ + -88.67723873363845, + 39.14357005089754 + ], + [ + -88.25448335536613, + 39.14357005089754 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.25448335536613, + 39.14357005089754 + ], + [ + -88.67723873363845, + 39.14357005089754 + ], + [ + -88.46586104450229, + 38.83031499668061 + ], + [ + -88.25448335536613, + 39.14357005089754 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.25448335536613, + 39.14357005089754 + ], + [ + -88.46586104450229, + 38.83031499668061 + ], + [ + -88.04310566622998, + 38.83031499668061 + ], + [ + -88.25448335536613, + 39.14357005089754 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.25448335536613, + 39.14357005089754 + ], + [ + -88.04310566622998, + 38.83031499668061 + ], + [ + -87.83172797709382, + 39.14357005089754 + ], + [ + -88.25448335536613, + 39.14357005089754 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.25448335536613, + 39.77008015933139 + ], + [ + -87.83172797709382, + 39.77008015933139 + ], + [ + -88.04310566622998, + 40.08333521354832 + ], + [ + -88.25448335536613, + 39.77008015933139 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.25448335536613, + 39.77008015933139 + ], + [ + -88.04310566622998, + 40.08333521354832 + ], + [ + -88.46586104450229, + 40.08333521354832 + ], + [ + -88.25448335536613, + 39.77008015933139 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.25448335536613, + 39.77008015933139 + ], + [ + -88.46586104450229, + 40.08333521354832 + ], + [ + -88.67723873363845, + 39.77008015933139 + ], + [ + -88.25448335536613, + 39.77008015933139 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.25448335536613, + 39.77008015933139 + ], + [ + -88.67723873363845, + 39.77008015933139 + ], + [ + -88.46586104450229, + 39.45682510511447 + ], + [ + -88.25448335536613, + 39.77008015933139 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.25448335536613, + 39.77008015933139 + ], + [ + -88.46586104450229, + 39.45682510511447 + ], + [ + -88.04310566622998, + 39.45682510511447 + ], + [ + -88.25448335536613, + 39.77008015933139 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.25448335536613, + 39.77008015933139 + ], + [ + -88.04310566622998, + 39.45682510511447 + ], + [ + -87.83172797709382, + 39.77008015933139 + ], + [ + -88.25448335536613, + 39.77008015933139 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.25448335536613, + 40.39659026776525 + ], + [ + -87.83172797709382, + 40.39659026776525 + ], + [ + -88.04310566622998, + 40.70984532198217 + ], + [ + -88.25448335536613, + 40.39659026776525 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.25448335536613, + 40.39659026776525 + ], + [ + -88.04310566622998, + 40.70984532198217 + ], + [ + -88.46586104450229, + 40.70984532198217 + ], + [ + -88.25448335536613, + 40.39659026776525 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.25448335536613, + 40.39659026776525 + ], + [ + -88.46586104450229, + 40.70984532198217 + ], + [ + -88.67723873363845, + 40.39659026776525 + ], + [ + -88.25448335536613, + 40.39659026776525 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.25448335536613, + 40.39659026776525 + ], + [ + -88.67723873363845, + 40.39659026776525 + ], + [ + -88.46586104450229, + 40.083335213548324 + ], + [ + -88.25448335536613, + 40.39659026776525 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.25448335536613, + 40.39659026776525 + ], + [ + -88.46586104450229, + 40.083335213548324 + ], + [ + -88.04310566622998, + 40.083335213548324 + ], + [ + -88.25448335536613, + 40.39659026776525 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.25448335536613, + 40.39659026776525 + ], + [ + -88.04310566622998, + 40.083335213548324 + ], + [ + -87.83172797709382, + 40.39659026776525 + ], + [ + -88.25448335536613, + 40.39659026776525 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.62035028795768, + 31.312193695474356 + ], + [ + -87.19759490968536, + 31.312193695474356 + ], + [ + -87.40897259882152, + 31.625448749691284 + ], + [ + -87.62035028795768, + 31.312193695474356 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.62035028795768, + 31.312193695474356 + ], + [ + -87.40897259882152, + 31.625448749691284 + ], + [ + -87.83172797709383, + 31.625448749691284 + ], + [ + -87.62035028795768, + 31.312193695474356 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.62035028795768, + 31.312193695474356 + ], + [ + -87.83172797709383, + 31.625448749691284 + ], + [ + -88.04310566622999, + 31.312193695474356 + ], + [ + -87.62035028795768, + 31.312193695474356 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.62035028795768, + 31.312193695474356 + ], + [ + -88.04310566622999, + 31.312193695474356 + ], + [ + -87.83172797709383, + 30.99893864125743 + ], + [ + -87.62035028795768, + 31.312193695474356 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.62035028795768, + 31.312193695474356 + ], + [ + -87.83172797709383, + 30.99893864125743 + ], + [ + -87.40897259882152, + 30.99893864125743 + ], + [ + -87.62035028795768, + 31.312193695474356 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.62035028795768, + 31.312193695474356 + ], + [ + -87.40897259882152, + 30.99893864125743 + ], + [ + -87.19759490968536, + 31.312193695474356 + ], + [ + -87.62035028795768, + 31.312193695474356 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.62035028795768, + 31.938703803908208 + ], + [ + -87.19759490968536, + 31.938703803908208 + ], + [ + -87.40897259882152, + 32.251958858125136 + ], + [ + -87.62035028795768, + 31.938703803908208 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.62035028795768, + 31.938703803908208 + ], + [ + -87.40897259882152, + 32.251958858125136 + ], + [ + -87.83172797709383, + 32.251958858125136 + ], + [ + -87.62035028795768, + 31.938703803908208 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.62035028795768, + 31.938703803908208 + ], + [ + -87.83172797709383, + 32.251958858125136 + ], + [ + -88.04310566622999, + 31.938703803908208 + ], + [ + -87.62035028795768, + 31.938703803908208 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.62035028795768, + 31.938703803908208 + ], + [ + -88.04310566622999, + 31.938703803908208 + ], + [ + -87.83172797709383, + 31.62544874969128 + ], + [ + -87.62035028795768, + 31.938703803908208 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.62035028795768, + 31.938703803908208 + ], + [ + -87.83172797709383, + 31.62544874969128 + ], + [ + -87.40897259882152, + 31.62544874969128 + ], + [ + -87.62035028795768, + 31.938703803908208 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.62035028795768, + 31.938703803908208 + ], + [ + -87.40897259882152, + 31.62544874969128 + ], + [ + -87.19759490968536, + 31.938703803908208 + ], + [ + -87.62035028795768, + 31.938703803908208 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.62035028795768, + 32.56521391234206 + ], + [ + -87.19759490968536, + 32.56521391234206 + ], + [ + -87.40897259882152, + 32.878468966558984 + ], + [ + -87.62035028795768, + 32.56521391234206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.62035028795768, + 32.56521391234206 + ], + [ + -87.40897259882152, + 32.878468966558984 + ], + [ + -87.83172797709383, + 32.878468966558984 + ], + [ + -87.62035028795768, + 32.56521391234206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.62035028795768, + 32.56521391234206 + ], + [ + -87.83172797709383, + 32.878468966558984 + ], + [ + -88.04310566622999, + 32.56521391234206 + ], + [ + -87.62035028795768, + 32.56521391234206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.62035028795768, + 32.56521391234206 + ], + [ + -88.04310566622999, + 32.56521391234206 + ], + [ + -87.83172797709383, + 32.251958858125136 + ], + [ + -87.62035028795768, + 32.56521391234206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.62035028795768, + 32.56521391234206 + ], + [ + -87.83172797709383, + 32.251958858125136 + ], + [ + -87.40897259882152, + 32.251958858125136 + ], + [ + -87.62035028795768, + 32.56521391234206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.62035028795768, + 32.56521391234206 + ], + [ + -87.40897259882152, + 32.251958858125136 + ], + [ + -87.19759490968536, + 32.56521391234206 + ], + [ + -87.62035028795768, + 32.56521391234206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.62035028795768, + 33.191724020775915 + ], + [ + -87.19759490968536, + 33.191724020775915 + ], + [ + -87.40897259882152, + 33.50497907499284 + ], + [ + -87.62035028795768, + 33.191724020775915 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.62035028795768, + 33.191724020775915 + ], + [ + -87.40897259882152, + 33.50497907499284 + ], + [ + -87.83172797709383, + 33.50497907499284 + ], + [ + -87.62035028795768, + 33.191724020775915 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.62035028795768, + 33.191724020775915 + ], + [ + -87.83172797709383, + 33.50497907499284 + ], + [ + -88.04310566622999, + 33.191724020775915 + ], + [ + -87.62035028795768, + 33.191724020775915 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.62035028795768, + 33.191724020775915 + ], + [ + -88.04310566622999, + 33.191724020775915 + ], + [ + -87.83172797709383, + 32.87846896655899 + ], + [ + -87.62035028795768, + 33.191724020775915 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.62035028795768, + 33.191724020775915 + ], + [ + -87.83172797709383, + 32.87846896655899 + ], + [ + -87.40897259882152, + 32.87846896655899 + ], + [ + -87.62035028795768, + 33.191724020775915 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.62035028795768, + 33.191724020775915 + ], + [ + -87.40897259882152, + 32.87846896655899 + ], + [ + -87.19759490968536, + 33.191724020775915 + ], + [ + -87.62035028795768, + 33.191724020775915 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.62035028795768, + 33.81823412920977 + ], + [ + -87.19759490968536, + 33.81823412920977 + ], + [ + -87.40897259882152, + 34.131489183426694 + ], + [ + -87.62035028795768, + 33.81823412920977 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.62035028795768, + 33.81823412920977 + ], + [ + -87.40897259882152, + 34.131489183426694 + ], + [ + -87.83172797709383, + 34.131489183426694 + ], + [ + -87.62035028795768, + 33.81823412920977 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.62035028795768, + 33.81823412920977 + ], + [ + -87.83172797709383, + 34.131489183426694 + ], + [ + -88.04310566622999, + 33.81823412920977 + ], + [ + -87.62035028795768, + 33.81823412920977 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.62035028795768, + 33.81823412920977 + ], + [ + -88.04310566622999, + 33.81823412920977 + ], + [ + -87.83172797709383, + 33.504979074992846 + ], + [ + -87.62035028795768, + 33.81823412920977 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.62035028795768, + 33.81823412920977 + ], + [ + -87.83172797709383, + 33.504979074992846 + ], + [ + -87.40897259882152, + 33.504979074992846 + ], + [ + -87.62035028795768, + 33.81823412920977 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.62035028795768, + 33.81823412920977 + ], + [ + -87.40897259882152, + 33.504979074992846 + ], + [ + -87.19759490968536, + 33.81823412920977 + ], + [ + -87.62035028795768, + 33.81823412920977 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.62035028795768, + 34.444744237643626 + ], + [ + -87.19759490968536, + 34.444744237643626 + ], + [ + -87.40897259882152, + 34.75799929186055 + ], + [ + -87.62035028795768, + 34.444744237643626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.62035028795768, + 34.444744237643626 + ], + [ + -87.40897259882152, + 34.75799929186055 + ], + [ + -87.83172797709383, + 34.75799929186055 + ], + [ + -87.62035028795768, + 34.444744237643626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.62035028795768, + 34.444744237643626 + ], + [ + -87.83172797709383, + 34.75799929186055 + ], + [ + -88.04310566622999, + 34.444744237643626 + ], + [ + -87.62035028795768, + 34.444744237643626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.62035028795768, + 34.444744237643626 + ], + [ + -88.04310566622999, + 34.444744237643626 + ], + [ + -87.83172797709383, + 34.1314891834267 + ], + [ + -87.62035028795768, + 34.444744237643626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.62035028795768, + 34.444744237643626 + ], + [ + -87.83172797709383, + 34.1314891834267 + ], + [ + -87.40897259882152, + 34.1314891834267 + ], + [ + -87.62035028795768, + 34.444744237643626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.62035028795768, + 34.444744237643626 + ], + [ + -87.40897259882152, + 34.1314891834267 + ], + [ + -87.19759490968536, + 34.444744237643626 + ], + [ + -87.62035028795768, + 34.444744237643626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.62035028795768, + 35.07125434607748 + ], + [ + -87.19759490968536, + 35.07125434607748 + ], + [ + -87.40897259882152, + 35.384509400294405 + ], + [ + -87.62035028795768, + 35.07125434607748 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.62035028795768, + 35.07125434607748 + ], + [ + -87.40897259882152, + 35.384509400294405 + ], + [ + -87.83172797709383, + 35.384509400294405 + ], + [ + -87.62035028795768, + 35.07125434607748 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.62035028795768, + 35.07125434607748 + ], + [ + -87.83172797709383, + 35.384509400294405 + ], + [ + -88.04310566622999, + 35.07125434607748 + ], + [ + -87.62035028795768, + 35.07125434607748 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.62035028795768, + 35.07125434607748 + ], + [ + -88.04310566622999, + 35.07125434607748 + ], + [ + -87.83172797709383, + 34.75799929186056 + ], + [ + -87.62035028795768, + 35.07125434607748 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.62035028795768, + 35.07125434607748 + ], + [ + -87.83172797709383, + 34.75799929186056 + ], + [ + -87.40897259882152, + 34.75799929186056 + ], + [ + -87.62035028795768, + 35.07125434607748 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.62035028795768, + 35.07125434607748 + ], + [ + -87.40897259882152, + 34.75799929186056 + ], + [ + -87.19759490968536, + 35.07125434607748 + ], + [ + -87.62035028795768, + 35.07125434607748 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.62035028795768, + 35.697764454511336 + ], + [ + -87.19759490968536, + 35.697764454511336 + ], + [ + -87.40897259882152, + 36.01101950872826 + ], + [ + -87.62035028795768, + 35.697764454511336 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.62035028795768, + 35.697764454511336 + ], + [ + -87.40897259882152, + 36.01101950872826 + ], + [ + -87.83172797709383, + 36.01101950872826 + ], + [ + -87.62035028795768, + 35.697764454511336 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.62035028795768, + 35.697764454511336 + ], + [ + -87.83172797709383, + 36.01101950872826 + ], + [ + -88.04310566622999, + 35.697764454511336 + ], + [ + -87.62035028795768, + 35.697764454511336 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.62035028795768, + 35.697764454511336 + ], + [ + -88.04310566622999, + 35.697764454511336 + ], + [ + -87.83172797709383, + 35.38450940029441 + ], + [ + -87.62035028795768, + 35.697764454511336 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.62035028795768, + 35.697764454511336 + ], + [ + -87.83172797709383, + 35.38450940029441 + ], + [ + -87.40897259882152, + 35.38450940029441 + ], + [ + -87.62035028795768, + 35.697764454511336 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.62035028795768, + 35.697764454511336 + ], + [ + -87.40897259882152, + 35.38450940029441 + ], + [ + -87.19759490968536, + 35.697764454511336 + ], + [ + -87.62035028795768, + 35.697764454511336 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.62035028795768, + 36.324274562945185 + ], + [ + -87.19759490968536, + 36.324274562945185 + ], + [ + -87.40897259882152, + 36.63752961716211 + ], + [ + -87.62035028795768, + 36.324274562945185 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.62035028795768, + 36.324274562945185 + ], + [ + -87.40897259882152, + 36.63752961716211 + ], + [ + -87.83172797709383, + 36.63752961716211 + ], + [ + -87.62035028795768, + 36.324274562945185 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.62035028795768, + 36.324274562945185 + ], + [ + -87.83172797709383, + 36.63752961716211 + ], + [ + -88.04310566622999, + 36.324274562945185 + ], + [ + -87.62035028795768, + 36.324274562945185 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.62035028795768, + 36.324274562945185 + ], + [ + -88.04310566622999, + 36.324274562945185 + ], + [ + -87.83172797709383, + 36.01101950872826 + ], + [ + -87.62035028795768, + 36.324274562945185 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.62035028795768, + 36.324274562945185 + ], + [ + -87.83172797709383, + 36.01101950872826 + ], + [ + -87.40897259882152, + 36.01101950872826 + ], + [ + -87.62035028795768, + 36.324274562945185 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.62035028795768, + 36.324274562945185 + ], + [ + -87.40897259882152, + 36.01101950872826 + ], + [ + -87.19759490968536, + 36.324274562945185 + ], + [ + -87.62035028795768, + 36.324274562945185 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.62035028795768, + 36.95078467137904 + ], + [ + -87.19759490968536, + 36.95078467137904 + ], + [ + -87.40897259882152, + 37.264039725595964 + ], + [ + -87.62035028795768, + 36.95078467137904 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.62035028795768, + 36.95078467137904 + ], + [ + -87.40897259882152, + 37.264039725595964 + ], + [ + -87.83172797709383, + 37.264039725595964 + ], + [ + -87.62035028795768, + 36.95078467137904 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.62035028795768, + 36.95078467137904 + ], + [ + -87.83172797709383, + 37.264039725595964 + ], + [ + -88.04310566622999, + 36.95078467137904 + ], + [ + -87.62035028795768, + 36.95078467137904 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.62035028795768, + 36.95078467137904 + ], + [ + -88.04310566622999, + 36.95078467137904 + ], + [ + -87.83172797709383, + 36.637529617162116 + ], + [ + -87.62035028795768, + 36.95078467137904 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.62035028795768, + 36.95078467137904 + ], + [ + -87.83172797709383, + 36.637529617162116 + ], + [ + -87.40897259882152, + 36.637529617162116 + ], + [ + -87.62035028795768, + 36.95078467137904 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.62035028795768, + 36.95078467137904 + ], + [ + -87.40897259882152, + 36.637529617162116 + ], + [ + -87.19759490968536, + 36.95078467137904 + ], + [ + -87.62035028795768, + 36.95078467137904 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.62035028795768, + 37.577294779812895 + ], + [ + -87.19759490968536, + 37.577294779812895 + ], + [ + -87.40897259882152, + 37.89054983402982 + ], + [ + -87.62035028795768, + 37.577294779812895 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.62035028795768, + 37.577294779812895 + ], + [ + -87.40897259882152, + 37.89054983402982 + ], + [ + -87.83172797709383, + 37.89054983402982 + ], + [ + -87.62035028795768, + 37.577294779812895 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.62035028795768, + 37.577294779812895 + ], + [ + -87.83172797709383, + 37.89054983402982 + ], + [ + -88.04310566622999, + 37.577294779812895 + ], + [ + -87.62035028795768, + 37.577294779812895 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.62035028795768, + 37.577294779812895 + ], + [ + -88.04310566622999, + 37.577294779812895 + ], + [ + -87.83172797709383, + 37.26403972559597 + ], + [ + -87.62035028795768, + 37.577294779812895 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.62035028795768, + 37.577294779812895 + ], + [ + -87.83172797709383, + 37.26403972559597 + ], + [ + -87.40897259882152, + 37.26403972559597 + ], + [ + -87.62035028795768, + 37.577294779812895 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.62035028795768, + 37.577294779812895 + ], + [ + -87.40897259882152, + 37.26403972559597 + ], + [ + -87.19759490968536, + 37.577294779812895 + ], + [ + -87.62035028795768, + 37.577294779812895 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.62035028795768, + 38.20380488824675 + ], + [ + -87.19759490968536, + 38.20380488824675 + ], + [ + -87.40897259882152, + 38.517059942463675 + ], + [ + -87.62035028795768, + 38.20380488824675 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.62035028795768, + 38.20380488824675 + ], + [ + -87.40897259882152, + 38.517059942463675 + ], + [ + -87.83172797709383, + 38.517059942463675 + ], + [ + -87.62035028795768, + 38.20380488824675 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.62035028795768, + 38.20380488824675 + ], + [ + -87.83172797709383, + 38.517059942463675 + ], + [ + -88.04310566622999, + 38.20380488824675 + ], + [ + -87.62035028795768, + 38.20380488824675 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.62035028795768, + 38.20380488824675 + ], + [ + -88.04310566622999, + 38.20380488824675 + ], + [ + -87.83172797709383, + 37.89054983402983 + ], + [ + -87.62035028795768, + 38.20380488824675 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.62035028795768, + 38.20380488824675 + ], + [ + -87.83172797709383, + 37.89054983402983 + ], + [ + -87.40897259882152, + 37.89054983402983 + ], + [ + -87.62035028795768, + 38.20380488824675 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.62035028795768, + 38.20380488824675 + ], + [ + -87.40897259882152, + 37.89054983402983 + ], + [ + -87.19759490968536, + 38.20380488824675 + ], + [ + -87.62035028795768, + 38.20380488824675 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.62035028795768, + 38.830314996680606 + ], + [ + -87.19759490968536, + 38.830314996680606 + ], + [ + -87.40897259882152, + 39.14357005089753 + ], + [ + -87.62035028795768, + 38.830314996680606 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.62035028795768, + 38.830314996680606 + ], + [ + -87.40897259882152, + 39.14357005089753 + ], + [ + -87.83172797709383, + 39.14357005089753 + ], + [ + -87.62035028795768, + 38.830314996680606 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.62035028795768, + 38.830314996680606 + ], + [ + -87.83172797709383, + 39.14357005089753 + ], + [ + -88.04310566622999, + 38.830314996680606 + ], + [ + -87.62035028795768, + 38.830314996680606 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.62035028795768, + 38.830314996680606 + ], + [ + -88.04310566622999, + 38.830314996680606 + ], + [ + -87.83172797709383, + 38.51705994246368 + ], + [ + -87.62035028795768, + 38.830314996680606 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.62035028795768, + 38.830314996680606 + ], + [ + -87.83172797709383, + 38.51705994246368 + ], + [ + -87.40897259882152, + 38.51705994246368 + ], + [ + -87.62035028795768, + 38.830314996680606 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.62035028795768, + 38.830314996680606 + ], + [ + -87.40897259882152, + 38.51705994246368 + ], + [ + -87.19759490968536, + 38.830314996680606 + ], + [ + -87.62035028795768, + 38.830314996680606 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.62035028795768, + 39.45682510511446 + ], + [ + -87.19759490968536, + 39.45682510511446 + ], + [ + -87.40897259882152, + 39.770080159331386 + ], + [ + -87.62035028795768, + 39.45682510511446 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.62035028795768, + 39.45682510511446 + ], + [ + -87.40897259882152, + 39.770080159331386 + ], + [ + -87.83172797709383, + 39.770080159331386 + ], + [ + -87.62035028795768, + 39.45682510511446 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.62035028795768, + 39.45682510511446 + ], + [ + -87.83172797709383, + 39.770080159331386 + ], + [ + -88.04310566622999, + 39.45682510511446 + ], + [ + -87.62035028795768, + 39.45682510511446 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.62035028795768, + 39.45682510511446 + ], + [ + -88.04310566622999, + 39.45682510511446 + ], + [ + -87.83172797709383, + 39.14357005089754 + ], + [ + -87.62035028795768, + 39.45682510511446 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.62035028795768, + 39.45682510511446 + ], + [ + -87.83172797709383, + 39.14357005089754 + ], + [ + -87.40897259882152, + 39.14357005089754 + ], + [ + -87.62035028795768, + 39.45682510511446 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.62035028795768, + 39.45682510511446 + ], + [ + -87.40897259882152, + 39.14357005089754 + ], + [ + -87.19759490968536, + 39.45682510511446 + ], + [ + -87.62035028795768, + 39.45682510511446 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.62035028795768, + 40.08333521354832 + ], + [ + -87.19759490968536, + 40.08333521354832 + ], + [ + -87.40897259882152, + 40.39659026776524 + ], + [ + -87.62035028795768, + 40.08333521354832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.62035028795768, + 40.08333521354832 + ], + [ + -87.40897259882152, + 40.39659026776524 + ], + [ + -87.83172797709383, + 40.39659026776524 + ], + [ + -87.62035028795768, + 40.08333521354832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.62035028795768, + 40.08333521354832 + ], + [ + -87.83172797709383, + 40.39659026776524 + ], + [ + -88.04310566622999, + 40.08333521354832 + ], + [ + -87.62035028795768, + 40.08333521354832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.62035028795768, + 40.08333521354832 + ], + [ + -88.04310566622999, + 40.08333521354832 + ], + [ + -87.83172797709383, + 39.77008015933139 + ], + [ + -87.62035028795768, + 40.08333521354832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.62035028795768, + 40.08333521354832 + ], + [ + -87.83172797709383, + 39.77008015933139 + ], + [ + -87.40897259882152, + 39.77008015933139 + ], + [ + -87.62035028795768, + 40.08333521354832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.62035028795768, + 40.08333521354832 + ], + [ + -87.40897259882152, + 39.77008015933139 + ], + [ + -87.19759490968536, + 40.08333521354832 + ], + [ + -87.62035028795768, + 40.08333521354832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.62035028795768, + 40.70984532198217 + ], + [ + -87.19759490968536, + 40.70984532198217 + ], + [ + -87.40897259882152, + 41.023100376199096 + ], + [ + -87.62035028795768, + 40.70984532198217 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.62035028795768, + 40.70984532198217 + ], + [ + -87.40897259882152, + 41.023100376199096 + ], + [ + -87.83172797709383, + 41.023100376199096 + ], + [ + -87.62035028795768, + 40.70984532198217 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.62035028795768, + 40.70984532198217 + ], + [ + -87.83172797709383, + 41.023100376199096 + ], + [ + -88.04310566622999, + 40.70984532198217 + ], + [ + -87.62035028795768, + 40.70984532198217 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.62035028795768, + 40.70984532198217 + ], + [ + -88.04310566622999, + 40.70984532198217 + ], + [ + -87.83172797709383, + 40.39659026776525 + ], + [ + -87.62035028795768, + 40.70984532198217 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.62035028795768, + 40.70984532198217 + ], + [ + -87.83172797709383, + 40.39659026776525 + ], + [ + -87.40897259882152, + 40.39659026776525 + ], + [ + -87.62035028795768, + 40.70984532198217 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.62035028795768, + 40.70984532198217 + ], + [ + -87.40897259882152, + 40.39659026776525 + ], + [ + -87.19759490968536, + 40.70984532198217 + ], + [ + -87.62035028795768, + 40.70984532198217 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.98621722054921, + 30.99893864125743 + ], + [ + -86.5634618422769, + 30.99893864125743 + ], + [ + -86.77483953141305, + 31.312193695474356 + ], + [ + -86.98621722054921, + 30.99893864125743 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.98621722054921, + 30.99893864125743 + ], + [ + -86.77483953141305, + 31.312193695474356 + ], + [ + -87.19759490968536, + 31.312193695474356 + ], + [ + -86.98621722054921, + 30.99893864125743 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.98621722054921, + 30.99893864125743 + ], + [ + -87.19759490968536, + 31.312193695474356 + ], + [ + -87.40897259882152, + 30.99893864125743 + ], + [ + -86.98621722054921, + 30.99893864125743 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.98621722054921, + 30.99893864125743 + ], + [ + -87.40897259882152, + 30.99893864125743 + ], + [ + -87.19759490968536, + 30.6856835870405 + ], + [ + -86.98621722054921, + 30.99893864125743 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.98621722054921, + 30.99893864125743 + ], + [ + -87.19759490968536, + 30.6856835870405 + ], + [ + -86.77483953141305, + 30.6856835870405 + ], + [ + -86.98621722054921, + 30.99893864125743 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.98621722054921, + 30.99893864125743 + ], + [ + -86.77483953141305, + 30.6856835870405 + ], + [ + -86.5634618422769, + 30.99893864125743 + ], + [ + -86.98621722054921, + 30.99893864125743 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.98621722054921, + 31.62544874969128 + ], + [ + -86.5634618422769, + 31.62544874969128 + ], + [ + -86.77483953141305, + 31.938703803908208 + ], + [ + -86.98621722054921, + 31.62544874969128 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.98621722054921, + 31.62544874969128 + ], + [ + -86.77483953141305, + 31.938703803908208 + ], + [ + -87.19759490968536, + 31.938703803908208 + ], + [ + -86.98621722054921, + 31.62544874969128 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.98621722054921, + 31.62544874969128 + ], + [ + -87.19759490968536, + 31.938703803908208 + ], + [ + -87.40897259882152, + 31.62544874969128 + ], + [ + -86.98621722054921, + 31.62544874969128 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.98621722054921, + 31.62544874969128 + ], + [ + -87.40897259882152, + 31.62544874969128 + ], + [ + -87.19759490968536, + 31.312193695474352 + ], + [ + -86.98621722054921, + 31.62544874969128 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.98621722054921, + 31.62544874969128 + ], + [ + -87.19759490968536, + 31.312193695474352 + ], + [ + -86.77483953141305, + 31.312193695474352 + ], + [ + -86.98621722054921, + 31.62544874969128 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.98621722054921, + 31.62544874969128 + ], + [ + -86.77483953141305, + 31.312193695474352 + ], + [ + -86.5634618422769, + 31.62544874969128 + ], + [ + -86.98621722054921, + 31.62544874969128 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.98621722054921, + 32.251958858125136 + ], + [ + -86.5634618422769, + 32.251958858125136 + ], + [ + -86.77483953141305, + 32.56521391234206 + ], + [ + -86.98621722054921, + 32.251958858125136 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.98621722054921, + 32.251958858125136 + ], + [ + -86.77483953141305, + 32.56521391234206 + ], + [ + -87.19759490968536, + 32.56521391234206 + ], + [ + -86.98621722054921, + 32.251958858125136 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.98621722054921, + 32.251958858125136 + ], + [ + -87.19759490968536, + 32.56521391234206 + ], + [ + -87.40897259882152, + 32.251958858125136 + ], + [ + -86.98621722054921, + 32.251958858125136 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.98621722054921, + 32.251958858125136 + ], + [ + -87.40897259882152, + 32.251958858125136 + ], + [ + -87.19759490968536, + 31.938703803908208 + ], + [ + -86.98621722054921, + 32.251958858125136 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.98621722054921, + 32.251958858125136 + ], + [ + -87.19759490968536, + 31.938703803908208 + ], + [ + -86.77483953141305, + 31.938703803908208 + ], + [ + -86.98621722054921, + 32.251958858125136 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.98621722054921, + 32.251958858125136 + ], + [ + -86.77483953141305, + 31.938703803908208 + ], + [ + -86.5634618422769, + 32.251958858125136 + ], + [ + -86.98621722054921, + 32.251958858125136 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.98621722054921, + 32.87846896655899 + ], + [ + -86.5634618422769, + 32.87846896655899 + ], + [ + -86.77483953141305, + 33.191724020775915 + ], + [ + -86.98621722054921, + 32.87846896655899 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.98621722054921, + 32.87846896655899 + ], + [ + -86.77483953141305, + 33.191724020775915 + ], + [ + -87.19759490968536, + 33.191724020775915 + ], + [ + -86.98621722054921, + 32.87846896655899 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.98621722054921, + 32.87846896655899 + ], + [ + -87.19759490968536, + 33.191724020775915 + ], + [ + -87.40897259882152, + 32.87846896655899 + ], + [ + -86.98621722054921, + 32.87846896655899 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.98621722054921, + 32.87846896655899 + ], + [ + -87.40897259882152, + 32.87846896655899 + ], + [ + -87.19759490968536, + 32.56521391234207 + ], + [ + -86.98621722054921, + 32.87846896655899 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.98621722054921, + 32.87846896655899 + ], + [ + -87.19759490968536, + 32.56521391234207 + ], + [ + -86.77483953141305, + 32.56521391234207 + ], + [ + -86.98621722054921, + 32.87846896655899 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.98621722054921, + 32.87846896655899 + ], + [ + -86.77483953141305, + 32.56521391234207 + ], + [ + -86.5634618422769, + 32.87846896655899 + ], + [ + -86.98621722054921, + 32.87846896655899 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.98621722054921, + 33.504979074992846 + ], + [ + -86.5634618422769, + 33.504979074992846 + ], + [ + -86.77483953141305, + 33.81823412920977 + ], + [ + -86.98621722054921, + 33.504979074992846 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.98621722054921, + 33.504979074992846 + ], + [ + -86.77483953141305, + 33.81823412920977 + ], + [ + -87.19759490968536, + 33.81823412920977 + ], + [ + -86.98621722054921, + 33.504979074992846 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.98621722054921, + 33.504979074992846 + ], + [ + -87.19759490968536, + 33.81823412920977 + ], + [ + -87.40897259882152, + 33.504979074992846 + ], + [ + -86.98621722054921, + 33.504979074992846 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.98621722054921, + 33.504979074992846 + ], + [ + -87.40897259882152, + 33.504979074992846 + ], + [ + -87.19759490968536, + 33.19172402077592 + ], + [ + -86.98621722054921, + 33.504979074992846 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.98621722054921, + 33.504979074992846 + ], + [ + -87.19759490968536, + 33.19172402077592 + ], + [ + -86.77483953141305, + 33.19172402077592 + ], + [ + -86.98621722054921, + 33.504979074992846 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.98621722054921, + 33.504979074992846 + ], + [ + -86.77483953141305, + 33.19172402077592 + ], + [ + -86.5634618422769, + 33.504979074992846 + ], + [ + -86.98621722054921, + 33.504979074992846 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.98621722054921, + 34.1314891834267 + ], + [ + -86.5634618422769, + 34.1314891834267 + ], + [ + -86.77483953141305, + 34.444744237643626 + ], + [ + -86.98621722054921, + 34.1314891834267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.98621722054921, + 34.1314891834267 + ], + [ + -86.77483953141305, + 34.444744237643626 + ], + [ + -87.19759490968536, + 34.444744237643626 + ], + [ + -86.98621722054921, + 34.1314891834267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.98621722054921, + 34.1314891834267 + ], + [ + -87.19759490968536, + 34.444744237643626 + ], + [ + -87.40897259882152, + 34.1314891834267 + ], + [ + -86.98621722054921, + 34.1314891834267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.98621722054921, + 34.1314891834267 + ], + [ + -87.40897259882152, + 34.1314891834267 + ], + [ + -87.19759490968536, + 33.81823412920978 + ], + [ + -86.98621722054921, + 34.1314891834267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.98621722054921, + 34.1314891834267 + ], + [ + -87.19759490968536, + 33.81823412920978 + ], + [ + -86.77483953141305, + 33.81823412920978 + ], + [ + -86.98621722054921, + 34.1314891834267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.98621722054921, + 34.1314891834267 + ], + [ + -86.77483953141305, + 33.81823412920978 + ], + [ + -86.5634618422769, + 34.1314891834267 + ], + [ + -86.98621722054921, + 34.1314891834267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.98621722054921, + 34.75799929186056 + ], + [ + -86.5634618422769, + 34.75799929186056 + ], + [ + -86.77483953141305, + 35.07125434607748 + ], + [ + -86.98621722054921, + 34.75799929186056 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.98621722054921, + 34.75799929186056 + ], + [ + -86.77483953141305, + 35.07125434607748 + ], + [ + -87.19759490968536, + 35.07125434607748 + ], + [ + -86.98621722054921, + 34.75799929186056 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.98621722054921, + 34.75799929186056 + ], + [ + -87.19759490968536, + 35.07125434607748 + ], + [ + -87.40897259882152, + 34.75799929186056 + ], + [ + -86.98621722054921, + 34.75799929186056 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.98621722054921, + 34.75799929186056 + ], + [ + -87.40897259882152, + 34.75799929186056 + ], + [ + -87.19759490968536, + 34.44474423764363 + ], + [ + -86.98621722054921, + 34.75799929186056 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.98621722054921, + 34.75799929186056 + ], + [ + -87.19759490968536, + 34.44474423764363 + ], + [ + -86.77483953141305, + 34.44474423764363 + ], + [ + -86.98621722054921, + 34.75799929186056 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.98621722054921, + 34.75799929186056 + ], + [ + -86.77483953141305, + 34.44474423764363 + ], + [ + -86.5634618422769, + 34.75799929186056 + ], + [ + -86.98621722054921, + 34.75799929186056 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.98621722054921, + 35.38450940029441 + ], + [ + -86.5634618422769, + 35.38450940029441 + ], + [ + -86.77483953141305, + 35.697764454511336 + ], + [ + -86.98621722054921, + 35.38450940029441 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.98621722054921, + 35.38450940029441 + ], + [ + -86.77483953141305, + 35.697764454511336 + ], + [ + -87.19759490968536, + 35.697764454511336 + ], + [ + -86.98621722054921, + 35.38450940029441 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.98621722054921, + 35.38450940029441 + ], + [ + -87.19759490968536, + 35.697764454511336 + ], + [ + -87.40897259882152, + 35.38450940029441 + ], + [ + -86.98621722054921, + 35.38450940029441 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.98621722054921, + 35.38450940029441 + ], + [ + -87.40897259882152, + 35.38450940029441 + ], + [ + -87.19759490968536, + 35.07125434607749 + ], + [ + -86.98621722054921, + 35.38450940029441 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.98621722054921, + 35.38450940029441 + ], + [ + -87.19759490968536, + 35.07125434607749 + ], + [ + -86.77483953141305, + 35.07125434607749 + ], + [ + -86.98621722054921, + 35.38450940029441 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.98621722054921, + 35.38450940029441 + ], + [ + -86.77483953141305, + 35.07125434607749 + ], + [ + -86.5634618422769, + 35.38450940029441 + ], + [ + -86.98621722054921, + 35.38450940029441 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.98621722054921, + 36.01101950872826 + ], + [ + -86.5634618422769, + 36.01101950872826 + ], + [ + -86.77483953141305, + 36.324274562945185 + ], + [ + -86.98621722054921, + 36.01101950872826 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.98621722054921, + 36.01101950872826 + ], + [ + -86.77483953141305, + 36.324274562945185 + ], + [ + -87.19759490968536, + 36.324274562945185 + ], + [ + -86.98621722054921, + 36.01101950872826 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.98621722054921, + 36.01101950872826 + ], + [ + -87.19759490968536, + 36.324274562945185 + ], + [ + -87.40897259882152, + 36.01101950872826 + ], + [ + -86.98621722054921, + 36.01101950872826 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.98621722054921, + 36.01101950872826 + ], + [ + -87.40897259882152, + 36.01101950872826 + ], + [ + -87.19759490968536, + 35.697764454511336 + ], + [ + -86.98621722054921, + 36.01101950872826 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.98621722054921, + 36.01101950872826 + ], + [ + -87.19759490968536, + 35.697764454511336 + ], + [ + -86.77483953141305, + 35.697764454511336 + ], + [ + -86.98621722054921, + 36.01101950872826 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.98621722054921, + 36.01101950872826 + ], + [ + -86.77483953141305, + 35.697764454511336 + ], + [ + -86.5634618422769, + 36.01101950872826 + ], + [ + -86.98621722054921, + 36.01101950872826 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.98621722054921, + 36.637529617162116 + ], + [ + -86.5634618422769, + 36.637529617162116 + ], + [ + -86.77483953141305, + 36.95078467137904 + ], + [ + -86.98621722054921, + 36.637529617162116 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.98621722054921, + 36.637529617162116 + ], + [ + -86.77483953141305, + 36.95078467137904 + ], + [ + -87.19759490968536, + 36.95078467137904 + ], + [ + -86.98621722054921, + 36.637529617162116 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.98621722054921, + 36.637529617162116 + ], + [ + -87.19759490968536, + 36.95078467137904 + ], + [ + -87.40897259882152, + 36.637529617162116 + ], + [ + -86.98621722054921, + 36.637529617162116 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.98621722054921, + 36.637529617162116 + ], + [ + -87.40897259882152, + 36.637529617162116 + ], + [ + -87.19759490968536, + 36.32427456294519 + ], + [ + -86.98621722054921, + 36.637529617162116 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.98621722054921, + 36.637529617162116 + ], + [ + -87.19759490968536, + 36.32427456294519 + ], + [ + -86.77483953141305, + 36.32427456294519 + ], + [ + -86.98621722054921, + 36.637529617162116 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.98621722054921, + 36.637529617162116 + ], + [ + -86.77483953141305, + 36.32427456294519 + ], + [ + -86.5634618422769, + 36.637529617162116 + ], + [ + -86.98621722054921, + 36.637529617162116 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.98621722054921, + 37.26403972559597 + ], + [ + -86.5634618422769, + 37.26403972559597 + ], + [ + -86.77483953141305, + 37.577294779812895 + ], + [ + -86.98621722054921, + 37.26403972559597 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.98621722054921, + 37.26403972559597 + ], + [ + -86.77483953141305, + 37.577294779812895 + ], + [ + -87.19759490968536, + 37.577294779812895 + ], + [ + -86.98621722054921, + 37.26403972559597 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.98621722054921, + 37.26403972559597 + ], + [ + -87.19759490968536, + 37.577294779812895 + ], + [ + -87.40897259882152, + 37.26403972559597 + ], + [ + -86.98621722054921, + 37.26403972559597 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.98621722054921, + 37.26403972559597 + ], + [ + -87.40897259882152, + 37.26403972559597 + ], + [ + -87.19759490968536, + 36.95078467137905 + ], + [ + -86.98621722054921, + 37.26403972559597 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.98621722054921, + 37.26403972559597 + ], + [ + -87.19759490968536, + 36.95078467137905 + ], + [ + -86.77483953141305, + 36.95078467137905 + ], + [ + -86.98621722054921, + 37.26403972559597 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.98621722054921, + 37.26403972559597 + ], + [ + -86.77483953141305, + 36.95078467137905 + ], + [ + -86.5634618422769, + 37.26403972559597 + ], + [ + -86.98621722054921, + 37.26403972559597 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.98621722054921, + 37.89054983402983 + ], + [ + -86.5634618422769, + 37.89054983402983 + ], + [ + -86.77483953141305, + 38.20380488824675 + ], + [ + -86.98621722054921, + 37.89054983402983 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.98621722054921, + 37.89054983402983 + ], + [ + -86.77483953141305, + 38.20380488824675 + ], + [ + -87.19759490968536, + 38.20380488824675 + ], + [ + -86.98621722054921, + 37.89054983402983 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.98621722054921, + 37.89054983402983 + ], + [ + -87.19759490968536, + 38.20380488824675 + ], + [ + -87.40897259882152, + 37.89054983402983 + ], + [ + -86.98621722054921, + 37.89054983402983 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.98621722054921, + 37.89054983402983 + ], + [ + -87.40897259882152, + 37.89054983402983 + ], + [ + -87.19759490968536, + 37.5772947798129 + ], + [ + -86.98621722054921, + 37.89054983402983 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.98621722054921, + 37.89054983402983 + ], + [ + -87.19759490968536, + 37.5772947798129 + ], + [ + -86.77483953141305, + 37.5772947798129 + ], + [ + -86.98621722054921, + 37.89054983402983 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.98621722054921, + 37.89054983402983 + ], + [ + -86.77483953141305, + 37.5772947798129 + ], + [ + -86.5634618422769, + 37.89054983402983 + ], + [ + -86.98621722054921, + 37.89054983402983 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.98621722054921, + 38.51705994246368 + ], + [ + -86.5634618422769, + 38.51705994246368 + ], + [ + -86.77483953141305, + 38.830314996680606 + ], + [ + -86.98621722054921, + 38.51705994246368 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.98621722054921, + 38.51705994246368 + ], + [ + -86.77483953141305, + 38.830314996680606 + ], + [ + -87.19759490968536, + 38.830314996680606 + ], + [ + -86.98621722054921, + 38.51705994246368 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.98621722054921, + 38.51705994246368 + ], + [ + -87.19759490968536, + 38.830314996680606 + ], + [ + -87.40897259882152, + 38.51705994246368 + ], + [ + -86.98621722054921, + 38.51705994246368 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.98621722054921, + 38.51705994246368 + ], + [ + -87.40897259882152, + 38.51705994246368 + ], + [ + -87.19759490968536, + 38.20380488824676 + ], + [ + -86.98621722054921, + 38.51705994246368 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.98621722054921, + 38.51705994246368 + ], + [ + -87.19759490968536, + 38.20380488824676 + ], + [ + -86.77483953141305, + 38.20380488824676 + ], + [ + -86.98621722054921, + 38.51705994246368 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.98621722054921, + 38.51705994246368 + ], + [ + -86.77483953141305, + 38.20380488824676 + ], + [ + -86.5634618422769, + 38.51705994246368 + ], + [ + -86.98621722054921, + 38.51705994246368 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.98621722054921, + 39.14357005089754 + ], + [ + -86.5634618422769, + 39.14357005089754 + ], + [ + -86.77483953141305, + 39.45682510511446 + ], + [ + -86.98621722054921, + 39.14357005089754 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.98621722054921, + 39.14357005089754 + ], + [ + -86.77483953141305, + 39.45682510511446 + ], + [ + -87.19759490968536, + 39.45682510511446 + ], + [ + -86.98621722054921, + 39.14357005089754 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.98621722054921, + 39.14357005089754 + ], + [ + -87.19759490968536, + 39.45682510511446 + ], + [ + -87.40897259882152, + 39.14357005089754 + ], + [ + -86.98621722054921, + 39.14357005089754 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.98621722054921, + 39.14357005089754 + ], + [ + -87.40897259882152, + 39.14357005089754 + ], + [ + -87.19759490968536, + 38.83031499668061 + ], + [ + -86.98621722054921, + 39.14357005089754 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.98621722054921, + 39.14357005089754 + ], + [ + -87.19759490968536, + 38.83031499668061 + ], + [ + -86.77483953141305, + 38.83031499668061 + ], + [ + -86.98621722054921, + 39.14357005089754 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.98621722054921, + 39.14357005089754 + ], + [ + -86.77483953141305, + 38.83031499668061 + ], + [ + -86.5634618422769, + 39.14357005089754 + ], + [ + -86.98621722054921, + 39.14357005089754 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.98621722054921, + 39.77008015933139 + ], + [ + -86.5634618422769, + 39.77008015933139 + ], + [ + -86.77483953141305, + 40.08333521354832 + ], + [ + -86.98621722054921, + 39.77008015933139 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.98621722054921, + 39.77008015933139 + ], + [ + -86.77483953141305, + 40.08333521354832 + ], + [ + -87.19759490968536, + 40.08333521354832 + ], + [ + -86.98621722054921, + 39.77008015933139 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.98621722054921, + 39.77008015933139 + ], + [ + -87.19759490968536, + 40.08333521354832 + ], + [ + -87.40897259882152, + 39.77008015933139 + ], + [ + -86.98621722054921, + 39.77008015933139 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.98621722054921, + 39.77008015933139 + ], + [ + -87.40897259882152, + 39.77008015933139 + ], + [ + -87.19759490968536, + 39.45682510511447 + ], + [ + -86.98621722054921, + 39.77008015933139 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.98621722054921, + 39.77008015933139 + ], + [ + -87.19759490968536, + 39.45682510511447 + ], + [ + -86.77483953141305, + 39.45682510511447 + ], + [ + -86.98621722054921, + 39.77008015933139 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.98621722054921, + 39.77008015933139 + ], + [ + -86.77483953141305, + 39.45682510511447 + ], + [ + -86.5634618422769, + 39.77008015933139 + ], + [ + -86.98621722054921, + 39.77008015933139 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.98621722054921, + 40.39659026776525 + ], + [ + -86.5634618422769, + 40.39659026776525 + ], + [ + -86.77483953141305, + 40.70984532198217 + ], + [ + -86.98621722054921, + 40.39659026776525 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.98621722054921, + 40.39659026776525 + ], + [ + -86.77483953141305, + 40.70984532198217 + ], + [ + -87.19759490968536, + 40.70984532198217 + ], + [ + -86.98621722054921, + 40.39659026776525 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.98621722054921, + 40.39659026776525 + ], + [ + -87.19759490968536, + 40.70984532198217 + ], + [ + -87.40897259882152, + 40.39659026776525 + ], + [ + -86.98621722054921, + 40.39659026776525 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.98621722054921, + 40.39659026776525 + ], + [ + -87.40897259882152, + 40.39659026776525 + ], + [ + -87.19759490968536, + 40.083335213548324 + ], + [ + -86.98621722054921, + 40.39659026776525 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.98621722054921, + 40.39659026776525 + ], + [ + -87.19759490968536, + 40.083335213548324 + ], + [ + -86.77483953141305, + 40.083335213548324 + ], + [ + -86.98621722054921, + 40.39659026776525 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.98621722054921, + 40.39659026776525 + ], + [ + -86.77483953141305, + 40.083335213548324 + ], + [ + -86.5634618422769, + 40.39659026776525 + ], + [ + -86.98621722054921, + 40.39659026776525 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.35208415314074, + 31.312193695474356 + ], + [ + -85.92932877486842, + 31.312193695474356 + ], + [ + -86.14070646400458, + 31.625448749691284 + ], + [ + -86.35208415314074, + 31.312193695474356 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.35208415314074, + 31.312193695474356 + ], + [ + -86.14070646400458, + 31.625448749691284 + ], + [ + -86.5634618422769, + 31.625448749691284 + ], + [ + -86.35208415314074, + 31.312193695474356 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.35208415314074, + 31.312193695474356 + ], + [ + -86.5634618422769, + 31.625448749691284 + ], + [ + -86.77483953141305, + 31.312193695474356 + ], + [ + -86.35208415314074, + 31.312193695474356 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.35208415314074, + 31.312193695474356 + ], + [ + -86.77483953141305, + 31.312193695474356 + ], + [ + -86.5634618422769, + 30.99893864125743 + ], + [ + -86.35208415314074, + 31.312193695474356 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.35208415314074, + 31.312193695474356 + ], + [ + -86.5634618422769, + 30.99893864125743 + ], + [ + -86.14070646400458, + 30.99893864125743 + ], + [ + -86.35208415314074, + 31.312193695474356 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.35208415314074, + 31.312193695474356 + ], + [ + -86.14070646400458, + 30.99893864125743 + ], + [ + -85.92932877486842, + 31.312193695474356 + ], + [ + -86.35208415314074, + 31.312193695474356 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.35208415314074, + 31.938703803908208 + ], + [ + -85.92932877486842, + 31.938703803908208 + ], + [ + -86.14070646400458, + 32.251958858125136 + ], + [ + -86.35208415314074, + 31.938703803908208 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.35208415314074, + 31.938703803908208 + ], + [ + -86.14070646400458, + 32.251958858125136 + ], + [ + -86.5634618422769, + 32.251958858125136 + ], + [ + -86.35208415314074, + 31.938703803908208 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.35208415314074, + 31.938703803908208 + ], + [ + -86.5634618422769, + 32.251958858125136 + ], + [ + -86.77483953141305, + 31.938703803908208 + ], + [ + -86.35208415314074, + 31.938703803908208 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.35208415314074, + 31.938703803908208 + ], + [ + -86.77483953141305, + 31.938703803908208 + ], + [ + -86.5634618422769, + 31.62544874969128 + ], + [ + -86.35208415314074, + 31.938703803908208 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.35208415314074, + 31.938703803908208 + ], + [ + -86.5634618422769, + 31.62544874969128 + ], + [ + -86.14070646400458, + 31.62544874969128 + ], + [ + -86.35208415314074, + 31.938703803908208 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.35208415314074, + 31.938703803908208 + ], + [ + -86.14070646400458, + 31.62544874969128 + ], + [ + -85.92932877486842, + 31.938703803908208 + ], + [ + -86.35208415314074, + 31.938703803908208 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.35208415314074, + 32.56521391234206 + ], + [ + -85.92932877486842, + 32.56521391234206 + ], + [ + -86.14070646400458, + 32.878468966558984 + ], + [ + -86.35208415314074, + 32.56521391234206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.35208415314074, + 32.56521391234206 + ], + [ + -86.14070646400458, + 32.878468966558984 + ], + [ + -86.5634618422769, + 32.878468966558984 + ], + [ + -86.35208415314074, + 32.56521391234206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.35208415314074, + 32.56521391234206 + ], + [ + -86.5634618422769, + 32.878468966558984 + ], + [ + -86.77483953141305, + 32.56521391234206 + ], + [ + -86.35208415314074, + 32.56521391234206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.35208415314074, + 32.56521391234206 + ], + [ + -86.77483953141305, + 32.56521391234206 + ], + [ + -86.5634618422769, + 32.251958858125136 + ], + [ + -86.35208415314074, + 32.56521391234206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.35208415314074, + 32.56521391234206 + ], + [ + -86.5634618422769, + 32.251958858125136 + ], + [ + -86.14070646400458, + 32.251958858125136 + ], + [ + -86.35208415314074, + 32.56521391234206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.35208415314074, + 32.56521391234206 + ], + [ + -86.14070646400458, + 32.251958858125136 + ], + [ + -85.92932877486842, + 32.56521391234206 + ], + [ + -86.35208415314074, + 32.56521391234206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.35208415314074, + 33.191724020775915 + ], + [ + -85.92932877486842, + 33.191724020775915 + ], + [ + -86.14070646400458, + 33.50497907499284 + ], + [ + -86.35208415314074, + 33.191724020775915 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.35208415314074, + 33.191724020775915 + ], + [ + -86.14070646400458, + 33.50497907499284 + ], + [ + -86.5634618422769, + 33.50497907499284 + ], + [ + -86.35208415314074, + 33.191724020775915 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.35208415314074, + 33.191724020775915 + ], + [ + -86.5634618422769, + 33.50497907499284 + ], + [ + -86.77483953141305, + 33.191724020775915 + ], + [ + -86.35208415314074, + 33.191724020775915 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.35208415314074, + 33.191724020775915 + ], + [ + -86.77483953141305, + 33.191724020775915 + ], + [ + -86.5634618422769, + 32.87846896655899 + ], + [ + -86.35208415314074, + 33.191724020775915 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.35208415314074, + 33.191724020775915 + ], + [ + -86.5634618422769, + 32.87846896655899 + ], + [ + -86.14070646400458, + 32.87846896655899 + ], + [ + -86.35208415314074, + 33.191724020775915 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.35208415314074, + 33.191724020775915 + ], + [ + -86.14070646400458, + 32.87846896655899 + ], + [ + -85.92932877486842, + 33.191724020775915 + ], + [ + -86.35208415314074, + 33.191724020775915 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.35208415314074, + 33.81823412920977 + ], + [ + -85.92932877486842, + 33.81823412920977 + ], + [ + -86.14070646400458, + 34.131489183426694 + ], + [ + -86.35208415314074, + 33.81823412920977 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.35208415314074, + 33.81823412920977 + ], + [ + -86.14070646400458, + 34.131489183426694 + ], + [ + -86.5634618422769, + 34.131489183426694 + ], + [ + -86.35208415314074, + 33.81823412920977 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.35208415314074, + 33.81823412920977 + ], + [ + -86.5634618422769, + 34.131489183426694 + ], + [ + -86.77483953141305, + 33.81823412920977 + ], + [ + -86.35208415314074, + 33.81823412920977 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.35208415314074, + 33.81823412920977 + ], + [ + -86.77483953141305, + 33.81823412920977 + ], + [ + -86.5634618422769, + 33.504979074992846 + ], + [ + -86.35208415314074, + 33.81823412920977 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.35208415314074, + 33.81823412920977 + ], + [ + -86.5634618422769, + 33.504979074992846 + ], + [ + -86.14070646400458, + 33.504979074992846 + ], + [ + -86.35208415314074, + 33.81823412920977 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.35208415314074, + 33.81823412920977 + ], + [ + -86.14070646400458, + 33.504979074992846 + ], + [ + -85.92932877486842, + 33.81823412920977 + ], + [ + -86.35208415314074, + 33.81823412920977 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.35208415314074, + 34.444744237643626 + ], + [ + -85.92932877486842, + 34.444744237643626 + ], + [ + -86.14070646400458, + 34.75799929186055 + ], + [ + -86.35208415314074, + 34.444744237643626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.35208415314074, + 34.444744237643626 + ], + [ + -86.14070646400458, + 34.75799929186055 + ], + [ + -86.5634618422769, + 34.75799929186055 + ], + [ + -86.35208415314074, + 34.444744237643626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.35208415314074, + 34.444744237643626 + ], + [ + -86.5634618422769, + 34.75799929186055 + ], + [ + -86.77483953141305, + 34.444744237643626 + ], + [ + -86.35208415314074, + 34.444744237643626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.35208415314074, + 34.444744237643626 + ], + [ + -86.77483953141305, + 34.444744237643626 + ], + [ + -86.5634618422769, + 34.1314891834267 + ], + [ + -86.35208415314074, + 34.444744237643626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.35208415314074, + 34.444744237643626 + ], + [ + -86.5634618422769, + 34.1314891834267 + ], + [ + -86.14070646400458, + 34.1314891834267 + ], + [ + -86.35208415314074, + 34.444744237643626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.35208415314074, + 34.444744237643626 + ], + [ + -86.14070646400458, + 34.1314891834267 + ], + [ + -85.92932877486842, + 34.444744237643626 + ], + [ + -86.35208415314074, + 34.444744237643626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.35208415314074, + 35.07125434607748 + ], + [ + -85.92932877486842, + 35.07125434607748 + ], + [ + -86.14070646400458, + 35.384509400294405 + ], + [ + -86.35208415314074, + 35.07125434607748 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.35208415314074, + 35.07125434607748 + ], + [ + -86.14070646400458, + 35.384509400294405 + ], + [ + -86.5634618422769, + 35.384509400294405 + ], + [ + -86.35208415314074, + 35.07125434607748 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.35208415314074, + 35.07125434607748 + ], + [ + -86.5634618422769, + 35.384509400294405 + ], + [ + -86.77483953141305, + 35.07125434607748 + ], + [ + -86.35208415314074, + 35.07125434607748 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.35208415314074, + 35.07125434607748 + ], + [ + -86.77483953141305, + 35.07125434607748 + ], + [ + -86.5634618422769, + 34.75799929186056 + ], + [ + -86.35208415314074, + 35.07125434607748 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.35208415314074, + 35.07125434607748 + ], + [ + -86.5634618422769, + 34.75799929186056 + ], + [ + -86.14070646400458, + 34.75799929186056 + ], + [ + -86.35208415314074, + 35.07125434607748 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.35208415314074, + 35.07125434607748 + ], + [ + -86.14070646400458, + 34.75799929186056 + ], + [ + -85.92932877486842, + 35.07125434607748 + ], + [ + -86.35208415314074, + 35.07125434607748 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.35208415314074, + 35.697764454511336 + ], + [ + -85.92932877486842, + 35.697764454511336 + ], + [ + -86.14070646400458, + 36.01101950872826 + ], + [ + -86.35208415314074, + 35.697764454511336 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.35208415314074, + 35.697764454511336 + ], + [ + -86.14070646400458, + 36.01101950872826 + ], + [ + -86.5634618422769, + 36.01101950872826 + ], + [ + -86.35208415314074, + 35.697764454511336 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.35208415314074, + 35.697764454511336 + ], + [ + -86.5634618422769, + 36.01101950872826 + ], + [ + -86.77483953141305, + 35.697764454511336 + ], + [ + -86.35208415314074, + 35.697764454511336 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.35208415314074, + 35.697764454511336 + ], + [ + -86.77483953141305, + 35.697764454511336 + ], + [ + -86.5634618422769, + 35.38450940029441 + ], + [ + -86.35208415314074, + 35.697764454511336 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.35208415314074, + 35.697764454511336 + ], + [ + -86.5634618422769, + 35.38450940029441 + ], + [ + -86.14070646400458, + 35.38450940029441 + ], + [ + -86.35208415314074, + 35.697764454511336 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.35208415314074, + 35.697764454511336 + ], + [ + -86.14070646400458, + 35.38450940029441 + ], + [ + -85.92932877486842, + 35.697764454511336 + ], + [ + -86.35208415314074, + 35.697764454511336 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.35208415314074, + 36.324274562945185 + ], + [ + -85.92932877486842, + 36.324274562945185 + ], + [ + -86.14070646400458, + 36.63752961716211 + ], + [ + -86.35208415314074, + 36.324274562945185 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.35208415314074, + 36.324274562945185 + ], + [ + -86.14070646400458, + 36.63752961716211 + ], + [ + -86.5634618422769, + 36.63752961716211 + ], + [ + -86.35208415314074, + 36.324274562945185 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.35208415314074, + 36.324274562945185 + ], + [ + -86.5634618422769, + 36.63752961716211 + ], + [ + -86.77483953141305, + 36.324274562945185 + ], + [ + -86.35208415314074, + 36.324274562945185 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.35208415314074, + 36.324274562945185 + ], + [ + -86.77483953141305, + 36.324274562945185 + ], + [ + -86.5634618422769, + 36.01101950872826 + ], + [ + -86.35208415314074, + 36.324274562945185 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.35208415314074, + 36.324274562945185 + ], + [ + -86.5634618422769, + 36.01101950872826 + ], + [ + -86.14070646400458, + 36.01101950872826 + ], + [ + -86.35208415314074, + 36.324274562945185 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.35208415314074, + 36.324274562945185 + ], + [ + -86.14070646400458, + 36.01101950872826 + ], + [ + -85.92932877486842, + 36.324274562945185 + ], + [ + -86.35208415314074, + 36.324274562945185 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.35208415314074, + 36.95078467137904 + ], + [ + -85.92932877486842, + 36.95078467137904 + ], + [ + -86.14070646400458, + 37.264039725595964 + ], + [ + -86.35208415314074, + 36.95078467137904 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.35208415314074, + 36.95078467137904 + ], + [ + -86.14070646400458, + 37.264039725595964 + ], + [ + -86.5634618422769, + 37.264039725595964 + ], + [ + -86.35208415314074, + 36.95078467137904 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.35208415314074, + 36.95078467137904 + ], + [ + -86.5634618422769, + 37.264039725595964 + ], + [ + -86.77483953141305, + 36.95078467137904 + ], + [ + -86.35208415314074, + 36.95078467137904 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.35208415314074, + 36.95078467137904 + ], + [ + -86.77483953141305, + 36.95078467137904 + ], + [ + -86.5634618422769, + 36.637529617162116 + ], + [ + -86.35208415314074, + 36.95078467137904 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.35208415314074, + 36.95078467137904 + ], + [ + -86.5634618422769, + 36.637529617162116 + ], + [ + -86.14070646400458, + 36.637529617162116 + ], + [ + -86.35208415314074, + 36.95078467137904 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.35208415314074, + 36.95078467137904 + ], + [ + -86.14070646400458, + 36.637529617162116 + ], + [ + -85.92932877486842, + 36.95078467137904 + ], + [ + -86.35208415314074, + 36.95078467137904 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.35208415314074, + 37.577294779812895 + ], + [ + -85.92932877486842, + 37.577294779812895 + ], + [ + -86.14070646400458, + 37.89054983402982 + ], + [ + -86.35208415314074, + 37.577294779812895 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.35208415314074, + 37.577294779812895 + ], + [ + -86.14070646400458, + 37.89054983402982 + ], + [ + -86.5634618422769, + 37.89054983402982 + ], + [ + -86.35208415314074, + 37.577294779812895 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.35208415314074, + 37.577294779812895 + ], + [ + -86.5634618422769, + 37.89054983402982 + ], + [ + -86.77483953141305, + 37.577294779812895 + ], + [ + -86.35208415314074, + 37.577294779812895 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.35208415314074, + 37.577294779812895 + ], + [ + -86.77483953141305, + 37.577294779812895 + ], + [ + -86.5634618422769, + 37.26403972559597 + ], + [ + -86.35208415314074, + 37.577294779812895 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.35208415314074, + 37.577294779812895 + ], + [ + -86.5634618422769, + 37.26403972559597 + ], + [ + -86.14070646400458, + 37.26403972559597 + ], + [ + -86.35208415314074, + 37.577294779812895 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.35208415314074, + 37.577294779812895 + ], + [ + -86.14070646400458, + 37.26403972559597 + ], + [ + -85.92932877486842, + 37.577294779812895 + ], + [ + -86.35208415314074, + 37.577294779812895 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.35208415314074, + 38.20380488824675 + ], + [ + -85.92932877486842, + 38.20380488824675 + ], + [ + -86.14070646400458, + 38.517059942463675 + ], + [ + -86.35208415314074, + 38.20380488824675 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.35208415314074, + 38.20380488824675 + ], + [ + -86.14070646400458, + 38.517059942463675 + ], + [ + -86.5634618422769, + 38.517059942463675 + ], + [ + -86.35208415314074, + 38.20380488824675 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.35208415314074, + 38.20380488824675 + ], + [ + -86.5634618422769, + 38.517059942463675 + ], + [ + -86.77483953141305, + 38.20380488824675 + ], + [ + -86.35208415314074, + 38.20380488824675 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.35208415314074, + 38.20380488824675 + ], + [ + -86.77483953141305, + 38.20380488824675 + ], + [ + -86.5634618422769, + 37.89054983402983 + ], + [ + -86.35208415314074, + 38.20380488824675 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.35208415314074, + 38.20380488824675 + ], + [ + -86.5634618422769, + 37.89054983402983 + ], + [ + -86.14070646400458, + 37.89054983402983 + ], + [ + -86.35208415314074, + 38.20380488824675 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.35208415314074, + 38.20380488824675 + ], + [ + -86.14070646400458, + 37.89054983402983 + ], + [ + -85.92932877486842, + 38.20380488824675 + ], + [ + -86.35208415314074, + 38.20380488824675 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.35208415314074, + 38.830314996680606 + ], + [ + -85.92932877486842, + 38.830314996680606 + ], + [ + -86.14070646400458, + 39.14357005089753 + ], + [ + -86.35208415314074, + 38.830314996680606 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.35208415314074, + 38.830314996680606 + ], + [ + -86.14070646400458, + 39.14357005089753 + ], + [ + -86.5634618422769, + 39.14357005089753 + ], + [ + -86.35208415314074, + 38.830314996680606 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.35208415314074, + 38.830314996680606 + ], + [ + -86.5634618422769, + 39.14357005089753 + ], + [ + -86.77483953141305, + 38.830314996680606 + ], + [ + -86.35208415314074, + 38.830314996680606 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.35208415314074, + 38.830314996680606 + ], + [ + -86.77483953141305, + 38.830314996680606 + ], + [ + -86.5634618422769, + 38.51705994246368 + ], + [ + -86.35208415314074, + 38.830314996680606 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.35208415314074, + 38.830314996680606 + ], + [ + -86.5634618422769, + 38.51705994246368 + ], + [ + -86.14070646400458, + 38.51705994246368 + ], + [ + -86.35208415314074, + 38.830314996680606 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.35208415314074, + 38.830314996680606 + ], + [ + -86.14070646400458, + 38.51705994246368 + ], + [ + -85.92932877486842, + 38.830314996680606 + ], + [ + -86.35208415314074, + 38.830314996680606 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.35208415314074, + 39.45682510511446 + ], + [ + -85.92932877486842, + 39.45682510511446 + ], + [ + -86.14070646400458, + 39.770080159331386 + ], + [ + -86.35208415314074, + 39.45682510511446 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.35208415314074, + 39.45682510511446 + ], + [ + -86.14070646400458, + 39.770080159331386 + ], + [ + -86.5634618422769, + 39.770080159331386 + ], + [ + -86.35208415314074, + 39.45682510511446 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.35208415314074, + 39.45682510511446 + ], + [ + -86.5634618422769, + 39.770080159331386 + ], + [ + -86.77483953141305, + 39.45682510511446 + ], + [ + -86.35208415314074, + 39.45682510511446 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.35208415314074, + 39.45682510511446 + ], + [ + -86.77483953141305, + 39.45682510511446 + ], + [ + -86.5634618422769, + 39.14357005089754 + ], + [ + -86.35208415314074, + 39.45682510511446 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.35208415314074, + 39.45682510511446 + ], + [ + -86.5634618422769, + 39.14357005089754 + ], + [ + -86.14070646400458, + 39.14357005089754 + ], + [ + -86.35208415314074, + 39.45682510511446 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.35208415314074, + 39.45682510511446 + ], + [ + -86.14070646400458, + 39.14357005089754 + ], + [ + -85.92932877486842, + 39.45682510511446 + ], + [ + -86.35208415314074, + 39.45682510511446 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.35208415314074, + 40.08333521354832 + ], + [ + -85.92932877486842, + 40.08333521354832 + ], + [ + -86.14070646400458, + 40.39659026776524 + ], + [ + -86.35208415314074, + 40.08333521354832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.35208415314074, + 40.08333521354832 + ], + [ + -86.14070646400458, + 40.39659026776524 + ], + [ + -86.5634618422769, + 40.39659026776524 + ], + [ + -86.35208415314074, + 40.08333521354832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.35208415314074, + 40.08333521354832 + ], + [ + -86.5634618422769, + 40.39659026776524 + ], + [ + -86.77483953141305, + 40.08333521354832 + ], + [ + -86.35208415314074, + 40.08333521354832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.35208415314074, + 40.08333521354832 + ], + [ + -86.77483953141305, + 40.08333521354832 + ], + [ + -86.5634618422769, + 39.77008015933139 + ], + [ + -86.35208415314074, + 40.08333521354832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.35208415314074, + 40.08333521354832 + ], + [ + -86.5634618422769, + 39.77008015933139 + ], + [ + -86.14070646400458, + 39.77008015933139 + ], + [ + -86.35208415314074, + 40.08333521354832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.35208415314074, + 40.08333521354832 + ], + [ + -86.14070646400458, + 39.77008015933139 + ], + [ + -85.92932877486842, + 40.08333521354832 + ], + [ + -86.35208415314074, + 40.08333521354832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.35208415314074, + 40.70984532198217 + ], + [ + -85.92932877486842, + 40.70984532198217 + ], + [ + -86.14070646400458, + 41.023100376199096 + ], + [ + -86.35208415314074, + 40.70984532198217 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.35208415314074, + 40.70984532198217 + ], + [ + -86.14070646400458, + 41.023100376199096 + ], + [ + -86.5634618422769, + 41.023100376199096 + ], + [ + -86.35208415314074, + 40.70984532198217 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.35208415314074, + 40.70984532198217 + ], + [ + -86.5634618422769, + 41.023100376199096 + ], + [ + -86.77483953141305, + 40.70984532198217 + ], + [ + -86.35208415314074, + 40.70984532198217 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.35208415314074, + 40.70984532198217 + ], + [ + -86.77483953141305, + 40.70984532198217 + ], + [ + -86.5634618422769, + 40.39659026776525 + ], + [ + -86.35208415314074, + 40.70984532198217 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.35208415314074, + 40.70984532198217 + ], + [ + -86.5634618422769, + 40.39659026776525 + ], + [ + -86.14070646400458, + 40.39659026776525 + ], + [ + -86.35208415314074, + 40.70984532198217 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.35208415314074, + 40.70984532198217 + ], + [ + -86.14070646400458, + 40.39659026776525 + ], + [ + -85.92932877486842, + 40.70984532198217 + ], + [ + -86.35208415314074, + 40.70984532198217 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.71795108573228, + 30.99893864125743 + ], + [ + -85.29519570745997, + 30.99893864125743 + ], + [ + -85.50657339659612, + 31.312193695474356 + ], + [ + -85.71795108573228, + 30.99893864125743 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.71795108573228, + 30.99893864125743 + ], + [ + -85.50657339659612, + 31.312193695474356 + ], + [ + -85.92932877486844, + 31.312193695474356 + ], + [ + -85.71795108573228, + 30.99893864125743 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.71795108573228, + 30.99893864125743 + ], + [ + -85.92932877486844, + 31.312193695474356 + ], + [ + -86.1407064640046, + 30.99893864125743 + ], + [ + -85.71795108573228, + 30.99893864125743 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.71795108573228, + 30.99893864125743 + ], + [ + -86.1407064640046, + 30.99893864125743 + ], + [ + -85.92932877486844, + 30.6856835870405 + ], + [ + -85.71795108573228, + 30.99893864125743 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.71795108573228, + 30.99893864125743 + ], + [ + -85.92932877486844, + 30.6856835870405 + ], + [ + -85.50657339659612, + 30.6856835870405 + ], + [ + -85.71795108573228, + 30.99893864125743 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.71795108573228, + 30.99893864125743 + ], + [ + -85.50657339659612, + 30.6856835870405 + ], + [ + -85.29519570745997, + 30.99893864125743 + ], + [ + -85.71795108573228, + 30.99893864125743 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.71795108573228, + 31.62544874969128 + ], + [ + -85.29519570745997, + 31.62544874969128 + ], + [ + -85.50657339659612, + 31.938703803908208 + ], + [ + -85.71795108573228, + 31.62544874969128 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.71795108573228, + 31.62544874969128 + ], + [ + -85.50657339659612, + 31.938703803908208 + ], + [ + -85.92932877486844, + 31.938703803908208 + ], + [ + -85.71795108573228, + 31.62544874969128 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.71795108573228, + 31.62544874969128 + ], + [ + -85.92932877486844, + 31.938703803908208 + ], + [ + -86.1407064640046, + 31.62544874969128 + ], + [ + -85.71795108573228, + 31.62544874969128 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.71795108573228, + 31.62544874969128 + ], + [ + -86.1407064640046, + 31.62544874969128 + ], + [ + -85.92932877486844, + 31.312193695474352 + ], + [ + -85.71795108573228, + 31.62544874969128 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.71795108573228, + 31.62544874969128 + ], + [ + -85.92932877486844, + 31.312193695474352 + ], + [ + -85.50657339659612, + 31.312193695474352 + ], + [ + -85.71795108573228, + 31.62544874969128 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.71795108573228, + 31.62544874969128 + ], + [ + -85.50657339659612, + 31.312193695474352 + ], + [ + -85.29519570745997, + 31.62544874969128 + ], + [ + -85.71795108573228, + 31.62544874969128 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.71795108573228, + 32.251958858125136 + ], + [ + -85.29519570745997, + 32.251958858125136 + ], + [ + -85.50657339659612, + 32.56521391234206 + ], + [ + -85.71795108573228, + 32.251958858125136 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.71795108573228, + 32.251958858125136 + ], + [ + -85.50657339659612, + 32.56521391234206 + ], + [ + -85.92932877486844, + 32.56521391234206 + ], + [ + -85.71795108573228, + 32.251958858125136 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.71795108573228, + 32.251958858125136 + ], + [ + -85.92932877486844, + 32.56521391234206 + ], + [ + -86.1407064640046, + 32.251958858125136 + ], + [ + -85.71795108573228, + 32.251958858125136 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.71795108573228, + 32.251958858125136 + ], + [ + -86.1407064640046, + 32.251958858125136 + ], + [ + -85.92932877486844, + 31.938703803908208 + ], + [ + -85.71795108573228, + 32.251958858125136 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.71795108573228, + 32.251958858125136 + ], + [ + -85.92932877486844, + 31.938703803908208 + ], + [ + -85.50657339659612, + 31.938703803908208 + ], + [ + -85.71795108573228, + 32.251958858125136 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.71795108573228, + 32.251958858125136 + ], + [ + -85.50657339659612, + 31.938703803908208 + ], + [ + -85.29519570745997, + 32.251958858125136 + ], + [ + -85.71795108573228, + 32.251958858125136 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.71795108573228, + 32.87846896655899 + ], + [ + -85.29519570745997, + 32.87846896655899 + ], + [ + -85.50657339659612, + 33.191724020775915 + ], + [ + -85.71795108573228, + 32.87846896655899 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.71795108573228, + 32.87846896655899 + ], + [ + -85.50657339659612, + 33.191724020775915 + ], + [ + -85.92932877486844, + 33.191724020775915 + ], + [ + -85.71795108573228, + 32.87846896655899 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.71795108573228, + 32.87846896655899 + ], + [ + -85.92932877486844, + 33.191724020775915 + ], + [ + -86.1407064640046, + 32.87846896655899 + ], + [ + -85.71795108573228, + 32.87846896655899 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.71795108573228, + 32.87846896655899 + ], + [ + -86.1407064640046, + 32.87846896655899 + ], + [ + -85.92932877486844, + 32.56521391234207 + ], + [ + -85.71795108573228, + 32.87846896655899 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.71795108573228, + 32.87846896655899 + ], + [ + -85.92932877486844, + 32.56521391234207 + ], + [ + -85.50657339659612, + 32.56521391234207 + ], + [ + -85.71795108573228, + 32.87846896655899 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.71795108573228, + 32.87846896655899 + ], + [ + -85.50657339659612, + 32.56521391234207 + ], + [ + -85.29519570745997, + 32.87846896655899 + ], + [ + -85.71795108573228, + 32.87846896655899 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.71795108573228, + 33.504979074992846 + ], + [ + -85.29519570745997, + 33.504979074992846 + ], + [ + -85.50657339659612, + 33.81823412920977 + ], + [ + -85.71795108573228, + 33.504979074992846 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.71795108573228, + 33.504979074992846 + ], + [ + -85.50657339659612, + 33.81823412920977 + ], + [ + -85.92932877486844, + 33.81823412920977 + ], + [ + -85.71795108573228, + 33.504979074992846 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.71795108573228, + 33.504979074992846 + ], + [ + -85.92932877486844, + 33.81823412920977 + ], + [ + -86.1407064640046, + 33.504979074992846 + ], + [ + -85.71795108573228, + 33.504979074992846 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.71795108573228, + 33.504979074992846 + ], + [ + -86.1407064640046, + 33.504979074992846 + ], + [ + -85.92932877486844, + 33.19172402077592 + ], + [ + -85.71795108573228, + 33.504979074992846 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.71795108573228, + 33.504979074992846 + ], + [ + -85.92932877486844, + 33.19172402077592 + ], + [ + -85.50657339659612, + 33.19172402077592 + ], + [ + -85.71795108573228, + 33.504979074992846 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.71795108573228, + 33.504979074992846 + ], + [ + -85.50657339659612, + 33.19172402077592 + ], + [ + -85.29519570745997, + 33.504979074992846 + ], + [ + -85.71795108573228, + 33.504979074992846 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.71795108573228, + 34.1314891834267 + ], + [ + -85.29519570745997, + 34.1314891834267 + ], + [ + -85.50657339659612, + 34.444744237643626 + ], + [ + -85.71795108573228, + 34.1314891834267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.71795108573228, + 34.1314891834267 + ], + [ + -85.50657339659612, + 34.444744237643626 + ], + [ + -85.92932877486844, + 34.444744237643626 + ], + [ + -85.71795108573228, + 34.1314891834267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.71795108573228, + 34.1314891834267 + ], + [ + -85.92932877486844, + 34.444744237643626 + ], + [ + -86.1407064640046, + 34.1314891834267 + ], + [ + -85.71795108573228, + 34.1314891834267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.71795108573228, + 34.1314891834267 + ], + [ + -86.1407064640046, + 34.1314891834267 + ], + [ + -85.92932877486844, + 33.81823412920978 + ], + [ + -85.71795108573228, + 34.1314891834267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.71795108573228, + 34.1314891834267 + ], + [ + -85.92932877486844, + 33.81823412920978 + ], + [ + -85.50657339659612, + 33.81823412920978 + ], + [ + -85.71795108573228, + 34.1314891834267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.71795108573228, + 34.1314891834267 + ], + [ + -85.50657339659612, + 33.81823412920978 + ], + [ + -85.29519570745997, + 34.1314891834267 + ], + [ + -85.71795108573228, + 34.1314891834267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.71795108573228, + 34.75799929186056 + ], + [ + -85.29519570745997, + 34.75799929186056 + ], + [ + -85.50657339659612, + 35.07125434607748 + ], + [ + -85.71795108573228, + 34.75799929186056 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.71795108573228, + 34.75799929186056 + ], + [ + -85.50657339659612, + 35.07125434607748 + ], + [ + -85.92932877486844, + 35.07125434607748 + ], + [ + -85.71795108573228, + 34.75799929186056 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.71795108573228, + 34.75799929186056 + ], + [ + -85.92932877486844, + 35.07125434607748 + ], + [ + -86.1407064640046, + 34.75799929186056 + ], + [ + -85.71795108573228, + 34.75799929186056 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.71795108573228, + 34.75799929186056 + ], + [ + -86.1407064640046, + 34.75799929186056 + ], + [ + -85.92932877486844, + 34.44474423764363 + ], + [ + -85.71795108573228, + 34.75799929186056 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.71795108573228, + 34.75799929186056 + ], + [ + -85.92932877486844, + 34.44474423764363 + ], + [ + -85.50657339659612, + 34.44474423764363 + ], + [ + -85.71795108573228, + 34.75799929186056 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.71795108573228, + 34.75799929186056 + ], + [ + -85.50657339659612, + 34.44474423764363 + ], + [ + -85.29519570745997, + 34.75799929186056 + ], + [ + -85.71795108573228, + 34.75799929186056 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.71795108573228, + 35.38450940029441 + ], + [ + -85.29519570745997, + 35.38450940029441 + ], + [ + -85.50657339659612, + 35.697764454511336 + ], + [ + -85.71795108573228, + 35.38450940029441 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.71795108573228, + 35.38450940029441 + ], + [ + -85.50657339659612, + 35.697764454511336 + ], + [ + -85.92932877486844, + 35.697764454511336 + ], + [ + -85.71795108573228, + 35.38450940029441 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.71795108573228, + 35.38450940029441 + ], + [ + -85.92932877486844, + 35.697764454511336 + ], + [ + -86.1407064640046, + 35.38450940029441 + ], + [ + -85.71795108573228, + 35.38450940029441 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.71795108573228, + 35.38450940029441 + ], + [ + -86.1407064640046, + 35.38450940029441 + ], + [ + -85.92932877486844, + 35.07125434607749 + ], + [ + -85.71795108573228, + 35.38450940029441 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.71795108573228, + 35.38450940029441 + ], + [ + -85.92932877486844, + 35.07125434607749 + ], + [ + -85.50657339659612, + 35.07125434607749 + ], + [ + -85.71795108573228, + 35.38450940029441 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.71795108573228, + 35.38450940029441 + ], + [ + -85.50657339659612, + 35.07125434607749 + ], + [ + -85.29519570745997, + 35.38450940029441 + ], + [ + -85.71795108573228, + 35.38450940029441 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.71795108573228, + 36.01101950872826 + ], + [ + -85.29519570745997, + 36.01101950872826 + ], + [ + -85.50657339659612, + 36.324274562945185 + ], + [ + -85.71795108573228, + 36.01101950872826 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.71795108573228, + 36.01101950872826 + ], + [ + -85.50657339659612, + 36.324274562945185 + ], + [ + -85.92932877486844, + 36.324274562945185 + ], + [ + -85.71795108573228, + 36.01101950872826 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.71795108573228, + 36.01101950872826 + ], + [ + -85.92932877486844, + 36.324274562945185 + ], + [ + -86.1407064640046, + 36.01101950872826 + ], + [ + -85.71795108573228, + 36.01101950872826 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.71795108573228, + 36.01101950872826 + ], + [ + -86.1407064640046, + 36.01101950872826 + ], + [ + -85.92932877486844, + 35.697764454511336 + ], + [ + -85.71795108573228, + 36.01101950872826 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.71795108573228, + 36.01101950872826 + ], + [ + -85.92932877486844, + 35.697764454511336 + ], + [ + -85.50657339659612, + 35.697764454511336 + ], + [ + -85.71795108573228, + 36.01101950872826 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.71795108573228, + 36.01101950872826 + ], + [ + -85.50657339659612, + 35.697764454511336 + ], + [ + -85.29519570745997, + 36.01101950872826 + ], + [ + -85.71795108573228, + 36.01101950872826 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.71795108573228, + 36.637529617162116 + ], + [ + -85.29519570745997, + 36.637529617162116 + ], + [ + -85.50657339659612, + 36.95078467137904 + ], + [ + -85.71795108573228, + 36.637529617162116 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.71795108573228, + 36.637529617162116 + ], + [ + -85.50657339659612, + 36.95078467137904 + ], + [ + -85.92932877486844, + 36.95078467137904 + ], + [ + -85.71795108573228, + 36.637529617162116 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.71795108573228, + 36.637529617162116 + ], + [ + -85.92932877486844, + 36.95078467137904 + ], + [ + -86.1407064640046, + 36.637529617162116 + ], + [ + -85.71795108573228, + 36.637529617162116 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.71795108573228, + 36.637529617162116 + ], + [ + -86.1407064640046, + 36.637529617162116 + ], + [ + -85.92932877486844, + 36.32427456294519 + ], + [ + -85.71795108573228, + 36.637529617162116 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.71795108573228, + 36.637529617162116 + ], + [ + -85.92932877486844, + 36.32427456294519 + ], + [ + -85.50657339659612, + 36.32427456294519 + ], + [ + -85.71795108573228, + 36.637529617162116 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.71795108573228, + 36.637529617162116 + ], + [ + -85.50657339659612, + 36.32427456294519 + ], + [ + -85.29519570745997, + 36.637529617162116 + ], + [ + -85.71795108573228, + 36.637529617162116 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.71795108573228, + 37.26403972559597 + ], + [ + -85.29519570745997, + 37.26403972559597 + ], + [ + -85.50657339659612, + 37.577294779812895 + ], + [ + -85.71795108573228, + 37.26403972559597 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.71795108573228, + 37.26403972559597 + ], + [ + -85.50657339659612, + 37.577294779812895 + ], + [ + -85.92932877486844, + 37.577294779812895 + ], + [ + -85.71795108573228, + 37.26403972559597 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.71795108573228, + 37.26403972559597 + ], + [ + -85.92932877486844, + 37.577294779812895 + ], + [ + -86.1407064640046, + 37.26403972559597 + ], + [ + -85.71795108573228, + 37.26403972559597 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.71795108573228, + 37.26403972559597 + ], + [ + -86.1407064640046, + 37.26403972559597 + ], + [ + -85.92932877486844, + 36.95078467137905 + ], + [ + -85.71795108573228, + 37.26403972559597 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.71795108573228, + 37.26403972559597 + ], + [ + -85.92932877486844, + 36.95078467137905 + ], + [ + -85.50657339659612, + 36.95078467137905 + ], + [ + -85.71795108573228, + 37.26403972559597 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.71795108573228, + 37.26403972559597 + ], + [ + -85.50657339659612, + 36.95078467137905 + ], + [ + -85.29519570745997, + 37.26403972559597 + ], + [ + -85.71795108573228, + 37.26403972559597 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.71795108573228, + 37.89054983402983 + ], + [ + -85.29519570745997, + 37.89054983402983 + ], + [ + -85.50657339659612, + 38.20380488824675 + ], + [ + -85.71795108573228, + 37.89054983402983 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.71795108573228, + 37.89054983402983 + ], + [ + -85.50657339659612, + 38.20380488824675 + ], + [ + -85.92932877486844, + 38.20380488824675 + ], + [ + -85.71795108573228, + 37.89054983402983 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.71795108573228, + 37.89054983402983 + ], + [ + -85.92932877486844, + 38.20380488824675 + ], + [ + -86.1407064640046, + 37.89054983402983 + ], + [ + -85.71795108573228, + 37.89054983402983 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.71795108573228, + 37.89054983402983 + ], + [ + -86.1407064640046, + 37.89054983402983 + ], + [ + -85.92932877486844, + 37.5772947798129 + ], + [ + -85.71795108573228, + 37.89054983402983 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.71795108573228, + 37.89054983402983 + ], + [ + -85.92932877486844, + 37.5772947798129 + ], + [ + -85.50657339659612, + 37.5772947798129 + ], + [ + -85.71795108573228, + 37.89054983402983 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.71795108573228, + 37.89054983402983 + ], + [ + -85.50657339659612, + 37.5772947798129 + ], + [ + -85.29519570745997, + 37.89054983402983 + ], + [ + -85.71795108573228, + 37.89054983402983 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.71795108573228, + 38.51705994246368 + ], + [ + -85.29519570745997, + 38.51705994246368 + ], + [ + -85.50657339659612, + 38.830314996680606 + ], + [ + -85.71795108573228, + 38.51705994246368 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.71795108573228, + 38.51705994246368 + ], + [ + -85.50657339659612, + 38.830314996680606 + ], + [ + -85.92932877486844, + 38.830314996680606 + ], + [ + -85.71795108573228, + 38.51705994246368 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.71795108573228, + 38.51705994246368 + ], + [ + -85.92932877486844, + 38.830314996680606 + ], + [ + -86.1407064640046, + 38.51705994246368 + ], + [ + -85.71795108573228, + 38.51705994246368 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.71795108573228, + 38.51705994246368 + ], + [ + -86.1407064640046, + 38.51705994246368 + ], + [ + -85.92932877486844, + 38.20380488824676 + ], + [ + -85.71795108573228, + 38.51705994246368 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.71795108573228, + 38.51705994246368 + ], + [ + -85.92932877486844, + 38.20380488824676 + ], + [ + -85.50657339659612, + 38.20380488824676 + ], + [ + -85.71795108573228, + 38.51705994246368 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.71795108573228, + 38.51705994246368 + ], + [ + -85.50657339659612, + 38.20380488824676 + ], + [ + -85.29519570745997, + 38.51705994246368 + ], + [ + -85.71795108573228, + 38.51705994246368 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.71795108573228, + 39.14357005089754 + ], + [ + -85.29519570745997, + 39.14357005089754 + ], + [ + -85.50657339659612, + 39.45682510511446 + ], + [ + -85.71795108573228, + 39.14357005089754 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.71795108573228, + 39.14357005089754 + ], + [ + -85.50657339659612, + 39.45682510511446 + ], + [ + -85.92932877486844, + 39.45682510511446 + ], + [ + -85.71795108573228, + 39.14357005089754 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.71795108573228, + 39.14357005089754 + ], + [ + -85.92932877486844, + 39.45682510511446 + ], + [ + -86.1407064640046, + 39.14357005089754 + ], + [ + -85.71795108573228, + 39.14357005089754 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.71795108573228, + 39.14357005089754 + ], + [ + -86.1407064640046, + 39.14357005089754 + ], + [ + -85.92932877486844, + 38.83031499668061 + ], + [ + -85.71795108573228, + 39.14357005089754 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.71795108573228, + 39.14357005089754 + ], + [ + -85.92932877486844, + 38.83031499668061 + ], + [ + -85.50657339659612, + 38.83031499668061 + ], + [ + -85.71795108573228, + 39.14357005089754 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.71795108573228, + 39.14357005089754 + ], + [ + -85.50657339659612, + 38.83031499668061 + ], + [ + -85.29519570745997, + 39.14357005089754 + ], + [ + -85.71795108573228, + 39.14357005089754 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.71795108573228, + 39.77008015933139 + ], + [ + -85.29519570745997, + 39.77008015933139 + ], + [ + -85.50657339659612, + 40.08333521354832 + ], + [ + -85.71795108573228, + 39.77008015933139 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.71795108573228, + 39.77008015933139 + ], + [ + -85.50657339659612, + 40.08333521354832 + ], + [ + -85.92932877486844, + 40.08333521354832 + ], + [ + -85.71795108573228, + 39.77008015933139 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.71795108573228, + 39.77008015933139 + ], + [ + -85.92932877486844, + 40.08333521354832 + ], + [ + -86.1407064640046, + 39.77008015933139 + ], + [ + -85.71795108573228, + 39.77008015933139 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.71795108573228, + 39.77008015933139 + ], + [ + -86.1407064640046, + 39.77008015933139 + ], + [ + -85.92932877486844, + 39.45682510511447 + ], + [ + -85.71795108573228, + 39.77008015933139 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.71795108573228, + 39.77008015933139 + ], + [ + -85.92932877486844, + 39.45682510511447 + ], + [ + -85.50657339659612, + 39.45682510511447 + ], + [ + -85.71795108573228, + 39.77008015933139 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.71795108573228, + 39.77008015933139 + ], + [ + -85.50657339659612, + 39.45682510511447 + ], + [ + -85.29519570745997, + 39.77008015933139 + ], + [ + -85.71795108573228, + 39.77008015933139 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.71795108573228, + 40.39659026776525 + ], + [ + -85.29519570745997, + 40.39659026776525 + ], + [ + -85.50657339659612, + 40.70984532198217 + ], + [ + -85.71795108573228, + 40.39659026776525 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.71795108573228, + 40.39659026776525 + ], + [ + -85.50657339659612, + 40.70984532198217 + ], + [ + -85.92932877486844, + 40.70984532198217 + ], + [ + -85.71795108573228, + 40.39659026776525 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.71795108573228, + 40.39659026776525 + ], + [ + -85.92932877486844, + 40.70984532198217 + ], + [ + -86.1407064640046, + 40.39659026776525 + ], + [ + -85.71795108573228, + 40.39659026776525 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.71795108573228, + 40.39659026776525 + ], + [ + -86.1407064640046, + 40.39659026776525 + ], + [ + -85.92932877486844, + 40.083335213548324 + ], + [ + -85.71795108573228, + 40.39659026776525 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.71795108573228, + 40.39659026776525 + ], + [ + -85.92932877486844, + 40.083335213548324 + ], + [ + -85.50657339659612, + 40.083335213548324 + ], + [ + -85.71795108573228, + 40.39659026776525 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.71795108573228, + 40.39659026776525 + ], + [ + -85.50657339659612, + 40.083335213548324 + ], + [ + -85.29519570745997, + 40.39659026776525 + ], + [ + -85.71795108573228, + 40.39659026776525 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.08381801832381, + 31.312193695474356 + ], + [ + -84.6610626400515, + 31.312193695474356 + ], + [ + -84.87244032918765, + 31.625448749691284 + ], + [ + -85.08381801832381, + 31.312193695474356 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.08381801832381, + 31.312193695474356 + ], + [ + -84.87244032918765, + 31.625448749691284 + ], + [ + -85.29519570745997, + 31.625448749691284 + ], + [ + -85.08381801832381, + 31.312193695474356 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.08381801832381, + 31.312193695474356 + ], + [ + -85.29519570745997, + 31.625448749691284 + ], + [ + -85.50657339659612, + 31.312193695474356 + ], + [ + -85.08381801832381, + 31.312193695474356 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.08381801832381, + 31.312193695474356 + ], + [ + -85.50657339659612, + 31.312193695474356 + ], + [ + -85.29519570745997, + 30.99893864125743 + ], + [ + -85.08381801832381, + 31.312193695474356 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.08381801832381, + 31.312193695474356 + ], + [ + -85.29519570745997, + 30.99893864125743 + ], + [ + -84.87244032918765, + 30.99893864125743 + ], + [ + -85.08381801832381, + 31.312193695474356 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.08381801832381, + 31.312193695474356 + ], + [ + -84.87244032918765, + 30.99893864125743 + ], + [ + -84.6610626400515, + 31.312193695474356 + ], + [ + -85.08381801832381, + 31.312193695474356 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.08381801832381, + 31.938703803908208 + ], + [ + -84.6610626400515, + 31.938703803908208 + ], + [ + -84.87244032918765, + 32.251958858125136 + ], + [ + -85.08381801832381, + 31.938703803908208 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.08381801832381, + 31.938703803908208 + ], + [ + -84.87244032918765, + 32.251958858125136 + ], + [ + -85.29519570745997, + 32.251958858125136 + ], + [ + -85.08381801832381, + 31.938703803908208 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.08381801832381, + 31.938703803908208 + ], + [ + -85.29519570745997, + 32.251958858125136 + ], + [ + -85.50657339659612, + 31.938703803908208 + ], + [ + -85.08381801832381, + 31.938703803908208 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.08381801832381, + 31.938703803908208 + ], + [ + -85.50657339659612, + 31.938703803908208 + ], + [ + -85.29519570745997, + 31.62544874969128 + ], + [ + -85.08381801832381, + 31.938703803908208 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.08381801832381, + 31.938703803908208 + ], + [ + -85.29519570745997, + 31.62544874969128 + ], + [ + -84.87244032918765, + 31.62544874969128 + ], + [ + -85.08381801832381, + 31.938703803908208 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.08381801832381, + 31.938703803908208 + ], + [ + -84.87244032918765, + 31.62544874969128 + ], + [ + -84.6610626400515, + 31.938703803908208 + ], + [ + -85.08381801832381, + 31.938703803908208 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.08381801832381, + 32.56521391234206 + ], + [ + -84.6610626400515, + 32.56521391234206 + ], + [ + -84.87244032918765, + 32.878468966558984 + ], + [ + -85.08381801832381, + 32.56521391234206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.08381801832381, + 32.56521391234206 + ], + [ + -84.87244032918765, + 32.878468966558984 + ], + [ + -85.29519570745997, + 32.878468966558984 + ], + [ + -85.08381801832381, + 32.56521391234206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.08381801832381, + 32.56521391234206 + ], + [ + -85.29519570745997, + 32.878468966558984 + ], + [ + -85.50657339659612, + 32.56521391234206 + ], + [ + -85.08381801832381, + 32.56521391234206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.08381801832381, + 32.56521391234206 + ], + [ + -85.50657339659612, + 32.56521391234206 + ], + [ + -85.29519570745997, + 32.251958858125136 + ], + [ + -85.08381801832381, + 32.56521391234206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.08381801832381, + 32.56521391234206 + ], + [ + -85.29519570745997, + 32.251958858125136 + ], + [ + -84.87244032918765, + 32.251958858125136 + ], + [ + -85.08381801832381, + 32.56521391234206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.08381801832381, + 32.56521391234206 + ], + [ + -84.87244032918765, + 32.251958858125136 + ], + [ + -84.6610626400515, + 32.56521391234206 + ], + [ + -85.08381801832381, + 32.56521391234206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.08381801832381, + 33.191724020775915 + ], + [ + -84.6610626400515, + 33.191724020775915 + ], + [ + -84.87244032918765, + 33.50497907499284 + ], + [ + -85.08381801832381, + 33.191724020775915 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.08381801832381, + 33.191724020775915 + ], + [ + -84.87244032918765, + 33.50497907499284 + ], + [ + -85.29519570745997, + 33.50497907499284 + ], + [ + -85.08381801832381, + 33.191724020775915 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.08381801832381, + 33.191724020775915 + ], + [ + -85.29519570745997, + 33.50497907499284 + ], + [ + -85.50657339659612, + 33.191724020775915 + ], + [ + -85.08381801832381, + 33.191724020775915 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.08381801832381, + 33.191724020775915 + ], + [ + -85.50657339659612, + 33.191724020775915 + ], + [ + -85.29519570745997, + 32.87846896655899 + ], + [ + -85.08381801832381, + 33.191724020775915 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.08381801832381, + 33.191724020775915 + ], + [ + -85.29519570745997, + 32.87846896655899 + ], + [ + -84.87244032918765, + 32.87846896655899 + ], + [ + -85.08381801832381, + 33.191724020775915 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.08381801832381, + 33.191724020775915 + ], + [ + -84.87244032918765, + 32.87846896655899 + ], + [ + -84.6610626400515, + 33.191724020775915 + ], + [ + -85.08381801832381, + 33.191724020775915 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.08381801832381, + 33.81823412920977 + ], + [ + -84.6610626400515, + 33.81823412920977 + ], + [ + -84.87244032918765, + 34.131489183426694 + ], + [ + -85.08381801832381, + 33.81823412920977 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.08381801832381, + 33.81823412920977 + ], + [ + -84.87244032918765, + 34.131489183426694 + ], + [ + -85.29519570745997, + 34.131489183426694 + ], + [ + -85.08381801832381, + 33.81823412920977 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.08381801832381, + 33.81823412920977 + ], + [ + -85.29519570745997, + 34.131489183426694 + ], + [ + -85.50657339659612, + 33.81823412920977 + ], + [ + -85.08381801832381, + 33.81823412920977 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.08381801832381, + 33.81823412920977 + ], + [ + -85.50657339659612, + 33.81823412920977 + ], + [ + -85.29519570745997, + 33.504979074992846 + ], + [ + -85.08381801832381, + 33.81823412920977 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.08381801832381, + 33.81823412920977 + ], + [ + -85.29519570745997, + 33.504979074992846 + ], + [ + -84.87244032918765, + 33.504979074992846 + ], + [ + -85.08381801832381, + 33.81823412920977 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.08381801832381, + 33.81823412920977 + ], + [ + -84.87244032918765, + 33.504979074992846 + ], + [ + -84.6610626400515, + 33.81823412920977 + ], + [ + -85.08381801832381, + 33.81823412920977 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.08381801832381, + 34.444744237643626 + ], + [ + -84.6610626400515, + 34.444744237643626 + ], + [ + -84.87244032918765, + 34.75799929186055 + ], + [ + -85.08381801832381, + 34.444744237643626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.08381801832381, + 34.444744237643626 + ], + [ + -84.87244032918765, + 34.75799929186055 + ], + [ + -85.29519570745997, + 34.75799929186055 + ], + [ + -85.08381801832381, + 34.444744237643626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.08381801832381, + 34.444744237643626 + ], + [ + -85.29519570745997, + 34.75799929186055 + ], + [ + -85.50657339659612, + 34.444744237643626 + ], + [ + -85.08381801832381, + 34.444744237643626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.08381801832381, + 34.444744237643626 + ], + [ + -85.50657339659612, + 34.444744237643626 + ], + [ + -85.29519570745997, + 34.1314891834267 + ], + [ + -85.08381801832381, + 34.444744237643626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.08381801832381, + 34.444744237643626 + ], + [ + -85.29519570745997, + 34.1314891834267 + ], + [ + -84.87244032918765, + 34.1314891834267 + ], + [ + -85.08381801832381, + 34.444744237643626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.08381801832381, + 34.444744237643626 + ], + [ + -84.87244032918765, + 34.1314891834267 + ], + [ + -84.6610626400515, + 34.444744237643626 + ], + [ + -85.08381801832381, + 34.444744237643626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.08381801832381, + 35.07125434607748 + ], + [ + -84.6610626400515, + 35.07125434607748 + ], + [ + -84.87244032918765, + 35.384509400294405 + ], + [ + -85.08381801832381, + 35.07125434607748 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.08381801832381, + 35.07125434607748 + ], + [ + -84.87244032918765, + 35.384509400294405 + ], + [ + -85.29519570745997, + 35.384509400294405 + ], + [ + -85.08381801832381, + 35.07125434607748 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.08381801832381, + 35.07125434607748 + ], + [ + -85.29519570745997, + 35.384509400294405 + ], + [ + -85.50657339659612, + 35.07125434607748 + ], + [ + -85.08381801832381, + 35.07125434607748 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.08381801832381, + 35.07125434607748 + ], + [ + -85.50657339659612, + 35.07125434607748 + ], + [ + -85.29519570745997, + 34.75799929186056 + ], + [ + -85.08381801832381, + 35.07125434607748 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.08381801832381, + 35.07125434607748 + ], + [ + -85.29519570745997, + 34.75799929186056 + ], + [ + -84.87244032918765, + 34.75799929186056 + ], + [ + -85.08381801832381, + 35.07125434607748 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.08381801832381, + 35.07125434607748 + ], + [ + -84.87244032918765, + 34.75799929186056 + ], + [ + -84.6610626400515, + 35.07125434607748 + ], + [ + -85.08381801832381, + 35.07125434607748 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.08381801832381, + 35.697764454511336 + ], + [ + -84.6610626400515, + 35.697764454511336 + ], + [ + -84.87244032918765, + 36.01101950872826 + ], + [ + -85.08381801832381, + 35.697764454511336 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.08381801832381, + 35.697764454511336 + ], + [ + -84.87244032918765, + 36.01101950872826 + ], + [ + -85.29519570745997, + 36.01101950872826 + ], + [ + -85.08381801832381, + 35.697764454511336 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.08381801832381, + 35.697764454511336 + ], + [ + -85.29519570745997, + 36.01101950872826 + ], + [ + -85.50657339659612, + 35.697764454511336 + ], + [ + -85.08381801832381, + 35.697764454511336 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.08381801832381, + 35.697764454511336 + ], + [ + -85.50657339659612, + 35.697764454511336 + ], + [ + -85.29519570745997, + 35.38450940029441 + ], + [ + -85.08381801832381, + 35.697764454511336 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.08381801832381, + 35.697764454511336 + ], + [ + -85.29519570745997, + 35.38450940029441 + ], + [ + -84.87244032918765, + 35.38450940029441 + ], + [ + -85.08381801832381, + 35.697764454511336 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.08381801832381, + 35.697764454511336 + ], + [ + -84.87244032918765, + 35.38450940029441 + ], + [ + -84.6610626400515, + 35.697764454511336 + ], + [ + -85.08381801832381, + 35.697764454511336 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.08381801832381, + 36.324274562945185 + ], + [ + -84.6610626400515, + 36.324274562945185 + ], + [ + -84.87244032918765, + 36.63752961716211 + ], + [ + -85.08381801832381, + 36.324274562945185 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.08381801832381, + 36.324274562945185 + ], + [ + -84.87244032918765, + 36.63752961716211 + ], + [ + -85.29519570745997, + 36.63752961716211 + ], + [ + -85.08381801832381, + 36.324274562945185 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.08381801832381, + 36.324274562945185 + ], + [ + -85.29519570745997, + 36.63752961716211 + ], + [ + -85.50657339659612, + 36.324274562945185 + ], + [ + -85.08381801832381, + 36.324274562945185 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.08381801832381, + 36.324274562945185 + ], + [ + -85.50657339659612, + 36.324274562945185 + ], + [ + -85.29519570745997, + 36.01101950872826 + ], + [ + -85.08381801832381, + 36.324274562945185 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.08381801832381, + 36.324274562945185 + ], + [ + -85.29519570745997, + 36.01101950872826 + ], + [ + -84.87244032918765, + 36.01101950872826 + ], + [ + -85.08381801832381, + 36.324274562945185 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.08381801832381, + 36.324274562945185 + ], + [ + -84.87244032918765, + 36.01101950872826 + ], + [ + -84.6610626400515, + 36.324274562945185 + ], + [ + -85.08381801832381, + 36.324274562945185 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.08381801832381, + 36.95078467137904 + ], + [ + -84.6610626400515, + 36.95078467137904 + ], + [ + -84.87244032918765, + 37.264039725595964 + ], + [ + -85.08381801832381, + 36.95078467137904 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.08381801832381, + 36.95078467137904 + ], + [ + -84.87244032918765, + 37.264039725595964 + ], + [ + -85.29519570745997, + 37.264039725595964 + ], + [ + -85.08381801832381, + 36.95078467137904 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.08381801832381, + 36.95078467137904 + ], + [ + -85.29519570745997, + 37.264039725595964 + ], + [ + -85.50657339659612, + 36.95078467137904 + ], + [ + -85.08381801832381, + 36.95078467137904 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.08381801832381, + 36.95078467137904 + ], + [ + -85.50657339659612, + 36.95078467137904 + ], + [ + -85.29519570745997, + 36.637529617162116 + ], + [ + -85.08381801832381, + 36.95078467137904 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.08381801832381, + 36.95078467137904 + ], + [ + -85.29519570745997, + 36.637529617162116 + ], + [ + -84.87244032918765, + 36.637529617162116 + ], + [ + -85.08381801832381, + 36.95078467137904 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.08381801832381, + 36.95078467137904 + ], + [ + -84.87244032918765, + 36.637529617162116 + ], + [ + -84.6610626400515, + 36.95078467137904 + ], + [ + -85.08381801832381, + 36.95078467137904 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.08381801832381, + 37.577294779812895 + ], + [ + -84.6610626400515, + 37.577294779812895 + ], + [ + -84.87244032918765, + 37.89054983402982 + ], + [ + -85.08381801832381, + 37.577294779812895 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.08381801832381, + 37.577294779812895 + ], + [ + -84.87244032918765, + 37.89054983402982 + ], + [ + -85.29519570745997, + 37.89054983402982 + ], + [ + -85.08381801832381, + 37.577294779812895 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.08381801832381, + 37.577294779812895 + ], + [ + -85.29519570745997, + 37.89054983402982 + ], + [ + -85.50657339659612, + 37.577294779812895 + ], + [ + -85.08381801832381, + 37.577294779812895 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.08381801832381, + 37.577294779812895 + ], + [ + -85.50657339659612, + 37.577294779812895 + ], + [ + -85.29519570745997, + 37.26403972559597 + ], + [ + -85.08381801832381, + 37.577294779812895 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.08381801832381, + 37.577294779812895 + ], + [ + -85.29519570745997, + 37.26403972559597 + ], + [ + -84.87244032918765, + 37.26403972559597 + ], + [ + -85.08381801832381, + 37.577294779812895 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.08381801832381, + 37.577294779812895 + ], + [ + -84.87244032918765, + 37.26403972559597 + ], + [ + -84.6610626400515, + 37.577294779812895 + ], + [ + -85.08381801832381, + 37.577294779812895 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.08381801832381, + 38.20380488824675 + ], + [ + -84.6610626400515, + 38.20380488824675 + ], + [ + -84.87244032918765, + 38.517059942463675 + ], + [ + -85.08381801832381, + 38.20380488824675 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.08381801832381, + 38.20380488824675 + ], + [ + -84.87244032918765, + 38.517059942463675 + ], + [ + -85.29519570745997, + 38.517059942463675 + ], + [ + -85.08381801832381, + 38.20380488824675 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.08381801832381, + 38.20380488824675 + ], + [ + -85.29519570745997, + 38.517059942463675 + ], + [ + -85.50657339659612, + 38.20380488824675 + ], + [ + -85.08381801832381, + 38.20380488824675 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.08381801832381, + 38.20380488824675 + ], + [ + -85.50657339659612, + 38.20380488824675 + ], + [ + -85.29519570745997, + 37.89054983402983 + ], + [ + -85.08381801832381, + 38.20380488824675 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.08381801832381, + 38.20380488824675 + ], + [ + -85.29519570745997, + 37.89054983402983 + ], + [ + -84.87244032918765, + 37.89054983402983 + ], + [ + -85.08381801832381, + 38.20380488824675 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.08381801832381, + 38.20380488824675 + ], + [ + -84.87244032918765, + 37.89054983402983 + ], + [ + -84.6610626400515, + 38.20380488824675 + ], + [ + -85.08381801832381, + 38.20380488824675 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.08381801832381, + 38.830314996680606 + ], + [ + -84.6610626400515, + 38.830314996680606 + ], + [ + -84.87244032918765, + 39.14357005089753 + ], + [ + -85.08381801832381, + 38.830314996680606 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.08381801832381, + 38.830314996680606 + ], + [ + -84.87244032918765, + 39.14357005089753 + ], + [ + -85.29519570745997, + 39.14357005089753 + ], + [ + -85.08381801832381, + 38.830314996680606 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.08381801832381, + 38.830314996680606 + ], + [ + -85.29519570745997, + 39.14357005089753 + ], + [ + -85.50657339659612, + 38.830314996680606 + ], + [ + -85.08381801832381, + 38.830314996680606 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.08381801832381, + 38.830314996680606 + ], + [ + -85.50657339659612, + 38.830314996680606 + ], + [ + -85.29519570745997, + 38.51705994246368 + ], + [ + -85.08381801832381, + 38.830314996680606 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.08381801832381, + 38.830314996680606 + ], + [ + -85.29519570745997, + 38.51705994246368 + ], + [ + -84.87244032918765, + 38.51705994246368 + ], + [ + -85.08381801832381, + 38.830314996680606 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.08381801832381, + 38.830314996680606 + ], + [ + -84.87244032918765, + 38.51705994246368 + ], + [ + -84.6610626400515, + 38.830314996680606 + ], + [ + -85.08381801832381, + 38.830314996680606 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.08381801832381, + 39.45682510511446 + ], + [ + -84.6610626400515, + 39.45682510511446 + ], + [ + -84.87244032918765, + 39.770080159331386 + ], + [ + -85.08381801832381, + 39.45682510511446 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.08381801832381, + 39.45682510511446 + ], + [ + -84.87244032918765, + 39.770080159331386 + ], + [ + -85.29519570745997, + 39.770080159331386 + ], + [ + -85.08381801832381, + 39.45682510511446 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.08381801832381, + 39.45682510511446 + ], + [ + -85.29519570745997, + 39.770080159331386 + ], + [ + -85.50657339659612, + 39.45682510511446 + ], + [ + -85.08381801832381, + 39.45682510511446 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.08381801832381, + 39.45682510511446 + ], + [ + -85.50657339659612, + 39.45682510511446 + ], + [ + -85.29519570745997, + 39.14357005089754 + ], + [ + -85.08381801832381, + 39.45682510511446 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.08381801832381, + 39.45682510511446 + ], + [ + -85.29519570745997, + 39.14357005089754 + ], + [ + -84.87244032918765, + 39.14357005089754 + ], + [ + -85.08381801832381, + 39.45682510511446 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.08381801832381, + 39.45682510511446 + ], + [ + -84.87244032918765, + 39.14357005089754 + ], + [ + -84.6610626400515, + 39.45682510511446 + ], + [ + -85.08381801832381, + 39.45682510511446 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.08381801832381, + 40.08333521354832 + ], + [ + -84.6610626400515, + 40.08333521354832 + ], + [ + -84.87244032918765, + 40.39659026776524 + ], + [ + -85.08381801832381, + 40.08333521354832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.08381801832381, + 40.08333521354832 + ], + [ + -84.87244032918765, + 40.39659026776524 + ], + [ + -85.29519570745997, + 40.39659026776524 + ], + [ + -85.08381801832381, + 40.08333521354832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.08381801832381, + 40.08333521354832 + ], + [ + -85.29519570745997, + 40.39659026776524 + ], + [ + -85.50657339659612, + 40.08333521354832 + ], + [ + -85.08381801832381, + 40.08333521354832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.08381801832381, + 40.08333521354832 + ], + [ + -85.50657339659612, + 40.08333521354832 + ], + [ + -85.29519570745997, + 39.77008015933139 + ], + [ + -85.08381801832381, + 40.08333521354832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.08381801832381, + 40.08333521354832 + ], + [ + -85.29519570745997, + 39.77008015933139 + ], + [ + -84.87244032918765, + 39.77008015933139 + ], + [ + -85.08381801832381, + 40.08333521354832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.08381801832381, + 40.08333521354832 + ], + [ + -84.87244032918765, + 39.77008015933139 + ], + [ + -84.6610626400515, + 40.08333521354832 + ], + [ + -85.08381801832381, + 40.08333521354832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.08381801832381, + 40.70984532198217 + ], + [ + -84.6610626400515, + 40.70984532198217 + ], + [ + -84.87244032918765, + 41.023100376199096 + ], + [ + -85.08381801832381, + 40.70984532198217 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.08381801832381, + 40.70984532198217 + ], + [ + -84.87244032918765, + 41.023100376199096 + ], + [ + -85.29519570745997, + 41.023100376199096 + ], + [ + -85.08381801832381, + 40.70984532198217 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.08381801832381, + 40.70984532198217 + ], + [ + -85.29519570745997, + 41.023100376199096 + ], + [ + -85.50657339659612, + 40.70984532198217 + ], + [ + -85.08381801832381, + 40.70984532198217 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.08381801832381, + 40.70984532198217 + ], + [ + -85.50657339659612, + 40.70984532198217 + ], + [ + -85.29519570745997, + 40.39659026776525 + ], + [ + -85.08381801832381, + 40.70984532198217 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.08381801832381, + 40.70984532198217 + ], + [ + -85.29519570745997, + 40.39659026776525 + ], + [ + -84.87244032918765, + 40.39659026776525 + ], + [ + -85.08381801832381, + 40.70984532198217 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.08381801832381, + 40.70984532198217 + ], + [ + -84.87244032918765, + 40.39659026776525 + ], + [ + -84.6610626400515, + 40.70984532198217 + ], + [ + -85.08381801832381, + 40.70984532198217 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "fill-opacity": 0, + "stroke": "#0ff" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.6357421875, + 31.12819929911196 + ], + [ + -84.9462890625, + 31.12819929911196 + ], + [ + -84.9462890625, + 40.58058466412764 + ], + [ + -96.6357421875, + 40.58058466412764 + ], + [ + -96.6357421875, + 31.12819929911196 + ] + ] + ] + } + } + ] +} \ No newline at end of file diff --git a/packages/turf-hex-grid/test/out/trigrid2.geojson b/packages/turf-hex-grid/test/out/trigrid2.geojson new file mode 100644 index 0000000000..c92dae4098 --- /dev/null +++ b/packages/turf-hex-grid/test/out/trigrid2.geojson @@ -0,0 +1,125589 @@ +{ + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.64697639280223, + 24.942612038041236 + ], + [ + -81.60708907395546, + 24.942612038041236 + ], + [ + -81.62703273337885, + 24.973937543462927 + ], + [ + -81.64697639280223, + 24.942612038041236 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.64697639280223, + 24.942612038041236 + ], + [ + -81.62703273337885, + 24.973937543462927 + ], + [ + -81.6669200522256, + 24.973937543462927 + ], + [ + -81.64697639280223, + 24.942612038041236 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.64697639280223, + 24.942612038041236 + ], + [ + -81.6669200522256, + 24.973937543462927 + ], + [ + -81.686863711649, + 24.942612038041236 + ], + [ + -81.64697639280223, + 24.942612038041236 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.64697639280223, + 24.942612038041236 + ], + [ + -81.686863711649, + 24.942612038041236 + ], + [ + -81.6669200522256, + 24.911286532619545 + ], + [ + -81.64697639280223, + 24.942612038041236 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.64697639280223, + 24.942612038041236 + ], + [ + -81.6669200522256, + 24.911286532619545 + ], + [ + -81.62703273337885, + 24.911286532619545 + ], + [ + -81.64697639280223, + 24.942612038041236 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.64697639280223, + 24.942612038041236 + ], + [ + -81.62703273337885, + 24.911286532619545 + ], + [ + -81.60708907395546, + 24.942612038041236 + ], + [ + -81.64697639280223, + 24.942612038041236 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.64697639280223, + 25.005263048884622 + ], + [ + -81.60708907395546, + 25.005263048884622 + ], + [ + -81.62703273337885, + 25.036588554306313 + ], + [ + -81.64697639280223, + 25.005263048884622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.64697639280223, + 25.005263048884622 + ], + [ + -81.62703273337885, + 25.036588554306313 + ], + [ + -81.6669200522256, + 25.036588554306313 + ], + [ + -81.64697639280223, + 25.005263048884622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.64697639280223, + 25.005263048884622 + ], + [ + -81.6669200522256, + 25.036588554306313 + ], + [ + -81.686863711649, + 25.005263048884622 + ], + [ + -81.64697639280223, + 25.005263048884622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.64697639280223, + 25.005263048884622 + ], + [ + -81.686863711649, + 25.005263048884622 + ], + [ + -81.6669200522256, + 24.97393754346293 + ], + [ + -81.64697639280223, + 25.005263048884622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.64697639280223, + 25.005263048884622 + ], + [ + -81.6669200522256, + 24.97393754346293 + ], + [ + -81.62703273337885, + 24.97393754346293 + ], + [ + -81.64697639280223, + 25.005263048884622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.64697639280223, + 25.005263048884622 + ], + [ + -81.62703273337885, + 24.97393754346293 + ], + [ + -81.60708907395546, + 25.005263048884622 + ], + [ + -81.64697639280223, + 25.005263048884622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.64697639280223, + 25.067914059728007 + ], + [ + -81.60708907395546, + 25.067914059728007 + ], + [ + -81.62703273337885, + 25.0992395651497 + ], + [ + -81.64697639280223, + 25.067914059728007 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.64697639280223, + 25.067914059728007 + ], + [ + -81.62703273337885, + 25.0992395651497 + ], + [ + -81.6669200522256, + 25.0992395651497 + ], + [ + -81.64697639280223, + 25.067914059728007 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.64697639280223, + 25.067914059728007 + ], + [ + -81.6669200522256, + 25.0992395651497 + ], + [ + -81.686863711649, + 25.067914059728007 + ], + [ + -81.64697639280223, + 25.067914059728007 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.64697639280223, + 25.067914059728007 + ], + [ + -81.686863711649, + 25.067914059728007 + ], + [ + -81.6669200522256, + 25.036588554306316 + ], + [ + -81.64697639280223, + 25.067914059728007 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.64697639280223, + 25.067914059728007 + ], + [ + -81.6669200522256, + 25.036588554306316 + ], + [ + -81.62703273337885, + 25.036588554306316 + ], + [ + -81.64697639280223, + 25.067914059728007 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.64697639280223, + 25.067914059728007 + ], + [ + -81.62703273337885, + 25.036588554306316 + ], + [ + -81.60708907395546, + 25.067914059728007 + ], + [ + -81.64697639280223, + 25.067914059728007 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.64697639280223, + 25.130565070571393 + ], + [ + -81.60708907395546, + 25.130565070571393 + ], + [ + -81.62703273337885, + 25.161890575993084 + ], + [ + -81.64697639280223, + 25.130565070571393 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.64697639280223, + 25.130565070571393 + ], + [ + -81.62703273337885, + 25.161890575993084 + ], + [ + -81.6669200522256, + 25.161890575993084 + ], + [ + -81.64697639280223, + 25.130565070571393 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.64697639280223, + 25.130565070571393 + ], + [ + -81.6669200522256, + 25.161890575993084 + ], + [ + -81.686863711649, + 25.130565070571393 + ], + [ + -81.64697639280223, + 25.130565070571393 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.64697639280223, + 25.130565070571393 + ], + [ + -81.686863711649, + 25.130565070571393 + ], + [ + -81.6669200522256, + 25.099239565149702 + ], + [ + -81.64697639280223, + 25.130565070571393 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.64697639280223, + 25.130565070571393 + ], + [ + -81.6669200522256, + 25.099239565149702 + ], + [ + -81.62703273337885, + 25.099239565149702 + ], + [ + -81.64697639280223, + 25.130565070571393 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.64697639280223, + 25.130565070571393 + ], + [ + -81.62703273337885, + 25.099239565149702 + ], + [ + -81.60708907395546, + 25.130565070571393 + ], + [ + -81.64697639280223, + 25.130565070571393 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.64697639280223, + 25.19321608141478 + ], + [ + -81.60708907395546, + 25.19321608141478 + ], + [ + -81.62703273337885, + 25.22454158683647 + ], + [ + -81.64697639280223, + 25.19321608141478 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.64697639280223, + 25.19321608141478 + ], + [ + -81.62703273337885, + 25.22454158683647 + ], + [ + -81.6669200522256, + 25.22454158683647 + ], + [ + -81.64697639280223, + 25.19321608141478 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.64697639280223, + 25.19321608141478 + ], + [ + -81.6669200522256, + 25.22454158683647 + ], + [ + -81.686863711649, + 25.19321608141478 + ], + [ + -81.64697639280223, + 25.19321608141478 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.64697639280223, + 25.19321608141478 + ], + [ + -81.686863711649, + 25.19321608141478 + ], + [ + -81.6669200522256, + 25.161890575993088 + ], + [ + -81.64697639280223, + 25.19321608141478 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.64697639280223, + 25.19321608141478 + ], + [ + -81.6669200522256, + 25.161890575993088 + ], + [ + -81.62703273337885, + 25.161890575993088 + ], + [ + -81.64697639280223, + 25.19321608141478 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.64697639280223, + 25.19321608141478 + ], + [ + -81.62703273337885, + 25.161890575993088 + ], + [ + -81.60708907395546, + 25.19321608141478 + ], + [ + -81.64697639280223, + 25.19321608141478 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.64697639280223, + 25.255867092258164 + ], + [ + -81.60708907395546, + 25.255867092258164 + ], + [ + -81.62703273337885, + 25.287192597679855 + ], + [ + -81.64697639280223, + 25.255867092258164 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.64697639280223, + 25.255867092258164 + ], + [ + -81.62703273337885, + 25.287192597679855 + ], + [ + -81.6669200522256, + 25.287192597679855 + ], + [ + -81.64697639280223, + 25.255867092258164 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.64697639280223, + 25.255867092258164 + ], + [ + -81.6669200522256, + 25.287192597679855 + ], + [ + -81.686863711649, + 25.255867092258164 + ], + [ + -81.64697639280223, + 25.255867092258164 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.64697639280223, + 25.255867092258164 + ], + [ + -81.686863711649, + 25.255867092258164 + ], + [ + -81.6669200522256, + 25.224541586836473 + ], + [ + -81.64697639280223, + 25.255867092258164 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.64697639280223, + 25.255867092258164 + ], + [ + -81.6669200522256, + 25.224541586836473 + ], + [ + -81.62703273337885, + 25.224541586836473 + ], + [ + -81.64697639280223, + 25.255867092258164 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.64697639280223, + 25.255867092258164 + ], + [ + -81.62703273337885, + 25.224541586836473 + ], + [ + -81.60708907395546, + 25.255867092258164 + ], + [ + -81.64697639280223, + 25.255867092258164 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.64697639280223, + 25.31851810310155 + ], + [ + -81.60708907395546, + 25.31851810310155 + ], + [ + -81.62703273337885, + 25.34984360852324 + ], + [ + -81.64697639280223, + 25.31851810310155 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.64697639280223, + 25.31851810310155 + ], + [ + -81.62703273337885, + 25.34984360852324 + ], + [ + -81.6669200522256, + 25.34984360852324 + ], + [ + -81.64697639280223, + 25.31851810310155 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.64697639280223, + 25.31851810310155 + ], + [ + -81.6669200522256, + 25.34984360852324 + ], + [ + -81.686863711649, + 25.31851810310155 + ], + [ + -81.64697639280223, + 25.31851810310155 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.64697639280223, + 25.31851810310155 + ], + [ + -81.686863711649, + 25.31851810310155 + ], + [ + -81.6669200522256, + 25.28719259767986 + ], + [ + -81.64697639280223, + 25.31851810310155 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.64697639280223, + 25.31851810310155 + ], + [ + -81.6669200522256, + 25.28719259767986 + ], + [ + -81.62703273337885, + 25.28719259767986 + ], + [ + -81.64697639280223, + 25.31851810310155 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.64697639280223, + 25.31851810310155 + ], + [ + -81.62703273337885, + 25.28719259767986 + ], + [ + -81.60708907395546, + 25.31851810310155 + ], + [ + -81.64697639280223, + 25.31851810310155 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.64697639280223, + 25.381169113944935 + ], + [ + -81.60708907395546, + 25.381169113944935 + ], + [ + -81.62703273337885, + 25.412494619366626 + ], + [ + -81.64697639280223, + 25.381169113944935 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.64697639280223, + 25.381169113944935 + ], + [ + -81.62703273337885, + 25.412494619366626 + ], + [ + -81.6669200522256, + 25.412494619366626 + ], + [ + -81.64697639280223, + 25.381169113944935 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.64697639280223, + 25.381169113944935 + ], + [ + -81.6669200522256, + 25.412494619366626 + ], + [ + -81.686863711649, + 25.381169113944935 + ], + [ + -81.64697639280223, + 25.381169113944935 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.64697639280223, + 25.381169113944935 + ], + [ + -81.686863711649, + 25.381169113944935 + ], + [ + -81.6669200522256, + 25.349843608523244 + ], + [ + -81.64697639280223, + 25.381169113944935 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.64697639280223, + 25.381169113944935 + ], + [ + -81.6669200522256, + 25.349843608523244 + ], + [ + -81.62703273337885, + 25.349843608523244 + ], + [ + -81.64697639280223, + 25.381169113944935 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.64697639280223, + 25.381169113944935 + ], + [ + -81.62703273337885, + 25.349843608523244 + ], + [ + -81.60708907395546, + 25.381169113944935 + ], + [ + -81.64697639280223, + 25.381169113944935 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.64697639280223, + 25.44382012478832 + ], + [ + -81.60708907395546, + 25.44382012478832 + ], + [ + -81.62703273337885, + 25.47514563021001 + ], + [ + -81.64697639280223, + 25.44382012478832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.64697639280223, + 25.44382012478832 + ], + [ + -81.62703273337885, + 25.47514563021001 + ], + [ + -81.6669200522256, + 25.47514563021001 + ], + [ + -81.64697639280223, + 25.44382012478832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.64697639280223, + 25.44382012478832 + ], + [ + -81.6669200522256, + 25.47514563021001 + ], + [ + -81.686863711649, + 25.44382012478832 + ], + [ + -81.64697639280223, + 25.44382012478832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.64697639280223, + 25.44382012478832 + ], + [ + -81.686863711649, + 25.44382012478832 + ], + [ + -81.6669200522256, + 25.41249461936663 + ], + [ + -81.64697639280223, + 25.44382012478832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.64697639280223, + 25.44382012478832 + ], + [ + -81.6669200522256, + 25.41249461936663 + ], + [ + -81.62703273337885, + 25.41249461936663 + ], + [ + -81.64697639280223, + 25.44382012478832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.64697639280223, + 25.44382012478832 + ], + [ + -81.62703273337885, + 25.41249461936663 + ], + [ + -81.60708907395546, + 25.44382012478832 + ], + [ + -81.64697639280223, + 25.44382012478832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.64697639280223, + 25.506471135631706 + ], + [ + -81.60708907395546, + 25.506471135631706 + ], + [ + -81.62703273337885, + 25.537796641053397 + ], + [ + -81.64697639280223, + 25.506471135631706 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.64697639280223, + 25.506471135631706 + ], + [ + -81.62703273337885, + 25.537796641053397 + ], + [ + -81.6669200522256, + 25.537796641053397 + ], + [ + -81.64697639280223, + 25.506471135631706 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.64697639280223, + 25.506471135631706 + ], + [ + -81.6669200522256, + 25.537796641053397 + ], + [ + -81.686863711649, + 25.506471135631706 + ], + [ + -81.64697639280223, + 25.506471135631706 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.64697639280223, + 25.506471135631706 + ], + [ + -81.686863711649, + 25.506471135631706 + ], + [ + -81.6669200522256, + 25.475145630210015 + ], + [ + -81.64697639280223, + 25.506471135631706 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.64697639280223, + 25.506471135631706 + ], + [ + -81.6669200522256, + 25.475145630210015 + ], + [ + -81.62703273337885, + 25.475145630210015 + ], + [ + -81.64697639280223, + 25.506471135631706 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.64697639280223, + 25.506471135631706 + ], + [ + -81.62703273337885, + 25.475145630210015 + ], + [ + -81.60708907395546, + 25.506471135631706 + ], + [ + -81.64697639280223, + 25.506471135631706 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.64697639280223, + 25.56912214647509 + ], + [ + -81.60708907395546, + 25.56912214647509 + ], + [ + -81.62703273337885, + 25.600447651896783 + ], + [ + -81.64697639280223, + 25.56912214647509 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.64697639280223, + 25.56912214647509 + ], + [ + -81.62703273337885, + 25.600447651896783 + ], + [ + -81.6669200522256, + 25.600447651896783 + ], + [ + -81.64697639280223, + 25.56912214647509 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.64697639280223, + 25.56912214647509 + ], + [ + -81.6669200522256, + 25.600447651896783 + ], + [ + -81.686863711649, + 25.56912214647509 + ], + [ + -81.64697639280223, + 25.56912214647509 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.64697639280223, + 25.56912214647509 + ], + [ + -81.686863711649, + 25.56912214647509 + ], + [ + -81.6669200522256, + 25.5377966410534 + ], + [ + -81.64697639280223, + 25.56912214647509 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.64697639280223, + 25.56912214647509 + ], + [ + -81.6669200522256, + 25.5377966410534 + ], + [ + -81.62703273337885, + 25.5377966410534 + ], + [ + -81.64697639280223, + 25.56912214647509 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.64697639280223, + 25.56912214647509 + ], + [ + -81.62703273337885, + 25.5377966410534 + ], + [ + -81.60708907395546, + 25.56912214647509 + ], + [ + -81.64697639280223, + 25.56912214647509 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.64697639280223, + 25.631773157318477 + ], + [ + -81.60708907395546, + 25.631773157318477 + ], + [ + -81.62703273337885, + 25.66309866274017 + ], + [ + -81.64697639280223, + 25.631773157318477 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.64697639280223, + 25.631773157318477 + ], + [ + -81.62703273337885, + 25.66309866274017 + ], + [ + -81.6669200522256, + 25.66309866274017 + ], + [ + -81.64697639280223, + 25.631773157318477 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.64697639280223, + 25.631773157318477 + ], + [ + -81.6669200522256, + 25.66309866274017 + ], + [ + -81.686863711649, + 25.631773157318477 + ], + [ + -81.64697639280223, + 25.631773157318477 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.64697639280223, + 25.631773157318477 + ], + [ + -81.686863711649, + 25.631773157318477 + ], + [ + -81.6669200522256, + 25.600447651896786 + ], + [ + -81.64697639280223, + 25.631773157318477 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.64697639280223, + 25.631773157318477 + ], + [ + -81.6669200522256, + 25.600447651896786 + ], + [ + -81.62703273337885, + 25.600447651896786 + ], + [ + -81.64697639280223, + 25.631773157318477 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.64697639280223, + 25.631773157318477 + ], + [ + -81.62703273337885, + 25.600447651896786 + ], + [ + -81.60708907395546, + 25.631773157318477 + ], + [ + -81.64697639280223, + 25.631773157318477 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.64697639280223, + 25.694424168161863 + ], + [ + -81.60708907395546, + 25.694424168161863 + ], + [ + -81.62703273337885, + 25.725749673583554 + ], + [ + -81.64697639280223, + 25.694424168161863 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.64697639280223, + 25.694424168161863 + ], + [ + -81.62703273337885, + 25.725749673583554 + ], + [ + -81.6669200522256, + 25.725749673583554 + ], + [ + -81.64697639280223, + 25.694424168161863 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.64697639280223, + 25.694424168161863 + ], + [ + -81.6669200522256, + 25.725749673583554 + ], + [ + -81.686863711649, + 25.694424168161863 + ], + [ + -81.64697639280223, + 25.694424168161863 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.64697639280223, + 25.694424168161863 + ], + [ + -81.686863711649, + 25.694424168161863 + ], + [ + -81.6669200522256, + 25.663098662740172 + ], + [ + -81.64697639280223, + 25.694424168161863 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.64697639280223, + 25.694424168161863 + ], + [ + -81.6669200522256, + 25.663098662740172 + ], + [ + -81.62703273337885, + 25.663098662740172 + ], + [ + -81.64697639280223, + 25.694424168161863 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.64697639280223, + 25.694424168161863 + ], + [ + -81.62703273337885, + 25.663098662740172 + ], + [ + -81.60708907395546, + 25.694424168161863 + ], + [ + -81.64697639280223, + 25.694424168161863 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.64697639280223, + 25.75707517900525 + ], + [ + -81.60708907395546, + 25.75707517900525 + ], + [ + -81.62703273337885, + 25.78840068442694 + ], + [ + -81.64697639280223, + 25.75707517900525 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.64697639280223, + 25.75707517900525 + ], + [ + -81.62703273337885, + 25.78840068442694 + ], + [ + -81.6669200522256, + 25.78840068442694 + ], + [ + -81.64697639280223, + 25.75707517900525 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.64697639280223, + 25.75707517900525 + ], + [ + -81.6669200522256, + 25.78840068442694 + ], + [ + -81.686863711649, + 25.75707517900525 + ], + [ + -81.64697639280223, + 25.75707517900525 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.64697639280223, + 25.75707517900525 + ], + [ + -81.686863711649, + 25.75707517900525 + ], + [ + -81.6669200522256, + 25.725749673583557 + ], + [ + -81.64697639280223, + 25.75707517900525 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.64697639280223, + 25.75707517900525 + ], + [ + -81.6669200522256, + 25.725749673583557 + ], + [ + -81.62703273337885, + 25.725749673583557 + ], + [ + -81.64697639280223, + 25.75707517900525 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.64697639280223, + 25.75707517900525 + ], + [ + -81.62703273337885, + 25.725749673583557 + ], + [ + -81.60708907395546, + 25.75707517900525 + ], + [ + -81.64697639280223, + 25.75707517900525 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.64697639280223, + 25.819726189848634 + ], + [ + -81.60708907395546, + 25.819726189848634 + ], + [ + -81.62703273337885, + 25.851051695270325 + ], + [ + -81.64697639280223, + 25.819726189848634 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.64697639280223, + 25.819726189848634 + ], + [ + -81.62703273337885, + 25.851051695270325 + ], + [ + -81.6669200522256, + 25.851051695270325 + ], + [ + -81.64697639280223, + 25.819726189848634 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.64697639280223, + 25.819726189848634 + ], + [ + -81.6669200522256, + 25.851051695270325 + ], + [ + -81.686863711649, + 25.819726189848634 + ], + [ + -81.64697639280223, + 25.819726189848634 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.64697639280223, + 25.819726189848634 + ], + [ + -81.686863711649, + 25.819726189848634 + ], + [ + -81.6669200522256, + 25.788400684426943 + ], + [ + -81.64697639280223, + 25.819726189848634 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.64697639280223, + 25.819726189848634 + ], + [ + -81.6669200522256, + 25.788400684426943 + ], + [ + -81.62703273337885, + 25.788400684426943 + ], + [ + -81.64697639280223, + 25.819726189848634 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.64697639280223, + 25.819726189848634 + ], + [ + -81.62703273337885, + 25.788400684426943 + ], + [ + -81.60708907395546, + 25.819726189848634 + ], + [ + -81.64697639280223, + 25.819726189848634 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.64697639280223, + 25.88237720069202 + ], + [ + -81.60708907395546, + 25.88237720069202 + ], + [ + -81.62703273337885, + 25.91370270611371 + ], + [ + -81.64697639280223, + 25.88237720069202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.64697639280223, + 25.88237720069202 + ], + [ + -81.62703273337885, + 25.91370270611371 + ], + [ + -81.6669200522256, + 25.91370270611371 + ], + [ + -81.64697639280223, + 25.88237720069202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.64697639280223, + 25.88237720069202 + ], + [ + -81.6669200522256, + 25.91370270611371 + ], + [ + -81.686863711649, + 25.88237720069202 + ], + [ + -81.64697639280223, + 25.88237720069202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.64697639280223, + 25.88237720069202 + ], + [ + -81.686863711649, + 25.88237720069202 + ], + [ + -81.6669200522256, + 25.85105169527033 + ], + [ + -81.64697639280223, + 25.88237720069202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.64697639280223, + 25.88237720069202 + ], + [ + -81.6669200522256, + 25.85105169527033 + ], + [ + -81.62703273337885, + 25.85105169527033 + ], + [ + -81.64697639280223, + 25.88237720069202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.64697639280223, + 25.88237720069202 + ], + [ + -81.62703273337885, + 25.85105169527033 + ], + [ + -81.60708907395546, + 25.88237720069202 + ], + [ + -81.64697639280223, + 25.88237720069202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.64697639280223, + 25.945028211535405 + ], + [ + -81.60708907395546, + 25.945028211535405 + ], + [ + -81.62703273337885, + 25.976353716957096 + ], + [ + -81.64697639280223, + 25.945028211535405 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.64697639280223, + 25.945028211535405 + ], + [ + -81.62703273337885, + 25.976353716957096 + ], + [ + -81.6669200522256, + 25.976353716957096 + ], + [ + -81.64697639280223, + 25.945028211535405 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.64697639280223, + 25.945028211535405 + ], + [ + -81.6669200522256, + 25.976353716957096 + ], + [ + -81.686863711649, + 25.945028211535405 + ], + [ + -81.64697639280223, + 25.945028211535405 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.64697639280223, + 25.945028211535405 + ], + [ + -81.686863711649, + 25.945028211535405 + ], + [ + -81.6669200522256, + 25.913702706113714 + ], + [ + -81.64697639280223, + 25.945028211535405 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.64697639280223, + 25.945028211535405 + ], + [ + -81.6669200522256, + 25.913702706113714 + ], + [ + -81.62703273337885, + 25.913702706113714 + ], + [ + -81.64697639280223, + 25.945028211535405 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.64697639280223, + 25.945028211535405 + ], + [ + -81.62703273337885, + 25.913702706113714 + ], + [ + -81.60708907395546, + 25.945028211535405 + ], + [ + -81.64697639280223, + 25.945028211535405 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.64697639280223, + 26.00767922237879 + ], + [ + -81.60708907395546, + 26.00767922237879 + ], + [ + -81.62703273337885, + 26.03900472780048 + ], + [ + -81.64697639280223, + 26.00767922237879 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.64697639280223, + 26.00767922237879 + ], + [ + -81.62703273337885, + 26.03900472780048 + ], + [ + -81.6669200522256, + 26.03900472780048 + ], + [ + -81.64697639280223, + 26.00767922237879 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.64697639280223, + 26.00767922237879 + ], + [ + -81.6669200522256, + 26.03900472780048 + ], + [ + -81.686863711649, + 26.00767922237879 + ], + [ + -81.64697639280223, + 26.00767922237879 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.64697639280223, + 26.00767922237879 + ], + [ + -81.686863711649, + 26.00767922237879 + ], + [ + -81.6669200522256, + 25.9763537169571 + ], + [ + -81.64697639280223, + 26.00767922237879 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.64697639280223, + 26.00767922237879 + ], + [ + -81.6669200522256, + 25.9763537169571 + ], + [ + -81.62703273337885, + 25.9763537169571 + ], + [ + -81.64697639280223, + 26.00767922237879 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.64697639280223, + 26.00767922237879 + ], + [ + -81.62703273337885, + 25.9763537169571 + ], + [ + -81.60708907395546, + 26.00767922237879 + ], + [ + -81.64697639280223, + 26.00767922237879 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.64697639280223, + 26.070330233222176 + ], + [ + -81.60708907395546, + 26.070330233222176 + ], + [ + -81.62703273337885, + 26.101655738643867 + ], + [ + -81.64697639280223, + 26.070330233222176 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.64697639280223, + 26.070330233222176 + ], + [ + -81.62703273337885, + 26.101655738643867 + ], + [ + -81.6669200522256, + 26.101655738643867 + ], + [ + -81.64697639280223, + 26.070330233222176 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.64697639280223, + 26.070330233222176 + ], + [ + -81.6669200522256, + 26.101655738643867 + ], + [ + -81.686863711649, + 26.070330233222176 + ], + [ + -81.64697639280223, + 26.070330233222176 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.64697639280223, + 26.070330233222176 + ], + [ + -81.686863711649, + 26.070330233222176 + ], + [ + -81.6669200522256, + 26.039004727800485 + ], + [ + -81.64697639280223, + 26.070330233222176 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.64697639280223, + 26.070330233222176 + ], + [ + -81.6669200522256, + 26.039004727800485 + ], + [ + -81.62703273337885, + 26.039004727800485 + ], + [ + -81.64697639280223, + 26.070330233222176 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.64697639280223, + 26.070330233222176 + ], + [ + -81.62703273337885, + 26.039004727800485 + ], + [ + -81.60708907395546, + 26.070330233222176 + ], + [ + -81.64697639280223, + 26.070330233222176 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.64697639280223, + 26.13298124406556 + ], + [ + -81.60708907395546, + 26.13298124406556 + ], + [ + -81.62703273337885, + 26.164306749487253 + ], + [ + -81.64697639280223, + 26.13298124406556 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.64697639280223, + 26.13298124406556 + ], + [ + -81.62703273337885, + 26.164306749487253 + ], + [ + -81.6669200522256, + 26.164306749487253 + ], + [ + -81.64697639280223, + 26.13298124406556 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.64697639280223, + 26.13298124406556 + ], + [ + -81.6669200522256, + 26.164306749487253 + ], + [ + -81.686863711649, + 26.13298124406556 + ], + [ + -81.64697639280223, + 26.13298124406556 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.64697639280223, + 26.13298124406556 + ], + [ + -81.686863711649, + 26.13298124406556 + ], + [ + -81.6669200522256, + 26.10165573864387 + ], + [ + -81.64697639280223, + 26.13298124406556 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.64697639280223, + 26.13298124406556 + ], + [ + -81.6669200522256, + 26.10165573864387 + ], + [ + -81.62703273337885, + 26.10165573864387 + ], + [ + -81.64697639280223, + 26.13298124406556 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.64697639280223, + 26.13298124406556 + ], + [ + -81.62703273337885, + 26.10165573864387 + ], + [ + -81.60708907395546, + 26.13298124406556 + ], + [ + -81.64697639280223, + 26.13298124406556 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.64697639280223, + 26.195632254908944 + ], + [ + -81.60708907395546, + 26.195632254908944 + ], + [ + -81.62703273337885, + 26.226957760330635 + ], + [ + -81.64697639280223, + 26.195632254908944 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.64697639280223, + 26.195632254908944 + ], + [ + -81.62703273337885, + 26.226957760330635 + ], + [ + -81.6669200522256, + 26.226957760330635 + ], + [ + -81.64697639280223, + 26.195632254908944 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.64697639280223, + 26.195632254908944 + ], + [ + -81.6669200522256, + 26.226957760330635 + ], + [ + -81.686863711649, + 26.195632254908944 + ], + [ + -81.64697639280223, + 26.195632254908944 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.64697639280223, + 26.195632254908944 + ], + [ + -81.686863711649, + 26.195632254908944 + ], + [ + -81.6669200522256, + 26.164306749487253 + ], + [ + -81.64697639280223, + 26.195632254908944 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.64697639280223, + 26.195632254908944 + ], + [ + -81.6669200522256, + 26.164306749487253 + ], + [ + -81.62703273337885, + 26.164306749487253 + ], + [ + -81.64697639280223, + 26.195632254908944 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.64697639280223, + 26.195632254908944 + ], + [ + -81.62703273337885, + 26.164306749487253 + ], + [ + -81.60708907395546, + 26.195632254908944 + ], + [ + -81.64697639280223, + 26.195632254908944 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.64697639280223, + 26.258283265752333 + ], + [ + -81.60708907395546, + 26.258283265752333 + ], + [ + -81.62703273337885, + 26.289608771174024 + ], + [ + -81.64697639280223, + 26.258283265752333 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.64697639280223, + 26.258283265752333 + ], + [ + -81.62703273337885, + 26.289608771174024 + ], + [ + -81.6669200522256, + 26.289608771174024 + ], + [ + -81.64697639280223, + 26.258283265752333 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.64697639280223, + 26.258283265752333 + ], + [ + -81.6669200522256, + 26.289608771174024 + ], + [ + -81.686863711649, + 26.258283265752333 + ], + [ + -81.64697639280223, + 26.258283265752333 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.64697639280223, + 26.258283265752333 + ], + [ + -81.686863711649, + 26.258283265752333 + ], + [ + -81.6669200522256, + 26.22695776033064 + ], + [ + -81.64697639280223, + 26.258283265752333 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.64697639280223, + 26.258283265752333 + ], + [ + -81.6669200522256, + 26.22695776033064 + ], + [ + -81.62703273337885, + 26.22695776033064 + ], + [ + -81.64697639280223, + 26.258283265752333 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.64697639280223, + 26.258283265752333 + ], + [ + -81.62703273337885, + 26.22695776033064 + ], + [ + -81.60708907395546, + 26.258283265752333 + ], + [ + -81.64697639280223, + 26.258283265752333 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.64697639280223, + 26.320934276595715 + ], + [ + -81.60708907395546, + 26.320934276595715 + ], + [ + -81.62703273337885, + 26.352259782017406 + ], + [ + -81.64697639280223, + 26.320934276595715 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.64697639280223, + 26.320934276595715 + ], + [ + -81.62703273337885, + 26.352259782017406 + ], + [ + -81.6669200522256, + 26.352259782017406 + ], + [ + -81.64697639280223, + 26.320934276595715 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.64697639280223, + 26.320934276595715 + ], + [ + -81.6669200522256, + 26.352259782017406 + ], + [ + -81.686863711649, + 26.320934276595715 + ], + [ + -81.64697639280223, + 26.320934276595715 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.64697639280223, + 26.320934276595715 + ], + [ + -81.686863711649, + 26.320934276595715 + ], + [ + -81.6669200522256, + 26.289608771174024 + ], + [ + -81.64697639280223, + 26.320934276595715 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.64697639280223, + 26.320934276595715 + ], + [ + -81.6669200522256, + 26.289608771174024 + ], + [ + -81.62703273337885, + 26.289608771174024 + ], + [ + -81.64697639280223, + 26.320934276595715 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.64697639280223, + 26.320934276595715 + ], + [ + -81.62703273337885, + 26.289608771174024 + ], + [ + -81.60708907395546, + 26.320934276595715 + ], + [ + -81.64697639280223, + 26.320934276595715 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.64697639280223, + 26.3835852874391 + ], + [ + -81.60708907395546, + 26.3835852874391 + ], + [ + -81.62703273337885, + 26.41491079286079 + ], + [ + -81.64697639280223, + 26.3835852874391 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.64697639280223, + 26.3835852874391 + ], + [ + -81.62703273337885, + 26.41491079286079 + ], + [ + -81.6669200522256, + 26.41491079286079 + ], + [ + -81.64697639280223, + 26.3835852874391 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.64697639280223, + 26.3835852874391 + ], + [ + -81.6669200522256, + 26.41491079286079 + ], + [ + -81.686863711649, + 26.3835852874391 + ], + [ + -81.64697639280223, + 26.3835852874391 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.64697639280223, + 26.3835852874391 + ], + [ + -81.686863711649, + 26.3835852874391 + ], + [ + -81.6669200522256, + 26.35225978201741 + ], + [ + -81.64697639280223, + 26.3835852874391 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.64697639280223, + 26.3835852874391 + ], + [ + -81.6669200522256, + 26.35225978201741 + ], + [ + -81.62703273337885, + 26.35225978201741 + ], + [ + -81.64697639280223, + 26.3835852874391 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.64697639280223, + 26.3835852874391 + ], + [ + -81.62703273337885, + 26.35225978201741 + ], + [ + -81.60708907395546, + 26.3835852874391 + ], + [ + -81.64697639280223, + 26.3835852874391 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.64697639280223, + 26.446236298282486 + ], + [ + -81.60708907395546, + 26.446236298282486 + ], + [ + -81.62703273337885, + 26.477561803704177 + ], + [ + -81.64697639280223, + 26.446236298282486 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.64697639280223, + 26.446236298282486 + ], + [ + -81.62703273337885, + 26.477561803704177 + ], + [ + -81.6669200522256, + 26.477561803704177 + ], + [ + -81.64697639280223, + 26.446236298282486 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.64697639280223, + 26.446236298282486 + ], + [ + -81.6669200522256, + 26.477561803704177 + ], + [ + -81.686863711649, + 26.446236298282486 + ], + [ + -81.64697639280223, + 26.446236298282486 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.64697639280223, + 26.446236298282486 + ], + [ + -81.686863711649, + 26.446236298282486 + ], + [ + -81.6669200522256, + 26.414910792860795 + ], + [ + -81.64697639280223, + 26.446236298282486 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.64697639280223, + 26.446236298282486 + ], + [ + -81.6669200522256, + 26.414910792860795 + ], + [ + -81.62703273337885, + 26.414910792860795 + ], + [ + -81.64697639280223, + 26.446236298282486 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.64697639280223, + 26.446236298282486 + ], + [ + -81.62703273337885, + 26.414910792860795 + ], + [ + -81.60708907395546, + 26.446236298282486 + ], + [ + -81.64697639280223, + 26.446236298282486 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.58714541453209, + 24.911286532619545 + ], + [ + -81.54725809568532, + 24.911286532619545 + ], + [ + -81.56720175510871, + 24.942612038041236 + ], + [ + -81.58714541453209, + 24.911286532619545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.58714541453209, + 24.911286532619545 + ], + [ + -81.56720175510871, + 24.942612038041236 + ], + [ + -81.60708907395546, + 24.942612038041236 + ], + [ + -81.58714541453209, + 24.911286532619545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.58714541453209, + 24.911286532619545 + ], + [ + -81.60708907395546, + 24.942612038041236 + ], + [ + -81.62703273337885, + 24.911286532619545 + ], + [ + -81.58714541453209, + 24.911286532619545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.58714541453209, + 24.911286532619545 + ], + [ + -81.62703273337885, + 24.911286532619545 + ], + [ + -81.60708907395546, + 24.879961027197854 + ], + [ + -81.58714541453209, + 24.911286532619545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.58714541453209, + 24.911286532619545 + ], + [ + -81.60708907395546, + 24.879961027197854 + ], + [ + -81.56720175510871, + 24.879961027197854 + ], + [ + -81.58714541453209, + 24.911286532619545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.58714541453209, + 24.911286532619545 + ], + [ + -81.56720175510871, + 24.879961027197854 + ], + [ + -81.54725809568532, + 24.911286532619545 + ], + [ + -81.58714541453209, + 24.911286532619545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.58714541453209, + 24.97393754346293 + ], + [ + -81.54725809568532, + 24.97393754346293 + ], + [ + -81.56720175510871, + 25.005263048884622 + ], + [ + -81.58714541453209, + 24.97393754346293 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.58714541453209, + 24.97393754346293 + ], + [ + -81.56720175510871, + 25.005263048884622 + ], + [ + -81.60708907395546, + 25.005263048884622 + ], + [ + -81.58714541453209, + 24.97393754346293 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.58714541453209, + 24.97393754346293 + ], + [ + -81.60708907395546, + 25.005263048884622 + ], + [ + -81.62703273337885, + 24.97393754346293 + ], + [ + -81.58714541453209, + 24.97393754346293 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.58714541453209, + 24.97393754346293 + ], + [ + -81.62703273337885, + 24.97393754346293 + ], + [ + -81.60708907395546, + 24.94261203804124 + ], + [ + -81.58714541453209, + 24.97393754346293 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.58714541453209, + 24.97393754346293 + ], + [ + -81.60708907395546, + 24.94261203804124 + ], + [ + -81.56720175510871, + 24.94261203804124 + ], + [ + -81.58714541453209, + 24.97393754346293 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.58714541453209, + 24.97393754346293 + ], + [ + -81.56720175510871, + 24.94261203804124 + ], + [ + -81.54725809568532, + 24.97393754346293 + ], + [ + -81.58714541453209, + 24.97393754346293 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.58714541453209, + 25.036588554306316 + ], + [ + -81.54725809568532, + 25.036588554306316 + ], + [ + -81.56720175510871, + 25.067914059728007 + ], + [ + -81.58714541453209, + 25.036588554306316 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.58714541453209, + 25.036588554306316 + ], + [ + -81.56720175510871, + 25.067914059728007 + ], + [ + -81.60708907395546, + 25.067914059728007 + ], + [ + -81.58714541453209, + 25.036588554306316 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.58714541453209, + 25.036588554306316 + ], + [ + -81.60708907395546, + 25.067914059728007 + ], + [ + -81.62703273337885, + 25.036588554306316 + ], + [ + -81.58714541453209, + 25.036588554306316 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.58714541453209, + 25.036588554306316 + ], + [ + -81.62703273337885, + 25.036588554306316 + ], + [ + -81.60708907395546, + 25.005263048884625 + ], + [ + -81.58714541453209, + 25.036588554306316 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.58714541453209, + 25.036588554306316 + ], + [ + -81.60708907395546, + 25.005263048884625 + ], + [ + -81.56720175510871, + 25.005263048884625 + ], + [ + -81.58714541453209, + 25.036588554306316 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.58714541453209, + 25.036588554306316 + ], + [ + -81.56720175510871, + 25.005263048884625 + ], + [ + -81.54725809568532, + 25.036588554306316 + ], + [ + -81.58714541453209, + 25.036588554306316 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.58714541453209, + 25.099239565149702 + ], + [ + -81.54725809568532, + 25.099239565149702 + ], + [ + -81.56720175510871, + 25.130565070571393 + ], + [ + -81.58714541453209, + 25.099239565149702 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.58714541453209, + 25.099239565149702 + ], + [ + -81.56720175510871, + 25.130565070571393 + ], + [ + -81.60708907395546, + 25.130565070571393 + ], + [ + -81.58714541453209, + 25.099239565149702 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.58714541453209, + 25.099239565149702 + ], + [ + -81.60708907395546, + 25.130565070571393 + ], + [ + -81.62703273337885, + 25.099239565149702 + ], + [ + -81.58714541453209, + 25.099239565149702 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.58714541453209, + 25.099239565149702 + ], + [ + -81.62703273337885, + 25.099239565149702 + ], + [ + -81.60708907395546, + 25.06791405972801 + ], + [ + -81.58714541453209, + 25.099239565149702 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.58714541453209, + 25.099239565149702 + ], + [ + -81.60708907395546, + 25.06791405972801 + ], + [ + -81.56720175510871, + 25.06791405972801 + ], + [ + -81.58714541453209, + 25.099239565149702 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.58714541453209, + 25.099239565149702 + ], + [ + -81.56720175510871, + 25.06791405972801 + ], + [ + -81.54725809568532, + 25.099239565149702 + ], + [ + -81.58714541453209, + 25.099239565149702 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.58714541453209, + 25.161890575993088 + ], + [ + -81.54725809568532, + 25.161890575993088 + ], + [ + -81.56720175510871, + 25.19321608141478 + ], + [ + -81.58714541453209, + 25.161890575993088 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.58714541453209, + 25.161890575993088 + ], + [ + -81.56720175510871, + 25.19321608141478 + ], + [ + -81.60708907395546, + 25.19321608141478 + ], + [ + -81.58714541453209, + 25.161890575993088 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.58714541453209, + 25.161890575993088 + ], + [ + -81.60708907395546, + 25.19321608141478 + ], + [ + -81.62703273337885, + 25.161890575993088 + ], + [ + -81.58714541453209, + 25.161890575993088 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.58714541453209, + 25.161890575993088 + ], + [ + -81.62703273337885, + 25.161890575993088 + ], + [ + -81.60708907395546, + 25.130565070571397 + ], + [ + -81.58714541453209, + 25.161890575993088 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.58714541453209, + 25.161890575993088 + ], + [ + -81.60708907395546, + 25.130565070571397 + ], + [ + -81.56720175510871, + 25.130565070571397 + ], + [ + -81.58714541453209, + 25.161890575993088 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.58714541453209, + 25.161890575993088 + ], + [ + -81.56720175510871, + 25.130565070571397 + ], + [ + -81.54725809568532, + 25.161890575993088 + ], + [ + -81.58714541453209, + 25.161890575993088 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.58714541453209, + 25.224541586836473 + ], + [ + -81.54725809568532, + 25.224541586836473 + ], + [ + -81.56720175510871, + 25.255867092258164 + ], + [ + -81.58714541453209, + 25.224541586836473 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.58714541453209, + 25.224541586836473 + ], + [ + -81.56720175510871, + 25.255867092258164 + ], + [ + -81.60708907395546, + 25.255867092258164 + ], + [ + -81.58714541453209, + 25.224541586836473 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.58714541453209, + 25.224541586836473 + ], + [ + -81.60708907395546, + 25.255867092258164 + ], + [ + -81.62703273337885, + 25.224541586836473 + ], + [ + -81.58714541453209, + 25.224541586836473 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.58714541453209, + 25.224541586836473 + ], + [ + -81.62703273337885, + 25.224541586836473 + ], + [ + -81.60708907395546, + 25.193216081414782 + ], + [ + -81.58714541453209, + 25.224541586836473 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.58714541453209, + 25.224541586836473 + ], + [ + -81.60708907395546, + 25.193216081414782 + ], + [ + -81.56720175510871, + 25.193216081414782 + ], + [ + -81.58714541453209, + 25.224541586836473 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.58714541453209, + 25.224541586836473 + ], + [ + -81.56720175510871, + 25.193216081414782 + ], + [ + -81.54725809568532, + 25.224541586836473 + ], + [ + -81.58714541453209, + 25.224541586836473 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.58714541453209, + 25.28719259767986 + ], + [ + -81.54725809568532, + 25.28719259767986 + ], + [ + -81.56720175510871, + 25.31851810310155 + ], + [ + -81.58714541453209, + 25.28719259767986 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.58714541453209, + 25.28719259767986 + ], + [ + -81.56720175510871, + 25.31851810310155 + ], + [ + -81.60708907395546, + 25.31851810310155 + ], + [ + -81.58714541453209, + 25.28719259767986 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.58714541453209, + 25.28719259767986 + ], + [ + -81.60708907395546, + 25.31851810310155 + ], + [ + -81.62703273337885, + 25.28719259767986 + ], + [ + -81.58714541453209, + 25.28719259767986 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.58714541453209, + 25.28719259767986 + ], + [ + -81.62703273337885, + 25.28719259767986 + ], + [ + -81.60708907395546, + 25.255867092258168 + ], + [ + -81.58714541453209, + 25.28719259767986 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.58714541453209, + 25.28719259767986 + ], + [ + -81.60708907395546, + 25.255867092258168 + ], + [ + -81.56720175510871, + 25.255867092258168 + ], + [ + -81.58714541453209, + 25.28719259767986 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.58714541453209, + 25.28719259767986 + ], + [ + -81.56720175510871, + 25.255867092258168 + ], + [ + -81.54725809568532, + 25.28719259767986 + ], + [ + -81.58714541453209, + 25.28719259767986 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.58714541453209, + 25.349843608523244 + ], + [ + -81.54725809568532, + 25.349843608523244 + ], + [ + -81.56720175510871, + 25.381169113944935 + ], + [ + -81.58714541453209, + 25.349843608523244 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.58714541453209, + 25.349843608523244 + ], + [ + -81.56720175510871, + 25.381169113944935 + ], + [ + -81.60708907395546, + 25.381169113944935 + ], + [ + -81.58714541453209, + 25.349843608523244 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.58714541453209, + 25.349843608523244 + ], + [ + -81.60708907395546, + 25.381169113944935 + ], + [ + -81.62703273337885, + 25.349843608523244 + ], + [ + -81.58714541453209, + 25.349843608523244 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.58714541453209, + 25.349843608523244 + ], + [ + -81.62703273337885, + 25.349843608523244 + ], + [ + -81.60708907395546, + 25.318518103101553 + ], + [ + -81.58714541453209, + 25.349843608523244 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.58714541453209, + 25.349843608523244 + ], + [ + -81.60708907395546, + 25.318518103101553 + ], + [ + -81.56720175510871, + 25.318518103101553 + ], + [ + -81.58714541453209, + 25.349843608523244 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.58714541453209, + 25.349843608523244 + ], + [ + -81.56720175510871, + 25.318518103101553 + ], + [ + -81.54725809568532, + 25.349843608523244 + ], + [ + -81.58714541453209, + 25.349843608523244 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.58714541453209, + 25.41249461936663 + ], + [ + -81.54725809568532, + 25.41249461936663 + ], + [ + -81.56720175510871, + 25.44382012478832 + ], + [ + -81.58714541453209, + 25.41249461936663 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.58714541453209, + 25.41249461936663 + ], + [ + -81.56720175510871, + 25.44382012478832 + ], + [ + -81.60708907395546, + 25.44382012478832 + ], + [ + -81.58714541453209, + 25.41249461936663 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.58714541453209, + 25.41249461936663 + ], + [ + -81.60708907395546, + 25.44382012478832 + ], + [ + -81.62703273337885, + 25.41249461936663 + ], + [ + -81.58714541453209, + 25.41249461936663 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.58714541453209, + 25.41249461936663 + ], + [ + -81.62703273337885, + 25.41249461936663 + ], + [ + -81.60708907395546, + 25.38116911394494 + ], + [ + -81.58714541453209, + 25.41249461936663 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.58714541453209, + 25.41249461936663 + ], + [ + -81.60708907395546, + 25.38116911394494 + ], + [ + -81.56720175510871, + 25.38116911394494 + ], + [ + -81.58714541453209, + 25.41249461936663 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.58714541453209, + 25.41249461936663 + ], + [ + -81.56720175510871, + 25.38116911394494 + ], + [ + -81.54725809568532, + 25.41249461936663 + ], + [ + -81.58714541453209, + 25.41249461936663 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.58714541453209, + 25.475145630210015 + ], + [ + -81.54725809568532, + 25.475145630210015 + ], + [ + -81.56720175510871, + 25.506471135631706 + ], + [ + -81.58714541453209, + 25.475145630210015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.58714541453209, + 25.475145630210015 + ], + [ + -81.56720175510871, + 25.506471135631706 + ], + [ + -81.60708907395546, + 25.506471135631706 + ], + [ + -81.58714541453209, + 25.475145630210015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.58714541453209, + 25.475145630210015 + ], + [ + -81.60708907395546, + 25.506471135631706 + ], + [ + -81.62703273337885, + 25.475145630210015 + ], + [ + -81.58714541453209, + 25.475145630210015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.58714541453209, + 25.475145630210015 + ], + [ + -81.62703273337885, + 25.475145630210015 + ], + [ + -81.60708907395546, + 25.443820124788324 + ], + [ + -81.58714541453209, + 25.475145630210015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.58714541453209, + 25.475145630210015 + ], + [ + -81.60708907395546, + 25.443820124788324 + ], + [ + -81.56720175510871, + 25.443820124788324 + ], + [ + -81.58714541453209, + 25.475145630210015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.58714541453209, + 25.475145630210015 + ], + [ + -81.56720175510871, + 25.443820124788324 + ], + [ + -81.54725809568532, + 25.475145630210015 + ], + [ + -81.58714541453209, + 25.475145630210015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.58714541453209, + 25.5377966410534 + ], + [ + -81.54725809568532, + 25.5377966410534 + ], + [ + -81.56720175510871, + 25.56912214647509 + ], + [ + -81.58714541453209, + 25.5377966410534 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.58714541453209, + 25.5377966410534 + ], + [ + -81.56720175510871, + 25.56912214647509 + ], + [ + -81.60708907395546, + 25.56912214647509 + ], + [ + -81.58714541453209, + 25.5377966410534 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.58714541453209, + 25.5377966410534 + ], + [ + -81.60708907395546, + 25.56912214647509 + ], + [ + -81.62703273337885, + 25.5377966410534 + ], + [ + -81.58714541453209, + 25.5377966410534 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.58714541453209, + 25.5377966410534 + ], + [ + -81.62703273337885, + 25.5377966410534 + ], + [ + -81.60708907395546, + 25.50647113563171 + ], + [ + -81.58714541453209, + 25.5377966410534 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.58714541453209, + 25.5377966410534 + ], + [ + -81.60708907395546, + 25.50647113563171 + ], + [ + -81.56720175510871, + 25.50647113563171 + ], + [ + -81.58714541453209, + 25.5377966410534 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.58714541453209, + 25.5377966410534 + ], + [ + -81.56720175510871, + 25.50647113563171 + ], + [ + -81.54725809568532, + 25.5377966410534 + ], + [ + -81.58714541453209, + 25.5377966410534 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.58714541453209, + 25.600447651896786 + ], + [ + -81.54725809568532, + 25.600447651896786 + ], + [ + -81.56720175510871, + 25.631773157318477 + ], + [ + -81.58714541453209, + 25.600447651896786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.58714541453209, + 25.600447651896786 + ], + [ + -81.56720175510871, + 25.631773157318477 + ], + [ + -81.60708907395546, + 25.631773157318477 + ], + [ + -81.58714541453209, + 25.600447651896786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.58714541453209, + 25.600447651896786 + ], + [ + -81.60708907395546, + 25.631773157318477 + ], + [ + -81.62703273337885, + 25.600447651896786 + ], + [ + -81.58714541453209, + 25.600447651896786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.58714541453209, + 25.600447651896786 + ], + [ + -81.62703273337885, + 25.600447651896786 + ], + [ + -81.60708907395546, + 25.569122146475095 + ], + [ + -81.58714541453209, + 25.600447651896786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.58714541453209, + 25.600447651896786 + ], + [ + -81.60708907395546, + 25.569122146475095 + ], + [ + -81.56720175510871, + 25.569122146475095 + ], + [ + -81.58714541453209, + 25.600447651896786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.58714541453209, + 25.600447651896786 + ], + [ + -81.56720175510871, + 25.569122146475095 + ], + [ + -81.54725809568532, + 25.600447651896786 + ], + [ + -81.58714541453209, + 25.600447651896786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.58714541453209, + 25.663098662740172 + ], + [ + -81.54725809568532, + 25.663098662740172 + ], + [ + -81.56720175510871, + 25.694424168161863 + ], + [ + -81.58714541453209, + 25.663098662740172 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.58714541453209, + 25.663098662740172 + ], + [ + -81.56720175510871, + 25.694424168161863 + ], + [ + -81.60708907395546, + 25.694424168161863 + ], + [ + -81.58714541453209, + 25.663098662740172 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.58714541453209, + 25.663098662740172 + ], + [ + -81.60708907395546, + 25.694424168161863 + ], + [ + -81.62703273337885, + 25.663098662740172 + ], + [ + -81.58714541453209, + 25.663098662740172 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.58714541453209, + 25.663098662740172 + ], + [ + -81.62703273337885, + 25.663098662740172 + ], + [ + -81.60708907395546, + 25.63177315731848 + ], + [ + -81.58714541453209, + 25.663098662740172 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.58714541453209, + 25.663098662740172 + ], + [ + -81.60708907395546, + 25.63177315731848 + ], + [ + -81.56720175510871, + 25.63177315731848 + ], + [ + -81.58714541453209, + 25.663098662740172 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.58714541453209, + 25.663098662740172 + ], + [ + -81.56720175510871, + 25.63177315731848 + ], + [ + -81.54725809568532, + 25.663098662740172 + ], + [ + -81.58714541453209, + 25.663098662740172 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.58714541453209, + 25.725749673583557 + ], + [ + -81.54725809568532, + 25.725749673583557 + ], + [ + -81.56720175510871, + 25.75707517900525 + ], + [ + -81.58714541453209, + 25.725749673583557 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.58714541453209, + 25.725749673583557 + ], + [ + -81.56720175510871, + 25.75707517900525 + ], + [ + -81.60708907395546, + 25.75707517900525 + ], + [ + -81.58714541453209, + 25.725749673583557 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.58714541453209, + 25.725749673583557 + ], + [ + -81.60708907395546, + 25.75707517900525 + ], + [ + -81.62703273337885, + 25.725749673583557 + ], + [ + -81.58714541453209, + 25.725749673583557 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.58714541453209, + 25.725749673583557 + ], + [ + -81.62703273337885, + 25.725749673583557 + ], + [ + -81.60708907395546, + 25.694424168161866 + ], + [ + -81.58714541453209, + 25.725749673583557 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.58714541453209, + 25.725749673583557 + ], + [ + -81.60708907395546, + 25.694424168161866 + ], + [ + -81.56720175510871, + 25.694424168161866 + ], + [ + -81.58714541453209, + 25.725749673583557 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.58714541453209, + 25.725749673583557 + ], + [ + -81.56720175510871, + 25.694424168161866 + ], + [ + -81.54725809568532, + 25.725749673583557 + ], + [ + -81.58714541453209, + 25.725749673583557 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.58714541453209, + 25.788400684426943 + ], + [ + -81.54725809568532, + 25.788400684426943 + ], + [ + -81.56720175510871, + 25.819726189848634 + ], + [ + -81.58714541453209, + 25.788400684426943 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.58714541453209, + 25.788400684426943 + ], + [ + -81.56720175510871, + 25.819726189848634 + ], + [ + -81.60708907395546, + 25.819726189848634 + ], + [ + -81.58714541453209, + 25.788400684426943 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.58714541453209, + 25.788400684426943 + ], + [ + -81.60708907395546, + 25.819726189848634 + ], + [ + -81.62703273337885, + 25.788400684426943 + ], + [ + -81.58714541453209, + 25.788400684426943 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.58714541453209, + 25.788400684426943 + ], + [ + -81.62703273337885, + 25.788400684426943 + ], + [ + -81.60708907395546, + 25.757075179005252 + ], + [ + -81.58714541453209, + 25.788400684426943 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.58714541453209, + 25.788400684426943 + ], + [ + -81.60708907395546, + 25.757075179005252 + ], + [ + -81.56720175510871, + 25.757075179005252 + ], + [ + -81.58714541453209, + 25.788400684426943 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.58714541453209, + 25.788400684426943 + ], + [ + -81.56720175510871, + 25.757075179005252 + ], + [ + -81.54725809568532, + 25.788400684426943 + ], + [ + -81.58714541453209, + 25.788400684426943 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.58714541453209, + 25.85105169527033 + ], + [ + -81.54725809568532, + 25.85105169527033 + ], + [ + -81.56720175510871, + 25.88237720069202 + ], + [ + -81.58714541453209, + 25.85105169527033 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.58714541453209, + 25.85105169527033 + ], + [ + -81.56720175510871, + 25.88237720069202 + ], + [ + -81.60708907395546, + 25.88237720069202 + ], + [ + -81.58714541453209, + 25.85105169527033 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.58714541453209, + 25.85105169527033 + ], + [ + -81.60708907395546, + 25.88237720069202 + ], + [ + -81.62703273337885, + 25.85105169527033 + ], + [ + -81.58714541453209, + 25.85105169527033 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.58714541453209, + 25.85105169527033 + ], + [ + -81.62703273337885, + 25.85105169527033 + ], + [ + -81.60708907395546, + 25.819726189848637 + ], + [ + -81.58714541453209, + 25.85105169527033 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.58714541453209, + 25.85105169527033 + ], + [ + -81.60708907395546, + 25.819726189848637 + ], + [ + -81.56720175510871, + 25.819726189848637 + ], + [ + -81.58714541453209, + 25.85105169527033 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.58714541453209, + 25.85105169527033 + ], + [ + -81.56720175510871, + 25.819726189848637 + ], + [ + -81.54725809568532, + 25.85105169527033 + ], + [ + -81.58714541453209, + 25.85105169527033 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.58714541453209, + 25.913702706113714 + ], + [ + -81.54725809568532, + 25.913702706113714 + ], + [ + -81.56720175510871, + 25.945028211535405 + ], + [ + -81.58714541453209, + 25.913702706113714 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.58714541453209, + 25.913702706113714 + ], + [ + -81.56720175510871, + 25.945028211535405 + ], + [ + -81.60708907395546, + 25.945028211535405 + ], + [ + -81.58714541453209, + 25.913702706113714 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.58714541453209, + 25.913702706113714 + ], + [ + -81.60708907395546, + 25.945028211535405 + ], + [ + -81.62703273337885, + 25.913702706113714 + ], + [ + -81.58714541453209, + 25.913702706113714 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.58714541453209, + 25.913702706113714 + ], + [ + -81.62703273337885, + 25.913702706113714 + ], + [ + -81.60708907395546, + 25.882377200692023 + ], + [ + -81.58714541453209, + 25.913702706113714 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.58714541453209, + 25.913702706113714 + ], + [ + -81.60708907395546, + 25.882377200692023 + ], + [ + -81.56720175510871, + 25.882377200692023 + ], + [ + -81.58714541453209, + 25.913702706113714 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.58714541453209, + 25.913702706113714 + ], + [ + -81.56720175510871, + 25.882377200692023 + ], + [ + -81.54725809568532, + 25.913702706113714 + ], + [ + -81.58714541453209, + 25.913702706113714 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.58714541453209, + 25.9763537169571 + ], + [ + -81.54725809568532, + 25.9763537169571 + ], + [ + -81.56720175510871, + 26.00767922237879 + ], + [ + -81.58714541453209, + 25.9763537169571 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.58714541453209, + 25.9763537169571 + ], + [ + -81.56720175510871, + 26.00767922237879 + ], + [ + -81.60708907395546, + 26.00767922237879 + ], + [ + -81.58714541453209, + 25.9763537169571 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.58714541453209, + 25.9763537169571 + ], + [ + -81.60708907395546, + 26.00767922237879 + ], + [ + -81.62703273337885, + 25.9763537169571 + ], + [ + -81.58714541453209, + 25.9763537169571 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.58714541453209, + 25.9763537169571 + ], + [ + -81.62703273337885, + 25.9763537169571 + ], + [ + -81.60708907395546, + 25.94502821153541 + ], + [ + -81.58714541453209, + 25.9763537169571 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.58714541453209, + 25.9763537169571 + ], + [ + -81.60708907395546, + 25.94502821153541 + ], + [ + -81.56720175510871, + 25.94502821153541 + ], + [ + -81.58714541453209, + 25.9763537169571 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.58714541453209, + 25.9763537169571 + ], + [ + -81.56720175510871, + 25.94502821153541 + ], + [ + -81.54725809568532, + 25.9763537169571 + ], + [ + -81.58714541453209, + 25.9763537169571 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.58714541453209, + 26.039004727800485 + ], + [ + -81.54725809568532, + 26.039004727800485 + ], + [ + -81.56720175510871, + 26.070330233222176 + ], + [ + -81.58714541453209, + 26.039004727800485 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.58714541453209, + 26.039004727800485 + ], + [ + -81.56720175510871, + 26.070330233222176 + ], + [ + -81.60708907395546, + 26.070330233222176 + ], + [ + -81.58714541453209, + 26.039004727800485 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.58714541453209, + 26.039004727800485 + ], + [ + -81.60708907395546, + 26.070330233222176 + ], + [ + -81.62703273337885, + 26.039004727800485 + ], + [ + -81.58714541453209, + 26.039004727800485 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.58714541453209, + 26.039004727800485 + ], + [ + -81.62703273337885, + 26.039004727800485 + ], + [ + -81.60708907395546, + 26.007679222378794 + ], + [ + -81.58714541453209, + 26.039004727800485 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.58714541453209, + 26.039004727800485 + ], + [ + -81.60708907395546, + 26.007679222378794 + ], + [ + -81.56720175510871, + 26.007679222378794 + ], + [ + -81.58714541453209, + 26.039004727800485 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.58714541453209, + 26.039004727800485 + ], + [ + -81.56720175510871, + 26.007679222378794 + ], + [ + -81.54725809568532, + 26.039004727800485 + ], + [ + -81.58714541453209, + 26.039004727800485 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.58714541453209, + 26.10165573864387 + ], + [ + -81.54725809568532, + 26.10165573864387 + ], + [ + -81.56720175510871, + 26.13298124406556 + ], + [ + -81.58714541453209, + 26.10165573864387 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.58714541453209, + 26.10165573864387 + ], + [ + -81.56720175510871, + 26.13298124406556 + ], + [ + -81.60708907395546, + 26.13298124406556 + ], + [ + -81.58714541453209, + 26.10165573864387 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.58714541453209, + 26.10165573864387 + ], + [ + -81.60708907395546, + 26.13298124406556 + ], + [ + -81.62703273337885, + 26.10165573864387 + ], + [ + -81.58714541453209, + 26.10165573864387 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.58714541453209, + 26.10165573864387 + ], + [ + -81.62703273337885, + 26.10165573864387 + ], + [ + -81.60708907395546, + 26.07033023322218 + ], + [ + -81.58714541453209, + 26.10165573864387 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.58714541453209, + 26.10165573864387 + ], + [ + -81.60708907395546, + 26.07033023322218 + ], + [ + -81.56720175510871, + 26.07033023322218 + ], + [ + -81.58714541453209, + 26.10165573864387 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.58714541453209, + 26.10165573864387 + ], + [ + -81.56720175510871, + 26.07033023322218 + ], + [ + -81.54725809568532, + 26.10165573864387 + ], + [ + -81.58714541453209, + 26.10165573864387 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.58714541453209, + 26.164306749487253 + ], + [ + -81.54725809568532, + 26.164306749487253 + ], + [ + -81.56720175510871, + 26.195632254908944 + ], + [ + -81.58714541453209, + 26.164306749487253 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.58714541453209, + 26.164306749487253 + ], + [ + -81.56720175510871, + 26.195632254908944 + ], + [ + -81.60708907395546, + 26.195632254908944 + ], + [ + -81.58714541453209, + 26.164306749487253 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.58714541453209, + 26.164306749487253 + ], + [ + -81.60708907395546, + 26.195632254908944 + ], + [ + -81.62703273337885, + 26.164306749487253 + ], + [ + -81.58714541453209, + 26.164306749487253 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.58714541453209, + 26.164306749487253 + ], + [ + -81.62703273337885, + 26.164306749487253 + ], + [ + -81.60708907395546, + 26.13298124406556 + ], + [ + -81.58714541453209, + 26.164306749487253 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.58714541453209, + 26.164306749487253 + ], + [ + -81.60708907395546, + 26.13298124406556 + ], + [ + -81.56720175510871, + 26.13298124406556 + ], + [ + -81.58714541453209, + 26.164306749487253 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.58714541453209, + 26.164306749487253 + ], + [ + -81.56720175510871, + 26.13298124406556 + ], + [ + -81.54725809568532, + 26.164306749487253 + ], + [ + -81.58714541453209, + 26.164306749487253 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.58714541453209, + 26.22695776033064 + ], + [ + -81.54725809568532, + 26.22695776033064 + ], + [ + -81.56720175510871, + 26.258283265752333 + ], + [ + -81.58714541453209, + 26.22695776033064 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.58714541453209, + 26.22695776033064 + ], + [ + -81.56720175510871, + 26.258283265752333 + ], + [ + -81.60708907395546, + 26.258283265752333 + ], + [ + -81.58714541453209, + 26.22695776033064 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.58714541453209, + 26.22695776033064 + ], + [ + -81.60708907395546, + 26.258283265752333 + ], + [ + -81.62703273337885, + 26.22695776033064 + ], + [ + -81.58714541453209, + 26.22695776033064 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.58714541453209, + 26.22695776033064 + ], + [ + -81.62703273337885, + 26.22695776033064 + ], + [ + -81.60708907395546, + 26.19563225490895 + ], + [ + -81.58714541453209, + 26.22695776033064 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.58714541453209, + 26.22695776033064 + ], + [ + -81.60708907395546, + 26.19563225490895 + ], + [ + -81.56720175510871, + 26.19563225490895 + ], + [ + -81.58714541453209, + 26.22695776033064 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.58714541453209, + 26.22695776033064 + ], + [ + -81.56720175510871, + 26.19563225490895 + ], + [ + -81.54725809568532, + 26.22695776033064 + ], + [ + -81.58714541453209, + 26.22695776033064 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.58714541453209, + 26.289608771174024 + ], + [ + -81.54725809568532, + 26.289608771174024 + ], + [ + -81.56720175510871, + 26.320934276595715 + ], + [ + -81.58714541453209, + 26.289608771174024 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.58714541453209, + 26.289608771174024 + ], + [ + -81.56720175510871, + 26.320934276595715 + ], + [ + -81.60708907395546, + 26.320934276595715 + ], + [ + -81.58714541453209, + 26.289608771174024 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.58714541453209, + 26.289608771174024 + ], + [ + -81.60708907395546, + 26.320934276595715 + ], + [ + -81.62703273337885, + 26.289608771174024 + ], + [ + -81.58714541453209, + 26.289608771174024 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.58714541453209, + 26.289608771174024 + ], + [ + -81.62703273337885, + 26.289608771174024 + ], + [ + -81.60708907395546, + 26.258283265752333 + ], + [ + -81.58714541453209, + 26.289608771174024 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.58714541453209, + 26.289608771174024 + ], + [ + -81.60708907395546, + 26.258283265752333 + ], + [ + -81.56720175510871, + 26.258283265752333 + ], + [ + -81.58714541453209, + 26.289608771174024 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.58714541453209, + 26.289608771174024 + ], + [ + -81.56720175510871, + 26.258283265752333 + ], + [ + -81.54725809568532, + 26.289608771174024 + ], + [ + -81.58714541453209, + 26.289608771174024 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.58714541453209, + 26.35225978201741 + ], + [ + -81.54725809568532, + 26.35225978201741 + ], + [ + -81.56720175510871, + 26.3835852874391 + ], + [ + -81.58714541453209, + 26.35225978201741 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.58714541453209, + 26.35225978201741 + ], + [ + -81.56720175510871, + 26.3835852874391 + ], + [ + -81.60708907395546, + 26.3835852874391 + ], + [ + -81.58714541453209, + 26.35225978201741 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.58714541453209, + 26.35225978201741 + ], + [ + -81.60708907395546, + 26.3835852874391 + ], + [ + -81.62703273337885, + 26.35225978201741 + ], + [ + -81.58714541453209, + 26.35225978201741 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.58714541453209, + 26.35225978201741 + ], + [ + -81.62703273337885, + 26.35225978201741 + ], + [ + -81.60708907395546, + 26.320934276595718 + ], + [ + -81.58714541453209, + 26.35225978201741 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.58714541453209, + 26.35225978201741 + ], + [ + -81.60708907395546, + 26.320934276595718 + ], + [ + -81.56720175510871, + 26.320934276595718 + ], + [ + -81.58714541453209, + 26.35225978201741 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.58714541453209, + 26.35225978201741 + ], + [ + -81.56720175510871, + 26.320934276595718 + ], + [ + -81.54725809568532, + 26.35225978201741 + ], + [ + -81.58714541453209, + 26.35225978201741 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.58714541453209, + 26.414910792860795 + ], + [ + -81.54725809568532, + 26.414910792860795 + ], + [ + -81.56720175510871, + 26.446236298282486 + ], + [ + -81.58714541453209, + 26.414910792860795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.58714541453209, + 26.414910792860795 + ], + [ + -81.56720175510871, + 26.446236298282486 + ], + [ + -81.60708907395546, + 26.446236298282486 + ], + [ + -81.58714541453209, + 26.414910792860795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.58714541453209, + 26.414910792860795 + ], + [ + -81.60708907395546, + 26.446236298282486 + ], + [ + -81.62703273337885, + 26.414910792860795 + ], + [ + -81.58714541453209, + 26.414910792860795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.58714541453209, + 26.414910792860795 + ], + [ + -81.62703273337885, + 26.414910792860795 + ], + [ + -81.60708907395546, + 26.383585287439104 + ], + [ + -81.58714541453209, + 26.414910792860795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.58714541453209, + 26.414910792860795 + ], + [ + -81.60708907395546, + 26.383585287439104 + ], + [ + -81.56720175510871, + 26.383585287439104 + ], + [ + -81.58714541453209, + 26.414910792860795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.58714541453209, + 26.414910792860795 + ], + [ + -81.56720175510871, + 26.383585287439104 + ], + [ + -81.54725809568532, + 26.414910792860795 + ], + [ + -81.58714541453209, + 26.414910792860795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.52731443626193, + 24.942612038041236 + ], + [ + -81.48742711741517, + 24.942612038041236 + ], + [ + -81.50737077683856, + 24.973937543462927 + ], + [ + -81.52731443626193, + 24.942612038041236 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.52731443626193, + 24.942612038041236 + ], + [ + -81.50737077683856, + 24.973937543462927 + ], + [ + -81.54725809568531, + 24.973937543462927 + ], + [ + -81.52731443626193, + 24.942612038041236 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.52731443626193, + 24.942612038041236 + ], + [ + -81.54725809568531, + 24.973937543462927 + ], + [ + -81.5672017551087, + 24.942612038041236 + ], + [ + -81.52731443626193, + 24.942612038041236 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.52731443626193, + 24.942612038041236 + ], + [ + -81.5672017551087, + 24.942612038041236 + ], + [ + -81.54725809568531, + 24.911286532619545 + ], + [ + -81.52731443626193, + 24.942612038041236 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.52731443626193, + 24.942612038041236 + ], + [ + -81.54725809568531, + 24.911286532619545 + ], + [ + -81.50737077683856, + 24.911286532619545 + ], + [ + -81.52731443626193, + 24.942612038041236 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.52731443626193, + 24.942612038041236 + ], + [ + -81.50737077683856, + 24.911286532619545 + ], + [ + -81.48742711741517, + 24.942612038041236 + ], + [ + -81.52731443626193, + 24.942612038041236 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.52731443626193, + 25.005263048884622 + ], + [ + -81.48742711741517, + 25.005263048884622 + ], + [ + -81.50737077683856, + 25.036588554306313 + ], + [ + -81.52731443626193, + 25.005263048884622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.52731443626193, + 25.005263048884622 + ], + [ + -81.50737077683856, + 25.036588554306313 + ], + [ + -81.54725809568531, + 25.036588554306313 + ], + [ + -81.52731443626193, + 25.005263048884622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.52731443626193, + 25.005263048884622 + ], + [ + -81.54725809568531, + 25.036588554306313 + ], + [ + -81.5672017551087, + 25.005263048884622 + ], + [ + -81.52731443626193, + 25.005263048884622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.52731443626193, + 25.005263048884622 + ], + [ + -81.5672017551087, + 25.005263048884622 + ], + [ + -81.54725809568531, + 24.97393754346293 + ], + [ + -81.52731443626193, + 25.005263048884622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.52731443626193, + 25.005263048884622 + ], + [ + -81.54725809568531, + 24.97393754346293 + ], + [ + -81.50737077683856, + 24.97393754346293 + ], + [ + -81.52731443626193, + 25.005263048884622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.52731443626193, + 25.005263048884622 + ], + [ + -81.50737077683856, + 24.97393754346293 + ], + [ + -81.48742711741517, + 25.005263048884622 + ], + [ + -81.52731443626193, + 25.005263048884622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.52731443626193, + 25.067914059728007 + ], + [ + -81.48742711741517, + 25.067914059728007 + ], + [ + -81.50737077683856, + 25.0992395651497 + ], + [ + -81.52731443626193, + 25.067914059728007 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.52731443626193, + 25.067914059728007 + ], + [ + -81.50737077683856, + 25.0992395651497 + ], + [ + -81.54725809568531, + 25.0992395651497 + ], + [ + -81.52731443626193, + 25.067914059728007 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.52731443626193, + 25.067914059728007 + ], + [ + -81.54725809568531, + 25.0992395651497 + ], + [ + -81.5672017551087, + 25.067914059728007 + ], + [ + -81.52731443626193, + 25.067914059728007 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.52731443626193, + 25.067914059728007 + ], + [ + -81.5672017551087, + 25.067914059728007 + ], + [ + -81.54725809568531, + 25.036588554306316 + ], + [ + -81.52731443626193, + 25.067914059728007 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.52731443626193, + 25.067914059728007 + ], + [ + -81.54725809568531, + 25.036588554306316 + ], + [ + -81.50737077683856, + 25.036588554306316 + ], + [ + -81.52731443626193, + 25.067914059728007 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.52731443626193, + 25.067914059728007 + ], + [ + -81.50737077683856, + 25.036588554306316 + ], + [ + -81.48742711741517, + 25.067914059728007 + ], + [ + -81.52731443626193, + 25.067914059728007 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.52731443626193, + 25.130565070571393 + ], + [ + -81.48742711741517, + 25.130565070571393 + ], + [ + -81.50737077683856, + 25.161890575993084 + ], + [ + -81.52731443626193, + 25.130565070571393 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.52731443626193, + 25.130565070571393 + ], + [ + -81.50737077683856, + 25.161890575993084 + ], + [ + -81.54725809568531, + 25.161890575993084 + ], + [ + -81.52731443626193, + 25.130565070571393 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.52731443626193, + 25.130565070571393 + ], + [ + -81.54725809568531, + 25.161890575993084 + ], + [ + -81.5672017551087, + 25.130565070571393 + ], + [ + -81.52731443626193, + 25.130565070571393 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.52731443626193, + 25.130565070571393 + ], + [ + -81.5672017551087, + 25.130565070571393 + ], + [ + -81.54725809568531, + 25.099239565149702 + ], + [ + -81.52731443626193, + 25.130565070571393 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.52731443626193, + 25.130565070571393 + ], + [ + -81.54725809568531, + 25.099239565149702 + ], + [ + -81.50737077683856, + 25.099239565149702 + ], + [ + -81.52731443626193, + 25.130565070571393 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.52731443626193, + 25.130565070571393 + ], + [ + -81.50737077683856, + 25.099239565149702 + ], + [ + -81.48742711741517, + 25.130565070571393 + ], + [ + -81.52731443626193, + 25.130565070571393 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.52731443626193, + 25.19321608141478 + ], + [ + -81.48742711741517, + 25.19321608141478 + ], + [ + -81.50737077683856, + 25.22454158683647 + ], + [ + -81.52731443626193, + 25.19321608141478 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.52731443626193, + 25.19321608141478 + ], + [ + -81.50737077683856, + 25.22454158683647 + ], + [ + -81.54725809568531, + 25.22454158683647 + ], + [ + -81.52731443626193, + 25.19321608141478 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.52731443626193, + 25.19321608141478 + ], + [ + -81.54725809568531, + 25.22454158683647 + ], + [ + -81.5672017551087, + 25.19321608141478 + ], + [ + -81.52731443626193, + 25.19321608141478 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.52731443626193, + 25.19321608141478 + ], + [ + -81.5672017551087, + 25.19321608141478 + ], + [ + -81.54725809568531, + 25.161890575993088 + ], + [ + -81.52731443626193, + 25.19321608141478 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.52731443626193, + 25.19321608141478 + ], + [ + -81.54725809568531, + 25.161890575993088 + ], + [ + -81.50737077683856, + 25.161890575993088 + ], + [ + -81.52731443626193, + 25.19321608141478 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.52731443626193, + 25.19321608141478 + ], + [ + -81.50737077683856, + 25.161890575993088 + ], + [ + -81.48742711741517, + 25.19321608141478 + ], + [ + -81.52731443626193, + 25.19321608141478 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.52731443626193, + 25.255867092258164 + ], + [ + -81.48742711741517, + 25.255867092258164 + ], + [ + -81.50737077683856, + 25.287192597679855 + ], + [ + -81.52731443626193, + 25.255867092258164 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.52731443626193, + 25.255867092258164 + ], + [ + -81.50737077683856, + 25.287192597679855 + ], + [ + -81.54725809568531, + 25.287192597679855 + ], + [ + -81.52731443626193, + 25.255867092258164 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.52731443626193, + 25.255867092258164 + ], + [ + -81.54725809568531, + 25.287192597679855 + ], + [ + -81.5672017551087, + 25.255867092258164 + ], + [ + -81.52731443626193, + 25.255867092258164 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.52731443626193, + 25.255867092258164 + ], + [ + -81.5672017551087, + 25.255867092258164 + ], + [ + -81.54725809568531, + 25.224541586836473 + ], + [ + -81.52731443626193, + 25.255867092258164 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.52731443626193, + 25.255867092258164 + ], + [ + -81.54725809568531, + 25.224541586836473 + ], + [ + -81.50737077683856, + 25.224541586836473 + ], + [ + -81.52731443626193, + 25.255867092258164 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.52731443626193, + 25.255867092258164 + ], + [ + -81.50737077683856, + 25.224541586836473 + ], + [ + -81.48742711741517, + 25.255867092258164 + ], + [ + -81.52731443626193, + 25.255867092258164 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.52731443626193, + 25.31851810310155 + ], + [ + -81.48742711741517, + 25.31851810310155 + ], + [ + -81.50737077683856, + 25.34984360852324 + ], + [ + -81.52731443626193, + 25.31851810310155 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.52731443626193, + 25.31851810310155 + ], + [ + -81.50737077683856, + 25.34984360852324 + ], + [ + -81.54725809568531, + 25.34984360852324 + ], + [ + -81.52731443626193, + 25.31851810310155 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.52731443626193, + 25.31851810310155 + ], + [ + -81.54725809568531, + 25.34984360852324 + ], + [ + -81.5672017551087, + 25.31851810310155 + ], + [ + -81.52731443626193, + 25.31851810310155 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.52731443626193, + 25.31851810310155 + ], + [ + -81.5672017551087, + 25.31851810310155 + ], + [ + -81.54725809568531, + 25.28719259767986 + ], + [ + -81.52731443626193, + 25.31851810310155 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.52731443626193, + 25.31851810310155 + ], + [ + -81.54725809568531, + 25.28719259767986 + ], + [ + -81.50737077683856, + 25.28719259767986 + ], + [ + -81.52731443626193, + 25.31851810310155 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.52731443626193, + 25.31851810310155 + ], + [ + -81.50737077683856, + 25.28719259767986 + ], + [ + -81.48742711741517, + 25.31851810310155 + ], + [ + -81.52731443626193, + 25.31851810310155 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.52731443626193, + 25.381169113944935 + ], + [ + -81.48742711741517, + 25.381169113944935 + ], + [ + -81.50737077683856, + 25.412494619366626 + ], + [ + -81.52731443626193, + 25.381169113944935 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.52731443626193, + 25.381169113944935 + ], + [ + -81.50737077683856, + 25.412494619366626 + ], + [ + -81.54725809568531, + 25.412494619366626 + ], + [ + -81.52731443626193, + 25.381169113944935 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.52731443626193, + 25.381169113944935 + ], + [ + -81.54725809568531, + 25.412494619366626 + ], + [ + -81.5672017551087, + 25.381169113944935 + ], + [ + -81.52731443626193, + 25.381169113944935 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.52731443626193, + 25.381169113944935 + ], + [ + -81.5672017551087, + 25.381169113944935 + ], + [ + -81.54725809568531, + 25.349843608523244 + ], + [ + -81.52731443626193, + 25.381169113944935 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.52731443626193, + 25.381169113944935 + ], + [ + -81.54725809568531, + 25.349843608523244 + ], + [ + -81.50737077683856, + 25.349843608523244 + ], + [ + -81.52731443626193, + 25.381169113944935 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.52731443626193, + 25.381169113944935 + ], + [ + -81.50737077683856, + 25.349843608523244 + ], + [ + -81.48742711741517, + 25.381169113944935 + ], + [ + -81.52731443626193, + 25.381169113944935 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.52731443626193, + 25.44382012478832 + ], + [ + -81.48742711741517, + 25.44382012478832 + ], + [ + -81.50737077683856, + 25.47514563021001 + ], + [ + -81.52731443626193, + 25.44382012478832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.52731443626193, + 25.44382012478832 + ], + [ + -81.50737077683856, + 25.47514563021001 + ], + [ + -81.54725809568531, + 25.47514563021001 + ], + [ + -81.52731443626193, + 25.44382012478832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.52731443626193, + 25.44382012478832 + ], + [ + -81.54725809568531, + 25.47514563021001 + ], + [ + -81.5672017551087, + 25.44382012478832 + ], + [ + -81.52731443626193, + 25.44382012478832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.52731443626193, + 25.44382012478832 + ], + [ + -81.5672017551087, + 25.44382012478832 + ], + [ + -81.54725809568531, + 25.41249461936663 + ], + [ + -81.52731443626193, + 25.44382012478832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.52731443626193, + 25.44382012478832 + ], + [ + -81.54725809568531, + 25.41249461936663 + ], + [ + -81.50737077683856, + 25.41249461936663 + ], + [ + -81.52731443626193, + 25.44382012478832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.52731443626193, + 25.44382012478832 + ], + [ + -81.50737077683856, + 25.41249461936663 + ], + [ + -81.48742711741517, + 25.44382012478832 + ], + [ + -81.52731443626193, + 25.44382012478832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.52731443626193, + 25.506471135631706 + ], + [ + -81.48742711741517, + 25.506471135631706 + ], + [ + -81.50737077683856, + 25.537796641053397 + ], + [ + -81.52731443626193, + 25.506471135631706 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.52731443626193, + 25.506471135631706 + ], + [ + -81.50737077683856, + 25.537796641053397 + ], + [ + -81.54725809568531, + 25.537796641053397 + ], + [ + -81.52731443626193, + 25.506471135631706 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.52731443626193, + 25.506471135631706 + ], + [ + -81.54725809568531, + 25.537796641053397 + ], + [ + -81.5672017551087, + 25.506471135631706 + ], + [ + -81.52731443626193, + 25.506471135631706 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.52731443626193, + 25.506471135631706 + ], + [ + -81.5672017551087, + 25.506471135631706 + ], + [ + -81.54725809568531, + 25.475145630210015 + ], + [ + -81.52731443626193, + 25.506471135631706 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.52731443626193, + 25.506471135631706 + ], + [ + -81.54725809568531, + 25.475145630210015 + ], + [ + -81.50737077683856, + 25.475145630210015 + ], + [ + -81.52731443626193, + 25.506471135631706 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.52731443626193, + 25.506471135631706 + ], + [ + -81.50737077683856, + 25.475145630210015 + ], + [ + -81.48742711741517, + 25.506471135631706 + ], + [ + -81.52731443626193, + 25.506471135631706 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.52731443626193, + 25.56912214647509 + ], + [ + -81.48742711741517, + 25.56912214647509 + ], + [ + -81.50737077683856, + 25.600447651896783 + ], + [ + -81.52731443626193, + 25.56912214647509 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.52731443626193, + 25.56912214647509 + ], + [ + -81.50737077683856, + 25.600447651896783 + ], + [ + -81.54725809568531, + 25.600447651896783 + ], + [ + -81.52731443626193, + 25.56912214647509 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.52731443626193, + 25.56912214647509 + ], + [ + -81.54725809568531, + 25.600447651896783 + ], + [ + -81.5672017551087, + 25.56912214647509 + ], + [ + -81.52731443626193, + 25.56912214647509 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.52731443626193, + 25.56912214647509 + ], + [ + -81.5672017551087, + 25.56912214647509 + ], + [ + -81.54725809568531, + 25.5377966410534 + ], + [ + -81.52731443626193, + 25.56912214647509 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.52731443626193, + 25.56912214647509 + ], + [ + -81.54725809568531, + 25.5377966410534 + ], + [ + -81.50737077683856, + 25.5377966410534 + ], + [ + -81.52731443626193, + 25.56912214647509 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.52731443626193, + 25.56912214647509 + ], + [ + -81.50737077683856, + 25.5377966410534 + ], + [ + -81.48742711741517, + 25.56912214647509 + ], + [ + -81.52731443626193, + 25.56912214647509 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.52731443626193, + 25.631773157318477 + ], + [ + -81.48742711741517, + 25.631773157318477 + ], + [ + -81.50737077683856, + 25.66309866274017 + ], + [ + -81.52731443626193, + 25.631773157318477 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.52731443626193, + 25.631773157318477 + ], + [ + -81.50737077683856, + 25.66309866274017 + ], + [ + -81.54725809568531, + 25.66309866274017 + ], + [ + -81.52731443626193, + 25.631773157318477 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.52731443626193, + 25.631773157318477 + ], + [ + -81.54725809568531, + 25.66309866274017 + ], + [ + -81.5672017551087, + 25.631773157318477 + ], + [ + -81.52731443626193, + 25.631773157318477 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.52731443626193, + 25.631773157318477 + ], + [ + -81.5672017551087, + 25.631773157318477 + ], + [ + -81.54725809568531, + 25.600447651896786 + ], + [ + -81.52731443626193, + 25.631773157318477 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.52731443626193, + 25.631773157318477 + ], + [ + -81.54725809568531, + 25.600447651896786 + ], + [ + -81.50737077683856, + 25.600447651896786 + ], + [ + -81.52731443626193, + 25.631773157318477 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.52731443626193, + 25.631773157318477 + ], + [ + -81.50737077683856, + 25.600447651896786 + ], + [ + -81.48742711741517, + 25.631773157318477 + ], + [ + -81.52731443626193, + 25.631773157318477 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.52731443626193, + 25.694424168161863 + ], + [ + -81.48742711741517, + 25.694424168161863 + ], + [ + -81.50737077683856, + 25.725749673583554 + ], + [ + -81.52731443626193, + 25.694424168161863 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.52731443626193, + 25.694424168161863 + ], + [ + -81.50737077683856, + 25.725749673583554 + ], + [ + -81.54725809568531, + 25.725749673583554 + ], + [ + -81.52731443626193, + 25.694424168161863 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.52731443626193, + 25.694424168161863 + ], + [ + -81.54725809568531, + 25.725749673583554 + ], + [ + -81.5672017551087, + 25.694424168161863 + ], + [ + -81.52731443626193, + 25.694424168161863 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.52731443626193, + 25.694424168161863 + ], + [ + -81.5672017551087, + 25.694424168161863 + ], + [ + -81.54725809568531, + 25.663098662740172 + ], + [ + -81.52731443626193, + 25.694424168161863 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.52731443626193, + 25.694424168161863 + ], + [ + -81.54725809568531, + 25.663098662740172 + ], + [ + -81.50737077683856, + 25.663098662740172 + ], + [ + -81.52731443626193, + 25.694424168161863 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.52731443626193, + 25.694424168161863 + ], + [ + -81.50737077683856, + 25.663098662740172 + ], + [ + -81.48742711741517, + 25.694424168161863 + ], + [ + -81.52731443626193, + 25.694424168161863 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.52731443626193, + 25.75707517900525 + ], + [ + -81.48742711741517, + 25.75707517900525 + ], + [ + -81.50737077683856, + 25.78840068442694 + ], + [ + -81.52731443626193, + 25.75707517900525 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.52731443626193, + 25.75707517900525 + ], + [ + -81.50737077683856, + 25.78840068442694 + ], + [ + -81.54725809568531, + 25.78840068442694 + ], + [ + -81.52731443626193, + 25.75707517900525 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.52731443626193, + 25.75707517900525 + ], + [ + -81.54725809568531, + 25.78840068442694 + ], + [ + -81.5672017551087, + 25.75707517900525 + ], + [ + -81.52731443626193, + 25.75707517900525 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.52731443626193, + 25.75707517900525 + ], + [ + -81.5672017551087, + 25.75707517900525 + ], + [ + -81.54725809568531, + 25.725749673583557 + ], + [ + -81.52731443626193, + 25.75707517900525 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.52731443626193, + 25.75707517900525 + ], + [ + -81.54725809568531, + 25.725749673583557 + ], + [ + -81.50737077683856, + 25.725749673583557 + ], + [ + -81.52731443626193, + 25.75707517900525 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.52731443626193, + 25.75707517900525 + ], + [ + -81.50737077683856, + 25.725749673583557 + ], + [ + -81.48742711741517, + 25.75707517900525 + ], + [ + -81.52731443626193, + 25.75707517900525 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.52731443626193, + 25.819726189848634 + ], + [ + -81.48742711741517, + 25.819726189848634 + ], + [ + -81.50737077683856, + 25.851051695270325 + ], + [ + -81.52731443626193, + 25.819726189848634 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.52731443626193, + 25.819726189848634 + ], + [ + -81.50737077683856, + 25.851051695270325 + ], + [ + -81.54725809568531, + 25.851051695270325 + ], + [ + -81.52731443626193, + 25.819726189848634 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.52731443626193, + 25.819726189848634 + ], + [ + -81.54725809568531, + 25.851051695270325 + ], + [ + -81.5672017551087, + 25.819726189848634 + ], + [ + -81.52731443626193, + 25.819726189848634 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.52731443626193, + 25.819726189848634 + ], + [ + -81.5672017551087, + 25.819726189848634 + ], + [ + -81.54725809568531, + 25.788400684426943 + ], + [ + -81.52731443626193, + 25.819726189848634 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.52731443626193, + 25.819726189848634 + ], + [ + -81.54725809568531, + 25.788400684426943 + ], + [ + -81.50737077683856, + 25.788400684426943 + ], + [ + -81.52731443626193, + 25.819726189848634 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.52731443626193, + 25.819726189848634 + ], + [ + -81.50737077683856, + 25.788400684426943 + ], + [ + -81.48742711741517, + 25.819726189848634 + ], + [ + -81.52731443626193, + 25.819726189848634 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.52731443626193, + 25.88237720069202 + ], + [ + -81.48742711741517, + 25.88237720069202 + ], + [ + -81.50737077683856, + 25.91370270611371 + ], + [ + -81.52731443626193, + 25.88237720069202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.52731443626193, + 25.88237720069202 + ], + [ + -81.50737077683856, + 25.91370270611371 + ], + [ + -81.54725809568531, + 25.91370270611371 + ], + [ + -81.52731443626193, + 25.88237720069202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.52731443626193, + 25.88237720069202 + ], + [ + -81.54725809568531, + 25.91370270611371 + ], + [ + -81.5672017551087, + 25.88237720069202 + ], + [ + -81.52731443626193, + 25.88237720069202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.52731443626193, + 25.88237720069202 + ], + [ + -81.5672017551087, + 25.88237720069202 + ], + [ + -81.54725809568531, + 25.85105169527033 + ], + [ + -81.52731443626193, + 25.88237720069202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.52731443626193, + 25.88237720069202 + ], + [ + -81.54725809568531, + 25.85105169527033 + ], + [ + -81.50737077683856, + 25.85105169527033 + ], + [ + -81.52731443626193, + 25.88237720069202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.52731443626193, + 25.88237720069202 + ], + [ + -81.50737077683856, + 25.85105169527033 + ], + [ + -81.48742711741517, + 25.88237720069202 + ], + [ + -81.52731443626193, + 25.88237720069202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.52731443626193, + 25.945028211535405 + ], + [ + -81.48742711741517, + 25.945028211535405 + ], + [ + -81.50737077683856, + 25.976353716957096 + ], + [ + -81.52731443626193, + 25.945028211535405 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.52731443626193, + 25.945028211535405 + ], + [ + -81.50737077683856, + 25.976353716957096 + ], + [ + -81.54725809568531, + 25.976353716957096 + ], + [ + -81.52731443626193, + 25.945028211535405 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.52731443626193, + 25.945028211535405 + ], + [ + -81.54725809568531, + 25.976353716957096 + ], + [ + -81.5672017551087, + 25.945028211535405 + ], + [ + -81.52731443626193, + 25.945028211535405 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.52731443626193, + 25.945028211535405 + ], + [ + -81.5672017551087, + 25.945028211535405 + ], + [ + -81.54725809568531, + 25.913702706113714 + ], + [ + -81.52731443626193, + 25.945028211535405 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.52731443626193, + 25.945028211535405 + ], + [ + -81.54725809568531, + 25.913702706113714 + ], + [ + -81.50737077683856, + 25.913702706113714 + ], + [ + -81.52731443626193, + 25.945028211535405 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.52731443626193, + 25.945028211535405 + ], + [ + -81.50737077683856, + 25.913702706113714 + ], + [ + -81.48742711741517, + 25.945028211535405 + ], + [ + -81.52731443626193, + 25.945028211535405 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.52731443626193, + 26.00767922237879 + ], + [ + -81.48742711741517, + 26.00767922237879 + ], + [ + -81.50737077683856, + 26.03900472780048 + ], + [ + -81.52731443626193, + 26.00767922237879 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.52731443626193, + 26.00767922237879 + ], + [ + -81.50737077683856, + 26.03900472780048 + ], + [ + -81.54725809568531, + 26.03900472780048 + ], + [ + -81.52731443626193, + 26.00767922237879 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.52731443626193, + 26.00767922237879 + ], + [ + -81.54725809568531, + 26.03900472780048 + ], + [ + -81.5672017551087, + 26.00767922237879 + ], + [ + -81.52731443626193, + 26.00767922237879 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.52731443626193, + 26.00767922237879 + ], + [ + -81.5672017551087, + 26.00767922237879 + ], + [ + -81.54725809568531, + 25.9763537169571 + ], + [ + -81.52731443626193, + 26.00767922237879 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.52731443626193, + 26.00767922237879 + ], + [ + -81.54725809568531, + 25.9763537169571 + ], + [ + -81.50737077683856, + 25.9763537169571 + ], + [ + -81.52731443626193, + 26.00767922237879 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.52731443626193, + 26.00767922237879 + ], + [ + -81.50737077683856, + 25.9763537169571 + ], + [ + -81.48742711741517, + 26.00767922237879 + ], + [ + -81.52731443626193, + 26.00767922237879 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.52731443626193, + 26.070330233222176 + ], + [ + -81.48742711741517, + 26.070330233222176 + ], + [ + -81.50737077683856, + 26.101655738643867 + ], + [ + -81.52731443626193, + 26.070330233222176 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.52731443626193, + 26.070330233222176 + ], + [ + -81.50737077683856, + 26.101655738643867 + ], + [ + -81.54725809568531, + 26.101655738643867 + ], + [ + -81.52731443626193, + 26.070330233222176 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.52731443626193, + 26.070330233222176 + ], + [ + -81.54725809568531, + 26.101655738643867 + ], + [ + -81.5672017551087, + 26.070330233222176 + ], + [ + -81.52731443626193, + 26.070330233222176 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.52731443626193, + 26.070330233222176 + ], + [ + -81.5672017551087, + 26.070330233222176 + ], + [ + -81.54725809568531, + 26.039004727800485 + ], + [ + -81.52731443626193, + 26.070330233222176 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.52731443626193, + 26.070330233222176 + ], + [ + -81.54725809568531, + 26.039004727800485 + ], + [ + -81.50737077683856, + 26.039004727800485 + ], + [ + -81.52731443626193, + 26.070330233222176 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.52731443626193, + 26.070330233222176 + ], + [ + -81.50737077683856, + 26.039004727800485 + ], + [ + -81.48742711741517, + 26.070330233222176 + ], + [ + -81.52731443626193, + 26.070330233222176 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.52731443626193, + 26.13298124406556 + ], + [ + -81.48742711741517, + 26.13298124406556 + ], + [ + -81.50737077683856, + 26.164306749487253 + ], + [ + -81.52731443626193, + 26.13298124406556 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.52731443626193, + 26.13298124406556 + ], + [ + -81.50737077683856, + 26.164306749487253 + ], + [ + -81.54725809568531, + 26.164306749487253 + ], + [ + -81.52731443626193, + 26.13298124406556 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.52731443626193, + 26.13298124406556 + ], + [ + -81.54725809568531, + 26.164306749487253 + ], + [ + -81.5672017551087, + 26.13298124406556 + ], + [ + -81.52731443626193, + 26.13298124406556 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.52731443626193, + 26.13298124406556 + ], + [ + -81.5672017551087, + 26.13298124406556 + ], + [ + -81.54725809568531, + 26.10165573864387 + ], + [ + -81.52731443626193, + 26.13298124406556 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.52731443626193, + 26.13298124406556 + ], + [ + -81.54725809568531, + 26.10165573864387 + ], + [ + -81.50737077683856, + 26.10165573864387 + ], + [ + -81.52731443626193, + 26.13298124406556 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.52731443626193, + 26.13298124406556 + ], + [ + -81.50737077683856, + 26.10165573864387 + ], + [ + -81.48742711741517, + 26.13298124406556 + ], + [ + -81.52731443626193, + 26.13298124406556 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.52731443626193, + 26.195632254908944 + ], + [ + -81.48742711741517, + 26.195632254908944 + ], + [ + -81.50737077683856, + 26.226957760330635 + ], + [ + -81.52731443626193, + 26.195632254908944 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.52731443626193, + 26.195632254908944 + ], + [ + -81.50737077683856, + 26.226957760330635 + ], + [ + -81.54725809568531, + 26.226957760330635 + ], + [ + -81.52731443626193, + 26.195632254908944 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.52731443626193, + 26.195632254908944 + ], + [ + -81.54725809568531, + 26.226957760330635 + ], + [ + -81.5672017551087, + 26.195632254908944 + ], + [ + -81.52731443626193, + 26.195632254908944 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.52731443626193, + 26.195632254908944 + ], + [ + -81.5672017551087, + 26.195632254908944 + ], + [ + -81.54725809568531, + 26.164306749487253 + ], + [ + -81.52731443626193, + 26.195632254908944 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.52731443626193, + 26.195632254908944 + ], + [ + -81.54725809568531, + 26.164306749487253 + ], + [ + -81.50737077683856, + 26.164306749487253 + ], + [ + -81.52731443626193, + 26.195632254908944 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.52731443626193, + 26.195632254908944 + ], + [ + -81.50737077683856, + 26.164306749487253 + ], + [ + -81.48742711741517, + 26.195632254908944 + ], + [ + -81.52731443626193, + 26.195632254908944 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.52731443626193, + 26.258283265752333 + ], + [ + -81.48742711741517, + 26.258283265752333 + ], + [ + -81.50737077683856, + 26.289608771174024 + ], + [ + -81.52731443626193, + 26.258283265752333 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.52731443626193, + 26.258283265752333 + ], + [ + -81.50737077683856, + 26.289608771174024 + ], + [ + -81.54725809568531, + 26.289608771174024 + ], + [ + -81.52731443626193, + 26.258283265752333 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.52731443626193, + 26.258283265752333 + ], + [ + -81.54725809568531, + 26.289608771174024 + ], + [ + -81.5672017551087, + 26.258283265752333 + ], + [ + -81.52731443626193, + 26.258283265752333 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.52731443626193, + 26.258283265752333 + ], + [ + -81.5672017551087, + 26.258283265752333 + ], + [ + -81.54725809568531, + 26.22695776033064 + ], + [ + -81.52731443626193, + 26.258283265752333 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.52731443626193, + 26.258283265752333 + ], + [ + -81.54725809568531, + 26.22695776033064 + ], + [ + -81.50737077683856, + 26.22695776033064 + ], + [ + -81.52731443626193, + 26.258283265752333 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.52731443626193, + 26.258283265752333 + ], + [ + -81.50737077683856, + 26.22695776033064 + ], + [ + -81.48742711741517, + 26.258283265752333 + ], + [ + -81.52731443626193, + 26.258283265752333 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.52731443626193, + 26.320934276595715 + ], + [ + -81.48742711741517, + 26.320934276595715 + ], + [ + -81.50737077683856, + 26.352259782017406 + ], + [ + -81.52731443626193, + 26.320934276595715 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.52731443626193, + 26.320934276595715 + ], + [ + -81.50737077683856, + 26.352259782017406 + ], + [ + -81.54725809568531, + 26.352259782017406 + ], + [ + -81.52731443626193, + 26.320934276595715 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.52731443626193, + 26.320934276595715 + ], + [ + -81.54725809568531, + 26.352259782017406 + ], + [ + -81.5672017551087, + 26.320934276595715 + ], + [ + -81.52731443626193, + 26.320934276595715 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.52731443626193, + 26.320934276595715 + ], + [ + -81.5672017551087, + 26.320934276595715 + ], + [ + -81.54725809568531, + 26.289608771174024 + ], + [ + -81.52731443626193, + 26.320934276595715 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.52731443626193, + 26.320934276595715 + ], + [ + -81.54725809568531, + 26.289608771174024 + ], + [ + -81.50737077683856, + 26.289608771174024 + ], + [ + -81.52731443626193, + 26.320934276595715 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.52731443626193, + 26.320934276595715 + ], + [ + -81.50737077683856, + 26.289608771174024 + ], + [ + -81.48742711741517, + 26.320934276595715 + ], + [ + -81.52731443626193, + 26.320934276595715 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.52731443626193, + 26.3835852874391 + ], + [ + -81.48742711741517, + 26.3835852874391 + ], + [ + -81.50737077683856, + 26.41491079286079 + ], + [ + -81.52731443626193, + 26.3835852874391 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.52731443626193, + 26.3835852874391 + ], + [ + -81.50737077683856, + 26.41491079286079 + ], + [ + -81.54725809568531, + 26.41491079286079 + ], + [ + -81.52731443626193, + 26.3835852874391 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.52731443626193, + 26.3835852874391 + ], + [ + -81.54725809568531, + 26.41491079286079 + ], + [ + -81.5672017551087, + 26.3835852874391 + ], + [ + -81.52731443626193, + 26.3835852874391 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.52731443626193, + 26.3835852874391 + ], + [ + -81.5672017551087, + 26.3835852874391 + ], + [ + -81.54725809568531, + 26.35225978201741 + ], + [ + -81.52731443626193, + 26.3835852874391 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.52731443626193, + 26.3835852874391 + ], + [ + -81.54725809568531, + 26.35225978201741 + ], + [ + -81.50737077683856, + 26.35225978201741 + ], + [ + -81.52731443626193, + 26.3835852874391 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.52731443626193, + 26.3835852874391 + ], + [ + -81.50737077683856, + 26.35225978201741 + ], + [ + -81.48742711741517, + 26.3835852874391 + ], + [ + -81.52731443626193, + 26.3835852874391 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.52731443626193, + 26.446236298282486 + ], + [ + -81.48742711741517, + 26.446236298282486 + ], + [ + -81.50737077683856, + 26.477561803704177 + ], + [ + -81.52731443626193, + 26.446236298282486 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.52731443626193, + 26.446236298282486 + ], + [ + -81.50737077683856, + 26.477561803704177 + ], + [ + -81.54725809568531, + 26.477561803704177 + ], + [ + -81.52731443626193, + 26.446236298282486 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.52731443626193, + 26.446236298282486 + ], + [ + -81.54725809568531, + 26.477561803704177 + ], + [ + -81.5672017551087, + 26.446236298282486 + ], + [ + -81.52731443626193, + 26.446236298282486 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.52731443626193, + 26.446236298282486 + ], + [ + -81.5672017551087, + 26.446236298282486 + ], + [ + -81.54725809568531, + 26.414910792860795 + ], + [ + -81.52731443626193, + 26.446236298282486 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.52731443626193, + 26.446236298282486 + ], + [ + -81.54725809568531, + 26.414910792860795 + ], + [ + -81.50737077683856, + 26.414910792860795 + ], + [ + -81.52731443626193, + 26.446236298282486 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.52731443626193, + 26.446236298282486 + ], + [ + -81.50737077683856, + 26.414910792860795 + ], + [ + -81.48742711741517, + 26.446236298282486 + ], + [ + -81.52731443626193, + 26.446236298282486 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.46748345799179, + 24.911286532619545 + ], + [ + -81.42759613914502, + 24.911286532619545 + ], + [ + -81.44753979856841, + 24.942612038041236 + ], + [ + -81.46748345799179, + 24.911286532619545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.46748345799179, + 24.911286532619545 + ], + [ + -81.44753979856841, + 24.942612038041236 + ], + [ + -81.48742711741517, + 24.942612038041236 + ], + [ + -81.46748345799179, + 24.911286532619545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.46748345799179, + 24.911286532619545 + ], + [ + -81.48742711741517, + 24.942612038041236 + ], + [ + -81.50737077683856, + 24.911286532619545 + ], + [ + -81.46748345799179, + 24.911286532619545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.46748345799179, + 24.911286532619545 + ], + [ + -81.50737077683856, + 24.911286532619545 + ], + [ + -81.48742711741517, + 24.879961027197854 + ], + [ + -81.46748345799179, + 24.911286532619545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.46748345799179, + 24.911286532619545 + ], + [ + -81.48742711741517, + 24.879961027197854 + ], + [ + -81.44753979856841, + 24.879961027197854 + ], + [ + -81.46748345799179, + 24.911286532619545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.46748345799179, + 24.911286532619545 + ], + [ + -81.44753979856841, + 24.879961027197854 + ], + [ + -81.42759613914502, + 24.911286532619545 + ], + [ + -81.46748345799179, + 24.911286532619545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.46748345799179, + 24.97393754346293 + ], + [ + -81.42759613914502, + 24.97393754346293 + ], + [ + -81.44753979856841, + 25.005263048884622 + ], + [ + -81.46748345799179, + 24.97393754346293 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.46748345799179, + 24.97393754346293 + ], + [ + -81.44753979856841, + 25.005263048884622 + ], + [ + -81.48742711741517, + 25.005263048884622 + ], + [ + -81.46748345799179, + 24.97393754346293 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.46748345799179, + 24.97393754346293 + ], + [ + -81.48742711741517, + 25.005263048884622 + ], + [ + -81.50737077683856, + 24.97393754346293 + ], + [ + -81.46748345799179, + 24.97393754346293 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.46748345799179, + 24.97393754346293 + ], + [ + -81.50737077683856, + 24.97393754346293 + ], + [ + -81.48742711741517, + 24.94261203804124 + ], + [ + -81.46748345799179, + 24.97393754346293 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.46748345799179, + 24.97393754346293 + ], + [ + -81.48742711741517, + 24.94261203804124 + ], + [ + -81.44753979856841, + 24.94261203804124 + ], + [ + -81.46748345799179, + 24.97393754346293 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.46748345799179, + 24.97393754346293 + ], + [ + -81.44753979856841, + 24.94261203804124 + ], + [ + -81.42759613914502, + 24.97393754346293 + ], + [ + -81.46748345799179, + 24.97393754346293 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.46748345799179, + 25.036588554306316 + ], + [ + -81.42759613914502, + 25.036588554306316 + ], + [ + -81.44753979856841, + 25.067914059728007 + ], + [ + -81.46748345799179, + 25.036588554306316 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.46748345799179, + 25.036588554306316 + ], + [ + -81.44753979856841, + 25.067914059728007 + ], + [ + -81.48742711741517, + 25.067914059728007 + ], + [ + -81.46748345799179, + 25.036588554306316 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.46748345799179, + 25.036588554306316 + ], + [ + -81.48742711741517, + 25.067914059728007 + ], + [ + -81.50737077683856, + 25.036588554306316 + ], + [ + -81.46748345799179, + 25.036588554306316 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.46748345799179, + 25.036588554306316 + ], + [ + -81.50737077683856, + 25.036588554306316 + ], + [ + -81.48742711741517, + 25.005263048884625 + ], + [ + -81.46748345799179, + 25.036588554306316 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.46748345799179, + 25.036588554306316 + ], + [ + -81.48742711741517, + 25.005263048884625 + ], + [ + -81.44753979856841, + 25.005263048884625 + ], + [ + -81.46748345799179, + 25.036588554306316 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.46748345799179, + 25.036588554306316 + ], + [ + -81.44753979856841, + 25.005263048884625 + ], + [ + -81.42759613914502, + 25.036588554306316 + ], + [ + -81.46748345799179, + 25.036588554306316 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.46748345799179, + 25.099239565149702 + ], + [ + -81.42759613914502, + 25.099239565149702 + ], + [ + -81.44753979856841, + 25.130565070571393 + ], + [ + -81.46748345799179, + 25.099239565149702 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.46748345799179, + 25.099239565149702 + ], + [ + -81.44753979856841, + 25.130565070571393 + ], + [ + -81.48742711741517, + 25.130565070571393 + ], + [ + -81.46748345799179, + 25.099239565149702 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.46748345799179, + 25.099239565149702 + ], + [ + -81.48742711741517, + 25.130565070571393 + ], + [ + -81.50737077683856, + 25.099239565149702 + ], + [ + -81.46748345799179, + 25.099239565149702 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.46748345799179, + 25.099239565149702 + ], + [ + -81.50737077683856, + 25.099239565149702 + ], + [ + -81.48742711741517, + 25.06791405972801 + ], + [ + -81.46748345799179, + 25.099239565149702 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.46748345799179, + 25.099239565149702 + ], + [ + -81.48742711741517, + 25.06791405972801 + ], + [ + -81.44753979856841, + 25.06791405972801 + ], + [ + -81.46748345799179, + 25.099239565149702 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.46748345799179, + 25.099239565149702 + ], + [ + -81.44753979856841, + 25.06791405972801 + ], + [ + -81.42759613914502, + 25.099239565149702 + ], + [ + -81.46748345799179, + 25.099239565149702 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.46748345799179, + 25.161890575993088 + ], + [ + -81.42759613914502, + 25.161890575993088 + ], + [ + -81.44753979856841, + 25.19321608141478 + ], + [ + -81.46748345799179, + 25.161890575993088 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.46748345799179, + 25.161890575993088 + ], + [ + -81.44753979856841, + 25.19321608141478 + ], + [ + -81.48742711741517, + 25.19321608141478 + ], + [ + -81.46748345799179, + 25.161890575993088 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.46748345799179, + 25.161890575993088 + ], + [ + -81.48742711741517, + 25.19321608141478 + ], + [ + -81.50737077683856, + 25.161890575993088 + ], + [ + -81.46748345799179, + 25.161890575993088 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.46748345799179, + 25.161890575993088 + ], + [ + -81.50737077683856, + 25.161890575993088 + ], + [ + -81.48742711741517, + 25.130565070571397 + ], + [ + -81.46748345799179, + 25.161890575993088 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.46748345799179, + 25.161890575993088 + ], + [ + -81.48742711741517, + 25.130565070571397 + ], + [ + -81.44753979856841, + 25.130565070571397 + ], + [ + -81.46748345799179, + 25.161890575993088 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.46748345799179, + 25.161890575993088 + ], + [ + -81.44753979856841, + 25.130565070571397 + ], + [ + -81.42759613914502, + 25.161890575993088 + ], + [ + -81.46748345799179, + 25.161890575993088 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.46748345799179, + 25.224541586836473 + ], + [ + -81.42759613914502, + 25.224541586836473 + ], + [ + -81.44753979856841, + 25.255867092258164 + ], + [ + -81.46748345799179, + 25.224541586836473 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.46748345799179, + 25.224541586836473 + ], + [ + -81.44753979856841, + 25.255867092258164 + ], + [ + -81.48742711741517, + 25.255867092258164 + ], + [ + -81.46748345799179, + 25.224541586836473 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.46748345799179, + 25.224541586836473 + ], + [ + -81.48742711741517, + 25.255867092258164 + ], + [ + -81.50737077683856, + 25.224541586836473 + ], + [ + -81.46748345799179, + 25.224541586836473 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.46748345799179, + 25.224541586836473 + ], + [ + -81.50737077683856, + 25.224541586836473 + ], + [ + -81.48742711741517, + 25.193216081414782 + ], + [ + -81.46748345799179, + 25.224541586836473 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.46748345799179, + 25.224541586836473 + ], + [ + -81.48742711741517, + 25.193216081414782 + ], + [ + -81.44753979856841, + 25.193216081414782 + ], + [ + -81.46748345799179, + 25.224541586836473 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.46748345799179, + 25.224541586836473 + ], + [ + -81.44753979856841, + 25.193216081414782 + ], + [ + -81.42759613914502, + 25.224541586836473 + ], + [ + -81.46748345799179, + 25.224541586836473 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.46748345799179, + 25.28719259767986 + ], + [ + -81.42759613914502, + 25.28719259767986 + ], + [ + -81.44753979856841, + 25.31851810310155 + ], + [ + -81.46748345799179, + 25.28719259767986 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.46748345799179, + 25.28719259767986 + ], + [ + -81.44753979856841, + 25.31851810310155 + ], + [ + -81.48742711741517, + 25.31851810310155 + ], + [ + -81.46748345799179, + 25.28719259767986 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.46748345799179, + 25.28719259767986 + ], + [ + -81.48742711741517, + 25.31851810310155 + ], + [ + -81.50737077683856, + 25.28719259767986 + ], + [ + -81.46748345799179, + 25.28719259767986 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.46748345799179, + 25.28719259767986 + ], + [ + -81.50737077683856, + 25.28719259767986 + ], + [ + -81.48742711741517, + 25.255867092258168 + ], + [ + -81.46748345799179, + 25.28719259767986 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.46748345799179, + 25.28719259767986 + ], + [ + -81.48742711741517, + 25.255867092258168 + ], + [ + -81.44753979856841, + 25.255867092258168 + ], + [ + -81.46748345799179, + 25.28719259767986 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.46748345799179, + 25.28719259767986 + ], + [ + -81.44753979856841, + 25.255867092258168 + ], + [ + -81.42759613914502, + 25.28719259767986 + ], + [ + -81.46748345799179, + 25.28719259767986 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.46748345799179, + 25.349843608523244 + ], + [ + -81.42759613914502, + 25.349843608523244 + ], + [ + -81.44753979856841, + 25.381169113944935 + ], + [ + -81.46748345799179, + 25.349843608523244 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.46748345799179, + 25.349843608523244 + ], + [ + -81.44753979856841, + 25.381169113944935 + ], + [ + -81.48742711741517, + 25.381169113944935 + ], + [ + -81.46748345799179, + 25.349843608523244 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.46748345799179, + 25.349843608523244 + ], + [ + -81.48742711741517, + 25.381169113944935 + ], + [ + -81.50737077683856, + 25.349843608523244 + ], + [ + -81.46748345799179, + 25.349843608523244 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.46748345799179, + 25.349843608523244 + ], + [ + -81.50737077683856, + 25.349843608523244 + ], + [ + -81.48742711741517, + 25.318518103101553 + ], + [ + -81.46748345799179, + 25.349843608523244 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.46748345799179, + 25.349843608523244 + ], + [ + -81.48742711741517, + 25.318518103101553 + ], + [ + -81.44753979856841, + 25.318518103101553 + ], + [ + -81.46748345799179, + 25.349843608523244 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.46748345799179, + 25.349843608523244 + ], + [ + -81.44753979856841, + 25.318518103101553 + ], + [ + -81.42759613914502, + 25.349843608523244 + ], + [ + -81.46748345799179, + 25.349843608523244 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.46748345799179, + 25.41249461936663 + ], + [ + -81.42759613914502, + 25.41249461936663 + ], + [ + -81.44753979856841, + 25.44382012478832 + ], + [ + -81.46748345799179, + 25.41249461936663 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.46748345799179, + 25.41249461936663 + ], + [ + -81.44753979856841, + 25.44382012478832 + ], + [ + -81.48742711741517, + 25.44382012478832 + ], + [ + -81.46748345799179, + 25.41249461936663 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.46748345799179, + 25.41249461936663 + ], + [ + -81.48742711741517, + 25.44382012478832 + ], + [ + -81.50737077683856, + 25.41249461936663 + ], + [ + -81.46748345799179, + 25.41249461936663 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.46748345799179, + 25.41249461936663 + ], + [ + -81.50737077683856, + 25.41249461936663 + ], + [ + -81.48742711741517, + 25.38116911394494 + ], + [ + -81.46748345799179, + 25.41249461936663 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.46748345799179, + 25.41249461936663 + ], + [ + -81.48742711741517, + 25.38116911394494 + ], + [ + -81.44753979856841, + 25.38116911394494 + ], + [ + -81.46748345799179, + 25.41249461936663 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.46748345799179, + 25.41249461936663 + ], + [ + -81.44753979856841, + 25.38116911394494 + ], + [ + -81.42759613914502, + 25.41249461936663 + ], + [ + -81.46748345799179, + 25.41249461936663 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.46748345799179, + 25.475145630210015 + ], + [ + -81.42759613914502, + 25.475145630210015 + ], + [ + -81.44753979856841, + 25.506471135631706 + ], + [ + -81.46748345799179, + 25.475145630210015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.46748345799179, + 25.475145630210015 + ], + [ + -81.44753979856841, + 25.506471135631706 + ], + [ + -81.48742711741517, + 25.506471135631706 + ], + [ + -81.46748345799179, + 25.475145630210015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.46748345799179, + 25.475145630210015 + ], + [ + -81.48742711741517, + 25.506471135631706 + ], + [ + -81.50737077683856, + 25.475145630210015 + ], + [ + -81.46748345799179, + 25.475145630210015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.46748345799179, + 25.475145630210015 + ], + [ + -81.50737077683856, + 25.475145630210015 + ], + [ + -81.48742711741517, + 25.443820124788324 + ], + [ + -81.46748345799179, + 25.475145630210015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.46748345799179, + 25.475145630210015 + ], + [ + -81.48742711741517, + 25.443820124788324 + ], + [ + -81.44753979856841, + 25.443820124788324 + ], + [ + -81.46748345799179, + 25.475145630210015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.46748345799179, + 25.475145630210015 + ], + [ + -81.44753979856841, + 25.443820124788324 + ], + [ + -81.42759613914502, + 25.475145630210015 + ], + [ + -81.46748345799179, + 25.475145630210015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.46748345799179, + 25.5377966410534 + ], + [ + -81.42759613914502, + 25.5377966410534 + ], + [ + -81.44753979856841, + 25.56912214647509 + ], + [ + -81.46748345799179, + 25.5377966410534 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.46748345799179, + 25.5377966410534 + ], + [ + -81.44753979856841, + 25.56912214647509 + ], + [ + -81.48742711741517, + 25.56912214647509 + ], + [ + -81.46748345799179, + 25.5377966410534 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.46748345799179, + 25.5377966410534 + ], + [ + -81.48742711741517, + 25.56912214647509 + ], + [ + -81.50737077683856, + 25.5377966410534 + ], + [ + -81.46748345799179, + 25.5377966410534 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.46748345799179, + 25.5377966410534 + ], + [ + -81.50737077683856, + 25.5377966410534 + ], + [ + -81.48742711741517, + 25.50647113563171 + ], + [ + -81.46748345799179, + 25.5377966410534 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.46748345799179, + 25.5377966410534 + ], + [ + -81.48742711741517, + 25.50647113563171 + ], + [ + -81.44753979856841, + 25.50647113563171 + ], + [ + -81.46748345799179, + 25.5377966410534 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.46748345799179, + 25.5377966410534 + ], + [ + -81.44753979856841, + 25.50647113563171 + ], + [ + -81.42759613914502, + 25.5377966410534 + ], + [ + -81.46748345799179, + 25.5377966410534 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.46748345799179, + 25.600447651896786 + ], + [ + -81.42759613914502, + 25.600447651896786 + ], + [ + -81.44753979856841, + 25.631773157318477 + ], + [ + -81.46748345799179, + 25.600447651896786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.46748345799179, + 25.600447651896786 + ], + [ + -81.44753979856841, + 25.631773157318477 + ], + [ + -81.48742711741517, + 25.631773157318477 + ], + [ + -81.46748345799179, + 25.600447651896786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.46748345799179, + 25.600447651896786 + ], + [ + -81.48742711741517, + 25.631773157318477 + ], + [ + -81.50737077683856, + 25.600447651896786 + ], + [ + -81.46748345799179, + 25.600447651896786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.46748345799179, + 25.600447651896786 + ], + [ + -81.50737077683856, + 25.600447651896786 + ], + [ + -81.48742711741517, + 25.569122146475095 + ], + [ + -81.46748345799179, + 25.600447651896786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.46748345799179, + 25.600447651896786 + ], + [ + -81.48742711741517, + 25.569122146475095 + ], + [ + -81.44753979856841, + 25.569122146475095 + ], + [ + -81.46748345799179, + 25.600447651896786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.46748345799179, + 25.600447651896786 + ], + [ + -81.44753979856841, + 25.569122146475095 + ], + [ + -81.42759613914502, + 25.600447651896786 + ], + [ + -81.46748345799179, + 25.600447651896786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.46748345799179, + 25.663098662740172 + ], + [ + -81.42759613914502, + 25.663098662740172 + ], + [ + -81.44753979856841, + 25.694424168161863 + ], + [ + -81.46748345799179, + 25.663098662740172 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.46748345799179, + 25.663098662740172 + ], + [ + -81.44753979856841, + 25.694424168161863 + ], + [ + -81.48742711741517, + 25.694424168161863 + ], + [ + -81.46748345799179, + 25.663098662740172 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.46748345799179, + 25.663098662740172 + ], + [ + -81.48742711741517, + 25.694424168161863 + ], + [ + -81.50737077683856, + 25.663098662740172 + ], + [ + -81.46748345799179, + 25.663098662740172 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.46748345799179, + 25.663098662740172 + ], + [ + -81.50737077683856, + 25.663098662740172 + ], + [ + -81.48742711741517, + 25.63177315731848 + ], + [ + -81.46748345799179, + 25.663098662740172 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.46748345799179, + 25.663098662740172 + ], + [ + -81.48742711741517, + 25.63177315731848 + ], + [ + -81.44753979856841, + 25.63177315731848 + ], + [ + -81.46748345799179, + 25.663098662740172 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.46748345799179, + 25.663098662740172 + ], + [ + -81.44753979856841, + 25.63177315731848 + ], + [ + -81.42759613914502, + 25.663098662740172 + ], + [ + -81.46748345799179, + 25.663098662740172 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.46748345799179, + 25.725749673583557 + ], + [ + -81.42759613914502, + 25.725749673583557 + ], + [ + -81.44753979856841, + 25.75707517900525 + ], + [ + -81.46748345799179, + 25.725749673583557 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.46748345799179, + 25.725749673583557 + ], + [ + -81.44753979856841, + 25.75707517900525 + ], + [ + -81.48742711741517, + 25.75707517900525 + ], + [ + -81.46748345799179, + 25.725749673583557 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.46748345799179, + 25.725749673583557 + ], + [ + -81.48742711741517, + 25.75707517900525 + ], + [ + -81.50737077683856, + 25.725749673583557 + ], + [ + -81.46748345799179, + 25.725749673583557 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.46748345799179, + 25.725749673583557 + ], + [ + -81.50737077683856, + 25.725749673583557 + ], + [ + -81.48742711741517, + 25.694424168161866 + ], + [ + -81.46748345799179, + 25.725749673583557 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.46748345799179, + 25.725749673583557 + ], + [ + -81.48742711741517, + 25.694424168161866 + ], + [ + -81.44753979856841, + 25.694424168161866 + ], + [ + -81.46748345799179, + 25.725749673583557 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.46748345799179, + 25.725749673583557 + ], + [ + -81.44753979856841, + 25.694424168161866 + ], + [ + -81.42759613914502, + 25.725749673583557 + ], + [ + -81.46748345799179, + 25.725749673583557 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.46748345799179, + 25.788400684426943 + ], + [ + -81.42759613914502, + 25.788400684426943 + ], + [ + -81.44753979856841, + 25.819726189848634 + ], + [ + -81.46748345799179, + 25.788400684426943 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.46748345799179, + 25.788400684426943 + ], + [ + -81.44753979856841, + 25.819726189848634 + ], + [ + -81.48742711741517, + 25.819726189848634 + ], + [ + -81.46748345799179, + 25.788400684426943 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.46748345799179, + 25.788400684426943 + ], + [ + -81.48742711741517, + 25.819726189848634 + ], + [ + -81.50737077683856, + 25.788400684426943 + ], + [ + -81.46748345799179, + 25.788400684426943 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.46748345799179, + 25.788400684426943 + ], + [ + -81.50737077683856, + 25.788400684426943 + ], + [ + -81.48742711741517, + 25.757075179005252 + ], + [ + -81.46748345799179, + 25.788400684426943 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.46748345799179, + 25.788400684426943 + ], + [ + -81.48742711741517, + 25.757075179005252 + ], + [ + -81.44753979856841, + 25.757075179005252 + ], + [ + -81.46748345799179, + 25.788400684426943 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.46748345799179, + 25.788400684426943 + ], + [ + -81.44753979856841, + 25.757075179005252 + ], + [ + -81.42759613914502, + 25.788400684426943 + ], + [ + -81.46748345799179, + 25.788400684426943 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.46748345799179, + 25.85105169527033 + ], + [ + -81.42759613914502, + 25.85105169527033 + ], + [ + -81.44753979856841, + 25.88237720069202 + ], + [ + -81.46748345799179, + 25.85105169527033 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.46748345799179, + 25.85105169527033 + ], + [ + -81.44753979856841, + 25.88237720069202 + ], + [ + -81.48742711741517, + 25.88237720069202 + ], + [ + -81.46748345799179, + 25.85105169527033 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.46748345799179, + 25.85105169527033 + ], + [ + -81.48742711741517, + 25.88237720069202 + ], + [ + -81.50737077683856, + 25.85105169527033 + ], + [ + -81.46748345799179, + 25.85105169527033 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.46748345799179, + 25.85105169527033 + ], + [ + -81.50737077683856, + 25.85105169527033 + ], + [ + -81.48742711741517, + 25.819726189848637 + ], + [ + -81.46748345799179, + 25.85105169527033 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.46748345799179, + 25.85105169527033 + ], + [ + -81.48742711741517, + 25.819726189848637 + ], + [ + -81.44753979856841, + 25.819726189848637 + ], + [ + -81.46748345799179, + 25.85105169527033 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.46748345799179, + 25.85105169527033 + ], + [ + -81.44753979856841, + 25.819726189848637 + ], + [ + -81.42759613914502, + 25.85105169527033 + ], + [ + -81.46748345799179, + 25.85105169527033 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.46748345799179, + 25.913702706113714 + ], + [ + -81.42759613914502, + 25.913702706113714 + ], + [ + -81.44753979856841, + 25.945028211535405 + ], + [ + -81.46748345799179, + 25.913702706113714 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.46748345799179, + 25.913702706113714 + ], + [ + -81.44753979856841, + 25.945028211535405 + ], + [ + -81.48742711741517, + 25.945028211535405 + ], + [ + -81.46748345799179, + 25.913702706113714 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.46748345799179, + 25.913702706113714 + ], + [ + -81.48742711741517, + 25.945028211535405 + ], + [ + -81.50737077683856, + 25.913702706113714 + ], + [ + -81.46748345799179, + 25.913702706113714 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.46748345799179, + 25.913702706113714 + ], + [ + -81.50737077683856, + 25.913702706113714 + ], + [ + -81.48742711741517, + 25.882377200692023 + ], + [ + -81.46748345799179, + 25.913702706113714 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.46748345799179, + 25.913702706113714 + ], + [ + -81.48742711741517, + 25.882377200692023 + ], + [ + -81.44753979856841, + 25.882377200692023 + ], + [ + -81.46748345799179, + 25.913702706113714 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.46748345799179, + 25.913702706113714 + ], + [ + -81.44753979856841, + 25.882377200692023 + ], + [ + -81.42759613914502, + 25.913702706113714 + ], + [ + -81.46748345799179, + 25.913702706113714 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.46748345799179, + 25.9763537169571 + ], + [ + -81.42759613914502, + 25.9763537169571 + ], + [ + -81.44753979856841, + 26.00767922237879 + ], + [ + -81.46748345799179, + 25.9763537169571 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.46748345799179, + 25.9763537169571 + ], + [ + -81.44753979856841, + 26.00767922237879 + ], + [ + -81.48742711741517, + 26.00767922237879 + ], + [ + -81.46748345799179, + 25.9763537169571 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.46748345799179, + 25.9763537169571 + ], + [ + -81.48742711741517, + 26.00767922237879 + ], + [ + -81.50737077683856, + 25.9763537169571 + ], + [ + -81.46748345799179, + 25.9763537169571 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.46748345799179, + 25.9763537169571 + ], + [ + -81.50737077683856, + 25.9763537169571 + ], + [ + -81.48742711741517, + 25.94502821153541 + ], + [ + -81.46748345799179, + 25.9763537169571 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.46748345799179, + 25.9763537169571 + ], + [ + -81.48742711741517, + 25.94502821153541 + ], + [ + -81.44753979856841, + 25.94502821153541 + ], + [ + -81.46748345799179, + 25.9763537169571 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.46748345799179, + 25.9763537169571 + ], + [ + -81.44753979856841, + 25.94502821153541 + ], + [ + -81.42759613914502, + 25.9763537169571 + ], + [ + -81.46748345799179, + 25.9763537169571 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.46748345799179, + 26.039004727800485 + ], + [ + -81.42759613914502, + 26.039004727800485 + ], + [ + -81.44753979856841, + 26.070330233222176 + ], + [ + -81.46748345799179, + 26.039004727800485 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.46748345799179, + 26.039004727800485 + ], + [ + -81.44753979856841, + 26.070330233222176 + ], + [ + -81.48742711741517, + 26.070330233222176 + ], + [ + -81.46748345799179, + 26.039004727800485 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.46748345799179, + 26.039004727800485 + ], + [ + -81.48742711741517, + 26.070330233222176 + ], + [ + -81.50737077683856, + 26.039004727800485 + ], + [ + -81.46748345799179, + 26.039004727800485 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.46748345799179, + 26.039004727800485 + ], + [ + -81.50737077683856, + 26.039004727800485 + ], + [ + -81.48742711741517, + 26.007679222378794 + ], + [ + -81.46748345799179, + 26.039004727800485 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.46748345799179, + 26.039004727800485 + ], + [ + -81.48742711741517, + 26.007679222378794 + ], + [ + -81.44753979856841, + 26.007679222378794 + ], + [ + -81.46748345799179, + 26.039004727800485 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.46748345799179, + 26.039004727800485 + ], + [ + -81.44753979856841, + 26.007679222378794 + ], + [ + -81.42759613914502, + 26.039004727800485 + ], + [ + -81.46748345799179, + 26.039004727800485 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.46748345799179, + 26.10165573864387 + ], + [ + -81.42759613914502, + 26.10165573864387 + ], + [ + -81.44753979856841, + 26.13298124406556 + ], + [ + -81.46748345799179, + 26.10165573864387 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.46748345799179, + 26.10165573864387 + ], + [ + -81.44753979856841, + 26.13298124406556 + ], + [ + -81.48742711741517, + 26.13298124406556 + ], + [ + -81.46748345799179, + 26.10165573864387 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.46748345799179, + 26.10165573864387 + ], + [ + -81.48742711741517, + 26.13298124406556 + ], + [ + -81.50737077683856, + 26.10165573864387 + ], + [ + -81.46748345799179, + 26.10165573864387 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.46748345799179, + 26.10165573864387 + ], + [ + -81.50737077683856, + 26.10165573864387 + ], + [ + -81.48742711741517, + 26.07033023322218 + ], + [ + -81.46748345799179, + 26.10165573864387 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.46748345799179, + 26.10165573864387 + ], + [ + -81.48742711741517, + 26.07033023322218 + ], + [ + -81.44753979856841, + 26.07033023322218 + ], + [ + -81.46748345799179, + 26.10165573864387 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.46748345799179, + 26.10165573864387 + ], + [ + -81.44753979856841, + 26.07033023322218 + ], + [ + -81.42759613914502, + 26.10165573864387 + ], + [ + -81.46748345799179, + 26.10165573864387 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.46748345799179, + 26.164306749487253 + ], + [ + -81.42759613914502, + 26.164306749487253 + ], + [ + -81.44753979856841, + 26.195632254908944 + ], + [ + -81.46748345799179, + 26.164306749487253 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.46748345799179, + 26.164306749487253 + ], + [ + -81.44753979856841, + 26.195632254908944 + ], + [ + -81.48742711741517, + 26.195632254908944 + ], + [ + -81.46748345799179, + 26.164306749487253 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.46748345799179, + 26.164306749487253 + ], + [ + -81.48742711741517, + 26.195632254908944 + ], + [ + -81.50737077683856, + 26.164306749487253 + ], + [ + -81.46748345799179, + 26.164306749487253 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.46748345799179, + 26.164306749487253 + ], + [ + -81.50737077683856, + 26.164306749487253 + ], + [ + -81.48742711741517, + 26.13298124406556 + ], + [ + -81.46748345799179, + 26.164306749487253 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.46748345799179, + 26.164306749487253 + ], + [ + -81.48742711741517, + 26.13298124406556 + ], + [ + -81.44753979856841, + 26.13298124406556 + ], + [ + -81.46748345799179, + 26.164306749487253 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.46748345799179, + 26.164306749487253 + ], + [ + -81.44753979856841, + 26.13298124406556 + ], + [ + -81.42759613914502, + 26.164306749487253 + ], + [ + -81.46748345799179, + 26.164306749487253 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.46748345799179, + 26.22695776033064 + ], + [ + -81.42759613914502, + 26.22695776033064 + ], + [ + -81.44753979856841, + 26.258283265752333 + ], + [ + -81.46748345799179, + 26.22695776033064 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.46748345799179, + 26.22695776033064 + ], + [ + -81.44753979856841, + 26.258283265752333 + ], + [ + -81.48742711741517, + 26.258283265752333 + ], + [ + -81.46748345799179, + 26.22695776033064 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.46748345799179, + 26.22695776033064 + ], + [ + -81.48742711741517, + 26.258283265752333 + ], + [ + -81.50737077683856, + 26.22695776033064 + ], + [ + -81.46748345799179, + 26.22695776033064 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.46748345799179, + 26.22695776033064 + ], + [ + -81.50737077683856, + 26.22695776033064 + ], + [ + -81.48742711741517, + 26.19563225490895 + ], + [ + -81.46748345799179, + 26.22695776033064 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.46748345799179, + 26.22695776033064 + ], + [ + -81.48742711741517, + 26.19563225490895 + ], + [ + -81.44753979856841, + 26.19563225490895 + ], + [ + -81.46748345799179, + 26.22695776033064 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.46748345799179, + 26.22695776033064 + ], + [ + -81.44753979856841, + 26.19563225490895 + ], + [ + -81.42759613914502, + 26.22695776033064 + ], + [ + -81.46748345799179, + 26.22695776033064 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.46748345799179, + 26.289608771174024 + ], + [ + -81.42759613914502, + 26.289608771174024 + ], + [ + -81.44753979856841, + 26.320934276595715 + ], + [ + -81.46748345799179, + 26.289608771174024 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.46748345799179, + 26.289608771174024 + ], + [ + -81.44753979856841, + 26.320934276595715 + ], + [ + -81.48742711741517, + 26.320934276595715 + ], + [ + -81.46748345799179, + 26.289608771174024 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.46748345799179, + 26.289608771174024 + ], + [ + -81.48742711741517, + 26.320934276595715 + ], + [ + -81.50737077683856, + 26.289608771174024 + ], + [ + -81.46748345799179, + 26.289608771174024 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.46748345799179, + 26.289608771174024 + ], + [ + -81.50737077683856, + 26.289608771174024 + ], + [ + -81.48742711741517, + 26.258283265752333 + ], + [ + -81.46748345799179, + 26.289608771174024 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.46748345799179, + 26.289608771174024 + ], + [ + -81.48742711741517, + 26.258283265752333 + ], + [ + -81.44753979856841, + 26.258283265752333 + ], + [ + -81.46748345799179, + 26.289608771174024 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.46748345799179, + 26.289608771174024 + ], + [ + -81.44753979856841, + 26.258283265752333 + ], + [ + -81.42759613914502, + 26.289608771174024 + ], + [ + -81.46748345799179, + 26.289608771174024 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.46748345799179, + 26.35225978201741 + ], + [ + -81.42759613914502, + 26.35225978201741 + ], + [ + -81.44753979856841, + 26.3835852874391 + ], + [ + -81.46748345799179, + 26.35225978201741 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.46748345799179, + 26.35225978201741 + ], + [ + -81.44753979856841, + 26.3835852874391 + ], + [ + -81.48742711741517, + 26.3835852874391 + ], + [ + -81.46748345799179, + 26.35225978201741 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.46748345799179, + 26.35225978201741 + ], + [ + -81.48742711741517, + 26.3835852874391 + ], + [ + -81.50737077683856, + 26.35225978201741 + ], + [ + -81.46748345799179, + 26.35225978201741 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.46748345799179, + 26.35225978201741 + ], + [ + -81.50737077683856, + 26.35225978201741 + ], + [ + -81.48742711741517, + 26.320934276595718 + ], + [ + -81.46748345799179, + 26.35225978201741 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.46748345799179, + 26.35225978201741 + ], + [ + -81.48742711741517, + 26.320934276595718 + ], + [ + -81.44753979856841, + 26.320934276595718 + ], + [ + -81.46748345799179, + 26.35225978201741 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.46748345799179, + 26.35225978201741 + ], + [ + -81.44753979856841, + 26.320934276595718 + ], + [ + -81.42759613914502, + 26.35225978201741 + ], + [ + -81.46748345799179, + 26.35225978201741 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.46748345799179, + 26.414910792860795 + ], + [ + -81.42759613914502, + 26.414910792860795 + ], + [ + -81.44753979856841, + 26.446236298282486 + ], + [ + -81.46748345799179, + 26.414910792860795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.46748345799179, + 26.414910792860795 + ], + [ + -81.44753979856841, + 26.446236298282486 + ], + [ + -81.48742711741517, + 26.446236298282486 + ], + [ + -81.46748345799179, + 26.414910792860795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.46748345799179, + 26.414910792860795 + ], + [ + -81.48742711741517, + 26.446236298282486 + ], + [ + -81.50737077683856, + 26.414910792860795 + ], + [ + -81.46748345799179, + 26.414910792860795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.46748345799179, + 26.414910792860795 + ], + [ + -81.50737077683856, + 26.414910792860795 + ], + [ + -81.48742711741517, + 26.383585287439104 + ], + [ + -81.46748345799179, + 26.414910792860795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.46748345799179, + 26.414910792860795 + ], + [ + -81.48742711741517, + 26.383585287439104 + ], + [ + -81.44753979856841, + 26.383585287439104 + ], + [ + -81.46748345799179, + 26.414910792860795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.46748345799179, + 26.414910792860795 + ], + [ + -81.44753979856841, + 26.383585287439104 + ], + [ + -81.42759613914502, + 26.414910792860795 + ], + [ + -81.46748345799179, + 26.414910792860795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.40765247972163, + 24.942612038041236 + ], + [ + -81.36776516087487, + 24.942612038041236 + ], + [ + -81.38770882029826, + 24.973937543462927 + ], + [ + -81.40765247972163, + 24.942612038041236 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.40765247972163, + 24.942612038041236 + ], + [ + -81.38770882029826, + 24.973937543462927 + ], + [ + -81.42759613914501, + 24.973937543462927 + ], + [ + -81.40765247972163, + 24.942612038041236 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.40765247972163, + 24.942612038041236 + ], + [ + -81.42759613914501, + 24.973937543462927 + ], + [ + -81.4475397985684, + 24.942612038041236 + ], + [ + -81.40765247972163, + 24.942612038041236 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.40765247972163, + 24.942612038041236 + ], + [ + -81.4475397985684, + 24.942612038041236 + ], + [ + -81.42759613914501, + 24.911286532619545 + ], + [ + -81.40765247972163, + 24.942612038041236 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.40765247972163, + 24.942612038041236 + ], + [ + -81.42759613914501, + 24.911286532619545 + ], + [ + -81.38770882029826, + 24.911286532619545 + ], + [ + -81.40765247972163, + 24.942612038041236 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.40765247972163, + 24.942612038041236 + ], + [ + -81.38770882029826, + 24.911286532619545 + ], + [ + -81.36776516087487, + 24.942612038041236 + ], + [ + -81.40765247972163, + 24.942612038041236 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.40765247972163, + 25.005263048884622 + ], + [ + -81.36776516087487, + 25.005263048884622 + ], + [ + -81.38770882029826, + 25.036588554306313 + ], + [ + -81.40765247972163, + 25.005263048884622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.40765247972163, + 25.005263048884622 + ], + [ + -81.38770882029826, + 25.036588554306313 + ], + [ + -81.42759613914501, + 25.036588554306313 + ], + [ + -81.40765247972163, + 25.005263048884622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.40765247972163, + 25.005263048884622 + ], + [ + -81.42759613914501, + 25.036588554306313 + ], + [ + -81.4475397985684, + 25.005263048884622 + ], + [ + -81.40765247972163, + 25.005263048884622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.40765247972163, + 25.005263048884622 + ], + [ + -81.4475397985684, + 25.005263048884622 + ], + [ + -81.42759613914501, + 24.97393754346293 + ], + [ + -81.40765247972163, + 25.005263048884622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.40765247972163, + 25.005263048884622 + ], + [ + -81.42759613914501, + 24.97393754346293 + ], + [ + -81.38770882029826, + 24.97393754346293 + ], + [ + -81.40765247972163, + 25.005263048884622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.40765247972163, + 25.005263048884622 + ], + [ + -81.38770882029826, + 24.97393754346293 + ], + [ + -81.36776516087487, + 25.005263048884622 + ], + [ + -81.40765247972163, + 25.005263048884622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.40765247972163, + 25.067914059728007 + ], + [ + -81.36776516087487, + 25.067914059728007 + ], + [ + -81.38770882029826, + 25.0992395651497 + ], + [ + -81.40765247972163, + 25.067914059728007 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.40765247972163, + 25.067914059728007 + ], + [ + -81.38770882029826, + 25.0992395651497 + ], + [ + -81.42759613914501, + 25.0992395651497 + ], + [ + -81.40765247972163, + 25.067914059728007 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.40765247972163, + 25.067914059728007 + ], + [ + -81.42759613914501, + 25.0992395651497 + ], + [ + -81.4475397985684, + 25.067914059728007 + ], + [ + -81.40765247972163, + 25.067914059728007 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.40765247972163, + 25.067914059728007 + ], + [ + -81.4475397985684, + 25.067914059728007 + ], + [ + -81.42759613914501, + 25.036588554306316 + ], + [ + -81.40765247972163, + 25.067914059728007 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.40765247972163, + 25.067914059728007 + ], + [ + -81.42759613914501, + 25.036588554306316 + ], + [ + -81.38770882029826, + 25.036588554306316 + ], + [ + -81.40765247972163, + 25.067914059728007 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.40765247972163, + 25.067914059728007 + ], + [ + -81.38770882029826, + 25.036588554306316 + ], + [ + -81.36776516087487, + 25.067914059728007 + ], + [ + -81.40765247972163, + 25.067914059728007 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.40765247972163, + 25.130565070571393 + ], + [ + -81.36776516087487, + 25.130565070571393 + ], + [ + -81.38770882029826, + 25.161890575993084 + ], + [ + -81.40765247972163, + 25.130565070571393 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.40765247972163, + 25.130565070571393 + ], + [ + -81.38770882029826, + 25.161890575993084 + ], + [ + -81.42759613914501, + 25.161890575993084 + ], + [ + -81.40765247972163, + 25.130565070571393 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.40765247972163, + 25.130565070571393 + ], + [ + -81.42759613914501, + 25.161890575993084 + ], + [ + -81.4475397985684, + 25.130565070571393 + ], + [ + -81.40765247972163, + 25.130565070571393 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.40765247972163, + 25.130565070571393 + ], + [ + -81.4475397985684, + 25.130565070571393 + ], + [ + -81.42759613914501, + 25.099239565149702 + ], + [ + -81.40765247972163, + 25.130565070571393 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.40765247972163, + 25.130565070571393 + ], + [ + -81.42759613914501, + 25.099239565149702 + ], + [ + -81.38770882029826, + 25.099239565149702 + ], + [ + -81.40765247972163, + 25.130565070571393 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.40765247972163, + 25.130565070571393 + ], + [ + -81.38770882029826, + 25.099239565149702 + ], + [ + -81.36776516087487, + 25.130565070571393 + ], + [ + -81.40765247972163, + 25.130565070571393 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.40765247972163, + 25.19321608141478 + ], + [ + -81.36776516087487, + 25.19321608141478 + ], + [ + -81.38770882029826, + 25.22454158683647 + ], + [ + -81.40765247972163, + 25.19321608141478 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.40765247972163, + 25.19321608141478 + ], + [ + -81.38770882029826, + 25.22454158683647 + ], + [ + -81.42759613914501, + 25.22454158683647 + ], + [ + -81.40765247972163, + 25.19321608141478 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.40765247972163, + 25.19321608141478 + ], + [ + -81.42759613914501, + 25.22454158683647 + ], + [ + -81.4475397985684, + 25.19321608141478 + ], + [ + -81.40765247972163, + 25.19321608141478 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.40765247972163, + 25.19321608141478 + ], + [ + -81.4475397985684, + 25.19321608141478 + ], + [ + -81.42759613914501, + 25.161890575993088 + ], + [ + -81.40765247972163, + 25.19321608141478 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.40765247972163, + 25.19321608141478 + ], + [ + -81.42759613914501, + 25.161890575993088 + ], + [ + -81.38770882029826, + 25.161890575993088 + ], + [ + -81.40765247972163, + 25.19321608141478 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.40765247972163, + 25.19321608141478 + ], + [ + -81.38770882029826, + 25.161890575993088 + ], + [ + -81.36776516087487, + 25.19321608141478 + ], + [ + -81.40765247972163, + 25.19321608141478 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.40765247972163, + 25.255867092258164 + ], + [ + -81.36776516087487, + 25.255867092258164 + ], + [ + -81.38770882029826, + 25.287192597679855 + ], + [ + -81.40765247972163, + 25.255867092258164 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.40765247972163, + 25.255867092258164 + ], + [ + -81.38770882029826, + 25.287192597679855 + ], + [ + -81.42759613914501, + 25.287192597679855 + ], + [ + -81.40765247972163, + 25.255867092258164 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.40765247972163, + 25.255867092258164 + ], + [ + -81.42759613914501, + 25.287192597679855 + ], + [ + -81.4475397985684, + 25.255867092258164 + ], + [ + -81.40765247972163, + 25.255867092258164 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.40765247972163, + 25.255867092258164 + ], + [ + -81.4475397985684, + 25.255867092258164 + ], + [ + -81.42759613914501, + 25.224541586836473 + ], + [ + -81.40765247972163, + 25.255867092258164 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.40765247972163, + 25.255867092258164 + ], + [ + -81.42759613914501, + 25.224541586836473 + ], + [ + -81.38770882029826, + 25.224541586836473 + ], + [ + -81.40765247972163, + 25.255867092258164 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.40765247972163, + 25.255867092258164 + ], + [ + -81.38770882029826, + 25.224541586836473 + ], + [ + -81.36776516087487, + 25.255867092258164 + ], + [ + -81.40765247972163, + 25.255867092258164 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.40765247972163, + 25.31851810310155 + ], + [ + -81.36776516087487, + 25.31851810310155 + ], + [ + -81.38770882029826, + 25.34984360852324 + ], + [ + -81.40765247972163, + 25.31851810310155 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.40765247972163, + 25.31851810310155 + ], + [ + -81.38770882029826, + 25.34984360852324 + ], + [ + -81.42759613914501, + 25.34984360852324 + ], + [ + -81.40765247972163, + 25.31851810310155 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.40765247972163, + 25.31851810310155 + ], + [ + -81.42759613914501, + 25.34984360852324 + ], + [ + -81.4475397985684, + 25.31851810310155 + ], + [ + -81.40765247972163, + 25.31851810310155 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.40765247972163, + 25.31851810310155 + ], + [ + -81.4475397985684, + 25.31851810310155 + ], + [ + -81.42759613914501, + 25.28719259767986 + ], + [ + -81.40765247972163, + 25.31851810310155 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.40765247972163, + 25.31851810310155 + ], + [ + -81.42759613914501, + 25.28719259767986 + ], + [ + -81.38770882029826, + 25.28719259767986 + ], + [ + -81.40765247972163, + 25.31851810310155 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.40765247972163, + 25.31851810310155 + ], + [ + -81.38770882029826, + 25.28719259767986 + ], + [ + -81.36776516087487, + 25.31851810310155 + ], + [ + -81.40765247972163, + 25.31851810310155 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.40765247972163, + 25.381169113944935 + ], + [ + -81.36776516087487, + 25.381169113944935 + ], + [ + -81.38770882029826, + 25.412494619366626 + ], + [ + -81.40765247972163, + 25.381169113944935 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.40765247972163, + 25.381169113944935 + ], + [ + -81.38770882029826, + 25.412494619366626 + ], + [ + -81.42759613914501, + 25.412494619366626 + ], + [ + -81.40765247972163, + 25.381169113944935 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.40765247972163, + 25.381169113944935 + ], + [ + -81.42759613914501, + 25.412494619366626 + ], + [ + -81.4475397985684, + 25.381169113944935 + ], + [ + -81.40765247972163, + 25.381169113944935 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.40765247972163, + 25.381169113944935 + ], + [ + -81.4475397985684, + 25.381169113944935 + ], + [ + -81.42759613914501, + 25.349843608523244 + ], + [ + -81.40765247972163, + 25.381169113944935 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.40765247972163, + 25.381169113944935 + ], + [ + -81.42759613914501, + 25.349843608523244 + ], + [ + -81.38770882029826, + 25.349843608523244 + ], + [ + -81.40765247972163, + 25.381169113944935 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.40765247972163, + 25.381169113944935 + ], + [ + -81.38770882029826, + 25.349843608523244 + ], + [ + -81.36776516087487, + 25.381169113944935 + ], + [ + -81.40765247972163, + 25.381169113944935 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.40765247972163, + 25.44382012478832 + ], + [ + -81.36776516087487, + 25.44382012478832 + ], + [ + -81.38770882029826, + 25.47514563021001 + ], + [ + -81.40765247972163, + 25.44382012478832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.40765247972163, + 25.44382012478832 + ], + [ + -81.38770882029826, + 25.47514563021001 + ], + [ + -81.42759613914501, + 25.47514563021001 + ], + [ + -81.40765247972163, + 25.44382012478832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.40765247972163, + 25.44382012478832 + ], + [ + -81.42759613914501, + 25.47514563021001 + ], + [ + -81.4475397985684, + 25.44382012478832 + ], + [ + -81.40765247972163, + 25.44382012478832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.40765247972163, + 25.44382012478832 + ], + [ + -81.4475397985684, + 25.44382012478832 + ], + [ + -81.42759613914501, + 25.41249461936663 + ], + [ + -81.40765247972163, + 25.44382012478832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.40765247972163, + 25.44382012478832 + ], + [ + -81.42759613914501, + 25.41249461936663 + ], + [ + -81.38770882029826, + 25.41249461936663 + ], + [ + -81.40765247972163, + 25.44382012478832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.40765247972163, + 25.44382012478832 + ], + [ + -81.38770882029826, + 25.41249461936663 + ], + [ + -81.36776516087487, + 25.44382012478832 + ], + [ + -81.40765247972163, + 25.44382012478832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.40765247972163, + 25.506471135631706 + ], + [ + -81.36776516087487, + 25.506471135631706 + ], + [ + -81.38770882029826, + 25.537796641053397 + ], + [ + -81.40765247972163, + 25.506471135631706 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.40765247972163, + 25.506471135631706 + ], + [ + -81.38770882029826, + 25.537796641053397 + ], + [ + -81.42759613914501, + 25.537796641053397 + ], + [ + -81.40765247972163, + 25.506471135631706 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.40765247972163, + 25.506471135631706 + ], + [ + -81.42759613914501, + 25.537796641053397 + ], + [ + -81.4475397985684, + 25.506471135631706 + ], + [ + -81.40765247972163, + 25.506471135631706 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.40765247972163, + 25.506471135631706 + ], + [ + -81.4475397985684, + 25.506471135631706 + ], + [ + -81.42759613914501, + 25.475145630210015 + ], + [ + -81.40765247972163, + 25.506471135631706 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.40765247972163, + 25.506471135631706 + ], + [ + -81.42759613914501, + 25.475145630210015 + ], + [ + -81.38770882029826, + 25.475145630210015 + ], + [ + -81.40765247972163, + 25.506471135631706 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.40765247972163, + 25.506471135631706 + ], + [ + -81.38770882029826, + 25.475145630210015 + ], + [ + -81.36776516087487, + 25.506471135631706 + ], + [ + -81.40765247972163, + 25.506471135631706 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.40765247972163, + 25.56912214647509 + ], + [ + -81.36776516087487, + 25.56912214647509 + ], + [ + -81.38770882029826, + 25.600447651896783 + ], + [ + -81.40765247972163, + 25.56912214647509 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.40765247972163, + 25.56912214647509 + ], + [ + -81.38770882029826, + 25.600447651896783 + ], + [ + -81.42759613914501, + 25.600447651896783 + ], + [ + -81.40765247972163, + 25.56912214647509 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.40765247972163, + 25.56912214647509 + ], + [ + -81.42759613914501, + 25.600447651896783 + ], + [ + -81.4475397985684, + 25.56912214647509 + ], + [ + -81.40765247972163, + 25.56912214647509 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.40765247972163, + 25.56912214647509 + ], + [ + -81.4475397985684, + 25.56912214647509 + ], + [ + -81.42759613914501, + 25.5377966410534 + ], + [ + -81.40765247972163, + 25.56912214647509 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.40765247972163, + 25.56912214647509 + ], + [ + -81.42759613914501, + 25.5377966410534 + ], + [ + -81.38770882029826, + 25.5377966410534 + ], + [ + -81.40765247972163, + 25.56912214647509 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.40765247972163, + 25.56912214647509 + ], + [ + -81.38770882029826, + 25.5377966410534 + ], + [ + -81.36776516087487, + 25.56912214647509 + ], + [ + -81.40765247972163, + 25.56912214647509 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.40765247972163, + 25.631773157318477 + ], + [ + -81.36776516087487, + 25.631773157318477 + ], + [ + -81.38770882029826, + 25.66309866274017 + ], + [ + -81.40765247972163, + 25.631773157318477 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.40765247972163, + 25.631773157318477 + ], + [ + -81.38770882029826, + 25.66309866274017 + ], + [ + -81.42759613914501, + 25.66309866274017 + ], + [ + -81.40765247972163, + 25.631773157318477 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.40765247972163, + 25.631773157318477 + ], + [ + -81.42759613914501, + 25.66309866274017 + ], + [ + -81.4475397985684, + 25.631773157318477 + ], + [ + -81.40765247972163, + 25.631773157318477 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.40765247972163, + 25.631773157318477 + ], + [ + -81.4475397985684, + 25.631773157318477 + ], + [ + -81.42759613914501, + 25.600447651896786 + ], + [ + -81.40765247972163, + 25.631773157318477 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.40765247972163, + 25.631773157318477 + ], + [ + -81.42759613914501, + 25.600447651896786 + ], + [ + -81.38770882029826, + 25.600447651896786 + ], + [ + -81.40765247972163, + 25.631773157318477 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.40765247972163, + 25.631773157318477 + ], + [ + -81.38770882029826, + 25.600447651896786 + ], + [ + -81.36776516087487, + 25.631773157318477 + ], + [ + -81.40765247972163, + 25.631773157318477 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.40765247972163, + 25.694424168161863 + ], + [ + -81.36776516087487, + 25.694424168161863 + ], + [ + -81.38770882029826, + 25.725749673583554 + ], + [ + -81.40765247972163, + 25.694424168161863 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.40765247972163, + 25.694424168161863 + ], + [ + -81.38770882029826, + 25.725749673583554 + ], + [ + -81.42759613914501, + 25.725749673583554 + ], + [ + -81.40765247972163, + 25.694424168161863 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.40765247972163, + 25.694424168161863 + ], + [ + -81.42759613914501, + 25.725749673583554 + ], + [ + -81.4475397985684, + 25.694424168161863 + ], + [ + -81.40765247972163, + 25.694424168161863 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.40765247972163, + 25.694424168161863 + ], + [ + -81.4475397985684, + 25.694424168161863 + ], + [ + -81.42759613914501, + 25.663098662740172 + ], + [ + -81.40765247972163, + 25.694424168161863 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.40765247972163, + 25.694424168161863 + ], + [ + -81.42759613914501, + 25.663098662740172 + ], + [ + -81.38770882029826, + 25.663098662740172 + ], + [ + -81.40765247972163, + 25.694424168161863 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.40765247972163, + 25.694424168161863 + ], + [ + -81.38770882029826, + 25.663098662740172 + ], + [ + -81.36776516087487, + 25.694424168161863 + ], + [ + -81.40765247972163, + 25.694424168161863 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.40765247972163, + 25.75707517900525 + ], + [ + -81.36776516087487, + 25.75707517900525 + ], + [ + -81.38770882029826, + 25.78840068442694 + ], + [ + -81.40765247972163, + 25.75707517900525 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.40765247972163, + 25.75707517900525 + ], + [ + -81.38770882029826, + 25.78840068442694 + ], + [ + -81.42759613914501, + 25.78840068442694 + ], + [ + -81.40765247972163, + 25.75707517900525 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.40765247972163, + 25.75707517900525 + ], + [ + -81.42759613914501, + 25.78840068442694 + ], + [ + -81.4475397985684, + 25.75707517900525 + ], + [ + -81.40765247972163, + 25.75707517900525 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.40765247972163, + 25.75707517900525 + ], + [ + -81.4475397985684, + 25.75707517900525 + ], + [ + -81.42759613914501, + 25.725749673583557 + ], + [ + -81.40765247972163, + 25.75707517900525 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.40765247972163, + 25.75707517900525 + ], + [ + -81.42759613914501, + 25.725749673583557 + ], + [ + -81.38770882029826, + 25.725749673583557 + ], + [ + -81.40765247972163, + 25.75707517900525 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.40765247972163, + 25.75707517900525 + ], + [ + -81.38770882029826, + 25.725749673583557 + ], + [ + -81.36776516087487, + 25.75707517900525 + ], + [ + -81.40765247972163, + 25.75707517900525 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.40765247972163, + 25.819726189848634 + ], + [ + -81.36776516087487, + 25.819726189848634 + ], + [ + -81.38770882029826, + 25.851051695270325 + ], + [ + -81.40765247972163, + 25.819726189848634 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.40765247972163, + 25.819726189848634 + ], + [ + -81.38770882029826, + 25.851051695270325 + ], + [ + -81.42759613914501, + 25.851051695270325 + ], + [ + -81.40765247972163, + 25.819726189848634 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.40765247972163, + 25.819726189848634 + ], + [ + -81.42759613914501, + 25.851051695270325 + ], + [ + -81.4475397985684, + 25.819726189848634 + ], + [ + -81.40765247972163, + 25.819726189848634 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.40765247972163, + 25.819726189848634 + ], + [ + -81.4475397985684, + 25.819726189848634 + ], + [ + -81.42759613914501, + 25.788400684426943 + ], + [ + -81.40765247972163, + 25.819726189848634 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.40765247972163, + 25.819726189848634 + ], + [ + -81.42759613914501, + 25.788400684426943 + ], + [ + -81.38770882029826, + 25.788400684426943 + ], + [ + -81.40765247972163, + 25.819726189848634 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.40765247972163, + 25.819726189848634 + ], + [ + -81.38770882029826, + 25.788400684426943 + ], + [ + -81.36776516087487, + 25.819726189848634 + ], + [ + -81.40765247972163, + 25.819726189848634 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.40765247972163, + 25.88237720069202 + ], + [ + -81.36776516087487, + 25.88237720069202 + ], + [ + -81.38770882029826, + 25.91370270611371 + ], + [ + -81.40765247972163, + 25.88237720069202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.40765247972163, + 25.88237720069202 + ], + [ + -81.38770882029826, + 25.91370270611371 + ], + [ + -81.42759613914501, + 25.91370270611371 + ], + [ + -81.40765247972163, + 25.88237720069202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.40765247972163, + 25.88237720069202 + ], + [ + -81.42759613914501, + 25.91370270611371 + ], + [ + -81.4475397985684, + 25.88237720069202 + ], + [ + -81.40765247972163, + 25.88237720069202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.40765247972163, + 25.88237720069202 + ], + [ + -81.4475397985684, + 25.88237720069202 + ], + [ + -81.42759613914501, + 25.85105169527033 + ], + [ + -81.40765247972163, + 25.88237720069202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.40765247972163, + 25.88237720069202 + ], + [ + -81.42759613914501, + 25.85105169527033 + ], + [ + -81.38770882029826, + 25.85105169527033 + ], + [ + -81.40765247972163, + 25.88237720069202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.40765247972163, + 25.88237720069202 + ], + [ + -81.38770882029826, + 25.85105169527033 + ], + [ + -81.36776516087487, + 25.88237720069202 + ], + [ + -81.40765247972163, + 25.88237720069202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.40765247972163, + 25.945028211535405 + ], + [ + -81.36776516087487, + 25.945028211535405 + ], + [ + -81.38770882029826, + 25.976353716957096 + ], + [ + -81.40765247972163, + 25.945028211535405 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.40765247972163, + 25.945028211535405 + ], + [ + -81.38770882029826, + 25.976353716957096 + ], + [ + -81.42759613914501, + 25.976353716957096 + ], + [ + -81.40765247972163, + 25.945028211535405 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.40765247972163, + 25.945028211535405 + ], + [ + -81.42759613914501, + 25.976353716957096 + ], + [ + -81.4475397985684, + 25.945028211535405 + ], + [ + -81.40765247972163, + 25.945028211535405 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.40765247972163, + 25.945028211535405 + ], + [ + -81.4475397985684, + 25.945028211535405 + ], + [ + -81.42759613914501, + 25.913702706113714 + ], + [ + -81.40765247972163, + 25.945028211535405 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.40765247972163, + 25.945028211535405 + ], + [ + -81.42759613914501, + 25.913702706113714 + ], + [ + -81.38770882029826, + 25.913702706113714 + ], + [ + -81.40765247972163, + 25.945028211535405 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.40765247972163, + 25.945028211535405 + ], + [ + -81.38770882029826, + 25.913702706113714 + ], + [ + -81.36776516087487, + 25.945028211535405 + ], + [ + -81.40765247972163, + 25.945028211535405 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.40765247972163, + 26.00767922237879 + ], + [ + -81.36776516087487, + 26.00767922237879 + ], + [ + -81.38770882029826, + 26.03900472780048 + ], + [ + -81.40765247972163, + 26.00767922237879 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.40765247972163, + 26.00767922237879 + ], + [ + -81.38770882029826, + 26.03900472780048 + ], + [ + -81.42759613914501, + 26.03900472780048 + ], + [ + -81.40765247972163, + 26.00767922237879 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.40765247972163, + 26.00767922237879 + ], + [ + -81.42759613914501, + 26.03900472780048 + ], + [ + -81.4475397985684, + 26.00767922237879 + ], + [ + -81.40765247972163, + 26.00767922237879 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.40765247972163, + 26.00767922237879 + ], + [ + -81.4475397985684, + 26.00767922237879 + ], + [ + -81.42759613914501, + 25.9763537169571 + ], + [ + -81.40765247972163, + 26.00767922237879 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.40765247972163, + 26.00767922237879 + ], + [ + -81.42759613914501, + 25.9763537169571 + ], + [ + -81.38770882029826, + 25.9763537169571 + ], + [ + -81.40765247972163, + 26.00767922237879 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.40765247972163, + 26.00767922237879 + ], + [ + -81.38770882029826, + 25.9763537169571 + ], + [ + -81.36776516087487, + 26.00767922237879 + ], + [ + -81.40765247972163, + 26.00767922237879 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.40765247972163, + 26.070330233222176 + ], + [ + -81.36776516087487, + 26.070330233222176 + ], + [ + -81.38770882029826, + 26.101655738643867 + ], + [ + -81.40765247972163, + 26.070330233222176 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.40765247972163, + 26.070330233222176 + ], + [ + -81.38770882029826, + 26.101655738643867 + ], + [ + -81.42759613914501, + 26.101655738643867 + ], + [ + -81.40765247972163, + 26.070330233222176 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.40765247972163, + 26.070330233222176 + ], + [ + -81.42759613914501, + 26.101655738643867 + ], + [ + -81.4475397985684, + 26.070330233222176 + ], + [ + -81.40765247972163, + 26.070330233222176 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.40765247972163, + 26.070330233222176 + ], + [ + -81.4475397985684, + 26.070330233222176 + ], + [ + -81.42759613914501, + 26.039004727800485 + ], + [ + -81.40765247972163, + 26.070330233222176 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.40765247972163, + 26.070330233222176 + ], + [ + -81.42759613914501, + 26.039004727800485 + ], + [ + -81.38770882029826, + 26.039004727800485 + ], + [ + -81.40765247972163, + 26.070330233222176 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.40765247972163, + 26.070330233222176 + ], + [ + -81.38770882029826, + 26.039004727800485 + ], + [ + -81.36776516087487, + 26.070330233222176 + ], + [ + -81.40765247972163, + 26.070330233222176 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.40765247972163, + 26.13298124406556 + ], + [ + -81.36776516087487, + 26.13298124406556 + ], + [ + -81.38770882029826, + 26.164306749487253 + ], + [ + -81.40765247972163, + 26.13298124406556 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.40765247972163, + 26.13298124406556 + ], + [ + -81.38770882029826, + 26.164306749487253 + ], + [ + -81.42759613914501, + 26.164306749487253 + ], + [ + -81.40765247972163, + 26.13298124406556 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.40765247972163, + 26.13298124406556 + ], + [ + -81.42759613914501, + 26.164306749487253 + ], + [ + -81.4475397985684, + 26.13298124406556 + ], + [ + -81.40765247972163, + 26.13298124406556 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.40765247972163, + 26.13298124406556 + ], + [ + -81.4475397985684, + 26.13298124406556 + ], + [ + -81.42759613914501, + 26.10165573864387 + ], + [ + -81.40765247972163, + 26.13298124406556 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.40765247972163, + 26.13298124406556 + ], + [ + -81.42759613914501, + 26.10165573864387 + ], + [ + -81.38770882029826, + 26.10165573864387 + ], + [ + -81.40765247972163, + 26.13298124406556 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.40765247972163, + 26.13298124406556 + ], + [ + -81.38770882029826, + 26.10165573864387 + ], + [ + -81.36776516087487, + 26.13298124406556 + ], + [ + -81.40765247972163, + 26.13298124406556 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.40765247972163, + 26.195632254908944 + ], + [ + -81.36776516087487, + 26.195632254908944 + ], + [ + -81.38770882029826, + 26.226957760330635 + ], + [ + -81.40765247972163, + 26.195632254908944 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.40765247972163, + 26.195632254908944 + ], + [ + -81.38770882029826, + 26.226957760330635 + ], + [ + -81.42759613914501, + 26.226957760330635 + ], + [ + -81.40765247972163, + 26.195632254908944 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.40765247972163, + 26.195632254908944 + ], + [ + -81.42759613914501, + 26.226957760330635 + ], + [ + -81.4475397985684, + 26.195632254908944 + ], + [ + -81.40765247972163, + 26.195632254908944 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.40765247972163, + 26.195632254908944 + ], + [ + -81.4475397985684, + 26.195632254908944 + ], + [ + -81.42759613914501, + 26.164306749487253 + ], + [ + -81.40765247972163, + 26.195632254908944 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.40765247972163, + 26.195632254908944 + ], + [ + -81.42759613914501, + 26.164306749487253 + ], + [ + -81.38770882029826, + 26.164306749487253 + ], + [ + -81.40765247972163, + 26.195632254908944 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.40765247972163, + 26.195632254908944 + ], + [ + -81.38770882029826, + 26.164306749487253 + ], + [ + -81.36776516087487, + 26.195632254908944 + ], + [ + -81.40765247972163, + 26.195632254908944 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.40765247972163, + 26.258283265752333 + ], + [ + -81.36776516087487, + 26.258283265752333 + ], + [ + -81.38770882029826, + 26.289608771174024 + ], + [ + -81.40765247972163, + 26.258283265752333 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.40765247972163, + 26.258283265752333 + ], + [ + -81.38770882029826, + 26.289608771174024 + ], + [ + -81.42759613914501, + 26.289608771174024 + ], + [ + -81.40765247972163, + 26.258283265752333 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.40765247972163, + 26.258283265752333 + ], + [ + -81.42759613914501, + 26.289608771174024 + ], + [ + -81.4475397985684, + 26.258283265752333 + ], + [ + -81.40765247972163, + 26.258283265752333 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.40765247972163, + 26.258283265752333 + ], + [ + -81.4475397985684, + 26.258283265752333 + ], + [ + -81.42759613914501, + 26.22695776033064 + ], + [ + -81.40765247972163, + 26.258283265752333 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.40765247972163, + 26.258283265752333 + ], + [ + -81.42759613914501, + 26.22695776033064 + ], + [ + -81.38770882029826, + 26.22695776033064 + ], + [ + -81.40765247972163, + 26.258283265752333 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.40765247972163, + 26.258283265752333 + ], + [ + -81.38770882029826, + 26.22695776033064 + ], + [ + -81.36776516087487, + 26.258283265752333 + ], + [ + -81.40765247972163, + 26.258283265752333 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.40765247972163, + 26.320934276595715 + ], + [ + -81.36776516087487, + 26.320934276595715 + ], + [ + -81.38770882029826, + 26.352259782017406 + ], + [ + -81.40765247972163, + 26.320934276595715 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.40765247972163, + 26.320934276595715 + ], + [ + -81.38770882029826, + 26.352259782017406 + ], + [ + -81.42759613914501, + 26.352259782017406 + ], + [ + -81.40765247972163, + 26.320934276595715 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.40765247972163, + 26.320934276595715 + ], + [ + -81.42759613914501, + 26.352259782017406 + ], + [ + -81.4475397985684, + 26.320934276595715 + ], + [ + -81.40765247972163, + 26.320934276595715 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.40765247972163, + 26.320934276595715 + ], + [ + -81.4475397985684, + 26.320934276595715 + ], + [ + -81.42759613914501, + 26.289608771174024 + ], + [ + -81.40765247972163, + 26.320934276595715 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.40765247972163, + 26.320934276595715 + ], + [ + -81.42759613914501, + 26.289608771174024 + ], + [ + -81.38770882029826, + 26.289608771174024 + ], + [ + -81.40765247972163, + 26.320934276595715 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.40765247972163, + 26.320934276595715 + ], + [ + -81.38770882029826, + 26.289608771174024 + ], + [ + -81.36776516087487, + 26.320934276595715 + ], + [ + -81.40765247972163, + 26.320934276595715 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.40765247972163, + 26.3835852874391 + ], + [ + -81.36776516087487, + 26.3835852874391 + ], + [ + -81.38770882029826, + 26.41491079286079 + ], + [ + -81.40765247972163, + 26.3835852874391 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.40765247972163, + 26.3835852874391 + ], + [ + -81.38770882029826, + 26.41491079286079 + ], + [ + -81.42759613914501, + 26.41491079286079 + ], + [ + -81.40765247972163, + 26.3835852874391 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.40765247972163, + 26.3835852874391 + ], + [ + -81.42759613914501, + 26.41491079286079 + ], + [ + -81.4475397985684, + 26.3835852874391 + ], + [ + -81.40765247972163, + 26.3835852874391 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.40765247972163, + 26.3835852874391 + ], + [ + -81.4475397985684, + 26.3835852874391 + ], + [ + -81.42759613914501, + 26.35225978201741 + ], + [ + -81.40765247972163, + 26.3835852874391 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.40765247972163, + 26.3835852874391 + ], + [ + -81.42759613914501, + 26.35225978201741 + ], + [ + -81.38770882029826, + 26.35225978201741 + ], + [ + -81.40765247972163, + 26.3835852874391 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.40765247972163, + 26.3835852874391 + ], + [ + -81.38770882029826, + 26.35225978201741 + ], + [ + -81.36776516087487, + 26.3835852874391 + ], + [ + -81.40765247972163, + 26.3835852874391 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.40765247972163, + 26.446236298282486 + ], + [ + -81.36776516087487, + 26.446236298282486 + ], + [ + -81.38770882029826, + 26.477561803704177 + ], + [ + -81.40765247972163, + 26.446236298282486 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.40765247972163, + 26.446236298282486 + ], + [ + -81.38770882029826, + 26.477561803704177 + ], + [ + -81.42759613914501, + 26.477561803704177 + ], + [ + -81.40765247972163, + 26.446236298282486 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.40765247972163, + 26.446236298282486 + ], + [ + -81.42759613914501, + 26.477561803704177 + ], + [ + -81.4475397985684, + 26.446236298282486 + ], + [ + -81.40765247972163, + 26.446236298282486 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.40765247972163, + 26.446236298282486 + ], + [ + -81.4475397985684, + 26.446236298282486 + ], + [ + -81.42759613914501, + 26.414910792860795 + ], + [ + -81.40765247972163, + 26.446236298282486 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.40765247972163, + 26.446236298282486 + ], + [ + -81.42759613914501, + 26.414910792860795 + ], + [ + -81.38770882029826, + 26.414910792860795 + ], + [ + -81.40765247972163, + 26.446236298282486 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.40765247972163, + 26.446236298282486 + ], + [ + -81.38770882029826, + 26.414910792860795 + ], + [ + -81.36776516087487, + 26.446236298282486 + ], + [ + -81.40765247972163, + 26.446236298282486 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.34782150145149, + 24.911286532619545 + ], + [ + -81.30793418260473, + 24.911286532619545 + ], + [ + -81.32787784202812, + 24.942612038041236 + ], + [ + -81.34782150145149, + 24.911286532619545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.34782150145149, + 24.911286532619545 + ], + [ + -81.32787784202812, + 24.942612038041236 + ], + [ + -81.36776516087487, + 24.942612038041236 + ], + [ + -81.34782150145149, + 24.911286532619545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.34782150145149, + 24.911286532619545 + ], + [ + -81.36776516087487, + 24.942612038041236 + ], + [ + -81.38770882029826, + 24.911286532619545 + ], + [ + -81.34782150145149, + 24.911286532619545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.34782150145149, + 24.911286532619545 + ], + [ + -81.38770882029826, + 24.911286532619545 + ], + [ + -81.36776516087487, + 24.879961027197854 + ], + [ + -81.34782150145149, + 24.911286532619545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.34782150145149, + 24.911286532619545 + ], + [ + -81.36776516087487, + 24.879961027197854 + ], + [ + -81.32787784202812, + 24.879961027197854 + ], + [ + -81.34782150145149, + 24.911286532619545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.34782150145149, + 24.911286532619545 + ], + [ + -81.32787784202812, + 24.879961027197854 + ], + [ + -81.30793418260473, + 24.911286532619545 + ], + [ + -81.34782150145149, + 24.911286532619545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.34782150145149, + 24.97393754346293 + ], + [ + -81.30793418260473, + 24.97393754346293 + ], + [ + -81.32787784202812, + 25.005263048884622 + ], + [ + -81.34782150145149, + 24.97393754346293 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.34782150145149, + 24.97393754346293 + ], + [ + -81.32787784202812, + 25.005263048884622 + ], + [ + -81.36776516087487, + 25.005263048884622 + ], + [ + -81.34782150145149, + 24.97393754346293 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.34782150145149, + 24.97393754346293 + ], + [ + -81.36776516087487, + 25.005263048884622 + ], + [ + -81.38770882029826, + 24.97393754346293 + ], + [ + -81.34782150145149, + 24.97393754346293 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.34782150145149, + 24.97393754346293 + ], + [ + -81.38770882029826, + 24.97393754346293 + ], + [ + -81.36776516087487, + 24.94261203804124 + ], + [ + -81.34782150145149, + 24.97393754346293 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.34782150145149, + 24.97393754346293 + ], + [ + -81.36776516087487, + 24.94261203804124 + ], + [ + -81.32787784202812, + 24.94261203804124 + ], + [ + -81.34782150145149, + 24.97393754346293 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.34782150145149, + 24.97393754346293 + ], + [ + -81.32787784202812, + 24.94261203804124 + ], + [ + -81.30793418260473, + 24.97393754346293 + ], + [ + -81.34782150145149, + 24.97393754346293 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.34782150145149, + 25.036588554306316 + ], + [ + -81.30793418260473, + 25.036588554306316 + ], + [ + -81.32787784202812, + 25.067914059728007 + ], + [ + -81.34782150145149, + 25.036588554306316 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.34782150145149, + 25.036588554306316 + ], + [ + -81.32787784202812, + 25.067914059728007 + ], + [ + -81.36776516087487, + 25.067914059728007 + ], + [ + -81.34782150145149, + 25.036588554306316 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.34782150145149, + 25.036588554306316 + ], + [ + -81.36776516087487, + 25.067914059728007 + ], + [ + -81.38770882029826, + 25.036588554306316 + ], + [ + -81.34782150145149, + 25.036588554306316 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.34782150145149, + 25.036588554306316 + ], + [ + -81.38770882029826, + 25.036588554306316 + ], + [ + -81.36776516087487, + 25.005263048884625 + ], + [ + -81.34782150145149, + 25.036588554306316 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.34782150145149, + 25.036588554306316 + ], + [ + -81.36776516087487, + 25.005263048884625 + ], + [ + -81.32787784202812, + 25.005263048884625 + ], + [ + -81.34782150145149, + 25.036588554306316 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.34782150145149, + 25.036588554306316 + ], + [ + -81.32787784202812, + 25.005263048884625 + ], + [ + -81.30793418260473, + 25.036588554306316 + ], + [ + -81.34782150145149, + 25.036588554306316 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.34782150145149, + 25.099239565149702 + ], + [ + -81.30793418260473, + 25.099239565149702 + ], + [ + -81.32787784202812, + 25.130565070571393 + ], + [ + -81.34782150145149, + 25.099239565149702 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.34782150145149, + 25.099239565149702 + ], + [ + -81.32787784202812, + 25.130565070571393 + ], + [ + -81.36776516087487, + 25.130565070571393 + ], + [ + -81.34782150145149, + 25.099239565149702 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.34782150145149, + 25.099239565149702 + ], + [ + -81.36776516087487, + 25.130565070571393 + ], + [ + -81.38770882029826, + 25.099239565149702 + ], + [ + -81.34782150145149, + 25.099239565149702 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.34782150145149, + 25.099239565149702 + ], + [ + -81.38770882029826, + 25.099239565149702 + ], + [ + -81.36776516087487, + 25.06791405972801 + ], + [ + -81.34782150145149, + 25.099239565149702 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.34782150145149, + 25.099239565149702 + ], + [ + -81.36776516087487, + 25.06791405972801 + ], + [ + -81.32787784202812, + 25.06791405972801 + ], + [ + -81.34782150145149, + 25.099239565149702 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.34782150145149, + 25.099239565149702 + ], + [ + -81.32787784202812, + 25.06791405972801 + ], + [ + -81.30793418260473, + 25.099239565149702 + ], + [ + -81.34782150145149, + 25.099239565149702 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.34782150145149, + 25.161890575993088 + ], + [ + -81.30793418260473, + 25.161890575993088 + ], + [ + -81.32787784202812, + 25.19321608141478 + ], + [ + -81.34782150145149, + 25.161890575993088 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.34782150145149, + 25.161890575993088 + ], + [ + -81.32787784202812, + 25.19321608141478 + ], + [ + -81.36776516087487, + 25.19321608141478 + ], + [ + -81.34782150145149, + 25.161890575993088 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.34782150145149, + 25.161890575993088 + ], + [ + -81.36776516087487, + 25.19321608141478 + ], + [ + -81.38770882029826, + 25.161890575993088 + ], + [ + -81.34782150145149, + 25.161890575993088 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.34782150145149, + 25.161890575993088 + ], + [ + -81.38770882029826, + 25.161890575993088 + ], + [ + -81.36776516087487, + 25.130565070571397 + ], + [ + -81.34782150145149, + 25.161890575993088 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.34782150145149, + 25.161890575993088 + ], + [ + -81.36776516087487, + 25.130565070571397 + ], + [ + -81.32787784202812, + 25.130565070571397 + ], + [ + -81.34782150145149, + 25.161890575993088 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.34782150145149, + 25.161890575993088 + ], + [ + -81.32787784202812, + 25.130565070571397 + ], + [ + -81.30793418260473, + 25.161890575993088 + ], + [ + -81.34782150145149, + 25.161890575993088 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.34782150145149, + 25.224541586836473 + ], + [ + -81.30793418260473, + 25.224541586836473 + ], + [ + -81.32787784202812, + 25.255867092258164 + ], + [ + -81.34782150145149, + 25.224541586836473 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.34782150145149, + 25.224541586836473 + ], + [ + -81.32787784202812, + 25.255867092258164 + ], + [ + -81.36776516087487, + 25.255867092258164 + ], + [ + -81.34782150145149, + 25.224541586836473 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.34782150145149, + 25.224541586836473 + ], + [ + -81.36776516087487, + 25.255867092258164 + ], + [ + -81.38770882029826, + 25.224541586836473 + ], + [ + -81.34782150145149, + 25.224541586836473 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.34782150145149, + 25.224541586836473 + ], + [ + -81.38770882029826, + 25.224541586836473 + ], + [ + -81.36776516087487, + 25.193216081414782 + ], + [ + -81.34782150145149, + 25.224541586836473 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.34782150145149, + 25.224541586836473 + ], + [ + -81.36776516087487, + 25.193216081414782 + ], + [ + -81.32787784202812, + 25.193216081414782 + ], + [ + -81.34782150145149, + 25.224541586836473 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.34782150145149, + 25.224541586836473 + ], + [ + -81.32787784202812, + 25.193216081414782 + ], + [ + -81.30793418260473, + 25.224541586836473 + ], + [ + -81.34782150145149, + 25.224541586836473 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.34782150145149, + 25.28719259767986 + ], + [ + -81.30793418260473, + 25.28719259767986 + ], + [ + -81.32787784202812, + 25.31851810310155 + ], + [ + -81.34782150145149, + 25.28719259767986 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.34782150145149, + 25.28719259767986 + ], + [ + -81.32787784202812, + 25.31851810310155 + ], + [ + -81.36776516087487, + 25.31851810310155 + ], + [ + -81.34782150145149, + 25.28719259767986 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.34782150145149, + 25.28719259767986 + ], + [ + -81.36776516087487, + 25.31851810310155 + ], + [ + -81.38770882029826, + 25.28719259767986 + ], + [ + -81.34782150145149, + 25.28719259767986 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.34782150145149, + 25.28719259767986 + ], + [ + -81.38770882029826, + 25.28719259767986 + ], + [ + -81.36776516087487, + 25.255867092258168 + ], + [ + -81.34782150145149, + 25.28719259767986 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.34782150145149, + 25.28719259767986 + ], + [ + -81.36776516087487, + 25.255867092258168 + ], + [ + -81.32787784202812, + 25.255867092258168 + ], + [ + -81.34782150145149, + 25.28719259767986 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.34782150145149, + 25.28719259767986 + ], + [ + -81.32787784202812, + 25.255867092258168 + ], + [ + -81.30793418260473, + 25.28719259767986 + ], + [ + -81.34782150145149, + 25.28719259767986 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.34782150145149, + 25.349843608523244 + ], + [ + -81.30793418260473, + 25.349843608523244 + ], + [ + -81.32787784202812, + 25.381169113944935 + ], + [ + -81.34782150145149, + 25.349843608523244 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.34782150145149, + 25.349843608523244 + ], + [ + -81.32787784202812, + 25.381169113944935 + ], + [ + -81.36776516087487, + 25.381169113944935 + ], + [ + -81.34782150145149, + 25.349843608523244 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.34782150145149, + 25.349843608523244 + ], + [ + -81.36776516087487, + 25.381169113944935 + ], + [ + -81.38770882029826, + 25.349843608523244 + ], + [ + -81.34782150145149, + 25.349843608523244 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.34782150145149, + 25.349843608523244 + ], + [ + -81.38770882029826, + 25.349843608523244 + ], + [ + -81.36776516087487, + 25.318518103101553 + ], + [ + -81.34782150145149, + 25.349843608523244 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.34782150145149, + 25.349843608523244 + ], + [ + -81.36776516087487, + 25.318518103101553 + ], + [ + -81.32787784202812, + 25.318518103101553 + ], + [ + -81.34782150145149, + 25.349843608523244 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.34782150145149, + 25.349843608523244 + ], + [ + -81.32787784202812, + 25.318518103101553 + ], + [ + -81.30793418260473, + 25.349843608523244 + ], + [ + -81.34782150145149, + 25.349843608523244 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.34782150145149, + 25.41249461936663 + ], + [ + -81.30793418260473, + 25.41249461936663 + ], + [ + -81.32787784202812, + 25.44382012478832 + ], + [ + -81.34782150145149, + 25.41249461936663 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.34782150145149, + 25.41249461936663 + ], + [ + -81.32787784202812, + 25.44382012478832 + ], + [ + -81.36776516087487, + 25.44382012478832 + ], + [ + -81.34782150145149, + 25.41249461936663 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.34782150145149, + 25.41249461936663 + ], + [ + -81.36776516087487, + 25.44382012478832 + ], + [ + -81.38770882029826, + 25.41249461936663 + ], + [ + -81.34782150145149, + 25.41249461936663 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.34782150145149, + 25.41249461936663 + ], + [ + -81.38770882029826, + 25.41249461936663 + ], + [ + -81.36776516087487, + 25.38116911394494 + ], + [ + -81.34782150145149, + 25.41249461936663 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.34782150145149, + 25.41249461936663 + ], + [ + -81.36776516087487, + 25.38116911394494 + ], + [ + -81.32787784202812, + 25.38116911394494 + ], + [ + -81.34782150145149, + 25.41249461936663 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.34782150145149, + 25.41249461936663 + ], + [ + -81.32787784202812, + 25.38116911394494 + ], + [ + -81.30793418260473, + 25.41249461936663 + ], + [ + -81.34782150145149, + 25.41249461936663 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.34782150145149, + 25.475145630210015 + ], + [ + -81.30793418260473, + 25.475145630210015 + ], + [ + -81.32787784202812, + 25.506471135631706 + ], + [ + -81.34782150145149, + 25.475145630210015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.34782150145149, + 25.475145630210015 + ], + [ + -81.32787784202812, + 25.506471135631706 + ], + [ + -81.36776516087487, + 25.506471135631706 + ], + [ + -81.34782150145149, + 25.475145630210015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.34782150145149, + 25.475145630210015 + ], + [ + -81.36776516087487, + 25.506471135631706 + ], + [ + -81.38770882029826, + 25.475145630210015 + ], + [ + -81.34782150145149, + 25.475145630210015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.34782150145149, + 25.475145630210015 + ], + [ + -81.38770882029826, + 25.475145630210015 + ], + [ + -81.36776516087487, + 25.443820124788324 + ], + [ + -81.34782150145149, + 25.475145630210015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.34782150145149, + 25.475145630210015 + ], + [ + -81.36776516087487, + 25.443820124788324 + ], + [ + -81.32787784202812, + 25.443820124788324 + ], + [ + -81.34782150145149, + 25.475145630210015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.34782150145149, + 25.475145630210015 + ], + [ + -81.32787784202812, + 25.443820124788324 + ], + [ + -81.30793418260473, + 25.475145630210015 + ], + [ + -81.34782150145149, + 25.475145630210015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.34782150145149, + 25.5377966410534 + ], + [ + -81.30793418260473, + 25.5377966410534 + ], + [ + -81.32787784202812, + 25.56912214647509 + ], + [ + -81.34782150145149, + 25.5377966410534 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.34782150145149, + 25.5377966410534 + ], + [ + -81.32787784202812, + 25.56912214647509 + ], + [ + -81.36776516087487, + 25.56912214647509 + ], + [ + -81.34782150145149, + 25.5377966410534 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.34782150145149, + 25.5377966410534 + ], + [ + -81.36776516087487, + 25.56912214647509 + ], + [ + -81.38770882029826, + 25.5377966410534 + ], + [ + -81.34782150145149, + 25.5377966410534 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.34782150145149, + 25.5377966410534 + ], + [ + -81.38770882029826, + 25.5377966410534 + ], + [ + -81.36776516087487, + 25.50647113563171 + ], + [ + -81.34782150145149, + 25.5377966410534 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.34782150145149, + 25.5377966410534 + ], + [ + -81.36776516087487, + 25.50647113563171 + ], + [ + -81.32787784202812, + 25.50647113563171 + ], + [ + -81.34782150145149, + 25.5377966410534 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.34782150145149, + 25.5377966410534 + ], + [ + -81.32787784202812, + 25.50647113563171 + ], + [ + -81.30793418260473, + 25.5377966410534 + ], + [ + -81.34782150145149, + 25.5377966410534 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.34782150145149, + 25.600447651896786 + ], + [ + -81.30793418260473, + 25.600447651896786 + ], + [ + -81.32787784202812, + 25.631773157318477 + ], + [ + -81.34782150145149, + 25.600447651896786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.34782150145149, + 25.600447651896786 + ], + [ + -81.32787784202812, + 25.631773157318477 + ], + [ + -81.36776516087487, + 25.631773157318477 + ], + [ + -81.34782150145149, + 25.600447651896786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.34782150145149, + 25.600447651896786 + ], + [ + -81.36776516087487, + 25.631773157318477 + ], + [ + -81.38770882029826, + 25.600447651896786 + ], + [ + -81.34782150145149, + 25.600447651896786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.34782150145149, + 25.600447651896786 + ], + [ + -81.38770882029826, + 25.600447651896786 + ], + [ + -81.36776516087487, + 25.569122146475095 + ], + [ + -81.34782150145149, + 25.600447651896786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.34782150145149, + 25.600447651896786 + ], + [ + -81.36776516087487, + 25.569122146475095 + ], + [ + -81.32787784202812, + 25.569122146475095 + ], + [ + -81.34782150145149, + 25.600447651896786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.34782150145149, + 25.600447651896786 + ], + [ + -81.32787784202812, + 25.569122146475095 + ], + [ + -81.30793418260473, + 25.600447651896786 + ], + [ + -81.34782150145149, + 25.600447651896786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.34782150145149, + 25.663098662740172 + ], + [ + -81.30793418260473, + 25.663098662740172 + ], + [ + -81.32787784202812, + 25.694424168161863 + ], + [ + -81.34782150145149, + 25.663098662740172 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.34782150145149, + 25.663098662740172 + ], + [ + -81.32787784202812, + 25.694424168161863 + ], + [ + -81.36776516087487, + 25.694424168161863 + ], + [ + -81.34782150145149, + 25.663098662740172 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.34782150145149, + 25.663098662740172 + ], + [ + -81.36776516087487, + 25.694424168161863 + ], + [ + -81.38770882029826, + 25.663098662740172 + ], + [ + -81.34782150145149, + 25.663098662740172 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.34782150145149, + 25.663098662740172 + ], + [ + -81.38770882029826, + 25.663098662740172 + ], + [ + -81.36776516087487, + 25.63177315731848 + ], + [ + -81.34782150145149, + 25.663098662740172 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.34782150145149, + 25.663098662740172 + ], + [ + -81.36776516087487, + 25.63177315731848 + ], + [ + -81.32787784202812, + 25.63177315731848 + ], + [ + -81.34782150145149, + 25.663098662740172 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.34782150145149, + 25.663098662740172 + ], + [ + -81.32787784202812, + 25.63177315731848 + ], + [ + -81.30793418260473, + 25.663098662740172 + ], + [ + -81.34782150145149, + 25.663098662740172 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.34782150145149, + 25.725749673583557 + ], + [ + -81.30793418260473, + 25.725749673583557 + ], + [ + -81.32787784202812, + 25.75707517900525 + ], + [ + -81.34782150145149, + 25.725749673583557 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.34782150145149, + 25.725749673583557 + ], + [ + -81.32787784202812, + 25.75707517900525 + ], + [ + -81.36776516087487, + 25.75707517900525 + ], + [ + -81.34782150145149, + 25.725749673583557 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.34782150145149, + 25.725749673583557 + ], + [ + -81.36776516087487, + 25.75707517900525 + ], + [ + -81.38770882029826, + 25.725749673583557 + ], + [ + -81.34782150145149, + 25.725749673583557 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.34782150145149, + 25.725749673583557 + ], + [ + -81.38770882029826, + 25.725749673583557 + ], + [ + -81.36776516087487, + 25.694424168161866 + ], + [ + -81.34782150145149, + 25.725749673583557 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.34782150145149, + 25.725749673583557 + ], + [ + -81.36776516087487, + 25.694424168161866 + ], + [ + -81.32787784202812, + 25.694424168161866 + ], + [ + -81.34782150145149, + 25.725749673583557 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.34782150145149, + 25.725749673583557 + ], + [ + -81.32787784202812, + 25.694424168161866 + ], + [ + -81.30793418260473, + 25.725749673583557 + ], + [ + -81.34782150145149, + 25.725749673583557 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.34782150145149, + 25.788400684426943 + ], + [ + -81.30793418260473, + 25.788400684426943 + ], + [ + -81.32787784202812, + 25.819726189848634 + ], + [ + -81.34782150145149, + 25.788400684426943 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.34782150145149, + 25.788400684426943 + ], + [ + -81.32787784202812, + 25.819726189848634 + ], + [ + -81.36776516087487, + 25.819726189848634 + ], + [ + -81.34782150145149, + 25.788400684426943 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.34782150145149, + 25.788400684426943 + ], + [ + -81.36776516087487, + 25.819726189848634 + ], + [ + -81.38770882029826, + 25.788400684426943 + ], + [ + -81.34782150145149, + 25.788400684426943 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.34782150145149, + 25.788400684426943 + ], + [ + -81.38770882029826, + 25.788400684426943 + ], + [ + -81.36776516087487, + 25.757075179005252 + ], + [ + -81.34782150145149, + 25.788400684426943 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.34782150145149, + 25.788400684426943 + ], + [ + -81.36776516087487, + 25.757075179005252 + ], + [ + -81.32787784202812, + 25.757075179005252 + ], + [ + -81.34782150145149, + 25.788400684426943 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.34782150145149, + 25.788400684426943 + ], + [ + -81.32787784202812, + 25.757075179005252 + ], + [ + -81.30793418260473, + 25.788400684426943 + ], + [ + -81.34782150145149, + 25.788400684426943 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.34782150145149, + 25.85105169527033 + ], + [ + -81.30793418260473, + 25.85105169527033 + ], + [ + -81.32787784202812, + 25.88237720069202 + ], + [ + -81.34782150145149, + 25.85105169527033 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.34782150145149, + 25.85105169527033 + ], + [ + -81.32787784202812, + 25.88237720069202 + ], + [ + -81.36776516087487, + 25.88237720069202 + ], + [ + -81.34782150145149, + 25.85105169527033 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.34782150145149, + 25.85105169527033 + ], + [ + -81.36776516087487, + 25.88237720069202 + ], + [ + -81.38770882029826, + 25.85105169527033 + ], + [ + -81.34782150145149, + 25.85105169527033 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.34782150145149, + 25.85105169527033 + ], + [ + -81.38770882029826, + 25.85105169527033 + ], + [ + -81.36776516087487, + 25.819726189848637 + ], + [ + -81.34782150145149, + 25.85105169527033 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.34782150145149, + 25.85105169527033 + ], + [ + -81.36776516087487, + 25.819726189848637 + ], + [ + -81.32787784202812, + 25.819726189848637 + ], + [ + -81.34782150145149, + 25.85105169527033 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.34782150145149, + 25.85105169527033 + ], + [ + -81.32787784202812, + 25.819726189848637 + ], + [ + -81.30793418260473, + 25.85105169527033 + ], + [ + -81.34782150145149, + 25.85105169527033 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.34782150145149, + 25.913702706113714 + ], + [ + -81.30793418260473, + 25.913702706113714 + ], + [ + -81.32787784202812, + 25.945028211535405 + ], + [ + -81.34782150145149, + 25.913702706113714 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.34782150145149, + 25.913702706113714 + ], + [ + -81.32787784202812, + 25.945028211535405 + ], + [ + -81.36776516087487, + 25.945028211535405 + ], + [ + -81.34782150145149, + 25.913702706113714 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.34782150145149, + 25.913702706113714 + ], + [ + -81.36776516087487, + 25.945028211535405 + ], + [ + -81.38770882029826, + 25.913702706113714 + ], + [ + -81.34782150145149, + 25.913702706113714 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.34782150145149, + 25.913702706113714 + ], + [ + -81.38770882029826, + 25.913702706113714 + ], + [ + -81.36776516087487, + 25.882377200692023 + ], + [ + -81.34782150145149, + 25.913702706113714 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.34782150145149, + 25.913702706113714 + ], + [ + -81.36776516087487, + 25.882377200692023 + ], + [ + -81.32787784202812, + 25.882377200692023 + ], + [ + -81.34782150145149, + 25.913702706113714 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.34782150145149, + 25.913702706113714 + ], + [ + -81.32787784202812, + 25.882377200692023 + ], + [ + -81.30793418260473, + 25.913702706113714 + ], + [ + -81.34782150145149, + 25.913702706113714 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.34782150145149, + 25.9763537169571 + ], + [ + -81.30793418260473, + 25.9763537169571 + ], + [ + -81.32787784202812, + 26.00767922237879 + ], + [ + -81.34782150145149, + 25.9763537169571 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.34782150145149, + 25.9763537169571 + ], + [ + -81.32787784202812, + 26.00767922237879 + ], + [ + -81.36776516087487, + 26.00767922237879 + ], + [ + -81.34782150145149, + 25.9763537169571 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.34782150145149, + 25.9763537169571 + ], + [ + -81.36776516087487, + 26.00767922237879 + ], + [ + -81.38770882029826, + 25.9763537169571 + ], + [ + -81.34782150145149, + 25.9763537169571 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.34782150145149, + 25.9763537169571 + ], + [ + -81.38770882029826, + 25.9763537169571 + ], + [ + -81.36776516087487, + 25.94502821153541 + ], + [ + -81.34782150145149, + 25.9763537169571 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.34782150145149, + 25.9763537169571 + ], + [ + -81.36776516087487, + 25.94502821153541 + ], + [ + -81.32787784202812, + 25.94502821153541 + ], + [ + -81.34782150145149, + 25.9763537169571 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.34782150145149, + 25.9763537169571 + ], + [ + -81.32787784202812, + 25.94502821153541 + ], + [ + -81.30793418260473, + 25.9763537169571 + ], + [ + -81.34782150145149, + 25.9763537169571 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.34782150145149, + 26.039004727800485 + ], + [ + -81.30793418260473, + 26.039004727800485 + ], + [ + -81.32787784202812, + 26.070330233222176 + ], + [ + -81.34782150145149, + 26.039004727800485 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.34782150145149, + 26.039004727800485 + ], + [ + -81.32787784202812, + 26.070330233222176 + ], + [ + -81.36776516087487, + 26.070330233222176 + ], + [ + -81.34782150145149, + 26.039004727800485 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.34782150145149, + 26.039004727800485 + ], + [ + -81.36776516087487, + 26.070330233222176 + ], + [ + -81.38770882029826, + 26.039004727800485 + ], + [ + -81.34782150145149, + 26.039004727800485 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.34782150145149, + 26.039004727800485 + ], + [ + -81.38770882029826, + 26.039004727800485 + ], + [ + -81.36776516087487, + 26.007679222378794 + ], + [ + -81.34782150145149, + 26.039004727800485 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.34782150145149, + 26.039004727800485 + ], + [ + -81.36776516087487, + 26.007679222378794 + ], + [ + -81.32787784202812, + 26.007679222378794 + ], + [ + -81.34782150145149, + 26.039004727800485 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.34782150145149, + 26.039004727800485 + ], + [ + -81.32787784202812, + 26.007679222378794 + ], + [ + -81.30793418260473, + 26.039004727800485 + ], + [ + -81.34782150145149, + 26.039004727800485 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.34782150145149, + 26.10165573864387 + ], + [ + -81.30793418260473, + 26.10165573864387 + ], + [ + -81.32787784202812, + 26.13298124406556 + ], + [ + -81.34782150145149, + 26.10165573864387 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.34782150145149, + 26.10165573864387 + ], + [ + -81.32787784202812, + 26.13298124406556 + ], + [ + -81.36776516087487, + 26.13298124406556 + ], + [ + -81.34782150145149, + 26.10165573864387 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.34782150145149, + 26.10165573864387 + ], + [ + -81.36776516087487, + 26.13298124406556 + ], + [ + -81.38770882029826, + 26.10165573864387 + ], + [ + -81.34782150145149, + 26.10165573864387 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.34782150145149, + 26.10165573864387 + ], + [ + -81.38770882029826, + 26.10165573864387 + ], + [ + -81.36776516087487, + 26.07033023322218 + ], + [ + -81.34782150145149, + 26.10165573864387 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.34782150145149, + 26.10165573864387 + ], + [ + -81.36776516087487, + 26.07033023322218 + ], + [ + -81.32787784202812, + 26.07033023322218 + ], + [ + -81.34782150145149, + 26.10165573864387 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.34782150145149, + 26.10165573864387 + ], + [ + -81.32787784202812, + 26.07033023322218 + ], + [ + -81.30793418260473, + 26.10165573864387 + ], + [ + -81.34782150145149, + 26.10165573864387 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.34782150145149, + 26.164306749487253 + ], + [ + -81.30793418260473, + 26.164306749487253 + ], + [ + -81.32787784202812, + 26.195632254908944 + ], + [ + -81.34782150145149, + 26.164306749487253 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.34782150145149, + 26.164306749487253 + ], + [ + -81.32787784202812, + 26.195632254908944 + ], + [ + -81.36776516087487, + 26.195632254908944 + ], + [ + -81.34782150145149, + 26.164306749487253 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.34782150145149, + 26.164306749487253 + ], + [ + -81.36776516087487, + 26.195632254908944 + ], + [ + -81.38770882029826, + 26.164306749487253 + ], + [ + -81.34782150145149, + 26.164306749487253 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.34782150145149, + 26.164306749487253 + ], + [ + -81.38770882029826, + 26.164306749487253 + ], + [ + -81.36776516087487, + 26.13298124406556 + ], + [ + -81.34782150145149, + 26.164306749487253 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.34782150145149, + 26.164306749487253 + ], + [ + -81.36776516087487, + 26.13298124406556 + ], + [ + -81.32787784202812, + 26.13298124406556 + ], + [ + -81.34782150145149, + 26.164306749487253 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.34782150145149, + 26.164306749487253 + ], + [ + -81.32787784202812, + 26.13298124406556 + ], + [ + -81.30793418260473, + 26.164306749487253 + ], + [ + -81.34782150145149, + 26.164306749487253 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.34782150145149, + 26.22695776033064 + ], + [ + -81.30793418260473, + 26.22695776033064 + ], + [ + -81.32787784202812, + 26.258283265752333 + ], + [ + -81.34782150145149, + 26.22695776033064 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.34782150145149, + 26.22695776033064 + ], + [ + -81.32787784202812, + 26.258283265752333 + ], + [ + -81.36776516087487, + 26.258283265752333 + ], + [ + -81.34782150145149, + 26.22695776033064 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.34782150145149, + 26.22695776033064 + ], + [ + -81.36776516087487, + 26.258283265752333 + ], + [ + -81.38770882029826, + 26.22695776033064 + ], + [ + -81.34782150145149, + 26.22695776033064 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.34782150145149, + 26.22695776033064 + ], + [ + -81.38770882029826, + 26.22695776033064 + ], + [ + -81.36776516087487, + 26.19563225490895 + ], + [ + -81.34782150145149, + 26.22695776033064 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.34782150145149, + 26.22695776033064 + ], + [ + -81.36776516087487, + 26.19563225490895 + ], + [ + -81.32787784202812, + 26.19563225490895 + ], + [ + -81.34782150145149, + 26.22695776033064 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.34782150145149, + 26.22695776033064 + ], + [ + -81.32787784202812, + 26.19563225490895 + ], + [ + -81.30793418260473, + 26.22695776033064 + ], + [ + -81.34782150145149, + 26.22695776033064 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.34782150145149, + 26.289608771174024 + ], + [ + -81.30793418260473, + 26.289608771174024 + ], + [ + -81.32787784202812, + 26.320934276595715 + ], + [ + -81.34782150145149, + 26.289608771174024 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.34782150145149, + 26.289608771174024 + ], + [ + -81.32787784202812, + 26.320934276595715 + ], + [ + -81.36776516087487, + 26.320934276595715 + ], + [ + -81.34782150145149, + 26.289608771174024 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.34782150145149, + 26.289608771174024 + ], + [ + -81.36776516087487, + 26.320934276595715 + ], + [ + -81.38770882029826, + 26.289608771174024 + ], + [ + -81.34782150145149, + 26.289608771174024 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.34782150145149, + 26.289608771174024 + ], + [ + -81.38770882029826, + 26.289608771174024 + ], + [ + -81.36776516087487, + 26.258283265752333 + ], + [ + -81.34782150145149, + 26.289608771174024 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.34782150145149, + 26.289608771174024 + ], + [ + -81.36776516087487, + 26.258283265752333 + ], + [ + -81.32787784202812, + 26.258283265752333 + ], + [ + -81.34782150145149, + 26.289608771174024 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.34782150145149, + 26.289608771174024 + ], + [ + -81.32787784202812, + 26.258283265752333 + ], + [ + -81.30793418260473, + 26.289608771174024 + ], + [ + -81.34782150145149, + 26.289608771174024 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.34782150145149, + 26.35225978201741 + ], + [ + -81.30793418260473, + 26.35225978201741 + ], + [ + -81.32787784202812, + 26.3835852874391 + ], + [ + -81.34782150145149, + 26.35225978201741 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.34782150145149, + 26.35225978201741 + ], + [ + -81.32787784202812, + 26.3835852874391 + ], + [ + -81.36776516087487, + 26.3835852874391 + ], + [ + -81.34782150145149, + 26.35225978201741 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.34782150145149, + 26.35225978201741 + ], + [ + -81.36776516087487, + 26.3835852874391 + ], + [ + -81.38770882029826, + 26.35225978201741 + ], + [ + -81.34782150145149, + 26.35225978201741 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.34782150145149, + 26.35225978201741 + ], + [ + -81.38770882029826, + 26.35225978201741 + ], + [ + -81.36776516087487, + 26.320934276595718 + ], + [ + -81.34782150145149, + 26.35225978201741 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.34782150145149, + 26.35225978201741 + ], + [ + -81.36776516087487, + 26.320934276595718 + ], + [ + -81.32787784202812, + 26.320934276595718 + ], + [ + -81.34782150145149, + 26.35225978201741 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.34782150145149, + 26.35225978201741 + ], + [ + -81.32787784202812, + 26.320934276595718 + ], + [ + -81.30793418260473, + 26.35225978201741 + ], + [ + -81.34782150145149, + 26.35225978201741 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.34782150145149, + 26.414910792860795 + ], + [ + -81.30793418260473, + 26.414910792860795 + ], + [ + -81.32787784202812, + 26.446236298282486 + ], + [ + -81.34782150145149, + 26.414910792860795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.34782150145149, + 26.414910792860795 + ], + [ + -81.32787784202812, + 26.446236298282486 + ], + [ + -81.36776516087487, + 26.446236298282486 + ], + [ + -81.34782150145149, + 26.414910792860795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.34782150145149, + 26.414910792860795 + ], + [ + -81.36776516087487, + 26.446236298282486 + ], + [ + -81.38770882029826, + 26.414910792860795 + ], + [ + -81.34782150145149, + 26.414910792860795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.34782150145149, + 26.414910792860795 + ], + [ + -81.38770882029826, + 26.414910792860795 + ], + [ + -81.36776516087487, + 26.383585287439104 + ], + [ + -81.34782150145149, + 26.414910792860795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.34782150145149, + 26.414910792860795 + ], + [ + -81.36776516087487, + 26.383585287439104 + ], + [ + -81.32787784202812, + 26.383585287439104 + ], + [ + -81.34782150145149, + 26.414910792860795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.34782150145149, + 26.414910792860795 + ], + [ + -81.32787784202812, + 26.383585287439104 + ], + [ + -81.30793418260473, + 26.414910792860795 + ], + [ + -81.34782150145149, + 26.414910792860795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.28799052318134, + 24.942612038041236 + ], + [ + -81.24810320433457, + 24.942612038041236 + ], + [ + -81.26804686375796, + 24.973937543462927 + ], + [ + -81.28799052318134, + 24.942612038041236 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.28799052318134, + 24.942612038041236 + ], + [ + -81.26804686375796, + 24.973937543462927 + ], + [ + -81.30793418260471, + 24.973937543462927 + ], + [ + -81.28799052318134, + 24.942612038041236 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.28799052318134, + 24.942612038041236 + ], + [ + -81.30793418260471, + 24.973937543462927 + ], + [ + -81.3278778420281, + 24.942612038041236 + ], + [ + -81.28799052318134, + 24.942612038041236 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.28799052318134, + 24.942612038041236 + ], + [ + -81.3278778420281, + 24.942612038041236 + ], + [ + -81.30793418260471, + 24.911286532619545 + ], + [ + -81.28799052318134, + 24.942612038041236 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.28799052318134, + 24.942612038041236 + ], + [ + -81.30793418260471, + 24.911286532619545 + ], + [ + -81.26804686375796, + 24.911286532619545 + ], + [ + -81.28799052318134, + 24.942612038041236 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.28799052318134, + 24.942612038041236 + ], + [ + -81.26804686375796, + 24.911286532619545 + ], + [ + -81.24810320433457, + 24.942612038041236 + ], + [ + -81.28799052318134, + 24.942612038041236 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.28799052318134, + 25.005263048884622 + ], + [ + -81.24810320433457, + 25.005263048884622 + ], + [ + -81.26804686375796, + 25.036588554306313 + ], + [ + -81.28799052318134, + 25.005263048884622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.28799052318134, + 25.005263048884622 + ], + [ + -81.26804686375796, + 25.036588554306313 + ], + [ + -81.30793418260471, + 25.036588554306313 + ], + [ + -81.28799052318134, + 25.005263048884622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.28799052318134, + 25.005263048884622 + ], + [ + -81.30793418260471, + 25.036588554306313 + ], + [ + -81.3278778420281, + 25.005263048884622 + ], + [ + -81.28799052318134, + 25.005263048884622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.28799052318134, + 25.005263048884622 + ], + [ + -81.3278778420281, + 25.005263048884622 + ], + [ + -81.30793418260471, + 24.97393754346293 + ], + [ + -81.28799052318134, + 25.005263048884622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.28799052318134, + 25.005263048884622 + ], + [ + -81.30793418260471, + 24.97393754346293 + ], + [ + -81.26804686375796, + 24.97393754346293 + ], + [ + -81.28799052318134, + 25.005263048884622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.28799052318134, + 25.005263048884622 + ], + [ + -81.26804686375796, + 24.97393754346293 + ], + [ + -81.24810320433457, + 25.005263048884622 + ], + [ + -81.28799052318134, + 25.005263048884622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.28799052318134, + 25.067914059728007 + ], + [ + -81.24810320433457, + 25.067914059728007 + ], + [ + -81.26804686375796, + 25.0992395651497 + ], + [ + -81.28799052318134, + 25.067914059728007 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.28799052318134, + 25.067914059728007 + ], + [ + -81.26804686375796, + 25.0992395651497 + ], + [ + -81.30793418260471, + 25.0992395651497 + ], + [ + -81.28799052318134, + 25.067914059728007 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.28799052318134, + 25.067914059728007 + ], + [ + -81.30793418260471, + 25.0992395651497 + ], + [ + -81.3278778420281, + 25.067914059728007 + ], + [ + -81.28799052318134, + 25.067914059728007 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.28799052318134, + 25.067914059728007 + ], + [ + -81.3278778420281, + 25.067914059728007 + ], + [ + -81.30793418260471, + 25.036588554306316 + ], + [ + -81.28799052318134, + 25.067914059728007 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.28799052318134, + 25.067914059728007 + ], + [ + -81.30793418260471, + 25.036588554306316 + ], + [ + -81.26804686375796, + 25.036588554306316 + ], + [ + -81.28799052318134, + 25.067914059728007 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.28799052318134, + 25.067914059728007 + ], + [ + -81.26804686375796, + 25.036588554306316 + ], + [ + -81.24810320433457, + 25.067914059728007 + ], + [ + -81.28799052318134, + 25.067914059728007 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.28799052318134, + 25.130565070571393 + ], + [ + -81.24810320433457, + 25.130565070571393 + ], + [ + -81.26804686375796, + 25.161890575993084 + ], + [ + -81.28799052318134, + 25.130565070571393 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.28799052318134, + 25.130565070571393 + ], + [ + -81.26804686375796, + 25.161890575993084 + ], + [ + -81.30793418260471, + 25.161890575993084 + ], + [ + -81.28799052318134, + 25.130565070571393 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.28799052318134, + 25.130565070571393 + ], + [ + -81.30793418260471, + 25.161890575993084 + ], + [ + -81.3278778420281, + 25.130565070571393 + ], + [ + -81.28799052318134, + 25.130565070571393 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.28799052318134, + 25.130565070571393 + ], + [ + -81.3278778420281, + 25.130565070571393 + ], + [ + -81.30793418260471, + 25.099239565149702 + ], + [ + -81.28799052318134, + 25.130565070571393 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.28799052318134, + 25.130565070571393 + ], + [ + -81.30793418260471, + 25.099239565149702 + ], + [ + -81.26804686375796, + 25.099239565149702 + ], + [ + -81.28799052318134, + 25.130565070571393 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.28799052318134, + 25.130565070571393 + ], + [ + -81.26804686375796, + 25.099239565149702 + ], + [ + -81.24810320433457, + 25.130565070571393 + ], + [ + -81.28799052318134, + 25.130565070571393 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.28799052318134, + 25.19321608141478 + ], + [ + -81.24810320433457, + 25.19321608141478 + ], + [ + -81.26804686375796, + 25.22454158683647 + ], + [ + -81.28799052318134, + 25.19321608141478 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.28799052318134, + 25.19321608141478 + ], + [ + -81.26804686375796, + 25.22454158683647 + ], + [ + -81.30793418260471, + 25.22454158683647 + ], + [ + -81.28799052318134, + 25.19321608141478 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.28799052318134, + 25.19321608141478 + ], + [ + -81.30793418260471, + 25.22454158683647 + ], + [ + -81.3278778420281, + 25.19321608141478 + ], + [ + -81.28799052318134, + 25.19321608141478 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.28799052318134, + 25.19321608141478 + ], + [ + -81.3278778420281, + 25.19321608141478 + ], + [ + -81.30793418260471, + 25.161890575993088 + ], + [ + -81.28799052318134, + 25.19321608141478 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.28799052318134, + 25.19321608141478 + ], + [ + -81.30793418260471, + 25.161890575993088 + ], + [ + -81.26804686375796, + 25.161890575993088 + ], + [ + -81.28799052318134, + 25.19321608141478 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.28799052318134, + 25.19321608141478 + ], + [ + -81.26804686375796, + 25.161890575993088 + ], + [ + -81.24810320433457, + 25.19321608141478 + ], + [ + -81.28799052318134, + 25.19321608141478 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.28799052318134, + 25.255867092258164 + ], + [ + -81.24810320433457, + 25.255867092258164 + ], + [ + -81.26804686375796, + 25.287192597679855 + ], + [ + -81.28799052318134, + 25.255867092258164 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.28799052318134, + 25.255867092258164 + ], + [ + -81.26804686375796, + 25.287192597679855 + ], + [ + -81.30793418260471, + 25.287192597679855 + ], + [ + -81.28799052318134, + 25.255867092258164 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.28799052318134, + 25.255867092258164 + ], + [ + -81.30793418260471, + 25.287192597679855 + ], + [ + -81.3278778420281, + 25.255867092258164 + ], + [ + -81.28799052318134, + 25.255867092258164 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.28799052318134, + 25.255867092258164 + ], + [ + -81.3278778420281, + 25.255867092258164 + ], + [ + -81.30793418260471, + 25.224541586836473 + ], + [ + -81.28799052318134, + 25.255867092258164 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.28799052318134, + 25.255867092258164 + ], + [ + -81.30793418260471, + 25.224541586836473 + ], + [ + -81.26804686375796, + 25.224541586836473 + ], + [ + -81.28799052318134, + 25.255867092258164 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.28799052318134, + 25.255867092258164 + ], + [ + -81.26804686375796, + 25.224541586836473 + ], + [ + -81.24810320433457, + 25.255867092258164 + ], + [ + -81.28799052318134, + 25.255867092258164 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.28799052318134, + 25.31851810310155 + ], + [ + -81.24810320433457, + 25.31851810310155 + ], + [ + -81.26804686375796, + 25.34984360852324 + ], + [ + -81.28799052318134, + 25.31851810310155 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.28799052318134, + 25.31851810310155 + ], + [ + -81.26804686375796, + 25.34984360852324 + ], + [ + -81.30793418260471, + 25.34984360852324 + ], + [ + -81.28799052318134, + 25.31851810310155 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.28799052318134, + 25.31851810310155 + ], + [ + -81.30793418260471, + 25.34984360852324 + ], + [ + -81.3278778420281, + 25.31851810310155 + ], + [ + -81.28799052318134, + 25.31851810310155 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.28799052318134, + 25.31851810310155 + ], + [ + -81.3278778420281, + 25.31851810310155 + ], + [ + -81.30793418260471, + 25.28719259767986 + ], + [ + -81.28799052318134, + 25.31851810310155 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.28799052318134, + 25.31851810310155 + ], + [ + -81.30793418260471, + 25.28719259767986 + ], + [ + -81.26804686375796, + 25.28719259767986 + ], + [ + -81.28799052318134, + 25.31851810310155 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.28799052318134, + 25.31851810310155 + ], + [ + -81.26804686375796, + 25.28719259767986 + ], + [ + -81.24810320433457, + 25.31851810310155 + ], + [ + -81.28799052318134, + 25.31851810310155 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.28799052318134, + 25.381169113944935 + ], + [ + -81.24810320433457, + 25.381169113944935 + ], + [ + -81.26804686375796, + 25.412494619366626 + ], + [ + -81.28799052318134, + 25.381169113944935 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.28799052318134, + 25.381169113944935 + ], + [ + -81.26804686375796, + 25.412494619366626 + ], + [ + -81.30793418260471, + 25.412494619366626 + ], + [ + -81.28799052318134, + 25.381169113944935 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.28799052318134, + 25.381169113944935 + ], + [ + -81.30793418260471, + 25.412494619366626 + ], + [ + -81.3278778420281, + 25.381169113944935 + ], + [ + -81.28799052318134, + 25.381169113944935 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.28799052318134, + 25.381169113944935 + ], + [ + -81.3278778420281, + 25.381169113944935 + ], + [ + -81.30793418260471, + 25.349843608523244 + ], + [ + -81.28799052318134, + 25.381169113944935 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.28799052318134, + 25.381169113944935 + ], + [ + -81.30793418260471, + 25.349843608523244 + ], + [ + -81.26804686375796, + 25.349843608523244 + ], + [ + -81.28799052318134, + 25.381169113944935 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.28799052318134, + 25.381169113944935 + ], + [ + -81.26804686375796, + 25.349843608523244 + ], + [ + -81.24810320433457, + 25.381169113944935 + ], + [ + -81.28799052318134, + 25.381169113944935 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.28799052318134, + 25.44382012478832 + ], + [ + -81.24810320433457, + 25.44382012478832 + ], + [ + -81.26804686375796, + 25.47514563021001 + ], + [ + -81.28799052318134, + 25.44382012478832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.28799052318134, + 25.44382012478832 + ], + [ + -81.26804686375796, + 25.47514563021001 + ], + [ + -81.30793418260471, + 25.47514563021001 + ], + [ + -81.28799052318134, + 25.44382012478832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.28799052318134, + 25.44382012478832 + ], + [ + -81.30793418260471, + 25.47514563021001 + ], + [ + -81.3278778420281, + 25.44382012478832 + ], + [ + -81.28799052318134, + 25.44382012478832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.28799052318134, + 25.44382012478832 + ], + [ + -81.3278778420281, + 25.44382012478832 + ], + [ + -81.30793418260471, + 25.41249461936663 + ], + [ + -81.28799052318134, + 25.44382012478832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.28799052318134, + 25.44382012478832 + ], + [ + -81.30793418260471, + 25.41249461936663 + ], + [ + -81.26804686375796, + 25.41249461936663 + ], + [ + -81.28799052318134, + 25.44382012478832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.28799052318134, + 25.44382012478832 + ], + [ + -81.26804686375796, + 25.41249461936663 + ], + [ + -81.24810320433457, + 25.44382012478832 + ], + [ + -81.28799052318134, + 25.44382012478832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.28799052318134, + 25.506471135631706 + ], + [ + -81.24810320433457, + 25.506471135631706 + ], + [ + -81.26804686375796, + 25.537796641053397 + ], + [ + -81.28799052318134, + 25.506471135631706 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.28799052318134, + 25.506471135631706 + ], + [ + -81.26804686375796, + 25.537796641053397 + ], + [ + -81.30793418260471, + 25.537796641053397 + ], + [ + -81.28799052318134, + 25.506471135631706 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.28799052318134, + 25.506471135631706 + ], + [ + -81.30793418260471, + 25.537796641053397 + ], + [ + -81.3278778420281, + 25.506471135631706 + ], + [ + -81.28799052318134, + 25.506471135631706 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.28799052318134, + 25.506471135631706 + ], + [ + -81.3278778420281, + 25.506471135631706 + ], + [ + -81.30793418260471, + 25.475145630210015 + ], + [ + -81.28799052318134, + 25.506471135631706 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.28799052318134, + 25.506471135631706 + ], + [ + -81.30793418260471, + 25.475145630210015 + ], + [ + -81.26804686375796, + 25.475145630210015 + ], + [ + -81.28799052318134, + 25.506471135631706 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.28799052318134, + 25.506471135631706 + ], + [ + -81.26804686375796, + 25.475145630210015 + ], + [ + -81.24810320433457, + 25.506471135631706 + ], + [ + -81.28799052318134, + 25.506471135631706 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.28799052318134, + 25.56912214647509 + ], + [ + -81.24810320433457, + 25.56912214647509 + ], + [ + -81.26804686375796, + 25.600447651896783 + ], + [ + -81.28799052318134, + 25.56912214647509 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.28799052318134, + 25.56912214647509 + ], + [ + -81.26804686375796, + 25.600447651896783 + ], + [ + -81.30793418260471, + 25.600447651896783 + ], + [ + -81.28799052318134, + 25.56912214647509 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.28799052318134, + 25.56912214647509 + ], + [ + -81.30793418260471, + 25.600447651896783 + ], + [ + -81.3278778420281, + 25.56912214647509 + ], + [ + -81.28799052318134, + 25.56912214647509 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.28799052318134, + 25.56912214647509 + ], + [ + -81.3278778420281, + 25.56912214647509 + ], + [ + -81.30793418260471, + 25.5377966410534 + ], + [ + -81.28799052318134, + 25.56912214647509 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.28799052318134, + 25.56912214647509 + ], + [ + -81.30793418260471, + 25.5377966410534 + ], + [ + -81.26804686375796, + 25.5377966410534 + ], + [ + -81.28799052318134, + 25.56912214647509 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.28799052318134, + 25.56912214647509 + ], + [ + -81.26804686375796, + 25.5377966410534 + ], + [ + -81.24810320433457, + 25.56912214647509 + ], + [ + -81.28799052318134, + 25.56912214647509 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.28799052318134, + 25.631773157318477 + ], + [ + -81.24810320433457, + 25.631773157318477 + ], + [ + -81.26804686375796, + 25.66309866274017 + ], + [ + -81.28799052318134, + 25.631773157318477 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.28799052318134, + 25.631773157318477 + ], + [ + -81.26804686375796, + 25.66309866274017 + ], + [ + -81.30793418260471, + 25.66309866274017 + ], + [ + -81.28799052318134, + 25.631773157318477 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.28799052318134, + 25.631773157318477 + ], + [ + -81.30793418260471, + 25.66309866274017 + ], + [ + -81.3278778420281, + 25.631773157318477 + ], + [ + -81.28799052318134, + 25.631773157318477 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.28799052318134, + 25.631773157318477 + ], + [ + -81.3278778420281, + 25.631773157318477 + ], + [ + -81.30793418260471, + 25.600447651896786 + ], + [ + -81.28799052318134, + 25.631773157318477 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.28799052318134, + 25.631773157318477 + ], + [ + -81.30793418260471, + 25.600447651896786 + ], + [ + -81.26804686375796, + 25.600447651896786 + ], + [ + -81.28799052318134, + 25.631773157318477 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.28799052318134, + 25.631773157318477 + ], + [ + -81.26804686375796, + 25.600447651896786 + ], + [ + -81.24810320433457, + 25.631773157318477 + ], + [ + -81.28799052318134, + 25.631773157318477 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.28799052318134, + 25.694424168161863 + ], + [ + -81.24810320433457, + 25.694424168161863 + ], + [ + -81.26804686375796, + 25.725749673583554 + ], + [ + -81.28799052318134, + 25.694424168161863 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.28799052318134, + 25.694424168161863 + ], + [ + -81.26804686375796, + 25.725749673583554 + ], + [ + -81.30793418260471, + 25.725749673583554 + ], + [ + -81.28799052318134, + 25.694424168161863 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.28799052318134, + 25.694424168161863 + ], + [ + -81.30793418260471, + 25.725749673583554 + ], + [ + -81.3278778420281, + 25.694424168161863 + ], + [ + -81.28799052318134, + 25.694424168161863 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.28799052318134, + 25.694424168161863 + ], + [ + -81.3278778420281, + 25.694424168161863 + ], + [ + -81.30793418260471, + 25.663098662740172 + ], + [ + -81.28799052318134, + 25.694424168161863 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.28799052318134, + 25.694424168161863 + ], + [ + -81.30793418260471, + 25.663098662740172 + ], + [ + -81.26804686375796, + 25.663098662740172 + ], + [ + -81.28799052318134, + 25.694424168161863 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.28799052318134, + 25.694424168161863 + ], + [ + -81.26804686375796, + 25.663098662740172 + ], + [ + -81.24810320433457, + 25.694424168161863 + ], + [ + -81.28799052318134, + 25.694424168161863 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.28799052318134, + 25.75707517900525 + ], + [ + -81.24810320433457, + 25.75707517900525 + ], + [ + -81.26804686375796, + 25.78840068442694 + ], + [ + -81.28799052318134, + 25.75707517900525 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.28799052318134, + 25.75707517900525 + ], + [ + -81.26804686375796, + 25.78840068442694 + ], + [ + -81.30793418260471, + 25.78840068442694 + ], + [ + -81.28799052318134, + 25.75707517900525 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.28799052318134, + 25.75707517900525 + ], + [ + -81.30793418260471, + 25.78840068442694 + ], + [ + -81.3278778420281, + 25.75707517900525 + ], + [ + -81.28799052318134, + 25.75707517900525 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.28799052318134, + 25.75707517900525 + ], + [ + -81.3278778420281, + 25.75707517900525 + ], + [ + -81.30793418260471, + 25.725749673583557 + ], + [ + -81.28799052318134, + 25.75707517900525 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.28799052318134, + 25.75707517900525 + ], + [ + -81.30793418260471, + 25.725749673583557 + ], + [ + -81.26804686375796, + 25.725749673583557 + ], + [ + -81.28799052318134, + 25.75707517900525 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.28799052318134, + 25.75707517900525 + ], + [ + -81.26804686375796, + 25.725749673583557 + ], + [ + -81.24810320433457, + 25.75707517900525 + ], + [ + -81.28799052318134, + 25.75707517900525 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.28799052318134, + 25.819726189848634 + ], + [ + -81.24810320433457, + 25.819726189848634 + ], + [ + -81.26804686375796, + 25.851051695270325 + ], + [ + -81.28799052318134, + 25.819726189848634 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.28799052318134, + 25.819726189848634 + ], + [ + -81.26804686375796, + 25.851051695270325 + ], + [ + -81.30793418260471, + 25.851051695270325 + ], + [ + -81.28799052318134, + 25.819726189848634 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.28799052318134, + 25.819726189848634 + ], + [ + -81.30793418260471, + 25.851051695270325 + ], + [ + -81.3278778420281, + 25.819726189848634 + ], + [ + -81.28799052318134, + 25.819726189848634 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.28799052318134, + 25.819726189848634 + ], + [ + -81.3278778420281, + 25.819726189848634 + ], + [ + -81.30793418260471, + 25.788400684426943 + ], + [ + -81.28799052318134, + 25.819726189848634 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.28799052318134, + 25.819726189848634 + ], + [ + -81.30793418260471, + 25.788400684426943 + ], + [ + -81.26804686375796, + 25.788400684426943 + ], + [ + -81.28799052318134, + 25.819726189848634 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.28799052318134, + 25.819726189848634 + ], + [ + -81.26804686375796, + 25.788400684426943 + ], + [ + -81.24810320433457, + 25.819726189848634 + ], + [ + -81.28799052318134, + 25.819726189848634 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.28799052318134, + 25.88237720069202 + ], + [ + -81.24810320433457, + 25.88237720069202 + ], + [ + -81.26804686375796, + 25.91370270611371 + ], + [ + -81.28799052318134, + 25.88237720069202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.28799052318134, + 25.88237720069202 + ], + [ + -81.26804686375796, + 25.91370270611371 + ], + [ + -81.30793418260471, + 25.91370270611371 + ], + [ + -81.28799052318134, + 25.88237720069202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.28799052318134, + 25.88237720069202 + ], + [ + -81.30793418260471, + 25.91370270611371 + ], + [ + -81.3278778420281, + 25.88237720069202 + ], + [ + -81.28799052318134, + 25.88237720069202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.28799052318134, + 25.88237720069202 + ], + [ + -81.3278778420281, + 25.88237720069202 + ], + [ + -81.30793418260471, + 25.85105169527033 + ], + [ + -81.28799052318134, + 25.88237720069202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.28799052318134, + 25.88237720069202 + ], + [ + -81.30793418260471, + 25.85105169527033 + ], + [ + -81.26804686375796, + 25.85105169527033 + ], + [ + -81.28799052318134, + 25.88237720069202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.28799052318134, + 25.88237720069202 + ], + [ + -81.26804686375796, + 25.85105169527033 + ], + [ + -81.24810320433457, + 25.88237720069202 + ], + [ + -81.28799052318134, + 25.88237720069202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.28799052318134, + 25.945028211535405 + ], + [ + -81.24810320433457, + 25.945028211535405 + ], + [ + -81.26804686375796, + 25.976353716957096 + ], + [ + -81.28799052318134, + 25.945028211535405 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.28799052318134, + 25.945028211535405 + ], + [ + -81.26804686375796, + 25.976353716957096 + ], + [ + -81.30793418260471, + 25.976353716957096 + ], + [ + -81.28799052318134, + 25.945028211535405 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.28799052318134, + 25.945028211535405 + ], + [ + -81.30793418260471, + 25.976353716957096 + ], + [ + -81.3278778420281, + 25.945028211535405 + ], + [ + -81.28799052318134, + 25.945028211535405 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.28799052318134, + 25.945028211535405 + ], + [ + -81.3278778420281, + 25.945028211535405 + ], + [ + -81.30793418260471, + 25.913702706113714 + ], + [ + -81.28799052318134, + 25.945028211535405 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.28799052318134, + 25.945028211535405 + ], + [ + -81.30793418260471, + 25.913702706113714 + ], + [ + -81.26804686375796, + 25.913702706113714 + ], + [ + -81.28799052318134, + 25.945028211535405 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.28799052318134, + 25.945028211535405 + ], + [ + -81.26804686375796, + 25.913702706113714 + ], + [ + -81.24810320433457, + 25.945028211535405 + ], + [ + -81.28799052318134, + 25.945028211535405 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.28799052318134, + 26.00767922237879 + ], + [ + -81.24810320433457, + 26.00767922237879 + ], + [ + -81.26804686375796, + 26.03900472780048 + ], + [ + -81.28799052318134, + 26.00767922237879 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.28799052318134, + 26.00767922237879 + ], + [ + -81.26804686375796, + 26.03900472780048 + ], + [ + -81.30793418260471, + 26.03900472780048 + ], + [ + -81.28799052318134, + 26.00767922237879 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.28799052318134, + 26.00767922237879 + ], + [ + -81.30793418260471, + 26.03900472780048 + ], + [ + -81.3278778420281, + 26.00767922237879 + ], + [ + -81.28799052318134, + 26.00767922237879 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.28799052318134, + 26.00767922237879 + ], + [ + -81.3278778420281, + 26.00767922237879 + ], + [ + -81.30793418260471, + 25.9763537169571 + ], + [ + -81.28799052318134, + 26.00767922237879 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.28799052318134, + 26.00767922237879 + ], + [ + -81.30793418260471, + 25.9763537169571 + ], + [ + -81.26804686375796, + 25.9763537169571 + ], + [ + -81.28799052318134, + 26.00767922237879 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.28799052318134, + 26.00767922237879 + ], + [ + -81.26804686375796, + 25.9763537169571 + ], + [ + -81.24810320433457, + 26.00767922237879 + ], + [ + -81.28799052318134, + 26.00767922237879 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.28799052318134, + 26.070330233222176 + ], + [ + -81.24810320433457, + 26.070330233222176 + ], + [ + -81.26804686375796, + 26.101655738643867 + ], + [ + -81.28799052318134, + 26.070330233222176 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.28799052318134, + 26.070330233222176 + ], + [ + -81.26804686375796, + 26.101655738643867 + ], + [ + -81.30793418260471, + 26.101655738643867 + ], + [ + -81.28799052318134, + 26.070330233222176 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.28799052318134, + 26.070330233222176 + ], + [ + -81.30793418260471, + 26.101655738643867 + ], + [ + -81.3278778420281, + 26.070330233222176 + ], + [ + -81.28799052318134, + 26.070330233222176 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.28799052318134, + 26.070330233222176 + ], + [ + -81.3278778420281, + 26.070330233222176 + ], + [ + -81.30793418260471, + 26.039004727800485 + ], + [ + -81.28799052318134, + 26.070330233222176 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.28799052318134, + 26.070330233222176 + ], + [ + -81.30793418260471, + 26.039004727800485 + ], + [ + -81.26804686375796, + 26.039004727800485 + ], + [ + -81.28799052318134, + 26.070330233222176 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.28799052318134, + 26.070330233222176 + ], + [ + -81.26804686375796, + 26.039004727800485 + ], + [ + -81.24810320433457, + 26.070330233222176 + ], + [ + -81.28799052318134, + 26.070330233222176 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.28799052318134, + 26.13298124406556 + ], + [ + -81.24810320433457, + 26.13298124406556 + ], + [ + -81.26804686375796, + 26.164306749487253 + ], + [ + -81.28799052318134, + 26.13298124406556 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.28799052318134, + 26.13298124406556 + ], + [ + -81.26804686375796, + 26.164306749487253 + ], + [ + -81.30793418260471, + 26.164306749487253 + ], + [ + -81.28799052318134, + 26.13298124406556 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.28799052318134, + 26.13298124406556 + ], + [ + -81.30793418260471, + 26.164306749487253 + ], + [ + -81.3278778420281, + 26.13298124406556 + ], + [ + -81.28799052318134, + 26.13298124406556 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.28799052318134, + 26.13298124406556 + ], + [ + -81.3278778420281, + 26.13298124406556 + ], + [ + -81.30793418260471, + 26.10165573864387 + ], + [ + -81.28799052318134, + 26.13298124406556 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.28799052318134, + 26.13298124406556 + ], + [ + -81.30793418260471, + 26.10165573864387 + ], + [ + -81.26804686375796, + 26.10165573864387 + ], + [ + -81.28799052318134, + 26.13298124406556 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.28799052318134, + 26.13298124406556 + ], + [ + -81.26804686375796, + 26.10165573864387 + ], + [ + -81.24810320433457, + 26.13298124406556 + ], + [ + -81.28799052318134, + 26.13298124406556 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.28799052318134, + 26.195632254908944 + ], + [ + -81.24810320433457, + 26.195632254908944 + ], + [ + -81.26804686375796, + 26.226957760330635 + ], + [ + -81.28799052318134, + 26.195632254908944 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.28799052318134, + 26.195632254908944 + ], + [ + -81.26804686375796, + 26.226957760330635 + ], + [ + -81.30793418260471, + 26.226957760330635 + ], + [ + -81.28799052318134, + 26.195632254908944 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.28799052318134, + 26.195632254908944 + ], + [ + -81.30793418260471, + 26.226957760330635 + ], + [ + -81.3278778420281, + 26.195632254908944 + ], + [ + -81.28799052318134, + 26.195632254908944 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.28799052318134, + 26.195632254908944 + ], + [ + -81.3278778420281, + 26.195632254908944 + ], + [ + -81.30793418260471, + 26.164306749487253 + ], + [ + -81.28799052318134, + 26.195632254908944 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.28799052318134, + 26.195632254908944 + ], + [ + -81.30793418260471, + 26.164306749487253 + ], + [ + -81.26804686375796, + 26.164306749487253 + ], + [ + -81.28799052318134, + 26.195632254908944 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.28799052318134, + 26.195632254908944 + ], + [ + -81.26804686375796, + 26.164306749487253 + ], + [ + -81.24810320433457, + 26.195632254908944 + ], + [ + -81.28799052318134, + 26.195632254908944 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.28799052318134, + 26.258283265752333 + ], + [ + -81.24810320433457, + 26.258283265752333 + ], + [ + -81.26804686375796, + 26.289608771174024 + ], + [ + -81.28799052318134, + 26.258283265752333 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.28799052318134, + 26.258283265752333 + ], + [ + -81.26804686375796, + 26.289608771174024 + ], + [ + -81.30793418260471, + 26.289608771174024 + ], + [ + -81.28799052318134, + 26.258283265752333 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.28799052318134, + 26.258283265752333 + ], + [ + -81.30793418260471, + 26.289608771174024 + ], + [ + -81.3278778420281, + 26.258283265752333 + ], + [ + -81.28799052318134, + 26.258283265752333 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.28799052318134, + 26.258283265752333 + ], + [ + -81.3278778420281, + 26.258283265752333 + ], + [ + -81.30793418260471, + 26.22695776033064 + ], + [ + -81.28799052318134, + 26.258283265752333 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.28799052318134, + 26.258283265752333 + ], + [ + -81.30793418260471, + 26.22695776033064 + ], + [ + -81.26804686375796, + 26.22695776033064 + ], + [ + -81.28799052318134, + 26.258283265752333 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.28799052318134, + 26.258283265752333 + ], + [ + -81.26804686375796, + 26.22695776033064 + ], + [ + -81.24810320433457, + 26.258283265752333 + ], + [ + -81.28799052318134, + 26.258283265752333 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.28799052318134, + 26.320934276595715 + ], + [ + -81.24810320433457, + 26.320934276595715 + ], + [ + -81.26804686375796, + 26.352259782017406 + ], + [ + -81.28799052318134, + 26.320934276595715 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.28799052318134, + 26.320934276595715 + ], + [ + -81.26804686375796, + 26.352259782017406 + ], + [ + -81.30793418260471, + 26.352259782017406 + ], + [ + -81.28799052318134, + 26.320934276595715 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.28799052318134, + 26.320934276595715 + ], + [ + -81.30793418260471, + 26.352259782017406 + ], + [ + -81.3278778420281, + 26.320934276595715 + ], + [ + -81.28799052318134, + 26.320934276595715 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.28799052318134, + 26.320934276595715 + ], + [ + -81.3278778420281, + 26.320934276595715 + ], + [ + -81.30793418260471, + 26.289608771174024 + ], + [ + -81.28799052318134, + 26.320934276595715 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.28799052318134, + 26.320934276595715 + ], + [ + -81.30793418260471, + 26.289608771174024 + ], + [ + -81.26804686375796, + 26.289608771174024 + ], + [ + -81.28799052318134, + 26.320934276595715 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.28799052318134, + 26.320934276595715 + ], + [ + -81.26804686375796, + 26.289608771174024 + ], + [ + -81.24810320433457, + 26.320934276595715 + ], + [ + -81.28799052318134, + 26.320934276595715 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.28799052318134, + 26.3835852874391 + ], + [ + -81.24810320433457, + 26.3835852874391 + ], + [ + -81.26804686375796, + 26.41491079286079 + ], + [ + -81.28799052318134, + 26.3835852874391 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.28799052318134, + 26.3835852874391 + ], + [ + -81.26804686375796, + 26.41491079286079 + ], + [ + -81.30793418260471, + 26.41491079286079 + ], + [ + -81.28799052318134, + 26.3835852874391 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.28799052318134, + 26.3835852874391 + ], + [ + -81.30793418260471, + 26.41491079286079 + ], + [ + -81.3278778420281, + 26.3835852874391 + ], + [ + -81.28799052318134, + 26.3835852874391 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.28799052318134, + 26.3835852874391 + ], + [ + -81.3278778420281, + 26.3835852874391 + ], + [ + -81.30793418260471, + 26.35225978201741 + ], + [ + -81.28799052318134, + 26.3835852874391 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.28799052318134, + 26.3835852874391 + ], + [ + -81.30793418260471, + 26.35225978201741 + ], + [ + -81.26804686375796, + 26.35225978201741 + ], + [ + -81.28799052318134, + 26.3835852874391 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.28799052318134, + 26.3835852874391 + ], + [ + -81.26804686375796, + 26.35225978201741 + ], + [ + -81.24810320433457, + 26.3835852874391 + ], + [ + -81.28799052318134, + 26.3835852874391 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.28799052318134, + 26.446236298282486 + ], + [ + -81.24810320433457, + 26.446236298282486 + ], + [ + -81.26804686375796, + 26.477561803704177 + ], + [ + -81.28799052318134, + 26.446236298282486 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.28799052318134, + 26.446236298282486 + ], + [ + -81.26804686375796, + 26.477561803704177 + ], + [ + -81.30793418260471, + 26.477561803704177 + ], + [ + -81.28799052318134, + 26.446236298282486 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.28799052318134, + 26.446236298282486 + ], + [ + -81.30793418260471, + 26.477561803704177 + ], + [ + -81.3278778420281, + 26.446236298282486 + ], + [ + -81.28799052318134, + 26.446236298282486 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.28799052318134, + 26.446236298282486 + ], + [ + -81.3278778420281, + 26.446236298282486 + ], + [ + -81.30793418260471, + 26.414910792860795 + ], + [ + -81.28799052318134, + 26.446236298282486 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.28799052318134, + 26.446236298282486 + ], + [ + -81.30793418260471, + 26.414910792860795 + ], + [ + -81.26804686375796, + 26.414910792860795 + ], + [ + -81.28799052318134, + 26.446236298282486 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.28799052318134, + 26.446236298282486 + ], + [ + -81.26804686375796, + 26.414910792860795 + ], + [ + -81.24810320433457, + 26.446236298282486 + ], + [ + -81.28799052318134, + 26.446236298282486 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.2281595449112, + 24.911286532619545 + ], + [ + -81.18827222606443, + 24.911286532619545 + ], + [ + -81.20821588548782, + 24.942612038041236 + ], + [ + -81.2281595449112, + 24.911286532619545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.2281595449112, + 24.911286532619545 + ], + [ + -81.20821588548782, + 24.942612038041236 + ], + [ + -81.24810320433457, + 24.942612038041236 + ], + [ + -81.2281595449112, + 24.911286532619545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.2281595449112, + 24.911286532619545 + ], + [ + -81.24810320433457, + 24.942612038041236 + ], + [ + -81.26804686375796, + 24.911286532619545 + ], + [ + -81.2281595449112, + 24.911286532619545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.2281595449112, + 24.911286532619545 + ], + [ + -81.26804686375796, + 24.911286532619545 + ], + [ + -81.24810320433457, + 24.879961027197854 + ], + [ + -81.2281595449112, + 24.911286532619545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.2281595449112, + 24.911286532619545 + ], + [ + -81.24810320433457, + 24.879961027197854 + ], + [ + -81.20821588548782, + 24.879961027197854 + ], + [ + -81.2281595449112, + 24.911286532619545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.2281595449112, + 24.911286532619545 + ], + [ + -81.20821588548782, + 24.879961027197854 + ], + [ + -81.18827222606443, + 24.911286532619545 + ], + [ + -81.2281595449112, + 24.911286532619545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.2281595449112, + 24.97393754346293 + ], + [ + -81.18827222606443, + 24.97393754346293 + ], + [ + -81.20821588548782, + 25.005263048884622 + ], + [ + -81.2281595449112, + 24.97393754346293 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.2281595449112, + 24.97393754346293 + ], + [ + -81.20821588548782, + 25.005263048884622 + ], + [ + -81.24810320433457, + 25.005263048884622 + ], + [ + -81.2281595449112, + 24.97393754346293 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.2281595449112, + 24.97393754346293 + ], + [ + -81.24810320433457, + 25.005263048884622 + ], + [ + -81.26804686375796, + 24.97393754346293 + ], + [ + -81.2281595449112, + 24.97393754346293 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.2281595449112, + 24.97393754346293 + ], + [ + -81.26804686375796, + 24.97393754346293 + ], + [ + -81.24810320433457, + 24.94261203804124 + ], + [ + -81.2281595449112, + 24.97393754346293 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.2281595449112, + 24.97393754346293 + ], + [ + -81.24810320433457, + 24.94261203804124 + ], + [ + -81.20821588548782, + 24.94261203804124 + ], + [ + -81.2281595449112, + 24.97393754346293 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.2281595449112, + 24.97393754346293 + ], + [ + -81.20821588548782, + 24.94261203804124 + ], + [ + -81.18827222606443, + 24.97393754346293 + ], + [ + -81.2281595449112, + 24.97393754346293 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.2281595449112, + 25.036588554306316 + ], + [ + -81.18827222606443, + 25.036588554306316 + ], + [ + -81.20821588548782, + 25.067914059728007 + ], + [ + -81.2281595449112, + 25.036588554306316 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.2281595449112, + 25.036588554306316 + ], + [ + -81.20821588548782, + 25.067914059728007 + ], + [ + -81.24810320433457, + 25.067914059728007 + ], + [ + -81.2281595449112, + 25.036588554306316 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.2281595449112, + 25.036588554306316 + ], + [ + -81.24810320433457, + 25.067914059728007 + ], + [ + -81.26804686375796, + 25.036588554306316 + ], + [ + -81.2281595449112, + 25.036588554306316 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.2281595449112, + 25.036588554306316 + ], + [ + -81.26804686375796, + 25.036588554306316 + ], + [ + -81.24810320433457, + 25.005263048884625 + ], + [ + -81.2281595449112, + 25.036588554306316 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.2281595449112, + 25.036588554306316 + ], + [ + -81.24810320433457, + 25.005263048884625 + ], + [ + -81.20821588548782, + 25.005263048884625 + ], + [ + -81.2281595449112, + 25.036588554306316 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.2281595449112, + 25.036588554306316 + ], + [ + -81.20821588548782, + 25.005263048884625 + ], + [ + -81.18827222606443, + 25.036588554306316 + ], + [ + -81.2281595449112, + 25.036588554306316 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.2281595449112, + 25.099239565149702 + ], + [ + -81.18827222606443, + 25.099239565149702 + ], + [ + -81.20821588548782, + 25.130565070571393 + ], + [ + -81.2281595449112, + 25.099239565149702 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.2281595449112, + 25.099239565149702 + ], + [ + -81.20821588548782, + 25.130565070571393 + ], + [ + -81.24810320433457, + 25.130565070571393 + ], + [ + -81.2281595449112, + 25.099239565149702 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.2281595449112, + 25.099239565149702 + ], + [ + -81.24810320433457, + 25.130565070571393 + ], + [ + -81.26804686375796, + 25.099239565149702 + ], + [ + -81.2281595449112, + 25.099239565149702 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.2281595449112, + 25.099239565149702 + ], + [ + -81.26804686375796, + 25.099239565149702 + ], + [ + -81.24810320433457, + 25.06791405972801 + ], + [ + -81.2281595449112, + 25.099239565149702 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.2281595449112, + 25.099239565149702 + ], + [ + -81.24810320433457, + 25.06791405972801 + ], + [ + -81.20821588548782, + 25.06791405972801 + ], + [ + -81.2281595449112, + 25.099239565149702 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.2281595449112, + 25.099239565149702 + ], + [ + -81.20821588548782, + 25.06791405972801 + ], + [ + -81.18827222606443, + 25.099239565149702 + ], + [ + -81.2281595449112, + 25.099239565149702 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.2281595449112, + 25.161890575993088 + ], + [ + -81.18827222606443, + 25.161890575993088 + ], + [ + -81.20821588548782, + 25.19321608141478 + ], + [ + -81.2281595449112, + 25.161890575993088 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.2281595449112, + 25.161890575993088 + ], + [ + -81.20821588548782, + 25.19321608141478 + ], + [ + -81.24810320433457, + 25.19321608141478 + ], + [ + -81.2281595449112, + 25.161890575993088 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.2281595449112, + 25.161890575993088 + ], + [ + -81.24810320433457, + 25.19321608141478 + ], + [ + -81.26804686375796, + 25.161890575993088 + ], + [ + -81.2281595449112, + 25.161890575993088 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.2281595449112, + 25.161890575993088 + ], + [ + -81.26804686375796, + 25.161890575993088 + ], + [ + -81.24810320433457, + 25.130565070571397 + ], + [ + -81.2281595449112, + 25.161890575993088 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.2281595449112, + 25.161890575993088 + ], + [ + -81.24810320433457, + 25.130565070571397 + ], + [ + -81.20821588548782, + 25.130565070571397 + ], + [ + -81.2281595449112, + 25.161890575993088 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.2281595449112, + 25.161890575993088 + ], + [ + -81.20821588548782, + 25.130565070571397 + ], + [ + -81.18827222606443, + 25.161890575993088 + ], + [ + -81.2281595449112, + 25.161890575993088 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.2281595449112, + 25.224541586836473 + ], + [ + -81.18827222606443, + 25.224541586836473 + ], + [ + -81.20821588548782, + 25.255867092258164 + ], + [ + -81.2281595449112, + 25.224541586836473 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.2281595449112, + 25.224541586836473 + ], + [ + -81.20821588548782, + 25.255867092258164 + ], + [ + -81.24810320433457, + 25.255867092258164 + ], + [ + -81.2281595449112, + 25.224541586836473 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.2281595449112, + 25.224541586836473 + ], + [ + -81.24810320433457, + 25.255867092258164 + ], + [ + -81.26804686375796, + 25.224541586836473 + ], + [ + -81.2281595449112, + 25.224541586836473 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.2281595449112, + 25.224541586836473 + ], + [ + -81.26804686375796, + 25.224541586836473 + ], + [ + -81.24810320433457, + 25.193216081414782 + ], + [ + -81.2281595449112, + 25.224541586836473 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.2281595449112, + 25.224541586836473 + ], + [ + -81.24810320433457, + 25.193216081414782 + ], + [ + -81.20821588548782, + 25.193216081414782 + ], + [ + -81.2281595449112, + 25.224541586836473 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.2281595449112, + 25.224541586836473 + ], + [ + -81.20821588548782, + 25.193216081414782 + ], + [ + -81.18827222606443, + 25.224541586836473 + ], + [ + -81.2281595449112, + 25.224541586836473 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.2281595449112, + 25.28719259767986 + ], + [ + -81.18827222606443, + 25.28719259767986 + ], + [ + -81.20821588548782, + 25.31851810310155 + ], + [ + -81.2281595449112, + 25.28719259767986 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.2281595449112, + 25.28719259767986 + ], + [ + -81.20821588548782, + 25.31851810310155 + ], + [ + -81.24810320433457, + 25.31851810310155 + ], + [ + -81.2281595449112, + 25.28719259767986 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.2281595449112, + 25.28719259767986 + ], + [ + -81.24810320433457, + 25.31851810310155 + ], + [ + -81.26804686375796, + 25.28719259767986 + ], + [ + -81.2281595449112, + 25.28719259767986 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.2281595449112, + 25.28719259767986 + ], + [ + -81.26804686375796, + 25.28719259767986 + ], + [ + -81.24810320433457, + 25.255867092258168 + ], + [ + -81.2281595449112, + 25.28719259767986 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.2281595449112, + 25.28719259767986 + ], + [ + -81.24810320433457, + 25.255867092258168 + ], + [ + -81.20821588548782, + 25.255867092258168 + ], + [ + -81.2281595449112, + 25.28719259767986 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.2281595449112, + 25.28719259767986 + ], + [ + -81.20821588548782, + 25.255867092258168 + ], + [ + -81.18827222606443, + 25.28719259767986 + ], + [ + -81.2281595449112, + 25.28719259767986 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.2281595449112, + 25.349843608523244 + ], + [ + -81.18827222606443, + 25.349843608523244 + ], + [ + -81.20821588548782, + 25.381169113944935 + ], + [ + -81.2281595449112, + 25.349843608523244 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.2281595449112, + 25.349843608523244 + ], + [ + -81.20821588548782, + 25.381169113944935 + ], + [ + -81.24810320433457, + 25.381169113944935 + ], + [ + -81.2281595449112, + 25.349843608523244 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.2281595449112, + 25.349843608523244 + ], + [ + -81.24810320433457, + 25.381169113944935 + ], + [ + -81.26804686375796, + 25.349843608523244 + ], + [ + -81.2281595449112, + 25.349843608523244 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.2281595449112, + 25.349843608523244 + ], + [ + -81.26804686375796, + 25.349843608523244 + ], + [ + -81.24810320433457, + 25.318518103101553 + ], + [ + -81.2281595449112, + 25.349843608523244 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.2281595449112, + 25.349843608523244 + ], + [ + -81.24810320433457, + 25.318518103101553 + ], + [ + -81.20821588548782, + 25.318518103101553 + ], + [ + -81.2281595449112, + 25.349843608523244 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.2281595449112, + 25.349843608523244 + ], + [ + -81.20821588548782, + 25.318518103101553 + ], + [ + -81.18827222606443, + 25.349843608523244 + ], + [ + -81.2281595449112, + 25.349843608523244 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.2281595449112, + 25.41249461936663 + ], + [ + -81.18827222606443, + 25.41249461936663 + ], + [ + -81.20821588548782, + 25.44382012478832 + ], + [ + -81.2281595449112, + 25.41249461936663 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.2281595449112, + 25.41249461936663 + ], + [ + -81.20821588548782, + 25.44382012478832 + ], + [ + -81.24810320433457, + 25.44382012478832 + ], + [ + -81.2281595449112, + 25.41249461936663 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.2281595449112, + 25.41249461936663 + ], + [ + -81.24810320433457, + 25.44382012478832 + ], + [ + -81.26804686375796, + 25.41249461936663 + ], + [ + -81.2281595449112, + 25.41249461936663 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.2281595449112, + 25.41249461936663 + ], + [ + -81.26804686375796, + 25.41249461936663 + ], + [ + -81.24810320433457, + 25.38116911394494 + ], + [ + -81.2281595449112, + 25.41249461936663 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.2281595449112, + 25.41249461936663 + ], + [ + -81.24810320433457, + 25.38116911394494 + ], + [ + -81.20821588548782, + 25.38116911394494 + ], + [ + -81.2281595449112, + 25.41249461936663 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.2281595449112, + 25.41249461936663 + ], + [ + -81.20821588548782, + 25.38116911394494 + ], + [ + -81.18827222606443, + 25.41249461936663 + ], + [ + -81.2281595449112, + 25.41249461936663 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.2281595449112, + 25.475145630210015 + ], + [ + -81.18827222606443, + 25.475145630210015 + ], + [ + -81.20821588548782, + 25.506471135631706 + ], + [ + -81.2281595449112, + 25.475145630210015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.2281595449112, + 25.475145630210015 + ], + [ + -81.20821588548782, + 25.506471135631706 + ], + [ + -81.24810320433457, + 25.506471135631706 + ], + [ + -81.2281595449112, + 25.475145630210015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.2281595449112, + 25.475145630210015 + ], + [ + -81.24810320433457, + 25.506471135631706 + ], + [ + -81.26804686375796, + 25.475145630210015 + ], + [ + -81.2281595449112, + 25.475145630210015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.2281595449112, + 25.475145630210015 + ], + [ + -81.26804686375796, + 25.475145630210015 + ], + [ + -81.24810320433457, + 25.443820124788324 + ], + [ + -81.2281595449112, + 25.475145630210015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.2281595449112, + 25.475145630210015 + ], + [ + -81.24810320433457, + 25.443820124788324 + ], + [ + -81.20821588548782, + 25.443820124788324 + ], + [ + -81.2281595449112, + 25.475145630210015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.2281595449112, + 25.475145630210015 + ], + [ + -81.20821588548782, + 25.443820124788324 + ], + [ + -81.18827222606443, + 25.475145630210015 + ], + [ + -81.2281595449112, + 25.475145630210015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.2281595449112, + 25.5377966410534 + ], + [ + -81.18827222606443, + 25.5377966410534 + ], + [ + -81.20821588548782, + 25.56912214647509 + ], + [ + -81.2281595449112, + 25.5377966410534 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.2281595449112, + 25.5377966410534 + ], + [ + -81.20821588548782, + 25.56912214647509 + ], + [ + -81.24810320433457, + 25.56912214647509 + ], + [ + -81.2281595449112, + 25.5377966410534 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.2281595449112, + 25.5377966410534 + ], + [ + -81.24810320433457, + 25.56912214647509 + ], + [ + -81.26804686375796, + 25.5377966410534 + ], + [ + -81.2281595449112, + 25.5377966410534 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.2281595449112, + 25.5377966410534 + ], + [ + -81.26804686375796, + 25.5377966410534 + ], + [ + -81.24810320433457, + 25.50647113563171 + ], + [ + -81.2281595449112, + 25.5377966410534 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.2281595449112, + 25.5377966410534 + ], + [ + -81.24810320433457, + 25.50647113563171 + ], + [ + -81.20821588548782, + 25.50647113563171 + ], + [ + -81.2281595449112, + 25.5377966410534 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.2281595449112, + 25.5377966410534 + ], + [ + -81.20821588548782, + 25.50647113563171 + ], + [ + -81.18827222606443, + 25.5377966410534 + ], + [ + -81.2281595449112, + 25.5377966410534 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.2281595449112, + 25.600447651896786 + ], + [ + -81.18827222606443, + 25.600447651896786 + ], + [ + -81.20821588548782, + 25.631773157318477 + ], + [ + -81.2281595449112, + 25.600447651896786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.2281595449112, + 25.600447651896786 + ], + [ + -81.20821588548782, + 25.631773157318477 + ], + [ + -81.24810320433457, + 25.631773157318477 + ], + [ + -81.2281595449112, + 25.600447651896786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.2281595449112, + 25.600447651896786 + ], + [ + -81.24810320433457, + 25.631773157318477 + ], + [ + -81.26804686375796, + 25.600447651896786 + ], + [ + -81.2281595449112, + 25.600447651896786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.2281595449112, + 25.600447651896786 + ], + [ + -81.26804686375796, + 25.600447651896786 + ], + [ + -81.24810320433457, + 25.569122146475095 + ], + [ + -81.2281595449112, + 25.600447651896786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.2281595449112, + 25.600447651896786 + ], + [ + -81.24810320433457, + 25.569122146475095 + ], + [ + -81.20821588548782, + 25.569122146475095 + ], + [ + -81.2281595449112, + 25.600447651896786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.2281595449112, + 25.600447651896786 + ], + [ + -81.20821588548782, + 25.569122146475095 + ], + [ + -81.18827222606443, + 25.600447651896786 + ], + [ + -81.2281595449112, + 25.600447651896786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.2281595449112, + 25.663098662740172 + ], + [ + -81.18827222606443, + 25.663098662740172 + ], + [ + -81.20821588548782, + 25.694424168161863 + ], + [ + -81.2281595449112, + 25.663098662740172 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.2281595449112, + 25.663098662740172 + ], + [ + -81.20821588548782, + 25.694424168161863 + ], + [ + -81.24810320433457, + 25.694424168161863 + ], + [ + -81.2281595449112, + 25.663098662740172 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.2281595449112, + 25.663098662740172 + ], + [ + -81.24810320433457, + 25.694424168161863 + ], + [ + -81.26804686375796, + 25.663098662740172 + ], + [ + -81.2281595449112, + 25.663098662740172 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.2281595449112, + 25.663098662740172 + ], + [ + -81.26804686375796, + 25.663098662740172 + ], + [ + -81.24810320433457, + 25.63177315731848 + ], + [ + -81.2281595449112, + 25.663098662740172 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.2281595449112, + 25.663098662740172 + ], + [ + -81.24810320433457, + 25.63177315731848 + ], + [ + -81.20821588548782, + 25.63177315731848 + ], + [ + -81.2281595449112, + 25.663098662740172 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.2281595449112, + 25.663098662740172 + ], + [ + -81.20821588548782, + 25.63177315731848 + ], + [ + -81.18827222606443, + 25.663098662740172 + ], + [ + -81.2281595449112, + 25.663098662740172 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.2281595449112, + 25.725749673583557 + ], + [ + -81.18827222606443, + 25.725749673583557 + ], + [ + -81.20821588548782, + 25.75707517900525 + ], + [ + -81.2281595449112, + 25.725749673583557 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.2281595449112, + 25.725749673583557 + ], + [ + -81.20821588548782, + 25.75707517900525 + ], + [ + -81.24810320433457, + 25.75707517900525 + ], + [ + -81.2281595449112, + 25.725749673583557 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.2281595449112, + 25.725749673583557 + ], + [ + -81.24810320433457, + 25.75707517900525 + ], + [ + -81.26804686375796, + 25.725749673583557 + ], + [ + -81.2281595449112, + 25.725749673583557 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.2281595449112, + 25.725749673583557 + ], + [ + -81.26804686375796, + 25.725749673583557 + ], + [ + -81.24810320433457, + 25.694424168161866 + ], + [ + -81.2281595449112, + 25.725749673583557 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.2281595449112, + 25.725749673583557 + ], + [ + -81.24810320433457, + 25.694424168161866 + ], + [ + -81.20821588548782, + 25.694424168161866 + ], + [ + -81.2281595449112, + 25.725749673583557 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.2281595449112, + 25.725749673583557 + ], + [ + -81.20821588548782, + 25.694424168161866 + ], + [ + -81.18827222606443, + 25.725749673583557 + ], + [ + -81.2281595449112, + 25.725749673583557 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.2281595449112, + 25.788400684426943 + ], + [ + -81.18827222606443, + 25.788400684426943 + ], + [ + -81.20821588548782, + 25.819726189848634 + ], + [ + -81.2281595449112, + 25.788400684426943 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.2281595449112, + 25.788400684426943 + ], + [ + -81.20821588548782, + 25.819726189848634 + ], + [ + -81.24810320433457, + 25.819726189848634 + ], + [ + -81.2281595449112, + 25.788400684426943 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.2281595449112, + 25.788400684426943 + ], + [ + -81.24810320433457, + 25.819726189848634 + ], + [ + -81.26804686375796, + 25.788400684426943 + ], + [ + -81.2281595449112, + 25.788400684426943 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.2281595449112, + 25.788400684426943 + ], + [ + -81.26804686375796, + 25.788400684426943 + ], + [ + -81.24810320433457, + 25.757075179005252 + ], + [ + -81.2281595449112, + 25.788400684426943 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.2281595449112, + 25.788400684426943 + ], + [ + -81.24810320433457, + 25.757075179005252 + ], + [ + -81.20821588548782, + 25.757075179005252 + ], + [ + -81.2281595449112, + 25.788400684426943 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.2281595449112, + 25.788400684426943 + ], + [ + -81.20821588548782, + 25.757075179005252 + ], + [ + -81.18827222606443, + 25.788400684426943 + ], + [ + -81.2281595449112, + 25.788400684426943 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.2281595449112, + 25.85105169527033 + ], + [ + -81.18827222606443, + 25.85105169527033 + ], + [ + -81.20821588548782, + 25.88237720069202 + ], + [ + -81.2281595449112, + 25.85105169527033 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.2281595449112, + 25.85105169527033 + ], + [ + -81.20821588548782, + 25.88237720069202 + ], + [ + -81.24810320433457, + 25.88237720069202 + ], + [ + -81.2281595449112, + 25.85105169527033 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.2281595449112, + 25.85105169527033 + ], + [ + -81.24810320433457, + 25.88237720069202 + ], + [ + -81.26804686375796, + 25.85105169527033 + ], + [ + -81.2281595449112, + 25.85105169527033 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.2281595449112, + 25.85105169527033 + ], + [ + -81.26804686375796, + 25.85105169527033 + ], + [ + -81.24810320433457, + 25.819726189848637 + ], + [ + -81.2281595449112, + 25.85105169527033 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.2281595449112, + 25.85105169527033 + ], + [ + -81.24810320433457, + 25.819726189848637 + ], + [ + -81.20821588548782, + 25.819726189848637 + ], + [ + -81.2281595449112, + 25.85105169527033 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.2281595449112, + 25.85105169527033 + ], + [ + -81.20821588548782, + 25.819726189848637 + ], + [ + -81.18827222606443, + 25.85105169527033 + ], + [ + -81.2281595449112, + 25.85105169527033 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.2281595449112, + 25.913702706113714 + ], + [ + -81.18827222606443, + 25.913702706113714 + ], + [ + -81.20821588548782, + 25.945028211535405 + ], + [ + -81.2281595449112, + 25.913702706113714 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.2281595449112, + 25.913702706113714 + ], + [ + -81.20821588548782, + 25.945028211535405 + ], + [ + -81.24810320433457, + 25.945028211535405 + ], + [ + -81.2281595449112, + 25.913702706113714 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.2281595449112, + 25.913702706113714 + ], + [ + -81.24810320433457, + 25.945028211535405 + ], + [ + -81.26804686375796, + 25.913702706113714 + ], + [ + -81.2281595449112, + 25.913702706113714 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.2281595449112, + 25.913702706113714 + ], + [ + -81.26804686375796, + 25.913702706113714 + ], + [ + -81.24810320433457, + 25.882377200692023 + ], + [ + -81.2281595449112, + 25.913702706113714 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.2281595449112, + 25.913702706113714 + ], + [ + -81.24810320433457, + 25.882377200692023 + ], + [ + -81.20821588548782, + 25.882377200692023 + ], + [ + -81.2281595449112, + 25.913702706113714 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.2281595449112, + 25.913702706113714 + ], + [ + -81.20821588548782, + 25.882377200692023 + ], + [ + -81.18827222606443, + 25.913702706113714 + ], + [ + -81.2281595449112, + 25.913702706113714 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.2281595449112, + 25.9763537169571 + ], + [ + -81.18827222606443, + 25.9763537169571 + ], + [ + -81.20821588548782, + 26.00767922237879 + ], + [ + -81.2281595449112, + 25.9763537169571 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.2281595449112, + 25.9763537169571 + ], + [ + -81.20821588548782, + 26.00767922237879 + ], + [ + -81.24810320433457, + 26.00767922237879 + ], + [ + -81.2281595449112, + 25.9763537169571 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.2281595449112, + 25.9763537169571 + ], + [ + -81.24810320433457, + 26.00767922237879 + ], + [ + -81.26804686375796, + 25.9763537169571 + ], + [ + -81.2281595449112, + 25.9763537169571 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.2281595449112, + 25.9763537169571 + ], + [ + -81.26804686375796, + 25.9763537169571 + ], + [ + -81.24810320433457, + 25.94502821153541 + ], + [ + -81.2281595449112, + 25.9763537169571 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.2281595449112, + 25.9763537169571 + ], + [ + -81.24810320433457, + 25.94502821153541 + ], + [ + -81.20821588548782, + 25.94502821153541 + ], + [ + -81.2281595449112, + 25.9763537169571 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.2281595449112, + 25.9763537169571 + ], + [ + -81.20821588548782, + 25.94502821153541 + ], + [ + -81.18827222606443, + 25.9763537169571 + ], + [ + -81.2281595449112, + 25.9763537169571 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.2281595449112, + 26.039004727800485 + ], + [ + -81.18827222606443, + 26.039004727800485 + ], + [ + -81.20821588548782, + 26.070330233222176 + ], + [ + -81.2281595449112, + 26.039004727800485 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.2281595449112, + 26.039004727800485 + ], + [ + -81.20821588548782, + 26.070330233222176 + ], + [ + -81.24810320433457, + 26.070330233222176 + ], + [ + -81.2281595449112, + 26.039004727800485 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.2281595449112, + 26.039004727800485 + ], + [ + -81.24810320433457, + 26.070330233222176 + ], + [ + -81.26804686375796, + 26.039004727800485 + ], + [ + -81.2281595449112, + 26.039004727800485 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.2281595449112, + 26.039004727800485 + ], + [ + -81.26804686375796, + 26.039004727800485 + ], + [ + -81.24810320433457, + 26.007679222378794 + ], + [ + -81.2281595449112, + 26.039004727800485 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.2281595449112, + 26.039004727800485 + ], + [ + -81.24810320433457, + 26.007679222378794 + ], + [ + -81.20821588548782, + 26.007679222378794 + ], + [ + -81.2281595449112, + 26.039004727800485 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.2281595449112, + 26.039004727800485 + ], + [ + -81.20821588548782, + 26.007679222378794 + ], + [ + -81.18827222606443, + 26.039004727800485 + ], + [ + -81.2281595449112, + 26.039004727800485 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.2281595449112, + 26.10165573864387 + ], + [ + -81.18827222606443, + 26.10165573864387 + ], + [ + -81.20821588548782, + 26.13298124406556 + ], + [ + -81.2281595449112, + 26.10165573864387 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.2281595449112, + 26.10165573864387 + ], + [ + -81.20821588548782, + 26.13298124406556 + ], + [ + -81.24810320433457, + 26.13298124406556 + ], + [ + -81.2281595449112, + 26.10165573864387 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.2281595449112, + 26.10165573864387 + ], + [ + -81.24810320433457, + 26.13298124406556 + ], + [ + -81.26804686375796, + 26.10165573864387 + ], + [ + -81.2281595449112, + 26.10165573864387 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.2281595449112, + 26.10165573864387 + ], + [ + -81.26804686375796, + 26.10165573864387 + ], + [ + -81.24810320433457, + 26.07033023322218 + ], + [ + -81.2281595449112, + 26.10165573864387 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.2281595449112, + 26.10165573864387 + ], + [ + -81.24810320433457, + 26.07033023322218 + ], + [ + -81.20821588548782, + 26.07033023322218 + ], + [ + -81.2281595449112, + 26.10165573864387 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.2281595449112, + 26.10165573864387 + ], + [ + -81.20821588548782, + 26.07033023322218 + ], + [ + -81.18827222606443, + 26.10165573864387 + ], + [ + -81.2281595449112, + 26.10165573864387 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.2281595449112, + 26.164306749487253 + ], + [ + -81.18827222606443, + 26.164306749487253 + ], + [ + -81.20821588548782, + 26.195632254908944 + ], + [ + -81.2281595449112, + 26.164306749487253 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.2281595449112, + 26.164306749487253 + ], + [ + -81.20821588548782, + 26.195632254908944 + ], + [ + -81.24810320433457, + 26.195632254908944 + ], + [ + -81.2281595449112, + 26.164306749487253 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.2281595449112, + 26.164306749487253 + ], + [ + -81.24810320433457, + 26.195632254908944 + ], + [ + -81.26804686375796, + 26.164306749487253 + ], + [ + -81.2281595449112, + 26.164306749487253 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.2281595449112, + 26.164306749487253 + ], + [ + -81.26804686375796, + 26.164306749487253 + ], + [ + -81.24810320433457, + 26.13298124406556 + ], + [ + -81.2281595449112, + 26.164306749487253 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.2281595449112, + 26.164306749487253 + ], + [ + -81.24810320433457, + 26.13298124406556 + ], + [ + -81.20821588548782, + 26.13298124406556 + ], + [ + -81.2281595449112, + 26.164306749487253 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.2281595449112, + 26.164306749487253 + ], + [ + -81.20821588548782, + 26.13298124406556 + ], + [ + -81.18827222606443, + 26.164306749487253 + ], + [ + -81.2281595449112, + 26.164306749487253 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.2281595449112, + 26.22695776033064 + ], + [ + -81.18827222606443, + 26.22695776033064 + ], + [ + -81.20821588548782, + 26.258283265752333 + ], + [ + -81.2281595449112, + 26.22695776033064 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.2281595449112, + 26.22695776033064 + ], + [ + -81.20821588548782, + 26.258283265752333 + ], + [ + -81.24810320433457, + 26.258283265752333 + ], + [ + -81.2281595449112, + 26.22695776033064 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.2281595449112, + 26.22695776033064 + ], + [ + -81.24810320433457, + 26.258283265752333 + ], + [ + -81.26804686375796, + 26.22695776033064 + ], + [ + -81.2281595449112, + 26.22695776033064 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.2281595449112, + 26.22695776033064 + ], + [ + -81.26804686375796, + 26.22695776033064 + ], + [ + -81.24810320433457, + 26.19563225490895 + ], + [ + -81.2281595449112, + 26.22695776033064 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.2281595449112, + 26.22695776033064 + ], + [ + -81.24810320433457, + 26.19563225490895 + ], + [ + -81.20821588548782, + 26.19563225490895 + ], + [ + -81.2281595449112, + 26.22695776033064 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.2281595449112, + 26.22695776033064 + ], + [ + -81.20821588548782, + 26.19563225490895 + ], + [ + -81.18827222606443, + 26.22695776033064 + ], + [ + -81.2281595449112, + 26.22695776033064 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.2281595449112, + 26.289608771174024 + ], + [ + -81.18827222606443, + 26.289608771174024 + ], + [ + -81.20821588548782, + 26.320934276595715 + ], + [ + -81.2281595449112, + 26.289608771174024 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.2281595449112, + 26.289608771174024 + ], + [ + -81.20821588548782, + 26.320934276595715 + ], + [ + -81.24810320433457, + 26.320934276595715 + ], + [ + -81.2281595449112, + 26.289608771174024 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.2281595449112, + 26.289608771174024 + ], + [ + -81.24810320433457, + 26.320934276595715 + ], + [ + -81.26804686375796, + 26.289608771174024 + ], + [ + -81.2281595449112, + 26.289608771174024 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.2281595449112, + 26.289608771174024 + ], + [ + -81.26804686375796, + 26.289608771174024 + ], + [ + -81.24810320433457, + 26.258283265752333 + ], + [ + -81.2281595449112, + 26.289608771174024 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.2281595449112, + 26.289608771174024 + ], + [ + -81.24810320433457, + 26.258283265752333 + ], + [ + -81.20821588548782, + 26.258283265752333 + ], + [ + -81.2281595449112, + 26.289608771174024 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.2281595449112, + 26.289608771174024 + ], + [ + -81.20821588548782, + 26.258283265752333 + ], + [ + -81.18827222606443, + 26.289608771174024 + ], + [ + -81.2281595449112, + 26.289608771174024 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.2281595449112, + 26.35225978201741 + ], + [ + -81.18827222606443, + 26.35225978201741 + ], + [ + -81.20821588548782, + 26.3835852874391 + ], + [ + -81.2281595449112, + 26.35225978201741 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.2281595449112, + 26.35225978201741 + ], + [ + -81.20821588548782, + 26.3835852874391 + ], + [ + -81.24810320433457, + 26.3835852874391 + ], + [ + -81.2281595449112, + 26.35225978201741 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.2281595449112, + 26.35225978201741 + ], + [ + -81.24810320433457, + 26.3835852874391 + ], + [ + -81.26804686375796, + 26.35225978201741 + ], + [ + -81.2281595449112, + 26.35225978201741 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.2281595449112, + 26.35225978201741 + ], + [ + -81.26804686375796, + 26.35225978201741 + ], + [ + -81.24810320433457, + 26.320934276595718 + ], + [ + -81.2281595449112, + 26.35225978201741 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.2281595449112, + 26.35225978201741 + ], + [ + -81.24810320433457, + 26.320934276595718 + ], + [ + -81.20821588548782, + 26.320934276595718 + ], + [ + -81.2281595449112, + 26.35225978201741 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.2281595449112, + 26.35225978201741 + ], + [ + -81.20821588548782, + 26.320934276595718 + ], + [ + -81.18827222606443, + 26.35225978201741 + ], + [ + -81.2281595449112, + 26.35225978201741 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.2281595449112, + 26.414910792860795 + ], + [ + -81.18827222606443, + 26.414910792860795 + ], + [ + -81.20821588548782, + 26.446236298282486 + ], + [ + -81.2281595449112, + 26.414910792860795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.2281595449112, + 26.414910792860795 + ], + [ + -81.20821588548782, + 26.446236298282486 + ], + [ + -81.24810320433457, + 26.446236298282486 + ], + [ + -81.2281595449112, + 26.414910792860795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.2281595449112, + 26.414910792860795 + ], + [ + -81.24810320433457, + 26.446236298282486 + ], + [ + -81.26804686375796, + 26.414910792860795 + ], + [ + -81.2281595449112, + 26.414910792860795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.2281595449112, + 26.414910792860795 + ], + [ + -81.26804686375796, + 26.414910792860795 + ], + [ + -81.24810320433457, + 26.383585287439104 + ], + [ + -81.2281595449112, + 26.414910792860795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.2281595449112, + 26.414910792860795 + ], + [ + -81.24810320433457, + 26.383585287439104 + ], + [ + -81.20821588548782, + 26.383585287439104 + ], + [ + -81.2281595449112, + 26.414910792860795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.2281595449112, + 26.414910792860795 + ], + [ + -81.20821588548782, + 26.383585287439104 + ], + [ + -81.18827222606443, + 26.414910792860795 + ], + [ + -81.2281595449112, + 26.414910792860795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.16832856664104, + 24.942612038041236 + ], + [ + -81.12844124779427, + 24.942612038041236 + ], + [ + -81.14838490721766, + 24.973937543462927 + ], + [ + -81.16832856664104, + 24.942612038041236 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.16832856664104, + 24.942612038041236 + ], + [ + -81.14838490721766, + 24.973937543462927 + ], + [ + -81.18827222606441, + 24.973937543462927 + ], + [ + -81.16832856664104, + 24.942612038041236 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.16832856664104, + 24.942612038041236 + ], + [ + -81.18827222606441, + 24.973937543462927 + ], + [ + -81.2082158854878, + 24.942612038041236 + ], + [ + -81.16832856664104, + 24.942612038041236 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.16832856664104, + 24.942612038041236 + ], + [ + -81.2082158854878, + 24.942612038041236 + ], + [ + -81.18827222606441, + 24.911286532619545 + ], + [ + -81.16832856664104, + 24.942612038041236 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.16832856664104, + 24.942612038041236 + ], + [ + -81.18827222606441, + 24.911286532619545 + ], + [ + -81.14838490721766, + 24.911286532619545 + ], + [ + -81.16832856664104, + 24.942612038041236 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.16832856664104, + 24.942612038041236 + ], + [ + -81.14838490721766, + 24.911286532619545 + ], + [ + -81.12844124779427, + 24.942612038041236 + ], + [ + -81.16832856664104, + 24.942612038041236 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.16832856664104, + 25.005263048884622 + ], + [ + -81.12844124779427, + 25.005263048884622 + ], + [ + -81.14838490721766, + 25.036588554306313 + ], + [ + -81.16832856664104, + 25.005263048884622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.16832856664104, + 25.005263048884622 + ], + [ + -81.14838490721766, + 25.036588554306313 + ], + [ + -81.18827222606441, + 25.036588554306313 + ], + [ + -81.16832856664104, + 25.005263048884622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.16832856664104, + 25.005263048884622 + ], + [ + -81.18827222606441, + 25.036588554306313 + ], + [ + -81.2082158854878, + 25.005263048884622 + ], + [ + -81.16832856664104, + 25.005263048884622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.16832856664104, + 25.005263048884622 + ], + [ + -81.2082158854878, + 25.005263048884622 + ], + [ + -81.18827222606441, + 24.97393754346293 + ], + [ + -81.16832856664104, + 25.005263048884622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.16832856664104, + 25.005263048884622 + ], + [ + -81.18827222606441, + 24.97393754346293 + ], + [ + -81.14838490721766, + 24.97393754346293 + ], + [ + -81.16832856664104, + 25.005263048884622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.16832856664104, + 25.005263048884622 + ], + [ + -81.14838490721766, + 24.97393754346293 + ], + [ + -81.12844124779427, + 25.005263048884622 + ], + [ + -81.16832856664104, + 25.005263048884622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.16832856664104, + 25.067914059728007 + ], + [ + -81.12844124779427, + 25.067914059728007 + ], + [ + -81.14838490721766, + 25.0992395651497 + ], + [ + -81.16832856664104, + 25.067914059728007 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.16832856664104, + 25.067914059728007 + ], + [ + -81.14838490721766, + 25.0992395651497 + ], + [ + -81.18827222606441, + 25.0992395651497 + ], + [ + -81.16832856664104, + 25.067914059728007 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.16832856664104, + 25.067914059728007 + ], + [ + -81.18827222606441, + 25.0992395651497 + ], + [ + -81.2082158854878, + 25.067914059728007 + ], + [ + -81.16832856664104, + 25.067914059728007 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.16832856664104, + 25.067914059728007 + ], + [ + -81.2082158854878, + 25.067914059728007 + ], + [ + -81.18827222606441, + 25.036588554306316 + ], + [ + -81.16832856664104, + 25.067914059728007 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.16832856664104, + 25.067914059728007 + ], + [ + -81.18827222606441, + 25.036588554306316 + ], + [ + -81.14838490721766, + 25.036588554306316 + ], + [ + -81.16832856664104, + 25.067914059728007 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.16832856664104, + 25.067914059728007 + ], + [ + -81.14838490721766, + 25.036588554306316 + ], + [ + -81.12844124779427, + 25.067914059728007 + ], + [ + -81.16832856664104, + 25.067914059728007 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.16832856664104, + 25.130565070571393 + ], + [ + -81.12844124779427, + 25.130565070571393 + ], + [ + -81.14838490721766, + 25.161890575993084 + ], + [ + -81.16832856664104, + 25.130565070571393 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.16832856664104, + 25.130565070571393 + ], + [ + -81.14838490721766, + 25.161890575993084 + ], + [ + -81.18827222606441, + 25.161890575993084 + ], + [ + -81.16832856664104, + 25.130565070571393 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.16832856664104, + 25.130565070571393 + ], + [ + -81.18827222606441, + 25.161890575993084 + ], + [ + -81.2082158854878, + 25.130565070571393 + ], + [ + -81.16832856664104, + 25.130565070571393 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.16832856664104, + 25.130565070571393 + ], + [ + -81.2082158854878, + 25.130565070571393 + ], + [ + -81.18827222606441, + 25.099239565149702 + ], + [ + -81.16832856664104, + 25.130565070571393 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.16832856664104, + 25.130565070571393 + ], + [ + -81.18827222606441, + 25.099239565149702 + ], + [ + -81.14838490721766, + 25.099239565149702 + ], + [ + -81.16832856664104, + 25.130565070571393 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.16832856664104, + 25.130565070571393 + ], + [ + -81.14838490721766, + 25.099239565149702 + ], + [ + -81.12844124779427, + 25.130565070571393 + ], + [ + -81.16832856664104, + 25.130565070571393 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.16832856664104, + 25.19321608141478 + ], + [ + -81.12844124779427, + 25.19321608141478 + ], + [ + -81.14838490721766, + 25.22454158683647 + ], + [ + -81.16832856664104, + 25.19321608141478 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.16832856664104, + 25.19321608141478 + ], + [ + -81.14838490721766, + 25.22454158683647 + ], + [ + -81.18827222606441, + 25.22454158683647 + ], + [ + -81.16832856664104, + 25.19321608141478 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.16832856664104, + 25.19321608141478 + ], + [ + -81.18827222606441, + 25.22454158683647 + ], + [ + -81.2082158854878, + 25.19321608141478 + ], + [ + -81.16832856664104, + 25.19321608141478 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.16832856664104, + 25.19321608141478 + ], + [ + -81.2082158854878, + 25.19321608141478 + ], + [ + -81.18827222606441, + 25.161890575993088 + ], + [ + -81.16832856664104, + 25.19321608141478 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.16832856664104, + 25.19321608141478 + ], + [ + -81.18827222606441, + 25.161890575993088 + ], + [ + -81.14838490721766, + 25.161890575993088 + ], + [ + -81.16832856664104, + 25.19321608141478 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.16832856664104, + 25.19321608141478 + ], + [ + -81.14838490721766, + 25.161890575993088 + ], + [ + -81.12844124779427, + 25.19321608141478 + ], + [ + -81.16832856664104, + 25.19321608141478 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.16832856664104, + 25.255867092258164 + ], + [ + -81.12844124779427, + 25.255867092258164 + ], + [ + -81.14838490721766, + 25.287192597679855 + ], + [ + -81.16832856664104, + 25.255867092258164 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.16832856664104, + 25.255867092258164 + ], + [ + -81.14838490721766, + 25.287192597679855 + ], + [ + -81.18827222606441, + 25.287192597679855 + ], + [ + -81.16832856664104, + 25.255867092258164 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.16832856664104, + 25.255867092258164 + ], + [ + -81.18827222606441, + 25.287192597679855 + ], + [ + -81.2082158854878, + 25.255867092258164 + ], + [ + -81.16832856664104, + 25.255867092258164 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.16832856664104, + 25.255867092258164 + ], + [ + -81.2082158854878, + 25.255867092258164 + ], + [ + -81.18827222606441, + 25.224541586836473 + ], + [ + -81.16832856664104, + 25.255867092258164 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.16832856664104, + 25.255867092258164 + ], + [ + -81.18827222606441, + 25.224541586836473 + ], + [ + -81.14838490721766, + 25.224541586836473 + ], + [ + -81.16832856664104, + 25.255867092258164 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.16832856664104, + 25.255867092258164 + ], + [ + -81.14838490721766, + 25.224541586836473 + ], + [ + -81.12844124779427, + 25.255867092258164 + ], + [ + -81.16832856664104, + 25.255867092258164 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.16832856664104, + 25.31851810310155 + ], + [ + -81.12844124779427, + 25.31851810310155 + ], + [ + -81.14838490721766, + 25.34984360852324 + ], + [ + -81.16832856664104, + 25.31851810310155 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.16832856664104, + 25.31851810310155 + ], + [ + -81.14838490721766, + 25.34984360852324 + ], + [ + -81.18827222606441, + 25.34984360852324 + ], + [ + -81.16832856664104, + 25.31851810310155 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.16832856664104, + 25.31851810310155 + ], + [ + -81.18827222606441, + 25.34984360852324 + ], + [ + -81.2082158854878, + 25.31851810310155 + ], + [ + -81.16832856664104, + 25.31851810310155 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.16832856664104, + 25.31851810310155 + ], + [ + -81.2082158854878, + 25.31851810310155 + ], + [ + -81.18827222606441, + 25.28719259767986 + ], + [ + -81.16832856664104, + 25.31851810310155 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.16832856664104, + 25.31851810310155 + ], + [ + -81.18827222606441, + 25.28719259767986 + ], + [ + -81.14838490721766, + 25.28719259767986 + ], + [ + -81.16832856664104, + 25.31851810310155 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.16832856664104, + 25.31851810310155 + ], + [ + -81.14838490721766, + 25.28719259767986 + ], + [ + -81.12844124779427, + 25.31851810310155 + ], + [ + -81.16832856664104, + 25.31851810310155 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.16832856664104, + 25.381169113944935 + ], + [ + -81.12844124779427, + 25.381169113944935 + ], + [ + -81.14838490721766, + 25.412494619366626 + ], + [ + -81.16832856664104, + 25.381169113944935 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.16832856664104, + 25.381169113944935 + ], + [ + -81.14838490721766, + 25.412494619366626 + ], + [ + -81.18827222606441, + 25.412494619366626 + ], + [ + -81.16832856664104, + 25.381169113944935 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.16832856664104, + 25.381169113944935 + ], + [ + -81.18827222606441, + 25.412494619366626 + ], + [ + -81.2082158854878, + 25.381169113944935 + ], + [ + -81.16832856664104, + 25.381169113944935 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.16832856664104, + 25.381169113944935 + ], + [ + -81.2082158854878, + 25.381169113944935 + ], + [ + -81.18827222606441, + 25.349843608523244 + ], + [ + -81.16832856664104, + 25.381169113944935 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.16832856664104, + 25.381169113944935 + ], + [ + -81.18827222606441, + 25.349843608523244 + ], + [ + -81.14838490721766, + 25.349843608523244 + ], + [ + -81.16832856664104, + 25.381169113944935 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.16832856664104, + 25.381169113944935 + ], + [ + -81.14838490721766, + 25.349843608523244 + ], + [ + -81.12844124779427, + 25.381169113944935 + ], + [ + -81.16832856664104, + 25.381169113944935 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.16832856664104, + 25.44382012478832 + ], + [ + -81.12844124779427, + 25.44382012478832 + ], + [ + -81.14838490721766, + 25.47514563021001 + ], + [ + -81.16832856664104, + 25.44382012478832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.16832856664104, + 25.44382012478832 + ], + [ + -81.14838490721766, + 25.47514563021001 + ], + [ + -81.18827222606441, + 25.47514563021001 + ], + [ + -81.16832856664104, + 25.44382012478832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.16832856664104, + 25.44382012478832 + ], + [ + -81.18827222606441, + 25.47514563021001 + ], + [ + -81.2082158854878, + 25.44382012478832 + ], + [ + -81.16832856664104, + 25.44382012478832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.16832856664104, + 25.44382012478832 + ], + [ + -81.2082158854878, + 25.44382012478832 + ], + [ + -81.18827222606441, + 25.41249461936663 + ], + [ + -81.16832856664104, + 25.44382012478832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.16832856664104, + 25.44382012478832 + ], + [ + -81.18827222606441, + 25.41249461936663 + ], + [ + -81.14838490721766, + 25.41249461936663 + ], + [ + -81.16832856664104, + 25.44382012478832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.16832856664104, + 25.44382012478832 + ], + [ + -81.14838490721766, + 25.41249461936663 + ], + [ + -81.12844124779427, + 25.44382012478832 + ], + [ + -81.16832856664104, + 25.44382012478832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.16832856664104, + 25.506471135631706 + ], + [ + -81.12844124779427, + 25.506471135631706 + ], + [ + -81.14838490721766, + 25.537796641053397 + ], + [ + -81.16832856664104, + 25.506471135631706 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.16832856664104, + 25.506471135631706 + ], + [ + -81.14838490721766, + 25.537796641053397 + ], + [ + -81.18827222606441, + 25.537796641053397 + ], + [ + -81.16832856664104, + 25.506471135631706 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.16832856664104, + 25.506471135631706 + ], + [ + -81.18827222606441, + 25.537796641053397 + ], + [ + -81.2082158854878, + 25.506471135631706 + ], + [ + -81.16832856664104, + 25.506471135631706 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.16832856664104, + 25.506471135631706 + ], + [ + -81.2082158854878, + 25.506471135631706 + ], + [ + -81.18827222606441, + 25.475145630210015 + ], + [ + -81.16832856664104, + 25.506471135631706 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.16832856664104, + 25.506471135631706 + ], + [ + -81.18827222606441, + 25.475145630210015 + ], + [ + -81.14838490721766, + 25.475145630210015 + ], + [ + -81.16832856664104, + 25.506471135631706 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.16832856664104, + 25.506471135631706 + ], + [ + -81.14838490721766, + 25.475145630210015 + ], + [ + -81.12844124779427, + 25.506471135631706 + ], + [ + -81.16832856664104, + 25.506471135631706 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.16832856664104, + 25.56912214647509 + ], + [ + -81.12844124779427, + 25.56912214647509 + ], + [ + -81.14838490721766, + 25.600447651896783 + ], + [ + -81.16832856664104, + 25.56912214647509 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.16832856664104, + 25.56912214647509 + ], + [ + -81.14838490721766, + 25.600447651896783 + ], + [ + -81.18827222606441, + 25.600447651896783 + ], + [ + -81.16832856664104, + 25.56912214647509 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.16832856664104, + 25.56912214647509 + ], + [ + -81.18827222606441, + 25.600447651896783 + ], + [ + -81.2082158854878, + 25.56912214647509 + ], + [ + -81.16832856664104, + 25.56912214647509 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.16832856664104, + 25.56912214647509 + ], + [ + -81.2082158854878, + 25.56912214647509 + ], + [ + -81.18827222606441, + 25.5377966410534 + ], + [ + -81.16832856664104, + 25.56912214647509 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.16832856664104, + 25.56912214647509 + ], + [ + -81.18827222606441, + 25.5377966410534 + ], + [ + -81.14838490721766, + 25.5377966410534 + ], + [ + -81.16832856664104, + 25.56912214647509 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.16832856664104, + 25.56912214647509 + ], + [ + -81.14838490721766, + 25.5377966410534 + ], + [ + -81.12844124779427, + 25.56912214647509 + ], + [ + -81.16832856664104, + 25.56912214647509 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.16832856664104, + 25.631773157318477 + ], + [ + -81.12844124779427, + 25.631773157318477 + ], + [ + -81.14838490721766, + 25.66309866274017 + ], + [ + -81.16832856664104, + 25.631773157318477 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.16832856664104, + 25.631773157318477 + ], + [ + -81.14838490721766, + 25.66309866274017 + ], + [ + -81.18827222606441, + 25.66309866274017 + ], + [ + -81.16832856664104, + 25.631773157318477 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.16832856664104, + 25.631773157318477 + ], + [ + -81.18827222606441, + 25.66309866274017 + ], + [ + -81.2082158854878, + 25.631773157318477 + ], + [ + -81.16832856664104, + 25.631773157318477 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.16832856664104, + 25.631773157318477 + ], + [ + -81.2082158854878, + 25.631773157318477 + ], + [ + -81.18827222606441, + 25.600447651896786 + ], + [ + -81.16832856664104, + 25.631773157318477 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.16832856664104, + 25.631773157318477 + ], + [ + -81.18827222606441, + 25.600447651896786 + ], + [ + -81.14838490721766, + 25.600447651896786 + ], + [ + -81.16832856664104, + 25.631773157318477 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.16832856664104, + 25.631773157318477 + ], + [ + -81.14838490721766, + 25.600447651896786 + ], + [ + -81.12844124779427, + 25.631773157318477 + ], + [ + -81.16832856664104, + 25.631773157318477 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.16832856664104, + 25.694424168161863 + ], + [ + -81.12844124779427, + 25.694424168161863 + ], + [ + -81.14838490721766, + 25.725749673583554 + ], + [ + -81.16832856664104, + 25.694424168161863 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.16832856664104, + 25.694424168161863 + ], + [ + -81.14838490721766, + 25.725749673583554 + ], + [ + -81.18827222606441, + 25.725749673583554 + ], + [ + -81.16832856664104, + 25.694424168161863 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.16832856664104, + 25.694424168161863 + ], + [ + -81.18827222606441, + 25.725749673583554 + ], + [ + -81.2082158854878, + 25.694424168161863 + ], + [ + -81.16832856664104, + 25.694424168161863 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.16832856664104, + 25.694424168161863 + ], + [ + -81.2082158854878, + 25.694424168161863 + ], + [ + -81.18827222606441, + 25.663098662740172 + ], + [ + -81.16832856664104, + 25.694424168161863 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.16832856664104, + 25.694424168161863 + ], + [ + -81.18827222606441, + 25.663098662740172 + ], + [ + -81.14838490721766, + 25.663098662740172 + ], + [ + -81.16832856664104, + 25.694424168161863 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.16832856664104, + 25.694424168161863 + ], + [ + -81.14838490721766, + 25.663098662740172 + ], + [ + -81.12844124779427, + 25.694424168161863 + ], + [ + -81.16832856664104, + 25.694424168161863 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.16832856664104, + 25.75707517900525 + ], + [ + -81.12844124779427, + 25.75707517900525 + ], + [ + -81.14838490721766, + 25.78840068442694 + ], + [ + -81.16832856664104, + 25.75707517900525 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.16832856664104, + 25.75707517900525 + ], + [ + -81.14838490721766, + 25.78840068442694 + ], + [ + -81.18827222606441, + 25.78840068442694 + ], + [ + -81.16832856664104, + 25.75707517900525 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.16832856664104, + 25.75707517900525 + ], + [ + -81.18827222606441, + 25.78840068442694 + ], + [ + -81.2082158854878, + 25.75707517900525 + ], + [ + -81.16832856664104, + 25.75707517900525 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.16832856664104, + 25.75707517900525 + ], + [ + -81.2082158854878, + 25.75707517900525 + ], + [ + -81.18827222606441, + 25.725749673583557 + ], + [ + -81.16832856664104, + 25.75707517900525 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.16832856664104, + 25.75707517900525 + ], + [ + -81.18827222606441, + 25.725749673583557 + ], + [ + -81.14838490721766, + 25.725749673583557 + ], + [ + -81.16832856664104, + 25.75707517900525 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.16832856664104, + 25.75707517900525 + ], + [ + -81.14838490721766, + 25.725749673583557 + ], + [ + -81.12844124779427, + 25.75707517900525 + ], + [ + -81.16832856664104, + 25.75707517900525 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.16832856664104, + 25.819726189848634 + ], + [ + -81.12844124779427, + 25.819726189848634 + ], + [ + -81.14838490721766, + 25.851051695270325 + ], + [ + -81.16832856664104, + 25.819726189848634 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.16832856664104, + 25.819726189848634 + ], + [ + -81.14838490721766, + 25.851051695270325 + ], + [ + -81.18827222606441, + 25.851051695270325 + ], + [ + -81.16832856664104, + 25.819726189848634 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.16832856664104, + 25.819726189848634 + ], + [ + -81.18827222606441, + 25.851051695270325 + ], + [ + -81.2082158854878, + 25.819726189848634 + ], + [ + -81.16832856664104, + 25.819726189848634 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.16832856664104, + 25.819726189848634 + ], + [ + -81.2082158854878, + 25.819726189848634 + ], + [ + -81.18827222606441, + 25.788400684426943 + ], + [ + -81.16832856664104, + 25.819726189848634 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.16832856664104, + 25.819726189848634 + ], + [ + -81.18827222606441, + 25.788400684426943 + ], + [ + -81.14838490721766, + 25.788400684426943 + ], + [ + -81.16832856664104, + 25.819726189848634 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.16832856664104, + 25.819726189848634 + ], + [ + -81.14838490721766, + 25.788400684426943 + ], + [ + -81.12844124779427, + 25.819726189848634 + ], + [ + -81.16832856664104, + 25.819726189848634 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.16832856664104, + 25.88237720069202 + ], + [ + -81.12844124779427, + 25.88237720069202 + ], + [ + -81.14838490721766, + 25.91370270611371 + ], + [ + -81.16832856664104, + 25.88237720069202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.16832856664104, + 25.88237720069202 + ], + [ + -81.14838490721766, + 25.91370270611371 + ], + [ + -81.18827222606441, + 25.91370270611371 + ], + [ + -81.16832856664104, + 25.88237720069202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.16832856664104, + 25.88237720069202 + ], + [ + -81.18827222606441, + 25.91370270611371 + ], + [ + -81.2082158854878, + 25.88237720069202 + ], + [ + -81.16832856664104, + 25.88237720069202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.16832856664104, + 25.88237720069202 + ], + [ + -81.2082158854878, + 25.88237720069202 + ], + [ + -81.18827222606441, + 25.85105169527033 + ], + [ + -81.16832856664104, + 25.88237720069202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.16832856664104, + 25.88237720069202 + ], + [ + -81.18827222606441, + 25.85105169527033 + ], + [ + -81.14838490721766, + 25.85105169527033 + ], + [ + -81.16832856664104, + 25.88237720069202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.16832856664104, + 25.88237720069202 + ], + [ + -81.14838490721766, + 25.85105169527033 + ], + [ + -81.12844124779427, + 25.88237720069202 + ], + [ + -81.16832856664104, + 25.88237720069202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.16832856664104, + 25.945028211535405 + ], + [ + -81.12844124779427, + 25.945028211535405 + ], + [ + -81.14838490721766, + 25.976353716957096 + ], + [ + -81.16832856664104, + 25.945028211535405 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.16832856664104, + 25.945028211535405 + ], + [ + -81.14838490721766, + 25.976353716957096 + ], + [ + -81.18827222606441, + 25.976353716957096 + ], + [ + -81.16832856664104, + 25.945028211535405 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.16832856664104, + 25.945028211535405 + ], + [ + -81.18827222606441, + 25.976353716957096 + ], + [ + -81.2082158854878, + 25.945028211535405 + ], + [ + -81.16832856664104, + 25.945028211535405 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.16832856664104, + 25.945028211535405 + ], + [ + -81.2082158854878, + 25.945028211535405 + ], + [ + -81.18827222606441, + 25.913702706113714 + ], + [ + -81.16832856664104, + 25.945028211535405 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.16832856664104, + 25.945028211535405 + ], + [ + -81.18827222606441, + 25.913702706113714 + ], + [ + -81.14838490721766, + 25.913702706113714 + ], + [ + -81.16832856664104, + 25.945028211535405 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.16832856664104, + 25.945028211535405 + ], + [ + -81.14838490721766, + 25.913702706113714 + ], + [ + -81.12844124779427, + 25.945028211535405 + ], + [ + -81.16832856664104, + 25.945028211535405 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.16832856664104, + 26.00767922237879 + ], + [ + -81.12844124779427, + 26.00767922237879 + ], + [ + -81.14838490721766, + 26.03900472780048 + ], + [ + -81.16832856664104, + 26.00767922237879 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.16832856664104, + 26.00767922237879 + ], + [ + -81.14838490721766, + 26.03900472780048 + ], + [ + -81.18827222606441, + 26.03900472780048 + ], + [ + -81.16832856664104, + 26.00767922237879 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.16832856664104, + 26.00767922237879 + ], + [ + -81.18827222606441, + 26.03900472780048 + ], + [ + -81.2082158854878, + 26.00767922237879 + ], + [ + -81.16832856664104, + 26.00767922237879 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.16832856664104, + 26.00767922237879 + ], + [ + -81.2082158854878, + 26.00767922237879 + ], + [ + -81.18827222606441, + 25.9763537169571 + ], + [ + -81.16832856664104, + 26.00767922237879 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.16832856664104, + 26.00767922237879 + ], + [ + -81.18827222606441, + 25.9763537169571 + ], + [ + -81.14838490721766, + 25.9763537169571 + ], + [ + -81.16832856664104, + 26.00767922237879 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.16832856664104, + 26.00767922237879 + ], + [ + -81.14838490721766, + 25.9763537169571 + ], + [ + -81.12844124779427, + 26.00767922237879 + ], + [ + -81.16832856664104, + 26.00767922237879 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.16832856664104, + 26.070330233222176 + ], + [ + -81.12844124779427, + 26.070330233222176 + ], + [ + -81.14838490721766, + 26.101655738643867 + ], + [ + -81.16832856664104, + 26.070330233222176 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.16832856664104, + 26.070330233222176 + ], + [ + -81.14838490721766, + 26.101655738643867 + ], + [ + -81.18827222606441, + 26.101655738643867 + ], + [ + -81.16832856664104, + 26.070330233222176 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.16832856664104, + 26.070330233222176 + ], + [ + -81.18827222606441, + 26.101655738643867 + ], + [ + -81.2082158854878, + 26.070330233222176 + ], + [ + -81.16832856664104, + 26.070330233222176 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.16832856664104, + 26.070330233222176 + ], + [ + -81.2082158854878, + 26.070330233222176 + ], + [ + -81.18827222606441, + 26.039004727800485 + ], + [ + -81.16832856664104, + 26.070330233222176 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.16832856664104, + 26.070330233222176 + ], + [ + -81.18827222606441, + 26.039004727800485 + ], + [ + -81.14838490721766, + 26.039004727800485 + ], + [ + -81.16832856664104, + 26.070330233222176 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.16832856664104, + 26.070330233222176 + ], + [ + -81.14838490721766, + 26.039004727800485 + ], + [ + -81.12844124779427, + 26.070330233222176 + ], + [ + -81.16832856664104, + 26.070330233222176 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.16832856664104, + 26.13298124406556 + ], + [ + -81.12844124779427, + 26.13298124406556 + ], + [ + -81.14838490721766, + 26.164306749487253 + ], + [ + -81.16832856664104, + 26.13298124406556 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.16832856664104, + 26.13298124406556 + ], + [ + -81.14838490721766, + 26.164306749487253 + ], + [ + -81.18827222606441, + 26.164306749487253 + ], + [ + -81.16832856664104, + 26.13298124406556 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.16832856664104, + 26.13298124406556 + ], + [ + -81.18827222606441, + 26.164306749487253 + ], + [ + -81.2082158854878, + 26.13298124406556 + ], + [ + -81.16832856664104, + 26.13298124406556 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.16832856664104, + 26.13298124406556 + ], + [ + -81.2082158854878, + 26.13298124406556 + ], + [ + -81.18827222606441, + 26.10165573864387 + ], + [ + -81.16832856664104, + 26.13298124406556 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.16832856664104, + 26.13298124406556 + ], + [ + -81.18827222606441, + 26.10165573864387 + ], + [ + -81.14838490721766, + 26.10165573864387 + ], + [ + -81.16832856664104, + 26.13298124406556 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.16832856664104, + 26.13298124406556 + ], + [ + -81.14838490721766, + 26.10165573864387 + ], + [ + -81.12844124779427, + 26.13298124406556 + ], + [ + -81.16832856664104, + 26.13298124406556 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.16832856664104, + 26.195632254908944 + ], + [ + -81.12844124779427, + 26.195632254908944 + ], + [ + -81.14838490721766, + 26.226957760330635 + ], + [ + -81.16832856664104, + 26.195632254908944 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.16832856664104, + 26.195632254908944 + ], + [ + -81.14838490721766, + 26.226957760330635 + ], + [ + -81.18827222606441, + 26.226957760330635 + ], + [ + -81.16832856664104, + 26.195632254908944 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.16832856664104, + 26.195632254908944 + ], + [ + -81.18827222606441, + 26.226957760330635 + ], + [ + -81.2082158854878, + 26.195632254908944 + ], + [ + -81.16832856664104, + 26.195632254908944 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.16832856664104, + 26.195632254908944 + ], + [ + -81.2082158854878, + 26.195632254908944 + ], + [ + -81.18827222606441, + 26.164306749487253 + ], + [ + -81.16832856664104, + 26.195632254908944 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.16832856664104, + 26.195632254908944 + ], + [ + -81.18827222606441, + 26.164306749487253 + ], + [ + -81.14838490721766, + 26.164306749487253 + ], + [ + -81.16832856664104, + 26.195632254908944 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.16832856664104, + 26.195632254908944 + ], + [ + -81.14838490721766, + 26.164306749487253 + ], + [ + -81.12844124779427, + 26.195632254908944 + ], + [ + -81.16832856664104, + 26.195632254908944 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.16832856664104, + 26.258283265752333 + ], + [ + -81.12844124779427, + 26.258283265752333 + ], + [ + -81.14838490721766, + 26.289608771174024 + ], + [ + -81.16832856664104, + 26.258283265752333 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.16832856664104, + 26.258283265752333 + ], + [ + -81.14838490721766, + 26.289608771174024 + ], + [ + -81.18827222606441, + 26.289608771174024 + ], + [ + -81.16832856664104, + 26.258283265752333 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.16832856664104, + 26.258283265752333 + ], + [ + -81.18827222606441, + 26.289608771174024 + ], + [ + -81.2082158854878, + 26.258283265752333 + ], + [ + -81.16832856664104, + 26.258283265752333 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.16832856664104, + 26.258283265752333 + ], + [ + -81.2082158854878, + 26.258283265752333 + ], + [ + -81.18827222606441, + 26.22695776033064 + ], + [ + -81.16832856664104, + 26.258283265752333 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.16832856664104, + 26.258283265752333 + ], + [ + -81.18827222606441, + 26.22695776033064 + ], + [ + -81.14838490721766, + 26.22695776033064 + ], + [ + -81.16832856664104, + 26.258283265752333 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.16832856664104, + 26.258283265752333 + ], + [ + -81.14838490721766, + 26.22695776033064 + ], + [ + -81.12844124779427, + 26.258283265752333 + ], + [ + -81.16832856664104, + 26.258283265752333 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.16832856664104, + 26.320934276595715 + ], + [ + -81.12844124779427, + 26.320934276595715 + ], + [ + -81.14838490721766, + 26.352259782017406 + ], + [ + -81.16832856664104, + 26.320934276595715 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.16832856664104, + 26.320934276595715 + ], + [ + -81.14838490721766, + 26.352259782017406 + ], + [ + -81.18827222606441, + 26.352259782017406 + ], + [ + -81.16832856664104, + 26.320934276595715 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.16832856664104, + 26.320934276595715 + ], + [ + -81.18827222606441, + 26.352259782017406 + ], + [ + -81.2082158854878, + 26.320934276595715 + ], + [ + -81.16832856664104, + 26.320934276595715 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.16832856664104, + 26.320934276595715 + ], + [ + -81.2082158854878, + 26.320934276595715 + ], + [ + -81.18827222606441, + 26.289608771174024 + ], + [ + -81.16832856664104, + 26.320934276595715 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.16832856664104, + 26.320934276595715 + ], + [ + -81.18827222606441, + 26.289608771174024 + ], + [ + -81.14838490721766, + 26.289608771174024 + ], + [ + -81.16832856664104, + 26.320934276595715 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.16832856664104, + 26.320934276595715 + ], + [ + -81.14838490721766, + 26.289608771174024 + ], + [ + -81.12844124779427, + 26.320934276595715 + ], + [ + -81.16832856664104, + 26.320934276595715 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.16832856664104, + 26.3835852874391 + ], + [ + -81.12844124779427, + 26.3835852874391 + ], + [ + -81.14838490721766, + 26.41491079286079 + ], + [ + -81.16832856664104, + 26.3835852874391 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.16832856664104, + 26.3835852874391 + ], + [ + -81.14838490721766, + 26.41491079286079 + ], + [ + -81.18827222606441, + 26.41491079286079 + ], + [ + -81.16832856664104, + 26.3835852874391 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.16832856664104, + 26.3835852874391 + ], + [ + -81.18827222606441, + 26.41491079286079 + ], + [ + -81.2082158854878, + 26.3835852874391 + ], + [ + -81.16832856664104, + 26.3835852874391 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.16832856664104, + 26.3835852874391 + ], + [ + -81.2082158854878, + 26.3835852874391 + ], + [ + -81.18827222606441, + 26.35225978201741 + ], + [ + -81.16832856664104, + 26.3835852874391 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.16832856664104, + 26.3835852874391 + ], + [ + -81.18827222606441, + 26.35225978201741 + ], + [ + -81.14838490721766, + 26.35225978201741 + ], + [ + -81.16832856664104, + 26.3835852874391 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.16832856664104, + 26.3835852874391 + ], + [ + -81.14838490721766, + 26.35225978201741 + ], + [ + -81.12844124779427, + 26.3835852874391 + ], + [ + -81.16832856664104, + 26.3835852874391 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.16832856664104, + 26.446236298282486 + ], + [ + -81.12844124779427, + 26.446236298282486 + ], + [ + -81.14838490721766, + 26.477561803704177 + ], + [ + -81.16832856664104, + 26.446236298282486 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.16832856664104, + 26.446236298282486 + ], + [ + -81.14838490721766, + 26.477561803704177 + ], + [ + -81.18827222606441, + 26.477561803704177 + ], + [ + -81.16832856664104, + 26.446236298282486 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.16832856664104, + 26.446236298282486 + ], + [ + -81.18827222606441, + 26.477561803704177 + ], + [ + -81.2082158854878, + 26.446236298282486 + ], + [ + -81.16832856664104, + 26.446236298282486 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.16832856664104, + 26.446236298282486 + ], + [ + -81.2082158854878, + 26.446236298282486 + ], + [ + -81.18827222606441, + 26.414910792860795 + ], + [ + -81.16832856664104, + 26.446236298282486 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.16832856664104, + 26.446236298282486 + ], + [ + -81.18827222606441, + 26.414910792860795 + ], + [ + -81.14838490721766, + 26.414910792860795 + ], + [ + -81.16832856664104, + 26.446236298282486 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.16832856664104, + 26.446236298282486 + ], + [ + -81.14838490721766, + 26.414910792860795 + ], + [ + -81.12844124779427, + 26.446236298282486 + ], + [ + -81.16832856664104, + 26.446236298282486 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1084975883709, + 24.911286532619545 + ], + [ + -81.06861026952413, + 24.911286532619545 + ], + [ + -81.08855392894752, + 24.942612038041236 + ], + [ + -81.1084975883709, + 24.911286532619545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1084975883709, + 24.911286532619545 + ], + [ + -81.08855392894752, + 24.942612038041236 + ], + [ + -81.12844124779427, + 24.942612038041236 + ], + [ + -81.1084975883709, + 24.911286532619545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1084975883709, + 24.911286532619545 + ], + [ + -81.12844124779427, + 24.942612038041236 + ], + [ + -81.14838490721766, + 24.911286532619545 + ], + [ + -81.1084975883709, + 24.911286532619545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1084975883709, + 24.911286532619545 + ], + [ + -81.14838490721766, + 24.911286532619545 + ], + [ + -81.12844124779427, + 24.879961027197854 + ], + [ + -81.1084975883709, + 24.911286532619545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1084975883709, + 24.911286532619545 + ], + [ + -81.12844124779427, + 24.879961027197854 + ], + [ + -81.08855392894752, + 24.879961027197854 + ], + [ + -81.1084975883709, + 24.911286532619545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1084975883709, + 24.911286532619545 + ], + [ + -81.08855392894752, + 24.879961027197854 + ], + [ + -81.06861026952413, + 24.911286532619545 + ], + [ + -81.1084975883709, + 24.911286532619545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1084975883709, + 24.97393754346293 + ], + [ + -81.06861026952413, + 24.97393754346293 + ], + [ + -81.08855392894752, + 25.005263048884622 + ], + [ + -81.1084975883709, + 24.97393754346293 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1084975883709, + 24.97393754346293 + ], + [ + -81.08855392894752, + 25.005263048884622 + ], + [ + -81.12844124779427, + 25.005263048884622 + ], + [ + -81.1084975883709, + 24.97393754346293 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1084975883709, + 24.97393754346293 + ], + [ + -81.12844124779427, + 25.005263048884622 + ], + [ + -81.14838490721766, + 24.97393754346293 + ], + [ + -81.1084975883709, + 24.97393754346293 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1084975883709, + 24.97393754346293 + ], + [ + -81.14838490721766, + 24.97393754346293 + ], + [ + -81.12844124779427, + 24.94261203804124 + ], + [ + -81.1084975883709, + 24.97393754346293 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1084975883709, + 24.97393754346293 + ], + [ + -81.12844124779427, + 24.94261203804124 + ], + [ + -81.08855392894752, + 24.94261203804124 + ], + [ + -81.1084975883709, + 24.97393754346293 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1084975883709, + 24.97393754346293 + ], + [ + -81.08855392894752, + 24.94261203804124 + ], + [ + -81.06861026952413, + 24.97393754346293 + ], + [ + -81.1084975883709, + 24.97393754346293 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1084975883709, + 25.036588554306316 + ], + [ + -81.06861026952413, + 25.036588554306316 + ], + [ + -81.08855392894752, + 25.067914059728007 + ], + [ + -81.1084975883709, + 25.036588554306316 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1084975883709, + 25.036588554306316 + ], + [ + -81.08855392894752, + 25.067914059728007 + ], + [ + -81.12844124779427, + 25.067914059728007 + ], + [ + -81.1084975883709, + 25.036588554306316 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1084975883709, + 25.036588554306316 + ], + [ + -81.12844124779427, + 25.067914059728007 + ], + [ + -81.14838490721766, + 25.036588554306316 + ], + [ + -81.1084975883709, + 25.036588554306316 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1084975883709, + 25.036588554306316 + ], + [ + -81.14838490721766, + 25.036588554306316 + ], + [ + -81.12844124779427, + 25.005263048884625 + ], + [ + -81.1084975883709, + 25.036588554306316 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1084975883709, + 25.036588554306316 + ], + [ + -81.12844124779427, + 25.005263048884625 + ], + [ + -81.08855392894752, + 25.005263048884625 + ], + [ + -81.1084975883709, + 25.036588554306316 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1084975883709, + 25.036588554306316 + ], + [ + -81.08855392894752, + 25.005263048884625 + ], + [ + -81.06861026952413, + 25.036588554306316 + ], + [ + -81.1084975883709, + 25.036588554306316 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1084975883709, + 25.099239565149702 + ], + [ + -81.06861026952413, + 25.099239565149702 + ], + [ + -81.08855392894752, + 25.130565070571393 + ], + [ + -81.1084975883709, + 25.099239565149702 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1084975883709, + 25.099239565149702 + ], + [ + -81.08855392894752, + 25.130565070571393 + ], + [ + -81.12844124779427, + 25.130565070571393 + ], + [ + -81.1084975883709, + 25.099239565149702 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1084975883709, + 25.099239565149702 + ], + [ + -81.12844124779427, + 25.130565070571393 + ], + [ + -81.14838490721766, + 25.099239565149702 + ], + [ + -81.1084975883709, + 25.099239565149702 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1084975883709, + 25.099239565149702 + ], + [ + -81.14838490721766, + 25.099239565149702 + ], + [ + -81.12844124779427, + 25.06791405972801 + ], + [ + -81.1084975883709, + 25.099239565149702 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1084975883709, + 25.099239565149702 + ], + [ + -81.12844124779427, + 25.06791405972801 + ], + [ + -81.08855392894752, + 25.06791405972801 + ], + [ + -81.1084975883709, + 25.099239565149702 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1084975883709, + 25.099239565149702 + ], + [ + -81.08855392894752, + 25.06791405972801 + ], + [ + -81.06861026952413, + 25.099239565149702 + ], + [ + -81.1084975883709, + 25.099239565149702 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1084975883709, + 25.161890575993088 + ], + [ + -81.06861026952413, + 25.161890575993088 + ], + [ + -81.08855392894752, + 25.19321608141478 + ], + [ + -81.1084975883709, + 25.161890575993088 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1084975883709, + 25.161890575993088 + ], + [ + -81.08855392894752, + 25.19321608141478 + ], + [ + -81.12844124779427, + 25.19321608141478 + ], + [ + -81.1084975883709, + 25.161890575993088 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1084975883709, + 25.161890575993088 + ], + [ + -81.12844124779427, + 25.19321608141478 + ], + [ + -81.14838490721766, + 25.161890575993088 + ], + [ + -81.1084975883709, + 25.161890575993088 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1084975883709, + 25.161890575993088 + ], + [ + -81.14838490721766, + 25.161890575993088 + ], + [ + -81.12844124779427, + 25.130565070571397 + ], + [ + -81.1084975883709, + 25.161890575993088 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1084975883709, + 25.161890575993088 + ], + [ + -81.12844124779427, + 25.130565070571397 + ], + [ + -81.08855392894752, + 25.130565070571397 + ], + [ + -81.1084975883709, + 25.161890575993088 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1084975883709, + 25.161890575993088 + ], + [ + -81.08855392894752, + 25.130565070571397 + ], + [ + -81.06861026952413, + 25.161890575993088 + ], + [ + -81.1084975883709, + 25.161890575993088 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1084975883709, + 25.224541586836473 + ], + [ + -81.06861026952413, + 25.224541586836473 + ], + [ + -81.08855392894752, + 25.255867092258164 + ], + [ + -81.1084975883709, + 25.224541586836473 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1084975883709, + 25.224541586836473 + ], + [ + -81.08855392894752, + 25.255867092258164 + ], + [ + -81.12844124779427, + 25.255867092258164 + ], + [ + -81.1084975883709, + 25.224541586836473 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1084975883709, + 25.224541586836473 + ], + [ + -81.12844124779427, + 25.255867092258164 + ], + [ + -81.14838490721766, + 25.224541586836473 + ], + [ + -81.1084975883709, + 25.224541586836473 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1084975883709, + 25.224541586836473 + ], + [ + -81.14838490721766, + 25.224541586836473 + ], + [ + -81.12844124779427, + 25.193216081414782 + ], + [ + -81.1084975883709, + 25.224541586836473 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1084975883709, + 25.224541586836473 + ], + [ + -81.12844124779427, + 25.193216081414782 + ], + [ + -81.08855392894752, + 25.193216081414782 + ], + [ + -81.1084975883709, + 25.224541586836473 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1084975883709, + 25.224541586836473 + ], + [ + -81.08855392894752, + 25.193216081414782 + ], + [ + -81.06861026952413, + 25.224541586836473 + ], + [ + -81.1084975883709, + 25.224541586836473 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1084975883709, + 25.28719259767986 + ], + [ + -81.06861026952413, + 25.28719259767986 + ], + [ + -81.08855392894752, + 25.31851810310155 + ], + [ + -81.1084975883709, + 25.28719259767986 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1084975883709, + 25.28719259767986 + ], + [ + -81.08855392894752, + 25.31851810310155 + ], + [ + -81.12844124779427, + 25.31851810310155 + ], + [ + -81.1084975883709, + 25.28719259767986 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1084975883709, + 25.28719259767986 + ], + [ + -81.12844124779427, + 25.31851810310155 + ], + [ + -81.14838490721766, + 25.28719259767986 + ], + [ + -81.1084975883709, + 25.28719259767986 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1084975883709, + 25.28719259767986 + ], + [ + -81.14838490721766, + 25.28719259767986 + ], + [ + -81.12844124779427, + 25.255867092258168 + ], + [ + -81.1084975883709, + 25.28719259767986 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1084975883709, + 25.28719259767986 + ], + [ + -81.12844124779427, + 25.255867092258168 + ], + [ + -81.08855392894752, + 25.255867092258168 + ], + [ + -81.1084975883709, + 25.28719259767986 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1084975883709, + 25.28719259767986 + ], + [ + -81.08855392894752, + 25.255867092258168 + ], + [ + -81.06861026952413, + 25.28719259767986 + ], + [ + -81.1084975883709, + 25.28719259767986 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1084975883709, + 25.349843608523244 + ], + [ + -81.06861026952413, + 25.349843608523244 + ], + [ + -81.08855392894752, + 25.381169113944935 + ], + [ + -81.1084975883709, + 25.349843608523244 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1084975883709, + 25.349843608523244 + ], + [ + -81.08855392894752, + 25.381169113944935 + ], + [ + -81.12844124779427, + 25.381169113944935 + ], + [ + -81.1084975883709, + 25.349843608523244 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1084975883709, + 25.349843608523244 + ], + [ + -81.12844124779427, + 25.381169113944935 + ], + [ + -81.14838490721766, + 25.349843608523244 + ], + [ + -81.1084975883709, + 25.349843608523244 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1084975883709, + 25.349843608523244 + ], + [ + -81.14838490721766, + 25.349843608523244 + ], + [ + -81.12844124779427, + 25.318518103101553 + ], + [ + -81.1084975883709, + 25.349843608523244 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1084975883709, + 25.349843608523244 + ], + [ + -81.12844124779427, + 25.318518103101553 + ], + [ + -81.08855392894752, + 25.318518103101553 + ], + [ + -81.1084975883709, + 25.349843608523244 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1084975883709, + 25.349843608523244 + ], + [ + -81.08855392894752, + 25.318518103101553 + ], + [ + -81.06861026952413, + 25.349843608523244 + ], + [ + -81.1084975883709, + 25.349843608523244 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1084975883709, + 25.41249461936663 + ], + [ + -81.06861026952413, + 25.41249461936663 + ], + [ + -81.08855392894752, + 25.44382012478832 + ], + [ + -81.1084975883709, + 25.41249461936663 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1084975883709, + 25.41249461936663 + ], + [ + -81.08855392894752, + 25.44382012478832 + ], + [ + -81.12844124779427, + 25.44382012478832 + ], + [ + -81.1084975883709, + 25.41249461936663 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1084975883709, + 25.41249461936663 + ], + [ + -81.12844124779427, + 25.44382012478832 + ], + [ + -81.14838490721766, + 25.41249461936663 + ], + [ + -81.1084975883709, + 25.41249461936663 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1084975883709, + 25.41249461936663 + ], + [ + -81.14838490721766, + 25.41249461936663 + ], + [ + -81.12844124779427, + 25.38116911394494 + ], + [ + -81.1084975883709, + 25.41249461936663 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1084975883709, + 25.41249461936663 + ], + [ + -81.12844124779427, + 25.38116911394494 + ], + [ + -81.08855392894752, + 25.38116911394494 + ], + [ + -81.1084975883709, + 25.41249461936663 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1084975883709, + 25.41249461936663 + ], + [ + -81.08855392894752, + 25.38116911394494 + ], + [ + -81.06861026952413, + 25.41249461936663 + ], + [ + -81.1084975883709, + 25.41249461936663 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1084975883709, + 25.475145630210015 + ], + [ + -81.06861026952413, + 25.475145630210015 + ], + [ + -81.08855392894752, + 25.506471135631706 + ], + [ + -81.1084975883709, + 25.475145630210015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1084975883709, + 25.475145630210015 + ], + [ + -81.08855392894752, + 25.506471135631706 + ], + [ + -81.12844124779427, + 25.506471135631706 + ], + [ + -81.1084975883709, + 25.475145630210015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1084975883709, + 25.475145630210015 + ], + [ + -81.12844124779427, + 25.506471135631706 + ], + [ + -81.14838490721766, + 25.475145630210015 + ], + [ + -81.1084975883709, + 25.475145630210015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1084975883709, + 25.475145630210015 + ], + [ + -81.14838490721766, + 25.475145630210015 + ], + [ + -81.12844124779427, + 25.443820124788324 + ], + [ + -81.1084975883709, + 25.475145630210015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1084975883709, + 25.475145630210015 + ], + [ + -81.12844124779427, + 25.443820124788324 + ], + [ + -81.08855392894752, + 25.443820124788324 + ], + [ + -81.1084975883709, + 25.475145630210015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1084975883709, + 25.475145630210015 + ], + [ + -81.08855392894752, + 25.443820124788324 + ], + [ + -81.06861026952413, + 25.475145630210015 + ], + [ + -81.1084975883709, + 25.475145630210015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1084975883709, + 25.5377966410534 + ], + [ + -81.06861026952413, + 25.5377966410534 + ], + [ + -81.08855392894752, + 25.56912214647509 + ], + [ + -81.1084975883709, + 25.5377966410534 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1084975883709, + 25.5377966410534 + ], + [ + -81.08855392894752, + 25.56912214647509 + ], + [ + -81.12844124779427, + 25.56912214647509 + ], + [ + -81.1084975883709, + 25.5377966410534 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1084975883709, + 25.5377966410534 + ], + [ + -81.12844124779427, + 25.56912214647509 + ], + [ + -81.14838490721766, + 25.5377966410534 + ], + [ + -81.1084975883709, + 25.5377966410534 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1084975883709, + 25.5377966410534 + ], + [ + -81.14838490721766, + 25.5377966410534 + ], + [ + -81.12844124779427, + 25.50647113563171 + ], + [ + -81.1084975883709, + 25.5377966410534 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1084975883709, + 25.5377966410534 + ], + [ + -81.12844124779427, + 25.50647113563171 + ], + [ + -81.08855392894752, + 25.50647113563171 + ], + [ + -81.1084975883709, + 25.5377966410534 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1084975883709, + 25.5377966410534 + ], + [ + -81.08855392894752, + 25.50647113563171 + ], + [ + -81.06861026952413, + 25.5377966410534 + ], + [ + -81.1084975883709, + 25.5377966410534 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1084975883709, + 25.600447651896786 + ], + [ + -81.06861026952413, + 25.600447651896786 + ], + [ + -81.08855392894752, + 25.631773157318477 + ], + [ + -81.1084975883709, + 25.600447651896786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1084975883709, + 25.600447651896786 + ], + [ + -81.08855392894752, + 25.631773157318477 + ], + [ + -81.12844124779427, + 25.631773157318477 + ], + [ + -81.1084975883709, + 25.600447651896786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1084975883709, + 25.600447651896786 + ], + [ + -81.12844124779427, + 25.631773157318477 + ], + [ + -81.14838490721766, + 25.600447651896786 + ], + [ + -81.1084975883709, + 25.600447651896786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1084975883709, + 25.600447651896786 + ], + [ + -81.14838490721766, + 25.600447651896786 + ], + [ + -81.12844124779427, + 25.569122146475095 + ], + [ + -81.1084975883709, + 25.600447651896786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1084975883709, + 25.600447651896786 + ], + [ + -81.12844124779427, + 25.569122146475095 + ], + [ + -81.08855392894752, + 25.569122146475095 + ], + [ + -81.1084975883709, + 25.600447651896786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1084975883709, + 25.600447651896786 + ], + [ + -81.08855392894752, + 25.569122146475095 + ], + [ + -81.06861026952413, + 25.600447651896786 + ], + [ + -81.1084975883709, + 25.600447651896786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1084975883709, + 25.663098662740172 + ], + [ + -81.06861026952413, + 25.663098662740172 + ], + [ + -81.08855392894752, + 25.694424168161863 + ], + [ + -81.1084975883709, + 25.663098662740172 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1084975883709, + 25.663098662740172 + ], + [ + -81.08855392894752, + 25.694424168161863 + ], + [ + -81.12844124779427, + 25.694424168161863 + ], + [ + -81.1084975883709, + 25.663098662740172 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1084975883709, + 25.663098662740172 + ], + [ + -81.12844124779427, + 25.694424168161863 + ], + [ + -81.14838490721766, + 25.663098662740172 + ], + [ + -81.1084975883709, + 25.663098662740172 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1084975883709, + 25.663098662740172 + ], + [ + -81.14838490721766, + 25.663098662740172 + ], + [ + -81.12844124779427, + 25.63177315731848 + ], + [ + -81.1084975883709, + 25.663098662740172 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1084975883709, + 25.663098662740172 + ], + [ + -81.12844124779427, + 25.63177315731848 + ], + [ + -81.08855392894752, + 25.63177315731848 + ], + [ + -81.1084975883709, + 25.663098662740172 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1084975883709, + 25.663098662740172 + ], + [ + -81.08855392894752, + 25.63177315731848 + ], + [ + -81.06861026952413, + 25.663098662740172 + ], + [ + -81.1084975883709, + 25.663098662740172 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1084975883709, + 25.725749673583557 + ], + [ + -81.06861026952413, + 25.725749673583557 + ], + [ + -81.08855392894752, + 25.75707517900525 + ], + [ + -81.1084975883709, + 25.725749673583557 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1084975883709, + 25.725749673583557 + ], + [ + -81.08855392894752, + 25.75707517900525 + ], + [ + -81.12844124779427, + 25.75707517900525 + ], + [ + -81.1084975883709, + 25.725749673583557 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1084975883709, + 25.725749673583557 + ], + [ + -81.12844124779427, + 25.75707517900525 + ], + [ + -81.14838490721766, + 25.725749673583557 + ], + [ + -81.1084975883709, + 25.725749673583557 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1084975883709, + 25.725749673583557 + ], + [ + -81.14838490721766, + 25.725749673583557 + ], + [ + -81.12844124779427, + 25.694424168161866 + ], + [ + -81.1084975883709, + 25.725749673583557 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1084975883709, + 25.725749673583557 + ], + [ + -81.12844124779427, + 25.694424168161866 + ], + [ + -81.08855392894752, + 25.694424168161866 + ], + [ + -81.1084975883709, + 25.725749673583557 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1084975883709, + 25.725749673583557 + ], + [ + -81.08855392894752, + 25.694424168161866 + ], + [ + -81.06861026952413, + 25.725749673583557 + ], + [ + -81.1084975883709, + 25.725749673583557 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1084975883709, + 25.788400684426943 + ], + [ + -81.06861026952413, + 25.788400684426943 + ], + [ + -81.08855392894752, + 25.819726189848634 + ], + [ + -81.1084975883709, + 25.788400684426943 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1084975883709, + 25.788400684426943 + ], + [ + -81.08855392894752, + 25.819726189848634 + ], + [ + -81.12844124779427, + 25.819726189848634 + ], + [ + -81.1084975883709, + 25.788400684426943 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1084975883709, + 25.788400684426943 + ], + [ + -81.12844124779427, + 25.819726189848634 + ], + [ + -81.14838490721766, + 25.788400684426943 + ], + [ + -81.1084975883709, + 25.788400684426943 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1084975883709, + 25.788400684426943 + ], + [ + -81.14838490721766, + 25.788400684426943 + ], + [ + -81.12844124779427, + 25.757075179005252 + ], + [ + -81.1084975883709, + 25.788400684426943 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1084975883709, + 25.788400684426943 + ], + [ + -81.12844124779427, + 25.757075179005252 + ], + [ + -81.08855392894752, + 25.757075179005252 + ], + [ + -81.1084975883709, + 25.788400684426943 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1084975883709, + 25.788400684426943 + ], + [ + -81.08855392894752, + 25.757075179005252 + ], + [ + -81.06861026952413, + 25.788400684426943 + ], + [ + -81.1084975883709, + 25.788400684426943 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1084975883709, + 25.85105169527033 + ], + [ + -81.06861026952413, + 25.85105169527033 + ], + [ + -81.08855392894752, + 25.88237720069202 + ], + [ + -81.1084975883709, + 25.85105169527033 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1084975883709, + 25.85105169527033 + ], + [ + -81.08855392894752, + 25.88237720069202 + ], + [ + -81.12844124779427, + 25.88237720069202 + ], + [ + -81.1084975883709, + 25.85105169527033 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1084975883709, + 25.85105169527033 + ], + [ + -81.12844124779427, + 25.88237720069202 + ], + [ + -81.14838490721766, + 25.85105169527033 + ], + [ + -81.1084975883709, + 25.85105169527033 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1084975883709, + 25.85105169527033 + ], + [ + -81.14838490721766, + 25.85105169527033 + ], + [ + -81.12844124779427, + 25.819726189848637 + ], + [ + -81.1084975883709, + 25.85105169527033 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1084975883709, + 25.85105169527033 + ], + [ + -81.12844124779427, + 25.819726189848637 + ], + [ + -81.08855392894752, + 25.819726189848637 + ], + [ + -81.1084975883709, + 25.85105169527033 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1084975883709, + 25.85105169527033 + ], + [ + -81.08855392894752, + 25.819726189848637 + ], + [ + -81.06861026952413, + 25.85105169527033 + ], + [ + -81.1084975883709, + 25.85105169527033 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1084975883709, + 25.913702706113714 + ], + [ + -81.06861026952413, + 25.913702706113714 + ], + [ + -81.08855392894752, + 25.945028211535405 + ], + [ + -81.1084975883709, + 25.913702706113714 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1084975883709, + 25.913702706113714 + ], + [ + -81.08855392894752, + 25.945028211535405 + ], + [ + -81.12844124779427, + 25.945028211535405 + ], + [ + -81.1084975883709, + 25.913702706113714 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1084975883709, + 25.913702706113714 + ], + [ + -81.12844124779427, + 25.945028211535405 + ], + [ + -81.14838490721766, + 25.913702706113714 + ], + [ + -81.1084975883709, + 25.913702706113714 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1084975883709, + 25.913702706113714 + ], + [ + -81.14838490721766, + 25.913702706113714 + ], + [ + -81.12844124779427, + 25.882377200692023 + ], + [ + -81.1084975883709, + 25.913702706113714 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1084975883709, + 25.913702706113714 + ], + [ + -81.12844124779427, + 25.882377200692023 + ], + [ + -81.08855392894752, + 25.882377200692023 + ], + [ + -81.1084975883709, + 25.913702706113714 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1084975883709, + 25.913702706113714 + ], + [ + -81.08855392894752, + 25.882377200692023 + ], + [ + -81.06861026952413, + 25.913702706113714 + ], + [ + -81.1084975883709, + 25.913702706113714 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1084975883709, + 25.9763537169571 + ], + [ + -81.06861026952413, + 25.9763537169571 + ], + [ + -81.08855392894752, + 26.00767922237879 + ], + [ + -81.1084975883709, + 25.9763537169571 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1084975883709, + 25.9763537169571 + ], + [ + -81.08855392894752, + 26.00767922237879 + ], + [ + -81.12844124779427, + 26.00767922237879 + ], + [ + -81.1084975883709, + 25.9763537169571 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1084975883709, + 25.9763537169571 + ], + [ + -81.12844124779427, + 26.00767922237879 + ], + [ + -81.14838490721766, + 25.9763537169571 + ], + [ + -81.1084975883709, + 25.9763537169571 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1084975883709, + 25.9763537169571 + ], + [ + -81.14838490721766, + 25.9763537169571 + ], + [ + -81.12844124779427, + 25.94502821153541 + ], + [ + -81.1084975883709, + 25.9763537169571 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1084975883709, + 25.9763537169571 + ], + [ + -81.12844124779427, + 25.94502821153541 + ], + [ + -81.08855392894752, + 25.94502821153541 + ], + [ + -81.1084975883709, + 25.9763537169571 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1084975883709, + 25.9763537169571 + ], + [ + -81.08855392894752, + 25.94502821153541 + ], + [ + -81.06861026952413, + 25.9763537169571 + ], + [ + -81.1084975883709, + 25.9763537169571 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1084975883709, + 26.039004727800485 + ], + [ + -81.06861026952413, + 26.039004727800485 + ], + [ + -81.08855392894752, + 26.070330233222176 + ], + [ + -81.1084975883709, + 26.039004727800485 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1084975883709, + 26.039004727800485 + ], + [ + -81.08855392894752, + 26.070330233222176 + ], + [ + -81.12844124779427, + 26.070330233222176 + ], + [ + -81.1084975883709, + 26.039004727800485 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1084975883709, + 26.039004727800485 + ], + [ + -81.12844124779427, + 26.070330233222176 + ], + [ + -81.14838490721766, + 26.039004727800485 + ], + [ + -81.1084975883709, + 26.039004727800485 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1084975883709, + 26.039004727800485 + ], + [ + -81.14838490721766, + 26.039004727800485 + ], + [ + -81.12844124779427, + 26.007679222378794 + ], + [ + -81.1084975883709, + 26.039004727800485 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1084975883709, + 26.039004727800485 + ], + [ + -81.12844124779427, + 26.007679222378794 + ], + [ + -81.08855392894752, + 26.007679222378794 + ], + [ + -81.1084975883709, + 26.039004727800485 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1084975883709, + 26.039004727800485 + ], + [ + -81.08855392894752, + 26.007679222378794 + ], + [ + -81.06861026952413, + 26.039004727800485 + ], + [ + -81.1084975883709, + 26.039004727800485 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1084975883709, + 26.10165573864387 + ], + [ + -81.06861026952413, + 26.10165573864387 + ], + [ + -81.08855392894752, + 26.13298124406556 + ], + [ + -81.1084975883709, + 26.10165573864387 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1084975883709, + 26.10165573864387 + ], + [ + -81.08855392894752, + 26.13298124406556 + ], + [ + -81.12844124779427, + 26.13298124406556 + ], + [ + -81.1084975883709, + 26.10165573864387 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1084975883709, + 26.10165573864387 + ], + [ + -81.12844124779427, + 26.13298124406556 + ], + [ + -81.14838490721766, + 26.10165573864387 + ], + [ + -81.1084975883709, + 26.10165573864387 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1084975883709, + 26.10165573864387 + ], + [ + -81.14838490721766, + 26.10165573864387 + ], + [ + -81.12844124779427, + 26.07033023322218 + ], + [ + -81.1084975883709, + 26.10165573864387 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1084975883709, + 26.10165573864387 + ], + [ + -81.12844124779427, + 26.07033023322218 + ], + [ + -81.08855392894752, + 26.07033023322218 + ], + [ + -81.1084975883709, + 26.10165573864387 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1084975883709, + 26.10165573864387 + ], + [ + -81.08855392894752, + 26.07033023322218 + ], + [ + -81.06861026952413, + 26.10165573864387 + ], + [ + -81.1084975883709, + 26.10165573864387 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1084975883709, + 26.164306749487253 + ], + [ + -81.06861026952413, + 26.164306749487253 + ], + [ + -81.08855392894752, + 26.195632254908944 + ], + [ + -81.1084975883709, + 26.164306749487253 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1084975883709, + 26.164306749487253 + ], + [ + -81.08855392894752, + 26.195632254908944 + ], + [ + -81.12844124779427, + 26.195632254908944 + ], + [ + -81.1084975883709, + 26.164306749487253 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1084975883709, + 26.164306749487253 + ], + [ + -81.12844124779427, + 26.195632254908944 + ], + [ + -81.14838490721766, + 26.164306749487253 + ], + [ + -81.1084975883709, + 26.164306749487253 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1084975883709, + 26.164306749487253 + ], + [ + -81.14838490721766, + 26.164306749487253 + ], + [ + -81.12844124779427, + 26.13298124406556 + ], + [ + -81.1084975883709, + 26.164306749487253 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1084975883709, + 26.164306749487253 + ], + [ + -81.12844124779427, + 26.13298124406556 + ], + [ + -81.08855392894752, + 26.13298124406556 + ], + [ + -81.1084975883709, + 26.164306749487253 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1084975883709, + 26.164306749487253 + ], + [ + -81.08855392894752, + 26.13298124406556 + ], + [ + -81.06861026952413, + 26.164306749487253 + ], + [ + -81.1084975883709, + 26.164306749487253 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1084975883709, + 26.22695776033064 + ], + [ + -81.06861026952413, + 26.22695776033064 + ], + [ + -81.08855392894752, + 26.258283265752333 + ], + [ + -81.1084975883709, + 26.22695776033064 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1084975883709, + 26.22695776033064 + ], + [ + -81.08855392894752, + 26.258283265752333 + ], + [ + -81.12844124779427, + 26.258283265752333 + ], + [ + -81.1084975883709, + 26.22695776033064 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1084975883709, + 26.22695776033064 + ], + [ + -81.12844124779427, + 26.258283265752333 + ], + [ + -81.14838490721766, + 26.22695776033064 + ], + [ + -81.1084975883709, + 26.22695776033064 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1084975883709, + 26.22695776033064 + ], + [ + -81.14838490721766, + 26.22695776033064 + ], + [ + -81.12844124779427, + 26.19563225490895 + ], + [ + -81.1084975883709, + 26.22695776033064 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1084975883709, + 26.22695776033064 + ], + [ + -81.12844124779427, + 26.19563225490895 + ], + [ + -81.08855392894752, + 26.19563225490895 + ], + [ + -81.1084975883709, + 26.22695776033064 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1084975883709, + 26.22695776033064 + ], + [ + -81.08855392894752, + 26.19563225490895 + ], + [ + -81.06861026952413, + 26.22695776033064 + ], + [ + -81.1084975883709, + 26.22695776033064 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1084975883709, + 26.289608771174024 + ], + [ + -81.06861026952413, + 26.289608771174024 + ], + [ + -81.08855392894752, + 26.320934276595715 + ], + [ + -81.1084975883709, + 26.289608771174024 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1084975883709, + 26.289608771174024 + ], + [ + -81.08855392894752, + 26.320934276595715 + ], + [ + -81.12844124779427, + 26.320934276595715 + ], + [ + -81.1084975883709, + 26.289608771174024 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1084975883709, + 26.289608771174024 + ], + [ + -81.12844124779427, + 26.320934276595715 + ], + [ + -81.14838490721766, + 26.289608771174024 + ], + [ + -81.1084975883709, + 26.289608771174024 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1084975883709, + 26.289608771174024 + ], + [ + -81.14838490721766, + 26.289608771174024 + ], + [ + -81.12844124779427, + 26.258283265752333 + ], + [ + -81.1084975883709, + 26.289608771174024 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1084975883709, + 26.289608771174024 + ], + [ + -81.12844124779427, + 26.258283265752333 + ], + [ + -81.08855392894752, + 26.258283265752333 + ], + [ + -81.1084975883709, + 26.289608771174024 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1084975883709, + 26.289608771174024 + ], + [ + -81.08855392894752, + 26.258283265752333 + ], + [ + -81.06861026952413, + 26.289608771174024 + ], + [ + -81.1084975883709, + 26.289608771174024 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1084975883709, + 26.35225978201741 + ], + [ + -81.06861026952413, + 26.35225978201741 + ], + [ + -81.08855392894752, + 26.3835852874391 + ], + [ + -81.1084975883709, + 26.35225978201741 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1084975883709, + 26.35225978201741 + ], + [ + -81.08855392894752, + 26.3835852874391 + ], + [ + -81.12844124779427, + 26.3835852874391 + ], + [ + -81.1084975883709, + 26.35225978201741 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1084975883709, + 26.35225978201741 + ], + [ + -81.12844124779427, + 26.3835852874391 + ], + [ + -81.14838490721766, + 26.35225978201741 + ], + [ + -81.1084975883709, + 26.35225978201741 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1084975883709, + 26.35225978201741 + ], + [ + -81.14838490721766, + 26.35225978201741 + ], + [ + -81.12844124779427, + 26.320934276595718 + ], + [ + -81.1084975883709, + 26.35225978201741 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1084975883709, + 26.35225978201741 + ], + [ + -81.12844124779427, + 26.320934276595718 + ], + [ + -81.08855392894752, + 26.320934276595718 + ], + [ + -81.1084975883709, + 26.35225978201741 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1084975883709, + 26.35225978201741 + ], + [ + -81.08855392894752, + 26.320934276595718 + ], + [ + -81.06861026952413, + 26.35225978201741 + ], + [ + -81.1084975883709, + 26.35225978201741 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1084975883709, + 26.414910792860795 + ], + [ + -81.06861026952413, + 26.414910792860795 + ], + [ + -81.08855392894752, + 26.446236298282486 + ], + [ + -81.1084975883709, + 26.414910792860795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1084975883709, + 26.414910792860795 + ], + [ + -81.08855392894752, + 26.446236298282486 + ], + [ + -81.12844124779427, + 26.446236298282486 + ], + [ + -81.1084975883709, + 26.414910792860795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1084975883709, + 26.414910792860795 + ], + [ + -81.12844124779427, + 26.446236298282486 + ], + [ + -81.14838490721766, + 26.414910792860795 + ], + [ + -81.1084975883709, + 26.414910792860795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1084975883709, + 26.414910792860795 + ], + [ + -81.14838490721766, + 26.414910792860795 + ], + [ + -81.12844124779427, + 26.383585287439104 + ], + [ + -81.1084975883709, + 26.414910792860795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1084975883709, + 26.414910792860795 + ], + [ + -81.12844124779427, + 26.383585287439104 + ], + [ + -81.08855392894752, + 26.383585287439104 + ], + [ + -81.1084975883709, + 26.414910792860795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1084975883709, + 26.414910792860795 + ], + [ + -81.08855392894752, + 26.383585287439104 + ], + [ + -81.06861026952413, + 26.414910792860795 + ], + [ + -81.1084975883709, + 26.414910792860795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.04866661010075, + 24.942612038041236 + ], + [ + -81.00877929125399, + 24.942612038041236 + ], + [ + -81.02872295067738, + 24.973937543462927 + ], + [ + -81.04866661010075, + 24.942612038041236 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.04866661010075, + 24.942612038041236 + ], + [ + -81.02872295067738, + 24.973937543462927 + ], + [ + -81.06861026952413, + 24.973937543462927 + ], + [ + -81.04866661010075, + 24.942612038041236 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.04866661010075, + 24.942612038041236 + ], + [ + -81.06861026952413, + 24.973937543462927 + ], + [ + -81.08855392894752, + 24.942612038041236 + ], + [ + -81.04866661010075, + 24.942612038041236 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.04866661010075, + 24.942612038041236 + ], + [ + -81.08855392894752, + 24.942612038041236 + ], + [ + -81.06861026952413, + 24.911286532619545 + ], + [ + -81.04866661010075, + 24.942612038041236 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.04866661010075, + 24.942612038041236 + ], + [ + -81.06861026952413, + 24.911286532619545 + ], + [ + -81.02872295067738, + 24.911286532619545 + ], + [ + -81.04866661010075, + 24.942612038041236 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.04866661010075, + 24.942612038041236 + ], + [ + -81.02872295067738, + 24.911286532619545 + ], + [ + -81.00877929125399, + 24.942612038041236 + ], + [ + -81.04866661010075, + 24.942612038041236 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.04866661010075, + 25.005263048884622 + ], + [ + -81.00877929125399, + 25.005263048884622 + ], + [ + -81.02872295067738, + 25.036588554306313 + ], + [ + -81.04866661010075, + 25.005263048884622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.04866661010075, + 25.005263048884622 + ], + [ + -81.02872295067738, + 25.036588554306313 + ], + [ + -81.06861026952413, + 25.036588554306313 + ], + [ + -81.04866661010075, + 25.005263048884622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.04866661010075, + 25.005263048884622 + ], + [ + -81.06861026952413, + 25.036588554306313 + ], + [ + -81.08855392894752, + 25.005263048884622 + ], + [ + -81.04866661010075, + 25.005263048884622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.04866661010075, + 25.005263048884622 + ], + [ + -81.08855392894752, + 25.005263048884622 + ], + [ + -81.06861026952413, + 24.97393754346293 + ], + [ + -81.04866661010075, + 25.005263048884622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.04866661010075, + 25.005263048884622 + ], + [ + -81.06861026952413, + 24.97393754346293 + ], + [ + -81.02872295067738, + 24.97393754346293 + ], + [ + -81.04866661010075, + 25.005263048884622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.04866661010075, + 25.005263048884622 + ], + [ + -81.02872295067738, + 24.97393754346293 + ], + [ + -81.00877929125399, + 25.005263048884622 + ], + [ + -81.04866661010075, + 25.005263048884622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.04866661010075, + 25.067914059728007 + ], + [ + -81.00877929125399, + 25.067914059728007 + ], + [ + -81.02872295067738, + 25.0992395651497 + ], + [ + -81.04866661010075, + 25.067914059728007 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.04866661010075, + 25.067914059728007 + ], + [ + -81.02872295067738, + 25.0992395651497 + ], + [ + -81.06861026952413, + 25.0992395651497 + ], + [ + -81.04866661010075, + 25.067914059728007 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.04866661010075, + 25.067914059728007 + ], + [ + -81.06861026952413, + 25.0992395651497 + ], + [ + -81.08855392894752, + 25.067914059728007 + ], + [ + -81.04866661010075, + 25.067914059728007 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.04866661010075, + 25.067914059728007 + ], + [ + -81.08855392894752, + 25.067914059728007 + ], + [ + -81.06861026952413, + 25.036588554306316 + ], + [ + -81.04866661010075, + 25.067914059728007 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.04866661010075, + 25.067914059728007 + ], + [ + -81.06861026952413, + 25.036588554306316 + ], + [ + -81.02872295067738, + 25.036588554306316 + ], + [ + -81.04866661010075, + 25.067914059728007 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.04866661010075, + 25.067914059728007 + ], + [ + -81.02872295067738, + 25.036588554306316 + ], + [ + -81.00877929125399, + 25.067914059728007 + ], + [ + -81.04866661010075, + 25.067914059728007 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.04866661010075, + 25.130565070571393 + ], + [ + -81.00877929125399, + 25.130565070571393 + ], + [ + -81.02872295067738, + 25.161890575993084 + ], + [ + -81.04866661010075, + 25.130565070571393 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.04866661010075, + 25.130565070571393 + ], + [ + -81.02872295067738, + 25.161890575993084 + ], + [ + -81.06861026952413, + 25.161890575993084 + ], + [ + -81.04866661010075, + 25.130565070571393 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.04866661010075, + 25.130565070571393 + ], + [ + -81.06861026952413, + 25.161890575993084 + ], + [ + -81.08855392894752, + 25.130565070571393 + ], + [ + -81.04866661010075, + 25.130565070571393 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.04866661010075, + 25.130565070571393 + ], + [ + -81.08855392894752, + 25.130565070571393 + ], + [ + -81.06861026952413, + 25.099239565149702 + ], + [ + -81.04866661010075, + 25.130565070571393 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.04866661010075, + 25.130565070571393 + ], + [ + -81.06861026952413, + 25.099239565149702 + ], + [ + -81.02872295067738, + 25.099239565149702 + ], + [ + -81.04866661010075, + 25.130565070571393 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.04866661010075, + 25.130565070571393 + ], + [ + -81.02872295067738, + 25.099239565149702 + ], + [ + -81.00877929125399, + 25.130565070571393 + ], + [ + -81.04866661010075, + 25.130565070571393 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.04866661010075, + 25.19321608141478 + ], + [ + -81.00877929125399, + 25.19321608141478 + ], + [ + -81.02872295067738, + 25.22454158683647 + ], + [ + -81.04866661010075, + 25.19321608141478 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.04866661010075, + 25.19321608141478 + ], + [ + -81.02872295067738, + 25.22454158683647 + ], + [ + -81.06861026952413, + 25.22454158683647 + ], + [ + -81.04866661010075, + 25.19321608141478 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.04866661010075, + 25.19321608141478 + ], + [ + -81.06861026952413, + 25.22454158683647 + ], + [ + -81.08855392894752, + 25.19321608141478 + ], + [ + -81.04866661010075, + 25.19321608141478 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.04866661010075, + 25.19321608141478 + ], + [ + -81.08855392894752, + 25.19321608141478 + ], + [ + -81.06861026952413, + 25.161890575993088 + ], + [ + -81.04866661010075, + 25.19321608141478 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.04866661010075, + 25.19321608141478 + ], + [ + -81.06861026952413, + 25.161890575993088 + ], + [ + -81.02872295067738, + 25.161890575993088 + ], + [ + -81.04866661010075, + 25.19321608141478 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.04866661010075, + 25.19321608141478 + ], + [ + -81.02872295067738, + 25.161890575993088 + ], + [ + -81.00877929125399, + 25.19321608141478 + ], + [ + -81.04866661010075, + 25.19321608141478 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.04866661010075, + 25.255867092258164 + ], + [ + -81.00877929125399, + 25.255867092258164 + ], + [ + -81.02872295067738, + 25.287192597679855 + ], + [ + -81.04866661010075, + 25.255867092258164 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.04866661010075, + 25.255867092258164 + ], + [ + -81.02872295067738, + 25.287192597679855 + ], + [ + -81.06861026952413, + 25.287192597679855 + ], + [ + -81.04866661010075, + 25.255867092258164 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.04866661010075, + 25.255867092258164 + ], + [ + -81.06861026952413, + 25.287192597679855 + ], + [ + -81.08855392894752, + 25.255867092258164 + ], + [ + -81.04866661010075, + 25.255867092258164 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.04866661010075, + 25.255867092258164 + ], + [ + -81.08855392894752, + 25.255867092258164 + ], + [ + -81.06861026952413, + 25.224541586836473 + ], + [ + -81.04866661010075, + 25.255867092258164 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.04866661010075, + 25.255867092258164 + ], + [ + -81.06861026952413, + 25.224541586836473 + ], + [ + -81.02872295067738, + 25.224541586836473 + ], + [ + -81.04866661010075, + 25.255867092258164 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.04866661010075, + 25.255867092258164 + ], + [ + -81.02872295067738, + 25.224541586836473 + ], + [ + -81.00877929125399, + 25.255867092258164 + ], + [ + -81.04866661010075, + 25.255867092258164 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.04866661010075, + 25.31851810310155 + ], + [ + -81.00877929125399, + 25.31851810310155 + ], + [ + -81.02872295067738, + 25.34984360852324 + ], + [ + -81.04866661010075, + 25.31851810310155 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.04866661010075, + 25.31851810310155 + ], + [ + -81.02872295067738, + 25.34984360852324 + ], + [ + -81.06861026952413, + 25.34984360852324 + ], + [ + -81.04866661010075, + 25.31851810310155 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.04866661010075, + 25.31851810310155 + ], + [ + -81.06861026952413, + 25.34984360852324 + ], + [ + -81.08855392894752, + 25.31851810310155 + ], + [ + -81.04866661010075, + 25.31851810310155 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.04866661010075, + 25.31851810310155 + ], + [ + -81.08855392894752, + 25.31851810310155 + ], + [ + -81.06861026952413, + 25.28719259767986 + ], + [ + -81.04866661010075, + 25.31851810310155 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.04866661010075, + 25.31851810310155 + ], + [ + -81.06861026952413, + 25.28719259767986 + ], + [ + -81.02872295067738, + 25.28719259767986 + ], + [ + -81.04866661010075, + 25.31851810310155 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.04866661010075, + 25.31851810310155 + ], + [ + -81.02872295067738, + 25.28719259767986 + ], + [ + -81.00877929125399, + 25.31851810310155 + ], + [ + -81.04866661010075, + 25.31851810310155 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.04866661010075, + 25.381169113944935 + ], + [ + -81.00877929125399, + 25.381169113944935 + ], + [ + -81.02872295067738, + 25.412494619366626 + ], + [ + -81.04866661010075, + 25.381169113944935 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.04866661010075, + 25.381169113944935 + ], + [ + -81.02872295067738, + 25.412494619366626 + ], + [ + -81.06861026952413, + 25.412494619366626 + ], + [ + -81.04866661010075, + 25.381169113944935 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.04866661010075, + 25.381169113944935 + ], + [ + -81.06861026952413, + 25.412494619366626 + ], + [ + -81.08855392894752, + 25.381169113944935 + ], + [ + -81.04866661010075, + 25.381169113944935 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.04866661010075, + 25.381169113944935 + ], + [ + -81.08855392894752, + 25.381169113944935 + ], + [ + -81.06861026952413, + 25.349843608523244 + ], + [ + -81.04866661010075, + 25.381169113944935 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.04866661010075, + 25.381169113944935 + ], + [ + -81.06861026952413, + 25.349843608523244 + ], + [ + -81.02872295067738, + 25.349843608523244 + ], + [ + -81.04866661010075, + 25.381169113944935 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.04866661010075, + 25.381169113944935 + ], + [ + -81.02872295067738, + 25.349843608523244 + ], + [ + -81.00877929125399, + 25.381169113944935 + ], + [ + -81.04866661010075, + 25.381169113944935 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.04866661010075, + 25.44382012478832 + ], + [ + -81.00877929125399, + 25.44382012478832 + ], + [ + -81.02872295067738, + 25.47514563021001 + ], + [ + -81.04866661010075, + 25.44382012478832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.04866661010075, + 25.44382012478832 + ], + [ + -81.02872295067738, + 25.47514563021001 + ], + [ + -81.06861026952413, + 25.47514563021001 + ], + [ + -81.04866661010075, + 25.44382012478832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.04866661010075, + 25.44382012478832 + ], + [ + -81.06861026952413, + 25.47514563021001 + ], + [ + -81.08855392894752, + 25.44382012478832 + ], + [ + -81.04866661010075, + 25.44382012478832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.04866661010075, + 25.44382012478832 + ], + [ + -81.08855392894752, + 25.44382012478832 + ], + [ + -81.06861026952413, + 25.41249461936663 + ], + [ + -81.04866661010075, + 25.44382012478832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.04866661010075, + 25.44382012478832 + ], + [ + -81.06861026952413, + 25.41249461936663 + ], + [ + -81.02872295067738, + 25.41249461936663 + ], + [ + -81.04866661010075, + 25.44382012478832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.04866661010075, + 25.44382012478832 + ], + [ + -81.02872295067738, + 25.41249461936663 + ], + [ + -81.00877929125399, + 25.44382012478832 + ], + [ + -81.04866661010075, + 25.44382012478832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.04866661010075, + 25.506471135631706 + ], + [ + -81.00877929125399, + 25.506471135631706 + ], + [ + -81.02872295067738, + 25.537796641053397 + ], + [ + -81.04866661010075, + 25.506471135631706 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.04866661010075, + 25.506471135631706 + ], + [ + -81.02872295067738, + 25.537796641053397 + ], + [ + -81.06861026952413, + 25.537796641053397 + ], + [ + -81.04866661010075, + 25.506471135631706 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.04866661010075, + 25.506471135631706 + ], + [ + -81.06861026952413, + 25.537796641053397 + ], + [ + -81.08855392894752, + 25.506471135631706 + ], + [ + -81.04866661010075, + 25.506471135631706 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.04866661010075, + 25.506471135631706 + ], + [ + -81.08855392894752, + 25.506471135631706 + ], + [ + -81.06861026952413, + 25.475145630210015 + ], + [ + -81.04866661010075, + 25.506471135631706 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.04866661010075, + 25.506471135631706 + ], + [ + -81.06861026952413, + 25.475145630210015 + ], + [ + -81.02872295067738, + 25.475145630210015 + ], + [ + -81.04866661010075, + 25.506471135631706 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.04866661010075, + 25.506471135631706 + ], + [ + -81.02872295067738, + 25.475145630210015 + ], + [ + -81.00877929125399, + 25.506471135631706 + ], + [ + -81.04866661010075, + 25.506471135631706 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.04866661010075, + 25.56912214647509 + ], + [ + -81.00877929125399, + 25.56912214647509 + ], + [ + -81.02872295067738, + 25.600447651896783 + ], + [ + -81.04866661010075, + 25.56912214647509 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.04866661010075, + 25.56912214647509 + ], + [ + -81.02872295067738, + 25.600447651896783 + ], + [ + -81.06861026952413, + 25.600447651896783 + ], + [ + -81.04866661010075, + 25.56912214647509 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.04866661010075, + 25.56912214647509 + ], + [ + -81.06861026952413, + 25.600447651896783 + ], + [ + -81.08855392894752, + 25.56912214647509 + ], + [ + -81.04866661010075, + 25.56912214647509 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.04866661010075, + 25.56912214647509 + ], + [ + -81.08855392894752, + 25.56912214647509 + ], + [ + -81.06861026952413, + 25.5377966410534 + ], + [ + -81.04866661010075, + 25.56912214647509 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.04866661010075, + 25.56912214647509 + ], + [ + -81.06861026952413, + 25.5377966410534 + ], + [ + -81.02872295067738, + 25.5377966410534 + ], + [ + -81.04866661010075, + 25.56912214647509 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.04866661010075, + 25.56912214647509 + ], + [ + -81.02872295067738, + 25.5377966410534 + ], + [ + -81.00877929125399, + 25.56912214647509 + ], + [ + -81.04866661010075, + 25.56912214647509 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.04866661010075, + 25.631773157318477 + ], + [ + -81.00877929125399, + 25.631773157318477 + ], + [ + -81.02872295067738, + 25.66309866274017 + ], + [ + -81.04866661010075, + 25.631773157318477 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.04866661010075, + 25.631773157318477 + ], + [ + -81.02872295067738, + 25.66309866274017 + ], + [ + -81.06861026952413, + 25.66309866274017 + ], + [ + -81.04866661010075, + 25.631773157318477 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.04866661010075, + 25.631773157318477 + ], + [ + -81.06861026952413, + 25.66309866274017 + ], + [ + -81.08855392894752, + 25.631773157318477 + ], + [ + -81.04866661010075, + 25.631773157318477 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.04866661010075, + 25.631773157318477 + ], + [ + -81.08855392894752, + 25.631773157318477 + ], + [ + -81.06861026952413, + 25.600447651896786 + ], + [ + -81.04866661010075, + 25.631773157318477 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.04866661010075, + 25.631773157318477 + ], + [ + -81.06861026952413, + 25.600447651896786 + ], + [ + -81.02872295067738, + 25.600447651896786 + ], + [ + -81.04866661010075, + 25.631773157318477 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.04866661010075, + 25.631773157318477 + ], + [ + -81.02872295067738, + 25.600447651896786 + ], + [ + -81.00877929125399, + 25.631773157318477 + ], + [ + -81.04866661010075, + 25.631773157318477 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.04866661010075, + 25.694424168161863 + ], + [ + -81.00877929125399, + 25.694424168161863 + ], + [ + -81.02872295067738, + 25.725749673583554 + ], + [ + -81.04866661010075, + 25.694424168161863 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.04866661010075, + 25.694424168161863 + ], + [ + -81.02872295067738, + 25.725749673583554 + ], + [ + -81.06861026952413, + 25.725749673583554 + ], + [ + -81.04866661010075, + 25.694424168161863 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.04866661010075, + 25.694424168161863 + ], + [ + -81.06861026952413, + 25.725749673583554 + ], + [ + -81.08855392894752, + 25.694424168161863 + ], + [ + -81.04866661010075, + 25.694424168161863 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.04866661010075, + 25.694424168161863 + ], + [ + -81.08855392894752, + 25.694424168161863 + ], + [ + -81.06861026952413, + 25.663098662740172 + ], + [ + -81.04866661010075, + 25.694424168161863 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.04866661010075, + 25.694424168161863 + ], + [ + -81.06861026952413, + 25.663098662740172 + ], + [ + -81.02872295067738, + 25.663098662740172 + ], + [ + -81.04866661010075, + 25.694424168161863 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.04866661010075, + 25.694424168161863 + ], + [ + -81.02872295067738, + 25.663098662740172 + ], + [ + -81.00877929125399, + 25.694424168161863 + ], + [ + -81.04866661010075, + 25.694424168161863 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.04866661010075, + 25.75707517900525 + ], + [ + -81.00877929125399, + 25.75707517900525 + ], + [ + -81.02872295067738, + 25.78840068442694 + ], + [ + -81.04866661010075, + 25.75707517900525 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.04866661010075, + 25.75707517900525 + ], + [ + -81.02872295067738, + 25.78840068442694 + ], + [ + -81.06861026952413, + 25.78840068442694 + ], + [ + -81.04866661010075, + 25.75707517900525 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.04866661010075, + 25.75707517900525 + ], + [ + -81.06861026952413, + 25.78840068442694 + ], + [ + -81.08855392894752, + 25.75707517900525 + ], + [ + -81.04866661010075, + 25.75707517900525 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.04866661010075, + 25.75707517900525 + ], + [ + -81.08855392894752, + 25.75707517900525 + ], + [ + -81.06861026952413, + 25.725749673583557 + ], + [ + -81.04866661010075, + 25.75707517900525 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.04866661010075, + 25.75707517900525 + ], + [ + -81.06861026952413, + 25.725749673583557 + ], + [ + -81.02872295067738, + 25.725749673583557 + ], + [ + -81.04866661010075, + 25.75707517900525 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.04866661010075, + 25.75707517900525 + ], + [ + -81.02872295067738, + 25.725749673583557 + ], + [ + -81.00877929125399, + 25.75707517900525 + ], + [ + -81.04866661010075, + 25.75707517900525 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.04866661010075, + 25.819726189848634 + ], + [ + -81.00877929125399, + 25.819726189848634 + ], + [ + -81.02872295067738, + 25.851051695270325 + ], + [ + -81.04866661010075, + 25.819726189848634 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.04866661010075, + 25.819726189848634 + ], + [ + -81.02872295067738, + 25.851051695270325 + ], + [ + -81.06861026952413, + 25.851051695270325 + ], + [ + -81.04866661010075, + 25.819726189848634 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.04866661010075, + 25.819726189848634 + ], + [ + -81.06861026952413, + 25.851051695270325 + ], + [ + -81.08855392894752, + 25.819726189848634 + ], + [ + -81.04866661010075, + 25.819726189848634 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.04866661010075, + 25.819726189848634 + ], + [ + -81.08855392894752, + 25.819726189848634 + ], + [ + -81.06861026952413, + 25.788400684426943 + ], + [ + -81.04866661010075, + 25.819726189848634 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.04866661010075, + 25.819726189848634 + ], + [ + -81.06861026952413, + 25.788400684426943 + ], + [ + -81.02872295067738, + 25.788400684426943 + ], + [ + -81.04866661010075, + 25.819726189848634 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.04866661010075, + 25.819726189848634 + ], + [ + -81.02872295067738, + 25.788400684426943 + ], + [ + -81.00877929125399, + 25.819726189848634 + ], + [ + -81.04866661010075, + 25.819726189848634 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.04866661010075, + 25.88237720069202 + ], + [ + -81.00877929125399, + 25.88237720069202 + ], + [ + -81.02872295067738, + 25.91370270611371 + ], + [ + -81.04866661010075, + 25.88237720069202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.04866661010075, + 25.88237720069202 + ], + [ + -81.02872295067738, + 25.91370270611371 + ], + [ + -81.06861026952413, + 25.91370270611371 + ], + [ + -81.04866661010075, + 25.88237720069202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.04866661010075, + 25.88237720069202 + ], + [ + -81.06861026952413, + 25.91370270611371 + ], + [ + -81.08855392894752, + 25.88237720069202 + ], + [ + -81.04866661010075, + 25.88237720069202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.04866661010075, + 25.88237720069202 + ], + [ + -81.08855392894752, + 25.88237720069202 + ], + [ + -81.06861026952413, + 25.85105169527033 + ], + [ + -81.04866661010075, + 25.88237720069202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.04866661010075, + 25.88237720069202 + ], + [ + -81.06861026952413, + 25.85105169527033 + ], + [ + -81.02872295067738, + 25.85105169527033 + ], + [ + -81.04866661010075, + 25.88237720069202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.04866661010075, + 25.88237720069202 + ], + [ + -81.02872295067738, + 25.85105169527033 + ], + [ + -81.00877929125399, + 25.88237720069202 + ], + [ + -81.04866661010075, + 25.88237720069202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.04866661010075, + 25.945028211535405 + ], + [ + -81.00877929125399, + 25.945028211535405 + ], + [ + -81.02872295067738, + 25.976353716957096 + ], + [ + -81.04866661010075, + 25.945028211535405 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.04866661010075, + 25.945028211535405 + ], + [ + -81.02872295067738, + 25.976353716957096 + ], + [ + -81.06861026952413, + 25.976353716957096 + ], + [ + -81.04866661010075, + 25.945028211535405 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.04866661010075, + 25.945028211535405 + ], + [ + -81.06861026952413, + 25.976353716957096 + ], + [ + -81.08855392894752, + 25.945028211535405 + ], + [ + -81.04866661010075, + 25.945028211535405 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.04866661010075, + 25.945028211535405 + ], + [ + -81.08855392894752, + 25.945028211535405 + ], + [ + -81.06861026952413, + 25.913702706113714 + ], + [ + -81.04866661010075, + 25.945028211535405 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.04866661010075, + 25.945028211535405 + ], + [ + -81.06861026952413, + 25.913702706113714 + ], + [ + -81.02872295067738, + 25.913702706113714 + ], + [ + -81.04866661010075, + 25.945028211535405 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.04866661010075, + 25.945028211535405 + ], + [ + -81.02872295067738, + 25.913702706113714 + ], + [ + -81.00877929125399, + 25.945028211535405 + ], + [ + -81.04866661010075, + 25.945028211535405 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.04866661010075, + 26.00767922237879 + ], + [ + -81.00877929125399, + 26.00767922237879 + ], + [ + -81.02872295067738, + 26.03900472780048 + ], + [ + -81.04866661010075, + 26.00767922237879 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.04866661010075, + 26.00767922237879 + ], + [ + -81.02872295067738, + 26.03900472780048 + ], + [ + -81.06861026952413, + 26.03900472780048 + ], + [ + -81.04866661010075, + 26.00767922237879 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.04866661010075, + 26.00767922237879 + ], + [ + -81.06861026952413, + 26.03900472780048 + ], + [ + -81.08855392894752, + 26.00767922237879 + ], + [ + -81.04866661010075, + 26.00767922237879 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.04866661010075, + 26.00767922237879 + ], + [ + -81.08855392894752, + 26.00767922237879 + ], + [ + -81.06861026952413, + 25.9763537169571 + ], + [ + -81.04866661010075, + 26.00767922237879 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.04866661010075, + 26.00767922237879 + ], + [ + -81.06861026952413, + 25.9763537169571 + ], + [ + -81.02872295067738, + 25.9763537169571 + ], + [ + -81.04866661010075, + 26.00767922237879 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.04866661010075, + 26.00767922237879 + ], + [ + -81.02872295067738, + 25.9763537169571 + ], + [ + -81.00877929125399, + 26.00767922237879 + ], + [ + -81.04866661010075, + 26.00767922237879 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.04866661010075, + 26.070330233222176 + ], + [ + -81.00877929125399, + 26.070330233222176 + ], + [ + -81.02872295067738, + 26.101655738643867 + ], + [ + -81.04866661010075, + 26.070330233222176 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.04866661010075, + 26.070330233222176 + ], + [ + -81.02872295067738, + 26.101655738643867 + ], + [ + -81.06861026952413, + 26.101655738643867 + ], + [ + -81.04866661010075, + 26.070330233222176 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.04866661010075, + 26.070330233222176 + ], + [ + -81.06861026952413, + 26.101655738643867 + ], + [ + -81.08855392894752, + 26.070330233222176 + ], + [ + -81.04866661010075, + 26.070330233222176 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.04866661010075, + 26.070330233222176 + ], + [ + -81.08855392894752, + 26.070330233222176 + ], + [ + -81.06861026952413, + 26.039004727800485 + ], + [ + -81.04866661010075, + 26.070330233222176 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.04866661010075, + 26.070330233222176 + ], + [ + -81.06861026952413, + 26.039004727800485 + ], + [ + -81.02872295067738, + 26.039004727800485 + ], + [ + -81.04866661010075, + 26.070330233222176 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.04866661010075, + 26.070330233222176 + ], + [ + -81.02872295067738, + 26.039004727800485 + ], + [ + -81.00877929125399, + 26.070330233222176 + ], + [ + -81.04866661010075, + 26.070330233222176 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.04866661010075, + 26.13298124406556 + ], + [ + -81.00877929125399, + 26.13298124406556 + ], + [ + -81.02872295067738, + 26.164306749487253 + ], + [ + -81.04866661010075, + 26.13298124406556 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.04866661010075, + 26.13298124406556 + ], + [ + -81.02872295067738, + 26.164306749487253 + ], + [ + -81.06861026952413, + 26.164306749487253 + ], + [ + -81.04866661010075, + 26.13298124406556 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.04866661010075, + 26.13298124406556 + ], + [ + -81.06861026952413, + 26.164306749487253 + ], + [ + -81.08855392894752, + 26.13298124406556 + ], + [ + -81.04866661010075, + 26.13298124406556 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.04866661010075, + 26.13298124406556 + ], + [ + -81.08855392894752, + 26.13298124406556 + ], + [ + -81.06861026952413, + 26.10165573864387 + ], + [ + -81.04866661010075, + 26.13298124406556 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.04866661010075, + 26.13298124406556 + ], + [ + -81.06861026952413, + 26.10165573864387 + ], + [ + -81.02872295067738, + 26.10165573864387 + ], + [ + -81.04866661010075, + 26.13298124406556 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.04866661010075, + 26.13298124406556 + ], + [ + -81.02872295067738, + 26.10165573864387 + ], + [ + -81.00877929125399, + 26.13298124406556 + ], + [ + -81.04866661010075, + 26.13298124406556 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.04866661010075, + 26.195632254908944 + ], + [ + -81.00877929125399, + 26.195632254908944 + ], + [ + -81.02872295067738, + 26.226957760330635 + ], + [ + -81.04866661010075, + 26.195632254908944 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.04866661010075, + 26.195632254908944 + ], + [ + -81.02872295067738, + 26.226957760330635 + ], + [ + -81.06861026952413, + 26.226957760330635 + ], + [ + -81.04866661010075, + 26.195632254908944 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.04866661010075, + 26.195632254908944 + ], + [ + -81.06861026952413, + 26.226957760330635 + ], + [ + -81.08855392894752, + 26.195632254908944 + ], + [ + -81.04866661010075, + 26.195632254908944 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.04866661010075, + 26.195632254908944 + ], + [ + -81.08855392894752, + 26.195632254908944 + ], + [ + -81.06861026952413, + 26.164306749487253 + ], + [ + -81.04866661010075, + 26.195632254908944 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.04866661010075, + 26.195632254908944 + ], + [ + -81.06861026952413, + 26.164306749487253 + ], + [ + -81.02872295067738, + 26.164306749487253 + ], + [ + -81.04866661010075, + 26.195632254908944 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.04866661010075, + 26.195632254908944 + ], + [ + -81.02872295067738, + 26.164306749487253 + ], + [ + -81.00877929125399, + 26.195632254908944 + ], + [ + -81.04866661010075, + 26.195632254908944 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.04866661010075, + 26.258283265752333 + ], + [ + -81.00877929125399, + 26.258283265752333 + ], + [ + -81.02872295067738, + 26.289608771174024 + ], + [ + -81.04866661010075, + 26.258283265752333 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.04866661010075, + 26.258283265752333 + ], + [ + -81.02872295067738, + 26.289608771174024 + ], + [ + -81.06861026952413, + 26.289608771174024 + ], + [ + -81.04866661010075, + 26.258283265752333 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.04866661010075, + 26.258283265752333 + ], + [ + -81.06861026952413, + 26.289608771174024 + ], + [ + -81.08855392894752, + 26.258283265752333 + ], + [ + -81.04866661010075, + 26.258283265752333 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.04866661010075, + 26.258283265752333 + ], + [ + -81.08855392894752, + 26.258283265752333 + ], + [ + -81.06861026952413, + 26.22695776033064 + ], + [ + -81.04866661010075, + 26.258283265752333 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.04866661010075, + 26.258283265752333 + ], + [ + -81.06861026952413, + 26.22695776033064 + ], + [ + -81.02872295067738, + 26.22695776033064 + ], + [ + -81.04866661010075, + 26.258283265752333 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.04866661010075, + 26.258283265752333 + ], + [ + -81.02872295067738, + 26.22695776033064 + ], + [ + -81.00877929125399, + 26.258283265752333 + ], + [ + -81.04866661010075, + 26.258283265752333 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.04866661010075, + 26.320934276595715 + ], + [ + -81.00877929125399, + 26.320934276595715 + ], + [ + -81.02872295067738, + 26.352259782017406 + ], + [ + -81.04866661010075, + 26.320934276595715 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.04866661010075, + 26.320934276595715 + ], + [ + -81.02872295067738, + 26.352259782017406 + ], + [ + -81.06861026952413, + 26.352259782017406 + ], + [ + -81.04866661010075, + 26.320934276595715 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.04866661010075, + 26.320934276595715 + ], + [ + -81.06861026952413, + 26.352259782017406 + ], + [ + -81.08855392894752, + 26.320934276595715 + ], + [ + -81.04866661010075, + 26.320934276595715 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.04866661010075, + 26.320934276595715 + ], + [ + -81.08855392894752, + 26.320934276595715 + ], + [ + -81.06861026952413, + 26.289608771174024 + ], + [ + -81.04866661010075, + 26.320934276595715 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.04866661010075, + 26.320934276595715 + ], + [ + -81.06861026952413, + 26.289608771174024 + ], + [ + -81.02872295067738, + 26.289608771174024 + ], + [ + -81.04866661010075, + 26.320934276595715 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.04866661010075, + 26.320934276595715 + ], + [ + -81.02872295067738, + 26.289608771174024 + ], + [ + -81.00877929125399, + 26.320934276595715 + ], + [ + -81.04866661010075, + 26.320934276595715 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.04866661010075, + 26.3835852874391 + ], + [ + -81.00877929125399, + 26.3835852874391 + ], + [ + -81.02872295067738, + 26.41491079286079 + ], + [ + -81.04866661010075, + 26.3835852874391 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.04866661010075, + 26.3835852874391 + ], + [ + -81.02872295067738, + 26.41491079286079 + ], + [ + -81.06861026952413, + 26.41491079286079 + ], + [ + -81.04866661010075, + 26.3835852874391 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.04866661010075, + 26.3835852874391 + ], + [ + -81.06861026952413, + 26.41491079286079 + ], + [ + -81.08855392894752, + 26.3835852874391 + ], + [ + -81.04866661010075, + 26.3835852874391 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.04866661010075, + 26.3835852874391 + ], + [ + -81.08855392894752, + 26.3835852874391 + ], + [ + -81.06861026952413, + 26.35225978201741 + ], + [ + -81.04866661010075, + 26.3835852874391 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.04866661010075, + 26.3835852874391 + ], + [ + -81.06861026952413, + 26.35225978201741 + ], + [ + -81.02872295067738, + 26.35225978201741 + ], + [ + -81.04866661010075, + 26.3835852874391 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.04866661010075, + 26.3835852874391 + ], + [ + -81.02872295067738, + 26.35225978201741 + ], + [ + -81.00877929125399, + 26.3835852874391 + ], + [ + -81.04866661010075, + 26.3835852874391 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.04866661010075, + 26.446236298282486 + ], + [ + -81.00877929125399, + 26.446236298282486 + ], + [ + -81.02872295067738, + 26.477561803704177 + ], + [ + -81.04866661010075, + 26.446236298282486 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.04866661010075, + 26.446236298282486 + ], + [ + -81.02872295067738, + 26.477561803704177 + ], + [ + -81.06861026952413, + 26.477561803704177 + ], + [ + -81.04866661010075, + 26.446236298282486 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.04866661010075, + 26.446236298282486 + ], + [ + -81.06861026952413, + 26.477561803704177 + ], + [ + -81.08855392894752, + 26.446236298282486 + ], + [ + -81.04866661010075, + 26.446236298282486 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.04866661010075, + 26.446236298282486 + ], + [ + -81.08855392894752, + 26.446236298282486 + ], + [ + -81.06861026952413, + 26.414910792860795 + ], + [ + -81.04866661010075, + 26.446236298282486 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.04866661010075, + 26.446236298282486 + ], + [ + -81.06861026952413, + 26.414910792860795 + ], + [ + -81.02872295067738, + 26.414910792860795 + ], + [ + -81.04866661010075, + 26.446236298282486 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.04866661010075, + 26.446236298282486 + ], + [ + -81.02872295067738, + 26.414910792860795 + ], + [ + -81.00877929125399, + 26.446236298282486 + ], + [ + -81.04866661010075, + 26.446236298282486 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.9888356318306, + 24.911286532619545 + ], + [ + -80.94894831298383, + 24.911286532619545 + ], + [ + -80.96889197240722, + 24.942612038041236 + ], + [ + -80.9888356318306, + 24.911286532619545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.9888356318306, + 24.911286532619545 + ], + [ + -80.96889197240722, + 24.942612038041236 + ], + [ + -81.00877929125397, + 24.942612038041236 + ], + [ + -80.9888356318306, + 24.911286532619545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.9888356318306, + 24.911286532619545 + ], + [ + -81.00877929125397, + 24.942612038041236 + ], + [ + -81.02872295067736, + 24.911286532619545 + ], + [ + -80.9888356318306, + 24.911286532619545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.9888356318306, + 24.911286532619545 + ], + [ + -81.02872295067736, + 24.911286532619545 + ], + [ + -81.00877929125397, + 24.879961027197854 + ], + [ + -80.9888356318306, + 24.911286532619545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.9888356318306, + 24.911286532619545 + ], + [ + -81.00877929125397, + 24.879961027197854 + ], + [ + -80.96889197240722, + 24.879961027197854 + ], + [ + -80.9888356318306, + 24.911286532619545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.9888356318306, + 24.911286532619545 + ], + [ + -80.96889197240722, + 24.879961027197854 + ], + [ + -80.94894831298383, + 24.911286532619545 + ], + [ + -80.9888356318306, + 24.911286532619545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.9888356318306, + 24.97393754346293 + ], + [ + -80.94894831298383, + 24.97393754346293 + ], + [ + -80.96889197240722, + 25.005263048884622 + ], + [ + -80.9888356318306, + 24.97393754346293 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.9888356318306, + 24.97393754346293 + ], + [ + -80.96889197240722, + 25.005263048884622 + ], + [ + -81.00877929125397, + 25.005263048884622 + ], + [ + -80.9888356318306, + 24.97393754346293 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.9888356318306, + 24.97393754346293 + ], + [ + -81.00877929125397, + 25.005263048884622 + ], + [ + -81.02872295067736, + 24.97393754346293 + ], + [ + -80.9888356318306, + 24.97393754346293 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.9888356318306, + 24.97393754346293 + ], + [ + -81.02872295067736, + 24.97393754346293 + ], + [ + -81.00877929125397, + 24.94261203804124 + ], + [ + -80.9888356318306, + 24.97393754346293 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.9888356318306, + 24.97393754346293 + ], + [ + -81.00877929125397, + 24.94261203804124 + ], + [ + -80.96889197240722, + 24.94261203804124 + ], + [ + -80.9888356318306, + 24.97393754346293 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.9888356318306, + 24.97393754346293 + ], + [ + -80.96889197240722, + 24.94261203804124 + ], + [ + -80.94894831298383, + 24.97393754346293 + ], + [ + -80.9888356318306, + 24.97393754346293 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.9888356318306, + 25.036588554306316 + ], + [ + -80.94894831298383, + 25.036588554306316 + ], + [ + -80.96889197240722, + 25.067914059728007 + ], + [ + -80.9888356318306, + 25.036588554306316 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.9888356318306, + 25.036588554306316 + ], + [ + -80.96889197240722, + 25.067914059728007 + ], + [ + -81.00877929125397, + 25.067914059728007 + ], + [ + -80.9888356318306, + 25.036588554306316 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.9888356318306, + 25.036588554306316 + ], + [ + -81.00877929125397, + 25.067914059728007 + ], + [ + -81.02872295067736, + 25.036588554306316 + ], + [ + -80.9888356318306, + 25.036588554306316 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.9888356318306, + 25.036588554306316 + ], + [ + -81.02872295067736, + 25.036588554306316 + ], + [ + -81.00877929125397, + 25.005263048884625 + ], + [ + -80.9888356318306, + 25.036588554306316 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.9888356318306, + 25.036588554306316 + ], + [ + -81.00877929125397, + 25.005263048884625 + ], + [ + -80.96889197240722, + 25.005263048884625 + ], + [ + -80.9888356318306, + 25.036588554306316 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.9888356318306, + 25.036588554306316 + ], + [ + -80.96889197240722, + 25.005263048884625 + ], + [ + -80.94894831298383, + 25.036588554306316 + ], + [ + -80.9888356318306, + 25.036588554306316 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.9888356318306, + 25.099239565149702 + ], + [ + -80.94894831298383, + 25.099239565149702 + ], + [ + -80.96889197240722, + 25.130565070571393 + ], + [ + -80.9888356318306, + 25.099239565149702 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.9888356318306, + 25.099239565149702 + ], + [ + -80.96889197240722, + 25.130565070571393 + ], + [ + -81.00877929125397, + 25.130565070571393 + ], + [ + -80.9888356318306, + 25.099239565149702 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.9888356318306, + 25.099239565149702 + ], + [ + -81.00877929125397, + 25.130565070571393 + ], + [ + -81.02872295067736, + 25.099239565149702 + ], + [ + -80.9888356318306, + 25.099239565149702 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.9888356318306, + 25.099239565149702 + ], + [ + -81.02872295067736, + 25.099239565149702 + ], + [ + -81.00877929125397, + 25.06791405972801 + ], + [ + -80.9888356318306, + 25.099239565149702 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.9888356318306, + 25.099239565149702 + ], + [ + -81.00877929125397, + 25.06791405972801 + ], + [ + -80.96889197240722, + 25.06791405972801 + ], + [ + -80.9888356318306, + 25.099239565149702 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.9888356318306, + 25.099239565149702 + ], + [ + -80.96889197240722, + 25.06791405972801 + ], + [ + -80.94894831298383, + 25.099239565149702 + ], + [ + -80.9888356318306, + 25.099239565149702 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.9888356318306, + 25.161890575993088 + ], + [ + -80.94894831298383, + 25.161890575993088 + ], + [ + -80.96889197240722, + 25.19321608141478 + ], + [ + -80.9888356318306, + 25.161890575993088 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.9888356318306, + 25.161890575993088 + ], + [ + -80.96889197240722, + 25.19321608141478 + ], + [ + -81.00877929125397, + 25.19321608141478 + ], + [ + -80.9888356318306, + 25.161890575993088 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.9888356318306, + 25.161890575993088 + ], + [ + -81.00877929125397, + 25.19321608141478 + ], + [ + -81.02872295067736, + 25.161890575993088 + ], + [ + -80.9888356318306, + 25.161890575993088 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.9888356318306, + 25.161890575993088 + ], + [ + -81.02872295067736, + 25.161890575993088 + ], + [ + -81.00877929125397, + 25.130565070571397 + ], + [ + -80.9888356318306, + 25.161890575993088 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.9888356318306, + 25.161890575993088 + ], + [ + -81.00877929125397, + 25.130565070571397 + ], + [ + -80.96889197240722, + 25.130565070571397 + ], + [ + -80.9888356318306, + 25.161890575993088 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.9888356318306, + 25.161890575993088 + ], + [ + -80.96889197240722, + 25.130565070571397 + ], + [ + -80.94894831298383, + 25.161890575993088 + ], + [ + -80.9888356318306, + 25.161890575993088 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.9888356318306, + 25.224541586836473 + ], + [ + -80.94894831298383, + 25.224541586836473 + ], + [ + -80.96889197240722, + 25.255867092258164 + ], + [ + -80.9888356318306, + 25.224541586836473 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.9888356318306, + 25.224541586836473 + ], + [ + -80.96889197240722, + 25.255867092258164 + ], + [ + -81.00877929125397, + 25.255867092258164 + ], + [ + -80.9888356318306, + 25.224541586836473 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.9888356318306, + 25.224541586836473 + ], + [ + -81.00877929125397, + 25.255867092258164 + ], + [ + -81.02872295067736, + 25.224541586836473 + ], + [ + -80.9888356318306, + 25.224541586836473 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.9888356318306, + 25.224541586836473 + ], + [ + -81.02872295067736, + 25.224541586836473 + ], + [ + -81.00877929125397, + 25.193216081414782 + ], + [ + -80.9888356318306, + 25.224541586836473 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.9888356318306, + 25.224541586836473 + ], + [ + -81.00877929125397, + 25.193216081414782 + ], + [ + -80.96889197240722, + 25.193216081414782 + ], + [ + -80.9888356318306, + 25.224541586836473 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.9888356318306, + 25.224541586836473 + ], + [ + -80.96889197240722, + 25.193216081414782 + ], + [ + -80.94894831298383, + 25.224541586836473 + ], + [ + -80.9888356318306, + 25.224541586836473 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.9888356318306, + 25.28719259767986 + ], + [ + -80.94894831298383, + 25.28719259767986 + ], + [ + -80.96889197240722, + 25.31851810310155 + ], + [ + -80.9888356318306, + 25.28719259767986 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.9888356318306, + 25.28719259767986 + ], + [ + -80.96889197240722, + 25.31851810310155 + ], + [ + -81.00877929125397, + 25.31851810310155 + ], + [ + -80.9888356318306, + 25.28719259767986 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.9888356318306, + 25.28719259767986 + ], + [ + -81.00877929125397, + 25.31851810310155 + ], + [ + -81.02872295067736, + 25.28719259767986 + ], + [ + -80.9888356318306, + 25.28719259767986 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.9888356318306, + 25.28719259767986 + ], + [ + -81.02872295067736, + 25.28719259767986 + ], + [ + -81.00877929125397, + 25.255867092258168 + ], + [ + -80.9888356318306, + 25.28719259767986 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.9888356318306, + 25.28719259767986 + ], + [ + -81.00877929125397, + 25.255867092258168 + ], + [ + -80.96889197240722, + 25.255867092258168 + ], + [ + -80.9888356318306, + 25.28719259767986 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.9888356318306, + 25.28719259767986 + ], + [ + -80.96889197240722, + 25.255867092258168 + ], + [ + -80.94894831298383, + 25.28719259767986 + ], + [ + -80.9888356318306, + 25.28719259767986 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.9888356318306, + 25.349843608523244 + ], + [ + -80.94894831298383, + 25.349843608523244 + ], + [ + -80.96889197240722, + 25.381169113944935 + ], + [ + -80.9888356318306, + 25.349843608523244 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.9888356318306, + 25.349843608523244 + ], + [ + -80.96889197240722, + 25.381169113944935 + ], + [ + -81.00877929125397, + 25.381169113944935 + ], + [ + -80.9888356318306, + 25.349843608523244 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.9888356318306, + 25.349843608523244 + ], + [ + -81.00877929125397, + 25.381169113944935 + ], + [ + -81.02872295067736, + 25.349843608523244 + ], + [ + -80.9888356318306, + 25.349843608523244 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.9888356318306, + 25.349843608523244 + ], + [ + -81.02872295067736, + 25.349843608523244 + ], + [ + -81.00877929125397, + 25.318518103101553 + ], + [ + -80.9888356318306, + 25.349843608523244 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.9888356318306, + 25.349843608523244 + ], + [ + -81.00877929125397, + 25.318518103101553 + ], + [ + -80.96889197240722, + 25.318518103101553 + ], + [ + -80.9888356318306, + 25.349843608523244 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.9888356318306, + 25.349843608523244 + ], + [ + -80.96889197240722, + 25.318518103101553 + ], + [ + -80.94894831298383, + 25.349843608523244 + ], + [ + -80.9888356318306, + 25.349843608523244 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.9888356318306, + 25.41249461936663 + ], + [ + -80.94894831298383, + 25.41249461936663 + ], + [ + -80.96889197240722, + 25.44382012478832 + ], + [ + -80.9888356318306, + 25.41249461936663 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.9888356318306, + 25.41249461936663 + ], + [ + -80.96889197240722, + 25.44382012478832 + ], + [ + -81.00877929125397, + 25.44382012478832 + ], + [ + -80.9888356318306, + 25.41249461936663 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.9888356318306, + 25.41249461936663 + ], + [ + -81.00877929125397, + 25.44382012478832 + ], + [ + -81.02872295067736, + 25.41249461936663 + ], + [ + -80.9888356318306, + 25.41249461936663 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.9888356318306, + 25.41249461936663 + ], + [ + -81.02872295067736, + 25.41249461936663 + ], + [ + -81.00877929125397, + 25.38116911394494 + ], + [ + -80.9888356318306, + 25.41249461936663 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.9888356318306, + 25.41249461936663 + ], + [ + -81.00877929125397, + 25.38116911394494 + ], + [ + -80.96889197240722, + 25.38116911394494 + ], + [ + -80.9888356318306, + 25.41249461936663 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.9888356318306, + 25.41249461936663 + ], + [ + -80.96889197240722, + 25.38116911394494 + ], + [ + -80.94894831298383, + 25.41249461936663 + ], + [ + -80.9888356318306, + 25.41249461936663 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.9888356318306, + 25.475145630210015 + ], + [ + -80.94894831298383, + 25.475145630210015 + ], + [ + -80.96889197240722, + 25.506471135631706 + ], + [ + -80.9888356318306, + 25.475145630210015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.9888356318306, + 25.475145630210015 + ], + [ + -80.96889197240722, + 25.506471135631706 + ], + [ + -81.00877929125397, + 25.506471135631706 + ], + [ + -80.9888356318306, + 25.475145630210015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.9888356318306, + 25.475145630210015 + ], + [ + -81.00877929125397, + 25.506471135631706 + ], + [ + -81.02872295067736, + 25.475145630210015 + ], + [ + -80.9888356318306, + 25.475145630210015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.9888356318306, + 25.475145630210015 + ], + [ + -81.02872295067736, + 25.475145630210015 + ], + [ + -81.00877929125397, + 25.443820124788324 + ], + [ + -80.9888356318306, + 25.475145630210015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.9888356318306, + 25.475145630210015 + ], + [ + -81.00877929125397, + 25.443820124788324 + ], + [ + -80.96889197240722, + 25.443820124788324 + ], + [ + -80.9888356318306, + 25.475145630210015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.9888356318306, + 25.475145630210015 + ], + [ + -80.96889197240722, + 25.443820124788324 + ], + [ + -80.94894831298383, + 25.475145630210015 + ], + [ + -80.9888356318306, + 25.475145630210015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.9888356318306, + 25.5377966410534 + ], + [ + -80.94894831298383, + 25.5377966410534 + ], + [ + -80.96889197240722, + 25.56912214647509 + ], + [ + -80.9888356318306, + 25.5377966410534 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.9888356318306, + 25.5377966410534 + ], + [ + -80.96889197240722, + 25.56912214647509 + ], + [ + -81.00877929125397, + 25.56912214647509 + ], + [ + -80.9888356318306, + 25.5377966410534 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.9888356318306, + 25.5377966410534 + ], + [ + -81.00877929125397, + 25.56912214647509 + ], + [ + -81.02872295067736, + 25.5377966410534 + ], + [ + -80.9888356318306, + 25.5377966410534 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.9888356318306, + 25.5377966410534 + ], + [ + -81.02872295067736, + 25.5377966410534 + ], + [ + -81.00877929125397, + 25.50647113563171 + ], + [ + -80.9888356318306, + 25.5377966410534 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.9888356318306, + 25.5377966410534 + ], + [ + -81.00877929125397, + 25.50647113563171 + ], + [ + -80.96889197240722, + 25.50647113563171 + ], + [ + -80.9888356318306, + 25.5377966410534 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.9888356318306, + 25.5377966410534 + ], + [ + -80.96889197240722, + 25.50647113563171 + ], + [ + -80.94894831298383, + 25.5377966410534 + ], + [ + -80.9888356318306, + 25.5377966410534 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.9888356318306, + 25.600447651896786 + ], + [ + -80.94894831298383, + 25.600447651896786 + ], + [ + -80.96889197240722, + 25.631773157318477 + ], + [ + -80.9888356318306, + 25.600447651896786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.9888356318306, + 25.600447651896786 + ], + [ + -80.96889197240722, + 25.631773157318477 + ], + [ + -81.00877929125397, + 25.631773157318477 + ], + [ + -80.9888356318306, + 25.600447651896786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.9888356318306, + 25.600447651896786 + ], + [ + -81.00877929125397, + 25.631773157318477 + ], + [ + -81.02872295067736, + 25.600447651896786 + ], + [ + -80.9888356318306, + 25.600447651896786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.9888356318306, + 25.600447651896786 + ], + [ + -81.02872295067736, + 25.600447651896786 + ], + [ + -81.00877929125397, + 25.569122146475095 + ], + [ + -80.9888356318306, + 25.600447651896786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.9888356318306, + 25.600447651896786 + ], + [ + -81.00877929125397, + 25.569122146475095 + ], + [ + -80.96889197240722, + 25.569122146475095 + ], + [ + -80.9888356318306, + 25.600447651896786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.9888356318306, + 25.600447651896786 + ], + [ + -80.96889197240722, + 25.569122146475095 + ], + [ + -80.94894831298383, + 25.600447651896786 + ], + [ + -80.9888356318306, + 25.600447651896786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.9888356318306, + 25.663098662740172 + ], + [ + -80.94894831298383, + 25.663098662740172 + ], + [ + -80.96889197240722, + 25.694424168161863 + ], + [ + -80.9888356318306, + 25.663098662740172 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.9888356318306, + 25.663098662740172 + ], + [ + -80.96889197240722, + 25.694424168161863 + ], + [ + -81.00877929125397, + 25.694424168161863 + ], + [ + -80.9888356318306, + 25.663098662740172 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.9888356318306, + 25.663098662740172 + ], + [ + -81.00877929125397, + 25.694424168161863 + ], + [ + -81.02872295067736, + 25.663098662740172 + ], + [ + -80.9888356318306, + 25.663098662740172 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.9888356318306, + 25.663098662740172 + ], + [ + -81.02872295067736, + 25.663098662740172 + ], + [ + -81.00877929125397, + 25.63177315731848 + ], + [ + -80.9888356318306, + 25.663098662740172 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.9888356318306, + 25.663098662740172 + ], + [ + -81.00877929125397, + 25.63177315731848 + ], + [ + -80.96889197240722, + 25.63177315731848 + ], + [ + -80.9888356318306, + 25.663098662740172 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.9888356318306, + 25.663098662740172 + ], + [ + -80.96889197240722, + 25.63177315731848 + ], + [ + -80.94894831298383, + 25.663098662740172 + ], + [ + -80.9888356318306, + 25.663098662740172 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.9888356318306, + 25.725749673583557 + ], + [ + -80.94894831298383, + 25.725749673583557 + ], + [ + -80.96889197240722, + 25.75707517900525 + ], + [ + -80.9888356318306, + 25.725749673583557 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.9888356318306, + 25.725749673583557 + ], + [ + -80.96889197240722, + 25.75707517900525 + ], + [ + -81.00877929125397, + 25.75707517900525 + ], + [ + -80.9888356318306, + 25.725749673583557 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.9888356318306, + 25.725749673583557 + ], + [ + -81.00877929125397, + 25.75707517900525 + ], + [ + -81.02872295067736, + 25.725749673583557 + ], + [ + -80.9888356318306, + 25.725749673583557 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.9888356318306, + 25.725749673583557 + ], + [ + -81.02872295067736, + 25.725749673583557 + ], + [ + -81.00877929125397, + 25.694424168161866 + ], + [ + -80.9888356318306, + 25.725749673583557 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.9888356318306, + 25.725749673583557 + ], + [ + -81.00877929125397, + 25.694424168161866 + ], + [ + -80.96889197240722, + 25.694424168161866 + ], + [ + -80.9888356318306, + 25.725749673583557 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.9888356318306, + 25.725749673583557 + ], + [ + -80.96889197240722, + 25.694424168161866 + ], + [ + -80.94894831298383, + 25.725749673583557 + ], + [ + -80.9888356318306, + 25.725749673583557 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.9888356318306, + 25.788400684426943 + ], + [ + -80.94894831298383, + 25.788400684426943 + ], + [ + -80.96889197240722, + 25.819726189848634 + ], + [ + -80.9888356318306, + 25.788400684426943 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.9888356318306, + 25.788400684426943 + ], + [ + -80.96889197240722, + 25.819726189848634 + ], + [ + -81.00877929125397, + 25.819726189848634 + ], + [ + -80.9888356318306, + 25.788400684426943 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.9888356318306, + 25.788400684426943 + ], + [ + -81.00877929125397, + 25.819726189848634 + ], + [ + -81.02872295067736, + 25.788400684426943 + ], + [ + -80.9888356318306, + 25.788400684426943 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.9888356318306, + 25.788400684426943 + ], + [ + -81.02872295067736, + 25.788400684426943 + ], + [ + -81.00877929125397, + 25.757075179005252 + ], + [ + -80.9888356318306, + 25.788400684426943 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.9888356318306, + 25.788400684426943 + ], + [ + -81.00877929125397, + 25.757075179005252 + ], + [ + -80.96889197240722, + 25.757075179005252 + ], + [ + -80.9888356318306, + 25.788400684426943 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.9888356318306, + 25.788400684426943 + ], + [ + -80.96889197240722, + 25.757075179005252 + ], + [ + -80.94894831298383, + 25.788400684426943 + ], + [ + -80.9888356318306, + 25.788400684426943 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.9888356318306, + 25.85105169527033 + ], + [ + -80.94894831298383, + 25.85105169527033 + ], + [ + -80.96889197240722, + 25.88237720069202 + ], + [ + -80.9888356318306, + 25.85105169527033 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.9888356318306, + 25.85105169527033 + ], + [ + -80.96889197240722, + 25.88237720069202 + ], + [ + -81.00877929125397, + 25.88237720069202 + ], + [ + -80.9888356318306, + 25.85105169527033 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.9888356318306, + 25.85105169527033 + ], + [ + -81.00877929125397, + 25.88237720069202 + ], + [ + -81.02872295067736, + 25.85105169527033 + ], + [ + -80.9888356318306, + 25.85105169527033 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.9888356318306, + 25.85105169527033 + ], + [ + -81.02872295067736, + 25.85105169527033 + ], + [ + -81.00877929125397, + 25.819726189848637 + ], + [ + -80.9888356318306, + 25.85105169527033 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.9888356318306, + 25.85105169527033 + ], + [ + -81.00877929125397, + 25.819726189848637 + ], + [ + -80.96889197240722, + 25.819726189848637 + ], + [ + -80.9888356318306, + 25.85105169527033 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.9888356318306, + 25.85105169527033 + ], + [ + -80.96889197240722, + 25.819726189848637 + ], + [ + -80.94894831298383, + 25.85105169527033 + ], + [ + -80.9888356318306, + 25.85105169527033 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.9888356318306, + 25.913702706113714 + ], + [ + -80.94894831298383, + 25.913702706113714 + ], + [ + -80.96889197240722, + 25.945028211535405 + ], + [ + -80.9888356318306, + 25.913702706113714 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.9888356318306, + 25.913702706113714 + ], + [ + -80.96889197240722, + 25.945028211535405 + ], + [ + -81.00877929125397, + 25.945028211535405 + ], + [ + -80.9888356318306, + 25.913702706113714 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.9888356318306, + 25.913702706113714 + ], + [ + -81.00877929125397, + 25.945028211535405 + ], + [ + -81.02872295067736, + 25.913702706113714 + ], + [ + -80.9888356318306, + 25.913702706113714 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.9888356318306, + 25.913702706113714 + ], + [ + -81.02872295067736, + 25.913702706113714 + ], + [ + -81.00877929125397, + 25.882377200692023 + ], + [ + -80.9888356318306, + 25.913702706113714 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.9888356318306, + 25.913702706113714 + ], + [ + -81.00877929125397, + 25.882377200692023 + ], + [ + -80.96889197240722, + 25.882377200692023 + ], + [ + -80.9888356318306, + 25.913702706113714 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.9888356318306, + 25.913702706113714 + ], + [ + -80.96889197240722, + 25.882377200692023 + ], + [ + -80.94894831298383, + 25.913702706113714 + ], + [ + -80.9888356318306, + 25.913702706113714 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.9888356318306, + 25.9763537169571 + ], + [ + -80.94894831298383, + 25.9763537169571 + ], + [ + -80.96889197240722, + 26.00767922237879 + ], + [ + -80.9888356318306, + 25.9763537169571 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.9888356318306, + 25.9763537169571 + ], + [ + -80.96889197240722, + 26.00767922237879 + ], + [ + -81.00877929125397, + 26.00767922237879 + ], + [ + -80.9888356318306, + 25.9763537169571 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.9888356318306, + 25.9763537169571 + ], + [ + -81.00877929125397, + 26.00767922237879 + ], + [ + -81.02872295067736, + 25.9763537169571 + ], + [ + -80.9888356318306, + 25.9763537169571 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.9888356318306, + 25.9763537169571 + ], + [ + -81.02872295067736, + 25.9763537169571 + ], + [ + -81.00877929125397, + 25.94502821153541 + ], + [ + -80.9888356318306, + 25.9763537169571 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.9888356318306, + 25.9763537169571 + ], + [ + -81.00877929125397, + 25.94502821153541 + ], + [ + -80.96889197240722, + 25.94502821153541 + ], + [ + -80.9888356318306, + 25.9763537169571 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.9888356318306, + 25.9763537169571 + ], + [ + -80.96889197240722, + 25.94502821153541 + ], + [ + -80.94894831298383, + 25.9763537169571 + ], + [ + -80.9888356318306, + 25.9763537169571 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.9888356318306, + 26.039004727800485 + ], + [ + -80.94894831298383, + 26.039004727800485 + ], + [ + -80.96889197240722, + 26.070330233222176 + ], + [ + -80.9888356318306, + 26.039004727800485 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.9888356318306, + 26.039004727800485 + ], + [ + -80.96889197240722, + 26.070330233222176 + ], + [ + -81.00877929125397, + 26.070330233222176 + ], + [ + -80.9888356318306, + 26.039004727800485 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.9888356318306, + 26.039004727800485 + ], + [ + -81.00877929125397, + 26.070330233222176 + ], + [ + -81.02872295067736, + 26.039004727800485 + ], + [ + -80.9888356318306, + 26.039004727800485 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.9888356318306, + 26.039004727800485 + ], + [ + -81.02872295067736, + 26.039004727800485 + ], + [ + -81.00877929125397, + 26.007679222378794 + ], + [ + -80.9888356318306, + 26.039004727800485 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.9888356318306, + 26.039004727800485 + ], + [ + -81.00877929125397, + 26.007679222378794 + ], + [ + -80.96889197240722, + 26.007679222378794 + ], + [ + -80.9888356318306, + 26.039004727800485 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.9888356318306, + 26.039004727800485 + ], + [ + -80.96889197240722, + 26.007679222378794 + ], + [ + -80.94894831298383, + 26.039004727800485 + ], + [ + -80.9888356318306, + 26.039004727800485 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.9888356318306, + 26.10165573864387 + ], + [ + -80.94894831298383, + 26.10165573864387 + ], + [ + -80.96889197240722, + 26.13298124406556 + ], + [ + -80.9888356318306, + 26.10165573864387 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.9888356318306, + 26.10165573864387 + ], + [ + -80.96889197240722, + 26.13298124406556 + ], + [ + -81.00877929125397, + 26.13298124406556 + ], + [ + -80.9888356318306, + 26.10165573864387 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.9888356318306, + 26.10165573864387 + ], + [ + -81.00877929125397, + 26.13298124406556 + ], + [ + -81.02872295067736, + 26.10165573864387 + ], + [ + -80.9888356318306, + 26.10165573864387 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.9888356318306, + 26.10165573864387 + ], + [ + -81.02872295067736, + 26.10165573864387 + ], + [ + -81.00877929125397, + 26.07033023322218 + ], + [ + -80.9888356318306, + 26.10165573864387 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.9888356318306, + 26.10165573864387 + ], + [ + -81.00877929125397, + 26.07033023322218 + ], + [ + -80.96889197240722, + 26.07033023322218 + ], + [ + -80.9888356318306, + 26.10165573864387 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.9888356318306, + 26.10165573864387 + ], + [ + -80.96889197240722, + 26.07033023322218 + ], + [ + -80.94894831298383, + 26.10165573864387 + ], + [ + -80.9888356318306, + 26.10165573864387 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.9888356318306, + 26.164306749487253 + ], + [ + -80.94894831298383, + 26.164306749487253 + ], + [ + -80.96889197240722, + 26.195632254908944 + ], + [ + -80.9888356318306, + 26.164306749487253 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.9888356318306, + 26.164306749487253 + ], + [ + -80.96889197240722, + 26.195632254908944 + ], + [ + -81.00877929125397, + 26.195632254908944 + ], + [ + -80.9888356318306, + 26.164306749487253 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.9888356318306, + 26.164306749487253 + ], + [ + -81.00877929125397, + 26.195632254908944 + ], + [ + -81.02872295067736, + 26.164306749487253 + ], + [ + -80.9888356318306, + 26.164306749487253 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.9888356318306, + 26.164306749487253 + ], + [ + -81.02872295067736, + 26.164306749487253 + ], + [ + -81.00877929125397, + 26.13298124406556 + ], + [ + -80.9888356318306, + 26.164306749487253 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.9888356318306, + 26.164306749487253 + ], + [ + -81.00877929125397, + 26.13298124406556 + ], + [ + -80.96889197240722, + 26.13298124406556 + ], + [ + -80.9888356318306, + 26.164306749487253 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.9888356318306, + 26.164306749487253 + ], + [ + -80.96889197240722, + 26.13298124406556 + ], + [ + -80.94894831298383, + 26.164306749487253 + ], + [ + -80.9888356318306, + 26.164306749487253 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.9888356318306, + 26.22695776033064 + ], + [ + -80.94894831298383, + 26.22695776033064 + ], + [ + -80.96889197240722, + 26.258283265752333 + ], + [ + -80.9888356318306, + 26.22695776033064 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.9888356318306, + 26.22695776033064 + ], + [ + -80.96889197240722, + 26.258283265752333 + ], + [ + -81.00877929125397, + 26.258283265752333 + ], + [ + -80.9888356318306, + 26.22695776033064 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.9888356318306, + 26.22695776033064 + ], + [ + -81.00877929125397, + 26.258283265752333 + ], + [ + -81.02872295067736, + 26.22695776033064 + ], + [ + -80.9888356318306, + 26.22695776033064 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.9888356318306, + 26.22695776033064 + ], + [ + -81.02872295067736, + 26.22695776033064 + ], + [ + -81.00877929125397, + 26.19563225490895 + ], + [ + -80.9888356318306, + 26.22695776033064 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.9888356318306, + 26.22695776033064 + ], + [ + -81.00877929125397, + 26.19563225490895 + ], + [ + -80.96889197240722, + 26.19563225490895 + ], + [ + -80.9888356318306, + 26.22695776033064 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.9888356318306, + 26.22695776033064 + ], + [ + -80.96889197240722, + 26.19563225490895 + ], + [ + -80.94894831298383, + 26.22695776033064 + ], + [ + -80.9888356318306, + 26.22695776033064 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.9888356318306, + 26.289608771174024 + ], + [ + -80.94894831298383, + 26.289608771174024 + ], + [ + -80.96889197240722, + 26.320934276595715 + ], + [ + -80.9888356318306, + 26.289608771174024 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.9888356318306, + 26.289608771174024 + ], + [ + -80.96889197240722, + 26.320934276595715 + ], + [ + -81.00877929125397, + 26.320934276595715 + ], + [ + -80.9888356318306, + 26.289608771174024 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.9888356318306, + 26.289608771174024 + ], + [ + -81.00877929125397, + 26.320934276595715 + ], + [ + -81.02872295067736, + 26.289608771174024 + ], + [ + -80.9888356318306, + 26.289608771174024 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.9888356318306, + 26.289608771174024 + ], + [ + -81.02872295067736, + 26.289608771174024 + ], + [ + -81.00877929125397, + 26.258283265752333 + ], + [ + -80.9888356318306, + 26.289608771174024 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.9888356318306, + 26.289608771174024 + ], + [ + -81.00877929125397, + 26.258283265752333 + ], + [ + -80.96889197240722, + 26.258283265752333 + ], + [ + -80.9888356318306, + 26.289608771174024 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.9888356318306, + 26.289608771174024 + ], + [ + -80.96889197240722, + 26.258283265752333 + ], + [ + -80.94894831298383, + 26.289608771174024 + ], + [ + -80.9888356318306, + 26.289608771174024 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.9888356318306, + 26.35225978201741 + ], + [ + -80.94894831298383, + 26.35225978201741 + ], + [ + -80.96889197240722, + 26.3835852874391 + ], + [ + -80.9888356318306, + 26.35225978201741 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.9888356318306, + 26.35225978201741 + ], + [ + -80.96889197240722, + 26.3835852874391 + ], + [ + -81.00877929125397, + 26.3835852874391 + ], + [ + -80.9888356318306, + 26.35225978201741 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.9888356318306, + 26.35225978201741 + ], + [ + -81.00877929125397, + 26.3835852874391 + ], + [ + -81.02872295067736, + 26.35225978201741 + ], + [ + -80.9888356318306, + 26.35225978201741 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.9888356318306, + 26.35225978201741 + ], + [ + -81.02872295067736, + 26.35225978201741 + ], + [ + -81.00877929125397, + 26.320934276595718 + ], + [ + -80.9888356318306, + 26.35225978201741 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.9888356318306, + 26.35225978201741 + ], + [ + -81.00877929125397, + 26.320934276595718 + ], + [ + -80.96889197240722, + 26.320934276595718 + ], + [ + -80.9888356318306, + 26.35225978201741 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.9888356318306, + 26.35225978201741 + ], + [ + -80.96889197240722, + 26.320934276595718 + ], + [ + -80.94894831298383, + 26.35225978201741 + ], + [ + -80.9888356318306, + 26.35225978201741 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.9888356318306, + 26.414910792860795 + ], + [ + -80.94894831298383, + 26.414910792860795 + ], + [ + -80.96889197240722, + 26.446236298282486 + ], + [ + -80.9888356318306, + 26.414910792860795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.9888356318306, + 26.414910792860795 + ], + [ + -80.96889197240722, + 26.446236298282486 + ], + [ + -81.00877929125397, + 26.446236298282486 + ], + [ + -80.9888356318306, + 26.414910792860795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.9888356318306, + 26.414910792860795 + ], + [ + -81.00877929125397, + 26.446236298282486 + ], + [ + -81.02872295067736, + 26.414910792860795 + ], + [ + -80.9888356318306, + 26.414910792860795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.9888356318306, + 26.414910792860795 + ], + [ + -81.02872295067736, + 26.414910792860795 + ], + [ + -81.00877929125397, + 26.383585287439104 + ], + [ + -80.9888356318306, + 26.414910792860795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.9888356318306, + 26.414910792860795 + ], + [ + -81.00877929125397, + 26.383585287439104 + ], + [ + -80.96889197240722, + 26.383585287439104 + ], + [ + -80.9888356318306, + 26.414910792860795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.9888356318306, + 26.414910792860795 + ], + [ + -80.96889197240722, + 26.383585287439104 + ], + [ + -80.94894831298383, + 26.414910792860795 + ], + [ + -80.9888356318306, + 26.414910792860795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.92900465356045, + 24.942612038041236 + ], + [ + -80.88911733471369, + 24.942612038041236 + ], + [ + -80.90906099413708, + 24.973937543462927 + ], + [ + -80.92900465356045, + 24.942612038041236 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.92900465356045, + 24.942612038041236 + ], + [ + -80.90906099413708, + 24.973937543462927 + ], + [ + -80.94894831298383, + 24.973937543462927 + ], + [ + -80.92900465356045, + 24.942612038041236 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.92900465356045, + 24.942612038041236 + ], + [ + -80.94894831298383, + 24.973937543462927 + ], + [ + -80.96889197240722, + 24.942612038041236 + ], + [ + -80.92900465356045, + 24.942612038041236 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.92900465356045, + 24.942612038041236 + ], + [ + -80.96889197240722, + 24.942612038041236 + ], + [ + -80.94894831298383, + 24.911286532619545 + ], + [ + -80.92900465356045, + 24.942612038041236 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.92900465356045, + 24.942612038041236 + ], + [ + -80.94894831298383, + 24.911286532619545 + ], + [ + -80.90906099413708, + 24.911286532619545 + ], + [ + -80.92900465356045, + 24.942612038041236 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.92900465356045, + 24.942612038041236 + ], + [ + -80.90906099413708, + 24.911286532619545 + ], + [ + -80.88911733471369, + 24.942612038041236 + ], + [ + -80.92900465356045, + 24.942612038041236 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.92900465356045, + 25.005263048884622 + ], + [ + -80.88911733471369, + 25.005263048884622 + ], + [ + -80.90906099413708, + 25.036588554306313 + ], + [ + -80.92900465356045, + 25.005263048884622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.92900465356045, + 25.005263048884622 + ], + [ + -80.90906099413708, + 25.036588554306313 + ], + [ + -80.94894831298383, + 25.036588554306313 + ], + [ + -80.92900465356045, + 25.005263048884622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.92900465356045, + 25.005263048884622 + ], + [ + -80.94894831298383, + 25.036588554306313 + ], + [ + -80.96889197240722, + 25.005263048884622 + ], + [ + -80.92900465356045, + 25.005263048884622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.92900465356045, + 25.005263048884622 + ], + [ + -80.96889197240722, + 25.005263048884622 + ], + [ + -80.94894831298383, + 24.97393754346293 + ], + [ + -80.92900465356045, + 25.005263048884622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.92900465356045, + 25.005263048884622 + ], + [ + -80.94894831298383, + 24.97393754346293 + ], + [ + -80.90906099413708, + 24.97393754346293 + ], + [ + -80.92900465356045, + 25.005263048884622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.92900465356045, + 25.005263048884622 + ], + [ + -80.90906099413708, + 24.97393754346293 + ], + [ + -80.88911733471369, + 25.005263048884622 + ], + [ + -80.92900465356045, + 25.005263048884622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.92900465356045, + 25.067914059728007 + ], + [ + -80.88911733471369, + 25.067914059728007 + ], + [ + -80.90906099413708, + 25.0992395651497 + ], + [ + -80.92900465356045, + 25.067914059728007 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.92900465356045, + 25.067914059728007 + ], + [ + -80.90906099413708, + 25.0992395651497 + ], + [ + -80.94894831298383, + 25.0992395651497 + ], + [ + -80.92900465356045, + 25.067914059728007 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.92900465356045, + 25.067914059728007 + ], + [ + -80.94894831298383, + 25.0992395651497 + ], + [ + -80.96889197240722, + 25.067914059728007 + ], + [ + -80.92900465356045, + 25.067914059728007 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.92900465356045, + 25.067914059728007 + ], + [ + -80.96889197240722, + 25.067914059728007 + ], + [ + -80.94894831298383, + 25.036588554306316 + ], + [ + -80.92900465356045, + 25.067914059728007 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.92900465356045, + 25.067914059728007 + ], + [ + -80.94894831298383, + 25.036588554306316 + ], + [ + -80.90906099413708, + 25.036588554306316 + ], + [ + -80.92900465356045, + 25.067914059728007 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.92900465356045, + 25.067914059728007 + ], + [ + -80.90906099413708, + 25.036588554306316 + ], + [ + -80.88911733471369, + 25.067914059728007 + ], + [ + -80.92900465356045, + 25.067914059728007 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.92900465356045, + 25.130565070571393 + ], + [ + -80.88911733471369, + 25.130565070571393 + ], + [ + -80.90906099413708, + 25.161890575993084 + ], + [ + -80.92900465356045, + 25.130565070571393 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.92900465356045, + 25.130565070571393 + ], + [ + -80.90906099413708, + 25.161890575993084 + ], + [ + -80.94894831298383, + 25.161890575993084 + ], + [ + -80.92900465356045, + 25.130565070571393 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.92900465356045, + 25.130565070571393 + ], + [ + -80.94894831298383, + 25.161890575993084 + ], + [ + -80.96889197240722, + 25.130565070571393 + ], + [ + -80.92900465356045, + 25.130565070571393 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.92900465356045, + 25.130565070571393 + ], + [ + -80.96889197240722, + 25.130565070571393 + ], + [ + -80.94894831298383, + 25.099239565149702 + ], + [ + -80.92900465356045, + 25.130565070571393 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.92900465356045, + 25.130565070571393 + ], + [ + -80.94894831298383, + 25.099239565149702 + ], + [ + -80.90906099413708, + 25.099239565149702 + ], + [ + -80.92900465356045, + 25.130565070571393 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.92900465356045, + 25.130565070571393 + ], + [ + -80.90906099413708, + 25.099239565149702 + ], + [ + -80.88911733471369, + 25.130565070571393 + ], + [ + -80.92900465356045, + 25.130565070571393 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.92900465356045, + 25.19321608141478 + ], + [ + -80.88911733471369, + 25.19321608141478 + ], + [ + -80.90906099413708, + 25.22454158683647 + ], + [ + -80.92900465356045, + 25.19321608141478 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.92900465356045, + 25.19321608141478 + ], + [ + -80.90906099413708, + 25.22454158683647 + ], + [ + -80.94894831298383, + 25.22454158683647 + ], + [ + -80.92900465356045, + 25.19321608141478 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.92900465356045, + 25.19321608141478 + ], + [ + -80.94894831298383, + 25.22454158683647 + ], + [ + -80.96889197240722, + 25.19321608141478 + ], + [ + -80.92900465356045, + 25.19321608141478 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.92900465356045, + 25.19321608141478 + ], + [ + -80.96889197240722, + 25.19321608141478 + ], + [ + -80.94894831298383, + 25.161890575993088 + ], + [ + -80.92900465356045, + 25.19321608141478 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.92900465356045, + 25.19321608141478 + ], + [ + -80.94894831298383, + 25.161890575993088 + ], + [ + -80.90906099413708, + 25.161890575993088 + ], + [ + -80.92900465356045, + 25.19321608141478 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.92900465356045, + 25.19321608141478 + ], + [ + -80.90906099413708, + 25.161890575993088 + ], + [ + -80.88911733471369, + 25.19321608141478 + ], + [ + -80.92900465356045, + 25.19321608141478 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.92900465356045, + 25.255867092258164 + ], + [ + -80.88911733471369, + 25.255867092258164 + ], + [ + -80.90906099413708, + 25.287192597679855 + ], + [ + -80.92900465356045, + 25.255867092258164 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.92900465356045, + 25.255867092258164 + ], + [ + -80.90906099413708, + 25.287192597679855 + ], + [ + -80.94894831298383, + 25.287192597679855 + ], + [ + -80.92900465356045, + 25.255867092258164 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.92900465356045, + 25.255867092258164 + ], + [ + -80.94894831298383, + 25.287192597679855 + ], + [ + -80.96889197240722, + 25.255867092258164 + ], + [ + -80.92900465356045, + 25.255867092258164 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.92900465356045, + 25.255867092258164 + ], + [ + -80.96889197240722, + 25.255867092258164 + ], + [ + -80.94894831298383, + 25.224541586836473 + ], + [ + -80.92900465356045, + 25.255867092258164 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.92900465356045, + 25.255867092258164 + ], + [ + -80.94894831298383, + 25.224541586836473 + ], + [ + -80.90906099413708, + 25.224541586836473 + ], + [ + -80.92900465356045, + 25.255867092258164 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.92900465356045, + 25.255867092258164 + ], + [ + -80.90906099413708, + 25.224541586836473 + ], + [ + -80.88911733471369, + 25.255867092258164 + ], + [ + -80.92900465356045, + 25.255867092258164 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.92900465356045, + 25.31851810310155 + ], + [ + -80.88911733471369, + 25.31851810310155 + ], + [ + -80.90906099413708, + 25.34984360852324 + ], + [ + -80.92900465356045, + 25.31851810310155 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.92900465356045, + 25.31851810310155 + ], + [ + -80.90906099413708, + 25.34984360852324 + ], + [ + -80.94894831298383, + 25.34984360852324 + ], + [ + -80.92900465356045, + 25.31851810310155 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.92900465356045, + 25.31851810310155 + ], + [ + -80.94894831298383, + 25.34984360852324 + ], + [ + -80.96889197240722, + 25.31851810310155 + ], + [ + -80.92900465356045, + 25.31851810310155 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.92900465356045, + 25.31851810310155 + ], + [ + -80.96889197240722, + 25.31851810310155 + ], + [ + -80.94894831298383, + 25.28719259767986 + ], + [ + -80.92900465356045, + 25.31851810310155 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.92900465356045, + 25.31851810310155 + ], + [ + -80.94894831298383, + 25.28719259767986 + ], + [ + -80.90906099413708, + 25.28719259767986 + ], + [ + -80.92900465356045, + 25.31851810310155 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.92900465356045, + 25.31851810310155 + ], + [ + -80.90906099413708, + 25.28719259767986 + ], + [ + -80.88911733471369, + 25.31851810310155 + ], + [ + -80.92900465356045, + 25.31851810310155 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.92900465356045, + 25.381169113944935 + ], + [ + -80.88911733471369, + 25.381169113944935 + ], + [ + -80.90906099413708, + 25.412494619366626 + ], + [ + -80.92900465356045, + 25.381169113944935 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.92900465356045, + 25.381169113944935 + ], + [ + -80.90906099413708, + 25.412494619366626 + ], + [ + -80.94894831298383, + 25.412494619366626 + ], + [ + -80.92900465356045, + 25.381169113944935 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.92900465356045, + 25.381169113944935 + ], + [ + -80.94894831298383, + 25.412494619366626 + ], + [ + -80.96889197240722, + 25.381169113944935 + ], + [ + -80.92900465356045, + 25.381169113944935 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.92900465356045, + 25.381169113944935 + ], + [ + -80.96889197240722, + 25.381169113944935 + ], + [ + -80.94894831298383, + 25.349843608523244 + ], + [ + -80.92900465356045, + 25.381169113944935 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.92900465356045, + 25.381169113944935 + ], + [ + -80.94894831298383, + 25.349843608523244 + ], + [ + -80.90906099413708, + 25.349843608523244 + ], + [ + -80.92900465356045, + 25.381169113944935 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.92900465356045, + 25.381169113944935 + ], + [ + -80.90906099413708, + 25.349843608523244 + ], + [ + -80.88911733471369, + 25.381169113944935 + ], + [ + -80.92900465356045, + 25.381169113944935 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.92900465356045, + 25.44382012478832 + ], + [ + -80.88911733471369, + 25.44382012478832 + ], + [ + -80.90906099413708, + 25.47514563021001 + ], + [ + -80.92900465356045, + 25.44382012478832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.92900465356045, + 25.44382012478832 + ], + [ + -80.90906099413708, + 25.47514563021001 + ], + [ + -80.94894831298383, + 25.47514563021001 + ], + [ + -80.92900465356045, + 25.44382012478832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.92900465356045, + 25.44382012478832 + ], + [ + -80.94894831298383, + 25.47514563021001 + ], + [ + -80.96889197240722, + 25.44382012478832 + ], + [ + -80.92900465356045, + 25.44382012478832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.92900465356045, + 25.44382012478832 + ], + [ + -80.96889197240722, + 25.44382012478832 + ], + [ + -80.94894831298383, + 25.41249461936663 + ], + [ + -80.92900465356045, + 25.44382012478832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.92900465356045, + 25.44382012478832 + ], + [ + -80.94894831298383, + 25.41249461936663 + ], + [ + -80.90906099413708, + 25.41249461936663 + ], + [ + -80.92900465356045, + 25.44382012478832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.92900465356045, + 25.44382012478832 + ], + [ + -80.90906099413708, + 25.41249461936663 + ], + [ + -80.88911733471369, + 25.44382012478832 + ], + [ + -80.92900465356045, + 25.44382012478832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.92900465356045, + 25.506471135631706 + ], + [ + -80.88911733471369, + 25.506471135631706 + ], + [ + -80.90906099413708, + 25.537796641053397 + ], + [ + -80.92900465356045, + 25.506471135631706 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.92900465356045, + 25.506471135631706 + ], + [ + -80.90906099413708, + 25.537796641053397 + ], + [ + -80.94894831298383, + 25.537796641053397 + ], + [ + -80.92900465356045, + 25.506471135631706 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.92900465356045, + 25.506471135631706 + ], + [ + -80.94894831298383, + 25.537796641053397 + ], + [ + -80.96889197240722, + 25.506471135631706 + ], + [ + -80.92900465356045, + 25.506471135631706 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.92900465356045, + 25.506471135631706 + ], + [ + -80.96889197240722, + 25.506471135631706 + ], + [ + -80.94894831298383, + 25.475145630210015 + ], + [ + -80.92900465356045, + 25.506471135631706 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.92900465356045, + 25.506471135631706 + ], + [ + -80.94894831298383, + 25.475145630210015 + ], + [ + -80.90906099413708, + 25.475145630210015 + ], + [ + -80.92900465356045, + 25.506471135631706 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.92900465356045, + 25.506471135631706 + ], + [ + -80.90906099413708, + 25.475145630210015 + ], + [ + -80.88911733471369, + 25.506471135631706 + ], + [ + -80.92900465356045, + 25.506471135631706 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.92900465356045, + 25.56912214647509 + ], + [ + -80.88911733471369, + 25.56912214647509 + ], + [ + -80.90906099413708, + 25.600447651896783 + ], + [ + -80.92900465356045, + 25.56912214647509 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.92900465356045, + 25.56912214647509 + ], + [ + -80.90906099413708, + 25.600447651896783 + ], + [ + -80.94894831298383, + 25.600447651896783 + ], + [ + -80.92900465356045, + 25.56912214647509 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.92900465356045, + 25.56912214647509 + ], + [ + -80.94894831298383, + 25.600447651896783 + ], + [ + -80.96889197240722, + 25.56912214647509 + ], + [ + -80.92900465356045, + 25.56912214647509 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.92900465356045, + 25.56912214647509 + ], + [ + -80.96889197240722, + 25.56912214647509 + ], + [ + -80.94894831298383, + 25.5377966410534 + ], + [ + -80.92900465356045, + 25.56912214647509 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.92900465356045, + 25.56912214647509 + ], + [ + -80.94894831298383, + 25.5377966410534 + ], + [ + -80.90906099413708, + 25.5377966410534 + ], + [ + -80.92900465356045, + 25.56912214647509 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.92900465356045, + 25.56912214647509 + ], + [ + -80.90906099413708, + 25.5377966410534 + ], + [ + -80.88911733471369, + 25.56912214647509 + ], + [ + -80.92900465356045, + 25.56912214647509 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.92900465356045, + 25.631773157318477 + ], + [ + -80.88911733471369, + 25.631773157318477 + ], + [ + -80.90906099413708, + 25.66309866274017 + ], + [ + -80.92900465356045, + 25.631773157318477 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.92900465356045, + 25.631773157318477 + ], + [ + -80.90906099413708, + 25.66309866274017 + ], + [ + -80.94894831298383, + 25.66309866274017 + ], + [ + -80.92900465356045, + 25.631773157318477 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.92900465356045, + 25.631773157318477 + ], + [ + -80.94894831298383, + 25.66309866274017 + ], + [ + -80.96889197240722, + 25.631773157318477 + ], + [ + -80.92900465356045, + 25.631773157318477 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.92900465356045, + 25.631773157318477 + ], + [ + -80.96889197240722, + 25.631773157318477 + ], + [ + -80.94894831298383, + 25.600447651896786 + ], + [ + -80.92900465356045, + 25.631773157318477 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.92900465356045, + 25.631773157318477 + ], + [ + -80.94894831298383, + 25.600447651896786 + ], + [ + -80.90906099413708, + 25.600447651896786 + ], + [ + -80.92900465356045, + 25.631773157318477 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.92900465356045, + 25.631773157318477 + ], + [ + -80.90906099413708, + 25.600447651896786 + ], + [ + -80.88911733471369, + 25.631773157318477 + ], + [ + -80.92900465356045, + 25.631773157318477 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.92900465356045, + 25.694424168161863 + ], + [ + -80.88911733471369, + 25.694424168161863 + ], + [ + -80.90906099413708, + 25.725749673583554 + ], + [ + -80.92900465356045, + 25.694424168161863 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.92900465356045, + 25.694424168161863 + ], + [ + -80.90906099413708, + 25.725749673583554 + ], + [ + -80.94894831298383, + 25.725749673583554 + ], + [ + -80.92900465356045, + 25.694424168161863 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.92900465356045, + 25.694424168161863 + ], + [ + -80.94894831298383, + 25.725749673583554 + ], + [ + -80.96889197240722, + 25.694424168161863 + ], + [ + -80.92900465356045, + 25.694424168161863 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.92900465356045, + 25.694424168161863 + ], + [ + -80.96889197240722, + 25.694424168161863 + ], + [ + -80.94894831298383, + 25.663098662740172 + ], + [ + -80.92900465356045, + 25.694424168161863 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.92900465356045, + 25.694424168161863 + ], + [ + -80.94894831298383, + 25.663098662740172 + ], + [ + -80.90906099413708, + 25.663098662740172 + ], + [ + -80.92900465356045, + 25.694424168161863 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.92900465356045, + 25.694424168161863 + ], + [ + -80.90906099413708, + 25.663098662740172 + ], + [ + -80.88911733471369, + 25.694424168161863 + ], + [ + -80.92900465356045, + 25.694424168161863 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.92900465356045, + 25.75707517900525 + ], + [ + -80.88911733471369, + 25.75707517900525 + ], + [ + -80.90906099413708, + 25.78840068442694 + ], + [ + -80.92900465356045, + 25.75707517900525 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.92900465356045, + 25.75707517900525 + ], + [ + -80.90906099413708, + 25.78840068442694 + ], + [ + -80.94894831298383, + 25.78840068442694 + ], + [ + -80.92900465356045, + 25.75707517900525 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.92900465356045, + 25.75707517900525 + ], + [ + -80.94894831298383, + 25.78840068442694 + ], + [ + -80.96889197240722, + 25.75707517900525 + ], + [ + -80.92900465356045, + 25.75707517900525 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.92900465356045, + 25.75707517900525 + ], + [ + -80.96889197240722, + 25.75707517900525 + ], + [ + -80.94894831298383, + 25.725749673583557 + ], + [ + -80.92900465356045, + 25.75707517900525 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.92900465356045, + 25.75707517900525 + ], + [ + -80.94894831298383, + 25.725749673583557 + ], + [ + -80.90906099413708, + 25.725749673583557 + ], + [ + -80.92900465356045, + 25.75707517900525 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.92900465356045, + 25.75707517900525 + ], + [ + -80.90906099413708, + 25.725749673583557 + ], + [ + -80.88911733471369, + 25.75707517900525 + ], + [ + -80.92900465356045, + 25.75707517900525 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.92900465356045, + 25.819726189848634 + ], + [ + -80.88911733471369, + 25.819726189848634 + ], + [ + -80.90906099413708, + 25.851051695270325 + ], + [ + -80.92900465356045, + 25.819726189848634 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.92900465356045, + 25.819726189848634 + ], + [ + -80.90906099413708, + 25.851051695270325 + ], + [ + -80.94894831298383, + 25.851051695270325 + ], + [ + -80.92900465356045, + 25.819726189848634 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.92900465356045, + 25.819726189848634 + ], + [ + -80.94894831298383, + 25.851051695270325 + ], + [ + -80.96889197240722, + 25.819726189848634 + ], + [ + -80.92900465356045, + 25.819726189848634 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.92900465356045, + 25.819726189848634 + ], + [ + -80.96889197240722, + 25.819726189848634 + ], + [ + -80.94894831298383, + 25.788400684426943 + ], + [ + -80.92900465356045, + 25.819726189848634 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.92900465356045, + 25.819726189848634 + ], + [ + -80.94894831298383, + 25.788400684426943 + ], + [ + -80.90906099413708, + 25.788400684426943 + ], + [ + -80.92900465356045, + 25.819726189848634 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.92900465356045, + 25.819726189848634 + ], + [ + -80.90906099413708, + 25.788400684426943 + ], + [ + -80.88911733471369, + 25.819726189848634 + ], + [ + -80.92900465356045, + 25.819726189848634 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.92900465356045, + 25.88237720069202 + ], + [ + -80.88911733471369, + 25.88237720069202 + ], + [ + -80.90906099413708, + 25.91370270611371 + ], + [ + -80.92900465356045, + 25.88237720069202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.92900465356045, + 25.88237720069202 + ], + [ + -80.90906099413708, + 25.91370270611371 + ], + [ + -80.94894831298383, + 25.91370270611371 + ], + [ + -80.92900465356045, + 25.88237720069202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.92900465356045, + 25.88237720069202 + ], + [ + -80.94894831298383, + 25.91370270611371 + ], + [ + -80.96889197240722, + 25.88237720069202 + ], + [ + -80.92900465356045, + 25.88237720069202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.92900465356045, + 25.88237720069202 + ], + [ + -80.96889197240722, + 25.88237720069202 + ], + [ + -80.94894831298383, + 25.85105169527033 + ], + [ + -80.92900465356045, + 25.88237720069202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.92900465356045, + 25.88237720069202 + ], + [ + -80.94894831298383, + 25.85105169527033 + ], + [ + -80.90906099413708, + 25.85105169527033 + ], + [ + -80.92900465356045, + 25.88237720069202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.92900465356045, + 25.88237720069202 + ], + [ + -80.90906099413708, + 25.85105169527033 + ], + [ + -80.88911733471369, + 25.88237720069202 + ], + [ + -80.92900465356045, + 25.88237720069202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.92900465356045, + 25.945028211535405 + ], + [ + -80.88911733471369, + 25.945028211535405 + ], + [ + -80.90906099413708, + 25.976353716957096 + ], + [ + -80.92900465356045, + 25.945028211535405 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.92900465356045, + 25.945028211535405 + ], + [ + -80.90906099413708, + 25.976353716957096 + ], + [ + -80.94894831298383, + 25.976353716957096 + ], + [ + -80.92900465356045, + 25.945028211535405 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.92900465356045, + 25.945028211535405 + ], + [ + -80.94894831298383, + 25.976353716957096 + ], + [ + -80.96889197240722, + 25.945028211535405 + ], + [ + -80.92900465356045, + 25.945028211535405 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.92900465356045, + 25.945028211535405 + ], + [ + -80.96889197240722, + 25.945028211535405 + ], + [ + -80.94894831298383, + 25.913702706113714 + ], + [ + -80.92900465356045, + 25.945028211535405 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.92900465356045, + 25.945028211535405 + ], + [ + -80.94894831298383, + 25.913702706113714 + ], + [ + -80.90906099413708, + 25.913702706113714 + ], + [ + -80.92900465356045, + 25.945028211535405 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.92900465356045, + 25.945028211535405 + ], + [ + -80.90906099413708, + 25.913702706113714 + ], + [ + -80.88911733471369, + 25.945028211535405 + ], + [ + -80.92900465356045, + 25.945028211535405 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.92900465356045, + 26.00767922237879 + ], + [ + -80.88911733471369, + 26.00767922237879 + ], + [ + -80.90906099413708, + 26.03900472780048 + ], + [ + -80.92900465356045, + 26.00767922237879 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.92900465356045, + 26.00767922237879 + ], + [ + -80.90906099413708, + 26.03900472780048 + ], + [ + -80.94894831298383, + 26.03900472780048 + ], + [ + -80.92900465356045, + 26.00767922237879 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.92900465356045, + 26.00767922237879 + ], + [ + -80.94894831298383, + 26.03900472780048 + ], + [ + -80.96889197240722, + 26.00767922237879 + ], + [ + -80.92900465356045, + 26.00767922237879 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.92900465356045, + 26.00767922237879 + ], + [ + -80.96889197240722, + 26.00767922237879 + ], + [ + -80.94894831298383, + 25.9763537169571 + ], + [ + -80.92900465356045, + 26.00767922237879 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.92900465356045, + 26.00767922237879 + ], + [ + -80.94894831298383, + 25.9763537169571 + ], + [ + -80.90906099413708, + 25.9763537169571 + ], + [ + -80.92900465356045, + 26.00767922237879 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.92900465356045, + 26.00767922237879 + ], + [ + -80.90906099413708, + 25.9763537169571 + ], + [ + -80.88911733471369, + 26.00767922237879 + ], + [ + -80.92900465356045, + 26.00767922237879 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.92900465356045, + 26.070330233222176 + ], + [ + -80.88911733471369, + 26.070330233222176 + ], + [ + -80.90906099413708, + 26.101655738643867 + ], + [ + -80.92900465356045, + 26.070330233222176 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.92900465356045, + 26.070330233222176 + ], + [ + -80.90906099413708, + 26.101655738643867 + ], + [ + -80.94894831298383, + 26.101655738643867 + ], + [ + -80.92900465356045, + 26.070330233222176 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.92900465356045, + 26.070330233222176 + ], + [ + -80.94894831298383, + 26.101655738643867 + ], + [ + -80.96889197240722, + 26.070330233222176 + ], + [ + -80.92900465356045, + 26.070330233222176 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.92900465356045, + 26.070330233222176 + ], + [ + -80.96889197240722, + 26.070330233222176 + ], + [ + -80.94894831298383, + 26.039004727800485 + ], + [ + -80.92900465356045, + 26.070330233222176 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.92900465356045, + 26.070330233222176 + ], + [ + -80.94894831298383, + 26.039004727800485 + ], + [ + -80.90906099413708, + 26.039004727800485 + ], + [ + -80.92900465356045, + 26.070330233222176 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.92900465356045, + 26.070330233222176 + ], + [ + -80.90906099413708, + 26.039004727800485 + ], + [ + -80.88911733471369, + 26.070330233222176 + ], + [ + -80.92900465356045, + 26.070330233222176 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.92900465356045, + 26.13298124406556 + ], + [ + -80.88911733471369, + 26.13298124406556 + ], + [ + -80.90906099413708, + 26.164306749487253 + ], + [ + -80.92900465356045, + 26.13298124406556 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.92900465356045, + 26.13298124406556 + ], + [ + -80.90906099413708, + 26.164306749487253 + ], + [ + -80.94894831298383, + 26.164306749487253 + ], + [ + -80.92900465356045, + 26.13298124406556 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.92900465356045, + 26.13298124406556 + ], + [ + -80.94894831298383, + 26.164306749487253 + ], + [ + -80.96889197240722, + 26.13298124406556 + ], + [ + -80.92900465356045, + 26.13298124406556 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.92900465356045, + 26.13298124406556 + ], + [ + -80.96889197240722, + 26.13298124406556 + ], + [ + -80.94894831298383, + 26.10165573864387 + ], + [ + -80.92900465356045, + 26.13298124406556 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.92900465356045, + 26.13298124406556 + ], + [ + -80.94894831298383, + 26.10165573864387 + ], + [ + -80.90906099413708, + 26.10165573864387 + ], + [ + -80.92900465356045, + 26.13298124406556 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.92900465356045, + 26.13298124406556 + ], + [ + -80.90906099413708, + 26.10165573864387 + ], + [ + -80.88911733471369, + 26.13298124406556 + ], + [ + -80.92900465356045, + 26.13298124406556 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.92900465356045, + 26.195632254908944 + ], + [ + -80.88911733471369, + 26.195632254908944 + ], + [ + -80.90906099413708, + 26.226957760330635 + ], + [ + -80.92900465356045, + 26.195632254908944 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.92900465356045, + 26.195632254908944 + ], + [ + -80.90906099413708, + 26.226957760330635 + ], + [ + -80.94894831298383, + 26.226957760330635 + ], + [ + -80.92900465356045, + 26.195632254908944 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.92900465356045, + 26.195632254908944 + ], + [ + -80.94894831298383, + 26.226957760330635 + ], + [ + -80.96889197240722, + 26.195632254908944 + ], + [ + -80.92900465356045, + 26.195632254908944 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.92900465356045, + 26.195632254908944 + ], + [ + -80.96889197240722, + 26.195632254908944 + ], + [ + -80.94894831298383, + 26.164306749487253 + ], + [ + -80.92900465356045, + 26.195632254908944 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.92900465356045, + 26.195632254908944 + ], + [ + -80.94894831298383, + 26.164306749487253 + ], + [ + -80.90906099413708, + 26.164306749487253 + ], + [ + -80.92900465356045, + 26.195632254908944 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.92900465356045, + 26.195632254908944 + ], + [ + -80.90906099413708, + 26.164306749487253 + ], + [ + -80.88911733471369, + 26.195632254908944 + ], + [ + -80.92900465356045, + 26.195632254908944 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.92900465356045, + 26.258283265752333 + ], + [ + -80.88911733471369, + 26.258283265752333 + ], + [ + -80.90906099413708, + 26.289608771174024 + ], + [ + -80.92900465356045, + 26.258283265752333 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.92900465356045, + 26.258283265752333 + ], + [ + -80.90906099413708, + 26.289608771174024 + ], + [ + -80.94894831298383, + 26.289608771174024 + ], + [ + -80.92900465356045, + 26.258283265752333 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.92900465356045, + 26.258283265752333 + ], + [ + -80.94894831298383, + 26.289608771174024 + ], + [ + -80.96889197240722, + 26.258283265752333 + ], + [ + -80.92900465356045, + 26.258283265752333 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.92900465356045, + 26.258283265752333 + ], + [ + -80.96889197240722, + 26.258283265752333 + ], + [ + -80.94894831298383, + 26.22695776033064 + ], + [ + -80.92900465356045, + 26.258283265752333 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.92900465356045, + 26.258283265752333 + ], + [ + -80.94894831298383, + 26.22695776033064 + ], + [ + -80.90906099413708, + 26.22695776033064 + ], + [ + -80.92900465356045, + 26.258283265752333 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.92900465356045, + 26.258283265752333 + ], + [ + -80.90906099413708, + 26.22695776033064 + ], + [ + -80.88911733471369, + 26.258283265752333 + ], + [ + -80.92900465356045, + 26.258283265752333 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.92900465356045, + 26.320934276595715 + ], + [ + -80.88911733471369, + 26.320934276595715 + ], + [ + -80.90906099413708, + 26.352259782017406 + ], + [ + -80.92900465356045, + 26.320934276595715 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.92900465356045, + 26.320934276595715 + ], + [ + -80.90906099413708, + 26.352259782017406 + ], + [ + -80.94894831298383, + 26.352259782017406 + ], + [ + -80.92900465356045, + 26.320934276595715 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.92900465356045, + 26.320934276595715 + ], + [ + -80.94894831298383, + 26.352259782017406 + ], + [ + -80.96889197240722, + 26.320934276595715 + ], + [ + -80.92900465356045, + 26.320934276595715 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.92900465356045, + 26.320934276595715 + ], + [ + -80.96889197240722, + 26.320934276595715 + ], + [ + -80.94894831298383, + 26.289608771174024 + ], + [ + -80.92900465356045, + 26.320934276595715 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.92900465356045, + 26.320934276595715 + ], + [ + -80.94894831298383, + 26.289608771174024 + ], + [ + -80.90906099413708, + 26.289608771174024 + ], + [ + -80.92900465356045, + 26.320934276595715 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.92900465356045, + 26.320934276595715 + ], + [ + -80.90906099413708, + 26.289608771174024 + ], + [ + -80.88911733471369, + 26.320934276595715 + ], + [ + -80.92900465356045, + 26.320934276595715 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.92900465356045, + 26.3835852874391 + ], + [ + -80.88911733471369, + 26.3835852874391 + ], + [ + -80.90906099413708, + 26.41491079286079 + ], + [ + -80.92900465356045, + 26.3835852874391 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.92900465356045, + 26.3835852874391 + ], + [ + -80.90906099413708, + 26.41491079286079 + ], + [ + -80.94894831298383, + 26.41491079286079 + ], + [ + -80.92900465356045, + 26.3835852874391 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.92900465356045, + 26.3835852874391 + ], + [ + -80.94894831298383, + 26.41491079286079 + ], + [ + -80.96889197240722, + 26.3835852874391 + ], + [ + -80.92900465356045, + 26.3835852874391 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.92900465356045, + 26.3835852874391 + ], + [ + -80.96889197240722, + 26.3835852874391 + ], + [ + -80.94894831298383, + 26.35225978201741 + ], + [ + -80.92900465356045, + 26.3835852874391 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.92900465356045, + 26.3835852874391 + ], + [ + -80.94894831298383, + 26.35225978201741 + ], + [ + -80.90906099413708, + 26.35225978201741 + ], + [ + -80.92900465356045, + 26.3835852874391 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.92900465356045, + 26.3835852874391 + ], + [ + -80.90906099413708, + 26.35225978201741 + ], + [ + -80.88911733471369, + 26.3835852874391 + ], + [ + -80.92900465356045, + 26.3835852874391 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.92900465356045, + 26.446236298282486 + ], + [ + -80.88911733471369, + 26.446236298282486 + ], + [ + -80.90906099413708, + 26.477561803704177 + ], + [ + -80.92900465356045, + 26.446236298282486 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.92900465356045, + 26.446236298282486 + ], + [ + -80.90906099413708, + 26.477561803704177 + ], + [ + -80.94894831298383, + 26.477561803704177 + ], + [ + -80.92900465356045, + 26.446236298282486 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.92900465356045, + 26.446236298282486 + ], + [ + -80.94894831298383, + 26.477561803704177 + ], + [ + -80.96889197240722, + 26.446236298282486 + ], + [ + -80.92900465356045, + 26.446236298282486 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.92900465356045, + 26.446236298282486 + ], + [ + -80.96889197240722, + 26.446236298282486 + ], + [ + -80.94894831298383, + 26.414910792860795 + ], + [ + -80.92900465356045, + 26.446236298282486 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.92900465356045, + 26.446236298282486 + ], + [ + -80.94894831298383, + 26.414910792860795 + ], + [ + -80.90906099413708, + 26.414910792860795 + ], + [ + -80.92900465356045, + 26.446236298282486 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.92900465356045, + 26.446236298282486 + ], + [ + -80.90906099413708, + 26.414910792860795 + ], + [ + -80.88911733471369, + 26.446236298282486 + ], + [ + -80.92900465356045, + 26.446236298282486 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.8691736752903, + 24.911286532619545 + ], + [ + -80.82928635644353, + 24.911286532619545 + ], + [ + -80.84923001586692, + 24.942612038041236 + ], + [ + -80.8691736752903, + 24.911286532619545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.8691736752903, + 24.911286532619545 + ], + [ + -80.84923001586692, + 24.942612038041236 + ], + [ + -80.88911733471367, + 24.942612038041236 + ], + [ + -80.8691736752903, + 24.911286532619545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.8691736752903, + 24.911286532619545 + ], + [ + -80.88911733471367, + 24.942612038041236 + ], + [ + -80.90906099413706, + 24.911286532619545 + ], + [ + -80.8691736752903, + 24.911286532619545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.8691736752903, + 24.911286532619545 + ], + [ + -80.90906099413706, + 24.911286532619545 + ], + [ + -80.88911733471367, + 24.879961027197854 + ], + [ + -80.8691736752903, + 24.911286532619545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.8691736752903, + 24.911286532619545 + ], + [ + -80.88911733471367, + 24.879961027197854 + ], + [ + -80.84923001586692, + 24.879961027197854 + ], + [ + -80.8691736752903, + 24.911286532619545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.8691736752903, + 24.911286532619545 + ], + [ + -80.84923001586692, + 24.879961027197854 + ], + [ + -80.82928635644353, + 24.911286532619545 + ], + [ + -80.8691736752903, + 24.911286532619545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.8691736752903, + 24.97393754346293 + ], + [ + -80.82928635644353, + 24.97393754346293 + ], + [ + -80.84923001586692, + 25.005263048884622 + ], + [ + -80.8691736752903, + 24.97393754346293 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.8691736752903, + 24.97393754346293 + ], + [ + -80.84923001586692, + 25.005263048884622 + ], + [ + -80.88911733471367, + 25.005263048884622 + ], + [ + -80.8691736752903, + 24.97393754346293 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.8691736752903, + 24.97393754346293 + ], + [ + -80.88911733471367, + 25.005263048884622 + ], + [ + -80.90906099413706, + 24.97393754346293 + ], + [ + -80.8691736752903, + 24.97393754346293 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.8691736752903, + 24.97393754346293 + ], + [ + -80.90906099413706, + 24.97393754346293 + ], + [ + -80.88911733471367, + 24.94261203804124 + ], + [ + -80.8691736752903, + 24.97393754346293 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.8691736752903, + 24.97393754346293 + ], + [ + -80.88911733471367, + 24.94261203804124 + ], + [ + -80.84923001586692, + 24.94261203804124 + ], + [ + -80.8691736752903, + 24.97393754346293 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.8691736752903, + 24.97393754346293 + ], + [ + -80.84923001586692, + 24.94261203804124 + ], + [ + -80.82928635644353, + 24.97393754346293 + ], + [ + -80.8691736752903, + 24.97393754346293 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.8691736752903, + 25.036588554306316 + ], + [ + -80.82928635644353, + 25.036588554306316 + ], + [ + -80.84923001586692, + 25.067914059728007 + ], + [ + -80.8691736752903, + 25.036588554306316 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.8691736752903, + 25.036588554306316 + ], + [ + -80.84923001586692, + 25.067914059728007 + ], + [ + -80.88911733471367, + 25.067914059728007 + ], + [ + -80.8691736752903, + 25.036588554306316 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.8691736752903, + 25.036588554306316 + ], + [ + -80.88911733471367, + 25.067914059728007 + ], + [ + -80.90906099413706, + 25.036588554306316 + ], + [ + -80.8691736752903, + 25.036588554306316 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.8691736752903, + 25.036588554306316 + ], + [ + -80.90906099413706, + 25.036588554306316 + ], + [ + -80.88911733471367, + 25.005263048884625 + ], + [ + -80.8691736752903, + 25.036588554306316 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.8691736752903, + 25.036588554306316 + ], + [ + -80.88911733471367, + 25.005263048884625 + ], + [ + -80.84923001586692, + 25.005263048884625 + ], + [ + -80.8691736752903, + 25.036588554306316 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.8691736752903, + 25.036588554306316 + ], + [ + -80.84923001586692, + 25.005263048884625 + ], + [ + -80.82928635644353, + 25.036588554306316 + ], + [ + -80.8691736752903, + 25.036588554306316 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.8691736752903, + 25.099239565149702 + ], + [ + -80.82928635644353, + 25.099239565149702 + ], + [ + -80.84923001586692, + 25.130565070571393 + ], + [ + -80.8691736752903, + 25.099239565149702 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.8691736752903, + 25.099239565149702 + ], + [ + -80.84923001586692, + 25.130565070571393 + ], + [ + -80.88911733471367, + 25.130565070571393 + ], + [ + -80.8691736752903, + 25.099239565149702 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.8691736752903, + 25.099239565149702 + ], + [ + -80.88911733471367, + 25.130565070571393 + ], + [ + -80.90906099413706, + 25.099239565149702 + ], + [ + -80.8691736752903, + 25.099239565149702 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.8691736752903, + 25.099239565149702 + ], + [ + -80.90906099413706, + 25.099239565149702 + ], + [ + -80.88911733471367, + 25.06791405972801 + ], + [ + -80.8691736752903, + 25.099239565149702 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.8691736752903, + 25.099239565149702 + ], + [ + -80.88911733471367, + 25.06791405972801 + ], + [ + -80.84923001586692, + 25.06791405972801 + ], + [ + -80.8691736752903, + 25.099239565149702 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.8691736752903, + 25.099239565149702 + ], + [ + -80.84923001586692, + 25.06791405972801 + ], + [ + -80.82928635644353, + 25.099239565149702 + ], + [ + -80.8691736752903, + 25.099239565149702 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.8691736752903, + 25.161890575993088 + ], + [ + -80.82928635644353, + 25.161890575993088 + ], + [ + -80.84923001586692, + 25.19321608141478 + ], + [ + -80.8691736752903, + 25.161890575993088 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.8691736752903, + 25.161890575993088 + ], + [ + -80.84923001586692, + 25.19321608141478 + ], + [ + -80.88911733471367, + 25.19321608141478 + ], + [ + -80.8691736752903, + 25.161890575993088 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.8691736752903, + 25.161890575993088 + ], + [ + -80.88911733471367, + 25.19321608141478 + ], + [ + -80.90906099413706, + 25.161890575993088 + ], + [ + -80.8691736752903, + 25.161890575993088 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.8691736752903, + 25.161890575993088 + ], + [ + -80.90906099413706, + 25.161890575993088 + ], + [ + -80.88911733471367, + 25.130565070571397 + ], + [ + -80.8691736752903, + 25.161890575993088 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.8691736752903, + 25.161890575993088 + ], + [ + -80.88911733471367, + 25.130565070571397 + ], + [ + -80.84923001586692, + 25.130565070571397 + ], + [ + -80.8691736752903, + 25.161890575993088 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.8691736752903, + 25.161890575993088 + ], + [ + -80.84923001586692, + 25.130565070571397 + ], + [ + -80.82928635644353, + 25.161890575993088 + ], + [ + -80.8691736752903, + 25.161890575993088 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.8691736752903, + 25.224541586836473 + ], + [ + -80.82928635644353, + 25.224541586836473 + ], + [ + -80.84923001586692, + 25.255867092258164 + ], + [ + -80.8691736752903, + 25.224541586836473 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.8691736752903, + 25.224541586836473 + ], + [ + -80.84923001586692, + 25.255867092258164 + ], + [ + -80.88911733471367, + 25.255867092258164 + ], + [ + -80.8691736752903, + 25.224541586836473 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.8691736752903, + 25.224541586836473 + ], + [ + -80.88911733471367, + 25.255867092258164 + ], + [ + -80.90906099413706, + 25.224541586836473 + ], + [ + -80.8691736752903, + 25.224541586836473 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.8691736752903, + 25.224541586836473 + ], + [ + -80.90906099413706, + 25.224541586836473 + ], + [ + -80.88911733471367, + 25.193216081414782 + ], + [ + -80.8691736752903, + 25.224541586836473 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.8691736752903, + 25.224541586836473 + ], + [ + -80.88911733471367, + 25.193216081414782 + ], + [ + -80.84923001586692, + 25.193216081414782 + ], + [ + -80.8691736752903, + 25.224541586836473 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.8691736752903, + 25.224541586836473 + ], + [ + -80.84923001586692, + 25.193216081414782 + ], + [ + -80.82928635644353, + 25.224541586836473 + ], + [ + -80.8691736752903, + 25.224541586836473 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.8691736752903, + 25.28719259767986 + ], + [ + -80.82928635644353, + 25.28719259767986 + ], + [ + -80.84923001586692, + 25.31851810310155 + ], + [ + -80.8691736752903, + 25.28719259767986 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.8691736752903, + 25.28719259767986 + ], + [ + -80.84923001586692, + 25.31851810310155 + ], + [ + -80.88911733471367, + 25.31851810310155 + ], + [ + -80.8691736752903, + 25.28719259767986 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.8691736752903, + 25.28719259767986 + ], + [ + -80.88911733471367, + 25.31851810310155 + ], + [ + -80.90906099413706, + 25.28719259767986 + ], + [ + -80.8691736752903, + 25.28719259767986 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.8691736752903, + 25.28719259767986 + ], + [ + -80.90906099413706, + 25.28719259767986 + ], + [ + -80.88911733471367, + 25.255867092258168 + ], + [ + -80.8691736752903, + 25.28719259767986 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.8691736752903, + 25.28719259767986 + ], + [ + -80.88911733471367, + 25.255867092258168 + ], + [ + -80.84923001586692, + 25.255867092258168 + ], + [ + -80.8691736752903, + 25.28719259767986 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.8691736752903, + 25.28719259767986 + ], + [ + -80.84923001586692, + 25.255867092258168 + ], + [ + -80.82928635644353, + 25.28719259767986 + ], + [ + -80.8691736752903, + 25.28719259767986 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.8691736752903, + 25.349843608523244 + ], + [ + -80.82928635644353, + 25.349843608523244 + ], + [ + -80.84923001586692, + 25.381169113944935 + ], + [ + -80.8691736752903, + 25.349843608523244 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.8691736752903, + 25.349843608523244 + ], + [ + -80.84923001586692, + 25.381169113944935 + ], + [ + -80.88911733471367, + 25.381169113944935 + ], + [ + -80.8691736752903, + 25.349843608523244 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.8691736752903, + 25.349843608523244 + ], + [ + -80.88911733471367, + 25.381169113944935 + ], + [ + -80.90906099413706, + 25.349843608523244 + ], + [ + -80.8691736752903, + 25.349843608523244 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.8691736752903, + 25.349843608523244 + ], + [ + -80.90906099413706, + 25.349843608523244 + ], + [ + -80.88911733471367, + 25.318518103101553 + ], + [ + -80.8691736752903, + 25.349843608523244 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.8691736752903, + 25.349843608523244 + ], + [ + -80.88911733471367, + 25.318518103101553 + ], + [ + -80.84923001586692, + 25.318518103101553 + ], + [ + -80.8691736752903, + 25.349843608523244 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.8691736752903, + 25.349843608523244 + ], + [ + -80.84923001586692, + 25.318518103101553 + ], + [ + -80.82928635644353, + 25.349843608523244 + ], + [ + -80.8691736752903, + 25.349843608523244 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.8691736752903, + 25.41249461936663 + ], + [ + -80.82928635644353, + 25.41249461936663 + ], + [ + -80.84923001586692, + 25.44382012478832 + ], + [ + -80.8691736752903, + 25.41249461936663 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.8691736752903, + 25.41249461936663 + ], + [ + -80.84923001586692, + 25.44382012478832 + ], + [ + -80.88911733471367, + 25.44382012478832 + ], + [ + -80.8691736752903, + 25.41249461936663 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.8691736752903, + 25.41249461936663 + ], + [ + -80.88911733471367, + 25.44382012478832 + ], + [ + -80.90906099413706, + 25.41249461936663 + ], + [ + -80.8691736752903, + 25.41249461936663 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.8691736752903, + 25.41249461936663 + ], + [ + -80.90906099413706, + 25.41249461936663 + ], + [ + -80.88911733471367, + 25.38116911394494 + ], + [ + -80.8691736752903, + 25.41249461936663 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.8691736752903, + 25.41249461936663 + ], + [ + -80.88911733471367, + 25.38116911394494 + ], + [ + -80.84923001586692, + 25.38116911394494 + ], + [ + -80.8691736752903, + 25.41249461936663 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.8691736752903, + 25.41249461936663 + ], + [ + -80.84923001586692, + 25.38116911394494 + ], + [ + -80.82928635644353, + 25.41249461936663 + ], + [ + -80.8691736752903, + 25.41249461936663 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.8691736752903, + 25.475145630210015 + ], + [ + -80.82928635644353, + 25.475145630210015 + ], + [ + -80.84923001586692, + 25.506471135631706 + ], + [ + -80.8691736752903, + 25.475145630210015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.8691736752903, + 25.475145630210015 + ], + [ + -80.84923001586692, + 25.506471135631706 + ], + [ + -80.88911733471367, + 25.506471135631706 + ], + [ + -80.8691736752903, + 25.475145630210015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.8691736752903, + 25.475145630210015 + ], + [ + -80.88911733471367, + 25.506471135631706 + ], + [ + -80.90906099413706, + 25.475145630210015 + ], + [ + -80.8691736752903, + 25.475145630210015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.8691736752903, + 25.475145630210015 + ], + [ + -80.90906099413706, + 25.475145630210015 + ], + [ + -80.88911733471367, + 25.443820124788324 + ], + [ + -80.8691736752903, + 25.475145630210015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.8691736752903, + 25.475145630210015 + ], + [ + -80.88911733471367, + 25.443820124788324 + ], + [ + -80.84923001586692, + 25.443820124788324 + ], + [ + -80.8691736752903, + 25.475145630210015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.8691736752903, + 25.475145630210015 + ], + [ + -80.84923001586692, + 25.443820124788324 + ], + [ + -80.82928635644353, + 25.475145630210015 + ], + [ + -80.8691736752903, + 25.475145630210015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.8691736752903, + 25.5377966410534 + ], + [ + -80.82928635644353, + 25.5377966410534 + ], + [ + -80.84923001586692, + 25.56912214647509 + ], + [ + -80.8691736752903, + 25.5377966410534 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.8691736752903, + 25.5377966410534 + ], + [ + -80.84923001586692, + 25.56912214647509 + ], + [ + -80.88911733471367, + 25.56912214647509 + ], + [ + -80.8691736752903, + 25.5377966410534 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.8691736752903, + 25.5377966410534 + ], + [ + -80.88911733471367, + 25.56912214647509 + ], + [ + -80.90906099413706, + 25.5377966410534 + ], + [ + -80.8691736752903, + 25.5377966410534 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.8691736752903, + 25.5377966410534 + ], + [ + -80.90906099413706, + 25.5377966410534 + ], + [ + -80.88911733471367, + 25.50647113563171 + ], + [ + -80.8691736752903, + 25.5377966410534 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.8691736752903, + 25.5377966410534 + ], + [ + -80.88911733471367, + 25.50647113563171 + ], + [ + -80.84923001586692, + 25.50647113563171 + ], + [ + -80.8691736752903, + 25.5377966410534 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.8691736752903, + 25.5377966410534 + ], + [ + -80.84923001586692, + 25.50647113563171 + ], + [ + -80.82928635644353, + 25.5377966410534 + ], + [ + -80.8691736752903, + 25.5377966410534 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.8691736752903, + 25.600447651896786 + ], + [ + -80.82928635644353, + 25.600447651896786 + ], + [ + -80.84923001586692, + 25.631773157318477 + ], + [ + -80.8691736752903, + 25.600447651896786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.8691736752903, + 25.600447651896786 + ], + [ + -80.84923001586692, + 25.631773157318477 + ], + [ + -80.88911733471367, + 25.631773157318477 + ], + [ + -80.8691736752903, + 25.600447651896786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.8691736752903, + 25.600447651896786 + ], + [ + -80.88911733471367, + 25.631773157318477 + ], + [ + -80.90906099413706, + 25.600447651896786 + ], + [ + -80.8691736752903, + 25.600447651896786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.8691736752903, + 25.600447651896786 + ], + [ + -80.90906099413706, + 25.600447651896786 + ], + [ + -80.88911733471367, + 25.569122146475095 + ], + [ + -80.8691736752903, + 25.600447651896786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.8691736752903, + 25.600447651896786 + ], + [ + -80.88911733471367, + 25.569122146475095 + ], + [ + -80.84923001586692, + 25.569122146475095 + ], + [ + -80.8691736752903, + 25.600447651896786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.8691736752903, + 25.600447651896786 + ], + [ + -80.84923001586692, + 25.569122146475095 + ], + [ + -80.82928635644353, + 25.600447651896786 + ], + [ + -80.8691736752903, + 25.600447651896786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.8691736752903, + 25.663098662740172 + ], + [ + -80.82928635644353, + 25.663098662740172 + ], + [ + -80.84923001586692, + 25.694424168161863 + ], + [ + -80.8691736752903, + 25.663098662740172 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.8691736752903, + 25.663098662740172 + ], + [ + -80.84923001586692, + 25.694424168161863 + ], + [ + -80.88911733471367, + 25.694424168161863 + ], + [ + -80.8691736752903, + 25.663098662740172 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.8691736752903, + 25.663098662740172 + ], + [ + -80.88911733471367, + 25.694424168161863 + ], + [ + -80.90906099413706, + 25.663098662740172 + ], + [ + -80.8691736752903, + 25.663098662740172 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.8691736752903, + 25.663098662740172 + ], + [ + -80.90906099413706, + 25.663098662740172 + ], + [ + -80.88911733471367, + 25.63177315731848 + ], + [ + -80.8691736752903, + 25.663098662740172 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.8691736752903, + 25.663098662740172 + ], + [ + -80.88911733471367, + 25.63177315731848 + ], + [ + -80.84923001586692, + 25.63177315731848 + ], + [ + -80.8691736752903, + 25.663098662740172 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.8691736752903, + 25.663098662740172 + ], + [ + -80.84923001586692, + 25.63177315731848 + ], + [ + -80.82928635644353, + 25.663098662740172 + ], + [ + -80.8691736752903, + 25.663098662740172 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.8691736752903, + 25.725749673583557 + ], + [ + -80.82928635644353, + 25.725749673583557 + ], + [ + -80.84923001586692, + 25.75707517900525 + ], + [ + -80.8691736752903, + 25.725749673583557 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.8691736752903, + 25.725749673583557 + ], + [ + -80.84923001586692, + 25.75707517900525 + ], + [ + -80.88911733471367, + 25.75707517900525 + ], + [ + -80.8691736752903, + 25.725749673583557 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.8691736752903, + 25.725749673583557 + ], + [ + -80.88911733471367, + 25.75707517900525 + ], + [ + -80.90906099413706, + 25.725749673583557 + ], + [ + -80.8691736752903, + 25.725749673583557 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.8691736752903, + 25.725749673583557 + ], + [ + -80.90906099413706, + 25.725749673583557 + ], + [ + -80.88911733471367, + 25.694424168161866 + ], + [ + -80.8691736752903, + 25.725749673583557 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.8691736752903, + 25.725749673583557 + ], + [ + -80.88911733471367, + 25.694424168161866 + ], + [ + -80.84923001586692, + 25.694424168161866 + ], + [ + -80.8691736752903, + 25.725749673583557 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.8691736752903, + 25.725749673583557 + ], + [ + -80.84923001586692, + 25.694424168161866 + ], + [ + -80.82928635644353, + 25.725749673583557 + ], + [ + -80.8691736752903, + 25.725749673583557 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.8691736752903, + 25.788400684426943 + ], + [ + -80.82928635644353, + 25.788400684426943 + ], + [ + -80.84923001586692, + 25.819726189848634 + ], + [ + -80.8691736752903, + 25.788400684426943 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.8691736752903, + 25.788400684426943 + ], + [ + -80.84923001586692, + 25.819726189848634 + ], + [ + -80.88911733471367, + 25.819726189848634 + ], + [ + -80.8691736752903, + 25.788400684426943 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.8691736752903, + 25.788400684426943 + ], + [ + -80.88911733471367, + 25.819726189848634 + ], + [ + -80.90906099413706, + 25.788400684426943 + ], + [ + -80.8691736752903, + 25.788400684426943 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.8691736752903, + 25.788400684426943 + ], + [ + -80.90906099413706, + 25.788400684426943 + ], + [ + -80.88911733471367, + 25.757075179005252 + ], + [ + -80.8691736752903, + 25.788400684426943 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.8691736752903, + 25.788400684426943 + ], + [ + -80.88911733471367, + 25.757075179005252 + ], + [ + -80.84923001586692, + 25.757075179005252 + ], + [ + -80.8691736752903, + 25.788400684426943 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.8691736752903, + 25.788400684426943 + ], + [ + -80.84923001586692, + 25.757075179005252 + ], + [ + -80.82928635644353, + 25.788400684426943 + ], + [ + -80.8691736752903, + 25.788400684426943 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.8691736752903, + 25.85105169527033 + ], + [ + -80.82928635644353, + 25.85105169527033 + ], + [ + -80.84923001586692, + 25.88237720069202 + ], + [ + -80.8691736752903, + 25.85105169527033 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.8691736752903, + 25.85105169527033 + ], + [ + -80.84923001586692, + 25.88237720069202 + ], + [ + -80.88911733471367, + 25.88237720069202 + ], + [ + -80.8691736752903, + 25.85105169527033 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.8691736752903, + 25.85105169527033 + ], + [ + -80.88911733471367, + 25.88237720069202 + ], + [ + -80.90906099413706, + 25.85105169527033 + ], + [ + -80.8691736752903, + 25.85105169527033 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.8691736752903, + 25.85105169527033 + ], + [ + -80.90906099413706, + 25.85105169527033 + ], + [ + -80.88911733471367, + 25.819726189848637 + ], + [ + -80.8691736752903, + 25.85105169527033 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.8691736752903, + 25.85105169527033 + ], + [ + -80.88911733471367, + 25.819726189848637 + ], + [ + -80.84923001586692, + 25.819726189848637 + ], + [ + -80.8691736752903, + 25.85105169527033 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.8691736752903, + 25.85105169527033 + ], + [ + -80.84923001586692, + 25.819726189848637 + ], + [ + -80.82928635644353, + 25.85105169527033 + ], + [ + -80.8691736752903, + 25.85105169527033 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.8691736752903, + 25.913702706113714 + ], + [ + -80.82928635644353, + 25.913702706113714 + ], + [ + -80.84923001586692, + 25.945028211535405 + ], + [ + -80.8691736752903, + 25.913702706113714 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.8691736752903, + 25.913702706113714 + ], + [ + -80.84923001586692, + 25.945028211535405 + ], + [ + -80.88911733471367, + 25.945028211535405 + ], + [ + -80.8691736752903, + 25.913702706113714 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.8691736752903, + 25.913702706113714 + ], + [ + -80.88911733471367, + 25.945028211535405 + ], + [ + -80.90906099413706, + 25.913702706113714 + ], + [ + -80.8691736752903, + 25.913702706113714 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.8691736752903, + 25.913702706113714 + ], + [ + -80.90906099413706, + 25.913702706113714 + ], + [ + -80.88911733471367, + 25.882377200692023 + ], + [ + -80.8691736752903, + 25.913702706113714 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.8691736752903, + 25.913702706113714 + ], + [ + -80.88911733471367, + 25.882377200692023 + ], + [ + -80.84923001586692, + 25.882377200692023 + ], + [ + -80.8691736752903, + 25.913702706113714 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.8691736752903, + 25.913702706113714 + ], + [ + -80.84923001586692, + 25.882377200692023 + ], + [ + -80.82928635644353, + 25.913702706113714 + ], + [ + -80.8691736752903, + 25.913702706113714 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.8691736752903, + 25.9763537169571 + ], + [ + -80.82928635644353, + 25.9763537169571 + ], + [ + -80.84923001586692, + 26.00767922237879 + ], + [ + -80.8691736752903, + 25.9763537169571 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.8691736752903, + 25.9763537169571 + ], + [ + -80.84923001586692, + 26.00767922237879 + ], + [ + -80.88911733471367, + 26.00767922237879 + ], + [ + -80.8691736752903, + 25.9763537169571 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.8691736752903, + 25.9763537169571 + ], + [ + -80.88911733471367, + 26.00767922237879 + ], + [ + -80.90906099413706, + 25.9763537169571 + ], + [ + -80.8691736752903, + 25.9763537169571 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.8691736752903, + 25.9763537169571 + ], + [ + -80.90906099413706, + 25.9763537169571 + ], + [ + -80.88911733471367, + 25.94502821153541 + ], + [ + -80.8691736752903, + 25.9763537169571 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.8691736752903, + 25.9763537169571 + ], + [ + -80.88911733471367, + 25.94502821153541 + ], + [ + -80.84923001586692, + 25.94502821153541 + ], + [ + -80.8691736752903, + 25.9763537169571 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.8691736752903, + 25.9763537169571 + ], + [ + -80.84923001586692, + 25.94502821153541 + ], + [ + -80.82928635644353, + 25.9763537169571 + ], + [ + -80.8691736752903, + 25.9763537169571 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.8691736752903, + 26.039004727800485 + ], + [ + -80.82928635644353, + 26.039004727800485 + ], + [ + -80.84923001586692, + 26.070330233222176 + ], + [ + -80.8691736752903, + 26.039004727800485 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.8691736752903, + 26.039004727800485 + ], + [ + -80.84923001586692, + 26.070330233222176 + ], + [ + -80.88911733471367, + 26.070330233222176 + ], + [ + -80.8691736752903, + 26.039004727800485 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.8691736752903, + 26.039004727800485 + ], + [ + -80.88911733471367, + 26.070330233222176 + ], + [ + -80.90906099413706, + 26.039004727800485 + ], + [ + -80.8691736752903, + 26.039004727800485 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.8691736752903, + 26.039004727800485 + ], + [ + -80.90906099413706, + 26.039004727800485 + ], + [ + -80.88911733471367, + 26.007679222378794 + ], + [ + -80.8691736752903, + 26.039004727800485 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.8691736752903, + 26.039004727800485 + ], + [ + -80.88911733471367, + 26.007679222378794 + ], + [ + -80.84923001586692, + 26.007679222378794 + ], + [ + -80.8691736752903, + 26.039004727800485 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.8691736752903, + 26.039004727800485 + ], + [ + -80.84923001586692, + 26.007679222378794 + ], + [ + -80.82928635644353, + 26.039004727800485 + ], + [ + -80.8691736752903, + 26.039004727800485 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.8691736752903, + 26.10165573864387 + ], + [ + -80.82928635644353, + 26.10165573864387 + ], + [ + -80.84923001586692, + 26.13298124406556 + ], + [ + -80.8691736752903, + 26.10165573864387 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.8691736752903, + 26.10165573864387 + ], + [ + -80.84923001586692, + 26.13298124406556 + ], + [ + -80.88911733471367, + 26.13298124406556 + ], + [ + -80.8691736752903, + 26.10165573864387 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.8691736752903, + 26.10165573864387 + ], + [ + -80.88911733471367, + 26.13298124406556 + ], + [ + -80.90906099413706, + 26.10165573864387 + ], + [ + -80.8691736752903, + 26.10165573864387 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.8691736752903, + 26.10165573864387 + ], + [ + -80.90906099413706, + 26.10165573864387 + ], + [ + -80.88911733471367, + 26.07033023322218 + ], + [ + -80.8691736752903, + 26.10165573864387 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.8691736752903, + 26.10165573864387 + ], + [ + -80.88911733471367, + 26.07033023322218 + ], + [ + -80.84923001586692, + 26.07033023322218 + ], + [ + -80.8691736752903, + 26.10165573864387 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.8691736752903, + 26.10165573864387 + ], + [ + -80.84923001586692, + 26.07033023322218 + ], + [ + -80.82928635644353, + 26.10165573864387 + ], + [ + -80.8691736752903, + 26.10165573864387 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.8691736752903, + 26.164306749487253 + ], + [ + -80.82928635644353, + 26.164306749487253 + ], + [ + -80.84923001586692, + 26.195632254908944 + ], + [ + -80.8691736752903, + 26.164306749487253 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.8691736752903, + 26.164306749487253 + ], + [ + -80.84923001586692, + 26.195632254908944 + ], + [ + -80.88911733471367, + 26.195632254908944 + ], + [ + -80.8691736752903, + 26.164306749487253 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.8691736752903, + 26.164306749487253 + ], + [ + -80.88911733471367, + 26.195632254908944 + ], + [ + -80.90906099413706, + 26.164306749487253 + ], + [ + -80.8691736752903, + 26.164306749487253 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.8691736752903, + 26.164306749487253 + ], + [ + -80.90906099413706, + 26.164306749487253 + ], + [ + -80.88911733471367, + 26.13298124406556 + ], + [ + -80.8691736752903, + 26.164306749487253 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.8691736752903, + 26.164306749487253 + ], + [ + -80.88911733471367, + 26.13298124406556 + ], + [ + -80.84923001586692, + 26.13298124406556 + ], + [ + -80.8691736752903, + 26.164306749487253 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.8691736752903, + 26.164306749487253 + ], + [ + -80.84923001586692, + 26.13298124406556 + ], + [ + -80.82928635644353, + 26.164306749487253 + ], + [ + -80.8691736752903, + 26.164306749487253 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.8691736752903, + 26.22695776033064 + ], + [ + -80.82928635644353, + 26.22695776033064 + ], + [ + -80.84923001586692, + 26.258283265752333 + ], + [ + -80.8691736752903, + 26.22695776033064 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.8691736752903, + 26.22695776033064 + ], + [ + -80.84923001586692, + 26.258283265752333 + ], + [ + -80.88911733471367, + 26.258283265752333 + ], + [ + -80.8691736752903, + 26.22695776033064 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.8691736752903, + 26.22695776033064 + ], + [ + -80.88911733471367, + 26.258283265752333 + ], + [ + -80.90906099413706, + 26.22695776033064 + ], + [ + -80.8691736752903, + 26.22695776033064 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.8691736752903, + 26.22695776033064 + ], + [ + -80.90906099413706, + 26.22695776033064 + ], + [ + -80.88911733471367, + 26.19563225490895 + ], + [ + -80.8691736752903, + 26.22695776033064 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.8691736752903, + 26.22695776033064 + ], + [ + -80.88911733471367, + 26.19563225490895 + ], + [ + -80.84923001586692, + 26.19563225490895 + ], + [ + -80.8691736752903, + 26.22695776033064 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.8691736752903, + 26.22695776033064 + ], + [ + -80.84923001586692, + 26.19563225490895 + ], + [ + -80.82928635644353, + 26.22695776033064 + ], + [ + -80.8691736752903, + 26.22695776033064 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.8691736752903, + 26.289608771174024 + ], + [ + -80.82928635644353, + 26.289608771174024 + ], + [ + -80.84923001586692, + 26.320934276595715 + ], + [ + -80.8691736752903, + 26.289608771174024 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.8691736752903, + 26.289608771174024 + ], + [ + -80.84923001586692, + 26.320934276595715 + ], + [ + -80.88911733471367, + 26.320934276595715 + ], + [ + -80.8691736752903, + 26.289608771174024 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.8691736752903, + 26.289608771174024 + ], + [ + -80.88911733471367, + 26.320934276595715 + ], + [ + -80.90906099413706, + 26.289608771174024 + ], + [ + -80.8691736752903, + 26.289608771174024 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.8691736752903, + 26.289608771174024 + ], + [ + -80.90906099413706, + 26.289608771174024 + ], + [ + -80.88911733471367, + 26.258283265752333 + ], + [ + -80.8691736752903, + 26.289608771174024 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.8691736752903, + 26.289608771174024 + ], + [ + -80.88911733471367, + 26.258283265752333 + ], + [ + -80.84923001586692, + 26.258283265752333 + ], + [ + -80.8691736752903, + 26.289608771174024 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.8691736752903, + 26.289608771174024 + ], + [ + -80.84923001586692, + 26.258283265752333 + ], + [ + -80.82928635644353, + 26.289608771174024 + ], + [ + -80.8691736752903, + 26.289608771174024 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.8691736752903, + 26.35225978201741 + ], + [ + -80.82928635644353, + 26.35225978201741 + ], + [ + -80.84923001586692, + 26.3835852874391 + ], + [ + -80.8691736752903, + 26.35225978201741 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.8691736752903, + 26.35225978201741 + ], + [ + -80.84923001586692, + 26.3835852874391 + ], + [ + -80.88911733471367, + 26.3835852874391 + ], + [ + -80.8691736752903, + 26.35225978201741 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.8691736752903, + 26.35225978201741 + ], + [ + -80.88911733471367, + 26.3835852874391 + ], + [ + -80.90906099413706, + 26.35225978201741 + ], + [ + -80.8691736752903, + 26.35225978201741 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.8691736752903, + 26.35225978201741 + ], + [ + -80.90906099413706, + 26.35225978201741 + ], + [ + -80.88911733471367, + 26.320934276595718 + ], + [ + -80.8691736752903, + 26.35225978201741 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.8691736752903, + 26.35225978201741 + ], + [ + -80.88911733471367, + 26.320934276595718 + ], + [ + -80.84923001586692, + 26.320934276595718 + ], + [ + -80.8691736752903, + 26.35225978201741 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.8691736752903, + 26.35225978201741 + ], + [ + -80.84923001586692, + 26.320934276595718 + ], + [ + -80.82928635644353, + 26.35225978201741 + ], + [ + -80.8691736752903, + 26.35225978201741 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.8691736752903, + 26.414910792860795 + ], + [ + -80.82928635644353, + 26.414910792860795 + ], + [ + -80.84923001586692, + 26.446236298282486 + ], + [ + -80.8691736752903, + 26.414910792860795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.8691736752903, + 26.414910792860795 + ], + [ + -80.84923001586692, + 26.446236298282486 + ], + [ + -80.88911733471367, + 26.446236298282486 + ], + [ + -80.8691736752903, + 26.414910792860795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.8691736752903, + 26.414910792860795 + ], + [ + -80.88911733471367, + 26.446236298282486 + ], + [ + -80.90906099413706, + 26.414910792860795 + ], + [ + -80.8691736752903, + 26.414910792860795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.8691736752903, + 26.414910792860795 + ], + [ + -80.90906099413706, + 26.414910792860795 + ], + [ + -80.88911733471367, + 26.383585287439104 + ], + [ + -80.8691736752903, + 26.414910792860795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.8691736752903, + 26.414910792860795 + ], + [ + -80.88911733471367, + 26.383585287439104 + ], + [ + -80.84923001586692, + 26.383585287439104 + ], + [ + -80.8691736752903, + 26.414910792860795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.8691736752903, + 26.414910792860795 + ], + [ + -80.84923001586692, + 26.383585287439104 + ], + [ + -80.82928635644353, + 26.414910792860795 + ], + [ + -80.8691736752903, + 26.414910792860795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.80934269702016, + 24.942612038041236 + ], + [ + -80.76945537817339, + 24.942612038041236 + ], + [ + -80.78939903759678, + 24.973937543462927 + ], + [ + -80.80934269702016, + 24.942612038041236 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.80934269702016, + 24.942612038041236 + ], + [ + -80.78939903759678, + 24.973937543462927 + ], + [ + -80.82928635644353, + 24.973937543462927 + ], + [ + -80.80934269702016, + 24.942612038041236 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.80934269702016, + 24.942612038041236 + ], + [ + -80.82928635644353, + 24.973937543462927 + ], + [ + -80.84923001586692, + 24.942612038041236 + ], + [ + -80.80934269702016, + 24.942612038041236 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.80934269702016, + 24.942612038041236 + ], + [ + -80.84923001586692, + 24.942612038041236 + ], + [ + -80.82928635644353, + 24.911286532619545 + ], + [ + -80.80934269702016, + 24.942612038041236 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.80934269702016, + 24.942612038041236 + ], + [ + -80.82928635644353, + 24.911286532619545 + ], + [ + -80.78939903759678, + 24.911286532619545 + ], + [ + -80.80934269702016, + 24.942612038041236 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.80934269702016, + 24.942612038041236 + ], + [ + -80.78939903759678, + 24.911286532619545 + ], + [ + -80.76945537817339, + 24.942612038041236 + ], + [ + -80.80934269702016, + 24.942612038041236 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.80934269702016, + 25.005263048884622 + ], + [ + -80.76945537817339, + 25.005263048884622 + ], + [ + -80.78939903759678, + 25.036588554306313 + ], + [ + -80.80934269702016, + 25.005263048884622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.80934269702016, + 25.005263048884622 + ], + [ + -80.78939903759678, + 25.036588554306313 + ], + [ + -80.82928635644353, + 25.036588554306313 + ], + [ + -80.80934269702016, + 25.005263048884622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.80934269702016, + 25.005263048884622 + ], + [ + -80.82928635644353, + 25.036588554306313 + ], + [ + -80.84923001586692, + 25.005263048884622 + ], + [ + -80.80934269702016, + 25.005263048884622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.80934269702016, + 25.005263048884622 + ], + [ + -80.84923001586692, + 25.005263048884622 + ], + [ + -80.82928635644353, + 24.97393754346293 + ], + [ + -80.80934269702016, + 25.005263048884622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.80934269702016, + 25.005263048884622 + ], + [ + -80.82928635644353, + 24.97393754346293 + ], + [ + -80.78939903759678, + 24.97393754346293 + ], + [ + -80.80934269702016, + 25.005263048884622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.80934269702016, + 25.005263048884622 + ], + [ + -80.78939903759678, + 24.97393754346293 + ], + [ + -80.76945537817339, + 25.005263048884622 + ], + [ + -80.80934269702016, + 25.005263048884622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.80934269702016, + 25.067914059728007 + ], + [ + -80.76945537817339, + 25.067914059728007 + ], + [ + -80.78939903759678, + 25.0992395651497 + ], + [ + -80.80934269702016, + 25.067914059728007 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.80934269702016, + 25.067914059728007 + ], + [ + -80.78939903759678, + 25.0992395651497 + ], + [ + -80.82928635644353, + 25.0992395651497 + ], + [ + -80.80934269702016, + 25.067914059728007 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.80934269702016, + 25.067914059728007 + ], + [ + -80.82928635644353, + 25.0992395651497 + ], + [ + -80.84923001586692, + 25.067914059728007 + ], + [ + -80.80934269702016, + 25.067914059728007 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.80934269702016, + 25.067914059728007 + ], + [ + -80.84923001586692, + 25.067914059728007 + ], + [ + -80.82928635644353, + 25.036588554306316 + ], + [ + -80.80934269702016, + 25.067914059728007 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.80934269702016, + 25.067914059728007 + ], + [ + -80.82928635644353, + 25.036588554306316 + ], + [ + -80.78939903759678, + 25.036588554306316 + ], + [ + -80.80934269702016, + 25.067914059728007 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.80934269702016, + 25.067914059728007 + ], + [ + -80.78939903759678, + 25.036588554306316 + ], + [ + -80.76945537817339, + 25.067914059728007 + ], + [ + -80.80934269702016, + 25.067914059728007 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.80934269702016, + 25.130565070571393 + ], + [ + -80.76945537817339, + 25.130565070571393 + ], + [ + -80.78939903759678, + 25.161890575993084 + ], + [ + -80.80934269702016, + 25.130565070571393 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.80934269702016, + 25.130565070571393 + ], + [ + -80.78939903759678, + 25.161890575993084 + ], + [ + -80.82928635644353, + 25.161890575993084 + ], + [ + -80.80934269702016, + 25.130565070571393 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.80934269702016, + 25.130565070571393 + ], + [ + -80.82928635644353, + 25.161890575993084 + ], + [ + -80.84923001586692, + 25.130565070571393 + ], + [ + -80.80934269702016, + 25.130565070571393 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.80934269702016, + 25.130565070571393 + ], + [ + -80.84923001586692, + 25.130565070571393 + ], + [ + -80.82928635644353, + 25.099239565149702 + ], + [ + -80.80934269702016, + 25.130565070571393 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.80934269702016, + 25.130565070571393 + ], + [ + -80.82928635644353, + 25.099239565149702 + ], + [ + -80.78939903759678, + 25.099239565149702 + ], + [ + -80.80934269702016, + 25.130565070571393 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.80934269702016, + 25.130565070571393 + ], + [ + -80.78939903759678, + 25.099239565149702 + ], + [ + -80.76945537817339, + 25.130565070571393 + ], + [ + -80.80934269702016, + 25.130565070571393 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.80934269702016, + 25.19321608141478 + ], + [ + -80.76945537817339, + 25.19321608141478 + ], + [ + -80.78939903759678, + 25.22454158683647 + ], + [ + -80.80934269702016, + 25.19321608141478 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.80934269702016, + 25.19321608141478 + ], + [ + -80.78939903759678, + 25.22454158683647 + ], + [ + -80.82928635644353, + 25.22454158683647 + ], + [ + -80.80934269702016, + 25.19321608141478 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.80934269702016, + 25.19321608141478 + ], + [ + -80.82928635644353, + 25.22454158683647 + ], + [ + -80.84923001586692, + 25.19321608141478 + ], + [ + -80.80934269702016, + 25.19321608141478 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.80934269702016, + 25.19321608141478 + ], + [ + -80.84923001586692, + 25.19321608141478 + ], + [ + -80.82928635644353, + 25.161890575993088 + ], + [ + -80.80934269702016, + 25.19321608141478 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.80934269702016, + 25.19321608141478 + ], + [ + -80.82928635644353, + 25.161890575993088 + ], + [ + -80.78939903759678, + 25.161890575993088 + ], + [ + -80.80934269702016, + 25.19321608141478 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.80934269702016, + 25.19321608141478 + ], + [ + -80.78939903759678, + 25.161890575993088 + ], + [ + -80.76945537817339, + 25.19321608141478 + ], + [ + -80.80934269702016, + 25.19321608141478 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.80934269702016, + 25.255867092258164 + ], + [ + -80.76945537817339, + 25.255867092258164 + ], + [ + -80.78939903759678, + 25.287192597679855 + ], + [ + -80.80934269702016, + 25.255867092258164 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.80934269702016, + 25.255867092258164 + ], + [ + -80.78939903759678, + 25.287192597679855 + ], + [ + -80.82928635644353, + 25.287192597679855 + ], + [ + -80.80934269702016, + 25.255867092258164 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.80934269702016, + 25.255867092258164 + ], + [ + -80.82928635644353, + 25.287192597679855 + ], + [ + -80.84923001586692, + 25.255867092258164 + ], + [ + -80.80934269702016, + 25.255867092258164 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.80934269702016, + 25.255867092258164 + ], + [ + -80.84923001586692, + 25.255867092258164 + ], + [ + -80.82928635644353, + 25.224541586836473 + ], + [ + -80.80934269702016, + 25.255867092258164 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.80934269702016, + 25.255867092258164 + ], + [ + -80.82928635644353, + 25.224541586836473 + ], + [ + -80.78939903759678, + 25.224541586836473 + ], + [ + -80.80934269702016, + 25.255867092258164 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.80934269702016, + 25.255867092258164 + ], + [ + -80.78939903759678, + 25.224541586836473 + ], + [ + -80.76945537817339, + 25.255867092258164 + ], + [ + -80.80934269702016, + 25.255867092258164 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.80934269702016, + 25.31851810310155 + ], + [ + -80.76945537817339, + 25.31851810310155 + ], + [ + -80.78939903759678, + 25.34984360852324 + ], + [ + -80.80934269702016, + 25.31851810310155 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.80934269702016, + 25.31851810310155 + ], + [ + -80.78939903759678, + 25.34984360852324 + ], + [ + -80.82928635644353, + 25.34984360852324 + ], + [ + -80.80934269702016, + 25.31851810310155 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.80934269702016, + 25.31851810310155 + ], + [ + -80.82928635644353, + 25.34984360852324 + ], + [ + -80.84923001586692, + 25.31851810310155 + ], + [ + -80.80934269702016, + 25.31851810310155 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.80934269702016, + 25.31851810310155 + ], + [ + -80.84923001586692, + 25.31851810310155 + ], + [ + -80.82928635644353, + 25.28719259767986 + ], + [ + -80.80934269702016, + 25.31851810310155 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.80934269702016, + 25.31851810310155 + ], + [ + -80.82928635644353, + 25.28719259767986 + ], + [ + -80.78939903759678, + 25.28719259767986 + ], + [ + -80.80934269702016, + 25.31851810310155 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.80934269702016, + 25.31851810310155 + ], + [ + -80.78939903759678, + 25.28719259767986 + ], + [ + -80.76945537817339, + 25.31851810310155 + ], + [ + -80.80934269702016, + 25.31851810310155 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.80934269702016, + 25.381169113944935 + ], + [ + -80.76945537817339, + 25.381169113944935 + ], + [ + -80.78939903759678, + 25.412494619366626 + ], + [ + -80.80934269702016, + 25.381169113944935 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.80934269702016, + 25.381169113944935 + ], + [ + -80.78939903759678, + 25.412494619366626 + ], + [ + -80.82928635644353, + 25.412494619366626 + ], + [ + -80.80934269702016, + 25.381169113944935 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.80934269702016, + 25.381169113944935 + ], + [ + -80.82928635644353, + 25.412494619366626 + ], + [ + -80.84923001586692, + 25.381169113944935 + ], + [ + -80.80934269702016, + 25.381169113944935 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.80934269702016, + 25.381169113944935 + ], + [ + -80.84923001586692, + 25.381169113944935 + ], + [ + -80.82928635644353, + 25.349843608523244 + ], + [ + -80.80934269702016, + 25.381169113944935 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.80934269702016, + 25.381169113944935 + ], + [ + -80.82928635644353, + 25.349843608523244 + ], + [ + -80.78939903759678, + 25.349843608523244 + ], + [ + -80.80934269702016, + 25.381169113944935 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.80934269702016, + 25.381169113944935 + ], + [ + -80.78939903759678, + 25.349843608523244 + ], + [ + -80.76945537817339, + 25.381169113944935 + ], + [ + -80.80934269702016, + 25.381169113944935 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.80934269702016, + 25.44382012478832 + ], + [ + -80.76945537817339, + 25.44382012478832 + ], + [ + -80.78939903759678, + 25.47514563021001 + ], + [ + -80.80934269702016, + 25.44382012478832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.80934269702016, + 25.44382012478832 + ], + [ + -80.78939903759678, + 25.47514563021001 + ], + [ + -80.82928635644353, + 25.47514563021001 + ], + [ + -80.80934269702016, + 25.44382012478832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.80934269702016, + 25.44382012478832 + ], + [ + -80.82928635644353, + 25.47514563021001 + ], + [ + -80.84923001586692, + 25.44382012478832 + ], + [ + -80.80934269702016, + 25.44382012478832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.80934269702016, + 25.44382012478832 + ], + [ + -80.84923001586692, + 25.44382012478832 + ], + [ + -80.82928635644353, + 25.41249461936663 + ], + [ + -80.80934269702016, + 25.44382012478832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.80934269702016, + 25.44382012478832 + ], + [ + -80.82928635644353, + 25.41249461936663 + ], + [ + -80.78939903759678, + 25.41249461936663 + ], + [ + -80.80934269702016, + 25.44382012478832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.80934269702016, + 25.44382012478832 + ], + [ + -80.78939903759678, + 25.41249461936663 + ], + [ + -80.76945537817339, + 25.44382012478832 + ], + [ + -80.80934269702016, + 25.44382012478832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.80934269702016, + 25.506471135631706 + ], + [ + -80.76945537817339, + 25.506471135631706 + ], + [ + -80.78939903759678, + 25.537796641053397 + ], + [ + -80.80934269702016, + 25.506471135631706 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.80934269702016, + 25.506471135631706 + ], + [ + -80.78939903759678, + 25.537796641053397 + ], + [ + -80.82928635644353, + 25.537796641053397 + ], + [ + -80.80934269702016, + 25.506471135631706 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.80934269702016, + 25.506471135631706 + ], + [ + -80.82928635644353, + 25.537796641053397 + ], + [ + -80.84923001586692, + 25.506471135631706 + ], + [ + -80.80934269702016, + 25.506471135631706 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.80934269702016, + 25.506471135631706 + ], + [ + -80.84923001586692, + 25.506471135631706 + ], + [ + -80.82928635644353, + 25.475145630210015 + ], + [ + -80.80934269702016, + 25.506471135631706 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.80934269702016, + 25.506471135631706 + ], + [ + -80.82928635644353, + 25.475145630210015 + ], + [ + -80.78939903759678, + 25.475145630210015 + ], + [ + -80.80934269702016, + 25.506471135631706 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.80934269702016, + 25.506471135631706 + ], + [ + -80.78939903759678, + 25.475145630210015 + ], + [ + -80.76945537817339, + 25.506471135631706 + ], + [ + -80.80934269702016, + 25.506471135631706 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.80934269702016, + 25.56912214647509 + ], + [ + -80.76945537817339, + 25.56912214647509 + ], + [ + -80.78939903759678, + 25.600447651896783 + ], + [ + -80.80934269702016, + 25.56912214647509 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.80934269702016, + 25.56912214647509 + ], + [ + -80.78939903759678, + 25.600447651896783 + ], + [ + -80.82928635644353, + 25.600447651896783 + ], + [ + -80.80934269702016, + 25.56912214647509 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.80934269702016, + 25.56912214647509 + ], + [ + -80.82928635644353, + 25.600447651896783 + ], + [ + -80.84923001586692, + 25.56912214647509 + ], + [ + -80.80934269702016, + 25.56912214647509 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.80934269702016, + 25.56912214647509 + ], + [ + -80.84923001586692, + 25.56912214647509 + ], + [ + -80.82928635644353, + 25.5377966410534 + ], + [ + -80.80934269702016, + 25.56912214647509 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.80934269702016, + 25.56912214647509 + ], + [ + -80.82928635644353, + 25.5377966410534 + ], + [ + -80.78939903759678, + 25.5377966410534 + ], + [ + -80.80934269702016, + 25.56912214647509 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.80934269702016, + 25.56912214647509 + ], + [ + -80.78939903759678, + 25.5377966410534 + ], + [ + -80.76945537817339, + 25.56912214647509 + ], + [ + -80.80934269702016, + 25.56912214647509 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.80934269702016, + 25.631773157318477 + ], + [ + -80.76945537817339, + 25.631773157318477 + ], + [ + -80.78939903759678, + 25.66309866274017 + ], + [ + -80.80934269702016, + 25.631773157318477 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.80934269702016, + 25.631773157318477 + ], + [ + -80.78939903759678, + 25.66309866274017 + ], + [ + -80.82928635644353, + 25.66309866274017 + ], + [ + -80.80934269702016, + 25.631773157318477 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.80934269702016, + 25.631773157318477 + ], + [ + -80.82928635644353, + 25.66309866274017 + ], + [ + -80.84923001586692, + 25.631773157318477 + ], + [ + -80.80934269702016, + 25.631773157318477 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.80934269702016, + 25.631773157318477 + ], + [ + -80.84923001586692, + 25.631773157318477 + ], + [ + -80.82928635644353, + 25.600447651896786 + ], + [ + -80.80934269702016, + 25.631773157318477 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.80934269702016, + 25.631773157318477 + ], + [ + -80.82928635644353, + 25.600447651896786 + ], + [ + -80.78939903759678, + 25.600447651896786 + ], + [ + -80.80934269702016, + 25.631773157318477 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.80934269702016, + 25.631773157318477 + ], + [ + -80.78939903759678, + 25.600447651896786 + ], + [ + -80.76945537817339, + 25.631773157318477 + ], + [ + -80.80934269702016, + 25.631773157318477 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.80934269702016, + 25.694424168161863 + ], + [ + -80.76945537817339, + 25.694424168161863 + ], + [ + -80.78939903759678, + 25.725749673583554 + ], + [ + -80.80934269702016, + 25.694424168161863 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.80934269702016, + 25.694424168161863 + ], + [ + -80.78939903759678, + 25.725749673583554 + ], + [ + -80.82928635644353, + 25.725749673583554 + ], + [ + -80.80934269702016, + 25.694424168161863 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.80934269702016, + 25.694424168161863 + ], + [ + -80.82928635644353, + 25.725749673583554 + ], + [ + -80.84923001586692, + 25.694424168161863 + ], + [ + -80.80934269702016, + 25.694424168161863 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.80934269702016, + 25.694424168161863 + ], + [ + -80.84923001586692, + 25.694424168161863 + ], + [ + -80.82928635644353, + 25.663098662740172 + ], + [ + -80.80934269702016, + 25.694424168161863 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.80934269702016, + 25.694424168161863 + ], + [ + -80.82928635644353, + 25.663098662740172 + ], + [ + -80.78939903759678, + 25.663098662740172 + ], + [ + -80.80934269702016, + 25.694424168161863 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.80934269702016, + 25.694424168161863 + ], + [ + -80.78939903759678, + 25.663098662740172 + ], + [ + -80.76945537817339, + 25.694424168161863 + ], + [ + -80.80934269702016, + 25.694424168161863 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.80934269702016, + 25.75707517900525 + ], + [ + -80.76945537817339, + 25.75707517900525 + ], + [ + -80.78939903759678, + 25.78840068442694 + ], + [ + -80.80934269702016, + 25.75707517900525 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.80934269702016, + 25.75707517900525 + ], + [ + -80.78939903759678, + 25.78840068442694 + ], + [ + -80.82928635644353, + 25.78840068442694 + ], + [ + -80.80934269702016, + 25.75707517900525 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.80934269702016, + 25.75707517900525 + ], + [ + -80.82928635644353, + 25.78840068442694 + ], + [ + -80.84923001586692, + 25.75707517900525 + ], + [ + -80.80934269702016, + 25.75707517900525 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.80934269702016, + 25.75707517900525 + ], + [ + -80.84923001586692, + 25.75707517900525 + ], + [ + -80.82928635644353, + 25.725749673583557 + ], + [ + -80.80934269702016, + 25.75707517900525 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.80934269702016, + 25.75707517900525 + ], + [ + -80.82928635644353, + 25.725749673583557 + ], + [ + -80.78939903759678, + 25.725749673583557 + ], + [ + -80.80934269702016, + 25.75707517900525 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.80934269702016, + 25.75707517900525 + ], + [ + -80.78939903759678, + 25.725749673583557 + ], + [ + -80.76945537817339, + 25.75707517900525 + ], + [ + -80.80934269702016, + 25.75707517900525 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.80934269702016, + 25.819726189848634 + ], + [ + -80.76945537817339, + 25.819726189848634 + ], + [ + -80.78939903759678, + 25.851051695270325 + ], + [ + -80.80934269702016, + 25.819726189848634 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.80934269702016, + 25.819726189848634 + ], + [ + -80.78939903759678, + 25.851051695270325 + ], + [ + -80.82928635644353, + 25.851051695270325 + ], + [ + -80.80934269702016, + 25.819726189848634 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.80934269702016, + 25.819726189848634 + ], + [ + -80.82928635644353, + 25.851051695270325 + ], + [ + -80.84923001586692, + 25.819726189848634 + ], + [ + -80.80934269702016, + 25.819726189848634 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.80934269702016, + 25.819726189848634 + ], + [ + -80.84923001586692, + 25.819726189848634 + ], + [ + -80.82928635644353, + 25.788400684426943 + ], + [ + -80.80934269702016, + 25.819726189848634 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.80934269702016, + 25.819726189848634 + ], + [ + -80.82928635644353, + 25.788400684426943 + ], + [ + -80.78939903759678, + 25.788400684426943 + ], + [ + -80.80934269702016, + 25.819726189848634 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.80934269702016, + 25.819726189848634 + ], + [ + -80.78939903759678, + 25.788400684426943 + ], + [ + -80.76945537817339, + 25.819726189848634 + ], + [ + -80.80934269702016, + 25.819726189848634 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.80934269702016, + 25.88237720069202 + ], + [ + -80.76945537817339, + 25.88237720069202 + ], + [ + -80.78939903759678, + 25.91370270611371 + ], + [ + -80.80934269702016, + 25.88237720069202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.80934269702016, + 25.88237720069202 + ], + [ + -80.78939903759678, + 25.91370270611371 + ], + [ + -80.82928635644353, + 25.91370270611371 + ], + [ + -80.80934269702016, + 25.88237720069202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.80934269702016, + 25.88237720069202 + ], + [ + -80.82928635644353, + 25.91370270611371 + ], + [ + -80.84923001586692, + 25.88237720069202 + ], + [ + -80.80934269702016, + 25.88237720069202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.80934269702016, + 25.88237720069202 + ], + [ + -80.84923001586692, + 25.88237720069202 + ], + [ + -80.82928635644353, + 25.85105169527033 + ], + [ + -80.80934269702016, + 25.88237720069202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.80934269702016, + 25.88237720069202 + ], + [ + -80.82928635644353, + 25.85105169527033 + ], + [ + -80.78939903759678, + 25.85105169527033 + ], + [ + -80.80934269702016, + 25.88237720069202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.80934269702016, + 25.88237720069202 + ], + [ + -80.78939903759678, + 25.85105169527033 + ], + [ + -80.76945537817339, + 25.88237720069202 + ], + [ + -80.80934269702016, + 25.88237720069202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.80934269702016, + 25.945028211535405 + ], + [ + -80.76945537817339, + 25.945028211535405 + ], + [ + -80.78939903759678, + 25.976353716957096 + ], + [ + -80.80934269702016, + 25.945028211535405 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.80934269702016, + 25.945028211535405 + ], + [ + -80.78939903759678, + 25.976353716957096 + ], + [ + -80.82928635644353, + 25.976353716957096 + ], + [ + -80.80934269702016, + 25.945028211535405 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.80934269702016, + 25.945028211535405 + ], + [ + -80.82928635644353, + 25.976353716957096 + ], + [ + -80.84923001586692, + 25.945028211535405 + ], + [ + -80.80934269702016, + 25.945028211535405 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.80934269702016, + 25.945028211535405 + ], + [ + -80.84923001586692, + 25.945028211535405 + ], + [ + -80.82928635644353, + 25.913702706113714 + ], + [ + -80.80934269702016, + 25.945028211535405 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.80934269702016, + 25.945028211535405 + ], + [ + -80.82928635644353, + 25.913702706113714 + ], + [ + -80.78939903759678, + 25.913702706113714 + ], + [ + -80.80934269702016, + 25.945028211535405 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.80934269702016, + 25.945028211535405 + ], + [ + -80.78939903759678, + 25.913702706113714 + ], + [ + -80.76945537817339, + 25.945028211535405 + ], + [ + -80.80934269702016, + 25.945028211535405 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.80934269702016, + 26.00767922237879 + ], + [ + -80.76945537817339, + 26.00767922237879 + ], + [ + -80.78939903759678, + 26.03900472780048 + ], + [ + -80.80934269702016, + 26.00767922237879 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.80934269702016, + 26.00767922237879 + ], + [ + -80.78939903759678, + 26.03900472780048 + ], + [ + -80.82928635644353, + 26.03900472780048 + ], + [ + -80.80934269702016, + 26.00767922237879 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.80934269702016, + 26.00767922237879 + ], + [ + -80.82928635644353, + 26.03900472780048 + ], + [ + -80.84923001586692, + 26.00767922237879 + ], + [ + -80.80934269702016, + 26.00767922237879 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.80934269702016, + 26.00767922237879 + ], + [ + -80.84923001586692, + 26.00767922237879 + ], + [ + -80.82928635644353, + 25.9763537169571 + ], + [ + -80.80934269702016, + 26.00767922237879 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.80934269702016, + 26.00767922237879 + ], + [ + -80.82928635644353, + 25.9763537169571 + ], + [ + -80.78939903759678, + 25.9763537169571 + ], + [ + -80.80934269702016, + 26.00767922237879 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.80934269702016, + 26.00767922237879 + ], + [ + -80.78939903759678, + 25.9763537169571 + ], + [ + -80.76945537817339, + 26.00767922237879 + ], + [ + -80.80934269702016, + 26.00767922237879 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.80934269702016, + 26.070330233222176 + ], + [ + -80.76945537817339, + 26.070330233222176 + ], + [ + -80.78939903759678, + 26.101655738643867 + ], + [ + -80.80934269702016, + 26.070330233222176 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.80934269702016, + 26.070330233222176 + ], + [ + -80.78939903759678, + 26.101655738643867 + ], + [ + -80.82928635644353, + 26.101655738643867 + ], + [ + -80.80934269702016, + 26.070330233222176 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.80934269702016, + 26.070330233222176 + ], + [ + -80.82928635644353, + 26.101655738643867 + ], + [ + -80.84923001586692, + 26.070330233222176 + ], + [ + -80.80934269702016, + 26.070330233222176 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.80934269702016, + 26.070330233222176 + ], + [ + -80.84923001586692, + 26.070330233222176 + ], + [ + -80.82928635644353, + 26.039004727800485 + ], + [ + -80.80934269702016, + 26.070330233222176 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.80934269702016, + 26.070330233222176 + ], + [ + -80.82928635644353, + 26.039004727800485 + ], + [ + -80.78939903759678, + 26.039004727800485 + ], + [ + -80.80934269702016, + 26.070330233222176 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.80934269702016, + 26.070330233222176 + ], + [ + -80.78939903759678, + 26.039004727800485 + ], + [ + -80.76945537817339, + 26.070330233222176 + ], + [ + -80.80934269702016, + 26.070330233222176 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.80934269702016, + 26.13298124406556 + ], + [ + -80.76945537817339, + 26.13298124406556 + ], + [ + -80.78939903759678, + 26.164306749487253 + ], + [ + -80.80934269702016, + 26.13298124406556 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.80934269702016, + 26.13298124406556 + ], + [ + -80.78939903759678, + 26.164306749487253 + ], + [ + -80.82928635644353, + 26.164306749487253 + ], + [ + -80.80934269702016, + 26.13298124406556 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.80934269702016, + 26.13298124406556 + ], + [ + -80.82928635644353, + 26.164306749487253 + ], + [ + -80.84923001586692, + 26.13298124406556 + ], + [ + -80.80934269702016, + 26.13298124406556 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.80934269702016, + 26.13298124406556 + ], + [ + -80.84923001586692, + 26.13298124406556 + ], + [ + -80.82928635644353, + 26.10165573864387 + ], + [ + -80.80934269702016, + 26.13298124406556 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.80934269702016, + 26.13298124406556 + ], + [ + -80.82928635644353, + 26.10165573864387 + ], + [ + -80.78939903759678, + 26.10165573864387 + ], + [ + -80.80934269702016, + 26.13298124406556 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.80934269702016, + 26.13298124406556 + ], + [ + -80.78939903759678, + 26.10165573864387 + ], + [ + -80.76945537817339, + 26.13298124406556 + ], + [ + -80.80934269702016, + 26.13298124406556 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.80934269702016, + 26.195632254908944 + ], + [ + -80.76945537817339, + 26.195632254908944 + ], + [ + -80.78939903759678, + 26.226957760330635 + ], + [ + -80.80934269702016, + 26.195632254908944 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.80934269702016, + 26.195632254908944 + ], + [ + -80.78939903759678, + 26.226957760330635 + ], + [ + -80.82928635644353, + 26.226957760330635 + ], + [ + -80.80934269702016, + 26.195632254908944 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.80934269702016, + 26.195632254908944 + ], + [ + -80.82928635644353, + 26.226957760330635 + ], + [ + -80.84923001586692, + 26.195632254908944 + ], + [ + -80.80934269702016, + 26.195632254908944 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.80934269702016, + 26.195632254908944 + ], + [ + -80.84923001586692, + 26.195632254908944 + ], + [ + -80.82928635644353, + 26.164306749487253 + ], + [ + -80.80934269702016, + 26.195632254908944 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.80934269702016, + 26.195632254908944 + ], + [ + -80.82928635644353, + 26.164306749487253 + ], + [ + -80.78939903759678, + 26.164306749487253 + ], + [ + -80.80934269702016, + 26.195632254908944 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.80934269702016, + 26.195632254908944 + ], + [ + -80.78939903759678, + 26.164306749487253 + ], + [ + -80.76945537817339, + 26.195632254908944 + ], + [ + -80.80934269702016, + 26.195632254908944 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.80934269702016, + 26.258283265752333 + ], + [ + -80.76945537817339, + 26.258283265752333 + ], + [ + -80.78939903759678, + 26.289608771174024 + ], + [ + -80.80934269702016, + 26.258283265752333 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.80934269702016, + 26.258283265752333 + ], + [ + -80.78939903759678, + 26.289608771174024 + ], + [ + -80.82928635644353, + 26.289608771174024 + ], + [ + -80.80934269702016, + 26.258283265752333 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.80934269702016, + 26.258283265752333 + ], + [ + -80.82928635644353, + 26.289608771174024 + ], + [ + -80.84923001586692, + 26.258283265752333 + ], + [ + -80.80934269702016, + 26.258283265752333 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.80934269702016, + 26.258283265752333 + ], + [ + -80.84923001586692, + 26.258283265752333 + ], + [ + -80.82928635644353, + 26.22695776033064 + ], + [ + -80.80934269702016, + 26.258283265752333 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.80934269702016, + 26.258283265752333 + ], + [ + -80.82928635644353, + 26.22695776033064 + ], + [ + -80.78939903759678, + 26.22695776033064 + ], + [ + -80.80934269702016, + 26.258283265752333 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.80934269702016, + 26.258283265752333 + ], + [ + -80.78939903759678, + 26.22695776033064 + ], + [ + -80.76945537817339, + 26.258283265752333 + ], + [ + -80.80934269702016, + 26.258283265752333 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.80934269702016, + 26.320934276595715 + ], + [ + -80.76945537817339, + 26.320934276595715 + ], + [ + -80.78939903759678, + 26.352259782017406 + ], + [ + -80.80934269702016, + 26.320934276595715 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.80934269702016, + 26.320934276595715 + ], + [ + -80.78939903759678, + 26.352259782017406 + ], + [ + -80.82928635644353, + 26.352259782017406 + ], + [ + -80.80934269702016, + 26.320934276595715 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.80934269702016, + 26.320934276595715 + ], + [ + -80.82928635644353, + 26.352259782017406 + ], + [ + -80.84923001586692, + 26.320934276595715 + ], + [ + -80.80934269702016, + 26.320934276595715 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.80934269702016, + 26.320934276595715 + ], + [ + -80.84923001586692, + 26.320934276595715 + ], + [ + -80.82928635644353, + 26.289608771174024 + ], + [ + -80.80934269702016, + 26.320934276595715 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.80934269702016, + 26.320934276595715 + ], + [ + -80.82928635644353, + 26.289608771174024 + ], + [ + -80.78939903759678, + 26.289608771174024 + ], + [ + -80.80934269702016, + 26.320934276595715 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.80934269702016, + 26.320934276595715 + ], + [ + -80.78939903759678, + 26.289608771174024 + ], + [ + -80.76945537817339, + 26.320934276595715 + ], + [ + -80.80934269702016, + 26.320934276595715 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.80934269702016, + 26.3835852874391 + ], + [ + -80.76945537817339, + 26.3835852874391 + ], + [ + -80.78939903759678, + 26.41491079286079 + ], + [ + -80.80934269702016, + 26.3835852874391 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.80934269702016, + 26.3835852874391 + ], + [ + -80.78939903759678, + 26.41491079286079 + ], + [ + -80.82928635644353, + 26.41491079286079 + ], + [ + -80.80934269702016, + 26.3835852874391 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.80934269702016, + 26.3835852874391 + ], + [ + -80.82928635644353, + 26.41491079286079 + ], + [ + -80.84923001586692, + 26.3835852874391 + ], + [ + -80.80934269702016, + 26.3835852874391 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.80934269702016, + 26.3835852874391 + ], + [ + -80.84923001586692, + 26.3835852874391 + ], + [ + -80.82928635644353, + 26.35225978201741 + ], + [ + -80.80934269702016, + 26.3835852874391 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.80934269702016, + 26.3835852874391 + ], + [ + -80.82928635644353, + 26.35225978201741 + ], + [ + -80.78939903759678, + 26.35225978201741 + ], + [ + -80.80934269702016, + 26.3835852874391 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.80934269702016, + 26.3835852874391 + ], + [ + -80.78939903759678, + 26.35225978201741 + ], + [ + -80.76945537817339, + 26.3835852874391 + ], + [ + -80.80934269702016, + 26.3835852874391 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.80934269702016, + 26.446236298282486 + ], + [ + -80.76945537817339, + 26.446236298282486 + ], + [ + -80.78939903759678, + 26.477561803704177 + ], + [ + -80.80934269702016, + 26.446236298282486 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.80934269702016, + 26.446236298282486 + ], + [ + -80.78939903759678, + 26.477561803704177 + ], + [ + -80.82928635644353, + 26.477561803704177 + ], + [ + -80.80934269702016, + 26.446236298282486 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.80934269702016, + 26.446236298282486 + ], + [ + -80.82928635644353, + 26.477561803704177 + ], + [ + -80.84923001586692, + 26.446236298282486 + ], + [ + -80.80934269702016, + 26.446236298282486 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.80934269702016, + 26.446236298282486 + ], + [ + -80.84923001586692, + 26.446236298282486 + ], + [ + -80.82928635644353, + 26.414910792860795 + ], + [ + -80.80934269702016, + 26.446236298282486 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.80934269702016, + 26.446236298282486 + ], + [ + -80.82928635644353, + 26.414910792860795 + ], + [ + -80.78939903759678, + 26.414910792860795 + ], + [ + -80.80934269702016, + 26.446236298282486 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.80934269702016, + 26.446236298282486 + ], + [ + -80.78939903759678, + 26.414910792860795 + ], + [ + -80.76945537817339, + 26.446236298282486 + ], + [ + -80.80934269702016, + 26.446236298282486 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.74951171875, + 24.911286532619545 + ], + [ + -80.70962439990323, + 24.911286532619545 + ], + [ + -80.72956805932662, + 24.942612038041236 + ], + [ + -80.74951171875, + 24.911286532619545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.74951171875, + 24.911286532619545 + ], + [ + -80.72956805932662, + 24.942612038041236 + ], + [ + -80.76945537817338, + 24.942612038041236 + ], + [ + -80.74951171875, + 24.911286532619545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.74951171875, + 24.911286532619545 + ], + [ + -80.76945537817338, + 24.942612038041236 + ], + [ + -80.78939903759677, + 24.911286532619545 + ], + [ + -80.74951171875, + 24.911286532619545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.74951171875, + 24.911286532619545 + ], + [ + -80.78939903759677, + 24.911286532619545 + ], + [ + -80.76945537817338, + 24.879961027197854 + ], + [ + -80.74951171875, + 24.911286532619545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.74951171875, + 24.911286532619545 + ], + [ + -80.76945537817338, + 24.879961027197854 + ], + [ + -80.72956805932662, + 24.879961027197854 + ], + [ + -80.74951171875, + 24.911286532619545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.74951171875, + 24.911286532619545 + ], + [ + -80.72956805932662, + 24.879961027197854 + ], + [ + -80.70962439990323, + 24.911286532619545 + ], + [ + -80.74951171875, + 24.911286532619545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.74951171875, + 24.97393754346293 + ], + [ + -80.70962439990323, + 24.97393754346293 + ], + [ + -80.72956805932662, + 25.005263048884622 + ], + [ + -80.74951171875, + 24.97393754346293 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.74951171875, + 24.97393754346293 + ], + [ + -80.72956805932662, + 25.005263048884622 + ], + [ + -80.76945537817338, + 25.005263048884622 + ], + [ + -80.74951171875, + 24.97393754346293 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.74951171875, + 24.97393754346293 + ], + [ + -80.76945537817338, + 25.005263048884622 + ], + [ + -80.78939903759677, + 24.97393754346293 + ], + [ + -80.74951171875, + 24.97393754346293 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.74951171875, + 24.97393754346293 + ], + [ + -80.78939903759677, + 24.97393754346293 + ], + [ + -80.76945537817338, + 24.94261203804124 + ], + [ + -80.74951171875, + 24.97393754346293 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.74951171875, + 24.97393754346293 + ], + [ + -80.76945537817338, + 24.94261203804124 + ], + [ + -80.72956805932662, + 24.94261203804124 + ], + [ + -80.74951171875, + 24.97393754346293 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.74951171875, + 24.97393754346293 + ], + [ + -80.72956805932662, + 24.94261203804124 + ], + [ + -80.70962439990323, + 24.97393754346293 + ], + [ + -80.74951171875, + 24.97393754346293 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.74951171875, + 25.036588554306316 + ], + [ + -80.70962439990323, + 25.036588554306316 + ], + [ + -80.72956805932662, + 25.067914059728007 + ], + [ + -80.74951171875, + 25.036588554306316 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.74951171875, + 25.036588554306316 + ], + [ + -80.72956805932662, + 25.067914059728007 + ], + [ + -80.76945537817338, + 25.067914059728007 + ], + [ + -80.74951171875, + 25.036588554306316 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.74951171875, + 25.036588554306316 + ], + [ + -80.76945537817338, + 25.067914059728007 + ], + [ + -80.78939903759677, + 25.036588554306316 + ], + [ + -80.74951171875, + 25.036588554306316 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.74951171875, + 25.036588554306316 + ], + [ + -80.78939903759677, + 25.036588554306316 + ], + [ + -80.76945537817338, + 25.005263048884625 + ], + [ + -80.74951171875, + 25.036588554306316 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.74951171875, + 25.036588554306316 + ], + [ + -80.76945537817338, + 25.005263048884625 + ], + [ + -80.72956805932662, + 25.005263048884625 + ], + [ + -80.74951171875, + 25.036588554306316 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.74951171875, + 25.036588554306316 + ], + [ + -80.72956805932662, + 25.005263048884625 + ], + [ + -80.70962439990323, + 25.036588554306316 + ], + [ + -80.74951171875, + 25.036588554306316 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.74951171875, + 25.099239565149702 + ], + [ + -80.70962439990323, + 25.099239565149702 + ], + [ + -80.72956805932662, + 25.130565070571393 + ], + [ + -80.74951171875, + 25.099239565149702 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.74951171875, + 25.099239565149702 + ], + [ + -80.72956805932662, + 25.130565070571393 + ], + [ + -80.76945537817338, + 25.130565070571393 + ], + [ + -80.74951171875, + 25.099239565149702 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.74951171875, + 25.099239565149702 + ], + [ + -80.76945537817338, + 25.130565070571393 + ], + [ + -80.78939903759677, + 25.099239565149702 + ], + [ + -80.74951171875, + 25.099239565149702 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.74951171875, + 25.099239565149702 + ], + [ + -80.78939903759677, + 25.099239565149702 + ], + [ + -80.76945537817338, + 25.06791405972801 + ], + [ + -80.74951171875, + 25.099239565149702 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.74951171875, + 25.099239565149702 + ], + [ + -80.76945537817338, + 25.06791405972801 + ], + [ + -80.72956805932662, + 25.06791405972801 + ], + [ + -80.74951171875, + 25.099239565149702 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.74951171875, + 25.099239565149702 + ], + [ + -80.72956805932662, + 25.06791405972801 + ], + [ + -80.70962439990323, + 25.099239565149702 + ], + [ + -80.74951171875, + 25.099239565149702 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.74951171875, + 25.161890575993088 + ], + [ + -80.70962439990323, + 25.161890575993088 + ], + [ + -80.72956805932662, + 25.19321608141478 + ], + [ + -80.74951171875, + 25.161890575993088 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.74951171875, + 25.161890575993088 + ], + [ + -80.72956805932662, + 25.19321608141478 + ], + [ + -80.76945537817338, + 25.19321608141478 + ], + [ + -80.74951171875, + 25.161890575993088 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.74951171875, + 25.161890575993088 + ], + [ + -80.76945537817338, + 25.19321608141478 + ], + [ + -80.78939903759677, + 25.161890575993088 + ], + [ + -80.74951171875, + 25.161890575993088 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.74951171875, + 25.161890575993088 + ], + [ + -80.78939903759677, + 25.161890575993088 + ], + [ + -80.76945537817338, + 25.130565070571397 + ], + [ + -80.74951171875, + 25.161890575993088 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.74951171875, + 25.161890575993088 + ], + [ + -80.76945537817338, + 25.130565070571397 + ], + [ + -80.72956805932662, + 25.130565070571397 + ], + [ + -80.74951171875, + 25.161890575993088 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.74951171875, + 25.161890575993088 + ], + [ + -80.72956805932662, + 25.130565070571397 + ], + [ + -80.70962439990323, + 25.161890575993088 + ], + [ + -80.74951171875, + 25.161890575993088 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.74951171875, + 25.224541586836473 + ], + [ + -80.70962439990323, + 25.224541586836473 + ], + [ + -80.72956805932662, + 25.255867092258164 + ], + [ + -80.74951171875, + 25.224541586836473 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.74951171875, + 25.224541586836473 + ], + [ + -80.72956805932662, + 25.255867092258164 + ], + [ + -80.76945537817338, + 25.255867092258164 + ], + [ + -80.74951171875, + 25.224541586836473 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.74951171875, + 25.224541586836473 + ], + [ + -80.76945537817338, + 25.255867092258164 + ], + [ + -80.78939903759677, + 25.224541586836473 + ], + [ + -80.74951171875, + 25.224541586836473 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.74951171875, + 25.224541586836473 + ], + [ + -80.78939903759677, + 25.224541586836473 + ], + [ + -80.76945537817338, + 25.193216081414782 + ], + [ + -80.74951171875, + 25.224541586836473 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.74951171875, + 25.224541586836473 + ], + [ + -80.76945537817338, + 25.193216081414782 + ], + [ + -80.72956805932662, + 25.193216081414782 + ], + [ + -80.74951171875, + 25.224541586836473 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.74951171875, + 25.224541586836473 + ], + [ + -80.72956805932662, + 25.193216081414782 + ], + [ + -80.70962439990323, + 25.224541586836473 + ], + [ + -80.74951171875, + 25.224541586836473 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.74951171875, + 25.28719259767986 + ], + [ + -80.70962439990323, + 25.28719259767986 + ], + [ + -80.72956805932662, + 25.31851810310155 + ], + [ + -80.74951171875, + 25.28719259767986 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.74951171875, + 25.28719259767986 + ], + [ + -80.72956805932662, + 25.31851810310155 + ], + [ + -80.76945537817338, + 25.31851810310155 + ], + [ + -80.74951171875, + 25.28719259767986 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.74951171875, + 25.28719259767986 + ], + [ + -80.76945537817338, + 25.31851810310155 + ], + [ + -80.78939903759677, + 25.28719259767986 + ], + [ + -80.74951171875, + 25.28719259767986 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.74951171875, + 25.28719259767986 + ], + [ + -80.78939903759677, + 25.28719259767986 + ], + [ + -80.76945537817338, + 25.255867092258168 + ], + [ + -80.74951171875, + 25.28719259767986 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.74951171875, + 25.28719259767986 + ], + [ + -80.76945537817338, + 25.255867092258168 + ], + [ + -80.72956805932662, + 25.255867092258168 + ], + [ + -80.74951171875, + 25.28719259767986 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.74951171875, + 25.28719259767986 + ], + [ + -80.72956805932662, + 25.255867092258168 + ], + [ + -80.70962439990323, + 25.28719259767986 + ], + [ + -80.74951171875, + 25.28719259767986 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.74951171875, + 25.349843608523244 + ], + [ + -80.70962439990323, + 25.349843608523244 + ], + [ + -80.72956805932662, + 25.381169113944935 + ], + [ + -80.74951171875, + 25.349843608523244 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.74951171875, + 25.349843608523244 + ], + [ + -80.72956805932662, + 25.381169113944935 + ], + [ + -80.76945537817338, + 25.381169113944935 + ], + [ + -80.74951171875, + 25.349843608523244 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.74951171875, + 25.349843608523244 + ], + [ + -80.76945537817338, + 25.381169113944935 + ], + [ + -80.78939903759677, + 25.349843608523244 + ], + [ + -80.74951171875, + 25.349843608523244 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.74951171875, + 25.349843608523244 + ], + [ + -80.78939903759677, + 25.349843608523244 + ], + [ + -80.76945537817338, + 25.318518103101553 + ], + [ + -80.74951171875, + 25.349843608523244 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.74951171875, + 25.349843608523244 + ], + [ + -80.76945537817338, + 25.318518103101553 + ], + [ + -80.72956805932662, + 25.318518103101553 + ], + [ + -80.74951171875, + 25.349843608523244 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.74951171875, + 25.349843608523244 + ], + [ + -80.72956805932662, + 25.318518103101553 + ], + [ + -80.70962439990323, + 25.349843608523244 + ], + [ + -80.74951171875, + 25.349843608523244 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.74951171875, + 25.41249461936663 + ], + [ + -80.70962439990323, + 25.41249461936663 + ], + [ + -80.72956805932662, + 25.44382012478832 + ], + [ + -80.74951171875, + 25.41249461936663 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.74951171875, + 25.41249461936663 + ], + [ + -80.72956805932662, + 25.44382012478832 + ], + [ + -80.76945537817338, + 25.44382012478832 + ], + [ + -80.74951171875, + 25.41249461936663 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.74951171875, + 25.41249461936663 + ], + [ + -80.76945537817338, + 25.44382012478832 + ], + [ + -80.78939903759677, + 25.41249461936663 + ], + [ + -80.74951171875, + 25.41249461936663 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.74951171875, + 25.41249461936663 + ], + [ + -80.78939903759677, + 25.41249461936663 + ], + [ + -80.76945537817338, + 25.38116911394494 + ], + [ + -80.74951171875, + 25.41249461936663 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.74951171875, + 25.41249461936663 + ], + [ + -80.76945537817338, + 25.38116911394494 + ], + [ + -80.72956805932662, + 25.38116911394494 + ], + [ + -80.74951171875, + 25.41249461936663 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.74951171875, + 25.41249461936663 + ], + [ + -80.72956805932662, + 25.38116911394494 + ], + [ + -80.70962439990323, + 25.41249461936663 + ], + [ + -80.74951171875, + 25.41249461936663 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.74951171875, + 25.475145630210015 + ], + [ + -80.70962439990323, + 25.475145630210015 + ], + [ + -80.72956805932662, + 25.506471135631706 + ], + [ + -80.74951171875, + 25.475145630210015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.74951171875, + 25.475145630210015 + ], + [ + -80.72956805932662, + 25.506471135631706 + ], + [ + -80.76945537817338, + 25.506471135631706 + ], + [ + -80.74951171875, + 25.475145630210015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.74951171875, + 25.475145630210015 + ], + [ + -80.76945537817338, + 25.506471135631706 + ], + [ + -80.78939903759677, + 25.475145630210015 + ], + [ + -80.74951171875, + 25.475145630210015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.74951171875, + 25.475145630210015 + ], + [ + -80.78939903759677, + 25.475145630210015 + ], + [ + -80.76945537817338, + 25.443820124788324 + ], + [ + -80.74951171875, + 25.475145630210015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.74951171875, + 25.475145630210015 + ], + [ + -80.76945537817338, + 25.443820124788324 + ], + [ + -80.72956805932662, + 25.443820124788324 + ], + [ + -80.74951171875, + 25.475145630210015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.74951171875, + 25.475145630210015 + ], + [ + -80.72956805932662, + 25.443820124788324 + ], + [ + -80.70962439990323, + 25.475145630210015 + ], + [ + -80.74951171875, + 25.475145630210015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.74951171875, + 25.5377966410534 + ], + [ + -80.70962439990323, + 25.5377966410534 + ], + [ + -80.72956805932662, + 25.56912214647509 + ], + [ + -80.74951171875, + 25.5377966410534 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.74951171875, + 25.5377966410534 + ], + [ + -80.72956805932662, + 25.56912214647509 + ], + [ + -80.76945537817338, + 25.56912214647509 + ], + [ + -80.74951171875, + 25.5377966410534 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.74951171875, + 25.5377966410534 + ], + [ + -80.76945537817338, + 25.56912214647509 + ], + [ + -80.78939903759677, + 25.5377966410534 + ], + [ + -80.74951171875, + 25.5377966410534 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.74951171875, + 25.5377966410534 + ], + [ + -80.78939903759677, + 25.5377966410534 + ], + [ + -80.76945537817338, + 25.50647113563171 + ], + [ + -80.74951171875, + 25.5377966410534 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.74951171875, + 25.5377966410534 + ], + [ + -80.76945537817338, + 25.50647113563171 + ], + [ + -80.72956805932662, + 25.50647113563171 + ], + [ + -80.74951171875, + 25.5377966410534 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.74951171875, + 25.5377966410534 + ], + [ + -80.72956805932662, + 25.50647113563171 + ], + [ + -80.70962439990323, + 25.5377966410534 + ], + [ + -80.74951171875, + 25.5377966410534 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.74951171875, + 25.600447651896786 + ], + [ + -80.70962439990323, + 25.600447651896786 + ], + [ + -80.72956805932662, + 25.631773157318477 + ], + [ + -80.74951171875, + 25.600447651896786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.74951171875, + 25.600447651896786 + ], + [ + -80.72956805932662, + 25.631773157318477 + ], + [ + -80.76945537817338, + 25.631773157318477 + ], + [ + -80.74951171875, + 25.600447651896786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.74951171875, + 25.600447651896786 + ], + [ + -80.76945537817338, + 25.631773157318477 + ], + [ + -80.78939903759677, + 25.600447651896786 + ], + [ + -80.74951171875, + 25.600447651896786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.74951171875, + 25.600447651896786 + ], + [ + -80.78939903759677, + 25.600447651896786 + ], + [ + -80.76945537817338, + 25.569122146475095 + ], + [ + -80.74951171875, + 25.600447651896786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.74951171875, + 25.600447651896786 + ], + [ + -80.76945537817338, + 25.569122146475095 + ], + [ + -80.72956805932662, + 25.569122146475095 + ], + [ + -80.74951171875, + 25.600447651896786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.74951171875, + 25.600447651896786 + ], + [ + -80.72956805932662, + 25.569122146475095 + ], + [ + -80.70962439990323, + 25.600447651896786 + ], + [ + -80.74951171875, + 25.600447651896786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.74951171875, + 25.663098662740172 + ], + [ + -80.70962439990323, + 25.663098662740172 + ], + [ + -80.72956805932662, + 25.694424168161863 + ], + [ + -80.74951171875, + 25.663098662740172 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.74951171875, + 25.663098662740172 + ], + [ + -80.72956805932662, + 25.694424168161863 + ], + [ + -80.76945537817338, + 25.694424168161863 + ], + [ + -80.74951171875, + 25.663098662740172 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.74951171875, + 25.663098662740172 + ], + [ + -80.76945537817338, + 25.694424168161863 + ], + [ + -80.78939903759677, + 25.663098662740172 + ], + [ + -80.74951171875, + 25.663098662740172 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.74951171875, + 25.663098662740172 + ], + [ + -80.78939903759677, + 25.663098662740172 + ], + [ + -80.76945537817338, + 25.63177315731848 + ], + [ + -80.74951171875, + 25.663098662740172 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.74951171875, + 25.663098662740172 + ], + [ + -80.76945537817338, + 25.63177315731848 + ], + [ + -80.72956805932662, + 25.63177315731848 + ], + [ + -80.74951171875, + 25.663098662740172 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.74951171875, + 25.663098662740172 + ], + [ + -80.72956805932662, + 25.63177315731848 + ], + [ + -80.70962439990323, + 25.663098662740172 + ], + [ + -80.74951171875, + 25.663098662740172 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.74951171875, + 25.725749673583557 + ], + [ + -80.70962439990323, + 25.725749673583557 + ], + [ + -80.72956805932662, + 25.75707517900525 + ], + [ + -80.74951171875, + 25.725749673583557 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.74951171875, + 25.725749673583557 + ], + [ + -80.72956805932662, + 25.75707517900525 + ], + [ + -80.76945537817338, + 25.75707517900525 + ], + [ + -80.74951171875, + 25.725749673583557 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.74951171875, + 25.725749673583557 + ], + [ + -80.76945537817338, + 25.75707517900525 + ], + [ + -80.78939903759677, + 25.725749673583557 + ], + [ + -80.74951171875, + 25.725749673583557 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.74951171875, + 25.725749673583557 + ], + [ + -80.78939903759677, + 25.725749673583557 + ], + [ + -80.76945537817338, + 25.694424168161866 + ], + [ + -80.74951171875, + 25.725749673583557 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.74951171875, + 25.725749673583557 + ], + [ + -80.76945537817338, + 25.694424168161866 + ], + [ + -80.72956805932662, + 25.694424168161866 + ], + [ + -80.74951171875, + 25.725749673583557 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.74951171875, + 25.725749673583557 + ], + [ + -80.72956805932662, + 25.694424168161866 + ], + [ + -80.70962439990323, + 25.725749673583557 + ], + [ + -80.74951171875, + 25.725749673583557 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.74951171875, + 25.788400684426943 + ], + [ + -80.70962439990323, + 25.788400684426943 + ], + [ + -80.72956805932662, + 25.819726189848634 + ], + [ + -80.74951171875, + 25.788400684426943 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.74951171875, + 25.788400684426943 + ], + [ + -80.72956805932662, + 25.819726189848634 + ], + [ + -80.76945537817338, + 25.819726189848634 + ], + [ + -80.74951171875, + 25.788400684426943 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.74951171875, + 25.788400684426943 + ], + [ + -80.76945537817338, + 25.819726189848634 + ], + [ + -80.78939903759677, + 25.788400684426943 + ], + [ + -80.74951171875, + 25.788400684426943 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.74951171875, + 25.788400684426943 + ], + [ + -80.78939903759677, + 25.788400684426943 + ], + [ + -80.76945537817338, + 25.757075179005252 + ], + [ + -80.74951171875, + 25.788400684426943 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.74951171875, + 25.788400684426943 + ], + [ + -80.76945537817338, + 25.757075179005252 + ], + [ + -80.72956805932662, + 25.757075179005252 + ], + [ + -80.74951171875, + 25.788400684426943 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.74951171875, + 25.788400684426943 + ], + [ + -80.72956805932662, + 25.757075179005252 + ], + [ + -80.70962439990323, + 25.788400684426943 + ], + [ + -80.74951171875, + 25.788400684426943 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.74951171875, + 25.85105169527033 + ], + [ + -80.70962439990323, + 25.85105169527033 + ], + [ + -80.72956805932662, + 25.88237720069202 + ], + [ + -80.74951171875, + 25.85105169527033 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.74951171875, + 25.85105169527033 + ], + [ + -80.72956805932662, + 25.88237720069202 + ], + [ + -80.76945537817338, + 25.88237720069202 + ], + [ + -80.74951171875, + 25.85105169527033 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.74951171875, + 25.85105169527033 + ], + [ + -80.76945537817338, + 25.88237720069202 + ], + [ + -80.78939903759677, + 25.85105169527033 + ], + [ + -80.74951171875, + 25.85105169527033 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.74951171875, + 25.85105169527033 + ], + [ + -80.78939903759677, + 25.85105169527033 + ], + [ + -80.76945537817338, + 25.819726189848637 + ], + [ + -80.74951171875, + 25.85105169527033 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.74951171875, + 25.85105169527033 + ], + [ + -80.76945537817338, + 25.819726189848637 + ], + [ + -80.72956805932662, + 25.819726189848637 + ], + [ + -80.74951171875, + 25.85105169527033 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.74951171875, + 25.85105169527033 + ], + [ + -80.72956805932662, + 25.819726189848637 + ], + [ + -80.70962439990323, + 25.85105169527033 + ], + [ + -80.74951171875, + 25.85105169527033 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.74951171875, + 25.913702706113714 + ], + [ + -80.70962439990323, + 25.913702706113714 + ], + [ + -80.72956805932662, + 25.945028211535405 + ], + [ + -80.74951171875, + 25.913702706113714 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.74951171875, + 25.913702706113714 + ], + [ + -80.72956805932662, + 25.945028211535405 + ], + [ + -80.76945537817338, + 25.945028211535405 + ], + [ + -80.74951171875, + 25.913702706113714 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.74951171875, + 25.913702706113714 + ], + [ + -80.76945537817338, + 25.945028211535405 + ], + [ + -80.78939903759677, + 25.913702706113714 + ], + [ + -80.74951171875, + 25.913702706113714 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.74951171875, + 25.913702706113714 + ], + [ + -80.78939903759677, + 25.913702706113714 + ], + [ + -80.76945537817338, + 25.882377200692023 + ], + [ + -80.74951171875, + 25.913702706113714 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.74951171875, + 25.913702706113714 + ], + [ + -80.76945537817338, + 25.882377200692023 + ], + [ + -80.72956805932662, + 25.882377200692023 + ], + [ + -80.74951171875, + 25.913702706113714 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.74951171875, + 25.913702706113714 + ], + [ + -80.72956805932662, + 25.882377200692023 + ], + [ + -80.70962439990323, + 25.913702706113714 + ], + [ + -80.74951171875, + 25.913702706113714 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.74951171875, + 25.9763537169571 + ], + [ + -80.70962439990323, + 25.9763537169571 + ], + [ + -80.72956805932662, + 26.00767922237879 + ], + [ + -80.74951171875, + 25.9763537169571 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.74951171875, + 25.9763537169571 + ], + [ + -80.72956805932662, + 26.00767922237879 + ], + [ + -80.76945537817338, + 26.00767922237879 + ], + [ + -80.74951171875, + 25.9763537169571 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.74951171875, + 25.9763537169571 + ], + [ + -80.76945537817338, + 26.00767922237879 + ], + [ + -80.78939903759677, + 25.9763537169571 + ], + [ + -80.74951171875, + 25.9763537169571 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.74951171875, + 25.9763537169571 + ], + [ + -80.78939903759677, + 25.9763537169571 + ], + [ + -80.76945537817338, + 25.94502821153541 + ], + [ + -80.74951171875, + 25.9763537169571 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.74951171875, + 25.9763537169571 + ], + [ + -80.76945537817338, + 25.94502821153541 + ], + [ + -80.72956805932662, + 25.94502821153541 + ], + [ + -80.74951171875, + 25.9763537169571 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.74951171875, + 25.9763537169571 + ], + [ + -80.72956805932662, + 25.94502821153541 + ], + [ + -80.70962439990323, + 25.9763537169571 + ], + [ + -80.74951171875, + 25.9763537169571 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.74951171875, + 26.039004727800485 + ], + [ + -80.70962439990323, + 26.039004727800485 + ], + [ + -80.72956805932662, + 26.070330233222176 + ], + [ + -80.74951171875, + 26.039004727800485 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.74951171875, + 26.039004727800485 + ], + [ + -80.72956805932662, + 26.070330233222176 + ], + [ + -80.76945537817338, + 26.070330233222176 + ], + [ + -80.74951171875, + 26.039004727800485 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.74951171875, + 26.039004727800485 + ], + [ + -80.76945537817338, + 26.070330233222176 + ], + [ + -80.78939903759677, + 26.039004727800485 + ], + [ + -80.74951171875, + 26.039004727800485 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.74951171875, + 26.039004727800485 + ], + [ + -80.78939903759677, + 26.039004727800485 + ], + [ + -80.76945537817338, + 26.007679222378794 + ], + [ + -80.74951171875, + 26.039004727800485 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.74951171875, + 26.039004727800485 + ], + [ + -80.76945537817338, + 26.007679222378794 + ], + [ + -80.72956805932662, + 26.007679222378794 + ], + [ + -80.74951171875, + 26.039004727800485 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.74951171875, + 26.039004727800485 + ], + [ + -80.72956805932662, + 26.007679222378794 + ], + [ + -80.70962439990323, + 26.039004727800485 + ], + [ + -80.74951171875, + 26.039004727800485 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.74951171875, + 26.10165573864387 + ], + [ + -80.70962439990323, + 26.10165573864387 + ], + [ + -80.72956805932662, + 26.13298124406556 + ], + [ + -80.74951171875, + 26.10165573864387 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.74951171875, + 26.10165573864387 + ], + [ + -80.72956805932662, + 26.13298124406556 + ], + [ + -80.76945537817338, + 26.13298124406556 + ], + [ + -80.74951171875, + 26.10165573864387 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.74951171875, + 26.10165573864387 + ], + [ + -80.76945537817338, + 26.13298124406556 + ], + [ + -80.78939903759677, + 26.10165573864387 + ], + [ + -80.74951171875, + 26.10165573864387 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.74951171875, + 26.10165573864387 + ], + [ + -80.78939903759677, + 26.10165573864387 + ], + [ + -80.76945537817338, + 26.07033023322218 + ], + [ + -80.74951171875, + 26.10165573864387 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.74951171875, + 26.10165573864387 + ], + [ + -80.76945537817338, + 26.07033023322218 + ], + [ + -80.72956805932662, + 26.07033023322218 + ], + [ + -80.74951171875, + 26.10165573864387 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.74951171875, + 26.10165573864387 + ], + [ + -80.72956805932662, + 26.07033023322218 + ], + [ + -80.70962439990323, + 26.10165573864387 + ], + [ + -80.74951171875, + 26.10165573864387 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.74951171875, + 26.164306749487253 + ], + [ + -80.70962439990323, + 26.164306749487253 + ], + [ + -80.72956805932662, + 26.195632254908944 + ], + [ + -80.74951171875, + 26.164306749487253 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.74951171875, + 26.164306749487253 + ], + [ + -80.72956805932662, + 26.195632254908944 + ], + [ + -80.76945537817338, + 26.195632254908944 + ], + [ + -80.74951171875, + 26.164306749487253 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.74951171875, + 26.164306749487253 + ], + [ + -80.76945537817338, + 26.195632254908944 + ], + [ + -80.78939903759677, + 26.164306749487253 + ], + [ + -80.74951171875, + 26.164306749487253 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.74951171875, + 26.164306749487253 + ], + [ + -80.78939903759677, + 26.164306749487253 + ], + [ + -80.76945537817338, + 26.13298124406556 + ], + [ + -80.74951171875, + 26.164306749487253 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.74951171875, + 26.164306749487253 + ], + [ + -80.76945537817338, + 26.13298124406556 + ], + [ + -80.72956805932662, + 26.13298124406556 + ], + [ + -80.74951171875, + 26.164306749487253 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.74951171875, + 26.164306749487253 + ], + [ + -80.72956805932662, + 26.13298124406556 + ], + [ + -80.70962439990323, + 26.164306749487253 + ], + [ + -80.74951171875, + 26.164306749487253 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.74951171875, + 26.22695776033064 + ], + [ + -80.70962439990323, + 26.22695776033064 + ], + [ + -80.72956805932662, + 26.258283265752333 + ], + [ + -80.74951171875, + 26.22695776033064 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.74951171875, + 26.22695776033064 + ], + [ + -80.72956805932662, + 26.258283265752333 + ], + [ + -80.76945537817338, + 26.258283265752333 + ], + [ + -80.74951171875, + 26.22695776033064 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.74951171875, + 26.22695776033064 + ], + [ + -80.76945537817338, + 26.258283265752333 + ], + [ + -80.78939903759677, + 26.22695776033064 + ], + [ + -80.74951171875, + 26.22695776033064 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.74951171875, + 26.22695776033064 + ], + [ + -80.78939903759677, + 26.22695776033064 + ], + [ + -80.76945537817338, + 26.19563225490895 + ], + [ + -80.74951171875, + 26.22695776033064 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.74951171875, + 26.22695776033064 + ], + [ + -80.76945537817338, + 26.19563225490895 + ], + [ + -80.72956805932662, + 26.19563225490895 + ], + [ + -80.74951171875, + 26.22695776033064 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.74951171875, + 26.22695776033064 + ], + [ + -80.72956805932662, + 26.19563225490895 + ], + [ + -80.70962439990323, + 26.22695776033064 + ], + [ + -80.74951171875, + 26.22695776033064 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.74951171875, + 26.289608771174024 + ], + [ + -80.70962439990323, + 26.289608771174024 + ], + [ + -80.72956805932662, + 26.320934276595715 + ], + [ + -80.74951171875, + 26.289608771174024 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.74951171875, + 26.289608771174024 + ], + [ + -80.72956805932662, + 26.320934276595715 + ], + [ + -80.76945537817338, + 26.320934276595715 + ], + [ + -80.74951171875, + 26.289608771174024 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.74951171875, + 26.289608771174024 + ], + [ + -80.76945537817338, + 26.320934276595715 + ], + [ + -80.78939903759677, + 26.289608771174024 + ], + [ + -80.74951171875, + 26.289608771174024 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.74951171875, + 26.289608771174024 + ], + [ + -80.78939903759677, + 26.289608771174024 + ], + [ + -80.76945537817338, + 26.258283265752333 + ], + [ + -80.74951171875, + 26.289608771174024 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.74951171875, + 26.289608771174024 + ], + [ + -80.76945537817338, + 26.258283265752333 + ], + [ + -80.72956805932662, + 26.258283265752333 + ], + [ + -80.74951171875, + 26.289608771174024 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.74951171875, + 26.289608771174024 + ], + [ + -80.72956805932662, + 26.258283265752333 + ], + [ + -80.70962439990323, + 26.289608771174024 + ], + [ + -80.74951171875, + 26.289608771174024 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.74951171875, + 26.35225978201741 + ], + [ + -80.70962439990323, + 26.35225978201741 + ], + [ + -80.72956805932662, + 26.3835852874391 + ], + [ + -80.74951171875, + 26.35225978201741 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.74951171875, + 26.35225978201741 + ], + [ + -80.72956805932662, + 26.3835852874391 + ], + [ + -80.76945537817338, + 26.3835852874391 + ], + [ + -80.74951171875, + 26.35225978201741 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.74951171875, + 26.35225978201741 + ], + [ + -80.76945537817338, + 26.3835852874391 + ], + [ + -80.78939903759677, + 26.35225978201741 + ], + [ + -80.74951171875, + 26.35225978201741 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.74951171875, + 26.35225978201741 + ], + [ + -80.78939903759677, + 26.35225978201741 + ], + [ + -80.76945537817338, + 26.320934276595718 + ], + [ + -80.74951171875, + 26.35225978201741 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.74951171875, + 26.35225978201741 + ], + [ + -80.76945537817338, + 26.320934276595718 + ], + [ + -80.72956805932662, + 26.320934276595718 + ], + [ + -80.74951171875, + 26.35225978201741 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.74951171875, + 26.35225978201741 + ], + [ + -80.72956805932662, + 26.320934276595718 + ], + [ + -80.70962439990323, + 26.35225978201741 + ], + [ + -80.74951171875, + 26.35225978201741 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.74951171875, + 26.414910792860795 + ], + [ + -80.70962439990323, + 26.414910792860795 + ], + [ + -80.72956805932662, + 26.446236298282486 + ], + [ + -80.74951171875, + 26.414910792860795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.74951171875, + 26.414910792860795 + ], + [ + -80.72956805932662, + 26.446236298282486 + ], + [ + -80.76945537817338, + 26.446236298282486 + ], + [ + -80.74951171875, + 26.414910792860795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.74951171875, + 26.414910792860795 + ], + [ + -80.76945537817338, + 26.446236298282486 + ], + [ + -80.78939903759677, + 26.414910792860795 + ], + [ + -80.74951171875, + 26.414910792860795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.74951171875, + 26.414910792860795 + ], + [ + -80.78939903759677, + 26.414910792860795 + ], + [ + -80.76945537817338, + 26.383585287439104 + ], + [ + -80.74951171875, + 26.414910792860795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.74951171875, + 26.414910792860795 + ], + [ + -80.76945537817338, + 26.383585287439104 + ], + [ + -80.72956805932662, + 26.383585287439104 + ], + [ + -80.74951171875, + 26.414910792860795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.74951171875, + 26.414910792860795 + ], + [ + -80.72956805932662, + 26.383585287439104 + ], + [ + -80.70962439990323, + 26.414910792860795 + ], + [ + -80.74951171875, + 26.414910792860795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.68968074047986, + 24.942612038041236 + ], + [ + -80.64979342163309, + 24.942612038041236 + ], + [ + -80.66973708105648, + 24.973937543462927 + ], + [ + -80.68968074047986, + 24.942612038041236 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.68968074047986, + 24.942612038041236 + ], + [ + -80.66973708105648, + 24.973937543462927 + ], + [ + -80.70962439990323, + 24.973937543462927 + ], + [ + -80.68968074047986, + 24.942612038041236 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.68968074047986, + 24.942612038041236 + ], + [ + -80.70962439990323, + 24.973937543462927 + ], + [ + -80.72956805932662, + 24.942612038041236 + ], + [ + -80.68968074047986, + 24.942612038041236 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.68968074047986, + 24.942612038041236 + ], + [ + -80.72956805932662, + 24.942612038041236 + ], + [ + -80.70962439990323, + 24.911286532619545 + ], + [ + -80.68968074047986, + 24.942612038041236 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.68968074047986, + 24.942612038041236 + ], + [ + -80.70962439990323, + 24.911286532619545 + ], + [ + -80.66973708105648, + 24.911286532619545 + ], + [ + -80.68968074047986, + 24.942612038041236 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.68968074047986, + 24.942612038041236 + ], + [ + -80.66973708105648, + 24.911286532619545 + ], + [ + -80.64979342163309, + 24.942612038041236 + ], + [ + -80.68968074047986, + 24.942612038041236 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.68968074047986, + 25.005263048884622 + ], + [ + -80.64979342163309, + 25.005263048884622 + ], + [ + -80.66973708105648, + 25.036588554306313 + ], + [ + -80.68968074047986, + 25.005263048884622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.68968074047986, + 25.005263048884622 + ], + [ + -80.66973708105648, + 25.036588554306313 + ], + [ + -80.70962439990323, + 25.036588554306313 + ], + [ + -80.68968074047986, + 25.005263048884622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.68968074047986, + 25.005263048884622 + ], + [ + -80.70962439990323, + 25.036588554306313 + ], + [ + -80.72956805932662, + 25.005263048884622 + ], + [ + -80.68968074047986, + 25.005263048884622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.68968074047986, + 25.005263048884622 + ], + [ + -80.72956805932662, + 25.005263048884622 + ], + [ + -80.70962439990323, + 24.97393754346293 + ], + [ + -80.68968074047986, + 25.005263048884622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.68968074047986, + 25.005263048884622 + ], + [ + -80.70962439990323, + 24.97393754346293 + ], + [ + -80.66973708105648, + 24.97393754346293 + ], + [ + -80.68968074047986, + 25.005263048884622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.68968074047986, + 25.005263048884622 + ], + [ + -80.66973708105648, + 24.97393754346293 + ], + [ + -80.64979342163309, + 25.005263048884622 + ], + [ + -80.68968074047986, + 25.005263048884622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.68968074047986, + 25.067914059728007 + ], + [ + -80.64979342163309, + 25.067914059728007 + ], + [ + -80.66973708105648, + 25.0992395651497 + ], + [ + -80.68968074047986, + 25.067914059728007 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.68968074047986, + 25.067914059728007 + ], + [ + -80.66973708105648, + 25.0992395651497 + ], + [ + -80.70962439990323, + 25.0992395651497 + ], + [ + -80.68968074047986, + 25.067914059728007 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.68968074047986, + 25.067914059728007 + ], + [ + -80.70962439990323, + 25.0992395651497 + ], + [ + -80.72956805932662, + 25.067914059728007 + ], + [ + -80.68968074047986, + 25.067914059728007 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.68968074047986, + 25.067914059728007 + ], + [ + -80.72956805932662, + 25.067914059728007 + ], + [ + -80.70962439990323, + 25.036588554306316 + ], + [ + -80.68968074047986, + 25.067914059728007 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.68968074047986, + 25.067914059728007 + ], + [ + -80.70962439990323, + 25.036588554306316 + ], + [ + -80.66973708105648, + 25.036588554306316 + ], + [ + -80.68968074047986, + 25.067914059728007 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.68968074047986, + 25.067914059728007 + ], + [ + -80.66973708105648, + 25.036588554306316 + ], + [ + -80.64979342163309, + 25.067914059728007 + ], + [ + -80.68968074047986, + 25.067914059728007 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.68968074047986, + 25.130565070571393 + ], + [ + -80.64979342163309, + 25.130565070571393 + ], + [ + -80.66973708105648, + 25.161890575993084 + ], + [ + -80.68968074047986, + 25.130565070571393 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.68968074047986, + 25.130565070571393 + ], + [ + -80.66973708105648, + 25.161890575993084 + ], + [ + -80.70962439990323, + 25.161890575993084 + ], + [ + -80.68968074047986, + 25.130565070571393 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.68968074047986, + 25.130565070571393 + ], + [ + -80.70962439990323, + 25.161890575993084 + ], + [ + -80.72956805932662, + 25.130565070571393 + ], + [ + -80.68968074047986, + 25.130565070571393 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.68968074047986, + 25.130565070571393 + ], + [ + -80.72956805932662, + 25.130565070571393 + ], + [ + -80.70962439990323, + 25.099239565149702 + ], + [ + -80.68968074047986, + 25.130565070571393 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.68968074047986, + 25.130565070571393 + ], + [ + -80.70962439990323, + 25.099239565149702 + ], + [ + -80.66973708105648, + 25.099239565149702 + ], + [ + -80.68968074047986, + 25.130565070571393 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.68968074047986, + 25.130565070571393 + ], + [ + -80.66973708105648, + 25.099239565149702 + ], + [ + -80.64979342163309, + 25.130565070571393 + ], + [ + -80.68968074047986, + 25.130565070571393 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.68968074047986, + 25.19321608141478 + ], + [ + -80.64979342163309, + 25.19321608141478 + ], + [ + -80.66973708105648, + 25.22454158683647 + ], + [ + -80.68968074047986, + 25.19321608141478 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.68968074047986, + 25.19321608141478 + ], + [ + -80.66973708105648, + 25.22454158683647 + ], + [ + -80.70962439990323, + 25.22454158683647 + ], + [ + -80.68968074047986, + 25.19321608141478 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.68968074047986, + 25.19321608141478 + ], + [ + -80.70962439990323, + 25.22454158683647 + ], + [ + -80.72956805932662, + 25.19321608141478 + ], + [ + -80.68968074047986, + 25.19321608141478 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.68968074047986, + 25.19321608141478 + ], + [ + -80.72956805932662, + 25.19321608141478 + ], + [ + -80.70962439990323, + 25.161890575993088 + ], + [ + -80.68968074047986, + 25.19321608141478 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.68968074047986, + 25.19321608141478 + ], + [ + -80.70962439990323, + 25.161890575993088 + ], + [ + -80.66973708105648, + 25.161890575993088 + ], + [ + -80.68968074047986, + 25.19321608141478 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.68968074047986, + 25.19321608141478 + ], + [ + -80.66973708105648, + 25.161890575993088 + ], + [ + -80.64979342163309, + 25.19321608141478 + ], + [ + -80.68968074047986, + 25.19321608141478 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.68968074047986, + 25.255867092258164 + ], + [ + -80.64979342163309, + 25.255867092258164 + ], + [ + -80.66973708105648, + 25.287192597679855 + ], + [ + -80.68968074047986, + 25.255867092258164 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.68968074047986, + 25.255867092258164 + ], + [ + -80.66973708105648, + 25.287192597679855 + ], + [ + -80.70962439990323, + 25.287192597679855 + ], + [ + -80.68968074047986, + 25.255867092258164 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.68968074047986, + 25.255867092258164 + ], + [ + -80.70962439990323, + 25.287192597679855 + ], + [ + -80.72956805932662, + 25.255867092258164 + ], + [ + -80.68968074047986, + 25.255867092258164 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.68968074047986, + 25.255867092258164 + ], + [ + -80.72956805932662, + 25.255867092258164 + ], + [ + -80.70962439990323, + 25.224541586836473 + ], + [ + -80.68968074047986, + 25.255867092258164 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.68968074047986, + 25.255867092258164 + ], + [ + -80.70962439990323, + 25.224541586836473 + ], + [ + -80.66973708105648, + 25.224541586836473 + ], + [ + -80.68968074047986, + 25.255867092258164 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.68968074047986, + 25.255867092258164 + ], + [ + -80.66973708105648, + 25.224541586836473 + ], + [ + -80.64979342163309, + 25.255867092258164 + ], + [ + -80.68968074047986, + 25.255867092258164 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.68968074047986, + 25.31851810310155 + ], + [ + -80.64979342163309, + 25.31851810310155 + ], + [ + -80.66973708105648, + 25.34984360852324 + ], + [ + -80.68968074047986, + 25.31851810310155 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.68968074047986, + 25.31851810310155 + ], + [ + -80.66973708105648, + 25.34984360852324 + ], + [ + -80.70962439990323, + 25.34984360852324 + ], + [ + -80.68968074047986, + 25.31851810310155 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.68968074047986, + 25.31851810310155 + ], + [ + -80.70962439990323, + 25.34984360852324 + ], + [ + -80.72956805932662, + 25.31851810310155 + ], + [ + -80.68968074047986, + 25.31851810310155 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.68968074047986, + 25.31851810310155 + ], + [ + -80.72956805932662, + 25.31851810310155 + ], + [ + -80.70962439990323, + 25.28719259767986 + ], + [ + -80.68968074047986, + 25.31851810310155 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.68968074047986, + 25.31851810310155 + ], + [ + -80.70962439990323, + 25.28719259767986 + ], + [ + -80.66973708105648, + 25.28719259767986 + ], + [ + -80.68968074047986, + 25.31851810310155 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.68968074047986, + 25.31851810310155 + ], + [ + -80.66973708105648, + 25.28719259767986 + ], + [ + -80.64979342163309, + 25.31851810310155 + ], + [ + -80.68968074047986, + 25.31851810310155 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.68968074047986, + 25.381169113944935 + ], + [ + -80.64979342163309, + 25.381169113944935 + ], + [ + -80.66973708105648, + 25.412494619366626 + ], + [ + -80.68968074047986, + 25.381169113944935 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.68968074047986, + 25.381169113944935 + ], + [ + -80.66973708105648, + 25.412494619366626 + ], + [ + -80.70962439990323, + 25.412494619366626 + ], + [ + -80.68968074047986, + 25.381169113944935 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.68968074047986, + 25.381169113944935 + ], + [ + -80.70962439990323, + 25.412494619366626 + ], + [ + -80.72956805932662, + 25.381169113944935 + ], + [ + -80.68968074047986, + 25.381169113944935 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.68968074047986, + 25.381169113944935 + ], + [ + -80.72956805932662, + 25.381169113944935 + ], + [ + -80.70962439990323, + 25.349843608523244 + ], + [ + -80.68968074047986, + 25.381169113944935 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.68968074047986, + 25.381169113944935 + ], + [ + -80.70962439990323, + 25.349843608523244 + ], + [ + -80.66973708105648, + 25.349843608523244 + ], + [ + -80.68968074047986, + 25.381169113944935 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.68968074047986, + 25.381169113944935 + ], + [ + -80.66973708105648, + 25.349843608523244 + ], + [ + -80.64979342163309, + 25.381169113944935 + ], + [ + -80.68968074047986, + 25.381169113944935 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.68968074047986, + 25.44382012478832 + ], + [ + -80.64979342163309, + 25.44382012478832 + ], + [ + -80.66973708105648, + 25.47514563021001 + ], + [ + -80.68968074047986, + 25.44382012478832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.68968074047986, + 25.44382012478832 + ], + [ + -80.66973708105648, + 25.47514563021001 + ], + [ + -80.70962439990323, + 25.47514563021001 + ], + [ + -80.68968074047986, + 25.44382012478832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.68968074047986, + 25.44382012478832 + ], + [ + -80.70962439990323, + 25.47514563021001 + ], + [ + -80.72956805932662, + 25.44382012478832 + ], + [ + -80.68968074047986, + 25.44382012478832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.68968074047986, + 25.44382012478832 + ], + [ + -80.72956805932662, + 25.44382012478832 + ], + [ + -80.70962439990323, + 25.41249461936663 + ], + [ + -80.68968074047986, + 25.44382012478832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.68968074047986, + 25.44382012478832 + ], + [ + -80.70962439990323, + 25.41249461936663 + ], + [ + -80.66973708105648, + 25.41249461936663 + ], + [ + -80.68968074047986, + 25.44382012478832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.68968074047986, + 25.44382012478832 + ], + [ + -80.66973708105648, + 25.41249461936663 + ], + [ + -80.64979342163309, + 25.44382012478832 + ], + [ + -80.68968074047986, + 25.44382012478832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.68968074047986, + 25.506471135631706 + ], + [ + -80.64979342163309, + 25.506471135631706 + ], + [ + -80.66973708105648, + 25.537796641053397 + ], + [ + -80.68968074047986, + 25.506471135631706 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.68968074047986, + 25.506471135631706 + ], + [ + -80.66973708105648, + 25.537796641053397 + ], + [ + -80.70962439990323, + 25.537796641053397 + ], + [ + -80.68968074047986, + 25.506471135631706 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.68968074047986, + 25.506471135631706 + ], + [ + -80.70962439990323, + 25.537796641053397 + ], + [ + -80.72956805932662, + 25.506471135631706 + ], + [ + -80.68968074047986, + 25.506471135631706 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.68968074047986, + 25.506471135631706 + ], + [ + -80.72956805932662, + 25.506471135631706 + ], + [ + -80.70962439990323, + 25.475145630210015 + ], + [ + -80.68968074047986, + 25.506471135631706 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.68968074047986, + 25.506471135631706 + ], + [ + -80.70962439990323, + 25.475145630210015 + ], + [ + -80.66973708105648, + 25.475145630210015 + ], + [ + -80.68968074047986, + 25.506471135631706 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.68968074047986, + 25.506471135631706 + ], + [ + -80.66973708105648, + 25.475145630210015 + ], + [ + -80.64979342163309, + 25.506471135631706 + ], + [ + -80.68968074047986, + 25.506471135631706 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.68968074047986, + 25.56912214647509 + ], + [ + -80.64979342163309, + 25.56912214647509 + ], + [ + -80.66973708105648, + 25.600447651896783 + ], + [ + -80.68968074047986, + 25.56912214647509 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.68968074047986, + 25.56912214647509 + ], + [ + -80.66973708105648, + 25.600447651896783 + ], + [ + -80.70962439990323, + 25.600447651896783 + ], + [ + -80.68968074047986, + 25.56912214647509 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.68968074047986, + 25.56912214647509 + ], + [ + -80.70962439990323, + 25.600447651896783 + ], + [ + -80.72956805932662, + 25.56912214647509 + ], + [ + -80.68968074047986, + 25.56912214647509 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.68968074047986, + 25.56912214647509 + ], + [ + -80.72956805932662, + 25.56912214647509 + ], + [ + -80.70962439990323, + 25.5377966410534 + ], + [ + -80.68968074047986, + 25.56912214647509 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.68968074047986, + 25.56912214647509 + ], + [ + -80.70962439990323, + 25.5377966410534 + ], + [ + -80.66973708105648, + 25.5377966410534 + ], + [ + -80.68968074047986, + 25.56912214647509 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.68968074047986, + 25.56912214647509 + ], + [ + -80.66973708105648, + 25.5377966410534 + ], + [ + -80.64979342163309, + 25.56912214647509 + ], + [ + -80.68968074047986, + 25.56912214647509 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.68968074047986, + 25.631773157318477 + ], + [ + -80.64979342163309, + 25.631773157318477 + ], + [ + -80.66973708105648, + 25.66309866274017 + ], + [ + -80.68968074047986, + 25.631773157318477 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.68968074047986, + 25.631773157318477 + ], + [ + -80.66973708105648, + 25.66309866274017 + ], + [ + -80.70962439990323, + 25.66309866274017 + ], + [ + -80.68968074047986, + 25.631773157318477 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.68968074047986, + 25.631773157318477 + ], + [ + -80.70962439990323, + 25.66309866274017 + ], + [ + -80.72956805932662, + 25.631773157318477 + ], + [ + -80.68968074047986, + 25.631773157318477 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.68968074047986, + 25.631773157318477 + ], + [ + -80.72956805932662, + 25.631773157318477 + ], + [ + -80.70962439990323, + 25.600447651896786 + ], + [ + -80.68968074047986, + 25.631773157318477 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.68968074047986, + 25.631773157318477 + ], + [ + -80.70962439990323, + 25.600447651896786 + ], + [ + -80.66973708105648, + 25.600447651896786 + ], + [ + -80.68968074047986, + 25.631773157318477 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.68968074047986, + 25.631773157318477 + ], + [ + -80.66973708105648, + 25.600447651896786 + ], + [ + -80.64979342163309, + 25.631773157318477 + ], + [ + -80.68968074047986, + 25.631773157318477 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.68968074047986, + 25.694424168161863 + ], + [ + -80.64979342163309, + 25.694424168161863 + ], + [ + -80.66973708105648, + 25.725749673583554 + ], + [ + -80.68968074047986, + 25.694424168161863 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.68968074047986, + 25.694424168161863 + ], + [ + -80.66973708105648, + 25.725749673583554 + ], + [ + -80.70962439990323, + 25.725749673583554 + ], + [ + -80.68968074047986, + 25.694424168161863 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.68968074047986, + 25.694424168161863 + ], + [ + -80.70962439990323, + 25.725749673583554 + ], + [ + -80.72956805932662, + 25.694424168161863 + ], + [ + -80.68968074047986, + 25.694424168161863 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.68968074047986, + 25.694424168161863 + ], + [ + -80.72956805932662, + 25.694424168161863 + ], + [ + -80.70962439990323, + 25.663098662740172 + ], + [ + -80.68968074047986, + 25.694424168161863 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.68968074047986, + 25.694424168161863 + ], + [ + -80.70962439990323, + 25.663098662740172 + ], + [ + -80.66973708105648, + 25.663098662740172 + ], + [ + -80.68968074047986, + 25.694424168161863 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.68968074047986, + 25.694424168161863 + ], + [ + -80.66973708105648, + 25.663098662740172 + ], + [ + -80.64979342163309, + 25.694424168161863 + ], + [ + -80.68968074047986, + 25.694424168161863 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.68968074047986, + 25.75707517900525 + ], + [ + -80.64979342163309, + 25.75707517900525 + ], + [ + -80.66973708105648, + 25.78840068442694 + ], + [ + -80.68968074047986, + 25.75707517900525 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.68968074047986, + 25.75707517900525 + ], + [ + -80.66973708105648, + 25.78840068442694 + ], + [ + -80.70962439990323, + 25.78840068442694 + ], + [ + -80.68968074047986, + 25.75707517900525 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.68968074047986, + 25.75707517900525 + ], + [ + -80.70962439990323, + 25.78840068442694 + ], + [ + -80.72956805932662, + 25.75707517900525 + ], + [ + -80.68968074047986, + 25.75707517900525 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.68968074047986, + 25.75707517900525 + ], + [ + -80.72956805932662, + 25.75707517900525 + ], + [ + -80.70962439990323, + 25.725749673583557 + ], + [ + -80.68968074047986, + 25.75707517900525 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.68968074047986, + 25.75707517900525 + ], + [ + -80.70962439990323, + 25.725749673583557 + ], + [ + -80.66973708105648, + 25.725749673583557 + ], + [ + -80.68968074047986, + 25.75707517900525 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.68968074047986, + 25.75707517900525 + ], + [ + -80.66973708105648, + 25.725749673583557 + ], + [ + -80.64979342163309, + 25.75707517900525 + ], + [ + -80.68968074047986, + 25.75707517900525 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.68968074047986, + 25.819726189848634 + ], + [ + -80.64979342163309, + 25.819726189848634 + ], + [ + -80.66973708105648, + 25.851051695270325 + ], + [ + -80.68968074047986, + 25.819726189848634 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.68968074047986, + 25.819726189848634 + ], + [ + -80.66973708105648, + 25.851051695270325 + ], + [ + -80.70962439990323, + 25.851051695270325 + ], + [ + -80.68968074047986, + 25.819726189848634 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.68968074047986, + 25.819726189848634 + ], + [ + -80.70962439990323, + 25.851051695270325 + ], + [ + -80.72956805932662, + 25.819726189848634 + ], + [ + -80.68968074047986, + 25.819726189848634 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.68968074047986, + 25.819726189848634 + ], + [ + -80.72956805932662, + 25.819726189848634 + ], + [ + -80.70962439990323, + 25.788400684426943 + ], + [ + -80.68968074047986, + 25.819726189848634 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.68968074047986, + 25.819726189848634 + ], + [ + -80.70962439990323, + 25.788400684426943 + ], + [ + -80.66973708105648, + 25.788400684426943 + ], + [ + -80.68968074047986, + 25.819726189848634 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.68968074047986, + 25.819726189848634 + ], + [ + -80.66973708105648, + 25.788400684426943 + ], + [ + -80.64979342163309, + 25.819726189848634 + ], + [ + -80.68968074047986, + 25.819726189848634 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.68968074047986, + 25.88237720069202 + ], + [ + -80.64979342163309, + 25.88237720069202 + ], + [ + -80.66973708105648, + 25.91370270611371 + ], + [ + -80.68968074047986, + 25.88237720069202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.68968074047986, + 25.88237720069202 + ], + [ + -80.66973708105648, + 25.91370270611371 + ], + [ + -80.70962439990323, + 25.91370270611371 + ], + [ + -80.68968074047986, + 25.88237720069202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.68968074047986, + 25.88237720069202 + ], + [ + -80.70962439990323, + 25.91370270611371 + ], + [ + -80.72956805932662, + 25.88237720069202 + ], + [ + -80.68968074047986, + 25.88237720069202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.68968074047986, + 25.88237720069202 + ], + [ + -80.72956805932662, + 25.88237720069202 + ], + [ + -80.70962439990323, + 25.85105169527033 + ], + [ + -80.68968074047986, + 25.88237720069202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.68968074047986, + 25.88237720069202 + ], + [ + -80.70962439990323, + 25.85105169527033 + ], + [ + -80.66973708105648, + 25.85105169527033 + ], + [ + -80.68968074047986, + 25.88237720069202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.68968074047986, + 25.88237720069202 + ], + [ + -80.66973708105648, + 25.85105169527033 + ], + [ + -80.64979342163309, + 25.88237720069202 + ], + [ + -80.68968074047986, + 25.88237720069202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.68968074047986, + 25.945028211535405 + ], + [ + -80.64979342163309, + 25.945028211535405 + ], + [ + -80.66973708105648, + 25.976353716957096 + ], + [ + -80.68968074047986, + 25.945028211535405 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.68968074047986, + 25.945028211535405 + ], + [ + -80.66973708105648, + 25.976353716957096 + ], + [ + -80.70962439990323, + 25.976353716957096 + ], + [ + -80.68968074047986, + 25.945028211535405 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.68968074047986, + 25.945028211535405 + ], + [ + -80.70962439990323, + 25.976353716957096 + ], + [ + -80.72956805932662, + 25.945028211535405 + ], + [ + -80.68968074047986, + 25.945028211535405 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.68968074047986, + 25.945028211535405 + ], + [ + -80.72956805932662, + 25.945028211535405 + ], + [ + -80.70962439990323, + 25.913702706113714 + ], + [ + -80.68968074047986, + 25.945028211535405 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.68968074047986, + 25.945028211535405 + ], + [ + -80.70962439990323, + 25.913702706113714 + ], + [ + -80.66973708105648, + 25.913702706113714 + ], + [ + -80.68968074047986, + 25.945028211535405 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.68968074047986, + 25.945028211535405 + ], + [ + -80.66973708105648, + 25.913702706113714 + ], + [ + -80.64979342163309, + 25.945028211535405 + ], + [ + -80.68968074047986, + 25.945028211535405 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.68968074047986, + 26.00767922237879 + ], + [ + -80.64979342163309, + 26.00767922237879 + ], + [ + -80.66973708105648, + 26.03900472780048 + ], + [ + -80.68968074047986, + 26.00767922237879 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.68968074047986, + 26.00767922237879 + ], + [ + -80.66973708105648, + 26.03900472780048 + ], + [ + -80.70962439990323, + 26.03900472780048 + ], + [ + -80.68968074047986, + 26.00767922237879 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.68968074047986, + 26.00767922237879 + ], + [ + -80.70962439990323, + 26.03900472780048 + ], + [ + -80.72956805932662, + 26.00767922237879 + ], + [ + -80.68968074047986, + 26.00767922237879 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.68968074047986, + 26.00767922237879 + ], + [ + -80.72956805932662, + 26.00767922237879 + ], + [ + -80.70962439990323, + 25.9763537169571 + ], + [ + -80.68968074047986, + 26.00767922237879 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.68968074047986, + 26.00767922237879 + ], + [ + -80.70962439990323, + 25.9763537169571 + ], + [ + -80.66973708105648, + 25.9763537169571 + ], + [ + -80.68968074047986, + 26.00767922237879 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.68968074047986, + 26.00767922237879 + ], + [ + -80.66973708105648, + 25.9763537169571 + ], + [ + -80.64979342163309, + 26.00767922237879 + ], + [ + -80.68968074047986, + 26.00767922237879 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.68968074047986, + 26.070330233222176 + ], + [ + -80.64979342163309, + 26.070330233222176 + ], + [ + -80.66973708105648, + 26.101655738643867 + ], + [ + -80.68968074047986, + 26.070330233222176 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.68968074047986, + 26.070330233222176 + ], + [ + -80.66973708105648, + 26.101655738643867 + ], + [ + -80.70962439990323, + 26.101655738643867 + ], + [ + -80.68968074047986, + 26.070330233222176 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.68968074047986, + 26.070330233222176 + ], + [ + -80.70962439990323, + 26.101655738643867 + ], + [ + -80.72956805932662, + 26.070330233222176 + ], + [ + -80.68968074047986, + 26.070330233222176 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.68968074047986, + 26.070330233222176 + ], + [ + -80.72956805932662, + 26.070330233222176 + ], + [ + -80.70962439990323, + 26.039004727800485 + ], + [ + -80.68968074047986, + 26.070330233222176 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.68968074047986, + 26.070330233222176 + ], + [ + -80.70962439990323, + 26.039004727800485 + ], + [ + -80.66973708105648, + 26.039004727800485 + ], + [ + -80.68968074047986, + 26.070330233222176 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.68968074047986, + 26.070330233222176 + ], + [ + -80.66973708105648, + 26.039004727800485 + ], + [ + -80.64979342163309, + 26.070330233222176 + ], + [ + -80.68968074047986, + 26.070330233222176 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.68968074047986, + 26.13298124406556 + ], + [ + -80.64979342163309, + 26.13298124406556 + ], + [ + -80.66973708105648, + 26.164306749487253 + ], + [ + -80.68968074047986, + 26.13298124406556 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.68968074047986, + 26.13298124406556 + ], + [ + -80.66973708105648, + 26.164306749487253 + ], + [ + -80.70962439990323, + 26.164306749487253 + ], + [ + -80.68968074047986, + 26.13298124406556 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.68968074047986, + 26.13298124406556 + ], + [ + -80.70962439990323, + 26.164306749487253 + ], + [ + -80.72956805932662, + 26.13298124406556 + ], + [ + -80.68968074047986, + 26.13298124406556 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.68968074047986, + 26.13298124406556 + ], + [ + -80.72956805932662, + 26.13298124406556 + ], + [ + -80.70962439990323, + 26.10165573864387 + ], + [ + -80.68968074047986, + 26.13298124406556 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.68968074047986, + 26.13298124406556 + ], + [ + -80.70962439990323, + 26.10165573864387 + ], + [ + -80.66973708105648, + 26.10165573864387 + ], + [ + -80.68968074047986, + 26.13298124406556 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.68968074047986, + 26.13298124406556 + ], + [ + -80.66973708105648, + 26.10165573864387 + ], + [ + -80.64979342163309, + 26.13298124406556 + ], + [ + -80.68968074047986, + 26.13298124406556 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.68968074047986, + 26.195632254908944 + ], + [ + -80.64979342163309, + 26.195632254908944 + ], + [ + -80.66973708105648, + 26.226957760330635 + ], + [ + -80.68968074047986, + 26.195632254908944 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.68968074047986, + 26.195632254908944 + ], + [ + -80.66973708105648, + 26.226957760330635 + ], + [ + -80.70962439990323, + 26.226957760330635 + ], + [ + -80.68968074047986, + 26.195632254908944 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.68968074047986, + 26.195632254908944 + ], + [ + -80.70962439990323, + 26.226957760330635 + ], + [ + -80.72956805932662, + 26.195632254908944 + ], + [ + -80.68968074047986, + 26.195632254908944 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.68968074047986, + 26.195632254908944 + ], + [ + -80.72956805932662, + 26.195632254908944 + ], + [ + -80.70962439990323, + 26.164306749487253 + ], + [ + -80.68968074047986, + 26.195632254908944 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.68968074047986, + 26.195632254908944 + ], + [ + -80.70962439990323, + 26.164306749487253 + ], + [ + -80.66973708105648, + 26.164306749487253 + ], + [ + -80.68968074047986, + 26.195632254908944 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.68968074047986, + 26.195632254908944 + ], + [ + -80.66973708105648, + 26.164306749487253 + ], + [ + -80.64979342163309, + 26.195632254908944 + ], + [ + -80.68968074047986, + 26.195632254908944 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.68968074047986, + 26.258283265752333 + ], + [ + -80.64979342163309, + 26.258283265752333 + ], + [ + -80.66973708105648, + 26.289608771174024 + ], + [ + -80.68968074047986, + 26.258283265752333 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.68968074047986, + 26.258283265752333 + ], + [ + -80.66973708105648, + 26.289608771174024 + ], + [ + -80.70962439990323, + 26.289608771174024 + ], + [ + -80.68968074047986, + 26.258283265752333 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.68968074047986, + 26.258283265752333 + ], + [ + -80.70962439990323, + 26.289608771174024 + ], + [ + -80.72956805932662, + 26.258283265752333 + ], + [ + -80.68968074047986, + 26.258283265752333 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.68968074047986, + 26.258283265752333 + ], + [ + -80.72956805932662, + 26.258283265752333 + ], + [ + -80.70962439990323, + 26.22695776033064 + ], + [ + -80.68968074047986, + 26.258283265752333 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.68968074047986, + 26.258283265752333 + ], + [ + -80.70962439990323, + 26.22695776033064 + ], + [ + -80.66973708105648, + 26.22695776033064 + ], + [ + -80.68968074047986, + 26.258283265752333 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.68968074047986, + 26.258283265752333 + ], + [ + -80.66973708105648, + 26.22695776033064 + ], + [ + -80.64979342163309, + 26.258283265752333 + ], + [ + -80.68968074047986, + 26.258283265752333 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.68968074047986, + 26.320934276595715 + ], + [ + -80.64979342163309, + 26.320934276595715 + ], + [ + -80.66973708105648, + 26.352259782017406 + ], + [ + -80.68968074047986, + 26.320934276595715 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.68968074047986, + 26.320934276595715 + ], + [ + -80.66973708105648, + 26.352259782017406 + ], + [ + -80.70962439990323, + 26.352259782017406 + ], + [ + -80.68968074047986, + 26.320934276595715 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.68968074047986, + 26.320934276595715 + ], + [ + -80.70962439990323, + 26.352259782017406 + ], + [ + -80.72956805932662, + 26.320934276595715 + ], + [ + -80.68968074047986, + 26.320934276595715 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.68968074047986, + 26.320934276595715 + ], + [ + -80.72956805932662, + 26.320934276595715 + ], + [ + -80.70962439990323, + 26.289608771174024 + ], + [ + -80.68968074047986, + 26.320934276595715 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.68968074047986, + 26.320934276595715 + ], + [ + -80.70962439990323, + 26.289608771174024 + ], + [ + -80.66973708105648, + 26.289608771174024 + ], + [ + -80.68968074047986, + 26.320934276595715 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.68968074047986, + 26.320934276595715 + ], + [ + -80.66973708105648, + 26.289608771174024 + ], + [ + -80.64979342163309, + 26.320934276595715 + ], + [ + -80.68968074047986, + 26.320934276595715 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.68968074047986, + 26.3835852874391 + ], + [ + -80.64979342163309, + 26.3835852874391 + ], + [ + -80.66973708105648, + 26.41491079286079 + ], + [ + -80.68968074047986, + 26.3835852874391 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.68968074047986, + 26.3835852874391 + ], + [ + -80.66973708105648, + 26.41491079286079 + ], + [ + -80.70962439990323, + 26.41491079286079 + ], + [ + -80.68968074047986, + 26.3835852874391 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.68968074047986, + 26.3835852874391 + ], + [ + -80.70962439990323, + 26.41491079286079 + ], + [ + -80.72956805932662, + 26.3835852874391 + ], + [ + -80.68968074047986, + 26.3835852874391 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.68968074047986, + 26.3835852874391 + ], + [ + -80.72956805932662, + 26.3835852874391 + ], + [ + -80.70962439990323, + 26.35225978201741 + ], + [ + -80.68968074047986, + 26.3835852874391 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.68968074047986, + 26.3835852874391 + ], + [ + -80.70962439990323, + 26.35225978201741 + ], + [ + -80.66973708105648, + 26.35225978201741 + ], + [ + -80.68968074047986, + 26.3835852874391 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.68968074047986, + 26.3835852874391 + ], + [ + -80.66973708105648, + 26.35225978201741 + ], + [ + -80.64979342163309, + 26.3835852874391 + ], + [ + -80.68968074047986, + 26.3835852874391 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.68968074047986, + 26.446236298282486 + ], + [ + -80.64979342163309, + 26.446236298282486 + ], + [ + -80.66973708105648, + 26.477561803704177 + ], + [ + -80.68968074047986, + 26.446236298282486 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.68968074047986, + 26.446236298282486 + ], + [ + -80.66973708105648, + 26.477561803704177 + ], + [ + -80.70962439990323, + 26.477561803704177 + ], + [ + -80.68968074047986, + 26.446236298282486 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.68968074047986, + 26.446236298282486 + ], + [ + -80.70962439990323, + 26.477561803704177 + ], + [ + -80.72956805932662, + 26.446236298282486 + ], + [ + -80.68968074047986, + 26.446236298282486 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.68968074047986, + 26.446236298282486 + ], + [ + -80.72956805932662, + 26.446236298282486 + ], + [ + -80.70962439990323, + 26.414910792860795 + ], + [ + -80.68968074047986, + 26.446236298282486 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.68968074047986, + 26.446236298282486 + ], + [ + -80.70962439990323, + 26.414910792860795 + ], + [ + -80.66973708105648, + 26.414910792860795 + ], + [ + -80.68968074047986, + 26.446236298282486 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.68968074047986, + 26.446236298282486 + ], + [ + -80.66973708105648, + 26.414910792860795 + ], + [ + -80.64979342163309, + 26.446236298282486 + ], + [ + -80.68968074047986, + 26.446236298282486 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.6298497622097, + 24.911286532619545 + ], + [ + -80.58996244336294, + 24.911286532619545 + ], + [ + -80.60990610278633, + 24.942612038041236 + ], + [ + -80.6298497622097, + 24.911286532619545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.6298497622097, + 24.911286532619545 + ], + [ + -80.60990610278633, + 24.942612038041236 + ], + [ + -80.64979342163308, + 24.942612038041236 + ], + [ + -80.6298497622097, + 24.911286532619545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.6298497622097, + 24.911286532619545 + ], + [ + -80.64979342163308, + 24.942612038041236 + ], + [ + -80.66973708105647, + 24.911286532619545 + ], + [ + -80.6298497622097, + 24.911286532619545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.6298497622097, + 24.911286532619545 + ], + [ + -80.66973708105647, + 24.911286532619545 + ], + [ + -80.64979342163308, + 24.879961027197854 + ], + [ + -80.6298497622097, + 24.911286532619545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.6298497622097, + 24.911286532619545 + ], + [ + -80.64979342163308, + 24.879961027197854 + ], + [ + -80.60990610278633, + 24.879961027197854 + ], + [ + -80.6298497622097, + 24.911286532619545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.6298497622097, + 24.911286532619545 + ], + [ + -80.60990610278633, + 24.879961027197854 + ], + [ + -80.58996244336294, + 24.911286532619545 + ], + [ + -80.6298497622097, + 24.911286532619545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.6298497622097, + 24.97393754346293 + ], + [ + -80.58996244336294, + 24.97393754346293 + ], + [ + -80.60990610278633, + 25.005263048884622 + ], + [ + -80.6298497622097, + 24.97393754346293 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.6298497622097, + 24.97393754346293 + ], + [ + -80.60990610278633, + 25.005263048884622 + ], + [ + -80.64979342163308, + 25.005263048884622 + ], + [ + -80.6298497622097, + 24.97393754346293 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.6298497622097, + 24.97393754346293 + ], + [ + -80.64979342163308, + 25.005263048884622 + ], + [ + -80.66973708105647, + 24.97393754346293 + ], + [ + -80.6298497622097, + 24.97393754346293 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.6298497622097, + 24.97393754346293 + ], + [ + -80.66973708105647, + 24.97393754346293 + ], + [ + -80.64979342163308, + 24.94261203804124 + ], + [ + -80.6298497622097, + 24.97393754346293 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.6298497622097, + 24.97393754346293 + ], + [ + -80.64979342163308, + 24.94261203804124 + ], + [ + -80.60990610278633, + 24.94261203804124 + ], + [ + -80.6298497622097, + 24.97393754346293 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.6298497622097, + 24.97393754346293 + ], + [ + -80.60990610278633, + 24.94261203804124 + ], + [ + -80.58996244336294, + 24.97393754346293 + ], + [ + -80.6298497622097, + 24.97393754346293 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.6298497622097, + 25.036588554306316 + ], + [ + -80.58996244336294, + 25.036588554306316 + ], + [ + -80.60990610278633, + 25.067914059728007 + ], + [ + -80.6298497622097, + 25.036588554306316 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.6298497622097, + 25.036588554306316 + ], + [ + -80.60990610278633, + 25.067914059728007 + ], + [ + -80.64979342163308, + 25.067914059728007 + ], + [ + -80.6298497622097, + 25.036588554306316 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.6298497622097, + 25.036588554306316 + ], + [ + -80.64979342163308, + 25.067914059728007 + ], + [ + -80.66973708105647, + 25.036588554306316 + ], + [ + -80.6298497622097, + 25.036588554306316 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.6298497622097, + 25.036588554306316 + ], + [ + -80.66973708105647, + 25.036588554306316 + ], + [ + -80.64979342163308, + 25.005263048884625 + ], + [ + -80.6298497622097, + 25.036588554306316 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.6298497622097, + 25.036588554306316 + ], + [ + -80.64979342163308, + 25.005263048884625 + ], + [ + -80.60990610278633, + 25.005263048884625 + ], + [ + -80.6298497622097, + 25.036588554306316 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.6298497622097, + 25.036588554306316 + ], + [ + -80.60990610278633, + 25.005263048884625 + ], + [ + -80.58996244336294, + 25.036588554306316 + ], + [ + -80.6298497622097, + 25.036588554306316 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.6298497622097, + 25.099239565149702 + ], + [ + -80.58996244336294, + 25.099239565149702 + ], + [ + -80.60990610278633, + 25.130565070571393 + ], + [ + -80.6298497622097, + 25.099239565149702 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.6298497622097, + 25.099239565149702 + ], + [ + -80.60990610278633, + 25.130565070571393 + ], + [ + -80.64979342163308, + 25.130565070571393 + ], + [ + -80.6298497622097, + 25.099239565149702 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.6298497622097, + 25.099239565149702 + ], + [ + -80.64979342163308, + 25.130565070571393 + ], + [ + -80.66973708105647, + 25.099239565149702 + ], + [ + -80.6298497622097, + 25.099239565149702 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.6298497622097, + 25.099239565149702 + ], + [ + -80.66973708105647, + 25.099239565149702 + ], + [ + -80.64979342163308, + 25.06791405972801 + ], + [ + -80.6298497622097, + 25.099239565149702 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.6298497622097, + 25.099239565149702 + ], + [ + -80.64979342163308, + 25.06791405972801 + ], + [ + -80.60990610278633, + 25.06791405972801 + ], + [ + -80.6298497622097, + 25.099239565149702 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.6298497622097, + 25.099239565149702 + ], + [ + -80.60990610278633, + 25.06791405972801 + ], + [ + -80.58996244336294, + 25.099239565149702 + ], + [ + -80.6298497622097, + 25.099239565149702 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.6298497622097, + 25.161890575993088 + ], + [ + -80.58996244336294, + 25.161890575993088 + ], + [ + -80.60990610278633, + 25.19321608141478 + ], + [ + -80.6298497622097, + 25.161890575993088 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.6298497622097, + 25.161890575993088 + ], + [ + -80.60990610278633, + 25.19321608141478 + ], + [ + -80.64979342163308, + 25.19321608141478 + ], + [ + -80.6298497622097, + 25.161890575993088 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.6298497622097, + 25.161890575993088 + ], + [ + -80.64979342163308, + 25.19321608141478 + ], + [ + -80.66973708105647, + 25.161890575993088 + ], + [ + -80.6298497622097, + 25.161890575993088 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.6298497622097, + 25.161890575993088 + ], + [ + -80.66973708105647, + 25.161890575993088 + ], + [ + -80.64979342163308, + 25.130565070571397 + ], + [ + -80.6298497622097, + 25.161890575993088 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.6298497622097, + 25.161890575993088 + ], + [ + -80.64979342163308, + 25.130565070571397 + ], + [ + -80.60990610278633, + 25.130565070571397 + ], + [ + -80.6298497622097, + 25.161890575993088 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.6298497622097, + 25.161890575993088 + ], + [ + -80.60990610278633, + 25.130565070571397 + ], + [ + -80.58996244336294, + 25.161890575993088 + ], + [ + -80.6298497622097, + 25.161890575993088 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.6298497622097, + 25.224541586836473 + ], + [ + -80.58996244336294, + 25.224541586836473 + ], + [ + -80.60990610278633, + 25.255867092258164 + ], + [ + -80.6298497622097, + 25.224541586836473 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.6298497622097, + 25.224541586836473 + ], + [ + -80.60990610278633, + 25.255867092258164 + ], + [ + -80.64979342163308, + 25.255867092258164 + ], + [ + -80.6298497622097, + 25.224541586836473 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.6298497622097, + 25.224541586836473 + ], + [ + -80.64979342163308, + 25.255867092258164 + ], + [ + -80.66973708105647, + 25.224541586836473 + ], + [ + -80.6298497622097, + 25.224541586836473 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.6298497622097, + 25.224541586836473 + ], + [ + -80.66973708105647, + 25.224541586836473 + ], + [ + -80.64979342163308, + 25.193216081414782 + ], + [ + -80.6298497622097, + 25.224541586836473 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.6298497622097, + 25.224541586836473 + ], + [ + -80.64979342163308, + 25.193216081414782 + ], + [ + -80.60990610278633, + 25.193216081414782 + ], + [ + -80.6298497622097, + 25.224541586836473 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.6298497622097, + 25.224541586836473 + ], + [ + -80.60990610278633, + 25.193216081414782 + ], + [ + -80.58996244336294, + 25.224541586836473 + ], + [ + -80.6298497622097, + 25.224541586836473 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.6298497622097, + 25.28719259767986 + ], + [ + -80.58996244336294, + 25.28719259767986 + ], + [ + -80.60990610278633, + 25.31851810310155 + ], + [ + -80.6298497622097, + 25.28719259767986 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.6298497622097, + 25.28719259767986 + ], + [ + -80.60990610278633, + 25.31851810310155 + ], + [ + -80.64979342163308, + 25.31851810310155 + ], + [ + -80.6298497622097, + 25.28719259767986 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.6298497622097, + 25.28719259767986 + ], + [ + -80.64979342163308, + 25.31851810310155 + ], + [ + -80.66973708105647, + 25.28719259767986 + ], + [ + -80.6298497622097, + 25.28719259767986 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.6298497622097, + 25.28719259767986 + ], + [ + -80.66973708105647, + 25.28719259767986 + ], + [ + -80.64979342163308, + 25.255867092258168 + ], + [ + -80.6298497622097, + 25.28719259767986 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.6298497622097, + 25.28719259767986 + ], + [ + -80.64979342163308, + 25.255867092258168 + ], + [ + -80.60990610278633, + 25.255867092258168 + ], + [ + -80.6298497622097, + 25.28719259767986 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.6298497622097, + 25.28719259767986 + ], + [ + -80.60990610278633, + 25.255867092258168 + ], + [ + -80.58996244336294, + 25.28719259767986 + ], + [ + -80.6298497622097, + 25.28719259767986 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.6298497622097, + 25.349843608523244 + ], + [ + -80.58996244336294, + 25.349843608523244 + ], + [ + -80.60990610278633, + 25.381169113944935 + ], + [ + -80.6298497622097, + 25.349843608523244 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.6298497622097, + 25.349843608523244 + ], + [ + -80.60990610278633, + 25.381169113944935 + ], + [ + -80.64979342163308, + 25.381169113944935 + ], + [ + -80.6298497622097, + 25.349843608523244 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.6298497622097, + 25.349843608523244 + ], + [ + -80.64979342163308, + 25.381169113944935 + ], + [ + -80.66973708105647, + 25.349843608523244 + ], + [ + -80.6298497622097, + 25.349843608523244 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.6298497622097, + 25.349843608523244 + ], + [ + -80.66973708105647, + 25.349843608523244 + ], + [ + -80.64979342163308, + 25.318518103101553 + ], + [ + -80.6298497622097, + 25.349843608523244 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.6298497622097, + 25.349843608523244 + ], + [ + -80.64979342163308, + 25.318518103101553 + ], + [ + -80.60990610278633, + 25.318518103101553 + ], + [ + -80.6298497622097, + 25.349843608523244 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.6298497622097, + 25.349843608523244 + ], + [ + -80.60990610278633, + 25.318518103101553 + ], + [ + -80.58996244336294, + 25.349843608523244 + ], + [ + -80.6298497622097, + 25.349843608523244 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.6298497622097, + 25.41249461936663 + ], + [ + -80.58996244336294, + 25.41249461936663 + ], + [ + -80.60990610278633, + 25.44382012478832 + ], + [ + -80.6298497622097, + 25.41249461936663 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.6298497622097, + 25.41249461936663 + ], + [ + -80.60990610278633, + 25.44382012478832 + ], + [ + -80.64979342163308, + 25.44382012478832 + ], + [ + -80.6298497622097, + 25.41249461936663 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.6298497622097, + 25.41249461936663 + ], + [ + -80.64979342163308, + 25.44382012478832 + ], + [ + -80.66973708105647, + 25.41249461936663 + ], + [ + -80.6298497622097, + 25.41249461936663 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.6298497622097, + 25.41249461936663 + ], + [ + -80.66973708105647, + 25.41249461936663 + ], + [ + -80.64979342163308, + 25.38116911394494 + ], + [ + -80.6298497622097, + 25.41249461936663 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.6298497622097, + 25.41249461936663 + ], + [ + -80.64979342163308, + 25.38116911394494 + ], + [ + -80.60990610278633, + 25.38116911394494 + ], + [ + -80.6298497622097, + 25.41249461936663 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.6298497622097, + 25.41249461936663 + ], + [ + -80.60990610278633, + 25.38116911394494 + ], + [ + -80.58996244336294, + 25.41249461936663 + ], + [ + -80.6298497622097, + 25.41249461936663 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.6298497622097, + 25.475145630210015 + ], + [ + -80.58996244336294, + 25.475145630210015 + ], + [ + -80.60990610278633, + 25.506471135631706 + ], + [ + -80.6298497622097, + 25.475145630210015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.6298497622097, + 25.475145630210015 + ], + [ + -80.60990610278633, + 25.506471135631706 + ], + [ + -80.64979342163308, + 25.506471135631706 + ], + [ + -80.6298497622097, + 25.475145630210015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.6298497622097, + 25.475145630210015 + ], + [ + -80.64979342163308, + 25.506471135631706 + ], + [ + -80.66973708105647, + 25.475145630210015 + ], + [ + -80.6298497622097, + 25.475145630210015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.6298497622097, + 25.475145630210015 + ], + [ + -80.66973708105647, + 25.475145630210015 + ], + [ + -80.64979342163308, + 25.443820124788324 + ], + [ + -80.6298497622097, + 25.475145630210015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.6298497622097, + 25.475145630210015 + ], + [ + -80.64979342163308, + 25.443820124788324 + ], + [ + -80.60990610278633, + 25.443820124788324 + ], + [ + -80.6298497622097, + 25.475145630210015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.6298497622097, + 25.475145630210015 + ], + [ + -80.60990610278633, + 25.443820124788324 + ], + [ + -80.58996244336294, + 25.475145630210015 + ], + [ + -80.6298497622097, + 25.475145630210015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.6298497622097, + 25.5377966410534 + ], + [ + -80.58996244336294, + 25.5377966410534 + ], + [ + -80.60990610278633, + 25.56912214647509 + ], + [ + -80.6298497622097, + 25.5377966410534 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.6298497622097, + 25.5377966410534 + ], + [ + -80.60990610278633, + 25.56912214647509 + ], + [ + -80.64979342163308, + 25.56912214647509 + ], + [ + -80.6298497622097, + 25.5377966410534 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.6298497622097, + 25.5377966410534 + ], + [ + -80.64979342163308, + 25.56912214647509 + ], + [ + -80.66973708105647, + 25.5377966410534 + ], + [ + -80.6298497622097, + 25.5377966410534 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.6298497622097, + 25.5377966410534 + ], + [ + -80.66973708105647, + 25.5377966410534 + ], + [ + -80.64979342163308, + 25.50647113563171 + ], + [ + -80.6298497622097, + 25.5377966410534 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.6298497622097, + 25.5377966410534 + ], + [ + -80.64979342163308, + 25.50647113563171 + ], + [ + -80.60990610278633, + 25.50647113563171 + ], + [ + -80.6298497622097, + 25.5377966410534 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.6298497622097, + 25.5377966410534 + ], + [ + -80.60990610278633, + 25.50647113563171 + ], + [ + -80.58996244336294, + 25.5377966410534 + ], + [ + -80.6298497622097, + 25.5377966410534 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.6298497622097, + 25.600447651896786 + ], + [ + -80.58996244336294, + 25.600447651896786 + ], + [ + -80.60990610278633, + 25.631773157318477 + ], + [ + -80.6298497622097, + 25.600447651896786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.6298497622097, + 25.600447651896786 + ], + [ + -80.60990610278633, + 25.631773157318477 + ], + [ + -80.64979342163308, + 25.631773157318477 + ], + [ + -80.6298497622097, + 25.600447651896786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.6298497622097, + 25.600447651896786 + ], + [ + -80.64979342163308, + 25.631773157318477 + ], + [ + -80.66973708105647, + 25.600447651896786 + ], + [ + -80.6298497622097, + 25.600447651896786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.6298497622097, + 25.600447651896786 + ], + [ + -80.66973708105647, + 25.600447651896786 + ], + [ + -80.64979342163308, + 25.569122146475095 + ], + [ + -80.6298497622097, + 25.600447651896786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.6298497622097, + 25.600447651896786 + ], + [ + -80.64979342163308, + 25.569122146475095 + ], + [ + -80.60990610278633, + 25.569122146475095 + ], + [ + -80.6298497622097, + 25.600447651896786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.6298497622097, + 25.600447651896786 + ], + [ + -80.60990610278633, + 25.569122146475095 + ], + [ + -80.58996244336294, + 25.600447651896786 + ], + [ + -80.6298497622097, + 25.600447651896786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.6298497622097, + 25.663098662740172 + ], + [ + -80.58996244336294, + 25.663098662740172 + ], + [ + -80.60990610278633, + 25.694424168161863 + ], + [ + -80.6298497622097, + 25.663098662740172 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.6298497622097, + 25.663098662740172 + ], + [ + -80.60990610278633, + 25.694424168161863 + ], + [ + -80.64979342163308, + 25.694424168161863 + ], + [ + -80.6298497622097, + 25.663098662740172 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.6298497622097, + 25.663098662740172 + ], + [ + -80.64979342163308, + 25.694424168161863 + ], + [ + -80.66973708105647, + 25.663098662740172 + ], + [ + -80.6298497622097, + 25.663098662740172 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.6298497622097, + 25.663098662740172 + ], + [ + -80.66973708105647, + 25.663098662740172 + ], + [ + -80.64979342163308, + 25.63177315731848 + ], + [ + -80.6298497622097, + 25.663098662740172 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.6298497622097, + 25.663098662740172 + ], + [ + -80.64979342163308, + 25.63177315731848 + ], + [ + -80.60990610278633, + 25.63177315731848 + ], + [ + -80.6298497622097, + 25.663098662740172 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.6298497622097, + 25.663098662740172 + ], + [ + -80.60990610278633, + 25.63177315731848 + ], + [ + -80.58996244336294, + 25.663098662740172 + ], + [ + -80.6298497622097, + 25.663098662740172 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.6298497622097, + 25.725749673583557 + ], + [ + -80.58996244336294, + 25.725749673583557 + ], + [ + -80.60990610278633, + 25.75707517900525 + ], + [ + -80.6298497622097, + 25.725749673583557 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.6298497622097, + 25.725749673583557 + ], + [ + -80.60990610278633, + 25.75707517900525 + ], + [ + -80.64979342163308, + 25.75707517900525 + ], + [ + -80.6298497622097, + 25.725749673583557 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.6298497622097, + 25.725749673583557 + ], + [ + -80.64979342163308, + 25.75707517900525 + ], + [ + -80.66973708105647, + 25.725749673583557 + ], + [ + -80.6298497622097, + 25.725749673583557 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.6298497622097, + 25.725749673583557 + ], + [ + -80.66973708105647, + 25.725749673583557 + ], + [ + -80.64979342163308, + 25.694424168161866 + ], + [ + -80.6298497622097, + 25.725749673583557 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.6298497622097, + 25.725749673583557 + ], + [ + -80.64979342163308, + 25.694424168161866 + ], + [ + -80.60990610278633, + 25.694424168161866 + ], + [ + -80.6298497622097, + 25.725749673583557 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.6298497622097, + 25.725749673583557 + ], + [ + -80.60990610278633, + 25.694424168161866 + ], + [ + -80.58996244336294, + 25.725749673583557 + ], + [ + -80.6298497622097, + 25.725749673583557 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.6298497622097, + 25.788400684426943 + ], + [ + -80.58996244336294, + 25.788400684426943 + ], + [ + -80.60990610278633, + 25.819726189848634 + ], + [ + -80.6298497622097, + 25.788400684426943 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.6298497622097, + 25.788400684426943 + ], + [ + -80.60990610278633, + 25.819726189848634 + ], + [ + -80.64979342163308, + 25.819726189848634 + ], + [ + -80.6298497622097, + 25.788400684426943 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.6298497622097, + 25.788400684426943 + ], + [ + -80.64979342163308, + 25.819726189848634 + ], + [ + -80.66973708105647, + 25.788400684426943 + ], + [ + -80.6298497622097, + 25.788400684426943 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.6298497622097, + 25.788400684426943 + ], + [ + -80.66973708105647, + 25.788400684426943 + ], + [ + -80.64979342163308, + 25.757075179005252 + ], + [ + -80.6298497622097, + 25.788400684426943 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.6298497622097, + 25.788400684426943 + ], + [ + -80.64979342163308, + 25.757075179005252 + ], + [ + -80.60990610278633, + 25.757075179005252 + ], + [ + -80.6298497622097, + 25.788400684426943 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.6298497622097, + 25.788400684426943 + ], + [ + -80.60990610278633, + 25.757075179005252 + ], + [ + -80.58996244336294, + 25.788400684426943 + ], + [ + -80.6298497622097, + 25.788400684426943 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.6298497622097, + 25.85105169527033 + ], + [ + -80.58996244336294, + 25.85105169527033 + ], + [ + -80.60990610278633, + 25.88237720069202 + ], + [ + -80.6298497622097, + 25.85105169527033 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.6298497622097, + 25.85105169527033 + ], + [ + -80.60990610278633, + 25.88237720069202 + ], + [ + -80.64979342163308, + 25.88237720069202 + ], + [ + -80.6298497622097, + 25.85105169527033 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.6298497622097, + 25.85105169527033 + ], + [ + -80.64979342163308, + 25.88237720069202 + ], + [ + -80.66973708105647, + 25.85105169527033 + ], + [ + -80.6298497622097, + 25.85105169527033 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.6298497622097, + 25.85105169527033 + ], + [ + -80.66973708105647, + 25.85105169527033 + ], + [ + -80.64979342163308, + 25.819726189848637 + ], + [ + -80.6298497622097, + 25.85105169527033 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.6298497622097, + 25.85105169527033 + ], + [ + -80.64979342163308, + 25.819726189848637 + ], + [ + -80.60990610278633, + 25.819726189848637 + ], + [ + -80.6298497622097, + 25.85105169527033 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.6298497622097, + 25.85105169527033 + ], + [ + -80.60990610278633, + 25.819726189848637 + ], + [ + -80.58996244336294, + 25.85105169527033 + ], + [ + -80.6298497622097, + 25.85105169527033 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.6298497622097, + 25.913702706113714 + ], + [ + -80.58996244336294, + 25.913702706113714 + ], + [ + -80.60990610278633, + 25.945028211535405 + ], + [ + -80.6298497622097, + 25.913702706113714 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.6298497622097, + 25.913702706113714 + ], + [ + -80.60990610278633, + 25.945028211535405 + ], + [ + -80.64979342163308, + 25.945028211535405 + ], + [ + -80.6298497622097, + 25.913702706113714 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.6298497622097, + 25.913702706113714 + ], + [ + -80.64979342163308, + 25.945028211535405 + ], + [ + -80.66973708105647, + 25.913702706113714 + ], + [ + -80.6298497622097, + 25.913702706113714 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.6298497622097, + 25.913702706113714 + ], + [ + -80.66973708105647, + 25.913702706113714 + ], + [ + -80.64979342163308, + 25.882377200692023 + ], + [ + -80.6298497622097, + 25.913702706113714 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.6298497622097, + 25.913702706113714 + ], + [ + -80.64979342163308, + 25.882377200692023 + ], + [ + -80.60990610278633, + 25.882377200692023 + ], + [ + -80.6298497622097, + 25.913702706113714 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.6298497622097, + 25.913702706113714 + ], + [ + -80.60990610278633, + 25.882377200692023 + ], + [ + -80.58996244336294, + 25.913702706113714 + ], + [ + -80.6298497622097, + 25.913702706113714 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.6298497622097, + 25.9763537169571 + ], + [ + -80.58996244336294, + 25.9763537169571 + ], + [ + -80.60990610278633, + 26.00767922237879 + ], + [ + -80.6298497622097, + 25.9763537169571 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.6298497622097, + 25.9763537169571 + ], + [ + -80.60990610278633, + 26.00767922237879 + ], + [ + -80.64979342163308, + 26.00767922237879 + ], + [ + -80.6298497622097, + 25.9763537169571 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.6298497622097, + 25.9763537169571 + ], + [ + -80.64979342163308, + 26.00767922237879 + ], + [ + -80.66973708105647, + 25.9763537169571 + ], + [ + -80.6298497622097, + 25.9763537169571 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.6298497622097, + 25.9763537169571 + ], + [ + -80.66973708105647, + 25.9763537169571 + ], + [ + -80.64979342163308, + 25.94502821153541 + ], + [ + -80.6298497622097, + 25.9763537169571 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.6298497622097, + 25.9763537169571 + ], + [ + -80.64979342163308, + 25.94502821153541 + ], + [ + -80.60990610278633, + 25.94502821153541 + ], + [ + -80.6298497622097, + 25.9763537169571 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.6298497622097, + 25.9763537169571 + ], + [ + -80.60990610278633, + 25.94502821153541 + ], + [ + -80.58996244336294, + 25.9763537169571 + ], + [ + -80.6298497622097, + 25.9763537169571 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.6298497622097, + 26.039004727800485 + ], + [ + -80.58996244336294, + 26.039004727800485 + ], + [ + -80.60990610278633, + 26.070330233222176 + ], + [ + -80.6298497622097, + 26.039004727800485 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.6298497622097, + 26.039004727800485 + ], + [ + -80.60990610278633, + 26.070330233222176 + ], + [ + -80.64979342163308, + 26.070330233222176 + ], + [ + -80.6298497622097, + 26.039004727800485 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.6298497622097, + 26.039004727800485 + ], + [ + -80.64979342163308, + 26.070330233222176 + ], + [ + -80.66973708105647, + 26.039004727800485 + ], + [ + -80.6298497622097, + 26.039004727800485 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.6298497622097, + 26.039004727800485 + ], + [ + -80.66973708105647, + 26.039004727800485 + ], + [ + -80.64979342163308, + 26.007679222378794 + ], + [ + -80.6298497622097, + 26.039004727800485 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.6298497622097, + 26.039004727800485 + ], + [ + -80.64979342163308, + 26.007679222378794 + ], + [ + -80.60990610278633, + 26.007679222378794 + ], + [ + -80.6298497622097, + 26.039004727800485 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.6298497622097, + 26.039004727800485 + ], + [ + -80.60990610278633, + 26.007679222378794 + ], + [ + -80.58996244336294, + 26.039004727800485 + ], + [ + -80.6298497622097, + 26.039004727800485 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.6298497622097, + 26.10165573864387 + ], + [ + -80.58996244336294, + 26.10165573864387 + ], + [ + -80.60990610278633, + 26.13298124406556 + ], + [ + -80.6298497622097, + 26.10165573864387 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.6298497622097, + 26.10165573864387 + ], + [ + -80.60990610278633, + 26.13298124406556 + ], + [ + -80.64979342163308, + 26.13298124406556 + ], + [ + -80.6298497622097, + 26.10165573864387 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.6298497622097, + 26.10165573864387 + ], + [ + -80.64979342163308, + 26.13298124406556 + ], + [ + -80.66973708105647, + 26.10165573864387 + ], + [ + -80.6298497622097, + 26.10165573864387 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.6298497622097, + 26.10165573864387 + ], + [ + -80.66973708105647, + 26.10165573864387 + ], + [ + -80.64979342163308, + 26.07033023322218 + ], + [ + -80.6298497622097, + 26.10165573864387 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.6298497622097, + 26.10165573864387 + ], + [ + -80.64979342163308, + 26.07033023322218 + ], + [ + -80.60990610278633, + 26.07033023322218 + ], + [ + -80.6298497622097, + 26.10165573864387 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.6298497622097, + 26.10165573864387 + ], + [ + -80.60990610278633, + 26.07033023322218 + ], + [ + -80.58996244336294, + 26.10165573864387 + ], + [ + -80.6298497622097, + 26.10165573864387 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.6298497622097, + 26.164306749487253 + ], + [ + -80.58996244336294, + 26.164306749487253 + ], + [ + -80.60990610278633, + 26.195632254908944 + ], + [ + -80.6298497622097, + 26.164306749487253 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.6298497622097, + 26.164306749487253 + ], + [ + -80.60990610278633, + 26.195632254908944 + ], + [ + -80.64979342163308, + 26.195632254908944 + ], + [ + -80.6298497622097, + 26.164306749487253 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.6298497622097, + 26.164306749487253 + ], + [ + -80.64979342163308, + 26.195632254908944 + ], + [ + -80.66973708105647, + 26.164306749487253 + ], + [ + -80.6298497622097, + 26.164306749487253 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.6298497622097, + 26.164306749487253 + ], + [ + -80.66973708105647, + 26.164306749487253 + ], + [ + -80.64979342163308, + 26.13298124406556 + ], + [ + -80.6298497622097, + 26.164306749487253 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.6298497622097, + 26.164306749487253 + ], + [ + -80.64979342163308, + 26.13298124406556 + ], + [ + -80.60990610278633, + 26.13298124406556 + ], + [ + -80.6298497622097, + 26.164306749487253 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.6298497622097, + 26.164306749487253 + ], + [ + -80.60990610278633, + 26.13298124406556 + ], + [ + -80.58996244336294, + 26.164306749487253 + ], + [ + -80.6298497622097, + 26.164306749487253 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.6298497622097, + 26.22695776033064 + ], + [ + -80.58996244336294, + 26.22695776033064 + ], + [ + -80.60990610278633, + 26.258283265752333 + ], + [ + -80.6298497622097, + 26.22695776033064 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.6298497622097, + 26.22695776033064 + ], + [ + -80.60990610278633, + 26.258283265752333 + ], + [ + -80.64979342163308, + 26.258283265752333 + ], + [ + -80.6298497622097, + 26.22695776033064 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.6298497622097, + 26.22695776033064 + ], + [ + -80.64979342163308, + 26.258283265752333 + ], + [ + -80.66973708105647, + 26.22695776033064 + ], + [ + -80.6298497622097, + 26.22695776033064 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.6298497622097, + 26.22695776033064 + ], + [ + -80.66973708105647, + 26.22695776033064 + ], + [ + -80.64979342163308, + 26.19563225490895 + ], + [ + -80.6298497622097, + 26.22695776033064 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.6298497622097, + 26.22695776033064 + ], + [ + -80.64979342163308, + 26.19563225490895 + ], + [ + -80.60990610278633, + 26.19563225490895 + ], + [ + -80.6298497622097, + 26.22695776033064 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.6298497622097, + 26.22695776033064 + ], + [ + -80.60990610278633, + 26.19563225490895 + ], + [ + -80.58996244336294, + 26.22695776033064 + ], + [ + -80.6298497622097, + 26.22695776033064 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.6298497622097, + 26.289608771174024 + ], + [ + -80.58996244336294, + 26.289608771174024 + ], + [ + -80.60990610278633, + 26.320934276595715 + ], + [ + -80.6298497622097, + 26.289608771174024 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.6298497622097, + 26.289608771174024 + ], + [ + -80.60990610278633, + 26.320934276595715 + ], + [ + -80.64979342163308, + 26.320934276595715 + ], + [ + -80.6298497622097, + 26.289608771174024 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.6298497622097, + 26.289608771174024 + ], + [ + -80.64979342163308, + 26.320934276595715 + ], + [ + -80.66973708105647, + 26.289608771174024 + ], + [ + -80.6298497622097, + 26.289608771174024 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.6298497622097, + 26.289608771174024 + ], + [ + -80.66973708105647, + 26.289608771174024 + ], + [ + -80.64979342163308, + 26.258283265752333 + ], + [ + -80.6298497622097, + 26.289608771174024 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.6298497622097, + 26.289608771174024 + ], + [ + -80.64979342163308, + 26.258283265752333 + ], + [ + -80.60990610278633, + 26.258283265752333 + ], + [ + -80.6298497622097, + 26.289608771174024 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.6298497622097, + 26.289608771174024 + ], + [ + -80.60990610278633, + 26.258283265752333 + ], + [ + -80.58996244336294, + 26.289608771174024 + ], + [ + -80.6298497622097, + 26.289608771174024 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.6298497622097, + 26.35225978201741 + ], + [ + -80.58996244336294, + 26.35225978201741 + ], + [ + -80.60990610278633, + 26.3835852874391 + ], + [ + -80.6298497622097, + 26.35225978201741 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.6298497622097, + 26.35225978201741 + ], + [ + -80.60990610278633, + 26.3835852874391 + ], + [ + -80.64979342163308, + 26.3835852874391 + ], + [ + -80.6298497622097, + 26.35225978201741 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.6298497622097, + 26.35225978201741 + ], + [ + -80.64979342163308, + 26.3835852874391 + ], + [ + -80.66973708105647, + 26.35225978201741 + ], + [ + -80.6298497622097, + 26.35225978201741 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.6298497622097, + 26.35225978201741 + ], + [ + -80.66973708105647, + 26.35225978201741 + ], + [ + -80.64979342163308, + 26.320934276595718 + ], + [ + -80.6298497622097, + 26.35225978201741 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.6298497622097, + 26.35225978201741 + ], + [ + -80.64979342163308, + 26.320934276595718 + ], + [ + -80.60990610278633, + 26.320934276595718 + ], + [ + -80.6298497622097, + 26.35225978201741 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.6298497622097, + 26.35225978201741 + ], + [ + -80.60990610278633, + 26.320934276595718 + ], + [ + -80.58996244336294, + 26.35225978201741 + ], + [ + -80.6298497622097, + 26.35225978201741 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.6298497622097, + 26.414910792860795 + ], + [ + -80.58996244336294, + 26.414910792860795 + ], + [ + -80.60990610278633, + 26.446236298282486 + ], + [ + -80.6298497622097, + 26.414910792860795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.6298497622097, + 26.414910792860795 + ], + [ + -80.60990610278633, + 26.446236298282486 + ], + [ + -80.64979342163308, + 26.446236298282486 + ], + [ + -80.6298497622097, + 26.414910792860795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.6298497622097, + 26.414910792860795 + ], + [ + -80.64979342163308, + 26.446236298282486 + ], + [ + -80.66973708105647, + 26.414910792860795 + ], + [ + -80.6298497622097, + 26.414910792860795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.6298497622097, + 26.414910792860795 + ], + [ + -80.66973708105647, + 26.414910792860795 + ], + [ + -80.64979342163308, + 26.383585287439104 + ], + [ + -80.6298497622097, + 26.414910792860795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.6298497622097, + 26.414910792860795 + ], + [ + -80.64979342163308, + 26.383585287439104 + ], + [ + -80.60990610278633, + 26.383585287439104 + ], + [ + -80.6298497622097, + 26.414910792860795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.6298497622097, + 26.414910792860795 + ], + [ + -80.60990610278633, + 26.383585287439104 + ], + [ + -80.58996244336294, + 26.414910792860795 + ], + [ + -80.6298497622097, + 26.414910792860795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.57001878393956, + 24.942612038041236 + ], + [ + -80.5301314650928, + 24.942612038041236 + ], + [ + -80.55007512451618, + 24.973937543462927 + ], + [ + -80.57001878393956, + 24.942612038041236 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.57001878393956, + 24.942612038041236 + ], + [ + -80.55007512451618, + 24.973937543462927 + ], + [ + -80.58996244336294, + 24.973937543462927 + ], + [ + -80.57001878393956, + 24.942612038041236 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.57001878393956, + 24.942612038041236 + ], + [ + -80.58996244336294, + 24.973937543462927 + ], + [ + -80.60990610278633, + 24.942612038041236 + ], + [ + -80.57001878393956, + 24.942612038041236 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.57001878393956, + 24.942612038041236 + ], + [ + -80.60990610278633, + 24.942612038041236 + ], + [ + -80.58996244336294, + 24.911286532619545 + ], + [ + -80.57001878393956, + 24.942612038041236 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.57001878393956, + 24.942612038041236 + ], + [ + -80.58996244336294, + 24.911286532619545 + ], + [ + -80.55007512451618, + 24.911286532619545 + ], + [ + -80.57001878393956, + 24.942612038041236 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.57001878393956, + 24.942612038041236 + ], + [ + -80.55007512451618, + 24.911286532619545 + ], + [ + -80.5301314650928, + 24.942612038041236 + ], + [ + -80.57001878393956, + 24.942612038041236 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.57001878393956, + 25.005263048884622 + ], + [ + -80.5301314650928, + 25.005263048884622 + ], + [ + -80.55007512451618, + 25.036588554306313 + ], + [ + -80.57001878393956, + 25.005263048884622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.57001878393956, + 25.005263048884622 + ], + [ + -80.55007512451618, + 25.036588554306313 + ], + [ + -80.58996244336294, + 25.036588554306313 + ], + [ + -80.57001878393956, + 25.005263048884622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.57001878393956, + 25.005263048884622 + ], + [ + -80.58996244336294, + 25.036588554306313 + ], + [ + -80.60990610278633, + 25.005263048884622 + ], + [ + -80.57001878393956, + 25.005263048884622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.57001878393956, + 25.005263048884622 + ], + [ + -80.60990610278633, + 25.005263048884622 + ], + [ + -80.58996244336294, + 24.97393754346293 + ], + [ + -80.57001878393956, + 25.005263048884622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.57001878393956, + 25.005263048884622 + ], + [ + -80.58996244336294, + 24.97393754346293 + ], + [ + -80.55007512451618, + 24.97393754346293 + ], + [ + -80.57001878393956, + 25.005263048884622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.57001878393956, + 25.005263048884622 + ], + [ + -80.55007512451618, + 24.97393754346293 + ], + [ + -80.5301314650928, + 25.005263048884622 + ], + [ + -80.57001878393956, + 25.005263048884622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.57001878393956, + 25.067914059728007 + ], + [ + -80.5301314650928, + 25.067914059728007 + ], + [ + -80.55007512451618, + 25.0992395651497 + ], + [ + -80.57001878393956, + 25.067914059728007 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.57001878393956, + 25.067914059728007 + ], + [ + -80.55007512451618, + 25.0992395651497 + ], + [ + -80.58996244336294, + 25.0992395651497 + ], + [ + -80.57001878393956, + 25.067914059728007 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.57001878393956, + 25.067914059728007 + ], + [ + -80.58996244336294, + 25.0992395651497 + ], + [ + -80.60990610278633, + 25.067914059728007 + ], + [ + -80.57001878393956, + 25.067914059728007 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.57001878393956, + 25.067914059728007 + ], + [ + -80.60990610278633, + 25.067914059728007 + ], + [ + -80.58996244336294, + 25.036588554306316 + ], + [ + -80.57001878393956, + 25.067914059728007 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.57001878393956, + 25.067914059728007 + ], + [ + -80.58996244336294, + 25.036588554306316 + ], + [ + -80.55007512451618, + 25.036588554306316 + ], + [ + -80.57001878393956, + 25.067914059728007 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.57001878393956, + 25.067914059728007 + ], + [ + -80.55007512451618, + 25.036588554306316 + ], + [ + -80.5301314650928, + 25.067914059728007 + ], + [ + -80.57001878393956, + 25.067914059728007 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.57001878393956, + 25.130565070571393 + ], + [ + -80.5301314650928, + 25.130565070571393 + ], + [ + -80.55007512451618, + 25.161890575993084 + ], + [ + -80.57001878393956, + 25.130565070571393 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.57001878393956, + 25.130565070571393 + ], + [ + -80.55007512451618, + 25.161890575993084 + ], + [ + -80.58996244336294, + 25.161890575993084 + ], + [ + -80.57001878393956, + 25.130565070571393 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.57001878393956, + 25.130565070571393 + ], + [ + -80.58996244336294, + 25.161890575993084 + ], + [ + -80.60990610278633, + 25.130565070571393 + ], + [ + -80.57001878393956, + 25.130565070571393 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.57001878393956, + 25.130565070571393 + ], + [ + -80.60990610278633, + 25.130565070571393 + ], + [ + -80.58996244336294, + 25.099239565149702 + ], + [ + -80.57001878393956, + 25.130565070571393 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.57001878393956, + 25.130565070571393 + ], + [ + -80.58996244336294, + 25.099239565149702 + ], + [ + -80.55007512451618, + 25.099239565149702 + ], + [ + -80.57001878393956, + 25.130565070571393 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.57001878393956, + 25.130565070571393 + ], + [ + -80.55007512451618, + 25.099239565149702 + ], + [ + -80.5301314650928, + 25.130565070571393 + ], + [ + -80.57001878393956, + 25.130565070571393 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.57001878393956, + 25.19321608141478 + ], + [ + -80.5301314650928, + 25.19321608141478 + ], + [ + -80.55007512451618, + 25.22454158683647 + ], + [ + -80.57001878393956, + 25.19321608141478 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.57001878393956, + 25.19321608141478 + ], + [ + -80.55007512451618, + 25.22454158683647 + ], + [ + -80.58996244336294, + 25.22454158683647 + ], + [ + -80.57001878393956, + 25.19321608141478 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.57001878393956, + 25.19321608141478 + ], + [ + -80.58996244336294, + 25.22454158683647 + ], + [ + -80.60990610278633, + 25.19321608141478 + ], + [ + -80.57001878393956, + 25.19321608141478 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.57001878393956, + 25.19321608141478 + ], + [ + -80.60990610278633, + 25.19321608141478 + ], + [ + -80.58996244336294, + 25.161890575993088 + ], + [ + -80.57001878393956, + 25.19321608141478 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.57001878393956, + 25.19321608141478 + ], + [ + -80.58996244336294, + 25.161890575993088 + ], + [ + -80.55007512451618, + 25.161890575993088 + ], + [ + -80.57001878393956, + 25.19321608141478 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.57001878393956, + 25.19321608141478 + ], + [ + -80.55007512451618, + 25.161890575993088 + ], + [ + -80.5301314650928, + 25.19321608141478 + ], + [ + -80.57001878393956, + 25.19321608141478 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.57001878393956, + 25.255867092258164 + ], + [ + -80.5301314650928, + 25.255867092258164 + ], + [ + -80.55007512451618, + 25.287192597679855 + ], + [ + -80.57001878393956, + 25.255867092258164 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.57001878393956, + 25.255867092258164 + ], + [ + -80.55007512451618, + 25.287192597679855 + ], + [ + -80.58996244336294, + 25.287192597679855 + ], + [ + -80.57001878393956, + 25.255867092258164 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.57001878393956, + 25.255867092258164 + ], + [ + -80.58996244336294, + 25.287192597679855 + ], + [ + -80.60990610278633, + 25.255867092258164 + ], + [ + -80.57001878393956, + 25.255867092258164 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.57001878393956, + 25.255867092258164 + ], + [ + -80.60990610278633, + 25.255867092258164 + ], + [ + -80.58996244336294, + 25.224541586836473 + ], + [ + -80.57001878393956, + 25.255867092258164 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.57001878393956, + 25.255867092258164 + ], + [ + -80.58996244336294, + 25.224541586836473 + ], + [ + -80.55007512451618, + 25.224541586836473 + ], + [ + -80.57001878393956, + 25.255867092258164 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.57001878393956, + 25.255867092258164 + ], + [ + -80.55007512451618, + 25.224541586836473 + ], + [ + -80.5301314650928, + 25.255867092258164 + ], + [ + -80.57001878393956, + 25.255867092258164 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.57001878393956, + 25.31851810310155 + ], + [ + -80.5301314650928, + 25.31851810310155 + ], + [ + -80.55007512451618, + 25.34984360852324 + ], + [ + -80.57001878393956, + 25.31851810310155 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.57001878393956, + 25.31851810310155 + ], + [ + -80.55007512451618, + 25.34984360852324 + ], + [ + -80.58996244336294, + 25.34984360852324 + ], + [ + -80.57001878393956, + 25.31851810310155 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.57001878393956, + 25.31851810310155 + ], + [ + -80.58996244336294, + 25.34984360852324 + ], + [ + -80.60990610278633, + 25.31851810310155 + ], + [ + -80.57001878393956, + 25.31851810310155 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.57001878393956, + 25.31851810310155 + ], + [ + -80.60990610278633, + 25.31851810310155 + ], + [ + -80.58996244336294, + 25.28719259767986 + ], + [ + -80.57001878393956, + 25.31851810310155 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.57001878393956, + 25.31851810310155 + ], + [ + -80.58996244336294, + 25.28719259767986 + ], + [ + -80.55007512451618, + 25.28719259767986 + ], + [ + -80.57001878393956, + 25.31851810310155 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.57001878393956, + 25.31851810310155 + ], + [ + -80.55007512451618, + 25.28719259767986 + ], + [ + -80.5301314650928, + 25.31851810310155 + ], + [ + -80.57001878393956, + 25.31851810310155 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.57001878393956, + 25.381169113944935 + ], + [ + -80.5301314650928, + 25.381169113944935 + ], + [ + -80.55007512451618, + 25.412494619366626 + ], + [ + -80.57001878393956, + 25.381169113944935 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.57001878393956, + 25.381169113944935 + ], + [ + -80.55007512451618, + 25.412494619366626 + ], + [ + -80.58996244336294, + 25.412494619366626 + ], + [ + -80.57001878393956, + 25.381169113944935 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.57001878393956, + 25.381169113944935 + ], + [ + -80.58996244336294, + 25.412494619366626 + ], + [ + -80.60990610278633, + 25.381169113944935 + ], + [ + -80.57001878393956, + 25.381169113944935 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.57001878393956, + 25.381169113944935 + ], + [ + -80.60990610278633, + 25.381169113944935 + ], + [ + -80.58996244336294, + 25.349843608523244 + ], + [ + -80.57001878393956, + 25.381169113944935 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.57001878393956, + 25.381169113944935 + ], + [ + -80.58996244336294, + 25.349843608523244 + ], + [ + -80.55007512451618, + 25.349843608523244 + ], + [ + -80.57001878393956, + 25.381169113944935 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.57001878393956, + 25.381169113944935 + ], + [ + -80.55007512451618, + 25.349843608523244 + ], + [ + -80.5301314650928, + 25.381169113944935 + ], + [ + -80.57001878393956, + 25.381169113944935 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.57001878393956, + 25.44382012478832 + ], + [ + -80.5301314650928, + 25.44382012478832 + ], + [ + -80.55007512451618, + 25.47514563021001 + ], + [ + -80.57001878393956, + 25.44382012478832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.57001878393956, + 25.44382012478832 + ], + [ + -80.55007512451618, + 25.47514563021001 + ], + [ + -80.58996244336294, + 25.47514563021001 + ], + [ + -80.57001878393956, + 25.44382012478832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.57001878393956, + 25.44382012478832 + ], + [ + -80.58996244336294, + 25.47514563021001 + ], + [ + -80.60990610278633, + 25.44382012478832 + ], + [ + -80.57001878393956, + 25.44382012478832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.57001878393956, + 25.44382012478832 + ], + [ + -80.60990610278633, + 25.44382012478832 + ], + [ + -80.58996244336294, + 25.41249461936663 + ], + [ + -80.57001878393956, + 25.44382012478832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.57001878393956, + 25.44382012478832 + ], + [ + -80.58996244336294, + 25.41249461936663 + ], + [ + -80.55007512451618, + 25.41249461936663 + ], + [ + -80.57001878393956, + 25.44382012478832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.57001878393956, + 25.44382012478832 + ], + [ + -80.55007512451618, + 25.41249461936663 + ], + [ + -80.5301314650928, + 25.44382012478832 + ], + [ + -80.57001878393956, + 25.44382012478832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.57001878393956, + 25.506471135631706 + ], + [ + -80.5301314650928, + 25.506471135631706 + ], + [ + -80.55007512451618, + 25.537796641053397 + ], + [ + -80.57001878393956, + 25.506471135631706 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.57001878393956, + 25.506471135631706 + ], + [ + -80.55007512451618, + 25.537796641053397 + ], + [ + -80.58996244336294, + 25.537796641053397 + ], + [ + -80.57001878393956, + 25.506471135631706 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.57001878393956, + 25.506471135631706 + ], + [ + -80.58996244336294, + 25.537796641053397 + ], + [ + -80.60990610278633, + 25.506471135631706 + ], + [ + -80.57001878393956, + 25.506471135631706 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.57001878393956, + 25.506471135631706 + ], + [ + -80.60990610278633, + 25.506471135631706 + ], + [ + -80.58996244336294, + 25.475145630210015 + ], + [ + -80.57001878393956, + 25.506471135631706 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.57001878393956, + 25.506471135631706 + ], + [ + -80.58996244336294, + 25.475145630210015 + ], + [ + -80.55007512451618, + 25.475145630210015 + ], + [ + -80.57001878393956, + 25.506471135631706 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.57001878393956, + 25.506471135631706 + ], + [ + -80.55007512451618, + 25.475145630210015 + ], + [ + -80.5301314650928, + 25.506471135631706 + ], + [ + -80.57001878393956, + 25.506471135631706 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.57001878393956, + 25.56912214647509 + ], + [ + -80.5301314650928, + 25.56912214647509 + ], + [ + -80.55007512451618, + 25.600447651896783 + ], + [ + -80.57001878393956, + 25.56912214647509 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.57001878393956, + 25.56912214647509 + ], + [ + -80.55007512451618, + 25.600447651896783 + ], + [ + -80.58996244336294, + 25.600447651896783 + ], + [ + -80.57001878393956, + 25.56912214647509 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.57001878393956, + 25.56912214647509 + ], + [ + -80.58996244336294, + 25.600447651896783 + ], + [ + -80.60990610278633, + 25.56912214647509 + ], + [ + -80.57001878393956, + 25.56912214647509 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.57001878393956, + 25.56912214647509 + ], + [ + -80.60990610278633, + 25.56912214647509 + ], + [ + -80.58996244336294, + 25.5377966410534 + ], + [ + -80.57001878393956, + 25.56912214647509 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.57001878393956, + 25.56912214647509 + ], + [ + -80.58996244336294, + 25.5377966410534 + ], + [ + -80.55007512451618, + 25.5377966410534 + ], + [ + -80.57001878393956, + 25.56912214647509 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.57001878393956, + 25.56912214647509 + ], + [ + -80.55007512451618, + 25.5377966410534 + ], + [ + -80.5301314650928, + 25.56912214647509 + ], + [ + -80.57001878393956, + 25.56912214647509 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.57001878393956, + 25.631773157318477 + ], + [ + -80.5301314650928, + 25.631773157318477 + ], + [ + -80.55007512451618, + 25.66309866274017 + ], + [ + -80.57001878393956, + 25.631773157318477 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.57001878393956, + 25.631773157318477 + ], + [ + -80.55007512451618, + 25.66309866274017 + ], + [ + -80.58996244336294, + 25.66309866274017 + ], + [ + -80.57001878393956, + 25.631773157318477 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.57001878393956, + 25.631773157318477 + ], + [ + -80.58996244336294, + 25.66309866274017 + ], + [ + -80.60990610278633, + 25.631773157318477 + ], + [ + -80.57001878393956, + 25.631773157318477 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.57001878393956, + 25.631773157318477 + ], + [ + -80.60990610278633, + 25.631773157318477 + ], + [ + -80.58996244336294, + 25.600447651896786 + ], + [ + -80.57001878393956, + 25.631773157318477 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.57001878393956, + 25.631773157318477 + ], + [ + -80.58996244336294, + 25.600447651896786 + ], + [ + -80.55007512451618, + 25.600447651896786 + ], + [ + -80.57001878393956, + 25.631773157318477 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.57001878393956, + 25.631773157318477 + ], + [ + -80.55007512451618, + 25.600447651896786 + ], + [ + -80.5301314650928, + 25.631773157318477 + ], + [ + -80.57001878393956, + 25.631773157318477 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.57001878393956, + 25.694424168161863 + ], + [ + -80.5301314650928, + 25.694424168161863 + ], + [ + -80.55007512451618, + 25.725749673583554 + ], + [ + -80.57001878393956, + 25.694424168161863 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.57001878393956, + 25.694424168161863 + ], + [ + -80.55007512451618, + 25.725749673583554 + ], + [ + -80.58996244336294, + 25.725749673583554 + ], + [ + -80.57001878393956, + 25.694424168161863 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.57001878393956, + 25.694424168161863 + ], + [ + -80.58996244336294, + 25.725749673583554 + ], + [ + -80.60990610278633, + 25.694424168161863 + ], + [ + -80.57001878393956, + 25.694424168161863 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.57001878393956, + 25.694424168161863 + ], + [ + -80.60990610278633, + 25.694424168161863 + ], + [ + -80.58996244336294, + 25.663098662740172 + ], + [ + -80.57001878393956, + 25.694424168161863 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.57001878393956, + 25.694424168161863 + ], + [ + -80.58996244336294, + 25.663098662740172 + ], + [ + -80.55007512451618, + 25.663098662740172 + ], + [ + -80.57001878393956, + 25.694424168161863 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.57001878393956, + 25.694424168161863 + ], + [ + -80.55007512451618, + 25.663098662740172 + ], + [ + -80.5301314650928, + 25.694424168161863 + ], + [ + -80.57001878393956, + 25.694424168161863 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.57001878393956, + 25.75707517900525 + ], + [ + -80.5301314650928, + 25.75707517900525 + ], + [ + -80.55007512451618, + 25.78840068442694 + ], + [ + -80.57001878393956, + 25.75707517900525 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.57001878393956, + 25.75707517900525 + ], + [ + -80.55007512451618, + 25.78840068442694 + ], + [ + -80.58996244336294, + 25.78840068442694 + ], + [ + -80.57001878393956, + 25.75707517900525 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.57001878393956, + 25.75707517900525 + ], + [ + -80.58996244336294, + 25.78840068442694 + ], + [ + -80.60990610278633, + 25.75707517900525 + ], + [ + -80.57001878393956, + 25.75707517900525 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.57001878393956, + 25.75707517900525 + ], + [ + -80.60990610278633, + 25.75707517900525 + ], + [ + -80.58996244336294, + 25.725749673583557 + ], + [ + -80.57001878393956, + 25.75707517900525 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.57001878393956, + 25.75707517900525 + ], + [ + -80.58996244336294, + 25.725749673583557 + ], + [ + -80.55007512451618, + 25.725749673583557 + ], + [ + -80.57001878393956, + 25.75707517900525 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.57001878393956, + 25.75707517900525 + ], + [ + -80.55007512451618, + 25.725749673583557 + ], + [ + -80.5301314650928, + 25.75707517900525 + ], + [ + -80.57001878393956, + 25.75707517900525 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.57001878393956, + 25.819726189848634 + ], + [ + -80.5301314650928, + 25.819726189848634 + ], + [ + -80.55007512451618, + 25.851051695270325 + ], + [ + -80.57001878393956, + 25.819726189848634 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.57001878393956, + 25.819726189848634 + ], + [ + -80.55007512451618, + 25.851051695270325 + ], + [ + -80.58996244336294, + 25.851051695270325 + ], + [ + -80.57001878393956, + 25.819726189848634 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.57001878393956, + 25.819726189848634 + ], + [ + -80.58996244336294, + 25.851051695270325 + ], + [ + -80.60990610278633, + 25.819726189848634 + ], + [ + -80.57001878393956, + 25.819726189848634 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.57001878393956, + 25.819726189848634 + ], + [ + -80.60990610278633, + 25.819726189848634 + ], + [ + -80.58996244336294, + 25.788400684426943 + ], + [ + -80.57001878393956, + 25.819726189848634 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.57001878393956, + 25.819726189848634 + ], + [ + -80.58996244336294, + 25.788400684426943 + ], + [ + -80.55007512451618, + 25.788400684426943 + ], + [ + -80.57001878393956, + 25.819726189848634 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.57001878393956, + 25.819726189848634 + ], + [ + -80.55007512451618, + 25.788400684426943 + ], + [ + -80.5301314650928, + 25.819726189848634 + ], + [ + -80.57001878393956, + 25.819726189848634 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.57001878393956, + 25.88237720069202 + ], + [ + -80.5301314650928, + 25.88237720069202 + ], + [ + -80.55007512451618, + 25.91370270611371 + ], + [ + -80.57001878393956, + 25.88237720069202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.57001878393956, + 25.88237720069202 + ], + [ + -80.55007512451618, + 25.91370270611371 + ], + [ + -80.58996244336294, + 25.91370270611371 + ], + [ + -80.57001878393956, + 25.88237720069202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.57001878393956, + 25.88237720069202 + ], + [ + -80.58996244336294, + 25.91370270611371 + ], + [ + -80.60990610278633, + 25.88237720069202 + ], + [ + -80.57001878393956, + 25.88237720069202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.57001878393956, + 25.88237720069202 + ], + [ + -80.60990610278633, + 25.88237720069202 + ], + [ + -80.58996244336294, + 25.85105169527033 + ], + [ + -80.57001878393956, + 25.88237720069202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.57001878393956, + 25.88237720069202 + ], + [ + -80.58996244336294, + 25.85105169527033 + ], + [ + -80.55007512451618, + 25.85105169527033 + ], + [ + -80.57001878393956, + 25.88237720069202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.57001878393956, + 25.88237720069202 + ], + [ + -80.55007512451618, + 25.85105169527033 + ], + [ + -80.5301314650928, + 25.88237720069202 + ], + [ + -80.57001878393956, + 25.88237720069202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.57001878393956, + 25.945028211535405 + ], + [ + -80.5301314650928, + 25.945028211535405 + ], + [ + -80.55007512451618, + 25.976353716957096 + ], + [ + -80.57001878393956, + 25.945028211535405 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.57001878393956, + 25.945028211535405 + ], + [ + -80.55007512451618, + 25.976353716957096 + ], + [ + -80.58996244336294, + 25.976353716957096 + ], + [ + -80.57001878393956, + 25.945028211535405 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.57001878393956, + 25.945028211535405 + ], + [ + -80.58996244336294, + 25.976353716957096 + ], + [ + -80.60990610278633, + 25.945028211535405 + ], + [ + -80.57001878393956, + 25.945028211535405 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.57001878393956, + 25.945028211535405 + ], + [ + -80.60990610278633, + 25.945028211535405 + ], + [ + -80.58996244336294, + 25.913702706113714 + ], + [ + -80.57001878393956, + 25.945028211535405 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.57001878393956, + 25.945028211535405 + ], + [ + -80.58996244336294, + 25.913702706113714 + ], + [ + -80.55007512451618, + 25.913702706113714 + ], + [ + -80.57001878393956, + 25.945028211535405 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.57001878393956, + 25.945028211535405 + ], + [ + -80.55007512451618, + 25.913702706113714 + ], + [ + -80.5301314650928, + 25.945028211535405 + ], + [ + -80.57001878393956, + 25.945028211535405 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.57001878393956, + 26.00767922237879 + ], + [ + -80.5301314650928, + 26.00767922237879 + ], + [ + -80.55007512451618, + 26.03900472780048 + ], + [ + -80.57001878393956, + 26.00767922237879 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.57001878393956, + 26.00767922237879 + ], + [ + -80.55007512451618, + 26.03900472780048 + ], + [ + -80.58996244336294, + 26.03900472780048 + ], + [ + -80.57001878393956, + 26.00767922237879 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.57001878393956, + 26.00767922237879 + ], + [ + -80.58996244336294, + 26.03900472780048 + ], + [ + -80.60990610278633, + 26.00767922237879 + ], + [ + -80.57001878393956, + 26.00767922237879 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.57001878393956, + 26.00767922237879 + ], + [ + -80.60990610278633, + 26.00767922237879 + ], + [ + -80.58996244336294, + 25.9763537169571 + ], + [ + -80.57001878393956, + 26.00767922237879 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.57001878393956, + 26.00767922237879 + ], + [ + -80.58996244336294, + 25.9763537169571 + ], + [ + -80.55007512451618, + 25.9763537169571 + ], + [ + -80.57001878393956, + 26.00767922237879 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.57001878393956, + 26.00767922237879 + ], + [ + -80.55007512451618, + 25.9763537169571 + ], + [ + -80.5301314650928, + 26.00767922237879 + ], + [ + -80.57001878393956, + 26.00767922237879 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.57001878393956, + 26.070330233222176 + ], + [ + -80.5301314650928, + 26.070330233222176 + ], + [ + -80.55007512451618, + 26.101655738643867 + ], + [ + -80.57001878393956, + 26.070330233222176 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.57001878393956, + 26.070330233222176 + ], + [ + -80.55007512451618, + 26.101655738643867 + ], + [ + -80.58996244336294, + 26.101655738643867 + ], + [ + -80.57001878393956, + 26.070330233222176 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.57001878393956, + 26.070330233222176 + ], + [ + -80.58996244336294, + 26.101655738643867 + ], + [ + -80.60990610278633, + 26.070330233222176 + ], + [ + -80.57001878393956, + 26.070330233222176 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.57001878393956, + 26.070330233222176 + ], + [ + -80.60990610278633, + 26.070330233222176 + ], + [ + -80.58996244336294, + 26.039004727800485 + ], + [ + -80.57001878393956, + 26.070330233222176 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.57001878393956, + 26.070330233222176 + ], + [ + -80.58996244336294, + 26.039004727800485 + ], + [ + -80.55007512451618, + 26.039004727800485 + ], + [ + -80.57001878393956, + 26.070330233222176 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.57001878393956, + 26.070330233222176 + ], + [ + -80.55007512451618, + 26.039004727800485 + ], + [ + -80.5301314650928, + 26.070330233222176 + ], + [ + -80.57001878393956, + 26.070330233222176 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.57001878393956, + 26.13298124406556 + ], + [ + -80.5301314650928, + 26.13298124406556 + ], + [ + -80.55007512451618, + 26.164306749487253 + ], + [ + -80.57001878393956, + 26.13298124406556 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.57001878393956, + 26.13298124406556 + ], + [ + -80.55007512451618, + 26.164306749487253 + ], + [ + -80.58996244336294, + 26.164306749487253 + ], + [ + -80.57001878393956, + 26.13298124406556 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.57001878393956, + 26.13298124406556 + ], + [ + -80.58996244336294, + 26.164306749487253 + ], + [ + -80.60990610278633, + 26.13298124406556 + ], + [ + -80.57001878393956, + 26.13298124406556 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.57001878393956, + 26.13298124406556 + ], + [ + -80.60990610278633, + 26.13298124406556 + ], + [ + -80.58996244336294, + 26.10165573864387 + ], + [ + -80.57001878393956, + 26.13298124406556 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.57001878393956, + 26.13298124406556 + ], + [ + -80.58996244336294, + 26.10165573864387 + ], + [ + -80.55007512451618, + 26.10165573864387 + ], + [ + -80.57001878393956, + 26.13298124406556 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.57001878393956, + 26.13298124406556 + ], + [ + -80.55007512451618, + 26.10165573864387 + ], + [ + -80.5301314650928, + 26.13298124406556 + ], + [ + -80.57001878393956, + 26.13298124406556 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.57001878393956, + 26.195632254908944 + ], + [ + -80.5301314650928, + 26.195632254908944 + ], + [ + -80.55007512451618, + 26.226957760330635 + ], + [ + -80.57001878393956, + 26.195632254908944 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.57001878393956, + 26.195632254908944 + ], + [ + -80.55007512451618, + 26.226957760330635 + ], + [ + -80.58996244336294, + 26.226957760330635 + ], + [ + -80.57001878393956, + 26.195632254908944 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.57001878393956, + 26.195632254908944 + ], + [ + -80.58996244336294, + 26.226957760330635 + ], + [ + -80.60990610278633, + 26.195632254908944 + ], + [ + -80.57001878393956, + 26.195632254908944 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.57001878393956, + 26.195632254908944 + ], + [ + -80.60990610278633, + 26.195632254908944 + ], + [ + -80.58996244336294, + 26.164306749487253 + ], + [ + -80.57001878393956, + 26.195632254908944 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.57001878393956, + 26.195632254908944 + ], + [ + -80.58996244336294, + 26.164306749487253 + ], + [ + -80.55007512451618, + 26.164306749487253 + ], + [ + -80.57001878393956, + 26.195632254908944 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.57001878393956, + 26.195632254908944 + ], + [ + -80.55007512451618, + 26.164306749487253 + ], + [ + -80.5301314650928, + 26.195632254908944 + ], + [ + -80.57001878393956, + 26.195632254908944 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.57001878393956, + 26.258283265752333 + ], + [ + -80.5301314650928, + 26.258283265752333 + ], + [ + -80.55007512451618, + 26.289608771174024 + ], + [ + -80.57001878393956, + 26.258283265752333 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.57001878393956, + 26.258283265752333 + ], + [ + -80.55007512451618, + 26.289608771174024 + ], + [ + -80.58996244336294, + 26.289608771174024 + ], + [ + -80.57001878393956, + 26.258283265752333 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.57001878393956, + 26.258283265752333 + ], + [ + -80.58996244336294, + 26.289608771174024 + ], + [ + -80.60990610278633, + 26.258283265752333 + ], + [ + -80.57001878393956, + 26.258283265752333 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.57001878393956, + 26.258283265752333 + ], + [ + -80.60990610278633, + 26.258283265752333 + ], + [ + -80.58996244336294, + 26.22695776033064 + ], + [ + -80.57001878393956, + 26.258283265752333 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.57001878393956, + 26.258283265752333 + ], + [ + -80.58996244336294, + 26.22695776033064 + ], + [ + -80.55007512451618, + 26.22695776033064 + ], + [ + -80.57001878393956, + 26.258283265752333 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.57001878393956, + 26.258283265752333 + ], + [ + -80.55007512451618, + 26.22695776033064 + ], + [ + -80.5301314650928, + 26.258283265752333 + ], + [ + -80.57001878393956, + 26.258283265752333 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.57001878393956, + 26.320934276595715 + ], + [ + -80.5301314650928, + 26.320934276595715 + ], + [ + -80.55007512451618, + 26.352259782017406 + ], + [ + -80.57001878393956, + 26.320934276595715 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.57001878393956, + 26.320934276595715 + ], + [ + -80.55007512451618, + 26.352259782017406 + ], + [ + -80.58996244336294, + 26.352259782017406 + ], + [ + -80.57001878393956, + 26.320934276595715 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.57001878393956, + 26.320934276595715 + ], + [ + -80.58996244336294, + 26.352259782017406 + ], + [ + -80.60990610278633, + 26.320934276595715 + ], + [ + -80.57001878393956, + 26.320934276595715 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.57001878393956, + 26.320934276595715 + ], + [ + -80.60990610278633, + 26.320934276595715 + ], + [ + -80.58996244336294, + 26.289608771174024 + ], + [ + -80.57001878393956, + 26.320934276595715 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.57001878393956, + 26.320934276595715 + ], + [ + -80.58996244336294, + 26.289608771174024 + ], + [ + -80.55007512451618, + 26.289608771174024 + ], + [ + -80.57001878393956, + 26.320934276595715 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.57001878393956, + 26.320934276595715 + ], + [ + -80.55007512451618, + 26.289608771174024 + ], + [ + -80.5301314650928, + 26.320934276595715 + ], + [ + -80.57001878393956, + 26.320934276595715 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.57001878393956, + 26.3835852874391 + ], + [ + -80.5301314650928, + 26.3835852874391 + ], + [ + -80.55007512451618, + 26.41491079286079 + ], + [ + -80.57001878393956, + 26.3835852874391 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.57001878393956, + 26.3835852874391 + ], + [ + -80.55007512451618, + 26.41491079286079 + ], + [ + -80.58996244336294, + 26.41491079286079 + ], + [ + -80.57001878393956, + 26.3835852874391 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.57001878393956, + 26.3835852874391 + ], + [ + -80.58996244336294, + 26.41491079286079 + ], + [ + -80.60990610278633, + 26.3835852874391 + ], + [ + -80.57001878393956, + 26.3835852874391 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.57001878393956, + 26.3835852874391 + ], + [ + -80.60990610278633, + 26.3835852874391 + ], + [ + -80.58996244336294, + 26.35225978201741 + ], + [ + -80.57001878393956, + 26.3835852874391 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.57001878393956, + 26.3835852874391 + ], + [ + -80.58996244336294, + 26.35225978201741 + ], + [ + -80.55007512451618, + 26.35225978201741 + ], + [ + -80.57001878393956, + 26.3835852874391 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.57001878393956, + 26.3835852874391 + ], + [ + -80.55007512451618, + 26.35225978201741 + ], + [ + -80.5301314650928, + 26.3835852874391 + ], + [ + -80.57001878393956, + 26.3835852874391 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.57001878393956, + 26.446236298282486 + ], + [ + -80.5301314650928, + 26.446236298282486 + ], + [ + -80.55007512451618, + 26.477561803704177 + ], + [ + -80.57001878393956, + 26.446236298282486 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.57001878393956, + 26.446236298282486 + ], + [ + -80.55007512451618, + 26.477561803704177 + ], + [ + -80.58996244336294, + 26.477561803704177 + ], + [ + -80.57001878393956, + 26.446236298282486 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.57001878393956, + 26.446236298282486 + ], + [ + -80.58996244336294, + 26.477561803704177 + ], + [ + -80.60990610278633, + 26.446236298282486 + ], + [ + -80.57001878393956, + 26.446236298282486 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.57001878393956, + 26.446236298282486 + ], + [ + -80.60990610278633, + 26.446236298282486 + ], + [ + -80.58996244336294, + 26.414910792860795 + ], + [ + -80.57001878393956, + 26.446236298282486 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.57001878393956, + 26.446236298282486 + ], + [ + -80.58996244336294, + 26.414910792860795 + ], + [ + -80.55007512451618, + 26.414910792860795 + ], + [ + -80.57001878393956, + 26.446236298282486 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.57001878393956, + 26.446236298282486 + ], + [ + -80.55007512451618, + 26.414910792860795 + ], + [ + -80.5301314650928, + 26.446236298282486 + ], + [ + -80.57001878393956, + 26.446236298282486 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.5101878056694, + 24.911286532619545 + ], + [ + -80.47030048682264, + 24.911286532619545 + ], + [ + -80.49024414624603, + 24.942612038041236 + ], + [ + -80.5101878056694, + 24.911286532619545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.5101878056694, + 24.911286532619545 + ], + [ + -80.49024414624603, + 24.942612038041236 + ], + [ + -80.53013146509278, + 24.942612038041236 + ], + [ + -80.5101878056694, + 24.911286532619545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.5101878056694, + 24.911286532619545 + ], + [ + -80.53013146509278, + 24.942612038041236 + ], + [ + -80.55007512451617, + 24.911286532619545 + ], + [ + -80.5101878056694, + 24.911286532619545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.5101878056694, + 24.911286532619545 + ], + [ + -80.55007512451617, + 24.911286532619545 + ], + [ + -80.53013146509278, + 24.879961027197854 + ], + [ + -80.5101878056694, + 24.911286532619545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.5101878056694, + 24.911286532619545 + ], + [ + -80.53013146509278, + 24.879961027197854 + ], + [ + -80.49024414624603, + 24.879961027197854 + ], + [ + -80.5101878056694, + 24.911286532619545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.5101878056694, + 24.911286532619545 + ], + [ + -80.49024414624603, + 24.879961027197854 + ], + [ + -80.47030048682264, + 24.911286532619545 + ], + [ + -80.5101878056694, + 24.911286532619545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.5101878056694, + 24.97393754346293 + ], + [ + -80.47030048682264, + 24.97393754346293 + ], + [ + -80.49024414624603, + 25.005263048884622 + ], + [ + -80.5101878056694, + 24.97393754346293 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.5101878056694, + 24.97393754346293 + ], + [ + -80.49024414624603, + 25.005263048884622 + ], + [ + -80.53013146509278, + 25.005263048884622 + ], + [ + -80.5101878056694, + 24.97393754346293 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.5101878056694, + 24.97393754346293 + ], + [ + -80.53013146509278, + 25.005263048884622 + ], + [ + -80.55007512451617, + 24.97393754346293 + ], + [ + -80.5101878056694, + 24.97393754346293 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.5101878056694, + 24.97393754346293 + ], + [ + -80.55007512451617, + 24.97393754346293 + ], + [ + -80.53013146509278, + 24.94261203804124 + ], + [ + -80.5101878056694, + 24.97393754346293 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.5101878056694, + 24.97393754346293 + ], + [ + -80.53013146509278, + 24.94261203804124 + ], + [ + -80.49024414624603, + 24.94261203804124 + ], + [ + -80.5101878056694, + 24.97393754346293 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.5101878056694, + 24.97393754346293 + ], + [ + -80.49024414624603, + 24.94261203804124 + ], + [ + -80.47030048682264, + 24.97393754346293 + ], + [ + -80.5101878056694, + 24.97393754346293 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.5101878056694, + 25.036588554306316 + ], + [ + -80.47030048682264, + 25.036588554306316 + ], + [ + -80.49024414624603, + 25.067914059728007 + ], + [ + -80.5101878056694, + 25.036588554306316 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.5101878056694, + 25.036588554306316 + ], + [ + -80.49024414624603, + 25.067914059728007 + ], + [ + -80.53013146509278, + 25.067914059728007 + ], + [ + -80.5101878056694, + 25.036588554306316 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.5101878056694, + 25.036588554306316 + ], + [ + -80.53013146509278, + 25.067914059728007 + ], + [ + -80.55007512451617, + 25.036588554306316 + ], + [ + -80.5101878056694, + 25.036588554306316 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.5101878056694, + 25.036588554306316 + ], + [ + -80.55007512451617, + 25.036588554306316 + ], + [ + -80.53013146509278, + 25.005263048884625 + ], + [ + -80.5101878056694, + 25.036588554306316 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.5101878056694, + 25.036588554306316 + ], + [ + -80.53013146509278, + 25.005263048884625 + ], + [ + -80.49024414624603, + 25.005263048884625 + ], + [ + -80.5101878056694, + 25.036588554306316 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.5101878056694, + 25.036588554306316 + ], + [ + -80.49024414624603, + 25.005263048884625 + ], + [ + -80.47030048682264, + 25.036588554306316 + ], + [ + -80.5101878056694, + 25.036588554306316 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.5101878056694, + 25.099239565149702 + ], + [ + -80.47030048682264, + 25.099239565149702 + ], + [ + -80.49024414624603, + 25.130565070571393 + ], + [ + -80.5101878056694, + 25.099239565149702 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.5101878056694, + 25.099239565149702 + ], + [ + -80.49024414624603, + 25.130565070571393 + ], + [ + -80.53013146509278, + 25.130565070571393 + ], + [ + -80.5101878056694, + 25.099239565149702 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.5101878056694, + 25.099239565149702 + ], + [ + -80.53013146509278, + 25.130565070571393 + ], + [ + -80.55007512451617, + 25.099239565149702 + ], + [ + -80.5101878056694, + 25.099239565149702 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.5101878056694, + 25.099239565149702 + ], + [ + -80.55007512451617, + 25.099239565149702 + ], + [ + -80.53013146509278, + 25.06791405972801 + ], + [ + -80.5101878056694, + 25.099239565149702 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.5101878056694, + 25.099239565149702 + ], + [ + -80.53013146509278, + 25.06791405972801 + ], + [ + -80.49024414624603, + 25.06791405972801 + ], + [ + -80.5101878056694, + 25.099239565149702 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.5101878056694, + 25.099239565149702 + ], + [ + -80.49024414624603, + 25.06791405972801 + ], + [ + -80.47030048682264, + 25.099239565149702 + ], + [ + -80.5101878056694, + 25.099239565149702 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.5101878056694, + 25.161890575993088 + ], + [ + -80.47030048682264, + 25.161890575993088 + ], + [ + -80.49024414624603, + 25.19321608141478 + ], + [ + -80.5101878056694, + 25.161890575993088 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.5101878056694, + 25.161890575993088 + ], + [ + -80.49024414624603, + 25.19321608141478 + ], + [ + -80.53013146509278, + 25.19321608141478 + ], + [ + -80.5101878056694, + 25.161890575993088 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.5101878056694, + 25.161890575993088 + ], + [ + -80.53013146509278, + 25.19321608141478 + ], + [ + -80.55007512451617, + 25.161890575993088 + ], + [ + -80.5101878056694, + 25.161890575993088 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.5101878056694, + 25.161890575993088 + ], + [ + -80.55007512451617, + 25.161890575993088 + ], + [ + -80.53013146509278, + 25.130565070571397 + ], + [ + -80.5101878056694, + 25.161890575993088 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.5101878056694, + 25.161890575993088 + ], + [ + -80.53013146509278, + 25.130565070571397 + ], + [ + -80.49024414624603, + 25.130565070571397 + ], + [ + -80.5101878056694, + 25.161890575993088 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.5101878056694, + 25.161890575993088 + ], + [ + -80.49024414624603, + 25.130565070571397 + ], + [ + -80.47030048682264, + 25.161890575993088 + ], + [ + -80.5101878056694, + 25.161890575993088 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.5101878056694, + 25.224541586836473 + ], + [ + -80.47030048682264, + 25.224541586836473 + ], + [ + -80.49024414624603, + 25.255867092258164 + ], + [ + -80.5101878056694, + 25.224541586836473 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.5101878056694, + 25.224541586836473 + ], + [ + -80.49024414624603, + 25.255867092258164 + ], + [ + -80.53013146509278, + 25.255867092258164 + ], + [ + -80.5101878056694, + 25.224541586836473 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.5101878056694, + 25.224541586836473 + ], + [ + -80.53013146509278, + 25.255867092258164 + ], + [ + -80.55007512451617, + 25.224541586836473 + ], + [ + -80.5101878056694, + 25.224541586836473 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.5101878056694, + 25.224541586836473 + ], + [ + -80.55007512451617, + 25.224541586836473 + ], + [ + -80.53013146509278, + 25.193216081414782 + ], + [ + -80.5101878056694, + 25.224541586836473 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.5101878056694, + 25.224541586836473 + ], + [ + -80.53013146509278, + 25.193216081414782 + ], + [ + -80.49024414624603, + 25.193216081414782 + ], + [ + -80.5101878056694, + 25.224541586836473 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.5101878056694, + 25.224541586836473 + ], + [ + -80.49024414624603, + 25.193216081414782 + ], + [ + -80.47030048682264, + 25.224541586836473 + ], + [ + -80.5101878056694, + 25.224541586836473 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.5101878056694, + 25.28719259767986 + ], + [ + -80.47030048682264, + 25.28719259767986 + ], + [ + -80.49024414624603, + 25.31851810310155 + ], + [ + -80.5101878056694, + 25.28719259767986 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.5101878056694, + 25.28719259767986 + ], + [ + -80.49024414624603, + 25.31851810310155 + ], + [ + -80.53013146509278, + 25.31851810310155 + ], + [ + -80.5101878056694, + 25.28719259767986 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.5101878056694, + 25.28719259767986 + ], + [ + -80.53013146509278, + 25.31851810310155 + ], + [ + -80.55007512451617, + 25.28719259767986 + ], + [ + -80.5101878056694, + 25.28719259767986 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.5101878056694, + 25.28719259767986 + ], + [ + -80.55007512451617, + 25.28719259767986 + ], + [ + -80.53013146509278, + 25.255867092258168 + ], + [ + -80.5101878056694, + 25.28719259767986 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.5101878056694, + 25.28719259767986 + ], + [ + -80.53013146509278, + 25.255867092258168 + ], + [ + -80.49024414624603, + 25.255867092258168 + ], + [ + -80.5101878056694, + 25.28719259767986 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.5101878056694, + 25.28719259767986 + ], + [ + -80.49024414624603, + 25.255867092258168 + ], + [ + -80.47030048682264, + 25.28719259767986 + ], + [ + -80.5101878056694, + 25.28719259767986 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.5101878056694, + 25.349843608523244 + ], + [ + -80.47030048682264, + 25.349843608523244 + ], + [ + -80.49024414624603, + 25.381169113944935 + ], + [ + -80.5101878056694, + 25.349843608523244 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.5101878056694, + 25.349843608523244 + ], + [ + -80.49024414624603, + 25.381169113944935 + ], + [ + -80.53013146509278, + 25.381169113944935 + ], + [ + -80.5101878056694, + 25.349843608523244 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.5101878056694, + 25.349843608523244 + ], + [ + -80.53013146509278, + 25.381169113944935 + ], + [ + -80.55007512451617, + 25.349843608523244 + ], + [ + -80.5101878056694, + 25.349843608523244 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.5101878056694, + 25.349843608523244 + ], + [ + -80.55007512451617, + 25.349843608523244 + ], + [ + -80.53013146509278, + 25.318518103101553 + ], + [ + -80.5101878056694, + 25.349843608523244 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.5101878056694, + 25.349843608523244 + ], + [ + -80.53013146509278, + 25.318518103101553 + ], + [ + -80.49024414624603, + 25.318518103101553 + ], + [ + -80.5101878056694, + 25.349843608523244 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.5101878056694, + 25.349843608523244 + ], + [ + -80.49024414624603, + 25.318518103101553 + ], + [ + -80.47030048682264, + 25.349843608523244 + ], + [ + -80.5101878056694, + 25.349843608523244 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.5101878056694, + 25.41249461936663 + ], + [ + -80.47030048682264, + 25.41249461936663 + ], + [ + -80.49024414624603, + 25.44382012478832 + ], + [ + -80.5101878056694, + 25.41249461936663 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.5101878056694, + 25.41249461936663 + ], + [ + -80.49024414624603, + 25.44382012478832 + ], + [ + -80.53013146509278, + 25.44382012478832 + ], + [ + -80.5101878056694, + 25.41249461936663 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.5101878056694, + 25.41249461936663 + ], + [ + -80.53013146509278, + 25.44382012478832 + ], + [ + -80.55007512451617, + 25.41249461936663 + ], + [ + -80.5101878056694, + 25.41249461936663 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.5101878056694, + 25.41249461936663 + ], + [ + -80.55007512451617, + 25.41249461936663 + ], + [ + -80.53013146509278, + 25.38116911394494 + ], + [ + -80.5101878056694, + 25.41249461936663 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.5101878056694, + 25.41249461936663 + ], + [ + -80.53013146509278, + 25.38116911394494 + ], + [ + -80.49024414624603, + 25.38116911394494 + ], + [ + -80.5101878056694, + 25.41249461936663 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.5101878056694, + 25.41249461936663 + ], + [ + -80.49024414624603, + 25.38116911394494 + ], + [ + -80.47030048682264, + 25.41249461936663 + ], + [ + -80.5101878056694, + 25.41249461936663 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.5101878056694, + 25.475145630210015 + ], + [ + -80.47030048682264, + 25.475145630210015 + ], + [ + -80.49024414624603, + 25.506471135631706 + ], + [ + -80.5101878056694, + 25.475145630210015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.5101878056694, + 25.475145630210015 + ], + [ + -80.49024414624603, + 25.506471135631706 + ], + [ + -80.53013146509278, + 25.506471135631706 + ], + [ + -80.5101878056694, + 25.475145630210015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.5101878056694, + 25.475145630210015 + ], + [ + -80.53013146509278, + 25.506471135631706 + ], + [ + -80.55007512451617, + 25.475145630210015 + ], + [ + -80.5101878056694, + 25.475145630210015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.5101878056694, + 25.475145630210015 + ], + [ + -80.55007512451617, + 25.475145630210015 + ], + [ + -80.53013146509278, + 25.443820124788324 + ], + [ + -80.5101878056694, + 25.475145630210015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.5101878056694, + 25.475145630210015 + ], + [ + -80.53013146509278, + 25.443820124788324 + ], + [ + -80.49024414624603, + 25.443820124788324 + ], + [ + -80.5101878056694, + 25.475145630210015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.5101878056694, + 25.475145630210015 + ], + [ + -80.49024414624603, + 25.443820124788324 + ], + [ + -80.47030048682264, + 25.475145630210015 + ], + [ + -80.5101878056694, + 25.475145630210015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.5101878056694, + 25.5377966410534 + ], + [ + -80.47030048682264, + 25.5377966410534 + ], + [ + -80.49024414624603, + 25.56912214647509 + ], + [ + -80.5101878056694, + 25.5377966410534 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.5101878056694, + 25.5377966410534 + ], + [ + -80.49024414624603, + 25.56912214647509 + ], + [ + -80.53013146509278, + 25.56912214647509 + ], + [ + -80.5101878056694, + 25.5377966410534 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.5101878056694, + 25.5377966410534 + ], + [ + -80.53013146509278, + 25.56912214647509 + ], + [ + -80.55007512451617, + 25.5377966410534 + ], + [ + -80.5101878056694, + 25.5377966410534 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.5101878056694, + 25.5377966410534 + ], + [ + -80.55007512451617, + 25.5377966410534 + ], + [ + -80.53013146509278, + 25.50647113563171 + ], + [ + -80.5101878056694, + 25.5377966410534 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.5101878056694, + 25.5377966410534 + ], + [ + -80.53013146509278, + 25.50647113563171 + ], + [ + -80.49024414624603, + 25.50647113563171 + ], + [ + -80.5101878056694, + 25.5377966410534 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.5101878056694, + 25.5377966410534 + ], + [ + -80.49024414624603, + 25.50647113563171 + ], + [ + -80.47030048682264, + 25.5377966410534 + ], + [ + -80.5101878056694, + 25.5377966410534 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.5101878056694, + 25.600447651896786 + ], + [ + -80.47030048682264, + 25.600447651896786 + ], + [ + -80.49024414624603, + 25.631773157318477 + ], + [ + -80.5101878056694, + 25.600447651896786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.5101878056694, + 25.600447651896786 + ], + [ + -80.49024414624603, + 25.631773157318477 + ], + [ + -80.53013146509278, + 25.631773157318477 + ], + [ + -80.5101878056694, + 25.600447651896786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.5101878056694, + 25.600447651896786 + ], + [ + -80.53013146509278, + 25.631773157318477 + ], + [ + -80.55007512451617, + 25.600447651896786 + ], + [ + -80.5101878056694, + 25.600447651896786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.5101878056694, + 25.600447651896786 + ], + [ + -80.55007512451617, + 25.600447651896786 + ], + [ + -80.53013146509278, + 25.569122146475095 + ], + [ + -80.5101878056694, + 25.600447651896786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.5101878056694, + 25.600447651896786 + ], + [ + -80.53013146509278, + 25.569122146475095 + ], + [ + -80.49024414624603, + 25.569122146475095 + ], + [ + -80.5101878056694, + 25.600447651896786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.5101878056694, + 25.600447651896786 + ], + [ + -80.49024414624603, + 25.569122146475095 + ], + [ + -80.47030048682264, + 25.600447651896786 + ], + [ + -80.5101878056694, + 25.600447651896786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.5101878056694, + 25.663098662740172 + ], + [ + -80.47030048682264, + 25.663098662740172 + ], + [ + -80.49024414624603, + 25.694424168161863 + ], + [ + -80.5101878056694, + 25.663098662740172 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.5101878056694, + 25.663098662740172 + ], + [ + -80.49024414624603, + 25.694424168161863 + ], + [ + -80.53013146509278, + 25.694424168161863 + ], + [ + -80.5101878056694, + 25.663098662740172 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.5101878056694, + 25.663098662740172 + ], + [ + -80.53013146509278, + 25.694424168161863 + ], + [ + -80.55007512451617, + 25.663098662740172 + ], + [ + -80.5101878056694, + 25.663098662740172 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.5101878056694, + 25.663098662740172 + ], + [ + -80.55007512451617, + 25.663098662740172 + ], + [ + -80.53013146509278, + 25.63177315731848 + ], + [ + -80.5101878056694, + 25.663098662740172 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.5101878056694, + 25.663098662740172 + ], + [ + -80.53013146509278, + 25.63177315731848 + ], + [ + -80.49024414624603, + 25.63177315731848 + ], + [ + -80.5101878056694, + 25.663098662740172 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.5101878056694, + 25.663098662740172 + ], + [ + -80.49024414624603, + 25.63177315731848 + ], + [ + -80.47030048682264, + 25.663098662740172 + ], + [ + -80.5101878056694, + 25.663098662740172 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.5101878056694, + 25.725749673583557 + ], + [ + -80.47030048682264, + 25.725749673583557 + ], + [ + -80.49024414624603, + 25.75707517900525 + ], + [ + -80.5101878056694, + 25.725749673583557 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.5101878056694, + 25.725749673583557 + ], + [ + -80.49024414624603, + 25.75707517900525 + ], + [ + -80.53013146509278, + 25.75707517900525 + ], + [ + -80.5101878056694, + 25.725749673583557 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.5101878056694, + 25.725749673583557 + ], + [ + -80.53013146509278, + 25.75707517900525 + ], + [ + -80.55007512451617, + 25.725749673583557 + ], + [ + -80.5101878056694, + 25.725749673583557 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.5101878056694, + 25.725749673583557 + ], + [ + -80.55007512451617, + 25.725749673583557 + ], + [ + -80.53013146509278, + 25.694424168161866 + ], + [ + -80.5101878056694, + 25.725749673583557 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.5101878056694, + 25.725749673583557 + ], + [ + -80.53013146509278, + 25.694424168161866 + ], + [ + -80.49024414624603, + 25.694424168161866 + ], + [ + -80.5101878056694, + 25.725749673583557 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.5101878056694, + 25.725749673583557 + ], + [ + -80.49024414624603, + 25.694424168161866 + ], + [ + -80.47030048682264, + 25.725749673583557 + ], + [ + -80.5101878056694, + 25.725749673583557 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.5101878056694, + 25.788400684426943 + ], + [ + -80.47030048682264, + 25.788400684426943 + ], + [ + -80.49024414624603, + 25.819726189848634 + ], + [ + -80.5101878056694, + 25.788400684426943 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.5101878056694, + 25.788400684426943 + ], + [ + -80.49024414624603, + 25.819726189848634 + ], + [ + -80.53013146509278, + 25.819726189848634 + ], + [ + -80.5101878056694, + 25.788400684426943 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.5101878056694, + 25.788400684426943 + ], + [ + -80.53013146509278, + 25.819726189848634 + ], + [ + -80.55007512451617, + 25.788400684426943 + ], + [ + -80.5101878056694, + 25.788400684426943 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.5101878056694, + 25.788400684426943 + ], + [ + -80.55007512451617, + 25.788400684426943 + ], + [ + -80.53013146509278, + 25.757075179005252 + ], + [ + -80.5101878056694, + 25.788400684426943 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.5101878056694, + 25.788400684426943 + ], + [ + -80.53013146509278, + 25.757075179005252 + ], + [ + -80.49024414624603, + 25.757075179005252 + ], + [ + -80.5101878056694, + 25.788400684426943 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.5101878056694, + 25.788400684426943 + ], + [ + -80.49024414624603, + 25.757075179005252 + ], + [ + -80.47030048682264, + 25.788400684426943 + ], + [ + -80.5101878056694, + 25.788400684426943 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.5101878056694, + 25.85105169527033 + ], + [ + -80.47030048682264, + 25.85105169527033 + ], + [ + -80.49024414624603, + 25.88237720069202 + ], + [ + -80.5101878056694, + 25.85105169527033 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.5101878056694, + 25.85105169527033 + ], + [ + -80.49024414624603, + 25.88237720069202 + ], + [ + -80.53013146509278, + 25.88237720069202 + ], + [ + -80.5101878056694, + 25.85105169527033 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.5101878056694, + 25.85105169527033 + ], + [ + -80.53013146509278, + 25.88237720069202 + ], + [ + -80.55007512451617, + 25.85105169527033 + ], + [ + -80.5101878056694, + 25.85105169527033 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.5101878056694, + 25.85105169527033 + ], + [ + -80.55007512451617, + 25.85105169527033 + ], + [ + -80.53013146509278, + 25.819726189848637 + ], + [ + -80.5101878056694, + 25.85105169527033 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.5101878056694, + 25.85105169527033 + ], + [ + -80.53013146509278, + 25.819726189848637 + ], + [ + -80.49024414624603, + 25.819726189848637 + ], + [ + -80.5101878056694, + 25.85105169527033 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.5101878056694, + 25.85105169527033 + ], + [ + -80.49024414624603, + 25.819726189848637 + ], + [ + -80.47030048682264, + 25.85105169527033 + ], + [ + -80.5101878056694, + 25.85105169527033 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.5101878056694, + 25.913702706113714 + ], + [ + -80.47030048682264, + 25.913702706113714 + ], + [ + -80.49024414624603, + 25.945028211535405 + ], + [ + -80.5101878056694, + 25.913702706113714 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.5101878056694, + 25.913702706113714 + ], + [ + -80.49024414624603, + 25.945028211535405 + ], + [ + -80.53013146509278, + 25.945028211535405 + ], + [ + -80.5101878056694, + 25.913702706113714 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.5101878056694, + 25.913702706113714 + ], + [ + -80.53013146509278, + 25.945028211535405 + ], + [ + -80.55007512451617, + 25.913702706113714 + ], + [ + -80.5101878056694, + 25.913702706113714 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.5101878056694, + 25.913702706113714 + ], + [ + -80.55007512451617, + 25.913702706113714 + ], + [ + -80.53013146509278, + 25.882377200692023 + ], + [ + -80.5101878056694, + 25.913702706113714 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.5101878056694, + 25.913702706113714 + ], + [ + -80.53013146509278, + 25.882377200692023 + ], + [ + -80.49024414624603, + 25.882377200692023 + ], + [ + -80.5101878056694, + 25.913702706113714 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.5101878056694, + 25.913702706113714 + ], + [ + -80.49024414624603, + 25.882377200692023 + ], + [ + -80.47030048682264, + 25.913702706113714 + ], + [ + -80.5101878056694, + 25.913702706113714 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.5101878056694, + 25.9763537169571 + ], + [ + -80.47030048682264, + 25.9763537169571 + ], + [ + -80.49024414624603, + 26.00767922237879 + ], + [ + -80.5101878056694, + 25.9763537169571 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.5101878056694, + 25.9763537169571 + ], + [ + -80.49024414624603, + 26.00767922237879 + ], + [ + -80.53013146509278, + 26.00767922237879 + ], + [ + -80.5101878056694, + 25.9763537169571 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.5101878056694, + 25.9763537169571 + ], + [ + -80.53013146509278, + 26.00767922237879 + ], + [ + -80.55007512451617, + 25.9763537169571 + ], + [ + -80.5101878056694, + 25.9763537169571 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.5101878056694, + 25.9763537169571 + ], + [ + -80.55007512451617, + 25.9763537169571 + ], + [ + -80.53013146509278, + 25.94502821153541 + ], + [ + -80.5101878056694, + 25.9763537169571 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.5101878056694, + 25.9763537169571 + ], + [ + -80.53013146509278, + 25.94502821153541 + ], + [ + -80.49024414624603, + 25.94502821153541 + ], + [ + -80.5101878056694, + 25.9763537169571 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.5101878056694, + 25.9763537169571 + ], + [ + -80.49024414624603, + 25.94502821153541 + ], + [ + -80.47030048682264, + 25.9763537169571 + ], + [ + -80.5101878056694, + 25.9763537169571 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.5101878056694, + 26.039004727800485 + ], + [ + -80.47030048682264, + 26.039004727800485 + ], + [ + -80.49024414624603, + 26.070330233222176 + ], + [ + -80.5101878056694, + 26.039004727800485 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.5101878056694, + 26.039004727800485 + ], + [ + -80.49024414624603, + 26.070330233222176 + ], + [ + -80.53013146509278, + 26.070330233222176 + ], + [ + -80.5101878056694, + 26.039004727800485 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.5101878056694, + 26.039004727800485 + ], + [ + -80.53013146509278, + 26.070330233222176 + ], + [ + -80.55007512451617, + 26.039004727800485 + ], + [ + -80.5101878056694, + 26.039004727800485 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.5101878056694, + 26.039004727800485 + ], + [ + -80.55007512451617, + 26.039004727800485 + ], + [ + -80.53013146509278, + 26.007679222378794 + ], + [ + -80.5101878056694, + 26.039004727800485 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.5101878056694, + 26.039004727800485 + ], + [ + -80.53013146509278, + 26.007679222378794 + ], + [ + -80.49024414624603, + 26.007679222378794 + ], + [ + -80.5101878056694, + 26.039004727800485 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.5101878056694, + 26.039004727800485 + ], + [ + -80.49024414624603, + 26.007679222378794 + ], + [ + -80.47030048682264, + 26.039004727800485 + ], + [ + -80.5101878056694, + 26.039004727800485 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.5101878056694, + 26.10165573864387 + ], + [ + -80.47030048682264, + 26.10165573864387 + ], + [ + -80.49024414624603, + 26.13298124406556 + ], + [ + -80.5101878056694, + 26.10165573864387 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.5101878056694, + 26.10165573864387 + ], + [ + -80.49024414624603, + 26.13298124406556 + ], + [ + -80.53013146509278, + 26.13298124406556 + ], + [ + -80.5101878056694, + 26.10165573864387 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.5101878056694, + 26.10165573864387 + ], + [ + -80.53013146509278, + 26.13298124406556 + ], + [ + -80.55007512451617, + 26.10165573864387 + ], + [ + -80.5101878056694, + 26.10165573864387 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.5101878056694, + 26.10165573864387 + ], + [ + -80.55007512451617, + 26.10165573864387 + ], + [ + -80.53013146509278, + 26.07033023322218 + ], + [ + -80.5101878056694, + 26.10165573864387 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.5101878056694, + 26.10165573864387 + ], + [ + -80.53013146509278, + 26.07033023322218 + ], + [ + -80.49024414624603, + 26.07033023322218 + ], + [ + -80.5101878056694, + 26.10165573864387 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.5101878056694, + 26.10165573864387 + ], + [ + -80.49024414624603, + 26.07033023322218 + ], + [ + -80.47030048682264, + 26.10165573864387 + ], + [ + -80.5101878056694, + 26.10165573864387 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.5101878056694, + 26.164306749487253 + ], + [ + -80.47030048682264, + 26.164306749487253 + ], + [ + -80.49024414624603, + 26.195632254908944 + ], + [ + -80.5101878056694, + 26.164306749487253 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.5101878056694, + 26.164306749487253 + ], + [ + -80.49024414624603, + 26.195632254908944 + ], + [ + -80.53013146509278, + 26.195632254908944 + ], + [ + -80.5101878056694, + 26.164306749487253 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.5101878056694, + 26.164306749487253 + ], + [ + -80.53013146509278, + 26.195632254908944 + ], + [ + -80.55007512451617, + 26.164306749487253 + ], + [ + -80.5101878056694, + 26.164306749487253 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.5101878056694, + 26.164306749487253 + ], + [ + -80.55007512451617, + 26.164306749487253 + ], + [ + -80.53013146509278, + 26.13298124406556 + ], + [ + -80.5101878056694, + 26.164306749487253 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.5101878056694, + 26.164306749487253 + ], + [ + -80.53013146509278, + 26.13298124406556 + ], + [ + -80.49024414624603, + 26.13298124406556 + ], + [ + -80.5101878056694, + 26.164306749487253 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.5101878056694, + 26.164306749487253 + ], + [ + -80.49024414624603, + 26.13298124406556 + ], + [ + -80.47030048682264, + 26.164306749487253 + ], + [ + -80.5101878056694, + 26.164306749487253 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.5101878056694, + 26.22695776033064 + ], + [ + -80.47030048682264, + 26.22695776033064 + ], + [ + -80.49024414624603, + 26.258283265752333 + ], + [ + -80.5101878056694, + 26.22695776033064 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.5101878056694, + 26.22695776033064 + ], + [ + -80.49024414624603, + 26.258283265752333 + ], + [ + -80.53013146509278, + 26.258283265752333 + ], + [ + -80.5101878056694, + 26.22695776033064 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.5101878056694, + 26.22695776033064 + ], + [ + -80.53013146509278, + 26.258283265752333 + ], + [ + -80.55007512451617, + 26.22695776033064 + ], + [ + -80.5101878056694, + 26.22695776033064 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.5101878056694, + 26.22695776033064 + ], + [ + -80.55007512451617, + 26.22695776033064 + ], + [ + -80.53013146509278, + 26.19563225490895 + ], + [ + -80.5101878056694, + 26.22695776033064 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.5101878056694, + 26.22695776033064 + ], + [ + -80.53013146509278, + 26.19563225490895 + ], + [ + -80.49024414624603, + 26.19563225490895 + ], + [ + -80.5101878056694, + 26.22695776033064 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.5101878056694, + 26.22695776033064 + ], + [ + -80.49024414624603, + 26.19563225490895 + ], + [ + -80.47030048682264, + 26.22695776033064 + ], + [ + -80.5101878056694, + 26.22695776033064 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.5101878056694, + 26.289608771174024 + ], + [ + -80.47030048682264, + 26.289608771174024 + ], + [ + -80.49024414624603, + 26.320934276595715 + ], + [ + -80.5101878056694, + 26.289608771174024 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.5101878056694, + 26.289608771174024 + ], + [ + -80.49024414624603, + 26.320934276595715 + ], + [ + -80.53013146509278, + 26.320934276595715 + ], + [ + -80.5101878056694, + 26.289608771174024 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.5101878056694, + 26.289608771174024 + ], + [ + -80.53013146509278, + 26.320934276595715 + ], + [ + -80.55007512451617, + 26.289608771174024 + ], + [ + -80.5101878056694, + 26.289608771174024 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.5101878056694, + 26.289608771174024 + ], + [ + -80.55007512451617, + 26.289608771174024 + ], + [ + -80.53013146509278, + 26.258283265752333 + ], + [ + -80.5101878056694, + 26.289608771174024 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.5101878056694, + 26.289608771174024 + ], + [ + -80.53013146509278, + 26.258283265752333 + ], + [ + -80.49024414624603, + 26.258283265752333 + ], + [ + -80.5101878056694, + 26.289608771174024 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.5101878056694, + 26.289608771174024 + ], + [ + -80.49024414624603, + 26.258283265752333 + ], + [ + -80.47030048682264, + 26.289608771174024 + ], + [ + -80.5101878056694, + 26.289608771174024 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.5101878056694, + 26.35225978201741 + ], + [ + -80.47030048682264, + 26.35225978201741 + ], + [ + -80.49024414624603, + 26.3835852874391 + ], + [ + -80.5101878056694, + 26.35225978201741 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.5101878056694, + 26.35225978201741 + ], + [ + -80.49024414624603, + 26.3835852874391 + ], + [ + -80.53013146509278, + 26.3835852874391 + ], + [ + -80.5101878056694, + 26.35225978201741 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.5101878056694, + 26.35225978201741 + ], + [ + -80.53013146509278, + 26.3835852874391 + ], + [ + -80.55007512451617, + 26.35225978201741 + ], + [ + -80.5101878056694, + 26.35225978201741 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.5101878056694, + 26.35225978201741 + ], + [ + -80.55007512451617, + 26.35225978201741 + ], + [ + -80.53013146509278, + 26.320934276595718 + ], + [ + -80.5101878056694, + 26.35225978201741 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.5101878056694, + 26.35225978201741 + ], + [ + -80.53013146509278, + 26.320934276595718 + ], + [ + -80.49024414624603, + 26.320934276595718 + ], + [ + -80.5101878056694, + 26.35225978201741 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.5101878056694, + 26.35225978201741 + ], + [ + -80.49024414624603, + 26.320934276595718 + ], + [ + -80.47030048682264, + 26.35225978201741 + ], + [ + -80.5101878056694, + 26.35225978201741 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.5101878056694, + 26.414910792860795 + ], + [ + -80.47030048682264, + 26.414910792860795 + ], + [ + -80.49024414624603, + 26.446236298282486 + ], + [ + -80.5101878056694, + 26.414910792860795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.5101878056694, + 26.414910792860795 + ], + [ + -80.49024414624603, + 26.446236298282486 + ], + [ + -80.53013146509278, + 26.446236298282486 + ], + [ + -80.5101878056694, + 26.414910792860795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.5101878056694, + 26.414910792860795 + ], + [ + -80.53013146509278, + 26.446236298282486 + ], + [ + -80.55007512451617, + 26.414910792860795 + ], + [ + -80.5101878056694, + 26.414910792860795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.5101878056694, + 26.414910792860795 + ], + [ + -80.55007512451617, + 26.414910792860795 + ], + [ + -80.53013146509278, + 26.383585287439104 + ], + [ + -80.5101878056694, + 26.414910792860795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.5101878056694, + 26.414910792860795 + ], + [ + -80.53013146509278, + 26.383585287439104 + ], + [ + -80.49024414624603, + 26.383585287439104 + ], + [ + -80.5101878056694, + 26.414910792860795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.5101878056694, + 26.414910792860795 + ], + [ + -80.49024414624603, + 26.383585287439104 + ], + [ + -80.47030048682264, + 26.414910792860795 + ], + [ + -80.5101878056694, + 26.414910792860795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45035682739926, + 24.942612038041236 + ], + [ + -80.4104695085525, + 24.942612038041236 + ], + [ + -80.43041316797589, + 24.973937543462927 + ], + [ + -80.45035682739926, + 24.942612038041236 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45035682739926, + 24.942612038041236 + ], + [ + -80.43041316797589, + 24.973937543462927 + ], + [ + -80.47030048682264, + 24.973937543462927 + ], + [ + -80.45035682739926, + 24.942612038041236 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45035682739926, + 24.942612038041236 + ], + [ + -80.47030048682264, + 24.973937543462927 + ], + [ + -80.49024414624603, + 24.942612038041236 + ], + [ + -80.45035682739926, + 24.942612038041236 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45035682739926, + 24.942612038041236 + ], + [ + -80.49024414624603, + 24.942612038041236 + ], + [ + -80.47030048682264, + 24.911286532619545 + ], + [ + -80.45035682739926, + 24.942612038041236 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45035682739926, + 24.942612038041236 + ], + [ + -80.47030048682264, + 24.911286532619545 + ], + [ + -80.43041316797589, + 24.911286532619545 + ], + [ + -80.45035682739926, + 24.942612038041236 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45035682739926, + 24.942612038041236 + ], + [ + -80.43041316797589, + 24.911286532619545 + ], + [ + -80.4104695085525, + 24.942612038041236 + ], + [ + -80.45035682739926, + 24.942612038041236 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45035682739926, + 25.005263048884622 + ], + [ + -80.4104695085525, + 25.005263048884622 + ], + [ + -80.43041316797589, + 25.036588554306313 + ], + [ + -80.45035682739926, + 25.005263048884622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45035682739926, + 25.005263048884622 + ], + [ + -80.43041316797589, + 25.036588554306313 + ], + [ + -80.47030048682264, + 25.036588554306313 + ], + [ + -80.45035682739926, + 25.005263048884622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45035682739926, + 25.005263048884622 + ], + [ + -80.47030048682264, + 25.036588554306313 + ], + [ + -80.49024414624603, + 25.005263048884622 + ], + [ + -80.45035682739926, + 25.005263048884622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45035682739926, + 25.005263048884622 + ], + [ + -80.49024414624603, + 25.005263048884622 + ], + [ + -80.47030048682264, + 24.97393754346293 + ], + [ + -80.45035682739926, + 25.005263048884622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45035682739926, + 25.005263048884622 + ], + [ + -80.47030048682264, + 24.97393754346293 + ], + [ + -80.43041316797589, + 24.97393754346293 + ], + [ + -80.45035682739926, + 25.005263048884622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45035682739926, + 25.005263048884622 + ], + [ + -80.43041316797589, + 24.97393754346293 + ], + [ + -80.4104695085525, + 25.005263048884622 + ], + [ + -80.45035682739926, + 25.005263048884622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45035682739926, + 25.067914059728007 + ], + [ + -80.4104695085525, + 25.067914059728007 + ], + [ + -80.43041316797589, + 25.0992395651497 + ], + [ + -80.45035682739926, + 25.067914059728007 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45035682739926, + 25.067914059728007 + ], + [ + -80.43041316797589, + 25.0992395651497 + ], + [ + -80.47030048682264, + 25.0992395651497 + ], + [ + -80.45035682739926, + 25.067914059728007 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45035682739926, + 25.067914059728007 + ], + [ + -80.47030048682264, + 25.0992395651497 + ], + [ + -80.49024414624603, + 25.067914059728007 + ], + [ + -80.45035682739926, + 25.067914059728007 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45035682739926, + 25.067914059728007 + ], + [ + -80.49024414624603, + 25.067914059728007 + ], + [ + -80.47030048682264, + 25.036588554306316 + ], + [ + -80.45035682739926, + 25.067914059728007 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45035682739926, + 25.067914059728007 + ], + [ + -80.47030048682264, + 25.036588554306316 + ], + [ + -80.43041316797589, + 25.036588554306316 + ], + [ + -80.45035682739926, + 25.067914059728007 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45035682739926, + 25.067914059728007 + ], + [ + -80.43041316797589, + 25.036588554306316 + ], + [ + -80.4104695085525, + 25.067914059728007 + ], + [ + -80.45035682739926, + 25.067914059728007 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45035682739926, + 25.130565070571393 + ], + [ + -80.4104695085525, + 25.130565070571393 + ], + [ + -80.43041316797589, + 25.161890575993084 + ], + [ + -80.45035682739926, + 25.130565070571393 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45035682739926, + 25.130565070571393 + ], + [ + -80.43041316797589, + 25.161890575993084 + ], + [ + -80.47030048682264, + 25.161890575993084 + ], + [ + -80.45035682739926, + 25.130565070571393 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45035682739926, + 25.130565070571393 + ], + [ + -80.47030048682264, + 25.161890575993084 + ], + [ + -80.49024414624603, + 25.130565070571393 + ], + [ + -80.45035682739926, + 25.130565070571393 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45035682739926, + 25.130565070571393 + ], + [ + -80.49024414624603, + 25.130565070571393 + ], + [ + -80.47030048682264, + 25.099239565149702 + ], + [ + -80.45035682739926, + 25.130565070571393 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45035682739926, + 25.130565070571393 + ], + [ + -80.47030048682264, + 25.099239565149702 + ], + [ + -80.43041316797589, + 25.099239565149702 + ], + [ + -80.45035682739926, + 25.130565070571393 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45035682739926, + 25.130565070571393 + ], + [ + -80.43041316797589, + 25.099239565149702 + ], + [ + -80.4104695085525, + 25.130565070571393 + ], + [ + -80.45035682739926, + 25.130565070571393 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45035682739926, + 25.19321608141478 + ], + [ + -80.4104695085525, + 25.19321608141478 + ], + [ + -80.43041316797589, + 25.22454158683647 + ], + [ + -80.45035682739926, + 25.19321608141478 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45035682739926, + 25.19321608141478 + ], + [ + -80.43041316797589, + 25.22454158683647 + ], + [ + -80.47030048682264, + 25.22454158683647 + ], + [ + -80.45035682739926, + 25.19321608141478 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45035682739926, + 25.19321608141478 + ], + [ + -80.47030048682264, + 25.22454158683647 + ], + [ + -80.49024414624603, + 25.19321608141478 + ], + [ + -80.45035682739926, + 25.19321608141478 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45035682739926, + 25.19321608141478 + ], + [ + -80.49024414624603, + 25.19321608141478 + ], + [ + -80.47030048682264, + 25.161890575993088 + ], + [ + -80.45035682739926, + 25.19321608141478 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45035682739926, + 25.19321608141478 + ], + [ + -80.47030048682264, + 25.161890575993088 + ], + [ + -80.43041316797589, + 25.161890575993088 + ], + [ + -80.45035682739926, + 25.19321608141478 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45035682739926, + 25.19321608141478 + ], + [ + -80.43041316797589, + 25.161890575993088 + ], + [ + -80.4104695085525, + 25.19321608141478 + ], + [ + -80.45035682739926, + 25.19321608141478 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45035682739926, + 25.255867092258164 + ], + [ + -80.4104695085525, + 25.255867092258164 + ], + [ + -80.43041316797589, + 25.287192597679855 + ], + [ + -80.45035682739926, + 25.255867092258164 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45035682739926, + 25.255867092258164 + ], + [ + -80.43041316797589, + 25.287192597679855 + ], + [ + -80.47030048682264, + 25.287192597679855 + ], + [ + -80.45035682739926, + 25.255867092258164 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45035682739926, + 25.255867092258164 + ], + [ + -80.47030048682264, + 25.287192597679855 + ], + [ + -80.49024414624603, + 25.255867092258164 + ], + [ + -80.45035682739926, + 25.255867092258164 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45035682739926, + 25.255867092258164 + ], + [ + -80.49024414624603, + 25.255867092258164 + ], + [ + -80.47030048682264, + 25.224541586836473 + ], + [ + -80.45035682739926, + 25.255867092258164 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45035682739926, + 25.255867092258164 + ], + [ + -80.47030048682264, + 25.224541586836473 + ], + [ + -80.43041316797589, + 25.224541586836473 + ], + [ + -80.45035682739926, + 25.255867092258164 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45035682739926, + 25.255867092258164 + ], + [ + -80.43041316797589, + 25.224541586836473 + ], + [ + -80.4104695085525, + 25.255867092258164 + ], + [ + -80.45035682739926, + 25.255867092258164 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45035682739926, + 25.31851810310155 + ], + [ + -80.4104695085525, + 25.31851810310155 + ], + [ + -80.43041316797589, + 25.34984360852324 + ], + [ + -80.45035682739926, + 25.31851810310155 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45035682739926, + 25.31851810310155 + ], + [ + -80.43041316797589, + 25.34984360852324 + ], + [ + -80.47030048682264, + 25.34984360852324 + ], + [ + -80.45035682739926, + 25.31851810310155 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45035682739926, + 25.31851810310155 + ], + [ + -80.47030048682264, + 25.34984360852324 + ], + [ + -80.49024414624603, + 25.31851810310155 + ], + [ + -80.45035682739926, + 25.31851810310155 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45035682739926, + 25.31851810310155 + ], + [ + -80.49024414624603, + 25.31851810310155 + ], + [ + -80.47030048682264, + 25.28719259767986 + ], + [ + -80.45035682739926, + 25.31851810310155 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45035682739926, + 25.31851810310155 + ], + [ + -80.47030048682264, + 25.28719259767986 + ], + [ + -80.43041316797589, + 25.28719259767986 + ], + [ + -80.45035682739926, + 25.31851810310155 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45035682739926, + 25.31851810310155 + ], + [ + -80.43041316797589, + 25.28719259767986 + ], + [ + -80.4104695085525, + 25.31851810310155 + ], + [ + -80.45035682739926, + 25.31851810310155 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45035682739926, + 25.381169113944935 + ], + [ + -80.4104695085525, + 25.381169113944935 + ], + [ + -80.43041316797589, + 25.412494619366626 + ], + [ + -80.45035682739926, + 25.381169113944935 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45035682739926, + 25.381169113944935 + ], + [ + -80.43041316797589, + 25.412494619366626 + ], + [ + -80.47030048682264, + 25.412494619366626 + ], + [ + -80.45035682739926, + 25.381169113944935 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45035682739926, + 25.381169113944935 + ], + [ + -80.47030048682264, + 25.412494619366626 + ], + [ + -80.49024414624603, + 25.381169113944935 + ], + [ + -80.45035682739926, + 25.381169113944935 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45035682739926, + 25.381169113944935 + ], + [ + -80.49024414624603, + 25.381169113944935 + ], + [ + -80.47030048682264, + 25.349843608523244 + ], + [ + -80.45035682739926, + 25.381169113944935 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45035682739926, + 25.381169113944935 + ], + [ + -80.47030048682264, + 25.349843608523244 + ], + [ + -80.43041316797589, + 25.349843608523244 + ], + [ + -80.45035682739926, + 25.381169113944935 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45035682739926, + 25.381169113944935 + ], + [ + -80.43041316797589, + 25.349843608523244 + ], + [ + -80.4104695085525, + 25.381169113944935 + ], + [ + -80.45035682739926, + 25.381169113944935 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45035682739926, + 25.44382012478832 + ], + [ + -80.4104695085525, + 25.44382012478832 + ], + [ + -80.43041316797589, + 25.47514563021001 + ], + [ + -80.45035682739926, + 25.44382012478832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45035682739926, + 25.44382012478832 + ], + [ + -80.43041316797589, + 25.47514563021001 + ], + [ + -80.47030048682264, + 25.47514563021001 + ], + [ + -80.45035682739926, + 25.44382012478832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45035682739926, + 25.44382012478832 + ], + [ + -80.47030048682264, + 25.47514563021001 + ], + [ + -80.49024414624603, + 25.44382012478832 + ], + [ + -80.45035682739926, + 25.44382012478832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45035682739926, + 25.44382012478832 + ], + [ + -80.49024414624603, + 25.44382012478832 + ], + [ + -80.47030048682264, + 25.41249461936663 + ], + [ + -80.45035682739926, + 25.44382012478832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45035682739926, + 25.44382012478832 + ], + [ + -80.47030048682264, + 25.41249461936663 + ], + [ + -80.43041316797589, + 25.41249461936663 + ], + [ + -80.45035682739926, + 25.44382012478832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45035682739926, + 25.44382012478832 + ], + [ + -80.43041316797589, + 25.41249461936663 + ], + [ + -80.4104695085525, + 25.44382012478832 + ], + [ + -80.45035682739926, + 25.44382012478832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45035682739926, + 25.506471135631706 + ], + [ + -80.4104695085525, + 25.506471135631706 + ], + [ + -80.43041316797589, + 25.537796641053397 + ], + [ + -80.45035682739926, + 25.506471135631706 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45035682739926, + 25.506471135631706 + ], + [ + -80.43041316797589, + 25.537796641053397 + ], + [ + -80.47030048682264, + 25.537796641053397 + ], + [ + -80.45035682739926, + 25.506471135631706 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45035682739926, + 25.506471135631706 + ], + [ + -80.47030048682264, + 25.537796641053397 + ], + [ + -80.49024414624603, + 25.506471135631706 + ], + [ + -80.45035682739926, + 25.506471135631706 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45035682739926, + 25.506471135631706 + ], + [ + -80.49024414624603, + 25.506471135631706 + ], + [ + -80.47030048682264, + 25.475145630210015 + ], + [ + -80.45035682739926, + 25.506471135631706 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45035682739926, + 25.506471135631706 + ], + [ + -80.47030048682264, + 25.475145630210015 + ], + [ + -80.43041316797589, + 25.475145630210015 + ], + [ + -80.45035682739926, + 25.506471135631706 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45035682739926, + 25.506471135631706 + ], + [ + -80.43041316797589, + 25.475145630210015 + ], + [ + -80.4104695085525, + 25.506471135631706 + ], + [ + -80.45035682739926, + 25.506471135631706 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45035682739926, + 25.56912214647509 + ], + [ + -80.4104695085525, + 25.56912214647509 + ], + [ + -80.43041316797589, + 25.600447651896783 + ], + [ + -80.45035682739926, + 25.56912214647509 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45035682739926, + 25.56912214647509 + ], + [ + -80.43041316797589, + 25.600447651896783 + ], + [ + -80.47030048682264, + 25.600447651896783 + ], + [ + -80.45035682739926, + 25.56912214647509 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45035682739926, + 25.56912214647509 + ], + [ + -80.47030048682264, + 25.600447651896783 + ], + [ + -80.49024414624603, + 25.56912214647509 + ], + [ + -80.45035682739926, + 25.56912214647509 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45035682739926, + 25.56912214647509 + ], + [ + -80.49024414624603, + 25.56912214647509 + ], + [ + -80.47030048682264, + 25.5377966410534 + ], + [ + -80.45035682739926, + 25.56912214647509 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45035682739926, + 25.56912214647509 + ], + [ + -80.47030048682264, + 25.5377966410534 + ], + [ + -80.43041316797589, + 25.5377966410534 + ], + [ + -80.45035682739926, + 25.56912214647509 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45035682739926, + 25.56912214647509 + ], + [ + -80.43041316797589, + 25.5377966410534 + ], + [ + -80.4104695085525, + 25.56912214647509 + ], + [ + -80.45035682739926, + 25.56912214647509 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45035682739926, + 25.631773157318477 + ], + [ + -80.4104695085525, + 25.631773157318477 + ], + [ + -80.43041316797589, + 25.66309866274017 + ], + [ + -80.45035682739926, + 25.631773157318477 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45035682739926, + 25.631773157318477 + ], + [ + -80.43041316797589, + 25.66309866274017 + ], + [ + -80.47030048682264, + 25.66309866274017 + ], + [ + -80.45035682739926, + 25.631773157318477 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45035682739926, + 25.631773157318477 + ], + [ + -80.47030048682264, + 25.66309866274017 + ], + [ + -80.49024414624603, + 25.631773157318477 + ], + [ + -80.45035682739926, + 25.631773157318477 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45035682739926, + 25.631773157318477 + ], + [ + -80.49024414624603, + 25.631773157318477 + ], + [ + -80.47030048682264, + 25.600447651896786 + ], + [ + -80.45035682739926, + 25.631773157318477 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45035682739926, + 25.631773157318477 + ], + [ + -80.47030048682264, + 25.600447651896786 + ], + [ + -80.43041316797589, + 25.600447651896786 + ], + [ + -80.45035682739926, + 25.631773157318477 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45035682739926, + 25.631773157318477 + ], + [ + -80.43041316797589, + 25.600447651896786 + ], + [ + -80.4104695085525, + 25.631773157318477 + ], + [ + -80.45035682739926, + 25.631773157318477 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45035682739926, + 25.694424168161863 + ], + [ + -80.4104695085525, + 25.694424168161863 + ], + [ + -80.43041316797589, + 25.725749673583554 + ], + [ + -80.45035682739926, + 25.694424168161863 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45035682739926, + 25.694424168161863 + ], + [ + -80.43041316797589, + 25.725749673583554 + ], + [ + -80.47030048682264, + 25.725749673583554 + ], + [ + -80.45035682739926, + 25.694424168161863 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45035682739926, + 25.694424168161863 + ], + [ + -80.47030048682264, + 25.725749673583554 + ], + [ + -80.49024414624603, + 25.694424168161863 + ], + [ + -80.45035682739926, + 25.694424168161863 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45035682739926, + 25.694424168161863 + ], + [ + -80.49024414624603, + 25.694424168161863 + ], + [ + -80.47030048682264, + 25.663098662740172 + ], + [ + -80.45035682739926, + 25.694424168161863 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45035682739926, + 25.694424168161863 + ], + [ + -80.47030048682264, + 25.663098662740172 + ], + [ + -80.43041316797589, + 25.663098662740172 + ], + [ + -80.45035682739926, + 25.694424168161863 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45035682739926, + 25.694424168161863 + ], + [ + -80.43041316797589, + 25.663098662740172 + ], + [ + -80.4104695085525, + 25.694424168161863 + ], + [ + -80.45035682739926, + 25.694424168161863 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45035682739926, + 25.75707517900525 + ], + [ + -80.4104695085525, + 25.75707517900525 + ], + [ + -80.43041316797589, + 25.78840068442694 + ], + [ + -80.45035682739926, + 25.75707517900525 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45035682739926, + 25.75707517900525 + ], + [ + -80.43041316797589, + 25.78840068442694 + ], + [ + -80.47030048682264, + 25.78840068442694 + ], + [ + -80.45035682739926, + 25.75707517900525 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45035682739926, + 25.75707517900525 + ], + [ + -80.47030048682264, + 25.78840068442694 + ], + [ + -80.49024414624603, + 25.75707517900525 + ], + [ + -80.45035682739926, + 25.75707517900525 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45035682739926, + 25.75707517900525 + ], + [ + -80.49024414624603, + 25.75707517900525 + ], + [ + -80.47030048682264, + 25.725749673583557 + ], + [ + -80.45035682739926, + 25.75707517900525 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45035682739926, + 25.75707517900525 + ], + [ + -80.47030048682264, + 25.725749673583557 + ], + [ + -80.43041316797589, + 25.725749673583557 + ], + [ + -80.45035682739926, + 25.75707517900525 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45035682739926, + 25.75707517900525 + ], + [ + -80.43041316797589, + 25.725749673583557 + ], + [ + -80.4104695085525, + 25.75707517900525 + ], + [ + -80.45035682739926, + 25.75707517900525 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45035682739926, + 25.819726189848634 + ], + [ + -80.4104695085525, + 25.819726189848634 + ], + [ + -80.43041316797589, + 25.851051695270325 + ], + [ + -80.45035682739926, + 25.819726189848634 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45035682739926, + 25.819726189848634 + ], + [ + -80.43041316797589, + 25.851051695270325 + ], + [ + -80.47030048682264, + 25.851051695270325 + ], + [ + -80.45035682739926, + 25.819726189848634 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45035682739926, + 25.819726189848634 + ], + [ + -80.47030048682264, + 25.851051695270325 + ], + [ + -80.49024414624603, + 25.819726189848634 + ], + [ + -80.45035682739926, + 25.819726189848634 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45035682739926, + 25.819726189848634 + ], + [ + -80.49024414624603, + 25.819726189848634 + ], + [ + -80.47030048682264, + 25.788400684426943 + ], + [ + -80.45035682739926, + 25.819726189848634 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45035682739926, + 25.819726189848634 + ], + [ + -80.47030048682264, + 25.788400684426943 + ], + [ + -80.43041316797589, + 25.788400684426943 + ], + [ + -80.45035682739926, + 25.819726189848634 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45035682739926, + 25.819726189848634 + ], + [ + -80.43041316797589, + 25.788400684426943 + ], + [ + -80.4104695085525, + 25.819726189848634 + ], + [ + -80.45035682739926, + 25.819726189848634 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45035682739926, + 25.88237720069202 + ], + [ + -80.4104695085525, + 25.88237720069202 + ], + [ + -80.43041316797589, + 25.91370270611371 + ], + [ + -80.45035682739926, + 25.88237720069202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45035682739926, + 25.88237720069202 + ], + [ + -80.43041316797589, + 25.91370270611371 + ], + [ + -80.47030048682264, + 25.91370270611371 + ], + [ + -80.45035682739926, + 25.88237720069202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45035682739926, + 25.88237720069202 + ], + [ + -80.47030048682264, + 25.91370270611371 + ], + [ + -80.49024414624603, + 25.88237720069202 + ], + [ + -80.45035682739926, + 25.88237720069202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45035682739926, + 25.88237720069202 + ], + [ + -80.49024414624603, + 25.88237720069202 + ], + [ + -80.47030048682264, + 25.85105169527033 + ], + [ + -80.45035682739926, + 25.88237720069202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45035682739926, + 25.88237720069202 + ], + [ + -80.47030048682264, + 25.85105169527033 + ], + [ + -80.43041316797589, + 25.85105169527033 + ], + [ + -80.45035682739926, + 25.88237720069202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45035682739926, + 25.88237720069202 + ], + [ + -80.43041316797589, + 25.85105169527033 + ], + [ + -80.4104695085525, + 25.88237720069202 + ], + [ + -80.45035682739926, + 25.88237720069202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45035682739926, + 25.945028211535405 + ], + [ + -80.4104695085525, + 25.945028211535405 + ], + [ + -80.43041316797589, + 25.976353716957096 + ], + [ + -80.45035682739926, + 25.945028211535405 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45035682739926, + 25.945028211535405 + ], + [ + -80.43041316797589, + 25.976353716957096 + ], + [ + -80.47030048682264, + 25.976353716957096 + ], + [ + -80.45035682739926, + 25.945028211535405 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45035682739926, + 25.945028211535405 + ], + [ + -80.47030048682264, + 25.976353716957096 + ], + [ + -80.49024414624603, + 25.945028211535405 + ], + [ + -80.45035682739926, + 25.945028211535405 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45035682739926, + 25.945028211535405 + ], + [ + -80.49024414624603, + 25.945028211535405 + ], + [ + -80.47030048682264, + 25.913702706113714 + ], + [ + -80.45035682739926, + 25.945028211535405 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45035682739926, + 25.945028211535405 + ], + [ + -80.47030048682264, + 25.913702706113714 + ], + [ + -80.43041316797589, + 25.913702706113714 + ], + [ + -80.45035682739926, + 25.945028211535405 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45035682739926, + 25.945028211535405 + ], + [ + -80.43041316797589, + 25.913702706113714 + ], + [ + -80.4104695085525, + 25.945028211535405 + ], + [ + -80.45035682739926, + 25.945028211535405 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45035682739926, + 26.00767922237879 + ], + [ + -80.4104695085525, + 26.00767922237879 + ], + [ + -80.43041316797589, + 26.03900472780048 + ], + [ + -80.45035682739926, + 26.00767922237879 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45035682739926, + 26.00767922237879 + ], + [ + -80.43041316797589, + 26.03900472780048 + ], + [ + -80.47030048682264, + 26.03900472780048 + ], + [ + -80.45035682739926, + 26.00767922237879 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45035682739926, + 26.00767922237879 + ], + [ + -80.47030048682264, + 26.03900472780048 + ], + [ + -80.49024414624603, + 26.00767922237879 + ], + [ + -80.45035682739926, + 26.00767922237879 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45035682739926, + 26.00767922237879 + ], + [ + -80.49024414624603, + 26.00767922237879 + ], + [ + -80.47030048682264, + 25.9763537169571 + ], + [ + -80.45035682739926, + 26.00767922237879 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45035682739926, + 26.00767922237879 + ], + [ + -80.47030048682264, + 25.9763537169571 + ], + [ + -80.43041316797589, + 25.9763537169571 + ], + [ + -80.45035682739926, + 26.00767922237879 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45035682739926, + 26.00767922237879 + ], + [ + -80.43041316797589, + 25.9763537169571 + ], + [ + -80.4104695085525, + 26.00767922237879 + ], + [ + -80.45035682739926, + 26.00767922237879 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45035682739926, + 26.070330233222176 + ], + [ + -80.4104695085525, + 26.070330233222176 + ], + [ + -80.43041316797589, + 26.101655738643867 + ], + [ + -80.45035682739926, + 26.070330233222176 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45035682739926, + 26.070330233222176 + ], + [ + -80.43041316797589, + 26.101655738643867 + ], + [ + -80.47030048682264, + 26.101655738643867 + ], + [ + -80.45035682739926, + 26.070330233222176 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45035682739926, + 26.070330233222176 + ], + [ + -80.47030048682264, + 26.101655738643867 + ], + [ + -80.49024414624603, + 26.070330233222176 + ], + [ + -80.45035682739926, + 26.070330233222176 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45035682739926, + 26.070330233222176 + ], + [ + -80.49024414624603, + 26.070330233222176 + ], + [ + -80.47030048682264, + 26.039004727800485 + ], + [ + -80.45035682739926, + 26.070330233222176 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45035682739926, + 26.070330233222176 + ], + [ + -80.47030048682264, + 26.039004727800485 + ], + [ + -80.43041316797589, + 26.039004727800485 + ], + [ + -80.45035682739926, + 26.070330233222176 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45035682739926, + 26.070330233222176 + ], + [ + -80.43041316797589, + 26.039004727800485 + ], + [ + -80.4104695085525, + 26.070330233222176 + ], + [ + -80.45035682739926, + 26.070330233222176 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45035682739926, + 26.13298124406556 + ], + [ + -80.4104695085525, + 26.13298124406556 + ], + [ + -80.43041316797589, + 26.164306749487253 + ], + [ + -80.45035682739926, + 26.13298124406556 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45035682739926, + 26.13298124406556 + ], + [ + -80.43041316797589, + 26.164306749487253 + ], + [ + -80.47030048682264, + 26.164306749487253 + ], + [ + -80.45035682739926, + 26.13298124406556 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45035682739926, + 26.13298124406556 + ], + [ + -80.47030048682264, + 26.164306749487253 + ], + [ + -80.49024414624603, + 26.13298124406556 + ], + [ + -80.45035682739926, + 26.13298124406556 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45035682739926, + 26.13298124406556 + ], + [ + -80.49024414624603, + 26.13298124406556 + ], + [ + -80.47030048682264, + 26.10165573864387 + ], + [ + -80.45035682739926, + 26.13298124406556 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45035682739926, + 26.13298124406556 + ], + [ + -80.47030048682264, + 26.10165573864387 + ], + [ + -80.43041316797589, + 26.10165573864387 + ], + [ + -80.45035682739926, + 26.13298124406556 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45035682739926, + 26.13298124406556 + ], + [ + -80.43041316797589, + 26.10165573864387 + ], + [ + -80.4104695085525, + 26.13298124406556 + ], + [ + -80.45035682739926, + 26.13298124406556 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45035682739926, + 26.195632254908944 + ], + [ + -80.4104695085525, + 26.195632254908944 + ], + [ + -80.43041316797589, + 26.226957760330635 + ], + [ + -80.45035682739926, + 26.195632254908944 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45035682739926, + 26.195632254908944 + ], + [ + -80.43041316797589, + 26.226957760330635 + ], + [ + -80.47030048682264, + 26.226957760330635 + ], + [ + -80.45035682739926, + 26.195632254908944 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45035682739926, + 26.195632254908944 + ], + [ + -80.47030048682264, + 26.226957760330635 + ], + [ + -80.49024414624603, + 26.195632254908944 + ], + [ + -80.45035682739926, + 26.195632254908944 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45035682739926, + 26.195632254908944 + ], + [ + -80.49024414624603, + 26.195632254908944 + ], + [ + -80.47030048682264, + 26.164306749487253 + ], + [ + -80.45035682739926, + 26.195632254908944 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45035682739926, + 26.195632254908944 + ], + [ + -80.47030048682264, + 26.164306749487253 + ], + [ + -80.43041316797589, + 26.164306749487253 + ], + [ + -80.45035682739926, + 26.195632254908944 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45035682739926, + 26.195632254908944 + ], + [ + -80.43041316797589, + 26.164306749487253 + ], + [ + -80.4104695085525, + 26.195632254908944 + ], + [ + -80.45035682739926, + 26.195632254908944 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45035682739926, + 26.258283265752333 + ], + [ + -80.4104695085525, + 26.258283265752333 + ], + [ + -80.43041316797589, + 26.289608771174024 + ], + [ + -80.45035682739926, + 26.258283265752333 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45035682739926, + 26.258283265752333 + ], + [ + -80.43041316797589, + 26.289608771174024 + ], + [ + -80.47030048682264, + 26.289608771174024 + ], + [ + -80.45035682739926, + 26.258283265752333 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45035682739926, + 26.258283265752333 + ], + [ + -80.47030048682264, + 26.289608771174024 + ], + [ + -80.49024414624603, + 26.258283265752333 + ], + [ + -80.45035682739926, + 26.258283265752333 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45035682739926, + 26.258283265752333 + ], + [ + -80.49024414624603, + 26.258283265752333 + ], + [ + -80.47030048682264, + 26.22695776033064 + ], + [ + -80.45035682739926, + 26.258283265752333 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45035682739926, + 26.258283265752333 + ], + [ + -80.47030048682264, + 26.22695776033064 + ], + [ + -80.43041316797589, + 26.22695776033064 + ], + [ + -80.45035682739926, + 26.258283265752333 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45035682739926, + 26.258283265752333 + ], + [ + -80.43041316797589, + 26.22695776033064 + ], + [ + -80.4104695085525, + 26.258283265752333 + ], + [ + -80.45035682739926, + 26.258283265752333 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45035682739926, + 26.320934276595715 + ], + [ + -80.4104695085525, + 26.320934276595715 + ], + [ + -80.43041316797589, + 26.352259782017406 + ], + [ + -80.45035682739926, + 26.320934276595715 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45035682739926, + 26.320934276595715 + ], + [ + -80.43041316797589, + 26.352259782017406 + ], + [ + -80.47030048682264, + 26.352259782017406 + ], + [ + -80.45035682739926, + 26.320934276595715 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45035682739926, + 26.320934276595715 + ], + [ + -80.47030048682264, + 26.352259782017406 + ], + [ + -80.49024414624603, + 26.320934276595715 + ], + [ + -80.45035682739926, + 26.320934276595715 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45035682739926, + 26.320934276595715 + ], + [ + -80.49024414624603, + 26.320934276595715 + ], + [ + -80.47030048682264, + 26.289608771174024 + ], + [ + -80.45035682739926, + 26.320934276595715 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45035682739926, + 26.320934276595715 + ], + [ + -80.47030048682264, + 26.289608771174024 + ], + [ + -80.43041316797589, + 26.289608771174024 + ], + [ + -80.45035682739926, + 26.320934276595715 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45035682739926, + 26.320934276595715 + ], + [ + -80.43041316797589, + 26.289608771174024 + ], + [ + -80.4104695085525, + 26.320934276595715 + ], + [ + -80.45035682739926, + 26.320934276595715 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45035682739926, + 26.3835852874391 + ], + [ + -80.4104695085525, + 26.3835852874391 + ], + [ + -80.43041316797589, + 26.41491079286079 + ], + [ + -80.45035682739926, + 26.3835852874391 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45035682739926, + 26.3835852874391 + ], + [ + -80.43041316797589, + 26.41491079286079 + ], + [ + -80.47030048682264, + 26.41491079286079 + ], + [ + -80.45035682739926, + 26.3835852874391 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45035682739926, + 26.3835852874391 + ], + [ + -80.47030048682264, + 26.41491079286079 + ], + [ + -80.49024414624603, + 26.3835852874391 + ], + [ + -80.45035682739926, + 26.3835852874391 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45035682739926, + 26.3835852874391 + ], + [ + -80.49024414624603, + 26.3835852874391 + ], + [ + -80.47030048682264, + 26.35225978201741 + ], + [ + -80.45035682739926, + 26.3835852874391 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45035682739926, + 26.3835852874391 + ], + [ + -80.47030048682264, + 26.35225978201741 + ], + [ + -80.43041316797589, + 26.35225978201741 + ], + [ + -80.45035682739926, + 26.3835852874391 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45035682739926, + 26.3835852874391 + ], + [ + -80.43041316797589, + 26.35225978201741 + ], + [ + -80.4104695085525, + 26.3835852874391 + ], + [ + -80.45035682739926, + 26.3835852874391 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45035682739926, + 26.446236298282486 + ], + [ + -80.4104695085525, + 26.446236298282486 + ], + [ + -80.43041316797589, + 26.477561803704177 + ], + [ + -80.45035682739926, + 26.446236298282486 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45035682739926, + 26.446236298282486 + ], + [ + -80.43041316797589, + 26.477561803704177 + ], + [ + -80.47030048682264, + 26.477561803704177 + ], + [ + -80.45035682739926, + 26.446236298282486 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45035682739926, + 26.446236298282486 + ], + [ + -80.47030048682264, + 26.477561803704177 + ], + [ + -80.49024414624603, + 26.446236298282486 + ], + [ + -80.45035682739926, + 26.446236298282486 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45035682739926, + 26.446236298282486 + ], + [ + -80.49024414624603, + 26.446236298282486 + ], + [ + -80.47030048682264, + 26.414910792860795 + ], + [ + -80.45035682739926, + 26.446236298282486 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45035682739926, + 26.446236298282486 + ], + [ + -80.47030048682264, + 26.414910792860795 + ], + [ + -80.43041316797589, + 26.414910792860795 + ], + [ + -80.45035682739926, + 26.446236298282486 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45035682739926, + 26.446236298282486 + ], + [ + -80.43041316797589, + 26.414910792860795 + ], + [ + -80.4104695085525, + 26.446236298282486 + ], + [ + -80.45035682739926, + 26.446236298282486 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.39052584912912, + 24.911286532619545 + ], + [ + -80.35063853028235, + 24.911286532619545 + ], + [ + -80.37058218970574, + 24.942612038041236 + ], + [ + -80.39052584912912, + 24.911286532619545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.39052584912912, + 24.911286532619545 + ], + [ + -80.37058218970574, + 24.942612038041236 + ], + [ + -80.4104695085525, + 24.942612038041236 + ], + [ + -80.39052584912912, + 24.911286532619545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.39052584912912, + 24.911286532619545 + ], + [ + -80.4104695085525, + 24.942612038041236 + ], + [ + -80.43041316797589, + 24.911286532619545 + ], + [ + -80.39052584912912, + 24.911286532619545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.39052584912912, + 24.911286532619545 + ], + [ + -80.43041316797589, + 24.911286532619545 + ], + [ + -80.4104695085525, + 24.879961027197854 + ], + [ + -80.39052584912912, + 24.911286532619545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.39052584912912, + 24.911286532619545 + ], + [ + -80.4104695085525, + 24.879961027197854 + ], + [ + -80.37058218970574, + 24.879961027197854 + ], + [ + -80.39052584912912, + 24.911286532619545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.39052584912912, + 24.911286532619545 + ], + [ + -80.37058218970574, + 24.879961027197854 + ], + [ + -80.35063853028235, + 24.911286532619545 + ], + [ + -80.39052584912912, + 24.911286532619545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.39052584912912, + 24.97393754346293 + ], + [ + -80.35063853028235, + 24.97393754346293 + ], + [ + -80.37058218970574, + 25.005263048884622 + ], + [ + -80.39052584912912, + 24.97393754346293 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.39052584912912, + 24.97393754346293 + ], + [ + -80.37058218970574, + 25.005263048884622 + ], + [ + -80.4104695085525, + 25.005263048884622 + ], + [ + -80.39052584912912, + 24.97393754346293 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.39052584912912, + 24.97393754346293 + ], + [ + -80.4104695085525, + 25.005263048884622 + ], + [ + -80.43041316797589, + 24.97393754346293 + ], + [ + -80.39052584912912, + 24.97393754346293 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.39052584912912, + 24.97393754346293 + ], + [ + -80.43041316797589, + 24.97393754346293 + ], + [ + -80.4104695085525, + 24.94261203804124 + ], + [ + -80.39052584912912, + 24.97393754346293 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.39052584912912, + 24.97393754346293 + ], + [ + -80.4104695085525, + 24.94261203804124 + ], + [ + -80.37058218970574, + 24.94261203804124 + ], + [ + -80.39052584912912, + 24.97393754346293 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.39052584912912, + 24.97393754346293 + ], + [ + -80.37058218970574, + 24.94261203804124 + ], + [ + -80.35063853028235, + 24.97393754346293 + ], + [ + -80.39052584912912, + 24.97393754346293 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.39052584912912, + 25.036588554306316 + ], + [ + -80.35063853028235, + 25.036588554306316 + ], + [ + -80.37058218970574, + 25.067914059728007 + ], + [ + -80.39052584912912, + 25.036588554306316 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.39052584912912, + 25.036588554306316 + ], + [ + -80.37058218970574, + 25.067914059728007 + ], + [ + -80.4104695085525, + 25.067914059728007 + ], + [ + -80.39052584912912, + 25.036588554306316 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.39052584912912, + 25.036588554306316 + ], + [ + -80.4104695085525, + 25.067914059728007 + ], + [ + -80.43041316797589, + 25.036588554306316 + ], + [ + -80.39052584912912, + 25.036588554306316 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.39052584912912, + 25.036588554306316 + ], + [ + -80.43041316797589, + 25.036588554306316 + ], + [ + -80.4104695085525, + 25.005263048884625 + ], + [ + -80.39052584912912, + 25.036588554306316 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.39052584912912, + 25.036588554306316 + ], + [ + -80.4104695085525, + 25.005263048884625 + ], + [ + -80.37058218970574, + 25.005263048884625 + ], + [ + -80.39052584912912, + 25.036588554306316 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.39052584912912, + 25.036588554306316 + ], + [ + -80.37058218970574, + 25.005263048884625 + ], + [ + -80.35063853028235, + 25.036588554306316 + ], + [ + -80.39052584912912, + 25.036588554306316 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.39052584912912, + 25.099239565149702 + ], + [ + -80.35063853028235, + 25.099239565149702 + ], + [ + -80.37058218970574, + 25.130565070571393 + ], + [ + -80.39052584912912, + 25.099239565149702 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.39052584912912, + 25.099239565149702 + ], + [ + -80.37058218970574, + 25.130565070571393 + ], + [ + -80.4104695085525, + 25.130565070571393 + ], + [ + -80.39052584912912, + 25.099239565149702 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.39052584912912, + 25.099239565149702 + ], + [ + -80.4104695085525, + 25.130565070571393 + ], + [ + -80.43041316797589, + 25.099239565149702 + ], + [ + -80.39052584912912, + 25.099239565149702 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.39052584912912, + 25.099239565149702 + ], + [ + -80.43041316797589, + 25.099239565149702 + ], + [ + -80.4104695085525, + 25.06791405972801 + ], + [ + -80.39052584912912, + 25.099239565149702 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.39052584912912, + 25.099239565149702 + ], + [ + -80.4104695085525, + 25.06791405972801 + ], + [ + -80.37058218970574, + 25.06791405972801 + ], + [ + -80.39052584912912, + 25.099239565149702 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.39052584912912, + 25.099239565149702 + ], + [ + -80.37058218970574, + 25.06791405972801 + ], + [ + -80.35063853028235, + 25.099239565149702 + ], + [ + -80.39052584912912, + 25.099239565149702 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.39052584912912, + 25.161890575993088 + ], + [ + -80.35063853028235, + 25.161890575993088 + ], + [ + -80.37058218970574, + 25.19321608141478 + ], + [ + -80.39052584912912, + 25.161890575993088 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.39052584912912, + 25.161890575993088 + ], + [ + -80.37058218970574, + 25.19321608141478 + ], + [ + -80.4104695085525, + 25.19321608141478 + ], + [ + -80.39052584912912, + 25.161890575993088 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.39052584912912, + 25.161890575993088 + ], + [ + -80.4104695085525, + 25.19321608141478 + ], + [ + -80.43041316797589, + 25.161890575993088 + ], + [ + -80.39052584912912, + 25.161890575993088 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.39052584912912, + 25.161890575993088 + ], + [ + -80.43041316797589, + 25.161890575993088 + ], + [ + -80.4104695085525, + 25.130565070571397 + ], + [ + -80.39052584912912, + 25.161890575993088 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.39052584912912, + 25.161890575993088 + ], + [ + -80.4104695085525, + 25.130565070571397 + ], + [ + -80.37058218970574, + 25.130565070571397 + ], + [ + -80.39052584912912, + 25.161890575993088 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.39052584912912, + 25.161890575993088 + ], + [ + -80.37058218970574, + 25.130565070571397 + ], + [ + -80.35063853028235, + 25.161890575993088 + ], + [ + -80.39052584912912, + 25.161890575993088 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.39052584912912, + 25.224541586836473 + ], + [ + -80.35063853028235, + 25.224541586836473 + ], + [ + -80.37058218970574, + 25.255867092258164 + ], + [ + -80.39052584912912, + 25.224541586836473 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.39052584912912, + 25.224541586836473 + ], + [ + -80.37058218970574, + 25.255867092258164 + ], + [ + -80.4104695085525, + 25.255867092258164 + ], + [ + -80.39052584912912, + 25.224541586836473 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.39052584912912, + 25.224541586836473 + ], + [ + -80.4104695085525, + 25.255867092258164 + ], + [ + -80.43041316797589, + 25.224541586836473 + ], + [ + -80.39052584912912, + 25.224541586836473 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.39052584912912, + 25.224541586836473 + ], + [ + -80.43041316797589, + 25.224541586836473 + ], + [ + -80.4104695085525, + 25.193216081414782 + ], + [ + -80.39052584912912, + 25.224541586836473 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.39052584912912, + 25.224541586836473 + ], + [ + -80.4104695085525, + 25.193216081414782 + ], + [ + -80.37058218970574, + 25.193216081414782 + ], + [ + -80.39052584912912, + 25.224541586836473 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.39052584912912, + 25.224541586836473 + ], + [ + -80.37058218970574, + 25.193216081414782 + ], + [ + -80.35063853028235, + 25.224541586836473 + ], + [ + -80.39052584912912, + 25.224541586836473 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.39052584912912, + 25.28719259767986 + ], + [ + -80.35063853028235, + 25.28719259767986 + ], + [ + -80.37058218970574, + 25.31851810310155 + ], + [ + -80.39052584912912, + 25.28719259767986 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.39052584912912, + 25.28719259767986 + ], + [ + -80.37058218970574, + 25.31851810310155 + ], + [ + -80.4104695085525, + 25.31851810310155 + ], + [ + -80.39052584912912, + 25.28719259767986 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.39052584912912, + 25.28719259767986 + ], + [ + -80.4104695085525, + 25.31851810310155 + ], + [ + -80.43041316797589, + 25.28719259767986 + ], + [ + -80.39052584912912, + 25.28719259767986 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.39052584912912, + 25.28719259767986 + ], + [ + -80.43041316797589, + 25.28719259767986 + ], + [ + -80.4104695085525, + 25.255867092258168 + ], + [ + -80.39052584912912, + 25.28719259767986 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.39052584912912, + 25.28719259767986 + ], + [ + -80.4104695085525, + 25.255867092258168 + ], + [ + -80.37058218970574, + 25.255867092258168 + ], + [ + -80.39052584912912, + 25.28719259767986 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.39052584912912, + 25.28719259767986 + ], + [ + -80.37058218970574, + 25.255867092258168 + ], + [ + -80.35063853028235, + 25.28719259767986 + ], + [ + -80.39052584912912, + 25.28719259767986 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.39052584912912, + 25.349843608523244 + ], + [ + -80.35063853028235, + 25.349843608523244 + ], + [ + -80.37058218970574, + 25.381169113944935 + ], + [ + -80.39052584912912, + 25.349843608523244 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.39052584912912, + 25.349843608523244 + ], + [ + -80.37058218970574, + 25.381169113944935 + ], + [ + -80.4104695085525, + 25.381169113944935 + ], + [ + -80.39052584912912, + 25.349843608523244 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.39052584912912, + 25.349843608523244 + ], + [ + -80.4104695085525, + 25.381169113944935 + ], + [ + -80.43041316797589, + 25.349843608523244 + ], + [ + -80.39052584912912, + 25.349843608523244 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.39052584912912, + 25.349843608523244 + ], + [ + -80.43041316797589, + 25.349843608523244 + ], + [ + -80.4104695085525, + 25.318518103101553 + ], + [ + -80.39052584912912, + 25.349843608523244 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.39052584912912, + 25.349843608523244 + ], + [ + -80.4104695085525, + 25.318518103101553 + ], + [ + -80.37058218970574, + 25.318518103101553 + ], + [ + -80.39052584912912, + 25.349843608523244 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.39052584912912, + 25.349843608523244 + ], + [ + -80.37058218970574, + 25.318518103101553 + ], + [ + -80.35063853028235, + 25.349843608523244 + ], + [ + -80.39052584912912, + 25.349843608523244 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.39052584912912, + 25.41249461936663 + ], + [ + -80.35063853028235, + 25.41249461936663 + ], + [ + -80.37058218970574, + 25.44382012478832 + ], + [ + -80.39052584912912, + 25.41249461936663 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.39052584912912, + 25.41249461936663 + ], + [ + -80.37058218970574, + 25.44382012478832 + ], + [ + -80.4104695085525, + 25.44382012478832 + ], + [ + -80.39052584912912, + 25.41249461936663 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.39052584912912, + 25.41249461936663 + ], + [ + -80.4104695085525, + 25.44382012478832 + ], + [ + -80.43041316797589, + 25.41249461936663 + ], + [ + -80.39052584912912, + 25.41249461936663 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.39052584912912, + 25.41249461936663 + ], + [ + -80.43041316797589, + 25.41249461936663 + ], + [ + -80.4104695085525, + 25.38116911394494 + ], + [ + -80.39052584912912, + 25.41249461936663 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.39052584912912, + 25.41249461936663 + ], + [ + -80.4104695085525, + 25.38116911394494 + ], + [ + -80.37058218970574, + 25.38116911394494 + ], + [ + -80.39052584912912, + 25.41249461936663 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.39052584912912, + 25.41249461936663 + ], + [ + -80.37058218970574, + 25.38116911394494 + ], + [ + -80.35063853028235, + 25.41249461936663 + ], + [ + -80.39052584912912, + 25.41249461936663 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.39052584912912, + 25.475145630210015 + ], + [ + -80.35063853028235, + 25.475145630210015 + ], + [ + -80.37058218970574, + 25.506471135631706 + ], + [ + -80.39052584912912, + 25.475145630210015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.39052584912912, + 25.475145630210015 + ], + [ + -80.37058218970574, + 25.506471135631706 + ], + [ + -80.4104695085525, + 25.506471135631706 + ], + [ + -80.39052584912912, + 25.475145630210015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.39052584912912, + 25.475145630210015 + ], + [ + -80.4104695085525, + 25.506471135631706 + ], + [ + -80.43041316797589, + 25.475145630210015 + ], + [ + -80.39052584912912, + 25.475145630210015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.39052584912912, + 25.475145630210015 + ], + [ + -80.43041316797589, + 25.475145630210015 + ], + [ + -80.4104695085525, + 25.443820124788324 + ], + [ + -80.39052584912912, + 25.475145630210015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.39052584912912, + 25.475145630210015 + ], + [ + -80.4104695085525, + 25.443820124788324 + ], + [ + -80.37058218970574, + 25.443820124788324 + ], + [ + -80.39052584912912, + 25.475145630210015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.39052584912912, + 25.475145630210015 + ], + [ + -80.37058218970574, + 25.443820124788324 + ], + [ + -80.35063853028235, + 25.475145630210015 + ], + [ + -80.39052584912912, + 25.475145630210015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.39052584912912, + 25.5377966410534 + ], + [ + -80.35063853028235, + 25.5377966410534 + ], + [ + -80.37058218970574, + 25.56912214647509 + ], + [ + -80.39052584912912, + 25.5377966410534 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.39052584912912, + 25.5377966410534 + ], + [ + -80.37058218970574, + 25.56912214647509 + ], + [ + -80.4104695085525, + 25.56912214647509 + ], + [ + -80.39052584912912, + 25.5377966410534 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.39052584912912, + 25.5377966410534 + ], + [ + -80.4104695085525, + 25.56912214647509 + ], + [ + -80.43041316797589, + 25.5377966410534 + ], + [ + -80.39052584912912, + 25.5377966410534 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.39052584912912, + 25.5377966410534 + ], + [ + -80.43041316797589, + 25.5377966410534 + ], + [ + -80.4104695085525, + 25.50647113563171 + ], + [ + -80.39052584912912, + 25.5377966410534 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.39052584912912, + 25.5377966410534 + ], + [ + -80.4104695085525, + 25.50647113563171 + ], + [ + -80.37058218970574, + 25.50647113563171 + ], + [ + -80.39052584912912, + 25.5377966410534 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.39052584912912, + 25.5377966410534 + ], + [ + -80.37058218970574, + 25.50647113563171 + ], + [ + -80.35063853028235, + 25.5377966410534 + ], + [ + -80.39052584912912, + 25.5377966410534 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.39052584912912, + 25.600447651896786 + ], + [ + -80.35063853028235, + 25.600447651896786 + ], + [ + -80.37058218970574, + 25.631773157318477 + ], + [ + -80.39052584912912, + 25.600447651896786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.39052584912912, + 25.600447651896786 + ], + [ + -80.37058218970574, + 25.631773157318477 + ], + [ + -80.4104695085525, + 25.631773157318477 + ], + [ + -80.39052584912912, + 25.600447651896786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.39052584912912, + 25.600447651896786 + ], + [ + -80.4104695085525, + 25.631773157318477 + ], + [ + -80.43041316797589, + 25.600447651896786 + ], + [ + -80.39052584912912, + 25.600447651896786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.39052584912912, + 25.600447651896786 + ], + [ + -80.43041316797589, + 25.600447651896786 + ], + [ + -80.4104695085525, + 25.569122146475095 + ], + [ + -80.39052584912912, + 25.600447651896786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.39052584912912, + 25.600447651896786 + ], + [ + -80.4104695085525, + 25.569122146475095 + ], + [ + -80.37058218970574, + 25.569122146475095 + ], + [ + -80.39052584912912, + 25.600447651896786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.39052584912912, + 25.600447651896786 + ], + [ + -80.37058218970574, + 25.569122146475095 + ], + [ + -80.35063853028235, + 25.600447651896786 + ], + [ + -80.39052584912912, + 25.600447651896786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.39052584912912, + 25.663098662740172 + ], + [ + -80.35063853028235, + 25.663098662740172 + ], + [ + -80.37058218970574, + 25.694424168161863 + ], + [ + -80.39052584912912, + 25.663098662740172 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.39052584912912, + 25.663098662740172 + ], + [ + -80.37058218970574, + 25.694424168161863 + ], + [ + -80.4104695085525, + 25.694424168161863 + ], + [ + -80.39052584912912, + 25.663098662740172 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.39052584912912, + 25.663098662740172 + ], + [ + -80.4104695085525, + 25.694424168161863 + ], + [ + -80.43041316797589, + 25.663098662740172 + ], + [ + -80.39052584912912, + 25.663098662740172 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.39052584912912, + 25.663098662740172 + ], + [ + -80.43041316797589, + 25.663098662740172 + ], + [ + -80.4104695085525, + 25.63177315731848 + ], + [ + -80.39052584912912, + 25.663098662740172 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.39052584912912, + 25.663098662740172 + ], + [ + -80.4104695085525, + 25.63177315731848 + ], + [ + -80.37058218970574, + 25.63177315731848 + ], + [ + -80.39052584912912, + 25.663098662740172 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.39052584912912, + 25.663098662740172 + ], + [ + -80.37058218970574, + 25.63177315731848 + ], + [ + -80.35063853028235, + 25.663098662740172 + ], + [ + -80.39052584912912, + 25.663098662740172 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.39052584912912, + 25.725749673583557 + ], + [ + -80.35063853028235, + 25.725749673583557 + ], + [ + -80.37058218970574, + 25.75707517900525 + ], + [ + -80.39052584912912, + 25.725749673583557 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.39052584912912, + 25.725749673583557 + ], + [ + -80.37058218970574, + 25.75707517900525 + ], + [ + -80.4104695085525, + 25.75707517900525 + ], + [ + -80.39052584912912, + 25.725749673583557 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.39052584912912, + 25.725749673583557 + ], + [ + -80.4104695085525, + 25.75707517900525 + ], + [ + -80.43041316797589, + 25.725749673583557 + ], + [ + -80.39052584912912, + 25.725749673583557 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.39052584912912, + 25.725749673583557 + ], + [ + -80.43041316797589, + 25.725749673583557 + ], + [ + -80.4104695085525, + 25.694424168161866 + ], + [ + -80.39052584912912, + 25.725749673583557 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.39052584912912, + 25.725749673583557 + ], + [ + -80.4104695085525, + 25.694424168161866 + ], + [ + -80.37058218970574, + 25.694424168161866 + ], + [ + -80.39052584912912, + 25.725749673583557 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.39052584912912, + 25.725749673583557 + ], + [ + -80.37058218970574, + 25.694424168161866 + ], + [ + -80.35063853028235, + 25.725749673583557 + ], + [ + -80.39052584912912, + 25.725749673583557 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.39052584912912, + 25.788400684426943 + ], + [ + -80.35063853028235, + 25.788400684426943 + ], + [ + -80.37058218970574, + 25.819726189848634 + ], + [ + -80.39052584912912, + 25.788400684426943 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.39052584912912, + 25.788400684426943 + ], + [ + -80.37058218970574, + 25.819726189848634 + ], + [ + -80.4104695085525, + 25.819726189848634 + ], + [ + -80.39052584912912, + 25.788400684426943 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.39052584912912, + 25.788400684426943 + ], + [ + -80.4104695085525, + 25.819726189848634 + ], + [ + -80.43041316797589, + 25.788400684426943 + ], + [ + -80.39052584912912, + 25.788400684426943 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.39052584912912, + 25.788400684426943 + ], + [ + -80.43041316797589, + 25.788400684426943 + ], + [ + -80.4104695085525, + 25.757075179005252 + ], + [ + -80.39052584912912, + 25.788400684426943 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.39052584912912, + 25.788400684426943 + ], + [ + -80.4104695085525, + 25.757075179005252 + ], + [ + -80.37058218970574, + 25.757075179005252 + ], + [ + -80.39052584912912, + 25.788400684426943 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.39052584912912, + 25.788400684426943 + ], + [ + -80.37058218970574, + 25.757075179005252 + ], + [ + -80.35063853028235, + 25.788400684426943 + ], + [ + -80.39052584912912, + 25.788400684426943 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.39052584912912, + 25.85105169527033 + ], + [ + -80.35063853028235, + 25.85105169527033 + ], + [ + -80.37058218970574, + 25.88237720069202 + ], + [ + -80.39052584912912, + 25.85105169527033 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.39052584912912, + 25.85105169527033 + ], + [ + -80.37058218970574, + 25.88237720069202 + ], + [ + -80.4104695085525, + 25.88237720069202 + ], + [ + -80.39052584912912, + 25.85105169527033 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.39052584912912, + 25.85105169527033 + ], + [ + -80.4104695085525, + 25.88237720069202 + ], + [ + -80.43041316797589, + 25.85105169527033 + ], + [ + -80.39052584912912, + 25.85105169527033 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.39052584912912, + 25.85105169527033 + ], + [ + -80.43041316797589, + 25.85105169527033 + ], + [ + -80.4104695085525, + 25.819726189848637 + ], + [ + -80.39052584912912, + 25.85105169527033 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.39052584912912, + 25.85105169527033 + ], + [ + -80.4104695085525, + 25.819726189848637 + ], + [ + -80.37058218970574, + 25.819726189848637 + ], + [ + -80.39052584912912, + 25.85105169527033 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.39052584912912, + 25.85105169527033 + ], + [ + -80.37058218970574, + 25.819726189848637 + ], + [ + -80.35063853028235, + 25.85105169527033 + ], + [ + -80.39052584912912, + 25.85105169527033 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.39052584912912, + 25.913702706113714 + ], + [ + -80.35063853028235, + 25.913702706113714 + ], + [ + -80.37058218970574, + 25.945028211535405 + ], + [ + -80.39052584912912, + 25.913702706113714 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.39052584912912, + 25.913702706113714 + ], + [ + -80.37058218970574, + 25.945028211535405 + ], + [ + -80.4104695085525, + 25.945028211535405 + ], + [ + -80.39052584912912, + 25.913702706113714 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.39052584912912, + 25.913702706113714 + ], + [ + -80.4104695085525, + 25.945028211535405 + ], + [ + -80.43041316797589, + 25.913702706113714 + ], + [ + -80.39052584912912, + 25.913702706113714 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.39052584912912, + 25.913702706113714 + ], + [ + -80.43041316797589, + 25.913702706113714 + ], + [ + -80.4104695085525, + 25.882377200692023 + ], + [ + -80.39052584912912, + 25.913702706113714 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.39052584912912, + 25.913702706113714 + ], + [ + -80.4104695085525, + 25.882377200692023 + ], + [ + -80.37058218970574, + 25.882377200692023 + ], + [ + -80.39052584912912, + 25.913702706113714 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.39052584912912, + 25.913702706113714 + ], + [ + -80.37058218970574, + 25.882377200692023 + ], + [ + -80.35063853028235, + 25.913702706113714 + ], + [ + -80.39052584912912, + 25.913702706113714 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.39052584912912, + 25.9763537169571 + ], + [ + -80.35063853028235, + 25.9763537169571 + ], + [ + -80.37058218970574, + 26.00767922237879 + ], + [ + -80.39052584912912, + 25.9763537169571 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.39052584912912, + 25.9763537169571 + ], + [ + -80.37058218970574, + 26.00767922237879 + ], + [ + -80.4104695085525, + 26.00767922237879 + ], + [ + -80.39052584912912, + 25.9763537169571 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.39052584912912, + 25.9763537169571 + ], + [ + -80.4104695085525, + 26.00767922237879 + ], + [ + -80.43041316797589, + 25.9763537169571 + ], + [ + -80.39052584912912, + 25.9763537169571 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.39052584912912, + 25.9763537169571 + ], + [ + -80.43041316797589, + 25.9763537169571 + ], + [ + -80.4104695085525, + 25.94502821153541 + ], + [ + -80.39052584912912, + 25.9763537169571 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.39052584912912, + 25.9763537169571 + ], + [ + -80.4104695085525, + 25.94502821153541 + ], + [ + -80.37058218970574, + 25.94502821153541 + ], + [ + -80.39052584912912, + 25.9763537169571 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.39052584912912, + 25.9763537169571 + ], + [ + -80.37058218970574, + 25.94502821153541 + ], + [ + -80.35063853028235, + 25.9763537169571 + ], + [ + -80.39052584912912, + 25.9763537169571 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.39052584912912, + 26.039004727800485 + ], + [ + -80.35063853028235, + 26.039004727800485 + ], + [ + -80.37058218970574, + 26.070330233222176 + ], + [ + -80.39052584912912, + 26.039004727800485 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.39052584912912, + 26.039004727800485 + ], + [ + -80.37058218970574, + 26.070330233222176 + ], + [ + -80.4104695085525, + 26.070330233222176 + ], + [ + -80.39052584912912, + 26.039004727800485 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.39052584912912, + 26.039004727800485 + ], + [ + -80.4104695085525, + 26.070330233222176 + ], + [ + -80.43041316797589, + 26.039004727800485 + ], + [ + -80.39052584912912, + 26.039004727800485 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.39052584912912, + 26.039004727800485 + ], + [ + -80.43041316797589, + 26.039004727800485 + ], + [ + -80.4104695085525, + 26.007679222378794 + ], + [ + -80.39052584912912, + 26.039004727800485 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.39052584912912, + 26.039004727800485 + ], + [ + -80.4104695085525, + 26.007679222378794 + ], + [ + -80.37058218970574, + 26.007679222378794 + ], + [ + -80.39052584912912, + 26.039004727800485 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.39052584912912, + 26.039004727800485 + ], + [ + -80.37058218970574, + 26.007679222378794 + ], + [ + -80.35063853028235, + 26.039004727800485 + ], + [ + -80.39052584912912, + 26.039004727800485 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.39052584912912, + 26.10165573864387 + ], + [ + -80.35063853028235, + 26.10165573864387 + ], + [ + -80.37058218970574, + 26.13298124406556 + ], + [ + -80.39052584912912, + 26.10165573864387 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.39052584912912, + 26.10165573864387 + ], + [ + -80.37058218970574, + 26.13298124406556 + ], + [ + -80.4104695085525, + 26.13298124406556 + ], + [ + -80.39052584912912, + 26.10165573864387 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.39052584912912, + 26.10165573864387 + ], + [ + -80.4104695085525, + 26.13298124406556 + ], + [ + -80.43041316797589, + 26.10165573864387 + ], + [ + -80.39052584912912, + 26.10165573864387 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.39052584912912, + 26.10165573864387 + ], + [ + -80.43041316797589, + 26.10165573864387 + ], + [ + -80.4104695085525, + 26.07033023322218 + ], + [ + -80.39052584912912, + 26.10165573864387 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.39052584912912, + 26.10165573864387 + ], + [ + -80.4104695085525, + 26.07033023322218 + ], + [ + -80.37058218970574, + 26.07033023322218 + ], + [ + -80.39052584912912, + 26.10165573864387 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.39052584912912, + 26.10165573864387 + ], + [ + -80.37058218970574, + 26.07033023322218 + ], + [ + -80.35063853028235, + 26.10165573864387 + ], + [ + -80.39052584912912, + 26.10165573864387 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.39052584912912, + 26.164306749487253 + ], + [ + -80.35063853028235, + 26.164306749487253 + ], + [ + -80.37058218970574, + 26.195632254908944 + ], + [ + -80.39052584912912, + 26.164306749487253 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.39052584912912, + 26.164306749487253 + ], + [ + -80.37058218970574, + 26.195632254908944 + ], + [ + -80.4104695085525, + 26.195632254908944 + ], + [ + -80.39052584912912, + 26.164306749487253 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.39052584912912, + 26.164306749487253 + ], + [ + -80.4104695085525, + 26.195632254908944 + ], + [ + -80.43041316797589, + 26.164306749487253 + ], + [ + -80.39052584912912, + 26.164306749487253 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.39052584912912, + 26.164306749487253 + ], + [ + -80.43041316797589, + 26.164306749487253 + ], + [ + -80.4104695085525, + 26.13298124406556 + ], + [ + -80.39052584912912, + 26.164306749487253 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.39052584912912, + 26.164306749487253 + ], + [ + -80.4104695085525, + 26.13298124406556 + ], + [ + -80.37058218970574, + 26.13298124406556 + ], + [ + -80.39052584912912, + 26.164306749487253 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.39052584912912, + 26.164306749487253 + ], + [ + -80.37058218970574, + 26.13298124406556 + ], + [ + -80.35063853028235, + 26.164306749487253 + ], + [ + -80.39052584912912, + 26.164306749487253 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.39052584912912, + 26.22695776033064 + ], + [ + -80.35063853028235, + 26.22695776033064 + ], + [ + -80.37058218970574, + 26.258283265752333 + ], + [ + -80.39052584912912, + 26.22695776033064 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.39052584912912, + 26.22695776033064 + ], + [ + -80.37058218970574, + 26.258283265752333 + ], + [ + -80.4104695085525, + 26.258283265752333 + ], + [ + -80.39052584912912, + 26.22695776033064 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.39052584912912, + 26.22695776033064 + ], + [ + -80.4104695085525, + 26.258283265752333 + ], + [ + -80.43041316797589, + 26.22695776033064 + ], + [ + -80.39052584912912, + 26.22695776033064 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.39052584912912, + 26.22695776033064 + ], + [ + -80.43041316797589, + 26.22695776033064 + ], + [ + -80.4104695085525, + 26.19563225490895 + ], + [ + -80.39052584912912, + 26.22695776033064 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.39052584912912, + 26.22695776033064 + ], + [ + -80.4104695085525, + 26.19563225490895 + ], + [ + -80.37058218970574, + 26.19563225490895 + ], + [ + -80.39052584912912, + 26.22695776033064 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.39052584912912, + 26.22695776033064 + ], + [ + -80.37058218970574, + 26.19563225490895 + ], + [ + -80.35063853028235, + 26.22695776033064 + ], + [ + -80.39052584912912, + 26.22695776033064 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.39052584912912, + 26.289608771174024 + ], + [ + -80.35063853028235, + 26.289608771174024 + ], + [ + -80.37058218970574, + 26.320934276595715 + ], + [ + -80.39052584912912, + 26.289608771174024 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.39052584912912, + 26.289608771174024 + ], + [ + -80.37058218970574, + 26.320934276595715 + ], + [ + -80.4104695085525, + 26.320934276595715 + ], + [ + -80.39052584912912, + 26.289608771174024 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.39052584912912, + 26.289608771174024 + ], + [ + -80.4104695085525, + 26.320934276595715 + ], + [ + -80.43041316797589, + 26.289608771174024 + ], + [ + -80.39052584912912, + 26.289608771174024 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.39052584912912, + 26.289608771174024 + ], + [ + -80.43041316797589, + 26.289608771174024 + ], + [ + -80.4104695085525, + 26.258283265752333 + ], + [ + -80.39052584912912, + 26.289608771174024 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.39052584912912, + 26.289608771174024 + ], + [ + -80.4104695085525, + 26.258283265752333 + ], + [ + -80.37058218970574, + 26.258283265752333 + ], + [ + -80.39052584912912, + 26.289608771174024 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.39052584912912, + 26.289608771174024 + ], + [ + -80.37058218970574, + 26.258283265752333 + ], + [ + -80.35063853028235, + 26.289608771174024 + ], + [ + -80.39052584912912, + 26.289608771174024 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.39052584912912, + 26.35225978201741 + ], + [ + -80.35063853028235, + 26.35225978201741 + ], + [ + -80.37058218970574, + 26.3835852874391 + ], + [ + -80.39052584912912, + 26.35225978201741 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.39052584912912, + 26.35225978201741 + ], + [ + -80.37058218970574, + 26.3835852874391 + ], + [ + -80.4104695085525, + 26.3835852874391 + ], + [ + -80.39052584912912, + 26.35225978201741 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.39052584912912, + 26.35225978201741 + ], + [ + -80.4104695085525, + 26.3835852874391 + ], + [ + -80.43041316797589, + 26.35225978201741 + ], + [ + -80.39052584912912, + 26.35225978201741 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.39052584912912, + 26.35225978201741 + ], + [ + -80.43041316797589, + 26.35225978201741 + ], + [ + -80.4104695085525, + 26.320934276595718 + ], + [ + -80.39052584912912, + 26.35225978201741 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.39052584912912, + 26.35225978201741 + ], + [ + -80.4104695085525, + 26.320934276595718 + ], + [ + -80.37058218970574, + 26.320934276595718 + ], + [ + -80.39052584912912, + 26.35225978201741 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.39052584912912, + 26.35225978201741 + ], + [ + -80.37058218970574, + 26.320934276595718 + ], + [ + -80.35063853028235, + 26.35225978201741 + ], + [ + -80.39052584912912, + 26.35225978201741 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.39052584912912, + 26.414910792860795 + ], + [ + -80.35063853028235, + 26.414910792860795 + ], + [ + -80.37058218970574, + 26.446236298282486 + ], + [ + -80.39052584912912, + 26.414910792860795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.39052584912912, + 26.414910792860795 + ], + [ + -80.37058218970574, + 26.446236298282486 + ], + [ + -80.4104695085525, + 26.446236298282486 + ], + [ + -80.39052584912912, + 26.414910792860795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.39052584912912, + 26.414910792860795 + ], + [ + -80.4104695085525, + 26.446236298282486 + ], + [ + -80.43041316797589, + 26.414910792860795 + ], + [ + -80.39052584912912, + 26.414910792860795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.39052584912912, + 26.414910792860795 + ], + [ + -80.43041316797589, + 26.414910792860795 + ], + [ + -80.4104695085525, + 26.383585287439104 + ], + [ + -80.39052584912912, + 26.414910792860795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.39052584912912, + 26.414910792860795 + ], + [ + -80.4104695085525, + 26.383585287439104 + ], + [ + -80.37058218970574, + 26.383585287439104 + ], + [ + -80.39052584912912, + 26.414910792860795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.39052584912912, + 26.414910792860795 + ], + [ + -80.37058218970574, + 26.383585287439104 + ], + [ + -80.35063853028235, + 26.414910792860795 + ], + [ + -80.39052584912912, + 26.414910792860795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.33069487085896, + 24.942612038041236 + ], + [ + -80.2908075520122, + 24.942612038041236 + ], + [ + -80.31075121143559, + 24.973937543462927 + ], + [ + -80.33069487085896, + 24.942612038041236 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.33069487085896, + 24.942612038041236 + ], + [ + -80.31075121143559, + 24.973937543462927 + ], + [ + -80.35063853028234, + 24.973937543462927 + ], + [ + -80.33069487085896, + 24.942612038041236 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.33069487085896, + 24.942612038041236 + ], + [ + -80.35063853028234, + 24.973937543462927 + ], + [ + -80.37058218970573, + 24.942612038041236 + ], + [ + -80.33069487085896, + 24.942612038041236 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.33069487085896, + 24.942612038041236 + ], + [ + -80.37058218970573, + 24.942612038041236 + ], + [ + -80.35063853028234, + 24.911286532619545 + ], + [ + -80.33069487085896, + 24.942612038041236 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.33069487085896, + 24.942612038041236 + ], + [ + -80.35063853028234, + 24.911286532619545 + ], + [ + -80.31075121143559, + 24.911286532619545 + ], + [ + -80.33069487085896, + 24.942612038041236 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.33069487085896, + 24.942612038041236 + ], + [ + -80.31075121143559, + 24.911286532619545 + ], + [ + -80.2908075520122, + 24.942612038041236 + ], + [ + -80.33069487085896, + 24.942612038041236 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.33069487085896, + 25.005263048884622 + ], + [ + -80.2908075520122, + 25.005263048884622 + ], + [ + -80.31075121143559, + 25.036588554306313 + ], + [ + -80.33069487085896, + 25.005263048884622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.33069487085896, + 25.005263048884622 + ], + [ + -80.31075121143559, + 25.036588554306313 + ], + [ + -80.35063853028234, + 25.036588554306313 + ], + [ + -80.33069487085896, + 25.005263048884622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.33069487085896, + 25.005263048884622 + ], + [ + -80.35063853028234, + 25.036588554306313 + ], + [ + -80.37058218970573, + 25.005263048884622 + ], + [ + -80.33069487085896, + 25.005263048884622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.33069487085896, + 25.005263048884622 + ], + [ + -80.37058218970573, + 25.005263048884622 + ], + [ + -80.35063853028234, + 24.97393754346293 + ], + [ + -80.33069487085896, + 25.005263048884622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.33069487085896, + 25.005263048884622 + ], + [ + -80.35063853028234, + 24.97393754346293 + ], + [ + -80.31075121143559, + 24.97393754346293 + ], + [ + -80.33069487085896, + 25.005263048884622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.33069487085896, + 25.005263048884622 + ], + [ + -80.31075121143559, + 24.97393754346293 + ], + [ + -80.2908075520122, + 25.005263048884622 + ], + [ + -80.33069487085896, + 25.005263048884622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.33069487085896, + 25.067914059728007 + ], + [ + -80.2908075520122, + 25.067914059728007 + ], + [ + -80.31075121143559, + 25.0992395651497 + ], + [ + -80.33069487085896, + 25.067914059728007 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.33069487085896, + 25.067914059728007 + ], + [ + -80.31075121143559, + 25.0992395651497 + ], + [ + -80.35063853028234, + 25.0992395651497 + ], + [ + -80.33069487085896, + 25.067914059728007 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.33069487085896, + 25.067914059728007 + ], + [ + -80.35063853028234, + 25.0992395651497 + ], + [ + -80.37058218970573, + 25.067914059728007 + ], + [ + -80.33069487085896, + 25.067914059728007 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.33069487085896, + 25.067914059728007 + ], + [ + -80.37058218970573, + 25.067914059728007 + ], + [ + -80.35063853028234, + 25.036588554306316 + ], + [ + -80.33069487085896, + 25.067914059728007 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.33069487085896, + 25.067914059728007 + ], + [ + -80.35063853028234, + 25.036588554306316 + ], + [ + -80.31075121143559, + 25.036588554306316 + ], + [ + -80.33069487085896, + 25.067914059728007 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.33069487085896, + 25.067914059728007 + ], + [ + -80.31075121143559, + 25.036588554306316 + ], + [ + -80.2908075520122, + 25.067914059728007 + ], + [ + -80.33069487085896, + 25.067914059728007 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.33069487085896, + 25.130565070571393 + ], + [ + -80.2908075520122, + 25.130565070571393 + ], + [ + -80.31075121143559, + 25.161890575993084 + ], + [ + -80.33069487085896, + 25.130565070571393 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.33069487085896, + 25.130565070571393 + ], + [ + -80.31075121143559, + 25.161890575993084 + ], + [ + -80.35063853028234, + 25.161890575993084 + ], + [ + -80.33069487085896, + 25.130565070571393 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.33069487085896, + 25.130565070571393 + ], + [ + -80.35063853028234, + 25.161890575993084 + ], + [ + -80.37058218970573, + 25.130565070571393 + ], + [ + -80.33069487085896, + 25.130565070571393 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.33069487085896, + 25.130565070571393 + ], + [ + -80.37058218970573, + 25.130565070571393 + ], + [ + -80.35063853028234, + 25.099239565149702 + ], + [ + -80.33069487085896, + 25.130565070571393 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.33069487085896, + 25.130565070571393 + ], + [ + -80.35063853028234, + 25.099239565149702 + ], + [ + -80.31075121143559, + 25.099239565149702 + ], + [ + -80.33069487085896, + 25.130565070571393 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.33069487085896, + 25.130565070571393 + ], + [ + -80.31075121143559, + 25.099239565149702 + ], + [ + -80.2908075520122, + 25.130565070571393 + ], + [ + -80.33069487085896, + 25.130565070571393 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.33069487085896, + 25.19321608141478 + ], + [ + -80.2908075520122, + 25.19321608141478 + ], + [ + -80.31075121143559, + 25.22454158683647 + ], + [ + -80.33069487085896, + 25.19321608141478 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.33069487085896, + 25.19321608141478 + ], + [ + -80.31075121143559, + 25.22454158683647 + ], + [ + -80.35063853028234, + 25.22454158683647 + ], + [ + -80.33069487085896, + 25.19321608141478 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.33069487085896, + 25.19321608141478 + ], + [ + -80.35063853028234, + 25.22454158683647 + ], + [ + -80.37058218970573, + 25.19321608141478 + ], + [ + -80.33069487085896, + 25.19321608141478 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.33069487085896, + 25.19321608141478 + ], + [ + -80.37058218970573, + 25.19321608141478 + ], + [ + -80.35063853028234, + 25.161890575993088 + ], + [ + -80.33069487085896, + 25.19321608141478 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.33069487085896, + 25.19321608141478 + ], + [ + -80.35063853028234, + 25.161890575993088 + ], + [ + -80.31075121143559, + 25.161890575993088 + ], + [ + -80.33069487085896, + 25.19321608141478 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.33069487085896, + 25.19321608141478 + ], + [ + -80.31075121143559, + 25.161890575993088 + ], + [ + -80.2908075520122, + 25.19321608141478 + ], + [ + -80.33069487085896, + 25.19321608141478 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.33069487085896, + 25.255867092258164 + ], + [ + -80.2908075520122, + 25.255867092258164 + ], + [ + -80.31075121143559, + 25.287192597679855 + ], + [ + -80.33069487085896, + 25.255867092258164 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.33069487085896, + 25.255867092258164 + ], + [ + -80.31075121143559, + 25.287192597679855 + ], + [ + -80.35063853028234, + 25.287192597679855 + ], + [ + -80.33069487085896, + 25.255867092258164 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.33069487085896, + 25.255867092258164 + ], + [ + -80.35063853028234, + 25.287192597679855 + ], + [ + -80.37058218970573, + 25.255867092258164 + ], + [ + -80.33069487085896, + 25.255867092258164 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.33069487085896, + 25.255867092258164 + ], + [ + -80.37058218970573, + 25.255867092258164 + ], + [ + -80.35063853028234, + 25.224541586836473 + ], + [ + -80.33069487085896, + 25.255867092258164 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.33069487085896, + 25.255867092258164 + ], + [ + -80.35063853028234, + 25.224541586836473 + ], + [ + -80.31075121143559, + 25.224541586836473 + ], + [ + -80.33069487085896, + 25.255867092258164 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.33069487085896, + 25.255867092258164 + ], + [ + -80.31075121143559, + 25.224541586836473 + ], + [ + -80.2908075520122, + 25.255867092258164 + ], + [ + -80.33069487085896, + 25.255867092258164 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.33069487085896, + 25.31851810310155 + ], + [ + -80.2908075520122, + 25.31851810310155 + ], + [ + -80.31075121143559, + 25.34984360852324 + ], + [ + -80.33069487085896, + 25.31851810310155 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.33069487085896, + 25.31851810310155 + ], + [ + -80.31075121143559, + 25.34984360852324 + ], + [ + -80.35063853028234, + 25.34984360852324 + ], + [ + -80.33069487085896, + 25.31851810310155 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.33069487085896, + 25.31851810310155 + ], + [ + -80.35063853028234, + 25.34984360852324 + ], + [ + -80.37058218970573, + 25.31851810310155 + ], + [ + -80.33069487085896, + 25.31851810310155 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.33069487085896, + 25.31851810310155 + ], + [ + -80.37058218970573, + 25.31851810310155 + ], + [ + -80.35063853028234, + 25.28719259767986 + ], + [ + -80.33069487085896, + 25.31851810310155 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.33069487085896, + 25.31851810310155 + ], + [ + -80.35063853028234, + 25.28719259767986 + ], + [ + -80.31075121143559, + 25.28719259767986 + ], + [ + -80.33069487085896, + 25.31851810310155 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.33069487085896, + 25.31851810310155 + ], + [ + -80.31075121143559, + 25.28719259767986 + ], + [ + -80.2908075520122, + 25.31851810310155 + ], + [ + -80.33069487085896, + 25.31851810310155 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.33069487085896, + 25.381169113944935 + ], + [ + -80.2908075520122, + 25.381169113944935 + ], + [ + -80.31075121143559, + 25.412494619366626 + ], + [ + -80.33069487085896, + 25.381169113944935 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.33069487085896, + 25.381169113944935 + ], + [ + -80.31075121143559, + 25.412494619366626 + ], + [ + -80.35063853028234, + 25.412494619366626 + ], + [ + -80.33069487085896, + 25.381169113944935 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.33069487085896, + 25.381169113944935 + ], + [ + -80.35063853028234, + 25.412494619366626 + ], + [ + -80.37058218970573, + 25.381169113944935 + ], + [ + -80.33069487085896, + 25.381169113944935 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.33069487085896, + 25.381169113944935 + ], + [ + -80.37058218970573, + 25.381169113944935 + ], + [ + -80.35063853028234, + 25.349843608523244 + ], + [ + -80.33069487085896, + 25.381169113944935 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.33069487085896, + 25.381169113944935 + ], + [ + -80.35063853028234, + 25.349843608523244 + ], + [ + -80.31075121143559, + 25.349843608523244 + ], + [ + -80.33069487085896, + 25.381169113944935 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.33069487085896, + 25.381169113944935 + ], + [ + -80.31075121143559, + 25.349843608523244 + ], + [ + -80.2908075520122, + 25.381169113944935 + ], + [ + -80.33069487085896, + 25.381169113944935 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.33069487085896, + 25.44382012478832 + ], + [ + -80.2908075520122, + 25.44382012478832 + ], + [ + -80.31075121143559, + 25.47514563021001 + ], + [ + -80.33069487085896, + 25.44382012478832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.33069487085896, + 25.44382012478832 + ], + [ + -80.31075121143559, + 25.47514563021001 + ], + [ + -80.35063853028234, + 25.47514563021001 + ], + [ + -80.33069487085896, + 25.44382012478832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.33069487085896, + 25.44382012478832 + ], + [ + -80.35063853028234, + 25.47514563021001 + ], + [ + -80.37058218970573, + 25.44382012478832 + ], + [ + -80.33069487085896, + 25.44382012478832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.33069487085896, + 25.44382012478832 + ], + [ + -80.37058218970573, + 25.44382012478832 + ], + [ + -80.35063853028234, + 25.41249461936663 + ], + [ + -80.33069487085896, + 25.44382012478832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.33069487085896, + 25.44382012478832 + ], + [ + -80.35063853028234, + 25.41249461936663 + ], + [ + -80.31075121143559, + 25.41249461936663 + ], + [ + -80.33069487085896, + 25.44382012478832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.33069487085896, + 25.44382012478832 + ], + [ + -80.31075121143559, + 25.41249461936663 + ], + [ + -80.2908075520122, + 25.44382012478832 + ], + [ + -80.33069487085896, + 25.44382012478832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.33069487085896, + 25.506471135631706 + ], + [ + -80.2908075520122, + 25.506471135631706 + ], + [ + -80.31075121143559, + 25.537796641053397 + ], + [ + -80.33069487085896, + 25.506471135631706 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.33069487085896, + 25.506471135631706 + ], + [ + -80.31075121143559, + 25.537796641053397 + ], + [ + -80.35063853028234, + 25.537796641053397 + ], + [ + -80.33069487085896, + 25.506471135631706 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.33069487085896, + 25.506471135631706 + ], + [ + -80.35063853028234, + 25.537796641053397 + ], + [ + -80.37058218970573, + 25.506471135631706 + ], + [ + -80.33069487085896, + 25.506471135631706 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.33069487085896, + 25.506471135631706 + ], + [ + -80.37058218970573, + 25.506471135631706 + ], + [ + -80.35063853028234, + 25.475145630210015 + ], + [ + -80.33069487085896, + 25.506471135631706 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.33069487085896, + 25.506471135631706 + ], + [ + -80.35063853028234, + 25.475145630210015 + ], + [ + -80.31075121143559, + 25.475145630210015 + ], + [ + -80.33069487085896, + 25.506471135631706 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.33069487085896, + 25.506471135631706 + ], + [ + -80.31075121143559, + 25.475145630210015 + ], + [ + -80.2908075520122, + 25.506471135631706 + ], + [ + -80.33069487085896, + 25.506471135631706 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.33069487085896, + 25.56912214647509 + ], + [ + -80.2908075520122, + 25.56912214647509 + ], + [ + -80.31075121143559, + 25.600447651896783 + ], + [ + -80.33069487085896, + 25.56912214647509 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.33069487085896, + 25.56912214647509 + ], + [ + -80.31075121143559, + 25.600447651896783 + ], + [ + -80.35063853028234, + 25.600447651896783 + ], + [ + -80.33069487085896, + 25.56912214647509 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.33069487085896, + 25.56912214647509 + ], + [ + -80.35063853028234, + 25.600447651896783 + ], + [ + -80.37058218970573, + 25.56912214647509 + ], + [ + -80.33069487085896, + 25.56912214647509 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.33069487085896, + 25.56912214647509 + ], + [ + -80.37058218970573, + 25.56912214647509 + ], + [ + -80.35063853028234, + 25.5377966410534 + ], + [ + -80.33069487085896, + 25.56912214647509 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.33069487085896, + 25.56912214647509 + ], + [ + -80.35063853028234, + 25.5377966410534 + ], + [ + -80.31075121143559, + 25.5377966410534 + ], + [ + -80.33069487085896, + 25.56912214647509 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.33069487085896, + 25.56912214647509 + ], + [ + -80.31075121143559, + 25.5377966410534 + ], + [ + -80.2908075520122, + 25.56912214647509 + ], + [ + -80.33069487085896, + 25.56912214647509 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.33069487085896, + 25.631773157318477 + ], + [ + -80.2908075520122, + 25.631773157318477 + ], + [ + -80.31075121143559, + 25.66309866274017 + ], + [ + -80.33069487085896, + 25.631773157318477 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.33069487085896, + 25.631773157318477 + ], + [ + -80.31075121143559, + 25.66309866274017 + ], + [ + -80.35063853028234, + 25.66309866274017 + ], + [ + -80.33069487085896, + 25.631773157318477 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.33069487085896, + 25.631773157318477 + ], + [ + -80.35063853028234, + 25.66309866274017 + ], + [ + -80.37058218970573, + 25.631773157318477 + ], + [ + -80.33069487085896, + 25.631773157318477 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.33069487085896, + 25.631773157318477 + ], + [ + -80.37058218970573, + 25.631773157318477 + ], + [ + -80.35063853028234, + 25.600447651896786 + ], + [ + -80.33069487085896, + 25.631773157318477 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.33069487085896, + 25.631773157318477 + ], + [ + -80.35063853028234, + 25.600447651896786 + ], + [ + -80.31075121143559, + 25.600447651896786 + ], + [ + -80.33069487085896, + 25.631773157318477 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.33069487085896, + 25.631773157318477 + ], + [ + -80.31075121143559, + 25.600447651896786 + ], + [ + -80.2908075520122, + 25.631773157318477 + ], + [ + -80.33069487085896, + 25.631773157318477 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.33069487085896, + 25.694424168161863 + ], + [ + -80.2908075520122, + 25.694424168161863 + ], + [ + -80.31075121143559, + 25.725749673583554 + ], + [ + -80.33069487085896, + 25.694424168161863 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.33069487085896, + 25.694424168161863 + ], + [ + -80.31075121143559, + 25.725749673583554 + ], + [ + -80.35063853028234, + 25.725749673583554 + ], + [ + -80.33069487085896, + 25.694424168161863 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.33069487085896, + 25.694424168161863 + ], + [ + -80.35063853028234, + 25.725749673583554 + ], + [ + -80.37058218970573, + 25.694424168161863 + ], + [ + -80.33069487085896, + 25.694424168161863 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.33069487085896, + 25.694424168161863 + ], + [ + -80.37058218970573, + 25.694424168161863 + ], + [ + -80.35063853028234, + 25.663098662740172 + ], + [ + -80.33069487085896, + 25.694424168161863 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.33069487085896, + 25.694424168161863 + ], + [ + -80.35063853028234, + 25.663098662740172 + ], + [ + -80.31075121143559, + 25.663098662740172 + ], + [ + -80.33069487085896, + 25.694424168161863 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.33069487085896, + 25.694424168161863 + ], + [ + -80.31075121143559, + 25.663098662740172 + ], + [ + -80.2908075520122, + 25.694424168161863 + ], + [ + -80.33069487085896, + 25.694424168161863 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.33069487085896, + 25.75707517900525 + ], + [ + -80.2908075520122, + 25.75707517900525 + ], + [ + -80.31075121143559, + 25.78840068442694 + ], + [ + -80.33069487085896, + 25.75707517900525 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.33069487085896, + 25.75707517900525 + ], + [ + -80.31075121143559, + 25.78840068442694 + ], + [ + -80.35063853028234, + 25.78840068442694 + ], + [ + -80.33069487085896, + 25.75707517900525 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.33069487085896, + 25.75707517900525 + ], + [ + -80.35063853028234, + 25.78840068442694 + ], + [ + -80.37058218970573, + 25.75707517900525 + ], + [ + -80.33069487085896, + 25.75707517900525 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.33069487085896, + 25.75707517900525 + ], + [ + -80.37058218970573, + 25.75707517900525 + ], + [ + -80.35063853028234, + 25.725749673583557 + ], + [ + -80.33069487085896, + 25.75707517900525 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.33069487085896, + 25.75707517900525 + ], + [ + -80.35063853028234, + 25.725749673583557 + ], + [ + -80.31075121143559, + 25.725749673583557 + ], + [ + -80.33069487085896, + 25.75707517900525 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.33069487085896, + 25.75707517900525 + ], + [ + -80.31075121143559, + 25.725749673583557 + ], + [ + -80.2908075520122, + 25.75707517900525 + ], + [ + -80.33069487085896, + 25.75707517900525 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.33069487085896, + 25.819726189848634 + ], + [ + -80.2908075520122, + 25.819726189848634 + ], + [ + -80.31075121143559, + 25.851051695270325 + ], + [ + -80.33069487085896, + 25.819726189848634 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.33069487085896, + 25.819726189848634 + ], + [ + -80.31075121143559, + 25.851051695270325 + ], + [ + -80.35063853028234, + 25.851051695270325 + ], + [ + -80.33069487085896, + 25.819726189848634 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.33069487085896, + 25.819726189848634 + ], + [ + -80.35063853028234, + 25.851051695270325 + ], + [ + -80.37058218970573, + 25.819726189848634 + ], + [ + -80.33069487085896, + 25.819726189848634 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.33069487085896, + 25.819726189848634 + ], + [ + -80.37058218970573, + 25.819726189848634 + ], + [ + -80.35063853028234, + 25.788400684426943 + ], + [ + -80.33069487085896, + 25.819726189848634 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.33069487085896, + 25.819726189848634 + ], + [ + -80.35063853028234, + 25.788400684426943 + ], + [ + -80.31075121143559, + 25.788400684426943 + ], + [ + -80.33069487085896, + 25.819726189848634 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.33069487085896, + 25.819726189848634 + ], + [ + -80.31075121143559, + 25.788400684426943 + ], + [ + -80.2908075520122, + 25.819726189848634 + ], + [ + -80.33069487085896, + 25.819726189848634 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.33069487085896, + 25.88237720069202 + ], + [ + -80.2908075520122, + 25.88237720069202 + ], + [ + -80.31075121143559, + 25.91370270611371 + ], + [ + -80.33069487085896, + 25.88237720069202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.33069487085896, + 25.88237720069202 + ], + [ + -80.31075121143559, + 25.91370270611371 + ], + [ + -80.35063853028234, + 25.91370270611371 + ], + [ + -80.33069487085896, + 25.88237720069202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.33069487085896, + 25.88237720069202 + ], + [ + -80.35063853028234, + 25.91370270611371 + ], + [ + -80.37058218970573, + 25.88237720069202 + ], + [ + -80.33069487085896, + 25.88237720069202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.33069487085896, + 25.88237720069202 + ], + [ + -80.37058218970573, + 25.88237720069202 + ], + [ + -80.35063853028234, + 25.85105169527033 + ], + [ + -80.33069487085896, + 25.88237720069202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.33069487085896, + 25.88237720069202 + ], + [ + -80.35063853028234, + 25.85105169527033 + ], + [ + -80.31075121143559, + 25.85105169527033 + ], + [ + -80.33069487085896, + 25.88237720069202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.33069487085896, + 25.88237720069202 + ], + [ + -80.31075121143559, + 25.85105169527033 + ], + [ + -80.2908075520122, + 25.88237720069202 + ], + [ + -80.33069487085896, + 25.88237720069202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.33069487085896, + 25.945028211535405 + ], + [ + -80.2908075520122, + 25.945028211535405 + ], + [ + -80.31075121143559, + 25.976353716957096 + ], + [ + -80.33069487085896, + 25.945028211535405 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.33069487085896, + 25.945028211535405 + ], + [ + -80.31075121143559, + 25.976353716957096 + ], + [ + -80.35063853028234, + 25.976353716957096 + ], + [ + -80.33069487085896, + 25.945028211535405 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.33069487085896, + 25.945028211535405 + ], + [ + -80.35063853028234, + 25.976353716957096 + ], + [ + -80.37058218970573, + 25.945028211535405 + ], + [ + -80.33069487085896, + 25.945028211535405 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.33069487085896, + 25.945028211535405 + ], + [ + -80.37058218970573, + 25.945028211535405 + ], + [ + -80.35063853028234, + 25.913702706113714 + ], + [ + -80.33069487085896, + 25.945028211535405 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.33069487085896, + 25.945028211535405 + ], + [ + -80.35063853028234, + 25.913702706113714 + ], + [ + -80.31075121143559, + 25.913702706113714 + ], + [ + -80.33069487085896, + 25.945028211535405 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.33069487085896, + 25.945028211535405 + ], + [ + -80.31075121143559, + 25.913702706113714 + ], + [ + -80.2908075520122, + 25.945028211535405 + ], + [ + -80.33069487085896, + 25.945028211535405 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.33069487085896, + 26.00767922237879 + ], + [ + -80.2908075520122, + 26.00767922237879 + ], + [ + -80.31075121143559, + 26.03900472780048 + ], + [ + -80.33069487085896, + 26.00767922237879 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.33069487085896, + 26.00767922237879 + ], + [ + -80.31075121143559, + 26.03900472780048 + ], + [ + -80.35063853028234, + 26.03900472780048 + ], + [ + -80.33069487085896, + 26.00767922237879 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.33069487085896, + 26.00767922237879 + ], + [ + -80.35063853028234, + 26.03900472780048 + ], + [ + -80.37058218970573, + 26.00767922237879 + ], + [ + -80.33069487085896, + 26.00767922237879 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.33069487085896, + 26.00767922237879 + ], + [ + -80.37058218970573, + 26.00767922237879 + ], + [ + -80.35063853028234, + 25.9763537169571 + ], + [ + -80.33069487085896, + 26.00767922237879 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.33069487085896, + 26.00767922237879 + ], + [ + -80.35063853028234, + 25.9763537169571 + ], + [ + -80.31075121143559, + 25.9763537169571 + ], + [ + -80.33069487085896, + 26.00767922237879 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.33069487085896, + 26.00767922237879 + ], + [ + -80.31075121143559, + 25.9763537169571 + ], + [ + -80.2908075520122, + 26.00767922237879 + ], + [ + -80.33069487085896, + 26.00767922237879 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.33069487085896, + 26.070330233222176 + ], + [ + -80.2908075520122, + 26.070330233222176 + ], + [ + -80.31075121143559, + 26.101655738643867 + ], + [ + -80.33069487085896, + 26.070330233222176 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.33069487085896, + 26.070330233222176 + ], + [ + -80.31075121143559, + 26.101655738643867 + ], + [ + -80.35063853028234, + 26.101655738643867 + ], + [ + -80.33069487085896, + 26.070330233222176 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.33069487085896, + 26.070330233222176 + ], + [ + -80.35063853028234, + 26.101655738643867 + ], + [ + -80.37058218970573, + 26.070330233222176 + ], + [ + -80.33069487085896, + 26.070330233222176 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.33069487085896, + 26.070330233222176 + ], + [ + -80.37058218970573, + 26.070330233222176 + ], + [ + -80.35063853028234, + 26.039004727800485 + ], + [ + -80.33069487085896, + 26.070330233222176 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.33069487085896, + 26.070330233222176 + ], + [ + -80.35063853028234, + 26.039004727800485 + ], + [ + -80.31075121143559, + 26.039004727800485 + ], + [ + -80.33069487085896, + 26.070330233222176 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.33069487085896, + 26.070330233222176 + ], + [ + -80.31075121143559, + 26.039004727800485 + ], + [ + -80.2908075520122, + 26.070330233222176 + ], + [ + -80.33069487085896, + 26.070330233222176 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.33069487085896, + 26.13298124406556 + ], + [ + -80.2908075520122, + 26.13298124406556 + ], + [ + -80.31075121143559, + 26.164306749487253 + ], + [ + -80.33069487085896, + 26.13298124406556 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.33069487085896, + 26.13298124406556 + ], + [ + -80.31075121143559, + 26.164306749487253 + ], + [ + -80.35063853028234, + 26.164306749487253 + ], + [ + -80.33069487085896, + 26.13298124406556 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.33069487085896, + 26.13298124406556 + ], + [ + -80.35063853028234, + 26.164306749487253 + ], + [ + -80.37058218970573, + 26.13298124406556 + ], + [ + -80.33069487085896, + 26.13298124406556 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.33069487085896, + 26.13298124406556 + ], + [ + -80.37058218970573, + 26.13298124406556 + ], + [ + -80.35063853028234, + 26.10165573864387 + ], + [ + -80.33069487085896, + 26.13298124406556 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.33069487085896, + 26.13298124406556 + ], + [ + -80.35063853028234, + 26.10165573864387 + ], + [ + -80.31075121143559, + 26.10165573864387 + ], + [ + -80.33069487085896, + 26.13298124406556 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.33069487085896, + 26.13298124406556 + ], + [ + -80.31075121143559, + 26.10165573864387 + ], + [ + -80.2908075520122, + 26.13298124406556 + ], + [ + -80.33069487085896, + 26.13298124406556 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.33069487085896, + 26.195632254908944 + ], + [ + -80.2908075520122, + 26.195632254908944 + ], + [ + -80.31075121143559, + 26.226957760330635 + ], + [ + -80.33069487085896, + 26.195632254908944 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.33069487085896, + 26.195632254908944 + ], + [ + -80.31075121143559, + 26.226957760330635 + ], + [ + -80.35063853028234, + 26.226957760330635 + ], + [ + -80.33069487085896, + 26.195632254908944 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.33069487085896, + 26.195632254908944 + ], + [ + -80.35063853028234, + 26.226957760330635 + ], + [ + -80.37058218970573, + 26.195632254908944 + ], + [ + -80.33069487085896, + 26.195632254908944 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.33069487085896, + 26.195632254908944 + ], + [ + -80.37058218970573, + 26.195632254908944 + ], + [ + -80.35063853028234, + 26.164306749487253 + ], + [ + -80.33069487085896, + 26.195632254908944 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.33069487085896, + 26.195632254908944 + ], + [ + -80.35063853028234, + 26.164306749487253 + ], + [ + -80.31075121143559, + 26.164306749487253 + ], + [ + -80.33069487085896, + 26.195632254908944 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.33069487085896, + 26.195632254908944 + ], + [ + -80.31075121143559, + 26.164306749487253 + ], + [ + -80.2908075520122, + 26.195632254908944 + ], + [ + -80.33069487085896, + 26.195632254908944 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.33069487085896, + 26.258283265752333 + ], + [ + -80.2908075520122, + 26.258283265752333 + ], + [ + -80.31075121143559, + 26.289608771174024 + ], + [ + -80.33069487085896, + 26.258283265752333 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.33069487085896, + 26.258283265752333 + ], + [ + -80.31075121143559, + 26.289608771174024 + ], + [ + -80.35063853028234, + 26.289608771174024 + ], + [ + -80.33069487085896, + 26.258283265752333 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.33069487085896, + 26.258283265752333 + ], + [ + -80.35063853028234, + 26.289608771174024 + ], + [ + -80.37058218970573, + 26.258283265752333 + ], + [ + -80.33069487085896, + 26.258283265752333 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.33069487085896, + 26.258283265752333 + ], + [ + -80.37058218970573, + 26.258283265752333 + ], + [ + -80.35063853028234, + 26.22695776033064 + ], + [ + -80.33069487085896, + 26.258283265752333 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.33069487085896, + 26.258283265752333 + ], + [ + -80.35063853028234, + 26.22695776033064 + ], + [ + -80.31075121143559, + 26.22695776033064 + ], + [ + -80.33069487085896, + 26.258283265752333 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.33069487085896, + 26.258283265752333 + ], + [ + -80.31075121143559, + 26.22695776033064 + ], + [ + -80.2908075520122, + 26.258283265752333 + ], + [ + -80.33069487085896, + 26.258283265752333 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.33069487085896, + 26.320934276595715 + ], + [ + -80.2908075520122, + 26.320934276595715 + ], + [ + -80.31075121143559, + 26.352259782017406 + ], + [ + -80.33069487085896, + 26.320934276595715 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.33069487085896, + 26.320934276595715 + ], + [ + -80.31075121143559, + 26.352259782017406 + ], + [ + -80.35063853028234, + 26.352259782017406 + ], + [ + -80.33069487085896, + 26.320934276595715 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.33069487085896, + 26.320934276595715 + ], + [ + -80.35063853028234, + 26.352259782017406 + ], + [ + -80.37058218970573, + 26.320934276595715 + ], + [ + -80.33069487085896, + 26.320934276595715 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.33069487085896, + 26.320934276595715 + ], + [ + -80.37058218970573, + 26.320934276595715 + ], + [ + -80.35063853028234, + 26.289608771174024 + ], + [ + -80.33069487085896, + 26.320934276595715 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.33069487085896, + 26.320934276595715 + ], + [ + -80.35063853028234, + 26.289608771174024 + ], + [ + -80.31075121143559, + 26.289608771174024 + ], + [ + -80.33069487085896, + 26.320934276595715 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.33069487085896, + 26.320934276595715 + ], + [ + -80.31075121143559, + 26.289608771174024 + ], + [ + -80.2908075520122, + 26.320934276595715 + ], + [ + -80.33069487085896, + 26.320934276595715 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.33069487085896, + 26.3835852874391 + ], + [ + -80.2908075520122, + 26.3835852874391 + ], + [ + -80.31075121143559, + 26.41491079286079 + ], + [ + -80.33069487085896, + 26.3835852874391 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.33069487085896, + 26.3835852874391 + ], + [ + -80.31075121143559, + 26.41491079286079 + ], + [ + -80.35063853028234, + 26.41491079286079 + ], + [ + -80.33069487085896, + 26.3835852874391 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.33069487085896, + 26.3835852874391 + ], + [ + -80.35063853028234, + 26.41491079286079 + ], + [ + -80.37058218970573, + 26.3835852874391 + ], + [ + -80.33069487085896, + 26.3835852874391 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.33069487085896, + 26.3835852874391 + ], + [ + -80.37058218970573, + 26.3835852874391 + ], + [ + -80.35063853028234, + 26.35225978201741 + ], + [ + -80.33069487085896, + 26.3835852874391 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.33069487085896, + 26.3835852874391 + ], + [ + -80.35063853028234, + 26.35225978201741 + ], + [ + -80.31075121143559, + 26.35225978201741 + ], + [ + -80.33069487085896, + 26.3835852874391 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.33069487085896, + 26.3835852874391 + ], + [ + -80.31075121143559, + 26.35225978201741 + ], + [ + -80.2908075520122, + 26.3835852874391 + ], + [ + -80.33069487085896, + 26.3835852874391 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.33069487085896, + 26.446236298282486 + ], + [ + -80.2908075520122, + 26.446236298282486 + ], + [ + -80.31075121143559, + 26.477561803704177 + ], + [ + -80.33069487085896, + 26.446236298282486 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.33069487085896, + 26.446236298282486 + ], + [ + -80.31075121143559, + 26.477561803704177 + ], + [ + -80.35063853028234, + 26.477561803704177 + ], + [ + -80.33069487085896, + 26.446236298282486 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.33069487085896, + 26.446236298282486 + ], + [ + -80.35063853028234, + 26.477561803704177 + ], + [ + -80.37058218970573, + 26.446236298282486 + ], + [ + -80.33069487085896, + 26.446236298282486 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.33069487085896, + 26.446236298282486 + ], + [ + -80.37058218970573, + 26.446236298282486 + ], + [ + -80.35063853028234, + 26.414910792860795 + ], + [ + -80.33069487085896, + 26.446236298282486 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.33069487085896, + 26.446236298282486 + ], + [ + -80.35063853028234, + 26.414910792860795 + ], + [ + -80.31075121143559, + 26.414910792860795 + ], + [ + -80.33069487085896, + 26.446236298282486 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.33069487085896, + 26.446236298282486 + ], + [ + -80.31075121143559, + 26.414910792860795 + ], + [ + -80.2908075520122, + 26.446236298282486 + ], + [ + -80.33069487085896, + 26.446236298282486 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.27086389258882, + 24.911286532619545 + ], + [ + -80.23097657374205, + 24.911286532619545 + ], + [ + -80.25092023316544, + 24.942612038041236 + ], + [ + -80.27086389258882, + 24.911286532619545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.27086389258882, + 24.911286532619545 + ], + [ + -80.25092023316544, + 24.942612038041236 + ], + [ + -80.2908075520122, + 24.942612038041236 + ], + [ + -80.27086389258882, + 24.911286532619545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.27086389258882, + 24.911286532619545 + ], + [ + -80.2908075520122, + 24.942612038041236 + ], + [ + -80.31075121143559, + 24.911286532619545 + ], + [ + -80.27086389258882, + 24.911286532619545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.27086389258882, + 24.911286532619545 + ], + [ + -80.31075121143559, + 24.911286532619545 + ], + [ + -80.2908075520122, + 24.879961027197854 + ], + [ + -80.27086389258882, + 24.911286532619545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.27086389258882, + 24.911286532619545 + ], + [ + -80.2908075520122, + 24.879961027197854 + ], + [ + -80.25092023316544, + 24.879961027197854 + ], + [ + -80.27086389258882, + 24.911286532619545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.27086389258882, + 24.911286532619545 + ], + [ + -80.25092023316544, + 24.879961027197854 + ], + [ + -80.23097657374205, + 24.911286532619545 + ], + [ + -80.27086389258882, + 24.911286532619545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.27086389258882, + 24.97393754346293 + ], + [ + -80.23097657374205, + 24.97393754346293 + ], + [ + -80.25092023316544, + 25.005263048884622 + ], + [ + -80.27086389258882, + 24.97393754346293 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.27086389258882, + 24.97393754346293 + ], + [ + -80.25092023316544, + 25.005263048884622 + ], + [ + -80.2908075520122, + 25.005263048884622 + ], + [ + -80.27086389258882, + 24.97393754346293 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.27086389258882, + 24.97393754346293 + ], + [ + -80.2908075520122, + 25.005263048884622 + ], + [ + -80.31075121143559, + 24.97393754346293 + ], + [ + -80.27086389258882, + 24.97393754346293 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.27086389258882, + 24.97393754346293 + ], + [ + -80.31075121143559, + 24.97393754346293 + ], + [ + -80.2908075520122, + 24.94261203804124 + ], + [ + -80.27086389258882, + 24.97393754346293 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.27086389258882, + 24.97393754346293 + ], + [ + -80.2908075520122, + 24.94261203804124 + ], + [ + -80.25092023316544, + 24.94261203804124 + ], + [ + -80.27086389258882, + 24.97393754346293 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.27086389258882, + 24.97393754346293 + ], + [ + -80.25092023316544, + 24.94261203804124 + ], + [ + -80.23097657374205, + 24.97393754346293 + ], + [ + -80.27086389258882, + 24.97393754346293 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.27086389258882, + 25.036588554306316 + ], + [ + -80.23097657374205, + 25.036588554306316 + ], + [ + -80.25092023316544, + 25.067914059728007 + ], + [ + -80.27086389258882, + 25.036588554306316 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.27086389258882, + 25.036588554306316 + ], + [ + -80.25092023316544, + 25.067914059728007 + ], + [ + -80.2908075520122, + 25.067914059728007 + ], + [ + -80.27086389258882, + 25.036588554306316 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.27086389258882, + 25.036588554306316 + ], + [ + -80.2908075520122, + 25.067914059728007 + ], + [ + -80.31075121143559, + 25.036588554306316 + ], + [ + -80.27086389258882, + 25.036588554306316 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.27086389258882, + 25.036588554306316 + ], + [ + -80.31075121143559, + 25.036588554306316 + ], + [ + -80.2908075520122, + 25.005263048884625 + ], + [ + -80.27086389258882, + 25.036588554306316 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.27086389258882, + 25.036588554306316 + ], + [ + -80.2908075520122, + 25.005263048884625 + ], + [ + -80.25092023316544, + 25.005263048884625 + ], + [ + -80.27086389258882, + 25.036588554306316 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.27086389258882, + 25.036588554306316 + ], + [ + -80.25092023316544, + 25.005263048884625 + ], + [ + -80.23097657374205, + 25.036588554306316 + ], + [ + -80.27086389258882, + 25.036588554306316 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.27086389258882, + 25.099239565149702 + ], + [ + -80.23097657374205, + 25.099239565149702 + ], + [ + -80.25092023316544, + 25.130565070571393 + ], + [ + -80.27086389258882, + 25.099239565149702 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.27086389258882, + 25.099239565149702 + ], + [ + -80.25092023316544, + 25.130565070571393 + ], + [ + -80.2908075520122, + 25.130565070571393 + ], + [ + -80.27086389258882, + 25.099239565149702 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.27086389258882, + 25.099239565149702 + ], + [ + -80.2908075520122, + 25.130565070571393 + ], + [ + -80.31075121143559, + 25.099239565149702 + ], + [ + -80.27086389258882, + 25.099239565149702 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.27086389258882, + 25.099239565149702 + ], + [ + -80.31075121143559, + 25.099239565149702 + ], + [ + -80.2908075520122, + 25.06791405972801 + ], + [ + -80.27086389258882, + 25.099239565149702 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.27086389258882, + 25.099239565149702 + ], + [ + -80.2908075520122, + 25.06791405972801 + ], + [ + -80.25092023316544, + 25.06791405972801 + ], + [ + -80.27086389258882, + 25.099239565149702 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.27086389258882, + 25.099239565149702 + ], + [ + -80.25092023316544, + 25.06791405972801 + ], + [ + -80.23097657374205, + 25.099239565149702 + ], + [ + -80.27086389258882, + 25.099239565149702 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.27086389258882, + 25.161890575993088 + ], + [ + -80.23097657374205, + 25.161890575993088 + ], + [ + -80.25092023316544, + 25.19321608141478 + ], + [ + -80.27086389258882, + 25.161890575993088 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.27086389258882, + 25.161890575993088 + ], + [ + -80.25092023316544, + 25.19321608141478 + ], + [ + -80.2908075520122, + 25.19321608141478 + ], + [ + -80.27086389258882, + 25.161890575993088 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.27086389258882, + 25.161890575993088 + ], + [ + -80.2908075520122, + 25.19321608141478 + ], + [ + -80.31075121143559, + 25.161890575993088 + ], + [ + -80.27086389258882, + 25.161890575993088 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.27086389258882, + 25.161890575993088 + ], + [ + -80.31075121143559, + 25.161890575993088 + ], + [ + -80.2908075520122, + 25.130565070571397 + ], + [ + -80.27086389258882, + 25.161890575993088 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.27086389258882, + 25.161890575993088 + ], + [ + -80.2908075520122, + 25.130565070571397 + ], + [ + -80.25092023316544, + 25.130565070571397 + ], + [ + -80.27086389258882, + 25.161890575993088 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.27086389258882, + 25.161890575993088 + ], + [ + -80.25092023316544, + 25.130565070571397 + ], + [ + -80.23097657374205, + 25.161890575993088 + ], + [ + -80.27086389258882, + 25.161890575993088 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.27086389258882, + 25.224541586836473 + ], + [ + -80.23097657374205, + 25.224541586836473 + ], + [ + -80.25092023316544, + 25.255867092258164 + ], + [ + -80.27086389258882, + 25.224541586836473 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.27086389258882, + 25.224541586836473 + ], + [ + -80.25092023316544, + 25.255867092258164 + ], + [ + -80.2908075520122, + 25.255867092258164 + ], + [ + -80.27086389258882, + 25.224541586836473 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.27086389258882, + 25.224541586836473 + ], + [ + -80.2908075520122, + 25.255867092258164 + ], + [ + -80.31075121143559, + 25.224541586836473 + ], + [ + -80.27086389258882, + 25.224541586836473 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.27086389258882, + 25.224541586836473 + ], + [ + -80.31075121143559, + 25.224541586836473 + ], + [ + -80.2908075520122, + 25.193216081414782 + ], + [ + -80.27086389258882, + 25.224541586836473 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.27086389258882, + 25.224541586836473 + ], + [ + -80.2908075520122, + 25.193216081414782 + ], + [ + -80.25092023316544, + 25.193216081414782 + ], + [ + -80.27086389258882, + 25.224541586836473 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.27086389258882, + 25.224541586836473 + ], + [ + -80.25092023316544, + 25.193216081414782 + ], + [ + -80.23097657374205, + 25.224541586836473 + ], + [ + -80.27086389258882, + 25.224541586836473 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.27086389258882, + 25.28719259767986 + ], + [ + -80.23097657374205, + 25.28719259767986 + ], + [ + -80.25092023316544, + 25.31851810310155 + ], + [ + -80.27086389258882, + 25.28719259767986 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.27086389258882, + 25.28719259767986 + ], + [ + -80.25092023316544, + 25.31851810310155 + ], + [ + -80.2908075520122, + 25.31851810310155 + ], + [ + -80.27086389258882, + 25.28719259767986 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.27086389258882, + 25.28719259767986 + ], + [ + -80.2908075520122, + 25.31851810310155 + ], + [ + -80.31075121143559, + 25.28719259767986 + ], + [ + -80.27086389258882, + 25.28719259767986 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.27086389258882, + 25.28719259767986 + ], + [ + -80.31075121143559, + 25.28719259767986 + ], + [ + -80.2908075520122, + 25.255867092258168 + ], + [ + -80.27086389258882, + 25.28719259767986 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.27086389258882, + 25.28719259767986 + ], + [ + -80.2908075520122, + 25.255867092258168 + ], + [ + -80.25092023316544, + 25.255867092258168 + ], + [ + -80.27086389258882, + 25.28719259767986 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.27086389258882, + 25.28719259767986 + ], + [ + -80.25092023316544, + 25.255867092258168 + ], + [ + -80.23097657374205, + 25.28719259767986 + ], + [ + -80.27086389258882, + 25.28719259767986 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.27086389258882, + 25.349843608523244 + ], + [ + -80.23097657374205, + 25.349843608523244 + ], + [ + -80.25092023316544, + 25.381169113944935 + ], + [ + -80.27086389258882, + 25.349843608523244 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.27086389258882, + 25.349843608523244 + ], + [ + -80.25092023316544, + 25.381169113944935 + ], + [ + -80.2908075520122, + 25.381169113944935 + ], + [ + -80.27086389258882, + 25.349843608523244 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.27086389258882, + 25.349843608523244 + ], + [ + -80.2908075520122, + 25.381169113944935 + ], + [ + -80.31075121143559, + 25.349843608523244 + ], + [ + -80.27086389258882, + 25.349843608523244 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.27086389258882, + 25.349843608523244 + ], + [ + -80.31075121143559, + 25.349843608523244 + ], + [ + -80.2908075520122, + 25.318518103101553 + ], + [ + -80.27086389258882, + 25.349843608523244 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.27086389258882, + 25.349843608523244 + ], + [ + -80.2908075520122, + 25.318518103101553 + ], + [ + -80.25092023316544, + 25.318518103101553 + ], + [ + -80.27086389258882, + 25.349843608523244 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.27086389258882, + 25.349843608523244 + ], + [ + -80.25092023316544, + 25.318518103101553 + ], + [ + -80.23097657374205, + 25.349843608523244 + ], + [ + -80.27086389258882, + 25.349843608523244 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.27086389258882, + 25.41249461936663 + ], + [ + -80.23097657374205, + 25.41249461936663 + ], + [ + -80.25092023316544, + 25.44382012478832 + ], + [ + -80.27086389258882, + 25.41249461936663 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.27086389258882, + 25.41249461936663 + ], + [ + -80.25092023316544, + 25.44382012478832 + ], + [ + -80.2908075520122, + 25.44382012478832 + ], + [ + -80.27086389258882, + 25.41249461936663 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.27086389258882, + 25.41249461936663 + ], + [ + -80.2908075520122, + 25.44382012478832 + ], + [ + -80.31075121143559, + 25.41249461936663 + ], + [ + -80.27086389258882, + 25.41249461936663 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.27086389258882, + 25.41249461936663 + ], + [ + -80.31075121143559, + 25.41249461936663 + ], + [ + -80.2908075520122, + 25.38116911394494 + ], + [ + -80.27086389258882, + 25.41249461936663 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.27086389258882, + 25.41249461936663 + ], + [ + -80.2908075520122, + 25.38116911394494 + ], + [ + -80.25092023316544, + 25.38116911394494 + ], + [ + -80.27086389258882, + 25.41249461936663 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.27086389258882, + 25.41249461936663 + ], + [ + -80.25092023316544, + 25.38116911394494 + ], + [ + -80.23097657374205, + 25.41249461936663 + ], + [ + -80.27086389258882, + 25.41249461936663 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.27086389258882, + 25.475145630210015 + ], + [ + -80.23097657374205, + 25.475145630210015 + ], + [ + -80.25092023316544, + 25.506471135631706 + ], + [ + -80.27086389258882, + 25.475145630210015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.27086389258882, + 25.475145630210015 + ], + [ + -80.25092023316544, + 25.506471135631706 + ], + [ + -80.2908075520122, + 25.506471135631706 + ], + [ + -80.27086389258882, + 25.475145630210015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.27086389258882, + 25.475145630210015 + ], + [ + -80.2908075520122, + 25.506471135631706 + ], + [ + -80.31075121143559, + 25.475145630210015 + ], + [ + -80.27086389258882, + 25.475145630210015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.27086389258882, + 25.475145630210015 + ], + [ + -80.31075121143559, + 25.475145630210015 + ], + [ + -80.2908075520122, + 25.443820124788324 + ], + [ + -80.27086389258882, + 25.475145630210015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.27086389258882, + 25.475145630210015 + ], + [ + -80.2908075520122, + 25.443820124788324 + ], + [ + -80.25092023316544, + 25.443820124788324 + ], + [ + -80.27086389258882, + 25.475145630210015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.27086389258882, + 25.475145630210015 + ], + [ + -80.25092023316544, + 25.443820124788324 + ], + [ + -80.23097657374205, + 25.475145630210015 + ], + [ + -80.27086389258882, + 25.475145630210015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.27086389258882, + 25.5377966410534 + ], + [ + -80.23097657374205, + 25.5377966410534 + ], + [ + -80.25092023316544, + 25.56912214647509 + ], + [ + -80.27086389258882, + 25.5377966410534 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.27086389258882, + 25.5377966410534 + ], + [ + -80.25092023316544, + 25.56912214647509 + ], + [ + -80.2908075520122, + 25.56912214647509 + ], + [ + -80.27086389258882, + 25.5377966410534 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.27086389258882, + 25.5377966410534 + ], + [ + -80.2908075520122, + 25.56912214647509 + ], + [ + -80.31075121143559, + 25.5377966410534 + ], + [ + -80.27086389258882, + 25.5377966410534 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.27086389258882, + 25.5377966410534 + ], + [ + -80.31075121143559, + 25.5377966410534 + ], + [ + -80.2908075520122, + 25.50647113563171 + ], + [ + -80.27086389258882, + 25.5377966410534 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.27086389258882, + 25.5377966410534 + ], + [ + -80.2908075520122, + 25.50647113563171 + ], + [ + -80.25092023316544, + 25.50647113563171 + ], + [ + -80.27086389258882, + 25.5377966410534 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.27086389258882, + 25.5377966410534 + ], + [ + -80.25092023316544, + 25.50647113563171 + ], + [ + -80.23097657374205, + 25.5377966410534 + ], + [ + -80.27086389258882, + 25.5377966410534 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.27086389258882, + 25.600447651896786 + ], + [ + -80.23097657374205, + 25.600447651896786 + ], + [ + -80.25092023316544, + 25.631773157318477 + ], + [ + -80.27086389258882, + 25.600447651896786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.27086389258882, + 25.600447651896786 + ], + [ + -80.25092023316544, + 25.631773157318477 + ], + [ + -80.2908075520122, + 25.631773157318477 + ], + [ + -80.27086389258882, + 25.600447651896786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.27086389258882, + 25.600447651896786 + ], + [ + -80.2908075520122, + 25.631773157318477 + ], + [ + -80.31075121143559, + 25.600447651896786 + ], + [ + -80.27086389258882, + 25.600447651896786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.27086389258882, + 25.600447651896786 + ], + [ + -80.31075121143559, + 25.600447651896786 + ], + [ + -80.2908075520122, + 25.569122146475095 + ], + [ + -80.27086389258882, + 25.600447651896786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.27086389258882, + 25.600447651896786 + ], + [ + -80.2908075520122, + 25.569122146475095 + ], + [ + -80.25092023316544, + 25.569122146475095 + ], + [ + -80.27086389258882, + 25.600447651896786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.27086389258882, + 25.600447651896786 + ], + [ + -80.25092023316544, + 25.569122146475095 + ], + [ + -80.23097657374205, + 25.600447651896786 + ], + [ + -80.27086389258882, + 25.600447651896786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.27086389258882, + 25.663098662740172 + ], + [ + -80.23097657374205, + 25.663098662740172 + ], + [ + -80.25092023316544, + 25.694424168161863 + ], + [ + -80.27086389258882, + 25.663098662740172 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.27086389258882, + 25.663098662740172 + ], + [ + -80.25092023316544, + 25.694424168161863 + ], + [ + -80.2908075520122, + 25.694424168161863 + ], + [ + -80.27086389258882, + 25.663098662740172 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.27086389258882, + 25.663098662740172 + ], + [ + -80.2908075520122, + 25.694424168161863 + ], + [ + -80.31075121143559, + 25.663098662740172 + ], + [ + -80.27086389258882, + 25.663098662740172 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.27086389258882, + 25.663098662740172 + ], + [ + -80.31075121143559, + 25.663098662740172 + ], + [ + -80.2908075520122, + 25.63177315731848 + ], + [ + -80.27086389258882, + 25.663098662740172 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.27086389258882, + 25.663098662740172 + ], + [ + -80.2908075520122, + 25.63177315731848 + ], + [ + -80.25092023316544, + 25.63177315731848 + ], + [ + -80.27086389258882, + 25.663098662740172 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.27086389258882, + 25.663098662740172 + ], + [ + -80.25092023316544, + 25.63177315731848 + ], + [ + -80.23097657374205, + 25.663098662740172 + ], + [ + -80.27086389258882, + 25.663098662740172 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.27086389258882, + 25.725749673583557 + ], + [ + -80.23097657374205, + 25.725749673583557 + ], + [ + -80.25092023316544, + 25.75707517900525 + ], + [ + -80.27086389258882, + 25.725749673583557 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.27086389258882, + 25.725749673583557 + ], + [ + -80.25092023316544, + 25.75707517900525 + ], + [ + -80.2908075520122, + 25.75707517900525 + ], + [ + -80.27086389258882, + 25.725749673583557 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.27086389258882, + 25.725749673583557 + ], + [ + -80.2908075520122, + 25.75707517900525 + ], + [ + -80.31075121143559, + 25.725749673583557 + ], + [ + -80.27086389258882, + 25.725749673583557 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.27086389258882, + 25.725749673583557 + ], + [ + -80.31075121143559, + 25.725749673583557 + ], + [ + -80.2908075520122, + 25.694424168161866 + ], + [ + -80.27086389258882, + 25.725749673583557 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.27086389258882, + 25.725749673583557 + ], + [ + -80.2908075520122, + 25.694424168161866 + ], + [ + -80.25092023316544, + 25.694424168161866 + ], + [ + -80.27086389258882, + 25.725749673583557 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.27086389258882, + 25.725749673583557 + ], + [ + -80.25092023316544, + 25.694424168161866 + ], + [ + -80.23097657374205, + 25.725749673583557 + ], + [ + -80.27086389258882, + 25.725749673583557 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.27086389258882, + 25.788400684426943 + ], + [ + -80.23097657374205, + 25.788400684426943 + ], + [ + -80.25092023316544, + 25.819726189848634 + ], + [ + -80.27086389258882, + 25.788400684426943 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.27086389258882, + 25.788400684426943 + ], + [ + -80.25092023316544, + 25.819726189848634 + ], + [ + -80.2908075520122, + 25.819726189848634 + ], + [ + -80.27086389258882, + 25.788400684426943 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.27086389258882, + 25.788400684426943 + ], + [ + -80.2908075520122, + 25.819726189848634 + ], + [ + -80.31075121143559, + 25.788400684426943 + ], + [ + -80.27086389258882, + 25.788400684426943 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.27086389258882, + 25.788400684426943 + ], + [ + -80.31075121143559, + 25.788400684426943 + ], + [ + -80.2908075520122, + 25.757075179005252 + ], + [ + -80.27086389258882, + 25.788400684426943 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.27086389258882, + 25.788400684426943 + ], + [ + -80.2908075520122, + 25.757075179005252 + ], + [ + -80.25092023316544, + 25.757075179005252 + ], + [ + -80.27086389258882, + 25.788400684426943 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.27086389258882, + 25.788400684426943 + ], + [ + -80.25092023316544, + 25.757075179005252 + ], + [ + -80.23097657374205, + 25.788400684426943 + ], + [ + -80.27086389258882, + 25.788400684426943 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.27086389258882, + 25.85105169527033 + ], + [ + -80.23097657374205, + 25.85105169527033 + ], + [ + -80.25092023316544, + 25.88237720069202 + ], + [ + -80.27086389258882, + 25.85105169527033 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.27086389258882, + 25.85105169527033 + ], + [ + -80.25092023316544, + 25.88237720069202 + ], + [ + -80.2908075520122, + 25.88237720069202 + ], + [ + -80.27086389258882, + 25.85105169527033 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.27086389258882, + 25.85105169527033 + ], + [ + -80.2908075520122, + 25.88237720069202 + ], + [ + -80.31075121143559, + 25.85105169527033 + ], + [ + -80.27086389258882, + 25.85105169527033 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.27086389258882, + 25.85105169527033 + ], + [ + -80.31075121143559, + 25.85105169527033 + ], + [ + -80.2908075520122, + 25.819726189848637 + ], + [ + -80.27086389258882, + 25.85105169527033 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.27086389258882, + 25.85105169527033 + ], + [ + -80.2908075520122, + 25.819726189848637 + ], + [ + -80.25092023316544, + 25.819726189848637 + ], + [ + -80.27086389258882, + 25.85105169527033 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.27086389258882, + 25.85105169527033 + ], + [ + -80.25092023316544, + 25.819726189848637 + ], + [ + -80.23097657374205, + 25.85105169527033 + ], + [ + -80.27086389258882, + 25.85105169527033 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.27086389258882, + 25.913702706113714 + ], + [ + -80.23097657374205, + 25.913702706113714 + ], + [ + -80.25092023316544, + 25.945028211535405 + ], + [ + -80.27086389258882, + 25.913702706113714 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.27086389258882, + 25.913702706113714 + ], + [ + -80.25092023316544, + 25.945028211535405 + ], + [ + -80.2908075520122, + 25.945028211535405 + ], + [ + -80.27086389258882, + 25.913702706113714 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.27086389258882, + 25.913702706113714 + ], + [ + -80.2908075520122, + 25.945028211535405 + ], + [ + -80.31075121143559, + 25.913702706113714 + ], + [ + -80.27086389258882, + 25.913702706113714 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.27086389258882, + 25.913702706113714 + ], + [ + -80.31075121143559, + 25.913702706113714 + ], + [ + -80.2908075520122, + 25.882377200692023 + ], + [ + -80.27086389258882, + 25.913702706113714 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.27086389258882, + 25.913702706113714 + ], + [ + -80.2908075520122, + 25.882377200692023 + ], + [ + -80.25092023316544, + 25.882377200692023 + ], + [ + -80.27086389258882, + 25.913702706113714 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.27086389258882, + 25.913702706113714 + ], + [ + -80.25092023316544, + 25.882377200692023 + ], + [ + -80.23097657374205, + 25.913702706113714 + ], + [ + -80.27086389258882, + 25.913702706113714 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.27086389258882, + 25.9763537169571 + ], + [ + -80.23097657374205, + 25.9763537169571 + ], + [ + -80.25092023316544, + 26.00767922237879 + ], + [ + -80.27086389258882, + 25.9763537169571 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.27086389258882, + 25.9763537169571 + ], + [ + -80.25092023316544, + 26.00767922237879 + ], + [ + -80.2908075520122, + 26.00767922237879 + ], + [ + -80.27086389258882, + 25.9763537169571 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.27086389258882, + 25.9763537169571 + ], + [ + -80.2908075520122, + 26.00767922237879 + ], + [ + -80.31075121143559, + 25.9763537169571 + ], + [ + -80.27086389258882, + 25.9763537169571 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.27086389258882, + 25.9763537169571 + ], + [ + -80.31075121143559, + 25.9763537169571 + ], + [ + -80.2908075520122, + 25.94502821153541 + ], + [ + -80.27086389258882, + 25.9763537169571 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.27086389258882, + 25.9763537169571 + ], + [ + -80.2908075520122, + 25.94502821153541 + ], + [ + -80.25092023316544, + 25.94502821153541 + ], + [ + -80.27086389258882, + 25.9763537169571 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.27086389258882, + 25.9763537169571 + ], + [ + -80.25092023316544, + 25.94502821153541 + ], + [ + -80.23097657374205, + 25.9763537169571 + ], + [ + -80.27086389258882, + 25.9763537169571 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.27086389258882, + 26.039004727800485 + ], + [ + -80.23097657374205, + 26.039004727800485 + ], + [ + -80.25092023316544, + 26.070330233222176 + ], + [ + -80.27086389258882, + 26.039004727800485 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.27086389258882, + 26.039004727800485 + ], + [ + -80.25092023316544, + 26.070330233222176 + ], + [ + -80.2908075520122, + 26.070330233222176 + ], + [ + -80.27086389258882, + 26.039004727800485 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.27086389258882, + 26.039004727800485 + ], + [ + -80.2908075520122, + 26.070330233222176 + ], + [ + -80.31075121143559, + 26.039004727800485 + ], + [ + -80.27086389258882, + 26.039004727800485 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.27086389258882, + 26.039004727800485 + ], + [ + -80.31075121143559, + 26.039004727800485 + ], + [ + -80.2908075520122, + 26.007679222378794 + ], + [ + -80.27086389258882, + 26.039004727800485 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.27086389258882, + 26.039004727800485 + ], + [ + -80.2908075520122, + 26.007679222378794 + ], + [ + -80.25092023316544, + 26.007679222378794 + ], + [ + -80.27086389258882, + 26.039004727800485 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.27086389258882, + 26.039004727800485 + ], + [ + -80.25092023316544, + 26.007679222378794 + ], + [ + -80.23097657374205, + 26.039004727800485 + ], + [ + -80.27086389258882, + 26.039004727800485 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.27086389258882, + 26.10165573864387 + ], + [ + -80.23097657374205, + 26.10165573864387 + ], + [ + -80.25092023316544, + 26.13298124406556 + ], + [ + -80.27086389258882, + 26.10165573864387 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.27086389258882, + 26.10165573864387 + ], + [ + -80.25092023316544, + 26.13298124406556 + ], + [ + -80.2908075520122, + 26.13298124406556 + ], + [ + -80.27086389258882, + 26.10165573864387 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.27086389258882, + 26.10165573864387 + ], + [ + -80.2908075520122, + 26.13298124406556 + ], + [ + -80.31075121143559, + 26.10165573864387 + ], + [ + -80.27086389258882, + 26.10165573864387 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.27086389258882, + 26.10165573864387 + ], + [ + -80.31075121143559, + 26.10165573864387 + ], + [ + -80.2908075520122, + 26.07033023322218 + ], + [ + -80.27086389258882, + 26.10165573864387 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.27086389258882, + 26.10165573864387 + ], + [ + -80.2908075520122, + 26.07033023322218 + ], + [ + -80.25092023316544, + 26.07033023322218 + ], + [ + -80.27086389258882, + 26.10165573864387 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.27086389258882, + 26.10165573864387 + ], + [ + -80.25092023316544, + 26.07033023322218 + ], + [ + -80.23097657374205, + 26.10165573864387 + ], + [ + -80.27086389258882, + 26.10165573864387 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.27086389258882, + 26.164306749487253 + ], + [ + -80.23097657374205, + 26.164306749487253 + ], + [ + -80.25092023316544, + 26.195632254908944 + ], + [ + -80.27086389258882, + 26.164306749487253 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.27086389258882, + 26.164306749487253 + ], + [ + -80.25092023316544, + 26.195632254908944 + ], + [ + -80.2908075520122, + 26.195632254908944 + ], + [ + -80.27086389258882, + 26.164306749487253 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.27086389258882, + 26.164306749487253 + ], + [ + -80.2908075520122, + 26.195632254908944 + ], + [ + -80.31075121143559, + 26.164306749487253 + ], + [ + -80.27086389258882, + 26.164306749487253 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.27086389258882, + 26.164306749487253 + ], + [ + -80.31075121143559, + 26.164306749487253 + ], + [ + -80.2908075520122, + 26.13298124406556 + ], + [ + -80.27086389258882, + 26.164306749487253 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.27086389258882, + 26.164306749487253 + ], + [ + -80.2908075520122, + 26.13298124406556 + ], + [ + -80.25092023316544, + 26.13298124406556 + ], + [ + -80.27086389258882, + 26.164306749487253 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.27086389258882, + 26.164306749487253 + ], + [ + -80.25092023316544, + 26.13298124406556 + ], + [ + -80.23097657374205, + 26.164306749487253 + ], + [ + -80.27086389258882, + 26.164306749487253 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.27086389258882, + 26.22695776033064 + ], + [ + -80.23097657374205, + 26.22695776033064 + ], + [ + -80.25092023316544, + 26.258283265752333 + ], + [ + -80.27086389258882, + 26.22695776033064 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.27086389258882, + 26.22695776033064 + ], + [ + -80.25092023316544, + 26.258283265752333 + ], + [ + -80.2908075520122, + 26.258283265752333 + ], + [ + -80.27086389258882, + 26.22695776033064 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.27086389258882, + 26.22695776033064 + ], + [ + -80.2908075520122, + 26.258283265752333 + ], + [ + -80.31075121143559, + 26.22695776033064 + ], + [ + -80.27086389258882, + 26.22695776033064 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.27086389258882, + 26.22695776033064 + ], + [ + -80.31075121143559, + 26.22695776033064 + ], + [ + -80.2908075520122, + 26.19563225490895 + ], + [ + -80.27086389258882, + 26.22695776033064 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.27086389258882, + 26.22695776033064 + ], + [ + -80.2908075520122, + 26.19563225490895 + ], + [ + -80.25092023316544, + 26.19563225490895 + ], + [ + -80.27086389258882, + 26.22695776033064 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.27086389258882, + 26.22695776033064 + ], + [ + -80.25092023316544, + 26.19563225490895 + ], + [ + -80.23097657374205, + 26.22695776033064 + ], + [ + -80.27086389258882, + 26.22695776033064 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.27086389258882, + 26.289608771174024 + ], + [ + -80.23097657374205, + 26.289608771174024 + ], + [ + -80.25092023316544, + 26.320934276595715 + ], + [ + -80.27086389258882, + 26.289608771174024 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.27086389258882, + 26.289608771174024 + ], + [ + -80.25092023316544, + 26.320934276595715 + ], + [ + -80.2908075520122, + 26.320934276595715 + ], + [ + -80.27086389258882, + 26.289608771174024 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.27086389258882, + 26.289608771174024 + ], + [ + -80.2908075520122, + 26.320934276595715 + ], + [ + -80.31075121143559, + 26.289608771174024 + ], + [ + -80.27086389258882, + 26.289608771174024 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.27086389258882, + 26.289608771174024 + ], + [ + -80.31075121143559, + 26.289608771174024 + ], + [ + -80.2908075520122, + 26.258283265752333 + ], + [ + -80.27086389258882, + 26.289608771174024 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.27086389258882, + 26.289608771174024 + ], + [ + -80.2908075520122, + 26.258283265752333 + ], + [ + -80.25092023316544, + 26.258283265752333 + ], + [ + -80.27086389258882, + 26.289608771174024 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.27086389258882, + 26.289608771174024 + ], + [ + -80.25092023316544, + 26.258283265752333 + ], + [ + -80.23097657374205, + 26.289608771174024 + ], + [ + -80.27086389258882, + 26.289608771174024 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.27086389258882, + 26.35225978201741 + ], + [ + -80.23097657374205, + 26.35225978201741 + ], + [ + -80.25092023316544, + 26.3835852874391 + ], + [ + -80.27086389258882, + 26.35225978201741 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.27086389258882, + 26.35225978201741 + ], + [ + -80.25092023316544, + 26.3835852874391 + ], + [ + -80.2908075520122, + 26.3835852874391 + ], + [ + -80.27086389258882, + 26.35225978201741 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.27086389258882, + 26.35225978201741 + ], + [ + -80.2908075520122, + 26.3835852874391 + ], + [ + -80.31075121143559, + 26.35225978201741 + ], + [ + -80.27086389258882, + 26.35225978201741 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.27086389258882, + 26.35225978201741 + ], + [ + -80.31075121143559, + 26.35225978201741 + ], + [ + -80.2908075520122, + 26.320934276595718 + ], + [ + -80.27086389258882, + 26.35225978201741 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.27086389258882, + 26.35225978201741 + ], + [ + -80.2908075520122, + 26.320934276595718 + ], + [ + -80.25092023316544, + 26.320934276595718 + ], + [ + -80.27086389258882, + 26.35225978201741 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.27086389258882, + 26.35225978201741 + ], + [ + -80.25092023316544, + 26.320934276595718 + ], + [ + -80.23097657374205, + 26.35225978201741 + ], + [ + -80.27086389258882, + 26.35225978201741 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.27086389258882, + 26.414910792860795 + ], + [ + -80.23097657374205, + 26.414910792860795 + ], + [ + -80.25092023316544, + 26.446236298282486 + ], + [ + -80.27086389258882, + 26.414910792860795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.27086389258882, + 26.414910792860795 + ], + [ + -80.25092023316544, + 26.446236298282486 + ], + [ + -80.2908075520122, + 26.446236298282486 + ], + [ + -80.27086389258882, + 26.414910792860795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.27086389258882, + 26.414910792860795 + ], + [ + -80.2908075520122, + 26.446236298282486 + ], + [ + -80.31075121143559, + 26.414910792860795 + ], + [ + -80.27086389258882, + 26.414910792860795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.27086389258882, + 26.414910792860795 + ], + [ + -80.31075121143559, + 26.414910792860795 + ], + [ + -80.2908075520122, + 26.383585287439104 + ], + [ + -80.27086389258882, + 26.414910792860795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.27086389258882, + 26.414910792860795 + ], + [ + -80.2908075520122, + 26.383585287439104 + ], + [ + -80.25092023316544, + 26.383585287439104 + ], + [ + -80.27086389258882, + 26.414910792860795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.27086389258882, + 26.414910792860795 + ], + [ + -80.25092023316544, + 26.383585287439104 + ], + [ + -80.23097657374205, + 26.414910792860795 + ], + [ + -80.27086389258882, + 26.414910792860795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21103291431866, + 24.942612038041236 + ], + [ + -80.1711455954719, + 24.942612038041236 + ], + [ + -80.19108925489529, + 24.973937543462927 + ], + [ + -80.21103291431866, + 24.942612038041236 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21103291431866, + 24.942612038041236 + ], + [ + -80.19108925489529, + 24.973937543462927 + ], + [ + -80.23097657374204, + 24.973937543462927 + ], + [ + -80.21103291431866, + 24.942612038041236 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21103291431866, + 24.942612038041236 + ], + [ + -80.23097657374204, + 24.973937543462927 + ], + [ + -80.25092023316543, + 24.942612038041236 + ], + [ + -80.21103291431866, + 24.942612038041236 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21103291431866, + 24.942612038041236 + ], + [ + -80.25092023316543, + 24.942612038041236 + ], + [ + -80.23097657374204, + 24.911286532619545 + ], + [ + -80.21103291431866, + 24.942612038041236 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21103291431866, + 24.942612038041236 + ], + [ + -80.23097657374204, + 24.911286532619545 + ], + [ + -80.19108925489529, + 24.911286532619545 + ], + [ + -80.21103291431866, + 24.942612038041236 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21103291431866, + 24.942612038041236 + ], + [ + -80.19108925489529, + 24.911286532619545 + ], + [ + -80.1711455954719, + 24.942612038041236 + ], + [ + -80.21103291431866, + 24.942612038041236 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21103291431866, + 25.005263048884622 + ], + [ + -80.1711455954719, + 25.005263048884622 + ], + [ + -80.19108925489529, + 25.036588554306313 + ], + [ + -80.21103291431866, + 25.005263048884622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21103291431866, + 25.005263048884622 + ], + [ + -80.19108925489529, + 25.036588554306313 + ], + [ + -80.23097657374204, + 25.036588554306313 + ], + [ + -80.21103291431866, + 25.005263048884622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21103291431866, + 25.005263048884622 + ], + [ + -80.23097657374204, + 25.036588554306313 + ], + [ + -80.25092023316543, + 25.005263048884622 + ], + [ + -80.21103291431866, + 25.005263048884622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21103291431866, + 25.005263048884622 + ], + [ + -80.25092023316543, + 25.005263048884622 + ], + [ + -80.23097657374204, + 24.97393754346293 + ], + [ + -80.21103291431866, + 25.005263048884622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21103291431866, + 25.005263048884622 + ], + [ + -80.23097657374204, + 24.97393754346293 + ], + [ + -80.19108925489529, + 24.97393754346293 + ], + [ + -80.21103291431866, + 25.005263048884622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21103291431866, + 25.005263048884622 + ], + [ + -80.19108925489529, + 24.97393754346293 + ], + [ + -80.1711455954719, + 25.005263048884622 + ], + [ + -80.21103291431866, + 25.005263048884622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21103291431866, + 25.067914059728007 + ], + [ + -80.1711455954719, + 25.067914059728007 + ], + [ + -80.19108925489529, + 25.0992395651497 + ], + [ + -80.21103291431866, + 25.067914059728007 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21103291431866, + 25.067914059728007 + ], + [ + -80.19108925489529, + 25.0992395651497 + ], + [ + -80.23097657374204, + 25.0992395651497 + ], + [ + -80.21103291431866, + 25.067914059728007 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21103291431866, + 25.067914059728007 + ], + [ + -80.23097657374204, + 25.0992395651497 + ], + [ + -80.25092023316543, + 25.067914059728007 + ], + [ + -80.21103291431866, + 25.067914059728007 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21103291431866, + 25.067914059728007 + ], + [ + -80.25092023316543, + 25.067914059728007 + ], + [ + -80.23097657374204, + 25.036588554306316 + ], + [ + -80.21103291431866, + 25.067914059728007 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21103291431866, + 25.067914059728007 + ], + [ + -80.23097657374204, + 25.036588554306316 + ], + [ + -80.19108925489529, + 25.036588554306316 + ], + [ + -80.21103291431866, + 25.067914059728007 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21103291431866, + 25.067914059728007 + ], + [ + -80.19108925489529, + 25.036588554306316 + ], + [ + -80.1711455954719, + 25.067914059728007 + ], + [ + -80.21103291431866, + 25.067914059728007 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21103291431866, + 25.130565070571393 + ], + [ + -80.1711455954719, + 25.130565070571393 + ], + [ + -80.19108925489529, + 25.161890575993084 + ], + [ + -80.21103291431866, + 25.130565070571393 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21103291431866, + 25.130565070571393 + ], + [ + -80.19108925489529, + 25.161890575993084 + ], + [ + -80.23097657374204, + 25.161890575993084 + ], + [ + -80.21103291431866, + 25.130565070571393 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21103291431866, + 25.130565070571393 + ], + [ + -80.23097657374204, + 25.161890575993084 + ], + [ + -80.25092023316543, + 25.130565070571393 + ], + [ + -80.21103291431866, + 25.130565070571393 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21103291431866, + 25.130565070571393 + ], + [ + -80.25092023316543, + 25.130565070571393 + ], + [ + -80.23097657374204, + 25.099239565149702 + ], + [ + -80.21103291431866, + 25.130565070571393 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21103291431866, + 25.130565070571393 + ], + [ + -80.23097657374204, + 25.099239565149702 + ], + [ + -80.19108925489529, + 25.099239565149702 + ], + [ + -80.21103291431866, + 25.130565070571393 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21103291431866, + 25.130565070571393 + ], + [ + -80.19108925489529, + 25.099239565149702 + ], + [ + -80.1711455954719, + 25.130565070571393 + ], + [ + -80.21103291431866, + 25.130565070571393 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21103291431866, + 25.19321608141478 + ], + [ + -80.1711455954719, + 25.19321608141478 + ], + [ + -80.19108925489529, + 25.22454158683647 + ], + [ + -80.21103291431866, + 25.19321608141478 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21103291431866, + 25.19321608141478 + ], + [ + -80.19108925489529, + 25.22454158683647 + ], + [ + -80.23097657374204, + 25.22454158683647 + ], + [ + -80.21103291431866, + 25.19321608141478 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21103291431866, + 25.19321608141478 + ], + [ + -80.23097657374204, + 25.22454158683647 + ], + [ + -80.25092023316543, + 25.19321608141478 + ], + [ + -80.21103291431866, + 25.19321608141478 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21103291431866, + 25.19321608141478 + ], + [ + -80.25092023316543, + 25.19321608141478 + ], + [ + -80.23097657374204, + 25.161890575993088 + ], + [ + -80.21103291431866, + 25.19321608141478 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21103291431866, + 25.19321608141478 + ], + [ + -80.23097657374204, + 25.161890575993088 + ], + [ + -80.19108925489529, + 25.161890575993088 + ], + [ + -80.21103291431866, + 25.19321608141478 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21103291431866, + 25.19321608141478 + ], + [ + -80.19108925489529, + 25.161890575993088 + ], + [ + -80.1711455954719, + 25.19321608141478 + ], + [ + -80.21103291431866, + 25.19321608141478 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21103291431866, + 25.255867092258164 + ], + [ + -80.1711455954719, + 25.255867092258164 + ], + [ + -80.19108925489529, + 25.287192597679855 + ], + [ + -80.21103291431866, + 25.255867092258164 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21103291431866, + 25.255867092258164 + ], + [ + -80.19108925489529, + 25.287192597679855 + ], + [ + -80.23097657374204, + 25.287192597679855 + ], + [ + -80.21103291431866, + 25.255867092258164 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21103291431866, + 25.255867092258164 + ], + [ + -80.23097657374204, + 25.287192597679855 + ], + [ + -80.25092023316543, + 25.255867092258164 + ], + [ + -80.21103291431866, + 25.255867092258164 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21103291431866, + 25.255867092258164 + ], + [ + -80.25092023316543, + 25.255867092258164 + ], + [ + -80.23097657374204, + 25.224541586836473 + ], + [ + -80.21103291431866, + 25.255867092258164 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21103291431866, + 25.255867092258164 + ], + [ + -80.23097657374204, + 25.224541586836473 + ], + [ + -80.19108925489529, + 25.224541586836473 + ], + [ + -80.21103291431866, + 25.255867092258164 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21103291431866, + 25.255867092258164 + ], + [ + -80.19108925489529, + 25.224541586836473 + ], + [ + -80.1711455954719, + 25.255867092258164 + ], + [ + -80.21103291431866, + 25.255867092258164 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21103291431866, + 25.31851810310155 + ], + [ + -80.1711455954719, + 25.31851810310155 + ], + [ + -80.19108925489529, + 25.34984360852324 + ], + [ + -80.21103291431866, + 25.31851810310155 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21103291431866, + 25.31851810310155 + ], + [ + -80.19108925489529, + 25.34984360852324 + ], + [ + -80.23097657374204, + 25.34984360852324 + ], + [ + -80.21103291431866, + 25.31851810310155 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21103291431866, + 25.31851810310155 + ], + [ + -80.23097657374204, + 25.34984360852324 + ], + [ + -80.25092023316543, + 25.31851810310155 + ], + [ + -80.21103291431866, + 25.31851810310155 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21103291431866, + 25.31851810310155 + ], + [ + -80.25092023316543, + 25.31851810310155 + ], + [ + -80.23097657374204, + 25.28719259767986 + ], + [ + -80.21103291431866, + 25.31851810310155 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21103291431866, + 25.31851810310155 + ], + [ + -80.23097657374204, + 25.28719259767986 + ], + [ + -80.19108925489529, + 25.28719259767986 + ], + [ + -80.21103291431866, + 25.31851810310155 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21103291431866, + 25.31851810310155 + ], + [ + -80.19108925489529, + 25.28719259767986 + ], + [ + -80.1711455954719, + 25.31851810310155 + ], + [ + -80.21103291431866, + 25.31851810310155 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21103291431866, + 25.381169113944935 + ], + [ + -80.1711455954719, + 25.381169113944935 + ], + [ + -80.19108925489529, + 25.412494619366626 + ], + [ + -80.21103291431866, + 25.381169113944935 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21103291431866, + 25.381169113944935 + ], + [ + -80.19108925489529, + 25.412494619366626 + ], + [ + -80.23097657374204, + 25.412494619366626 + ], + [ + -80.21103291431866, + 25.381169113944935 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21103291431866, + 25.381169113944935 + ], + [ + -80.23097657374204, + 25.412494619366626 + ], + [ + -80.25092023316543, + 25.381169113944935 + ], + [ + -80.21103291431866, + 25.381169113944935 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21103291431866, + 25.381169113944935 + ], + [ + -80.25092023316543, + 25.381169113944935 + ], + [ + -80.23097657374204, + 25.349843608523244 + ], + [ + -80.21103291431866, + 25.381169113944935 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21103291431866, + 25.381169113944935 + ], + [ + -80.23097657374204, + 25.349843608523244 + ], + [ + -80.19108925489529, + 25.349843608523244 + ], + [ + -80.21103291431866, + 25.381169113944935 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21103291431866, + 25.381169113944935 + ], + [ + -80.19108925489529, + 25.349843608523244 + ], + [ + -80.1711455954719, + 25.381169113944935 + ], + [ + -80.21103291431866, + 25.381169113944935 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21103291431866, + 25.44382012478832 + ], + [ + -80.1711455954719, + 25.44382012478832 + ], + [ + -80.19108925489529, + 25.47514563021001 + ], + [ + -80.21103291431866, + 25.44382012478832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21103291431866, + 25.44382012478832 + ], + [ + -80.19108925489529, + 25.47514563021001 + ], + [ + -80.23097657374204, + 25.47514563021001 + ], + [ + -80.21103291431866, + 25.44382012478832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21103291431866, + 25.44382012478832 + ], + [ + -80.23097657374204, + 25.47514563021001 + ], + [ + -80.25092023316543, + 25.44382012478832 + ], + [ + -80.21103291431866, + 25.44382012478832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21103291431866, + 25.44382012478832 + ], + [ + -80.25092023316543, + 25.44382012478832 + ], + [ + -80.23097657374204, + 25.41249461936663 + ], + [ + -80.21103291431866, + 25.44382012478832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21103291431866, + 25.44382012478832 + ], + [ + -80.23097657374204, + 25.41249461936663 + ], + [ + -80.19108925489529, + 25.41249461936663 + ], + [ + -80.21103291431866, + 25.44382012478832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21103291431866, + 25.44382012478832 + ], + [ + -80.19108925489529, + 25.41249461936663 + ], + [ + -80.1711455954719, + 25.44382012478832 + ], + [ + -80.21103291431866, + 25.44382012478832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21103291431866, + 25.506471135631706 + ], + [ + -80.1711455954719, + 25.506471135631706 + ], + [ + -80.19108925489529, + 25.537796641053397 + ], + [ + -80.21103291431866, + 25.506471135631706 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21103291431866, + 25.506471135631706 + ], + [ + -80.19108925489529, + 25.537796641053397 + ], + [ + -80.23097657374204, + 25.537796641053397 + ], + [ + -80.21103291431866, + 25.506471135631706 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21103291431866, + 25.506471135631706 + ], + [ + -80.23097657374204, + 25.537796641053397 + ], + [ + -80.25092023316543, + 25.506471135631706 + ], + [ + -80.21103291431866, + 25.506471135631706 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21103291431866, + 25.506471135631706 + ], + [ + -80.25092023316543, + 25.506471135631706 + ], + [ + -80.23097657374204, + 25.475145630210015 + ], + [ + -80.21103291431866, + 25.506471135631706 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21103291431866, + 25.506471135631706 + ], + [ + -80.23097657374204, + 25.475145630210015 + ], + [ + -80.19108925489529, + 25.475145630210015 + ], + [ + -80.21103291431866, + 25.506471135631706 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21103291431866, + 25.506471135631706 + ], + [ + -80.19108925489529, + 25.475145630210015 + ], + [ + -80.1711455954719, + 25.506471135631706 + ], + [ + -80.21103291431866, + 25.506471135631706 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21103291431866, + 25.56912214647509 + ], + [ + -80.1711455954719, + 25.56912214647509 + ], + [ + -80.19108925489529, + 25.600447651896783 + ], + [ + -80.21103291431866, + 25.56912214647509 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21103291431866, + 25.56912214647509 + ], + [ + -80.19108925489529, + 25.600447651896783 + ], + [ + -80.23097657374204, + 25.600447651896783 + ], + [ + -80.21103291431866, + 25.56912214647509 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21103291431866, + 25.56912214647509 + ], + [ + -80.23097657374204, + 25.600447651896783 + ], + [ + -80.25092023316543, + 25.56912214647509 + ], + [ + -80.21103291431866, + 25.56912214647509 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21103291431866, + 25.56912214647509 + ], + [ + -80.25092023316543, + 25.56912214647509 + ], + [ + -80.23097657374204, + 25.5377966410534 + ], + [ + -80.21103291431866, + 25.56912214647509 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21103291431866, + 25.56912214647509 + ], + [ + -80.23097657374204, + 25.5377966410534 + ], + [ + -80.19108925489529, + 25.5377966410534 + ], + [ + -80.21103291431866, + 25.56912214647509 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21103291431866, + 25.56912214647509 + ], + [ + -80.19108925489529, + 25.5377966410534 + ], + [ + -80.1711455954719, + 25.56912214647509 + ], + [ + -80.21103291431866, + 25.56912214647509 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21103291431866, + 25.631773157318477 + ], + [ + -80.1711455954719, + 25.631773157318477 + ], + [ + -80.19108925489529, + 25.66309866274017 + ], + [ + -80.21103291431866, + 25.631773157318477 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21103291431866, + 25.631773157318477 + ], + [ + -80.19108925489529, + 25.66309866274017 + ], + [ + -80.23097657374204, + 25.66309866274017 + ], + [ + -80.21103291431866, + 25.631773157318477 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21103291431866, + 25.631773157318477 + ], + [ + -80.23097657374204, + 25.66309866274017 + ], + [ + -80.25092023316543, + 25.631773157318477 + ], + [ + -80.21103291431866, + 25.631773157318477 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21103291431866, + 25.631773157318477 + ], + [ + -80.25092023316543, + 25.631773157318477 + ], + [ + -80.23097657374204, + 25.600447651896786 + ], + [ + -80.21103291431866, + 25.631773157318477 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21103291431866, + 25.631773157318477 + ], + [ + -80.23097657374204, + 25.600447651896786 + ], + [ + -80.19108925489529, + 25.600447651896786 + ], + [ + -80.21103291431866, + 25.631773157318477 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21103291431866, + 25.631773157318477 + ], + [ + -80.19108925489529, + 25.600447651896786 + ], + [ + -80.1711455954719, + 25.631773157318477 + ], + [ + -80.21103291431866, + 25.631773157318477 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21103291431866, + 25.694424168161863 + ], + [ + -80.1711455954719, + 25.694424168161863 + ], + [ + -80.19108925489529, + 25.725749673583554 + ], + [ + -80.21103291431866, + 25.694424168161863 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21103291431866, + 25.694424168161863 + ], + [ + -80.19108925489529, + 25.725749673583554 + ], + [ + -80.23097657374204, + 25.725749673583554 + ], + [ + -80.21103291431866, + 25.694424168161863 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21103291431866, + 25.694424168161863 + ], + [ + -80.23097657374204, + 25.725749673583554 + ], + [ + -80.25092023316543, + 25.694424168161863 + ], + [ + -80.21103291431866, + 25.694424168161863 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21103291431866, + 25.694424168161863 + ], + [ + -80.25092023316543, + 25.694424168161863 + ], + [ + -80.23097657374204, + 25.663098662740172 + ], + [ + -80.21103291431866, + 25.694424168161863 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21103291431866, + 25.694424168161863 + ], + [ + -80.23097657374204, + 25.663098662740172 + ], + [ + -80.19108925489529, + 25.663098662740172 + ], + [ + -80.21103291431866, + 25.694424168161863 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21103291431866, + 25.694424168161863 + ], + [ + -80.19108925489529, + 25.663098662740172 + ], + [ + -80.1711455954719, + 25.694424168161863 + ], + [ + -80.21103291431866, + 25.694424168161863 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21103291431866, + 25.75707517900525 + ], + [ + -80.1711455954719, + 25.75707517900525 + ], + [ + -80.19108925489529, + 25.78840068442694 + ], + [ + -80.21103291431866, + 25.75707517900525 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21103291431866, + 25.75707517900525 + ], + [ + -80.19108925489529, + 25.78840068442694 + ], + [ + -80.23097657374204, + 25.78840068442694 + ], + [ + -80.21103291431866, + 25.75707517900525 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21103291431866, + 25.75707517900525 + ], + [ + -80.23097657374204, + 25.78840068442694 + ], + [ + -80.25092023316543, + 25.75707517900525 + ], + [ + -80.21103291431866, + 25.75707517900525 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21103291431866, + 25.75707517900525 + ], + [ + -80.25092023316543, + 25.75707517900525 + ], + [ + -80.23097657374204, + 25.725749673583557 + ], + [ + -80.21103291431866, + 25.75707517900525 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21103291431866, + 25.75707517900525 + ], + [ + -80.23097657374204, + 25.725749673583557 + ], + [ + -80.19108925489529, + 25.725749673583557 + ], + [ + -80.21103291431866, + 25.75707517900525 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21103291431866, + 25.75707517900525 + ], + [ + -80.19108925489529, + 25.725749673583557 + ], + [ + -80.1711455954719, + 25.75707517900525 + ], + [ + -80.21103291431866, + 25.75707517900525 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21103291431866, + 25.819726189848634 + ], + [ + -80.1711455954719, + 25.819726189848634 + ], + [ + -80.19108925489529, + 25.851051695270325 + ], + [ + -80.21103291431866, + 25.819726189848634 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21103291431866, + 25.819726189848634 + ], + [ + -80.19108925489529, + 25.851051695270325 + ], + [ + -80.23097657374204, + 25.851051695270325 + ], + [ + -80.21103291431866, + 25.819726189848634 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21103291431866, + 25.819726189848634 + ], + [ + -80.23097657374204, + 25.851051695270325 + ], + [ + -80.25092023316543, + 25.819726189848634 + ], + [ + -80.21103291431866, + 25.819726189848634 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21103291431866, + 25.819726189848634 + ], + [ + -80.25092023316543, + 25.819726189848634 + ], + [ + -80.23097657374204, + 25.788400684426943 + ], + [ + -80.21103291431866, + 25.819726189848634 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21103291431866, + 25.819726189848634 + ], + [ + -80.23097657374204, + 25.788400684426943 + ], + [ + -80.19108925489529, + 25.788400684426943 + ], + [ + -80.21103291431866, + 25.819726189848634 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21103291431866, + 25.819726189848634 + ], + [ + -80.19108925489529, + 25.788400684426943 + ], + [ + -80.1711455954719, + 25.819726189848634 + ], + [ + -80.21103291431866, + 25.819726189848634 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21103291431866, + 25.88237720069202 + ], + [ + -80.1711455954719, + 25.88237720069202 + ], + [ + -80.19108925489529, + 25.91370270611371 + ], + [ + -80.21103291431866, + 25.88237720069202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21103291431866, + 25.88237720069202 + ], + [ + -80.19108925489529, + 25.91370270611371 + ], + [ + -80.23097657374204, + 25.91370270611371 + ], + [ + -80.21103291431866, + 25.88237720069202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21103291431866, + 25.88237720069202 + ], + [ + -80.23097657374204, + 25.91370270611371 + ], + [ + -80.25092023316543, + 25.88237720069202 + ], + [ + -80.21103291431866, + 25.88237720069202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21103291431866, + 25.88237720069202 + ], + [ + -80.25092023316543, + 25.88237720069202 + ], + [ + -80.23097657374204, + 25.85105169527033 + ], + [ + -80.21103291431866, + 25.88237720069202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21103291431866, + 25.88237720069202 + ], + [ + -80.23097657374204, + 25.85105169527033 + ], + [ + -80.19108925489529, + 25.85105169527033 + ], + [ + -80.21103291431866, + 25.88237720069202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21103291431866, + 25.88237720069202 + ], + [ + -80.19108925489529, + 25.85105169527033 + ], + [ + -80.1711455954719, + 25.88237720069202 + ], + [ + -80.21103291431866, + 25.88237720069202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21103291431866, + 25.945028211535405 + ], + [ + -80.1711455954719, + 25.945028211535405 + ], + [ + -80.19108925489529, + 25.976353716957096 + ], + [ + -80.21103291431866, + 25.945028211535405 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21103291431866, + 25.945028211535405 + ], + [ + -80.19108925489529, + 25.976353716957096 + ], + [ + -80.23097657374204, + 25.976353716957096 + ], + [ + -80.21103291431866, + 25.945028211535405 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21103291431866, + 25.945028211535405 + ], + [ + -80.23097657374204, + 25.976353716957096 + ], + [ + -80.25092023316543, + 25.945028211535405 + ], + [ + -80.21103291431866, + 25.945028211535405 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21103291431866, + 25.945028211535405 + ], + [ + -80.25092023316543, + 25.945028211535405 + ], + [ + -80.23097657374204, + 25.913702706113714 + ], + [ + -80.21103291431866, + 25.945028211535405 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21103291431866, + 25.945028211535405 + ], + [ + -80.23097657374204, + 25.913702706113714 + ], + [ + -80.19108925489529, + 25.913702706113714 + ], + [ + -80.21103291431866, + 25.945028211535405 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21103291431866, + 25.945028211535405 + ], + [ + -80.19108925489529, + 25.913702706113714 + ], + [ + -80.1711455954719, + 25.945028211535405 + ], + [ + -80.21103291431866, + 25.945028211535405 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21103291431866, + 26.00767922237879 + ], + [ + -80.1711455954719, + 26.00767922237879 + ], + [ + -80.19108925489529, + 26.03900472780048 + ], + [ + -80.21103291431866, + 26.00767922237879 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21103291431866, + 26.00767922237879 + ], + [ + -80.19108925489529, + 26.03900472780048 + ], + [ + -80.23097657374204, + 26.03900472780048 + ], + [ + -80.21103291431866, + 26.00767922237879 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21103291431866, + 26.00767922237879 + ], + [ + -80.23097657374204, + 26.03900472780048 + ], + [ + -80.25092023316543, + 26.00767922237879 + ], + [ + -80.21103291431866, + 26.00767922237879 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21103291431866, + 26.00767922237879 + ], + [ + -80.25092023316543, + 26.00767922237879 + ], + [ + -80.23097657374204, + 25.9763537169571 + ], + [ + -80.21103291431866, + 26.00767922237879 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21103291431866, + 26.00767922237879 + ], + [ + -80.23097657374204, + 25.9763537169571 + ], + [ + -80.19108925489529, + 25.9763537169571 + ], + [ + -80.21103291431866, + 26.00767922237879 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21103291431866, + 26.00767922237879 + ], + [ + -80.19108925489529, + 25.9763537169571 + ], + [ + -80.1711455954719, + 26.00767922237879 + ], + [ + -80.21103291431866, + 26.00767922237879 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21103291431866, + 26.070330233222176 + ], + [ + -80.1711455954719, + 26.070330233222176 + ], + [ + -80.19108925489529, + 26.101655738643867 + ], + [ + -80.21103291431866, + 26.070330233222176 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21103291431866, + 26.070330233222176 + ], + [ + -80.19108925489529, + 26.101655738643867 + ], + [ + -80.23097657374204, + 26.101655738643867 + ], + [ + -80.21103291431866, + 26.070330233222176 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21103291431866, + 26.070330233222176 + ], + [ + -80.23097657374204, + 26.101655738643867 + ], + [ + -80.25092023316543, + 26.070330233222176 + ], + [ + -80.21103291431866, + 26.070330233222176 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21103291431866, + 26.070330233222176 + ], + [ + -80.25092023316543, + 26.070330233222176 + ], + [ + -80.23097657374204, + 26.039004727800485 + ], + [ + -80.21103291431866, + 26.070330233222176 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21103291431866, + 26.070330233222176 + ], + [ + -80.23097657374204, + 26.039004727800485 + ], + [ + -80.19108925489529, + 26.039004727800485 + ], + [ + -80.21103291431866, + 26.070330233222176 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21103291431866, + 26.070330233222176 + ], + [ + -80.19108925489529, + 26.039004727800485 + ], + [ + -80.1711455954719, + 26.070330233222176 + ], + [ + -80.21103291431866, + 26.070330233222176 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21103291431866, + 26.13298124406556 + ], + [ + -80.1711455954719, + 26.13298124406556 + ], + [ + -80.19108925489529, + 26.164306749487253 + ], + [ + -80.21103291431866, + 26.13298124406556 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21103291431866, + 26.13298124406556 + ], + [ + -80.19108925489529, + 26.164306749487253 + ], + [ + -80.23097657374204, + 26.164306749487253 + ], + [ + -80.21103291431866, + 26.13298124406556 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21103291431866, + 26.13298124406556 + ], + [ + -80.23097657374204, + 26.164306749487253 + ], + [ + -80.25092023316543, + 26.13298124406556 + ], + [ + -80.21103291431866, + 26.13298124406556 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21103291431866, + 26.13298124406556 + ], + [ + -80.25092023316543, + 26.13298124406556 + ], + [ + -80.23097657374204, + 26.10165573864387 + ], + [ + -80.21103291431866, + 26.13298124406556 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21103291431866, + 26.13298124406556 + ], + [ + -80.23097657374204, + 26.10165573864387 + ], + [ + -80.19108925489529, + 26.10165573864387 + ], + [ + -80.21103291431866, + 26.13298124406556 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21103291431866, + 26.13298124406556 + ], + [ + -80.19108925489529, + 26.10165573864387 + ], + [ + -80.1711455954719, + 26.13298124406556 + ], + [ + -80.21103291431866, + 26.13298124406556 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21103291431866, + 26.195632254908944 + ], + [ + -80.1711455954719, + 26.195632254908944 + ], + [ + -80.19108925489529, + 26.226957760330635 + ], + [ + -80.21103291431866, + 26.195632254908944 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21103291431866, + 26.195632254908944 + ], + [ + -80.19108925489529, + 26.226957760330635 + ], + [ + -80.23097657374204, + 26.226957760330635 + ], + [ + -80.21103291431866, + 26.195632254908944 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21103291431866, + 26.195632254908944 + ], + [ + -80.23097657374204, + 26.226957760330635 + ], + [ + -80.25092023316543, + 26.195632254908944 + ], + [ + -80.21103291431866, + 26.195632254908944 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21103291431866, + 26.195632254908944 + ], + [ + -80.25092023316543, + 26.195632254908944 + ], + [ + -80.23097657374204, + 26.164306749487253 + ], + [ + -80.21103291431866, + 26.195632254908944 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21103291431866, + 26.195632254908944 + ], + [ + -80.23097657374204, + 26.164306749487253 + ], + [ + -80.19108925489529, + 26.164306749487253 + ], + [ + -80.21103291431866, + 26.195632254908944 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21103291431866, + 26.195632254908944 + ], + [ + -80.19108925489529, + 26.164306749487253 + ], + [ + -80.1711455954719, + 26.195632254908944 + ], + [ + -80.21103291431866, + 26.195632254908944 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21103291431866, + 26.258283265752333 + ], + [ + -80.1711455954719, + 26.258283265752333 + ], + [ + -80.19108925489529, + 26.289608771174024 + ], + [ + -80.21103291431866, + 26.258283265752333 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21103291431866, + 26.258283265752333 + ], + [ + -80.19108925489529, + 26.289608771174024 + ], + [ + -80.23097657374204, + 26.289608771174024 + ], + [ + -80.21103291431866, + 26.258283265752333 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21103291431866, + 26.258283265752333 + ], + [ + -80.23097657374204, + 26.289608771174024 + ], + [ + -80.25092023316543, + 26.258283265752333 + ], + [ + -80.21103291431866, + 26.258283265752333 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21103291431866, + 26.258283265752333 + ], + [ + -80.25092023316543, + 26.258283265752333 + ], + [ + -80.23097657374204, + 26.22695776033064 + ], + [ + -80.21103291431866, + 26.258283265752333 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21103291431866, + 26.258283265752333 + ], + [ + -80.23097657374204, + 26.22695776033064 + ], + [ + -80.19108925489529, + 26.22695776033064 + ], + [ + -80.21103291431866, + 26.258283265752333 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21103291431866, + 26.258283265752333 + ], + [ + -80.19108925489529, + 26.22695776033064 + ], + [ + -80.1711455954719, + 26.258283265752333 + ], + [ + -80.21103291431866, + 26.258283265752333 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21103291431866, + 26.320934276595715 + ], + [ + -80.1711455954719, + 26.320934276595715 + ], + [ + -80.19108925489529, + 26.352259782017406 + ], + [ + -80.21103291431866, + 26.320934276595715 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21103291431866, + 26.320934276595715 + ], + [ + -80.19108925489529, + 26.352259782017406 + ], + [ + -80.23097657374204, + 26.352259782017406 + ], + [ + -80.21103291431866, + 26.320934276595715 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21103291431866, + 26.320934276595715 + ], + [ + -80.23097657374204, + 26.352259782017406 + ], + [ + -80.25092023316543, + 26.320934276595715 + ], + [ + -80.21103291431866, + 26.320934276595715 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21103291431866, + 26.320934276595715 + ], + [ + -80.25092023316543, + 26.320934276595715 + ], + [ + -80.23097657374204, + 26.289608771174024 + ], + [ + -80.21103291431866, + 26.320934276595715 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21103291431866, + 26.320934276595715 + ], + [ + -80.23097657374204, + 26.289608771174024 + ], + [ + -80.19108925489529, + 26.289608771174024 + ], + [ + -80.21103291431866, + 26.320934276595715 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21103291431866, + 26.320934276595715 + ], + [ + -80.19108925489529, + 26.289608771174024 + ], + [ + -80.1711455954719, + 26.320934276595715 + ], + [ + -80.21103291431866, + 26.320934276595715 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21103291431866, + 26.3835852874391 + ], + [ + -80.1711455954719, + 26.3835852874391 + ], + [ + -80.19108925489529, + 26.41491079286079 + ], + [ + -80.21103291431866, + 26.3835852874391 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21103291431866, + 26.3835852874391 + ], + [ + -80.19108925489529, + 26.41491079286079 + ], + [ + -80.23097657374204, + 26.41491079286079 + ], + [ + -80.21103291431866, + 26.3835852874391 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21103291431866, + 26.3835852874391 + ], + [ + -80.23097657374204, + 26.41491079286079 + ], + [ + -80.25092023316543, + 26.3835852874391 + ], + [ + -80.21103291431866, + 26.3835852874391 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21103291431866, + 26.3835852874391 + ], + [ + -80.25092023316543, + 26.3835852874391 + ], + [ + -80.23097657374204, + 26.35225978201741 + ], + [ + -80.21103291431866, + 26.3835852874391 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21103291431866, + 26.3835852874391 + ], + [ + -80.23097657374204, + 26.35225978201741 + ], + [ + -80.19108925489529, + 26.35225978201741 + ], + [ + -80.21103291431866, + 26.3835852874391 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21103291431866, + 26.3835852874391 + ], + [ + -80.19108925489529, + 26.35225978201741 + ], + [ + -80.1711455954719, + 26.3835852874391 + ], + [ + -80.21103291431866, + 26.3835852874391 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21103291431866, + 26.446236298282486 + ], + [ + -80.1711455954719, + 26.446236298282486 + ], + [ + -80.19108925489529, + 26.477561803704177 + ], + [ + -80.21103291431866, + 26.446236298282486 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21103291431866, + 26.446236298282486 + ], + [ + -80.19108925489529, + 26.477561803704177 + ], + [ + -80.23097657374204, + 26.477561803704177 + ], + [ + -80.21103291431866, + 26.446236298282486 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21103291431866, + 26.446236298282486 + ], + [ + -80.23097657374204, + 26.477561803704177 + ], + [ + -80.25092023316543, + 26.446236298282486 + ], + [ + -80.21103291431866, + 26.446236298282486 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21103291431866, + 26.446236298282486 + ], + [ + -80.25092023316543, + 26.446236298282486 + ], + [ + -80.23097657374204, + 26.414910792860795 + ], + [ + -80.21103291431866, + 26.446236298282486 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21103291431866, + 26.446236298282486 + ], + [ + -80.23097657374204, + 26.414910792860795 + ], + [ + -80.19108925489529, + 26.414910792860795 + ], + [ + -80.21103291431866, + 26.446236298282486 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21103291431866, + 26.446236298282486 + ], + [ + -80.19108925489529, + 26.414910792860795 + ], + [ + -80.1711455954719, + 26.446236298282486 + ], + [ + -80.21103291431866, + 26.446236298282486 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.15120193604852, + 24.911286532619545 + ], + [ + -80.11131461720176, + 24.911286532619545 + ], + [ + -80.13125827662515, + 24.942612038041236 + ], + [ + -80.15120193604852, + 24.911286532619545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.15120193604852, + 24.911286532619545 + ], + [ + -80.13125827662515, + 24.942612038041236 + ], + [ + -80.1711455954719, + 24.942612038041236 + ], + [ + -80.15120193604852, + 24.911286532619545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.15120193604852, + 24.911286532619545 + ], + [ + -80.1711455954719, + 24.942612038041236 + ], + [ + -80.19108925489529, + 24.911286532619545 + ], + [ + -80.15120193604852, + 24.911286532619545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.15120193604852, + 24.911286532619545 + ], + [ + -80.19108925489529, + 24.911286532619545 + ], + [ + -80.1711455954719, + 24.879961027197854 + ], + [ + -80.15120193604852, + 24.911286532619545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.15120193604852, + 24.911286532619545 + ], + [ + -80.1711455954719, + 24.879961027197854 + ], + [ + -80.13125827662515, + 24.879961027197854 + ], + [ + -80.15120193604852, + 24.911286532619545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.15120193604852, + 24.911286532619545 + ], + [ + -80.13125827662515, + 24.879961027197854 + ], + [ + -80.11131461720176, + 24.911286532619545 + ], + [ + -80.15120193604852, + 24.911286532619545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.15120193604852, + 24.97393754346293 + ], + [ + -80.11131461720176, + 24.97393754346293 + ], + [ + -80.13125827662515, + 25.005263048884622 + ], + [ + -80.15120193604852, + 24.97393754346293 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.15120193604852, + 24.97393754346293 + ], + [ + -80.13125827662515, + 25.005263048884622 + ], + [ + -80.1711455954719, + 25.005263048884622 + ], + [ + -80.15120193604852, + 24.97393754346293 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.15120193604852, + 24.97393754346293 + ], + [ + -80.1711455954719, + 25.005263048884622 + ], + [ + -80.19108925489529, + 24.97393754346293 + ], + [ + -80.15120193604852, + 24.97393754346293 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.15120193604852, + 24.97393754346293 + ], + [ + -80.19108925489529, + 24.97393754346293 + ], + [ + -80.1711455954719, + 24.94261203804124 + ], + [ + -80.15120193604852, + 24.97393754346293 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.15120193604852, + 24.97393754346293 + ], + [ + -80.1711455954719, + 24.94261203804124 + ], + [ + -80.13125827662515, + 24.94261203804124 + ], + [ + -80.15120193604852, + 24.97393754346293 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.15120193604852, + 24.97393754346293 + ], + [ + -80.13125827662515, + 24.94261203804124 + ], + [ + -80.11131461720176, + 24.97393754346293 + ], + [ + -80.15120193604852, + 24.97393754346293 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.15120193604852, + 25.036588554306316 + ], + [ + -80.11131461720176, + 25.036588554306316 + ], + [ + -80.13125827662515, + 25.067914059728007 + ], + [ + -80.15120193604852, + 25.036588554306316 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.15120193604852, + 25.036588554306316 + ], + [ + -80.13125827662515, + 25.067914059728007 + ], + [ + -80.1711455954719, + 25.067914059728007 + ], + [ + -80.15120193604852, + 25.036588554306316 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.15120193604852, + 25.036588554306316 + ], + [ + -80.1711455954719, + 25.067914059728007 + ], + [ + -80.19108925489529, + 25.036588554306316 + ], + [ + -80.15120193604852, + 25.036588554306316 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.15120193604852, + 25.036588554306316 + ], + [ + -80.19108925489529, + 25.036588554306316 + ], + [ + -80.1711455954719, + 25.005263048884625 + ], + [ + -80.15120193604852, + 25.036588554306316 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.15120193604852, + 25.036588554306316 + ], + [ + -80.1711455954719, + 25.005263048884625 + ], + [ + -80.13125827662515, + 25.005263048884625 + ], + [ + -80.15120193604852, + 25.036588554306316 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.15120193604852, + 25.036588554306316 + ], + [ + -80.13125827662515, + 25.005263048884625 + ], + [ + -80.11131461720176, + 25.036588554306316 + ], + [ + -80.15120193604852, + 25.036588554306316 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.15120193604852, + 25.099239565149702 + ], + [ + -80.11131461720176, + 25.099239565149702 + ], + [ + -80.13125827662515, + 25.130565070571393 + ], + [ + -80.15120193604852, + 25.099239565149702 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.15120193604852, + 25.099239565149702 + ], + [ + -80.13125827662515, + 25.130565070571393 + ], + [ + -80.1711455954719, + 25.130565070571393 + ], + [ + -80.15120193604852, + 25.099239565149702 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.15120193604852, + 25.099239565149702 + ], + [ + -80.1711455954719, + 25.130565070571393 + ], + [ + -80.19108925489529, + 25.099239565149702 + ], + [ + -80.15120193604852, + 25.099239565149702 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.15120193604852, + 25.099239565149702 + ], + [ + -80.19108925489529, + 25.099239565149702 + ], + [ + -80.1711455954719, + 25.06791405972801 + ], + [ + -80.15120193604852, + 25.099239565149702 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.15120193604852, + 25.099239565149702 + ], + [ + -80.1711455954719, + 25.06791405972801 + ], + [ + -80.13125827662515, + 25.06791405972801 + ], + [ + -80.15120193604852, + 25.099239565149702 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.15120193604852, + 25.099239565149702 + ], + [ + -80.13125827662515, + 25.06791405972801 + ], + [ + -80.11131461720176, + 25.099239565149702 + ], + [ + -80.15120193604852, + 25.099239565149702 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.15120193604852, + 25.161890575993088 + ], + [ + -80.11131461720176, + 25.161890575993088 + ], + [ + -80.13125827662515, + 25.19321608141478 + ], + [ + -80.15120193604852, + 25.161890575993088 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.15120193604852, + 25.161890575993088 + ], + [ + -80.13125827662515, + 25.19321608141478 + ], + [ + -80.1711455954719, + 25.19321608141478 + ], + [ + -80.15120193604852, + 25.161890575993088 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.15120193604852, + 25.161890575993088 + ], + [ + -80.1711455954719, + 25.19321608141478 + ], + [ + -80.19108925489529, + 25.161890575993088 + ], + [ + -80.15120193604852, + 25.161890575993088 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.15120193604852, + 25.161890575993088 + ], + [ + -80.19108925489529, + 25.161890575993088 + ], + [ + -80.1711455954719, + 25.130565070571397 + ], + [ + -80.15120193604852, + 25.161890575993088 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.15120193604852, + 25.161890575993088 + ], + [ + -80.1711455954719, + 25.130565070571397 + ], + [ + -80.13125827662515, + 25.130565070571397 + ], + [ + -80.15120193604852, + 25.161890575993088 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.15120193604852, + 25.161890575993088 + ], + [ + -80.13125827662515, + 25.130565070571397 + ], + [ + -80.11131461720176, + 25.161890575993088 + ], + [ + -80.15120193604852, + 25.161890575993088 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.15120193604852, + 25.224541586836473 + ], + [ + -80.11131461720176, + 25.224541586836473 + ], + [ + -80.13125827662515, + 25.255867092258164 + ], + [ + -80.15120193604852, + 25.224541586836473 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.15120193604852, + 25.224541586836473 + ], + [ + -80.13125827662515, + 25.255867092258164 + ], + [ + -80.1711455954719, + 25.255867092258164 + ], + [ + -80.15120193604852, + 25.224541586836473 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.15120193604852, + 25.224541586836473 + ], + [ + -80.1711455954719, + 25.255867092258164 + ], + [ + -80.19108925489529, + 25.224541586836473 + ], + [ + -80.15120193604852, + 25.224541586836473 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.15120193604852, + 25.224541586836473 + ], + [ + -80.19108925489529, + 25.224541586836473 + ], + [ + -80.1711455954719, + 25.193216081414782 + ], + [ + -80.15120193604852, + 25.224541586836473 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.15120193604852, + 25.224541586836473 + ], + [ + -80.1711455954719, + 25.193216081414782 + ], + [ + -80.13125827662515, + 25.193216081414782 + ], + [ + -80.15120193604852, + 25.224541586836473 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.15120193604852, + 25.224541586836473 + ], + [ + -80.13125827662515, + 25.193216081414782 + ], + [ + -80.11131461720176, + 25.224541586836473 + ], + [ + -80.15120193604852, + 25.224541586836473 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.15120193604852, + 25.28719259767986 + ], + [ + -80.11131461720176, + 25.28719259767986 + ], + [ + -80.13125827662515, + 25.31851810310155 + ], + [ + -80.15120193604852, + 25.28719259767986 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.15120193604852, + 25.28719259767986 + ], + [ + -80.13125827662515, + 25.31851810310155 + ], + [ + -80.1711455954719, + 25.31851810310155 + ], + [ + -80.15120193604852, + 25.28719259767986 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.15120193604852, + 25.28719259767986 + ], + [ + -80.1711455954719, + 25.31851810310155 + ], + [ + -80.19108925489529, + 25.28719259767986 + ], + [ + -80.15120193604852, + 25.28719259767986 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.15120193604852, + 25.28719259767986 + ], + [ + -80.19108925489529, + 25.28719259767986 + ], + [ + -80.1711455954719, + 25.255867092258168 + ], + [ + -80.15120193604852, + 25.28719259767986 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.15120193604852, + 25.28719259767986 + ], + [ + -80.1711455954719, + 25.255867092258168 + ], + [ + -80.13125827662515, + 25.255867092258168 + ], + [ + -80.15120193604852, + 25.28719259767986 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.15120193604852, + 25.28719259767986 + ], + [ + -80.13125827662515, + 25.255867092258168 + ], + [ + -80.11131461720176, + 25.28719259767986 + ], + [ + -80.15120193604852, + 25.28719259767986 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.15120193604852, + 25.349843608523244 + ], + [ + -80.11131461720176, + 25.349843608523244 + ], + [ + -80.13125827662515, + 25.381169113944935 + ], + [ + -80.15120193604852, + 25.349843608523244 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.15120193604852, + 25.349843608523244 + ], + [ + -80.13125827662515, + 25.381169113944935 + ], + [ + -80.1711455954719, + 25.381169113944935 + ], + [ + -80.15120193604852, + 25.349843608523244 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.15120193604852, + 25.349843608523244 + ], + [ + -80.1711455954719, + 25.381169113944935 + ], + [ + -80.19108925489529, + 25.349843608523244 + ], + [ + -80.15120193604852, + 25.349843608523244 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.15120193604852, + 25.349843608523244 + ], + [ + -80.19108925489529, + 25.349843608523244 + ], + [ + -80.1711455954719, + 25.318518103101553 + ], + [ + -80.15120193604852, + 25.349843608523244 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.15120193604852, + 25.349843608523244 + ], + [ + -80.1711455954719, + 25.318518103101553 + ], + [ + -80.13125827662515, + 25.318518103101553 + ], + [ + -80.15120193604852, + 25.349843608523244 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.15120193604852, + 25.349843608523244 + ], + [ + -80.13125827662515, + 25.318518103101553 + ], + [ + -80.11131461720176, + 25.349843608523244 + ], + [ + -80.15120193604852, + 25.349843608523244 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.15120193604852, + 25.41249461936663 + ], + [ + -80.11131461720176, + 25.41249461936663 + ], + [ + -80.13125827662515, + 25.44382012478832 + ], + [ + -80.15120193604852, + 25.41249461936663 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.15120193604852, + 25.41249461936663 + ], + [ + -80.13125827662515, + 25.44382012478832 + ], + [ + -80.1711455954719, + 25.44382012478832 + ], + [ + -80.15120193604852, + 25.41249461936663 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.15120193604852, + 25.41249461936663 + ], + [ + -80.1711455954719, + 25.44382012478832 + ], + [ + -80.19108925489529, + 25.41249461936663 + ], + [ + -80.15120193604852, + 25.41249461936663 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.15120193604852, + 25.41249461936663 + ], + [ + -80.19108925489529, + 25.41249461936663 + ], + [ + -80.1711455954719, + 25.38116911394494 + ], + [ + -80.15120193604852, + 25.41249461936663 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.15120193604852, + 25.41249461936663 + ], + [ + -80.1711455954719, + 25.38116911394494 + ], + [ + -80.13125827662515, + 25.38116911394494 + ], + [ + -80.15120193604852, + 25.41249461936663 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.15120193604852, + 25.41249461936663 + ], + [ + -80.13125827662515, + 25.38116911394494 + ], + [ + -80.11131461720176, + 25.41249461936663 + ], + [ + -80.15120193604852, + 25.41249461936663 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.15120193604852, + 25.475145630210015 + ], + [ + -80.11131461720176, + 25.475145630210015 + ], + [ + -80.13125827662515, + 25.506471135631706 + ], + [ + -80.15120193604852, + 25.475145630210015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.15120193604852, + 25.475145630210015 + ], + [ + -80.13125827662515, + 25.506471135631706 + ], + [ + -80.1711455954719, + 25.506471135631706 + ], + [ + -80.15120193604852, + 25.475145630210015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.15120193604852, + 25.475145630210015 + ], + [ + -80.1711455954719, + 25.506471135631706 + ], + [ + -80.19108925489529, + 25.475145630210015 + ], + [ + -80.15120193604852, + 25.475145630210015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.15120193604852, + 25.475145630210015 + ], + [ + -80.19108925489529, + 25.475145630210015 + ], + [ + -80.1711455954719, + 25.443820124788324 + ], + [ + -80.15120193604852, + 25.475145630210015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.15120193604852, + 25.475145630210015 + ], + [ + -80.1711455954719, + 25.443820124788324 + ], + [ + -80.13125827662515, + 25.443820124788324 + ], + [ + -80.15120193604852, + 25.475145630210015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.15120193604852, + 25.475145630210015 + ], + [ + -80.13125827662515, + 25.443820124788324 + ], + [ + -80.11131461720176, + 25.475145630210015 + ], + [ + -80.15120193604852, + 25.475145630210015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.15120193604852, + 25.5377966410534 + ], + [ + -80.11131461720176, + 25.5377966410534 + ], + [ + -80.13125827662515, + 25.56912214647509 + ], + [ + -80.15120193604852, + 25.5377966410534 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.15120193604852, + 25.5377966410534 + ], + [ + -80.13125827662515, + 25.56912214647509 + ], + [ + -80.1711455954719, + 25.56912214647509 + ], + [ + -80.15120193604852, + 25.5377966410534 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.15120193604852, + 25.5377966410534 + ], + [ + -80.1711455954719, + 25.56912214647509 + ], + [ + -80.19108925489529, + 25.5377966410534 + ], + [ + -80.15120193604852, + 25.5377966410534 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.15120193604852, + 25.5377966410534 + ], + [ + -80.19108925489529, + 25.5377966410534 + ], + [ + -80.1711455954719, + 25.50647113563171 + ], + [ + -80.15120193604852, + 25.5377966410534 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.15120193604852, + 25.5377966410534 + ], + [ + -80.1711455954719, + 25.50647113563171 + ], + [ + -80.13125827662515, + 25.50647113563171 + ], + [ + -80.15120193604852, + 25.5377966410534 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.15120193604852, + 25.5377966410534 + ], + [ + -80.13125827662515, + 25.50647113563171 + ], + [ + -80.11131461720176, + 25.5377966410534 + ], + [ + -80.15120193604852, + 25.5377966410534 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.15120193604852, + 25.600447651896786 + ], + [ + -80.11131461720176, + 25.600447651896786 + ], + [ + -80.13125827662515, + 25.631773157318477 + ], + [ + -80.15120193604852, + 25.600447651896786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.15120193604852, + 25.600447651896786 + ], + [ + -80.13125827662515, + 25.631773157318477 + ], + [ + -80.1711455954719, + 25.631773157318477 + ], + [ + -80.15120193604852, + 25.600447651896786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.15120193604852, + 25.600447651896786 + ], + [ + -80.1711455954719, + 25.631773157318477 + ], + [ + -80.19108925489529, + 25.600447651896786 + ], + [ + -80.15120193604852, + 25.600447651896786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.15120193604852, + 25.600447651896786 + ], + [ + -80.19108925489529, + 25.600447651896786 + ], + [ + -80.1711455954719, + 25.569122146475095 + ], + [ + -80.15120193604852, + 25.600447651896786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.15120193604852, + 25.600447651896786 + ], + [ + -80.1711455954719, + 25.569122146475095 + ], + [ + -80.13125827662515, + 25.569122146475095 + ], + [ + -80.15120193604852, + 25.600447651896786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.15120193604852, + 25.600447651896786 + ], + [ + -80.13125827662515, + 25.569122146475095 + ], + [ + -80.11131461720176, + 25.600447651896786 + ], + [ + -80.15120193604852, + 25.600447651896786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.15120193604852, + 25.663098662740172 + ], + [ + -80.11131461720176, + 25.663098662740172 + ], + [ + -80.13125827662515, + 25.694424168161863 + ], + [ + -80.15120193604852, + 25.663098662740172 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.15120193604852, + 25.663098662740172 + ], + [ + -80.13125827662515, + 25.694424168161863 + ], + [ + -80.1711455954719, + 25.694424168161863 + ], + [ + -80.15120193604852, + 25.663098662740172 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.15120193604852, + 25.663098662740172 + ], + [ + -80.1711455954719, + 25.694424168161863 + ], + [ + -80.19108925489529, + 25.663098662740172 + ], + [ + -80.15120193604852, + 25.663098662740172 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.15120193604852, + 25.663098662740172 + ], + [ + -80.19108925489529, + 25.663098662740172 + ], + [ + -80.1711455954719, + 25.63177315731848 + ], + [ + -80.15120193604852, + 25.663098662740172 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.15120193604852, + 25.663098662740172 + ], + [ + -80.1711455954719, + 25.63177315731848 + ], + [ + -80.13125827662515, + 25.63177315731848 + ], + [ + -80.15120193604852, + 25.663098662740172 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.15120193604852, + 25.663098662740172 + ], + [ + -80.13125827662515, + 25.63177315731848 + ], + [ + -80.11131461720176, + 25.663098662740172 + ], + [ + -80.15120193604852, + 25.663098662740172 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.15120193604852, + 25.725749673583557 + ], + [ + -80.11131461720176, + 25.725749673583557 + ], + [ + -80.13125827662515, + 25.75707517900525 + ], + [ + -80.15120193604852, + 25.725749673583557 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.15120193604852, + 25.725749673583557 + ], + [ + -80.13125827662515, + 25.75707517900525 + ], + [ + -80.1711455954719, + 25.75707517900525 + ], + [ + -80.15120193604852, + 25.725749673583557 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.15120193604852, + 25.725749673583557 + ], + [ + -80.1711455954719, + 25.75707517900525 + ], + [ + -80.19108925489529, + 25.725749673583557 + ], + [ + -80.15120193604852, + 25.725749673583557 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.15120193604852, + 25.725749673583557 + ], + [ + -80.19108925489529, + 25.725749673583557 + ], + [ + -80.1711455954719, + 25.694424168161866 + ], + [ + -80.15120193604852, + 25.725749673583557 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.15120193604852, + 25.725749673583557 + ], + [ + -80.1711455954719, + 25.694424168161866 + ], + [ + -80.13125827662515, + 25.694424168161866 + ], + [ + -80.15120193604852, + 25.725749673583557 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.15120193604852, + 25.725749673583557 + ], + [ + -80.13125827662515, + 25.694424168161866 + ], + [ + -80.11131461720176, + 25.725749673583557 + ], + [ + -80.15120193604852, + 25.725749673583557 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.15120193604852, + 25.788400684426943 + ], + [ + -80.11131461720176, + 25.788400684426943 + ], + [ + -80.13125827662515, + 25.819726189848634 + ], + [ + -80.15120193604852, + 25.788400684426943 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.15120193604852, + 25.788400684426943 + ], + [ + -80.13125827662515, + 25.819726189848634 + ], + [ + -80.1711455954719, + 25.819726189848634 + ], + [ + -80.15120193604852, + 25.788400684426943 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.15120193604852, + 25.788400684426943 + ], + [ + -80.1711455954719, + 25.819726189848634 + ], + [ + -80.19108925489529, + 25.788400684426943 + ], + [ + -80.15120193604852, + 25.788400684426943 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.15120193604852, + 25.788400684426943 + ], + [ + -80.19108925489529, + 25.788400684426943 + ], + [ + -80.1711455954719, + 25.757075179005252 + ], + [ + -80.15120193604852, + 25.788400684426943 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.15120193604852, + 25.788400684426943 + ], + [ + -80.1711455954719, + 25.757075179005252 + ], + [ + -80.13125827662515, + 25.757075179005252 + ], + [ + -80.15120193604852, + 25.788400684426943 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.15120193604852, + 25.788400684426943 + ], + [ + -80.13125827662515, + 25.757075179005252 + ], + [ + -80.11131461720176, + 25.788400684426943 + ], + [ + -80.15120193604852, + 25.788400684426943 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.15120193604852, + 25.85105169527033 + ], + [ + -80.11131461720176, + 25.85105169527033 + ], + [ + -80.13125827662515, + 25.88237720069202 + ], + [ + -80.15120193604852, + 25.85105169527033 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.15120193604852, + 25.85105169527033 + ], + [ + -80.13125827662515, + 25.88237720069202 + ], + [ + -80.1711455954719, + 25.88237720069202 + ], + [ + -80.15120193604852, + 25.85105169527033 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.15120193604852, + 25.85105169527033 + ], + [ + -80.1711455954719, + 25.88237720069202 + ], + [ + -80.19108925489529, + 25.85105169527033 + ], + [ + -80.15120193604852, + 25.85105169527033 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.15120193604852, + 25.85105169527033 + ], + [ + -80.19108925489529, + 25.85105169527033 + ], + [ + -80.1711455954719, + 25.819726189848637 + ], + [ + -80.15120193604852, + 25.85105169527033 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.15120193604852, + 25.85105169527033 + ], + [ + -80.1711455954719, + 25.819726189848637 + ], + [ + -80.13125827662515, + 25.819726189848637 + ], + [ + -80.15120193604852, + 25.85105169527033 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.15120193604852, + 25.85105169527033 + ], + [ + -80.13125827662515, + 25.819726189848637 + ], + [ + -80.11131461720176, + 25.85105169527033 + ], + [ + -80.15120193604852, + 25.85105169527033 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.15120193604852, + 25.913702706113714 + ], + [ + -80.11131461720176, + 25.913702706113714 + ], + [ + -80.13125827662515, + 25.945028211535405 + ], + [ + -80.15120193604852, + 25.913702706113714 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.15120193604852, + 25.913702706113714 + ], + [ + -80.13125827662515, + 25.945028211535405 + ], + [ + -80.1711455954719, + 25.945028211535405 + ], + [ + -80.15120193604852, + 25.913702706113714 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.15120193604852, + 25.913702706113714 + ], + [ + -80.1711455954719, + 25.945028211535405 + ], + [ + -80.19108925489529, + 25.913702706113714 + ], + [ + -80.15120193604852, + 25.913702706113714 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.15120193604852, + 25.913702706113714 + ], + [ + -80.19108925489529, + 25.913702706113714 + ], + [ + -80.1711455954719, + 25.882377200692023 + ], + [ + -80.15120193604852, + 25.913702706113714 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.15120193604852, + 25.913702706113714 + ], + [ + -80.1711455954719, + 25.882377200692023 + ], + [ + -80.13125827662515, + 25.882377200692023 + ], + [ + -80.15120193604852, + 25.913702706113714 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.15120193604852, + 25.913702706113714 + ], + [ + -80.13125827662515, + 25.882377200692023 + ], + [ + -80.11131461720176, + 25.913702706113714 + ], + [ + -80.15120193604852, + 25.913702706113714 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.15120193604852, + 25.9763537169571 + ], + [ + -80.11131461720176, + 25.9763537169571 + ], + [ + -80.13125827662515, + 26.00767922237879 + ], + [ + -80.15120193604852, + 25.9763537169571 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.15120193604852, + 25.9763537169571 + ], + [ + -80.13125827662515, + 26.00767922237879 + ], + [ + -80.1711455954719, + 26.00767922237879 + ], + [ + -80.15120193604852, + 25.9763537169571 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.15120193604852, + 25.9763537169571 + ], + [ + -80.1711455954719, + 26.00767922237879 + ], + [ + -80.19108925489529, + 25.9763537169571 + ], + [ + -80.15120193604852, + 25.9763537169571 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.15120193604852, + 25.9763537169571 + ], + [ + -80.19108925489529, + 25.9763537169571 + ], + [ + -80.1711455954719, + 25.94502821153541 + ], + [ + -80.15120193604852, + 25.9763537169571 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.15120193604852, + 25.9763537169571 + ], + [ + -80.1711455954719, + 25.94502821153541 + ], + [ + -80.13125827662515, + 25.94502821153541 + ], + [ + -80.15120193604852, + 25.9763537169571 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.15120193604852, + 25.9763537169571 + ], + [ + -80.13125827662515, + 25.94502821153541 + ], + [ + -80.11131461720176, + 25.9763537169571 + ], + [ + -80.15120193604852, + 25.9763537169571 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.15120193604852, + 26.039004727800485 + ], + [ + -80.11131461720176, + 26.039004727800485 + ], + [ + -80.13125827662515, + 26.070330233222176 + ], + [ + -80.15120193604852, + 26.039004727800485 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.15120193604852, + 26.039004727800485 + ], + [ + -80.13125827662515, + 26.070330233222176 + ], + [ + -80.1711455954719, + 26.070330233222176 + ], + [ + -80.15120193604852, + 26.039004727800485 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.15120193604852, + 26.039004727800485 + ], + [ + -80.1711455954719, + 26.070330233222176 + ], + [ + -80.19108925489529, + 26.039004727800485 + ], + [ + -80.15120193604852, + 26.039004727800485 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.15120193604852, + 26.039004727800485 + ], + [ + -80.19108925489529, + 26.039004727800485 + ], + [ + -80.1711455954719, + 26.007679222378794 + ], + [ + -80.15120193604852, + 26.039004727800485 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.15120193604852, + 26.039004727800485 + ], + [ + -80.1711455954719, + 26.007679222378794 + ], + [ + -80.13125827662515, + 26.007679222378794 + ], + [ + -80.15120193604852, + 26.039004727800485 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.15120193604852, + 26.039004727800485 + ], + [ + -80.13125827662515, + 26.007679222378794 + ], + [ + -80.11131461720176, + 26.039004727800485 + ], + [ + -80.15120193604852, + 26.039004727800485 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.15120193604852, + 26.10165573864387 + ], + [ + -80.11131461720176, + 26.10165573864387 + ], + [ + -80.13125827662515, + 26.13298124406556 + ], + [ + -80.15120193604852, + 26.10165573864387 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.15120193604852, + 26.10165573864387 + ], + [ + -80.13125827662515, + 26.13298124406556 + ], + [ + -80.1711455954719, + 26.13298124406556 + ], + [ + -80.15120193604852, + 26.10165573864387 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.15120193604852, + 26.10165573864387 + ], + [ + -80.1711455954719, + 26.13298124406556 + ], + [ + -80.19108925489529, + 26.10165573864387 + ], + [ + -80.15120193604852, + 26.10165573864387 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.15120193604852, + 26.10165573864387 + ], + [ + -80.19108925489529, + 26.10165573864387 + ], + [ + -80.1711455954719, + 26.07033023322218 + ], + [ + -80.15120193604852, + 26.10165573864387 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.15120193604852, + 26.10165573864387 + ], + [ + -80.1711455954719, + 26.07033023322218 + ], + [ + -80.13125827662515, + 26.07033023322218 + ], + [ + -80.15120193604852, + 26.10165573864387 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.15120193604852, + 26.10165573864387 + ], + [ + -80.13125827662515, + 26.07033023322218 + ], + [ + -80.11131461720176, + 26.10165573864387 + ], + [ + -80.15120193604852, + 26.10165573864387 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.15120193604852, + 26.164306749487253 + ], + [ + -80.11131461720176, + 26.164306749487253 + ], + [ + -80.13125827662515, + 26.195632254908944 + ], + [ + -80.15120193604852, + 26.164306749487253 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.15120193604852, + 26.164306749487253 + ], + [ + -80.13125827662515, + 26.195632254908944 + ], + [ + -80.1711455954719, + 26.195632254908944 + ], + [ + -80.15120193604852, + 26.164306749487253 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.15120193604852, + 26.164306749487253 + ], + [ + -80.1711455954719, + 26.195632254908944 + ], + [ + -80.19108925489529, + 26.164306749487253 + ], + [ + -80.15120193604852, + 26.164306749487253 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.15120193604852, + 26.164306749487253 + ], + [ + -80.19108925489529, + 26.164306749487253 + ], + [ + -80.1711455954719, + 26.13298124406556 + ], + [ + -80.15120193604852, + 26.164306749487253 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.15120193604852, + 26.164306749487253 + ], + [ + -80.1711455954719, + 26.13298124406556 + ], + [ + -80.13125827662515, + 26.13298124406556 + ], + [ + -80.15120193604852, + 26.164306749487253 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.15120193604852, + 26.164306749487253 + ], + [ + -80.13125827662515, + 26.13298124406556 + ], + [ + -80.11131461720176, + 26.164306749487253 + ], + [ + -80.15120193604852, + 26.164306749487253 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.15120193604852, + 26.22695776033064 + ], + [ + -80.11131461720176, + 26.22695776033064 + ], + [ + -80.13125827662515, + 26.258283265752333 + ], + [ + -80.15120193604852, + 26.22695776033064 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.15120193604852, + 26.22695776033064 + ], + [ + -80.13125827662515, + 26.258283265752333 + ], + [ + -80.1711455954719, + 26.258283265752333 + ], + [ + -80.15120193604852, + 26.22695776033064 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.15120193604852, + 26.22695776033064 + ], + [ + -80.1711455954719, + 26.258283265752333 + ], + [ + -80.19108925489529, + 26.22695776033064 + ], + [ + -80.15120193604852, + 26.22695776033064 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.15120193604852, + 26.22695776033064 + ], + [ + -80.19108925489529, + 26.22695776033064 + ], + [ + -80.1711455954719, + 26.19563225490895 + ], + [ + -80.15120193604852, + 26.22695776033064 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.15120193604852, + 26.22695776033064 + ], + [ + -80.1711455954719, + 26.19563225490895 + ], + [ + -80.13125827662515, + 26.19563225490895 + ], + [ + -80.15120193604852, + 26.22695776033064 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.15120193604852, + 26.22695776033064 + ], + [ + -80.13125827662515, + 26.19563225490895 + ], + [ + -80.11131461720176, + 26.22695776033064 + ], + [ + -80.15120193604852, + 26.22695776033064 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.15120193604852, + 26.289608771174024 + ], + [ + -80.11131461720176, + 26.289608771174024 + ], + [ + -80.13125827662515, + 26.320934276595715 + ], + [ + -80.15120193604852, + 26.289608771174024 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.15120193604852, + 26.289608771174024 + ], + [ + -80.13125827662515, + 26.320934276595715 + ], + [ + -80.1711455954719, + 26.320934276595715 + ], + [ + -80.15120193604852, + 26.289608771174024 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.15120193604852, + 26.289608771174024 + ], + [ + -80.1711455954719, + 26.320934276595715 + ], + [ + -80.19108925489529, + 26.289608771174024 + ], + [ + -80.15120193604852, + 26.289608771174024 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.15120193604852, + 26.289608771174024 + ], + [ + -80.19108925489529, + 26.289608771174024 + ], + [ + -80.1711455954719, + 26.258283265752333 + ], + [ + -80.15120193604852, + 26.289608771174024 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.15120193604852, + 26.289608771174024 + ], + [ + -80.1711455954719, + 26.258283265752333 + ], + [ + -80.13125827662515, + 26.258283265752333 + ], + [ + -80.15120193604852, + 26.289608771174024 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.15120193604852, + 26.289608771174024 + ], + [ + -80.13125827662515, + 26.258283265752333 + ], + [ + -80.11131461720176, + 26.289608771174024 + ], + [ + -80.15120193604852, + 26.289608771174024 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.15120193604852, + 26.35225978201741 + ], + [ + -80.11131461720176, + 26.35225978201741 + ], + [ + -80.13125827662515, + 26.3835852874391 + ], + [ + -80.15120193604852, + 26.35225978201741 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.15120193604852, + 26.35225978201741 + ], + [ + -80.13125827662515, + 26.3835852874391 + ], + [ + -80.1711455954719, + 26.3835852874391 + ], + [ + -80.15120193604852, + 26.35225978201741 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.15120193604852, + 26.35225978201741 + ], + [ + -80.1711455954719, + 26.3835852874391 + ], + [ + -80.19108925489529, + 26.35225978201741 + ], + [ + -80.15120193604852, + 26.35225978201741 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.15120193604852, + 26.35225978201741 + ], + [ + -80.19108925489529, + 26.35225978201741 + ], + [ + -80.1711455954719, + 26.320934276595718 + ], + [ + -80.15120193604852, + 26.35225978201741 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.15120193604852, + 26.35225978201741 + ], + [ + -80.1711455954719, + 26.320934276595718 + ], + [ + -80.13125827662515, + 26.320934276595718 + ], + [ + -80.15120193604852, + 26.35225978201741 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.15120193604852, + 26.35225978201741 + ], + [ + -80.13125827662515, + 26.320934276595718 + ], + [ + -80.11131461720176, + 26.35225978201741 + ], + [ + -80.15120193604852, + 26.35225978201741 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.15120193604852, + 26.414910792860795 + ], + [ + -80.11131461720176, + 26.414910792860795 + ], + [ + -80.13125827662515, + 26.446236298282486 + ], + [ + -80.15120193604852, + 26.414910792860795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.15120193604852, + 26.414910792860795 + ], + [ + -80.13125827662515, + 26.446236298282486 + ], + [ + -80.1711455954719, + 26.446236298282486 + ], + [ + -80.15120193604852, + 26.414910792860795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.15120193604852, + 26.414910792860795 + ], + [ + -80.1711455954719, + 26.446236298282486 + ], + [ + -80.19108925489529, + 26.414910792860795 + ], + [ + -80.15120193604852, + 26.414910792860795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.15120193604852, + 26.414910792860795 + ], + [ + -80.19108925489529, + 26.414910792860795 + ], + [ + -80.1711455954719, + 26.383585287439104 + ], + [ + -80.15120193604852, + 26.414910792860795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.15120193604852, + 26.414910792860795 + ], + [ + -80.1711455954719, + 26.383585287439104 + ], + [ + -80.13125827662515, + 26.383585287439104 + ], + [ + -80.15120193604852, + 26.414910792860795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.15120193604852, + 26.414910792860795 + ], + [ + -80.13125827662515, + 26.383585287439104 + ], + [ + -80.11131461720176, + 26.414910792860795 + ], + [ + -80.15120193604852, + 26.414910792860795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.09137095777837, + 24.942612038041236 + ], + [ + -80.0514836389316, + 24.942612038041236 + ], + [ + -80.07142729835499, + 24.973937543462927 + ], + [ + -80.09137095777837, + 24.942612038041236 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.09137095777837, + 24.942612038041236 + ], + [ + -80.07142729835499, + 24.973937543462927 + ], + [ + -80.11131461720174, + 24.973937543462927 + ], + [ + -80.09137095777837, + 24.942612038041236 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.09137095777837, + 24.942612038041236 + ], + [ + -80.11131461720174, + 24.973937543462927 + ], + [ + -80.13125827662513, + 24.942612038041236 + ], + [ + -80.09137095777837, + 24.942612038041236 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.09137095777837, + 24.942612038041236 + ], + [ + -80.13125827662513, + 24.942612038041236 + ], + [ + -80.11131461720174, + 24.911286532619545 + ], + [ + -80.09137095777837, + 24.942612038041236 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.09137095777837, + 24.942612038041236 + ], + [ + -80.11131461720174, + 24.911286532619545 + ], + [ + -80.07142729835499, + 24.911286532619545 + ], + [ + -80.09137095777837, + 24.942612038041236 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.09137095777837, + 24.942612038041236 + ], + [ + -80.07142729835499, + 24.911286532619545 + ], + [ + -80.0514836389316, + 24.942612038041236 + ], + [ + -80.09137095777837, + 24.942612038041236 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.09137095777837, + 25.005263048884622 + ], + [ + -80.0514836389316, + 25.005263048884622 + ], + [ + -80.07142729835499, + 25.036588554306313 + ], + [ + -80.09137095777837, + 25.005263048884622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.09137095777837, + 25.005263048884622 + ], + [ + -80.07142729835499, + 25.036588554306313 + ], + [ + -80.11131461720174, + 25.036588554306313 + ], + [ + -80.09137095777837, + 25.005263048884622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.09137095777837, + 25.005263048884622 + ], + [ + -80.11131461720174, + 25.036588554306313 + ], + [ + -80.13125827662513, + 25.005263048884622 + ], + [ + -80.09137095777837, + 25.005263048884622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.09137095777837, + 25.005263048884622 + ], + [ + -80.13125827662513, + 25.005263048884622 + ], + [ + -80.11131461720174, + 24.97393754346293 + ], + [ + -80.09137095777837, + 25.005263048884622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.09137095777837, + 25.005263048884622 + ], + [ + -80.11131461720174, + 24.97393754346293 + ], + [ + -80.07142729835499, + 24.97393754346293 + ], + [ + -80.09137095777837, + 25.005263048884622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.09137095777837, + 25.005263048884622 + ], + [ + -80.07142729835499, + 24.97393754346293 + ], + [ + -80.0514836389316, + 25.005263048884622 + ], + [ + -80.09137095777837, + 25.005263048884622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.09137095777837, + 25.067914059728007 + ], + [ + -80.0514836389316, + 25.067914059728007 + ], + [ + -80.07142729835499, + 25.0992395651497 + ], + [ + -80.09137095777837, + 25.067914059728007 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.09137095777837, + 25.067914059728007 + ], + [ + -80.07142729835499, + 25.0992395651497 + ], + [ + -80.11131461720174, + 25.0992395651497 + ], + [ + -80.09137095777837, + 25.067914059728007 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.09137095777837, + 25.067914059728007 + ], + [ + -80.11131461720174, + 25.0992395651497 + ], + [ + -80.13125827662513, + 25.067914059728007 + ], + [ + -80.09137095777837, + 25.067914059728007 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.09137095777837, + 25.067914059728007 + ], + [ + -80.13125827662513, + 25.067914059728007 + ], + [ + -80.11131461720174, + 25.036588554306316 + ], + [ + -80.09137095777837, + 25.067914059728007 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.09137095777837, + 25.067914059728007 + ], + [ + -80.11131461720174, + 25.036588554306316 + ], + [ + -80.07142729835499, + 25.036588554306316 + ], + [ + -80.09137095777837, + 25.067914059728007 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.09137095777837, + 25.067914059728007 + ], + [ + -80.07142729835499, + 25.036588554306316 + ], + [ + -80.0514836389316, + 25.067914059728007 + ], + [ + -80.09137095777837, + 25.067914059728007 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.09137095777837, + 25.130565070571393 + ], + [ + -80.0514836389316, + 25.130565070571393 + ], + [ + -80.07142729835499, + 25.161890575993084 + ], + [ + -80.09137095777837, + 25.130565070571393 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.09137095777837, + 25.130565070571393 + ], + [ + -80.07142729835499, + 25.161890575993084 + ], + [ + -80.11131461720174, + 25.161890575993084 + ], + [ + -80.09137095777837, + 25.130565070571393 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.09137095777837, + 25.130565070571393 + ], + [ + -80.11131461720174, + 25.161890575993084 + ], + [ + -80.13125827662513, + 25.130565070571393 + ], + [ + -80.09137095777837, + 25.130565070571393 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.09137095777837, + 25.130565070571393 + ], + [ + -80.13125827662513, + 25.130565070571393 + ], + [ + -80.11131461720174, + 25.099239565149702 + ], + [ + -80.09137095777837, + 25.130565070571393 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.09137095777837, + 25.130565070571393 + ], + [ + -80.11131461720174, + 25.099239565149702 + ], + [ + -80.07142729835499, + 25.099239565149702 + ], + [ + -80.09137095777837, + 25.130565070571393 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.09137095777837, + 25.130565070571393 + ], + [ + -80.07142729835499, + 25.099239565149702 + ], + [ + -80.0514836389316, + 25.130565070571393 + ], + [ + -80.09137095777837, + 25.130565070571393 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.09137095777837, + 25.19321608141478 + ], + [ + -80.0514836389316, + 25.19321608141478 + ], + [ + -80.07142729835499, + 25.22454158683647 + ], + [ + -80.09137095777837, + 25.19321608141478 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.09137095777837, + 25.19321608141478 + ], + [ + -80.07142729835499, + 25.22454158683647 + ], + [ + -80.11131461720174, + 25.22454158683647 + ], + [ + -80.09137095777837, + 25.19321608141478 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.09137095777837, + 25.19321608141478 + ], + [ + -80.11131461720174, + 25.22454158683647 + ], + [ + -80.13125827662513, + 25.19321608141478 + ], + [ + -80.09137095777837, + 25.19321608141478 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.09137095777837, + 25.19321608141478 + ], + [ + -80.13125827662513, + 25.19321608141478 + ], + [ + -80.11131461720174, + 25.161890575993088 + ], + [ + -80.09137095777837, + 25.19321608141478 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.09137095777837, + 25.19321608141478 + ], + [ + -80.11131461720174, + 25.161890575993088 + ], + [ + -80.07142729835499, + 25.161890575993088 + ], + [ + -80.09137095777837, + 25.19321608141478 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.09137095777837, + 25.19321608141478 + ], + [ + -80.07142729835499, + 25.161890575993088 + ], + [ + -80.0514836389316, + 25.19321608141478 + ], + [ + -80.09137095777837, + 25.19321608141478 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.09137095777837, + 25.255867092258164 + ], + [ + -80.0514836389316, + 25.255867092258164 + ], + [ + -80.07142729835499, + 25.287192597679855 + ], + [ + -80.09137095777837, + 25.255867092258164 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.09137095777837, + 25.255867092258164 + ], + [ + -80.07142729835499, + 25.287192597679855 + ], + [ + -80.11131461720174, + 25.287192597679855 + ], + [ + -80.09137095777837, + 25.255867092258164 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.09137095777837, + 25.255867092258164 + ], + [ + -80.11131461720174, + 25.287192597679855 + ], + [ + -80.13125827662513, + 25.255867092258164 + ], + [ + -80.09137095777837, + 25.255867092258164 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.09137095777837, + 25.255867092258164 + ], + [ + -80.13125827662513, + 25.255867092258164 + ], + [ + -80.11131461720174, + 25.224541586836473 + ], + [ + -80.09137095777837, + 25.255867092258164 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.09137095777837, + 25.255867092258164 + ], + [ + -80.11131461720174, + 25.224541586836473 + ], + [ + -80.07142729835499, + 25.224541586836473 + ], + [ + -80.09137095777837, + 25.255867092258164 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.09137095777837, + 25.255867092258164 + ], + [ + -80.07142729835499, + 25.224541586836473 + ], + [ + -80.0514836389316, + 25.255867092258164 + ], + [ + -80.09137095777837, + 25.255867092258164 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.09137095777837, + 25.31851810310155 + ], + [ + -80.0514836389316, + 25.31851810310155 + ], + [ + -80.07142729835499, + 25.34984360852324 + ], + [ + -80.09137095777837, + 25.31851810310155 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.09137095777837, + 25.31851810310155 + ], + [ + -80.07142729835499, + 25.34984360852324 + ], + [ + -80.11131461720174, + 25.34984360852324 + ], + [ + -80.09137095777837, + 25.31851810310155 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.09137095777837, + 25.31851810310155 + ], + [ + -80.11131461720174, + 25.34984360852324 + ], + [ + -80.13125827662513, + 25.31851810310155 + ], + [ + -80.09137095777837, + 25.31851810310155 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.09137095777837, + 25.31851810310155 + ], + [ + -80.13125827662513, + 25.31851810310155 + ], + [ + -80.11131461720174, + 25.28719259767986 + ], + [ + -80.09137095777837, + 25.31851810310155 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.09137095777837, + 25.31851810310155 + ], + [ + -80.11131461720174, + 25.28719259767986 + ], + [ + -80.07142729835499, + 25.28719259767986 + ], + [ + -80.09137095777837, + 25.31851810310155 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.09137095777837, + 25.31851810310155 + ], + [ + -80.07142729835499, + 25.28719259767986 + ], + [ + -80.0514836389316, + 25.31851810310155 + ], + [ + -80.09137095777837, + 25.31851810310155 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.09137095777837, + 25.381169113944935 + ], + [ + -80.0514836389316, + 25.381169113944935 + ], + [ + -80.07142729835499, + 25.412494619366626 + ], + [ + -80.09137095777837, + 25.381169113944935 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.09137095777837, + 25.381169113944935 + ], + [ + -80.07142729835499, + 25.412494619366626 + ], + [ + -80.11131461720174, + 25.412494619366626 + ], + [ + -80.09137095777837, + 25.381169113944935 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.09137095777837, + 25.381169113944935 + ], + [ + -80.11131461720174, + 25.412494619366626 + ], + [ + -80.13125827662513, + 25.381169113944935 + ], + [ + -80.09137095777837, + 25.381169113944935 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.09137095777837, + 25.381169113944935 + ], + [ + -80.13125827662513, + 25.381169113944935 + ], + [ + -80.11131461720174, + 25.349843608523244 + ], + [ + -80.09137095777837, + 25.381169113944935 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.09137095777837, + 25.381169113944935 + ], + [ + -80.11131461720174, + 25.349843608523244 + ], + [ + -80.07142729835499, + 25.349843608523244 + ], + [ + -80.09137095777837, + 25.381169113944935 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.09137095777837, + 25.381169113944935 + ], + [ + -80.07142729835499, + 25.349843608523244 + ], + [ + -80.0514836389316, + 25.381169113944935 + ], + [ + -80.09137095777837, + 25.381169113944935 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.09137095777837, + 25.44382012478832 + ], + [ + -80.0514836389316, + 25.44382012478832 + ], + [ + -80.07142729835499, + 25.47514563021001 + ], + [ + -80.09137095777837, + 25.44382012478832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.09137095777837, + 25.44382012478832 + ], + [ + -80.07142729835499, + 25.47514563021001 + ], + [ + -80.11131461720174, + 25.47514563021001 + ], + [ + -80.09137095777837, + 25.44382012478832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.09137095777837, + 25.44382012478832 + ], + [ + -80.11131461720174, + 25.47514563021001 + ], + [ + -80.13125827662513, + 25.44382012478832 + ], + [ + -80.09137095777837, + 25.44382012478832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.09137095777837, + 25.44382012478832 + ], + [ + -80.13125827662513, + 25.44382012478832 + ], + [ + -80.11131461720174, + 25.41249461936663 + ], + [ + -80.09137095777837, + 25.44382012478832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.09137095777837, + 25.44382012478832 + ], + [ + -80.11131461720174, + 25.41249461936663 + ], + [ + -80.07142729835499, + 25.41249461936663 + ], + [ + -80.09137095777837, + 25.44382012478832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.09137095777837, + 25.44382012478832 + ], + [ + -80.07142729835499, + 25.41249461936663 + ], + [ + -80.0514836389316, + 25.44382012478832 + ], + [ + -80.09137095777837, + 25.44382012478832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.09137095777837, + 25.506471135631706 + ], + [ + -80.0514836389316, + 25.506471135631706 + ], + [ + -80.07142729835499, + 25.537796641053397 + ], + [ + -80.09137095777837, + 25.506471135631706 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.09137095777837, + 25.506471135631706 + ], + [ + -80.07142729835499, + 25.537796641053397 + ], + [ + -80.11131461720174, + 25.537796641053397 + ], + [ + -80.09137095777837, + 25.506471135631706 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.09137095777837, + 25.506471135631706 + ], + [ + -80.11131461720174, + 25.537796641053397 + ], + [ + -80.13125827662513, + 25.506471135631706 + ], + [ + -80.09137095777837, + 25.506471135631706 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.09137095777837, + 25.506471135631706 + ], + [ + -80.13125827662513, + 25.506471135631706 + ], + [ + -80.11131461720174, + 25.475145630210015 + ], + [ + -80.09137095777837, + 25.506471135631706 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.09137095777837, + 25.506471135631706 + ], + [ + -80.11131461720174, + 25.475145630210015 + ], + [ + -80.07142729835499, + 25.475145630210015 + ], + [ + -80.09137095777837, + 25.506471135631706 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.09137095777837, + 25.506471135631706 + ], + [ + -80.07142729835499, + 25.475145630210015 + ], + [ + -80.0514836389316, + 25.506471135631706 + ], + [ + -80.09137095777837, + 25.506471135631706 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.09137095777837, + 25.56912214647509 + ], + [ + -80.0514836389316, + 25.56912214647509 + ], + [ + -80.07142729835499, + 25.600447651896783 + ], + [ + -80.09137095777837, + 25.56912214647509 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.09137095777837, + 25.56912214647509 + ], + [ + -80.07142729835499, + 25.600447651896783 + ], + [ + -80.11131461720174, + 25.600447651896783 + ], + [ + -80.09137095777837, + 25.56912214647509 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.09137095777837, + 25.56912214647509 + ], + [ + -80.11131461720174, + 25.600447651896783 + ], + [ + -80.13125827662513, + 25.56912214647509 + ], + [ + -80.09137095777837, + 25.56912214647509 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.09137095777837, + 25.56912214647509 + ], + [ + -80.13125827662513, + 25.56912214647509 + ], + [ + -80.11131461720174, + 25.5377966410534 + ], + [ + -80.09137095777837, + 25.56912214647509 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.09137095777837, + 25.56912214647509 + ], + [ + -80.11131461720174, + 25.5377966410534 + ], + [ + -80.07142729835499, + 25.5377966410534 + ], + [ + -80.09137095777837, + 25.56912214647509 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.09137095777837, + 25.56912214647509 + ], + [ + -80.07142729835499, + 25.5377966410534 + ], + [ + -80.0514836389316, + 25.56912214647509 + ], + [ + -80.09137095777837, + 25.56912214647509 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.09137095777837, + 25.631773157318477 + ], + [ + -80.0514836389316, + 25.631773157318477 + ], + [ + -80.07142729835499, + 25.66309866274017 + ], + [ + -80.09137095777837, + 25.631773157318477 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.09137095777837, + 25.631773157318477 + ], + [ + -80.07142729835499, + 25.66309866274017 + ], + [ + -80.11131461720174, + 25.66309866274017 + ], + [ + -80.09137095777837, + 25.631773157318477 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.09137095777837, + 25.631773157318477 + ], + [ + -80.11131461720174, + 25.66309866274017 + ], + [ + -80.13125827662513, + 25.631773157318477 + ], + [ + -80.09137095777837, + 25.631773157318477 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.09137095777837, + 25.631773157318477 + ], + [ + -80.13125827662513, + 25.631773157318477 + ], + [ + -80.11131461720174, + 25.600447651896786 + ], + [ + -80.09137095777837, + 25.631773157318477 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.09137095777837, + 25.631773157318477 + ], + [ + -80.11131461720174, + 25.600447651896786 + ], + [ + -80.07142729835499, + 25.600447651896786 + ], + [ + -80.09137095777837, + 25.631773157318477 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.09137095777837, + 25.631773157318477 + ], + [ + -80.07142729835499, + 25.600447651896786 + ], + [ + -80.0514836389316, + 25.631773157318477 + ], + [ + -80.09137095777837, + 25.631773157318477 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.09137095777837, + 25.694424168161863 + ], + [ + -80.0514836389316, + 25.694424168161863 + ], + [ + -80.07142729835499, + 25.725749673583554 + ], + [ + -80.09137095777837, + 25.694424168161863 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.09137095777837, + 25.694424168161863 + ], + [ + -80.07142729835499, + 25.725749673583554 + ], + [ + -80.11131461720174, + 25.725749673583554 + ], + [ + -80.09137095777837, + 25.694424168161863 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.09137095777837, + 25.694424168161863 + ], + [ + -80.11131461720174, + 25.725749673583554 + ], + [ + -80.13125827662513, + 25.694424168161863 + ], + [ + -80.09137095777837, + 25.694424168161863 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.09137095777837, + 25.694424168161863 + ], + [ + -80.13125827662513, + 25.694424168161863 + ], + [ + -80.11131461720174, + 25.663098662740172 + ], + [ + -80.09137095777837, + 25.694424168161863 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.09137095777837, + 25.694424168161863 + ], + [ + -80.11131461720174, + 25.663098662740172 + ], + [ + -80.07142729835499, + 25.663098662740172 + ], + [ + -80.09137095777837, + 25.694424168161863 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.09137095777837, + 25.694424168161863 + ], + [ + -80.07142729835499, + 25.663098662740172 + ], + [ + -80.0514836389316, + 25.694424168161863 + ], + [ + -80.09137095777837, + 25.694424168161863 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.09137095777837, + 25.75707517900525 + ], + [ + -80.0514836389316, + 25.75707517900525 + ], + [ + -80.07142729835499, + 25.78840068442694 + ], + [ + -80.09137095777837, + 25.75707517900525 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.09137095777837, + 25.75707517900525 + ], + [ + -80.07142729835499, + 25.78840068442694 + ], + [ + -80.11131461720174, + 25.78840068442694 + ], + [ + -80.09137095777837, + 25.75707517900525 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.09137095777837, + 25.75707517900525 + ], + [ + -80.11131461720174, + 25.78840068442694 + ], + [ + -80.13125827662513, + 25.75707517900525 + ], + [ + -80.09137095777837, + 25.75707517900525 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.09137095777837, + 25.75707517900525 + ], + [ + -80.13125827662513, + 25.75707517900525 + ], + [ + -80.11131461720174, + 25.725749673583557 + ], + [ + -80.09137095777837, + 25.75707517900525 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.09137095777837, + 25.75707517900525 + ], + [ + -80.11131461720174, + 25.725749673583557 + ], + [ + -80.07142729835499, + 25.725749673583557 + ], + [ + -80.09137095777837, + 25.75707517900525 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.09137095777837, + 25.75707517900525 + ], + [ + -80.07142729835499, + 25.725749673583557 + ], + [ + -80.0514836389316, + 25.75707517900525 + ], + [ + -80.09137095777837, + 25.75707517900525 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.09137095777837, + 25.819726189848634 + ], + [ + -80.0514836389316, + 25.819726189848634 + ], + [ + -80.07142729835499, + 25.851051695270325 + ], + [ + -80.09137095777837, + 25.819726189848634 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.09137095777837, + 25.819726189848634 + ], + [ + -80.07142729835499, + 25.851051695270325 + ], + [ + -80.11131461720174, + 25.851051695270325 + ], + [ + -80.09137095777837, + 25.819726189848634 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.09137095777837, + 25.819726189848634 + ], + [ + -80.11131461720174, + 25.851051695270325 + ], + [ + -80.13125827662513, + 25.819726189848634 + ], + [ + -80.09137095777837, + 25.819726189848634 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.09137095777837, + 25.819726189848634 + ], + [ + -80.13125827662513, + 25.819726189848634 + ], + [ + -80.11131461720174, + 25.788400684426943 + ], + [ + -80.09137095777837, + 25.819726189848634 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.09137095777837, + 25.819726189848634 + ], + [ + -80.11131461720174, + 25.788400684426943 + ], + [ + -80.07142729835499, + 25.788400684426943 + ], + [ + -80.09137095777837, + 25.819726189848634 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.09137095777837, + 25.819726189848634 + ], + [ + -80.07142729835499, + 25.788400684426943 + ], + [ + -80.0514836389316, + 25.819726189848634 + ], + [ + -80.09137095777837, + 25.819726189848634 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.09137095777837, + 25.88237720069202 + ], + [ + -80.0514836389316, + 25.88237720069202 + ], + [ + -80.07142729835499, + 25.91370270611371 + ], + [ + -80.09137095777837, + 25.88237720069202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.09137095777837, + 25.88237720069202 + ], + [ + -80.07142729835499, + 25.91370270611371 + ], + [ + -80.11131461720174, + 25.91370270611371 + ], + [ + -80.09137095777837, + 25.88237720069202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.09137095777837, + 25.88237720069202 + ], + [ + -80.11131461720174, + 25.91370270611371 + ], + [ + -80.13125827662513, + 25.88237720069202 + ], + [ + -80.09137095777837, + 25.88237720069202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.09137095777837, + 25.88237720069202 + ], + [ + -80.13125827662513, + 25.88237720069202 + ], + [ + -80.11131461720174, + 25.85105169527033 + ], + [ + -80.09137095777837, + 25.88237720069202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.09137095777837, + 25.88237720069202 + ], + [ + -80.11131461720174, + 25.85105169527033 + ], + [ + -80.07142729835499, + 25.85105169527033 + ], + [ + -80.09137095777837, + 25.88237720069202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.09137095777837, + 25.88237720069202 + ], + [ + -80.07142729835499, + 25.85105169527033 + ], + [ + -80.0514836389316, + 25.88237720069202 + ], + [ + -80.09137095777837, + 25.88237720069202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.09137095777837, + 25.945028211535405 + ], + [ + -80.0514836389316, + 25.945028211535405 + ], + [ + -80.07142729835499, + 25.976353716957096 + ], + [ + -80.09137095777837, + 25.945028211535405 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.09137095777837, + 25.945028211535405 + ], + [ + -80.07142729835499, + 25.976353716957096 + ], + [ + -80.11131461720174, + 25.976353716957096 + ], + [ + -80.09137095777837, + 25.945028211535405 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.09137095777837, + 25.945028211535405 + ], + [ + -80.11131461720174, + 25.976353716957096 + ], + [ + -80.13125827662513, + 25.945028211535405 + ], + [ + -80.09137095777837, + 25.945028211535405 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.09137095777837, + 25.945028211535405 + ], + [ + -80.13125827662513, + 25.945028211535405 + ], + [ + -80.11131461720174, + 25.913702706113714 + ], + [ + -80.09137095777837, + 25.945028211535405 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.09137095777837, + 25.945028211535405 + ], + [ + -80.11131461720174, + 25.913702706113714 + ], + [ + -80.07142729835499, + 25.913702706113714 + ], + [ + -80.09137095777837, + 25.945028211535405 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.09137095777837, + 25.945028211535405 + ], + [ + -80.07142729835499, + 25.913702706113714 + ], + [ + -80.0514836389316, + 25.945028211535405 + ], + [ + -80.09137095777837, + 25.945028211535405 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.09137095777837, + 26.00767922237879 + ], + [ + -80.0514836389316, + 26.00767922237879 + ], + [ + -80.07142729835499, + 26.03900472780048 + ], + [ + -80.09137095777837, + 26.00767922237879 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.09137095777837, + 26.00767922237879 + ], + [ + -80.07142729835499, + 26.03900472780048 + ], + [ + -80.11131461720174, + 26.03900472780048 + ], + [ + -80.09137095777837, + 26.00767922237879 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.09137095777837, + 26.00767922237879 + ], + [ + -80.11131461720174, + 26.03900472780048 + ], + [ + -80.13125827662513, + 26.00767922237879 + ], + [ + -80.09137095777837, + 26.00767922237879 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.09137095777837, + 26.00767922237879 + ], + [ + -80.13125827662513, + 26.00767922237879 + ], + [ + -80.11131461720174, + 25.9763537169571 + ], + [ + -80.09137095777837, + 26.00767922237879 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.09137095777837, + 26.00767922237879 + ], + [ + -80.11131461720174, + 25.9763537169571 + ], + [ + -80.07142729835499, + 25.9763537169571 + ], + [ + -80.09137095777837, + 26.00767922237879 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.09137095777837, + 26.00767922237879 + ], + [ + -80.07142729835499, + 25.9763537169571 + ], + [ + -80.0514836389316, + 26.00767922237879 + ], + [ + -80.09137095777837, + 26.00767922237879 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.09137095777837, + 26.070330233222176 + ], + [ + -80.0514836389316, + 26.070330233222176 + ], + [ + -80.07142729835499, + 26.101655738643867 + ], + [ + -80.09137095777837, + 26.070330233222176 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.09137095777837, + 26.070330233222176 + ], + [ + -80.07142729835499, + 26.101655738643867 + ], + [ + -80.11131461720174, + 26.101655738643867 + ], + [ + -80.09137095777837, + 26.070330233222176 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.09137095777837, + 26.070330233222176 + ], + [ + -80.11131461720174, + 26.101655738643867 + ], + [ + -80.13125827662513, + 26.070330233222176 + ], + [ + -80.09137095777837, + 26.070330233222176 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.09137095777837, + 26.070330233222176 + ], + [ + -80.13125827662513, + 26.070330233222176 + ], + [ + -80.11131461720174, + 26.039004727800485 + ], + [ + -80.09137095777837, + 26.070330233222176 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.09137095777837, + 26.070330233222176 + ], + [ + -80.11131461720174, + 26.039004727800485 + ], + [ + -80.07142729835499, + 26.039004727800485 + ], + [ + -80.09137095777837, + 26.070330233222176 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.09137095777837, + 26.070330233222176 + ], + [ + -80.07142729835499, + 26.039004727800485 + ], + [ + -80.0514836389316, + 26.070330233222176 + ], + [ + -80.09137095777837, + 26.070330233222176 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.09137095777837, + 26.13298124406556 + ], + [ + -80.0514836389316, + 26.13298124406556 + ], + [ + -80.07142729835499, + 26.164306749487253 + ], + [ + -80.09137095777837, + 26.13298124406556 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.09137095777837, + 26.13298124406556 + ], + [ + -80.07142729835499, + 26.164306749487253 + ], + [ + -80.11131461720174, + 26.164306749487253 + ], + [ + -80.09137095777837, + 26.13298124406556 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.09137095777837, + 26.13298124406556 + ], + [ + -80.11131461720174, + 26.164306749487253 + ], + [ + -80.13125827662513, + 26.13298124406556 + ], + [ + -80.09137095777837, + 26.13298124406556 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.09137095777837, + 26.13298124406556 + ], + [ + -80.13125827662513, + 26.13298124406556 + ], + [ + -80.11131461720174, + 26.10165573864387 + ], + [ + -80.09137095777837, + 26.13298124406556 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.09137095777837, + 26.13298124406556 + ], + [ + -80.11131461720174, + 26.10165573864387 + ], + [ + -80.07142729835499, + 26.10165573864387 + ], + [ + -80.09137095777837, + 26.13298124406556 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.09137095777837, + 26.13298124406556 + ], + [ + -80.07142729835499, + 26.10165573864387 + ], + [ + -80.0514836389316, + 26.13298124406556 + ], + [ + -80.09137095777837, + 26.13298124406556 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.09137095777837, + 26.195632254908944 + ], + [ + -80.0514836389316, + 26.195632254908944 + ], + [ + -80.07142729835499, + 26.226957760330635 + ], + [ + -80.09137095777837, + 26.195632254908944 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.09137095777837, + 26.195632254908944 + ], + [ + -80.07142729835499, + 26.226957760330635 + ], + [ + -80.11131461720174, + 26.226957760330635 + ], + [ + -80.09137095777837, + 26.195632254908944 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.09137095777837, + 26.195632254908944 + ], + [ + -80.11131461720174, + 26.226957760330635 + ], + [ + -80.13125827662513, + 26.195632254908944 + ], + [ + -80.09137095777837, + 26.195632254908944 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.09137095777837, + 26.195632254908944 + ], + [ + -80.13125827662513, + 26.195632254908944 + ], + [ + -80.11131461720174, + 26.164306749487253 + ], + [ + -80.09137095777837, + 26.195632254908944 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.09137095777837, + 26.195632254908944 + ], + [ + -80.11131461720174, + 26.164306749487253 + ], + [ + -80.07142729835499, + 26.164306749487253 + ], + [ + -80.09137095777837, + 26.195632254908944 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.09137095777837, + 26.195632254908944 + ], + [ + -80.07142729835499, + 26.164306749487253 + ], + [ + -80.0514836389316, + 26.195632254908944 + ], + [ + -80.09137095777837, + 26.195632254908944 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.09137095777837, + 26.258283265752333 + ], + [ + -80.0514836389316, + 26.258283265752333 + ], + [ + -80.07142729835499, + 26.289608771174024 + ], + [ + -80.09137095777837, + 26.258283265752333 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.09137095777837, + 26.258283265752333 + ], + [ + -80.07142729835499, + 26.289608771174024 + ], + [ + -80.11131461720174, + 26.289608771174024 + ], + [ + -80.09137095777837, + 26.258283265752333 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.09137095777837, + 26.258283265752333 + ], + [ + -80.11131461720174, + 26.289608771174024 + ], + [ + -80.13125827662513, + 26.258283265752333 + ], + [ + -80.09137095777837, + 26.258283265752333 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.09137095777837, + 26.258283265752333 + ], + [ + -80.13125827662513, + 26.258283265752333 + ], + [ + -80.11131461720174, + 26.22695776033064 + ], + [ + -80.09137095777837, + 26.258283265752333 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.09137095777837, + 26.258283265752333 + ], + [ + -80.11131461720174, + 26.22695776033064 + ], + [ + -80.07142729835499, + 26.22695776033064 + ], + [ + -80.09137095777837, + 26.258283265752333 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.09137095777837, + 26.258283265752333 + ], + [ + -80.07142729835499, + 26.22695776033064 + ], + [ + -80.0514836389316, + 26.258283265752333 + ], + [ + -80.09137095777837, + 26.258283265752333 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.09137095777837, + 26.320934276595715 + ], + [ + -80.0514836389316, + 26.320934276595715 + ], + [ + -80.07142729835499, + 26.352259782017406 + ], + [ + -80.09137095777837, + 26.320934276595715 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.09137095777837, + 26.320934276595715 + ], + [ + -80.07142729835499, + 26.352259782017406 + ], + [ + -80.11131461720174, + 26.352259782017406 + ], + [ + -80.09137095777837, + 26.320934276595715 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.09137095777837, + 26.320934276595715 + ], + [ + -80.11131461720174, + 26.352259782017406 + ], + [ + -80.13125827662513, + 26.320934276595715 + ], + [ + -80.09137095777837, + 26.320934276595715 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.09137095777837, + 26.320934276595715 + ], + [ + -80.13125827662513, + 26.320934276595715 + ], + [ + -80.11131461720174, + 26.289608771174024 + ], + [ + -80.09137095777837, + 26.320934276595715 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.09137095777837, + 26.320934276595715 + ], + [ + -80.11131461720174, + 26.289608771174024 + ], + [ + -80.07142729835499, + 26.289608771174024 + ], + [ + -80.09137095777837, + 26.320934276595715 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.09137095777837, + 26.320934276595715 + ], + [ + -80.07142729835499, + 26.289608771174024 + ], + [ + -80.0514836389316, + 26.320934276595715 + ], + [ + -80.09137095777837, + 26.320934276595715 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.09137095777837, + 26.3835852874391 + ], + [ + -80.0514836389316, + 26.3835852874391 + ], + [ + -80.07142729835499, + 26.41491079286079 + ], + [ + -80.09137095777837, + 26.3835852874391 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.09137095777837, + 26.3835852874391 + ], + [ + -80.07142729835499, + 26.41491079286079 + ], + [ + -80.11131461720174, + 26.41491079286079 + ], + [ + -80.09137095777837, + 26.3835852874391 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.09137095777837, + 26.3835852874391 + ], + [ + -80.11131461720174, + 26.41491079286079 + ], + [ + -80.13125827662513, + 26.3835852874391 + ], + [ + -80.09137095777837, + 26.3835852874391 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.09137095777837, + 26.3835852874391 + ], + [ + -80.13125827662513, + 26.3835852874391 + ], + [ + -80.11131461720174, + 26.35225978201741 + ], + [ + -80.09137095777837, + 26.3835852874391 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.09137095777837, + 26.3835852874391 + ], + [ + -80.11131461720174, + 26.35225978201741 + ], + [ + -80.07142729835499, + 26.35225978201741 + ], + [ + -80.09137095777837, + 26.3835852874391 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.09137095777837, + 26.3835852874391 + ], + [ + -80.07142729835499, + 26.35225978201741 + ], + [ + -80.0514836389316, + 26.3835852874391 + ], + [ + -80.09137095777837, + 26.3835852874391 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.09137095777837, + 26.446236298282486 + ], + [ + -80.0514836389316, + 26.446236298282486 + ], + [ + -80.07142729835499, + 26.477561803704177 + ], + [ + -80.09137095777837, + 26.446236298282486 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.09137095777837, + 26.446236298282486 + ], + [ + -80.07142729835499, + 26.477561803704177 + ], + [ + -80.11131461720174, + 26.477561803704177 + ], + [ + -80.09137095777837, + 26.446236298282486 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.09137095777837, + 26.446236298282486 + ], + [ + -80.11131461720174, + 26.477561803704177 + ], + [ + -80.13125827662513, + 26.446236298282486 + ], + [ + -80.09137095777837, + 26.446236298282486 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.09137095777837, + 26.446236298282486 + ], + [ + -80.13125827662513, + 26.446236298282486 + ], + [ + -80.11131461720174, + 26.414910792860795 + ], + [ + -80.09137095777837, + 26.446236298282486 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.09137095777837, + 26.446236298282486 + ], + [ + -80.11131461720174, + 26.414910792860795 + ], + [ + -80.07142729835499, + 26.414910792860795 + ], + [ + -80.09137095777837, + 26.446236298282486 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.09137095777837, + 26.446236298282486 + ], + [ + -80.07142729835499, + 26.414910792860795 + ], + [ + -80.0514836389316, + 26.446236298282486 + ], + [ + -80.09137095777837, + 26.446236298282486 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.03153997950822, + 24.911286532619545 + ], + [ + -79.99165266066146, + 24.911286532619545 + ], + [ + -80.01159632008485, + 24.942612038041236 + ], + [ + -80.03153997950822, + 24.911286532619545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.03153997950822, + 24.911286532619545 + ], + [ + -80.01159632008485, + 24.942612038041236 + ], + [ + -80.0514836389316, + 24.942612038041236 + ], + [ + -80.03153997950822, + 24.911286532619545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.03153997950822, + 24.911286532619545 + ], + [ + -80.0514836389316, + 24.942612038041236 + ], + [ + -80.07142729835499, + 24.911286532619545 + ], + [ + -80.03153997950822, + 24.911286532619545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.03153997950822, + 24.911286532619545 + ], + [ + -80.07142729835499, + 24.911286532619545 + ], + [ + -80.0514836389316, + 24.879961027197854 + ], + [ + -80.03153997950822, + 24.911286532619545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.03153997950822, + 24.911286532619545 + ], + [ + -80.0514836389316, + 24.879961027197854 + ], + [ + -80.01159632008485, + 24.879961027197854 + ], + [ + -80.03153997950822, + 24.911286532619545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.03153997950822, + 24.911286532619545 + ], + [ + -80.01159632008485, + 24.879961027197854 + ], + [ + -79.99165266066146, + 24.911286532619545 + ], + [ + -80.03153997950822, + 24.911286532619545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.03153997950822, + 24.97393754346293 + ], + [ + -79.99165266066146, + 24.97393754346293 + ], + [ + -80.01159632008485, + 25.005263048884622 + ], + [ + -80.03153997950822, + 24.97393754346293 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.03153997950822, + 24.97393754346293 + ], + [ + -80.01159632008485, + 25.005263048884622 + ], + [ + -80.0514836389316, + 25.005263048884622 + ], + [ + -80.03153997950822, + 24.97393754346293 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.03153997950822, + 24.97393754346293 + ], + [ + -80.0514836389316, + 25.005263048884622 + ], + [ + -80.07142729835499, + 24.97393754346293 + ], + [ + -80.03153997950822, + 24.97393754346293 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.03153997950822, + 24.97393754346293 + ], + [ + -80.07142729835499, + 24.97393754346293 + ], + [ + -80.0514836389316, + 24.94261203804124 + ], + [ + -80.03153997950822, + 24.97393754346293 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.03153997950822, + 24.97393754346293 + ], + [ + -80.0514836389316, + 24.94261203804124 + ], + [ + -80.01159632008485, + 24.94261203804124 + ], + [ + -80.03153997950822, + 24.97393754346293 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.03153997950822, + 24.97393754346293 + ], + [ + -80.01159632008485, + 24.94261203804124 + ], + [ + -79.99165266066146, + 24.97393754346293 + ], + [ + -80.03153997950822, + 24.97393754346293 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.03153997950822, + 25.036588554306316 + ], + [ + -79.99165266066146, + 25.036588554306316 + ], + [ + -80.01159632008485, + 25.067914059728007 + ], + [ + -80.03153997950822, + 25.036588554306316 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.03153997950822, + 25.036588554306316 + ], + [ + -80.01159632008485, + 25.067914059728007 + ], + [ + -80.0514836389316, + 25.067914059728007 + ], + [ + -80.03153997950822, + 25.036588554306316 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.03153997950822, + 25.036588554306316 + ], + [ + -80.0514836389316, + 25.067914059728007 + ], + [ + -80.07142729835499, + 25.036588554306316 + ], + [ + -80.03153997950822, + 25.036588554306316 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.03153997950822, + 25.036588554306316 + ], + [ + -80.07142729835499, + 25.036588554306316 + ], + [ + -80.0514836389316, + 25.005263048884625 + ], + [ + -80.03153997950822, + 25.036588554306316 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.03153997950822, + 25.036588554306316 + ], + [ + -80.0514836389316, + 25.005263048884625 + ], + [ + -80.01159632008485, + 25.005263048884625 + ], + [ + -80.03153997950822, + 25.036588554306316 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.03153997950822, + 25.036588554306316 + ], + [ + -80.01159632008485, + 25.005263048884625 + ], + [ + -79.99165266066146, + 25.036588554306316 + ], + [ + -80.03153997950822, + 25.036588554306316 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.03153997950822, + 25.099239565149702 + ], + [ + -79.99165266066146, + 25.099239565149702 + ], + [ + -80.01159632008485, + 25.130565070571393 + ], + [ + -80.03153997950822, + 25.099239565149702 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.03153997950822, + 25.099239565149702 + ], + [ + -80.01159632008485, + 25.130565070571393 + ], + [ + -80.0514836389316, + 25.130565070571393 + ], + [ + -80.03153997950822, + 25.099239565149702 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.03153997950822, + 25.099239565149702 + ], + [ + -80.0514836389316, + 25.130565070571393 + ], + [ + -80.07142729835499, + 25.099239565149702 + ], + [ + -80.03153997950822, + 25.099239565149702 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.03153997950822, + 25.099239565149702 + ], + [ + -80.07142729835499, + 25.099239565149702 + ], + [ + -80.0514836389316, + 25.06791405972801 + ], + [ + -80.03153997950822, + 25.099239565149702 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.03153997950822, + 25.099239565149702 + ], + [ + -80.0514836389316, + 25.06791405972801 + ], + [ + -80.01159632008485, + 25.06791405972801 + ], + [ + -80.03153997950822, + 25.099239565149702 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.03153997950822, + 25.099239565149702 + ], + [ + -80.01159632008485, + 25.06791405972801 + ], + [ + -79.99165266066146, + 25.099239565149702 + ], + [ + -80.03153997950822, + 25.099239565149702 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.03153997950822, + 25.161890575993088 + ], + [ + -79.99165266066146, + 25.161890575993088 + ], + [ + -80.01159632008485, + 25.19321608141478 + ], + [ + -80.03153997950822, + 25.161890575993088 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.03153997950822, + 25.161890575993088 + ], + [ + -80.01159632008485, + 25.19321608141478 + ], + [ + -80.0514836389316, + 25.19321608141478 + ], + [ + -80.03153997950822, + 25.161890575993088 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.03153997950822, + 25.161890575993088 + ], + [ + -80.0514836389316, + 25.19321608141478 + ], + [ + -80.07142729835499, + 25.161890575993088 + ], + [ + -80.03153997950822, + 25.161890575993088 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.03153997950822, + 25.161890575993088 + ], + [ + -80.07142729835499, + 25.161890575993088 + ], + [ + -80.0514836389316, + 25.130565070571397 + ], + [ + -80.03153997950822, + 25.161890575993088 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.03153997950822, + 25.161890575993088 + ], + [ + -80.0514836389316, + 25.130565070571397 + ], + [ + -80.01159632008485, + 25.130565070571397 + ], + [ + -80.03153997950822, + 25.161890575993088 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.03153997950822, + 25.161890575993088 + ], + [ + -80.01159632008485, + 25.130565070571397 + ], + [ + -79.99165266066146, + 25.161890575993088 + ], + [ + -80.03153997950822, + 25.161890575993088 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.03153997950822, + 25.224541586836473 + ], + [ + -79.99165266066146, + 25.224541586836473 + ], + [ + -80.01159632008485, + 25.255867092258164 + ], + [ + -80.03153997950822, + 25.224541586836473 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.03153997950822, + 25.224541586836473 + ], + [ + -80.01159632008485, + 25.255867092258164 + ], + [ + -80.0514836389316, + 25.255867092258164 + ], + [ + -80.03153997950822, + 25.224541586836473 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.03153997950822, + 25.224541586836473 + ], + [ + -80.0514836389316, + 25.255867092258164 + ], + [ + -80.07142729835499, + 25.224541586836473 + ], + [ + -80.03153997950822, + 25.224541586836473 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.03153997950822, + 25.224541586836473 + ], + [ + -80.07142729835499, + 25.224541586836473 + ], + [ + -80.0514836389316, + 25.193216081414782 + ], + [ + -80.03153997950822, + 25.224541586836473 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.03153997950822, + 25.224541586836473 + ], + [ + -80.0514836389316, + 25.193216081414782 + ], + [ + -80.01159632008485, + 25.193216081414782 + ], + [ + -80.03153997950822, + 25.224541586836473 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.03153997950822, + 25.224541586836473 + ], + [ + -80.01159632008485, + 25.193216081414782 + ], + [ + -79.99165266066146, + 25.224541586836473 + ], + [ + -80.03153997950822, + 25.224541586836473 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.03153997950822, + 25.28719259767986 + ], + [ + -79.99165266066146, + 25.28719259767986 + ], + [ + -80.01159632008485, + 25.31851810310155 + ], + [ + -80.03153997950822, + 25.28719259767986 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.03153997950822, + 25.28719259767986 + ], + [ + -80.01159632008485, + 25.31851810310155 + ], + [ + -80.0514836389316, + 25.31851810310155 + ], + [ + -80.03153997950822, + 25.28719259767986 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.03153997950822, + 25.28719259767986 + ], + [ + -80.0514836389316, + 25.31851810310155 + ], + [ + -80.07142729835499, + 25.28719259767986 + ], + [ + -80.03153997950822, + 25.28719259767986 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.03153997950822, + 25.28719259767986 + ], + [ + -80.07142729835499, + 25.28719259767986 + ], + [ + -80.0514836389316, + 25.255867092258168 + ], + [ + -80.03153997950822, + 25.28719259767986 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.03153997950822, + 25.28719259767986 + ], + [ + -80.0514836389316, + 25.255867092258168 + ], + [ + -80.01159632008485, + 25.255867092258168 + ], + [ + -80.03153997950822, + 25.28719259767986 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.03153997950822, + 25.28719259767986 + ], + [ + -80.01159632008485, + 25.255867092258168 + ], + [ + -79.99165266066146, + 25.28719259767986 + ], + [ + -80.03153997950822, + 25.28719259767986 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.03153997950822, + 25.349843608523244 + ], + [ + -79.99165266066146, + 25.349843608523244 + ], + [ + -80.01159632008485, + 25.381169113944935 + ], + [ + -80.03153997950822, + 25.349843608523244 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.03153997950822, + 25.349843608523244 + ], + [ + -80.01159632008485, + 25.381169113944935 + ], + [ + -80.0514836389316, + 25.381169113944935 + ], + [ + -80.03153997950822, + 25.349843608523244 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.03153997950822, + 25.349843608523244 + ], + [ + -80.0514836389316, + 25.381169113944935 + ], + [ + -80.07142729835499, + 25.349843608523244 + ], + [ + -80.03153997950822, + 25.349843608523244 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.03153997950822, + 25.349843608523244 + ], + [ + -80.07142729835499, + 25.349843608523244 + ], + [ + -80.0514836389316, + 25.318518103101553 + ], + [ + -80.03153997950822, + 25.349843608523244 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.03153997950822, + 25.349843608523244 + ], + [ + -80.0514836389316, + 25.318518103101553 + ], + [ + -80.01159632008485, + 25.318518103101553 + ], + [ + -80.03153997950822, + 25.349843608523244 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.03153997950822, + 25.349843608523244 + ], + [ + -80.01159632008485, + 25.318518103101553 + ], + [ + -79.99165266066146, + 25.349843608523244 + ], + [ + -80.03153997950822, + 25.349843608523244 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.03153997950822, + 25.41249461936663 + ], + [ + -79.99165266066146, + 25.41249461936663 + ], + [ + -80.01159632008485, + 25.44382012478832 + ], + [ + -80.03153997950822, + 25.41249461936663 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.03153997950822, + 25.41249461936663 + ], + [ + -80.01159632008485, + 25.44382012478832 + ], + [ + -80.0514836389316, + 25.44382012478832 + ], + [ + -80.03153997950822, + 25.41249461936663 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.03153997950822, + 25.41249461936663 + ], + [ + -80.0514836389316, + 25.44382012478832 + ], + [ + -80.07142729835499, + 25.41249461936663 + ], + [ + -80.03153997950822, + 25.41249461936663 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.03153997950822, + 25.41249461936663 + ], + [ + -80.07142729835499, + 25.41249461936663 + ], + [ + -80.0514836389316, + 25.38116911394494 + ], + [ + -80.03153997950822, + 25.41249461936663 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.03153997950822, + 25.41249461936663 + ], + [ + -80.0514836389316, + 25.38116911394494 + ], + [ + -80.01159632008485, + 25.38116911394494 + ], + [ + -80.03153997950822, + 25.41249461936663 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.03153997950822, + 25.41249461936663 + ], + [ + -80.01159632008485, + 25.38116911394494 + ], + [ + -79.99165266066146, + 25.41249461936663 + ], + [ + -80.03153997950822, + 25.41249461936663 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.03153997950822, + 25.475145630210015 + ], + [ + -79.99165266066146, + 25.475145630210015 + ], + [ + -80.01159632008485, + 25.506471135631706 + ], + [ + -80.03153997950822, + 25.475145630210015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.03153997950822, + 25.475145630210015 + ], + [ + -80.01159632008485, + 25.506471135631706 + ], + [ + -80.0514836389316, + 25.506471135631706 + ], + [ + -80.03153997950822, + 25.475145630210015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.03153997950822, + 25.475145630210015 + ], + [ + -80.0514836389316, + 25.506471135631706 + ], + [ + -80.07142729835499, + 25.475145630210015 + ], + [ + -80.03153997950822, + 25.475145630210015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.03153997950822, + 25.475145630210015 + ], + [ + -80.07142729835499, + 25.475145630210015 + ], + [ + -80.0514836389316, + 25.443820124788324 + ], + [ + -80.03153997950822, + 25.475145630210015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.03153997950822, + 25.475145630210015 + ], + [ + -80.0514836389316, + 25.443820124788324 + ], + [ + -80.01159632008485, + 25.443820124788324 + ], + [ + -80.03153997950822, + 25.475145630210015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.03153997950822, + 25.475145630210015 + ], + [ + -80.01159632008485, + 25.443820124788324 + ], + [ + -79.99165266066146, + 25.475145630210015 + ], + [ + -80.03153997950822, + 25.475145630210015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.03153997950822, + 25.5377966410534 + ], + [ + -79.99165266066146, + 25.5377966410534 + ], + [ + -80.01159632008485, + 25.56912214647509 + ], + [ + -80.03153997950822, + 25.5377966410534 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.03153997950822, + 25.5377966410534 + ], + [ + -80.01159632008485, + 25.56912214647509 + ], + [ + -80.0514836389316, + 25.56912214647509 + ], + [ + -80.03153997950822, + 25.5377966410534 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.03153997950822, + 25.5377966410534 + ], + [ + -80.0514836389316, + 25.56912214647509 + ], + [ + -80.07142729835499, + 25.5377966410534 + ], + [ + -80.03153997950822, + 25.5377966410534 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.03153997950822, + 25.5377966410534 + ], + [ + -80.07142729835499, + 25.5377966410534 + ], + [ + -80.0514836389316, + 25.50647113563171 + ], + [ + -80.03153997950822, + 25.5377966410534 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.03153997950822, + 25.5377966410534 + ], + [ + -80.0514836389316, + 25.50647113563171 + ], + [ + -80.01159632008485, + 25.50647113563171 + ], + [ + -80.03153997950822, + 25.5377966410534 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.03153997950822, + 25.5377966410534 + ], + [ + -80.01159632008485, + 25.50647113563171 + ], + [ + -79.99165266066146, + 25.5377966410534 + ], + [ + -80.03153997950822, + 25.5377966410534 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.03153997950822, + 25.600447651896786 + ], + [ + -79.99165266066146, + 25.600447651896786 + ], + [ + -80.01159632008485, + 25.631773157318477 + ], + [ + -80.03153997950822, + 25.600447651896786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.03153997950822, + 25.600447651896786 + ], + [ + -80.01159632008485, + 25.631773157318477 + ], + [ + -80.0514836389316, + 25.631773157318477 + ], + [ + -80.03153997950822, + 25.600447651896786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.03153997950822, + 25.600447651896786 + ], + [ + -80.0514836389316, + 25.631773157318477 + ], + [ + -80.07142729835499, + 25.600447651896786 + ], + [ + -80.03153997950822, + 25.600447651896786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.03153997950822, + 25.600447651896786 + ], + [ + -80.07142729835499, + 25.600447651896786 + ], + [ + -80.0514836389316, + 25.569122146475095 + ], + [ + -80.03153997950822, + 25.600447651896786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.03153997950822, + 25.600447651896786 + ], + [ + -80.0514836389316, + 25.569122146475095 + ], + [ + -80.01159632008485, + 25.569122146475095 + ], + [ + -80.03153997950822, + 25.600447651896786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.03153997950822, + 25.600447651896786 + ], + [ + -80.01159632008485, + 25.569122146475095 + ], + [ + -79.99165266066146, + 25.600447651896786 + ], + [ + -80.03153997950822, + 25.600447651896786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.03153997950822, + 25.663098662740172 + ], + [ + -79.99165266066146, + 25.663098662740172 + ], + [ + -80.01159632008485, + 25.694424168161863 + ], + [ + -80.03153997950822, + 25.663098662740172 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.03153997950822, + 25.663098662740172 + ], + [ + -80.01159632008485, + 25.694424168161863 + ], + [ + -80.0514836389316, + 25.694424168161863 + ], + [ + -80.03153997950822, + 25.663098662740172 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.03153997950822, + 25.663098662740172 + ], + [ + -80.0514836389316, + 25.694424168161863 + ], + [ + -80.07142729835499, + 25.663098662740172 + ], + [ + -80.03153997950822, + 25.663098662740172 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.03153997950822, + 25.663098662740172 + ], + [ + -80.07142729835499, + 25.663098662740172 + ], + [ + -80.0514836389316, + 25.63177315731848 + ], + [ + -80.03153997950822, + 25.663098662740172 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.03153997950822, + 25.663098662740172 + ], + [ + -80.0514836389316, + 25.63177315731848 + ], + [ + -80.01159632008485, + 25.63177315731848 + ], + [ + -80.03153997950822, + 25.663098662740172 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.03153997950822, + 25.663098662740172 + ], + [ + -80.01159632008485, + 25.63177315731848 + ], + [ + -79.99165266066146, + 25.663098662740172 + ], + [ + -80.03153997950822, + 25.663098662740172 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.03153997950822, + 25.725749673583557 + ], + [ + -79.99165266066146, + 25.725749673583557 + ], + [ + -80.01159632008485, + 25.75707517900525 + ], + [ + -80.03153997950822, + 25.725749673583557 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.03153997950822, + 25.725749673583557 + ], + [ + -80.01159632008485, + 25.75707517900525 + ], + [ + -80.0514836389316, + 25.75707517900525 + ], + [ + -80.03153997950822, + 25.725749673583557 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.03153997950822, + 25.725749673583557 + ], + [ + -80.0514836389316, + 25.75707517900525 + ], + [ + -80.07142729835499, + 25.725749673583557 + ], + [ + -80.03153997950822, + 25.725749673583557 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.03153997950822, + 25.725749673583557 + ], + [ + -80.07142729835499, + 25.725749673583557 + ], + [ + -80.0514836389316, + 25.694424168161866 + ], + [ + -80.03153997950822, + 25.725749673583557 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.03153997950822, + 25.725749673583557 + ], + [ + -80.0514836389316, + 25.694424168161866 + ], + [ + -80.01159632008485, + 25.694424168161866 + ], + [ + -80.03153997950822, + 25.725749673583557 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.03153997950822, + 25.725749673583557 + ], + [ + -80.01159632008485, + 25.694424168161866 + ], + [ + -79.99165266066146, + 25.725749673583557 + ], + [ + -80.03153997950822, + 25.725749673583557 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.03153997950822, + 25.788400684426943 + ], + [ + -79.99165266066146, + 25.788400684426943 + ], + [ + -80.01159632008485, + 25.819726189848634 + ], + [ + -80.03153997950822, + 25.788400684426943 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.03153997950822, + 25.788400684426943 + ], + [ + -80.01159632008485, + 25.819726189848634 + ], + [ + -80.0514836389316, + 25.819726189848634 + ], + [ + -80.03153997950822, + 25.788400684426943 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.03153997950822, + 25.788400684426943 + ], + [ + -80.0514836389316, + 25.819726189848634 + ], + [ + -80.07142729835499, + 25.788400684426943 + ], + [ + -80.03153997950822, + 25.788400684426943 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.03153997950822, + 25.788400684426943 + ], + [ + -80.07142729835499, + 25.788400684426943 + ], + [ + -80.0514836389316, + 25.757075179005252 + ], + [ + -80.03153997950822, + 25.788400684426943 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.03153997950822, + 25.788400684426943 + ], + [ + -80.0514836389316, + 25.757075179005252 + ], + [ + -80.01159632008485, + 25.757075179005252 + ], + [ + -80.03153997950822, + 25.788400684426943 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.03153997950822, + 25.788400684426943 + ], + [ + -80.01159632008485, + 25.757075179005252 + ], + [ + -79.99165266066146, + 25.788400684426943 + ], + [ + -80.03153997950822, + 25.788400684426943 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.03153997950822, + 25.85105169527033 + ], + [ + -79.99165266066146, + 25.85105169527033 + ], + [ + -80.01159632008485, + 25.88237720069202 + ], + [ + -80.03153997950822, + 25.85105169527033 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.03153997950822, + 25.85105169527033 + ], + [ + -80.01159632008485, + 25.88237720069202 + ], + [ + -80.0514836389316, + 25.88237720069202 + ], + [ + -80.03153997950822, + 25.85105169527033 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.03153997950822, + 25.85105169527033 + ], + [ + -80.0514836389316, + 25.88237720069202 + ], + [ + -80.07142729835499, + 25.85105169527033 + ], + [ + -80.03153997950822, + 25.85105169527033 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.03153997950822, + 25.85105169527033 + ], + [ + -80.07142729835499, + 25.85105169527033 + ], + [ + -80.0514836389316, + 25.819726189848637 + ], + [ + -80.03153997950822, + 25.85105169527033 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.03153997950822, + 25.85105169527033 + ], + [ + -80.0514836389316, + 25.819726189848637 + ], + [ + -80.01159632008485, + 25.819726189848637 + ], + [ + -80.03153997950822, + 25.85105169527033 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.03153997950822, + 25.85105169527033 + ], + [ + -80.01159632008485, + 25.819726189848637 + ], + [ + -79.99165266066146, + 25.85105169527033 + ], + [ + -80.03153997950822, + 25.85105169527033 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.03153997950822, + 25.913702706113714 + ], + [ + -79.99165266066146, + 25.913702706113714 + ], + [ + -80.01159632008485, + 25.945028211535405 + ], + [ + -80.03153997950822, + 25.913702706113714 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.03153997950822, + 25.913702706113714 + ], + [ + -80.01159632008485, + 25.945028211535405 + ], + [ + -80.0514836389316, + 25.945028211535405 + ], + [ + -80.03153997950822, + 25.913702706113714 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.03153997950822, + 25.913702706113714 + ], + [ + -80.0514836389316, + 25.945028211535405 + ], + [ + -80.07142729835499, + 25.913702706113714 + ], + [ + -80.03153997950822, + 25.913702706113714 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.03153997950822, + 25.913702706113714 + ], + [ + -80.07142729835499, + 25.913702706113714 + ], + [ + -80.0514836389316, + 25.882377200692023 + ], + [ + -80.03153997950822, + 25.913702706113714 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.03153997950822, + 25.913702706113714 + ], + [ + -80.0514836389316, + 25.882377200692023 + ], + [ + -80.01159632008485, + 25.882377200692023 + ], + [ + -80.03153997950822, + 25.913702706113714 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.03153997950822, + 25.913702706113714 + ], + [ + -80.01159632008485, + 25.882377200692023 + ], + [ + -79.99165266066146, + 25.913702706113714 + ], + [ + -80.03153997950822, + 25.913702706113714 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.03153997950822, + 25.9763537169571 + ], + [ + -79.99165266066146, + 25.9763537169571 + ], + [ + -80.01159632008485, + 26.00767922237879 + ], + [ + -80.03153997950822, + 25.9763537169571 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.03153997950822, + 25.9763537169571 + ], + [ + -80.01159632008485, + 26.00767922237879 + ], + [ + -80.0514836389316, + 26.00767922237879 + ], + [ + -80.03153997950822, + 25.9763537169571 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.03153997950822, + 25.9763537169571 + ], + [ + -80.0514836389316, + 26.00767922237879 + ], + [ + -80.07142729835499, + 25.9763537169571 + ], + [ + -80.03153997950822, + 25.9763537169571 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.03153997950822, + 25.9763537169571 + ], + [ + -80.07142729835499, + 25.9763537169571 + ], + [ + -80.0514836389316, + 25.94502821153541 + ], + [ + -80.03153997950822, + 25.9763537169571 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.03153997950822, + 25.9763537169571 + ], + [ + -80.0514836389316, + 25.94502821153541 + ], + [ + -80.01159632008485, + 25.94502821153541 + ], + [ + -80.03153997950822, + 25.9763537169571 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.03153997950822, + 25.9763537169571 + ], + [ + -80.01159632008485, + 25.94502821153541 + ], + [ + -79.99165266066146, + 25.9763537169571 + ], + [ + -80.03153997950822, + 25.9763537169571 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.03153997950822, + 26.039004727800485 + ], + [ + -79.99165266066146, + 26.039004727800485 + ], + [ + -80.01159632008485, + 26.070330233222176 + ], + [ + -80.03153997950822, + 26.039004727800485 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.03153997950822, + 26.039004727800485 + ], + [ + -80.01159632008485, + 26.070330233222176 + ], + [ + -80.0514836389316, + 26.070330233222176 + ], + [ + -80.03153997950822, + 26.039004727800485 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.03153997950822, + 26.039004727800485 + ], + [ + -80.0514836389316, + 26.070330233222176 + ], + [ + -80.07142729835499, + 26.039004727800485 + ], + [ + -80.03153997950822, + 26.039004727800485 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.03153997950822, + 26.039004727800485 + ], + [ + -80.07142729835499, + 26.039004727800485 + ], + [ + -80.0514836389316, + 26.007679222378794 + ], + [ + -80.03153997950822, + 26.039004727800485 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.03153997950822, + 26.039004727800485 + ], + [ + -80.0514836389316, + 26.007679222378794 + ], + [ + -80.01159632008485, + 26.007679222378794 + ], + [ + -80.03153997950822, + 26.039004727800485 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.03153997950822, + 26.039004727800485 + ], + [ + -80.01159632008485, + 26.007679222378794 + ], + [ + -79.99165266066146, + 26.039004727800485 + ], + [ + -80.03153997950822, + 26.039004727800485 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.03153997950822, + 26.10165573864387 + ], + [ + -79.99165266066146, + 26.10165573864387 + ], + [ + -80.01159632008485, + 26.13298124406556 + ], + [ + -80.03153997950822, + 26.10165573864387 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.03153997950822, + 26.10165573864387 + ], + [ + -80.01159632008485, + 26.13298124406556 + ], + [ + -80.0514836389316, + 26.13298124406556 + ], + [ + -80.03153997950822, + 26.10165573864387 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.03153997950822, + 26.10165573864387 + ], + [ + -80.0514836389316, + 26.13298124406556 + ], + [ + -80.07142729835499, + 26.10165573864387 + ], + [ + -80.03153997950822, + 26.10165573864387 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.03153997950822, + 26.10165573864387 + ], + [ + -80.07142729835499, + 26.10165573864387 + ], + [ + -80.0514836389316, + 26.07033023322218 + ], + [ + -80.03153997950822, + 26.10165573864387 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.03153997950822, + 26.10165573864387 + ], + [ + -80.0514836389316, + 26.07033023322218 + ], + [ + -80.01159632008485, + 26.07033023322218 + ], + [ + -80.03153997950822, + 26.10165573864387 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.03153997950822, + 26.10165573864387 + ], + [ + -80.01159632008485, + 26.07033023322218 + ], + [ + -79.99165266066146, + 26.10165573864387 + ], + [ + -80.03153997950822, + 26.10165573864387 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.03153997950822, + 26.164306749487253 + ], + [ + -79.99165266066146, + 26.164306749487253 + ], + [ + -80.01159632008485, + 26.195632254908944 + ], + [ + -80.03153997950822, + 26.164306749487253 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.03153997950822, + 26.164306749487253 + ], + [ + -80.01159632008485, + 26.195632254908944 + ], + [ + -80.0514836389316, + 26.195632254908944 + ], + [ + -80.03153997950822, + 26.164306749487253 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.03153997950822, + 26.164306749487253 + ], + [ + -80.0514836389316, + 26.195632254908944 + ], + [ + -80.07142729835499, + 26.164306749487253 + ], + [ + -80.03153997950822, + 26.164306749487253 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.03153997950822, + 26.164306749487253 + ], + [ + -80.07142729835499, + 26.164306749487253 + ], + [ + -80.0514836389316, + 26.13298124406556 + ], + [ + -80.03153997950822, + 26.164306749487253 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.03153997950822, + 26.164306749487253 + ], + [ + -80.0514836389316, + 26.13298124406556 + ], + [ + -80.01159632008485, + 26.13298124406556 + ], + [ + -80.03153997950822, + 26.164306749487253 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.03153997950822, + 26.164306749487253 + ], + [ + -80.01159632008485, + 26.13298124406556 + ], + [ + -79.99165266066146, + 26.164306749487253 + ], + [ + -80.03153997950822, + 26.164306749487253 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.03153997950822, + 26.22695776033064 + ], + [ + -79.99165266066146, + 26.22695776033064 + ], + [ + -80.01159632008485, + 26.258283265752333 + ], + [ + -80.03153997950822, + 26.22695776033064 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.03153997950822, + 26.22695776033064 + ], + [ + -80.01159632008485, + 26.258283265752333 + ], + [ + -80.0514836389316, + 26.258283265752333 + ], + [ + -80.03153997950822, + 26.22695776033064 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.03153997950822, + 26.22695776033064 + ], + [ + -80.0514836389316, + 26.258283265752333 + ], + [ + -80.07142729835499, + 26.22695776033064 + ], + [ + -80.03153997950822, + 26.22695776033064 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.03153997950822, + 26.22695776033064 + ], + [ + -80.07142729835499, + 26.22695776033064 + ], + [ + -80.0514836389316, + 26.19563225490895 + ], + [ + -80.03153997950822, + 26.22695776033064 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.03153997950822, + 26.22695776033064 + ], + [ + -80.0514836389316, + 26.19563225490895 + ], + [ + -80.01159632008485, + 26.19563225490895 + ], + [ + -80.03153997950822, + 26.22695776033064 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.03153997950822, + 26.22695776033064 + ], + [ + -80.01159632008485, + 26.19563225490895 + ], + [ + -79.99165266066146, + 26.22695776033064 + ], + [ + -80.03153997950822, + 26.22695776033064 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.03153997950822, + 26.289608771174024 + ], + [ + -79.99165266066146, + 26.289608771174024 + ], + [ + -80.01159632008485, + 26.320934276595715 + ], + [ + -80.03153997950822, + 26.289608771174024 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.03153997950822, + 26.289608771174024 + ], + [ + -80.01159632008485, + 26.320934276595715 + ], + [ + -80.0514836389316, + 26.320934276595715 + ], + [ + -80.03153997950822, + 26.289608771174024 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.03153997950822, + 26.289608771174024 + ], + [ + -80.0514836389316, + 26.320934276595715 + ], + [ + -80.07142729835499, + 26.289608771174024 + ], + [ + -80.03153997950822, + 26.289608771174024 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.03153997950822, + 26.289608771174024 + ], + [ + -80.07142729835499, + 26.289608771174024 + ], + [ + -80.0514836389316, + 26.258283265752333 + ], + [ + -80.03153997950822, + 26.289608771174024 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.03153997950822, + 26.289608771174024 + ], + [ + -80.0514836389316, + 26.258283265752333 + ], + [ + -80.01159632008485, + 26.258283265752333 + ], + [ + -80.03153997950822, + 26.289608771174024 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.03153997950822, + 26.289608771174024 + ], + [ + -80.01159632008485, + 26.258283265752333 + ], + [ + -79.99165266066146, + 26.289608771174024 + ], + [ + -80.03153997950822, + 26.289608771174024 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.03153997950822, + 26.35225978201741 + ], + [ + -79.99165266066146, + 26.35225978201741 + ], + [ + -80.01159632008485, + 26.3835852874391 + ], + [ + -80.03153997950822, + 26.35225978201741 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.03153997950822, + 26.35225978201741 + ], + [ + -80.01159632008485, + 26.3835852874391 + ], + [ + -80.0514836389316, + 26.3835852874391 + ], + [ + -80.03153997950822, + 26.35225978201741 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.03153997950822, + 26.35225978201741 + ], + [ + -80.0514836389316, + 26.3835852874391 + ], + [ + -80.07142729835499, + 26.35225978201741 + ], + [ + -80.03153997950822, + 26.35225978201741 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.03153997950822, + 26.35225978201741 + ], + [ + -80.07142729835499, + 26.35225978201741 + ], + [ + -80.0514836389316, + 26.320934276595718 + ], + [ + -80.03153997950822, + 26.35225978201741 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.03153997950822, + 26.35225978201741 + ], + [ + -80.0514836389316, + 26.320934276595718 + ], + [ + -80.01159632008485, + 26.320934276595718 + ], + [ + -80.03153997950822, + 26.35225978201741 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.03153997950822, + 26.35225978201741 + ], + [ + -80.01159632008485, + 26.320934276595718 + ], + [ + -79.99165266066146, + 26.35225978201741 + ], + [ + -80.03153997950822, + 26.35225978201741 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.03153997950822, + 26.414910792860795 + ], + [ + -79.99165266066146, + 26.414910792860795 + ], + [ + -80.01159632008485, + 26.446236298282486 + ], + [ + -80.03153997950822, + 26.414910792860795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.03153997950822, + 26.414910792860795 + ], + [ + -80.01159632008485, + 26.446236298282486 + ], + [ + -80.0514836389316, + 26.446236298282486 + ], + [ + -80.03153997950822, + 26.414910792860795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.03153997950822, + 26.414910792860795 + ], + [ + -80.0514836389316, + 26.446236298282486 + ], + [ + -80.07142729835499, + 26.414910792860795 + ], + [ + -80.03153997950822, + 26.414910792860795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.03153997950822, + 26.414910792860795 + ], + [ + -80.07142729835499, + 26.414910792860795 + ], + [ + -80.0514836389316, + 26.383585287439104 + ], + [ + -80.03153997950822, + 26.414910792860795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.03153997950822, + 26.414910792860795 + ], + [ + -80.0514836389316, + 26.383585287439104 + ], + [ + -80.01159632008485, + 26.383585287439104 + ], + [ + -80.03153997950822, + 26.414910792860795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.03153997950822, + 26.414910792860795 + ], + [ + -80.01159632008485, + 26.383585287439104 + ], + [ + -79.99165266066146, + 26.414910792860795 + ], + [ + -80.03153997950822, + 26.414910792860795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97170900123807, + 24.942612038041236 + ], + [ + -79.9318216823913, + 24.942612038041236 + ], + [ + -79.95176534181469, + 24.973937543462927 + ], + [ + -79.97170900123807, + 24.942612038041236 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97170900123807, + 24.942612038041236 + ], + [ + -79.95176534181469, + 24.973937543462927 + ], + [ + -79.99165266066144, + 24.973937543462927 + ], + [ + -79.97170900123807, + 24.942612038041236 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97170900123807, + 24.942612038041236 + ], + [ + -79.99165266066144, + 24.973937543462927 + ], + [ + -80.01159632008483, + 24.942612038041236 + ], + [ + -79.97170900123807, + 24.942612038041236 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97170900123807, + 24.942612038041236 + ], + [ + -80.01159632008483, + 24.942612038041236 + ], + [ + -79.99165266066144, + 24.911286532619545 + ], + [ + -79.97170900123807, + 24.942612038041236 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97170900123807, + 24.942612038041236 + ], + [ + -79.99165266066144, + 24.911286532619545 + ], + [ + -79.95176534181469, + 24.911286532619545 + ], + [ + -79.97170900123807, + 24.942612038041236 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97170900123807, + 24.942612038041236 + ], + [ + -79.95176534181469, + 24.911286532619545 + ], + [ + -79.9318216823913, + 24.942612038041236 + ], + [ + -79.97170900123807, + 24.942612038041236 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97170900123807, + 25.005263048884622 + ], + [ + -79.9318216823913, + 25.005263048884622 + ], + [ + -79.95176534181469, + 25.036588554306313 + ], + [ + -79.97170900123807, + 25.005263048884622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97170900123807, + 25.005263048884622 + ], + [ + -79.95176534181469, + 25.036588554306313 + ], + [ + -79.99165266066144, + 25.036588554306313 + ], + [ + -79.97170900123807, + 25.005263048884622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97170900123807, + 25.005263048884622 + ], + [ + -79.99165266066144, + 25.036588554306313 + ], + [ + -80.01159632008483, + 25.005263048884622 + ], + [ + -79.97170900123807, + 25.005263048884622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97170900123807, + 25.005263048884622 + ], + [ + -80.01159632008483, + 25.005263048884622 + ], + [ + -79.99165266066144, + 24.97393754346293 + ], + [ + -79.97170900123807, + 25.005263048884622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97170900123807, + 25.005263048884622 + ], + [ + -79.99165266066144, + 24.97393754346293 + ], + [ + -79.95176534181469, + 24.97393754346293 + ], + [ + -79.97170900123807, + 25.005263048884622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97170900123807, + 25.005263048884622 + ], + [ + -79.95176534181469, + 24.97393754346293 + ], + [ + -79.9318216823913, + 25.005263048884622 + ], + [ + -79.97170900123807, + 25.005263048884622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97170900123807, + 25.067914059728007 + ], + [ + -79.9318216823913, + 25.067914059728007 + ], + [ + -79.95176534181469, + 25.0992395651497 + ], + [ + -79.97170900123807, + 25.067914059728007 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97170900123807, + 25.067914059728007 + ], + [ + -79.95176534181469, + 25.0992395651497 + ], + [ + -79.99165266066144, + 25.0992395651497 + ], + [ + -79.97170900123807, + 25.067914059728007 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97170900123807, + 25.067914059728007 + ], + [ + -79.99165266066144, + 25.0992395651497 + ], + [ + -80.01159632008483, + 25.067914059728007 + ], + [ + -79.97170900123807, + 25.067914059728007 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97170900123807, + 25.067914059728007 + ], + [ + -80.01159632008483, + 25.067914059728007 + ], + [ + -79.99165266066144, + 25.036588554306316 + ], + [ + -79.97170900123807, + 25.067914059728007 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97170900123807, + 25.067914059728007 + ], + [ + -79.99165266066144, + 25.036588554306316 + ], + [ + -79.95176534181469, + 25.036588554306316 + ], + [ + -79.97170900123807, + 25.067914059728007 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97170900123807, + 25.067914059728007 + ], + [ + -79.95176534181469, + 25.036588554306316 + ], + [ + -79.9318216823913, + 25.067914059728007 + ], + [ + -79.97170900123807, + 25.067914059728007 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97170900123807, + 25.130565070571393 + ], + [ + -79.9318216823913, + 25.130565070571393 + ], + [ + -79.95176534181469, + 25.161890575993084 + ], + [ + -79.97170900123807, + 25.130565070571393 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97170900123807, + 25.130565070571393 + ], + [ + -79.95176534181469, + 25.161890575993084 + ], + [ + -79.99165266066144, + 25.161890575993084 + ], + [ + -79.97170900123807, + 25.130565070571393 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97170900123807, + 25.130565070571393 + ], + [ + -79.99165266066144, + 25.161890575993084 + ], + [ + -80.01159632008483, + 25.130565070571393 + ], + [ + -79.97170900123807, + 25.130565070571393 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97170900123807, + 25.130565070571393 + ], + [ + -80.01159632008483, + 25.130565070571393 + ], + [ + -79.99165266066144, + 25.099239565149702 + ], + [ + -79.97170900123807, + 25.130565070571393 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97170900123807, + 25.130565070571393 + ], + [ + -79.99165266066144, + 25.099239565149702 + ], + [ + -79.95176534181469, + 25.099239565149702 + ], + [ + -79.97170900123807, + 25.130565070571393 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97170900123807, + 25.130565070571393 + ], + [ + -79.95176534181469, + 25.099239565149702 + ], + [ + -79.9318216823913, + 25.130565070571393 + ], + [ + -79.97170900123807, + 25.130565070571393 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97170900123807, + 25.19321608141478 + ], + [ + -79.9318216823913, + 25.19321608141478 + ], + [ + -79.95176534181469, + 25.22454158683647 + ], + [ + -79.97170900123807, + 25.19321608141478 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97170900123807, + 25.19321608141478 + ], + [ + -79.95176534181469, + 25.22454158683647 + ], + [ + -79.99165266066144, + 25.22454158683647 + ], + [ + -79.97170900123807, + 25.19321608141478 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97170900123807, + 25.19321608141478 + ], + [ + -79.99165266066144, + 25.22454158683647 + ], + [ + -80.01159632008483, + 25.19321608141478 + ], + [ + -79.97170900123807, + 25.19321608141478 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97170900123807, + 25.19321608141478 + ], + [ + -80.01159632008483, + 25.19321608141478 + ], + [ + -79.99165266066144, + 25.161890575993088 + ], + [ + -79.97170900123807, + 25.19321608141478 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97170900123807, + 25.19321608141478 + ], + [ + -79.99165266066144, + 25.161890575993088 + ], + [ + -79.95176534181469, + 25.161890575993088 + ], + [ + -79.97170900123807, + 25.19321608141478 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97170900123807, + 25.19321608141478 + ], + [ + -79.95176534181469, + 25.161890575993088 + ], + [ + -79.9318216823913, + 25.19321608141478 + ], + [ + -79.97170900123807, + 25.19321608141478 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97170900123807, + 25.255867092258164 + ], + [ + -79.9318216823913, + 25.255867092258164 + ], + [ + -79.95176534181469, + 25.287192597679855 + ], + [ + -79.97170900123807, + 25.255867092258164 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97170900123807, + 25.255867092258164 + ], + [ + -79.95176534181469, + 25.287192597679855 + ], + [ + -79.99165266066144, + 25.287192597679855 + ], + [ + -79.97170900123807, + 25.255867092258164 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97170900123807, + 25.255867092258164 + ], + [ + -79.99165266066144, + 25.287192597679855 + ], + [ + -80.01159632008483, + 25.255867092258164 + ], + [ + -79.97170900123807, + 25.255867092258164 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97170900123807, + 25.255867092258164 + ], + [ + -80.01159632008483, + 25.255867092258164 + ], + [ + -79.99165266066144, + 25.224541586836473 + ], + [ + -79.97170900123807, + 25.255867092258164 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97170900123807, + 25.255867092258164 + ], + [ + -79.99165266066144, + 25.224541586836473 + ], + [ + -79.95176534181469, + 25.224541586836473 + ], + [ + -79.97170900123807, + 25.255867092258164 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97170900123807, + 25.255867092258164 + ], + [ + -79.95176534181469, + 25.224541586836473 + ], + [ + -79.9318216823913, + 25.255867092258164 + ], + [ + -79.97170900123807, + 25.255867092258164 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97170900123807, + 25.31851810310155 + ], + [ + -79.9318216823913, + 25.31851810310155 + ], + [ + -79.95176534181469, + 25.34984360852324 + ], + [ + -79.97170900123807, + 25.31851810310155 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97170900123807, + 25.31851810310155 + ], + [ + -79.95176534181469, + 25.34984360852324 + ], + [ + -79.99165266066144, + 25.34984360852324 + ], + [ + -79.97170900123807, + 25.31851810310155 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97170900123807, + 25.31851810310155 + ], + [ + -79.99165266066144, + 25.34984360852324 + ], + [ + -80.01159632008483, + 25.31851810310155 + ], + [ + -79.97170900123807, + 25.31851810310155 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97170900123807, + 25.31851810310155 + ], + [ + -80.01159632008483, + 25.31851810310155 + ], + [ + -79.99165266066144, + 25.28719259767986 + ], + [ + -79.97170900123807, + 25.31851810310155 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97170900123807, + 25.31851810310155 + ], + [ + -79.99165266066144, + 25.28719259767986 + ], + [ + -79.95176534181469, + 25.28719259767986 + ], + [ + -79.97170900123807, + 25.31851810310155 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97170900123807, + 25.31851810310155 + ], + [ + -79.95176534181469, + 25.28719259767986 + ], + [ + -79.9318216823913, + 25.31851810310155 + ], + [ + -79.97170900123807, + 25.31851810310155 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97170900123807, + 25.381169113944935 + ], + [ + -79.9318216823913, + 25.381169113944935 + ], + [ + -79.95176534181469, + 25.412494619366626 + ], + [ + -79.97170900123807, + 25.381169113944935 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97170900123807, + 25.381169113944935 + ], + [ + -79.95176534181469, + 25.412494619366626 + ], + [ + -79.99165266066144, + 25.412494619366626 + ], + [ + -79.97170900123807, + 25.381169113944935 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97170900123807, + 25.381169113944935 + ], + [ + -79.99165266066144, + 25.412494619366626 + ], + [ + -80.01159632008483, + 25.381169113944935 + ], + [ + -79.97170900123807, + 25.381169113944935 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97170900123807, + 25.381169113944935 + ], + [ + -80.01159632008483, + 25.381169113944935 + ], + [ + -79.99165266066144, + 25.349843608523244 + ], + [ + -79.97170900123807, + 25.381169113944935 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97170900123807, + 25.381169113944935 + ], + [ + -79.99165266066144, + 25.349843608523244 + ], + [ + -79.95176534181469, + 25.349843608523244 + ], + [ + -79.97170900123807, + 25.381169113944935 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97170900123807, + 25.381169113944935 + ], + [ + -79.95176534181469, + 25.349843608523244 + ], + [ + -79.9318216823913, + 25.381169113944935 + ], + [ + -79.97170900123807, + 25.381169113944935 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97170900123807, + 25.44382012478832 + ], + [ + -79.9318216823913, + 25.44382012478832 + ], + [ + -79.95176534181469, + 25.47514563021001 + ], + [ + -79.97170900123807, + 25.44382012478832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97170900123807, + 25.44382012478832 + ], + [ + -79.95176534181469, + 25.47514563021001 + ], + [ + -79.99165266066144, + 25.47514563021001 + ], + [ + -79.97170900123807, + 25.44382012478832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97170900123807, + 25.44382012478832 + ], + [ + -79.99165266066144, + 25.47514563021001 + ], + [ + -80.01159632008483, + 25.44382012478832 + ], + [ + -79.97170900123807, + 25.44382012478832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97170900123807, + 25.44382012478832 + ], + [ + -80.01159632008483, + 25.44382012478832 + ], + [ + -79.99165266066144, + 25.41249461936663 + ], + [ + -79.97170900123807, + 25.44382012478832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97170900123807, + 25.44382012478832 + ], + [ + -79.99165266066144, + 25.41249461936663 + ], + [ + -79.95176534181469, + 25.41249461936663 + ], + [ + -79.97170900123807, + 25.44382012478832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97170900123807, + 25.44382012478832 + ], + [ + -79.95176534181469, + 25.41249461936663 + ], + [ + -79.9318216823913, + 25.44382012478832 + ], + [ + -79.97170900123807, + 25.44382012478832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97170900123807, + 25.506471135631706 + ], + [ + -79.9318216823913, + 25.506471135631706 + ], + [ + -79.95176534181469, + 25.537796641053397 + ], + [ + -79.97170900123807, + 25.506471135631706 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97170900123807, + 25.506471135631706 + ], + [ + -79.95176534181469, + 25.537796641053397 + ], + [ + -79.99165266066144, + 25.537796641053397 + ], + [ + -79.97170900123807, + 25.506471135631706 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97170900123807, + 25.506471135631706 + ], + [ + -79.99165266066144, + 25.537796641053397 + ], + [ + -80.01159632008483, + 25.506471135631706 + ], + [ + -79.97170900123807, + 25.506471135631706 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97170900123807, + 25.506471135631706 + ], + [ + -80.01159632008483, + 25.506471135631706 + ], + [ + -79.99165266066144, + 25.475145630210015 + ], + [ + -79.97170900123807, + 25.506471135631706 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97170900123807, + 25.506471135631706 + ], + [ + -79.99165266066144, + 25.475145630210015 + ], + [ + -79.95176534181469, + 25.475145630210015 + ], + [ + -79.97170900123807, + 25.506471135631706 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97170900123807, + 25.506471135631706 + ], + [ + -79.95176534181469, + 25.475145630210015 + ], + [ + -79.9318216823913, + 25.506471135631706 + ], + [ + -79.97170900123807, + 25.506471135631706 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97170900123807, + 25.56912214647509 + ], + [ + -79.9318216823913, + 25.56912214647509 + ], + [ + -79.95176534181469, + 25.600447651896783 + ], + [ + -79.97170900123807, + 25.56912214647509 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97170900123807, + 25.56912214647509 + ], + [ + -79.95176534181469, + 25.600447651896783 + ], + [ + -79.99165266066144, + 25.600447651896783 + ], + [ + -79.97170900123807, + 25.56912214647509 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97170900123807, + 25.56912214647509 + ], + [ + -79.99165266066144, + 25.600447651896783 + ], + [ + -80.01159632008483, + 25.56912214647509 + ], + [ + -79.97170900123807, + 25.56912214647509 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97170900123807, + 25.56912214647509 + ], + [ + -80.01159632008483, + 25.56912214647509 + ], + [ + -79.99165266066144, + 25.5377966410534 + ], + [ + -79.97170900123807, + 25.56912214647509 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97170900123807, + 25.56912214647509 + ], + [ + -79.99165266066144, + 25.5377966410534 + ], + [ + -79.95176534181469, + 25.5377966410534 + ], + [ + -79.97170900123807, + 25.56912214647509 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97170900123807, + 25.56912214647509 + ], + [ + -79.95176534181469, + 25.5377966410534 + ], + [ + -79.9318216823913, + 25.56912214647509 + ], + [ + -79.97170900123807, + 25.56912214647509 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97170900123807, + 25.631773157318477 + ], + [ + -79.9318216823913, + 25.631773157318477 + ], + [ + -79.95176534181469, + 25.66309866274017 + ], + [ + -79.97170900123807, + 25.631773157318477 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97170900123807, + 25.631773157318477 + ], + [ + -79.95176534181469, + 25.66309866274017 + ], + [ + -79.99165266066144, + 25.66309866274017 + ], + [ + -79.97170900123807, + 25.631773157318477 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97170900123807, + 25.631773157318477 + ], + [ + -79.99165266066144, + 25.66309866274017 + ], + [ + -80.01159632008483, + 25.631773157318477 + ], + [ + -79.97170900123807, + 25.631773157318477 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97170900123807, + 25.631773157318477 + ], + [ + -80.01159632008483, + 25.631773157318477 + ], + [ + -79.99165266066144, + 25.600447651896786 + ], + [ + -79.97170900123807, + 25.631773157318477 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97170900123807, + 25.631773157318477 + ], + [ + -79.99165266066144, + 25.600447651896786 + ], + [ + -79.95176534181469, + 25.600447651896786 + ], + [ + -79.97170900123807, + 25.631773157318477 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97170900123807, + 25.631773157318477 + ], + [ + -79.95176534181469, + 25.600447651896786 + ], + [ + -79.9318216823913, + 25.631773157318477 + ], + [ + -79.97170900123807, + 25.631773157318477 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97170900123807, + 25.694424168161863 + ], + [ + -79.9318216823913, + 25.694424168161863 + ], + [ + -79.95176534181469, + 25.725749673583554 + ], + [ + -79.97170900123807, + 25.694424168161863 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97170900123807, + 25.694424168161863 + ], + [ + -79.95176534181469, + 25.725749673583554 + ], + [ + -79.99165266066144, + 25.725749673583554 + ], + [ + -79.97170900123807, + 25.694424168161863 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97170900123807, + 25.694424168161863 + ], + [ + -79.99165266066144, + 25.725749673583554 + ], + [ + -80.01159632008483, + 25.694424168161863 + ], + [ + -79.97170900123807, + 25.694424168161863 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97170900123807, + 25.694424168161863 + ], + [ + -80.01159632008483, + 25.694424168161863 + ], + [ + -79.99165266066144, + 25.663098662740172 + ], + [ + -79.97170900123807, + 25.694424168161863 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97170900123807, + 25.694424168161863 + ], + [ + -79.99165266066144, + 25.663098662740172 + ], + [ + -79.95176534181469, + 25.663098662740172 + ], + [ + -79.97170900123807, + 25.694424168161863 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97170900123807, + 25.694424168161863 + ], + [ + -79.95176534181469, + 25.663098662740172 + ], + [ + -79.9318216823913, + 25.694424168161863 + ], + [ + -79.97170900123807, + 25.694424168161863 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97170900123807, + 25.75707517900525 + ], + [ + -79.9318216823913, + 25.75707517900525 + ], + [ + -79.95176534181469, + 25.78840068442694 + ], + [ + -79.97170900123807, + 25.75707517900525 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97170900123807, + 25.75707517900525 + ], + [ + -79.95176534181469, + 25.78840068442694 + ], + [ + -79.99165266066144, + 25.78840068442694 + ], + [ + -79.97170900123807, + 25.75707517900525 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97170900123807, + 25.75707517900525 + ], + [ + -79.99165266066144, + 25.78840068442694 + ], + [ + -80.01159632008483, + 25.75707517900525 + ], + [ + -79.97170900123807, + 25.75707517900525 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97170900123807, + 25.75707517900525 + ], + [ + -80.01159632008483, + 25.75707517900525 + ], + [ + -79.99165266066144, + 25.725749673583557 + ], + [ + -79.97170900123807, + 25.75707517900525 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97170900123807, + 25.75707517900525 + ], + [ + -79.99165266066144, + 25.725749673583557 + ], + [ + -79.95176534181469, + 25.725749673583557 + ], + [ + -79.97170900123807, + 25.75707517900525 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97170900123807, + 25.75707517900525 + ], + [ + -79.95176534181469, + 25.725749673583557 + ], + [ + -79.9318216823913, + 25.75707517900525 + ], + [ + -79.97170900123807, + 25.75707517900525 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97170900123807, + 25.819726189848634 + ], + [ + -79.9318216823913, + 25.819726189848634 + ], + [ + -79.95176534181469, + 25.851051695270325 + ], + [ + -79.97170900123807, + 25.819726189848634 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97170900123807, + 25.819726189848634 + ], + [ + -79.95176534181469, + 25.851051695270325 + ], + [ + -79.99165266066144, + 25.851051695270325 + ], + [ + -79.97170900123807, + 25.819726189848634 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97170900123807, + 25.819726189848634 + ], + [ + -79.99165266066144, + 25.851051695270325 + ], + [ + -80.01159632008483, + 25.819726189848634 + ], + [ + -79.97170900123807, + 25.819726189848634 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97170900123807, + 25.819726189848634 + ], + [ + -80.01159632008483, + 25.819726189848634 + ], + [ + -79.99165266066144, + 25.788400684426943 + ], + [ + -79.97170900123807, + 25.819726189848634 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97170900123807, + 25.819726189848634 + ], + [ + -79.99165266066144, + 25.788400684426943 + ], + [ + -79.95176534181469, + 25.788400684426943 + ], + [ + -79.97170900123807, + 25.819726189848634 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97170900123807, + 25.819726189848634 + ], + [ + -79.95176534181469, + 25.788400684426943 + ], + [ + -79.9318216823913, + 25.819726189848634 + ], + [ + -79.97170900123807, + 25.819726189848634 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97170900123807, + 25.88237720069202 + ], + [ + -79.9318216823913, + 25.88237720069202 + ], + [ + -79.95176534181469, + 25.91370270611371 + ], + [ + -79.97170900123807, + 25.88237720069202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97170900123807, + 25.88237720069202 + ], + [ + -79.95176534181469, + 25.91370270611371 + ], + [ + -79.99165266066144, + 25.91370270611371 + ], + [ + -79.97170900123807, + 25.88237720069202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97170900123807, + 25.88237720069202 + ], + [ + -79.99165266066144, + 25.91370270611371 + ], + [ + -80.01159632008483, + 25.88237720069202 + ], + [ + -79.97170900123807, + 25.88237720069202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97170900123807, + 25.88237720069202 + ], + [ + -80.01159632008483, + 25.88237720069202 + ], + [ + -79.99165266066144, + 25.85105169527033 + ], + [ + -79.97170900123807, + 25.88237720069202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97170900123807, + 25.88237720069202 + ], + [ + -79.99165266066144, + 25.85105169527033 + ], + [ + -79.95176534181469, + 25.85105169527033 + ], + [ + -79.97170900123807, + 25.88237720069202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97170900123807, + 25.88237720069202 + ], + [ + -79.95176534181469, + 25.85105169527033 + ], + [ + -79.9318216823913, + 25.88237720069202 + ], + [ + -79.97170900123807, + 25.88237720069202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97170900123807, + 25.945028211535405 + ], + [ + -79.9318216823913, + 25.945028211535405 + ], + [ + -79.95176534181469, + 25.976353716957096 + ], + [ + -79.97170900123807, + 25.945028211535405 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97170900123807, + 25.945028211535405 + ], + [ + -79.95176534181469, + 25.976353716957096 + ], + [ + -79.99165266066144, + 25.976353716957096 + ], + [ + -79.97170900123807, + 25.945028211535405 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97170900123807, + 25.945028211535405 + ], + [ + -79.99165266066144, + 25.976353716957096 + ], + [ + -80.01159632008483, + 25.945028211535405 + ], + [ + -79.97170900123807, + 25.945028211535405 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97170900123807, + 25.945028211535405 + ], + [ + -80.01159632008483, + 25.945028211535405 + ], + [ + -79.99165266066144, + 25.913702706113714 + ], + [ + -79.97170900123807, + 25.945028211535405 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97170900123807, + 25.945028211535405 + ], + [ + -79.99165266066144, + 25.913702706113714 + ], + [ + -79.95176534181469, + 25.913702706113714 + ], + [ + -79.97170900123807, + 25.945028211535405 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97170900123807, + 25.945028211535405 + ], + [ + -79.95176534181469, + 25.913702706113714 + ], + [ + -79.9318216823913, + 25.945028211535405 + ], + [ + -79.97170900123807, + 25.945028211535405 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97170900123807, + 26.00767922237879 + ], + [ + -79.9318216823913, + 26.00767922237879 + ], + [ + -79.95176534181469, + 26.03900472780048 + ], + [ + -79.97170900123807, + 26.00767922237879 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97170900123807, + 26.00767922237879 + ], + [ + -79.95176534181469, + 26.03900472780048 + ], + [ + -79.99165266066144, + 26.03900472780048 + ], + [ + -79.97170900123807, + 26.00767922237879 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97170900123807, + 26.00767922237879 + ], + [ + -79.99165266066144, + 26.03900472780048 + ], + [ + -80.01159632008483, + 26.00767922237879 + ], + [ + -79.97170900123807, + 26.00767922237879 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97170900123807, + 26.00767922237879 + ], + [ + -80.01159632008483, + 26.00767922237879 + ], + [ + -79.99165266066144, + 25.9763537169571 + ], + [ + -79.97170900123807, + 26.00767922237879 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97170900123807, + 26.00767922237879 + ], + [ + -79.99165266066144, + 25.9763537169571 + ], + [ + -79.95176534181469, + 25.9763537169571 + ], + [ + -79.97170900123807, + 26.00767922237879 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97170900123807, + 26.00767922237879 + ], + [ + -79.95176534181469, + 25.9763537169571 + ], + [ + -79.9318216823913, + 26.00767922237879 + ], + [ + -79.97170900123807, + 26.00767922237879 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97170900123807, + 26.070330233222176 + ], + [ + -79.9318216823913, + 26.070330233222176 + ], + [ + -79.95176534181469, + 26.101655738643867 + ], + [ + -79.97170900123807, + 26.070330233222176 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97170900123807, + 26.070330233222176 + ], + [ + -79.95176534181469, + 26.101655738643867 + ], + [ + -79.99165266066144, + 26.101655738643867 + ], + [ + -79.97170900123807, + 26.070330233222176 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97170900123807, + 26.070330233222176 + ], + [ + -79.99165266066144, + 26.101655738643867 + ], + [ + -80.01159632008483, + 26.070330233222176 + ], + [ + -79.97170900123807, + 26.070330233222176 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97170900123807, + 26.070330233222176 + ], + [ + -80.01159632008483, + 26.070330233222176 + ], + [ + -79.99165266066144, + 26.039004727800485 + ], + [ + -79.97170900123807, + 26.070330233222176 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97170900123807, + 26.070330233222176 + ], + [ + -79.99165266066144, + 26.039004727800485 + ], + [ + -79.95176534181469, + 26.039004727800485 + ], + [ + -79.97170900123807, + 26.070330233222176 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97170900123807, + 26.070330233222176 + ], + [ + -79.95176534181469, + 26.039004727800485 + ], + [ + -79.9318216823913, + 26.070330233222176 + ], + [ + -79.97170900123807, + 26.070330233222176 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97170900123807, + 26.13298124406556 + ], + [ + -79.9318216823913, + 26.13298124406556 + ], + [ + -79.95176534181469, + 26.164306749487253 + ], + [ + -79.97170900123807, + 26.13298124406556 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97170900123807, + 26.13298124406556 + ], + [ + -79.95176534181469, + 26.164306749487253 + ], + [ + -79.99165266066144, + 26.164306749487253 + ], + [ + -79.97170900123807, + 26.13298124406556 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97170900123807, + 26.13298124406556 + ], + [ + -79.99165266066144, + 26.164306749487253 + ], + [ + -80.01159632008483, + 26.13298124406556 + ], + [ + -79.97170900123807, + 26.13298124406556 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97170900123807, + 26.13298124406556 + ], + [ + -80.01159632008483, + 26.13298124406556 + ], + [ + -79.99165266066144, + 26.10165573864387 + ], + [ + -79.97170900123807, + 26.13298124406556 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97170900123807, + 26.13298124406556 + ], + [ + -79.99165266066144, + 26.10165573864387 + ], + [ + -79.95176534181469, + 26.10165573864387 + ], + [ + -79.97170900123807, + 26.13298124406556 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97170900123807, + 26.13298124406556 + ], + [ + -79.95176534181469, + 26.10165573864387 + ], + [ + -79.9318216823913, + 26.13298124406556 + ], + [ + -79.97170900123807, + 26.13298124406556 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97170900123807, + 26.195632254908944 + ], + [ + -79.9318216823913, + 26.195632254908944 + ], + [ + -79.95176534181469, + 26.226957760330635 + ], + [ + -79.97170900123807, + 26.195632254908944 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97170900123807, + 26.195632254908944 + ], + [ + -79.95176534181469, + 26.226957760330635 + ], + [ + -79.99165266066144, + 26.226957760330635 + ], + [ + -79.97170900123807, + 26.195632254908944 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97170900123807, + 26.195632254908944 + ], + [ + -79.99165266066144, + 26.226957760330635 + ], + [ + -80.01159632008483, + 26.195632254908944 + ], + [ + -79.97170900123807, + 26.195632254908944 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97170900123807, + 26.195632254908944 + ], + [ + -80.01159632008483, + 26.195632254908944 + ], + [ + -79.99165266066144, + 26.164306749487253 + ], + [ + -79.97170900123807, + 26.195632254908944 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97170900123807, + 26.195632254908944 + ], + [ + -79.99165266066144, + 26.164306749487253 + ], + [ + -79.95176534181469, + 26.164306749487253 + ], + [ + -79.97170900123807, + 26.195632254908944 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97170900123807, + 26.195632254908944 + ], + [ + -79.95176534181469, + 26.164306749487253 + ], + [ + -79.9318216823913, + 26.195632254908944 + ], + [ + -79.97170900123807, + 26.195632254908944 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97170900123807, + 26.258283265752333 + ], + [ + -79.9318216823913, + 26.258283265752333 + ], + [ + -79.95176534181469, + 26.289608771174024 + ], + [ + -79.97170900123807, + 26.258283265752333 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97170900123807, + 26.258283265752333 + ], + [ + -79.95176534181469, + 26.289608771174024 + ], + [ + -79.99165266066144, + 26.289608771174024 + ], + [ + -79.97170900123807, + 26.258283265752333 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97170900123807, + 26.258283265752333 + ], + [ + -79.99165266066144, + 26.289608771174024 + ], + [ + -80.01159632008483, + 26.258283265752333 + ], + [ + -79.97170900123807, + 26.258283265752333 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97170900123807, + 26.258283265752333 + ], + [ + -80.01159632008483, + 26.258283265752333 + ], + [ + -79.99165266066144, + 26.22695776033064 + ], + [ + -79.97170900123807, + 26.258283265752333 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97170900123807, + 26.258283265752333 + ], + [ + -79.99165266066144, + 26.22695776033064 + ], + [ + -79.95176534181469, + 26.22695776033064 + ], + [ + -79.97170900123807, + 26.258283265752333 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97170900123807, + 26.258283265752333 + ], + [ + -79.95176534181469, + 26.22695776033064 + ], + [ + -79.9318216823913, + 26.258283265752333 + ], + [ + -79.97170900123807, + 26.258283265752333 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97170900123807, + 26.320934276595715 + ], + [ + -79.9318216823913, + 26.320934276595715 + ], + [ + -79.95176534181469, + 26.352259782017406 + ], + [ + -79.97170900123807, + 26.320934276595715 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97170900123807, + 26.320934276595715 + ], + [ + -79.95176534181469, + 26.352259782017406 + ], + [ + -79.99165266066144, + 26.352259782017406 + ], + [ + -79.97170900123807, + 26.320934276595715 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97170900123807, + 26.320934276595715 + ], + [ + -79.99165266066144, + 26.352259782017406 + ], + [ + -80.01159632008483, + 26.320934276595715 + ], + [ + -79.97170900123807, + 26.320934276595715 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97170900123807, + 26.320934276595715 + ], + [ + -80.01159632008483, + 26.320934276595715 + ], + [ + -79.99165266066144, + 26.289608771174024 + ], + [ + -79.97170900123807, + 26.320934276595715 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97170900123807, + 26.320934276595715 + ], + [ + -79.99165266066144, + 26.289608771174024 + ], + [ + -79.95176534181469, + 26.289608771174024 + ], + [ + -79.97170900123807, + 26.320934276595715 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97170900123807, + 26.320934276595715 + ], + [ + -79.95176534181469, + 26.289608771174024 + ], + [ + -79.9318216823913, + 26.320934276595715 + ], + [ + -79.97170900123807, + 26.320934276595715 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97170900123807, + 26.3835852874391 + ], + [ + -79.9318216823913, + 26.3835852874391 + ], + [ + -79.95176534181469, + 26.41491079286079 + ], + [ + -79.97170900123807, + 26.3835852874391 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97170900123807, + 26.3835852874391 + ], + [ + -79.95176534181469, + 26.41491079286079 + ], + [ + -79.99165266066144, + 26.41491079286079 + ], + [ + -79.97170900123807, + 26.3835852874391 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97170900123807, + 26.3835852874391 + ], + [ + -79.99165266066144, + 26.41491079286079 + ], + [ + -80.01159632008483, + 26.3835852874391 + ], + [ + -79.97170900123807, + 26.3835852874391 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97170900123807, + 26.3835852874391 + ], + [ + -80.01159632008483, + 26.3835852874391 + ], + [ + -79.99165266066144, + 26.35225978201741 + ], + [ + -79.97170900123807, + 26.3835852874391 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97170900123807, + 26.3835852874391 + ], + [ + -79.99165266066144, + 26.35225978201741 + ], + [ + -79.95176534181469, + 26.35225978201741 + ], + [ + -79.97170900123807, + 26.3835852874391 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97170900123807, + 26.3835852874391 + ], + [ + -79.95176534181469, + 26.35225978201741 + ], + [ + -79.9318216823913, + 26.3835852874391 + ], + [ + -79.97170900123807, + 26.3835852874391 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97170900123807, + 26.446236298282486 + ], + [ + -79.9318216823913, + 26.446236298282486 + ], + [ + -79.95176534181469, + 26.477561803704177 + ], + [ + -79.97170900123807, + 26.446236298282486 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97170900123807, + 26.446236298282486 + ], + [ + -79.95176534181469, + 26.477561803704177 + ], + [ + -79.99165266066144, + 26.477561803704177 + ], + [ + -79.97170900123807, + 26.446236298282486 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97170900123807, + 26.446236298282486 + ], + [ + -79.99165266066144, + 26.477561803704177 + ], + [ + -80.01159632008483, + 26.446236298282486 + ], + [ + -79.97170900123807, + 26.446236298282486 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97170900123807, + 26.446236298282486 + ], + [ + -80.01159632008483, + 26.446236298282486 + ], + [ + -79.99165266066144, + 26.414910792860795 + ], + [ + -79.97170900123807, + 26.446236298282486 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97170900123807, + 26.446236298282486 + ], + [ + -79.99165266066144, + 26.414910792860795 + ], + [ + -79.95176534181469, + 26.414910792860795 + ], + [ + -79.97170900123807, + 26.446236298282486 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97170900123807, + 26.446236298282486 + ], + [ + -79.95176534181469, + 26.414910792860795 + ], + [ + -79.9318216823913, + 26.446236298282486 + ], + [ + -79.97170900123807, + 26.446236298282486 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.91187802296793, + 24.911286532619545 + ], + [ + -79.87199070412116, + 24.911286532619545 + ], + [ + -79.89193436354455, + 24.942612038041236 + ], + [ + -79.91187802296793, + 24.911286532619545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.91187802296793, + 24.911286532619545 + ], + [ + -79.89193436354455, + 24.942612038041236 + ], + [ + -79.9318216823913, + 24.942612038041236 + ], + [ + -79.91187802296793, + 24.911286532619545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.91187802296793, + 24.911286532619545 + ], + [ + -79.9318216823913, + 24.942612038041236 + ], + [ + -79.95176534181469, + 24.911286532619545 + ], + [ + -79.91187802296793, + 24.911286532619545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.91187802296793, + 24.911286532619545 + ], + [ + -79.95176534181469, + 24.911286532619545 + ], + [ + -79.9318216823913, + 24.879961027197854 + ], + [ + -79.91187802296793, + 24.911286532619545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.91187802296793, + 24.911286532619545 + ], + [ + -79.9318216823913, + 24.879961027197854 + ], + [ + -79.89193436354455, + 24.879961027197854 + ], + [ + -79.91187802296793, + 24.911286532619545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.91187802296793, + 24.911286532619545 + ], + [ + -79.89193436354455, + 24.879961027197854 + ], + [ + -79.87199070412116, + 24.911286532619545 + ], + [ + -79.91187802296793, + 24.911286532619545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.91187802296793, + 24.97393754346293 + ], + [ + -79.87199070412116, + 24.97393754346293 + ], + [ + -79.89193436354455, + 25.005263048884622 + ], + [ + -79.91187802296793, + 24.97393754346293 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.91187802296793, + 24.97393754346293 + ], + [ + -79.89193436354455, + 25.005263048884622 + ], + [ + -79.9318216823913, + 25.005263048884622 + ], + [ + -79.91187802296793, + 24.97393754346293 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.91187802296793, + 24.97393754346293 + ], + [ + -79.9318216823913, + 25.005263048884622 + ], + [ + -79.95176534181469, + 24.97393754346293 + ], + [ + -79.91187802296793, + 24.97393754346293 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.91187802296793, + 24.97393754346293 + ], + [ + -79.95176534181469, + 24.97393754346293 + ], + [ + -79.9318216823913, + 24.94261203804124 + ], + [ + -79.91187802296793, + 24.97393754346293 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.91187802296793, + 24.97393754346293 + ], + [ + -79.9318216823913, + 24.94261203804124 + ], + [ + -79.89193436354455, + 24.94261203804124 + ], + [ + -79.91187802296793, + 24.97393754346293 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.91187802296793, + 24.97393754346293 + ], + [ + -79.89193436354455, + 24.94261203804124 + ], + [ + -79.87199070412116, + 24.97393754346293 + ], + [ + -79.91187802296793, + 24.97393754346293 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.91187802296793, + 25.036588554306316 + ], + [ + -79.87199070412116, + 25.036588554306316 + ], + [ + -79.89193436354455, + 25.067914059728007 + ], + [ + -79.91187802296793, + 25.036588554306316 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.91187802296793, + 25.036588554306316 + ], + [ + -79.89193436354455, + 25.067914059728007 + ], + [ + -79.9318216823913, + 25.067914059728007 + ], + [ + -79.91187802296793, + 25.036588554306316 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.91187802296793, + 25.036588554306316 + ], + [ + -79.9318216823913, + 25.067914059728007 + ], + [ + -79.95176534181469, + 25.036588554306316 + ], + [ + -79.91187802296793, + 25.036588554306316 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.91187802296793, + 25.036588554306316 + ], + [ + -79.95176534181469, + 25.036588554306316 + ], + [ + -79.9318216823913, + 25.005263048884625 + ], + [ + -79.91187802296793, + 25.036588554306316 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.91187802296793, + 25.036588554306316 + ], + [ + -79.9318216823913, + 25.005263048884625 + ], + [ + -79.89193436354455, + 25.005263048884625 + ], + [ + -79.91187802296793, + 25.036588554306316 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.91187802296793, + 25.036588554306316 + ], + [ + -79.89193436354455, + 25.005263048884625 + ], + [ + -79.87199070412116, + 25.036588554306316 + ], + [ + -79.91187802296793, + 25.036588554306316 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.91187802296793, + 25.099239565149702 + ], + [ + -79.87199070412116, + 25.099239565149702 + ], + [ + -79.89193436354455, + 25.130565070571393 + ], + [ + -79.91187802296793, + 25.099239565149702 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.91187802296793, + 25.099239565149702 + ], + [ + -79.89193436354455, + 25.130565070571393 + ], + [ + -79.9318216823913, + 25.130565070571393 + ], + [ + -79.91187802296793, + 25.099239565149702 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.91187802296793, + 25.099239565149702 + ], + [ + -79.9318216823913, + 25.130565070571393 + ], + [ + -79.95176534181469, + 25.099239565149702 + ], + [ + -79.91187802296793, + 25.099239565149702 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.91187802296793, + 25.099239565149702 + ], + [ + -79.95176534181469, + 25.099239565149702 + ], + [ + -79.9318216823913, + 25.06791405972801 + ], + [ + -79.91187802296793, + 25.099239565149702 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.91187802296793, + 25.099239565149702 + ], + [ + -79.9318216823913, + 25.06791405972801 + ], + [ + -79.89193436354455, + 25.06791405972801 + ], + [ + -79.91187802296793, + 25.099239565149702 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.91187802296793, + 25.099239565149702 + ], + [ + -79.89193436354455, + 25.06791405972801 + ], + [ + -79.87199070412116, + 25.099239565149702 + ], + [ + -79.91187802296793, + 25.099239565149702 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.91187802296793, + 25.161890575993088 + ], + [ + -79.87199070412116, + 25.161890575993088 + ], + [ + -79.89193436354455, + 25.19321608141478 + ], + [ + -79.91187802296793, + 25.161890575993088 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.91187802296793, + 25.161890575993088 + ], + [ + -79.89193436354455, + 25.19321608141478 + ], + [ + -79.9318216823913, + 25.19321608141478 + ], + [ + -79.91187802296793, + 25.161890575993088 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.91187802296793, + 25.161890575993088 + ], + [ + -79.9318216823913, + 25.19321608141478 + ], + [ + -79.95176534181469, + 25.161890575993088 + ], + [ + -79.91187802296793, + 25.161890575993088 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.91187802296793, + 25.161890575993088 + ], + [ + -79.95176534181469, + 25.161890575993088 + ], + [ + -79.9318216823913, + 25.130565070571397 + ], + [ + -79.91187802296793, + 25.161890575993088 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.91187802296793, + 25.161890575993088 + ], + [ + -79.9318216823913, + 25.130565070571397 + ], + [ + -79.89193436354455, + 25.130565070571397 + ], + [ + -79.91187802296793, + 25.161890575993088 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.91187802296793, + 25.161890575993088 + ], + [ + -79.89193436354455, + 25.130565070571397 + ], + [ + -79.87199070412116, + 25.161890575993088 + ], + [ + -79.91187802296793, + 25.161890575993088 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.91187802296793, + 25.224541586836473 + ], + [ + -79.87199070412116, + 25.224541586836473 + ], + [ + -79.89193436354455, + 25.255867092258164 + ], + [ + -79.91187802296793, + 25.224541586836473 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.91187802296793, + 25.224541586836473 + ], + [ + -79.89193436354455, + 25.255867092258164 + ], + [ + -79.9318216823913, + 25.255867092258164 + ], + [ + -79.91187802296793, + 25.224541586836473 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.91187802296793, + 25.224541586836473 + ], + [ + -79.9318216823913, + 25.255867092258164 + ], + [ + -79.95176534181469, + 25.224541586836473 + ], + [ + -79.91187802296793, + 25.224541586836473 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.91187802296793, + 25.224541586836473 + ], + [ + -79.95176534181469, + 25.224541586836473 + ], + [ + -79.9318216823913, + 25.193216081414782 + ], + [ + -79.91187802296793, + 25.224541586836473 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.91187802296793, + 25.224541586836473 + ], + [ + -79.9318216823913, + 25.193216081414782 + ], + [ + -79.89193436354455, + 25.193216081414782 + ], + [ + -79.91187802296793, + 25.224541586836473 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.91187802296793, + 25.224541586836473 + ], + [ + -79.89193436354455, + 25.193216081414782 + ], + [ + -79.87199070412116, + 25.224541586836473 + ], + [ + -79.91187802296793, + 25.224541586836473 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.91187802296793, + 25.28719259767986 + ], + [ + -79.87199070412116, + 25.28719259767986 + ], + [ + -79.89193436354455, + 25.31851810310155 + ], + [ + -79.91187802296793, + 25.28719259767986 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.91187802296793, + 25.28719259767986 + ], + [ + -79.89193436354455, + 25.31851810310155 + ], + [ + -79.9318216823913, + 25.31851810310155 + ], + [ + -79.91187802296793, + 25.28719259767986 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.91187802296793, + 25.28719259767986 + ], + [ + -79.9318216823913, + 25.31851810310155 + ], + [ + -79.95176534181469, + 25.28719259767986 + ], + [ + -79.91187802296793, + 25.28719259767986 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.91187802296793, + 25.28719259767986 + ], + [ + -79.95176534181469, + 25.28719259767986 + ], + [ + -79.9318216823913, + 25.255867092258168 + ], + [ + -79.91187802296793, + 25.28719259767986 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.91187802296793, + 25.28719259767986 + ], + [ + -79.9318216823913, + 25.255867092258168 + ], + [ + -79.89193436354455, + 25.255867092258168 + ], + [ + -79.91187802296793, + 25.28719259767986 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.91187802296793, + 25.28719259767986 + ], + [ + -79.89193436354455, + 25.255867092258168 + ], + [ + -79.87199070412116, + 25.28719259767986 + ], + [ + -79.91187802296793, + 25.28719259767986 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.91187802296793, + 25.349843608523244 + ], + [ + -79.87199070412116, + 25.349843608523244 + ], + [ + -79.89193436354455, + 25.381169113944935 + ], + [ + -79.91187802296793, + 25.349843608523244 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.91187802296793, + 25.349843608523244 + ], + [ + -79.89193436354455, + 25.381169113944935 + ], + [ + -79.9318216823913, + 25.381169113944935 + ], + [ + -79.91187802296793, + 25.349843608523244 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.91187802296793, + 25.349843608523244 + ], + [ + -79.9318216823913, + 25.381169113944935 + ], + [ + -79.95176534181469, + 25.349843608523244 + ], + [ + -79.91187802296793, + 25.349843608523244 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.91187802296793, + 25.349843608523244 + ], + [ + -79.95176534181469, + 25.349843608523244 + ], + [ + -79.9318216823913, + 25.318518103101553 + ], + [ + -79.91187802296793, + 25.349843608523244 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.91187802296793, + 25.349843608523244 + ], + [ + -79.9318216823913, + 25.318518103101553 + ], + [ + -79.89193436354455, + 25.318518103101553 + ], + [ + -79.91187802296793, + 25.349843608523244 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.91187802296793, + 25.349843608523244 + ], + [ + -79.89193436354455, + 25.318518103101553 + ], + [ + -79.87199070412116, + 25.349843608523244 + ], + [ + -79.91187802296793, + 25.349843608523244 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.91187802296793, + 25.41249461936663 + ], + [ + -79.87199070412116, + 25.41249461936663 + ], + [ + -79.89193436354455, + 25.44382012478832 + ], + [ + -79.91187802296793, + 25.41249461936663 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.91187802296793, + 25.41249461936663 + ], + [ + -79.89193436354455, + 25.44382012478832 + ], + [ + -79.9318216823913, + 25.44382012478832 + ], + [ + -79.91187802296793, + 25.41249461936663 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.91187802296793, + 25.41249461936663 + ], + [ + -79.9318216823913, + 25.44382012478832 + ], + [ + -79.95176534181469, + 25.41249461936663 + ], + [ + -79.91187802296793, + 25.41249461936663 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.91187802296793, + 25.41249461936663 + ], + [ + -79.95176534181469, + 25.41249461936663 + ], + [ + -79.9318216823913, + 25.38116911394494 + ], + [ + -79.91187802296793, + 25.41249461936663 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.91187802296793, + 25.41249461936663 + ], + [ + -79.9318216823913, + 25.38116911394494 + ], + [ + -79.89193436354455, + 25.38116911394494 + ], + [ + -79.91187802296793, + 25.41249461936663 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.91187802296793, + 25.41249461936663 + ], + [ + -79.89193436354455, + 25.38116911394494 + ], + [ + -79.87199070412116, + 25.41249461936663 + ], + [ + -79.91187802296793, + 25.41249461936663 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.91187802296793, + 25.475145630210015 + ], + [ + -79.87199070412116, + 25.475145630210015 + ], + [ + -79.89193436354455, + 25.506471135631706 + ], + [ + -79.91187802296793, + 25.475145630210015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.91187802296793, + 25.475145630210015 + ], + [ + -79.89193436354455, + 25.506471135631706 + ], + [ + -79.9318216823913, + 25.506471135631706 + ], + [ + -79.91187802296793, + 25.475145630210015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.91187802296793, + 25.475145630210015 + ], + [ + -79.9318216823913, + 25.506471135631706 + ], + [ + -79.95176534181469, + 25.475145630210015 + ], + [ + -79.91187802296793, + 25.475145630210015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.91187802296793, + 25.475145630210015 + ], + [ + -79.95176534181469, + 25.475145630210015 + ], + [ + -79.9318216823913, + 25.443820124788324 + ], + [ + -79.91187802296793, + 25.475145630210015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.91187802296793, + 25.475145630210015 + ], + [ + -79.9318216823913, + 25.443820124788324 + ], + [ + -79.89193436354455, + 25.443820124788324 + ], + [ + -79.91187802296793, + 25.475145630210015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.91187802296793, + 25.475145630210015 + ], + [ + -79.89193436354455, + 25.443820124788324 + ], + [ + -79.87199070412116, + 25.475145630210015 + ], + [ + -79.91187802296793, + 25.475145630210015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.91187802296793, + 25.5377966410534 + ], + [ + -79.87199070412116, + 25.5377966410534 + ], + [ + -79.89193436354455, + 25.56912214647509 + ], + [ + -79.91187802296793, + 25.5377966410534 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.91187802296793, + 25.5377966410534 + ], + [ + -79.89193436354455, + 25.56912214647509 + ], + [ + -79.9318216823913, + 25.56912214647509 + ], + [ + -79.91187802296793, + 25.5377966410534 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.91187802296793, + 25.5377966410534 + ], + [ + -79.9318216823913, + 25.56912214647509 + ], + [ + -79.95176534181469, + 25.5377966410534 + ], + [ + -79.91187802296793, + 25.5377966410534 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.91187802296793, + 25.5377966410534 + ], + [ + -79.95176534181469, + 25.5377966410534 + ], + [ + -79.9318216823913, + 25.50647113563171 + ], + [ + -79.91187802296793, + 25.5377966410534 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.91187802296793, + 25.5377966410534 + ], + [ + -79.9318216823913, + 25.50647113563171 + ], + [ + -79.89193436354455, + 25.50647113563171 + ], + [ + -79.91187802296793, + 25.5377966410534 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.91187802296793, + 25.5377966410534 + ], + [ + -79.89193436354455, + 25.50647113563171 + ], + [ + -79.87199070412116, + 25.5377966410534 + ], + [ + -79.91187802296793, + 25.5377966410534 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.91187802296793, + 25.600447651896786 + ], + [ + -79.87199070412116, + 25.600447651896786 + ], + [ + -79.89193436354455, + 25.631773157318477 + ], + [ + -79.91187802296793, + 25.600447651896786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.91187802296793, + 25.600447651896786 + ], + [ + -79.89193436354455, + 25.631773157318477 + ], + [ + -79.9318216823913, + 25.631773157318477 + ], + [ + -79.91187802296793, + 25.600447651896786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.91187802296793, + 25.600447651896786 + ], + [ + -79.9318216823913, + 25.631773157318477 + ], + [ + -79.95176534181469, + 25.600447651896786 + ], + [ + -79.91187802296793, + 25.600447651896786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.91187802296793, + 25.600447651896786 + ], + [ + -79.95176534181469, + 25.600447651896786 + ], + [ + -79.9318216823913, + 25.569122146475095 + ], + [ + -79.91187802296793, + 25.600447651896786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.91187802296793, + 25.600447651896786 + ], + [ + -79.9318216823913, + 25.569122146475095 + ], + [ + -79.89193436354455, + 25.569122146475095 + ], + [ + -79.91187802296793, + 25.600447651896786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.91187802296793, + 25.600447651896786 + ], + [ + -79.89193436354455, + 25.569122146475095 + ], + [ + -79.87199070412116, + 25.600447651896786 + ], + [ + -79.91187802296793, + 25.600447651896786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.91187802296793, + 25.663098662740172 + ], + [ + -79.87199070412116, + 25.663098662740172 + ], + [ + -79.89193436354455, + 25.694424168161863 + ], + [ + -79.91187802296793, + 25.663098662740172 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.91187802296793, + 25.663098662740172 + ], + [ + -79.89193436354455, + 25.694424168161863 + ], + [ + -79.9318216823913, + 25.694424168161863 + ], + [ + -79.91187802296793, + 25.663098662740172 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.91187802296793, + 25.663098662740172 + ], + [ + -79.9318216823913, + 25.694424168161863 + ], + [ + -79.95176534181469, + 25.663098662740172 + ], + [ + -79.91187802296793, + 25.663098662740172 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.91187802296793, + 25.663098662740172 + ], + [ + -79.95176534181469, + 25.663098662740172 + ], + [ + -79.9318216823913, + 25.63177315731848 + ], + [ + -79.91187802296793, + 25.663098662740172 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.91187802296793, + 25.663098662740172 + ], + [ + -79.9318216823913, + 25.63177315731848 + ], + [ + -79.89193436354455, + 25.63177315731848 + ], + [ + -79.91187802296793, + 25.663098662740172 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.91187802296793, + 25.663098662740172 + ], + [ + -79.89193436354455, + 25.63177315731848 + ], + [ + -79.87199070412116, + 25.663098662740172 + ], + [ + -79.91187802296793, + 25.663098662740172 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.91187802296793, + 25.725749673583557 + ], + [ + -79.87199070412116, + 25.725749673583557 + ], + [ + -79.89193436354455, + 25.75707517900525 + ], + [ + -79.91187802296793, + 25.725749673583557 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.91187802296793, + 25.725749673583557 + ], + [ + -79.89193436354455, + 25.75707517900525 + ], + [ + -79.9318216823913, + 25.75707517900525 + ], + [ + -79.91187802296793, + 25.725749673583557 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.91187802296793, + 25.725749673583557 + ], + [ + -79.9318216823913, + 25.75707517900525 + ], + [ + -79.95176534181469, + 25.725749673583557 + ], + [ + -79.91187802296793, + 25.725749673583557 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.91187802296793, + 25.725749673583557 + ], + [ + -79.95176534181469, + 25.725749673583557 + ], + [ + -79.9318216823913, + 25.694424168161866 + ], + [ + -79.91187802296793, + 25.725749673583557 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.91187802296793, + 25.725749673583557 + ], + [ + -79.9318216823913, + 25.694424168161866 + ], + [ + -79.89193436354455, + 25.694424168161866 + ], + [ + -79.91187802296793, + 25.725749673583557 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.91187802296793, + 25.725749673583557 + ], + [ + -79.89193436354455, + 25.694424168161866 + ], + [ + -79.87199070412116, + 25.725749673583557 + ], + [ + -79.91187802296793, + 25.725749673583557 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.91187802296793, + 25.788400684426943 + ], + [ + -79.87199070412116, + 25.788400684426943 + ], + [ + -79.89193436354455, + 25.819726189848634 + ], + [ + -79.91187802296793, + 25.788400684426943 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.91187802296793, + 25.788400684426943 + ], + [ + -79.89193436354455, + 25.819726189848634 + ], + [ + -79.9318216823913, + 25.819726189848634 + ], + [ + -79.91187802296793, + 25.788400684426943 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.91187802296793, + 25.788400684426943 + ], + [ + -79.9318216823913, + 25.819726189848634 + ], + [ + -79.95176534181469, + 25.788400684426943 + ], + [ + -79.91187802296793, + 25.788400684426943 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.91187802296793, + 25.788400684426943 + ], + [ + -79.95176534181469, + 25.788400684426943 + ], + [ + -79.9318216823913, + 25.757075179005252 + ], + [ + -79.91187802296793, + 25.788400684426943 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.91187802296793, + 25.788400684426943 + ], + [ + -79.9318216823913, + 25.757075179005252 + ], + [ + -79.89193436354455, + 25.757075179005252 + ], + [ + -79.91187802296793, + 25.788400684426943 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.91187802296793, + 25.788400684426943 + ], + [ + -79.89193436354455, + 25.757075179005252 + ], + [ + -79.87199070412116, + 25.788400684426943 + ], + [ + -79.91187802296793, + 25.788400684426943 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.91187802296793, + 25.85105169527033 + ], + [ + -79.87199070412116, + 25.85105169527033 + ], + [ + -79.89193436354455, + 25.88237720069202 + ], + [ + -79.91187802296793, + 25.85105169527033 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.91187802296793, + 25.85105169527033 + ], + [ + -79.89193436354455, + 25.88237720069202 + ], + [ + -79.9318216823913, + 25.88237720069202 + ], + [ + -79.91187802296793, + 25.85105169527033 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.91187802296793, + 25.85105169527033 + ], + [ + -79.9318216823913, + 25.88237720069202 + ], + [ + -79.95176534181469, + 25.85105169527033 + ], + [ + -79.91187802296793, + 25.85105169527033 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.91187802296793, + 25.85105169527033 + ], + [ + -79.95176534181469, + 25.85105169527033 + ], + [ + -79.9318216823913, + 25.819726189848637 + ], + [ + -79.91187802296793, + 25.85105169527033 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.91187802296793, + 25.85105169527033 + ], + [ + -79.9318216823913, + 25.819726189848637 + ], + [ + -79.89193436354455, + 25.819726189848637 + ], + [ + -79.91187802296793, + 25.85105169527033 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.91187802296793, + 25.85105169527033 + ], + [ + -79.89193436354455, + 25.819726189848637 + ], + [ + -79.87199070412116, + 25.85105169527033 + ], + [ + -79.91187802296793, + 25.85105169527033 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.91187802296793, + 25.913702706113714 + ], + [ + -79.87199070412116, + 25.913702706113714 + ], + [ + -79.89193436354455, + 25.945028211535405 + ], + [ + -79.91187802296793, + 25.913702706113714 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.91187802296793, + 25.913702706113714 + ], + [ + -79.89193436354455, + 25.945028211535405 + ], + [ + -79.9318216823913, + 25.945028211535405 + ], + [ + -79.91187802296793, + 25.913702706113714 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.91187802296793, + 25.913702706113714 + ], + [ + -79.9318216823913, + 25.945028211535405 + ], + [ + -79.95176534181469, + 25.913702706113714 + ], + [ + -79.91187802296793, + 25.913702706113714 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.91187802296793, + 25.913702706113714 + ], + [ + -79.95176534181469, + 25.913702706113714 + ], + [ + -79.9318216823913, + 25.882377200692023 + ], + [ + -79.91187802296793, + 25.913702706113714 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.91187802296793, + 25.913702706113714 + ], + [ + -79.9318216823913, + 25.882377200692023 + ], + [ + -79.89193436354455, + 25.882377200692023 + ], + [ + -79.91187802296793, + 25.913702706113714 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.91187802296793, + 25.913702706113714 + ], + [ + -79.89193436354455, + 25.882377200692023 + ], + [ + -79.87199070412116, + 25.913702706113714 + ], + [ + -79.91187802296793, + 25.913702706113714 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.91187802296793, + 25.9763537169571 + ], + [ + -79.87199070412116, + 25.9763537169571 + ], + [ + -79.89193436354455, + 26.00767922237879 + ], + [ + -79.91187802296793, + 25.9763537169571 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.91187802296793, + 25.9763537169571 + ], + [ + -79.89193436354455, + 26.00767922237879 + ], + [ + -79.9318216823913, + 26.00767922237879 + ], + [ + -79.91187802296793, + 25.9763537169571 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.91187802296793, + 25.9763537169571 + ], + [ + -79.9318216823913, + 26.00767922237879 + ], + [ + -79.95176534181469, + 25.9763537169571 + ], + [ + -79.91187802296793, + 25.9763537169571 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.91187802296793, + 25.9763537169571 + ], + [ + -79.95176534181469, + 25.9763537169571 + ], + [ + -79.9318216823913, + 25.94502821153541 + ], + [ + -79.91187802296793, + 25.9763537169571 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.91187802296793, + 25.9763537169571 + ], + [ + -79.9318216823913, + 25.94502821153541 + ], + [ + -79.89193436354455, + 25.94502821153541 + ], + [ + -79.91187802296793, + 25.9763537169571 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.91187802296793, + 25.9763537169571 + ], + [ + -79.89193436354455, + 25.94502821153541 + ], + [ + -79.87199070412116, + 25.9763537169571 + ], + [ + -79.91187802296793, + 25.9763537169571 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.91187802296793, + 26.039004727800485 + ], + [ + -79.87199070412116, + 26.039004727800485 + ], + [ + -79.89193436354455, + 26.070330233222176 + ], + [ + -79.91187802296793, + 26.039004727800485 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.91187802296793, + 26.039004727800485 + ], + [ + -79.89193436354455, + 26.070330233222176 + ], + [ + -79.9318216823913, + 26.070330233222176 + ], + [ + -79.91187802296793, + 26.039004727800485 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.91187802296793, + 26.039004727800485 + ], + [ + -79.9318216823913, + 26.070330233222176 + ], + [ + -79.95176534181469, + 26.039004727800485 + ], + [ + -79.91187802296793, + 26.039004727800485 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.91187802296793, + 26.039004727800485 + ], + [ + -79.95176534181469, + 26.039004727800485 + ], + [ + -79.9318216823913, + 26.007679222378794 + ], + [ + -79.91187802296793, + 26.039004727800485 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.91187802296793, + 26.039004727800485 + ], + [ + -79.9318216823913, + 26.007679222378794 + ], + [ + -79.89193436354455, + 26.007679222378794 + ], + [ + -79.91187802296793, + 26.039004727800485 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.91187802296793, + 26.039004727800485 + ], + [ + -79.89193436354455, + 26.007679222378794 + ], + [ + -79.87199070412116, + 26.039004727800485 + ], + [ + -79.91187802296793, + 26.039004727800485 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.91187802296793, + 26.10165573864387 + ], + [ + -79.87199070412116, + 26.10165573864387 + ], + [ + -79.89193436354455, + 26.13298124406556 + ], + [ + -79.91187802296793, + 26.10165573864387 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.91187802296793, + 26.10165573864387 + ], + [ + -79.89193436354455, + 26.13298124406556 + ], + [ + -79.9318216823913, + 26.13298124406556 + ], + [ + -79.91187802296793, + 26.10165573864387 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.91187802296793, + 26.10165573864387 + ], + [ + -79.9318216823913, + 26.13298124406556 + ], + [ + -79.95176534181469, + 26.10165573864387 + ], + [ + -79.91187802296793, + 26.10165573864387 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.91187802296793, + 26.10165573864387 + ], + [ + -79.95176534181469, + 26.10165573864387 + ], + [ + -79.9318216823913, + 26.07033023322218 + ], + [ + -79.91187802296793, + 26.10165573864387 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.91187802296793, + 26.10165573864387 + ], + [ + -79.9318216823913, + 26.07033023322218 + ], + [ + -79.89193436354455, + 26.07033023322218 + ], + [ + -79.91187802296793, + 26.10165573864387 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.91187802296793, + 26.10165573864387 + ], + [ + -79.89193436354455, + 26.07033023322218 + ], + [ + -79.87199070412116, + 26.10165573864387 + ], + [ + -79.91187802296793, + 26.10165573864387 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.91187802296793, + 26.164306749487253 + ], + [ + -79.87199070412116, + 26.164306749487253 + ], + [ + -79.89193436354455, + 26.195632254908944 + ], + [ + -79.91187802296793, + 26.164306749487253 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.91187802296793, + 26.164306749487253 + ], + [ + -79.89193436354455, + 26.195632254908944 + ], + [ + -79.9318216823913, + 26.195632254908944 + ], + [ + -79.91187802296793, + 26.164306749487253 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.91187802296793, + 26.164306749487253 + ], + [ + -79.9318216823913, + 26.195632254908944 + ], + [ + -79.95176534181469, + 26.164306749487253 + ], + [ + -79.91187802296793, + 26.164306749487253 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.91187802296793, + 26.164306749487253 + ], + [ + -79.95176534181469, + 26.164306749487253 + ], + [ + -79.9318216823913, + 26.13298124406556 + ], + [ + -79.91187802296793, + 26.164306749487253 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.91187802296793, + 26.164306749487253 + ], + [ + -79.9318216823913, + 26.13298124406556 + ], + [ + -79.89193436354455, + 26.13298124406556 + ], + [ + -79.91187802296793, + 26.164306749487253 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.91187802296793, + 26.164306749487253 + ], + [ + -79.89193436354455, + 26.13298124406556 + ], + [ + -79.87199070412116, + 26.164306749487253 + ], + [ + -79.91187802296793, + 26.164306749487253 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.91187802296793, + 26.22695776033064 + ], + [ + -79.87199070412116, + 26.22695776033064 + ], + [ + -79.89193436354455, + 26.258283265752333 + ], + [ + -79.91187802296793, + 26.22695776033064 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.91187802296793, + 26.22695776033064 + ], + [ + -79.89193436354455, + 26.258283265752333 + ], + [ + -79.9318216823913, + 26.258283265752333 + ], + [ + -79.91187802296793, + 26.22695776033064 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.91187802296793, + 26.22695776033064 + ], + [ + -79.9318216823913, + 26.258283265752333 + ], + [ + -79.95176534181469, + 26.22695776033064 + ], + [ + -79.91187802296793, + 26.22695776033064 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.91187802296793, + 26.22695776033064 + ], + [ + -79.95176534181469, + 26.22695776033064 + ], + [ + -79.9318216823913, + 26.19563225490895 + ], + [ + -79.91187802296793, + 26.22695776033064 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.91187802296793, + 26.22695776033064 + ], + [ + -79.9318216823913, + 26.19563225490895 + ], + [ + -79.89193436354455, + 26.19563225490895 + ], + [ + -79.91187802296793, + 26.22695776033064 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.91187802296793, + 26.22695776033064 + ], + [ + -79.89193436354455, + 26.19563225490895 + ], + [ + -79.87199070412116, + 26.22695776033064 + ], + [ + -79.91187802296793, + 26.22695776033064 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.91187802296793, + 26.289608771174024 + ], + [ + -79.87199070412116, + 26.289608771174024 + ], + [ + -79.89193436354455, + 26.320934276595715 + ], + [ + -79.91187802296793, + 26.289608771174024 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.91187802296793, + 26.289608771174024 + ], + [ + -79.89193436354455, + 26.320934276595715 + ], + [ + -79.9318216823913, + 26.320934276595715 + ], + [ + -79.91187802296793, + 26.289608771174024 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.91187802296793, + 26.289608771174024 + ], + [ + -79.9318216823913, + 26.320934276595715 + ], + [ + -79.95176534181469, + 26.289608771174024 + ], + [ + -79.91187802296793, + 26.289608771174024 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.91187802296793, + 26.289608771174024 + ], + [ + -79.95176534181469, + 26.289608771174024 + ], + [ + -79.9318216823913, + 26.258283265752333 + ], + [ + -79.91187802296793, + 26.289608771174024 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.91187802296793, + 26.289608771174024 + ], + [ + -79.9318216823913, + 26.258283265752333 + ], + [ + -79.89193436354455, + 26.258283265752333 + ], + [ + -79.91187802296793, + 26.289608771174024 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.91187802296793, + 26.289608771174024 + ], + [ + -79.89193436354455, + 26.258283265752333 + ], + [ + -79.87199070412116, + 26.289608771174024 + ], + [ + -79.91187802296793, + 26.289608771174024 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.91187802296793, + 26.35225978201741 + ], + [ + -79.87199070412116, + 26.35225978201741 + ], + [ + -79.89193436354455, + 26.3835852874391 + ], + [ + -79.91187802296793, + 26.35225978201741 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.91187802296793, + 26.35225978201741 + ], + [ + -79.89193436354455, + 26.3835852874391 + ], + [ + -79.9318216823913, + 26.3835852874391 + ], + [ + -79.91187802296793, + 26.35225978201741 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.91187802296793, + 26.35225978201741 + ], + [ + -79.9318216823913, + 26.3835852874391 + ], + [ + -79.95176534181469, + 26.35225978201741 + ], + [ + -79.91187802296793, + 26.35225978201741 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.91187802296793, + 26.35225978201741 + ], + [ + -79.95176534181469, + 26.35225978201741 + ], + [ + -79.9318216823913, + 26.320934276595718 + ], + [ + -79.91187802296793, + 26.35225978201741 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.91187802296793, + 26.35225978201741 + ], + [ + -79.9318216823913, + 26.320934276595718 + ], + [ + -79.89193436354455, + 26.320934276595718 + ], + [ + -79.91187802296793, + 26.35225978201741 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.91187802296793, + 26.35225978201741 + ], + [ + -79.89193436354455, + 26.320934276595718 + ], + [ + -79.87199070412116, + 26.35225978201741 + ], + [ + -79.91187802296793, + 26.35225978201741 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.91187802296793, + 26.414910792860795 + ], + [ + -79.87199070412116, + 26.414910792860795 + ], + [ + -79.89193436354455, + 26.446236298282486 + ], + [ + -79.91187802296793, + 26.414910792860795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.91187802296793, + 26.414910792860795 + ], + [ + -79.89193436354455, + 26.446236298282486 + ], + [ + -79.9318216823913, + 26.446236298282486 + ], + [ + -79.91187802296793, + 26.414910792860795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.91187802296793, + 26.414910792860795 + ], + [ + -79.9318216823913, + 26.446236298282486 + ], + [ + -79.95176534181469, + 26.414910792860795 + ], + [ + -79.91187802296793, + 26.414910792860795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.91187802296793, + 26.414910792860795 + ], + [ + -79.95176534181469, + 26.414910792860795 + ], + [ + -79.9318216823913, + 26.383585287439104 + ], + [ + -79.91187802296793, + 26.414910792860795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.91187802296793, + 26.414910792860795 + ], + [ + -79.9318216823913, + 26.383585287439104 + ], + [ + -79.89193436354455, + 26.383585287439104 + ], + [ + -79.91187802296793, + 26.414910792860795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.91187802296793, + 26.414910792860795 + ], + [ + -79.89193436354455, + 26.383585287439104 + ], + [ + -79.87199070412116, + 26.414910792860795 + ], + [ + -79.91187802296793, + 26.414910792860795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.85204704469777, + 24.942612038041236 + ], + [ + -79.812159725851, + 24.942612038041236 + ], + [ + -79.8321033852744, + 24.973937543462927 + ], + [ + -79.85204704469777, + 24.942612038041236 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.85204704469777, + 24.942612038041236 + ], + [ + -79.8321033852744, + 24.973937543462927 + ], + [ + -79.87199070412115, + 24.973937543462927 + ], + [ + -79.85204704469777, + 24.942612038041236 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.85204704469777, + 24.942612038041236 + ], + [ + -79.87199070412115, + 24.973937543462927 + ], + [ + -79.89193436354454, + 24.942612038041236 + ], + [ + -79.85204704469777, + 24.942612038041236 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.85204704469777, + 24.942612038041236 + ], + [ + -79.89193436354454, + 24.942612038041236 + ], + [ + -79.87199070412115, + 24.911286532619545 + ], + [ + -79.85204704469777, + 24.942612038041236 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.85204704469777, + 24.942612038041236 + ], + [ + -79.87199070412115, + 24.911286532619545 + ], + [ + -79.8321033852744, + 24.911286532619545 + ], + [ + -79.85204704469777, + 24.942612038041236 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.85204704469777, + 24.942612038041236 + ], + [ + -79.8321033852744, + 24.911286532619545 + ], + [ + -79.812159725851, + 24.942612038041236 + ], + [ + -79.85204704469777, + 24.942612038041236 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.85204704469777, + 25.005263048884622 + ], + [ + -79.812159725851, + 25.005263048884622 + ], + [ + -79.8321033852744, + 25.036588554306313 + ], + [ + -79.85204704469777, + 25.005263048884622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.85204704469777, + 25.005263048884622 + ], + [ + -79.8321033852744, + 25.036588554306313 + ], + [ + -79.87199070412115, + 25.036588554306313 + ], + [ + -79.85204704469777, + 25.005263048884622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.85204704469777, + 25.005263048884622 + ], + [ + -79.87199070412115, + 25.036588554306313 + ], + [ + -79.89193436354454, + 25.005263048884622 + ], + [ + -79.85204704469777, + 25.005263048884622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.85204704469777, + 25.005263048884622 + ], + [ + -79.89193436354454, + 25.005263048884622 + ], + [ + -79.87199070412115, + 24.97393754346293 + ], + [ + -79.85204704469777, + 25.005263048884622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.85204704469777, + 25.005263048884622 + ], + [ + -79.87199070412115, + 24.97393754346293 + ], + [ + -79.8321033852744, + 24.97393754346293 + ], + [ + -79.85204704469777, + 25.005263048884622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.85204704469777, + 25.005263048884622 + ], + [ + -79.8321033852744, + 24.97393754346293 + ], + [ + -79.812159725851, + 25.005263048884622 + ], + [ + -79.85204704469777, + 25.005263048884622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.85204704469777, + 25.067914059728007 + ], + [ + -79.812159725851, + 25.067914059728007 + ], + [ + -79.8321033852744, + 25.0992395651497 + ], + [ + -79.85204704469777, + 25.067914059728007 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.85204704469777, + 25.067914059728007 + ], + [ + -79.8321033852744, + 25.0992395651497 + ], + [ + -79.87199070412115, + 25.0992395651497 + ], + [ + -79.85204704469777, + 25.067914059728007 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.85204704469777, + 25.067914059728007 + ], + [ + -79.87199070412115, + 25.0992395651497 + ], + [ + -79.89193436354454, + 25.067914059728007 + ], + [ + -79.85204704469777, + 25.067914059728007 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.85204704469777, + 25.067914059728007 + ], + [ + -79.89193436354454, + 25.067914059728007 + ], + [ + -79.87199070412115, + 25.036588554306316 + ], + [ + -79.85204704469777, + 25.067914059728007 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.85204704469777, + 25.067914059728007 + ], + [ + -79.87199070412115, + 25.036588554306316 + ], + [ + -79.8321033852744, + 25.036588554306316 + ], + [ + -79.85204704469777, + 25.067914059728007 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.85204704469777, + 25.067914059728007 + ], + [ + -79.8321033852744, + 25.036588554306316 + ], + [ + -79.812159725851, + 25.067914059728007 + ], + [ + -79.85204704469777, + 25.067914059728007 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.85204704469777, + 25.130565070571393 + ], + [ + -79.812159725851, + 25.130565070571393 + ], + [ + -79.8321033852744, + 25.161890575993084 + ], + [ + -79.85204704469777, + 25.130565070571393 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.85204704469777, + 25.130565070571393 + ], + [ + -79.8321033852744, + 25.161890575993084 + ], + [ + -79.87199070412115, + 25.161890575993084 + ], + [ + -79.85204704469777, + 25.130565070571393 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.85204704469777, + 25.130565070571393 + ], + [ + -79.87199070412115, + 25.161890575993084 + ], + [ + -79.89193436354454, + 25.130565070571393 + ], + [ + -79.85204704469777, + 25.130565070571393 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.85204704469777, + 25.130565070571393 + ], + [ + -79.89193436354454, + 25.130565070571393 + ], + [ + -79.87199070412115, + 25.099239565149702 + ], + [ + -79.85204704469777, + 25.130565070571393 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.85204704469777, + 25.130565070571393 + ], + [ + -79.87199070412115, + 25.099239565149702 + ], + [ + -79.8321033852744, + 25.099239565149702 + ], + [ + -79.85204704469777, + 25.130565070571393 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.85204704469777, + 25.130565070571393 + ], + [ + -79.8321033852744, + 25.099239565149702 + ], + [ + -79.812159725851, + 25.130565070571393 + ], + [ + -79.85204704469777, + 25.130565070571393 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.85204704469777, + 25.19321608141478 + ], + [ + -79.812159725851, + 25.19321608141478 + ], + [ + -79.8321033852744, + 25.22454158683647 + ], + [ + -79.85204704469777, + 25.19321608141478 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.85204704469777, + 25.19321608141478 + ], + [ + -79.8321033852744, + 25.22454158683647 + ], + [ + -79.87199070412115, + 25.22454158683647 + ], + [ + -79.85204704469777, + 25.19321608141478 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.85204704469777, + 25.19321608141478 + ], + [ + -79.87199070412115, + 25.22454158683647 + ], + [ + -79.89193436354454, + 25.19321608141478 + ], + [ + -79.85204704469777, + 25.19321608141478 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.85204704469777, + 25.19321608141478 + ], + [ + -79.89193436354454, + 25.19321608141478 + ], + [ + -79.87199070412115, + 25.161890575993088 + ], + [ + -79.85204704469777, + 25.19321608141478 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.85204704469777, + 25.19321608141478 + ], + [ + -79.87199070412115, + 25.161890575993088 + ], + [ + -79.8321033852744, + 25.161890575993088 + ], + [ + -79.85204704469777, + 25.19321608141478 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.85204704469777, + 25.19321608141478 + ], + [ + -79.8321033852744, + 25.161890575993088 + ], + [ + -79.812159725851, + 25.19321608141478 + ], + [ + -79.85204704469777, + 25.19321608141478 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.85204704469777, + 25.255867092258164 + ], + [ + -79.812159725851, + 25.255867092258164 + ], + [ + -79.8321033852744, + 25.287192597679855 + ], + [ + -79.85204704469777, + 25.255867092258164 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.85204704469777, + 25.255867092258164 + ], + [ + -79.8321033852744, + 25.287192597679855 + ], + [ + -79.87199070412115, + 25.287192597679855 + ], + [ + -79.85204704469777, + 25.255867092258164 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.85204704469777, + 25.255867092258164 + ], + [ + -79.87199070412115, + 25.287192597679855 + ], + [ + -79.89193436354454, + 25.255867092258164 + ], + [ + -79.85204704469777, + 25.255867092258164 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.85204704469777, + 25.255867092258164 + ], + [ + -79.89193436354454, + 25.255867092258164 + ], + [ + -79.87199070412115, + 25.224541586836473 + ], + [ + -79.85204704469777, + 25.255867092258164 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.85204704469777, + 25.255867092258164 + ], + [ + -79.87199070412115, + 25.224541586836473 + ], + [ + -79.8321033852744, + 25.224541586836473 + ], + [ + -79.85204704469777, + 25.255867092258164 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.85204704469777, + 25.255867092258164 + ], + [ + -79.8321033852744, + 25.224541586836473 + ], + [ + -79.812159725851, + 25.255867092258164 + ], + [ + -79.85204704469777, + 25.255867092258164 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.85204704469777, + 25.31851810310155 + ], + [ + -79.812159725851, + 25.31851810310155 + ], + [ + -79.8321033852744, + 25.34984360852324 + ], + [ + -79.85204704469777, + 25.31851810310155 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.85204704469777, + 25.31851810310155 + ], + [ + -79.8321033852744, + 25.34984360852324 + ], + [ + -79.87199070412115, + 25.34984360852324 + ], + [ + -79.85204704469777, + 25.31851810310155 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.85204704469777, + 25.31851810310155 + ], + [ + -79.87199070412115, + 25.34984360852324 + ], + [ + -79.89193436354454, + 25.31851810310155 + ], + [ + -79.85204704469777, + 25.31851810310155 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.85204704469777, + 25.31851810310155 + ], + [ + -79.89193436354454, + 25.31851810310155 + ], + [ + -79.87199070412115, + 25.28719259767986 + ], + [ + -79.85204704469777, + 25.31851810310155 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.85204704469777, + 25.31851810310155 + ], + [ + -79.87199070412115, + 25.28719259767986 + ], + [ + -79.8321033852744, + 25.28719259767986 + ], + [ + -79.85204704469777, + 25.31851810310155 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.85204704469777, + 25.31851810310155 + ], + [ + -79.8321033852744, + 25.28719259767986 + ], + [ + -79.812159725851, + 25.31851810310155 + ], + [ + -79.85204704469777, + 25.31851810310155 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.85204704469777, + 25.381169113944935 + ], + [ + -79.812159725851, + 25.381169113944935 + ], + [ + -79.8321033852744, + 25.412494619366626 + ], + [ + -79.85204704469777, + 25.381169113944935 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.85204704469777, + 25.381169113944935 + ], + [ + -79.8321033852744, + 25.412494619366626 + ], + [ + -79.87199070412115, + 25.412494619366626 + ], + [ + -79.85204704469777, + 25.381169113944935 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.85204704469777, + 25.381169113944935 + ], + [ + -79.87199070412115, + 25.412494619366626 + ], + [ + -79.89193436354454, + 25.381169113944935 + ], + [ + -79.85204704469777, + 25.381169113944935 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.85204704469777, + 25.381169113944935 + ], + [ + -79.89193436354454, + 25.381169113944935 + ], + [ + -79.87199070412115, + 25.349843608523244 + ], + [ + -79.85204704469777, + 25.381169113944935 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.85204704469777, + 25.381169113944935 + ], + [ + -79.87199070412115, + 25.349843608523244 + ], + [ + -79.8321033852744, + 25.349843608523244 + ], + [ + -79.85204704469777, + 25.381169113944935 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.85204704469777, + 25.381169113944935 + ], + [ + -79.8321033852744, + 25.349843608523244 + ], + [ + -79.812159725851, + 25.381169113944935 + ], + [ + -79.85204704469777, + 25.381169113944935 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.85204704469777, + 25.44382012478832 + ], + [ + -79.812159725851, + 25.44382012478832 + ], + [ + -79.8321033852744, + 25.47514563021001 + ], + [ + -79.85204704469777, + 25.44382012478832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.85204704469777, + 25.44382012478832 + ], + [ + -79.8321033852744, + 25.47514563021001 + ], + [ + -79.87199070412115, + 25.47514563021001 + ], + [ + -79.85204704469777, + 25.44382012478832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.85204704469777, + 25.44382012478832 + ], + [ + -79.87199070412115, + 25.47514563021001 + ], + [ + -79.89193436354454, + 25.44382012478832 + ], + [ + -79.85204704469777, + 25.44382012478832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.85204704469777, + 25.44382012478832 + ], + [ + -79.89193436354454, + 25.44382012478832 + ], + [ + -79.87199070412115, + 25.41249461936663 + ], + [ + -79.85204704469777, + 25.44382012478832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.85204704469777, + 25.44382012478832 + ], + [ + -79.87199070412115, + 25.41249461936663 + ], + [ + -79.8321033852744, + 25.41249461936663 + ], + [ + -79.85204704469777, + 25.44382012478832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.85204704469777, + 25.44382012478832 + ], + [ + -79.8321033852744, + 25.41249461936663 + ], + [ + -79.812159725851, + 25.44382012478832 + ], + [ + -79.85204704469777, + 25.44382012478832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.85204704469777, + 25.506471135631706 + ], + [ + -79.812159725851, + 25.506471135631706 + ], + [ + -79.8321033852744, + 25.537796641053397 + ], + [ + -79.85204704469777, + 25.506471135631706 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.85204704469777, + 25.506471135631706 + ], + [ + -79.8321033852744, + 25.537796641053397 + ], + [ + -79.87199070412115, + 25.537796641053397 + ], + [ + -79.85204704469777, + 25.506471135631706 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.85204704469777, + 25.506471135631706 + ], + [ + -79.87199070412115, + 25.537796641053397 + ], + [ + -79.89193436354454, + 25.506471135631706 + ], + [ + -79.85204704469777, + 25.506471135631706 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.85204704469777, + 25.506471135631706 + ], + [ + -79.89193436354454, + 25.506471135631706 + ], + [ + -79.87199070412115, + 25.475145630210015 + ], + [ + -79.85204704469777, + 25.506471135631706 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.85204704469777, + 25.506471135631706 + ], + [ + -79.87199070412115, + 25.475145630210015 + ], + [ + -79.8321033852744, + 25.475145630210015 + ], + [ + -79.85204704469777, + 25.506471135631706 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.85204704469777, + 25.506471135631706 + ], + [ + -79.8321033852744, + 25.475145630210015 + ], + [ + -79.812159725851, + 25.506471135631706 + ], + [ + -79.85204704469777, + 25.506471135631706 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.85204704469777, + 25.56912214647509 + ], + [ + -79.812159725851, + 25.56912214647509 + ], + [ + -79.8321033852744, + 25.600447651896783 + ], + [ + -79.85204704469777, + 25.56912214647509 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.85204704469777, + 25.56912214647509 + ], + [ + -79.8321033852744, + 25.600447651896783 + ], + [ + -79.87199070412115, + 25.600447651896783 + ], + [ + -79.85204704469777, + 25.56912214647509 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.85204704469777, + 25.56912214647509 + ], + [ + -79.87199070412115, + 25.600447651896783 + ], + [ + -79.89193436354454, + 25.56912214647509 + ], + [ + -79.85204704469777, + 25.56912214647509 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.85204704469777, + 25.56912214647509 + ], + [ + -79.89193436354454, + 25.56912214647509 + ], + [ + -79.87199070412115, + 25.5377966410534 + ], + [ + -79.85204704469777, + 25.56912214647509 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.85204704469777, + 25.56912214647509 + ], + [ + -79.87199070412115, + 25.5377966410534 + ], + [ + -79.8321033852744, + 25.5377966410534 + ], + [ + -79.85204704469777, + 25.56912214647509 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.85204704469777, + 25.56912214647509 + ], + [ + -79.8321033852744, + 25.5377966410534 + ], + [ + -79.812159725851, + 25.56912214647509 + ], + [ + -79.85204704469777, + 25.56912214647509 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.85204704469777, + 25.631773157318477 + ], + [ + -79.812159725851, + 25.631773157318477 + ], + [ + -79.8321033852744, + 25.66309866274017 + ], + [ + -79.85204704469777, + 25.631773157318477 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.85204704469777, + 25.631773157318477 + ], + [ + -79.8321033852744, + 25.66309866274017 + ], + [ + -79.87199070412115, + 25.66309866274017 + ], + [ + -79.85204704469777, + 25.631773157318477 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.85204704469777, + 25.631773157318477 + ], + [ + -79.87199070412115, + 25.66309866274017 + ], + [ + -79.89193436354454, + 25.631773157318477 + ], + [ + -79.85204704469777, + 25.631773157318477 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.85204704469777, + 25.631773157318477 + ], + [ + -79.89193436354454, + 25.631773157318477 + ], + [ + -79.87199070412115, + 25.600447651896786 + ], + [ + -79.85204704469777, + 25.631773157318477 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.85204704469777, + 25.631773157318477 + ], + [ + -79.87199070412115, + 25.600447651896786 + ], + [ + -79.8321033852744, + 25.600447651896786 + ], + [ + -79.85204704469777, + 25.631773157318477 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.85204704469777, + 25.631773157318477 + ], + [ + -79.8321033852744, + 25.600447651896786 + ], + [ + -79.812159725851, + 25.631773157318477 + ], + [ + -79.85204704469777, + 25.631773157318477 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.85204704469777, + 25.694424168161863 + ], + [ + -79.812159725851, + 25.694424168161863 + ], + [ + -79.8321033852744, + 25.725749673583554 + ], + [ + -79.85204704469777, + 25.694424168161863 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.85204704469777, + 25.694424168161863 + ], + [ + -79.8321033852744, + 25.725749673583554 + ], + [ + -79.87199070412115, + 25.725749673583554 + ], + [ + -79.85204704469777, + 25.694424168161863 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.85204704469777, + 25.694424168161863 + ], + [ + -79.87199070412115, + 25.725749673583554 + ], + [ + -79.89193436354454, + 25.694424168161863 + ], + [ + -79.85204704469777, + 25.694424168161863 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.85204704469777, + 25.694424168161863 + ], + [ + -79.89193436354454, + 25.694424168161863 + ], + [ + -79.87199070412115, + 25.663098662740172 + ], + [ + -79.85204704469777, + 25.694424168161863 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.85204704469777, + 25.694424168161863 + ], + [ + -79.87199070412115, + 25.663098662740172 + ], + [ + -79.8321033852744, + 25.663098662740172 + ], + [ + -79.85204704469777, + 25.694424168161863 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.85204704469777, + 25.694424168161863 + ], + [ + -79.8321033852744, + 25.663098662740172 + ], + [ + -79.812159725851, + 25.694424168161863 + ], + [ + -79.85204704469777, + 25.694424168161863 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.85204704469777, + 25.75707517900525 + ], + [ + -79.812159725851, + 25.75707517900525 + ], + [ + -79.8321033852744, + 25.78840068442694 + ], + [ + -79.85204704469777, + 25.75707517900525 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.85204704469777, + 25.75707517900525 + ], + [ + -79.8321033852744, + 25.78840068442694 + ], + [ + -79.87199070412115, + 25.78840068442694 + ], + [ + -79.85204704469777, + 25.75707517900525 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.85204704469777, + 25.75707517900525 + ], + [ + -79.87199070412115, + 25.78840068442694 + ], + [ + -79.89193436354454, + 25.75707517900525 + ], + [ + -79.85204704469777, + 25.75707517900525 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.85204704469777, + 25.75707517900525 + ], + [ + -79.89193436354454, + 25.75707517900525 + ], + [ + -79.87199070412115, + 25.725749673583557 + ], + [ + -79.85204704469777, + 25.75707517900525 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.85204704469777, + 25.75707517900525 + ], + [ + -79.87199070412115, + 25.725749673583557 + ], + [ + -79.8321033852744, + 25.725749673583557 + ], + [ + -79.85204704469777, + 25.75707517900525 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.85204704469777, + 25.75707517900525 + ], + [ + -79.8321033852744, + 25.725749673583557 + ], + [ + -79.812159725851, + 25.75707517900525 + ], + [ + -79.85204704469777, + 25.75707517900525 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.85204704469777, + 25.819726189848634 + ], + [ + -79.812159725851, + 25.819726189848634 + ], + [ + -79.8321033852744, + 25.851051695270325 + ], + [ + -79.85204704469777, + 25.819726189848634 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.85204704469777, + 25.819726189848634 + ], + [ + -79.8321033852744, + 25.851051695270325 + ], + [ + -79.87199070412115, + 25.851051695270325 + ], + [ + -79.85204704469777, + 25.819726189848634 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.85204704469777, + 25.819726189848634 + ], + [ + -79.87199070412115, + 25.851051695270325 + ], + [ + -79.89193436354454, + 25.819726189848634 + ], + [ + -79.85204704469777, + 25.819726189848634 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.85204704469777, + 25.819726189848634 + ], + [ + -79.89193436354454, + 25.819726189848634 + ], + [ + -79.87199070412115, + 25.788400684426943 + ], + [ + -79.85204704469777, + 25.819726189848634 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.85204704469777, + 25.819726189848634 + ], + [ + -79.87199070412115, + 25.788400684426943 + ], + [ + -79.8321033852744, + 25.788400684426943 + ], + [ + -79.85204704469777, + 25.819726189848634 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.85204704469777, + 25.819726189848634 + ], + [ + -79.8321033852744, + 25.788400684426943 + ], + [ + -79.812159725851, + 25.819726189848634 + ], + [ + -79.85204704469777, + 25.819726189848634 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.85204704469777, + 25.88237720069202 + ], + [ + -79.812159725851, + 25.88237720069202 + ], + [ + -79.8321033852744, + 25.91370270611371 + ], + [ + -79.85204704469777, + 25.88237720069202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.85204704469777, + 25.88237720069202 + ], + [ + -79.8321033852744, + 25.91370270611371 + ], + [ + -79.87199070412115, + 25.91370270611371 + ], + [ + -79.85204704469777, + 25.88237720069202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.85204704469777, + 25.88237720069202 + ], + [ + -79.87199070412115, + 25.91370270611371 + ], + [ + -79.89193436354454, + 25.88237720069202 + ], + [ + -79.85204704469777, + 25.88237720069202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.85204704469777, + 25.88237720069202 + ], + [ + -79.89193436354454, + 25.88237720069202 + ], + [ + -79.87199070412115, + 25.85105169527033 + ], + [ + -79.85204704469777, + 25.88237720069202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.85204704469777, + 25.88237720069202 + ], + [ + -79.87199070412115, + 25.85105169527033 + ], + [ + -79.8321033852744, + 25.85105169527033 + ], + [ + -79.85204704469777, + 25.88237720069202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.85204704469777, + 25.88237720069202 + ], + [ + -79.8321033852744, + 25.85105169527033 + ], + [ + -79.812159725851, + 25.88237720069202 + ], + [ + -79.85204704469777, + 25.88237720069202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.85204704469777, + 25.945028211535405 + ], + [ + -79.812159725851, + 25.945028211535405 + ], + [ + -79.8321033852744, + 25.976353716957096 + ], + [ + -79.85204704469777, + 25.945028211535405 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.85204704469777, + 25.945028211535405 + ], + [ + -79.8321033852744, + 25.976353716957096 + ], + [ + -79.87199070412115, + 25.976353716957096 + ], + [ + -79.85204704469777, + 25.945028211535405 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.85204704469777, + 25.945028211535405 + ], + [ + -79.87199070412115, + 25.976353716957096 + ], + [ + -79.89193436354454, + 25.945028211535405 + ], + [ + -79.85204704469777, + 25.945028211535405 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.85204704469777, + 25.945028211535405 + ], + [ + -79.89193436354454, + 25.945028211535405 + ], + [ + -79.87199070412115, + 25.913702706113714 + ], + [ + -79.85204704469777, + 25.945028211535405 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.85204704469777, + 25.945028211535405 + ], + [ + -79.87199070412115, + 25.913702706113714 + ], + [ + -79.8321033852744, + 25.913702706113714 + ], + [ + -79.85204704469777, + 25.945028211535405 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.85204704469777, + 25.945028211535405 + ], + [ + -79.8321033852744, + 25.913702706113714 + ], + [ + -79.812159725851, + 25.945028211535405 + ], + [ + -79.85204704469777, + 25.945028211535405 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.85204704469777, + 26.00767922237879 + ], + [ + -79.812159725851, + 26.00767922237879 + ], + [ + -79.8321033852744, + 26.03900472780048 + ], + [ + -79.85204704469777, + 26.00767922237879 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.85204704469777, + 26.00767922237879 + ], + [ + -79.8321033852744, + 26.03900472780048 + ], + [ + -79.87199070412115, + 26.03900472780048 + ], + [ + -79.85204704469777, + 26.00767922237879 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.85204704469777, + 26.00767922237879 + ], + [ + -79.87199070412115, + 26.03900472780048 + ], + [ + -79.89193436354454, + 26.00767922237879 + ], + [ + -79.85204704469777, + 26.00767922237879 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.85204704469777, + 26.00767922237879 + ], + [ + -79.89193436354454, + 26.00767922237879 + ], + [ + -79.87199070412115, + 25.9763537169571 + ], + [ + -79.85204704469777, + 26.00767922237879 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.85204704469777, + 26.00767922237879 + ], + [ + -79.87199070412115, + 25.9763537169571 + ], + [ + -79.8321033852744, + 25.9763537169571 + ], + [ + -79.85204704469777, + 26.00767922237879 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.85204704469777, + 26.00767922237879 + ], + [ + -79.8321033852744, + 25.9763537169571 + ], + [ + -79.812159725851, + 26.00767922237879 + ], + [ + -79.85204704469777, + 26.00767922237879 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.85204704469777, + 26.070330233222176 + ], + [ + -79.812159725851, + 26.070330233222176 + ], + [ + -79.8321033852744, + 26.101655738643867 + ], + [ + -79.85204704469777, + 26.070330233222176 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.85204704469777, + 26.070330233222176 + ], + [ + -79.8321033852744, + 26.101655738643867 + ], + [ + -79.87199070412115, + 26.101655738643867 + ], + [ + -79.85204704469777, + 26.070330233222176 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.85204704469777, + 26.070330233222176 + ], + [ + -79.87199070412115, + 26.101655738643867 + ], + [ + -79.89193436354454, + 26.070330233222176 + ], + [ + -79.85204704469777, + 26.070330233222176 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.85204704469777, + 26.070330233222176 + ], + [ + -79.89193436354454, + 26.070330233222176 + ], + [ + -79.87199070412115, + 26.039004727800485 + ], + [ + -79.85204704469777, + 26.070330233222176 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.85204704469777, + 26.070330233222176 + ], + [ + -79.87199070412115, + 26.039004727800485 + ], + [ + -79.8321033852744, + 26.039004727800485 + ], + [ + -79.85204704469777, + 26.070330233222176 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.85204704469777, + 26.070330233222176 + ], + [ + -79.8321033852744, + 26.039004727800485 + ], + [ + -79.812159725851, + 26.070330233222176 + ], + [ + -79.85204704469777, + 26.070330233222176 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.85204704469777, + 26.13298124406556 + ], + [ + -79.812159725851, + 26.13298124406556 + ], + [ + -79.8321033852744, + 26.164306749487253 + ], + [ + -79.85204704469777, + 26.13298124406556 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.85204704469777, + 26.13298124406556 + ], + [ + -79.8321033852744, + 26.164306749487253 + ], + [ + -79.87199070412115, + 26.164306749487253 + ], + [ + -79.85204704469777, + 26.13298124406556 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.85204704469777, + 26.13298124406556 + ], + [ + -79.87199070412115, + 26.164306749487253 + ], + [ + -79.89193436354454, + 26.13298124406556 + ], + [ + -79.85204704469777, + 26.13298124406556 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.85204704469777, + 26.13298124406556 + ], + [ + -79.89193436354454, + 26.13298124406556 + ], + [ + -79.87199070412115, + 26.10165573864387 + ], + [ + -79.85204704469777, + 26.13298124406556 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.85204704469777, + 26.13298124406556 + ], + [ + -79.87199070412115, + 26.10165573864387 + ], + [ + -79.8321033852744, + 26.10165573864387 + ], + [ + -79.85204704469777, + 26.13298124406556 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.85204704469777, + 26.13298124406556 + ], + [ + -79.8321033852744, + 26.10165573864387 + ], + [ + -79.812159725851, + 26.13298124406556 + ], + [ + -79.85204704469777, + 26.13298124406556 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.85204704469777, + 26.195632254908944 + ], + [ + -79.812159725851, + 26.195632254908944 + ], + [ + -79.8321033852744, + 26.226957760330635 + ], + [ + -79.85204704469777, + 26.195632254908944 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.85204704469777, + 26.195632254908944 + ], + [ + -79.8321033852744, + 26.226957760330635 + ], + [ + -79.87199070412115, + 26.226957760330635 + ], + [ + -79.85204704469777, + 26.195632254908944 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.85204704469777, + 26.195632254908944 + ], + [ + -79.87199070412115, + 26.226957760330635 + ], + [ + -79.89193436354454, + 26.195632254908944 + ], + [ + -79.85204704469777, + 26.195632254908944 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.85204704469777, + 26.195632254908944 + ], + [ + -79.89193436354454, + 26.195632254908944 + ], + [ + -79.87199070412115, + 26.164306749487253 + ], + [ + -79.85204704469777, + 26.195632254908944 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.85204704469777, + 26.195632254908944 + ], + [ + -79.87199070412115, + 26.164306749487253 + ], + [ + -79.8321033852744, + 26.164306749487253 + ], + [ + -79.85204704469777, + 26.195632254908944 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.85204704469777, + 26.195632254908944 + ], + [ + -79.8321033852744, + 26.164306749487253 + ], + [ + -79.812159725851, + 26.195632254908944 + ], + [ + -79.85204704469777, + 26.195632254908944 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.85204704469777, + 26.258283265752333 + ], + [ + -79.812159725851, + 26.258283265752333 + ], + [ + -79.8321033852744, + 26.289608771174024 + ], + [ + -79.85204704469777, + 26.258283265752333 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.85204704469777, + 26.258283265752333 + ], + [ + -79.8321033852744, + 26.289608771174024 + ], + [ + -79.87199070412115, + 26.289608771174024 + ], + [ + -79.85204704469777, + 26.258283265752333 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.85204704469777, + 26.258283265752333 + ], + [ + -79.87199070412115, + 26.289608771174024 + ], + [ + -79.89193436354454, + 26.258283265752333 + ], + [ + -79.85204704469777, + 26.258283265752333 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.85204704469777, + 26.258283265752333 + ], + [ + -79.89193436354454, + 26.258283265752333 + ], + [ + -79.87199070412115, + 26.22695776033064 + ], + [ + -79.85204704469777, + 26.258283265752333 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.85204704469777, + 26.258283265752333 + ], + [ + -79.87199070412115, + 26.22695776033064 + ], + [ + -79.8321033852744, + 26.22695776033064 + ], + [ + -79.85204704469777, + 26.258283265752333 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.85204704469777, + 26.258283265752333 + ], + [ + -79.8321033852744, + 26.22695776033064 + ], + [ + -79.812159725851, + 26.258283265752333 + ], + [ + -79.85204704469777, + 26.258283265752333 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.85204704469777, + 26.320934276595715 + ], + [ + -79.812159725851, + 26.320934276595715 + ], + [ + -79.8321033852744, + 26.352259782017406 + ], + [ + -79.85204704469777, + 26.320934276595715 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.85204704469777, + 26.320934276595715 + ], + [ + -79.8321033852744, + 26.352259782017406 + ], + [ + -79.87199070412115, + 26.352259782017406 + ], + [ + -79.85204704469777, + 26.320934276595715 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.85204704469777, + 26.320934276595715 + ], + [ + -79.87199070412115, + 26.352259782017406 + ], + [ + -79.89193436354454, + 26.320934276595715 + ], + [ + -79.85204704469777, + 26.320934276595715 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.85204704469777, + 26.320934276595715 + ], + [ + -79.89193436354454, + 26.320934276595715 + ], + [ + -79.87199070412115, + 26.289608771174024 + ], + [ + -79.85204704469777, + 26.320934276595715 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.85204704469777, + 26.320934276595715 + ], + [ + -79.87199070412115, + 26.289608771174024 + ], + [ + -79.8321033852744, + 26.289608771174024 + ], + [ + -79.85204704469777, + 26.320934276595715 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.85204704469777, + 26.320934276595715 + ], + [ + -79.8321033852744, + 26.289608771174024 + ], + [ + -79.812159725851, + 26.320934276595715 + ], + [ + -79.85204704469777, + 26.320934276595715 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.85204704469777, + 26.3835852874391 + ], + [ + -79.812159725851, + 26.3835852874391 + ], + [ + -79.8321033852744, + 26.41491079286079 + ], + [ + -79.85204704469777, + 26.3835852874391 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.85204704469777, + 26.3835852874391 + ], + [ + -79.8321033852744, + 26.41491079286079 + ], + [ + -79.87199070412115, + 26.41491079286079 + ], + [ + -79.85204704469777, + 26.3835852874391 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.85204704469777, + 26.3835852874391 + ], + [ + -79.87199070412115, + 26.41491079286079 + ], + [ + -79.89193436354454, + 26.3835852874391 + ], + [ + -79.85204704469777, + 26.3835852874391 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.85204704469777, + 26.3835852874391 + ], + [ + -79.89193436354454, + 26.3835852874391 + ], + [ + -79.87199070412115, + 26.35225978201741 + ], + [ + -79.85204704469777, + 26.3835852874391 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.85204704469777, + 26.3835852874391 + ], + [ + -79.87199070412115, + 26.35225978201741 + ], + [ + -79.8321033852744, + 26.35225978201741 + ], + [ + -79.85204704469777, + 26.3835852874391 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.85204704469777, + 26.3835852874391 + ], + [ + -79.8321033852744, + 26.35225978201741 + ], + [ + -79.812159725851, + 26.3835852874391 + ], + [ + -79.85204704469777, + 26.3835852874391 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.85204704469777, + 26.446236298282486 + ], + [ + -79.812159725851, + 26.446236298282486 + ], + [ + -79.8321033852744, + 26.477561803704177 + ], + [ + -79.85204704469777, + 26.446236298282486 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.85204704469777, + 26.446236298282486 + ], + [ + -79.8321033852744, + 26.477561803704177 + ], + [ + -79.87199070412115, + 26.477561803704177 + ], + [ + -79.85204704469777, + 26.446236298282486 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.85204704469777, + 26.446236298282486 + ], + [ + -79.87199070412115, + 26.477561803704177 + ], + [ + -79.89193436354454, + 26.446236298282486 + ], + [ + -79.85204704469777, + 26.446236298282486 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.85204704469777, + 26.446236298282486 + ], + [ + -79.89193436354454, + 26.446236298282486 + ], + [ + -79.87199070412115, + 26.414910792860795 + ], + [ + -79.85204704469777, + 26.446236298282486 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.85204704469777, + 26.446236298282486 + ], + [ + -79.87199070412115, + 26.414910792860795 + ], + [ + -79.8321033852744, + 26.414910792860795 + ], + [ + -79.85204704469777, + 26.446236298282486 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.85204704469777, + 26.446236298282486 + ], + [ + -79.8321033852744, + 26.414910792860795 + ], + [ + -79.812159725851, + 26.446236298282486 + ], + [ + -79.85204704469777, + 26.446236298282486 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "fill-opacity": 0, + "stroke": "#0ff" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.650390625, + 24.926294766395593 + ], + [ + -79.8486328125, + 24.926294766395593 + ], + [ + -79.8486328125, + 26.43122806450644 + ], + [ + -81.650390625, + 26.43122806450644 + ], + [ + -81.650390625, + 24.926294766395593 + ] + ] + ] + } + } + ] +} \ No newline at end of file diff --git a/packages/turf-hex-grid/test/out/trigrid3.geojson b/packages/turf-hex-grid/test/out/trigrid3.geojson new file mode 100644 index 0000000000..97c8445a87 --- /dev/null +++ b/packages/turf-hex-grid/test/out/trigrid3.geojson @@ -0,0 +1,35841 @@ +{ + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.39050216679506, + 38.72966446648721 + ], + [ + -77.37195771539547, + 38.72966446648721 + ], + [ + -77.38122994109527, + 38.742194668655884 + ], + [ + -77.39050216679506, + 38.72966446648721 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.39050216679506, + 38.72966446648721 + ], + [ + -77.38122994109527, + 38.742194668655884 + ], + [ + -77.39977439249485, + 38.742194668655884 + ], + [ + -77.39050216679506, + 38.72966446648721 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.39050216679506, + 38.72966446648721 + ], + [ + -77.39977439249485, + 38.742194668655884 + ], + [ + -77.40904661819465, + 38.72966446648721 + ], + [ + -77.39050216679506, + 38.72966446648721 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.39050216679506, + 38.72966446648721 + ], + [ + -77.40904661819465, + 38.72966446648721 + ], + [ + -77.39977439249485, + 38.71713426431853 + ], + [ + -77.39050216679506, + 38.72966446648721 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.39050216679506, + 38.72966446648721 + ], + [ + -77.39977439249485, + 38.71713426431853 + ], + [ + -77.38122994109527, + 38.71713426431853 + ], + [ + -77.39050216679506, + 38.72966446648721 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.39050216679506, + 38.72966446648721 + ], + [ + -77.38122994109527, + 38.71713426431853 + ], + [ + -77.37195771539547, + 38.72966446648721 + ], + [ + -77.39050216679506, + 38.72966446648721 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.39050216679506, + 38.75472487082456 + ], + [ + -77.37195771539547, + 38.75472487082456 + ], + [ + -77.38122994109527, + 38.76725507299324 + ], + [ + -77.39050216679506, + 38.75472487082456 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.39050216679506, + 38.75472487082456 + ], + [ + -77.38122994109527, + 38.76725507299324 + ], + [ + -77.39977439249485, + 38.76725507299324 + ], + [ + -77.39050216679506, + 38.75472487082456 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.39050216679506, + 38.75472487082456 + ], + [ + -77.39977439249485, + 38.76725507299324 + ], + [ + -77.40904661819465, + 38.75472487082456 + ], + [ + -77.39050216679506, + 38.75472487082456 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.39050216679506, + 38.75472487082456 + ], + [ + -77.40904661819465, + 38.75472487082456 + ], + [ + -77.39977439249485, + 38.742194668655884 + ], + [ + -77.39050216679506, + 38.75472487082456 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.39050216679506, + 38.75472487082456 + ], + [ + -77.39977439249485, + 38.742194668655884 + ], + [ + -77.38122994109527, + 38.742194668655884 + ], + [ + -77.39050216679506, + 38.75472487082456 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.39050216679506, + 38.75472487082456 + ], + [ + -77.38122994109527, + 38.742194668655884 + ], + [ + -77.37195771539547, + 38.75472487082456 + ], + [ + -77.39050216679506, + 38.75472487082456 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.39050216679506, + 38.77978527516192 + ], + [ + -77.37195771539547, + 38.77978527516192 + ], + [ + -77.38122994109527, + 38.7923154773306 + ], + [ + -77.39050216679506, + 38.77978527516192 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.39050216679506, + 38.77978527516192 + ], + [ + -77.38122994109527, + 38.7923154773306 + ], + [ + -77.39977439249485, + 38.7923154773306 + ], + [ + -77.39050216679506, + 38.77978527516192 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.39050216679506, + 38.77978527516192 + ], + [ + -77.39977439249485, + 38.7923154773306 + ], + [ + -77.40904661819465, + 38.77978527516192 + ], + [ + -77.39050216679506, + 38.77978527516192 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.39050216679506, + 38.77978527516192 + ], + [ + -77.40904661819465, + 38.77978527516192 + ], + [ + -77.39977439249485, + 38.767255072993244 + ], + [ + -77.39050216679506, + 38.77978527516192 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.39050216679506, + 38.77978527516192 + ], + [ + -77.39977439249485, + 38.767255072993244 + ], + [ + -77.38122994109527, + 38.767255072993244 + ], + [ + -77.39050216679506, + 38.77978527516192 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.39050216679506, + 38.77978527516192 + ], + [ + -77.38122994109527, + 38.767255072993244 + ], + [ + -77.37195771539547, + 38.77978527516192 + ], + [ + -77.39050216679506, + 38.77978527516192 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.39050216679506, + 38.80484567949927 + ], + [ + -77.37195771539547, + 38.80484567949927 + ], + [ + -77.38122994109527, + 38.81737588166795 + ], + [ + -77.39050216679506, + 38.80484567949927 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.39050216679506, + 38.80484567949927 + ], + [ + -77.38122994109527, + 38.81737588166795 + ], + [ + -77.39977439249485, + 38.81737588166795 + ], + [ + -77.39050216679506, + 38.80484567949927 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.39050216679506, + 38.80484567949927 + ], + [ + -77.39977439249485, + 38.81737588166795 + ], + [ + -77.40904661819465, + 38.80484567949927 + ], + [ + -77.39050216679506, + 38.80484567949927 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.39050216679506, + 38.80484567949927 + ], + [ + -77.40904661819465, + 38.80484567949927 + ], + [ + -77.39977439249485, + 38.7923154773306 + ], + [ + -77.39050216679506, + 38.80484567949927 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.39050216679506, + 38.80484567949927 + ], + [ + -77.39977439249485, + 38.7923154773306 + ], + [ + -77.38122994109527, + 38.7923154773306 + ], + [ + -77.39050216679506, + 38.80484567949927 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.39050216679506, + 38.80484567949927 + ], + [ + -77.38122994109527, + 38.7923154773306 + ], + [ + -77.37195771539547, + 38.80484567949927 + ], + [ + -77.39050216679506, + 38.80484567949927 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.39050216679506, + 38.829906083836626 + ], + [ + -77.37195771539547, + 38.829906083836626 + ], + [ + -77.38122994109527, + 38.8424362860053 + ], + [ + -77.39050216679506, + 38.829906083836626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.39050216679506, + 38.829906083836626 + ], + [ + -77.38122994109527, + 38.8424362860053 + ], + [ + -77.39977439249485, + 38.8424362860053 + ], + [ + -77.39050216679506, + 38.829906083836626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.39050216679506, + 38.829906083836626 + ], + [ + -77.39977439249485, + 38.8424362860053 + ], + [ + -77.40904661819465, + 38.829906083836626 + ], + [ + -77.39050216679506, + 38.829906083836626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.39050216679506, + 38.829906083836626 + ], + [ + -77.40904661819465, + 38.829906083836626 + ], + [ + -77.39977439249485, + 38.81737588166795 + ], + [ + -77.39050216679506, + 38.829906083836626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.39050216679506, + 38.829906083836626 + ], + [ + -77.39977439249485, + 38.81737588166795 + ], + [ + -77.38122994109527, + 38.81737588166795 + ], + [ + -77.39050216679506, + 38.829906083836626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.39050216679506, + 38.829906083836626 + ], + [ + -77.38122994109527, + 38.81737588166795 + ], + [ + -77.37195771539547, + 38.829906083836626 + ], + [ + -77.39050216679506, + 38.829906083836626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.39050216679506, + 38.85496648817398 + ], + [ + -77.37195771539547, + 38.85496648817398 + ], + [ + -77.38122994109527, + 38.867496690342655 + ], + [ + -77.39050216679506, + 38.85496648817398 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.39050216679506, + 38.85496648817398 + ], + [ + -77.38122994109527, + 38.867496690342655 + ], + [ + -77.39977439249485, + 38.867496690342655 + ], + [ + -77.39050216679506, + 38.85496648817398 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.39050216679506, + 38.85496648817398 + ], + [ + -77.39977439249485, + 38.867496690342655 + ], + [ + -77.40904661819465, + 38.85496648817398 + ], + [ + -77.39050216679506, + 38.85496648817398 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.39050216679506, + 38.85496648817398 + ], + [ + -77.40904661819465, + 38.85496648817398 + ], + [ + -77.39977439249485, + 38.8424362860053 + ], + [ + -77.39050216679506, + 38.85496648817398 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.39050216679506, + 38.85496648817398 + ], + [ + -77.39977439249485, + 38.8424362860053 + ], + [ + -77.38122994109527, + 38.8424362860053 + ], + [ + -77.39050216679506, + 38.85496648817398 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.39050216679506, + 38.85496648817398 + ], + [ + -77.38122994109527, + 38.8424362860053 + ], + [ + -77.37195771539547, + 38.85496648817398 + ], + [ + -77.39050216679506, + 38.85496648817398 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.39050216679506, + 38.88002689251133 + ], + [ + -77.37195771539547, + 38.88002689251133 + ], + [ + -77.38122994109527, + 38.89255709468001 + ], + [ + -77.39050216679506, + 38.88002689251133 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.39050216679506, + 38.88002689251133 + ], + [ + -77.38122994109527, + 38.89255709468001 + ], + [ + -77.39977439249485, + 38.89255709468001 + ], + [ + -77.39050216679506, + 38.88002689251133 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.39050216679506, + 38.88002689251133 + ], + [ + -77.39977439249485, + 38.89255709468001 + ], + [ + -77.40904661819465, + 38.88002689251133 + ], + [ + -77.39050216679506, + 38.88002689251133 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.39050216679506, + 38.88002689251133 + ], + [ + -77.40904661819465, + 38.88002689251133 + ], + [ + -77.39977439249485, + 38.867496690342655 + ], + [ + -77.39050216679506, + 38.88002689251133 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.39050216679506, + 38.88002689251133 + ], + [ + -77.39977439249485, + 38.867496690342655 + ], + [ + -77.38122994109527, + 38.867496690342655 + ], + [ + -77.39050216679506, + 38.88002689251133 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.39050216679506, + 38.88002689251133 + ], + [ + -77.38122994109527, + 38.867496690342655 + ], + [ + -77.37195771539547, + 38.88002689251133 + ], + [ + -77.39050216679506, + 38.88002689251133 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.39050216679506, + 38.90508729684869 + ], + [ + -77.37195771539547, + 38.90508729684869 + ], + [ + -77.38122994109527, + 38.91761749901737 + ], + [ + -77.39050216679506, + 38.90508729684869 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.39050216679506, + 38.90508729684869 + ], + [ + -77.38122994109527, + 38.91761749901737 + ], + [ + -77.39977439249485, + 38.91761749901737 + ], + [ + -77.39050216679506, + 38.90508729684869 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.39050216679506, + 38.90508729684869 + ], + [ + -77.39977439249485, + 38.91761749901737 + ], + [ + -77.40904661819465, + 38.90508729684869 + ], + [ + -77.39050216679506, + 38.90508729684869 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.39050216679506, + 38.90508729684869 + ], + [ + -77.40904661819465, + 38.90508729684869 + ], + [ + -77.39977439249485, + 38.892557094680015 + ], + [ + -77.39050216679506, + 38.90508729684869 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.39050216679506, + 38.90508729684869 + ], + [ + -77.39977439249485, + 38.892557094680015 + ], + [ + -77.38122994109527, + 38.892557094680015 + ], + [ + -77.39050216679506, + 38.90508729684869 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.39050216679506, + 38.90508729684869 + ], + [ + -77.38122994109527, + 38.892557094680015 + ], + [ + -77.37195771539547, + 38.90508729684869 + ], + [ + -77.39050216679506, + 38.90508729684869 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.39050216679506, + 38.930147701186044 + ], + [ + -77.37195771539547, + 38.930147701186044 + ], + [ + -77.38122994109527, + 38.94267790335472 + ], + [ + -77.39050216679506, + 38.930147701186044 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.39050216679506, + 38.930147701186044 + ], + [ + -77.38122994109527, + 38.94267790335472 + ], + [ + -77.39977439249485, + 38.94267790335472 + ], + [ + -77.39050216679506, + 38.930147701186044 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.39050216679506, + 38.930147701186044 + ], + [ + -77.39977439249485, + 38.94267790335472 + ], + [ + -77.40904661819465, + 38.930147701186044 + ], + [ + -77.39050216679506, + 38.930147701186044 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.39050216679506, + 38.930147701186044 + ], + [ + -77.40904661819465, + 38.930147701186044 + ], + [ + -77.39977439249485, + 38.91761749901737 + ], + [ + -77.39050216679506, + 38.930147701186044 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.39050216679506, + 38.930147701186044 + ], + [ + -77.39977439249485, + 38.91761749901737 + ], + [ + -77.38122994109527, + 38.91761749901737 + ], + [ + -77.39050216679506, + 38.930147701186044 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.39050216679506, + 38.930147701186044 + ], + [ + -77.38122994109527, + 38.91761749901737 + ], + [ + -77.37195771539547, + 38.930147701186044 + ], + [ + -77.39050216679506, + 38.930147701186044 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.39050216679506, + 38.9552081055234 + ], + [ + -77.37195771539547, + 38.9552081055234 + ], + [ + -77.38122994109527, + 38.96773830769207 + ], + [ + -77.39050216679506, + 38.9552081055234 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.39050216679506, + 38.9552081055234 + ], + [ + -77.38122994109527, + 38.96773830769207 + ], + [ + -77.39977439249485, + 38.96773830769207 + ], + [ + -77.39050216679506, + 38.9552081055234 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.39050216679506, + 38.9552081055234 + ], + [ + -77.39977439249485, + 38.96773830769207 + ], + [ + -77.40904661819465, + 38.9552081055234 + ], + [ + -77.39050216679506, + 38.9552081055234 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.39050216679506, + 38.9552081055234 + ], + [ + -77.40904661819465, + 38.9552081055234 + ], + [ + -77.39977439249485, + 38.94267790335472 + ], + [ + -77.39050216679506, + 38.9552081055234 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.39050216679506, + 38.9552081055234 + ], + [ + -77.39977439249485, + 38.94267790335472 + ], + [ + -77.38122994109527, + 38.94267790335472 + ], + [ + -77.39050216679506, + 38.9552081055234 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.39050216679506, + 38.9552081055234 + ], + [ + -77.38122994109527, + 38.94267790335472 + ], + [ + -77.37195771539547, + 38.9552081055234 + ], + [ + -77.39050216679506, + 38.9552081055234 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.39050216679506, + 38.98026850986075 + ], + [ + -77.37195771539547, + 38.98026850986075 + ], + [ + -77.38122994109527, + 38.992798712029426 + ], + [ + -77.39050216679506, + 38.98026850986075 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.39050216679506, + 38.98026850986075 + ], + [ + -77.38122994109527, + 38.992798712029426 + ], + [ + -77.39977439249485, + 38.992798712029426 + ], + [ + -77.39050216679506, + 38.98026850986075 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.39050216679506, + 38.98026850986075 + ], + [ + -77.39977439249485, + 38.992798712029426 + ], + [ + -77.40904661819465, + 38.98026850986075 + ], + [ + -77.39050216679506, + 38.98026850986075 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.39050216679506, + 38.98026850986075 + ], + [ + -77.40904661819465, + 38.98026850986075 + ], + [ + -77.39977439249485, + 38.96773830769207 + ], + [ + -77.39050216679506, + 38.98026850986075 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.39050216679506, + 38.98026850986075 + ], + [ + -77.39977439249485, + 38.96773830769207 + ], + [ + -77.38122994109527, + 38.96773830769207 + ], + [ + -77.39050216679506, + 38.98026850986075 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.39050216679506, + 38.98026850986075 + ], + [ + -77.38122994109527, + 38.96773830769207 + ], + [ + -77.37195771539547, + 38.98026850986075 + ], + [ + -77.39050216679506, + 38.98026850986075 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.39050216679506, + 39.0053289141981 + ], + [ + -77.37195771539547, + 39.0053289141981 + ], + [ + -77.38122994109527, + 39.01785911636678 + ], + [ + -77.39050216679506, + 39.0053289141981 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.39050216679506, + 39.0053289141981 + ], + [ + -77.38122994109527, + 39.01785911636678 + ], + [ + -77.39977439249485, + 39.01785911636678 + ], + [ + -77.39050216679506, + 39.0053289141981 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.39050216679506, + 39.0053289141981 + ], + [ + -77.39977439249485, + 39.01785911636678 + ], + [ + -77.40904661819465, + 39.0053289141981 + ], + [ + -77.39050216679506, + 39.0053289141981 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.39050216679506, + 39.0053289141981 + ], + [ + -77.40904661819465, + 39.0053289141981 + ], + [ + -77.39977439249485, + 38.992798712029426 + ], + [ + -77.39050216679506, + 39.0053289141981 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.39050216679506, + 39.0053289141981 + ], + [ + -77.39977439249485, + 38.992798712029426 + ], + [ + -77.38122994109527, + 38.992798712029426 + ], + [ + -77.39050216679506, + 39.0053289141981 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.39050216679506, + 39.0053289141981 + ], + [ + -77.38122994109527, + 38.992798712029426 + ], + [ + -77.37195771539547, + 39.0053289141981 + ], + [ + -77.39050216679506, + 39.0053289141981 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.39050216679506, + 39.03038931853546 + ], + [ + -77.37195771539547, + 39.03038931853546 + ], + [ + -77.38122994109527, + 39.04291952070414 + ], + [ + -77.39050216679506, + 39.03038931853546 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.39050216679506, + 39.03038931853546 + ], + [ + -77.38122994109527, + 39.04291952070414 + ], + [ + -77.39977439249485, + 39.04291952070414 + ], + [ + -77.39050216679506, + 39.03038931853546 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.39050216679506, + 39.03038931853546 + ], + [ + -77.39977439249485, + 39.04291952070414 + ], + [ + -77.40904661819465, + 39.03038931853546 + ], + [ + -77.39050216679506, + 39.03038931853546 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.39050216679506, + 39.03038931853546 + ], + [ + -77.40904661819465, + 39.03038931853546 + ], + [ + -77.39977439249485, + 39.017859116366786 + ], + [ + -77.39050216679506, + 39.03038931853546 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.39050216679506, + 39.03038931853546 + ], + [ + -77.39977439249485, + 39.017859116366786 + ], + [ + -77.38122994109527, + 39.017859116366786 + ], + [ + -77.39050216679506, + 39.03038931853546 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.39050216679506, + 39.03038931853546 + ], + [ + -77.38122994109527, + 39.017859116366786 + ], + [ + -77.37195771539547, + 39.03038931853546 + ], + [ + -77.39050216679506, + 39.03038931853546 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.36268548969568, + 38.71713426431853 + ], + [ + -77.34414103829609, + 38.71713426431853 + ], + [ + -77.35341326399589, + 38.72966446648721 + ], + [ + -77.36268548969568, + 38.71713426431853 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.36268548969568, + 38.71713426431853 + ], + [ + -77.35341326399589, + 38.72966446648721 + ], + [ + -77.37195771539547, + 38.72966446648721 + ], + [ + -77.36268548969568, + 38.71713426431853 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.36268548969568, + 38.71713426431853 + ], + [ + -77.37195771539547, + 38.72966446648721 + ], + [ + -77.38122994109527, + 38.71713426431853 + ], + [ + -77.36268548969568, + 38.71713426431853 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.36268548969568, + 38.71713426431853 + ], + [ + -77.38122994109527, + 38.71713426431853 + ], + [ + -77.37195771539547, + 38.704604062149855 + ], + [ + -77.36268548969568, + 38.71713426431853 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.36268548969568, + 38.71713426431853 + ], + [ + -77.37195771539547, + 38.704604062149855 + ], + [ + -77.35341326399589, + 38.704604062149855 + ], + [ + -77.36268548969568, + 38.71713426431853 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.36268548969568, + 38.71713426431853 + ], + [ + -77.35341326399589, + 38.704604062149855 + ], + [ + -77.34414103829609, + 38.71713426431853 + ], + [ + -77.36268548969568, + 38.71713426431853 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.36268548969568, + 38.742194668655884 + ], + [ + -77.34414103829609, + 38.742194668655884 + ], + [ + -77.35341326399589, + 38.75472487082456 + ], + [ + -77.36268548969568, + 38.742194668655884 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.36268548969568, + 38.742194668655884 + ], + [ + -77.35341326399589, + 38.75472487082456 + ], + [ + -77.37195771539547, + 38.75472487082456 + ], + [ + -77.36268548969568, + 38.742194668655884 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.36268548969568, + 38.742194668655884 + ], + [ + -77.37195771539547, + 38.75472487082456 + ], + [ + -77.38122994109527, + 38.742194668655884 + ], + [ + -77.36268548969568, + 38.742194668655884 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.36268548969568, + 38.742194668655884 + ], + [ + -77.38122994109527, + 38.742194668655884 + ], + [ + -77.37195771539547, + 38.72966446648721 + ], + [ + -77.36268548969568, + 38.742194668655884 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.36268548969568, + 38.742194668655884 + ], + [ + -77.37195771539547, + 38.72966446648721 + ], + [ + -77.35341326399589, + 38.72966446648721 + ], + [ + -77.36268548969568, + 38.742194668655884 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.36268548969568, + 38.742194668655884 + ], + [ + -77.35341326399589, + 38.72966446648721 + ], + [ + -77.34414103829609, + 38.742194668655884 + ], + [ + -77.36268548969568, + 38.742194668655884 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.36268548969568, + 38.767255072993244 + ], + [ + -77.34414103829609, + 38.767255072993244 + ], + [ + -77.35341326399589, + 38.77978527516192 + ], + [ + -77.36268548969568, + 38.767255072993244 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.36268548969568, + 38.767255072993244 + ], + [ + -77.35341326399589, + 38.77978527516192 + ], + [ + -77.37195771539547, + 38.77978527516192 + ], + [ + -77.36268548969568, + 38.767255072993244 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.36268548969568, + 38.767255072993244 + ], + [ + -77.37195771539547, + 38.77978527516192 + ], + [ + -77.38122994109527, + 38.767255072993244 + ], + [ + -77.36268548969568, + 38.767255072993244 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.36268548969568, + 38.767255072993244 + ], + [ + -77.38122994109527, + 38.767255072993244 + ], + [ + -77.37195771539547, + 38.75472487082457 + ], + [ + -77.36268548969568, + 38.767255072993244 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.36268548969568, + 38.767255072993244 + ], + [ + -77.37195771539547, + 38.75472487082457 + ], + [ + -77.35341326399589, + 38.75472487082457 + ], + [ + -77.36268548969568, + 38.767255072993244 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.36268548969568, + 38.767255072993244 + ], + [ + -77.35341326399589, + 38.75472487082457 + ], + [ + -77.34414103829609, + 38.767255072993244 + ], + [ + -77.36268548969568, + 38.767255072993244 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.36268548969568, + 38.7923154773306 + ], + [ + -77.34414103829609, + 38.7923154773306 + ], + [ + -77.35341326399589, + 38.80484567949927 + ], + [ + -77.36268548969568, + 38.7923154773306 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.36268548969568, + 38.7923154773306 + ], + [ + -77.35341326399589, + 38.80484567949927 + ], + [ + -77.37195771539547, + 38.80484567949927 + ], + [ + -77.36268548969568, + 38.7923154773306 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.36268548969568, + 38.7923154773306 + ], + [ + -77.37195771539547, + 38.80484567949927 + ], + [ + -77.38122994109527, + 38.7923154773306 + ], + [ + -77.36268548969568, + 38.7923154773306 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.36268548969568, + 38.7923154773306 + ], + [ + -77.38122994109527, + 38.7923154773306 + ], + [ + -77.37195771539547, + 38.77978527516192 + ], + [ + -77.36268548969568, + 38.7923154773306 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.36268548969568, + 38.7923154773306 + ], + [ + -77.37195771539547, + 38.77978527516192 + ], + [ + -77.35341326399589, + 38.77978527516192 + ], + [ + -77.36268548969568, + 38.7923154773306 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.36268548969568, + 38.7923154773306 + ], + [ + -77.35341326399589, + 38.77978527516192 + ], + [ + -77.34414103829609, + 38.7923154773306 + ], + [ + -77.36268548969568, + 38.7923154773306 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.36268548969568, + 38.81737588166795 + ], + [ + -77.34414103829609, + 38.81737588166795 + ], + [ + -77.35341326399589, + 38.829906083836626 + ], + [ + -77.36268548969568, + 38.81737588166795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.36268548969568, + 38.81737588166795 + ], + [ + -77.35341326399589, + 38.829906083836626 + ], + [ + -77.37195771539547, + 38.829906083836626 + ], + [ + -77.36268548969568, + 38.81737588166795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.36268548969568, + 38.81737588166795 + ], + [ + -77.37195771539547, + 38.829906083836626 + ], + [ + -77.38122994109527, + 38.81737588166795 + ], + [ + -77.36268548969568, + 38.81737588166795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.36268548969568, + 38.81737588166795 + ], + [ + -77.38122994109527, + 38.81737588166795 + ], + [ + -77.37195771539547, + 38.80484567949927 + ], + [ + -77.36268548969568, + 38.81737588166795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.36268548969568, + 38.81737588166795 + ], + [ + -77.37195771539547, + 38.80484567949927 + ], + [ + -77.35341326399589, + 38.80484567949927 + ], + [ + -77.36268548969568, + 38.81737588166795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.36268548969568, + 38.81737588166795 + ], + [ + -77.35341326399589, + 38.80484567949927 + ], + [ + -77.34414103829609, + 38.81737588166795 + ], + [ + -77.36268548969568, + 38.81737588166795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.36268548969568, + 38.8424362860053 + ], + [ + -77.34414103829609, + 38.8424362860053 + ], + [ + -77.35341326399589, + 38.85496648817398 + ], + [ + -77.36268548969568, + 38.8424362860053 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.36268548969568, + 38.8424362860053 + ], + [ + -77.35341326399589, + 38.85496648817398 + ], + [ + -77.37195771539547, + 38.85496648817398 + ], + [ + -77.36268548969568, + 38.8424362860053 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.36268548969568, + 38.8424362860053 + ], + [ + -77.37195771539547, + 38.85496648817398 + ], + [ + -77.38122994109527, + 38.8424362860053 + ], + [ + -77.36268548969568, + 38.8424362860053 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.36268548969568, + 38.8424362860053 + ], + [ + -77.38122994109527, + 38.8424362860053 + ], + [ + -77.37195771539547, + 38.829906083836626 + ], + [ + -77.36268548969568, + 38.8424362860053 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.36268548969568, + 38.8424362860053 + ], + [ + -77.37195771539547, + 38.829906083836626 + ], + [ + -77.35341326399589, + 38.829906083836626 + ], + [ + -77.36268548969568, + 38.8424362860053 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.36268548969568, + 38.8424362860053 + ], + [ + -77.35341326399589, + 38.829906083836626 + ], + [ + -77.34414103829609, + 38.8424362860053 + ], + [ + -77.36268548969568, + 38.8424362860053 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.36268548969568, + 38.867496690342655 + ], + [ + -77.34414103829609, + 38.867496690342655 + ], + [ + -77.35341326399589, + 38.88002689251133 + ], + [ + -77.36268548969568, + 38.867496690342655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.36268548969568, + 38.867496690342655 + ], + [ + -77.35341326399589, + 38.88002689251133 + ], + [ + -77.37195771539547, + 38.88002689251133 + ], + [ + -77.36268548969568, + 38.867496690342655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.36268548969568, + 38.867496690342655 + ], + [ + -77.37195771539547, + 38.88002689251133 + ], + [ + -77.38122994109527, + 38.867496690342655 + ], + [ + -77.36268548969568, + 38.867496690342655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.36268548969568, + 38.867496690342655 + ], + [ + -77.38122994109527, + 38.867496690342655 + ], + [ + -77.37195771539547, + 38.85496648817398 + ], + [ + -77.36268548969568, + 38.867496690342655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.36268548969568, + 38.867496690342655 + ], + [ + -77.37195771539547, + 38.85496648817398 + ], + [ + -77.35341326399589, + 38.85496648817398 + ], + [ + -77.36268548969568, + 38.867496690342655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.36268548969568, + 38.867496690342655 + ], + [ + -77.35341326399589, + 38.85496648817398 + ], + [ + -77.34414103829609, + 38.867496690342655 + ], + [ + -77.36268548969568, + 38.867496690342655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.36268548969568, + 38.892557094680015 + ], + [ + -77.34414103829609, + 38.892557094680015 + ], + [ + -77.35341326399589, + 38.90508729684869 + ], + [ + -77.36268548969568, + 38.892557094680015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.36268548969568, + 38.892557094680015 + ], + [ + -77.35341326399589, + 38.90508729684869 + ], + [ + -77.37195771539547, + 38.90508729684869 + ], + [ + -77.36268548969568, + 38.892557094680015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.36268548969568, + 38.892557094680015 + ], + [ + -77.37195771539547, + 38.90508729684869 + ], + [ + -77.38122994109527, + 38.892557094680015 + ], + [ + -77.36268548969568, + 38.892557094680015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.36268548969568, + 38.892557094680015 + ], + [ + -77.38122994109527, + 38.892557094680015 + ], + [ + -77.37195771539547, + 38.88002689251134 + ], + [ + -77.36268548969568, + 38.892557094680015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.36268548969568, + 38.892557094680015 + ], + [ + -77.37195771539547, + 38.88002689251134 + ], + [ + -77.35341326399589, + 38.88002689251134 + ], + [ + -77.36268548969568, + 38.892557094680015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.36268548969568, + 38.892557094680015 + ], + [ + -77.35341326399589, + 38.88002689251134 + ], + [ + -77.34414103829609, + 38.892557094680015 + ], + [ + -77.36268548969568, + 38.892557094680015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.36268548969568, + 38.91761749901737 + ], + [ + -77.34414103829609, + 38.91761749901737 + ], + [ + -77.35341326399589, + 38.930147701186044 + ], + [ + -77.36268548969568, + 38.91761749901737 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.36268548969568, + 38.91761749901737 + ], + [ + -77.35341326399589, + 38.930147701186044 + ], + [ + -77.37195771539547, + 38.930147701186044 + ], + [ + -77.36268548969568, + 38.91761749901737 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.36268548969568, + 38.91761749901737 + ], + [ + -77.37195771539547, + 38.930147701186044 + ], + [ + -77.38122994109527, + 38.91761749901737 + ], + [ + -77.36268548969568, + 38.91761749901737 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.36268548969568, + 38.91761749901737 + ], + [ + -77.38122994109527, + 38.91761749901737 + ], + [ + -77.37195771539547, + 38.90508729684869 + ], + [ + -77.36268548969568, + 38.91761749901737 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.36268548969568, + 38.91761749901737 + ], + [ + -77.37195771539547, + 38.90508729684869 + ], + [ + -77.35341326399589, + 38.90508729684869 + ], + [ + -77.36268548969568, + 38.91761749901737 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.36268548969568, + 38.91761749901737 + ], + [ + -77.35341326399589, + 38.90508729684869 + ], + [ + -77.34414103829609, + 38.91761749901737 + ], + [ + -77.36268548969568, + 38.91761749901737 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.36268548969568, + 38.94267790335472 + ], + [ + -77.34414103829609, + 38.94267790335472 + ], + [ + -77.35341326399589, + 38.9552081055234 + ], + [ + -77.36268548969568, + 38.94267790335472 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.36268548969568, + 38.94267790335472 + ], + [ + -77.35341326399589, + 38.9552081055234 + ], + [ + -77.37195771539547, + 38.9552081055234 + ], + [ + -77.36268548969568, + 38.94267790335472 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.36268548969568, + 38.94267790335472 + ], + [ + -77.37195771539547, + 38.9552081055234 + ], + [ + -77.38122994109527, + 38.94267790335472 + ], + [ + -77.36268548969568, + 38.94267790335472 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.36268548969568, + 38.94267790335472 + ], + [ + -77.38122994109527, + 38.94267790335472 + ], + [ + -77.37195771539547, + 38.930147701186044 + ], + [ + -77.36268548969568, + 38.94267790335472 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.36268548969568, + 38.94267790335472 + ], + [ + -77.37195771539547, + 38.930147701186044 + ], + [ + -77.35341326399589, + 38.930147701186044 + ], + [ + -77.36268548969568, + 38.94267790335472 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.36268548969568, + 38.94267790335472 + ], + [ + -77.35341326399589, + 38.930147701186044 + ], + [ + -77.34414103829609, + 38.94267790335472 + ], + [ + -77.36268548969568, + 38.94267790335472 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.36268548969568, + 38.96773830769207 + ], + [ + -77.34414103829609, + 38.96773830769207 + ], + [ + -77.35341326399589, + 38.98026850986075 + ], + [ + -77.36268548969568, + 38.96773830769207 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.36268548969568, + 38.96773830769207 + ], + [ + -77.35341326399589, + 38.98026850986075 + ], + [ + -77.37195771539547, + 38.98026850986075 + ], + [ + -77.36268548969568, + 38.96773830769207 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.36268548969568, + 38.96773830769207 + ], + [ + -77.37195771539547, + 38.98026850986075 + ], + [ + -77.38122994109527, + 38.96773830769207 + ], + [ + -77.36268548969568, + 38.96773830769207 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.36268548969568, + 38.96773830769207 + ], + [ + -77.38122994109527, + 38.96773830769207 + ], + [ + -77.37195771539547, + 38.9552081055234 + ], + [ + -77.36268548969568, + 38.96773830769207 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.36268548969568, + 38.96773830769207 + ], + [ + -77.37195771539547, + 38.9552081055234 + ], + [ + -77.35341326399589, + 38.9552081055234 + ], + [ + -77.36268548969568, + 38.96773830769207 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.36268548969568, + 38.96773830769207 + ], + [ + -77.35341326399589, + 38.9552081055234 + ], + [ + -77.34414103829609, + 38.96773830769207 + ], + [ + -77.36268548969568, + 38.96773830769207 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.36268548969568, + 38.992798712029426 + ], + [ + -77.34414103829609, + 38.992798712029426 + ], + [ + -77.35341326399589, + 39.0053289141981 + ], + [ + -77.36268548969568, + 38.992798712029426 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.36268548969568, + 38.992798712029426 + ], + [ + -77.35341326399589, + 39.0053289141981 + ], + [ + -77.37195771539547, + 39.0053289141981 + ], + [ + -77.36268548969568, + 38.992798712029426 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.36268548969568, + 38.992798712029426 + ], + [ + -77.37195771539547, + 39.0053289141981 + ], + [ + -77.38122994109527, + 38.992798712029426 + ], + [ + -77.36268548969568, + 38.992798712029426 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.36268548969568, + 38.992798712029426 + ], + [ + -77.38122994109527, + 38.992798712029426 + ], + [ + -77.37195771539547, + 38.98026850986075 + ], + [ + -77.36268548969568, + 38.992798712029426 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.36268548969568, + 38.992798712029426 + ], + [ + -77.37195771539547, + 38.98026850986075 + ], + [ + -77.35341326399589, + 38.98026850986075 + ], + [ + -77.36268548969568, + 38.992798712029426 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.36268548969568, + 38.992798712029426 + ], + [ + -77.35341326399589, + 38.98026850986075 + ], + [ + -77.34414103829609, + 38.992798712029426 + ], + [ + -77.36268548969568, + 38.992798712029426 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.36268548969568, + 39.017859116366786 + ], + [ + -77.34414103829609, + 39.017859116366786 + ], + [ + -77.35341326399589, + 39.03038931853546 + ], + [ + -77.36268548969568, + 39.017859116366786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.36268548969568, + 39.017859116366786 + ], + [ + -77.35341326399589, + 39.03038931853546 + ], + [ + -77.37195771539547, + 39.03038931853546 + ], + [ + -77.36268548969568, + 39.017859116366786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.36268548969568, + 39.017859116366786 + ], + [ + -77.37195771539547, + 39.03038931853546 + ], + [ + -77.38122994109527, + 39.017859116366786 + ], + [ + -77.36268548969568, + 39.017859116366786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.36268548969568, + 39.017859116366786 + ], + [ + -77.38122994109527, + 39.017859116366786 + ], + [ + -77.37195771539547, + 39.00532891419811 + ], + [ + -77.36268548969568, + 39.017859116366786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.36268548969568, + 39.017859116366786 + ], + [ + -77.37195771539547, + 39.00532891419811 + ], + [ + -77.35341326399589, + 39.00532891419811 + ], + [ + -77.36268548969568, + 39.017859116366786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.36268548969568, + 39.017859116366786 + ], + [ + -77.35341326399589, + 39.00532891419811 + ], + [ + -77.34414103829609, + 39.017859116366786 + ], + [ + -77.36268548969568, + 39.017859116366786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.3348688125963, + 38.72966446648721 + ], + [ + -77.3163243611967, + 38.72966446648721 + ], + [ + -77.32559658689651, + 38.742194668655884 + ], + [ + -77.3348688125963, + 38.72966446648721 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.3348688125963, + 38.72966446648721 + ], + [ + -77.32559658689651, + 38.742194668655884 + ], + [ + -77.34414103829609, + 38.742194668655884 + ], + [ + -77.3348688125963, + 38.72966446648721 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.3348688125963, + 38.72966446648721 + ], + [ + -77.34414103829609, + 38.742194668655884 + ], + [ + -77.35341326399589, + 38.72966446648721 + ], + [ + -77.3348688125963, + 38.72966446648721 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.3348688125963, + 38.72966446648721 + ], + [ + -77.35341326399589, + 38.72966446648721 + ], + [ + -77.34414103829609, + 38.71713426431853 + ], + [ + -77.3348688125963, + 38.72966446648721 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.3348688125963, + 38.72966446648721 + ], + [ + -77.34414103829609, + 38.71713426431853 + ], + [ + -77.32559658689651, + 38.71713426431853 + ], + [ + -77.3348688125963, + 38.72966446648721 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.3348688125963, + 38.72966446648721 + ], + [ + -77.32559658689651, + 38.71713426431853 + ], + [ + -77.3163243611967, + 38.72966446648721 + ], + [ + -77.3348688125963, + 38.72966446648721 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.3348688125963, + 38.75472487082456 + ], + [ + -77.3163243611967, + 38.75472487082456 + ], + [ + -77.32559658689651, + 38.76725507299324 + ], + [ + -77.3348688125963, + 38.75472487082456 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.3348688125963, + 38.75472487082456 + ], + [ + -77.32559658689651, + 38.76725507299324 + ], + [ + -77.34414103829609, + 38.76725507299324 + ], + [ + -77.3348688125963, + 38.75472487082456 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.3348688125963, + 38.75472487082456 + ], + [ + -77.34414103829609, + 38.76725507299324 + ], + [ + -77.35341326399589, + 38.75472487082456 + ], + [ + -77.3348688125963, + 38.75472487082456 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.3348688125963, + 38.75472487082456 + ], + [ + -77.35341326399589, + 38.75472487082456 + ], + [ + -77.34414103829609, + 38.742194668655884 + ], + [ + -77.3348688125963, + 38.75472487082456 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.3348688125963, + 38.75472487082456 + ], + [ + -77.34414103829609, + 38.742194668655884 + ], + [ + -77.32559658689651, + 38.742194668655884 + ], + [ + -77.3348688125963, + 38.75472487082456 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.3348688125963, + 38.75472487082456 + ], + [ + -77.32559658689651, + 38.742194668655884 + ], + [ + -77.3163243611967, + 38.75472487082456 + ], + [ + -77.3348688125963, + 38.75472487082456 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.3348688125963, + 38.77978527516192 + ], + [ + -77.3163243611967, + 38.77978527516192 + ], + [ + -77.32559658689651, + 38.7923154773306 + ], + [ + -77.3348688125963, + 38.77978527516192 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.3348688125963, + 38.77978527516192 + ], + [ + -77.32559658689651, + 38.7923154773306 + ], + [ + -77.34414103829609, + 38.7923154773306 + ], + [ + -77.3348688125963, + 38.77978527516192 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.3348688125963, + 38.77978527516192 + ], + [ + -77.34414103829609, + 38.7923154773306 + ], + [ + -77.35341326399589, + 38.77978527516192 + ], + [ + -77.3348688125963, + 38.77978527516192 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.3348688125963, + 38.77978527516192 + ], + [ + -77.35341326399589, + 38.77978527516192 + ], + [ + -77.34414103829609, + 38.767255072993244 + ], + [ + -77.3348688125963, + 38.77978527516192 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.3348688125963, + 38.77978527516192 + ], + [ + -77.34414103829609, + 38.767255072993244 + ], + [ + -77.32559658689651, + 38.767255072993244 + ], + [ + -77.3348688125963, + 38.77978527516192 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.3348688125963, + 38.77978527516192 + ], + [ + -77.32559658689651, + 38.767255072993244 + ], + [ + -77.3163243611967, + 38.77978527516192 + ], + [ + -77.3348688125963, + 38.77978527516192 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.3348688125963, + 38.80484567949927 + ], + [ + -77.3163243611967, + 38.80484567949927 + ], + [ + -77.32559658689651, + 38.81737588166795 + ], + [ + -77.3348688125963, + 38.80484567949927 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.3348688125963, + 38.80484567949927 + ], + [ + -77.32559658689651, + 38.81737588166795 + ], + [ + -77.34414103829609, + 38.81737588166795 + ], + [ + -77.3348688125963, + 38.80484567949927 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.3348688125963, + 38.80484567949927 + ], + [ + -77.34414103829609, + 38.81737588166795 + ], + [ + -77.35341326399589, + 38.80484567949927 + ], + [ + -77.3348688125963, + 38.80484567949927 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.3348688125963, + 38.80484567949927 + ], + [ + -77.35341326399589, + 38.80484567949927 + ], + [ + -77.34414103829609, + 38.7923154773306 + ], + [ + -77.3348688125963, + 38.80484567949927 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.3348688125963, + 38.80484567949927 + ], + [ + -77.34414103829609, + 38.7923154773306 + ], + [ + -77.32559658689651, + 38.7923154773306 + ], + [ + -77.3348688125963, + 38.80484567949927 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.3348688125963, + 38.80484567949927 + ], + [ + -77.32559658689651, + 38.7923154773306 + ], + [ + -77.3163243611967, + 38.80484567949927 + ], + [ + -77.3348688125963, + 38.80484567949927 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.3348688125963, + 38.829906083836626 + ], + [ + -77.3163243611967, + 38.829906083836626 + ], + [ + -77.32559658689651, + 38.8424362860053 + ], + [ + -77.3348688125963, + 38.829906083836626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.3348688125963, + 38.829906083836626 + ], + [ + -77.32559658689651, + 38.8424362860053 + ], + [ + -77.34414103829609, + 38.8424362860053 + ], + [ + -77.3348688125963, + 38.829906083836626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.3348688125963, + 38.829906083836626 + ], + [ + -77.34414103829609, + 38.8424362860053 + ], + [ + -77.35341326399589, + 38.829906083836626 + ], + [ + -77.3348688125963, + 38.829906083836626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.3348688125963, + 38.829906083836626 + ], + [ + -77.35341326399589, + 38.829906083836626 + ], + [ + -77.34414103829609, + 38.81737588166795 + ], + [ + -77.3348688125963, + 38.829906083836626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.3348688125963, + 38.829906083836626 + ], + [ + -77.34414103829609, + 38.81737588166795 + ], + [ + -77.32559658689651, + 38.81737588166795 + ], + [ + -77.3348688125963, + 38.829906083836626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.3348688125963, + 38.829906083836626 + ], + [ + -77.32559658689651, + 38.81737588166795 + ], + [ + -77.3163243611967, + 38.829906083836626 + ], + [ + -77.3348688125963, + 38.829906083836626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.3348688125963, + 38.85496648817398 + ], + [ + -77.3163243611967, + 38.85496648817398 + ], + [ + -77.32559658689651, + 38.867496690342655 + ], + [ + -77.3348688125963, + 38.85496648817398 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.3348688125963, + 38.85496648817398 + ], + [ + -77.32559658689651, + 38.867496690342655 + ], + [ + -77.34414103829609, + 38.867496690342655 + ], + [ + -77.3348688125963, + 38.85496648817398 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.3348688125963, + 38.85496648817398 + ], + [ + -77.34414103829609, + 38.867496690342655 + ], + [ + -77.35341326399589, + 38.85496648817398 + ], + [ + -77.3348688125963, + 38.85496648817398 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.3348688125963, + 38.85496648817398 + ], + [ + -77.35341326399589, + 38.85496648817398 + ], + [ + -77.34414103829609, + 38.8424362860053 + ], + [ + -77.3348688125963, + 38.85496648817398 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.3348688125963, + 38.85496648817398 + ], + [ + -77.34414103829609, + 38.8424362860053 + ], + [ + -77.32559658689651, + 38.8424362860053 + ], + [ + -77.3348688125963, + 38.85496648817398 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.3348688125963, + 38.85496648817398 + ], + [ + -77.32559658689651, + 38.8424362860053 + ], + [ + -77.3163243611967, + 38.85496648817398 + ], + [ + -77.3348688125963, + 38.85496648817398 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.3348688125963, + 38.88002689251133 + ], + [ + -77.3163243611967, + 38.88002689251133 + ], + [ + -77.32559658689651, + 38.89255709468001 + ], + [ + -77.3348688125963, + 38.88002689251133 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.3348688125963, + 38.88002689251133 + ], + [ + -77.32559658689651, + 38.89255709468001 + ], + [ + -77.34414103829609, + 38.89255709468001 + ], + [ + -77.3348688125963, + 38.88002689251133 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.3348688125963, + 38.88002689251133 + ], + [ + -77.34414103829609, + 38.89255709468001 + ], + [ + -77.35341326399589, + 38.88002689251133 + ], + [ + -77.3348688125963, + 38.88002689251133 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.3348688125963, + 38.88002689251133 + ], + [ + -77.35341326399589, + 38.88002689251133 + ], + [ + -77.34414103829609, + 38.867496690342655 + ], + [ + -77.3348688125963, + 38.88002689251133 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.3348688125963, + 38.88002689251133 + ], + [ + -77.34414103829609, + 38.867496690342655 + ], + [ + -77.32559658689651, + 38.867496690342655 + ], + [ + -77.3348688125963, + 38.88002689251133 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.3348688125963, + 38.88002689251133 + ], + [ + -77.32559658689651, + 38.867496690342655 + ], + [ + -77.3163243611967, + 38.88002689251133 + ], + [ + -77.3348688125963, + 38.88002689251133 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.3348688125963, + 38.90508729684869 + ], + [ + -77.3163243611967, + 38.90508729684869 + ], + [ + -77.32559658689651, + 38.91761749901737 + ], + [ + -77.3348688125963, + 38.90508729684869 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.3348688125963, + 38.90508729684869 + ], + [ + -77.32559658689651, + 38.91761749901737 + ], + [ + -77.34414103829609, + 38.91761749901737 + ], + [ + -77.3348688125963, + 38.90508729684869 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.3348688125963, + 38.90508729684869 + ], + [ + -77.34414103829609, + 38.91761749901737 + ], + [ + -77.35341326399589, + 38.90508729684869 + ], + [ + -77.3348688125963, + 38.90508729684869 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.3348688125963, + 38.90508729684869 + ], + [ + -77.35341326399589, + 38.90508729684869 + ], + [ + -77.34414103829609, + 38.892557094680015 + ], + [ + -77.3348688125963, + 38.90508729684869 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.3348688125963, + 38.90508729684869 + ], + [ + -77.34414103829609, + 38.892557094680015 + ], + [ + -77.32559658689651, + 38.892557094680015 + ], + [ + -77.3348688125963, + 38.90508729684869 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.3348688125963, + 38.90508729684869 + ], + [ + -77.32559658689651, + 38.892557094680015 + ], + [ + -77.3163243611967, + 38.90508729684869 + ], + [ + -77.3348688125963, + 38.90508729684869 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.3348688125963, + 38.930147701186044 + ], + [ + -77.3163243611967, + 38.930147701186044 + ], + [ + -77.32559658689651, + 38.94267790335472 + ], + [ + -77.3348688125963, + 38.930147701186044 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.3348688125963, + 38.930147701186044 + ], + [ + -77.32559658689651, + 38.94267790335472 + ], + [ + -77.34414103829609, + 38.94267790335472 + ], + [ + -77.3348688125963, + 38.930147701186044 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.3348688125963, + 38.930147701186044 + ], + [ + -77.34414103829609, + 38.94267790335472 + ], + [ + -77.35341326399589, + 38.930147701186044 + ], + [ + -77.3348688125963, + 38.930147701186044 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.3348688125963, + 38.930147701186044 + ], + [ + -77.35341326399589, + 38.930147701186044 + ], + [ + -77.34414103829609, + 38.91761749901737 + ], + [ + -77.3348688125963, + 38.930147701186044 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.3348688125963, + 38.930147701186044 + ], + [ + -77.34414103829609, + 38.91761749901737 + ], + [ + -77.32559658689651, + 38.91761749901737 + ], + [ + -77.3348688125963, + 38.930147701186044 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.3348688125963, + 38.930147701186044 + ], + [ + -77.32559658689651, + 38.91761749901737 + ], + [ + -77.3163243611967, + 38.930147701186044 + ], + [ + -77.3348688125963, + 38.930147701186044 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.3348688125963, + 38.9552081055234 + ], + [ + -77.3163243611967, + 38.9552081055234 + ], + [ + -77.32559658689651, + 38.96773830769207 + ], + [ + -77.3348688125963, + 38.9552081055234 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.3348688125963, + 38.9552081055234 + ], + [ + -77.32559658689651, + 38.96773830769207 + ], + [ + -77.34414103829609, + 38.96773830769207 + ], + [ + -77.3348688125963, + 38.9552081055234 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.3348688125963, + 38.9552081055234 + ], + [ + -77.34414103829609, + 38.96773830769207 + ], + [ + -77.35341326399589, + 38.9552081055234 + ], + [ + -77.3348688125963, + 38.9552081055234 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.3348688125963, + 38.9552081055234 + ], + [ + -77.35341326399589, + 38.9552081055234 + ], + [ + -77.34414103829609, + 38.94267790335472 + ], + [ + -77.3348688125963, + 38.9552081055234 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.3348688125963, + 38.9552081055234 + ], + [ + -77.34414103829609, + 38.94267790335472 + ], + [ + -77.32559658689651, + 38.94267790335472 + ], + [ + -77.3348688125963, + 38.9552081055234 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.3348688125963, + 38.9552081055234 + ], + [ + -77.32559658689651, + 38.94267790335472 + ], + [ + -77.3163243611967, + 38.9552081055234 + ], + [ + -77.3348688125963, + 38.9552081055234 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.3348688125963, + 38.98026850986075 + ], + [ + -77.3163243611967, + 38.98026850986075 + ], + [ + -77.32559658689651, + 38.992798712029426 + ], + [ + -77.3348688125963, + 38.98026850986075 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.3348688125963, + 38.98026850986075 + ], + [ + -77.32559658689651, + 38.992798712029426 + ], + [ + -77.34414103829609, + 38.992798712029426 + ], + [ + -77.3348688125963, + 38.98026850986075 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.3348688125963, + 38.98026850986075 + ], + [ + -77.34414103829609, + 38.992798712029426 + ], + [ + -77.35341326399589, + 38.98026850986075 + ], + [ + -77.3348688125963, + 38.98026850986075 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.3348688125963, + 38.98026850986075 + ], + [ + -77.35341326399589, + 38.98026850986075 + ], + [ + -77.34414103829609, + 38.96773830769207 + ], + [ + -77.3348688125963, + 38.98026850986075 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.3348688125963, + 38.98026850986075 + ], + [ + -77.34414103829609, + 38.96773830769207 + ], + [ + -77.32559658689651, + 38.96773830769207 + ], + [ + -77.3348688125963, + 38.98026850986075 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.3348688125963, + 38.98026850986075 + ], + [ + -77.32559658689651, + 38.96773830769207 + ], + [ + -77.3163243611967, + 38.98026850986075 + ], + [ + -77.3348688125963, + 38.98026850986075 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.3348688125963, + 39.0053289141981 + ], + [ + -77.3163243611967, + 39.0053289141981 + ], + [ + -77.32559658689651, + 39.01785911636678 + ], + [ + -77.3348688125963, + 39.0053289141981 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.3348688125963, + 39.0053289141981 + ], + [ + -77.32559658689651, + 39.01785911636678 + ], + [ + -77.34414103829609, + 39.01785911636678 + ], + [ + -77.3348688125963, + 39.0053289141981 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.3348688125963, + 39.0053289141981 + ], + [ + -77.34414103829609, + 39.01785911636678 + ], + [ + -77.35341326399589, + 39.0053289141981 + ], + [ + -77.3348688125963, + 39.0053289141981 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.3348688125963, + 39.0053289141981 + ], + [ + -77.35341326399589, + 39.0053289141981 + ], + [ + -77.34414103829609, + 38.992798712029426 + ], + [ + -77.3348688125963, + 39.0053289141981 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.3348688125963, + 39.0053289141981 + ], + [ + -77.34414103829609, + 38.992798712029426 + ], + [ + -77.32559658689651, + 38.992798712029426 + ], + [ + -77.3348688125963, + 39.0053289141981 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.3348688125963, + 39.0053289141981 + ], + [ + -77.32559658689651, + 38.992798712029426 + ], + [ + -77.3163243611967, + 39.0053289141981 + ], + [ + -77.3348688125963, + 39.0053289141981 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.3348688125963, + 39.03038931853546 + ], + [ + -77.3163243611967, + 39.03038931853546 + ], + [ + -77.32559658689651, + 39.04291952070414 + ], + [ + -77.3348688125963, + 39.03038931853546 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.3348688125963, + 39.03038931853546 + ], + [ + -77.32559658689651, + 39.04291952070414 + ], + [ + -77.34414103829609, + 39.04291952070414 + ], + [ + -77.3348688125963, + 39.03038931853546 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.3348688125963, + 39.03038931853546 + ], + [ + -77.34414103829609, + 39.04291952070414 + ], + [ + -77.35341326399589, + 39.03038931853546 + ], + [ + -77.3348688125963, + 39.03038931853546 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.3348688125963, + 39.03038931853546 + ], + [ + -77.35341326399589, + 39.03038931853546 + ], + [ + -77.34414103829609, + 39.017859116366786 + ], + [ + -77.3348688125963, + 39.03038931853546 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.3348688125963, + 39.03038931853546 + ], + [ + -77.34414103829609, + 39.017859116366786 + ], + [ + -77.32559658689651, + 39.017859116366786 + ], + [ + -77.3348688125963, + 39.03038931853546 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.3348688125963, + 39.03038931853546 + ], + [ + -77.32559658689651, + 39.017859116366786 + ], + [ + -77.3163243611967, + 39.03038931853546 + ], + [ + -77.3348688125963, + 39.03038931853546 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.30705213549692, + 38.71713426431853 + ], + [ + -77.28850768409733, + 38.71713426431853 + ], + [ + -77.29777990979713, + 38.72966446648721 + ], + [ + -77.30705213549692, + 38.71713426431853 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.30705213549692, + 38.71713426431853 + ], + [ + -77.29777990979713, + 38.72966446648721 + ], + [ + -77.3163243611967, + 38.72966446648721 + ], + [ + -77.30705213549692, + 38.71713426431853 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.30705213549692, + 38.71713426431853 + ], + [ + -77.3163243611967, + 38.72966446648721 + ], + [ + -77.32559658689651, + 38.71713426431853 + ], + [ + -77.30705213549692, + 38.71713426431853 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.30705213549692, + 38.71713426431853 + ], + [ + -77.32559658689651, + 38.71713426431853 + ], + [ + -77.3163243611967, + 38.704604062149855 + ], + [ + -77.30705213549692, + 38.71713426431853 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.30705213549692, + 38.71713426431853 + ], + [ + -77.3163243611967, + 38.704604062149855 + ], + [ + -77.29777990979713, + 38.704604062149855 + ], + [ + -77.30705213549692, + 38.71713426431853 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.30705213549692, + 38.71713426431853 + ], + [ + -77.29777990979713, + 38.704604062149855 + ], + [ + -77.28850768409733, + 38.71713426431853 + ], + [ + -77.30705213549692, + 38.71713426431853 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.30705213549692, + 38.742194668655884 + ], + [ + -77.28850768409733, + 38.742194668655884 + ], + [ + -77.29777990979713, + 38.75472487082456 + ], + [ + -77.30705213549692, + 38.742194668655884 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.30705213549692, + 38.742194668655884 + ], + [ + -77.29777990979713, + 38.75472487082456 + ], + [ + -77.3163243611967, + 38.75472487082456 + ], + [ + -77.30705213549692, + 38.742194668655884 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.30705213549692, + 38.742194668655884 + ], + [ + -77.3163243611967, + 38.75472487082456 + ], + [ + -77.32559658689651, + 38.742194668655884 + ], + [ + -77.30705213549692, + 38.742194668655884 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.30705213549692, + 38.742194668655884 + ], + [ + -77.32559658689651, + 38.742194668655884 + ], + [ + -77.3163243611967, + 38.72966446648721 + ], + [ + -77.30705213549692, + 38.742194668655884 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.30705213549692, + 38.742194668655884 + ], + [ + -77.3163243611967, + 38.72966446648721 + ], + [ + -77.29777990979713, + 38.72966446648721 + ], + [ + -77.30705213549692, + 38.742194668655884 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.30705213549692, + 38.742194668655884 + ], + [ + -77.29777990979713, + 38.72966446648721 + ], + [ + -77.28850768409733, + 38.742194668655884 + ], + [ + -77.30705213549692, + 38.742194668655884 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.30705213549692, + 38.767255072993244 + ], + [ + -77.28850768409733, + 38.767255072993244 + ], + [ + -77.29777990979713, + 38.77978527516192 + ], + [ + -77.30705213549692, + 38.767255072993244 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.30705213549692, + 38.767255072993244 + ], + [ + -77.29777990979713, + 38.77978527516192 + ], + [ + -77.3163243611967, + 38.77978527516192 + ], + [ + -77.30705213549692, + 38.767255072993244 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.30705213549692, + 38.767255072993244 + ], + [ + -77.3163243611967, + 38.77978527516192 + ], + [ + -77.32559658689651, + 38.767255072993244 + ], + [ + -77.30705213549692, + 38.767255072993244 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.30705213549692, + 38.767255072993244 + ], + [ + -77.32559658689651, + 38.767255072993244 + ], + [ + -77.3163243611967, + 38.75472487082457 + ], + [ + -77.30705213549692, + 38.767255072993244 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.30705213549692, + 38.767255072993244 + ], + [ + -77.3163243611967, + 38.75472487082457 + ], + [ + -77.29777990979713, + 38.75472487082457 + ], + [ + -77.30705213549692, + 38.767255072993244 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.30705213549692, + 38.767255072993244 + ], + [ + -77.29777990979713, + 38.75472487082457 + ], + [ + -77.28850768409733, + 38.767255072993244 + ], + [ + -77.30705213549692, + 38.767255072993244 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.30705213549692, + 38.7923154773306 + ], + [ + -77.28850768409733, + 38.7923154773306 + ], + [ + -77.29777990979713, + 38.80484567949927 + ], + [ + -77.30705213549692, + 38.7923154773306 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.30705213549692, + 38.7923154773306 + ], + [ + -77.29777990979713, + 38.80484567949927 + ], + [ + -77.3163243611967, + 38.80484567949927 + ], + [ + -77.30705213549692, + 38.7923154773306 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.30705213549692, + 38.7923154773306 + ], + [ + -77.3163243611967, + 38.80484567949927 + ], + [ + -77.32559658689651, + 38.7923154773306 + ], + [ + -77.30705213549692, + 38.7923154773306 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.30705213549692, + 38.7923154773306 + ], + [ + -77.32559658689651, + 38.7923154773306 + ], + [ + -77.3163243611967, + 38.77978527516192 + ], + [ + -77.30705213549692, + 38.7923154773306 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.30705213549692, + 38.7923154773306 + ], + [ + -77.3163243611967, + 38.77978527516192 + ], + [ + -77.29777990979713, + 38.77978527516192 + ], + [ + -77.30705213549692, + 38.7923154773306 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.30705213549692, + 38.7923154773306 + ], + [ + -77.29777990979713, + 38.77978527516192 + ], + [ + -77.28850768409733, + 38.7923154773306 + ], + [ + -77.30705213549692, + 38.7923154773306 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.30705213549692, + 38.81737588166795 + ], + [ + -77.28850768409733, + 38.81737588166795 + ], + [ + -77.29777990979713, + 38.829906083836626 + ], + [ + -77.30705213549692, + 38.81737588166795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.30705213549692, + 38.81737588166795 + ], + [ + -77.29777990979713, + 38.829906083836626 + ], + [ + -77.3163243611967, + 38.829906083836626 + ], + [ + -77.30705213549692, + 38.81737588166795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.30705213549692, + 38.81737588166795 + ], + [ + -77.3163243611967, + 38.829906083836626 + ], + [ + -77.32559658689651, + 38.81737588166795 + ], + [ + -77.30705213549692, + 38.81737588166795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.30705213549692, + 38.81737588166795 + ], + [ + -77.32559658689651, + 38.81737588166795 + ], + [ + -77.3163243611967, + 38.80484567949927 + ], + [ + -77.30705213549692, + 38.81737588166795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.30705213549692, + 38.81737588166795 + ], + [ + -77.3163243611967, + 38.80484567949927 + ], + [ + -77.29777990979713, + 38.80484567949927 + ], + [ + -77.30705213549692, + 38.81737588166795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.30705213549692, + 38.81737588166795 + ], + [ + -77.29777990979713, + 38.80484567949927 + ], + [ + -77.28850768409733, + 38.81737588166795 + ], + [ + -77.30705213549692, + 38.81737588166795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.30705213549692, + 38.8424362860053 + ], + [ + -77.28850768409733, + 38.8424362860053 + ], + [ + -77.29777990979713, + 38.85496648817398 + ], + [ + -77.30705213549692, + 38.8424362860053 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.30705213549692, + 38.8424362860053 + ], + [ + -77.29777990979713, + 38.85496648817398 + ], + [ + -77.3163243611967, + 38.85496648817398 + ], + [ + -77.30705213549692, + 38.8424362860053 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.30705213549692, + 38.8424362860053 + ], + [ + -77.3163243611967, + 38.85496648817398 + ], + [ + -77.32559658689651, + 38.8424362860053 + ], + [ + -77.30705213549692, + 38.8424362860053 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.30705213549692, + 38.8424362860053 + ], + [ + -77.32559658689651, + 38.8424362860053 + ], + [ + -77.3163243611967, + 38.829906083836626 + ], + [ + -77.30705213549692, + 38.8424362860053 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.30705213549692, + 38.8424362860053 + ], + [ + -77.3163243611967, + 38.829906083836626 + ], + [ + -77.29777990979713, + 38.829906083836626 + ], + [ + -77.30705213549692, + 38.8424362860053 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.30705213549692, + 38.8424362860053 + ], + [ + -77.29777990979713, + 38.829906083836626 + ], + [ + -77.28850768409733, + 38.8424362860053 + ], + [ + -77.30705213549692, + 38.8424362860053 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.30705213549692, + 38.867496690342655 + ], + [ + -77.28850768409733, + 38.867496690342655 + ], + [ + -77.29777990979713, + 38.88002689251133 + ], + [ + -77.30705213549692, + 38.867496690342655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.30705213549692, + 38.867496690342655 + ], + [ + -77.29777990979713, + 38.88002689251133 + ], + [ + -77.3163243611967, + 38.88002689251133 + ], + [ + -77.30705213549692, + 38.867496690342655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.30705213549692, + 38.867496690342655 + ], + [ + -77.3163243611967, + 38.88002689251133 + ], + [ + -77.32559658689651, + 38.867496690342655 + ], + [ + -77.30705213549692, + 38.867496690342655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.30705213549692, + 38.867496690342655 + ], + [ + -77.32559658689651, + 38.867496690342655 + ], + [ + -77.3163243611967, + 38.85496648817398 + ], + [ + -77.30705213549692, + 38.867496690342655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.30705213549692, + 38.867496690342655 + ], + [ + -77.3163243611967, + 38.85496648817398 + ], + [ + -77.29777990979713, + 38.85496648817398 + ], + [ + -77.30705213549692, + 38.867496690342655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.30705213549692, + 38.867496690342655 + ], + [ + -77.29777990979713, + 38.85496648817398 + ], + [ + -77.28850768409733, + 38.867496690342655 + ], + [ + -77.30705213549692, + 38.867496690342655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.30705213549692, + 38.892557094680015 + ], + [ + -77.28850768409733, + 38.892557094680015 + ], + [ + -77.29777990979713, + 38.90508729684869 + ], + [ + -77.30705213549692, + 38.892557094680015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.30705213549692, + 38.892557094680015 + ], + [ + -77.29777990979713, + 38.90508729684869 + ], + [ + -77.3163243611967, + 38.90508729684869 + ], + [ + -77.30705213549692, + 38.892557094680015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.30705213549692, + 38.892557094680015 + ], + [ + -77.3163243611967, + 38.90508729684869 + ], + [ + -77.32559658689651, + 38.892557094680015 + ], + [ + -77.30705213549692, + 38.892557094680015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.30705213549692, + 38.892557094680015 + ], + [ + -77.32559658689651, + 38.892557094680015 + ], + [ + -77.3163243611967, + 38.88002689251134 + ], + [ + -77.30705213549692, + 38.892557094680015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.30705213549692, + 38.892557094680015 + ], + [ + -77.3163243611967, + 38.88002689251134 + ], + [ + -77.29777990979713, + 38.88002689251134 + ], + [ + -77.30705213549692, + 38.892557094680015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.30705213549692, + 38.892557094680015 + ], + [ + -77.29777990979713, + 38.88002689251134 + ], + [ + -77.28850768409733, + 38.892557094680015 + ], + [ + -77.30705213549692, + 38.892557094680015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.30705213549692, + 38.91761749901737 + ], + [ + -77.28850768409733, + 38.91761749901737 + ], + [ + -77.29777990979713, + 38.930147701186044 + ], + [ + -77.30705213549692, + 38.91761749901737 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.30705213549692, + 38.91761749901737 + ], + [ + -77.29777990979713, + 38.930147701186044 + ], + [ + -77.3163243611967, + 38.930147701186044 + ], + [ + -77.30705213549692, + 38.91761749901737 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.30705213549692, + 38.91761749901737 + ], + [ + -77.3163243611967, + 38.930147701186044 + ], + [ + -77.32559658689651, + 38.91761749901737 + ], + [ + -77.30705213549692, + 38.91761749901737 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.30705213549692, + 38.91761749901737 + ], + [ + -77.32559658689651, + 38.91761749901737 + ], + [ + -77.3163243611967, + 38.90508729684869 + ], + [ + -77.30705213549692, + 38.91761749901737 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.30705213549692, + 38.91761749901737 + ], + [ + -77.3163243611967, + 38.90508729684869 + ], + [ + -77.29777990979713, + 38.90508729684869 + ], + [ + -77.30705213549692, + 38.91761749901737 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.30705213549692, + 38.91761749901737 + ], + [ + -77.29777990979713, + 38.90508729684869 + ], + [ + -77.28850768409733, + 38.91761749901737 + ], + [ + -77.30705213549692, + 38.91761749901737 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.30705213549692, + 38.94267790335472 + ], + [ + -77.28850768409733, + 38.94267790335472 + ], + [ + -77.29777990979713, + 38.9552081055234 + ], + [ + -77.30705213549692, + 38.94267790335472 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.30705213549692, + 38.94267790335472 + ], + [ + -77.29777990979713, + 38.9552081055234 + ], + [ + -77.3163243611967, + 38.9552081055234 + ], + [ + -77.30705213549692, + 38.94267790335472 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.30705213549692, + 38.94267790335472 + ], + [ + -77.3163243611967, + 38.9552081055234 + ], + [ + -77.32559658689651, + 38.94267790335472 + ], + [ + -77.30705213549692, + 38.94267790335472 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.30705213549692, + 38.94267790335472 + ], + [ + -77.32559658689651, + 38.94267790335472 + ], + [ + -77.3163243611967, + 38.930147701186044 + ], + [ + -77.30705213549692, + 38.94267790335472 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.30705213549692, + 38.94267790335472 + ], + [ + -77.3163243611967, + 38.930147701186044 + ], + [ + -77.29777990979713, + 38.930147701186044 + ], + [ + -77.30705213549692, + 38.94267790335472 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.30705213549692, + 38.94267790335472 + ], + [ + -77.29777990979713, + 38.930147701186044 + ], + [ + -77.28850768409733, + 38.94267790335472 + ], + [ + -77.30705213549692, + 38.94267790335472 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.30705213549692, + 38.96773830769207 + ], + [ + -77.28850768409733, + 38.96773830769207 + ], + [ + -77.29777990979713, + 38.98026850986075 + ], + [ + -77.30705213549692, + 38.96773830769207 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.30705213549692, + 38.96773830769207 + ], + [ + -77.29777990979713, + 38.98026850986075 + ], + [ + -77.3163243611967, + 38.98026850986075 + ], + [ + -77.30705213549692, + 38.96773830769207 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.30705213549692, + 38.96773830769207 + ], + [ + -77.3163243611967, + 38.98026850986075 + ], + [ + -77.32559658689651, + 38.96773830769207 + ], + [ + -77.30705213549692, + 38.96773830769207 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.30705213549692, + 38.96773830769207 + ], + [ + -77.32559658689651, + 38.96773830769207 + ], + [ + -77.3163243611967, + 38.9552081055234 + ], + [ + -77.30705213549692, + 38.96773830769207 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.30705213549692, + 38.96773830769207 + ], + [ + -77.3163243611967, + 38.9552081055234 + ], + [ + -77.29777990979713, + 38.9552081055234 + ], + [ + -77.30705213549692, + 38.96773830769207 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.30705213549692, + 38.96773830769207 + ], + [ + -77.29777990979713, + 38.9552081055234 + ], + [ + -77.28850768409733, + 38.96773830769207 + ], + [ + -77.30705213549692, + 38.96773830769207 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.30705213549692, + 38.992798712029426 + ], + [ + -77.28850768409733, + 38.992798712029426 + ], + [ + -77.29777990979713, + 39.0053289141981 + ], + [ + -77.30705213549692, + 38.992798712029426 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.30705213549692, + 38.992798712029426 + ], + [ + -77.29777990979713, + 39.0053289141981 + ], + [ + -77.3163243611967, + 39.0053289141981 + ], + [ + -77.30705213549692, + 38.992798712029426 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.30705213549692, + 38.992798712029426 + ], + [ + -77.3163243611967, + 39.0053289141981 + ], + [ + -77.32559658689651, + 38.992798712029426 + ], + [ + -77.30705213549692, + 38.992798712029426 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.30705213549692, + 38.992798712029426 + ], + [ + -77.32559658689651, + 38.992798712029426 + ], + [ + -77.3163243611967, + 38.98026850986075 + ], + [ + -77.30705213549692, + 38.992798712029426 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.30705213549692, + 38.992798712029426 + ], + [ + -77.3163243611967, + 38.98026850986075 + ], + [ + -77.29777990979713, + 38.98026850986075 + ], + [ + -77.30705213549692, + 38.992798712029426 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.30705213549692, + 38.992798712029426 + ], + [ + -77.29777990979713, + 38.98026850986075 + ], + [ + -77.28850768409733, + 38.992798712029426 + ], + [ + -77.30705213549692, + 38.992798712029426 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.30705213549692, + 39.017859116366786 + ], + [ + -77.28850768409733, + 39.017859116366786 + ], + [ + -77.29777990979713, + 39.03038931853546 + ], + [ + -77.30705213549692, + 39.017859116366786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.30705213549692, + 39.017859116366786 + ], + [ + -77.29777990979713, + 39.03038931853546 + ], + [ + -77.3163243611967, + 39.03038931853546 + ], + [ + -77.30705213549692, + 39.017859116366786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.30705213549692, + 39.017859116366786 + ], + [ + -77.3163243611967, + 39.03038931853546 + ], + [ + -77.32559658689651, + 39.017859116366786 + ], + [ + -77.30705213549692, + 39.017859116366786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.30705213549692, + 39.017859116366786 + ], + [ + -77.32559658689651, + 39.017859116366786 + ], + [ + -77.3163243611967, + 39.00532891419811 + ], + [ + -77.30705213549692, + 39.017859116366786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.30705213549692, + 39.017859116366786 + ], + [ + -77.3163243611967, + 39.00532891419811 + ], + [ + -77.29777990979713, + 39.00532891419811 + ], + [ + -77.30705213549692, + 39.017859116366786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.30705213549692, + 39.017859116366786 + ], + [ + -77.29777990979713, + 39.00532891419811 + ], + [ + -77.28850768409733, + 39.017859116366786 + ], + [ + -77.30705213549692, + 39.017859116366786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.27923545839754, + 38.72966446648721 + ], + [ + -77.26069100699794, + 38.72966446648721 + ], + [ + -77.26996323269775, + 38.742194668655884 + ], + [ + -77.27923545839754, + 38.72966446648721 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.27923545839754, + 38.72966446648721 + ], + [ + -77.26996323269775, + 38.742194668655884 + ], + [ + -77.28850768409733, + 38.742194668655884 + ], + [ + -77.27923545839754, + 38.72966446648721 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.27923545839754, + 38.72966446648721 + ], + [ + -77.28850768409733, + 38.742194668655884 + ], + [ + -77.29777990979713, + 38.72966446648721 + ], + [ + -77.27923545839754, + 38.72966446648721 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.27923545839754, + 38.72966446648721 + ], + [ + -77.29777990979713, + 38.72966446648721 + ], + [ + -77.28850768409733, + 38.71713426431853 + ], + [ + -77.27923545839754, + 38.72966446648721 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.27923545839754, + 38.72966446648721 + ], + [ + -77.28850768409733, + 38.71713426431853 + ], + [ + -77.26996323269775, + 38.71713426431853 + ], + [ + -77.27923545839754, + 38.72966446648721 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.27923545839754, + 38.72966446648721 + ], + [ + -77.26996323269775, + 38.71713426431853 + ], + [ + -77.26069100699794, + 38.72966446648721 + ], + [ + -77.27923545839754, + 38.72966446648721 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.27923545839754, + 38.75472487082456 + ], + [ + -77.26069100699794, + 38.75472487082456 + ], + [ + -77.26996323269775, + 38.76725507299324 + ], + [ + -77.27923545839754, + 38.75472487082456 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.27923545839754, + 38.75472487082456 + ], + [ + -77.26996323269775, + 38.76725507299324 + ], + [ + -77.28850768409733, + 38.76725507299324 + ], + [ + -77.27923545839754, + 38.75472487082456 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.27923545839754, + 38.75472487082456 + ], + [ + -77.28850768409733, + 38.76725507299324 + ], + [ + -77.29777990979713, + 38.75472487082456 + ], + [ + -77.27923545839754, + 38.75472487082456 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.27923545839754, + 38.75472487082456 + ], + [ + -77.29777990979713, + 38.75472487082456 + ], + [ + -77.28850768409733, + 38.742194668655884 + ], + [ + -77.27923545839754, + 38.75472487082456 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.27923545839754, + 38.75472487082456 + ], + [ + -77.28850768409733, + 38.742194668655884 + ], + [ + -77.26996323269775, + 38.742194668655884 + ], + [ + -77.27923545839754, + 38.75472487082456 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.27923545839754, + 38.75472487082456 + ], + [ + -77.26996323269775, + 38.742194668655884 + ], + [ + -77.26069100699794, + 38.75472487082456 + ], + [ + -77.27923545839754, + 38.75472487082456 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.27923545839754, + 38.77978527516192 + ], + [ + -77.26069100699794, + 38.77978527516192 + ], + [ + -77.26996323269775, + 38.7923154773306 + ], + [ + -77.27923545839754, + 38.77978527516192 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.27923545839754, + 38.77978527516192 + ], + [ + -77.26996323269775, + 38.7923154773306 + ], + [ + -77.28850768409733, + 38.7923154773306 + ], + [ + -77.27923545839754, + 38.77978527516192 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.27923545839754, + 38.77978527516192 + ], + [ + -77.28850768409733, + 38.7923154773306 + ], + [ + -77.29777990979713, + 38.77978527516192 + ], + [ + -77.27923545839754, + 38.77978527516192 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.27923545839754, + 38.77978527516192 + ], + [ + -77.29777990979713, + 38.77978527516192 + ], + [ + -77.28850768409733, + 38.767255072993244 + ], + [ + -77.27923545839754, + 38.77978527516192 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.27923545839754, + 38.77978527516192 + ], + [ + -77.28850768409733, + 38.767255072993244 + ], + [ + -77.26996323269775, + 38.767255072993244 + ], + [ + -77.27923545839754, + 38.77978527516192 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.27923545839754, + 38.77978527516192 + ], + [ + -77.26996323269775, + 38.767255072993244 + ], + [ + -77.26069100699794, + 38.77978527516192 + ], + [ + -77.27923545839754, + 38.77978527516192 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.27923545839754, + 38.80484567949927 + ], + [ + -77.26069100699794, + 38.80484567949927 + ], + [ + -77.26996323269775, + 38.81737588166795 + ], + [ + -77.27923545839754, + 38.80484567949927 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.27923545839754, + 38.80484567949927 + ], + [ + -77.26996323269775, + 38.81737588166795 + ], + [ + -77.28850768409733, + 38.81737588166795 + ], + [ + -77.27923545839754, + 38.80484567949927 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.27923545839754, + 38.80484567949927 + ], + [ + -77.28850768409733, + 38.81737588166795 + ], + [ + -77.29777990979713, + 38.80484567949927 + ], + [ + -77.27923545839754, + 38.80484567949927 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.27923545839754, + 38.80484567949927 + ], + [ + -77.29777990979713, + 38.80484567949927 + ], + [ + -77.28850768409733, + 38.7923154773306 + ], + [ + -77.27923545839754, + 38.80484567949927 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.27923545839754, + 38.80484567949927 + ], + [ + -77.28850768409733, + 38.7923154773306 + ], + [ + -77.26996323269775, + 38.7923154773306 + ], + [ + -77.27923545839754, + 38.80484567949927 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.27923545839754, + 38.80484567949927 + ], + [ + -77.26996323269775, + 38.7923154773306 + ], + [ + -77.26069100699794, + 38.80484567949927 + ], + [ + -77.27923545839754, + 38.80484567949927 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.27923545839754, + 38.829906083836626 + ], + [ + -77.26069100699794, + 38.829906083836626 + ], + [ + -77.26996323269775, + 38.8424362860053 + ], + [ + -77.27923545839754, + 38.829906083836626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.27923545839754, + 38.829906083836626 + ], + [ + -77.26996323269775, + 38.8424362860053 + ], + [ + -77.28850768409733, + 38.8424362860053 + ], + [ + -77.27923545839754, + 38.829906083836626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.27923545839754, + 38.829906083836626 + ], + [ + -77.28850768409733, + 38.8424362860053 + ], + [ + -77.29777990979713, + 38.829906083836626 + ], + [ + -77.27923545839754, + 38.829906083836626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.27923545839754, + 38.829906083836626 + ], + [ + -77.29777990979713, + 38.829906083836626 + ], + [ + -77.28850768409733, + 38.81737588166795 + ], + [ + -77.27923545839754, + 38.829906083836626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.27923545839754, + 38.829906083836626 + ], + [ + -77.28850768409733, + 38.81737588166795 + ], + [ + -77.26996323269775, + 38.81737588166795 + ], + [ + -77.27923545839754, + 38.829906083836626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.27923545839754, + 38.829906083836626 + ], + [ + -77.26996323269775, + 38.81737588166795 + ], + [ + -77.26069100699794, + 38.829906083836626 + ], + [ + -77.27923545839754, + 38.829906083836626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.27923545839754, + 38.85496648817398 + ], + [ + -77.26069100699794, + 38.85496648817398 + ], + [ + -77.26996323269775, + 38.867496690342655 + ], + [ + -77.27923545839754, + 38.85496648817398 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.27923545839754, + 38.85496648817398 + ], + [ + -77.26996323269775, + 38.867496690342655 + ], + [ + -77.28850768409733, + 38.867496690342655 + ], + [ + -77.27923545839754, + 38.85496648817398 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.27923545839754, + 38.85496648817398 + ], + [ + -77.28850768409733, + 38.867496690342655 + ], + [ + -77.29777990979713, + 38.85496648817398 + ], + [ + -77.27923545839754, + 38.85496648817398 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.27923545839754, + 38.85496648817398 + ], + [ + -77.29777990979713, + 38.85496648817398 + ], + [ + -77.28850768409733, + 38.8424362860053 + ], + [ + -77.27923545839754, + 38.85496648817398 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.27923545839754, + 38.85496648817398 + ], + [ + -77.28850768409733, + 38.8424362860053 + ], + [ + -77.26996323269775, + 38.8424362860053 + ], + [ + -77.27923545839754, + 38.85496648817398 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.27923545839754, + 38.85496648817398 + ], + [ + -77.26996323269775, + 38.8424362860053 + ], + [ + -77.26069100699794, + 38.85496648817398 + ], + [ + -77.27923545839754, + 38.85496648817398 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.27923545839754, + 38.88002689251133 + ], + [ + -77.26069100699794, + 38.88002689251133 + ], + [ + -77.26996323269775, + 38.89255709468001 + ], + [ + -77.27923545839754, + 38.88002689251133 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.27923545839754, + 38.88002689251133 + ], + [ + -77.26996323269775, + 38.89255709468001 + ], + [ + -77.28850768409733, + 38.89255709468001 + ], + [ + -77.27923545839754, + 38.88002689251133 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.27923545839754, + 38.88002689251133 + ], + [ + -77.28850768409733, + 38.89255709468001 + ], + [ + -77.29777990979713, + 38.88002689251133 + ], + [ + -77.27923545839754, + 38.88002689251133 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.27923545839754, + 38.88002689251133 + ], + [ + -77.29777990979713, + 38.88002689251133 + ], + [ + -77.28850768409733, + 38.867496690342655 + ], + [ + -77.27923545839754, + 38.88002689251133 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.27923545839754, + 38.88002689251133 + ], + [ + -77.28850768409733, + 38.867496690342655 + ], + [ + -77.26996323269775, + 38.867496690342655 + ], + [ + -77.27923545839754, + 38.88002689251133 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.27923545839754, + 38.88002689251133 + ], + [ + -77.26996323269775, + 38.867496690342655 + ], + [ + -77.26069100699794, + 38.88002689251133 + ], + [ + -77.27923545839754, + 38.88002689251133 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.27923545839754, + 38.90508729684869 + ], + [ + -77.26069100699794, + 38.90508729684869 + ], + [ + -77.26996323269775, + 38.91761749901737 + ], + [ + -77.27923545839754, + 38.90508729684869 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.27923545839754, + 38.90508729684869 + ], + [ + -77.26996323269775, + 38.91761749901737 + ], + [ + -77.28850768409733, + 38.91761749901737 + ], + [ + -77.27923545839754, + 38.90508729684869 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.27923545839754, + 38.90508729684869 + ], + [ + -77.28850768409733, + 38.91761749901737 + ], + [ + -77.29777990979713, + 38.90508729684869 + ], + [ + -77.27923545839754, + 38.90508729684869 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.27923545839754, + 38.90508729684869 + ], + [ + -77.29777990979713, + 38.90508729684869 + ], + [ + -77.28850768409733, + 38.892557094680015 + ], + [ + -77.27923545839754, + 38.90508729684869 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.27923545839754, + 38.90508729684869 + ], + [ + -77.28850768409733, + 38.892557094680015 + ], + [ + -77.26996323269775, + 38.892557094680015 + ], + [ + -77.27923545839754, + 38.90508729684869 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.27923545839754, + 38.90508729684869 + ], + [ + -77.26996323269775, + 38.892557094680015 + ], + [ + -77.26069100699794, + 38.90508729684869 + ], + [ + -77.27923545839754, + 38.90508729684869 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.27923545839754, + 38.930147701186044 + ], + [ + -77.26069100699794, + 38.930147701186044 + ], + [ + -77.26996323269775, + 38.94267790335472 + ], + [ + -77.27923545839754, + 38.930147701186044 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.27923545839754, + 38.930147701186044 + ], + [ + -77.26996323269775, + 38.94267790335472 + ], + [ + -77.28850768409733, + 38.94267790335472 + ], + [ + -77.27923545839754, + 38.930147701186044 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.27923545839754, + 38.930147701186044 + ], + [ + -77.28850768409733, + 38.94267790335472 + ], + [ + -77.29777990979713, + 38.930147701186044 + ], + [ + -77.27923545839754, + 38.930147701186044 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.27923545839754, + 38.930147701186044 + ], + [ + -77.29777990979713, + 38.930147701186044 + ], + [ + -77.28850768409733, + 38.91761749901737 + ], + [ + -77.27923545839754, + 38.930147701186044 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.27923545839754, + 38.930147701186044 + ], + [ + -77.28850768409733, + 38.91761749901737 + ], + [ + -77.26996323269775, + 38.91761749901737 + ], + [ + -77.27923545839754, + 38.930147701186044 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.27923545839754, + 38.930147701186044 + ], + [ + -77.26996323269775, + 38.91761749901737 + ], + [ + -77.26069100699794, + 38.930147701186044 + ], + [ + -77.27923545839754, + 38.930147701186044 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.27923545839754, + 38.9552081055234 + ], + [ + -77.26069100699794, + 38.9552081055234 + ], + [ + -77.26996323269775, + 38.96773830769207 + ], + [ + -77.27923545839754, + 38.9552081055234 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.27923545839754, + 38.9552081055234 + ], + [ + -77.26996323269775, + 38.96773830769207 + ], + [ + -77.28850768409733, + 38.96773830769207 + ], + [ + -77.27923545839754, + 38.9552081055234 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.27923545839754, + 38.9552081055234 + ], + [ + -77.28850768409733, + 38.96773830769207 + ], + [ + -77.29777990979713, + 38.9552081055234 + ], + [ + -77.27923545839754, + 38.9552081055234 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.27923545839754, + 38.9552081055234 + ], + [ + -77.29777990979713, + 38.9552081055234 + ], + [ + -77.28850768409733, + 38.94267790335472 + ], + [ + -77.27923545839754, + 38.9552081055234 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.27923545839754, + 38.9552081055234 + ], + [ + -77.28850768409733, + 38.94267790335472 + ], + [ + -77.26996323269775, + 38.94267790335472 + ], + [ + -77.27923545839754, + 38.9552081055234 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.27923545839754, + 38.9552081055234 + ], + [ + -77.26996323269775, + 38.94267790335472 + ], + [ + -77.26069100699794, + 38.9552081055234 + ], + [ + -77.27923545839754, + 38.9552081055234 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.27923545839754, + 38.98026850986075 + ], + [ + -77.26069100699794, + 38.98026850986075 + ], + [ + -77.26996323269775, + 38.992798712029426 + ], + [ + -77.27923545839754, + 38.98026850986075 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.27923545839754, + 38.98026850986075 + ], + [ + -77.26996323269775, + 38.992798712029426 + ], + [ + -77.28850768409733, + 38.992798712029426 + ], + [ + -77.27923545839754, + 38.98026850986075 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.27923545839754, + 38.98026850986075 + ], + [ + -77.28850768409733, + 38.992798712029426 + ], + [ + -77.29777990979713, + 38.98026850986075 + ], + [ + -77.27923545839754, + 38.98026850986075 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.27923545839754, + 38.98026850986075 + ], + [ + -77.29777990979713, + 38.98026850986075 + ], + [ + -77.28850768409733, + 38.96773830769207 + ], + [ + -77.27923545839754, + 38.98026850986075 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.27923545839754, + 38.98026850986075 + ], + [ + -77.28850768409733, + 38.96773830769207 + ], + [ + -77.26996323269775, + 38.96773830769207 + ], + [ + -77.27923545839754, + 38.98026850986075 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.27923545839754, + 38.98026850986075 + ], + [ + -77.26996323269775, + 38.96773830769207 + ], + [ + -77.26069100699794, + 38.98026850986075 + ], + [ + -77.27923545839754, + 38.98026850986075 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.27923545839754, + 39.0053289141981 + ], + [ + -77.26069100699794, + 39.0053289141981 + ], + [ + -77.26996323269775, + 39.01785911636678 + ], + [ + -77.27923545839754, + 39.0053289141981 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.27923545839754, + 39.0053289141981 + ], + [ + -77.26996323269775, + 39.01785911636678 + ], + [ + -77.28850768409733, + 39.01785911636678 + ], + [ + -77.27923545839754, + 39.0053289141981 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.27923545839754, + 39.0053289141981 + ], + [ + -77.28850768409733, + 39.01785911636678 + ], + [ + -77.29777990979713, + 39.0053289141981 + ], + [ + -77.27923545839754, + 39.0053289141981 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.27923545839754, + 39.0053289141981 + ], + [ + -77.29777990979713, + 39.0053289141981 + ], + [ + -77.28850768409733, + 38.992798712029426 + ], + [ + -77.27923545839754, + 39.0053289141981 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.27923545839754, + 39.0053289141981 + ], + [ + -77.28850768409733, + 38.992798712029426 + ], + [ + -77.26996323269775, + 38.992798712029426 + ], + [ + -77.27923545839754, + 39.0053289141981 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.27923545839754, + 39.0053289141981 + ], + [ + -77.26996323269775, + 38.992798712029426 + ], + [ + -77.26069100699794, + 39.0053289141981 + ], + [ + -77.27923545839754, + 39.0053289141981 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.27923545839754, + 39.03038931853546 + ], + [ + -77.26069100699794, + 39.03038931853546 + ], + [ + -77.26996323269775, + 39.04291952070414 + ], + [ + -77.27923545839754, + 39.03038931853546 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.27923545839754, + 39.03038931853546 + ], + [ + -77.26996323269775, + 39.04291952070414 + ], + [ + -77.28850768409733, + 39.04291952070414 + ], + [ + -77.27923545839754, + 39.03038931853546 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.27923545839754, + 39.03038931853546 + ], + [ + -77.28850768409733, + 39.04291952070414 + ], + [ + -77.29777990979713, + 39.03038931853546 + ], + [ + -77.27923545839754, + 39.03038931853546 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.27923545839754, + 39.03038931853546 + ], + [ + -77.29777990979713, + 39.03038931853546 + ], + [ + -77.28850768409733, + 39.017859116366786 + ], + [ + -77.27923545839754, + 39.03038931853546 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.27923545839754, + 39.03038931853546 + ], + [ + -77.28850768409733, + 39.017859116366786 + ], + [ + -77.26996323269775, + 39.017859116366786 + ], + [ + -77.27923545839754, + 39.03038931853546 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.27923545839754, + 39.03038931853546 + ], + [ + -77.26996323269775, + 39.017859116366786 + ], + [ + -77.26069100699794, + 39.03038931853546 + ], + [ + -77.27923545839754, + 39.03038931853546 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.25141878129816, + 38.71713426431853 + ], + [ + -77.23287432989856, + 38.71713426431853 + ], + [ + -77.24214655559837, + 38.72966446648721 + ], + [ + -77.25141878129816, + 38.71713426431853 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.25141878129816, + 38.71713426431853 + ], + [ + -77.24214655559837, + 38.72966446648721 + ], + [ + -77.26069100699794, + 38.72966446648721 + ], + [ + -77.25141878129816, + 38.71713426431853 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.25141878129816, + 38.71713426431853 + ], + [ + -77.26069100699794, + 38.72966446648721 + ], + [ + -77.26996323269775, + 38.71713426431853 + ], + [ + -77.25141878129816, + 38.71713426431853 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.25141878129816, + 38.71713426431853 + ], + [ + -77.26996323269775, + 38.71713426431853 + ], + [ + -77.26069100699794, + 38.704604062149855 + ], + [ + -77.25141878129816, + 38.71713426431853 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.25141878129816, + 38.71713426431853 + ], + [ + -77.26069100699794, + 38.704604062149855 + ], + [ + -77.24214655559837, + 38.704604062149855 + ], + [ + -77.25141878129816, + 38.71713426431853 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.25141878129816, + 38.71713426431853 + ], + [ + -77.24214655559837, + 38.704604062149855 + ], + [ + -77.23287432989856, + 38.71713426431853 + ], + [ + -77.25141878129816, + 38.71713426431853 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.25141878129816, + 38.742194668655884 + ], + [ + -77.23287432989856, + 38.742194668655884 + ], + [ + -77.24214655559837, + 38.75472487082456 + ], + [ + -77.25141878129816, + 38.742194668655884 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.25141878129816, + 38.742194668655884 + ], + [ + -77.24214655559837, + 38.75472487082456 + ], + [ + -77.26069100699794, + 38.75472487082456 + ], + [ + -77.25141878129816, + 38.742194668655884 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.25141878129816, + 38.742194668655884 + ], + [ + -77.26069100699794, + 38.75472487082456 + ], + [ + -77.26996323269775, + 38.742194668655884 + ], + [ + -77.25141878129816, + 38.742194668655884 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.25141878129816, + 38.742194668655884 + ], + [ + -77.26996323269775, + 38.742194668655884 + ], + [ + -77.26069100699794, + 38.72966446648721 + ], + [ + -77.25141878129816, + 38.742194668655884 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.25141878129816, + 38.742194668655884 + ], + [ + -77.26069100699794, + 38.72966446648721 + ], + [ + -77.24214655559837, + 38.72966446648721 + ], + [ + -77.25141878129816, + 38.742194668655884 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.25141878129816, + 38.742194668655884 + ], + [ + -77.24214655559837, + 38.72966446648721 + ], + [ + -77.23287432989856, + 38.742194668655884 + ], + [ + -77.25141878129816, + 38.742194668655884 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.25141878129816, + 38.767255072993244 + ], + [ + -77.23287432989856, + 38.767255072993244 + ], + [ + -77.24214655559837, + 38.77978527516192 + ], + [ + -77.25141878129816, + 38.767255072993244 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.25141878129816, + 38.767255072993244 + ], + [ + -77.24214655559837, + 38.77978527516192 + ], + [ + -77.26069100699794, + 38.77978527516192 + ], + [ + -77.25141878129816, + 38.767255072993244 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.25141878129816, + 38.767255072993244 + ], + [ + -77.26069100699794, + 38.77978527516192 + ], + [ + -77.26996323269775, + 38.767255072993244 + ], + [ + -77.25141878129816, + 38.767255072993244 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.25141878129816, + 38.767255072993244 + ], + [ + -77.26996323269775, + 38.767255072993244 + ], + [ + -77.26069100699794, + 38.75472487082457 + ], + [ + -77.25141878129816, + 38.767255072993244 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.25141878129816, + 38.767255072993244 + ], + [ + -77.26069100699794, + 38.75472487082457 + ], + [ + -77.24214655559837, + 38.75472487082457 + ], + [ + -77.25141878129816, + 38.767255072993244 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.25141878129816, + 38.767255072993244 + ], + [ + -77.24214655559837, + 38.75472487082457 + ], + [ + -77.23287432989856, + 38.767255072993244 + ], + [ + -77.25141878129816, + 38.767255072993244 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.25141878129816, + 38.7923154773306 + ], + [ + -77.23287432989856, + 38.7923154773306 + ], + [ + -77.24214655559837, + 38.80484567949927 + ], + [ + -77.25141878129816, + 38.7923154773306 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.25141878129816, + 38.7923154773306 + ], + [ + -77.24214655559837, + 38.80484567949927 + ], + [ + -77.26069100699794, + 38.80484567949927 + ], + [ + -77.25141878129816, + 38.7923154773306 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.25141878129816, + 38.7923154773306 + ], + [ + -77.26069100699794, + 38.80484567949927 + ], + [ + -77.26996323269775, + 38.7923154773306 + ], + [ + -77.25141878129816, + 38.7923154773306 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.25141878129816, + 38.7923154773306 + ], + [ + -77.26996323269775, + 38.7923154773306 + ], + [ + -77.26069100699794, + 38.77978527516192 + ], + [ + -77.25141878129816, + 38.7923154773306 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.25141878129816, + 38.7923154773306 + ], + [ + -77.26069100699794, + 38.77978527516192 + ], + [ + -77.24214655559837, + 38.77978527516192 + ], + [ + -77.25141878129816, + 38.7923154773306 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.25141878129816, + 38.7923154773306 + ], + [ + -77.24214655559837, + 38.77978527516192 + ], + [ + -77.23287432989856, + 38.7923154773306 + ], + [ + -77.25141878129816, + 38.7923154773306 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.25141878129816, + 38.81737588166795 + ], + [ + -77.23287432989856, + 38.81737588166795 + ], + [ + -77.24214655559837, + 38.829906083836626 + ], + [ + -77.25141878129816, + 38.81737588166795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.25141878129816, + 38.81737588166795 + ], + [ + -77.24214655559837, + 38.829906083836626 + ], + [ + -77.26069100699794, + 38.829906083836626 + ], + [ + -77.25141878129816, + 38.81737588166795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.25141878129816, + 38.81737588166795 + ], + [ + -77.26069100699794, + 38.829906083836626 + ], + [ + -77.26996323269775, + 38.81737588166795 + ], + [ + -77.25141878129816, + 38.81737588166795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.25141878129816, + 38.81737588166795 + ], + [ + -77.26996323269775, + 38.81737588166795 + ], + [ + -77.26069100699794, + 38.80484567949927 + ], + [ + -77.25141878129816, + 38.81737588166795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.25141878129816, + 38.81737588166795 + ], + [ + -77.26069100699794, + 38.80484567949927 + ], + [ + -77.24214655559837, + 38.80484567949927 + ], + [ + -77.25141878129816, + 38.81737588166795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.25141878129816, + 38.81737588166795 + ], + [ + -77.24214655559837, + 38.80484567949927 + ], + [ + -77.23287432989856, + 38.81737588166795 + ], + [ + -77.25141878129816, + 38.81737588166795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.25141878129816, + 38.8424362860053 + ], + [ + -77.23287432989856, + 38.8424362860053 + ], + [ + -77.24214655559837, + 38.85496648817398 + ], + [ + -77.25141878129816, + 38.8424362860053 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.25141878129816, + 38.8424362860053 + ], + [ + -77.24214655559837, + 38.85496648817398 + ], + [ + -77.26069100699794, + 38.85496648817398 + ], + [ + -77.25141878129816, + 38.8424362860053 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.25141878129816, + 38.8424362860053 + ], + [ + -77.26069100699794, + 38.85496648817398 + ], + [ + -77.26996323269775, + 38.8424362860053 + ], + [ + -77.25141878129816, + 38.8424362860053 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.25141878129816, + 38.8424362860053 + ], + [ + -77.26996323269775, + 38.8424362860053 + ], + [ + -77.26069100699794, + 38.829906083836626 + ], + [ + -77.25141878129816, + 38.8424362860053 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.25141878129816, + 38.8424362860053 + ], + [ + -77.26069100699794, + 38.829906083836626 + ], + [ + -77.24214655559837, + 38.829906083836626 + ], + [ + -77.25141878129816, + 38.8424362860053 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.25141878129816, + 38.8424362860053 + ], + [ + -77.24214655559837, + 38.829906083836626 + ], + [ + -77.23287432989856, + 38.8424362860053 + ], + [ + -77.25141878129816, + 38.8424362860053 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.25141878129816, + 38.867496690342655 + ], + [ + -77.23287432989856, + 38.867496690342655 + ], + [ + -77.24214655559837, + 38.88002689251133 + ], + [ + -77.25141878129816, + 38.867496690342655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.25141878129816, + 38.867496690342655 + ], + [ + -77.24214655559837, + 38.88002689251133 + ], + [ + -77.26069100699794, + 38.88002689251133 + ], + [ + -77.25141878129816, + 38.867496690342655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.25141878129816, + 38.867496690342655 + ], + [ + -77.26069100699794, + 38.88002689251133 + ], + [ + -77.26996323269775, + 38.867496690342655 + ], + [ + -77.25141878129816, + 38.867496690342655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.25141878129816, + 38.867496690342655 + ], + [ + -77.26996323269775, + 38.867496690342655 + ], + [ + -77.26069100699794, + 38.85496648817398 + ], + [ + -77.25141878129816, + 38.867496690342655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.25141878129816, + 38.867496690342655 + ], + [ + -77.26069100699794, + 38.85496648817398 + ], + [ + -77.24214655559837, + 38.85496648817398 + ], + [ + -77.25141878129816, + 38.867496690342655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.25141878129816, + 38.867496690342655 + ], + [ + -77.24214655559837, + 38.85496648817398 + ], + [ + -77.23287432989856, + 38.867496690342655 + ], + [ + -77.25141878129816, + 38.867496690342655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.25141878129816, + 38.892557094680015 + ], + [ + -77.23287432989856, + 38.892557094680015 + ], + [ + -77.24214655559837, + 38.90508729684869 + ], + [ + -77.25141878129816, + 38.892557094680015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.25141878129816, + 38.892557094680015 + ], + [ + -77.24214655559837, + 38.90508729684869 + ], + [ + -77.26069100699794, + 38.90508729684869 + ], + [ + -77.25141878129816, + 38.892557094680015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.25141878129816, + 38.892557094680015 + ], + [ + -77.26069100699794, + 38.90508729684869 + ], + [ + -77.26996323269775, + 38.892557094680015 + ], + [ + -77.25141878129816, + 38.892557094680015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.25141878129816, + 38.892557094680015 + ], + [ + -77.26996323269775, + 38.892557094680015 + ], + [ + -77.26069100699794, + 38.88002689251134 + ], + [ + -77.25141878129816, + 38.892557094680015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.25141878129816, + 38.892557094680015 + ], + [ + -77.26069100699794, + 38.88002689251134 + ], + [ + -77.24214655559837, + 38.88002689251134 + ], + [ + -77.25141878129816, + 38.892557094680015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.25141878129816, + 38.892557094680015 + ], + [ + -77.24214655559837, + 38.88002689251134 + ], + [ + -77.23287432989856, + 38.892557094680015 + ], + [ + -77.25141878129816, + 38.892557094680015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.25141878129816, + 38.91761749901737 + ], + [ + -77.23287432989856, + 38.91761749901737 + ], + [ + -77.24214655559837, + 38.930147701186044 + ], + [ + -77.25141878129816, + 38.91761749901737 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.25141878129816, + 38.91761749901737 + ], + [ + -77.24214655559837, + 38.930147701186044 + ], + [ + -77.26069100699794, + 38.930147701186044 + ], + [ + -77.25141878129816, + 38.91761749901737 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.25141878129816, + 38.91761749901737 + ], + [ + -77.26069100699794, + 38.930147701186044 + ], + [ + -77.26996323269775, + 38.91761749901737 + ], + [ + -77.25141878129816, + 38.91761749901737 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.25141878129816, + 38.91761749901737 + ], + [ + -77.26996323269775, + 38.91761749901737 + ], + [ + -77.26069100699794, + 38.90508729684869 + ], + [ + -77.25141878129816, + 38.91761749901737 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.25141878129816, + 38.91761749901737 + ], + [ + -77.26069100699794, + 38.90508729684869 + ], + [ + -77.24214655559837, + 38.90508729684869 + ], + [ + -77.25141878129816, + 38.91761749901737 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.25141878129816, + 38.91761749901737 + ], + [ + -77.24214655559837, + 38.90508729684869 + ], + [ + -77.23287432989856, + 38.91761749901737 + ], + [ + -77.25141878129816, + 38.91761749901737 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.25141878129816, + 38.94267790335472 + ], + [ + -77.23287432989856, + 38.94267790335472 + ], + [ + -77.24214655559837, + 38.9552081055234 + ], + [ + -77.25141878129816, + 38.94267790335472 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.25141878129816, + 38.94267790335472 + ], + [ + -77.24214655559837, + 38.9552081055234 + ], + [ + -77.26069100699794, + 38.9552081055234 + ], + [ + -77.25141878129816, + 38.94267790335472 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.25141878129816, + 38.94267790335472 + ], + [ + -77.26069100699794, + 38.9552081055234 + ], + [ + -77.26996323269775, + 38.94267790335472 + ], + [ + -77.25141878129816, + 38.94267790335472 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.25141878129816, + 38.94267790335472 + ], + [ + -77.26996323269775, + 38.94267790335472 + ], + [ + -77.26069100699794, + 38.930147701186044 + ], + [ + -77.25141878129816, + 38.94267790335472 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.25141878129816, + 38.94267790335472 + ], + [ + -77.26069100699794, + 38.930147701186044 + ], + [ + -77.24214655559837, + 38.930147701186044 + ], + [ + -77.25141878129816, + 38.94267790335472 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.25141878129816, + 38.94267790335472 + ], + [ + -77.24214655559837, + 38.930147701186044 + ], + [ + -77.23287432989856, + 38.94267790335472 + ], + [ + -77.25141878129816, + 38.94267790335472 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.25141878129816, + 38.96773830769207 + ], + [ + -77.23287432989856, + 38.96773830769207 + ], + [ + -77.24214655559837, + 38.98026850986075 + ], + [ + -77.25141878129816, + 38.96773830769207 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.25141878129816, + 38.96773830769207 + ], + [ + -77.24214655559837, + 38.98026850986075 + ], + [ + -77.26069100699794, + 38.98026850986075 + ], + [ + -77.25141878129816, + 38.96773830769207 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.25141878129816, + 38.96773830769207 + ], + [ + -77.26069100699794, + 38.98026850986075 + ], + [ + -77.26996323269775, + 38.96773830769207 + ], + [ + -77.25141878129816, + 38.96773830769207 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.25141878129816, + 38.96773830769207 + ], + [ + -77.26996323269775, + 38.96773830769207 + ], + [ + -77.26069100699794, + 38.9552081055234 + ], + [ + -77.25141878129816, + 38.96773830769207 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.25141878129816, + 38.96773830769207 + ], + [ + -77.26069100699794, + 38.9552081055234 + ], + [ + -77.24214655559837, + 38.9552081055234 + ], + [ + -77.25141878129816, + 38.96773830769207 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.25141878129816, + 38.96773830769207 + ], + [ + -77.24214655559837, + 38.9552081055234 + ], + [ + -77.23287432989856, + 38.96773830769207 + ], + [ + -77.25141878129816, + 38.96773830769207 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.25141878129816, + 38.992798712029426 + ], + [ + -77.23287432989856, + 38.992798712029426 + ], + [ + -77.24214655559837, + 39.0053289141981 + ], + [ + -77.25141878129816, + 38.992798712029426 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.25141878129816, + 38.992798712029426 + ], + [ + -77.24214655559837, + 39.0053289141981 + ], + [ + -77.26069100699794, + 39.0053289141981 + ], + [ + -77.25141878129816, + 38.992798712029426 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.25141878129816, + 38.992798712029426 + ], + [ + -77.26069100699794, + 39.0053289141981 + ], + [ + -77.26996323269775, + 38.992798712029426 + ], + [ + -77.25141878129816, + 38.992798712029426 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.25141878129816, + 38.992798712029426 + ], + [ + -77.26996323269775, + 38.992798712029426 + ], + [ + -77.26069100699794, + 38.98026850986075 + ], + [ + -77.25141878129816, + 38.992798712029426 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.25141878129816, + 38.992798712029426 + ], + [ + -77.26069100699794, + 38.98026850986075 + ], + [ + -77.24214655559837, + 38.98026850986075 + ], + [ + -77.25141878129816, + 38.992798712029426 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.25141878129816, + 38.992798712029426 + ], + [ + -77.24214655559837, + 38.98026850986075 + ], + [ + -77.23287432989856, + 38.992798712029426 + ], + [ + -77.25141878129816, + 38.992798712029426 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.25141878129816, + 39.017859116366786 + ], + [ + -77.23287432989856, + 39.017859116366786 + ], + [ + -77.24214655559837, + 39.03038931853546 + ], + [ + -77.25141878129816, + 39.017859116366786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.25141878129816, + 39.017859116366786 + ], + [ + -77.24214655559837, + 39.03038931853546 + ], + [ + -77.26069100699794, + 39.03038931853546 + ], + [ + -77.25141878129816, + 39.017859116366786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.25141878129816, + 39.017859116366786 + ], + [ + -77.26069100699794, + 39.03038931853546 + ], + [ + -77.26996323269775, + 39.017859116366786 + ], + [ + -77.25141878129816, + 39.017859116366786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.25141878129816, + 39.017859116366786 + ], + [ + -77.26996323269775, + 39.017859116366786 + ], + [ + -77.26069100699794, + 39.00532891419811 + ], + [ + -77.25141878129816, + 39.017859116366786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.25141878129816, + 39.017859116366786 + ], + [ + -77.26069100699794, + 39.00532891419811 + ], + [ + -77.24214655559837, + 39.00532891419811 + ], + [ + -77.25141878129816, + 39.017859116366786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.25141878129816, + 39.017859116366786 + ], + [ + -77.24214655559837, + 39.00532891419811 + ], + [ + -77.23287432989856, + 39.017859116366786 + ], + [ + -77.25141878129816, + 39.017859116366786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.22360210419878, + 38.72966446648721 + ], + [ + -77.20505765279918, + 38.72966446648721 + ], + [ + -77.21432987849899, + 38.742194668655884 + ], + [ + -77.22360210419878, + 38.72966446648721 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.22360210419878, + 38.72966446648721 + ], + [ + -77.21432987849899, + 38.742194668655884 + ], + [ + -77.23287432989856, + 38.742194668655884 + ], + [ + -77.22360210419878, + 38.72966446648721 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.22360210419878, + 38.72966446648721 + ], + [ + -77.23287432989856, + 38.742194668655884 + ], + [ + -77.24214655559837, + 38.72966446648721 + ], + [ + -77.22360210419878, + 38.72966446648721 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.22360210419878, + 38.72966446648721 + ], + [ + -77.24214655559837, + 38.72966446648721 + ], + [ + -77.23287432989856, + 38.71713426431853 + ], + [ + -77.22360210419878, + 38.72966446648721 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.22360210419878, + 38.72966446648721 + ], + [ + -77.23287432989856, + 38.71713426431853 + ], + [ + -77.21432987849899, + 38.71713426431853 + ], + [ + -77.22360210419878, + 38.72966446648721 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.22360210419878, + 38.72966446648721 + ], + [ + -77.21432987849899, + 38.71713426431853 + ], + [ + -77.20505765279918, + 38.72966446648721 + ], + [ + -77.22360210419878, + 38.72966446648721 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.22360210419878, + 38.75472487082456 + ], + [ + -77.20505765279918, + 38.75472487082456 + ], + [ + -77.21432987849899, + 38.76725507299324 + ], + [ + -77.22360210419878, + 38.75472487082456 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.22360210419878, + 38.75472487082456 + ], + [ + -77.21432987849899, + 38.76725507299324 + ], + [ + -77.23287432989856, + 38.76725507299324 + ], + [ + -77.22360210419878, + 38.75472487082456 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.22360210419878, + 38.75472487082456 + ], + [ + -77.23287432989856, + 38.76725507299324 + ], + [ + -77.24214655559837, + 38.75472487082456 + ], + [ + -77.22360210419878, + 38.75472487082456 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.22360210419878, + 38.75472487082456 + ], + [ + -77.24214655559837, + 38.75472487082456 + ], + [ + -77.23287432989856, + 38.742194668655884 + ], + [ + -77.22360210419878, + 38.75472487082456 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.22360210419878, + 38.75472487082456 + ], + [ + -77.23287432989856, + 38.742194668655884 + ], + [ + -77.21432987849899, + 38.742194668655884 + ], + [ + -77.22360210419878, + 38.75472487082456 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.22360210419878, + 38.75472487082456 + ], + [ + -77.21432987849899, + 38.742194668655884 + ], + [ + -77.20505765279918, + 38.75472487082456 + ], + [ + -77.22360210419878, + 38.75472487082456 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.22360210419878, + 38.77978527516192 + ], + [ + -77.20505765279918, + 38.77978527516192 + ], + [ + -77.21432987849899, + 38.7923154773306 + ], + [ + -77.22360210419878, + 38.77978527516192 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.22360210419878, + 38.77978527516192 + ], + [ + -77.21432987849899, + 38.7923154773306 + ], + [ + -77.23287432989856, + 38.7923154773306 + ], + [ + -77.22360210419878, + 38.77978527516192 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.22360210419878, + 38.77978527516192 + ], + [ + -77.23287432989856, + 38.7923154773306 + ], + [ + -77.24214655559837, + 38.77978527516192 + ], + [ + -77.22360210419878, + 38.77978527516192 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.22360210419878, + 38.77978527516192 + ], + [ + -77.24214655559837, + 38.77978527516192 + ], + [ + -77.23287432989856, + 38.767255072993244 + ], + [ + -77.22360210419878, + 38.77978527516192 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.22360210419878, + 38.77978527516192 + ], + [ + -77.23287432989856, + 38.767255072993244 + ], + [ + -77.21432987849899, + 38.767255072993244 + ], + [ + -77.22360210419878, + 38.77978527516192 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.22360210419878, + 38.77978527516192 + ], + [ + -77.21432987849899, + 38.767255072993244 + ], + [ + -77.20505765279918, + 38.77978527516192 + ], + [ + -77.22360210419878, + 38.77978527516192 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.22360210419878, + 38.80484567949927 + ], + [ + -77.20505765279918, + 38.80484567949927 + ], + [ + -77.21432987849899, + 38.81737588166795 + ], + [ + -77.22360210419878, + 38.80484567949927 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.22360210419878, + 38.80484567949927 + ], + [ + -77.21432987849899, + 38.81737588166795 + ], + [ + -77.23287432989856, + 38.81737588166795 + ], + [ + -77.22360210419878, + 38.80484567949927 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.22360210419878, + 38.80484567949927 + ], + [ + -77.23287432989856, + 38.81737588166795 + ], + [ + -77.24214655559837, + 38.80484567949927 + ], + [ + -77.22360210419878, + 38.80484567949927 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.22360210419878, + 38.80484567949927 + ], + [ + -77.24214655559837, + 38.80484567949927 + ], + [ + -77.23287432989856, + 38.7923154773306 + ], + [ + -77.22360210419878, + 38.80484567949927 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.22360210419878, + 38.80484567949927 + ], + [ + -77.23287432989856, + 38.7923154773306 + ], + [ + -77.21432987849899, + 38.7923154773306 + ], + [ + -77.22360210419878, + 38.80484567949927 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.22360210419878, + 38.80484567949927 + ], + [ + -77.21432987849899, + 38.7923154773306 + ], + [ + -77.20505765279918, + 38.80484567949927 + ], + [ + -77.22360210419878, + 38.80484567949927 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.22360210419878, + 38.829906083836626 + ], + [ + -77.20505765279918, + 38.829906083836626 + ], + [ + -77.21432987849899, + 38.8424362860053 + ], + [ + -77.22360210419878, + 38.829906083836626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.22360210419878, + 38.829906083836626 + ], + [ + -77.21432987849899, + 38.8424362860053 + ], + [ + -77.23287432989856, + 38.8424362860053 + ], + [ + -77.22360210419878, + 38.829906083836626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.22360210419878, + 38.829906083836626 + ], + [ + -77.23287432989856, + 38.8424362860053 + ], + [ + -77.24214655559837, + 38.829906083836626 + ], + [ + -77.22360210419878, + 38.829906083836626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.22360210419878, + 38.829906083836626 + ], + [ + -77.24214655559837, + 38.829906083836626 + ], + [ + -77.23287432989856, + 38.81737588166795 + ], + [ + -77.22360210419878, + 38.829906083836626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.22360210419878, + 38.829906083836626 + ], + [ + -77.23287432989856, + 38.81737588166795 + ], + [ + -77.21432987849899, + 38.81737588166795 + ], + [ + -77.22360210419878, + 38.829906083836626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.22360210419878, + 38.829906083836626 + ], + [ + -77.21432987849899, + 38.81737588166795 + ], + [ + -77.20505765279918, + 38.829906083836626 + ], + [ + -77.22360210419878, + 38.829906083836626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.22360210419878, + 38.85496648817398 + ], + [ + -77.20505765279918, + 38.85496648817398 + ], + [ + -77.21432987849899, + 38.867496690342655 + ], + [ + -77.22360210419878, + 38.85496648817398 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.22360210419878, + 38.85496648817398 + ], + [ + -77.21432987849899, + 38.867496690342655 + ], + [ + -77.23287432989856, + 38.867496690342655 + ], + [ + -77.22360210419878, + 38.85496648817398 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.22360210419878, + 38.85496648817398 + ], + [ + -77.23287432989856, + 38.867496690342655 + ], + [ + -77.24214655559837, + 38.85496648817398 + ], + [ + -77.22360210419878, + 38.85496648817398 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.22360210419878, + 38.85496648817398 + ], + [ + -77.24214655559837, + 38.85496648817398 + ], + [ + -77.23287432989856, + 38.8424362860053 + ], + [ + -77.22360210419878, + 38.85496648817398 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.22360210419878, + 38.85496648817398 + ], + [ + -77.23287432989856, + 38.8424362860053 + ], + [ + -77.21432987849899, + 38.8424362860053 + ], + [ + -77.22360210419878, + 38.85496648817398 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.22360210419878, + 38.85496648817398 + ], + [ + -77.21432987849899, + 38.8424362860053 + ], + [ + -77.20505765279918, + 38.85496648817398 + ], + [ + -77.22360210419878, + 38.85496648817398 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.22360210419878, + 38.88002689251133 + ], + [ + -77.20505765279918, + 38.88002689251133 + ], + [ + -77.21432987849899, + 38.89255709468001 + ], + [ + -77.22360210419878, + 38.88002689251133 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.22360210419878, + 38.88002689251133 + ], + [ + -77.21432987849899, + 38.89255709468001 + ], + [ + -77.23287432989856, + 38.89255709468001 + ], + [ + -77.22360210419878, + 38.88002689251133 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.22360210419878, + 38.88002689251133 + ], + [ + -77.23287432989856, + 38.89255709468001 + ], + [ + -77.24214655559837, + 38.88002689251133 + ], + [ + -77.22360210419878, + 38.88002689251133 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.22360210419878, + 38.88002689251133 + ], + [ + -77.24214655559837, + 38.88002689251133 + ], + [ + -77.23287432989856, + 38.867496690342655 + ], + [ + -77.22360210419878, + 38.88002689251133 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.22360210419878, + 38.88002689251133 + ], + [ + -77.23287432989856, + 38.867496690342655 + ], + [ + -77.21432987849899, + 38.867496690342655 + ], + [ + -77.22360210419878, + 38.88002689251133 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.22360210419878, + 38.88002689251133 + ], + [ + -77.21432987849899, + 38.867496690342655 + ], + [ + -77.20505765279918, + 38.88002689251133 + ], + [ + -77.22360210419878, + 38.88002689251133 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.22360210419878, + 38.90508729684869 + ], + [ + -77.20505765279918, + 38.90508729684869 + ], + [ + -77.21432987849899, + 38.91761749901737 + ], + [ + -77.22360210419878, + 38.90508729684869 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.22360210419878, + 38.90508729684869 + ], + [ + -77.21432987849899, + 38.91761749901737 + ], + [ + -77.23287432989856, + 38.91761749901737 + ], + [ + -77.22360210419878, + 38.90508729684869 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.22360210419878, + 38.90508729684869 + ], + [ + -77.23287432989856, + 38.91761749901737 + ], + [ + -77.24214655559837, + 38.90508729684869 + ], + [ + -77.22360210419878, + 38.90508729684869 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.22360210419878, + 38.90508729684869 + ], + [ + -77.24214655559837, + 38.90508729684869 + ], + [ + -77.23287432989856, + 38.892557094680015 + ], + [ + -77.22360210419878, + 38.90508729684869 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.22360210419878, + 38.90508729684869 + ], + [ + -77.23287432989856, + 38.892557094680015 + ], + [ + -77.21432987849899, + 38.892557094680015 + ], + [ + -77.22360210419878, + 38.90508729684869 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.22360210419878, + 38.90508729684869 + ], + [ + -77.21432987849899, + 38.892557094680015 + ], + [ + -77.20505765279918, + 38.90508729684869 + ], + [ + -77.22360210419878, + 38.90508729684869 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.22360210419878, + 38.930147701186044 + ], + [ + -77.20505765279918, + 38.930147701186044 + ], + [ + -77.21432987849899, + 38.94267790335472 + ], + [ + -77.22360210419878, + 38.930147701186044 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.22360210419878, + 38.930147701186044 + ], + [ + -77.21432987849899, + 38.94267790335472 + ], + [ + -77.23287432989856, + 38.94267790335472 + ], + [ + -77.22360210419878, + 38.930147701186044 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.22360210419878, + 38.930147701186044 + ], + [ + -77.23287432989856, + 38.94267790335472 + ], + [ + -77.24214655559837, + 38.930147701186044 + ], + [ + -77.22360210419878, + 38.930147701186044 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.22360210419878, + 38.930147701186044 + ], + [ + -77.24214655559837, + 38.930147701186044 + ], + [ + -77.23287432989856, + 38.91761749901737 + ], + [ + -77.22360210419878, + 38.930147701186044 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.22360210419878, + 38.930147701186044 + ], + [ + -77.23287432989856, + 38.91761749901737 + ], + [ + -77.21432987849899, + 38.91761749901737 + ], + [ + -77.22360210419878, + 38.930147701186044 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.22360210419878, + 38.930147701186044 + ], + [ + -77.21432987849899, + 38.91761749901737 + ], + [ + -77.20505765279918, + 38.930147701186044 + ], + [ + -77.22360210419878, + 38.930147701186044 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.22360210419878, + 38.9552081055234 + ], + [ + -77.20505765279918, + 38.9552081055234 + ], + [ + -77.21432987849899, + 38.96773830769207 + ], + [ + -77.22360210419878, + 38.9552081055234 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.22360210419878, + 38.9552081055234 + ], + [ + -77.21432987849899, + 38.96773830769207 + ], + [ + -77.23287432989856, + 38.96773830769207 + ], + [ + -77.22360210419878, + 38.9552081055234 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.22360210419878, + 38.9552081055234 + ], + [ + -77.23287432989856, + 38.96773830769207 + ], + [ + -77.24214655559837, + 38.9552081055234 + ], + [ + -77.22360210419878, + 38.9552081055234 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.22360210419878, + 38.9552081055234 + ], + [ + -77.24214655559837, + 38.9552081055234 + ], + [ + -77.23287432989856, + 38.94267790335472 + ], + [ + -77.22360210419878, + 38.9552081055234 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.22360210419878, + 38.9552081055234 + ], + [ + -77.23287432989856, + 38.94267790335472 + ], + [ + -77.21432987849899, + 38.94267790335472 + ], + [ + -77.22360210419878, + 38.9552081055234 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.22360210419878, + 38.9552081055234 + ], + [ + -77.21432987849899, + 38.94267790335472 + ], + [ + -77.20505765279918, + 38.9552081055234 + ], + [ + -77.22360210419878, + 38.9552081055234 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.22360210419878, + 38.98026850986075 + ], + [ + -77.20505765279918, + 38.98026850986075 + ], + [ + -77.21432987849899, + 38.992798712029426 + ], + [ + -77.22360210419878, + 38.98026850986075 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.22360210419878, + 38.98026850986075 + ], + [ + -77.21432987849899, + 38.992798712029426 + ], + [ + -77.23287432989856, + 38.992798712029426 + ], + [ + -77.22360210419878, + 38.98026850986075 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.22360210419878, + 38.98026850986075 + ], + [ + -77.23287432989856, + 38.992798712029426 + ], + [ + -77.24214655559837, + 38.98026850986075 + ], + [ + -77.22360210419878, + 38.98026850986075 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.22360210419878, + 38.98026850986075 + ], + [ + -77.24214655559837, + 38.98026850986075 + ], + [ + -77.23287432989856, + 38.96773830769207 + ], + [ + -77.22360210419878, + 38.98026850986075 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.22360210419878, + 38.98026850986075 + ], + [ + -77.23287432989856, + 38.96773830769207 + ], + [ + -77.21432987849899, + 38.96773830769207 + ], + [ + -77.22360210419878, + 38.98026850986075 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.22360210419878, + 38.98026850986075 + ], + [ + -77.21432987849899, + 38.96773830769207 + ], + [ + -77.20505765279918, + 38.98026850986075 + ], + [ + -77.22360210419878, + 38.98026850986075 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.22360210419878, + 39.0053289141981 + ], + [ + -77.20505765279918, + 39.0053289141981 + ], + [ + -77.21432987849899, + 39.01785911636678 + ], + [ + -77.22360210419878, + 39.0053289141981 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.22360210419878, + 39.0053289141981 + ], + [ + -77.21432987849899, + 39.01785911636678 + ], + [ + -77.23287432989856, + 39.01785911636678 + ], + [ + -77.22360210419878, + 39.0053289141981 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.22360210419878, + 39.0053289141981 + ], + [ + -77.23287432989856, + 39.01785911636678 + ], + [ + -77.24214655559837, + 39.0053289141981 + ], + [ + -77.22360210419878, + 39.0053289141981 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.22360210419878, + 39.0053289141981 + ], + [ + -77.24214655559837, + 39.0053289141981 + ], + [ + -77.23287432989856, + 38.992798712029426 + ], + [ + -77.22360210419878, + 39.0053289141981 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.22360210419878, + 39.0053289141981 + ], + [ + -77.23287432989856, + 38.992798712029426 + ], + [ + -77.21432987849899, + 38.992798712029426 + ], + [ + -77.22360210419878, + 39.0053289141981 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.22360210419878, + 39.0053289141981 + ], + [ + -77.21432987849899, + 38.992798712029426 + ], + [ + -77.20505765279918, + 39.0053289141981 + ], + [ + -77.22360210419878, + 39.0053289141981 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.22360210419878, + 39.03038931853546 + ], + [ + -77.20505765279918, + 39.03038931853546 + ], + [ + -77.21432987849899, + 39.04291952070414 + ], + [ + -77.22360210419878, + 39.03038931853546 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.22360210419878, + 39.03038931853546 + ], + [ + -77.21432987849899, + 39.04291952070414 + ], + [ + -77.23287432989856, + 39.04291952070414 + ], + [ + -77.22360210419878, + 39.03038931853546 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.22360210419878, + 39.03038931853546 + ], + [ + -77.23287432989856, + 39.04291952070414 + ], + [ + -77.24214655559837, + 39.03038931853546 + ], + [ + -77.22360210419878, + 39.03038931853546 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.22360210419878, + 39.03038931853546 + ], + [ + -77.24214655559837, + 39.03038931853546 + ], + [ + -77.23287432989856, + 39.017859116366786 + ], + [ + -77.22360210419878, + 39.03038931853546 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.22360210419878, + 39.03038931853546 + ], + [ + -77.23287432989856, + 39.017859116366786 + ], + [ + -77.21432987849899, + 39.017859116366786 + ], + [ + -77.22360210419878, + 39.03038931853546 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.22360210419878, + 39.03038931853546 + ], + [ + -77.21432987849899, + 39.017859116366786 + ], + [ + -77.20505765279918, + 39.03038931853546 + ], + [ + -77.22360210419878, + 39.03038931853546 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.19578542709938, + 38.71713426431853 + ], + [ + -77.17724097569979, + 38.71713426431853 + ], + [ + -77.18651320139959, + 38.72966446648721 + ], + [ + -77.19578542709938, + 38.71713426431853 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.19578542709938, + 38.71713426431853 + ], + [ + -77.18651320139959, + 38.72966446648721 + ], + [ + -77.20505765279917, + 38.72966446648721 + ], + [ + -77.19578542709938, + 38.71713426431853 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.19578542709938, + 38.71713426431853 + ], + [ + -77.20505765279917, + 38.72966446648721 + ], + [ + -77.21432987849897, + 38.71713426431853 + ], + [ + -77.19578542709938, + 38.71713426431853 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.19578542709938, + 38.71713426431853 + ], + [ + -77.21432987849897, + 38.71713426431853 + ], + [ + -77.20505765279917, + 38.704604062149855 + ], + [ + -77.19578542709938, + 38.71713426431853 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.19578542709938, + 38.71713426431853 + ], + [ + -77.20505765279917, + 38.704604062149855 + ], + [ + -77.18651320139959, + 38.704604062149855 + ], + [ + -77.19578542709938, + 38.71713426431853 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.19578542709938, + 38.71713426431853 + ], + [ + -77.18651320139959, + 38.704604062149855 + ], + [ + -77.17724097569979, + 38.71713426431853 + ], + [ + -77.19578542709938, + 38.71713426431853 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.19578542709938, + 38.742194668655884 + ], + [ + -77.17724097569979, + 38.742194668655884 + ], + [ + -77.18651320139959, + 38.75472487082456 + ], + [ + -77.19578542709938, + 38.742194668655884 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.19578542709938, + 38.742194668655884 + ], + [ + -77.18651320139959, + 38.75472487082456 + ], + [ + -77.20505765279917, + 38.75472487082456 + ], + [ + -77.19578542709938, + 38.742194668655884 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.19578542709938, + 38.742194668655884 + ], + [ + -77.20505765279917, + 38.75472487082456 + ], + [ + -77.21432987849897, + 38.742194668655884 + ], + [ + -77.19578542709938, + 38.742194668655884 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.19578542709938, + 38.742194668655884 + ], + [ + -77.21432987849897, + 38.742194668655884 + ], + [ + -77.20505765279917, + 38.72966446648721 + ], + [ + -77.19578542709938, + 38.742194668655884 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.19578542709938, + 38.742194668655884 + ], + [ + -77.20505765279917, + 38.72966446648721 + ], + [ + -77.18651320139959, + 38.72966446648721 + ], + [ + -77.19578542709938, + 38.742194668655884 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.19578542709938, + 38.742194668655884 + ], + [ + -77.18651320139959, + 38.72966446648721 + ], + [ + -77.17724097569979, + 38.742194668655884 + ], + [ + -77.19578542709938, + 38.742194668655884 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.19578542709938, + 38.767255072993244 + ], + [ + -77.17724097569979, + 38.767255072993244 + ], + [ + -77.18651320139959, + 38.77978527516192 + ], + [ + -77.19578542709938, + 38.767255072993244 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.19578542709938, + 38.767255072993244 + ], + [ + -77.18651320139959, + 38.77978527516192 + ], + [ + -77.20505765279917, + 38.77978527516192 + ], + [ + -77.19578542709938, + 38.767255072993244 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.19578542709938, + 38.767255072993244 + ], + [ + -77.20505765279917, + 38.77978527516192 + ], + [ + -77.21432987849897, + 38.767255072993244 + ], + [ + -77.19578542709938, + 38.767255072993244 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.19578542709938, + 38.767255072993244 + ], + [ + -77.21432987849897, + 38.767255072993244 + ], + [ + -77.20505765279917, + 38.75472487082457 + ], + [ + -77.19578542709938, + 38.767255072993244 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.19578542709938, + 38.767255072993244 + ], + [ + -77.20505765279917, + 38.75472487082457 + ], + [ + -77.18651320139959, + 38.75472487082457 + ], + [ + -77.19578542709938, + 38.767255072993244 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.19578542709938, + 38.767255072993244 + ], + [ + -77.18651320139959, + 38.75472487082457 + ], + [ + -77.17724097569979, + 38.767255072993244 + ], + [ + -77.19578542709938, + 38.767255072993244 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.19578542709938, + 38.7923154773306 + ], + [ + -77.17724097569979, + 38.7923154773306 + ], + [ + -77.18651320139959, + 38.80484567949927 + ], + [ + -77.19578542709938, + 38.7923154773306 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.19578542709938, + 38.7923154773306 + ], + [ + -77.18651320139959, + 38.80484567949927 + ], + [ + -77.20505765279917, + 38.80484567949927 + ], + [ + -77.19578542709938, + 38.7923154773306 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.19578542709938, + 38.7923154773306 + ], + [ + -77.20505765279917, + 38.80484567949927 + ], + [ + -77.21432987849897, + 38.7923154773306 + ], + [ + -77.19578542709938, + 38.7923154773306 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.19578542709938, + 38.7923154773306 + ], + [ + -77.21432987849897, + 38.7923154773306 + ], + [ + -77.20505765279917, + 38.77978527516192 + ], + [ + -77.19578542709938, + 38.7923154773306 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.19578542709938, + 38.7923154773306 + ], + [ + -77.20505765279917, + 38.77978527516192 + ], + [ + -77.18651320139959, + 38.77978527516192 + ], + [ + -77.19578542709938, + 38.7923154773306 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.19578542709938, + 38.7923154773306 + ], + [ + -77.18651320139959, + 38.77978527516192 + ], + [ + -77.17724097569979, + 38.7923154773306 + ], + [ + -77.19578542709938, + 38.7923154773306 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.19578542709938, + 38.81737588166795 + ], + [ + -77.17724097569979, + 38.81737588166795 + ], + [ + -77.18651320139959, + 38.829906083836626 + ], + [ + -77.19578542709938, + 38.81737588166795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.19578542709938, + 38.81737588166795 + ], + [ + -77.18651320139959, + 38.829906083836626 + ], + [ + -77.20505765279917, + 38.829906083836626 + ], + [ + -77.19578542709938, + 38.81737588166795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.19578542709938, + 38.81737588166795 + ], + [ + -77.20505765279917, + 38.829906083836626 + ], + [ + -77.21432987849897, + 38.81737588166795 + ], + [ + -77.19578542709938, + 38.81737588166795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.19578542709938, + 38.81737588166795 + ], + [ + -77.21432987849897, + 38.81737588166795 + ], + [ + -77.20505765279917, + 38.80484567949927 + ], + [ + -77.19578542709938, + 38.81737588166795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.19578542709938, + 38.81737588166795 + ], + [ + -77.20505765279917, + 38.80484567949927 + ], + [ + -77.18651320139959, + 38.80484567949927 + ], + [ + -77.19578542709938, + 38.81737588166795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.19578542709938, + 38.81737588166795 + ], + [ + -77.18651320139959, + 38.80484567949927 + ], + [ + -77.17724097569979, + 38.81737588166795 + ], + [ + -77.19578542709938, + 38.81737588166795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.19578542709938, + 38.8424362860053 + ], + [ + -77.17724097569979, + 38.8424362860053 + ], + [ + -77.18651320139959, + 38.85496648817398 + ], + [ + -77.19578542709938, + 38.8424362860053 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.19578542709938, + 38.8424362860053 + ], + [ + -77.18651320139959, + 38.85496648817398 + ], + [ + -77.20505765279917, + 38.85496648817398 + ], + [ + -77.19578542709938, + 38.8424362860053 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.19578542709938, + 38.8424362860053 + ], + [ + -77.20505765279917, + 38.85496648817398 + ], + [ + -77.21432987849897, + 38.8424362860053 + ], + [ + -77.19578542709938, + 38.8424362860053 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.19578542709938, + 38.8424362860053 + ], + [ + -77.21432987849897, + 38.8424362860053 + ], + [ + -77.20505765279917, + 38.829906083836626 + ], + [ + -77.19578542709938, + 38.8424362860053 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.19578542709938, + 38.8424362860053 + ], + [ + -77.20505765279917, + 38.829906083836626 + ], + [ + -77.18651320139959, + 38.829906083836626 + ], + [ + -77.19578542709938, + 38.8424362860053 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.19578542709938, + 38.8424362860053 + ], + [ + -77.18651320139959, + 38.829906083836626 + ], + [ + -77.17724097569979, + 38.8424362860053 + ], + [ + -77.19578542709938, + 38.8424362860053 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.19578542709938, + 38.867496690342655 + ], + [ + -77.17724097569979, + 38.867496690342655 + ], + [ + -77.18651320139959, + 38.88002689251133 + ], + [ + -77.19578542709938, + 38.867496690342655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.19578542709938, + 38.867496690342655 + ], + [ + -77.18651320139959, + 38.88002689251133 + ], + [ + -77.20505765279917, + 38.88002689251133 + ], + [ + -77.19578542709938, + 38.867496690342655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.19578542709938, + 38.867496690342655 + ], + [ + -77.20505765279917, + 38.88002689251133 + ], + [ + -77.21432987849897, + 38.867496690342655 + ], + [ + -77.19578542709938, + 38.867496690342655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.19578542709938, + 38.867496690342655 + ], + [ + -77.21432987849897, + 38.867496690342655 + ], + [ + -77.20505765279917, + 38.85496648817398 + ], + [ + -77.19578542709938, + 38.867496690342655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.19578542709938, + 38.867496690342655 + ], + [ + -77.20505765279917, + 38.85496648817398 + ], + [ + -77.18651320139959, + 38.85496648817398 + ], + [ + -77.19578542709938, + 38.867496690342655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.19578542709938, + 38.867496690342655 + ], + [ + -77.18651320139959, + 38.85496648817398 + ], + [ + -77.17724097569979, + 38.867496690342655 + ], + [ + -77.19578542709938, + 38.867496690342655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.19578542709938, + 38.892557094680015 + ], + [ + -77.17724097569979, + 38.892557094680015 + ], + [ + -77.18651320139959, + 38.90508729684869 + ], + [ + -77.19578542709938, + 38.892557094680015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.19578542709938, + 38.892557094680015 + ], + [ + -77.18651320139959, + 38.90508729684869 + ], + [ + -77.20505765279917, + 38.90508729684869 + ], + [ + -77.19578542709938, + 38.892557094680015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.19578542709938, + 38.892557094680015 + ], + [ + -77.20505765279917, + 38.90508729684869 + ], + [ + -77.21432987849897, + 38.892557094680015 + ], + [ + -77.19578542709938, + 38.892557094680015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.19578542709938, + 38.892557094680015 + ], + [ + -77.21432987849897, + 38.892557094680015 + ], + [ + -77.20505765279917, + 38.88002689251134 + ], + [ + -77.19578542709938, + 38.892557094680015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.19578542709938, + 38.892557094680015 + ], + [ + -77.20505765279917, + 38.88002689251134 + ], + [ + -77.18651320139959, + 38.88002689251134 + ], + [ + -77.19578542709938, + 38.892557094680015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.19578542709938, + 38.892557094680015 + ], + [ + -77.18651320139959, + 38.88002689251134 + ], + [ + -77.17724097569979, + 38.892557094680015 + ], + [ + -77.19578542709938, + 38.892557094680015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.19578542709938, + 38.91761749901737 + ], + [ + -77.17724097569979, + 38.91761749901737 + ], + [ + -77.18651320139959, + 38.930147701186044 + ], + [ + -77.19578542709938, + 38.91761749901737 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.19578542709938, + 38.91761749901737 + ], + [ + -77.18651320139959, + 38.930147701186044 + ], + [ + -77.20505765279917, + 38.930147701186044 + ], + [ + -77.19578542709938, + 38.91761749901737 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.19578542709938, + 38.91761749901737 + ], + [ + -77.20505765279917, + 38.930147701186044 + ], + [ + -77.21432987849897, + 38.91761749901737 + ], + [ + -77.19578542709938, + 38.91761749901737 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.19578542709938, + 38.91761749901737 + ], + [ + -77.21432987849897, + 38.91761749901737 + ], + [ + -77.20505765279917, + 38.90508729684869 + ], + [ + -77.19578542709938, + 38.91761749901737 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.19578542709938, + 38.91761749901737 + ], + [ + -77.20505765279917, + 38.90508729684869 + ], + [ + -77.18651320139959, + 38.90508729684869 + ], + [ + -77.19578542709938, + 38.91761749901737 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.19578542709938, + 38.91761749901737 + ], + [ + -77.18651320139959, + 38.90508729684869 + ], + [ + -77.17724097569979, + 38.91761749901737 + ], + [ + -77.19578542709938, + 38.91761749901737 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.19578542709938, + 38.94267790335472 + ], + [ + -77.17724097569979, + 38.94267790335472 + ], + [ + -77.18651320139959, + 38.9552081055234 + ], + [ + -77.19578542709938, + 38.94267790335472 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.19578542709938, + 38.94267790335472 + ], + [ + -77.18651320139959, + 38.9552081055234 + ], + [ + -77.20505765279917, + 38.9552081055234 + ], + [ + -77.19578542709938, + 38.94267790335472 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.19578542709938, + 38.94267790335472 + ], + [ + -77.20505765279917, + 38.9552081055234 + ], + [ + -77.21432987849897, + 38.94267790335472 + ], + [ + -77.19578542709938, + 38.94267790335472 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.19578542709938, + 38.94267790335472 + ], + [ + -77.21432987849897, + 38.94267790335472 + ], + [ + -77.20505765279917, + 38.930147701186044 + ], + [ + -77.19578542709938, + 38.94267790335472 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.19578542709938, + 38.94267790335472 + ], + [ + -77.20505765279917, + 38.930147701186044 + ], + [ + -77.18651320139959, + 38.930147701186044 + ], + [ + -77.19578542709938, + 38.94267790335472 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.19578542709938, + 38.94267790335472 + ], + [ + -77.18651320139959, + 38.930147701186044 + ], + [ + -77.17724097569979, + 38.94267790335472 + ], + [ + -77.19578542709938, + 38.94267790335472 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.19578542709938, + 38.96773830769207 + ], + [ + -77.17724097569979, + 38.96773830769207 + ], + [ + -77.18651320139959, + 38.98026850986075 + ], + [ + -77.19578542709938, + 38.96773830769207 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.19578542709938, + 38.96773830769207 + ], + [ + -77.18651320139959, + 38.98026850986075 + ], + [ + -77.20505765279917, + 38.98026850986075 + ], + [ + -77.19578542709938, + 38.96773830769207 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.19578542709938, + 38.96773830769207 + ], + [ + -77.20505765279917, + 38.98026850986075 + ], + [ + -77.21432987849897, + 38.96773830769207 + ], + [ + -77.19578542709938, + 38.96773830769207 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.19578542709938, + 38.96773830769207 + ], + [ + -77.21432987849897, + 38.96773830769207 + ], + [ + -77.20505765279917, + 38.9552081055234 + ], + [ + -77.19578542709938, + 38.96773830769207 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.19578542709938, + 38.96773830769207 + ], + [ + -77.20505765279917, + 38.9552081055234 + ], + [ + -77.18651320139959, + 38.9552081055234 + ], + [ + -77.19578542709938, + 38.96773830769207 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.19578542709938, + 38.96773830769207 + ], + [ + -77.18651320139959, + 38.9552081055234 + ], + [ + -77.17724097569979, + 38.96773830769207 + ], + [ + -77.19578542709938, + 38.96773830769207 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.19578542709938, + 38.992798712029426 + ], + [ + -77.17724097569979, + 38.992798712029426 + ], + [ + -77.18651320139959, + 39.0053289141981 + ], + [ + -77.19578542709938, + 38.992798712029426 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.19578542709938, + 38.992798712029426 + ], + [ + -77.18651320139959, + 39.0053289141981 + ], + [ + -77.20505765279917, + 39.0053289141981 + ], + [ + -77.19578542709938, + 38.992798712029426 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.19578542709938, + 38.992798712029426 + ], + [ + -77.20505765279917, + 39.0053289141981 + ], + [ + -77.21432987849897, + 38.992798712029426 + ], + [ + -77.19578542709938, + 38.992798712029426 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.19578542709938, + 38.992798712029426 + ], + [ + -77.21432987849897, + 38.992798712029426 + ], + [ + -77.20505765279917, + 38.98026850986075 + ], + [ + -77.19578542709938, + 38.992798712029426 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.19578542709938, + 38.992798712029426 + ], + [ + -77.20505765279917, + 38.98026850986075 + ], + [ + -77.18651320139959, + 38.98026850986075 + ], + [ + -77.19578542709938, + 38.992798712029426 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.19578542709938, + 38.992798712029426 + ], + [ + -77.18651320139959, + 38.98026850986075 + ], + [ + -77.17724097569979, + 38.992798712029426 + ], + [ + -77.19578542709938, + 38.992798712029426 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.19578542709938, + 39.017859116366786 + ], + [ + -77.17724097569979, + 39.017859116366786 + ], + [ + -77.18651320139959, + 39.03038931853546 + ], + [ + -77.19578542709938, + 39.017859116366786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.19578542709938, + 39.017859116366786 + ], + [ + -77.18651320139959, + 39.03038931853546 + ], + [ + -77.20505765279917, + 39.03038931853546 + ], + [ + -77.19578542709938, + 39.017859116366786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.19578542709938, + 39.017859116366786 + ], + [ + -77.20505765279917, + 39.03038931853546 + ], + [ + -77.21432987849897, + 39.017859116366786 + ], + [ + -77.19578542709938, + 39.017859116366786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.19578542709938, + 39.017859116366786 + ], + [ + -77.21432987849897, + 39.017859116366786 + ], + [ + -77.20505765279917, + 39.00532891419811 + ], + [ + -77.19578542709938, + 39.017859116366786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.19578542709938, + 39.017859116366786 + ], + [ + -77.20505765279917, + 39.00532891419811 + ], + [ + -77.18651320139959, + 39.00532891419811 + ], + [ + -77.19578542709938, + 39.017859116366786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.19578542709938, + 39.017859116366786 + ], + [ + -77.18651320139959, + 39.00532891419811 + ], + [ + -77.17724097569979, + 39.017859116366786 + ], + [ + -77.19578542709938, + 39.017859116366786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.16796875, + 38.72966446648721 + ], + [ + -77.14942429860041, + 38.72966446648721 + ], + [ + -77.15869652430021, + 38.742194668655884 + ], + [ + -77.16796875, + 38.72966446648721 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.16796875, + 38.72966446648721 + ], + [ + -77.15869652430021, + 38.742194668655884 + ], + [ + -77.17724097569979, + 38.742194668655884 + ], + [ + -77.16796875, + 38.72966446648721 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.16796875, + 38.72966446648721 + ], + [ + -77.17724097569979, + 38.742194668655884 + ], + [ + -77.18651320139959, + 38.72966446648721 + ], + [ + -77.16796875, + 38.72966446648721 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.16796875, + 38.72966446648721 + ], + [ + -77.18651320139959, + 38.72966446648721 + ], + [ + -77.17724097569979, + 38.71713426431853 + ], + [ + -77.16796875, + 38.72966446648721 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.16796875, + 38.72966446648721 + ], + [ + -77.17724097569979, + 38.71713426431853 + ], + [ + -77.15869652430021, + 38.71713426431853 + ], + [ + -77.16796875, + 38.72966446648721 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.16796875, + 38.72966446648721 + ], + [ + -77.15869652430021, + 38.71713426431853 + ], + [ + -77.14942429860041, + 38.72966446648721 + ], + [ + -77.16796875, + 38.72966446648721 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.16796875, + 38.75472487082456 + ], + [ + -77.14942429860041, + 38.75472487082456 + ], + [ + -77.15869652430021, + 38.76725507299324 + ], + [ + -77.16796875, + 38.75472487082456 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.16796875, + 38.75472487082456 + ], + [ + -77.15869652430021, + 38.76725507299324 + ], + [ + -77.17724097569979, + 38.76725507299324 + ], + [ + -77.16796875, + 38.75472487082456 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.16796875, + 38.75472487082456 + ], + [ + -77.17724097569979, + 38.76725507299324 + ], + [ + -77.18651320139959, + 38.75472487082456 + ], + [ + -77.16796875, + 38.75472487082456 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.16796875, + 38.75472487082456 + ], + [ + -77.18651320139959, + 38.75472487082456 + ], + [ + -77.17724097569979, + 38.742194668655884 + ], + [ + -77.16796875, + 38.75472487082456 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.16796875, + 38.75472487082456 + ], + [ + -77.17724097569979, + 38.742194668655884 + ], + [ + -77.15869652430021, + 38.742194668655884 + ], + [ + -77.16796875, + 38.75472487082456 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.16796875, + 38.75472487082456 + ], + [ + -77.15869652430021, + 38.742194668655884 + ], + [ + -77.14942429860041, + 38.75472487082456 + ], + [ + -77.16796875, + 38.75472487082456 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.16796875, + 38.77978527516192 + ], + [ + -77.14942429860041, + 38.77978527516192 + ], + [ + -77.15869652430021, + 38.7923154773306 + ], + [ + -77.16796875, + 38.77978527516192 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.16796875, + 38.77978527516192 + ], + [ + -77.15869652430021, + 38.7923154773306 + ], + [ + -77.17724097569979, + 38.7923154773306 + ], + [ + -77.16796875, + 38.77978527516192 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.16796875, + 38.77978527516192 + ], + [ + -77.17724097569979, + 38.7923154773306 + ], + [ + -77.18651320139959, + 38.77978527516192 + ], + [ + -77.16796875, + 38.77978527516192 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.16796875, + 38.77978527516192 + ], + [ + -77.18651320139959, + 38.77978527516192 + ], + [ + -77.17724097569979, + 38.767255072993244 + ], + [ + -77.16796875, + 38.77978527516192 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.16796875, + 38.77978527516192 + ], + [ + -77.17724097569979, + 38.767255072993244 + ], + [ + -77.15869652430021, + 38.767255072993244 + ], + [ + -77.16796875, + 38.77978527516192 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.16796875, + 38.77978527516192 + ], + [ + -77.15869652430021, + 38.767255072993244 + ], + [ + -77.14942429860041, + 38.77978527516192 + ], + [ + -77.16796875, + 38.77978527516192 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.16796875, + 38.80484567949927 + ], + [ + -77.14942429860041, + 38.80484567949927 + ], + [ + -77.15869652430021, + 38.81737588166795 + ], + [ + -77.16796875, + 38.80484567949927 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.16796875, + 38.80484567949927 + ], + [ + -77.15869652430021, + 38.81737588166795 + ], + [ + -77.17724097569979, + 38.81737588166795 + ], + [ + -77.16796875, + 38.80484567949927 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.16796875, + 38.80484567949927 + ], + [ + -77.17724097569979, + 38.81737588166795 + ], + [ + -77.18651320139959, + 38.80484567949927 + ], + [ + -77.16796875, + 38.80484567949927 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.16796875, + 38.80484567949927 + ], + [ + -77.18651320139959, + 38.80484567949927 + ], + [ + -77.17724097569979, + 38.7923154773306 + ], + [ + -77.16796875, + 38.80484567949927 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.16796875, + 38.80484567949927 + ], + [ + -77.17724097569979, + 38.7923154773306 + ], + [ + -77.15869652430021, + 38.7923154773306 + ], + [ + -77.16796875, + 38.80484567949927 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.16796875, + 38.80484567949927 + ], + [ + -77.15869652430021, + 38.7923154773306 + ], + [ + -77.14942429860041, + 38.80484567949927 + ], + [ + -77.16796875, + 38.80484567949927 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.16796875, + 38.829906083836626 + ], + [ + -77.14942429860041, + 38.829906083836626 + ], + [ + -77.15869652430021, + 38.8424362860053 + ], + [ + -77.16796875, + 38.829906083836626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.16796875, + 38.829906083836626 + ], + [ + -77.15869652430021, + 38.8424362860053 + ], + [ + -77.17724097569979, + 38.8424362860053 + ], + [ + -77.16796875, + 38.829906083836626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.16796875, + 38.829906083836626 + ], + [ + -77.17724097569979, + 38.8424362860053 + ], + [ + -77.18651320139959, + 38.829906083836626 + ], + [ + -77.16796875, + 38.829906083836626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.16796875, + 38.829906083836626 + ], + [ + -77.18651320139959, + 38.829906083836626 + ], + [ + -77.17724097569979, + 38.81737588166795 + ], + [ + -77.16796875, + 38.829906083836626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.16796875, + 38.829906083836626 + ], + [ + -77.17724097569979, + 38.81737588166795 + ], + [ + -77.15869652430021, + 38.81737588166795 + ], + [ + -77.16796875, + 38.829906083836626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.16796875, + 38.829906083836626 + ], + [ + -77.15869652430021, + 38.81737588166795 + ], + [ + -77.14942429860041, + 38.829906083836626 + ], + [ + -77.16796875, + 38.829906083836626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.16796875, + 38.85496648817398 + ], + [ + -77.14942429860041, + 38.85496648817398 + ], + [ + -77.15869652430021, + 38.867496690342655 + ], + [ + -77.16796875, + 38.85496648817398 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.16796875, + 38.85496648817398 + ], + [ + -77.15869652430021, + 38.867496690342655 + ], + [ + -77.17724097569979, + 38.867496690342655 + ], + [ + -77.16796875, + 38.85496648817398 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.16796875, + 38.85496648817398 + ], + [ + -77.17724097569979, + 38.867496690342655 + ], + [ + -77.18651320139959, + 38.85496648817398 + ], + [ + -77.16796875, + 38.85496648817398 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.16796875, + 38.85496648817398 + ], + [ + -77.18651320139959, + 38.85496648817398 + ], + [ + -77.17724097569979, + 38.8424362860053 + ], + [ + -77.16796875, + 38.85496648817398 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.16796875, + 38.85496648817398 + ], + [ + -77.17724097569979, + 38.8424362860053 + ], + [ + -77.15869652430021, + 38.8424362860053 + ], + [ + -77.16796875, + 38.85496648817398 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.16796875, + 38.85496648817398 + ], + [ + -77.15869652430021, + 38.8424362860053 + ], + [ + -77.14942429860041, + 38.85496648817398 + ], + [ + -77.16796875, + 38.85496648817398 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.16796875, + 38.88002689251133 + ], + [ + -77.14942429860041, + 38.88002689251133 + ], + [ + -77.15869652430021, + 38.89255709468001 + ], + [ + -77.16796875, + 38.88002689251133 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.16796875, + 38.88002689251133 + ], + [ + -77.15869652430021, + 38.89255709468001 + ], + [ + -77.17724097569979, + 38.89255709468001 + ], + [ + -77.16796875, + 38.88002689251133 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.16796875, + 38.88002689251133 + ], + [ + -77.17724097569979, + 38.89255709468001 + ], + [ + -77.18651320139959, + 38.88002689251133 + ], + [ + -77.16796875, + 38.88002689251133 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.16796875, + 38.88002689251133 + ], + [ + -77.18651320139959, + 38.88002689251133 + ], + [ + -77.17724097569979, + 38.867496690342655 + ], + [ + -77.16796875, + 38.88002689251133 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.16796875, + 38.88002689251133 + ], + [ + -77.17724097569979, + 38.867496690342655 + ], + [ + -77.15869652430021, + 38.867496690342655 + ], + [ + -77.16796875, + 38.88002689251133 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.16796875, + 38.88002689251133 + ], + [ + -77.15869652430021, + 38.867496690342655 + ], + [ + -77.14942429860041, + 38.88002689251133 + ], + [ + -77.16796875, + 38.88002689251133 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.16796875, + 38.90508729684869 + ], + [ + -77.14942429860041, + 38.90508729684869 + ], + [ + -77.15869652430021, + 38.91761749901737 + ], + [ + -77.16796875, + 38.90508729684869 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.16796875, + 38.90508729684869 + ], + [ + -77.15869652430021, + 38.91761749901737 + ], + [ + -77.17724097569979, + 38.91761749901737 + ], + [ + -77.16796875, + 38.90508729684869 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.16796875, + 38.90508729684869 + ], + [ + -77.17724097569979, + 38.91761749901737 + ], + [ + -77.18651320139959, + 38.90508729684869 + ], + [ + -77.16796875, + 38.90508729684869 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.16796875, + 38.90508729684869 + ], + [ + -77.18651320139959, + 38.90508729684869 + ], + [ + -77.17724097569979, + 38.892557094680015 + ], + [ + -77.16796875, + 38.90508729684869 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.16796875, + 38.90508729684869 + ], + [ + -77.17724097569979, + 38.892557094680015 + ], + [ + -77.15869652430021, + 38.892557094680015 + ], + [ + -77.16796875, + 38.90508729684869 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.16796875, + 38.90508729684869 + ], + [ + -77.15869652430021, + 38.892557094680015 + ], + [ + -77.14942429860041, + 38.90508729684869 + ], + [ + -77.16796875, + 38.90508729684869 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.16796875, + 38.930147701186044 + ], + [ + -77.14942429860041, + 38.930147701186044 + ], + [ + -77.15869652430021, + 38.94267790335472 + ], + [ + -77.16796875, + 38.930147701186044 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.16796875, + 38.930147701186044 + ], + [ + -77.15869652430021, + 38.94267790335472 + ], + [ + -77.17724097569979, + 38.94267790335472 + ], + [ + -77.16796875, + 38.930147701186044 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.16796875, + 38.930147701186044 + ], + [ + -77.17724097569979, + 38.94267790335472 + ], + [ + -77.18651320139959, + 38.930147701186044 + ], + [ + -77.16796875, + 38.930147701186044 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.16796875, + 38.930147701186044 + ], + [ + -77.18651320139959, + 38.930147701186044 + ], + [ + -77.17724097569979, + 38.91761749901737 + ], + [ + -77.16796875, + 38.930147701186044 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.16796875, + 38.930147701186044 + ], + [ + -77.17724097569979, + 38.91761749901737 + ], + [ + -77.15869652430021, + 38.91761749901737 + ], + [ + -77.16796875, + 38.930147701186044 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.16796875, + 38.930147701186044 + ], + [ + -77.15869652430021, + 38.91761749901737 + ], + [ + -77.14942429860041, + 38.930147701186044 + ], + [ + -77.16796875, + 38.930147701186044 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.16796875, + 38.9552081055234 + ], + [ + -77.14942429860041, + 38.9552081055234 + ], + [ + -77.15869652430021, + 38.96773830769207 + ], + [ + -77.16796875, + 38.9552081055234 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.16796875, + 38.9552081055234 + ], + [ + -77.15869652430021, + 38.96773830769207 + ], + [ + -77.17724097569979, + 38.96773830769207 + ], + [ + -77.16796875, + 38.9552081055234 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.16796875, + 38.9552081055234 + ], + [ + -77.17724097569979, + 38.96773830769207 + ], + [ + -77.18651320139959, + 38.9552081055234 + ], + [ + -77.16796875, + 38.9552081055234 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.16796875, + 38.9552081055234 + ], + [ + -77.18651320139959, + 38.9552081055234 + ], + [ + -77.17724097569979, + 38.94267790335472 + ], + [ + -77.16796875, + 38.9552081055234 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.16796875, + 38.9552081055234 + ], + [ + -77.17724097569979, + 38.94267790335472 + ], + [ + -77.15869652430021, + 38.94267790335472 + ], + [ + -77.16796875, + 38.9552081055234 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.16796875, + 38.9552081055234 + ], + [ + -77.15869652430021, + 38.94267790335472 + ], + [ + -77.14942429860041, + 38.9552081055234 + ], + [ + -77.16796875, + 38.9552081055234 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.16796875, + 38.98026850986075 + ], + [ + -77.14942429860041, + 38.98026850986075 + ], + [ + -77.15869652430021, + 38.992798712029426 + ], + [ + -77.16796875, + 38.98026850986075 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.16796875, + 38.98026850986075 + ], + [ + -77.15869652430021, + 38.992798712029426 + ], + [ + -77.17724097569979, + 38.992798712029426 + ], + [ + -77.16796875, + 38.98026850986075 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.16796875, + 38.98026850986075 + ], + [ + -77.17724097569979, + 38.992798712029426 + ], + [ + -77.18651320139959, + 38.98026850986075 + ], + [ + -77.16796875, + 38.98026850986075 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.16796875, + 38.98026850986075 + ], + [ + -77.18651320139959, + 38.98026850986075 + ], + [ + -77.17724097569979, + 38.96773830769207 + ], + [ + -77.16796875, + 38.98026850986075 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.16796875, + 38.98026850986075 + ], + [ + -77.17724097569979, + 38.96773830769207 + ], + [ + -77.15869652430021, + 38.96773830769207 + ], + [ + -77.16796875, + 38.98026850986075 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.16796875, + 38.98026850986075 + ], + [ + -77.15869652430021, + 38.96773830769207 + ], + [ + -77.14942429860041, + 38.98026850986075 + ], + [ + -77.16796875, + 38.98026850986075 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.16796875, + 39.0053289141981 + ], + [ + -77.14942429860041, + 39.0053289141981 + ], + [ + -77.15869652430021, + 39.01785911636678 + ], + [ + -77.16796875, + 39.0053289141981 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.16796875, + 39.0053289141981 + ], + [ + -77.15869652430021, + 39.01785911636678 + ], + [ + -77.17724097569979, + 39.01785911636678 + ], + [ + -77.16796875, + 39.0053289141981 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.16796875, + 39.0053289141981 + ], + [ + -77.17724097569979, + 39.01785911636678 + ], + [ + -77.18651320139959, + 39.0053289141981 + ], + [ + -77.16796875, + 39.0053289141981 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.16796875, + 39.0053289141981 + ], + [ + -77.18651320139959, + 39.0053289141981 + ], + [ + -77.17724097569979, + 38.992798712029426 + ], + [ + -77.16796875, + 39.0053289141981 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.16796875, + 39.0053289141981 + ], + [ + -77.17724097569979, + 38.992798712029426 + ], + [ + -77.15869652430021, + 38.992798712029426 + ], + [ + -77.16796875, + 39.0053289141981 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.16796875, + 39.0053289141981 + ], + [ + -77.15869652430021, + 38.992798712029426 + ], + [ + -77.14942429860041, + 39.0053289141981 + ], + [ + -77.16796875, + 39.0053289141981 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.16796875, + 39.03038931853546 + ], + [ + -77.14942429860041, + 39.03038931853546 + ], + [ + -77.15869652430021, + 39.04291952070414 + ], + [ + -77.16796875, + 39.03038931853546 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.16796875, + 39.03038931853546 + ], + [ + -77.15869652430021, + 39.04291952070414 + ], + [ + -77.17724097569979, + 39.04291952070414 + ], + [ + -77.16796875, + 39.03038931853546 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.16796875, + 39.03038931853546 + ], + [ + -77.17724097569979, + 39.04291952070414 + ], + [ + -77.18651320139959, + 39.03038931853546 + ], + [ + -77.16796875, + 39.03038931853546 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.16796875, + 39.03038931853546 + ], + [ + -77.18651320139959, + 39.03038931853546 + ], + [ + -77.17724097569979, + 39.017859116366786 + ], + [ + -77.16796875, + 39.03038931853546 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.16796875, + 39.03038931853546 + ], + [ + -77.17724097569979, + 39.017859116366786 + ], + [ + -77.15869652430021, + 39.017859116366786 + ], + [ + -77.16796875, + 39.03038931853546 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.16796875, + 39.03038931853546 + ], + [ + -77.15869652430021, + 39.017859116366786 + ], + [ + -77.14942429860041, + 39.03038931853546 + ], + [ + -77.16796875, + 39.03038931853546 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.14015207290062, + 38.71713426431853 + ], + [ + -77.12160762150103, + 38.71713426431853 + ], + [ + -77.13087984720083, + 38.72966446648721 + ], + [ + -77.14015207290062, + 38.71713426431853 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.14015207290062, + 38.71713426431853 + ], + [ + -77.13087984720083, + 38.72966446648721 + ], + [ + -77.14942429860041, + 38.72966446648721 + ], + [ + -77.14015207290062, + 38.71713426431853 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.14015207290062, + 38.71713426431853 + ], + [ + -77.14942429860041, + 38.72966446648721 + ], + [ + -77.15869652430021, + 38.71713426431853 + ], + [ + -77.14015207290062, + 38.71713426431853 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.14015207290062, + 38.71713426431853 + ], + [ + -77.15869652430021, + 38.71713426431853 + ], + [ + -77.14942429860041, + 38.704604062149855 + ], + [ + -77.14015207290062, + 38.71713426431853 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.14015207290062, + 38.71713426431853 + ], + [ + -77.14942429860041, + 38.704604062149855 + ], + [ + -77.13087984720083, + 38.704604062149855 + ], + [ + -77.14015207290062, + 38.71713426431853 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.14015207290062, + 38.71713426431853 + ], + [ + -77.13087984720083, + 38.704604062149855 + ], + [ + -77.12160762150103, + 38.71713426431853 + ], + [ + -77.14015207290062, + 38.71713426431853 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.14015207290062, + 38.742194668655884 + ], + [ + -77.12160762150103, + 38.742194668655884 + ], + [ + -77.13087984720083, + 38.75472487082456 + ], + [ + -77.14015207290062, + 38.742194668655884 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.14015207290062, + 38.742194668655884 + ], + [ + -77.13087984720083, + 38.75472487082456 + ], + [ + -77.14942429860041, + 38.75472487082456 + ], + [ + -77.14015207290062, + 38.742194668655884 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.14015207290062, + 38.742194668655884 + ], + [ + -77.14942429860041, + 38.75472487082456 + ], + [ + -77.15869652430021, + 38.742194668655884 + ], + [ + -77.14015207290062, + 38.742194668655884 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.14015207290062, + 38.742194668655884 + ], + [ + -77.15869652430021, + 38.742194668655884 + ], + [ + -77.14942429860041, + 38.72966446648721 + ], + [ + -77.14015207290062, + 38.742194668655884 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.14015207290062, + 38.742194668655884 + ], + [ + -77.14942429860041, + 38.72966446648721 + ], + [ + -77.13087984720083, + 38.72966446648721 + ], + [ + -77.14015207290062, + 38.742194668655884 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.14015207290062, + 38.742194668655884 + ], + [ + -77.13087984720083, + 38.72966446648721 + ], + [ + -77.12160762150103, + 38.742194668655884 + ], + [ + -77.14015207290062, + 38.742194668655884 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.14015207290062, + 38.767255072993244 + ], + [ + -77.12160762150103, + 38.767255072993244 + ], + [ + -77.13087984720083, + 38.77978527516192 + ], + [ + -77.14015207290062, + 38.767255072993244 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.14015207290062, + 38.767255072993244 + ], + [ + -77.13087984720083, + 38.77978527516192 + ], + [ + -77.14942429860041, + 38.77978527516192 + ], + [ + -77.14015207290062, + 38.767255072993244 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.14015207290062, + 38.767255072993244 + ], + [ + -77.14942429860041, + 38.77978527516192 + ], + [ + -77.15869652430021, + 38.767255072993244 + ], + [ + -77.14015207290062, + 38.767255072993244 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.14015207290062, + 38.767255072993244 + ], + [ + -77.15869652430021, + 38.767255072993244 + ], + [ + -77.14942429860041, + 38.75472487082457 + ], + [ + -77.14015207290062, + 38.767255072993244 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.14015207290062, + 38.767255072993244 + ], + [ + -77.14942429860041, + 38.75472487082457 + ], + [ + -77.13087984720083, + 38.75472487082457 + ], + [ + -77.14015207290062, + 38.767255072993244 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.14015207290062, + 38.767255072993244 + ], + [ + -77.13087984720083, + 38.75472487082457 + ], + [ + -77.12160762150103, + 38.767255072993244 + ], + [ + -77.14015207290062, + 38.767255072993244 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.14015207290062, + 38.7923154773306 + ], + [ + -77.12160762150103, + 38.7923154773306 + ], + [ + -77.13087984720083, + 38.80484567949927 + ], + [ + -77.14015207290062, + 38.7923154773306 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.14015207290062, + 38.7923154773306 + ], + [ + -77.13087984720083, + 38.80484567949927 + ], + [ + -77.14942429860041, + 38.80484567949927 + ], + [ + -77.14015207290062, + 38.7923154773306 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.14015207290062, + 38.7923154773306 + ], + [ + -77.14942429860041, + 38.80484567949927 + ], + [ + -77.15869652430021, + 38.7923154773306 + ], + [ + -77.14015207290062, + 38.7923154773306 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.14015207290062, + 38.7923154773306 + ], + [ + -77.15869652430021, + 38.7923154773306 + ], + [ + -77.14942429860041, + 38.77978527516192 + ], + [ + -77.14015207290062, + 38.7923154773306 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.14015207290062, + 38.7923154773306 + ], + [ + -77.14942429860041, + 38.77978527516192 + ], + [ + -77.13087984720083, + 38.77978527516192 + ], + [ + -77.14015207290062, + 38.7923154773306 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.14015207290062, + 38.7923154773306 + ], + [ + -77.13087984720083, + 38.77978527516192 + ], + [ + -77.12160762150103, + 38.7923154773306 + ], + [ + -77.14015207290062, + 38.7923154773306 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.14015207290062, + 38.81737588166795 + ], + [ + -77.12160762150103, + 38.81737588166795 + ], + [ + -77.13087984720083, + 38.829906083836626 + ], + [ + -77.14015207290062, + 38.81737588166795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.14015207290062, + 38.81737588166795 + ], + [ + -77.13087984720083, + 38.829906083836626 + ], + [ + -77.14942429860041, + 38.829906083836626 + ], + [ + -77.14015207290062, + 38.81737588166795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.14015207290062, + 38.81737588166795 + ], + [ + -77.14942429860041, + 38.829906083836626 + ], + [ + -77.15869652430021, + 38.81737588166795 + ], + [ + -77.14015207290062, + 38.81737588166795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.14015207290062, + 38.81737588166795 + ], + [ + -77.15869652430021, + 38.81737588166795 + ], + [ + -77.14942429860041, + 38.80484567949927 + ], + [ + -77.14015207290062, + 38.81737588166795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.14015207290062, + 38.81737588166795 + ], + [ + -77.14942429860041, + 38.80484567949927 + ], + [ + -77.13087984720083, + 38.80484567949927 + ], + [ + -77.14015207290062, + 38.81737588166795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.14015207290062, + 38.81737588166795 + ], + [ + -77.13087984720083, + 38.80484567949927 + ], + [ + -77.12160762150103, + 38.81737588166795 + ], + [ + -77.14015207290062, + 38.81737588166795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.14015207290062, + 38.8424362860053 + ], + [ + -77.12160762150103, + 38.8424362860053 + ], + [ + -77.13087984720083, + 38.85496648817398 + ], + [ + -77.14015207290062, + 38.8424362860053 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.14015207290062, + 38.8424362860053 + ], + [ + -77.13087984720083, + 38.85496648817398 + ], + [ + -77.14942429860041, + 38.85496648817398 + ], + [ + -77.14015207290062, + 38.8424362860053 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.14015207290062, + 38.8424362860053 + ], + [ + -77.14942429860041, + 38.85496648817398 + ], + [ + -77.15869652430021, + 38.8424362860053 + ], + [ + -77.14015207290062, + 38.8424362860053 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.14015207290062, + 38.8424362860053 + ], + [ + -77.15869652430021, + 38.8424362860053 + ], + [ + -77.14942429860041, + 38.829906083836626 + ], + [ + -77.14015207290062, + 38.8424362860053 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.14015207290062, + 38.8424362860053 + ], + [ + -77.14942429860041, + 38.829906083836626 + ], + [ + -77.13087984720083, + 38.829906083836626 + ], + [ + -77.14015207290062, + 38.8424362860053 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.14015207290062, + 38.8424362860053 + ], + [ + -77.13087984720083, + 38.829906083836626 + ], + [ + -77.12160762150103, + 38.8424362860053 + ], + [ + -77.14015207290062, + 38.8424362860053 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.14015207290062, + 38.867496690342655 + ], + [ + -77.12160762150103, + 38.867496690342655 + ], + [ + -77.13087984720083, + 38.88002689251133 + ], + [ + -77.14015207290062, + 38.867496690342655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.14015207290062, + 38.867496690342655 + ], + [ + -77.13087984720083, + 38.88002689251133 + ], + [ + -77.14942429860041, + 38.88002689251133 + ], + [ + -77.14015207290062, + 38.867496690342655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.14015207290062, + 38.867496690342655 + ], + [ + -77.14942429860041, + 38.88002689251133 + ], + [ + -77.15869652430021, + 38.867496690342655 + ], + [ + -77.14015207290062, + 38.867496690342655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.14015207290062, + 38.867496690342655 + ], + [ + -77.15869652430021, + 38.867496690342655 + ], + [ + -77.14942429860041, + 38.85496648817398 + ], + [ + -77.14015207290062, + 38.867496690342655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.14015207290062, + 38.867496690342655 + ], + [ + -77.14942429860041, + 38.85496648817398 + ], + [ + -77.13087984720083, + 38.85496648817398 + ], + [ + -77.14015207290062, + 38.867496690342655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.14015207290062, + 38.867496690342655 + ], + [ + -77.13087984720083, + 38.85496648817398 + ], + [ + -77.12160762150103, + 38.867496690342655 + ], + [ + -77.14015207290062, + 38.867496690342655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.14015207290062, + 38.892557094680015 + ], + [ + -77.12160762150103, + 38.892557094680015 + ], + [ + -77.13087984720083, + 38.90508729684869 + ], + [ + -77.14015207290062, + 38.892557094680015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.14015207290062, + 38.892557094680015 + ], + [ + -77.13087984720083, + 38.90508729684869 + ], + [ + -77.14942429860041, + 38.90508729684869 + ], + [ + -77.14015207290062, + 38.892557094680015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.14015207290062, + 38.892557094680015 + ], + [ + -77.14942429860041, + 38.90508729684869 + ], + [ + -77.15869652430021, + 38.892557094680015 + ], + [ + -77.14015207290062, + 38.892557094680015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.14015207290062, + 38.892557094680015 + ], + [ + -77.15869652430021, + 38.892557094680015 + ], + [ + -77.14942429860041, + 38.88002689251134 + ], + [ + -77.14015207290062, + 38.892557094680015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.14015207290062, + 38.892557094680015 + ], + [ + -77.14942429860041, + 38.88002689251134 + ], + [ + -77.13087984720083, + 38.88002689251134 + ], + [ + -77.14015207290062, + 38.892557094680015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.14015207290062, + 38.892557094680015 + ], + [ + -77.13087984720083, + 38.88002689251134 + ], + [ + -77.12160762150103, + 38.892557094680015 + ], + [ + -77.14015207290062, + 38.892557094680015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.14015207290062, + 38.91761749901737 + ], + [ + -77.12160762150103, + 38.91761749901737 + ], + [ + -77.13087984720083, + 38.930147701186044 + ], + [ + -77.14015207290062, + 38.91761749901737 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.14015207290062, + 38.91761749901737 + ], + [ + -77.13087984720083, + 38.930147701186044 + ], + [ + -77.14942429860041, + 38.930147701186044 + ], + [ + -77.14015207290062, + 38.91761749901737 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.14015207290062, + 38.91761749901737 + ], + [ + -77.14942429860041, + 38.930147701186044 + ], + [ + -77.15869652430021, + 38.91761749901737 + ], + [ + -77.14015207290062, + 38.91761749901737 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.14015207290062, + 38.91761749901737 + ], + [ + -77.15869652430021, + 38.91761749901737 + ], + [ + -77.14942429860041, + 38.90508729684869 + ], + [ + -77.14015207290062, + 38.91761749901737 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.14015207290062, + 38.91761749901737 + ], + [ + -77.14942429860041, + 38.90508729684869 + ], + [ + -77.13087984720083, + 38.90508729684869 + ], + [ + -77.14015207290062, + 38.91761749901737 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.14015207290062, + 38.91761749901737 + ], + [ + -77.13087984720083, + 38.90508729684869 + ], + [ + -77.12160762150103, + 38.91761749901737 + ], + [ + -77.14015207290062, + 38.91761749901737 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.14015207290062, + 38.94267790335472 + ], + [ + -77.12160762150103, + 38.94267790335472 + ], + [ + -77.13087984720083, + 38.9552081055234 + ], + [ + -77.14015207290062, + 38.94267790335472 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.14015207290062, + 38.94267790335472 + ], + [ + -77.13087984720083, + 38.9552081055234 + ], + [ + -77.14942429860041, + 38.9552081055234 + ], + [ + -77.14015207290062, + 38.94267790335472 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.14015207290062, + 38.94267790335472 + ], + [ + -77.14942429860041, + 38.9552081055234 + ], + [ + -77.15869652430021, + 38.94267790335472 + ], + [ + -77.14015207290062, + 38.94267790335472 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.14015207290062, + 38.94267790335472 + ], + [ + -77.15869652430021, + 38.94267790335472 + ], + [ + -77.14942429860041, + 38.930147701186044 + ], + [ + -77.14015207290062, + 38.94267790335472 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.14015207290062, + 38.94267790335472 + ], + [ + -77.14942429860041, + 38.930147701186044 + ], + [ + -77.13087984720083, + 38.930147701186044 + ], + [ + -77.14015207290062, + 38.94267790335472 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.14015207290062, + 38.94267790335472 + ], + [ + -77.13087984720083, + 38.930147701186044 + ], + [ + -77.12160762150103, + 38.94267790335472 + ], + [ + -77.14015207290062, + 38.94267790335472 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.14015207290062, + 38.96773830769207 + ], + [ + -77.12160762150103, + 38.96773830769207 + ], + [ + -77.13087984720083, + 38.98026850986075 + ], + [ + -77.14015207290062, + 38.96773830769207 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.14015207290062, + 38.96773830769207 + ], + [ + -77.13087984720083, + 38.98026850986075 + ], + [ + -77.14942429860041, + 38.98026850986075 + ], + [ + -77.14015207290062, + 38.96773830769207 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.14015207290062, + 38.96773830769207 + ], + [ + -77.14942429860041, + 38.98026850986075 + ], + [ + -77.15869652430021, + 38.96773830769207 + ], + [ + -77.14015207290062, + 38.96773830769207 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.14015207290062, + 38.96773830769207 + ], + [ + -77.15869652430021, + 38.96773830769207 + ], + [ + -77.14942429860041, + 38.9552081055234 + ], + [ + -77.14015207290062, + 38.96773830769207 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.14015207290062, + 38.96773830769207 + ], + [ + -77.14942429860041, + 38.9552081055234 + ], + [ + -77.13087984720083, + 38.9552081055234 + ], + [ + -77.14015207290062, + 38.96773830769207 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.14015207290062, + 38.96773830769207 + ], + [ + -77.13087984720083, + 38.9552081055234 + ], + [ + -77.12160762150103, + 38.96773830769207 + ], + [ + -77.14015207290062, + 38.96773830769207 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.14015207290062, + 38.992798712029426 + ], + [ + -77.12160762150103, + 38.992798712029426 + ], + [ + -77.13087984720083, + 39.0053289141981 + ], + [ + -77.14015207290062, + 38.992798712029426 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.14015207290062, + 38.992798712029426 + ], + [ + -77.13087984720083, + 39.0053289141981 + ], + [ + -77.14942429860041, + 39.0053289141981 + ], + [ + -77.14015207290062, + 38.992798712029426 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.14015207290062, + 38.992798712029426 + ], + [ + -77.14942429860041, + 39.0053289141981 + ], + [ + -77.15869652430021, + 38.992798712029426 + ], + [ + -77.14015207290062, + 38.992798712029426 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.14015207290062, + 38.992798712029426 + ], + [ + -77.15869652430021, + 38.992798712029426 + ], + [ + -77.14942429860041, + 38.98026850986075 + ], + [ + -77.14015207290062, + 38.992798712029426 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.14015207290062, + 38.992798712029426 + ], + [ + -77.14942429860041, + 38.98026850986075 + ], + [ + -77.13087984720083, + 38.98026850986075 + ], + [ + -77.14015207290062, + 38.992798712029426 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.14015207290062, + 38.992798712029426 + ], + [ + -77.13087984720083, + 38.98026850986075 + ], + [ + -77.12160762150103, + 38.992798712029426 + ], + [ + -77.14015207290062, + 38.992798712029426 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.14015207290062, + 39.017859116366786 + ], + [ + -77.12160762150103, + 39.017859116366786 + ], + [ + -77.13087984720083, + 39.03038931853546 + ], + [ + -77.14015207290062, + 39.017859116366786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.14015207290062, + 39.017859116366786 + ], + [ + -77.13087984720083, + 39.03038931853546 + ], + [ + -77.14942429860041, + 39.03038931853546 + ], + [ + -77.14015207290062, + 39.017859116366786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.14015207290062, + 39.017859116366786 + ], + [ + -77.14942429860041, + 39.03038931853546 + ], + [ + -77.15869652430021, + 39.017859116366786 + ], + [ + -77.14015207290062, + 39.017859116366786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.14015207290062, + 39.017859116366786 + ], + [ + -77.15869652430021, + 39.017859116366786 + ], + [ + -77.14942429860041, + 39.00532891419811 + ], + [ + -77.14015207290062, + 39.017859116366786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.14015207290062, + 39.017859116366786 + ], + [ + -77.14942429860041, + 39.00532891419811 + ], + [ + -77.13087984720083, + 39.00532891419811 + ], + [ + -77.14015207290062, + 39.017859116366786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.14015207290062, + 39.017859116366786 + ], + [ + -77.13087984720083, + 39.00532891419811 + ], + [ + -77.12160762150103, + 39.017859116366786 + ], + [ + -77.14015207290062, + 39.017859116366786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.11233539580124, + 38.72966446648721 + ], + [ + -77.09379094440165, + 38.72966446648721 + ], + [ + -77.10306317010145, + 38.742194668655884 + ], + [ + -77.11233539580124, + 38.72966446648721 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.11233539580124, + 38.72966446648721 + ], + [ + -77.10306317010145, + 38.742194668655884 + ], + [ + -77.12160762150103, + 38.742194668655884 + ], + [ + -77.11233539580124, + 38.72966446648721 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.11233539580124, + 38.72966446648721 + ], + [ + -77.12160762150103, + 38.742194668655884 + ], + [ + -77.13087984720083, + 38.72966446648721 + ], + [ + -77.11233539580124, + 38.72966446648721 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.11233539580124, + 38.72966446648721 + ], + [ + -77.13087984720083, + 38.72966446648721 + ], + [ + -77.12160762150103, + 38.71713426431853 + ], + [ + -77.11233539580124, + 38.72966446648721 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.11233539580124, + 38.72966446648721 + ], + [ + -77.12160762150103, + 38.71713426431853 + ], + [ + -77.10306317010145, + 38.71713426431853 + ], + [ + -77.11233539580124, + 38.72966446648721 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.11233539580124, + 38.72966446648721 + ], + [ + -77.10306317010145, + 38.71713426431853 + ], + [ + -77.09379094440165, + 38.72966446648721 + ], + [ + -77.11233539580124, + 38.72966446648721 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.11233539580124, + 38.75472487082456 + ], + [ + -77.09379094440165, + 38.75472487082456 + ], + [ + -77.10306317010145, + 38.76725507299324 + ], + [ + -77.11233539580124, + 38.75472487082456 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.11233539580124, + 38.75472487082456 + ], + [ + -77.10306317010145, + 38.76725507299324 + ], + [ + -77.12160762150103, + 38.76725507299324 + ], + [ + -77.11233539580124, + 38.75472487082456 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.11233539580124, + 38.75472487082456 + ], + [ + -77.12160762150103, + 38.76725507299324 + ], + [ + -77.13087984720083, + 38.75472487082456 + ], + [ + -77.11233539580124, + 38.75472487082456 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.11233539580124, + 38.75472487082456 + ], + [ + -77.13087984720083, + 38.75472487082456 + ], + [ + -77.12160762150103, + 38.742194668655884 + ], + [ + -77.11233539580124, + 38.75472487082456 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.11233539580124, + 38.75472487082456 + ], + [ + -77.12160762150103, + 38.742194668655884 + ], + [ + -77.10306317010145, + 38.742194668655884 + ], + [ + -77.11233539580124, + 38.75472487082456 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.11233539580124, + 38.75472487082456 + ], + [ + -77.10306317010145, + 38.742194668655884 + ], + [ + -77.09379094440165, + 38.75472487082456 + ], + [ + -77.11233539580124, + 38.75472487082456 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.11233539580124, + 38.77978527516192 + ], + [ + -77.09379094440165, + 38.77978527516192 + ], + [ + -77.10306317010145, + 38.7923154773306 + ], + [ + -77.11233539580124, + 38.77978527516192 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.11233539580124, + 38.77978527516192 + ], + [ + -77.10306317010145, + 38.7923154773306 + ], + [ + -77.12160762150103, + 38.7923154773306 + ], + [ + -77.11233539580124, + 38.77978527516192 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.11233539580124, + 38.77978527516192 + ], + [ + -77.12160762150103, + 38.7923154773306 + ], + [ + -77.13087984720083, + 38.77978527516192 + ], + [ + -77.11233539580124, + 38.77978527516192 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.11233539580124, + 38.77978527516192 + ], + [ + -77.13087984720083, + 38.77978527516192 + ], + [ + -77.12160762150103, + 38.767255072993244 + ], + [ + -77.11233539580124, + 38.77978527516192 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.11233539580124, + 38.77978527516192 + ], + [ + -77.12160762150103, + 38.767255072993244 + ], + [ + -77.10306317010145, + 38.767255072993244 + ], + [ + -77.11233539580124, + 38.77978527516192 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.11233539580124, + 38.77978527516192 + ], + [ + -77.10306317010145, + 38.767255072993244 + ], + [ + -77.09379094440165, + 38.77978527516192 + ], + [ + -77.11233539580124, + 38.77978527516192 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.11233539580124, + 38.80484567949927 + ], + [ + -77.09379094440165, + 38.80484567949927 + ], + [ + -77.10306317010145, + 38.81737588166795 + ], + [ + -77.11233539580124, + 38.80484567949927 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.11233539580124, + 38.80484567949927 + ], + [ + -77.10306317010145, + 38.81737588166795 + ], + [ + -77.12160762150103, + 38.81737588166795 + ], + [ + -77.11233539580124, + 38.80484567949927 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.11233539580124, + 38.80484567949927 + ], + [ + -77.12160762150103, + 38.81737588166795 + ], + [ + -77.13087984720083, + 38.80484567949927 + ], + [ + -77.11233539580124, + 38.80484567949927 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.11233539580124, + 38.80484567949927 + ], + [ + -77.13087984720083, + 38.80484567949927 + ], + [ + -77.12160762150103, + 38.7923154773306 + ], + [ + -77.11233539580124, + 38.80484567949927 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.11233539580124, + 38.80484567949927 + ], + [ + -77.12160762150103, + 38.7923154773306 + ], + [ + -77.10306317010145, + 38.7923154773306 + ], + [ + -77.11233539580124, + 38.80484567949927 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.11233539580124, + 38.80484567949927 + ], + [ + -77.10306317010145, + 38.7923154773306 + ], + [ + -77.09379094440165, + 38.80484567949927 + ], + [ + -77.11233539580124, + 38.80484567949927 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.11233539580124, + 38.829906083836626 + ], + [ + -77.09379094440165, + 38.829906083836626 + ], + [ + -77.10306317010145, + 38.8424362860053 + ], + [ + -77.11233539580124, + 38.829906083836626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.11233539580124, + 38.829906083836626 + ], + [ + -77.10306317010145, + 38.8424362860053 + ], + [ + -77.12160762150103, + 38.8424362860053 + ], + [ + -77.11233539580124, + 38.829906083836626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.11233539580124, + 38.829906083836626 + ], + [ + -77.12160762150103, + 38.8424362860053 + ], + [ + -77.13087984720083, + 38.829906083836626 + ], + [ + -77.11233539580124, + 38.829906083836626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.11233539580124, + 38.829906083836626 + ], + [ + -77.13087984720083, + 38.829906083836626 + ], + [ + -77.12160762150103, + 38.81737588166795 + ], + [ + -77.11233539580124, + 38.829906083836626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.11233539580124, + 38.829906083836626 + ], + [ + -77.12160762150103, + 38.81737588166795 + ], + [ + -77.10306317010145, + 38.81737588166795 + ], + [ + -77.11233539580124, + 38.829906083836626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.11233539580124, + 38.829906083836626 + ], + [ + -77.10306317010145, + 38.81737588166795 + ], + [ + -77.09379094440165, + 38.829906083836626 + ], + [ + -77.11233539580124, + 38.829906083836626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.11233539580124, + 38.85496648817398 + ], + [ + -77.09379094440165, + 38.85496648817398 + ], + [ + -77.10306317010145, + 38.867496690342655 + ], + [ + -77.11233539580124, + 38.85496648817398 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.11233539580124, + 38.85496648817398 + ], + [ + -77.10306317010145, + 38.867496690342655 + ], + [ + -77.12160762150103, + 38.867496690342655 + ], + [ + -77.11233539580124, + 38.85496648817398 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.11233539580124, + 38.85496648817398 + ], + [ + -77.12160762150103, + 38.867496690342655 + ], + [ + -77.13087984720083, + 38.85496648817398 + ], + [ + -77.11233539580124, + 38.85496648817398 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.11233539580124, + 38.85496648817398 + ], + [ + -77.13087984720083, + 38.85496648817398 + ], + [ + -77.12160762150103, + 38.8424362860053 + ], + [ + -77.11233539580124, + 38.85496648817398 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.11233539580124, + 38.85496648817398 + ], + [ + -77.12160762150103, + 38.8424362860053 + ], + [ + -77.10306317010145, + 38.8424362860053 + ], + [ + -77.11233539580124, + 38.85496648817398 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.11233539580124, + 38.85496648817398 + ], + [ + -77.10306317010145, + 38.8424362860053 + ], + [ + -77.09379094440165, + 38.85496648817398 + ], + [ + -77.11233539580124, + 38.85496648817398 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.11233539580124, + 38.88002689251133 + ], + [ + -77.09379094440165, + 38.88002689251133 + ], + [ + -77.10306317010145, + 38.89255709468001 + ], + [ + -77.11233539580124, + 38.88002689251133 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.11233539580124, + 38.88002689251133 + ], + [ + -77.10306317010145, + 38.89255709468001 + ], + [ + -77.12160762150103, + 38.89255709468001 + ], + [ + -77.11233539580124, + 38.88002689251133 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.11233539580124, + 38.88002689251133 + ], + [ + -77.12160762150103, + 38.89255709468001 + ], + [ + -77.13087984720083, + 38.88002689251133 + ], + [ + -77.11233539580124, + 38.88002689251133 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.11233539580124, + 38.88002689251133 + ], + [ + -77.13087984720083, + 38.88002689251133 + ], + [ + -77.12160762150103, + 38.867496690342655 + ], + [ + -77.11233539580124, + 38.88002689251133 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.11233539580124, + 38.88002689251133 + ], + [ + -77.12160762150103, + 38.867496690342655 + ], + [ + -77.10306317010145, + 38.867496690342655 + ], + [ + -77.11233539580124, + 38.88002689251133 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.11233539580124, + 38.88002689251133 + ], + [ + -77.10306317010145, + 38.867496690342655 + ], + [ + -77.09379094440165, + 38.88002689251133 + ], + [ + -77.11233539580124, + 38.88002689251133 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.11233539580124, + 38.90508729684869 + ], + [ + -77.09379094440165, + 38.90508729684869 + ], + [ + -77.10306317010145, + 38.91761749901737 + ], + [ + -77.11233539580124, + 38.90508729684869 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.11233539580124, + 38.90508729684869 + ], + [ + -77.10306317010145, + 38.91761749901737 + ], + [ + -77.12160762150103, + 38.91761749901737 + ], + [ + -77.11233539580124, + 38.90508729684869 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.11233539580124, + 38.90508729684869 + ], + [ + -77.12160762150103, + 38.91761749901737 + ], + [ + -77.13087984720083, + 38.90508729684869 + ], + [ + -77.11233539580124, + 38.90508729684869 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.11233539580124, + 38.90508729684869 + ], + [ + -77.13087984720083, + 38.90508729684869 + ], + [ + -77.12160762150103, + 38.892557094680015 + ], + [ + -77.11233539580124, + 38.90508729684869 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.11233539580124, + 38.90508729684869 + ], + [ + -77.12160762150103, + 38.892557094680015 + ], + [ + -77.10306317010145, + 38.892557094680015 + ], + [ + -77.11233539580124, + 38.90508729684869 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.11233539580124, + 38.90508729684869 + ], + [ + -77.10306317010145, + 38.892557094680015 + ], + [ + -77.09379094440165, + 38.90508729684869 + ], + [ + -77.11233539580124, + 38.90508729684869 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.11233539580124, + 38.930147701186044 + ], + [ + -77.09379094440165, + 38.930147701186044 + ], + [ + -77.10306317010145, + 38.94267790335472 + ], + [ + -77.11233539580124, + 38.930147701186044 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.11233539580124, + 38.930147701186044 + ], + [ + -77.10306317010145, + 38.94267790335472 + ], + [ + -77.12160762150103, + 38.94267790335472 + ], + [ + -77.11233539580124, + 38.930147701186044 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.11233539580124, + 38.930147701186044 + ], + [ + -77.12160762150103, + 38.94267790335472 + ], + [ + -77.13087984720083, + 38.930147701186044 + ], + [ + -77.11233539580124, + 38.930147701186044 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.11233539580124, + 38.930147701186044 + ], + [ + -77.13087984720083, + 38.930147701186044 + ], + [ + -77.12160762150103, + 38.91761749901737 + ], + [ + -77.11233539580124, + 38.930147701186044 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.11233539580124, + 38.930147701186044 + ], + [ + -77.12160762150103, + 38.91761749901737 + ], + [ + -77.10306317010145, + 38.91761749901737 + ], + [ + -77.11233539580124, + 38.930147701186044 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.11233539580124, + 38.930147701186044 + ], + [ + -77.10306317010145, + 38.91761749901737 + ], + [ + -77.09379094440165, + 38.930147701186044 + ], + [ + -77.11233539580124, + 38.930147701186044 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.11233539580124, + 38.9552081055234 + ], + [ + -77.09379094440165, + 38.9552081055234 + ], + [ + -77.10306317010145, + 38.96773830769207 + ], + [ + -77.11233539580124, + 38.9552081055234 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.11233539580124, + 38.9552081055234 + ], + [ + -77.10306317010145, + 38.96773830769207 + ], + [ + -77.12160762150103, + 38.96773830769207 + ], + [ + -77.11233539580124, + 38.9552081055234 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.11233539580124, + 38.9552081055234 + ], + [ + -77.12160762150103, + 38.96773830769207 + ], + [ + -77.13087984720083, + 38.9552081055234 + ], + [ + -77.11233539580124, + 38.9552081055234 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.11233539580124, + 38.9552081055234 + ], + [ + -77.13087984720083, + 38.9552081055234 + ], + [ + -77.12160762150103, + 38.94267790335472 + ], + [ + -77.11233539580124, + 38.9552081055234 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.11233539580124, + 38.9552081055234 + ], + [ + -77.12160762150103, + 38.94267790335472 + ], + [ + -77.10306317010145, + 38.94267790335472 + ], + [ + -77.11233539580124, + 38.9552081055234 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.11233539580124, + 38.9552081055234 + ], + [ + -77.10306317010145, + 38.94267790335472 + ], + [ + -77.09379094440165, + 38.9552081055234 + ], + [ + -77.11233539580124, + 38.9552081055234 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.11233539580124, + 38.98026850986075 + ], + [ + -77.09379094440165, + 38.98026850986075 + ], + [ + -77.10306317010145, + 38.992798712029426 + ], + [ + -77.11233539580124, + 38.98026850986075 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.11233539580124, + 38.98026850986075 + ], + [ + -77.10306317010145, + 38.992798712029426 + ], + [ + -77.12160762150103, + 38.992798712029426 + ], + [ + -77.11233539580124, + 38.98026850986075 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.11233539580124, + 38.98026850986075 + ], + [ + -77.12160762150103, + 38.992798712029426 + ], + [ + -77.13087984720083, + 38.98026850986075 + ], + [ + -77.11233539580124, + 38.98026850986075 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.11233539580124, + 38.98026850986075 + ], + [ + -77.13087984720083, + 38.98026850986075 + ], + [ + -77.12160762150103, + 38.96773830769207 + ], + [ + -77.11233539580124, + 38.98026850986075 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.11233539580124, + 38.98026850986075 + ], + [ + -77.12160762150103, + 38.96773830769207 + ], + [ + -77.10306317010145, + 38.96773830769207 + ], + [ + -77.11233539580124, + 38.98026850986075 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.11233539580124, + 38.98026850986075 + ], + [ + -77.10306317010145, + 38.96773830769207 + ], + [ + -77.09379094440165, + 38.98026850986075 + ], + [ + -77.11233539580124, + 38.98026850986075 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.11233539580124, + 39.0053289141981 + ], + [ + -77.09379094440165, + 39.0053289141981 + ], + [ + -77.10306317010145, + 39.01785911636678 + ], + [ + -77.11233539580124, + 39.0053289141981 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.11233539580124, + 39.0053289141981 + ], + [ + -77.10306317010145, + 39.01785911636678 + ], + [ + -77.12160762150103, + 39.01785911636678 + ], + [ + -77.11233539580124, + 39.0053289141981 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.11233539580124, + 39.0053289141981 + ], + [ + -77.12160762150103, + 39.01785911636678 + ], + [ + -77.13087984720083, + 39.0053289141981 + ], + [ + -77.11233539580124, + 39.0053289141981 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.11233539580124, + 39.0053289141981 + ], + [ + -77.13087984720083, + 39.0053289141981 + ], + [ + -77.12160762150103, + 38.992798712029426 + ], + [ + -77.11233539580124, + 39.0053289141981 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.11233539580124, + 39.0053289141981 + ], + [ + -77.12160762150103, + 38.992798712029426 + ], + [ + -77.10306317010145, + 38.992798712029426 + ], + [ + -77.11233539580124, + 39.0053289141981 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.11233539580124, + 39.0053289141981 + ], + [ + -77.10306317010145, + 38.992798712029426 + ], + [ + -77.09379094440165, + 39.0053289141981 + ], + [ + -77.11233539580124, + 39.0053289141981 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.11233539580124, + 39.03038931853546 + ], + [ + -77.09379094440165, + 39.03038931853546 + ], + [ + -77.10306317010145, + 39.04291952070414 + ], + [ + -77.11233539580124, + 39.03038931853546 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.11233539580124, + 39.03038931853546 + ], + [ + -77.10306317010145, + 39.04291952070414 + ], + [ + -77.12160762150103, + 39.04291952070414 + ], + [ + -77.11233539580124, + 39.03038931853546 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.11233539580124, + 39.03038931853546 + ], + [ + -77.12160762150103, + 39.04291952070414 + ], + [ + -77.13087984720083, + 39.03038931853546 + ], + [ + -77.11233539580124, + 39.03038931853546 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.11233539580124, + 39.03038931853546 + ], + [ + -77.13087984720083, + 39.03038931853546 + ], + [ + -77.12160762150103, + 39.017859116366786 + ], + [ + -77.11233539580124, + 39.03038931853546 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.11233539580124, + 39.03038931853546 + ], + [ + -77.12160762150103, + 39.017859116366786 + ], + [ + -77.10306317010145, + 39.017859116366786 + ], + [ + -77.11233539580124, + 39.03038931853546 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.11233539580124, + 39.03038931853546 + ], + [ + -77.10306317010145, + 39.017859116366786 + ], + [ + -77.09379094440165, + 39.03038931853546 + ], + [ + -77.11233539580124, + 39.03038931853546 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.08451871870186, + 38.71713426431853 + ], + [ + -77.06597426730227, + 38.71713426431853 + ], + [ + -77.07524649300207, + 38.72966446648721 + ], + [ + -77.08451871870186, + 38.71713426431853 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.08451871870186, + 38.71713426431853 + ], + [ + -77.07524649300207, + 38.72966446648721 + ], + [ + -77.09379094440165, + 38.72966446648721 + ], + [ + -77.08451871870186, + 38.71713426431853 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.08451871870186, + 38.71713426431853 + ], + [ + -77.09379094440165, + 38.72966446648721 + ], + [ + -77.10306317010145, + 38.71713426431853 + ], + [ + -77.08451871870186, + 38.71713426431853 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.08451871870186, + 38.71713426431853 + ], + [ + -77.10306317010145, + 38.71713426431853 + ], + [ + -77.09379094440165, + 38.704604062149855 + ], + [ + -77.08451871870186, + 38.71713426431853 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.08451871870186, + 38.71713426431853 + ], + [ + -77.09379094440165, + 38.704604062149855 + ], + [ + -77.07524649300207, + 38.704604062149855 + ], + [ + -77.08451871870186, + 38.71713426431853 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.08451871870186, + 38.71713426431853 + ], + [ + -77.07524649300207, + 38.704604062149855 + ], + [ + -77.06597426730227, + 38.71713426431853 + ], + [ + -77.08451871870186, + 38.71713426431853 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.08451871870186, + 38.742194668655884 + ], + [ + -77.06597426730227, + 38.742194668655884 + ], + [ + -77.07524649300207, + 38.75472487082456 + ], + [ + -77.08451871870186, + 38.742194668655884 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.08451871870186, + 38.742194668655884 + ], + [ + -77.07524649300207, + 38.75472487082456 + ], + [ + -77.09379094440165, + 38.75472487082456 + ], + [ + -77.08451871870186, + 38.742194668655884 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.08451871870186, + 38.742194668655884 + ], + [ + -77.09379094440165, + 38.75472487082456 + ], + [ + -77.10306317010145, + 38.742194668655884 + ], + [ + -77.08451871870186, + 38.742194668655884 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.08451871870186, + 38.742194668655884 + ], + [ + -77.10306317010145, + 38.742194668655884 + ], + [ + -77.09379094440165, + 38.72966446648721 + ], + [ + -77.08451871870186, + 38.742194668655884 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.08451871870186, + 38.742194668655884 + ], + [ + -77.09379094440165, + 38.72966446648721 + ], + [ + -77.07524649300207, + 38.72966446648721 + ], + [ + -77.08451871870186, + 38.742194668655884 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.08451871870186, + 38.742194668655884 + ], + [ + -77.07524649300207, + 38.72966446648721 + ], + [ + -77.06597426730227, + 38.742194668655884 + ], + [ + -77.08451871870186, + 38.742194668655884 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.08451871870186, + 38.767255072993244 + ], + [ + -77.06597426730227, + 38.767255072993244 + ], + [ + -77.07524649300207, + 38.77978527516192 + ], + [ + -77.08451871870186, + 38.767255072993244 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.08451871870186, + 38.767255072993244 + ], + [ + -77.07524649300207, + 38.77978527516192 + ], + [ + -77.09379094440165, + 38.77978527516192 + ], + [ + -77.08451871870186, + 38.767255072993244 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.08451871870186, + 38.767255072993244 + ], + [ + -77.09379094440165, + 38.77978527516192 + ], + [ + -77.10306317010145, + 38.767255072993244 + ], + [ + -77.08451871870186, + 38.767255072993244 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.08451871870186, + 38.767255072993244 + ], + [ + -77.10306317010145, + 38.767255072993244 + ], + [ + -77.09379094440165, + 38.75472487082457 + ], + [ + -77.08451871870186, + 38.767255072993244 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.08451871870186, + 38.767255072993244 + ], + [ + -77.09379094440165, + 38.75472487082457 + ], + [ + -77.07524649300207, + 38.75472487082457 + ], + [ + -77.08451871870186, + 38.767255072993244 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.08451871870186, + 38.767255072993244 + ], + [ + -77.07524649300207, + 38.75472487082457 + ], + [ + -77.06597426730227, + 38.767255072993244 + ], + [ + -77.08451871870186, + 38.767255072993244 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.08451871870186, + 38.7923154773306 + ], + [ + -77.06597426730227, + 38.7923154773306 + ], + [ + -77.07524649300207, + 38.80484567949927 + ], + [ + -77.08451871870186, + 38.7923154773306 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.08451871870186, + 38.7923154773306 + ], + [ + -77.07524649300207, + 38.80484567949927 + ], + [ + -77.09379094440165, + 38.80484567949927 + ], + [ + -77.08451871870186, + 38.7923154773306 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.08451871870186, + 38.7923154773306 + ], + [ + -77.09379094440165, + 38.80484567949927 + ], + [ + -77.10306317010145, + 38.7923154773306 + ], + [ + -77.08451871870186, + 38.7923154773306 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.08451871870186, + 38.7923154773306 + ], + [ + -77.10306317010145, + 38.7923154773306 + ], + [ + -77.09379094440165, + 38.77978527516192 + ], + [ + -77.08451871870186, + 38.7923154773306 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.08451871870186, + 38.7923154773306 + ], + [ + -77.09379094440165, + 38.77978527516192 + ], + [ + -77.07524649300207, + 38.77978527516192 + ], + [ + -77.08451871870186, + 38.7923154773306 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.08451871870186, + 38.7923154773306 + ], + [ + -77.07524649300207, + 38.77978527516192 + ], + [ + -77.06597426730227, + 38.7923154773306 + ], + [ + -77.08451871870186, + 38.7923154773306 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.08451871870186, + 38.81737588166795 + ], + [ + -77.06597426730227, + 38.81737588166795 + ], + [ + -77.07524649300207, + 38.829906083836626 + ], + [ + -77.08451871870186, + 38.81737588166795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.08451871870186, + 38.81737588166795 + ], + [ + -77.07524649300207, + 38.829906083836626 + ], + [ + -77.09379094440165, + 38.829906083836626 + ], + [ + -77.08451871870186, + 38.81737588166795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.08451871870186, + 38.81737588166795 + ], + [ + -77.09379094440165, + 38.829906083836626 + ], + [ + -77.10306317010145, + 38.81737588166795 + ], + [ + -77.08451871870186, + 38.81737588166795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.08451871870186, + 38.81737588166795 + ], + [ + -77.10306317010145, + 38.81737588166795 + ], + [ + -77.09379094440165, + 38.80484567949927 + ], + [ + -77.08451871870186, + 38.81737588166795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.08451871870186, + 38.81737588166795 + ], + [ + -77.09379094440165, + 38.80484567949927 + ], + [ + -77.07524649300207, + 38.80484567949927 + ], + [ + -77.08451871870186, + 38.81737588166795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.08451871870186, + 38.81737588166795 + ], + [ + -77.07524649300207, + 38.80484567949927 + ], + [ + -77.06597426730227, + 38.81737588166795 + ], + [ + -77.08451871870186, + 38.81737588166795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.08451871870186, + 38.8424362860053 + ], + [ + -77.06597426730227, + 38.8424362860053 + ], + [ + -77.07524649300207, + 38.85496648817398 + ], + [ + -77.08451871870186, + 38.8424362860053 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.08451871870186, + 38.8424362860053 + ], + [ + -77.07524649300207, + 38.85496648817398 + ], + [ + -77.09379094440165, + 38.85496648817398 + ], + [ + -77.08451871870186, + 38.8424362860053 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.08451871870186, + 38.8424362860053 + ], + [ + -77.09379094440165, + 38.85496648817398 + ], + [ + -77.10306317010145, + 38.8424362860053 + ], + [ + -77.08451871870186, + 38.8424362860053 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.08451871870186, + 38.8424362860053 + ], + [ + -77.10306317010145, + 38.8424362860053 + ], + [ + -77.09379094440165, + 38.829906083836626 + ], + [ + -77.08451871870186, + 38.8424362860053 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.08451871870186, + 38.8424362860053 + ], + [ + -77.09379094440165, + 38.829906083836626 + ], + [ + -77.07524649300207, + 38.829906083836626 + ], + [ + -77.08451871870186, + 38.8424362860053 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.08451871870186, + 38.8424362860053 + ], + [ + -77.07524649300207, + 38.829906083836626 + ], + [ + -77.06597426730227, + 38.8424362860053 + ], + [ + -77.08451871870186, + 38.8424362860053 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.08451871870186, + 38.867496690342655 + ], + [ + -77.06597426730227, + 38.867496690342655 + ], + [ + -77.07524649300207, + 38.88002689251133 + ], + [ + -77.08451871870186, + 38.867496690342655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.08451871870186, + 38.867496690342655 + ], + [ + -77.07524649300207, + 38.88002689251133 + ], + [ + -77.09379094440165, + 38.88002689251133 + ], + [ + -77.08451871870186, + 38.867496690342655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.08451871870186, + 38.867496690342655 + ], + [ + -77.09379094440165, + 38.88002689251133 + ], + [ + -77.10306317010145, + 38.867496690342655 + ], + [ + -77.08451871870186, + 38.867496690342655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.08451871870186, + 38.867496690342655 + ], + [ + -77.10306317010145, + 38.867496690342655 + ], + [ + -77.09379094440165, + 38.85496648817398 + ], + [ + -77.08451871870186, + 38.867496690342655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.08451871870186, + 38.867496690342655 + ], + [ + -77.09379094440165, + 38.85496648817398 + ], + [ + -77.07524649300207, + 38.85496648817398 + ], + [ + -77.08451871870186, + 38.867496690342655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.08451871870186, + 38.867496690342655 + ], + [ + -77.07524649300207, + 38.85496648817398 + ], + [ + -77.06597426730227, + 38.867496690342655 + ], + [ + -77.08451871870186, + 38.867496690342655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.08451871870186, + 38.892557094680015 + ], + [ + -77.06597426730227, + 38.892557094680015 + ], + [ + -77.07524649300207, + 38.90508729684869 + ], + [ + -77.08451871870186, + 38.892557094680015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.08451871870186, + 38.892557094680015 + ], + [ + -77.07524649300207, + 38.90508729684869 + ], + [ + -77.09379094440165, + 38.90508729684869 + ], + [ + -77.08451871870186, + 38.892557094680015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.08451871870186, + 38.892557094680015 + ], + [ + -77.09379094440165, + 38.90508729684869 + ], + [ + -77.10306317010145, + 38.892557094680015 + ], + [ + -77.08451871870186, + 38.892557094680015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.08451871870186, + 38.892557094680015 + ], + [ + -77.10306317010145, + 38.892557094680015 + ], + [ + -77.09379094440165, + 38.88002689251134 + ], + [ + -77.08451871870186, + 38.892557094680015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.08451871870186, + 38.892557094680015 + ], + [ + -77.09379094440165, + 38.88002689251134 + ], + [ + -77.07524649300207, + 38.88002689251134 + ], + [ + -77.08451871870186, + 38.892557094680015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.08451871870186, + 38.892557094680015 + ], + [ + -77.07524649300207, + 38.88002689251134 + ], + [ + -77.06597426730227, + 38.892557094680015 + ], + [ + -77.08451871870186, + 38.892557094680015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.08451871870186, + 38.91761749901737 + ], + [ + -77.06597426730227, + 38.91761749901737 + ], + [ + -77.07524649300207, + 38.930147701186044 + ], + [ + -77.08451871870186, + 38.91761749901737 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.08451871870186, + 38.91761749901737 + ], + [ + -77.07524649300207, + 38.930147701186044 + ], + [ + -77.09379094440165, + 38.930147701186044 + ], + [ + -77.08451871870186, + 38.91761749901737 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.08451871870186, + 38.91761749901737 + ], + [ + -77.09379094440165, + 38.930147701186044 + ], + [ + -77.10306317010145, + 38.91761749901737 + ], + [ + -77.08451871870186, + 38.91761749901737 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.08451871870186, + 38.91761749901737 + ], + [ + -77.10306317010145, + 38.91761749901737 + ], + [ + -77.09379094440165, + 38.90508729684869 + ], + [ + -77.08451871870186, + 38.91761749901737 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.08451871870186, + 38.91761749901737 + ], + [ + -77.09379094440165, + 38.90508729684869 + ], + [ + -77.07524649300207, + 38.90508729684869 + ], + [ + -77.08451871870186, + 38.91761749901737 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.08451871870186, + 38.91761749901737 + ], + [ + -77.07524649300207, + 38.90508729684869 + ], + [ + -77.06597426730227, + 38.91761749901737 + ], + [ + -77.08451871870186, + 38.91761749901737 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.08451871870186, + 38.94267790335472 + ], + [ + -77.06597426730227, + 38.94267790335472 + ], + [ + -77.07524649300207, + 38.9552081055234 + ], + [ + -77.08451871870186, + 38.94267790335472 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.08451871870186, + 38.94267790335472 + ], + [ + -77.07524649300207, + 38.9552081055234 + ], + [ + -77.09379094440165, + 38.9552081055234 + ], + [ + -77.08451871870186, + 38.94267790335472 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.08451871870186, + 38.94267790335472 + ], + [ + -77.09379094440165, + 38.9552081055234 + ], + [ + -77.10306317010145, + 38.94267790335472 + ], + [ + -77.08451871870186, + 38.94267790335472 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.08451871870186, + 38.94267790335472 + ], + [ + -77.10306317010145, + 38.94267790335472 + ], + [ + -77.09379094440165, + 38.930147701186044 + ], + [ + -77.08451871870186, + 38.94267790335472 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.08451871870186, + 38.94267790335472 + ], + [ + -77.09379094440165, + 38.930147701186044 + ], + [ + -77.07524649300207, + 38.930147701186044 + ], + [ + -77.08451871870186, + 38.94267790335472 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.08451871870186, + 38.94267790335472 + ], + [ + -77.07524649300207, + 38.930147701186044 + ], + [ + -77.06597426730227, + 38.94267790335472 + ], + [ + -77.08451871870186, + 38.94267790335472 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.08451871870186, + 38.96773830769207 + ], + [ + -77.06597426730227, + 38.96773830769207 + ], + [ + -77.07524649300207, + 38.98026850986075 + ], + [ + -77.08451871870186, + 38.96773830769207 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.08451871870186, + 38.96773830769207 + ], + [ + -77.07524649300207, + 38.98026850986075 + ], + [ + -77.09379094440165, + 38.98026850986075 + ], + [ + -77.08451871870186, + 38.96773830769207 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.08451871870186, + 38.96773830769207 + ], + [ + -77.09379094440165, + 38.98026850986075 + ], + [ + -77.10306317010145, + 38.96773830769207 + ], + [ + -77.08451871870186, + 38.96773830769207 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.08451871870186, + 38.96773830769207 + ], + [ + -77.10306317010145, + 38.96773830769207 + ], + [ + -77.09379094440165, + 38.9552081055234 + ], + [ + -77.08451871870186, + 38.96773830769207 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.08451871870186, + 38.96773830769207 + ], + [ + -77.09379094440165, + 38.9552081055234 + ], + [ + -77.07524649300207, + 38.9552081055234 + ], + [ + -77.08451871870186, + 38.96773830769207 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.08451871870186, + 38.96773830769207 + ], + [ + -77.07524649300207, + 38.9552081055234 + ], + [ + -77.06597426730227, + 38.96773830769207 + ], + [ + -77.08451871870186, + 38.96773830769207 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.08451871870186, + 38.992798712029426 + ], + [ + -77.06597426730227, + 38.992798712029426 + ], + [ + -77.07524649300207, + 39.0053289141981 + ], + [ + -77.08451871870186, + 38.992798712029426 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.08451871870186, + 38.992798712029426 + ], + [ + -77.07524649300207, + 39.0053289141981 + ], + [ + -77.09379094440165, + 39.0053289141981 + ], + [ + -77.08451871870186, + 38.992798712029426 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.08451871870186, + 38.992798712029426 + ], + [ + -77.09379094440165, + 39.0053289141981 + ], + [ + -77.10306317010145, + 38.992798712029426 + ], + [ + -77.08451871870186, + 38.992798712029426 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.08451871870186, + 38.992798712029426 + ], + [ + -77.10306317010145, + 38.992798712029426 + ], + [ + -77.09379094440165, + 38.98026850986075 + ], + [ + -77.08451871870186, + 38.992798712029426 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.08451871870186, + 38.992798712029426 + ], + [ + -77.09379094440165, + 38.98026850986075 + ], + [ + -77.07524649300207, + 38.98026850986075 + ], + [ + -77.08451871870186, + 38.992798712029426 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.08451871870186, + 38.992798712029426 + ], + [ + -77.07524649300207, + 38.98026850986075 + ], + [ + -77.06597426730227, + 38.992798712029426 + ], + [ + -77.08451871870186, + 38.992798712029426 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.08451871870186, + 39.017859116366786 + ], + [ + -77.06597426730227, + 39.017859116366786 + ], + [ + -77.07524649300207, + 39.03038931853546 + ], + [ + -77.08451871870186, + 39.017859116366786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.08451871870186, + 39.017859116366786 + ], + [ + -77.07524649300207, + 39.03038931853546 + ], + [ + -77.09379094440165, + 39.03038931853546 + ], + [ + -77.08451871870186, + 39.017859116366786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.08451871870186, + 39.017859116366786 + ], + [ + -77.09379094440165, + 39.03038931853546 + ], + [ + -77.10306317010145, + 39.017859116366786 + ], + [ + -77.08451871870186, + 39.017859116366786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.08451871870186, + 39.017859116366786 + ], + [ + -77.10306317010145, + 39.017859116366786 + ], + [ + -77.09379094440165, + 39.00532891419811 + ], + [ + -77.08451871870186, + 39.017859116366786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.08451871870186, + 39.017859116366786 + ], + [ + -77.09379094440165, + 39.00532891419811 + ], + [ + -77.07524649300207, + 39.00532891419811 + ], + [ + -77.08451871870186, + 39.017859116366786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.08451871870186, + 39.017859116366786 + ], + [ + -77.07524649300207, + 39.00532891419811 + ], + [ + -77.06597426730227, + 39.017859116366786 + ], + [ + -77.08451871870186, + 39.017859116366786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.05670204160248, + 38.72966446648721 + ], + [ + -77.03815759020289, + 38.72966446648721 + ], + [ + -77.04742981590269, + 38.742194668655884 + ], + [ + -77.05670204160248, + 38.72966446648721 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.05670204160248, + 38.72966446648721 + ], + [ + -77.04742981590269, + 38.742194668655884 + ], + [ + -77.06597426730227, + 38.742194668655884 + ], + [ + -77.05670204160248, + 38.72966446648721 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.05670204160248, + 38.72966446648721 + ], + [ + -77.06597426730227, + 38.742194668655884 + ], + [ + -77.07524649300207, + 38.72966446648721 + ], + [ + -77.05670204160248, + 38.72966446648721 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.05670204160248, + 38.72966446648721 + ], + [ + -77.07524649300207, + 38.72966446648721 + ], + [ + -77.06597426730227, + 38.71713426431853 + ], + [ + -77.05670204160248, + 38.72966446648721 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.05670204160248, + 38.72966446648721 + ], + [ + -77.06597426730227, + 38.71713426431853 + ], + [ + -77.04742981590269, + 38.71713426431853 + ], + [ + -77.05670204160248, + 38.72966446648721 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.05670204160248, + 38.72966446648721 + ], + [ + -77.04742981590269, + 38.71713426431853 + ], + [ + -77.03815759020289, + 38.72966446648721 + ], + [ + -77.05670204160248, + 38.72966446648721 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.05670204160248, + 38.75472487082456 + ], + [ + -77.03815759020289, + 38.75472487082456 + ], + [ + -77.04742981590269, + 38.76725507299324 + ], + [ + -77.05670204160248, + 38.75472487082456 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.05670204160248, + 38.75472487082456 + ], + [ + -77.04742981590269, + 38.76725507299324 + ], + [ + -77.06597426730227, + 38.76725507299324 + ], + [ + -77.05670204160248, + 38.75472487082456 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.05670204160248, + 38.75472487082456 + ], + [ + -77.06597426730227, + 38.76725507299324 + ], + [ + -77.07524649300207, + 38.75472487082456 + ], + [ + -77.05670204160248, + 38.75472487082456 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.05670204160248, + 38.75472487082456 + ], + [ + -77.07524649300207, + 38.75472487082456 + ], + [ + -77.06597426730227, + 38.742194668655884 + ], + [ + -77.05670204160248, + 38.75472487082456 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.05670204160248, + 38.75472487082456 + ], + [ + -77.06597426730227, + 38.742194668655884 + ], + [ + -77.04742981590269, + 38.742194668655884 + ], + [ + -77.05670204160248, + 38.75472487082456 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.05670204160248, + 38.75472487082456 + ], + [ + -77.04742981590269, + 38.742194668655884 + ], + [ + -77.03815759020289, + 38.75472487082456 + ], + [ + -77.05670204160248, + 38.75472487082456 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.05670204160248, + 38.77978527516192 + ], + [ + -77.03815759020289, + 38.77978527516192 + ], + [ + -77.04742981590269, + 38.7923154773306 + ], + [ + -77.05670204160248, + 38.77978527516192 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.05670204160248, + 38.77978527516192 + ], + [ + -77.04742981590269, + 38.7923154773306 + ], + [ + -77.06597426730227, + 38.7923154773306 + ], + [ + -77.05670204160248, + 38.77978527516192 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.05670204160248, + 38.77978527516192 + ], + [ + -77.06597426730227, + 38.7923154773306 + ], + [ + -77.07524649300207, + 38.77978527516192 + ], + [ + -77.05670204160248, + 38.77978527516192 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.05670204160248, + 38.77978527516192 + ], + [ + -77.07524649300207, + 38.77978527516192 + ], + [ + -77.06597426730227, + 38.767255072993244 + ], + [ + -77.05670204160248, + 38.77978527516192 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.05670204160248, + 38.77978527516192 + ], + [ + -77.06597426730227, + 38.767255072993244 + ], + [ + -77.04742981590269, + 38.767255072993244 + ], + [ + -77.05670204160248, + 38.77978527516192 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.05670204160248, + 38.77978527516192 + ], + [ + -77.04742981590269, + 38.767255072993244 + ], + [ + -77.03815759020289, + 38.77978527516192 + ], + [ + -77.05670204160248, + 38.77978527516192 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.05670204160248, + 38.80484567949927 + ], + [ + -77.03815759020289, + 38.80484567949927 + ], + [ + -77.04742981590269, + 38.81737588166795 + ], + [ + -77.05670204160248, + 38.80484567949927 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.05670204160248, + 38.80484567949927 + ], + [ + -77.04742981590269, + 38.81737588166795 + ], + [ + -77.06597426730227, + 38.81737588166795 + ], + [ + -77.05670204160248, + 38.80484567949927 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.05670204160248, + 38.80484567949927 + ], + [ + -77.06597426730227, + 38.81737588166795 + ], + [ + -77.07524649300207, + 38.80484567949927 + ], + [ + -77.05670204160248, + 38.80484567949927 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.05670204160248, + 38.80484567949927 + ], + [ + -77.07524649300207, + 38.80484567949927 + ], + [ + -77.06597426730227, + 38.7923154773306 + ], + [ + -77.05670204160248, + 38.80484567949927 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.05670204160248, + 38.80484567949927 + ], + [ + -77.06597426730227, + 38.7923154773306 + ], + [ + -77.04742981590269, + 38.7923154773306 + ], + [ + -77.05670204160248, + 38.80484567949927 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.05670204160248, + 38.80484567949927 + ], + [ + -77.04742981590269, + 38.7923154773306 + ], + [ + -77.03815759020289, + 38.80484567949927 + ], + [ + -77.05670204160248, + 38.80484567949927 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.05670204160248, + 38.829906083836626 + ], + [ + -77.03815759020289, + 38.829906083836626 + ], + [ + -77.04742981590269, + 38.8424362860053 + ], + [ + -77.05670204160248, + 38.829906083836626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.05670204160248, + 38.829906083836626 + ], + [ + -77.04742981590269, + 38.8424362860053 + ], + [ + -77.06597426730227, + 38.8424362860053 + ], + [ + -77.05670204160248, + 38.829906083836626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.05670204160248, + 38.829906083836626 + ], + [ + -77.06597426730227, + 38.8424362860053 + ], + [ + -77.07524649300207, + 38.829906083836626 + ], + [ + -77.05670204160248, + 38.829906083836626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.05670204160248, + 38.829906083836626 + ], + [ + -77.07524649300207, + 38.829906083836626 + ], + [ + -77.06597426730227, + 38.81737588166795 + ], + [ + -77.05670204160248, + 38.829906083836626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.05670204160248, + 38.829906083836626 + ], + [ + -77.06597426730227, + 38.81737588166795 + ], + [ + -77.04742981590269, + 38.81737588166795 + ], + [ + -77.05670204160248, + 38.829906083836626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.05670204160248, + 38.829906083836626 + ], + [ + -77.04742981590269, + 38.81737588166795 + ], + [ + -77.03815759020289, + 38.829906083836626 + ], + [ + -77.05670204160248, + 38.829906083836626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.05670204160248, + 38.85496648817398 + ], + [ + -77.03815759020289, + 38.85496648817398 + ], + [ + -77.04742981590269, + 38.867496690342655 + ], + [ + -77.05670204160248, + 38.85496648817398 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.05670204160248, + 38.85496648817398 + ], + [ + -77.04742981590269, + 38.867496690342655 + ], + [ + -77.06597426730227, + 38.867496690342655 + ], + [ + -77.05670204160248, + 38.85496648817398 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.05670204160248, + 38.85496648817398 + ], + [ + -77.06597426730227, + 38.867496690342655 + ], + [ + -77.07524649300207, + 38.85496648817398 + ], + [ + -77.05670204160248, + 38.85496648817398 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.05670204160248, + 38.85496648817398 + ], + [ + -77.07524649300207, + 38.85496648817398 + ], + [ + -77.06597426730227, + 38.8424362860053 + ], + [ + -77.05670204160248, + 38.85496648817398 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.05670204160248, + 38.85496648817398 + ], + [ + -77.06597426730227, + 38.8424362860053 + ], + [ + -77.04742981590269, + 38.8424362860053 + ], + [ + -77.05670204160248, + 38.85496648817398 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.05670204160248, + 38.85496648817398 + ], + [ + -77.04742981590269, + 38.8424362860053 + ], + [ + -77.03815759020289, + 38.85496648817398 + ], + [ + -77.05670204160248, + 38.85496648817398 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.05670204160248, + 38.88002689251133 + ], + [ + -77.03815759020289, + 38.88002689251133 + ], + [ + -77.04742981590269, + 38.89255709468001 + ], + [ + -77.05670204160248, + 38.88002689251133 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.05670204160248, + 38.88002689251133 + ], + [ + -77.04742981590269, + 38.89255709468001 + ], + [ + -77.06597426730227, + 38.89255709468001 + ], + [ + -77.05670204160248, + 38.88002689251133 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.05670204160248, + 38.88002689251133 + ], + [ + -77.06597426730227, + 38.89255709468001 + ], + [ + -77.07524649300207, + 38.88002689251133 + ], + [ + -77.05670204160248, + 38.88002689251133 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.05670204160248, + 38.88002689251133 + ], + [ + -77.07524649300207, + 38.88002689251133 + ], + [ + -77.06597426730227, + 38.867496690342655 + ], + [ + -77.05670204160248, + 38.88002689251133 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.05670204160248, + 38.88002689251133 + ], + [ + -77.06597426730227, + 38.867496690342655 + ], + [ + -77.04742981590269, + 38.867496690342655 + ], + [ + -77.05670204160248, + 38.88002689251133 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.05670204160248, + 38.88002689251133 + ], + [ + -77.04742981590269, + 38.867496690342655 + ], + [ + -77.03815759020289, + 38.88002689251133 + ], + [ + -77.05670204160248, + 38.88002689251133 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.05670204160248, + 38.90508729684869 + ], + [ + -77.03815759020289, + 38.90508729684869 + ], + [ + -77.04742981590269, + 38.91761749901737 + ], + [ + -77.05670204160248, + 38.90508729684869 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.05670204160248, + 38.90508729684869 + ], + [ + -77.04742981590269, + 38.91761749901737 + ], + [ + -77.06597426730227, + 38.91761749901737 + ], + [ + -77.05670204160248, + 38.90508729684869 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.05670204160248, + 38.90508729684869 + ], + [ + -77.06597426730227, + 38.91761749901737 + ], + [ + -77.07524649300207, + 38.90508729684869 + ], + [ + -77.05670204160248, + 38.90508729684869 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.05670204160248, + 38.90508729684869 + ], + [ + -77.07524649300207, + 38.90508729684869 + ], + [ + -77.06597426730227, + 38.892557094680015 + ], + [ + -77.05670204160248, + 38.90508729684869 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.05670204160248, + 38.90508729684869 + ], + [ + -77.06597426730227, + 38.892557094680015 + ], + [ + -77.04742981590269, + 38.892557094680015 + ], + [ + -77.05670204160248, + 38.90508729684869 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.05670204160248, + 38.90508729684869 + ], + [ + -77.04742981590269, + 38.892557094680015 + ], + [ + -77.03815759020289, + 38.90508729684869 + ], + [ + -77.05670204160248, + 38.90508729684869 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.05670204160248, + 38.930147701186044 + ], + [ + -77.03815759020289, + 38.930147701186044 + ], + [ + -77.04742981590269, + 38.94267790335472 + ], + [ + -77.05670204160248, + 38.930147701186044 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.05670204160248, + 38.930147701186044 + ], + [ + -77.04742981590269, + 38.94267790335472 + ], + [ + -77.06597426730227, + 38.94267790335472 + ], + [ + -77.05670204160248, + 38.930147701186044 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.05670204160248, + 38.930147701186044 + ], + [ + -77.06597426730227, + 38.94267790335472 + ], + [ + -77.07524649300207, + 38.930147701186044 + ], + [ + -77.05670204160248, + 38.930147701186044 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.05670204160248, + 38.930147701186044 + ], + [ + -77.07524649300207, + 38.930147701186044 + ], + [ + -77.06597426730227, + 38.91761749901737 + ], + [ + -77.05670204160248, + 38.930147701186044 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.05670204160248, + 38.930147701186044 + ], + [ + -77.06597426730227, + 38.91761749901737 + ], + [ + -77.04742981590269, + 38.91761749901737 + ], + [ + -77.05670204160248, + 38.930147701186044 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.05670204160248, + 38.930147701186044 + ], + [ + -77.04742981590269, + 38.91761749901737 + ], + [ + -77.03815759020289, + 38.930147701186044 + ], + [ + -77.05670204160248, + 38.930147701186044 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.05670204160248, + 38.9552081055234 + ], + [ + -77.03815759020289, + 38.9552081055234 + ], + [ + -77.04742981590269, + 38.96773830769207 + ], + [ + -77.05670204160248, + 38.9552081055234 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.05670204160248, + 38.9552081055234 + ], + [ + -77.04742981590269, + 38.96773830769207 + ], + [ + -77.06597426730227, + 38.96773830769207 + ], + [ + -77.05670204160248, + 38.9552081055234 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.05670204160248, + 38.9552081055234 + ], + [ + -77.06597426730227, + 38.96773830769207 + ], + [ + -77.07524649300207, + 38.9552081055234 + ], + [ + -77.05670204160248, + 38.9552081055234 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.05670204160248, + 38.9552081055234 + ], + [ + -77.07524649300207, + 38.9552081055234 + ], + [ + -77.06597426730227, + 38.94267790335472 + ], + [ + -77.05670204160248, + 38.9552081055234 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.05670204160248, + 38.9552081055234 + ], + [ + -77.06597426730227, + 38.94267790335472 + ], + [ + -77.04742981590269, + 38.94267790335472 + ], + [ + -77.05670204160248, + 38.9552081055234 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.05670204160248, + 38.9552081055234 + ], + [ + -77.04742981590269, + 38.94267790335472 + ], + [ + -77.03815759020289, + 38.9552081055234 + ], + [ + -77.05670204160248, + 38.9552081055234 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.05670204160248, + 38.98026850986075 + ], + [ + -77.03815759020289, + 38.98026850986075 + ], + [ + -77.04742981590269, + 38.992798712029426 + ], + [ + -77.05670204160248, + 38.98026850986075 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.05670204160248, + 38.98026850986075 + ], + [ + -77.04742981590269, + 38.992798712029426 + ], + [ + -77.06597426730227, + 38.992798712029426 + ], + [ + -77.05670204160248, + 38.98026850986075 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.05670204160248, + 38.98026850986075 + ], + [ + -77.06597426730227, + 38.992798712029426 + ], + [ + -77.07524649300207, + 38.98026850986075 + ], + [ + -77.05670204160248, + 38.98026850986075 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.05670204160248, + 38.98026850986075 + ], + [ + -77.07524649300207, + 38.98026850986075 + ], + [ + -77.06597426730227, + 38.96773830769207 + ], + [ + -77.05670204160248, + 38.98026850986075 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.05670204160248, + 38.98026850986075 + ], + [ + -77.06597426730227, + 38.96773830769207 + ], + [ + -77.04742981590269, + 38.96773830769207 + ], + [ + -77.05670204160248, + 38.98026850986075 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.05670204160248, + 38.98026850986075 + ], + [ + -77.04742981590269, + 38.96773830769207 + ], + [ + -77.03815759020289, + 38.98026850986075 + ], + [ + -77.05670204160248, + 38.98026850986075 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.05670204160248, + 39.0053289141981 + ], + [ + -77.03815759020289, + 39.0053289141981 + ], + [ + -77.04742981590269, + 39.01785911636678 + ], + [ + -77.05670204160248, + 39.0053289141981 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.05670204160248, + 39.0053289141981 + ], + [ + -77.04742981590269, + 39.01785911636678 + ], + [ + -77.06597426730227, + 39.01785911636678 + ], + [ + -77.05670204160248, + 39.0053289141981 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.05670204160248, + 39.0053289141981 + ], + [ + -77.06597426730227, + 39.01785911636678 + ], + [ + -77.07524649300207, + 39.0053289141981 + ], + [ + -77.05670204160248, + 39.0053289141981 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.05670204160248, + 39.0053289141981 + ], + [ + -77.07524649300207, + 39.0053289141981 + ], + [ + -77.06597426730227, + 38.992798712029426 + ], + [ + -77.05670204160248, + 39.0053289141981 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.05670204160248, + 39.0053289141981 + ], + [ + -77.06597426730227, + 38.992798712029426 + ], + [ + -77.04742981590269, + 38.992798712029426 + ], + [ + -77.05670204160248, + 39.0053289141981 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.05670204160248, + 39.0053289141981 + ], + [ + -77.04742981590269, + 38.992798712029426 + ], + [ + -77.03815759020289, + 39.0053289141981 + ], + [ + -77.05670204160248, + 39.0053289141981 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.05670204160248, + 39.03038931853546 + ], + [ + -77.03815759020289, + 39.03038931853546 + ], + [ + -77.04742981590269, + 39.04291952070414 + ], + [ + -77.05670204160248, + 39.03038931853546 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.05670204160248, + 39.03038931853546 + ], + [ + -77.04742981590269, + 39.04291952070414 + ], + [ + -77.06597426730227, + 39.04291952070414 + ], + [ + -77.05670204160248, + 39.03038931853546 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.05670204160248, + 39.03038931853546 + ], + [ + -77.06597426730227, + 39.04291952070414 + ], + [ + -77.07524649300207, + 39.03038931853546 + ], + [ + -77.05670204160248, + 39.03038931853546 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.05670204160248, + 39.03038931853546 + ], + [ + -77.07524649300207, + 39.03038931853546 + ], + [ + -77.06597426730227, + 39.017859116366786 + ], + [ + -77.05670204160248, + 39.03038931853546 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.05670204160248, + 39.03038931853546 + ], + [ + -77.06597426730227, + 39.017859116366786 + ], + [ + -77.04742981590269, + 39.017859116366786 + ], + [ + -77.05670204160248, + 39.03038931853546 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.05670204160248, + 39.03038931853546 + ], + [ + -77.04742981590269, + 39.017859116366786 + ], + [ + -77.03815759020289, + 39.03038931853546 + ], + [ + -77.05670204160248, + 39.03038931853546 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.0288853645031, + 38.71713426431853 + ], + [ + -77.0103409131035, + 38.71713426431853 + ], + [ + -77.01961313880331, + 38.72966446648721 + ], + [ + -77.0288853645031, + 38.71713426431853 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.0288853645031, + 38.71713426431853 + ], + [ + -77.01961313880331, + 38.72966446648721 + ], + [ + -77.03815759020289, + 38.72966446648721 + ], + [ + -77.0288853645031, + 38.71713426431853 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.0288853645031, + 38.71713426431853 + ], + [ + -77.03815759020289, + 38.72966446648721 + ], + [ + -77.04742981590269, + 38.71713426431853 + ], + [ + -77.0288853645031, + 38.71713426431853 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.0288853645031, + 38.71713426431853 + ], + [ + -77.04742981590269, + 38.71713426431853 + ], + [ + -77.03815759020289, + 38.704604062149855 + ], + [ + -77.0288853645031, + 38.71713426431853 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.0288853645031, + 38.71713426431853 + ], + [ + -77.03815759020289, + 38.704604062149855 + ], + [ + -77.01961313880331, + 38.704604062149855 + ], + [ + -77.0288853645031, + 38.71713426431853 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.0288853645031, + 38.71713426431853 + ], + [ + -77.01961313880331, + 38.704604062149855 + ], + [ + -77.0103409131035, + 38.71713426431853 + ], + [ + -77.0288853645031, + 38.71713426431853 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.0288853645031, + 38.742194668655884 + ], + [ + -77.0103409131035, + 38.742194668655884 + ], + [ + -77.01961313880331, + 38.75472487082456 + ], + [ + -77.0288853645031, + 38.742194668655884 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.0288853645031, + 38.742194668655884 + ], + [ + -77.01961313880331, + 38.75472487082456 + ], + [ + -77.03815759020289, + 38.75472487082456 + ], + [ + -77.0288853645031, + 38.742194668655884 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.0288853645031, + 38.742194668655884 + ], + [ + -77.03815759020289, + 38.75472487082456 + ], + [ + -77.04742981590269, + 38.742194668655884 + ], + [ + -77.0288853645031, + 38.742194668655884 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.0288853645031, + 38.742194668655884 + ], + [ + -77.04742981590269, + 38.742194668655884 + ], + [ + -77.03815759020289, + 38.72966446648721 + ], + [ + -77.0288853645031, + 38.742194668655884 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.0288853645031, + 38.742194668655884 + ], + [ + -77.03815759020289, + 38.72966446648721 + ], + [ + -77.01961313880331, + 38.72966446648721 + ], + [ + -77.0288853645031, + 38.742194668655884 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.0288853645031, + 38.742194668655884 + ], + [ + -77.01961313880331, + 38.72966446648721 + ], + [ + -77.0103409131035, + 38.742194668655884 + ], + [ + -77.0288853645031, + 38.742194668655884 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.0288853645031, + 38.767255072993244 + ], + [ + -77.0103409131035, + 38.767255072993244 + ], + [ + -77.01961313880331, + 38.77978527516192 + ], + [ + -77.0288853645031, + 38.767255072993244 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.0288853645031, + 38.767255072993244 + ], + [ + -77.01961313880331, + 38.77978527516192 + ], + [ + -77.03815759020289, + 38.77978527516192 + ], + [ + -77.0288853645031, + 38.767255072993244 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.0288853645031, + 38.767255072993244 + ], + [ + -77.03815759020289, + 38.77978527516192 + ], + [ + -77.04742981590269, + 38.767255072993244 + ], + [ + -77.0288853645031, + 38.767255072993244 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.0288853645031, + 38.767255072993244 + ], + [ + -77.04742981590269, + 38.767255072993244 + ], + [ + -77.03815759020289, + 38.75472487082457 + ], + [ + -77.0288853645031, + 38.767255072993244 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.0288853645031, + 38.767255072993244 + ], + [ + -77.03815759020289, + 38.75472487082457 + ], + [ + -77.01961313880331, + 38.75472487082457 + ], + [ + -77.0288853645031, + 38.767255072993244 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.0288853645031, + 38.767255072993244 + ], + [ + -77.01961313880331, + 38.75472487082457 + ], + [ + -77.0103409131035, + 38.767255072993244 + ], + [ + -77.0288853645031, + 38.767255072993244 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.0288853645031, + 38.7923154773306 + ], + [ + -77.0103409131035, + 38.7923154773306 + ], + [ + -77.01961313880331, + 38.80484567949927 + ], + [ + -77.0288853645031, + 38.7923154773306 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.0288853645031, + 38.7923154773306 + ], + [ + -77.01961313880331, + 38.80484567949927 + ], + [ + -77.03815759020289, + 38.80484567949927 + ], + [ + -77.0288853645031, + 38.7923154773306 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.0288853645031, + 38.7923154773306 + ], + [ + -77.03815759020289, + 38.80484567949927 + ], + [ + -77.04742981590269, + 38.7923154773306 + ], + [ + -77.0288853645031, + 38.7923154773306 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.0288853645031, + 38.7923154773306 + ], + [ + -77.04742981590269, + 38.7923154773306 + ], + [ + -77.03815759020289, + 38.77978527516192 + ], + [ + -77.0288853645031, + 38.7923154773306 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.0288853645031, + 38.7923154773306 + ], + [ + -77.03815759020289, + 38.77978527516192 + ], + [ + -77.01961313880331, + 38.77978527516192 + ], + [ + -77.0288853645031, + 38.7923154773306 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.0288853645031, + 38.7923154773306 + ], + [ + -77.01961313880331, + 38.77978527516192 + ], + [ + -77.0103409131035, + 38.7923154773306 + ], + [ + -77.0288853645031, + 38.7923154773306 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.0288853645031, + 38.81737588166795 + ], + [ + -77.0103409131035, + 38.81737588166795 + ], + [ + -77.01961313880331, + 38.829906083836626 + ], + [ + -77.0288853645031, + 38.81737588166795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.0288853645031, + 38.81737588166795 + ], + [ + -77.01961313880331, + 38.829906083836626 + ], + [ + -77.03815759020289, + 38.829906083836626 + ], + [ + -77.0288853645031, + 38.81737588166795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.0288853645031, + 38.81737588166795 + ], + [ + -77.03815759020289, + 38.829906083836626 + ], + [ + -77.04742981590269, + 38.81737588166795 + ], + [ + -77.0288853645031, + 38.81737588166795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.0288853645031, + 38.81737588166795 + ], + [ + -77.04742981590269, + 38.81737588166795 + ], + [ + -77.03815759020289, + 38.80484567949927 + ], + [ + -77.0288853645031, + 38.81737588166795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.0288853645031, + 38.81737588166795 + ], + [ + -77.03815759020289, + 38.80484567949927 + ], + [ + -77.01961313880331, + 38.80484567949927 + ], + [ + -77.0288853645031, + 38.81737588166795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.0288853645031, + 38.81737588166795 + ], + [ + -77.01961313880331, + 38.80484567949927 + ], + [ + -77.0103409131035, + 38.81737588166795 + ], + [ + -77.0288853645031, + 38.81737588166795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.0288853645031, + 38.8424362860053 + ], + [ + -77.0103409131035, + 38.8424362860053 + ], + [ + -77.01961313880331, + 38.85496648817398 + ], + [ + -77.0288853645031, + 38.8424362860053 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.0288853645031, + 38.8424362860053 + ], + [ + -77.01961313880331, + 38.85496648817398 + ], + [ + -77.03815759020289, + 38.85496648817398 + ], + [ + -77.0288853645031, + 38.8424362860053 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.0288853645031, + 38.8424362860053 + ], + [ + -77.03815759020289, + 38.85496648817398 + ], + [ + -77.04742981590269, + 38.8424362860053 + ], + [ + -77.0288853645031, + 38.8424362860053 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.0288853645031, + 38.8424362860053 + ], + [ + -77.04742981590269, + 38.8424362860053 + ], + [ + -77.03815759020289, + 38.829906083836626 + ], + [ + -77.0288853645031, + 38.8424362860053 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.0288853645031, + 38.8424362860053 + ], + [ + -77.03815759020289, + 38.829906083836626 + ], + [ + -77.01961313880331, + 38.829906083836626 + ], + [ + -77.0288853645031, + 38.8424362860053 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.0288853645031, + 38.8424362860053 + ], + [ + -77.01961313880331, + 38.829906083836626 + ], + [ + -77.0103409131035, + 38.8424362860053 + ], + [ + -77.0288853645031, + 38.8424362860053 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.0288853645031, + 38.867496690342655 + ], + [ + -77.0103409131035, + 38.867496690342655 + ], + [ + -77.01961313880331, + 38.88002689251133 + ], + [ + -77.0288853645031, + 38.867496690342655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.0288853645031, + 38.867496690342655 + ], + [ + -77.01961313880331, + 38.88002689251133 + ], + [ + -77.03815759020289, + 38.88002689251133 + ], + [ + -77.0288853645031, + 38.867496690342655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.0288853645031, + 38.867496690342655 + ], + [ + -77.03815759020289, + 38.88002689251133 + ], + [ + -77.04742981590269, + 38.867496690342655 + ], + [ + -77.0288853645031, + 38.867496690342655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.0288853645031, + 38.867496690342655 + ], + [ + -77.04742981590269, + 38.867496690342655 + ], + [ + -77.03815759020289, + 38.85496648817398 + ], + [ + -77.0288853645031, + 38.867496690342655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.0288853645031, + 38.867496690342655 + ], + [ + -77.03815759020289, + 38.85496648817398 + ], + [ + -77.01961313880331, + 38.85496648817398 + ], + [ + -77.0288853645031, + 38.867496690342655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.0288853645031, + 38.867496690342655 + ], + [ + -77.01961313880331, + 38.85496648817398 + ], + [ + -77.0103409131035, + 38.867496690342655 + ], + [ + -77.0288853645031, + 38.867496690342655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.0288853645031, + 38.892557094680015 + ], + [ + -77.0103409131035, + 38.892557094680015 + ], + [ + -77.01961313880331, + 38.90508729684869 + ], + [ + -77.0288853645031, + 38.892557094680015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.0288853645031, + 38.892557094680015 + ], + [ + -77.01961313880331, + 38.90508729684869 + ], + [ + -77.03815759020289, + 38.90508729684869 + ], + [ + -77.0288853645031, + 38.892557094680015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.0288853645031, + 38.892557094680015 + ], + [ + -77.03815759020289, + 38.90508729684869 + ], + [ + -77.04742981590269, + 38.892557094680015 + ], + [ + -77.0288853645031, + 38.892557094680015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.0288853645031, + 38.892557094680015 + ], + [ + -77.04742981590269, + 38.892557094680015 + ], + [ + -77.03815759020289, + 38.88002689251134 + ], + [ + -77.0288853645031, + 38.892557094680015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.0288853645031, + 38.892557094680015 + ], + [ + -77.03815759020289, + 38.88002689251134 + ], + [ + -77.01961313880331, + 38.88002689251134 + ], + [ + -77.0288853645031, + 38.892557094680015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.0288853645031, + 38.892557094680015 + ], + [ + -77.01961313880331, + 38.88002689251134 + ], + [ + -77.0103409131035, + 38.892557094680015 + ], + [ + -77.0288853645031, + 38.892557094680015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.0288853645031, + 38.91761749901737 + ], + [ + -77.0103409131035, + 38.91761749901737 + ], + [ + -77.01961313880331, + 38.930147701186044 + ], + [ + -77.0288853645031, + 38.91761749901737 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.0288853645031, + 38.91761749901737 + ], + [ + -77.01961313880331, + 38.930147701186044 + ], + [ + -77.03815759020289, + 38.930147701186044 + ], + [ + -77.0288853645031, + 38.91761749901737 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.0288853645031, + 38.91761749901737 + ], + [ + -77.03815759020289, + 38.930147701186044 + ], + [ + -77.04742981590269, + 38.91761749901737 + ], + [ + -77.0288853645031, + 38.91761749901737 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.0288853645031, + 38.91761749901737 + ], + [ + -77.04742981590269, + 38.91761749901737 + ], + [ + -77.03815759020289, + 38.90508729684869 + ], + [ + -77.0288853645031, + 38.91761749901737 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.0288853645031, + 38.91761749901737 + ], + [ + -77.03815759020289, + 38.90508729684869 + ], + [ + -77.01961313880331, + 38.90508729684869 + ], + [ + -77.0288853645031, + 38.91761749901737 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.0288853645031, + 38.91761749901737 + ], + [ + -77.01961313880331, + 38.90508729684869 + ], + [ + -77.0103409131035, + 38.91761749901737 + ], + [ + -77.0288853645031, + 38.91761749901737 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.0288853645031, + 38.94267790335472 + ], + [ + -77.0103409131035, + 38.94267790335472 + ], + [ + -77.01961313880331, + 38.9552081055234 + ], + [ + -77.0288853645031, + 38.94267790335472 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.0288853645031, + 38.94267790335472 + ], + [ + -77.01961313880331, + 38.9552081055234 + ], + [ + -77.03815759020289, + 38.9552081055234 + ], + [ + -77.0288853645031, + 38.94267790335472 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.0288853645031, + 38.94267790335472 + ], + [ + -77.03815759020289, + 38.9552081055234 + ], + [ + -77.04742981590269, + 38.94267790335472 + ], + [ + -77.0288853645031, + 38.94267790335472 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.0288853645031, + 38.94267790335472 + ], + [ + -77.04742981590269, + 38.94267790335472 + ], + [ + -77.03815759020289, + 38.930147701186044 + ], + [ + -77.0288853645031, + 38.94267790335472 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.0288853645031, + 38.94267790335472 + ], + [ + -77.03815759020289, + 38.930147701186044 + ], + [ + -77.01961313880331, + 38.930147701186044 + ], + [ + -77.0288853645031, + 38.94267790335472 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.0288853645031, + 38.94267790335472 + ], + [ + -77.01961313880331, + 38.930147701186044 + ], + [ + -77.0103409131035, + 38.94267790335472 + ], + [ + -77.0288853645031, + 38.94267790335472 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.0288853645031, + 38.96773830769207 + ], + [ + -77.0103409131035, + 38.96773830769207 + ], + [ + -77.01961313880331, + 38.98026850986075 + ], + [ + -77.0288853645031, + 38.96773830769207 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.0288853645031, + 38.96773830769207 + ], + [ + -77.01961313880331, + 38.98026850986075 + ], + [ + -77.03815759020289, + 38.98026850986075 + ], + [ + -77.0288853645031, + 38.96773830769207 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.0288853645031, + 38.96773830769207 + ], + [ + -77.03815759020289, + 38.98026850986075 + ], + [ + -77.04742981590269, + 38.96773830769207 + ], + [ + -77.0288853645031, + 38.96773830769207 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.0288853645031, + 38.96773830769207 + ], + [ + -77.04742981590269, + 38.96773830769207 + ], + [ + -77.03815759020289, + 38.9552081055234 + ], + [ + -77.0288853645031, + 38.96773830769207 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.0288853645031, + 38.96773830769207 + ], + [ + -77.03815759020289, + 38.9552081055234 + ], + [ + -77.01961313880331, + 38.9552081055234 + ], + [ + -77.0288853645031, + 38.96773830769207 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.0288853645031, + 38.96773830769207 + ], + [ + -77.01961313880331, + 38.9552081055234 + ], + [ + -77.0103409131035, + 38.96773830769207 + ], + [ + -77.0288853645031, + 38.96773830769207 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.0288853645031, + 38.992798712029426 + ], + [ + -77.0103409131035, + 38.992798712029426 + ], + [ + -77.01961313880331, + 39.0053289141981 + ], + [ + -77.0288853645031, + 38.992798712029426 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.0288853645031, + 38.992798712029426 + ], + [ + -77.01961313880331, + 39.0053289141981 + ], + [ + -77.03815759020289, + 39.0053289141981 + ], + [ + -77.0288853645031, + 38.992798712029426 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.0288853645031, + 38.992798712029426 + ], + [ + -77.03815759020289, + 39.0053289141981 + ], + [ + -77.04742981590269, + 38.992798712029426 + ], + [ + -77.0288853645031, + 38.992798712029426 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.0288853645031, + 38.992798712029426 + ], + [ + -77.04742981590269, + 38.992798712029426 + ], + [ + -77.03815759020289, + 38.98026850986075 + ], + [ + -77.0288853645031, + 38.992798712029426 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.0288853645031, + 38.992798712029426 + ], + [ + -77.03815759020289, + 38.98026850986075 + ], + [ + -77.01961313880331, + 38.98026850986075 + ], + [ + -77.0288853645031, + 38.992798712029426 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.0288853645031, + 38.992798712029426 + ], + [ + -77.01961313880331, + 38.98026850986075 + ], + [ + -77.0103409131035, + 38.992798712029426 + ], + [ + -77.0288853645031, + 38.992798712029426 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.0288853645031, + 39.017859116366786 + ], + [ + -77.0103409131035, + 39.017859116366786 + ], + [ + -77.01961313880331, + 39.03038931853546 + ], + [ + -77.0288853645031, + 39.017859116366786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.0288853645031, + 39.017859116366786 + ], + [ + -77.01961313880331, + 39.03038931853546 + ], + [ + -77.03815759020289, + 39.03038931853546 + ], + [ + -77.0288853645031, + 39.017859116366786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.0288853645031, + 39.017859116366786 + ], + [ + -77.03815759020289, + 39.03038931853546 + ], + [ + -77.04742981590269, + 39.017859116366786 + ], + [ + -77.0288853645031, + 39.017859116366786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.0288853645031, + 39.017859116366786 + ], + [ + -77.04742981590269, + 39.017859116366786 + ], + [ + -77.03815759020289, + 39.00532891419811 + ], + [ + -77.0288853645031, + 39.017859116366786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.0288853645031, + 39.017859116366786 + ], + [ + -77.03815759020289, + 39.00532891419811 + ], + [ + -77.01961313880331, + 39.00532891419811 + ], + [ + -77.0288853645031, + 39.017859116366786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.0288853645031, + 39.017859116366786 + ], + [ + -77.01961313880331, + 39.00532891419811 + ], + [ + -77.0103409131035, + 39.017859116366786 + ], + [ + -77.0288853645031, + 39.017859116366786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.00106868740372, + 38.72966446648721 + ], + [ + -76.98252423600412, + 38.72966446648721 + ], + [ + -76.99179646170393, + 38.742194668655884 + ], + [ + -77.00106868740372, + 38.72966446648721 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.00106868740372, + 38.72966446648721 + ], + [ + -76.99179646170393, + 38.742194668655884 + ], + [ + -77.0103409131035, + 38.742194668655884 + ], + [ + -77.00106868740372, + 38.72966446648721 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.00106868740372, + 38.72966446648721 + ], + [ + -77.0103409131035, + 38.742194668655884 + ], + [ + -77.01961313880331, + 38.72966446648721 + ], + [ + -77.00106868740372, + 38.72966446648721 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.00106868740372, + 38.72966446648721 + ], + [ + -77.01961313880331, + 38.72966446648721 + ], + [ + -77.0103409131035, + 38.71713426431853 + ], + [ + -77.00106868740372, + 38.72966446648721 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.00106868740372, + 38.72966446648721 + ], + [ + -77.0103409131035, + 38.71713426431853 + ], + [ + -76.99179646170393, + 38.71713426431853 + ], + [ + -77.00106868740372, + 38.72966446648721 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.00106868740372, + 38.72966446648721 + ], + [ + -76.99179646170393, + 38.71713426431853 + ], + [ + -76.98252423600412, + 38.72966446648721 + ], + [ + -77.00106868740372, + 38.72966446648721 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.00106868740372, + 38.75472487082456 + ], + [ + -76.98252423600412, + 38.75472487082456 + ], + [ + -76.99179646170393, + 38.76725507299324 + ], + [ + -77.00106868740372, + 38.75472487082456 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.00106868740372, + 38.75472487082456 + ], + [ + -76.99179646170393, + 38.76725507299324 + ], + [ + -77.0103409131035, + 38.76725507299324 + ], + [ + -77.00106868740372, + 38.75472487082456 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.00106868740372, + 38.75472487082456 + ], + [ + -77.0103409131035, + 38.76725507299324 + ], + [ + -77.01961313880331, + 38.75472487082456 + ], + [ + -77.00106868740372, + 38.75472487082456 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.00106868740372, + 38.75472487082456 + ], + [ + -77.01961313880331, + 38.75472487082456 + ], + [ + -77.0103409131035, + 38.742194668655884 + ], + [ + -77.00106868740372, + 38.75472487082456 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.00106868740372, + 38.75472487082456 + ], + [ + -77.0103409131035, + 38.742194668655884 + ], + [ + -76.99179646170393, + 38.742194668655884 + ], + [ + -77.00106868740372, + 38.75472487082456 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.00106868740372, + 38.75472487082456 + ], + [ + -76.99179646170393, + 38.742194668655884 + ], + [ + -76.98252423600412, + 38.75472487082456 + ], + [ + -77.00106868740372, + 38.75472487082456 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.00106868740372, + 38.77978527516192 + ], + [ + -76.98252423600412, + 38.77978527516192 + ], + [ + -76.99179646170393, + 38.7923154773306 + ], + [ + -77.00106868740372, + 38.77978527516192 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.00106868740372, + 38.77978527516192 + ], + [ + -76.99179646170393, + 38.7923154773306 + ], + [ + -77.0103409131035, + 38.7923154773306 + ], + [ + -77.00106868740372, + 38.77978527516192 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.00106868740372, + 38.77978527516192 + ], + [ + -77.0103409131035, + 38.7923154773306 + ], + [ + -77.01961313880331, + 38.77978527516192 + ], + [ + -77.00106868740372, + 38.77978527516192 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.00106868740372, + 38.77978527516192 + ], + [ + -77.01961313880331, + 38.77978527516192 + ], + [ + -77.0103409131035, + 38.767255072993244 + ], + [ + -77.00106868740372, + 38.77978527516192 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.00106868740372, + 38.77978527516192 + ], + [ + -77.0103409131035, + 38.767255072993244 + ], + [ + -76.99179646170393, + 38.767255072993244 + ], + [ + -77.00106868740372, + 38.77978527516192 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.00106868740372, + 38.77978527516192 + ], + [ + -76.99179646170393, + 38.767255072993244 + ], + [ + -76.98252423600412, + 38.77978527516192 + ], + [ + -77.00106868740372, + 38.77978527516192 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.00106868740372, + 38.80484567949927 + ], + [ + -76.98252423600412, + 38.80484567949927 + ], + [ + -76.99179646170393, + 38.81737588166795 + ], + [ + -77.00106868740372, + 38.80484567949927 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.00106868740372, + 38.80484567949927 + ], + [ + -76.99179646170393, + 38.81737588166795 + ], + [ + -77.0103409131035, + 38.81737588166795 + ], + [ + -77.00106868740372, + 38.80484567949927 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.00106868740372, + 38.80484567949927 + ], + [ + -77.0103409131035, + 38.81737588166795 + ], + [ + -77.01961313880331, + 38.80484567949927 + ], + [ + -77.00106868740372, + 38.80484567949927 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.00106868740372, + 38.80484567949927 + ], + [ + -77.01961313880331, + 38.80484567949927 + ], + [ + -77.0103409131035, + 38.7923154773306 + ], + [ + -77.00106868740372, + 38.80484567949927 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.00106868740372, + 38.80484567949927 + ], + [ + -77.0103409131035, + 38.7923154773306 + ], + [ + -76.99179646170393, + 38.7923154773306 + ], + [ + -77.00106868740372, + 38.80484567949927 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.00106868740372, + 38.80484567949927 + ], + [ + -76.99179646170393, + 38.7923154773306 + ], + [ + -76.98252423600412, + 38.80484567949927 + ], + [ + -77.00106868740372, + 38.80484567949927 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.00106868740372, + 38.829906083836626 + ], + [ + -76.98252423600412, + 38.829906083836626 + ], + [ + -76.99179646170393, + 38.8424362860053 + ], + [ + -77.00106868740372, + 38.829906083836626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.00106868740372, + 38.829906083836626 + ], + [ + -76.99179646170393, + 38.8424362860053 + ], + [ + -77.0103409131035, + 38.8424362860053 + ], + [ + -77.00106868740372, + 38.829906083836626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.00106868740372, + 38.829906083836626 + ], + [ + -77.0103409131035, + 38.8424362860053 + ], + [ + -77.01961313880331, + 38.829906083836626 + ], + [ + -77.00106868740372, + 38.829906083836626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.00106868740372, + 38.829906083836626 + ], + [ + -77.01961313880331, + 38.829906083836626 + ], + [ + -77.0103409131035, + 38.81737588166795 + ], + [ + -77.00106868740372, + 38.829906083836626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.00106868740372, + 38.829906083836626 + ], + [ + -77.0103409131035, + 38.81737588166795 + ], + [ + -76.99179646170393, + 38.81737588166795 + ], + [ + -77.00106868740372, + 38.829906083836626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.00106868740372, + 38.829906083836626 + ], + [ + -76.99179646170393, + 38.81737588166795 + ], + [ + -76.98252423600412, + 38.829906083836626 + ], + [ + -77.00106868740372, + 38.829906083836626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.00106868740372, + 38.85496648817398 + ], + [ + -76.98252423600412, + 38.85496648817398 + ], + [ + -76.99179646170393, + 38.867496690342655 + ], + [ + -77.00106868740372, + 38.85496648817398 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.00106868740372, + 38.85496648817398 + ], + [ + -76.99179646170393, + 38.867496690342655 + ], + [ + -77.0103409131035, + 38.867496690342655 + ], + [ + -77.00106868740372, + 38.85496648817398 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.00106868740372, + 38.85496648817398 + ], + [ + -77.0103409131035, + 38.867496690342655 + ], + [ + -77.01961313880331, + 38.85496648817398 + ], + [ + -77.00106868740372, + 38.85496648817398 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.00106868740372, + 38.85496648817398 + ], + [ + -77.01961313880331, + 38.85496648817398 + ], + [ + -77.0103409131035, + 38.8424362860053 + ], + [ + -77.00106868740372, + 38.85496648817398 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.00106868740372, + 38.85496648817398 + ], + [ + -77.0103409131035, + 38.8424362860053 + ], + [ + -76.99179646170393, + 38.8424362860053 + ], + [ + -77.00106868740372, + 38.85496648817398 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.00106868740372, + 38.85496648817398 + ], + [ + -76.99179646170393, + 38.8424362860053 + ], + [ + -76.98252423600412, + 38.85496648817398 + ], + [ + -77.00106868740372, + 38.85496648817398 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.00106868740372, + 38.88002689251133 + ], + [ + -76.98252423600412, + 38.88002689251133 + ], + [ + -76.99179646170393, + 38.89255709468001 + ], + [ + -77.00106868740372, + 38.88002689251133 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.00106868740372, + 38.88002689251133 + ], + [ + -76.99179646170393, + 38.89255709468001 + ], + [ + -77.0103409131035, + 38.89255709468001 + ], + [ + -77.00106868740372, + 38.88002689251133 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.00106868740372, + 38.88002689251133 + ], + [ + -77.0103409131035, + 38.89255709468001 + ], + [ + -77.01961313880331, + 38.88002689251133 + ], + [ + -77.00106868740372, + 38.88002689251133 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.00106868740372, + 38.88002689251133 + ], + [ + -77.01961313880331, + 38.88002689251133 + ], + [ + -77.0103409131035, + 38.867496690342655 + ], + [ + -77.00106868740372, + 38.88002689251133 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.00106868740372, + 38.88002689251133 + ], + [ + -77.0103409131035, + 38.867496690342655 + ], + [ + -76.99179646170393, + 38.867496690342655 + ], + [ + -77.00106868740372, + 38.88002689251133 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.00106868740372, + 38.88002689251133 + ], + [ + -76.99179646170393, + 38.867496690342655 + ], + [ + -76.98252423600412, + 38.88002689251133 + ], + [ + -77.00106868740372, + 38.88002689251133 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.00106868740372, + 38.90508729684869 + ], + [ + -76.98252423600412, + 38.90508729684869 + ], + [ + -76.99179646170393, + 38.91761749901737 + ], + [ + -77.00106868740372, + 38.90508729684869 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.00106868740372, + 38.90508729684869 + ], + [ + -76.99179646170393, + 38.91761749901737 + ], + [ + -77.0103409131035, + 38.91761749901737 + ], + [ + -77.00106868740372, + 38.90508729684869 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.00106868740372, + 38.90508729684869 + ], + [ + -77.0103409131035, + 38.91761749901737 + ], + [ + -77.01961313880331, + 38.90508729684869 + ], + [ + -77.00106868740372, + 38.90508729684869 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.00106868740372, + 38.90508729684869 + ], + [ + -77.01961313880331, + 38.90508729684869 + ], + [ + -77.0103409131035, + 38.892557094680015 + ], + [ + -77.00106868740372, + 38.90508729684869 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.00106868740372, + 38.90508729684869 + ], + [ + -77.0103409131035, + 38.892557094680015 + ], + [ + -76.99179646170393, + 38.892557094680015 + ], + [ + -77.00106868740372, + 38.90508729684869 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.00106868740372, + 38.90508729684869 + ], + [ + -76.99179646170393, + 38.892557094680015 + ], + [ + -76.98252423600412, + 38.90508729684869 + ], + [ + -77.00106868740372, + 38.90508729684869 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.00106868740372, + 38.930147701186044 + ], + [ + -76.98252423600412, + 38.930147701186044 + ], + [ + -76.99179646170393, + 38.94267790335472 + ], + [ + -77.00106868740372, + 38.930147701186044 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.00106868740372, + 38.930147701186044 + ], + [ + -76.99179646170393, + 38.94267790335472 + ], + [ + -77.0103409131035, + 38.94267790335472 + ], + [ + -77.00106868740372, + 38.930147701186044 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.00106868740372, + 38.930147701186044 + ], + [ + -77.0103409131035, + 38.94267790335472 + ], + [ + -77.01961313880331, + 38.930147701186044 + ], + [ + -77.00106868740372, + 38.930147701186044 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.00106868740372, + 38.930147701186044 + ], + [ + -77.01961313880331, + 38.930147701186044 + ], + [ + -77.0103409131035, + 38.91761749901737 + ], + [ + -77.00106868740372, + 38.930147701186044 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.00106868740372, + 38.930147701186044 + ], + [ + -77.0103409131035, + 38.91761749901737 + ], + [ + -76.99179646170393, + 38.91761749901737 + ], + [ + -77.00106868740372, + 38.930147701186044 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.00106868740372, + 38.930147701186044 + ], + [ + -76.99179646170393, + 38.91761749901737 + ], + [ + -76.98252423600412, + 38.930147701186044 + ], + [ + -77.00106868740372, + 38.930147701186044 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.00106868740372, + 38.9552081055234 + ], + [ + -76.98252423600412, + 38.9552081055234 + ], + [ + -76.99179646170393, + 38.96773830769207 + ], + [ + -77.00106868740372, + 38.9552081055234 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.00106868740372, + 38.9552081055234 + ], + [ + -76.99179646170393, + 38.96773830769207 + ], + [ + -77.0103409131035, + 38.96773830769207 + ], + [ + -77.00106868740372, + 38.9552081055234 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.00106868740372, + 38.9552081055234 + ], + [ + -77.0103409131035, + 38.96773830769207 + ], + [ + -77.01961313880331, + 38.9552081055234 + ], + [ + -77.00106868740372, + 38.9552081055234 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.00106868740372, + 38.9552081055234 + ], + [ + -77.01961313880331, + 38.9552081055234 + ], + [ + -77.0103409131035, + 38.94267790335472 + ], + [ + -77.00106868740372, + 38.9552081055234 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.00106868740372, + 38.9552081055234 + ], + [ + -77.0103409131035, + 38.94267790335472 + ], + [ + -76.99179646170393, + 38.94267790335472 + ], + [ + -77.00106868740372, + 38.9552081055234 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.00106868740372, + 38.9552081055234 + ], + [ + -76.99179646170393, + 38.94267790335472 + ], + [ + -76.98252423600412, + 38.9552081055234 + ], + [ + -77.00106868740372, + 38.9552081055234 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.00106868740372, + 38.98026850986075 + ], + [ + -76.98252423600412, + 38.98026850986075 + ], + [ + -76.99179646170393, + 38.992798712029426 + ], + [ + -77.00106868740372, + 38.98026850986075 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.00106868740372, + 38.98026850986075 + ], + [ + -76.99179646170393, + 38.992798712029426 + ], + [ + -77.0103409131035, + 38.992798712029426 + ], + [ + -77.00106868740372, + 38.98026850986075 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.00106868740372, + 38.98026850986075 + ], + [ + -77.0103409131035, + 38.992798712029426 + ], + [ + -77.01961313880331, + 38.98026850986075 + ], + [ + -77.00106868740372, + 38.98026850986075 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.00106868740372, + 38.98026850986075 + ], + [ + -77.01961313880331, + 38.98026850986075 + ], + [ + -77.0103409131035, + 38.96773830769207 + ], + [ + -77.00106868740372, + 38.98026850986075 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.00106868740372, + 38.98026850986075 + ], + [ + -77.0103409131035, + 38.96773830769207 + ], + [ + -76.99179646170393, + 38.96773830769207 + ], + [ + -77.00106868740372, + 38.98026850986075 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.00106868740372, + 38.98026850986075 + ], + [ + -76.99179646170393, + 38.96773830769207 + ], + [ + -76.98252423600412, + 38.98026850986075 + ], + [ + -77.00106868740372, + 38.98026850986075 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.00106868740372, + 39.0053289141981 + ], + [ + -76.98252423600412, + 39.0053289141981 + ], + [ + -76.99179646170393, + 39.01785911636678 + ], + [ + -77.00106868740372, + 39.0053289141981 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.00106868740372, + 39.0053289141981 + ], + [ + -76.99179646170393, + 39.01785911636678 + ], + [ + -77.0103409131035, + 39.01785911636678 + ], + [ + -77.00106868740372, + 39.0053289141981 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.00106868740372, + 39.0053289141981 + ], + [ + -77.0103409131035, + 39.01785911636678 + ], + [ + -77.01961313880331, + 39.0053289141981 + ], + [ + -77.00106868740372, + 39.0053289141981 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.00106868740372, + 39.0053289141981 + ], + [ + -77.01961313880331, + 39.0053289141981 + ], + [ + -77.0103409131035, + 38.992798712029426 + ], + [ + -77.00106868740372, + 39.0053289141981 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.00106868740372, + 39.0053289141981 + ], + [ + -77.0103409131035, + 38.992798712029426 + ], + [ + -76.99179646170393, + 38.992798712029426 + ], + [ + -77.00106868740372, + 39.0053289141981 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.00106868740372, + 39.0053289141981 + ], + [ + -76.99179646170393, + 38.992798712029426 + ], + [ + -76.98252423600412, + 39.0053289141981 + ], + [ + -77.00106868740372, + 39.0053289141981 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.00106868740372, + 39.03038931853546 + ], + [ + -76.98252423600412, + 39.03038931853546 + ], + [ + -76.99179646170393, + 39.04291952070414 + ], + [ + -77.00106868740372, + 39.03038931853546 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.00106868740372, + 39.03038931853546 + ], + [ + -76.99179646170393, + 39.04291952070414 + ], + [ + -77.0103409131035, + 39.04291952070414 + ], + [ + -77.00106868740372, + 39.03038931853546 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.00106868740372, + 39.03038931853546 + ], + [ + -77.0103409131035, + 39.04291952070414 + ], + [ + -77.01961313880331, + 39.03038931853546 + ], + [ + -77.00106868740372, + 39.03038931853546 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.00106868740372, + 39.03038931853546 + ], + [ + -77.01961313880331, + 39.03038931853546 + ], + [ + -77.0103409131035, + 39.017859116366786 + ], + [ + -77.00106868740372, + 39.03038931853546 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.00106868740372, + 39.03038931853546 + ], + [ + -77.0103409131035, + 39.017859116366786 + ], + [ + -76.99179646170393, + 39.017859116366786 + ], + [ + -77.00106868740372, + 39.03038931853546 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.00106868740372, + 39.03038931853546 + ], + [ + -76.99179646170393, + 39.017859116366786 + ], + [ + -76.98252423600412, + 39.03038931853546 + ], + [ + -77.00106868740372, + 39.03038931853546 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.97325201030434, + 38.71713426431853 + ], + [ + -76.95470755890474, + 38.71713426431853 + ], + [ + -76.96397978460455, + 38.72966446648721 + ], + [ + -76.97325201030434, + 38.71713426431853 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.97325201030434, + 38.71713426431853 + ], + [ + -76.96397978460455, + 38.72966446648721 + ], + [ + -76.98252423600412, + 38.72966446648721 + ], + [ + -76.97325201030434, + 38.71713426431853 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.97325201030434, + 38.71713426431853 + ], + [ + -76.98252423600412, + 38.72966446648721 + ], + [ + -76.99179646170393, + 38.71713426431853 + ], + [ + -76.97325201030434, + 38.71713426431853 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.97325201030434, + 38.71713426431853 + ], + [ + -76.99179646170393, + 38.71713426431853 + ], + [ + -76.98252423600412, + 38.704604062149855 + ], + [ + -76.97325201030434, + 38.71713426431853 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.97325201030434, + 38.71713426431853 + ], + [ + -76.98252423600412, + 38.704604062149855 + ], + [ + -76.96397978460455, + 38.704604062149855 + ], + [ + -76.97325201030434, + 38.71713426431853 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.97325201030434, + 38.71713426431853 + ], + [ + -76.96397978460455, + 38.704604062149855 + ], + [ + -76.95470755890474, + 38.71713426431853 + ], + [ + -76.97325201030434, + 38.71713426431853 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.97325201030434, + 38.742194668655884 + ], + [ + -76.95470755890474, + 38.742194668655884 + ], + [ + -76.96397978460455, + 38.75472487082456 + ], + [ + -76.97325201030434, + 38.742194668655884 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.97325201030434, + 38.742194668655884 + ], + [ + -76.96397978460455, + 38.75472487082456 + ], + [ + -76.98252423600412, + 38.75472487082456 + ], + [ + -76.97325201030434, + 38.742194668655884 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.97325201030434, + 38.742194668655884 + ], + [ + -76.98252423600412, + 38.75472487082456 + ], + [ + -76.99179646170393, + 38.742194668655884 + ], + [ + -76.97325201030434, + 38.742194668655884 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.97325201030434, + 38.742194668655884 + ], + [ + -76.99179646170393, + 38.742194668655884 + ], + [ + -76.98252423600412, + 38.72966446648721 + ], + [ + -76.97325201030434, + 38.742194668655884 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.97325201030434, + 38.742194668655884 + ], + [ + -76.98252423600412, + 38.72966446648721 + ], + [ + -76.96397978460455, + 38.72966446648721 + ], + [ + -76.97325201030434, + 38.742194668655884 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.97325201030434, + 38.742194668655884 + ], + [ + -76.96397978460455, + 38.72966446648721 + ], + [ + -76.95470755890474, + 38.742194668655884 + ], + [ + -76.97325201030434, + 38.742194668655884 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.97325201030434, + 38.767255072993244 + ], + [ + -76.95470755890474, + 38.767255072993244 + ], + [ + -76.96397978460455, + 38.77978527516192 + ], + [ + -76.97325201030434, + 38.767255072993244 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.97325201030434, + 38.767255072993244 + ], + [ + -76.96397978460455, + 38.77978527516192 + ], + [ + -76.98252423600412, + 38.77978527516192 + ], + [ + -76.97325201030434, + 38.767255072993244 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.97325201030434, + 38.767255072993244 + ], + [ + -76.98252423600412, + 38.77978527516192 + ], + [ + -76.99179646170393, + 38.767255072993244 + ], + [ + -76.97325201030434, + 38.767255072993244 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.97325201030434, + 38.767255072993244 + ], + [ + -76.99179646170393, + 38.767255072993244 + ], + [ + -76.98252423600412, + 38.75472487082457 + ], + [ + -76.97325201030434, + 38.767255072993244 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.97325201030434, + 38.767255072993244 + ], + [ + -76.98252423600412, + 38.75472487082457 + ], + [ + -76.96397978460455, + 38.75472487082457 + ], + [ + -76.97325201030434, + 38.767255072993244 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.97325201030434, + 38.767255072993244 + ], + [ + -76.96397978460455, + 38.75472487082457 + ], + [ + -76.95470755890474, + 38.767255072993244 + ], + [ + -76.97325201030434, + 38.767255072993244 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.97325201030434, + 38.7923154773306 + ], + [ + -76.95470755890474, + 38.7923154773306 + ], + [ + -76.96397978460455, + 38.80484567949927 + ], + [ + -76.97325201030434, + 38.7923154773306 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.97325201030434, + 38.7923154773306 + ], + [ + -76.96397978460455, + 38.80484567949927 + ], + [ + -76.98252423600412, + 38.80484567949927 + ], + [ + -76.97325201030434, + 38.7923154773306 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.97325201030434, + 38.7923154773306 + ], + [ + -76.98252423600412, + 38.80484567949927 + ], + [ + -76.99179646170393, + 38.7923154773306 + ], + [ + -76.97325201030434, + 38.7923154773306 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.97325201030434, + 38.7923154773306 + ], + [ + -76.99179646170393, + 38.7923154773306 + ], + [ + -76.98252423600412, + 38.77978527516192 + ], + [ + -76.97325201030434, + 38.7923154773306 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.97325201030434, + 38.7923154773306 + ], + [ + -76.98252423600412, + 38.77978527516192 + ], + [ + -76.96397978460455, + 38.77978527516192 + ], + [ + -76.97325201030434, + 38.7923154773306 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.97325201030434, + 38.7923154773306 + ], + [ + -76.96397978460455, + 38.77978527516192 + ], + [ + -76.95470755890474, + 38.7923154773306 + ], + [ + -76.97325201030434, + 38.7923154773306 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.97325201030434, + 38.81737588166795 + ], + [ + -76.95470755890474, + 38.81737588166795 + ], + [ + -76.96397978460455, + 38.829906083836626 + ], + [ + -76.97325201030434, + 38.81737588166795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.97325201030434, + 38.81737588166795 + ], + [ + -76.96397978460455, + 38.829906083836626 + ], + [ + -76.98252423600412, + 38.829906083836626 + ], + [ + -76.97325201030434, + 38.81737588166795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.97325201030434, + 38.81737588166795 + ], + [ + -76.98252423600412, + 38.829906083836626 + ], + [ + -76.99179646170393, + 38.81737588166795 + ], + [ + -76.97325201030434, + 38.81737588166795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.97325201030434, + 38.81737588166795 + ], + [ + -76.99179646170393, + 38.81737588166795 + ], + [ + -76.98252423600412, + 38.80484567949927 + ], + [ + -76.97325201030434, + 38.81737588166795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.97325201030434, + 38.81737588166795 + ], + [ + -76.98252423600412, + 38.80484567949927 + ], + [ + -76.96397978460455, + 38.80484567949927 + ], + [ + -76.97325201030434, + 38.81737588166795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.97325201030434, + 38.81737588166795 + ], + [ + -76.96397978460455, + 38.80484567949927 + ], + [ + -76.95470755890474, + 38.81737588166795 + ], + [ + -76.97325201030434, + 38.81737588166795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.97325201030434, + 38.8424362860053 + ], + [ + -76.95470755890474, + 38.8424362860053 + ], + [ + -76.96397978460455, + 38.85496648817398 + ], + [ + -76.97325201030434, + 38.8424362860053 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.97325201030434, + 38.8424362860053 + ], + [ + -76.96397978460455, + 38.85496648817398 + ], + [ + -76.98252423600412, + 38.85496648817398 + ], + [ + -76.97325201030434, + 38.8424362860053 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.97325201030434, + 38.8424362860053 + ], + [ + -76.98252423600412, + 38.85496648817398 + ], + [ + -76.99179646170393, + 38.8424362860053 + ], + [ + -76.97325201030434, + 38.8424362860053 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.97325201030434, + 38.8424362860053 + ], + [ + -76.99179646170393, + 38.8424362860053 + ], + [ + -76.98252423600412, + 38.829906083836626 + ], + [ + -76.97325201030434, + 38.8424362860053 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.97325201030434, + 38.8424362860053 + ], + [ + -76.98252423600412, + 38.829906083836626 + ], + [ + -76.96397978460455, + 38.829906083836626 + ], + [ + -76.97325201030434, + 38.8424362860053 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.97325201030434, + 38.8424362860053 + ], + [ + -76.96397978460455, + 38.829906083836626 + ], + [ + -76.95470755890474, + 38.8424362860053 + ], + [ + -76.97325201030434, + 38.8424362860053 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.97325201030434, + 38.867496690342655 + ], + [ + -76.95470755890474, + 38.867496690342655 + ], + [ + -76.96397978460455, + 38.88002689251133 + ], + [ + -76.97325201030434, + 38.867496690342655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.97325201030434, + 38.867496690342655 + ], + [ + -76.96397978460455, + 38.88002689251133 + ], + [ + -76.98252423600412, + 38.88002689251133 + ], + [ + -76.97325201030434, + 38.867496690342655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.97325201030434, + 38.867496690342655 + ], + [ + -76.98252423600412, + 38.88002689251133 + ], + [ + -76.99179646170393, + 38.867496690342655 + ], + [ + -76.97325201030434, + 38.867496690342655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.97325201030434, + 38.867496690342655 + ], + [ + -76.99179646170393, + 38.867496690342655 + ], + [ + -76.98252423600412, + 38.85496648817398 + ], + [ + -76.97325201030434, + 38.867496690342655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.97325201030434, + 38.867496690342655 + ], + [ + -76.98252423600412, + 38.85496648817398 + ], + [ + -76.96397978460455, + 38.85496648817398 + ], + [ + -76.97325201030434, + 38.867496690342655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.97325201030434, + 38.867496690342655 + ], + [ + -76.96397978460455, + 38.85496648817398 + ], + [ + -76.95470755890474, + 38.867496690342655 + ], + [ + -76.97325201030434, + 38.867496690342655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.97325201030434, + 38.892557094680015 + ], + [ + -76.95470755890474, + 38.892557094680015 + ], + [ + -76.96397978460455, + 38.90508729684869 + ], + [ + -76.97325201030434, + 38.892557094680015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.97325201030434, + 38.892557094680015 + ], + [ + -76.96397978460455, + 38.90508729684869 + ], + [ + -76.98252423600412, + 38.90508729684869 + ], + [ + -76.97325201030434, + 38.892557094680015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.97325201030434, + 38.892557094680015 + ], + [ + -76.98252423600412, + 38.90508729684869 + ], + [ + -76.99179646170393, + 38.892557094680015 + ], + [ + -76.97325201030434, + 38.892557094680015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.97325201030434, + 38.892557094680015 + ], + [ + -76.99179646170393, + 38.892557094680015 + ], + [ + -76.98252423600412, + 38.88002689251134 + ], + [ + -76.97325201030434, + 38.892557094680015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.97325201030434, + 38.892557094680015 + ], + [ + -76.98252423600412, + 38.88002689251134 + ], + [ + -76.96397978460455, + 38.88002689251134 + ], + [ + -76.97325201030434, + 38.892557094680015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.97325201030434, + 38.892557094680015 + ], + [ + -76.96397978460455, + 38.88002689251134 + ], + [ + -76.95470755890474, + 38.892557094680015 + ], + [ + -76.97325201030434, + 38.892557094680015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.97325201030434, + 38.91761749901737 + ], + [ + -76.95470755890474, + 38.91761749901737 + ], + [ + -76.96397978460455, + 38.930147701186044 + ], + [ + -76.97325201030434, + 38.91761749901737 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.97325201030434, + 38.91761749901737 + ], + [ + -76.96397978460455, + 38.930147701186044 + ], + [ + -76.98252423600412, + 38.930147701186044 + ], + [ + -76.97325201030434, + 38.91761749901737 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.97325201030434, + 38.91761749901737 + ], + [ + -76.98252423600412, + 38.930147701186044 + ], + [ + -76.99179646170393, + 38.91761749901737 + ], + [ + -76.97325201030434, + 38.91761749901737 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.97325201030434, + 38.91761749901737 + ], + [ + -76.99179646170393, + 38.91761749901737 + ], + [ + -76.98252423600412, + 38.90508729684869 + ], + [ + -76.97325201030434, + 38.91761749901737 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.97325201030434, + 38.91761749901737 + ], + [ + -76.98252423600412, + 38.90508729684869 + ], + [ + -76.96397978460455, + 38.90508729684869 + ], + [ + -76.97325201030434, + 38.91761749901737 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.97325201030434, + 38.91761749901737 + ], + [ + -76.96397978460455, + 38.90508729684869 + ], + [ + -76.95470755890474, + 38.91761749901737 + ], + [ + -76.97325201030434, + 38.91761749901737 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.97325201030434, + 38.94267790335472 + ], + [ + -76.95470755890474, + 38.94267790335472 + ], + [ + -76.96397978460455, + 38.9552081055234 + ], + [ + -76.97325201030434, + 38.94267790335472 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.97325201030434, + 38.94267790335472 + ], + [ + -76.96397978460455, + 38.9552081055234 + ], + [ + -76.98252423600412, + 38.9552081055234 + ], + [ + -76.97325201030434, + 38.94267790335472 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.97325201030434, + 38.94267790335472 + ], + [ + -76.98252423600412, + 38.9552081055234 + ], + [ + -76.99179646170393, + 38.94267790335472 + ], + [ + -76.97325201030434, + 38.94267790335472 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.97325201030434, + 38.94267790335472 + ], + [ + -76.99179646170393, + 38.94267790335472 + ], + [ + -76.98252423600412, + 38.930147701186044 + ], + [ + -76.97325201030434, + 38.94267790335472 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.97325201030434, + 38.94267790335472 + ], + [ + -76.98252423600412, + 38.930147701186044 + ], + [ + -76.96397978460455, + 38.930147701186044 + ], + [ + -76.97325201030434, + 38.94267790335472 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.97325201030434, + 38.94267790335472 + ], + [ + -76.96397978460455, + 38.930147701186044 + ], + [ + -76.95470755890474, + 38.94267790335472 + ], + [ + -76.97325201030434, + 38.94267790335472 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.97325201030434, + 38.96773830769207 + ], + [ + -76.95470755890474, + 38.96773830769207 + ], + [ + -76.96397978460455, + 38.98026850986075 + ], + [ + -76.97325201030434, + 38.96773830769207 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.97325201030434, + 38.96773830769207 + ], + [ + -76.96397978460455, + 38.98026850986075 + ], + [ + -76.98252423600412, + 38.98026850986075 + ], + [ + -76.97325201030434, + 38.96773830769207 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.97325201030434, + 38.96773830769207 + ], + [ + -76.98252423600412, + 38.98026850986075 + ], + [ + -76.99179646170393, + 38.96773830769207 + ], + [ + -76.97325201030434, + 38.96773830769207 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.97325201030434, + 38.96773830769207 + ], + [ + -76.99179646170393, + 38.96773830769207 + ], + [ + -76.98252423600412, + 38.9552081055234 + ], + [ + -76.97325201030434, + 38.96773830769207 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.97325201030434, + 38.96773830769207 + ], + [ + -76.98252423600412, + 38.9552081055234 + ], + [ + -76.96397978460455, + 38.9552081055234 + ], + [ + -76.97325201030434, + 38.96773830769207 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.97325201030434, + 38.96773830769207 + ], + [ + -76.96397978460455, + 38.9552081055234 + ], + [ + -76.95470755890474, + 38.96773830769207 + ], + [ + -76.97325201030434, + 38.96773830769207 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.97325201030434, + 38.992798712029426 + ], + [ + -76.95470755890474, + 38.992798712029426 + ], + [ + -76.96397978460455, + 39.0053289141981 + ], + [ + -76.97325201030434, + 38.992798712029426 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.97325201030434, + 38.992798712029426 + ], + [ + -76.96397978460455, + 39.0053289141981 + ], + [ + -76.98252423600412, + 39.0053289141981 + ], + [ + -76.97325201030434, + 38.992798712029426 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.97325201030434, + 38.992798712029426 + ], + [ + -76.98252423600412, + 39.0053289141981 + ], + [ + -76.99179646170393, + 38.992798712029426 + ], + [ + -76.97325201030434, + 38.992798712029426 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.97325201030434, + 38.992798712029426 + ], + [ + -76.99179646170393, + 38.992798712029426 + ], + [ + -76.98252423600412, + 38.98026850986075 + ], + [ + -76.97325201030434, + 38.992798712029426 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.97325201030434, + 38.992798712029426 + ], + [ + -76.98252423600412, + 38.98026850986075 + ], + [ + -76.96397978460455, + 38.98026850986075 + ], + [ + -76.97325201030434, + 38.992798712029426 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.97325201030434, + 38.992798712029426 + ], + [ + -76.96397978460455, + 38.98026850986075 + ], + [ + -76.95470755890474, + 38.992798712029426 + ], + [ + -76.97325201030434, + 38.992798712029426 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.97325201030434, + 39.017859116366786 + ], + [ + -76.95470755890474, + 39.017859116366786 + ], + [ + -76.96397978460455, + 39.03038931853546 + ], + [ + -76.97325201030434, + 39.017859116366786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.97325201030434, + 39.017859116366786 + ], + [ + -76.96397978460455, + 39.03038931853546 + ], + [ + -76.98252423600412, + 39.03038931853546 + ], + [ + -76.97325201030434, + 39.017859116366786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.97325201030434, + 39.017859116366786 + ], + [ + -76.98252423600412, + 39.03038931853546 + ], + [ + -76.99179646170393, + 39.017859116366786 + ], + [ + -76.97325201030434, + 39.017859116366786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.97325201030434, + 39.017859116366786 + ], + [ + -76.99179646170393, + 39.017859116366786 + ], + [ + -76.98252423600412, + 39.00532891419811 + ], + [ + -76.97325201030434, + 39.017859116366786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.97325201030434, + 39.017859116366786 + ], + [ + -76.98252423600412, + 39.00532891419811 + ], + [ + -76.96397978460455, + 39.00532891419811 + ], + [ + -76.97325201030434, + 39.017859116366786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.97325201030434, + 39.017859116366786 + ], + [ + -76.96397978460455, + 39.00532891419811 + ], + [ + -76.95470755890474, + 39.017859116366786 + ], + [ + -76.97325201030434, + 39.017859116366786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.94543533320495, + 38.72966446648721 + ], + [ + -76.92689088180536, + 38.72966446648721 + ], + [ + -76.93616310750517, + 38.742194668655884 + ], + [ + -76.94543533320495, + 38.72966446648721 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.94543533320495, + 38.72966446648721 + ], + [ + -76.93616310750517, + 38.742194668655884 + ], + [ + -76.95470755890474, + 38.742194668655884 + ], + [ + -76.94543533320495, + 38.72966446648721 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.94543533320495, + 38.72966446648721 + ], + [ + -76.95470755890474, + 38.742194668655884 + ], + [ + -76.96397978460455, + 38.72966446648721 + ], + [ + -76.94543533320495, + 38.72966446648721 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.94543533320495, + 38.72966446648721 + ], + [ + -76.96397978460455, + 38.72966446648721 + ], + [ + -76.95470755890474, + 38.71713426431853 + ], + [ + -76.94543533320495, + 38.72966446648721 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.94543533320495, + 38.72966446648721 + ], + [ + -76.95470755890474, + 38.71713426431853 + ], + [ + -76.93616310750517, + 38.71713426431853 + ], + [ + -76.94543533320495, + 38.72966446648721 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.94543533320495, + 38.72966446648721 + ], + [ + -76.93616310750517, + 38.71713426431853 + ], + [ + -76.92689088180536, + 38.72966446648721 + ], + [ + -76.94543533320495, + 38.72966446648721 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.94543533320495, + 38.75472487082456 + ], + [ + -76.92689088180536, + 38.75472487082456 + ], + [ + -76.93616310750517, + 38.76725507299324 + ], + [ + -76.94543533320495, + 38.75472487082456 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.94543533320495, + 38.75472487082456 + ], + [ + -76.93616310750517, + 38.76725507299324 + ], + [ + -76.95470755890474, + 38.76725507299324 + ], + [ + -76.94543533320495, + 38.75472487082456 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.94543533320495, + 38.75472487082456 + ], + [ + -76.95470755890474, + 38.76725507299324 + ], + [ + -76.96397978460455, + 38.75472487082456 + ], + [ + -76.94543533320495, + 38.75472487082456 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.94543533320495, + 38.75472487082456 + ], + [ + -76.96397978460455, + 38.75472487082456 + ], + [ + -76.95470755890474, + 38.742194668655884 + ], + [ + -76.94543533320495, + 38.75472487082456 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.94543533320495, + 38.75472487082456 + ], + [ + -76.95470755890474, + 38.742194668655884 + ], + [ + -76.93616310750517, + 38.742194668655884 + ], + [ + -76.94543533320495, + 38.75472487082456 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.94543533320495, + 38.75472487082456 + ], + [ + -76.93616310750517, + 38.742194668655884 + ], + [ + -76.92689088180536, + 38.75472487082456 + ], + [ + -76.94543533320495, + 38.75472487082456 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.94543533320495, + 38.77978527516192 + ], + [ + -76.92689088180536, + 38.77978527516192 + ], + [ + -76.93616310750517, + 38.7923154773306 + ], + [ + -76.94543533320495, + 38.77978527516192 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.94543533320495, + 38.77978527516192 + ], + [ + -76.93616310750517, + 38.7923154773306 + ], + [ + -76.95470755890474, + 38.7923154773306 + ], + [ + -76.94543533320495, + 38.77978527516192 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.94543533320495, + 38.77978527516192 + ], + [ + -76.95470755890474, + 38.7923154773306 + ], + [ + -76.96397978460455, + 38.77978527516192 + ], + [ + -76.94543533320495, + 38.77978527516192 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.94543533320495, + 38.77978527516192 + ], + [ + -76.96397978460455, + 38.77978527516192 + ], + [ + -76.95470755890474, + 38.767255072993244 + ], + [ + -76.94543533320495, + 38.77978527516192 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.94543533320495, + 38.77978527516192 + ], + [ + -76.95470755890474, + 38.767255072993244 + ], + [ + -76.93616310750517, + 38.767255072993244 + ], + [ + -76.94543533320495, + 38.77978527516192 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.94543533320495, + 38.77978527516192 + ], + [ + -76.93616310750517, + 38.767255072993244 + ], + [ + -76.92689088180536, + 38.77978527516192 + ], + [ + -76.94543533320495, + 38.77978527516192 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.94543533320495, + 38.80484567949927 + ], + [ + -76.92689088180536, + 38.80484567949927 + ], + [ + -76.93616310750517, + 38.81737588166795 + ], + [ + -76.94543533320495, + 38.80484567949927 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.94543533320495, + 38.80484567949927 + ], + [ + -76.93616310750517, + 38.81737588166795 + ], + [ + -76.95470755890474, + 38.81737588166795 + ], + [ + -76.94543533320495, + 38.80484567949927 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.94543533320495, + 38.80484567949927 + ], + [ + -76.95470755890474, + 38.81737588166795 + ], + [ + -76.96397978460455, + 38.80484567949927 + ], + [ + -76.94543533320495, + 38.80484567949927 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.94543533320495, + 38.80484567949927 + ], + [ + -76.96397978460455, + 38.80484567949927 + ], + [ + -76.95470755890474, + 38.7923154773306 + ], + [ + -76.94543533320495, + 38.80484567949927 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.94543533320495, + 38.80484567949927 + ], + [ + -76.95470755890474, + 38.7923154773306 + ], + [ + -76.93616310750517, + 38.7923154773306 + ], + [ + -76.94543533320495, + 38.80484567949927 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.94543533320495, + 38.80484567949927 + ], + [ + -76.93616310750517, + 38.7923154773306 + ], + [ + -76.92689088180536, + 38.80484567949927 + ], + [ + -76.94543533320495, + 38.80484567949927 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.94543533320495, + 38.829906083836626 + ], + [ + -76.92689088180536, + 38.829906083836626 + ], + [ + -76.93616310750517, + 38.8424362860053 + ], + [ + -76.94543533320495, + 38.829906083836626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.94543533320495, + 38.829906083836626 + ], + [ + -76.93616310750517, + 38.8424362860053 + ], + [ + -76.95470755890474, + 38.8424362860053 + ], + [ + -76.94543533320495, + 38.829906083836626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.94543533320495, + 38.829906083836626 + ], + [ + -76.95470755890474, + 38.8424362860053 + ], + [ + -76.96397978460455, + 38.829906083836626 + ], + [ + -76.94543533320495, + 38.829906083836626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.94543533320495, + 38.829906083836626 + ], + [ + -76.96397978460455, + 38.829906083836626 + ], + [ + -76.95470755890474, + 38.81737588166795 + ], + [ + -76.94543533320495, + 38.829906083836626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.94543533320495, + 38.829906083836626 + ], + [ + -76.95470755890474, + 38.81737588166795 + ], + [ + -76.93616310750517, + 38.81737588166795 + ], + [ + -76.94543533320495, + 38.829906083836626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.94543533320495, + 38.829906083836626 + ], + [ + -76.93616310750517, + 38.81737588166795 + ], + [ + -76.92689088180536, + 38.829906083836626 + ], + [ + -76.94543533320495, + 38.829906083836626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.94543533320495, + 38.85496648817398 + ], + [ + -76.92689088180536, + 38.85496648817398 + ], + [ + -76.93616310750517, + 38.867496690342655 + ], + [ + -76.94543533320495, + 38.85496648817398 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.94543533320495, + 38.85496648817398 + ], + [ + -76.93616310750517, + 38.867496690342655 + ], + [ + -76.95470755890474, + 38.867496690342655 + ], + [ + -76.94543533320495, + 38.85496648817398 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.94543533320495, + 38.85496648817398 + ], + [ + -76.95470755890474, + 38.867496690342655 + ], + [ + -76.96397978460455, + 38.85496648817398 + ], + [ + -76.94543533320495, + 38.85496648817398 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.94543533320495, + 38.85496648817398 + ], + [ + -76.96397978460455, + 38.85496648817398 + ], + [ + -76.95470755890474, + 38.8424362860053 + ], + [ + -76.94543533320495, + 38.85496648817398 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.94543533320495, + 38.85496648817398 + ], + [ + -76.95470755890474, + 38.8424362860053 + ], + [ + -76.93616310750517, + 38.8424362860053 + ], + [ + -76.94543533320495, + 38.85496648817398 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.94543533320495, + 38.85496648817398 + ], + [ + -76.93616310750517, + 38.8424362860053 + ], + [ + -76.92689088180536, + 38.85496648817398 + ], + [ + -76.94543533320495, + 38.85496648817398 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.94543533320495, + 38.88002689251133 + ], + [ + -76.92689088180536, + 38.88002689251133 + ], + [ + -76.93616310750517, + 38.89255709468001 + ], + [ + -76.94543533320495, + 38.88002689251133 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.94543533320495, + 38.88002689251133 + ], + [ + -76.93616310750517, + 38.89255709468001 + ], + [ + -76.95470755890474, + 38.89255709468001 + ], + [ + -76.94543533320495, + 38.88002689251133 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.94543533320495, + 38.88002689251133 + ], + [ + -76.95470755890474, + 38.89255709468001 + ], + [ + -76.96397978460455, + 38.88002689251133 + ], + [ + -76.94543533320495, + 38.88002689251133 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.94543533320495, + 38.88002689251133 + ], + [ + -76.96397978460455, + 38.88002689251133 + ], + [ + -76.95470755890474, + 38.867496690342655 + ], + [ + -76.94543533320495, + 38.88002689251133 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.94543533320495, + 38.88002689251133 + ], + [ + -76.95470755890474, + 38.867496690342655 + ], + [ + -76.93616310750517, + 38.867496690342655 + ], + [ + -76.94543533320495, + 38.88002689251133 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.94543533320495, + 38.88002689251133 + ], + [ + -76.93616310750517, + 38.867496690342655 + ], + [ + -76.92689088180536, + 38.88002689251133 + ], + [ + -76.94543533320495, + 38.88002689251133 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.94543533320495, + 38.90508729684869 + ], + [ + -76.92689088180536, + 38.90508729684869 + ], + [ + -76.93616310750517, + 38.91761749901737 + ], + [ + -76.94543533320495, + 38.90508729684869 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.94543533320495, + 38.90508729684869 + ], + [ + -76.93616310750517, + 38.91761749901737 + ], + [ + -76.95470755890474, + 38.91761749901737 + ], + [ + -76.94543533320495, + 38.90508729684869 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.94543533320495, + 38.90508729684869 + ], + [ + -76.95470755890474, + 38.91761749901737 + ], + [ + -76.96397978460455, + 38.90508729684869 + ], + [ + -76.94543533320495, + 38.90508729684869 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.94543533320495, + 38.90508729684869 + ], + [ + -76.96397978460455, + 38.90508729684869 + ], + [ + -76.95470755890474, + 38.892557094680015 + ], + [ + -76.94543533320495, + 38.90508729684869 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.94543533320495, + 38.90508729684869 + ], + [ + -76.95470755890474, + 38.892557094680015 + ], + [ + -76.93616310750517, + 38.892557094680015 + ], + [ + -76.94543533320495, + 38.90508729684869 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.94543533320495, + 38.90508729684869 + ], + [ + -76.93616310750517, + 38.892557094680015 + ], + [ + -76.92689088180536, + 38.90508729684869 + ], + [ + -76.94543533320495, + 38.90508729684869 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.94543533320495, + 38.930147701186044 + ], + [ + -76.92689088180536, + 38.930147701186044 + ], + [ + -76.93616310750517, + 38.94267790335472 + ], + [ + -76.94543533320495, + 38.930147701186044 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.94543533320495, + 38.930147701186044 + ], + [ + -76.93616310750517, + 38.94267790335472 + ], + [ + -76.95470755890474, + 38.94267790335472 + ], + [ + -76.94543533320495, + 38.930147701186044 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.94543533320495, + 38.930147701186044 + ], + [ + -76.95470755890474, + 38.94267790335472 + ], + [ + -76.96397978460455, + 38.930147701186044 + ], + [ + -76.94543533320495, + 38.930147701186044 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.94543533320495, + 38.930147701186044 + ], + [ + -76.96397978460455, + 38.930147701186044 + ], + [ + -76.95470755890474, + 38.91761749901737 + ], + [ + -76.94543533320495, + 38.930147701186044 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.94543533320495, + 38.930147701186044 + ], + [ + -76.95470755890474, + 38.91761749901737 + ], + [ + -76.93616310750517, + 38.91761749901737 + ], + [ + -76.94543533320495, + 38.930147701186044 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.94543533320495, + 38.930147701186044 + ], + [ + -76.93616310750517, + 38.91761749901737 + ], + [ + -76.92689088180536, + 38.930147701186044 + ], + [ + -76.94543533320495, + 38.930147701186044 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.94543533320495, + 38.9552081055234 + ], + [ + -76.92689088180536, + 38.9552081055234 + ], + [ + -76.93616310750517, + 38.96773830769207 + ], + [ + -76.94543533320495, + 38.9552081055234 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.94543533320495, + 38.9552081055234 + ], + [ + -76.93616310750517, + 38.96773830769207 + ], + [ + -76.95470755890474, + 38.96773830769207 + ], + [ + -76.94543533320495, + 38.9552081055234 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.94543533320495, + 38.9552081055234 + ], + [ + -76.95470755890474, + 38.96773830769207 + ], + [ + -76.96397978460455, + 38.9552081055234 + ], + [ + -76.94543533320495, + 38.9552081055234 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.94543533320495, + 38.9552081055234 + ], + [ + -76.96397978460455, + 38.9552081055234 + ], + [ + -76.95470755890474, + 38.94267790335472 + ], + [ + -76.94543533320495, + 38.9552081055234 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.94543533320495, + 38.9552081055234 + ], + [ + -76.95470755890474, + 38.94267790335472 + ], + [ + -76.93616310750517, + 38.94267790335472 + ], + [ + -76.94543533320495, + 38.9552081055234 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.94543533320495, + 38.9552081055234 + ], + [ + -76.93616310750517, + 38.94267790335472 + ], + [ + -76.92689088180536, + 38.9552081055234 + ], + [ + -76.94543533320495, + 38.9552081055234 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.94543533320495, + 38.98026850986075 + ], + [ + -76.92689088180536, + 38.98026850986075 + ], + [ + -76.93616310750517, + 38.992798712029426 + ], + [ + -76.94543533320495, + 38.98026850986075 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.94543533320495, + 38.98026850986075 + ], + [ + -76.93616310750517, + 38.992798712029426 + ], + [ + -76.95470755890474, + 38.992798712029426 + ], + [ + -76.94543533320495, + 38.98026850986075 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.94543533320495, + 38.98026850986075 + ], + [ + -76.95470755890474, + 38.992798712029426 + ], + [ + -76.96397978460455, + 38.98026850986075 + ], + [ + -76.94543533320495, + 38.98026850986075 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.94543533320495, + 38.98026850986075 + ], + [ + -76.96397978460455, + 38.98026850986075 + ], + [ + -76.95470755890474, + 38.96773830769207 + ], + [ + -76.94543533320495, + 38.98026850986075 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.94543533320495, + 38.98026850986075 + ], + [ + -76.95470755890474, + 38.96773830769207 + ], + [ + -76.93616310750517, + 38.96773830769207 + ], + [ + -76.94543533320495, + 38.98026850986075 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.94543533320495, + 38.98026850986075 + ], + [ + -76.93616310750517, + 38.96773830769207 + ], + [ + -76.92689088180536, + 38.98026850986075 + ], + [ + -76.94543533320495, + 38.98026850986075 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.94543533320495, + 39.0053289141981 + ], + [ + -76.92689088180536, + 39.0053289141981 + ], + [ + -76.93616310750517, + 39.01785911636678 + ], + [ + -76.94543533320495, + 39.0053289141981 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.94543533320495, + 39.0053289141981 + ], + [ + -76.93616310750517, + 39.01785911636678 + ], + [ + -76.95470755890474, + 39.01785911636678 + ], + [ + -76.94543533320495, + 39.0053289141981 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.94543533320495, + 39.0053289141981 + ], + [ + -76.95470755890474, + 39.01785911636678 + ], + [ + -76.96397978460455, + 39.0053289141981 + ], + [ + -76.94543533320495, + 39.0053289141981 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.94543533320495, + 39.0053289141981 + ], + [ + -76.96397978460455, + 39.0053289141981 + ], + [ + -76.95470755890474, + 38.992798712029426 + ], + [ + -76.94543533320495, + 39.0053289141981 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.94543533320495, + 39.0053289141981 + ], + [ + -76.95470755890474, + 38.992798712029426 + ], + [ + -76.93616310750517, + 38.992798712029426 + ], + [ + -76.94543533320495, + 39.0053289141981 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.94543533320495, + 39.0053289141981 + ], + [ + -76.93616310750517, + 38.992798712029426 + ], + [ + -76.92689088180536, + 39.0053289141981 + ], + [ + -76.94543533320495, + 39.0053289141981 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.94543533320495, + 39.03038931853546 + ], + [ + -76.92689088180536, + 39.03038931853546 + ], + [ + -76.93616310750517, + 39.04291952070414 + ], + [ + -76.94543533320495, + 39.03038931853546 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.94543533320495, + 39.03038931853546 + ], + [ + -76.93616310750517, + 39.04291952070414 + ], + [ + -76.95470755890474, + 39.04291952070414 + ], + [ + -76.94543533320495, + 39.03038931853546 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.94543533320495, + 39.03038931853546 + ], + [ + -76.95470755890474, + 39.04291952070414 + ], + [ + -76.96397978460455, + 39.03038931853546 + ], + [ + -76.94543533320495, + 39.03038931853546 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.94543533320495, + 39.03038931853546 + ], + [ + -76.96397978460455, + 39.03038931853546 + ], + [ + -76.95470755890474, + 39.017859116366786 + ], + [ + -76.94543533320495, + 39.03038931853546 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.94543533320495, + 39.03038931853546 + ], + [ + -76.95470755890474, + 39.017859116366786 + ], + [ + -76.93616310750517, + 39.017859116366786 + ], + [ + -76.94543533320495, + 39.03038931853546 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.94543533320495, + 39.03038931853546 + ], + [ + -76.93616310750517, + 39.017859116366786 + ], + [ + -76.92689088180536, + 39.03038931853546 + ], + [ + -76.94543533320495, + 39.03038931853546 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "fill-opacity": 0, + "stroke": "#0ff" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.3876953125, + 38.71980474264239 + ], + [ + -76.9482421875, + 38.71980474264239 + ], + [ + -76.9482421875, + 39.027718840211605 + ], + [ + -77.3876953125, + 39.027718840211605 + ], + [ + -77.3876953125, + 38.71980474264239 + ] + ] + ] + } + } + ] +} \ No newline at end of file diff --git a/packages/turf-hex-grid/test/out/trigrid4.geojson b/packages/turf-hex-grid/test/out/trigrid4.geojson new file mode 100644 index 0000000000..d22e55ef66 --- /dev/null +++ b/packages/turf-hex-grid/test/out/trigrid4.geojson @@ -0,0 +1,527349 @@ +{ + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 12.0004566996162 + ], + [ + 63.80630225929973, + 12.0004566996162 + ], + [ + 63.69145957581605, + 12.195104434544653 + ], + [ + 63.57661689233237, + 12.0004566996162 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 12.0004566996162 + ], + [ + 63.69145957581605, + 12.195104434544653 + ], + [ + 63.46177420884869, + 12.195104434544653 + ], + [ + 63.57661689233237, + 12.0004566996162 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 12.0004566996162 + ], + [ + 63.46177420884869, + 12.195104434544653 + ], + [ + 63.34693152536501, + 12.0004566996162 + ], + [ + 63.57661689233237, + 12.0004566996162 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 12.0004566996162 + ], + [ + 63.34693152536501, + 12.0004566996162 + ], + [ + 63.46177420884869, + 11.805808964687746 + ], + [ + 63.57661689233237, + 12.0004566996162 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 12.0004566996162 + ], + [ + 63.46177420884869, + 11.805808964687746 + ], + [ + 63.69145957581605, + 11.805808964687746 + ], + [ + 63.57661689233237, + 12.0004566996162 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 12.0004566996162 + ], + [ + 63.69145957581605, + 11.805808964687746 + ], + [ + 63.80630225929973, + 12.0004566996162 + ], + [ + 63.57661689233237, + 12.0004566996162 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 12.389752169473105 + ], + [ + 63.80630225929973, + 12.389752169473105 + ], + [ + 63.69145957581605, + 12.58439990440156 + ], + [ + 63.57661689233237, + 12.389752169473105 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 12.389752169473105 + ], + [ + 63.69145957581605, + 12.58439990440156 + ], + [ + 63.46177420884869, + 12.58439990440156 + ], + [ + 63.57661689233237, + 12.389752169473105 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 12.389752169473105 + ], + [ + 63.46177420884869, + 12.58439990440156 + ], + [ + 63.34693152536501, + 12.389752169473105 + ], + [ + 63.57661689233237, + 12.389752169473105 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 12.389752169473105 + ], + [ + 63.34693152536501, + 12.389752169473105 + ], + [ + 63.46177420884869, + 12.195104434544652 + ], + [ + 63.57661689233237, + 12.389752169473105 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 12.389752169473105 + ], + [ + 63.46177420884869, + 12.195104434544652 + ], + [ + 63.69145957581605, + 12.195104434544652 + ], + [ + 63.57661689233237, + 12.389752169473105 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 12.389752169473105 + ], + [ + 63.69145957581605, + 12.195104434544652 + ], + [ + 63.80630225929973, + 12.389752169473105 + ], + [ + 63.57661689233237, + 12.389752169473105 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 12.779047639330013 + ], + [ + 63.80630225929973, + 12.779047639330013 + ], + [ + 63.69145957581605, + 12.973695374258467 + ], + [ + 63.57661689233237, + 12.779047639330013 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 12.779047639330013 + ], + [ + 63.69145957581605, + 12.973695374258467 + ], + [ + 63.46177420884869, + 12.973695374258467 + ], + [ + 63.57661689233237, + 12.779047639330013 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 12.779047639330013 + ], + [ + 63.46177420884869, + 12.973695374258467 + ], + [ + 63.34693152536501, + 12.779047639330013 + ], + [ + 63.57661689233237, + 12.779047639330013 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 12.779047639330013 + ], + [ + 63.34693152536501, + 12.779047639330013 + ], + [ + 63.46177420884869, + 12.58439990440156 + ], + [ + 63.57661689233237, + 12.779047639330013 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 12.779047639330013 + ], + [ + 63.46177420884869, + 12.58439990440156 + ], + [ + 63.69145957581605, + 12.58439990440156 + ], + [ + 63.57661689233237, + 12.779047639330013 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 12.779047639330013 + ], + [ + 63.69145957581605, + 12.58439990440156 + ], + [ + 63.80630225929973, + 12.779047639330013 + ], + [ + 63.57661689233237, + 12.779047639330013 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 13.16834310918692 + ], + [ + 63.80630225929973, + 13.16834310918692 + ], + [ + 63.69145957581605, + 13.362990844115373 + ], + [ + 63.57661689233237, + 13.16834310918692 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 13.16834310918692 + ], + [ + 63.69145957581605, + 13.362990844115373 + ], + [ + 63.46177420884869, + 13.362990844115373 + ], + [ + 63.57661689233237, + 13.16834310918692 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 13.16834310918692 + ], + [ + 63.46177420884869, + 13.362990844115373 + ], + [ + 63.34693152536501, + 13.16834310918692 + ], + [ + 63.57661689233237, + 13.16834310918692 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 13.16834310918692 + ], + [ + 63.34693152536501, + 13.16834310918692 + ], + [ + 63.46177420884869, + 12.973695374258465 + ], + [ + 63.57661689233237, + 13.16834310918692 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 13.16834310918692 + ], + [ + 63.46177420884869, + 12.973695374258465 + ], + [ + 63.69145957581605, + 12.973695374258465 + ], + [ + 63.57661689233237, + 13.16834310918692 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 13.16834310918692 + ], + [ + 63.69145957581605, + 12.973695374258465 + ], + [ + 63.80630225929973, + 13.16834310918692 + ], + [ + 63.57661689233237, + 13.16834310918692 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 13.557638579043825 + ], + [ + 63.80630225929973, + 13.557638579043825 + ], + [ + 63.69145957581605, + 13.752286313972279 + ], + [ + 63.57661689233237, + 13.557638579043825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 13.557638579043825 + ], + [ + 63.69145957581605, + 13.752286313972279 + ], + [ + 63.46177420884869, + 13.752286313972279 + ], + [ + 63.57661689233237, + 13.557638579043825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 13.557638579043825 + ], + [ + 63.46177420884869, + 13.752286313972279 + ], + [ + 63.34693152536501, + 13.557638579043825 + ], + [ + 63.57661689233237, + 13.557638579043825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 13.557638579043825 + ], + [ + 63.34693152536501, + 13.557638579043825 + ], + [ + 63.46177420884869, + 13.362990844115371 + ], + [ + 63.57661689233237, + 13.557638579043825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 13.557638579043825 + ], + [ + 63.46177420884869, + 13.362990844115371 + ], + [ + 63.69145957581605, + 13.362990844115371 + ], + [ + 63.57661689233237, + 13.557638579043825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 13.557638579043825 + ], + [ + 63.69145957581605, + 13.362990844115371 + ], + [ + 63.80630225929973, + 13.557638579043825 + ], + [ + 63.57661689233237, + 13.557638579043825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 13.946934048900731 + ], + [ + 63.80630225929973, + 13.946934048900731 + ], + [ + 63.69145957581605, + 14.141581783829185 + ], + [ + 63.57661689233237, + 13.946934048900731 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 13.946934048900731 + ], + [ + 63.69145957581605, + 14.141581783829185 + ], + [ + 63.46177420884869, + 14.141581783829185 + ], + [ + 63.57661689233237, + 13.946934048900731 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 13.946934048900731 + ], + [ + 63.46177420884869, + 14.141581783829185 + ], + [ + 63.34693152536501, + 13.946934048900731 + ], + [ + 63.57661689233237, + 13.946934048900731 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 13.946934048900731 + ], + [ + 63.34693152536501, + 13.946934048900731 + ], + [ + 63.46177420884869, + 13.752286313972277 + ], + [ + 63.57661689233237, + 13.946934048900731 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 13.946934048900731 + ], + [ + 63.46177420884869, + 13.752286313972277 + ], + [ + 63.69145957581605, + 13.752286313972277 + ], + [ + 63.57661689233237, + 13.946934048900731 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 13.946934048900731 + ], + [ + 63.69145957581605, + 13.752286313972277 + ], + [ + 63.80630225929973, + 13.946934048900731 + ], + [ + 63.57661689233237, + 13.946934048900731 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 14.336229518757637 + ], + [ + 63.80630225929973, + 14.336229518757637 + ], + [ + 63.69145957581605, + 14.530877253686091 + ], + [ + 63.57661689233237, + 14.336229518757637 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 14.336229518757637 + ], + [ + 63.69145957581605, + 14.530877253686091 + ], + [ + 63.46177420884869, + 14.530877253686091 + ], + [ + 63.57661689233237, + 14.336229518757637 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 14.336229518757637 + ], + [ + 63.46177420884869, + 14.530877253686091 + ], + [ + 63.34693152536501, + 14.336229518757637 + ], + [ + 63.57661689233237, + 14.336229518757637 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 14.336229518757637 + ], + [ + 63.34693152536501, + 14.336229518757637 + ], + [ + 63.46177420884869, + 14.141581783829183 + ], + [ + 63.57661689233237, + 14.336229518757637 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 14.336229518757637 + ], + [ + 63.46177420884869, + 14.141581783829183 + ], + [ + 63.69145957581605, + 14.141581783829183 + ], + [ + 63.57661689233237, + 14.336229518757637 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 14.336229518757637 + ], + [ + 63.69145957581605, + 14.141581783829183 + ], + [ + 63.80630225929973, + 14.336229518757637 + ], + [ + 63.57661689233237, + 14.336229518757637 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 14.725524988614545 + ], + [ + 63.80630225929973, + 14.725524988614545 + ], + [ + 63.69145957581605, + 14.920172723542999 + ], + [ + 63.57661689233237, + 14.725524988614545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 14.725524988614545 + ], + [ + 63.69145957581605, + 14.920172723542999 + ], + [ + 63.46177420884869, + 14.920172723542999 + ], + [ + 63.57661689233237, + 14.725524988614545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 14.725524988614545 + ], + [ + 63.46177420884869, + 14.920172723542999 + ], + [ + 63.34693152536501, + 14.725524988614545 + ], + [ + 63.57661689233237, + 14.725524988614545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 14.725524988614545 + ], + [ + 63.34693152536501, + 14.725524988614545 + ], + [ + 63.46177420884869, + 14.530877253686091 + ], + [ + 63.57661689233237, + 14.725524988614545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 14.725524988614545 + ], + [ + 63.46177420884869, + 14.530877253686091 + ], + [ + 63.69145957581605, + 14.530877253686091 + ], + [ + 63.57661689233237, + 14.725524988614545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 14.725524988614545 + ], + [ + 63.69145957581605, + 14.530877253686091 + ], + [ + 63.80630225929973, + 14.725524988614545 + ], + [ + 63.57661689233237, + 14.725524988614545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 15.114820458471451 + ], + [ + 63.80630225929973, + 15.114820458471451 + ], + [ + 63.69145957581605, + 15.309468193399905 + ], + [ + 63.57661689233237, + 15.114820458471451 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 15.114820458471451 + ], + [ + 63.69145957581605, + 15.309468193399905 + ], + [ + 63.46177420884869, + 15.309468193399905 + ], + [ + 63.57661689233237, + 15.114820458471451 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 15.114820458471451 + ], + [ + 63.46177420884869, + 15.309468193399905 + ], + [ + 63.34693152536501, + 15.114820458471451 + ], + [ + 63.57661689233237, + 15.114820458471451 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 15.114820458471451 + ], + [ + 63.34693152536501, + 15.114820458471451 + ], + [ + 63.46177420884869, + 14.920172723542997 + ], + [ + 63.57661689233237, + 15.114820458471451 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 15.114820458471451 + ], + [ + 63.46177420884869, + 14.920172723542997 + ], + [ + 63.69145957581605, + 14.920172723542997 + ], + [ + 63.57661689233237, + 15.114820458471451 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 15.114820458471451 + ], + [ + 63.69145957581605, + 14.920172723542997 + ], + [ + 63.80630225929973, + 15.114820458471451 + ], + [ + 63.57661689233237, + 15.114820458471451 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 15.504115928328357 + ], + [ + 63.80630225929973, + 15.504115928328357 + ], + [ + 63.69145957581605, + 15.69876366325681 + ], + [ + 63.57661689233237, + 15.504115928328357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 15.504115928328357 + ], + [ + 63.69145957581605, + 15.69876366325681 + ], + [ + 63.46177420884869, + 15.69876366325681 + ], + [ + 63.57661689233237, + 15.504115928328357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 15.504115928328357 + ], + [ + 63.46177420884869, + 15.69876366325681 + ], + [ + 63.34693152536501, + 15.504115928328357 + ], + [ + 63.57661689233237, + 15.504115928328357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 15.504115928328357 + ], + [ + 63.34693152536501, + 15.504115928328357 + ], + [ + 63.46177420884869, + 15.309468193399903 + ], + [ + 63.57661689233237, + 15.504115928328357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 15.504115928328357 + ], + [ + 63.46177420884869, + 15.309468193399903 + ], + [ + 63.69145957581605, + 15.309468193399903 + ], + [ + 63.57661689233237, + 15.504115928328357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 15.504115928328357 + ], + [ + 63.69145957581605, + 15.309468193399903 + ], + [ + 63.80630225929973, + 15.504115928328357 + ], + [ + 63.57661689233237, + 15.504115928328357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 15.893411398185265 + ], + [ + 63.80630225929973, + 15.893411398185265 + ], + [ + 63.69145957581605, + 16.088059133113717 + ], + [ + 63.57661689233237, + 15.893411398185265 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 15.893411398185265 + ], + [ + 63.69145957581605, + 16.088059133113717 + ], + [ + 63.46177420884869, + 16.088059133113717 + ], + [ + 63.57661689233237, + 15.893411398185265 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 15.893411398185265 + ], + [ + 63.46177420884869, + 16.088059133113717 + ], + [ + 63.34693152536501, + 15.893411398185265 + ], + [ + 63.57661689233237, + 15.893411398185265 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 15.893411398185265 + ], + [ + 63.34693152536501, + 15.893411398185265 + ], + [ + 63.46177420884869, + 15.69876366325681 + ], + [ + 63.57661689233237, + 15.893411398185265 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 15.893411398185265 + ], + [ + 63.46177420884869, + 15.69876366325681 + ], + [ + 63.69145957581605, + 15.69876366325681 + ], + [ + 63.57661689233237, + 15.893411398185265 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 15.893411398185265 + ], + [ + 63.69145957581605, + 15.69876366325681 + ], + [ + 63.80630225929973, + 15.893411398185265 + ], + [ + 63.57661689233237, + 15.893411398185265 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 16.28270686804217 + ], + [ + 63.80630225929973, + 16.28270686804217 + ], + [ + 63.69145957581605, + 16.47735460297062 + ], + [ + 63.57661689233237, + 16.28270686804217 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 16.28270686804217 + ], + [ + 63.69145957581605, + 16.47735460297062 + ], + [ + 63.46177420884869, + 16.47735460297062 + ], + [ + 63.57661689233237, + 16.28270686804217 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 16.28270686804217 + ], + [ + 63.46177420884869, + 16.47735460297062 + ], + [ + 63.34693152536501, + 16.28270686804217 + ], + [ + 63.57661689233237, + 16.28270686804217 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 16.28270686804217 + ], + [ + 63.34693152536501, + 16.28270686804217 + ], + [ + 63.46177420884869, + 16.088059133113717 + ], + [ + 63.57661689233237, + 16.28270686804217 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 16.28270686804217 + ], + [ + 63.46177420884869, + 16.088059133113717 + ], + [ + 63.69145957581605, + 16.088059133113717 + ], + [ + 63.57661689233237, + 16.28270686804217 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 16.28270686804217 + ], + [ + 63.69145957581605, + 16.088059133113717 + ], + [ + 63.80630225929973, + 16.28270686804217 + ], + [ + 63.57661689233237, + 16.28270686804217 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 16.672002337899077 + ], + [ + 63.80630225929973, + 16.672002337899077 + ], + [ + 63.69145957581605, + 16.86665007282753 + ], + [ + 63.57661689233237, + 16.672002337899077 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 16.672002337899077 + ], + [ + 63.69145957581605, + 16.86665007282753 + ], + [ + 63.46177420884869, + 16.86665007282753 + ], + [ + 63.57661689233237, + 16.672002337899077 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 16.672002337899077 + ], + [ + 63.46177420884869, + 16.86665007282753 + ], + [ + 63.34693152536501, + 16.672002337899077 + ], + [ + 63.57661689233237, + 16.672002337899077 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 16.672002337899077 + ], + [ + 63.34693152536501, + 16.672002337899077 + ], + [ + 63.46177420884869, + 16.477354602970625 + ], + [ + 63.57661689233237, + 16.672002337899077 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 16.672002337899077 + ], + [ + 63.46177420884869, + 16.477354602970625 + ], + [ + 63.69145957581605, + 16.477354602970625 + ], + [ + 63.57661689233237, + 16.672002337899077 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 16.672002337899077 + ], + [ + 63.69145957581605, + 16.477354602970625 + ], + [ + 63.80630225929973, + 16.672002337899077 + ], + [ + 63.57661689233237, + 16.672002337899077 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 17.06129780775598 + ], + [ + 63.80630225929973, + 17.06129780775598 + ], + [ + 63.69145957581605, + 17.255945542684433 + ], + [ + 63.57661689233237, + 17.06129780775598 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 17.06129780775598 + ], + [ + 63.69145957581605, + 17.255945542684433 + ], + [ + 63.46177420884869, + 17.255945542684433 + ], + [ + 63.57661689233237, + 17.06129780775598 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 17.06129780775598 + ], + [ + 63.46177420884869, + 17.255945542684433 + ], + [ + 63.34693152536501, + 17.06129780775598 + ], + [ + 63.57661689233237, + 17.06129780775598 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 17.06129780775598 + ], + [ + 63.34693152536501, + 17.06129780775598 + ], + [ + 63.46177420884869, + 16.86665007282753 + ], + [ + 63.57661689233237, + 17.06129780775598 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 17.06129780775598 + ], + [ + 63.46177420884869, + 16.86665007282753 + ], + [ + 63.69145957581605, + 16.86665007282753 + ], + [ + 63.57661689233237, + 17.06129780775598 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 17.06129780775598 + ], + [ + 63.69145957581605, + 16.86665007282753 + ], + [ + 63.80630225929973, + 17.06129780775598 + ], + [ + 63.57661689233237, + 17.06129780775598 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 17.45059327761289 + ], + [ + 63.80630225929973, + 17.45059327761289 + ], + [ + 63.69145957581605, + 17.64524101254134 + ], + [ + 63.57661689233237, + 17.45059327761289 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 17.45059327761289 + ], + [ + 63.69145957581605, + 17.64524101254134 + ], + [ + 63.46177420884869, + 17.64524101254134 + ], + [ + 63.57661689233237, + 17.45059327761289 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 17.45059327761289 + ], + [ + 63.46177420884869, + 17.64524101254134 + ], + [ + 63.34693152536501, + 17.45059327761289 + ], + [ + 63.57661689233237, + 17.45059327761289 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 17.45059327761289 + ], + [ + 63.34693152536501, + 17.45059327761289 + ], + [ + 63.46177420884869, + 17.255945542684437 + ], + [ + 63.57661689233237, + 17.45059327761289 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 17.45059327761289 + ], + [ + 63.46177420884869, + 17.255945542684437 + ], + [ + 63.69145957581605, + 17.255945542684437 + ], + [ + 63.57661689233237, + 17.45059327761289 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 17.45059327761289 + ], + [ + 63.69145957581605, + 17.255945542684437 + ], + [ + 63.80630225929973, + 17.45059327761289 + ], + [ + 63.57661689233237, + 17.45059327761289 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 17.839888747469793 + ], + [ + 63.80630225929973, + 17.839888747469793 + ], + [ + 63.69145957581605, + 18.034536482398245 + ], + [ + 63.57661689233237, + 17.839888747469793 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 17.839888747469793 + ], + [ + 63.69145957581605, + 18.034536482398245 + ], + [ + 63.46177420884869, + 18.034536482398245 + ], + [ + 63.57661689233237, + 17.839888747469793 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 17.839888747469793 + ], + [ + 63.46177420884869, + 18.034536482398245 + ], + [ + 63.34693152536501, + 17.839888747469793 + ], + [ + 63.57661689233237, + 17.839888747469793 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 17.839888747469793 + ], + [ + 63.34693152536501, + 17.839888747469793 + ], + [ + 63.46177420884869, + 17.64524101254134 + ], + [ + 63.57661689233237, + 17.839888747469793 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 17.839888747469793 + ], + [ + 63.46177420884869, + 17.64524101254134 + ], + [ + 63.69145957581605, + 17.64524101254134 + ], + [ + 63.57661689233237, + 17.839888747469793 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 17.839888747469793 + ], + [ + 63.69145957581605, + 17.64524101254134 + ], + [ + 63.80630225929973, + 17.839888747469793 + ], + [ + 63.57661689233237, + 17.839888747469793 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 18.2291842173267 + ], + [ + 63.80630225929973, + 18.2291842173267 + ], + [ + 63.69145957581605, + 18.423831952255153 + ], + [ + 63.57661689233237, + 18.2291842173267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 18.2291842173267 + ], + [ + 63.69145957581605, + 18.423831952255153 + ], + [ + 63.46177420884869, + 18.423831952255153 + ], + [ + 63.57661689233237, + 18.2291842173267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 18.2291842173267 + ], + [ + 63.46177420884869, + 18.423831952255153 + ], + [ + 63.34693152536501, + 18.2291842173267 + ], + [ + 63.57661689233237, + 18.2291842173267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 18.2291842173267 + ], + [ + 63.34693152536501, + 18.2291842173267 + ], + [ + 63.46177420884869, + 18.03453648239825 + ], + [ + 63.57661689233237, + 18.2291842173267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 18.2291842173267 + ], + [ + 63.46177420884869, + 18.03453648239825 + ], + [ + 63.69145957581605, + 18.03453648239825 + ], + [ + 63.57661689233237, + 18.2291842173267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 18.2291842173267 + ], + [ + 63.69145957581605, + 18.03453648239825 + ], + [ + 63.80630225929973, + 18.2291842173267 + ], + [ + 63.57661689233237, + 18.2291842173267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 18.61847968718361 + ], + [ + 63.80630225929973, + 18.61847968718361 + ], + [ + 63.69145957581605, + 18.81312742211206 + ], + [ + 63.57661689233237, + 18.61847968718361 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 18.61847968718361 + ], + [ + 63.69145957581605, + 18.81312742211206 + ], + [ + 63.46177420884869, + 18.81312742211206 + ], + [ + 63.57661689233237, + 18.61847968718361 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 18.61847968718361 + ], + [ + 63.46177420884869, + 18.81312742211206 + ], + [ + 63.34693152536501, + 18.61847968718361 + ], + [ + 63.57661689233237, + 18.61847968718361 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 18.61847968718361 + ], + [ + 63.34693152536501, + 18.61847968718361 + ], + [ + 63.46177420884869, + 18.423831952255156 + ], + [ + 63.57661689233237, + 18.61847968718361 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 18.61847968718361 + ], + [ + 63.46177420884869, + 18.423831952255156 + ], + [ + 63.69145957581605, + 18.423831952255156 + ], + [ + 63.57661689233237, + 18.61847968718361 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 18.61847968718361 + ], + [ + 63.69145957581605, + 18.423831952255156 + ], + [ + 63.80630225929973, + 18.61847968718361 + ], + [ + 63.57661689233237, + 18.61847968718361 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 19.007775157040513 + ], + [ + 63.80630225929973, + 19.007775157040513 + ], + [ + 63.69145957581605, + 19.202422891968965 + ], + [ + 63.57661689233237, + 19.007775157040513 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 19.007775157040513 + ], + [ + 63.69145957581605, + 19.202422891968965 + ], + [ + 63.46177420884869, + 19.202422891968965 + ], + [ + 63.57661689233237, + 19.007775157040513 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 19.007775157040513 + ], + [ + 63.46177420884869, + 19.202422891968965 + ], + [ + 63.34693152536501, + 19.007775157040513 + ], + [ + 63.57661689233237, + 19.007775157040513 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 19.007775157040513 + ], + [ + 63.34693152536501, + 19.007775157040513 + ], + [ + 63.46177420884869, + 18.81312742211206 + ], + [ + 63.57661689233237, + 19.007775157040513 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 19.007775157040513 + ], + [ + 63.46177420884869, + 18.81312742211206 + ], + [ + 63.69145957581605, + 18.81312742211206 + ], + [ + 63.57661689233237, + 19.007775157040513 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 19.007775157040513 + ], + [ + 63.69145957581605, + 18.81312742211206 + ], + [ + 63.80630225929973, + 19.007775157040513 + ], + [ + 63.57661689233237, + 19.007775157040513 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 19.39707062689742 + ], + [ + 63.80630225929973, + 19.39707062689742 + ], + [ + 63.69145957581605, + 19.591718361825873 + ], + [ + 63.57661689233237, + 19.39707062689742 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 19.39707062689742 + ], + [ + 63.69145957581605, + 19.591718361825873 + ], + [ + 63.46177420884869, + 19.591718361825873 + ], + [ + 63.57661689233237, + 19.39707062689742 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 19.39707062689742 + ], + [ + 63.46177420884869, + 19.591718361825873 + ], + [ + 63.34693152536501, + 19.39707062689742 + ], + [ + 63.57661689233237, + 19.39707062689742 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 19.39707062689742 + ], + [ + 63.34693152536501, + 19.39707062689742 + ], + [ + 63.46177420884869, + 19.20242289196897 + ], + [ + 63.57661689233237, + 19.39707062689742 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 19.39707062689742 + ], + [ + 63.46177420884869, + 19.20242289196897 + ], + [ + 63.69145957581605, + 19.20242289196897 + ], + [ + 63.57661689233237, + 19.39707062689742 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 19.39707062689742 + ], + [ + 63.69145957581605, + 19.20242289196897 + ], + [ + 63.80630225929973, + 19.39707062689742 + ], + [ + 63.57661689233237, + 19.39707062689742 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 19.78636609675433 + ], + [ + 63.80630225929973, + 19.78636609675433 + ], + [ + 63.69145957581605, + 19.98101383168278 + ], + [ + 63.57661689233237, + 19.78636609675433 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 19.78636609675433 + ], + [ + 63.69145957581605, + 19.98101383168278 + ], + [ + 63.46177420884869, + 19.98101383168278 + ], + [ + 63.57661689233237, + 19.78636609675433 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 19.78636609675433 + ], + [ + 63.46177420884869, + 19.98101383168278 + ], + [ + 63.34693152536501, + 19.78636609675433 + ], + [ + 63.57661689233237, + 19.78636609675433 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 19.78636609675433 + ], + [ + 63.34693152536501, + 19.78636609675433 + ], + [ + 63.46177420884869, + 19.591718361825876 + ], + [ + 63.57661689233237, + 19.78636609675433 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 19.78636609675433 + ], + [ + 63.46177420884869, + 19.591718361825876 + ], + [ + 63.69145957581605, + 19.591718361825876 + ], + [ + 63.57661689233237, + 19.78636609675433 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 19.78636609675433 + ], + [ + 63.69145957581605, + 19.591718361825876 + ], + [ + 63.80630225929973, + 19.78636609675433 + ], + [ + 63.57661689233237, + 19.78636609675433 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 20.175661566611232 + ], + [ + 63.80630225929973, + 20.175661566611232 + ], + [ + 63.69145957581605, + 20.370309301539685 + ], + [ + 63.57661689233237, + 20.175661566611232 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 20.175661566611232 + ], + [ + 63.69145957581605, + 20.370309301539685 + ], + [ + 63.46177420884869, + 20.370309301539685 + ], + [ + 63.57661689233237, + 20.175661566611232 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 20.175661566611232 + ], + [ + 63.46177420884869, + 20.370309301539685 + ], + [ + 63.34693152536501, + 20.175661566611232 + ], + [ + 63.57661689233237, + 20.175661566611232 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 20.175661566611232 + ], + [ + 63.34693152536501, + 20.175661566611232 + ], + [ + 63.46177420884869, + 19.98101383168278 + ], + [ + 63.57661689233237, + 20.175661566611232 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 20.175661566611232 + ], + [ + 63.46177420884869, + 19.98101383168278 + ], + [ + 63.69145957581605, + 19.98101383168278 + ], + [ + 63.57661689233237, + 20.175661566611232 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 20.175661566611232 + ], + [ + 63.69145957581605, + 19.98101383168278 + ], + [ + 63.80630225929973, + 20.175661566611232 + ], + [ + 63.57661689233237, + 20.175661566611232 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 20.564957036468137 + ], + [ + 63.80630225929973, + 20.564957036468137 + ], + [ + 63.69145957581605, + 20.75960477139659 + ], + [ + 63.57661689233237, + 20.564957036468137 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 20.564957036468137 + ], + [ + 63.69145957581605, + 20.75960477139659 + ], + [ + 63.46177420884869, + 20.75960477139659 + ], + [ + 63.57661689233237, + 20.564957036468137 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 20.564957036468137 + ], + [ + 63.46177420884869, + 20.75960477139659 + ], + [ + 63.34693152536501, + 20.564957036468137 + ], + [ + 63.57661689233237, + 20.564957036468137 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 20.564957036468137 + ], + [ + 63.34693152536501, + 20.564957036468137 + ], + [ + 63.46177420884869, + 20.370309301539685 + ], + [ + 63.57661689233237, + 20.564957036468137 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 20.564957036468137 + ], + [ + 63.46177420884869, + 20.370309301539685 + ], + [ + 63.69145957581605, + 20.370309301539685 + ], + [ + 63.57661689233237, + 20.564957036468137 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 20.564957036468137 + ], + [ + 63.69145957581605, + 20.370309301539685 + ], + [ + 63.80630225929973, + 20.564957036468137 + ], + [ + 63.57661689233237, + 20.564957036468137 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 20.954252506325044 + ], + [ + 63.80630225929973, + 20.954252506325044 + ], + [ + 63.69145957581605, + 21.148900241253497 + ], + [ + 63.57661689233237, + 20.954252506325044 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 20.954252506325044 + ], + [ + 63.69145957581605, + 21.148900241253497 + ], + [ + 63.46177420884869, + 21.148900241253497 + ], + [ + 63.57661689233237, + 20.954252506325044 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 20.954252506325044 + ], + [ + 63.46177420884869, + 21.148900241253497 + ], + [ + 63.34693152536501, + 20.954252506325044 + ], + [ + 63.57661689233237, + 20.954252506325044 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 20.954252506325044 + ], + [ + 63.34693152536501, + 20.954252506325044 + ], + [ + 63.46177420884869, + 20.759604771396592 + ], + [ + 63.57661689233237, + 20.954252506325044 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 20.954252506325044 + ], + [ + 63.46177420884869, + 20.759604771396592 + ], + [ + 63.69145957581605, + 20.759604771396592 + ], + [ + 63.57661689233237, + 20.954252506325044 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 20.954252506325044 + ], + [ + 63.69145957581605, + 20.759604771396592 + ], + [ + 63.80630225929973, + 20.954252506325044 + ], + [ + 63.57661689233237, + 20.954252506325044 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 21.343547976181952 + ], + [ + 63.80630225929973, + 21.343547976181952 + ], + [ + 63.69145957581605, + 21.538195711110404 + ], + [ + 63.57661689233237, + 21.343547976181952 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 21.343547976181952 + ], + [ + 63.69145957581605, + 21.538195711110404 + ], + [ + 63.46177420884869, + 21.538195711110404 + ], + [ + 63.57661689233237, + 21.343547976181952 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 21.343547976181952 + ], + [ + 63.46177420884869, + 21.538195711110404 + ], + [ + 63.34693152536501, + 21.343547976181952 + ], + [ + 63.57661689233237, + 21.343547976181952 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 21.343547976181952 + ], + [ + 63.34693152536501, + 21.343547976181952 + ], + [ + 63.46177420884869, + 21.1489002412535 + ], + [ + 63.57661689233237, + 21.343547976181952 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 21.343547976181952 + ], + [ + 63.46177420884869, + 21.1489002412535 + ], + [ + 63.69145957581605, + 21.1489002412535 + ], + [ + 63.57661689233237, + 21.343547976181952 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 21.343547976181952 + ], + [ + 63.69145957581605, + 21.1489002412535 + ], + [ + 63.80630225929973, + 21.343547976181952 + ], + [ + 63.57661689233237, + 21.343547976181952 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 21.732843446038856 + ], + [ + 63.80630225929973, + 21.732843446038856 + ], + [ + 63.69145957581605, + 21.92749118096731 + ], + [ + 63.57661689233237, + 21.732843446038856 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 21.732843446038856 + ], + [ + 63.69145957581605, + 21.92749118096731 + ], + [ + 63.46177420884869, + 21.92749118096731 + ], + [ + 63.57661689233237, + 21.732843446038856 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 21.732843446038856 + ], + [ + 63.46177420884869, + 21.92749118096731 + ], + [ + 63.34693152536501, + 21.732843446038856 + ], + [ + 63.57661689233237, + 21.732843446038856 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 21.732843446038856 + ], + [ + 63.34693152536501, + 21.732843446038856 + ], + [ + 63.46177420884869, + 21.538195711110404 + ], + [ + 63.57661689233237, + 21.732843446038856 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 21.732843446038856 + ], + [ + 63.46177420884869, + 21.538195711110404 + ], + [ + 63.69145957581605, + 21.538195711110404 + ], + [ + 63.57661689233237, + 21.732843446038856 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 21.732843446038856 + ], + [ + 63.69145957581605, + 21.538195711110404 + ], + [ + 63.80630225929973, + 21.732843446038856 + ], + [ + 63.57661689233237, + 21.732843446038856 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 22.122138915895764 + ], + [ + 63.80630225929973, + 22.122138915895764 + ], + [ + 63.69145957581605, + 22.316786650824216 + ], + [ + 63.57661689233237, + 22.122138915895764 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 22.122138915895764 + ], + [ + 63.69145957581605, + 22.316786650824216 + ], + [ + 63.46177420884869, + 22.316786650824216 + ], + [ + 63.57661689233237, + 22.122138915895764 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 22.122138915895764 + ], + [ + 63.46177420884869, + 22.316786650824216 + ], + [ + 63.34693152536501, + 22.122138915895764 + ], + [ + 63.57661689233237, + 22.122138915895764 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 22.122138915895764 + ], + [ + 63.34693152536501, + 22.122138915895764 + ], + [ + 63.46177420884869, + 21.927491180967312 + ], + [ + 63.57661689233237, + 22.122138915895764 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 22.122138915895764 + ], + [ + 63.46177420884869, + 21.927491180967312 + ], + [ + 63.69145957581605, + 21.927491180967312 + ], + [ + 63.57661689233237, + 22.122138915895764 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 22.122138915895764 + ], + [ + 63.69145957581605, + 21.927491180967312 + ], + [ + 63.80630225929973, + 22.122138915895764 + ], + [ + 63.57661689233237, + 22.122138915895764 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 22.511434385752672 + ], + [ + 63.80630225929973, + 22.511434385752672 + ], + [ + 63.69145957581605, + 22.706082120681124 + ], + [ + 63.57661689233237, + 22.511434385752672 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 22.511434385752672 + ], + [ + 63.69145957581605, + 22.706082120681124 + ], + [ + 63.46177420884869, + 22.706082120681124 + ], + [ + 63.57661689233237, + 22.511434385752672 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 22.511434385752672 + ], + [ + 63.46177420884869, + 22.706082120681124 + ], + [ + 63.34693152536501, + 22.511434385752672 + ], + [ + 63.57661689233237, + 22.511434385752672 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 22.511434385752672 + ], + [ + 63.34693152536501, + 22.511434385752672 + ], + [ + 63.46177420884869, + 22.31678665082422 + ], + [ + 63.57661689233237, + 22.511434385752672 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 22.511434385752672 + ], + [ + 63.46177420884869, + 22.31678665082422 + ], + [ + 63.69145957581605, + 22.31678665082422 + ], + [ + 63.57661689233237, + 22.511434385752672 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 22.511434385752672 + ], + [ + 63.69145957581605, + 22.31678665082422 + ], + [ + 63.80630225929973, + 22.511434385752672 + ], + [ + 63.57661689233237, + 22.511434385752672 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 22.900729855609576 + ], + [ + 63.80630225929973, + 22.900729855609576 + ], + [ + 63.69145957581605, + 23.09537759053803 + ], + [ + 63.57661689233237, + 22.900729855609576 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 22.900729855609576 + ], + [ + 63.69145957581605, + 23.09537759053803 + ], + [ + 63.46177420884869, + 23.09537759053803 + ], + [ + 63.57661689233237, + 22.900729855609576 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 22.900729855609576 + ], + [ + 63.46177420884869, + 23.09537759053803 + ], + [ + 63.34693152536501, + 22.900729855609576 + ], + [ + 63.57661689233237, + 22.900729855609576 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 22.900729855609576 + ], + [ + 63.34693152536501, + 22.900729855609576 + ], + [ + 63.46177420884869, + 22.706082120681124 + ], + [ + 63.57661689233237, + 22.900729855609576 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 22.900729855609576 + ], + [ + 63.46177420884869, + 22.706082120681124 + ], + [ + 63.69145957581605, + 22.706082120681124 + ], + [ + 63.57661689233237, + 22.900729855609576 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 22.900729855609576 + ], + [ + 63.69145957581605, + 22.706082120681124 + ], + [ + 63.80630225929973, + 22.900729855609576 + ], + [ + 63.57661689233237, + 22.900729855609576 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 23.290025325466484 + ], + [ + 63.80630225929973, + 23.290025325466484 + ], + [ + 63.69145957581605, + 23.484673060394936 + ], + [ + 63.57661689233237, + 23.290025325466484 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 23.290025325466484 + ], + [ + 63.69145957581605, + 23.484673060394936 + ], + [ + 63.46177420884869, + 23.484673060394936 + ], + [ + 63.57661689233237, + 23.290025325466484 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 23.290025325466484 + ], + [ + 63.46177420884869, + 23.484673060394936 + ], + [ + 63.34693152536501, + 23.290025325466484 + ], + [ + 63.57661689233237, + 23.290025325466484 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 23.290025325466484 + ], + [ + 63.34693152536501, + 23.290025325466484 + ], + [ + 63.46177420884869, + 23.095377590538032 + ], + [ + 63.57661689233237, + 23.290025325466484 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 23.290025325466484 + ], + [ + 63.46177420884869, + 23.095377590538032 + ], + [ + 63.69145957581605, + 23.095377590538032 + ], + [ + 63.57661689233237, + 23.290025325466484 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 23.290025325466484 + ], + [ + 63.69145957581605, + 23.095377590538032 + ], + [ + 63.80630225929973, + 23.290025325466484 + ], + [ + 63.57661689233237, + 23.290025325466484 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 23.67932079532339 + ], + [ + 63.80630225929973, + 23.67932079532339 + ], + [ + 63.69145957581605, + 23.873968530251844 + ], + [ + 63.57661689233237, + 23.67932079532339 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 23.67932079532339 + ], + [ + 63.69145957581605, + 23.873968530251844 + ], + [ + 63.46177420884869, + 23.873968530251844 + ], + [ + 63.57661689233237, + 23.67932079532339 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 23.67932079532339 + ], + [ + 63.46177420884869, + 23.873968530251844 + ], + [ + 63.34693152536501, + 23.67932079532339 + ], + [ + 63.57661689233237, + 23.67932079532339 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 23.67932079532339 + ], + [ + 63.34693152536501, + 23.67932079532339 + ], + [ + 63.46177420884869, + 23.48467306039494 + ], + [ + 63.57661689233237, + 23.67932079532339 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 23.67932079532339 + ], + [ + 63.46177420884869, + 23.48467306039494 + ], + [ + 63.69145957581605, + 23.48467306039494 + ], + [ + 63.57661689233237, + 23.67932079532339 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 23.67932079532339 + ], + [ + 63.69145957581605, + 23.48467306039494 + ], + [ + 63.80630225929973, + 23.67932079532339 + ], + [ + 63.57661689233237, + 23.67932079532339 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 24.068616265180296 + ], + [ + 63.80630225929973, + 24.068616265180296 + ], + [ + 63.69145957581605, + 24.263264000108748 + ], + [ + 63.57661689233237, + 24.068616265180296 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 24.068616265180296 + ], + [ + 63.69145957581605, + 24.263264000108748 + ], + [ + 63.46177420884869, + 24.263264000108748 + ], + [ + 63.57661689233237, + 24.068616265180296 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 24.068616265180296 + ], + [ + 63.46177420884869, + 24.263264000108748 + ], + [ + 63.34693152536501, + 24.068616265180296 + ], + [ + 63.57661689233237, + 24.068616265180296 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 24.068616265180296 + ], + [ + 63.34693152536501, + 24.068616265180296 + ], + [ + 63.46177420884869, + 23.873968530251844 + ], + [ + 63.57661689233237, + 24.068616265180296 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 24.068616265180296 + ], + [ + 63.46177420884869, + 23.873968530251844 + ], + [ + 63.69145957581605, + 23.873968530251844 + ], + [ + 63.57661689233237, + 24.068616265180296 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 24.068616265180296 + ], + [ + 63.69145957581605, + 23.873968530251844 + ], + [ + 63.80630225929973, + 24.068616265180296 + ], + [ + 63.57661689233237, + 24.068616265180296 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 24.4579117350372 + ], + [ + 63.80630225929973, + 24.4579117350372 + ], + [ + 63.69145957581605, + 24.652559469965652 + ], + [ + 63.57661689233237, + 24.4579117350372 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 24.4579117350372 + ], + [ + 63.69145957581605, + 24.652559469965652 + ], + [ + 63.46177420884869, + 24.652559469965652 + ], + [ + 63.57661689233237, + 24.4579117350372 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 24.4579117350372 + ], + [ + 63.46177420884869, + 24.652559469965652 + ], + [ + 63.34693152536501, + 24.4579117350372 + ], + [ + 63.57661689233237, + 24.4579117350372 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 24.4579117350372 + ], + [ + 63.34693152536501, + 24.4579117350372 + ], + [ + 63.46177420884869, + 24.263264000108748 + ], + [ + 63.57661689233237, + 24.4579117350372 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 24.4579117350372 + ], + [ + 63.46177420884869, + 24.263264000108748 + ], + [ + 63.69145957581605, + 24.263264000108748 + ], + [ + 63.57661689233237, + 24.4579117350372 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 24.4579117350372 + ], + [ + 63.69145957581605, + 24.263264000108748 + ], + [ + 63.80630225929973, + 24.4579117350372 + ], + [ + 63.57661689233237, + 24.4579117350372 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 24.847207204894108 + ], + [ + 63.80630225929973, + 24.847207204894108 + ], + [ + 63.69145957581605, + 25.04185493982256 + ], + [ + 63.57661689233237, + 24.847207204894108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 24.847207204894108 + ], + [ + 63.69145957581605, + 25.04185493982256 + ], + [ + 63.46177420884869, + 25.04185493982256 + ], + [ + 63.57661689233237, + 24.847207204894108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 24.847207204894108 + ], + [ + 63.46177420884869, + 25.04185493982256 + ], + [ + 63.34693152536501, + 24.847207204894108 + ], + [ + 63.57661689233237, + 24.847207204894108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 24.847207204894108 + ], + [ + 63.34693152536501, + 24.847207204894108 + ], + [ + 63.46177420884869, + 24.652559469965656 + ], + [ + 63.57661689233237, + 24.847207204894108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 24.847207204894108 + ], + [ + 63.46177420884869, + 24.652559469965656 + ], + [ + 63.69145957581605, + 24.652559469965656 + ], + [ + 63.57661689233237, + 24.847207204894108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 24.847207204894108 + ], + [ + 63.69145957581605, + 24.652559469965656 + ], + [ + 63.80630225929973, + 24.847207204894108 + ], + [ + 63.57661689233237, + 24.847207204894108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 25.236502674751016 + ], + [ + 63.80630225929973, + 25.236502674751016 + ], + [ + 63.69145957581605, + 25.431150409679468 + ], + [ + 63.57661689233237, + 25.236502674751016 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 25.236502674751016 + ], + [ + 63.69145957581605, + 25.431150409679468 + ], + [ + 63.46177420884869, + 25.431150409679468 + ], + [ + 63.57661689233237, + 25.236502674751016 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 25.236502674751016 + ], + [ + 63.46177420884869, + 25.431150409679468 + ], + [ + 63.34693152536501, + 25.236502674751016 + ], + [ + 63.57661689233237, + 25.236502674751016 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 25.236502674751016 + ], + [ + 63.34693152536501, + 25.236502674751016 + ], + [ + 63.46177420884869, + 25.041854939822564 + ], + [ + 63.57661689233237, + 25.236502674751016 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 25.236502674751016 + ], + [ + 63.46177420884869, + 25.041854939822564 + ], + [ + 63.69145957581605, + 25.041854939822564 + ], + [ + 63.57661689233237, + 25.236502674751016 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 25.236502674751016 + ], + [ + 63.69145957581605, + 25.041854939822564 + ], + [ + 63.80630225929973, + 25.236502674751016 + ], + [ + 63.57661689233237, + 25.236502674751016 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 25.62579814460792 + ], + [ + 63.80630225929973, + 25.62579814460792 + ], + [ + 63.69145957581605, + 25.820445879536372 + ], + [ + 63.57661689233237, + 25.62579814460792 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 25.62579814460792 + ], + [ + 63.69145957581605, + 25.820445879536372 + ], + [ + 63.46177420884869, + 25.820445879536372 + ], + [ + 63.57661689233237, + 25.62579814460792 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 25.62579814460792 + ], + [ + 63.46177420884869, + 25.820445879536372 + ], + [ + 63.34693152536501, + 25.62579814460792 + ], + [ + 63.57661689233237, + 25.62579814460792 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 25.62579814460792 + ], + [ + 63.34693152536501, + 25.62579814460792 + ], + [ + 63.46177420884869, + 25.431150409679468 + ], + [ + 63.57661689233237, + 25.62579814460792 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 25.62579814460792 + ], + [ + 63.46177420884869, + 25.431150409679468 + ], + [ + 63.69145957581605, + 25.431150409679468 + ], + [ + 63.57661689233237, + 25.62579814460792 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 25.62579814460792 + ], + [ + 63.69145957581605, + 25.431150409679468 + ], + [ + 63.80630225929973, + 25.62579814460792 + ], + [ + 63.57661689233237, + 25.62579814460792 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 26.015093614464828 + ], + [ + 63.80630225929973, + 26.015093614464828 + ], + [ + 63.69145957581605, + 26.20974134939328 + ], + [ + 63.57661689233237, + 26.015093614464828 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 26.015093614464828 + ], + [ + 63.69145957581605, + 26.20974134939328 + ], + [ + 63.46177420884869, + 26.20974134939328 + ], + [ + 63.57661689233237, + 26.015093614464828 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 26.015093614464828 + ], + [ + 63.46177420884869, + 26.20974134939328 + ], + [ + 63.34693152536501, + 26.015093614464828 + ], + [ + 63.57661689233237, + 26.015093614464828 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 26.015093614464828 + ], + [ + 63.34693152536501, + 26.015093614464828 + ], + [ + 63.46177420884869, + 25.820445879536376 + ], + [ + 63.57661689233237, + 26.015093614464828 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 26.015093614464828 + ], + [ + 63.46177420884869, + 25.820445879536376 + ], + [ + 63.69145957581605, + 25.820445879536376 + ], + [ + 63.57661689233237, + 26.015093614464828 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 26.015093614464828 + ], + [ + 63.69145957581605, + 25.820445879536376 + ], + [ + 63.80630225929973, + 26.015093614464828 + ], + [ + 63.57661689233237, + 26.015093614464828 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 26.404389084321735 + ], + [ + 63.80630225929973, + 26.404389084321735 + ], + [ + 63.69145957581605, + 26.599036819250188 + ], + [ + 63.57661689233237, + 26.404389084321735 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 26.404389084321735 + ], + [ + 63.69145957581605, + 26.599036819250188 + ], + [ + 63.46177420884869, + 26.599036819250188 + ], + [ + 63.57661689233237, + 26.404389084321735 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 26.404389084321735 + ], + [ + 63.46177420884869, + 26.599036819250188 + ], + [ + 63.34693152536501, + 26.404389084321735 + ], + [ + 63.57661689233237, + 26.404389084321735 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 26.404389084321735 + ], + [ + 63.34693152536501, + 26.404389084321735 + ], + [ + 63.46177420884869, + 26.209741349393283 + ], + [ + 63.57661689233237, + 26.404389084321735 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 26.404389084321735 + ], + [ + 63.46177420884869, + 26.209741349393283 + ], + [ + 63.69145957581605, + 26.209741349393283 + ], + [ + 63.57661689233237, + 26.404389084321735 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 26.404389084321735 + ], + [ + 63.69145957581605, + 26.209741349393283 + ], + [ + 63.80630225929973, + 26.404389084321735 + ], + [ + 63.57661689233237, + 26.404389084321735 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 26.79368455417864 + ], + [ + 63.80630225929973, + 26.79368455417864 + ], + [ + 63.69145957581605, + 26.988332289107092 + ], + [ + 63.57661689233237, + 26.79368455417864 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 26.79368455417864 + ], + [ + 63.69145957581605, + 26.988332289107092 + ], + [ + 63.46177420884869, + 26.988332289107092 + ], + [ + 63.57661689233237, + 26.79368455417864 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 26.79368455417864 + ], + [ + 63.46177420884869, + 26.988332289107092 + ], + [ + 63.34693152536501, + 26.79368455417864 + ], + [ + 63.57661689233237, + 26.79368455417864 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 26.79368455417864 + ], + [ + 63.34693152536501, + 26.79368455417864 + ], + [ + 63.46177420884869, + 26.599036819250188 + ], + [ + 63.57661689233237, + 26.79368455417864 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 26.79368455417864 + ], + [ + 63.46177420884869, + 26.599036819250188 + ], + [ + 63.69145957581605, + 26.599036819250188 + ], + [ + 63.57661689233237, + 26.79368455417864 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 26.79368455417864 + ], + [ + 63.69145957581605, + 26.599036819250188 + ], + [ + 63.80630225929973, + 26.79368455417864 + ], + [ + 63.57661689233237, + 26.79368455417864 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 27.182980024035547 + ], + [ + 63.80630225929973, + 27.182980024035547 + ], + [ + 63.69145957581605, + 27.377627758964 + ], + [ + 63.57661689233237, + 27.182980024035547 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 27.182980024035547 + ], + [ + 63.69145957581605, + 27.377627758964 + ], + [ + 63.46177420884869, + 27.377627758964 + ], + [ + 63.57661689233237, + 27.182980024035547 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 27.182980024035547 + ], + [ + 63.46177420884869, + 27.377627758964 + ], + [ + 63.34693152536501, + 27.182980024035547 + ], + [ + 63.57661689233237, + 27.182980024035547 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 27.182980024035547 + ], + [ + 63.34693152536501, + 27.182980024035547 + ], + [ + 63.46177420884869, + 26.988332289107095 + ], + [ + 63.57661689233237, + 27.182980024035547 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 27.182980024035547 + ], + [ + 63.46177420884869, + 26.988332289107095 + ], + [ + 63.69145957581605, + 26.988332289107095 + ], + [ + 63.57661689233237, + 27.182980024035547 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 27.182980024035547 + ], + [ + 63.69145957581605, + 26.988332289107095 + ], + [ + 63.80630225929973, + 27.182980024035547 + ], + [ + 63.57661689233237, + 27.182980024035547 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 27.572275493892455 + ], + [ + 63.80630225929973, + 27.572275493892455 + ], + [ + 63.69145957581605, + 27.766923228820907 + ], + [ + 63.57661689233237, + 27.572275493892455 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 27.572275493892455 + ], + [ + 63.69145957581605, + 27.766923228820907 + ], + [ + 63.46177420884869, + 27.766923228820907 + ], + [ + 63.57661689233237, + 27.572275493892455 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 27.572275493892455 + ], + [ + 63.46177420884869, + 27.766923228820907 + ], + [ + 63.34693152536501, + 27.572275493892455 + ], + [ + 63.57661689233237, + 27.572275493892455 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 27.572275493892455 + ], + [ + 63.34693152536501, + 27.572275493892455 + ], + [ + 63.46177420884869, + 27.377627758964003 + ], + [ + 63.57661689233237, + 27.572275493892455 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 27.572275493892455 + ], + [ + 63.46177420884869, + 27.377627758964003 + ], + [ + 63.69145957581605, + 27.377627758964003 + ], + [ + 63.57661689233237, + 27.572275493892455 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 27.572275493892455 + ], + [ + 63.69145957581605, + 27.377627758964003 + ], + [ + 63.80630225929973, + 27.572275493892455 + ], + [ + 63.57661689233237, + 27.572275493892455 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 27.96157096374936 + ], + [ + 63.80630225929973, + 27.96157096374936 + ], + [ + 63.69145957581605, + 28.15621869867781 + ], + [ + 63.57661689233237, + 27.96157096374936 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 27.96157096374936 + ], + [ + 63.69145957581605, + 28.15621869867781 + ], + [ + 63.46177420884869, + 28.15621869867781 + ], + [ + 63.57661689233237, + 27.96157096374936 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 27.96157096374936 + ], + [ + 63.46177420884869, + 28.15621869867781 + ], + [ + 63.34693152536501, + 27.96157096374936 + ], + [ + 63.57661689233237, + 27.96157096374936 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 27.96157096374936 + ], + [ + 63.34693152536501, + 27.96157096374936 + ], + [ + 63.46177420884869, + 27.766923228820907 + ], + [ + 63.57661689233237, + 27.96157096374936 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 27.96157096374936 + ], + [ + 63.46177420884869, + 27.766923228820907 + ], + [ + 63.69145957581605, + 27.766923228820907 + ], + [ + 63.57661689233237, + 27.96157096374936 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 27.96157096374936 + ], + [ + 63.69145957581605, + 27.766923228820907 + ], + [ + 63.80630225929973, + 27.96157096374936 + ], + [ + 63.57661689233237, + 27.96157096374936 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 28.350866433606267 + ], + [ + 63.80630225929973, + 28.350866433606267 + ], + [ + 63.69145957581605, + 28.54551416853472 + ], + [ + 63.57661689233237, + 28.350866433606267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 28.350866433606267 + ], + [ + 63.69145957581605, + 28.54551416853472 + ], + [ + 63.46177420884869, + 28.54551416853472 + ], + [ + 63.57661689233237, + 28.350866433606267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 28.350866433606267 + ], + [ + 63.46177420884869, + 28.54551416853472 + ], + [ + 63.34693152536501, + 28.350866433606267 + ], + [ + 63.57661689233237, + 28.350866433606267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 28.350866433606267 + ], + [ + 63.34693152536501, + 28.350866433606267 + ], + [ + 63.46177420884869, + 28.156218698677815 + ], + [ + 63.57661689233237, + 28.350866433606267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 28.350866433606267 + ], + [ + 63.46177420884869, + 28.156218698677815 + ], + [ + 63.69145957581605, + 28.156218698677815 + ], + [ + 63.57661689233237, + 28.350866433606267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 28.350866433606267 + ], + [ + 63.69145957581605, + 28.156218698677815 + ], + [ + 63.80630225929973, + 28.350866433606267 + ], + [ + 63.57661689233237, + 28.350866433606267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 28.74016190346317 + ], + [ + 63.80630225929973, + 28.74016190346317 + ], + [ + 63.69145957581605, + 28.934809638391624 + ], + [ + 63.57661689233237, + 28.74016190346317 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 28.74016190346317 + ], + [ + 63.69145957581605, + 28.934809638391624 + ], + [ + 63.46177420884869, + 28.934809638391624 + ], + [ + 63.57661689233237, + 28.74016190346317 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 28.74016190346317 + ], + [ + 63.46177420884869, + 28.934809638391624 + ], + [ + 63.34693152536501, + 28.74016190346317 + ], + [ + 63.57661689233237, + 28.74016190346317 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 28.74016190346317 + ], + [ + 63.34693152536501, + 28.74016190346317 + ], + [ + 63.46177420884869, + 28.54551416853472 + ], + [ + 63.57661689233237, + 28.74016190346317 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 28.74016190346317 + ], + [ + 63.46177420884869, + 28.54551416853472 + ], + [ + 63.69145957581605, + 28.54551416853472 + ], + [ + 63.57661689233237, + 28.74016190346317 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 28.74016190346317 + ], + [ + 63.69145957581605, + 28.54551416853472 + ], + [ + 63.80630225929973, + 28.74016190346317 + ], + [ + 63.57661689233237, + 28.74016190346317 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 29.12945737332008 + ], + [ + 63.80630225929973, + 29.12945737332008 + ], + [ + 63.69145957581605, + 29.32410510824853 + ], + [ + 63.57661689233237, + 29.12945737332008 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 29.12945737332008 + ], + [ + 63.69145957581605, + 29.32410510824853 + ], + [ + 63.46177420884869, + 29.32410510824853 + ], + [ + 63.57661689233237, + 29.12945737332008 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 29.12945737332008 + ], + [ + 63.46177420884869, + 29.32410510824853 + ], + [ + 63.34693152536501, + 29.12945737332008 + ], + [ + 63.57661689233237, + 29.12945737332008 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 29.12945737332008 + ], + [ + 63.34693152536501, + 29.12945737332008 + ], + [ + 63.46177420884869, + 28.934809638391627 + ], + [ + 63.57661689233237, + 29.12945737332008 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 29.12945737332008 + ], + [ + 63.46177420884869, + 28.934809638391627 + ], + [ + 63.69145957581605, + 28.934809638391627 + ], + [ + 63.57661689233237, + 29.12945737332008 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 29.12945737332008 + ], + [ + 63.69145957581605, + 28.934809638391627 + ], + [ + 63.80630225929973, + 29.12945737332008 + ], + [ + 63.57661689233237, + 29.12945737332008 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 29.518752843176983 + ], + [ + 63.80630225929973, + 29.518752843176983 + ], + [ + 63.69145957581605, + 29.713400578105436 + ], + [ + 63.57661689233237, + 29.518752843176983 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 29.518752843176983 + ], + [ + 63.69145957581605, + 29.713400578105436 + ], + [ + 63.46177420884869, + 29.713400578105436 + ], + [ + 63.57661689233237, + 29.518752843176983 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 29.518752843176983 + ], + [ + 63.46177420884869, + 29.713400578105436 + ], + [ + 63.34693152536501, + 29.518752843176983 + ], + [ + 63.57661689233237, + 29.518752843176983 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 29.518752843176983 + ], + [ + 63.34693152536501, + 29.518752843176983 + ], + [ + 63.46177420884869, + 29.32410510824853 + ], + [ + 63.57661689233237, + 29.518752843176983 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 29.518752843176983 + ], + [ + 63.46177420884869, + 29.32410510824853 + ], + [ + 63.69145957581605, + 29.32410510824853 + ], + [ + 63.57661689233237, + 29.518752843176983 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 29.518752843176983 + ], + [ + 63.69145957581605, + 29.32410510824853 + ], + [ + 63.80630225929973, + 29.518752843176983 + ], + [ + 63.57661689233237, + 29.518752843176983 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 29.90804831303389 + ], + [ + 63.80630225929973, + 29.90804831303389 + ], + [ + 63.69145957581605, + 30.102696047962343 + ], + [ + 63.57661689233237, + 29.90804831303389 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 29.90804831303389 + ], + [ + 63.69145957581605, + 30.102696047962343 + ], + [ + 63.46177420884869, + 30.102696047962343 + ], + [ + 63.57661689233237, + 29.90804831303389 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 29.90804831303389 + ], + [ + 63.46177420884869, + 30.102696047962343 + ], + [ + 63.34693152536501, + 29.90804831303389 + ], + [ + 63.57661689233237, + 29.90804831303389 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 29.90804831303389 + ], + [ + 63.34693152536501, + 29.90804831303389 + ], + [ + 63.46177420884869, + 29.71340057810544 + ], + [ + 63.57661689233237, + 29.90804831303389 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 29.90804831303389 + ], + [ + 63.46177420884869, + 29.71340057810544 + ], + [ + 63.69145957581605, + 29.71340057810544 + ], + [ + 63.57661689233237, + 29.90804831303389 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 29.90804831303389 + ], + [ + 63.69145957581605, + 29.71340057810544 + ], + [ + 63.80630225929973, + 29.90804831303389 + ], + [ + 63.57661689233237, + 29.90804831303389 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 30.297343782890795 + ], + [ + 63.80630225929973, + 30.297343782890795 + ], + [ + 63.69145957581605, + 30.491991517819248 + ], + [ + 63.57661689233237, + 30.297343782890795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 30.297343782890795 + ], + [ + 63.69145957581605, + 30.491991517819248 + ], + [ + 63.46177420884869, + 30.491991517819248 + ], + [ + 63.57661689233237, + 30.297343782890795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 30.297343782890795 + ], + [ + 63.46177420884869, + 30.491991517819248 + ], + [ + 63.34693152536501, + 30.297343782890795 + ], + [ + 63.57661689233237, + 30.297343782890795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 30.297343782890795 + ], + [ + 63.34693152536501, + 30.297343782890795 + ], + [ + 63.46177420884869, + 30.102696047962343 + ], + [ + 63.57661689233237, + 30.297343782890795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 30.297343782890795 + ], + [ + 63.46177420884869, + 30.102696047962343 + ], + [ + 63.69145957581605, + 30.102696047962343 + ], + [ + 63.57661689233237, + 30.297343782890795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 30.297343782890795 + ], + [ + 63.69145957581605, + 30.102696047962343 + ], + [ + 63.80630225929973, + 30.297343782890795 + ], + [ + 63.57661689233237, + 30.297343782890795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 30.686639252747703 + ], + [ + 63.80630225929973, + 30.686639252747703 + ], + [ + 63.69145957581605, + 30.881286987676155 + ], + [ + 63.57661689233237, + 30.686639252747703 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 30.686639252747703 + ], + [ + 63.69145957581605, + 30.881286987676155 + ], + [ + 63.46177420884869, + 30.881286987676155 + ], + [ + 63.57661689233237, + 30.686639252747703 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 30.686639252747703 + ], + [ + 63.46177420884869, + 30.881286987676155 + ], + [ + 63.34693152536501, + 30.686639252747703 + ], + [ + 63.57661689233237, + 30.686639252747703 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 30.686639252747703 + ], + [ + 63.34693152536501, + 30.686639252747703 + ], + [ + 63.46177420884869, + 30.49199151781925 + ], + [ + 63.57661689233237, + 30.686639252747703 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 30.686639252747703 + ], + [ + 63.46177420884869, + 30.49199151781925 + ], + [ + 63.69145957581605, + 30.49199151781925 + ], + [ + 63.57661689233237, + 30.686639252747703 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 30.686639252747703 + ], + [ + 63.69145957581605, + 30.49199151781925 + ], + [ + 63.80630225929973, + 30.686639252747703 + ], + [ + 63.57661689233237, + 30.686639252747703 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 31.07593472260461 + ], + [ + 63.80630225929973, + 31.07593472260461 + ], + [ + 63.69145957581605, + 31.270582457533063 + ], + [ + 63.57661689233237, + 31.07593472260461 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 31.07593472260461 + ], + [ + 63.69145957581605, + 31.270582457533063 + ], + [ + 63.46177420884869, + 31.270582457533063 + ], + [ + 63.57661689233237, + 31.07593472260461 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 31.07593472260461 + ], + [ + 63.46177420884869, + 31.270582457533063 + ], + [ + 63.34693152536501, + 31.07593472260461 + ], + [ + 63.57661689233237, + 31.07593472260461 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 31.07593472260461 + ], + [ + 63.34693152536501, + 31.07593472260461 + ], + [ + 63.46177420884869, + 30.88128698767616 + ], + [ + 63.57661689233237, + 31.07593472260461 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 31.07593472260461 + ], + [ + 63.46177420884869, + 30.88128698767616 + ], + [ + 63.69145957581605, + 30.88128698767616 + ], + [ + 63.57661689233237, + 31.07593472260461 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 31.07593472260461 + ], + [ + 63.69145957581605, + 30.88128698767616 + ], + [ + 63.80630225929973, + 31.07593472260461 + ], + [ + 63.57661689233237, + 31.07593472260461 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 31.465230192461515 + ], + [ + 63.80630225929973, + 31.465230192461515 + ], + [ + 63.69145957581605, + 31.659877927389967 + ], + [ + 63.57661689233237, + 31.465230192461515 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 31.465230192461515 + ], + [ + 63.69145957581605, + 31.659877927389967 + ], + [ + 63.46177420884869, + 31.659877927389967 + ], + [ + 63.57661689233237, + 31.465230192461515 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 31.465230192461515 + ], + [ + 63.46177420884869, + 31.659877927389967 + ], + [ + 63.34693152536501, + 31.465230192461515 + ], + [ + 63.57661689233237, + 31.465230192461515 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 31.465230192461515 + ], + [ + 63.34693152536501, + 31.465230192461515 + ], + [ + 63.46177420884869, + 31.270582457533063 + ], + [ + 63.57661689233237, + 31.465230192461515 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 31.465230192461515 + ], + [ + 63.46177420884869, + 31.270582457533063 + ], + [ + 63.69145957581605, + 31.270582457533063 + ], + [ + 63.57661689233237, + 31.465230192461515 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 31.465230192461515 + ], + [ + 63.69145957581605, + 31.270582457533063 + ], + [ + 63.80630225929973, + 31.465230192461515 + ], + [ + 63.57661689233237, + 31.465230192461515 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 31.854525662318423 + ], + [ + 63.80630225929973, + 31.854525662318423 + ], + [ + 63.69145957581605, + 32.049173397246875 + ], + [ + 63.57661689233237, + 31.854525662318423 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 31.854525662318423 + ], + [ + 63.69145957581605, + 32.049173397246875 + ], + [ + 63.46177420884869, + 32.049173397246875 + ], + [ + 63.57661689233237, + 31.854525662318423 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 31.854525662318423 + ], + [ + 63.46177420884869, + 32.049173397246875 + ], + [ + 63.34693152536501, + 31.854525662318423 + ], + [ + 63.57661689233237, + 31.854525662318423 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 31.854525662318423 + ], + [ + 63.34693152536501, + 31.854525662318423 + ], + [ + 63.46177420884869, + 31.65987792738997 + ], + [ + 63.57661689233237, + 31.854525662318423 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 31.854525662318423 + ], + [ + 63.46177420884869, + 31.65987792738997 + ], + [ + 63.69145957581605, + 31.65987792738997 + ], + [ + 63.57661689233237, + 31.854525662318423 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 31.854525662318423 + ], + [ + 63.69145957581605, + 31.65987792738997 + ], + [ + 63.80630225929973, + 31.854525662318423 + ], + [ + 63.57661689233237, + 31.854525662318423 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 32.24382113217533 + ], + [ + 63.80630225929973, + 32.24382113217533 + ], + [ + 63.69145957581605, + 32.43846886710378 + ], + [ + 63.57661689233237, + 32.24382113217533 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 32.24382113217533 + ], + [ + 63.69145957581605, + 32.43846886710378 + ], + [ + 63.46177420884869, + 32.43846886710378 + ], + [ + 63.57661689233237, + 32.24382113217533 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 32.24382113217533 + ], + [ + 63.46177420884869, + 32.43846886710378 + ], + [ + 63.34693152536501, + 32.24382113217533 + ], + [ + 63.57661689233237, + 32.24382113217533 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 32.24382113217533 + ], + [ + 63.34693152536501, + 32.24382113217533 + ], + [ + 63.46177420884869, + 32.049173397246875 + ], + [ + 63.57661689233237, + 32.24382113217533 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 32.24382113217533 + ], + [ + 63.46177420884869, + 32.049173397246875 + ], + [ + 63.69145957581605, + 32.049173397246875 + ], + [ + 63.57661689233237, + 32.24382113217533 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 32.24382113217533 + ], + [ + 63.69145957581605, + 32.049173397246875 + ], + [ + 63.80630225929973, + 32.24382113217533 + ], + [ + 63.57661689233237, + 32.24382113217533 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 32.63311660203224 + ], + [ + 63.80630225929973, + 32.63311660203224 + ], + [ + 63.69145957581605, + 32.82776433696069 + ], + [ + 63.57661689233237, + 32.63311660203224 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 32.63311660203224 + ], + [ + 63.69145957581605, + 32.82776433696069 + ], + [ + 63.46177420884869, + 32.82776433696069 + ], + [ + 63.57661689233237, + 32.63311660203224 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 32.63311660203224 + ], + [ + 63.46177420884869, + 32.82776433696069 + ], + [ + 63.34693152536501, + 32.63311660203224 + ], + [ + 63.57661689233237, + 32.63311660203224 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 32.63311660203224 + ], + [ + 63.34693152536501, + 32.63311660203224 + ], + [ + 63.46177420884869, + 32.438468867103786 + ], + [ + 63.57661689233237, + 32.63311660203224 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 32.63311660203224 + ], + [ + 63.46177420884869, + 32.438468867103786 + ], + [ + 63.69145957581605, + 32.438468867103786 + ], + [ + 63.57661689233237, + 32.63311660203224 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 32.63311660203224 + ], + [ + 63.69145957581605, + 32.438468867103786 + ], + [ + 63.80630225929973, + 32.63311660203224 + ], + [ + 63.57661689233237, + 32.63311660203224 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 33.02241207188914 + ], + [ + 63.80630225929973, + 33.02241207188914 + ], + [ + 63.69145957581605, + 33.217059806817595 + ], + [ + 63.57661689233237, + 33.02241207188914 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 33.02241207188914 + ], + [ + 63.69145957581605, + 33.217059806817595 + ], + [ + 63.46177420884869, + 33.217059806817595 + ], + [ + 63.57661689233237, + 33.02241207188914 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 33.02241207188914 + ], + [ + 63.46177420884869, + 33.217059806817595 + ], + [ + 63.34693152536501, + 33.02241207188914 + ], + [ + 63.57661689233237, + 33.02241207188914 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 33.02241207188914 + ], + [ + 63.34693152536501, + 33.02241207188914 + ], + [ + 63.46177420884869, + 32.82776433696069 + ], + [ + 63.57661689233237, + 33.02241207188914 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 33.02241207188914 + ], + [ + 63.46177420884869, + 32.82776433696069 + ], + [ + 63.69145957581605, + 32.82776433696069 + ], + [ + 63.57661689233237, + 33.02241207188914 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 33.02241207188914 + ], + [ + 63.69145957581605, + 32.82776433696069 + ], + [ + 63.80630225929973, + 33.02241207188914 + ], + [ + 63.57661689233237, + 33.02241207188914 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 33.41170754174605 + ], + [ + 63.80630225929973, + 33.41170754174605 + ], + [ + 63.69145957581605, + 33.6063552766745 + ], + [ + 63.57661689233237, + 33.41170754174605 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 33.41170754174605 + ], + [ + 63.69145957581605, + 33.6063552766745 + ], + [ + 63.46177420884869, + 33.6063552766745 + ], + [ + 63.57661689233237, + 33.41170754174605 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 33.41170754174605 + ], + [ + 63.46177420884869, + 33.6063552766745 + ], + [ + 63.34693152536501, + 33.41170754174605 + ], + [ + 63.57661689233237, + 33.41170754174605 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 33.41170754174605 + ], + [ + 63.34693152536501, + 33.41170754174605 + ], + [ + 63.46177420884869, + 33.217059806817595 + ], + [ + 63.57661689233237, + 33.41170754174605 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 33.41170754174605 + ], + [ + 63.46177420884869, + 33.217059806817595 + ], + [ + 63.69145957581605, + 33.217059806817595 + ], + [ + 63.57661689233237, + 33.41170754174605 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 33.41170754174605 + ], + [ + 63.69145957581605, + 33.217059806817595 + ], + [ + 63.80630225929973, + 33.41170754174605 + ], + [ + 63.57661689233237, + 33.41170754174605 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 33.80100301160295 + ], + [ + 63.80630225929973, + 33.80100301160295 + ], + [ + 63.69145957581605, + 33.9956507465314 + ], + [ + 63.57661689233237, + 33.80100301160295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 33.80100301160295 + ], + [ + 63.69145957581605, + 33.9956507465314 + ], + [ + 63.46177420884869, + 33.9956507465314 + ], + [ + 63.57661689233237, + 33.80100301160295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 33.80100301160295 + ], + [ + 63.46177420884869, + 33.9956507465314 + ], + [ + 63.34693152536501, + 33.80100301160295 + ], + [ + 63.57661689233237, + 33.80100301160295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 33.80100301160295 + ], + [ + 63.34693152536501, + 33.80100301160295 + ], + [ + 63.46177420884869, + 33.6063552766745 + ], + [ + 63.57661689233237, + 33.80100301160295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 33.80100301160295 + ], + [ + 63.46177420884869, + 33.6063552766745 + ], + [ + 63.69145957581605, + 33.6063552766745 + ], + [ + 63.57661689233237, + 33.80100301160295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 33.80100301160295 + ], + [ + 63.69145957581605, + 33.6063552766745 + ], + [ + 63.80630225929973, + 33.80100301160295 + ], + [ + 63.57661689233237, + 33.80100301160295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 34.190298481459855 + ], + [ + 63.80630225929973, + 34.190298481459855 + ], + [ + 63.69145957581605, + 34.38494621638831 + ], + [ + 63.57661689233237, + 34.190298481459855 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 34.190298481459855 + ], + [ + 63.69145957581605, + 34.38494621638831 + ], + [ + 63.46177420884869, + 34.38494621638831 + ], + [ + 63.57661689233237, + 34.190298481459855 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 34.190298481459855 + ], + [ + 63.46177420884869, + 34.38494621638831 + ], + [ + 63.34693152536501, + 34.190298481459855 + ], + [ + 63.57661689233237, + 34.190298481459855 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 34.190298481459855 + ], + [ + 63.34693152536501, + 34.190298481459855 + ], + [ + 63.46177420884869, + 33.9956507465314 + ], + [ + 63.57661689233237, + 34.190298481459855 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 34.190298481459855 + ], + [ + 63.46177420884869, + 33.9956507465314 + ], + [ + 63.69145957581605, + 33.9956507465314 + ], + [ + 63.57661689233237, + 34.190298481459855 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 34.190298481459855 + ], + [ + 63.69145957581605, + 33.9956507465314 + ], + [ + 63.80630225929973, + 34.190298481459855 + ], + [ + 63.57661689233237, + 34.190298481459855 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 34.57959395131677 + ], + [ + 63.80630225929973, + 34.57959395131677 + ], + [ + 63.69145957581605, + 34.77424168624522 + ], + [ + 63.57661689233237, + 34.57959395131677 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 34.57959395131677 + ], + [ + 63.69145957581605, + 34.77424168624522 + ], + [ + 63.46177420884869, + 34.77424168624522 + ], + [ + 63.57661689233237, + 34.57959395131677 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 34.57959395131677 + ], + [ + 63.46177420884869, + 34.77424168624522 + ], + [ + 63.34693152536501, + 34.57959395131677 + ], + [ + 63.57661689233237, + 34.57959395131677 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 34.57959395131677 + ], + [ + 63.34693152536501, + 34.57959395131677 + ], + [ + 63.46177420884869, + 34.384946216388315 + ], + [ + 63.57661689233237, + 34.57959395131677 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 34.57959395131677 + ], + [ + 63.46177420884869, + 34.384946216388315 + ], + [ + 63.69145957581605, + 34.384946216388315 + ], + [ + 63.57661689233237, + 34.57959395131677 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 34.57959395131677 + ], + [ + 63.69145957581605, + 34.384946216388315 + ], + [ + 63.80630225929973, + 34.57959395131677 + ], + [ + 63.57661689233237, + 34.57959395131677 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 34.96888942117368 + ], + [ + 63.80630225929973, + 34.96888942117368 + ], + [ + 63.69145957581605, + 35.16353715610213 + ], + [ + 63.57661689233237, + 34.96888942117368 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 34.96888942117368 + ], + [ + 63.69145957581605, + 35.16353715610213 + ], + [ + 63.46177420884869, + 35.16353715610213 + ], + [ + 63.57661689233237, + 34.96888942117368 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 34.96888942117368 + ], + [ + 63.46177420884869, + 35.16353715610213 + ], + [ + 63.34693152536501, + 34.96888942117368 + ], + [ + 63.57661689233237, + 34.96888942117368 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 34.96888942117368 + ], + [ + 63.34693152536501, + 34.96888942117368 + ], + [ + 63.46177420884869, + 34.774241686245226 + ], + [ + 63.57661689233237, + 34.96888942117368 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 34.96888942117368 + ], + [ + 63.46177420884869, + 34.774241686245226 + ], + [ + 63.69145957581605, + 34.774241686245226 + ], + [ + 63.57661689233237, + 34.96888942117368 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 34.96888942117368 + ], + [ + 63.69145957581605, + 34.774241686245226 + ], + [ + 63.80630225929973, + 34.96888942117368 + ], + [ + 63.57661689233237, + 34.96888942117368 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 35.35818489103058 + ], + [ + 63.80630225929973, + 35.35818489103058 + ], + [ + 63.69145957581605, + 35.552832625959034 + ], + [ + 63.57661689233237, + 35.35818489103058 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 35.35818489103058 + ], + [ + 63.69145957581605, + 35.552832625959034 + ], + [ + 63.46177420884869, + 35.552832625959034 + ], + [ + 63.57661689233237, + 35.35818489103058 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 35.35818489103058 + ], + [ + 63.46177420884869, + 35.552832625959034 + ], + [ + 63.34693152536501, + 35.35818489103058 + ], + [ + 63.57661689233237, + 35.35818489103058 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 35.35818489103058 + ], + [ + 63.34693152536501, + 35.35818489103058 + ], + [ + 63.46177420884869, + 35.16353715610213 + ], + [ + 63.57661689233237, + 35.35818489103058 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 35.35818489103058 + ], + [ + 63.46177420884869, + 35.16353715610213 + ], + [ + 63.69145957581605, + 35.16353715610213 + ], + [ + 63.57661689233237, + 35.35818489103058 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 35.35818489103058 + ], + [ + 63.69145957581605, + 35.16353715610213 + ], + [ + 63.80630225929973, + 35.35818489103058 + ], + [ + 63.57661689233237, + 35.35818489103058 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 35.74748036088749 + ], + [ + 63.80630225929973, + 35.74748036088749 + ], + [ + 63.69145957581605, + 35.94212809581594 + ], + [ + 63.57661689233237, + 35.74748036088749 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 35.74748036088749 + ], + [ + 63.69145957581605, + 35.94212809581594 + ], + [ + 63.46177420884869, + 35.94212809581594 + ], + [ + 63.57661689233237, + 35.74748036088749 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 35.74748036088749 + ], + [ + 63.46177420884869, + 35.94212809581594 + ], + [ + 63.34693152536501, + 35.74748036088749 + ], + [ + 63.57661689233237, + 35.74748036088749 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 35.74748036088749 + ], + [ + 63.34693152536501, + 35.74748036088749 + ], + [ + 63.46177420884869, + 35.552832625959034 + ], + [ + 63.57661689233237, + 35.74748036088749 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 35.74748036088749 + ], + [ + 63.46177420884869, + 35.552832625959034 + ], + [ + 63.69145957581605, + 35.552832625959034 + ], + [ + 63.57661689233237, + 35.74748036088749 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 35.74748036088749 + ], + [ + 63.69145957581605, + 35.552832625959034 + ], + [ + 63.80630225929973, + 35.74748036088749 + ], + [ + 63.57661689233237, + 35.74748036088749 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 36.13677583074439 + ], + [ + 63.80630225929973, + 36.13677583074439 + ], + [ + 63.69145957581605, + 36.33142356567284 + ], + [ + 63.57661689233237, + 36.13677583074439 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 36.13677583074439 + ], + [ + 63.69145957581605, + 36.33142356567284 + ], + [ + 63.46177420884869, + 36.33142356567284 + ], + [ + 63.57661689233237, + 36.13677583074439 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 36.13677583074439 + ], + [ + 63.46177420884869, + 36.33142356567284 + ], + [ + 63.34693152536501, + 36.13677583074439 + ], + [ + 63.57661689233237, + 36.13677583074439 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 36.13677583074439 + ], + [ + 63.34693152536501, + 36.13677583074439 + ], + [ + 63.46177420884869, + 35.94212809581594 + ], + [ + 63.57661689233237, + 36.13677583074439 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 36.13677583074439 + ], + [ + 63.46177420884869, + 35.94212809581594 + ], + [ + 63.69145957581605, + 35.94212809581594 + ], + [ + 63.57661689233237, + 36.13677583074439 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 36.13677583074439 + ], + [ + 63.69145957581605, + 35.94212809581594 + ], + [ + 63.80630225929973, + 36.13677583074439 + ], + [ + 63.57661689233237, + 36.13677583074439 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 36.526071300601295 + ], + [ + 63.80630225929973, + 36.526071300601295 + ], + [ + 63.69145957581605, + 36.72071903552975 + ], + [ + 63.57661689233237, + 36.526071300601295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 36.526071300601295 + ], + [ + 63.69145957581605, + 36.72071903552975 + ], + [ + 63.46177420884869, + 36.72071903552975 + ], + [ + 63.57661689233237, + 36.526071300601295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 36.526071300601295 + ], + [ + 63.46177420884869, + 36.72071903552975 + ], + [ + 63.34693152536501, + 36.526071300601295 + ], + [ + 63.57661689233237, + 36.526071300601295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 36.526071300601295 + ], + [ + 63.34693152536501, + 36.526071300601295 + ], + [ + 63.46177420884869, + 36.33142356567284 + ], + [ + 63.57661689233237, + 36.526071300601295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 36.526071300601295 + ], + [ + 63.46177420884869, + 36.33142356567284 + ], + [ + 63.69145957581605, + 36.33142356567284 + ], + [ + 63.57661689233237, + 36.526071300601295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 36.526071300601295 + ], + [ + 63.69145957581605, + 36.33142356567284 + ], + [ + 63.80630225929973, + 36.526071300601295 + ], + [ + 63.57661689233237, + 36.526071300601295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 36.915366770458206 + ], + [ + 63.80630225929973, + 36.915366770458206 + ], + [ + 63.69145957581605, + 37.11001450538666 + ], + [ + 63.57661689233237, + 36.915366770458206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 36.915366770458206 + ], + [ + 63.69145957581605, + 37.11001450538666 + ], + [ + 63.46177420884869, + 37.11001450538666 + ], + [ + 63.57661689233237, + 36.915366770458206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 36.915366770458206 + ], + [ + 63.46177420884869, + 37.11001450538666 + ], + [ + 63.34693152536501, + 36.915366770458206 + ], + [ + 63.57661689233237, + 36.915366770458206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 36.915366770458206 + ], + [ + 63.34693152536501, + 36.915366770458206 + ], + [ + 63.46177420884869, + 36.720719035529754 + ], + [ + 63.57661689233237, + 36.915366770458206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 36.915366770458206 + ], + [ + 63.46177420884869, + 36.720719035529754 + ], + [ + 63.69145957581605, + 36.720719035529754 + ], + [ + 63.57661689233237, + 36.915366770458206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 36.915366770458206 + ], + [ + 63.69145957581605, + 36.720719035529754 + ], + [ + 63.80630225929973, + 36.915366770458206 + ], + [ + 63.57661689233237, + 36.915366770458206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 37.30466224031511 + ], + [ + 63.80630225929973, + 37.30466224031511 + ], + [ + 63.69145957581605, + 37.49930997524356 + ], + [ + 63.57661689233237, + 37.30466224031511 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 37.30466224031511 + ], + [ + 63.69145957581605, + 37.49930997524356 + ], + [ + 63.46177420884869, + 37.49930997524356 + ], + [ + 63.57661689233237, + 37.30466224031511 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 37.30466224031511 + ], + [ + 63.46177420884869, + 37.49930997524356 + ], + [ + 63.34693152536501, + 37.30466224031511 + ], + [ + 63.57661689233237, + 37.30466224031511 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 37.30466224031511 + ], + [ + 63.34693152536501, + 37.30466224031511 + ], + [ + 63.46177420884869, + 37.11001450538666 + ], + [ + 63.57661689233237, + 37.30466224031511 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 37.30466224031511 + ], + [ + 63.46177420884869, + 37.11001450538666 + ], + [ + 63.69145957581605, + 37.11001450538666 + ], + [ + 63.57661689233237, + 37.30466224031511 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 37.30466224031511 + ], + [ + 63.69145957581605, + 37.11001450538666 + ], + [ + 63.80630225929973, + 37.30466224031511 + ], + [ + 63.57661689233237, + 37.30466224031511 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 37.69395771017202 + ], + [ + 63.80630225929973, + 37.69395771017202 + ], + [ + 63.69145957581605, + 37.888605445100474 + ], + [ + 63.57661689233237, + 37.69395771017202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 37.69395771017202 + ], + [ + 63.69145957581605, + 37.888605445100474 + ], + [ + 63.46177420884869, + 37.888605445100474 + ], + [ + 63.57661689233237, + 37.69395771017202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 37.69395771017202 + ], + [ + 63.46177420884869, + 37.888605445100474 + ], + [ + 63.34693152536501, + 37.69395771017202 + ], + [ + 63.57661689233237, + 37.69395771017202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 37.69395771017202 + ], + [ + 63.34693152536501, + 37.69395771017202 + ], + [ + 63.46177420884869, + 37.49930997524357 + ], + [ + 63.57661689233237, + 37.69395771017202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 37.69395771017202 + ], + [ + 63.46177420884869, + 37.49930997524357 + ], + [ + 63.69145957581605, + 37.49930997524357 + ], + [ + 63.57661689233237, + 37.69395771017202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 37.69395771017202 + ], + [ + 63.69145957581605, + 37.49930997524357 + ], + [ + 63.80630225929973, + 37.69395771017202 + ], + [ + 63.57661689233237, + 37.69395771017202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 38.083253180028926 + ], + [ + 63.80630225929973, + 38.083253180028926 + ], + [ + 63.69145957581605, + 38.27790091495738 + ], + [ + 63.57661689233237, + 38.083253180028926 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 38.083253180028926 + ], + [ + 63.69145957581605, + 38.27790091495738 + ], + [ + 63.46177420884869, + 38.27790091495738 + ], + [ + 63.57661689233237, + 38.083253180028926 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 38.083253180028926 + ], + [ + 63.46177420884869, + 38.27790091495738 + ], + [ + 63.34693152536501, + 38.083253180028926 + ], + [ + 63.57661689233237, + 38.083253180028926 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 38.083253180028926 + ], + [ + 63.34693152536501, + 38.083253180028926 + ], + [ + 63.46177420884869, + 37.888605445100474 + ], + [ + 63.57661689233237, + 38.083253180028926 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 38.083253180028926 + ], + [ + 63.46177420884869, + 37.888605445100474 + ], + [ + 63.69145957581605, + 37.888605445100474 + ], + [ + 63.57661689233237, + 38.083253180028926 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 38.083253180028926 + ], + [ + 63.69145957581605, + 37.888605445100474 + ], + [ + 63.80630225929973, + 38.083253180028926 + ], + [ + 63.57661689233237, + 38.083253180028926 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 38.47254864988583 + ], + [ + 63.80630225929973, + 38.47254864988583 + ], + [ + 63.69145957581605, + 38.66719638481428 + ], + [ + 63.57661689233237, + 38.47254864988583 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 38.47254864988583 + ], + [ + 63.69145957581605, + 38.66719638481428 + ], + [ + 63.46177420884869, + 38.66719638481428 + ], + [ + 63.57661689233237, + 38.47254864988583 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 38.47254864988583 + ], + [ + 63.46177420884869, + 38.66719638481428 + ], + [ + 63.34693152536501, + 38.47254864988583 + ], + [ + 63.57661689233237, + 38.47254864988583 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 38.47254864988583 + ], + [ + 63.34693152536501, + 38.47254864988583 + ], + [ + 63.46177420884869, + 38.27790091495738 + ], + [ + 63.57661689233237, + 38.47254864988583 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 38.47254864988583 + ], + [ + 63.46177420884869, + 38.27790091495738 + ], + [ + 63.69145957581605, + 38.27790091495738 + ], + [ + 63.57661689233237, + 38.47254864988583 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 38.47254864988583 + ], + [ + 63.69145957581605, + 38.27790091495738 + ], + [ + 63.80630225929973, + 38.47254864988583 + ], + [ + 63.57661689233237, + 38.47254864988583 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 38.861844119742734 + ], + [ + 63.80630225929973, + 38.861844119742734 + ], + [ + 63.69145957581605, + 39.05649185467119 + ], + [ + 63.57661689233237, + 38.861844119742734 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 38.861844119742734 + ], + [ + 63.69145957581605, + 39.05649185467119 + ], + [ + 63.46177420884869, + 39.05649185467119 + ], + [ + 63.57661689233237, + 38.861844119742734 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 38.861844119742734 + ], + [ + 63.46177420884869, + 39.05649185467119 + ], + [ + 63.34693152536501, + 38.861844119742734 + ], + [ + 63.57661689233237, + 38.861844119742734 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 38.861844119742734 + ], + [ + 63.34693152536501, + 38.861844119742734 + ], + [ + 63.46177420884869, + 38.66719638481428 + ], + [ + 63.57661689233237, + 38.861844119742734 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 38.861844119742734 + ], + [ + 63.46177420884869, + 38.66719638481428 + ], + [ + 63.69145957581605, + 38.66719638481428 + ], + [ + 63.57661689233237, + 38.861844119742734 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 38.861844119742734 + ], + [ + 63.69145957581605, + 38.66719638481428 + ], + [ + 63.80630225929973, + 38.861844119742734 + ], + [ + 63.57661689233237, + 38.861844119742734 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 39.25113958959964 + ], + [ + 63.80630225929973, + 39.25113958959964 + ], + [ + 63.69145957581605, + 39.44578732452809 + ], + [ + 63.57661689233237, + 39.25113958959964 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 39.25113958959964 + ], + [ + 63.69145957581605, + 39.44578732452809 + ], + [ + 63.46177420884869, + 39.44578732452809 + ], + [ + 63.57661689233237, + 39.25113958959964 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 39.25113958959964 + ], + [ + 63.46177420884869, + 39.44578732452809 + ], + [ + 63.34693152536501, + 39.25113958959964 + ], + [ + 63.57661689233237, + 39.25113958959964 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 39.25113958959964 + ], + [ + 63.34693152536501, + 39.25113958959964 + ], + [ + 63.46177420884869, + 39.05649185467119 + ], + [ + 63.57661689233237, + 39.25113958959964 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 39.25113958959964 + ], + [ + 63.46177420884869, + 39.05649185467119 + ], + [ + 63.69145957581605, + 39.05649185467119 + ], + [ + 63.57661689233237, + 39.25113958959964 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 39.25113958959964 + ], + [ + 63.69145957581605, + 39.05649185467119 + ], + [ + 63.80630225929973, + 39.25113958959964 + ], + [ + 63.57661689233237, + 39.25113958959964 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 39.64043505945655 + ], + [ + 63.80630225929973, + 39.64043505945655 + ], + [ + 63.69145957581605, + 39.835082794385 + ], + [ + 63.57661689233237, + 39.64043505945655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 39.64043505945655 + ], + [ + 63.69145957581605, + 39.835082794385 + ], + [ + 63.46177420884869, + 39.835082794385 + ], + [ + 63.57661689233237, + 39.64043505945655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 39.64043505945655 + ], + [ + 63.46177420884869, + 39.835082794385 + ], + [ + 63.34693152536501, + 39.64043505945655 + ], + [ + 63.57661689233237, + 39.64043505945655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 39.64043505945655 + ], + [ + 63.34693152536501, + 39.64043505945655 + ], + [ + 63.46177420884869, + 39.4457873245281 + ], + [ + 63.57661689233237, + 39.64043505945655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 39.64043505945655 + ], + [ + 63.46177420884869, + 39.4457873245281 + ], + [ + 63.69145957581605, + 39.4457873245281 + ], + [ + 63.57661689233237, + 39.64043505945655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 39.64043505945655 + ], + [ + 63.69145957581605, + 39.4457873245281 + ], + [ + 63.80630225929973, + 39.64043505945655 + ], + [ + 63.57661689233237, + 39.64043505945655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 40.029730529313454 + ], + [ + 63.80630225929973, + 40.029730529313454 + ], + [ + 63.69145957581605, + 40.224378264241906 + ], + [ + 63.57661689233237, + 40.029730529313454 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 40.029730529313454 + ], + [ + 63.69145957581605, + 40.224378264241906 + ], + [ + 63.46177420884869, + 40.224378264241906 + ], + [ + 63.57661689233237, + 40.029730529313454 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 40.029730529313454 + ], + [ + 63.46177420884869, + 40.224378264241906 + ], + [ + 63.34693152536501, + 40.029730529313454 + ], + [ + 63.57661689233237, + 40.029730529313454 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 40.029730529313454 + ], + [ + 63.34693152536501, + 40.029730529313454 + ], + [ + 63.46177420884869, + 39.835082794385 + ], + [ + 63.57661689233237, + 40.029730529313454 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 40.029730529313454 + ], + [ + 63.46177420884869, + 39.835082794385 + ], + [ + 63.69145957581605, + 39.835082794385 + ], + [ + 63.57661689233237, + 40.029730529313454 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 40.029730529313454 + ], + [ + 63.69145957581605, + 39.835082794385 + ], + [ + 63.80630225929973, + 40.029730529313454 + ], + [ + 63.57661689233237, + 40.029730529313454 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 40.419025999170366 + ], + [ + 63.80630225929973, + 40.419025999170366 + ], + [ + 63.69145957581605, + 40.61367373409882 + ], + [ + 63.57661689233237, + 40.419025999170366 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 40.419025999170366 + ], + [ + 63.69145957581605, + 40.61367373409882 + ], + [ + 63.46177420884869, + 40.61367373409882 + ], + [ + 63.57661689233237, + 40.419025999170366 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 40.419025999170366 + ], + [ + 63.46177420884869, + 40.61367373409882 + ], + [ + 63.34693152536501, + 40.419025999170366 + ], + [ + 63.57661689233237, + 40.419025999170366 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 40.419025999170366 + ], + [ + 63.34693152536501, + 40.419025999170366 + ], + [ + 63.46177420884869, + 40.22437826424191 + ], + [ + 63.57661689233237, + 40.419025999170366 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 40.419025999170366 + ], + [ + 63.46177420884869, + 40.22437826424191 + ], + [ + 63.69145957581605, + 40.22437826424191 + ], + [ + 63.57661689233237, + 40.419025999170366 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 40.419025999170366 + ], + [ + 63.69145957581605, + 40.22437826424191 + ], + [ + 63.80630225929973, + 40.419025999170366 + ], + [ + 63.57661689233237, + 40.419025999170366 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 40.80832146902727 + ], + [ + 63.80630225929973, + 40.80832146902727 + ], + [ + 63.69145957581605, + 41.00296920395572 + ], + [ + 63.57661689233237, + 40.80832146902727 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 40.80832146902727 + ], + [ + 63.69145957581605, + 41.00296920395572 + ], + [ + 63.46177420884869, + 41.00296920395572 + ], + [ + 63.57661689233237, + 40.80832146902727 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 40.80832146902727 + ], + [ + 63.46177420884869, + 41.00296920395572 + ], + [ + 63.34693152536501, + 40.80832146902727 + ], + [ + 63.57661689233237, + 40.80832146902727 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 40.80832146902727 + ], + [ + 63.34693152536501, + 40.80832146902727 + ], + [ + 63.46177420884869, + 40.61367373409882 + ], + [ + 63.57661689233237, + 40.80832146902727 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 40.80832146902727 + ], + [ + 63.46177420884869, + 40.61367373409882 + ], + [ + 63.69145957581605, + 40.61367373409882 + ], + [ + 63.57661689233237, + 40.80832146902727 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 40.80832146902727 + ], + [ + 63.69145957581605, + 40.61367373409882 + ], + [ + 63.80630225929973, + 40.80832146902727 + ], + [ + 63.57661689233237, + 40.80832146902727 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 41.197616938884174 + ], + [ + 63.80630225929973, + 41.197616938884174 + ], + [ + 63.69145957581605, + 41.392264673812626 + ], + [ + 63.57661689233237, + 41.197616938884174 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 41.197616938884174 + ], + [ + 63.69145957581605, + 41.392264673812626 + ], + [ + 63.46177420884869, + 41.392264673812626 + ], + [ + 63.57661689233237, + 41.197616938884174 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 41.197616938884174 + ], + [ + 63.46177420884869, + 41.392264673812626 + ], + [ + 63.34693152536501, + 41.197616938884174 + ], + [ + 63.57661689233237, + 41.197616938884174 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 41.197616938884174 + ], + [ + 63.34693152536501, + 41.197616938884174 + ], + [ + 63.46177420884869, + 41.00296920395572 + ], + [ + 63.57661689233237, + 41.197616938884174 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 41.197616938884174 + ], + [ + 63.46177420884869, + 41.00296920395572 + ], + [ + 63.69145957581605, + 41.00296920395572 + ], + [ + 63.57661689233237, + 41.197616938884174 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 41.197616938884174 + ], + [ + 63.69145957581605, + 41.00296920395572 + ], + [ + 63.80630225929973, + 41.197616938884174 + ], + [ + 63.57661689233237, + 41.197616938884174 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 41.58691240874108 + ], + [ + 63.80630225929973, + 41.58691240874108 + ], + [ + 63.69145957581605, + 41.78156014366953 + ], + [ + 63.57661689233237, + 41.58691240874108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 41.58691240874108 + ], + [ + 63.69145957581605, + 41.78156014366953 + ], + [ + 63.46177420884869, + 41.78156014366953 + ], + [ + 63.57661689233237, + 41.58691240874108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 41.58691240874108 + ], + [ + 63.46177420884869, + 41.78156014366953 + ], + [ + 63.34693152536501, + 41.58691240874108 + ], + [ + 63.57661689233237, + 41.58691240874108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 41.58691240874108 + ], + [ + 63.34693152536501, + 41.58691240874108 + ], + [ + 63.46177420884869, + 41.392264673812626 + ], + [ + 63.57661689233237, + 41.58691240874108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 41.58691240874108 + ], + [ + 63.46177420884869, + 41.392264673812626 + ], + [ + 63.69145957581605, + 41.392264673812626 + ], + [ + 63.57661689233237, + 41.58691240874108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 41.58691240874108 + ], + [ + 63.69145957581605, + 41.392264673812626 + ], + [ + 63.80630225929973, + 41.58691240874108 + ], + [ + 63.57661689233237, + 41.58691240874108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 41.97620787859798 + ], + [ + 63.80630225929973, + 41.97620787859798 + ], + [ + 63.69145957581605, + 42.170855613526435 + ], + [ + 63.57661689233237, + 41.97620787859798 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 41.97620787859798 + ], + [ + 63.69145957581605, + 42.170855613526435 + ], + [ + 63.46177420884869, + 42.170855613526435 + ], + [ + 63.57661689233237, + 41.97620787859798 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 41.97620787859798 + ], + [ + 63.46177420884869, + 42.170855613526435 + ], + [ + 63.34693152536501, + 41.97620787859798 + ], + [ + 63.57661689233237, + 41.97620787859798 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 41.97620787859798 + ], + [ + 63.34693152536501, + 41.97620787859798 + ], + [ + 63.46177420884869, + 41.78156014366953 + ], + [ + 63.57661689233237, + 41.97620787859798 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 41.97620787859798 + ], + [ + 63.46177420884869, + 41.78156014366953 + ], + [ + 63.69145957581605, + 41.78156014366953 + ], + [ + 63.57661689233237, + 41.97620787859798 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 41.97620787859798 + ], + [ + 63.69145957581605, + 41.78156014366953 + ], + [ + 63.80630225929973, + 41.97620787859798 + ], + [ + 63.57661689233237, + 41.97620787859798 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 42.365503348454894 + ], + [ + 63.80630225929973, + 42.365503348454894 + ], + [ + 63.69145957581605, + 42.560151083383346 + ], + [ + 63.57661689233237, + 42.365503348454894 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 42.365503348454894 + ], + [ + 63.69145957581605, + 42.560151083383346 + ], + [ + 63.46177420884869, + 42.560151083383346 + ], + [ + 63.57661689233237, + 42.365503348454894 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 42.365503348454894 + ], + [ + 63.46177420884869, + 42.560151083383346 + ], + [ + 63.34693152536501, + 42.365503348454894 + ], + [ + 63.57661689233237, + 42.365503348454894 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 42.365503348454894 + ], + [ + 63.34693152536501, + 42.365503348454894 + ], + [ + 63.46177420884869, + 42.17085561352644 + ], + [ + 63.57661689233237, + 42.365503348454894 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 42.365503348454894 + ], + [ + 63.46177420884869, + 42.17085561352644 + ], + [ + 63.69145957581605, + 42.17085561352644 + ], + [ + 63.57661689233237, + 42.365503348454894 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 42.365503348454894 + ], + [ + 63.69145957581605, + 42.17085561352644 + ], + [ + 63.80630225929973, + 42.365503348454894 + ], + [ + 63.57661689233237, + 42.365503348454894 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 42.754798818311805 + ], + [ + 63.80630225929973, + 42.754798818311805 + ], + [ + 63.69145957581605, + 42.94944655324026 + ], + [ + 63.57661689233237, + 42.754798818311805 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 42.754798818311805 + ], + [ + 63.69145957581605, + 42.94944655324026 + ], + [ + 63.46177420884869, + 42.94944655324026 + ], + [ + 63.57661689233237, + 42.754798818311805 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 42.754798818311805 + ], + [ + 63.46177420884869, + 42.94944655324026 + ], + [ + 63.34693152536501, + 42.754798818311805 + ], + [ + 63.57661689233237, + 42.754798818311805 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 42.754798818311805 + ], + [ + 63.34693152536501, + 42.754798818311805 + ], + [ + 63.46177420884869, + 42.56015108338335 + ], + [ + 63.57661689233237, + 42.754798818311805 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 42.754798818311805 + ], + [ + 63.46177420884869, + 42.56015108338335 + ], + [ + 63.69145957581605, + 42.56015108338335 + ], + [ + 63.57661689233237, + 42.754798818311805 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 42.754798818311805 + ], + [ + 63.69145957581605, + 42.56015108338335 + ], + [ + 63.80630225929973, + 42.754798818311805 + ], + [ + 63.57661689233237, + 42.754798818311805 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 43.14409428816871 + ], + [ + 63.80630225929973, + 43.14409428816871 + ], + [ + 63.69145957581605, + 43.33874202309716 + ], + [ + 63.57661689233237, + 43.14409428816871 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 43.14409428816871 + ], + [ + 63.69145957581605, + 43.33874202309716 + ], + [ + 63.46177420884869, + 43.33874202309716 + ], + [ + 63.57661689233237, + 43.14409428816871 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 43.14409428816871 + ], + [ + 63.46177420884869, + 43.33874202309716 + ], + [ + 63.34693152536501, + 43.14409428816871 + ], + [ + 63.57661689233237, + 43.14409428816871 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 43.14409428816871 + ], + [ + 63.34693152536501, + 43.14409428816871 + ], + [ + 63.46177420884869, + 42.94944655324026 + ], + [ + 63.57661689233237, + 43.14409428816871 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 43.14409428816871 + ], + [ + 63.46177420884869, + 42.94944655324026 + ], + [ + 63.69145957581605, + 42.94944655324026 + ], + [ + 63.57661689233237, + 43.14409428816871 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 43.14409428816871 + ], + [ + 63.69145957581605, + 42.94944655324026 + ], + [ + 63.80630225929973, + 43.14409428816871 + ], + [ + 63.57661689233237, + 43.14409428816871 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 43.53338975802561 + ], + [ + 63.80630225929973, + 43.53338975802561 + ], + [ + 63.69145957581605, + 43.728037492954066 + ], + [ + 63.57661689233237, + 43.53338975802561 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 43.53338975802561 + ], + [ + 63.69145957581605, + 43.728037492954066 + ], + [ + 63.46177420884869, + 43.728037492954066 + ], + [ + 63.57661689233237, + 43.53338975802561 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 43.53338975802561 + ], + [ + 63.46177420884869, + 43.728037492954066 + ], + [ + 63.34693152536501, + 43.53338975802561 + ], + [ + 63.57661689233237, + 43.53338975802561 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 43.53338975802561 + ], + [ + 63.34693152536501, + 43.53338975802561 + ], + [ + 63.46177420884869, + 43.33874202309716 + ], + [ + 63.57661689233237, + 43.53338975802561 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 43.53338975802561 + ], + [ + 63.46177420884869, + 43.33874202309716 + ], + [ + 63.69145957581605, + 43.33874202309716 + ], + [ + 63.57661689233237, + 43.53338975802561 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 43.53338975802561 + ], + [ + 63.69145957581605, + 43.33874202309716 + ], + [ + 63.80630225929973, + 43.53338975802561 + ], + [ + 63.57661689233237, + 43.53338975802561 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 43.92268522788252 + ], + [ + 63.80630225929973, + 43.92268522788252 + ], + [ + 63.69145957581605, + 44.11733296281097 + ], + [ + 63.57661689233237, + 43.92268522788252 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 43.92268522788252 + ], + [ + 63.69145957581605, + 44.11733296281097 + ], + [ + 63.46177420884869, + 44.11733296281097 + ], + [ + 63.57661689233237, + 43.92268522788252 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 43.92268522788252 + ], + [ + 63.46177420884869, + 44.11733296281097 + ], + [ + 63.34693152536501, + 43.92268522788252 + ], + [ + 63.57661689233237, + 43.92268522788252 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 43.92268522788252 + ], + [ + 63.34693152536501, + 43.92268522788252 + ], + [ + 63.46177420884869, + 43.728037492954066 + ], + [ + 63.57661689233237, + 43.92268522788252 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 43.92268522788252 + ], + [ + 63.46177420884869, + 43.728037492954066 + ], + [ + 63.69145957581605, + 43.728037492954066 + ], + [ + 63.57661689233237, + 43.92268522788252 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 43.92268522788252 + ], + [ + 63.69145957581605, + 43.728037492954066 + ], + [ + 63.80630225929973, + 43.92268522788252 + ], + [ + 63.57661689233237, + 43.92268522788252 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 44.31198069773942 + ], + [ + 63.80630225929973, + 44.31198069773942 + ], + [ + 63.69145957581605, + 44.506628432667874 + ], + [ + 63.57661689233237, + 44.31198069773942 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 44.31198069773942 + ], + [ + 63.69145957581605, + 44.506628432667874 + ], + [ + 63.46177420884869, + 44.506628432667874 + ], + [ + 63.57661689233237, + 44.31198069773942 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 44.31198069773942 + ], + [ + 63.46177420884869, + 44.506628432667874 + ], + [ + 63.34693152536501, + 44.31198069773942 + ], + [ + 63.57661689233237, + 44.31198069773942 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 44.31198069773942 + ], + [ + 63.34693152536501, + 44.31198069773942 + ], + [ + 63.46177420884869, + 44.11733296281097 + ], + [ + 63.57661689233237, + 44.31198069773942 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 44.31198069773942 + ], + [ + 63.46177420884869, + 44.11733296281097 + ], + [ + 63.69145957581605, + 44.11733296281097 + ], + [ + 63.57661689233237, + 44.31198069773942 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 44.31198069773942 + ], + [ + 63.69145957581605, + 44.11733296281097 + ], + [ + 63.80630225929973, + 44.31198069773942 + ], + [ + 63.57661689233237, + 44.31198069773942 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 44.701276167596326 + ], + [ + 63.80630225929973, + 44.701276167596326 + ], + [ + 63.69145957581605, + 44.89592390252478 + ], + [ + 63.57661689233237, + 44.701276167596326 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 44.701276167596326 + ], + [ + 63.69145957581605, + 44.89592390252478 + ], + [ + 63.46177420884869, + 44.89592390252478 + ], + [ + 63.57661689233237, + 44.701276167596326 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 44.701276167596326 + ], + [ + 63.46177420884869, + 44.89592390252478 + ], + [ + 63.34693152536501, + 44.701276167596326 + ], + [ + 63.57661689233237, + 44.701276167596326 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 44.701276167596326 + ], + [ + 63.34693152536501, + 44.701276167596326 + ], + [ + 63.46177420884869, + 44.506628432667874 + ], + [ + 63.57661689233237, + 44.701276167596326 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 44.701276167596326 + ], + [ + 63.46177420884869, + 44.506628432667874 + ], + [ + 63.69145957581605, + 44.506628432667874 + ], + [ + 63.57661689233237, + 44.701276167596326 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 44.701276167596326 + ], + [ + 63.69145957581605, + 44.506628432667874 + ], + [ + 63.80630225929973, + 44.701276167596326 + ], + [ + 63.57661689233237, + 44.701276167596326 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 45.090571637453245 + ], + [ + 63.80630225929973, + 45.090571637453245 + ], + [ + 63.69145957581605, + 45.2852193723817 + ], + [ + 63.57661689233237, + 45.090571637453245 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 45.090571637453245 + ], + [ + 63.69145957581605, + 45.2852193723817 + ], + [ + 63.46177420884869, + 45.2852193723817 + ], + [ + 63.57661689233237, + 45.090571637453245 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 45.090571637453245 + ], + [ + 63.46177420884869, + 45.2852193723817 + ], + [ + 63.34693152536501, + 45.090571637453245 + ], + [ + 63.57661689233237, + 45.090571637453245 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 45.090571637453245 + ], + [ + 63.34693152536501, + 45.090571637453245 + ], + [ + 63.46177420884869, + 44.89592390252479 + ], + [ + 63.57661689233237, + 45.090571637453245 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 45.090571637453245 + ], + [ + 63.46177420884869, + 44.89592390252479 + ], + [ + 63.69145957581605, + 44.89592390252479 + ], + [ + 63.57661689233237, + 45.090571637453245 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 45.090571637453245 + ], + [ + 63.69145957581605, + 44.89592390252479 + ], + [ + 63.80630225929973, + 45.090571637453245 + ], + [ + 63.57661689233237, + 45.090571637453245 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 45.47986710731015 + ], + [ + 63.80630225929973, + 45.47986710731015 + ], + [ + 63.69145957581605, + 45.6745148422386 + ], + [ + 63.57661689233237, + 45.47986710731015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 45.47986710731015 + ], + [ + 63.69145957581605, + 45.6745148422386 + ], + [ + 63.46177420884869, + 45.6745148422386 + ], + [ + 63.57661689233237, + 45.47986710731015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 45.47986710731015 + ], + [ + 63.46177420884869, + 45.6745148422386 + ], + [ + 63.34693152536501, + 45.47986710731015 + ], + [ + 63.57661689233237, + 45.47986710731015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 45.47986710731015 + ], + [ + 63.34693152536501, + 45.47986710731015 + ], + [ + 63.46177420884869, + 45.2852193723817 + ], + [ + 63.57661689233237, + 45.47986710731015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 45.47986710731015 + ], + [ + 63.46177420884869, + 45.2852193723817 + ], + [ + 63.69145957581605, + 45.2852193723817 + ], + [ + 63.57661689233237, + 45.47986710731015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 45.47986710731015 + ], + [ + 63.69145957581605, + 45.2852193723817 + ], + [ + 63.80630225929973, + 45.47986710731015 + ], + [ + 63.57661689233237, + 45.47986710731015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 45.86916257716705 + ], + [ + 63.80630225929973, + 45.86916257716705 + ], + [ + 63.69145957581605, + 46.063810312095505 + ], + [ + 63.57661689233237, + 45.86916257716705 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 45.86916257716705 + ], + [ + 63.69145957581605, + 46.063810312095505 + ], + [ + 63.46177420884869, + 46.063810312095505 + ], + [ + 63.57661689233237, + 45.86916257716705 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 45.86916257716705 + ], + [ + 63.46177420884869, + 46.063810312095505 + ], + [ + 63.34693152536501, + 45.86916257716705 + ], + [ + 63.57661689233237, + 45.86916257716705 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 45.86916257716705 + ], + [ + 63.34693152536501, + 45.86916257716705 + ], + [ + 63.46177420884869, + 45.6745148422386 + ], + [ + 63.57661689233237, + 45.86916257716705 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 45.86916257716705 + ], + [ + 63.46177420884869, + 45.6745148422386 + ], + [ + 63.69145957581605, + 45.6745148422386 + ], + [ + 63.57661689233237, + 45.86916257716705 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 45.86916257716705 + ], + [ + 63.69145957581605, + 45.6745148422386 + ], + [ + 63.80630225929973, + 45.86916257716705 + ], + [ + 63.57661689233237, + 45.86916257716705 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 46.25845804702396 + ], + [ + 63.80630225929973, + 46.25845804702396 + ], + [ + 63.69145957581605, + 46.45310578195241 + ], + [ + 63.57661689233237, + 46.25845804702396 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 46.25845804702396 + ], + [ + 63.69145957581605, + 46.45310578195241 + ], + [ + 63.46177420884869, + 46.45310578195241 + ], + [ + 63.57661689233237, + 46.25845804702396 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 46.25845804702396 + ], + [ + 63.46177420884869, + 46.45310578195241 + ], + [ + 63.34693152536501, + 46.25845804702396 + ], + [ + 63.57661689233237, + 46.25845804702396 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 46.25845804702396 + ], + [ + 63.34693152536501, + 46.25845804702396 + ], + [ + 63.46177420884869, + 46.063810312095505 + ], + [ + 63.57661689233237, + 46.25845804702396 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 46.25845804702396 + ], + [ + 63.46177420884869, + 46.063810312095505 + ], + [ + 63.69145957581605, + 46.063810312095505 + ], + [ + 63.57661689233237, + 46.25845804702396 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 46.25845804702396 + ], + [ + 63.69145957581605, + 46.063810312095505 + ], + [ + 63.80630225929973, + 46.25845804702396 + ], + [ + 63.57661689233237, + 46.25845804702396 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 46.64775351688086 + ], + [ + 63.80630225929973, + 46.64775351688086 + ], + [ + 63.69145957581605, + 46.842401251809314 + ], + [ + 63.57661689233237, + 46.64775351688086 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 46.64775351688086 + ], + [ + 63.69145957581605, + 46.842401251809314 + ], + [ + 63.46177420884869, + 46.842401251809314 + ], + [ + 63.57661689233237, + 46.64775351688086 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 46.64775351688086 + ], + [ + 63.46177420884869, + 46.842401251809314 + ], + [ + 63.34693152536501, + 46.64775351688086 + ], + [ + 63.57661689233237, + 46.64775351688086 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 46.64775351688086 + ], + [ + 63.34693152536501, + 46.64775351688086 + ], + [ + 63.46177420884869, + 46.45310578195241 + ], + [ + 63.57661689233237, + 46.64775351688086 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 46.64775351688086 + ], + [ + 63.46177420884869, + 46.45310578195241 + ], + [ + 63.69145957581605, + 46.45310578195241 + ], + [ + 63.57661689233237, + 46.64775351688086 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 46.64775351688086 + ], + [ + 63.69145957581605, + 46.45310578195241 + ], + [ + 63.80630225929973, + 46.64775351688086 + ], + [ + 63.57661689233237, + 46.64775351688086 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 47.037048986737766 + ], + [ + 63.80630225929973, + 47.037048986737766 + ], + [ + 63.69145957581605, + 47.23169672166622 + ], + [ + 63.57661689233237, + 47.037048986737766 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 47.037048986737766 + ], + [ + 63.69145957581605, + 47.23169672166622 + ], + [ + 63.46177420884869, + 47.23169672166622 + ], + [ + 63.57661689233237, + 47.037048986737766 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 47.037048986737766 + ], + [ + 63.46177420884869, + 47.23169672166622 + ], + [ + 63.34693152536501, + 47.037048986737766 + ], + [ + 63.57661689233237, + 47.037048986737766 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 47.037048986737766 + ], + [ + 63.34693152536501, + 47.037048986737766 + ], + [ + 63.46177420884869, + 46.842401251809314 + ], + [ + 63.57661689233237, + 47.037048986737766 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 47.037048986737766 + ], + [ + 63.46177420884869, + 46.842401251809314 + ], + [ + 63.69145957581605, + 46.842401251809314 + ], + [ + 63.57661689233237, + 47.037048986737766 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 47.037048986737766 + ], + [ + 63.69145957581605, + 46.842401251809314 + ], + [ + 63.80630225929973, + 47.037048986737766 + ], + [ + 63.57661689233237, + 47.037048986737766 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 47.42634445659467 + ], + [ + 63.80630225929973, + 47.42634445659467 + ], + [ + 63.69145957581605, + 47.62099219152312 + ], + [ + 63.57661689233237, + 47.42634445659467 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 47.42634445659467 + ], + [ + 63.69145957581605, + 47.62099219152312 + ], + [ + 63.46177420884869, + 47.62099219152312 + ], + [ + 63.57661689233237, + 47.42634445659467 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 47.42634445659467 + ], + [ + 63.46177420884869, + 47.62099219152312 + ], + [ + 63.34693152536501, + 47.42634445659467 + ], + [ + 63.57661689233237, + 47.42634445659467 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 47.42634445659467 + ], + [ + 63.34693152536501, + 47.42634445659467 + ], + [ + 63.46177420884869, + 47.23169672166622 + ], + [ + 63.57661689233237, + 47.42634445659467 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 47.42634445659467 + ], + [ + 63.46177420884869, + 47.23169672166622 + ], + [ + 63.69145957581605, + 47.23169672166622 + ], + [ + 63.57661689233237, + 47.42634445659467 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 47.42634445659467 + ], + [ + 63.69145957581605, + 47.23169672166622 + ], + [ + 63.80630225929973, + 47.42634445659467 + ], + [ + 63.57661689233237, + 47.42634445659467 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 47.81563992645159 + ], + [ + 63.80630225929973, + 47.81563992645159 + ], + [ + 63.69145957581605, + 48.01028766138004 + ], + [ + 63.57661689233237, + 47.81563992645159 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 47.81563992645159 + ], + [ + 63.69145957581605, + 48.01028766138004 + ], + [ + 63.46177420884869, + 48.01028766138004 + ], + [ + 63.57661689233237, + 47.81563992645159 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 47.81563992645159 + ], + [ + 63.46177420884869, + 48.01028766138004 + ], + [ + 63.34693152536501, + 47.81563992645159 + ], + [ + 63.57661689233237, + 47.81563992645159 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 47.81563992645159 + ], + [ + 63.34693152536501, + 47.81563992645159 + ], + [ + 63.46177420884869, + 47.620992191523136 + ], + [ + 63.57661689233237, + 47.81563992645159 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 47.81563992645159 + ], + [ + 63.46177420884869, + 47.620992191523136 + ], + [ + 63.69145957581605, + 47.620992191523136 + ], + [ + 63.57661689233237, + 47.81563992645159 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.57661689233237, + 47.81563992645159 + ], + [ + 63.69145957581605, + 47.620992191523136 + ], + [ + 63.80630225929973, + 47.81563992645159 + ], + [ + 63.57661689233237, + 47.81563992645159 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 11.805808964687746 + ], + [ + 64.15083030975076, + 11.805808964687746 + ], + [ + 64.03598762626709, + 12.0004566996162 + ], + [ + 63.92114494278341, + 11.805808964687746 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 11.805808964687746 + ], + [ + 64.03598762626709, + 12.0004566996162 + ], + [ + 63.80630225929973, + 12.0004566996162 + ], + [ + 63.92114494278341, + 11.805808964687746 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 11.805808964687746 + ], + [ + 63.80630225929973, + 12.0004566996162 + ], + [ + 63.69145957581605, + 11.805808964687746 + ], + [ + 63.92114494278341, + 11.805808964687746 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 11.805808964687746 + ], + [ + 63.69145957581605, + 11.805808964687746 + ], + [ + 63.80630225929973, + 11.611161229759292 + ], + [ + 63.92114494278341, + 11.805808964687746 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 11.805808964687746 + ], + [ + 63.80630225929973, + 11.611161229759292 + ], + [ + 64.03598762626709, + 11.611161229759292 + ], + [ + 63.92114494278341, + 11.805808964687746 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 11.805808964687746 + ], + [ + 64.03598762626709, + 11.611161229759292 + ], + [ + 64.15083030975076, + 11.805808964687746 + ], + [ + 63.92114494278341, + 11.805808964687746 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 12.195104434544652 + ], + [ + 64.15083030975076, + 12.195104434544652 + ], + [ + 64.03598762626709, + 12.389752169473105 + ], + [ + 63.92114494278341, + 12.195104434544652 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 12.195104434544652 + ], + [ + 64.03598762626709, + 12.389752169473105 + ], + [ + 63.80630225929973, + 12.389752169473105 + ], + [ + 63.92114494278341, + 12.195104434544652 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 12.195104434544652 + ], + [ + 63.80630225929973, + 12.389752169473105 + ], + [ + 63.69145957581605, + 12.195104434544652 + ], + [ + 63.92114494278341, + 12.195104434544652 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 12.195104434544652 + ], + [ + 63.69145957581605, + 12.195104434544652 + ], + [ + 63.80630225929973, + 12.000456699616198 + ], + [ + 63.92114494278341, + 12.195104434544652 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 12.195104434544652 + ], + [ + 63.80630225929973, + 12.000456699616198 + ], + [ + 64.03598762626709, + 12.000456699616198 + ], + [ + 63.92114494278341, + 12.195104434544652 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 12.195104434544652 + ], + [ + 64.03598762626709, + 12.000456699616198 + ], + [ + 64.15083030975076, + 12.195104434544652 + ], + [ + 63.92114494278341, + 12.195104434544652 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 12.58439990440156 + ], + [ + 64.15083030975076, + 12.58439990440156 + ], + [ + 64.03598762626709, + 12.779047639330013 + ], + [ + 63.92114494278341, + 12.58439990440156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 12.58439990440156 + ], + [ + 64.03598762626709, + 12.779047639330013 + ], + [ + 63.80630225929973, + 12.779047639330013 + ], + [ + 63.92114494278341, + 12.58439990440156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 12.58439990440156 + ], + [ + 63.80630225929973, + 12.779047639330013 + ], + [ + 63.69145957581605, + 12.58439990440156 + ], + [ + 63.92114494278341, + 12.58439990440156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 12.58439990440156 + ], + [ + 63.69145957581605, + 12.58439990440156 + ], + [ + 63.80630225929973, + 12.389752169473105 + ], + [ + 63.92114494278341, + 12.58439990440156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 12.58439990440156 + ], + [ + 63.80630225929973, + 12.389752169473105 + ], + [ + 64.03598762626709, + 12.389752169473105 + ], + [ + 63.92114494278341, + 12.58439990440156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 12.58439990440156 + ], + [ + 64.03598762626709, + 12.389752169473105 + ], + [ + 64.15083030975076, + 12.58439990440156 + ], + [ + 63.92114494278341, + 12.58439990440156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 12.973695374258465 + ], + [ + 64.15083030975076, + 12.973695374258465 + ], + [ + 64.03598762626709, + 13.16834310918692 + ], + [ + 63.92114494278341, + 12.973695374258465 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 12.973695374258465 + ], + [ + 64.03598762626709, + 13.16834310918692 + ], + [ + 63.80630225929973, + 13.16834310918692 + ], + [ + 63.92114494278341, + 12.973695374258465 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 12.973695374258465 + ], + [ + 63.80630225929973, + 13.16834310918692 + ], + [ + 63.69145957581605, + 12.973695374258465 + ], + [ + 63.92114494278341, + 12.973695374258465 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 12.973695374258465 + ], + [ + 63.69145957581605, + 12.973695374258465 + ], + [ + 63.80630225929973, + 12.779047639330011 + ], + [ + 63.92114494278341, + 12.973695374258465 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 12.973695374258465 + ], + [ + 63.80630225929973, + 12.779047639330011 + ], + [ + 64.03598762626709, + 12.779047639330011 + ], + [ + 63.92114494278341, + 12.973695374258465 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 12.973695374258465 + ], + [ + 64.03598762626709, + 12.779047639330011 + ], + [ + 64.15083030975076, + 12.973695374258465 + ], + [ + 63.92114494278341, + 12.973695374258465 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 13.362990844115371 + ], + [ + 64.15083030975076, + 13.362990844115371 + ], + [ + 64.03598762626709, + 13.557638579043825 + ], + [ + 63.92114494278341, + 13.362990844115371 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 13.362990844115371 + ], + [ + 64.03598762626709, + 13.557638579043825 + ], + [ + 63.80630225929973, + 13.557638579043825 + ], + [ + 63.92114494278341, + 13.362990844115371 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 13.362990844115371 + ], + [ + 63.80630225929973, + 13.557638579043825 + ], + [ + 63.69145957581605, + 13.362990844115371 + ], + [ + 63.92114494278341, + 13.362990844115371 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 13.362990844115371 + ], + [ + 63.69145957581605, + 13.362990844115371 + ], + [ + 63.80630225929973, + 13.168343109186917 + ], + [ + 63.92114494278341, + 13.362990844115371 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 13.362990844115371 + ], + [ + 63.80630225929973, + 13.168343109186917 + ], + [ + 64.03598762626709, + 13.168343109186917 + ], + [ + 63.92114494278341, + 13.362990844115371 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 13.362990844115371 + ], + [ + 64.03598762626709, + 13.168343109186917 + ], + [ + 64.15083030975076, + 13.362990844115371 + ], + [ + 63.92114494278341, + 13.362990844115371 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 13.752286313972277 + ], + [ + 64.15083030975076, + 13.752286313972277 + ], + [ + 64.03598762626709, + 13.946934048900731 + ], + [ + 63.92114494278341, + 13.752286313972277 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 13.752286313972277 + ], + [ + 64.03598762626709, + 13.946934048900731 + ], + [ + 63.80630225929973, + 13.946934048900731 + ], + [ + 63.92114494278341, + 13.752286313972277 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 13.752286313972277 + ], + [ + 63.80630225929973, + 13.946934048900731 + ], + [ + 63.69145957581605, + 13.752286313972277 + ], + [ + 63.92114494278341, + 13.752286313972277 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 13.752286313972277 + ], + [ + 63.69145957581605, + 13.752286313972277 + ], + [ + 63.80630225929973, + 13.557638579043823 + ], + [ + 63.92114494278341, + 13.752286313972277 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 13.752286313972277 + ], + [ + 63.80630225929973, + 13.557638579043823 + ], + [ + 64.03598762626709, + 13.557638579043823 + ], + [ + 63.92114494278341, + 13.752286313972277 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 13.752286313972277 + ], + [ + 64.03598762626709, + 13.557638579043823 + ], + [ + 64.15083030975076, + 13.752286313972277 + ], + [ + 63.92114494278341, + 13.752286313972277 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 14.141581783829183 + ], + [ + 64.15083030975076, + 14.141581783829183 + ], + [ + 64.03598762626709, + 14.336229518757637 + ], + [ + 63.92114494278341, + 14.141581783829183 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 14.141581783829183 + ], + [ + 64.03598762626709, + 14.336229518757637 + ], + [ + 63.80630225929973, + 14.336229518757637 + ], + [ + 63.92114494278341, + 14.141581783829183 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 14.141581783829183 + ], + [ + 63.80630225929973, + 14.336229518757637 + ], + [ + 63.69145957581605, + 14.141581783829183 + ], + [ + 63.92114494278341, + 14.141581783829183 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 14.141581783829183 + ], + [ + 63.69145957581605, + 14.141581783829183 + ], + [ + 63.80630225929973, + 13.94693404890073 + ], + [ + 63.92114494278341, + 14.141581783829183 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 14.141581783829183 + ], + [ + 63.80630225929973, + 13.94693404890073 + ], + [ + 64.03598762626709, + 13.94693404890073 + ], + [ + 63.92114494278341, + 14.141581783829183 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 14.141581783829183 + ], + [ + 64.03598762626709, + 13.94693404890073 + ], + [ + 64.15083030975076, + 14.141581783829183 + ], + [ + 63.92114494278341, + 14.141581783829183 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 14.530877253686091 + ], + [ + 64.15083030975076, + 14.530877253686091 + ], + [ + 64.03598762626709, + 14.725524988614545 + ], + [ + 63.92114494278341, + 14.530877253686091 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 14.530877253686091 + ], + [ + 64.03598762626709, + 14.725524988614545 + ], + [ + 63.80630225929973, + 14.725524988614545 + ], + [ + 63.92114494278341, + 14.530877253686091 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 14.530877253686091 + ], + [ + 63.80630225929973, + 14.725524988614545 + ], + [ + 63.69145957581605, + 14.530877253686091 + ], + [ + 63.92114494278341, + 14.530877253686091 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 14.530877253686091 + ], + [ + 63.69145957581605, + 14.530877253686091 + ], + [ + 63.80630225929973, + 14.336229518757637 + ], + [ + 63.92114494278341, + 14.530877253686091 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 14.530877253686091 + ], + [ + 63.80630225929973, + 14.336229518757637 + ], + [ + 64.03598762626709, + 14.336229518757637 + ], + [ + 63.92114494278341, + 14.530877253686091 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 14.530877253686091 + ], + [ + 64.03598762626709, + 14.336229518757637 + ], + [ + 64.15083030975076, + 14.530877253686091 + ], + [ + 63.92114494278341, + 14.530877253686091 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 14.920172723542997 + ], + [ + 64.15083030975076, + 14.920172723542997 + ], + [ + 64.03598762626709, + 15.114820458471451 + ], + [ + 63.92114494278341, + 14.920172723542997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 14.920172723542997 + ], + [ + 64.03598762626709, + 15.114820458471451 + ], + [ + 63.80630225929973, + 15.114820458471451 + ], + [ + 63.92114494278341, + 14.920172723542997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 14.920172723542997 + ], + [ + 63.80630225929973, + 15.114820458471451 + ], + [ + 63.69145957581605, + 14.920172723542997 + ], + [ + 63.92114494278341, + 14.920172723542997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 14.920172723542997 + ], + [ + 63.69145957581605, + 14.920172723542997 + ], + [ + 63.80630225929973, + 14.725524988614543 + ], + [ + 63.92114494278341, + 14.920172723542997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 14.920172723542997 + ], + [ + 63.80630225929973, + 14.725524988614543 + ], + [ + 64.03598762626709, + 14.725524988614543 + ], + [ + 63.92114494278341, + 14.920172723542997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 14.920172723542997 + ], + [ + 64.03598762626709, + 14.725524988614543 + ], + [ + 64.15083030975076, + 14.920172723542997 + ], + [ + 63.92114494278341, + 14.920172723542997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 15.309468193399903 + ], + [ + 64.15083030975076, + 15.309468193399903 + ], + [ + 64.03598762626709, + 15.504115928328357 + ], + [ + 63.92114494278341, + 15.309468193399903 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 15.309468193399903 + ], + [ + 64.03598762626709, + 15.504115928328357 + ], + [ + 63.80630225929973, + 15.504115928328357 + ], + [ + 63.92114494278341, + 15.309468193399903 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 15.309468193399903 + ], + [ + 63.80630225929973, + 15.504115928328357 + ], + [ + 63.69145957581605, + 15.309468193399903 + ], + [ + 63.92114494278341, + 15.309468193399903 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 15.309468193399903 + ], + [ + 63.69145957581605, + 15.309468193399903 + ], + [ + 63.80630225929973, + 15.11482045847145 + ], + [ + 63.92114494278341, + 15.309468193399903 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 15.309468193399903 + ], + [ + 63.80630225929973, + 15.11482045847145 + ], + [ + 64.03598762626709, + 15.11482045847145 + ], + [ + 63.92114494278341, + 15.309468193399903 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 15.309468193399903 + ], + [ + 64.03598762626709, + 15.11482045847145 + ], + [ + 64.15083030975076, + 15.309468193399903 + ], + [ + 63.92114494278341, + 15.309468193399903 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 15.69876366325681 + ], + [ + 64.15083030975076, + 15.69876366325681 + ], + [ + 64.03598762626709, + 15.893411398185265 + ], + [ + 63.92114494278341, + 15.69876366325681 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 15.69876366325681 + ], + [ + 64.03598762626709, + 15.893411398185265 + ], + [ + 63.80630225929973, + 15.893411398185265 + ], + [ + 63.92114494278341, + 15.69876366325681 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 15.69876366325681 + ], + [ + 63.80630225929973, + 15.893411398185265 + ], + [ + 63.69145957581605, + 15.69876366325681 + ], + [ + 63.92114494278341, + 15.69876366325681 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 15.69876366325681 + ], + [ + 63.69145957581605, + 15.69876366325681 + ], + [ + 63.80630225929973, + 15.504115928328357 + ], + [ + 63.92114494278341, + 15.69876366325681 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 15.69876366325681 + ], + [ + 63.80630225929973, + 15.504115928328357 + ], + [ + 64.03598762626709, + 15.504115928328357 + ], + [ + 63.92114494278341, + 15.69876366325681 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 15.69876366325681 + ], + [ + 64.03598762626709, + 15.504115928328357 + ], + [ + 64.15083030975076, + 15.69876366325681 + ], + [ + 63.92114494278341, + 15.69876366325681 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 16.088059133113717 + ], + [ + 64.15083030975076, + 16.088059133113717 + ], + [ + 64.03598762626709, + 16.28270686804217 + ], + [ + 63.92114494278341, + 16.088059133113717 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 16.088059133113717 + ], + [ + 64.03598762626709, + 16.28270686804217 + ], + [ + 63.80630225929973, + 16.28270686804217 + ], + [ + 63.92114494278341, + 16.088059133113717 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 16.088059133113717 + ], + [ + 63.80630225929973, + 16.28270686804217 + ], + [ + 63.69145957581605, + 16.088059133113717 + ], + [ + 63.92114494278341, + 16.088059133113717 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 16.088059133113717 + ], + [ + 63.69145957581605, + 16.088059133113717 + ], + [ + 63.80630225929973, + 15.893411398185263 + ], + [ + 63.92114494278341, + 16.088059133113717 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 16.088059133113717 + ], + [ + 63.80630225929973, + 15.893411398185263 + ], + [ + 64.03598762626709, + 15.893411398185263 + ], + [ + 63.92114494278341, + 16.088059133113717 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 16.088059133113717 + ], + [ + 64.03598762626709, + 15.893411398185263 + ], + [ + 64.15083030975076, + 16.088059133113717 + ], + [ + 63.92114494278341, + 16.088059133113717 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 16.477354602970625 + ], + [ + 64.15083030975076, + 16.477354602970625 + ], + [ + 64.03598762626709, + 16.672002337899077 + ], + [ + 63.92114494278341, + 16.477354602970625 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 16.477354602970625 + ], + [ + 64.03598762626709, + 16.672002337899077 + ], + [ + 63.80630225929973, + 16.672002337899077 + ], + [ + 63.92114494278341, + 16.477354602970625 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 16.477354602970625 + ], + [ + 63.80630225929973, + 16.672002337899077 + ], + [ + 63.69145957581605, + 16.477354602970625 + ], + [ + 63.92114494278341, + 16.477354602970625 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 16.477354602970625 + ], + [ + 63.69145957581605, + 16.477354602970625 + ], + [ + 63.80630225929973, + 16.282706868042172 + ], + [ + 63.92114494278341, + 16.477354602970625 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 16.477354602970625 + ], + [ + 63.80630225929973, + 16.282706868042172 + ], + [ + 64.03598762626709, + 16.282706868042172 + ], + [ + 63.92114494278341, + 16.477354602970625 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 16.477354602970625 + ], + [ + 64.03598762626709, + 16.282706868042172 + ], + [ + 64.15083030975076, + 16.477354602970625 + ], + [ + 63.92114494278341, + 16.477354602970625 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 16.86665007282753 + ], + [ + 64.15083030975076, + 16.86665007282753 + ], + [ + 64.03598762626709, + 17.06129780775598 + ], + [ + 63.92114494278341, + 16.86665007282753 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 16.86665007282753 + ], + [ + 64.03598762626709, + 17.06129780775598 + ], + [ + 63.80630225929973, + 17.06129780775598 + ], + [ + 63.92114494278341, + 16.86665007282753 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 16.86665007282753 + ], + [ + 63.80630225929973, + 17.06129780775598 + ], + [ + 63.69145957581605, + 16.86665007282753 + ], + [ + 63.92114494278341, + 16.86665007282753 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 16.86665007282753 + ], + [ + 63.69145957581605, + 16.86665007282753 + ], + [ + 63.80630225929973, + 16.672002337899077 + ], + [ + 63.92114494278341, + 16.86665007282753 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 16.86665007282753 + ], + [ + 63.80630225929973, + 16.672002337899077 + ], + [ + 64.03598762626709, + 16.672002337899077 + ], + [ + 63.92114494278341, + 16.86665007282753 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 16.86665007282753 + ], + [ + 64.03598762626709, + 16.672002337899077 + ], + [ + 64.15083030975076, + 16.86665007282753 + ], + [ + 63.92114494278341, + 16.86665007282753 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 17.255945542684437 + ], + [ + 64.15083030975076, + 17.255945542684437 + ], + [ + 64.03598762626709, + 17.45059327761289 + ], + [ + 63.92114494278341, + 17.255945542684437 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 17.255945542684437 + ], + [ + 64.03598762626709, + 17.45059327761289 + ], + [ + 63.80630225929973, + 17.45059327761289 + ], + [ + 63.92114494278341, + 17.255945542684437 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 17.255945542684437 + ], + [ + 63.80630225929973, + 17.45059327761289 + ], + [ + 63.69145957581605, + 17.255945542684437 + ], + [ + 63.92114494278341, + 17.255945542684437 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 17.255945542684437 + ], + [ + 63.69145957581605, + 17.255945542684437 + ], + [ + 63.80630225929973, + 17.061297807755984 + ], + [ + 63.92114494278341, + 17.255945542684437 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 17.255945542684437 + ], + [ + 63.80630225929973, + 17.061297807755984 + ], + [ + 64.03598762626709, + 17.061297807755984 + ], + [ + 63.92114494278341, + 17.255945542684437 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 17.255945542684437 + ], + [ + 64.03598762626709, + 17.061297807755984 + ], + [ + 64.15083030975076, + 17.255945542684437 + ], + [ + 63.92114494278341, + 17.255945542684437 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 17.64524101254134 + ], + [ + 64.15083030975076, + 17.64524101254134 + ], + [ + 64.03598762626709, + 17.839888747469793 + ], + [ + 63.92114494278341, + 17.64524101254134 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 17.64524101254134 + ], + [ + 64.03598762626709, + 17.839888747469793 + ], + [ + 63.80630225929973, + 17.839888747469793 + ], + [ + 63.92114494278341, + 17.64524101254134 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 17.64524101254134 + ], + [ + 63.80630225929973, + 17.839888747469793 + ], + [ + 63.69145957581605, + 17.64524101254134 + ], + [ + 63.92114494278341, + 17.64524101254134 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 17.64524101254134 + ], + [ + 63.69145957581605, + 17.64524101254134 + ], + [ + 63.80630225929973, + 17.45059327761289 + ], + [ + 63.92114494278341, + 17.64524101254134 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 17.64524101254134 + ], + [ + 63.80630225929973, + 17.45059327761289 + ], + [ + 64.03598762626709, + 17.45059327761289 + ], + [ + 63.92114494278341, + 17.64524101254134 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 17.64524101254134 + ], + [ + 64.03598762626709, + 17.45059327761289 + ], + [ + 64.15083030975076, + 17.64524101254134 + ], + [ + 63.92114494278341, + 17.64524101254134 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 18.03453648239825 + ], + [ + 64.15083030975076, + 18.03453648239825 + ], + [ + 64.03598762626709, + 18.2291842173267 + ], + [ + 63.92114494278341, + 18.03453648239825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 18.03453648239825 + ], + [ + 64.03598762626709, + 18.2291842173267 + ], + [ + 63.80630225929973, + 18.2291842173267 + ], + [ + 63.92114494278341, + 18.03453648239825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 18.03453648239825 + ], + [ + 63.80630225929973, + 18.2291842173267 + ], + [ + 63.69145957581605, + 18.03453648239825 + ], + [ + 63.92114494278341, + 18.03453648239825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 18.03453648239825 + ], + [ + 63.69145957581605, + 18.03453648239825 + ], + [ + 63.80630225929973, + 17.839888747469796 + ], + [ + 63.92114494278341, + 18.03453648239825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 18.03453648239825 + ], + [ + 63.80630225929973, + 17.839888747469796 + ], + [ + 64.03598762626709, + 17.839888747469796 + ], + [ + 63.92114494278341, + 18.03453648239825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 18.03453648239825 + ], + [ + 64.03598762626709, + 17.839888747469796 + ], + [ + 64.15083030975076, + 18.03453648239825 + ], + [ + 63.92114494278341, + 18.03453648239825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 18.423831952255156 + ], + [ + 64.15083030975076, + 18.423831952255156 + ], + [ + 64.03598762626709, + 18.61847968718361 + ], + [ + 63.92114494278341, + 18.423831952255156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 18.423831952255156 + ], + [ + 64.03598762626709, + 18.61847968718361 + ], + [ + 63.80630225929973, + 18.61847968718361 + ], + [ + 63.92114494278341, + 18.423831952255156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 18.423831952255156 + ], + [ + 63.80630225929973, + 18.61847968718361 + ], + [ + 63.69145957581605, + 18.423831952255156 + ], + [ + 63.92114494278341, + 18.423831952255156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 18.423831952255156 + ], + [ + 63.69145957581605, + 18.423831952255156 + ], + [ + 63.80630225929973, + 18.229184217326704 + ], + [ + 63.92114494278341, + 18.423831952255156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 18.423831952255156 + ], + [ + 63.80630225929973, + 18.229184217326704 + ], + [ + 64.03598762626709, + 18.229184217326704 + ], + [ + 63.92114494278341, + 18.423831952255156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 18.423831952255156 + ], + [ + 64.03598762626709, + 18.229184217326704 + ], + [ + 64.15083030975076, + 18.423831952255156 + ], + [ + 63.92114494278341, + 18.423831952255156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 18.81312742211206 + ], + [ + 64.15083030975076, + 18.81312742211206 + ], + [ + 64.03598762626709, + 19.007775157040513 + ], + [ + 63.92114494278341, + 18.81312742211206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 18.81312742211206 + ], + [ + 64.03598762626709, + 19.007775157040513 + ], + [ + 63.80630225929973, + 19.007775157040513 + ], + [ + 63.92114494278341, + 18.81312742211206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 18.81312742211206 + ], + [ + 63.80630225929973, + 19.007775157040513 + ], + [ + 63.69145957581605, + 18.81312742211206 + ], + [ + 63.92114494278341, + 18.81312742211206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 18.81312742211206 + ], + [ + 63.69145957581605, + 18.81312742211206 + ], + [ + 63.80630225929973, + 18.61847968718361 + ], + [ + 63.92114494278341, + 18.81312742211206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 18.81312742211206 + ], + [ + 63.80630225929973, + 18.61847968718361 + ], + [ + 64.03598762626709, + 18.61847968718361 + ], + [ + 63.92114494278341, + 18.81312742211206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 18.81312742211206 + ], + [ + 64.03598762626709, + 18.61847968718361 + ], + [ + 64.15083030975076, + 18.81312742211206 + ], + [ + 63.92114494278341, + 18.81312742211206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 19.20242289196897 + ], + [ + 64.15083030975076, + 19.20242289196897 + ], + [ + 64.03598762626709, + 19.39707062689742 + ], + [ + 63.92114494278341, + 19.20242289196897 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 19.20242289196897 + ], + [ + 64.03598762626709, + 19.39707062689742 + ], + [ + 63.80630225929973, + 19.39707062689742 + ], + [ + 63.92114494278341, + 19.20242289196897 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 19.20242289196897 + ], + [ + 63.80630225929973, + 19.39707062689742 + ], + [ + 63.69145957581605, + 19.20242289196897 + ], + [ + 63.92114494278341, + 19.20242289196897 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 19.20242289196897 + ], + [ + 63.69145957581605, + 19.20242289196897 + ], + [ + 63.80630225929973, + 19.007775157040516 + ], + [ + 63.92114494278341, + 19.20242289196897 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 19.20242289196897 + ], + [ + 63.80630225929973, + 19.007775157040516 + ], + [ + 64.03598762626709, + 19.007775157040516 + ], + [ + 63.92114494278341, + 19.20242289196897 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 19.20242289196897 + ], + [ + 64.03598762626709, + 19.007775157040516 + ], + [ + 64.15083030975076, + 19.20242289196897 + ], + [ + 63.92114494278341, + 19.20242289196897 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 19.591718361825876 + ], + [ + 64.15083030975076, + 19.591718361825876 + ], + [ + 64.03598762626709, + 19.78636609675433 + ], + [ + 63.92114494278341, + 19.591718361825876 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 19.591718361825876 + ], + [ + 64.03598762626709, + 19.78636609675433 + ], + [ + 63.80630225929973, + 19.78636609675433 + ], + [ + 63.92114494278341, + 19.591718361825876 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 19.591718361825876 + ], + [ + 63.80630225929973, + 19.78636609675433 + ], + [ + 63.69145957581605, + 19.591718361825876 + ], + [ + 63.92114494278341, + 19.591718361825876 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 19.591718361825876 + ], + [ + 63.69145957581605, + 19.591718361825876 + ], + [ + 63.80630225929973, + 19.397070626897424 + ], + [ + 63.92114494278341, + 19.591718361825876 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 19.591718361825876 + ], + [ + 63.80630225929973, + 19.397070626897424 + ], + [ + 64.03598762626709, + 19.397070626897424 + ], + [ + 63.92114494278341, + 19.591718361825876 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 19.591718361825876 + ], + [ + 64.03598762626709, + 19.397070626897424 + ], + [ + 64.15083030975076, + 19.591718361825876 + ], + [ + 63.92114494278341, + 19.591718361825876 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 19.98101383168278 + ], + [ + 64.15083030975076, + 19.98101383168278 + ], + [ + 64.03598762626709, + 20.175661566611232 + ], + [ + 63.92114494278341, + 19.98101383168278 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 19.98101383168278 + ], + [ + 64.03598762626709, + 20.175661566611232 + ], + [ + 63.80630225929973, + 20.175661566611232 + ], + [ + 63.92114494278341, + 19.98101383168278 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 19.98101383168278 + ], + [ + 63.80630225929973, + 20.175661566611232 + ], + [ + 63.69145957581605, + 19.98101383168278 + ], + [ + 63.92114494278341, + 19.98101383168278 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 19.98101383168278 + ], + [ + 63.69145957581605, + 19.98101383168278 + ], + [ + 63.80630225929973, + 19.78636609675433 + ], + [ + 63.92114494278341, + 19.98101383168278 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 19.98101383168278 + ], + [ + 63.80630225929973, + 19.78636609675433 + ], + [ + 64.03598762626709, + 19.78636609675433 + ], + [ + 63.92114494278341, + 19.98101383168278 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 19.98101383168278 + ], + [ + 64.03598762626709, + 19.78636609675433 + ], + [ + 64.15083030975076, + 19.98101383168278 + ], + [ + 63.92114494278341, + 19.98101383168278 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 20.370309301539685 + ], + [ + 64.15083030975076, + 20.370309301539685 + ], + [ + 64.03598762626709, + 20.564957036468137 + ], + [ + 63.92114494278341, + 20.370309301539685 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 20.370309301539685 + ], + [ + 64.03598762626709, + 20.564957036468137 + ], + [ + 63.80630225929973, + 20.564957036468137 + ], + [ + 63.92114494278341, + 20.370309301539685 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 20.370309301539685 + ], + [ + 63.80630225929973, + 20.564957036468137 + ], + [ + 63.69145957581605, + 20.370309301539685 + ], + [ + 63.92114494278341, + 20.370309301539685 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 20.370309301539685 + ], + [ + 63.69145957581605, + 20.370309301539685 + ], + [ + 63.80630225929973, + 20.175661566611232 + ], + [ + 63.92114494278341, + 20.370309301539685 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 20.370309301539685 + ], + [ + 63.80630225929973, + 20.175661566611232 + ], + [ + 64.03598762626709, + 20.175661566611232 + ], + [ + 63.92114494278341, + 20.370309301539685 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 20.370309301539685 + ], + [ + 64.03598762626709, + 20.175661566611232 + ], + [ + 64.15083030975076, + 20.370309301539685 + ], + [ + 63.92114494278341, + 20.370309301539685 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 20.759604771396592 + ], + [ + 64.15083030975076, + 20.759604771396592 + ], + [ + 64.03598762626709, + 20.954252506325044 + ], + [ + 63.92114494278341, + 20.759604771396592 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 20.759604771396592 + ], + [ + 64.03598762626709, + 20.954252506325044 + ], + [ + 63.80630225929973, + 20.954252506325044 + ], + [ + 63.92114494278341, + 20.759604771396592 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 20.759604771396592 + ], + [ + 63.80630225929973, + 20.954252506325044 + ], + [ + 63.69145957581605, + 20.759604771396592 + ], + [ + 63.92114494278341, + 20.759604771396592 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 20.759604771396592 + ], + [ + 63.69145957581605, + 20.759604771396592 + ], + [ + 63.80630225929973, + 20.56495703646814 + ], + [ + 63.92114494278341, + 20.759604771396592 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 20.759604771396592 + ], + [ + 63.80630225929973, + 20.56495703646814 + ], + [ + 64.03598762626709, + 20.56495703646814 + ], + [ + 63.92114494278341, + 20.759604771396592 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 20.759604771396592 + ], + [ + 64.03598762626709, + 20.56495703646814 + ], + [ + 64.15083030975076, + 20.759604771396592 + ], + [ + 63.92114494278341, + 20.759604771396592 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 21.1489002412535 + ], + [ + 64.15083030975076, + 21.1489002412535 + ], + [ + 64.03598762626709, + 21.343547976181952 + ], + [ + 63.92114494278341, + 21.1489002412535 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 21.1489002412535 + ], + [ + 64.03598762626709, + 21.343547976181952 + ], + [ + 63.80630225929973, + 21.343547976181952 + ], + [ + 63.92114494278341, + 21.1489002412535 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 21.1489002412535 + ], + [ + 63.80630225929973, + 21.343547976181952 + ], + [ + 63.69145957581605, + 21.1489002412535 + ], + [ + 63.92114494278341, + 21.1489002412535 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 21.1489002412535 + ], + [ + 63.69145957581605, + 21.1489002412535 + ], + [ + 63.80630225929973, + 20.954252506325048 + ], + [ + 63.92114494278341, + 21.1489002412535 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 21.1489002412535 + ], + [ + 63.80630225929973, + 20.954252506325048 + ], + [ + 64.03598762626709, + 20.954252506325048 + ], + [ + 63.92114494278341, + 21.1489002412535 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 21.1489002412535 + ], + [ + 64.03598762626709, + 20.954252506325048 + ], + [ + 64.15083030975076, + 21.1489002412535 + ], + [ + 63.92114494278341, + 21.1489002412535 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 21.538195711110404 + ], + [ + 64.15083030975076, + 21.538195711110404 + ], + [ + 64.03598762626709, + 21.732843446038856 + ], + [ + 63.92114494278341, + 21.538195711110404 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 21.538195711110404 + ], + [ + 64.03598762626709, + 21.732843446038856 + ], + [ + 63.80630225929973, + 21.732843446038856 + ], + [ + 63.92114494278341, + 21.538195711110404 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 21.538195711110404 + ], + [ + 63.80630225929973, + 21.732843446038856 + ], + [ + 63.69145957581605, + 21.538195711110404 + ], + [ + 63.92114494278341, + 21.538195711110404 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 21.538195711110404 + ], + [ + 63.69145957581605, + 21.538195711110404 + ], + [ + 63.80630225929973, + 21.343547976181952 + ], + [ + 63.92114494278341, + 21.538195711110404 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 21.538195711110404 + ], + [ + 63.80630225929973, + 21.343547976181952 + ], + [ + 64.03598762626709, + 21.343547976181952 + ], + [ + 63.92114494278341, + 21.538195711110404 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 21.538195711110404 + ], + [ + 64.03598762626709, + 21.343547976181952 + ], + [ + 64.15083030975076, + 21.538195711110404 + ], + [ + 63.92114494278341, + 21.538195711110404 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 21.927491180967312 + ], + [ + 64.15083030975076, + 21.927491180967312 + ], + [ + 64.03598762626709, + 22.122138915895764 + ], + [ + 63.92114494278341, + 21.927491180967312 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 21.927491180967312 + ], + [ + 64.03598762626709, + 22.122138915895764 + ], + [ + 63.80630225929973, + 22.122138915895764 + ], + [ + 63.92114494278341, + 21.927491180967312 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 21.927491180967312 + ], + [ + 63.80630225929973, + 22.122138915895764 + ], + [ + 63.69145957581605, + 21.927491180967312 + ], + [ + 63.92114494278341, + 21.927491180967312 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 21.927491180967312 + ], + [ + 63.69145957581605, + 21.927491180967312 + ], + [ + 63.80630225929973, + 21.73284344603886 + ], + [ + 63.92114494278341, + 21.927491180967312 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 21.927491180967312 + ], + [ + 63.80630225929973, + 21.73284344603886 + ], + [ + 64.03598762626709, + 21.73284344603886 + ], + [ + 63.92114494278341, + 21.927491180967312 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 21.927491180967312 + ], + [ + 64.03598762626709, + 21.73284344603886 + ], + [ + 64.15083030975076, + 21.927491180967312 + ], + [ + 63.92114494278341, + 21.927491180967312 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 22.31678665082422 + ], + [ + 64.15083030975076, + 22.31678665082422 + ], + [ + 64.03598762626709, + 22.511434385752672 + ], + [ + 63.92114494278341, + 22.31678665082422 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 22.31678665082422 + ], + [ + 64.03598762626709, + 22.511434385752672 + ], + [ + 63.80630225929973, + 22.511434385752672 + ], + [ + 63.92114494278341, + 22.31678665082422 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 22.31678665082422 + ], + [ + 63.80630225929973, + 22.511434385752672 + ], + [ + 63.69145957581605, + 22.31678665082422 + ], + [ + 63.92114494278341, + 22.31678665082422 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 22.31678665082422 + ], + [ + 63.69145957581605, + 22.31678665082422 + ], + [ + 63.80630225929973, + 22.122138915895768 + ], + [ + 63.92114494278341, + 22.31678665082422 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 22.31678665082422 + ], + [ + 63.80630225929973, + 22.122138915895768 + ], + [ + 64.03598762626709, + 22.122138915895768 + ], + [ + 63.92114494278341, + 22.31678665082422 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 22.31678665082422 + ], + [ + 64.03598762626709, + 22.122138915895768 + ], + [ + 64.15083030975076, + 22.31678665082422 + ], + [ + 63.92114494278341, + 22.31678665082422 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 22.706082120681124 + ], + [ + 64.15083030975076, + 22.706082120681124 + ], + [ + 64.03598762626709, + 22.900729855609576 + ], + [ + 63.92114494278341, + 22.706082120681124 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 22.706082120681124 + ], + [ + 64.03598762626709, + 22.900729855609576 + ], + [ + 63.80630225929973, + 22.900729855609576 + ], + [ + 63.92114494278341, + 22.706082120681124 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 22.706082120681124 + ], + [ + 63.80630225929973, + 22.900729855609576 + ], + [ + 63.69145957581605, + 22.706082120681124 + ], + [ + 63.92114494278341, + 22.706082120681124 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 22.706082120681124 + ], + [ + 63.69145957581605, + 22.706082120681124 + ], + [ + 63.80630225929973, + 22.511434385752672 + ], + [ + 63.92114494278341, + 22.706082120681124 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 22.706082120681124 + ], + [ + 63.80630225929973, + 22.511434385752672 + ], + [ + 64.03598762626709, + 22.511434385752672 + ], + [ + 63.92114494278341, + 22.706082120681124 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 22.706082120681124 + ], + [ + 64.03598762626709, + 22.511434385752672 + ], + [ + 64.15083030975076, + 22.706082120681124 + ], + [ + 63.92114494278341, + 22.706082120681124 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 23.095377590538032 + ], + [ + 64.15083030975076, + 23.095377590538032 + ], + [ + 64.03598762626709, + 23.290025325466484 + ], + [ + 63.92114494278341, + 23.095377590538032 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 23.095377590538032 + ], + [ + 64.03598762626709, + 23.290025325466484 + ], + [ + 63.80630225929973, + 23.290025325466484 + ], + [ + 63.92114494278341, + 23.095377590538032 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 23.095377590538032 + ], + [ + 63.80630225929973, + 23.290025325466484 + ], + [ + 63.69145957581605, + 23.095377590538032 + ], + [ + 63.92114494278341, + 23.095377590538032 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 23.095377590538032 + ], + [ + 63.69145957581605, + 23.095377590538032 + ], + [ + 63.80630225929973, + 22.90072985560958 + ], + [ + 63.92114494278341, + 23.095377590538032 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 23.095377590538032 + ], + [ + 63.80630225929973, + 22.90072985560958 + ], + [ + 64.03598762626709, + 22.90072985560958 + ], + [ + 63.92114494278341, + 23.095377590538032 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 23.095377590538032 + ], + [ + 64.03598762626709, + 22.90072985560958 + ], + [ + 64.15083030975076, + 23.095377590538032 + ], + [ + 63.92114494278341, + 23.095377590538032 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 23.48467306039494 + ], + [ + 64.15083030975076, + 23.48467306039494 + ], + [ + 64.03598762626709, + 23.67932079532339 + ], + [ + 63.92114494278341, + 23.48467306039494 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 23.48467306039494 + ], + [ + 64.03598762626709, + 23.67932079532339 + ], + [ + 63.80630225929973, + 23.67932079532339 + ], + [ + 63.92114494278341, + 23.48467306039494 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 23.48467306039494 + ], + [ + 63.80630225929973, + 23.67932079532339 + ], + [ + 63.69145957581605, + 23.48467306039494 + ], + [ + 63.92114494278341, + 23.48467306039494 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 23.48467306039494 + ], + [ + 63.69145957581605, + 23.48467306039494 + ], + [ + 63.80630225929973, + 23.290025325466488 + ], + [ + 63.92114494278341, + 23.48467306039494 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 23.48467306039494 + ], + [ + 63.80630225929973, + 23.290025325466488 + ], + [ + 64.03598762626709, + 23.290025325466488 + ], + [ + 63.92114494278341, + 23.48467306039494 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 23.48467306039494 + ], + [ + 64.03598762626709, + 23.290025325466488 + ], + [ + 64.15083030975076, + 23.48467306039494 + ], + [ + 63.92114494278341, + 23.48467306039494 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 23.873968530251844 + ], + [ + 64.15083030975076, + 23.873968530251844 + ], + [ + 64.03598762626709, + 24.068616265180296 + ], + [ + 63.92114494278341, + 23.873968530251844 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 23.873968530251844 + ], + [ + 64.03598762626709, + 24.068616265180296 + ], + [ + 63.80630225929973, + 24.068616265180296 + ], + [ + 63.92114494278341, + 23.873968530251844 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 23.873968530251844 + ], + [ + 63.80630225929973, + 24.068616265180296 + ], + [ + 63.69145957581605, + 23.873968530251844 + ], + [ + 63.92114494278341, + 23.873968530251844 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 23.873968530251844 + ], + [ + 63.69145957581605, + 23.873968530251844 + ], + [ + 63.80630225929973, + 23.67932079532339 + ], + [ + 63.92114494278341, + 23.873968530251844 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 23.873968530251844 + ], + [ + 63.80630225929973, + 23.67932079532339 + ], + [ + 64.03598762626709, + 23.67932079532339 + ], + [ + 63.92114494278341, + 23.873968530251844 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 23.873968530251844 + ], + [ + 64.03598762626709, + 23.67932079532339 + ], + [ + 64.15083030975076, + 23.873968530251844 + ], + [ + 63.92114494278341, + 23.873968530251844 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 24.263264000108748 + ], + [ + 64.15083030975076, + 24.263264000108748 + ], + [ + 64.03598762626709, + 24.4579117350372 + ], + [ + 63.92114494278341, + 24.263264000108748 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 24.263264000108748 + ], + [ + 64.03598762626709, + 24.4579117350372 + ], + [ + 63.80630225929973, + 24.4579117350372 + ], + [ + 63.92114494278341, + 24.263264000108748 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 24.263264000108748 + ], + [ + 63.80630225929973, + 24.4579117350372 + ], + [ + 63.69145957581605, + 24.263264000108748 + ], + [ + 63.92114494278341, + 24.263264000108748 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 24.263264000108748 + ], + [ + 63.69145957581605, + 24.263264000108748 + ], + [ + 63.80630225929973, + 24.068616265180296 + ], + [ + 63.92114494278341, + 24.263264000108748 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 24.263264000108748 + ], + [ + 63.80630225929973, + 24.068616265180296 + ], + [ + 64.03598762626709, + 24.068616265180296 + ], + [ + 63.92114494278341, + 24.263264000108748 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 24.263264000108748 + ], + [ + 64.03598762626709, + 24.068616265180296 + ], + [ + 64.15083030975076, + 24.263264000108748 + ], + [ + 63.92114494278341, + 24.263264000108748 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 24.652559469965656 + ], + [ + 64.15083030975076, + 24.652559469965656 + ], + [ + 64.03598762626709, + 24.847207204894108 + ], + [ + 63.92114494278341, + 24.652559469965656 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 24.652559469965656 + ], + [ + 64.03598762626709, + 24.847207204894108 + ], + [ + 63.80630225929973, + 24.847207204894108 + ], + [ + 63.92114494278341, + 24.652559469965656 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 24.652559469965656 + ], + [ + 63.80630225929973, + 24.847207204894108 + ], + [ + 63.69145957581605, + 24.652559469965656 + ], + [ + 63.92114494278341, + 24.652559469965656 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 24.652559469965656 + ], + [ + 63.69145957581605, + 24.652559469965656 + ], + [ + 63.80630225929973, + 24.457911735037204 + ], + [ + 63.92114494278341, + 24.652559469965656 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 24.652559469965656 + ], + [ + 63.80630225929973, + 24.457911735037204 + ], + [ + 64.03598762626709, + 24.457911735037204 + ], + [ + 63.92114494278341, + 24.652559469965656 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 24.652559469965656 + ], + [ + 64.03598762626709, + 24.457911735037204 + ], + [ + 64.15083030975076, + 24.652559469965656 + ], + [ + 63.92114494278341, + 24.652559469965656 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 25.041854939822564 + ], + [ + 64.15083030975076, + 25.041854939822564 + ], + [ + 64.03598762626709, + 25.236502674751016 + ], + [ + 63.92114494278341, + 25.041854939822564 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 25.041854939822564 + ], + [ + 64.03598762626709, + 25.236502674751016 + ], + [ + 63.80630225929973, + 25.236502674751016 + ], + [ + 63.92114494278341, + 25.041854939822564 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 25.041854939822564 + ], + [ + 63.80630225929973, + 25.236502674751016 + ], + [ + 63.69145957581605, + 25.041854939822564 + ], + [ + 63.92114494278341, + 25.041854939822564 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 25.041854939822564 + ], + [ + 63.69145957581605, + 25.041854939822564 + ], + [ + 63.80630225929973, + 24.84720720489411 + ], + [ + 63.92114494278341, + 25.041854939822564 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 25.041854939822564 + ], + [ + 63.80630225929973, + 24.84720720489411 + ], + [ + 64.03598762626709, + 24.84720720489411 + ], + [ + 63.92114494278341, + 25.041854939822564 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 25.041854939822564 + ], + [ + 64.03598762626709, + 24.84720720489411 + ], + [ + 64.15083030975076, + 25.041854939822564 + ], + [ + 63.92114494278341, + 25.041854939822564 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 25.431150409679468 + ], + [ + 64.15083030975076, + 25.431150409679468 + ], + [ + 64.03598762626709, + 25.62579814460792 + ], + [ + 63.92114494278341, + 25.431150409679468 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 25.431150409679468 + ], + [ + 64.03598762626709, + 25.62579814460792 + ], + [ + 63.80630225929973, + 25.62579814460792 + ], + [ + 63.92114494278341, + 25.431150409679468 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 25.431150409679468 + ], + [ + 63.80630225929973, + 25.62579814460792 + ], + [ + 63.69145957581605, + 25.431150409679468 + ], + [ + 63.92114494278341, + 25.431150409679468 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 25.431150409679468 + ], + [ + 63.69145957581605, + 25.431150409679468 + ], + [ + 63.80630225929973, + 25.236502674751016 + ], + [ + 63.92114494278341, + 25.431150409679468 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 25.431150409679468 + ], + [ + 63.80630225929973, + 25.236502674751016 + ], + [ + 64.03598762626709, + 25.236502674751016 + ], + [ + 63.92114494278341, + 25.431150409679468 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 25.431150409679468 + ], + [ + 64.03598762626709, + 25.236502674751016 + ], + [ + 64.15083030975076, + 25.431150409679468 + ], + [ + 63.92114494278341, + 25.431150409679468 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 25.820445879536376 + ], + [ + 64.15083030975076, + 25.820445879536376 + ], + [ + 64.03598762626709, + 26.015093614464828 + ], + [ + 63.92114494278341, + 25.820445879536376 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 25.820445879536376 + ], + [ + 64.03598762626709, + 26.015093614464828 + ], + [ + 63.80630225929973, + 26.015093614464828 + ], + [ + 63.92114494278341, + 25.820445879536376 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 25.820445879536376 + ], + [ + 63.80630225929973, + 26.015093614464828 + ], + [ + 63.69145957581605, + 25.820445879536376 + ], + [ + 63.92114494278341, + 25.820445879536376 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 25.820445879536376 + ], + [ + 63.69145957581605, + 25.820445879536376 + ], + [ + 63.80630225929973, + 25.625798144607923 + ], + [ + 63.92114494278341, + 25.820445879536376 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 25.820445879536376 + ], + [ + 63.80630225929973, + 25.625798144607923 + ], + [ + 64.03598762626709, + 25.625798144607923 + ], + [ + 63.92114494278341, + 25.820445879536376 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 25.820445879536376 + ], + [ + 64.03598762626709, + 25.625798144607923 + ], + [ + 64.15083030975076, + 25.820445879536376 + ], + [ + 63.92114494278341, + 25.820445879536376 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 26.209741349393283 + ], + [ + 64.15083030975076, + 26.209741349393283 + ], + [ + 64.03598762626709, + 26.404389084321735 + ], + [ + 63.92114494278341, + 26.209741349393283 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 26.209741349393283 + ], + [ + 64.03598762626709, + 26.404389084321735 + ], + [ + 63.80630225929973, + 26.404389084321735 + ], + [ + 63.92114494278341, + 26.209741349393283 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 26.209741349393283 + ], + [ + 63.80630225929973, + 26.404389084321735 + ], + [ + 63.69145957581605, + 26.209741349393283 + ], + [ + 63.92114494278341, + 26.209741349393283 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 26.209741349393283 + ], + [ + 63.69145957581605, + 26.209741349393283 + ], + [ + 63.80630225929973, + 26.01509361446483 + ], + [ + 63.92114494278341, + 26.209741349393283 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 26.209741349393283 + ], + [ + 63.80630225929973, + 26.01509361446483 + ], + [ + 64.03598762626709, + 26.01509361446483 + ], + [ + 63.92114494278341, + 26.209741349393283 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 26.209741349393283 + ], + [ + 64.03598762626709, + 26.01509361446483 + ], + [ + 64.15083030975076, + 26.209741349393283 + ], + [ + 63.92114494278341, + 26.209741349393283 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 26.599036819250188 + ], + [ + 64.15083030975076, + 26.599036819250188 + ], + [ + 64.03598762626709, + 26.79368455417864 + ], + [ + 63.92114494278341, + 26.599036819250188 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 26.599036819250188 + ], + [ + 64.03598762626709, + 26.79368455417864 + ], + [ + 63.80630225929973, + 26.79368455417864 + ], + [ + 63.92114494278341, + 26.599036819250188 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 26.599036819250188 + ], + [ + 63.80630225929973, + 26.79368455417864 + ], + [ + 63.69145957581605, + 26.599036819250188 + ], + [ + 63.92114494278341, + 26.599036819250188 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 26.599036819250188 + ], + [ + 63.69145957581605, + 26.599036819250188 + ], + [ + 63.80630225929973, + 26.404389084321735 + ], + [ + 63.92114494278341, + 26.599036819250188 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 26.599036819250188 + ], + [ + 63.80630225929973, + 26.404389084321735 + ], + [ + 64.03598762626709, + 26.404389084321735 + ], + [ + 63.92114494278341, + 26.599036819250188 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 26.599036819250188 + ], + [ + 64.03598762626709, + 26.404389084321735 + ], + [ + 64.15083030975076, + 26.599036819250188 + ], + [ + 63.92114494278341, + 26.599036819250188 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 26.988332289107095 + ], + [ + 64.15083030975076, + 26.988332289107095 + ], + [ + 64.03598762626709, + 27.182980024035547 + ], + [ + 63.92114494278341, + 26.988332289107095 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 26.988332289107095 + ], + [ + 64.03598762626709, + 27.182980024035547 + ], + [ + 63.80630225929973, + 27.182980024035547 + ], + [ + 63.92114494278341, + 26.988332289107095 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 26.988332289107095 + ], + [ + 63.80630225929973, + 27.182980024035547 + ], + [ + 63.69145957581605, + 26.988332289107095 + ], + [ + 63.92114494278341, + 26.988332289107095 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 26.988332289107095 + ], + [ + 63.69145957581605, + 26.988332289107095 + ], + [ + 63.80630225929973, + 26.793684554178643 + ], + [ + 63.92114494278341, + 26.988332289107095 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 26.988332289107095 + ], + [ + 63.80630225929973, + 26.793684554178643 + ], + [ + 64.03598762626709, + 26.793684554178643 + ], + [ + 63.92114494278341, + 26.988332289107095 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 26.988332289107095 + ], + [ + 64.03598762626709, + 26.793684554178643 + ], + [ + 64.15083030975076, + 26.988332289107095 + ], + [ + 63.92114494278341, + 26.988332289107095 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 27.377627758964003 + ], + [ + 64.15083030975076, + 27.377627758964003 + ], + [ + 64.03598762626709, + 27.572275493892455 + ], + [ + 63.92114494278341, + 27.377627758964003 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 27.377627758964003 + ], + [ + 64.03598762626709, + 27.572275493892455 + ], + [ + 63.80630225929973, + 27.572275493892455 + ], + [ + 63.92114494278341, + 27.377627758964003 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 27.377627758964003 + ], + [ + 63.80630225929973, + 27.572275493892455 + ], + [ + 63.69145957581605, + 27.377627758964003 + ], + [ + 63.92114494278341, + 27.377627758964003 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 27.377627758964003 + ], + [ + 63.69145957581605, + 27.377627758964003 + ], + [ + 63.80630225929973, + 27.18298002403555 + ], + [ + 63.92114494278341, + 27.377627758964003 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 27.377627758964003 + ], + [ + 63.80630225929973, + 27.18298002403555 + ], + [ + 64.03598762626709, + 27.18298002403555 + ], + [ + 63.92114494278341, + 27.377627758964003 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 27.377627758964003 + ], + [ + 64.03598762626709, + 27.18298002403555 + ], + [ + 64.15083030975076, + 27.377627758964003 + ], + [ + 63.92114494278341, + 27.377627758964003 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 27.766923228820907 + ], + [ + 64.15083030975076, + 27.766923228820907 + ], + [ + 64.03598762626709, + 27.96157096374936 + ], + [ + 63.92114494278341, + 27.766923228820907 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 27.766923228820907 + ], + [ + 64.03598762626709, + 27.96157096374936 + ], + [ + 63.80630225929973, + 27.96157096374936 + ], + [ + 63.92114494278341, + 27.766923228820907 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 27.766923228820907 + ], + [ + 63.80630225929973, + 27.96157096374936 + ], + [ + 63.69145957581605, + 27.766923228820907 + ], + [ + 63.92114494278341, + 27.766923228820907 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 27.766923228820907 + ], + [ + 63.69145957581605, + 27.766923228820907 + ], + [ + 63.80630225929973, + 27.572275493892455 + ], + [ + 63.92114494278341, + 27.766923228820907 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 27.766923228820907 + ], + [ + 63.80630225929973, + 27.572275493892455 + ], + [ + 64.03598762626709, + 27.572275493892455 + ], + [ + 63.92114494278341, + 27.766923228820907 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 27.766923228820907 + ], + [ + 64.03598762626709, + 27.572275493892455 + ], + [ + 64.15083030975076, + 27.766923228820907 + ], + [ + 63.92114494278341, + 27.766923228820907 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 28.156218698677815 + ], + [ + 64.15083030975076, + 28.156218698677815 + ], + [ + 64.03598762626709, + 28.350866433606267 + ], + [ + 63.92114494278341, + 28.156218698677815 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 28.156218698677815 + ], + [ + 64.03598762626709, + 28.350866433606267 + ], + [ + 63.80630225929973, + 28.350866433606267 + ], + [ + 63.92114494278341, + 28.156218698677815 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 28.156218698677815 + ], + [ + 63.80630225929973, + 28.350866433606267 + ], + [ + 63.69145957581605, + 28.156218698677815 + ], + [ + 63.92114494278341, + 28.156218698677815 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 28.156218698677815 + ], + [ + 63.69145957581605, + 28.156218698677815 + ], + [ + 63.80630225929973, + 27.961570963749363 + ], + [ + 63.92114494278341, + 28.156218698677815 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 28.156218698677815 + ], + [ + 63.80630225929973, + 27.961570963749363 + ], + [ + 64.03598762626709, + 27.961570963749363 + ], + [ + 63.92114494278341, + 28.156218698677815 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 28.156218698677815 + ], + [ + 64.03598762626709, + 27.961570963749363 + ], + [ + 64.15083030975076, + 28.156218698677815 + ], + [ + 63.92114494278341, + 28.156218698677815 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 28.54551416853472 + ], + [ + 64.15083030975076, + 28.54551416853472 + ], + [ + 64.03598762626709, + 28.74016190346317 + ], + [ + 63.92114494278341, + 28.54551416853472 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 28.54551416853472 + ], + [ + 64.03598762626709, + 28.74016190346317 + ], + [ + 63.80630225929973, + 28.74016190346317 + ], + [ + 63.92114494278341, + 28.54551416853472 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 28.54551416853472 + ], + [ + 63.80630225929973, + 28.74016190346317 + ], + [ + 63.69145957581605, + 28.54551416853472 + ], + [ + 63.92114494278341, + 28.54551416853472 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 28.54551416853472 + ], + [ + 63.69145957581605, + 28.54551416853472 + ], + [ + 63.80630225929973, + 28.350866433606267 + ], + [ + 63.92114494278341, + 28.54551416853472 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 28.54551416853472 + ], + [ + 63.80630225929973, + 28.350866433606267 + ], + [ + 64.03598762626709, + 28.350866433606267 + ], + [ + 63.92114494278341, + 28.54551416853472 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 28.54551416853472 + ], + [ + 64.03598762626709, + 28.350866433606267 + ], + [ + 64.15083030975076, + 28.54551416853472 + ], + [ + 63.92114494278341, + 28.54551416853472 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 28.934809638391627 + ], + [ + 64.15083030975076, + 28.934809638391627 + ], + [ + 64.03598762626709, + 29.12945737332008 + ], + [ + 63.92114494278341, + 28.934809638391627 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 28.934809638391627 + ], + [ + 64.03598762626709, + 29.12945737332008 + ], + [ + 63.80630225929973, + 29.12945737332008 + ], + [ + 63.92114494278341, + 28.934809638391627 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 28.934809638391627 + ], + [ + 63.80630225929973, + 29.12945737332008 + ], + [ + 63.69145957581605, + 28.934809638391627 + ], + [ + 63.92114494278341, + 28.934809638391627 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 28.934809638391627 + ], + [ + 63.69145957581605, + 28.934809638391627 + ], + [ + 63.80630225929973, + 28.740161903463175 + ], + [ + 63.92114494278341, + 28.934809638391627 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 28.934809638391627 + ], + [ + 63.80630225929973, + 28.740161903463175 + ], + [ + 64.03598762626709, + 28.740161903463175 + ], + [ + 63.92114494278341, + 28.934809638391627 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 28.934809638391627 + ], + [ + 64.03598762626709, + 28.740161903463175 + ], + [ + 64.15083030975076, + 28.934809638391627 + ], + [ + 63.92114494278341, + 28.934809638391627 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 29.32410510824853 + ], + [ + 64.15083030975076, + 29.32410510824853 + ], + [ + 64.03598762626709, + 29.518752843176983 + ], + [ + 63.92114494278341, + 29.32410510824853 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 29.32410510824853 + ], + [ + 64.03598762626709, + 29.518752843176983 + ], + [ + 63.80630225929973, + 29.518752843176983 + ], + [ + 63.92114494278341, + 29.32410510824853 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 29.32410510824853 + ], + [ + 63.80630225929973, + 29.518752843176983 + ], + [ + 63.69145957581605, + 29.32410510824853 + ], + [ + 63.92114494278341, + 29.32410510824853 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 29.32410510824853 + ], + [ + 63.69145957581605, + 29.32410510824853 + ], + [ + 63.80630225929973, + 29.12945737332008 + ], + [ + 63.92114494278341, + 29.32410510824853 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 29.32410510824853 + ], + [ + 63.80630225929973, + 29.12945737332008 + ], + [ + 64.03598762626709, + 29.12945737332008 + ], + [ + 63.92114494278341, + 29.32410510824853 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 29.32410510824853 + ], + [ + 64.03598762626709, + 29.12945737332008 + ], + [ + 64.15083030975076, + 29.32410510824853 + ], + [ + 63.92114494278341, + 29.32410510824853 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 29.71340057810544 + ], + [ + 64.15083030975076, + 29.71340057810544 + ], + [ + 64.03598762626709, + 29.90804831303389 + ], + [ + 63.92114494278341, + 29.71340057810544 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 29.71340057810544 + ], + [ + 64.03598762626709, + 29.90804831303389 + ], + [ + 63.80630225929973, + 29.90804831303389 + ], + [ + 63.92114494278341, + 29.71340057810544 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 29.71340057810544 + ], + [ + 63.80630225929973, + 29.90804831303389 + ], + [ + 63.69145957581605, + 29.71340057810544 + ], + [ + 63.92114494278341, + 29.71340057810544 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 29.71340057810544 + ], + [ + 63.69145957581605, + 29.71340057810544 + ], + [ + 63.80630225929973, + 29.518752843176987 + ], + [ + 63.92114494278341, + 29.71340057810544 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 29.71340057810544 + ], + [ + 63.80630225929973, + 29.518752843176987 + ], + [ + 64.03598762626709, + 29.518752843176987 + ], + [ + 63.92114494278341, + 29.71340057810544 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 29.71340057810544 + ], + [ + 64.03598762626709, + 29.518752843176987 + ], + [ + 64.15083030975076, + 29.71340057810544 + ], + [ + 63.92114494278341, + 29.71340057810544 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 30.102696047962343 + ], + [ + 64.15083030975076, + 30.102696047962343 + ], + [ + 64.03598762626709, + 30.297343782890795 + ], + [ + 63.92114494278341, + 30.102696047962343 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 30.102696047962343 + ], + [ + 64.03598762626709, + 30.297343782890795 + ], + [ + 63.80630225929973, + 30.297343782890795 + ], + [ + 63.92114494278341, + 30.102696047962343 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 30.102696047962343 + ], + [ + 63.80630225929973, + 30.297343782890795 + ], + [ + 63.69145957581605, + 30.102696047962343 + ], + [ + 63.92114494278341, + 30.102696047962343 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 30.102696047962343 + ], + [ + 63.69145957581605, + 30.102696047962343 + ], + [ + 63.80630225929973, + 29.90804831303389 + ], + [ + 63.92114494278341, + 30.102696047962343 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 30.102696047962343 + ], + [ + 63.80630225929973, + 29.90804831303389 + ], + [ + 64.03598762626709, + 29.90804831303389 + ], + [ + 63.92114494278341, + 30.102696047962343 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 30.102696047962343 + ], + [ + 64.03598762626709, + 29.90804831303389 + ], + [ + 64.15083030975076, + 30.102696047962343 + ], + [ + 63.92114494278341, + 30.102696047962343 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 30.49199151781925 + ], + [ + 64.15083030975076, + 30.49199151781925 + ], + [ + 64.03598762626709, + 30.686639252747703 + ], + [ + 63.92114494278341, + 30.49199151781925 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 30.49199151781925 + ], + [ + 64.03598762626709, + 30.686639252747703 + ], + [ + 63.80630225929973, + 30.686639252747703 + ], + [ + 63.92114494278341, + 30.49199151781925 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 30.49199151781925 + ], + [ + 63.80630225929973, + 30.686639252747703 + ], + [ + 63.69145957581605, + 30.49199151781925 + ], + [ + 63.92114494278341, + 30.49199151781925 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 30.49199151781925 + ], + [ + 63.69145957581605, + 30.49199151781925 + ], + [ + 63.80630225929973, + 30.2973437828908 + ], + [ + 63.92114494278341, + 30.49199151781925 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 30.49199151781925 + ], + [ + 63.80630225929973, + 30.2973437828908 + ], + [ + 64.03598762626709, + 30.2973437828908 + ], + [ + 63.92114494278341, + 30.49199151781925 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 30.49199151781925 + ], + [ + 64.03598762626709, + 30.2973437828908 + ], + [ + 64.15083030975076, + 30.49199151781925 + ], + [ + 63.92114494278341, + 30.49199151781925 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 30.88128698767616 + ], + [ + 64.15083030975076, + 30.88128698767616 + ], + [ + 64.03598762626709, + 31.07593472260461 + ], + [ + 63.92114494278341, + 30.88128698767616 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 30.88128698767616 + ], + [ + 64.03598762626709, + 31.07593472260461 + ], + [ + 63.80630225929973, + 31.07593472260461 + ], + [ + 63.92114494278341, + 30.88128698767616 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 30.88128698767616 + ], + [ + 63.80630225929973, + 31.07593472260461 + ], + [ + 63.69145957581605, + 30.88128698767616 + ], + [ + 63.92114494278341, + 30.88128698767616 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 30.88128698767616 + ], + [ + 63.69145957581605, + 30.88128698767616 + ], + [ + 63.80630225929973, + 30.686639252747707 + ], + [ + 63.92114494278341, + 30.88128698767616 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 30.88128698767616 + ], + [ + 63.80630225929973, + 30.686639252747707 + ], + [ + 64.03598762626709, + 30.686639252747707 + ], + [ + 63.92114494278341, + 30.88128698767616 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 30.88128698767616 + ], + [ + 64.03598762626709, + 30.686639252747707 + ], + [ + 64.15083030975076, + 30.88128698767616 + ], + [ + 63.92114494278341, + 30.88128698767616 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 31.270582457533063 + ], + [ + 64.15083030975076, + 31.270582457533063 + ], + [ + 64.03598762626709, + 31.465230192461515 + ], + [ + 63.92114494278341, + 31.270582457533063 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 31.270582457533063 + ], + [ + 64.03598762626709, + 31.465230192461515 + ], + [ + 63.80630225929973, + 31.465230192461515 + ], + [ + 63.92114494278341, + 31.270582457533063 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 31.270582457533063 + ], + [ + 63.80630225929973, + 31.465230192461515 + ], + [ + 63.69145957581605, + 31.270582457533063 + ], + [ + 63.92114494278341, + 31.270582457533063 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 31.270582457533063 + ], + [ + 63.69145957581605, + 31.270582457533063 + ], + [ + 63.80630225929973, + 31.07593472260461 + ], + [ + 63.92114494278341, + 31.270582457533063 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 31.270582457533063 + ], + [ + 63.80630225929973, + 31.07593472260461 + ], + [ + 64.03598762626709, + 31.07593472260461 + ], + [ + 63.92114494278341, + 31.270582457533063 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 31.270582457533063 + ], + [ + 64.03598762626709, + 31.07593472260461 + ], + [ + 64.15083030975076, + 31.270582457533063 + ], + [ + 63.92114494278341, + 31.270582457533063 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 31.65987792738997 + ], + [ + 64.15083030975076, + 31.65987792738997 + ], + [ + 64.03598762626709, + 31.854525662318423 + ], + [ + 63.92114494278341, + 31.65987792738997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 31.65987792738997 + ], + [ + 64.03598762626709, + 31.854525662318423 + ], + [ + 63.80630225929973, + 31.854525662318423 + ], + [ + 63.92114494278341, + 31.65987792738997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 31.65987792738997 + ], + [ + 63.80630225929973, + 31.854525662318423 + ], + [ + 63.69145957581605, + 31.65987792738997 + ], + [ + 63.92114494278341, + 31.65987792738997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 31.65987792738997 + ], + [ + 63.69145957581605, + 31.65987792738997 + ], + [ + 63.80630225929973, + 31.46523019246152 + ], + [ + 63.92114494278341, + 31.65987792738997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 31.65987792738997 + ], + [ + 63.80630225929973, + 31.46523019246152 + ], + [ + 64.03598762626709, + 31.46523019246152 + ], + [ + 63.92114494278341, + 31.65987792738997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 31.65987792738997 + ], + [ + 64.03598762626709, + 31.46523019246152 + ], + [ + 64.15083030975076, + 31.65987792738997 + ], + [ + 63.92114494278341, + 31.65987792738997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 32.049173397246875 + ], + [ + 64.15083030975076, + 32.049173397246875 + ], + [ + 64.03598762626709, + 32.24382113217533 + ], + [ + 63.92114494278341, + 32.049173397246875 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 32.049173397246875 + ], + [ + 64.03598762626709, + 32.24382113217533 + ], + [ + 63.80630225929973, + 32.24382113217533 + ], + [ + 63.92114494278341, + 32.049173397246875 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 32.049173397246875 + ], + [ + 63.80630225929973, + 32.24382113217533 + ], + [ + 63.69145957581605, + 32.049173397246875 + ], + [ + 63.92114494278341, + 32.049173397246875 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 32.049173397246875 + ], + [ + 63.69145957581605, + 32.049173397246875 + ], + [ + 63.80630225929973, + 31.854525662318423 + ], + [ + 63.92114494278341, + 32.049173397246875 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 32.049173397246875 + ], + [ + 63.80630225929973, + 31.854525662318423 + ], + [ + 64.03598762626709, + 31.854525662318423 + ], + [ + 63.92114494278341, + 32.049173397246875 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 32.049173397246875 + ], + [ + 64.03598762626709, + 31.854525662318423 + ], + [ + 64.15083030975076, + 32.049173397246875 + ], + [ + 63.92114494278341, + 32.049173397246875 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 32.438468867103786 + ], + [ + 64.15083030975076, + 32.438468867103786 + ], + [ + 64.03598762626709, + 32.63311660203224 + ], + [ + 63.92114494278341, + 32.438468867103786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 32.438468867103786 + ], + [ + 64.03598762626709, + 32.63311660203224 + ], + [ + 63.80630225929973, + 32.63311660203224 + ], + [ + 63.92114494278341, + 32.438468867103786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 32.438468867103786 + ], + [ + 63.80630225929973, + 32.63311660203224 + ], + [ + 63.69145957581605, + 32.438468867103786 + ], + [ + 63.92114494278341, + 32.438468867103786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 32.438468867103786 + ], + [ + 63.69145957581605, + 32.438468867103786 + ], + [ + 63.80630225929973, + 32.243821132175334 + ], + [ + 63.92114494278341, + 32.438468867103786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 32.438468867103786 + ], + [ + 63.80630225929973, + 32.243821132175334 + ], + [ + 64.03598762626709, + 32.243821132175334 + ], + [ + 63.92114494278341, + 32.438468867103786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 32.438468867103786 + ], + [ + 64.03598762626709, + 32.243821132175334 + ], + [ + 64.15083030975076, + 32.438468867103786 + ], + [ + 63.92114494278341, + 32.438468867103786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 32.82776433696069 + ], + [ + 64.15083030975076, + 32.82776433696069 + ], + [ + 64.03598762626709, + 33.02241207188914 + ], + [ + 63.92114494278341, + 32.82776433696069 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 32.82776433696069 + ], + [ + 64.03598762626709, + 33.02241207188914 + ], + [ + 63.80630225929973, + 33.02241207188914 + ], + [ + 63.92114494278341, + 32.82776433696069 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 32.82776433696069 + ], + [ + 63.80630225929973, + 33.02241207188914 + ], + [ + 63.69145957581605, + 32.82776433696069 + ], + [ + 63.92114494278341, + 32.82776433696069 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 32.82776433696069 + ], + [ + 63.69145957581605, + 32.82776433696069 + ], + [ + 63.80630225929973, + 32.63311660203224 + ], + [ + 63.92114494278341, + 32.82776433696069 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 32.82776433696069 + ], + [ + 63.80630225929973, + 32.63311660203224 + ], + [ + 64.03598762626709, + 32.63311660203224 + ], + [ + 63.92114494278341, + 32.82776433696069 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 32.82776433696069 + ], + [ + 64.03598762626709, + 32.63311660203224 + ], + [ + 64.15083030975076, + 32.82776433696069 + ], + [ + 63.92114494278341, + 32.82776433696069 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 33.217059806817595 + ], + [ + 64.15083030975076, + 33.217059806817595 + ], + [ + 64.03598762626709, + 33.41170754174605 + ], + [ + 63.92114494278341, + 33.217059806817595 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 33.217059806817595 + ], + [ + 64.03598762626709, + 33.41170754174605 + ], + [ + 63.80630225929973, + 33.41170754174605 + ], + [ + 63.92114494278341, + 33.217059806817595 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 33.217059806817595 + ], + [ + 63.80630225929973, + 33.41170754174605 + ], + [ + 63.69145957581605, + 33.217059806817595 + ], + [ + 63.92114494278341, + 33.217059806817595 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 33.217059806817595 + ], + [ + 63.69145957581605, + 33.217059806817595 + ], + [ + 63.80630225929973, + 33.02241207188914 + ], + [ + 63.92114494278341, + 33.217059806817595 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 33.217059806817595 + ], + [ + 63.80630225929973, + 33.02241207188914 + ], + [ + 64.03598762626709, + 33.02241207188914 + ], + [ + 63.92114494278341, + 33.217059806817595 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 33.217059806817595 + ], + [ + 64.03598762626709, + 33.02241207188914 + ], + [ + 64.15083030975076, + 33.217059806817595 + ], + [ + 63.92114494278341, + 33.217059806817595 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 33.6063552766745 + ], + [ + 64.15083030975076, + 33.6063552766745 + ], + [ + 64.03598762626709, + 33.80100301160295 + ], + [ + 63.92114494278341, + 33.6063552766745 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 33.6063552766745 + ], + [ + 64.03598762626709, + 33.80100301160295 + ], + [ + 63.80630225929973, + 33.80100301160295 + ], + [ + 63.92114494278341, + 33.6063552766745 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 33.6063552766745 + ], + [ + 63.80630225929973, + 33.80100301160295 + ], + [ + 63.69145957581605, + 33.6063552766745 + ], + [ + 63.92114494278341, + 33.6063552766745 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 33.6063552766745 + ], + [ + 63.69145957581605, + 33.6063552766745 + ], + [ + 63.80630225929973, + 33.41170754174605 + ], + [ + 63.92114494278341, + 33.6063552766745 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 33.6063552766745 + ], + [ + 63.80630225929973, + 33.41170754174605 + ], + [ + 64.03598762626709, + 33.41170754174605 + ], + [ + 63.92114494278341, + 33.6063552766745 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 33.6063552766745 + ], + [ + 64.03598762626709, + 33.41170754174605 + ], + [ + 64.15083030975076, + 33.6063552766745 + ], + [ + 63.92114494278341, + 33.6063552766745 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 33.9956507465314 + ], + [ + 64.15083030975076, + 33.9956507465314 + ], + [ + 64.03598762626709, + 34.190298481459855 + ], + [ + 63.92114494278341, + 33.9956507465314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 33.9956507465314 + ], + [ + 64.03598762626709, + 34.190298481459855 + ], + [ + 63.80630225929973, + 34.190298481459855 + ], + [ + 63.92114494278341, + 33.9956507465314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 33.9956507465314 + ], + [ + 63.80630225929973, + 34.190298481459855 + ], + [ + 63.69145957581605, + 33.9956507465314 + ], + [ + 63.92114494278341, + 33.9956507465314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 33.9956507465314 + ], + [ + 63.69145957581605, + 33.9956507465314 + ], + [ + 63.80630225929973, + 33.80100301160295 + ], + [ + 63.92114494278341, + 33.9956507465314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 33.9956507465314 + ], + [ + 63.80630225929973, + 33.80100301160295 + ], + [ + 64.03598762626709, + 33.80100301160295 + ], + [ + 63.92114494278341, + 33.9956507465314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 33.9956507465314 + ], + [ + 64.03598762626709, + 33.80100301160295 + ], + [ + 64.15083030975076, + 33.9956507465314 + ], + [ + 63.92114494278341, + 33.9956507465314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 34.384946216388315 + ], + [ + 64.15083030975076, + 34.384946216388315 + ], + [ + 64.03598762626709, + 34.57959395131677 + ], + [ + 63.92114494278341, + 34.384946216388315 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 34.384946216388315 + ], + [ + 64.03598762626709, + 34.57959395131677 + ], + [ + 63.80630225929973, + 34.57959395131677 + ], + [ + 63.92114494278341, + 34.384946216388315 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 34.384946216388315 + ], + [ + 63.80630225929973, + 34.57959395131677 + ], + [ + 63.69145957581605, + 34.384946216388315 + ], + [ + 63.92114494278341, + 34.384946216388315 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 34.384946216388315 + ], + [ + 63.69145957581605, + 34.384946216388315 + ], + [ + 63.80630225929973, + 34.19029848145986 + ], + [ + 63.92114494278341, + 34.384946216388315 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 34.384946216388315 + ], + [ + 63.80630225929973, + 34.19029848145986 + ], + [ + 64.03598762626709, + 34.19029848145986 + ], + [ + 63.92114494278341, + 34.384946216388315 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 34.384946216388315 + ], + [ + 64.03598762626709, + 34.19029848145986 + ], + [ + 64.15083030975076, + 34.384946216388315 + ], + [ + 63.92114494278341, + 34.384946216388315 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 34.774241686245226 + ], + [ + 64.15083030975076, + 34.774241686245226 + ], + [ + 64.03598762626709, + 34.96888942117368 + ], + [ + 63.92114494278341, + 34.774241686245226 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 34.774241686245226 + ], + [ + 64.03598762626709, + 34.96888942117368 + ], + [ + 63.80630225929973, + 34.96888942117368 + ], + [ + 63.92114494278341, + 34.774241686245226 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 34.774241686245226 + ], + [ + 63.80630225929973, + 34.96888942117368 + ], + [ + 63.69145957581605, + 34.774241686245226 + ], + [ + 63.92114494278341, + 34.774241686245226 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 34.774241686245226 + ], + [ + 63.69145957581605, + 34.774241686245226 + ], + [ + 63.80630225929973, + 34.579593951316774 + ], + [ + 63.92114494278341, + 34.774241686245226 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 34.774241686245226 + ], + [ + 63.80630225929973, + 34.579593951316774 + ], + [ + 64.03598762626709, + 34.579593951316774 + ], + [ + 63.92114494278341, + 34.774241686245226 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 34.774241686245226 + ], + [ + 64.03598762626709, + 34.579593951316774 + ], + [ + 64.15083030975076, + 34.774241686245226 + ], + [ + 63.92114494278341, + 34.774241686245226 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 35.16353715610213 + ], + [ + 64.15083030975076, + 35.16353715610213 + ], + [ + 64.03598762626709, + 35.35818489103058 + ], + [ + 63.92114494278341, + 35.16353715610213 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 35.16353715610213 + ], + [ + 64.03598762626709, + 35.35818489103058 + ], + [ + 63.80630225929973, + 35.35818489103058 + ], + [ + 63.92114494278341, + 35.16353715610213 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 35.16353715610213 + ], + [ + 63.80630225929973, + 35.35818489103058 + ], + [ + 63.69145957581605, + 35.16353715610213 + ], + [ + 63.92114494278341, + 35.16353715610213 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 35.16353715610213 + ], + [ + 63.69145957581605, + 35.16353715610213 + ], + [ + 63.80630225929973, + 34.96888942117368 + ], + [ + 63.92114494278341, + 35.16353715610213 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 35.16353715610213 + ], + [ + 63.80630225929973, + 34.96888942117368 + ], + [ + 64.03598762626709, + 34.96888942117368 + ], + [ + 63.92114494278341, + 35.16353715610213 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 35.16353715610213 + ], + [ + 64.03598762626709, + 34.96888942117368 + ], + [ + 64.15083030975076, + 35.16353715610213 + ], + [ + 63.92114494278341, + 35.16353715610213 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 35.552832625959034 + ], + [ + 64.15083030975076, + 35.552832625959034 + ], + [ + 64.03598762626709, + 35.74748036088749 + ], + [ + 63.92114494278341, + 35.552832625959034 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 35.552832625959034 + ], + [ + 64.03598762626709, + 35.74748036088749 + ], + [ + 63.80630225929973, + 35.74748036088749 + ], + [ + 63.92114494278341, + 35.552832625959034 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 35.552832625959034 + ], + [ + 63.80630225929973, + 35.74748036088749 + ], + [ + 63.69145957581605, + 35.552832625959034 + ], + [ + 63.92114494278341, + 35.552832625959034 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 35.552832625959034 + ], + [ + 63.69145957581605, + 35.552832625959034 + ], + [ + 63.80630225929973, + 35.35818489103058 + ], + [ + 63.92114494278341, + 35.552832625959034 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 35.552832625959034 + ], + [ + 63.80630225929973, + 35.35818489103058 + ], + [ + 64.03598762626709, + 35.35818489103058 + ], + [ + 63.92114494278341, + 35.552832625959034 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 35.552832625959034 + ], + [ + 64.03598762626709, + 35.35818489103058 + ], + [ + 64.15083030975076, + 35.552832625959034 + ], + [ + 63.92114494278341, + 35.552832625959034 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 35.94212809581594 + ], + [ + 64.15083030975076, + 35.94212809581594 + ], + [ + 64.03598762626709, + 36.13677583074439 + ], + [ + 63.92114494278341, + 35.94212809581594 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 35.94212809581594 + ], + [ + 64.03598762626709, + 36.13677583074439 + ], + [ + 63.80630225929973, + 36.13677583074439 + ], + [ + 63.92114494278341, + 35.94212809581594 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 35.94212809581594 + ], + [ + 63.80630225929973, + 36.13677583074439 + ], + [ + 63.69145957581605, + 35.94212809581594 + ], + [ + 63.92114494278341, + 35.94212809581594 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 35.94212809581594 + ], + [ + 63.69145957581605, + 35.94212809581594 + ], + [ + 63.80630225929973, + 35.74748036088749 + ], + [ + 63.92114494278341, + 35.94212809581594 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 35.94212809581594 + ], + [ + 63.80630225929973, + 35.74748036088749 + ], + [ + 64.03598762626709, + 35.74748036088749 + ], + [ + 63.92114494278341, + 35.94212809581594 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 35.94212809581594 + ], + [ + 64.03598762626709, + 35.74748036088749 + ], + [ + 64.15083030975076, + 35.94212809581594 + ], + [ + 63.92114494278341, + 35.94212809581594 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 36.33142356567284 + ], + [ + 64.15083030975076, + 36.33142356567284 + ], + [ + 64.03598762626709, + 36.526071300601295 + ], + [ + 63.92114494278341, + 36.33142356567284 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 36.33142356567284 + ], + [ + 64.03598762626709, + 36.526071300601295 + ], + [ + 63.80630225929973, + 36.526071300601295 + ], + [ + 63.92114494278341, + 36.33142356567284 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 36.33142356567284 + ], + [ + 63.80630225929973, + 36.526071300601295 + ], + [ + 63.69145957581605, + 36.33142356567284 + ], + [ + 63.92114494278341, + 36.33142356567284 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 36.33142356567284 + ], + [ + 63.69145957581605, + 36.33142356567284 + ], + [ + 63.80630225929973, + 36.13677583074439 + ], + [ + 63.92114494278341, + 36.33142356567284 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 36.33142356567284 + ], + [ + 63.80630225929973, + 36.13677583074439 + ], + [ + 64.03598762626709, + 36.13677583074439 + ], + [ + 63.92114494278341, + 36.33142356567284 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 36.33142356567284 + ], + [ + 64.03598762626709, + 36.13677583074439 + ], + [ + 64.15083030975076, + 36.33142356567284 + ], + [ + 63.92114494278341, + 36.33142356567284 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 36.720719035529754 + ], + [ + 64.15083030975076, + 36.720719035529754 + ], + [ + 64.03598762626709, + 36.915366770458206 + ], + [ + 63.92114494278341, + 36.720719035529754 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 36.720719035529754 + ], + [ + 64.03598762626709, + 36.915366770458206 + ], + [ + 63.80630225929973, + 36.915366770458206 + ], + [ + 63.92114494278341, + 36.720719035529754 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 36.720719035529754 + ], + [ + 63.80630225929973, + 36.915366770458206 + ], + [ + 63.69145957581605, + 36.720719035529754 + ], + [ + 63.92114494278341, + 36.720719035529754 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 36.720719035529754 + ], + [ + 63.69145957581605, + 36.720719035529754 + ], + [ + 63.80630225929973, + 36.5260713006013 + ], + [ + 63.92114494278341, + 36.720719035529754 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 36.720719035529754 + ], + [ + 63.80630225929973, + 36.5260713006013 + ], + [ + 64.03598762626709, + 36.5260713006013 + ], + [ + 63.92114494278341, + 36.720719035529754 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 36.720719035529754 + ], + [ + 64.03598762626709, + 36.5260713006013 + ], + [ + 64.15083030975076, + 36.720719035529754 + ], + [ + 63.92114494278341, + 36.720719035529754 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 37.11001450538666 + ], + [ + 64.15083030975076, + 37.11001450538666 + ], + [ + 64.03598762626709, + 37.30466224031511 + ], + [ + 63.92114494278341, + 37.11001450538666 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 37.11001450538666 + ], + [ + 64.03598762626709, + 37.30466224031511 + ], + [ + 63.80630225929973, + 37.30466224031511 + ], + [ + 63.92114494278341, + 37.11001450538666 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 37.11001450538666 + ], + [ + 63.80630225929973, + 37.30466224031511 + ], + [ + 63.69145957581605, + 37.11001450538666 + ], + [ + 63.92114494278341, + 37.11001450538666 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 37.11001450538666 + ], + [ + 63.69145957581605, + 37.11001450538666 + ], + [ + 63.80630225929973, + 36.915366770458206 + ], + [ + 63.92114494278341, + 37.11001450538666 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 37.11001450538666 + ], + [ + 63.80630225929973, + 36.915366770458206 + ], + [ + 64.03598762626709, + 36.915366770458206 + ], + [ + 63.92114494278341, + 37.11001450538666 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 37.11001450538666 + ], + [ + 64.03598762626709, + 36.915366770458206 + ], + [ + 64.15083030975076, + 37.11001450538666 + ], + [ + 63.92114494278341, + 37.11001450538666 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 37.49930997524357 + ], + [ + 64.15083030975076, + 37.49930997524357 + ], + [ + 64.03598762626709, + 37.69395771017202 + ], + [ + 63.92114494278341, + 37.49930997524357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 37.49930997524357 + ], + [ + 64.03598762626709, + 37.69395771017202 + ], + [ + 63.80630225929973, + 37.69395771017202 + ], + [ + 63.92114494278341, + 37.49930997524357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 37.49930997524357 + ], + [ + 63.80630225929973, + 37.69395771017202 + ], + [ + 63.69145957581605, + 37.49930997524357 + ], + [ + 63.92114494278341, + 37.49930997524357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 37.49930997524357 + ], + [ + 63.69145957581605, + 37.49930997524357 + ], + [ + 63.80630225929973, + 37.30466224031512 + ], + [ + 63.92114494278341, + 37.49930997524357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 37.49930997524357 + ], + [ + 63.80630225929973, + 37.30466224031512 + ], + [ + 64.03598762626709, + 37.30466224031512 + ], + [ + 63.92114494278341, + 37.49930997524357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 37.49930997524357 + ], + [ + 64.03598762626709, + 37.30466224031512 + ], + [ + 64.15083030975076, + 37.49930997524357 + ], + [ + 63.92114494278341, + 37.49930997524357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 37.888605445100474 + ], + [ + 64.15083030975076, + 37.888605445100474 + ], + [ + 64.03598762626709, + 38.083253180028926 + ], + [ + 63.92114494278341, + 37.888605445100474 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 37.888605445100474 + ], + [ + 64.03598762626709, + 38.083253180028926 + ], + [ + 63.80630225929973, + 38.083253180028926 + ], + [ + 63.92114494278341, + 37.888605445100474 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 37.888605445100474 + ], + [ + 63.80630225929973, + 38.083253180028926 + ], + [ + 63.69145957581605, + 37.888605445100474 + ], + [ + 63.92114494278341, + 37.888605445100474 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 37.888605445100474 + ], + [ + 63.69145957581605, + 37.888605445100474 + ], + [ + 63.80630225929973, + 37.69395771017202 + ], + [ + 63.92114494278341, + 37.888605445100474 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 37.888605445100474 + ], + [ + 63.80630225929973, + 37.69395771017202 + ], + [ + 64.03598762626709, + 37.69395771017202 + ], + [ + 63.92114494278341, + 37.888605445100474 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 37.888605445100474 + ], + [ + 64.03598762626709, + 37.69395771017202 + ], + [ + 64.15083030975076, + 37.888605445100474 + ], + [ + 63.92114494278341, + 37.888605445100474 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 38.27790091495738 + ], + [ + 64.15083030975076, + 38.27790091495738 + ], + [ + 64.03598762626709, + 38.47254864988583 + ], + [ + 63.92114494278341, + 38.27790091495738 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 38.27790091495738 + ], + [ + 64.03598762626709, + 38.47254864988583 + ], + [ + 63.80630225929973, + 38.47254864988583 + ], + [ + 63.92114494278341, + 38.27790091495738 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 38.27790091495738 + ], + [ + 63.80630225929973, + 38.47254864988583 + ], + [ + 63.69145957581605, + 38.27790091495738 + ], + [ + 63.92114494278341, + 38.27790091495738 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 38.27790091495738 + ], + [ + 63.69145957581605, + 38.27790091495738 + ], + [ + 63.80630225929973, + 38.083253180028926 + ], + [ + 63.92114494278341, + 38.27790091495738 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 38.27790091495738 + ], + [ + 63.80630225929973, + 38.083253180028926 + ], + [ + 64.03598762626709, + 38.083253180028926 + ], + [ + 63.92114494278341, + 38.27790091495738 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 38.27790091495738 + ], + [ + 64.03598762626709, + 38.083253180028926 + ], + [ + 64.15083030975076, + 38.27790091495738 + ], + [ + 63.92114494278341, + 38.27790091495738 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 38.66719638481428 + ], + [ + 64.15083030975076, + 38.66719638481428 + ], + [ + 64.03598762626709, + 38.861844119742734 + ], + [ + 63.92114494278341, + 38.66719638481428 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 38.66719638481428 + ], + [ + 64.03598762626709, + 38.861844119742734 + ], + [ + 63.80630225929973, + 38.861844119742734 + ], + [ + 63.92114494278341, + 38.66719638481428 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 38.66719638481428 + ], + [ + 63.80630225929973, + 38.861844119742734 + ], + [ + 63.69145957581605, + 38.66719638481428 + ], + [ + 63.92114494278341, + 38.66719638481428 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 38.66719638481428 + ], + [ + 63.69145957581605, + 38.66719638481428 + ], + [ + 63.80630225929973, + 38.47254864988583 + ], + [ + 63.92114494278341, + 38.66719638481428 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 38.66719638481428 + ], + [ + 63.80630225929973, + 38.47254864988583 + ], + [ + 64.03598762626709, + 38.47254864988583 + ], + [ + 63.92114494278341, + 38.66719638481428 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 38.66719638481428 + ], + [ + 64.03598762626709, + 38.47254864988583 + ], + [ + 64.15083030975076, + 38.66719638481428 + ], + [ + 63.92114494278341, + 38.66719638481428 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 39.05649185467119 + ], + [ + 64.15083030975076, + 39.05649185467119 + ], + [ + 64.03598762626709, + 39.25113958959964 + ], + [ + 63.92114494278341, + 39.05649185467119 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 39.05649185467119 + ], + [ + 64.03598762626709, + 39.25113958959964 + ], + [ + 63.80630225929973, + 39.25113958959964 + ], + [ + 63.92114494278341, + 39.05649185467119 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 39.05649185467119 + ], + [ + 63.80630225929973, + 39.25113958959964 + ], + [ + 63.69145957581605, + 39.05649185467119 + ], + [ + 63.92114494278341, + 39.05649185467119 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 39.05649185467119 + ], + [ + 63.69145957581605, + 39.05649185467119 + ], + [ + 63.80630225929973, + 38.861844119742734 + ], + [ + 63.92114494278341, + 39.05649185467119 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 39.05649185467119 + ], + [ + 63.80630225929973, + 38.861844119742734 + ], + [ + 64.03598762626709, + 38.861844119742734 + ], + [ + 63.92114494278341, + 39.05649185467119 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 39.05649185467119 + ], + [ + 64.03598762626709, + 38.861844119742734 + ], + [ + 64.15083030975076, + 39.05649185467119 + ], + [ + 63.92114494278341, + 39.05649185467119 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 39.4457873245281 + ], + [ + 64.15083030975076, + 39.4457873245281 + ], + [ + 64.03598762626709, + 39.64043505945655 + ], + [ + 63.92114494278341, + 39.4457873245281 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 39.4457873245281 + ], + [ + 64.03598762626709, + 39.64043505945655 + ], + [ + 63.80630225929973, + 39.64043505945655 + ], + [ + 63.92114494278341, + 39.4457873245281 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 39.4457873245281 + ], + [ + 63.80630225929973, + 39.64043505945655 + ], + [ + 63.69145957581605, + 39.4457873245281 + ], + [ + 63.92114494278341, + 39.4457873245281 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 39.4457873245281 + ], + [ + 63.69145957581605, + 39.4457873245281 + ], + [ + 63.80630225929973, + 39.251139589599646 + ], + [ + 63.92114494278341, + 39.4457873245281 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 39.4457873245281 + ], + [ + 63.80630225929973, + 39.251139589599646 + ], + [ + 64.03598762626709, + 39.251139589599646 + ], + [ + 63.92114494278341, + 39.4457873245281 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 39.4457873245281 + ], + [ + 64.03598762626709, + 39.251139589599646 + ], + [ + 64.15083030975076, + 39.4457873245281 + ], + [ + 63.92114494278341, + 39.4457873245281 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 39.835082794385 + ], + [ + 64.15083030975076, + 39.835082794385 + ], + [ + 64.03598762626709, + 40.029730529313454 + ], + [ + 63.92114494278341, + 39.835082794385 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 39.835082794385 + ], + [ + 64.03598762626709, + 40.029730529313454 + ], + [ + 63.80630225929973, + 40.029730529313454 + ], + [ + 63.92114494278341, + 39.835082794385 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 39.835082794385 + ], + [ + 63.80630225929973, + 40.029730529313454 + ], + [ + 63.69145957581605, + 39.835082794385 + ], + [ + 63.92114494278341, + 39.835082794385 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 39.835082794385 + ], + [ + 63.69145957581605, + 39.835082794385 + ], + [ + 63.80630225929973, + 39.64043505945655 + ], + [ + 63.92114494278341, + 39.835082794385 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 39.835082794385 + ], + [ + 63.80630225929973, + 39.64043505945655 + ], + [ + 64.03598762626709, + 39.64043505945655 + ], + [ + 63.92114494278341, + 39.835082794385 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 39.835082794385 + ], + [ + 64.03598762626709, + 39.64043505945655 + ], + [ + 64.15083030975076, + 39.835082794385 + ], + [ + 63.92114494278341, + 39.835082794385 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 40.22437826424191 + ], + [ + 64.15083030975076, + 40.22437826424191 + ], + [ + 64.03598762626709, + 40.419025999170366 + ], + [ + 63.92114494278341, + 40.22437826424191 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 40.22437826424191 + ], + [ + 64.03598762626709, + 40.419025999170366 + ], + [ + 63.80630225929973, + 40.419025999170366 + ], + [ + 63.92114494278341, + 40.22437826424191 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 40.22437826424191 + ], + [ + 63.80630225929973, + 40.419025999170366 + ], + [ + 63.69145957581605, + 40.22437826424191 + ], + [ + 63.92114494278341, + 40.22437826424191 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 40.22437826424191 + ], + [ + 63.69145957581605, + 40.22437826424191 + ], + [ + 63.80630225929973, + 40.02973052931346 + ], + [ + 63.92114494278341, + 40.22437826424191 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 40.22437826424191 + ], + [ + 63.80630225929973, + 40.02973052931346 + ], + [ + 64.03598762626709, + 40.02973052931346 + ], + [ + 63.92114494278341, + 40.22437826424191 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 40.22437826424191 + ], + [ + 64.03598762626709, + 40.02973052931346 + ], + [ + 64.15083030975076, + 40.22437826424191 + ], + [ + 63.92114494278341, + 40.22437826424191 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 40.61367373409882 + ], + [ + 64.15083030975076, + 40.61367373409882 + ], + [ + 64.03598762626709, + 40.80832146902727 + ], + [ + 63.92114494278341, + 40.61367373409882 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 40.61367373409882 + ], + [ + 64.03598762626709, + 40.80832146902727 + ], + [ + 63.80630225929973, + 40.80832146902727 + ], + [ + 63.92114494278341, + 40.61367373409882 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 40.61367373409882 + ], + [ + 63.80630225929973, + 40.80832146902727 + ], + [ + 63.69145957581605, + 40.61367373409882 + ], + [ + 63.92114494278341, + 40.61367373409882 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 40.61367373409882 + ], + [ + 63.69145957581605, + 40.61367373409882 + ], + [ + 63.80630225929973, + 40.419025999170366 + ], + [ + 63.92114494278341, + 40.61367373409882 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 40.61367373409882 + ], + [ + 63.80630225929973, + 40.419025999170366 + ], + [ + 64.03598762626709, + 40.419025999170366 + ], + [ + 63.92114494278341, + 40.61367373409882 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 40.61367373409882 + ], + [ + 64.03598762626709, + 40.419025999170366 + ], + [ + 64.15083030975076, + 40.61367373409882 + ], + [ + 63.92114494278341, + 40.61367373409882 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 41.00296920395572 + ], + [ + 64.15083030975076, + 41.00296920395572 + ], + [ + 64.03598762626709, + 41.197616938884174 + ], + [ + 63.92114494278341, + 41.00296920395572 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 41.00296920395572 + ], + [ + 64.03598762626709, + 41.197616938884174 + ], + [ + 63.80630225929973, + 41.197616938884174 + ], + [ + 63.92114494278341, + 41.00296920395572 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 41.00296920395572 + ], + [ + 63.80630225929973, + 41.197616938884174 + ], + [ + 63.69145957581605, + 41.00296920395572 + ], + [ + 63.92114494278341, + 41.00296920395572 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 41.00296920395572 + ], + [ + 63.69145957581605, + 41.00296920395572 + ], + [ + 63.80630225929973, + 40.80832146902727 + ], + [ + 63.92114494278341, + 41.00296920395572 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 41.00296920395572 + ], + [ + 63.80630225929973, + 40.80832146902727 + ], + [ + 64.03598762626709, + 40.80832146902727 + ], + [ + 63.92114494278341, + 41.00296920395572 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 41.00296920395572 + ], + [ + 64.03598762626709, + 40.80832146902727 + ], + [ + 64.15083030975076, + 41.00296920395572 + ], + [ + 63.92114494278341, + 41.00296920395572 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 41.392264673812626 + ], + [ + 64.15083030975076, + 41.392264673812626 + ], + [ + 64.03598762626709, + 41.58691240874108 + ], + [ + 63.92114494278341, + 41.392264673812626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 41.392264673812626 + ], + [ + 64.03598762626709, + 41.58691240874108 + ], + [ + 63.80630225929973, + 41.58691240874108 + ], + [ + 63.92114494278341, + 41.392264673812626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 41.392264673812626 + ], + [ + 63.80630225929973, + 41.58691240874108 + ], + [ + 63.69145957581605, + 41.392264673812626 + ], + [ + 63.92114494278341, + 41.392264673812626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 41.392264673812626 + ], + [ + 63.69145957581605, + 41.392264673812626 + ], + [ + 63.80630225929973, + 41.197616938884174 + ], + [ + 63.92114494278341, + 41.392264673812626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 41.392264673812626 + ], + [ + 63.80630225929973, + 41.197616938884174 + ], + [ + 64.03598762626709, + 41.197616938884174 + ], + [ + 63.92114494278341, + 41.392264673812626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 41.392264673812626 + ], + [ + 64.03598762626709, + 41.197616938884174 + ], + [ + 64.15083030975076, + 41.392264673812626 + ], + [ + 63.92114494278341, + 41.392264673812626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 41.78156014366953 + ], + [ + 64.15083030975076, + 41.78156014366953 + ], + [ + 64.03598762626709, + 41.97620787859798 + ], + [ + 63.92114494278341, + 41.78156014366953 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 41.78156014366953 + ], + [ + 64.03598762626709, + 41.97620787859798 + ], + [ + 63.80630225929973, + 41.97620787859798 + ], + [ + 63.92114494278341, + 41.78156014366953 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 41.78156014366953 + ], + [ + 63.80630225929973, + 41.97620787859798 + ], + [ + 63.69145957581605, + 41.78156014366953 + ], + [ + 63.92114494278341, + 41.78156014366953 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 41.78156014366953 + ], + [ + 63.69145957581605, + 41.78156014366953 + ], + [ + 63.80630225929973, + 41.58691240874108 + ], + [ + 63.92114494278341, + 41.78156014366953 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 41.78156014366953 + ], + [ + 63.80630225929973, + 41.58691240874108 + ], + [ + 64.03598762626709, + 41.58691240874108 + ], + [ + 63.92114494278341, + 41.78156014366953 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 41.78156014366953 + ], + [ + 64.03598762626709, + 41.58691240874108 + ], + [ + 64.15083030975076, + 41.78156014366953 + ], + [ + 63.92114494278341, + 41.78156014366953 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 42.17085561352644 + ], + [ + 64.15083030975076, + 42.17085561352644 + ], + [ + 64.03598762626709, + 42.365503348454894 + ], + [ + 63.92114494278341, + 42.17085561352644 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 42.17085561352644 + ], + [ + 64.03598762626709, + 42.365503348454894 + ], + [ + 63.80630225929973, + 42.365503348454894 + ], + [ + 63.92114494278341, + 42.17085561352644 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 42.17085561352644 + ], + [ + 63.80630225929973, + 42.365503348454894 + ], + [ + 63.69145957581605, + 42.17085561352644 + ], + [ + 63.92114494278341, + 42.17085561352644 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 42.17085561352644 + ], + [ + 63.69145957581605, + 42.17085561352644 + ], + [ + 63.80630225929973, + 41.97620787859799 + ], + [ + 63.92114494278341, + 42.17085561352644 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 42.17085561352644 + ], + [ + 63.80630225929973, + 41.97620787859799 + ], + [ + 64.03598762626709, + 41.97620787859799 + ], + [ + 63.92114494278341, + 42.17085561352644 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 42.17085561352644 + ], + [ + 64.03598762626709, + 41.97620787859799 + ], + [ + 64.15083030975076, + 42.17085561352644 + ], + [ + 63.92114494278341, + 42.17085561352644 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 42.56015108338335 + ], + [ + 64.15083030975076, + 42.56015108338335 + ], + [ + 64.03598762626709, + 42.754798818311805 + ], + [ + 63.92114494278341, + 42.56015108338335 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 42.56015108338335 + ], + [ + 64.03598762626709, + 42.754798818311805 + ], + [ + 63.80630225929973, + 42.754798818311805 + ], + [ + 63.92114494278341, + 42.56015108338335 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 42.56015108338335 + ], + [ + 63.80630225929973, + 42.754798818311805 + ], + [ + 63.69145957581605, + 42.56015108338335 + ], + [ + 63.92114494278341, + 42.56015108338335 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 42.56015108338335 + ], + [ + 63.69145957581605, + 42.56015108338335 + ], + [ + 63.80630225929973, + 42.3655033484549 + ], + [ + 63.92114494278341, + 42.56015108338335 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 42.56015108338335 + ], + [ + 63.80630225929973, + 42.3655033484549 + ], + [ + 64.03598762626709, + 42.3655033484549 + ], + [ + 63.92114494278341, + 42.56015108338335 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 42.56015108338335 + ], + [ + 64.03598762626709, + 42.3655033484549 + ], + [ + 64.15083030975076, + 42.56015108338335 + ], + [ + 63.92114494278341, + 42.56015108338335 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 42.94944655324026 + ], + [ + 64.15083030975076, + 42.94944655324026 + ], + [ + 64.03598762626709, + 43.14409428816871 + ], + [ + 63.92114494278341, + 42.94944655324026 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 42.94944655324026 + ], + [ + 64.03598762626709, + 43.14409428816871 + ], + [ + 63.80630225929973, + 43.14409428816871 + ], + [ + 63.92114494278341, + 42.94944655324026 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 42.94944655324026 + ], + [ + 63.80630225929973, + 43.14409428816871 + ], + [ + 63.69145957581605, + 42.94944655324026 + ], + [ + 63.92114494278341, + 42.94944655324026 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 42.94944655324026 + ], + [ + 63.69145957581605, + 42.94944655324026 + ], + [ + 63.80630225929973, + 42.754798818311805 + ], + [ + 63.92114494278341, + 42.94944655324026 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 42.94944655324026 + ], + [ + 63.80630225929973, + 42.754798818311805 + ], + [ + 64.03598762626709, + 42.754798818311805 + ], + [ + 63.92114494278341, + 42.94944655324026 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 42.94944655324026 + ], + [ + 64.03598762626709, + 42.754798818311805 + ], + [ + 64.15083030975076, + 42.94944655324026 + ], + [ + 63.92114494278341, + 42.94944655324026 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 43.33874202309716 + ], + [ + 64.15083030975076, + 43.33874202309716 + ], + [ + 64.03598762626709, + 43.53338975802561 + ], + [ + 63.92114494278341, + 43.33874202309716 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 43.33874202309716 + ], + [ + 64.03598762626709, + 43.53338975802561 + ], + [ + 63.80630225929973, + 43.53338975802561 + ], + [ + 63.92114494278341, + 43.33874202309716 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 43.33874202309716 + ], + [ + 63.80630225929973, + 43.53338975802561 + ], + [ + 63.69145957581605, + 43.33874202309716 + ], + [ + 63.92114494278341, + 43.33874202309716 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 43.33874202309716 + ], + [ + 63.69145957581605, + 43.33874202309716 + ], + [ + 63.80630225929973, + 43.14409428816871 + ], + [ + 63.92114494278341, + 43.33874202309716 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 43.33874202309716 + ], + [ + 63.80630225929973, + 43.14409428816871 + ], + [ + 64.03598762626709, + 43.14409428816871 + ], + [ + 63.92114494278341, + 43.33874202309716 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 43.33874202309716 + ], + [ + 64.03598762626709, + 43.14409428816871 + ], + [ + 64.15083030975076, + 43.33874202309716 + ], + [ + 63.92114494278341, + 43.33874202309716 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 43.728037492954066 + ], + [ + 64.15083030975076, + 43.728037492954066 + ], + [ + 64.03598762626709, + 43.92268522788252 + ], + [ + 63.92114494278341, + 43.728037492954066 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 43.728037492954066 + ], + [ + 64.03598762626709, + 43.92268522788252 + ], + [ + 63.80630225929973, + 43.92268522788252 + ], + [ + 63.92114494278341, + 43.728037492954066 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 43.728037492954066 + ], + [ + 63.80630225929973, + 43.92268522788252 + ], + [ + 63.69145957581605, + 43.728037492954066 + ], + [ + 63.92114494278341, + 43.728037492954066 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 43.728037492954066 + ], + [ + 63.69145957581605, + 43.728037492954066 + ], + [ + 63.80630225929973, + 43.53338975802561 + ], + [ + 63.92114494278341, + 43.728037492954066 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 43.728037492954066 + ], + [ + 63.80630225929973, + 43.53338975802561 + ], + [ + 64.03598762626709, + 43.53338975802561 + ], + [ + 63.92114494278341, + 43.728037492954066 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 43.728037492954066 + ], + [ + 64.03598762626709, + 43.53338975802561 + ], + [ + 64.15083030975076, + 43.728037492954066 + ], + [ + 63.92114494278341, + 43.728037492954066 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 44.11733296281097 + ], + [ + 64.15083030975076, + 44.11733296281097 + ], + [ + 64.03598762626709, + 44.31198069773942 + ], + [ + 63.92114494278341, + 44.11733296281097 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 44.11733296281097 + ], + [ + 64.03598762626709, + 44.31198069773942 + ], + [ + 63.80630225929973, + 44.31198069773942 + ], + [ + 63.92114494278341, + 44.11733296281097 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 44.11733296281097 + ], + [ + 63.80630225929973, + 44.31198069773942 + ], + [ + 63.69145957581605, + 44.11733296281097 + ], + [ + 63.92114494278341, + 44.11733296281097 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 44.11733296281097 + ], + [ + 63.69145957581605, + 44.11733296281097 + ], + [ + 63.80630225929973, + 43.92268522788252 + ], + [ + 63.92114494278341, + 44.11733296281097 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 44.11733296281097 + ], + [ + 63.80630225929973, + 43.92268522788252 + ], + [ + 64.03598762626709, + 43.92268522788252 + ], + [ + 63.92114494278341, + 44.11733296281097 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 44.11733296281097 + ], + [ + 64.03598762626709, + 43.92268522788252 + ], + [ + 64.15083030975076, + 44.11733296281097 + ], + [ + 63.92114494278341, + 44.11733296281097 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 44.506628432667874 + ], + [ + 64.15083030975076, + 44.506628432667874 + ], + [ + 64.03598762626709, + 44.701276167596326 + ], + [ + 63.92114494278341, + 44.506628432667874 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 44.506628432667874 + ], + [ + 64.03598762626709, + 44.701276167596326 + ], + [ + 63.80630225929973, + 44.701276167596326 + ], + [ + 63.92114494278341, + 44.506628432667874 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 44.506628432667874 + ], + [ + 63.80630225929973, + 44.701276167596326 + ], + [ + 63.69145957581605, + 44.506628432667874 + ], + [ + 63.92114494278341, + 44.506628432667874 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 44.506628432667874 + ], + [ + 63.69145957581605, + 44.506628432667874 + ], + [ + 63.80630225929973, + 44.31198069773942 + ], + [ + 63.92114494278341, + 44.506628432667874 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 44.506628432667874 + ], + [ + 63.80630225929973, + 44.31198069773942 + ], + [ + 64.03598762626709, + 44.31198069773942 + ], + [ + 63.92114494278341, + 44.506628432667874 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 44.506628432667874 + ], + [ + 64.03598762626709, + 44.31198069773942 + ], + [ + 64.15083030975076, + 44.506628432667874 + ], + [ + 63.92114494278341, + 44.506628432667874 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 44.89592390252479 + ], + [ + 64.15083030975076, + 44.89592390252479 + ], + [ + 64.03598762626709, + 45.090571637453245 + ], + [ + 63.92114494278341, + 44.89592390252479 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 44.89592390252479 + ], + [ + 64.03598762626709, + 45.090571637453245 + ], + [ + 63.80630225929973, + 45.090571637453245 + ], + [ + 63.92114494278341, + 44.89592390252479 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 44.89592390252479 + ], + [ + 63.80630225929973, + 45.090571637453245 + ], + [ + 63.69145957581605, + 44.89592390252479 + ], + [ + 63.92114494278341, + 44.89592390252479 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 44.89592390252479 + ], + [ + 63.69145957581605, + 44.89592390252479 + ], + [ + 63.80630225929973, + 44.70127616759634 + ], + [ + 63.92114494278341, + 44.89592390252479 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 44.89592390252479 + ], + [ + 63.80630225929973, + 44.70127616759634 + ], + [ + 64.03598762626709, + 44.70127616759634 + ], + [ + 63.92114494278341, + 44.89592390252479 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 44.89592390252479 + ], + [ + 64.03598762626709, + 44.70127616759634 + ], + [ + 64.15083030975076, + 44.89592390252479 + ], + [ + 63.92114494278341, + 44.89592390252479 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 45.2852193723817 + ], + [ + 64.15083030975076, + 45.2852193723817 + ], + [ + 64.03598762626709, + 45.47986710731015 + ], + [ + 63.92114494278341, + 45.2852193723817 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 45.2852193723817 + ], + [ + 64.03598762626709, + 45.47986710731015 + ], + [ + 63.80630225929973, + 45.47986710731015 + ], + [ + 63.92114494278341, + 45.2852193723817 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 45.2852193723817 + ], + [ + 63.80630225929973, + 45.47986710731015 + ], + [ + 63.69145957581605, + 45.2852193723817 + ], + [ + 63.92114494278341, + 45.2852193723817 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 45.2852193723817 + ], + [ + 63.69145957581605, + 45.2852193723817 + ], + [ + 63.80630225929973, + 45.090571637453245 + ], + [ + 63.92114494278341, + 45.2852193723817 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 45.2852193723817 + ], + [ + 63.80630225929973, + 45.090571637453245 + ], + [ + 64.03598762626709, + 45.090571637453245 + ], + [ + 63.92114494278341, + 45.2852193723817 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 45.2852193723817 + ], + [ + 64.03598762626709, + 45.090571637453245 + ], + [ + 64.15083030975076, + 45.2852193723817 + ], + [ + 63.92114494278341, + 45.2852193723817 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 45.6745148422386 + ], + [ + 64.15083030975076, + 45.6745148422386 + ], + [ + 64.03598762626709, + 45.86916257716705 + ], + [ + 63.92114494278341, + 45.6745148422386 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 45.6745148422386 + ], + [ + 64.03598762626709, + 45.86916257716705 + ], + [ + 63.80630225929973, + 45.86916257716705 + ], + [ + 63.92114494278341, + 45.6745148422386 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 45.6745148422386 + ], + [ + 63.80630225929973, + 45.86916257716705 + ], + [ + 63.69145957581605, + 45.6745148422386 + ], + [ + 63.92114494278341, + 45.6745148422386 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 45.6745148422386 + ], + [ + 63.69145957581605, + 45.6745148422386 + ], + [ + 63.80630225929973, + 45.47986710731015 + ], + [ + 63.92114494278341, + 45.6745148422386 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 45.6745148422386 + ], + [ + 63.80630225929973, + 45.47986710731015 + ], + [ + 64.03598762626709, + 45.47986710731015 + ], + [ + 63.92114494278341, + 45.6745148422386 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 45.6745148422386 + ], + [ + 64.03598762626709, + 45.47986710731015 + ], + [ + 64.15083030975076, + 45.6745148422386 + ], + [ + 63.92114494278341, + 45.6745148422386 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 46.063810312095505 + ], + [ + 64.15083030975076, + 46.063810312095505 + ], + [ + 64.03598762626709, + 46.25845804702396 + ], + [ + 63.92114494278341, + 46.063810312095505 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 46.063810312095505 + ], + [ + 64.03598762626709, + 46.25845804702396 + ], + [ + 63.80630225929973, + 46.25845804702396 + ], + [ + 63.92114494278341, + 46.063810312095505 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 46.063810312095505 + ], + [ + 63.80630225929973, + 46.25845804702396 + ], + [ + 63.69145957581605, + 46.063810312095505 + ], + [ + 63.92114494278341, + 46.063810312095505 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 46.063810312095505 + ], + [ + 63.69145957581605, + 46.063810312095505 + ], + [ + 63.80630225929973, + 45.86916257716705 + ], + [ + 63.92114494278341, + 46.063810312095505 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 46.063810312095505 + ], + [ + 63.80630225929973, + 45.86916257716705 + ], + [ + 64.03598762626709, + 45.86916257716705 + ], + [ + 63.92114494278341, + 46.063810312095505 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 46.063810312095505 + ], + [ + 64.03598762626709, + 45.86916257716705 + ], + [ + 64.15083030975076, + 46.063810312095505 + ], + [ + 63.92114494278341, + 46.063810312095505 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 46.45310578195241 + ], + [ + 64.15083030975076, + 46.45310578195241 + ], + [ + 64.03598762626709, + 46.64775351688086 + ], + [ + 63.92114494278341, + 46.45310578195241 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 46.45310578195241 + ], + [ + 64.03598762626709, + 46.64775351688086 + ], + [ + 63.80630225929973, + 46.64775351688086 + ], + [ + 63.92114494278341, + 46.45310578195241 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 46.45310578195241 + ], + [ + 63.80630225929973, + 46.64775351688086 + ], + [ + 63.69145957581605, + 46.45310578195241 + ], + [ + 63.92114494278341, + 46.45310578195241 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 46.45310578195241 + ], + [ + 63.69145957581605, + 46.45310578195241 + ], + [ + 63.80630225929973, + 46.25845804702396 + ], + [ + 63.92114494278341, + 46.45310578195241 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 46.45310578195241 + ], + [ + 63.80630225929973, + 46.25845804702396 + ], + [ + 64.03598762626709, + 46.25845804702396 + ], + [ + 63.92114494278341, + 46.45310578195241 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 46.45310578195241 + ], + [ + 64.03598762626709, + 46.25845804702396 + ], + [ + 64.15083030975076, + 46.45310578195241 + ], + [ + 63.92114494278341, + 46.45310578195241 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 46.842401251809314 + ], + [ + 64.15083030975076, + 46.842401251809314 + ], + [ + 64.03598762626709, + 47.037048986737766 + ], + [ + 63.92114494278341, + 46.842401251809314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 46.842401251809314 + ], + [ + 64.03598762626709, + 47.037048986737766 + ], + [ + 63.80630225929973, + 47.037048986737766 + ], + [ + 63.92114494278341, + 46.842401251809314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 46.842401251809314 + ], + [ + 63.80630225929973, + 47.037048986737766 + ], + [ + 63.69145957581605, + 46.842401251809314 + ], + [ + 63.92114494278341, + 46.842401251809314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 46.842401251809314 + ], + [ + 63.69145957581605, + 46.842401251809314 + ], + [ + 63.80630225929973, + 46.64775351688086 + ], + [ + 63.92114494278341, + 46.842401251809314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 46.842401251809314 + ], + [ + 63.80630225929973, + 46.64775351688086 + ], + [ + 64.03598762626709, + 46.64775351688086 + ], + [ + 63.92114494278341, + 46.842401251809314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 46.842401251809314 + ], + [ + 64.03598762626709, + 46.64775351688086 + ], + [ + 64.15083030975076, + 46.842401251809314 + ], + [ + 63.92114494278341, + 46.842401251809314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 47.23169672166622 + ], + [ + 64.15083030975076, + 47.23169672166622 + ], + [ + 64.03598762626709, + 47.42634445659467 + ], + [ + 63.92114494278341, + 47.23169672166622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 47.23169672166622 + ], + [ + 64.03598762626709, + 47.42634445659467 + ], + [ + 63.80630225929973, + 47.42634445659467 + ], + [ + 63.92114494278341, + 47.23169672166622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 47.23169672166622 + ], + [ + 63.80630225929973, + 47.42634445659467 + ], + [ + 63.69145957581605, + 47.23169672166622 + ], + [ + 63.92114494278341, + 47.23169672166622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 47.23169672166622 + ], + [ + 63.69145957581605, + 47.23169672166622 + ], + [ + 63.80630225929973, + 47.037048986737766 + ], + [ + 63.92114494278341, + 47.23169672166622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 47.23169672166622 + ], + [ + 63.80630225929973, + 47.037048986737766 + ], + [ + 64.03598762626709, + 47.037048986737766 + ], + [ + 63.92114494278341, + 47.23169672166622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 47.23169672166622 + ], + [ + 64.03598762626709, + 47.037048986737766 + ], + [ + 64.15083030975076, + 47.23169672166622 + ], + [ + 63.92114494278341, + 47.23169672166622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 47.620992191523136 + ], + [ + 64.15083030975076, + 47.620992191523136 + ], + [ + 64.03598762626709, + 47.81563992645159 + ], + [ + 63.92114494278341, + 47.620992191523136 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 47.620992191523136 + ], + [ + 64.03598762626709, + 47.81563992645159 + ], + [ + 63.80630225929973, + 47.81563992645159 + ], + [ + 63.92114494278341, + 47.620992191523136 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 47.620992191523136 + ], + [ + 63.80630225929973, + 47.81563992645159 + ], + [ + 63.69145957581605, + 47.620992191523136 + ], + [ + 63.92114494278341, + 47.620992191523136 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 47.620992191523136 + ], + [ + 63.69145957581605, + 47.620992191523136 + ], + [ + 63.80630225929973, + 47.426344456594684 + ], + [ + 63.92114494278341, + 47.620992191523136 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 47.620992191523136 + ], + [ + 63.80630225929973, + 47.426344456594684 + ], + [ + 64.03598762626709, + 47.426344456594684 + ], + [ + 63.92114494278341, + 47.620992191523136 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.92114494278341, + 47.620992191523136 + ], + [ + 64.03598762626709, + 47.426344456594684 + ], + [ + 64.15083030975076, + 47.620992191523136 + ], + [ + 63.92114494278341, + 47.620992191523136 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 12.0004566996162 + ], + [ + 64.4953583602018, + 12.0004566996162 + ], + [ + 64.38051567671812, + 12.195104434544653 + ], + [ + 64.26567299323445, + 12.0004566996162 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 12.0004566996162 + ], + [ + 64.38051567671812, + 12.195104434544653 + ], + [ + 64.15083030975077, + 12.195104434544653 + ], + [ + 64.26567299323445, + 12.0004566996162 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 12.0004566996162 + ], + [ + 64.15083030975077, + 12.195104434544653 + ], + [ + 64.03598762626709, + 12.0004566996162 + ], + [ + 64.26567299323445, + 12.0004566996162 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 12.0004566996162 + ], + [ + 64.03598762626709, + 12.0004566996162 + ], + [ + 64.15083030975077, + 11.805808964687746 + ], + [ + 64.26567299323445, + 12.0004566996162 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 12.0004566996162 + ], + [ + 64.15083030975077, + 11.805808964687746 + ], + [ + 64.38051567671812, + 11.805808964687746 + ], + [ + 64.26567299323445, + 12.0004566996162 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 12.0004566996162 + ], + [ + 64.38051567671812, + 11.805808964687746 + ], + [ + 64.4953583602018, + 12.0004566996162 + ], + [ + 64.26567299323445, + 12.0004566996162 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 12.389752169473105 + ], + [ + 64.4953583602018, + 12.389752169473105 + ], + [ + 64.38051567671812, + 12.58439990440156 + ], + [ + 64.26567299323445, + 12.389752169473105 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 12.389752169473105 + ], + [ + 64.38051567671812, + 12.58439990440156 + ], + [ + 64.15083030975077, + 12.58439990440156 + ], + [ + 64.26567299323445, + 12.389752169473105 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 12.389752169473105 + ], + [ + 64.15083030975077, + 12.58439990440156 + ], + [ + 64.03598762626709, + 12.389752169473105 + ], + [ + 64.26567299323445, + 12.389752169473105 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 12.389752169473105 + ], + [ + 64.03598762626709, + 12.389752169473105 + ], + [ + 64.15083030975077, + 12.195104434544652 + ], + [ + 64.26567299323445, + 12.389752169473105 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 12.389752169473105 + ], + [ + 64.15083030975077, + 12.195104434544652 + ], + [ + 64.38051567671812, + 12.195104434544652 + ], + [ + 64.26567299323445, + 12.389752169473105 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 12.389752169473105 + ], + [ + 64.38051567671812, + 12.195104434544652 + ], + [ + 64.4953583602018, + 12.389752169473105 + ], + [ + 64.26567299323445, + 12.389752169473105 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 12.779047639330013 + ], + [ + 64.4953583602018, + 12.779047639330013 + ], + [ + 64.38051567671812, + 12.973695374258467 + ], + [ + 64.26567299323445, + 12.779047639330013 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 12.779047639330013 + ], + [ + 64.38051567671812, + 12.973695374258467 + ], + [ + 64.15083030975077, + 12.973695374258467 + ], + [ + 64.26567299323445, + 12.779047639330013 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 12.779047639330013 + ], + [ + 64.15083030975077, + 12.973695374258467 + ], + [ + 64.03598762626709, + 12.779047639330013 + ], + [ + 64.26567299323445, + 12.779047639330013 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 12.779047639330013 + ], + [ + 64.03598762626709, + 12.779047639330013 + ], + [ + 64.15083030975077, + 12.58439990440156 + ], + [ + 64.26567299323445, + 12.779047639330013 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 12.779047639330013 + ], + [ + 64.15083030975077, + 12.58439990440156 + ], + [ + 64.38051567671812, + 12.58439990440156 + ], + [ + 64.26567299323445, + 12.779047639330013 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 12.779047639330013 + ], + [ + 64.38051567671812, + 12.58439990440156 + ], + [ + 64.4953583602018, + 12.779047639330013 + ], + [ + 64.26567299323445, + 12.779047639330013 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 13.16834310918692 + ], + [ + 64.4953583602018, + 13.16834310918692 + ], + [ + 64.38051567671812, + 13.362990844115373 + ], + [ + 64.26567299323445, + 13.16834310918692 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 13.16834310918692 + ], + [ + 64.38051567671812, + 13.362990844115373 + ], + [ + 64.15083030975077, + 13.362990844115373 + ], + [ + 64.26567299323445, + 13.16834310918692 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 13.16834310918692 + ], + [ + 64.15083030975077, + 13.362990844115373 + ], + [ + 64.03598762626709, + 13.16834310918692 + ], + [ + 64.26567299323445, + 13.16834310918692 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 13.16834310918692 + ], + [ + 64.03598762626709, + 13.16834310918692 + ], + [ + 64.15083030975077, + 12.973695374258465 + ], + [ + 64.26567299323445, + 13.16834310918692 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 13.16834310918692 + ], + [ + 64.15083030975077, + 12.973695374258465 + ], + [ + 64.38051567671812, + 12.973695374258465 + ], + [ + 64.26567299323445, + 13.16834310918692 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 13.16834310918692 + ], + [ + 64.38051567671812, + 12.973695374258465 + ], + [ + 64.4953583602018, + 13.16834310918692 + ], + [ + 64.26567299323445, + 13.16834310918692 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 13.557638579043825 + ], + [ + 64.4953583602018, + 13.557638579043825 + ], + [ + 64.38051567671812, + 13.752286313972279 + ], + [ + 64.26567299323445, + 13.557638579043825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 13.557638579043825 + ], + [ + 64.38051567671812, + 13.752286313972279 + ], + [ + 64.15083030975077, + 13.752286313972279 + ], + [ + 64.26567299323445, + 13.557638579043825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 13.557638579043825 + ], + [ + 64.15083030975077, + 13.752286313972279 + ], + [ + 64.03598762626709, + 13.557638579043825 + ], + [ + 64.26567299323445, + 13.557638579043825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 13.557638579043825 + ], + [ + 64.03598762626709, + 13.557638579043825 + ], + [ + 64.15083030975077, + 13.362990844115371 + ], + [ + 64.26567299323445, + 13.557638579043825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 13.557638579043825 + ], + [ + 64.15083030975077, + 13.362990844115371 + ], + [ + 64.38051567671812, + 13.362990844115371 + ], + [ + 64.26567299323445, + 13.557638579043825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 13.557638579043825 + ], + [ + 64.38051567671812, + 13.362990844115371 + ], + [ + 64.4953583602018, + 13.557638579043825 + ], + [ + 64.26567299323445, + 13.557638579043825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 13.946934048900731 + ], + [ + 64.4953583602018, + 13.946934048900731 + ], + [ + 64.38051567671812, + 14.141581783829185 + ], + [ + 64.26567299323445, + 13.946934048900731 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 13.946934048900731 + ], + [ + 64.38051567671812, + 14.141581783829185 + ], + [ + 64.15083030975077, + 14.141581783829185 + ], + [ + 64.26567299323445, + 13.946934048900731 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 13.946934048900731 + ], + [ + 64.15083030975077, + 14.141581783829185 + ], + [ + 64.03598762626709, + 13.946934048900731 + ], + [ + 64.26567299323445, + 13.946934048900731 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 13.946934048900731 + ], + [ + 64.03598762626709, + 13.946934048900731 + ], + [ + 64.15083030975077, + 13.752286313972277 + ], + [ + 64.26567299323445, + 13.946934048900731 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 13.946934048900731 + ], + [ + 64.15083030975077, + 13.752286313972277 + ], + [ + 64.38051567671812, + 13.752286313972277 + ], + [ + 64.26567299323445, + 13.946934048900731 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 13.946934048900731 + ], + [ + 64.38051567671812, + 13.752286313972277 + ], + [ + 64.4953583602018, + 13.946934048900731 + ], + [ + 64.26567299323445, + 13.946934048900731 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 14.336229518757637 + ], + [ + 64.4953583602018, + 14.336229518757637 + ], + [ + 64.38051567671812, + 14.530877253686091 + ], + [ + 64.26567299323445, + 14.336229518757637 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 14.336229518757637 + ], + [ + 64.38051567671812, + 14.530877253686091 + ], + [ + 64.15083030975077, + 14.530877253686091 + ], + [ + 64.26567299323445, + 14.336229518757637 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 14.336229518757637 + ], + [ + 64.15083030975077, + 14.530877253686091 + ], + [ + 64.03598762626709, + 14.336229518757637 + ], + [ + 64.26567299323445, + 14.336229518757637 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 14.336229518757637 + ], + [ + 64.03598762626709, + 14.336229518757637 + ], + [ + 64.15083030975077, + 14.141581783829183 + ], + [ + 64.26567299323445, + 14.336229518757637 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 14.336229518757637 + ], + [ + 64.15083030975077, + 14.141581783829183 + ], + [ + 64.38051567671812, + 14.141581783829183 + ], + [ + 64.26567299323445, + 14.336229518757637 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 14.336229518757637 + ], + [ + 64.38051567671812, + 14.141581783829183 + ], + [ + 64.4953583602018, + 14.336229518757637 + ], + [ + 64.26567299323445, + 14.336229518757637 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 14.725524988614545 + ], + [ + 64.4953583602018, + 14.725524988614545 + ], + [ + 64.38051567671812, + 14.920172723542999 + ], + [ + 64.26567299323445, + 14.725524988614545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 14.725524988614545 + ], + [ + 64.38051567671812, + 14.920172723542999 + ], + [ + 64.15083030975077, + 14.920172723542999 + ], + [ + 64.26567299323445, + 14.725524988614545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 14.725524988614545 + ], + [ + 64.15083030975077, + 14.920172723542999 + ], + [ + 64.03598762626709, + 14.725524988614545 + ], + [ + 64.26567299323445, + 14.725524988614545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 14.725524988614545 + ], + [ + 64.03598762626709, + 14.725524988614545 + ], + [ + 64.15083030975077, + 14.530877253686091 + ], + [ + 64.26567299323445, + 14.725524988614545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 14.725524988614545 + ], + [ + 64.15083030975077, + 14.530877253686091 + ], + [ + 64.38051567671812, + 14.530877253686091 + ], + [ + 64.26567299323445, + 14.725524988614545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 14.725524988614545 + ], + [ + 64.38051567671812, + 14.530877253686091 + ], + [ + 64.4953583602018, + 14.725524988614545 + ], + [ + 64.26567299323445, + 14.725524988614545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 15.114820458471451 + ], + [ + 64.4953583602018, + 15.114820458471451 + ], + [ + 64.38051567671812, + 15.309468193399905 + ], + [ + 64.26567299323445, + 15.114820458471451 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 15.114820458471451 + ], + [ + 64.38051567671812, + 15.309468193399905 + ], + [ + 64.15083030975077, + 15.309468193399905 + ], + [ + 64.26567299323445, + 15.114820458471451 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 15.114820458471451 + ], + [ + 64.15083030975077, + 15.309468193399905 + ], + [ + 64.03598762626709, + 15.114820458471451 + ], + [ + 64.26567299323445, + 15.114820458471451 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 15.114820458471451 + ], + [ + 64.03598762626709, + 15.114820458471451 + ], + [ + 64.15083030975077, + 14.920172723542997 + ], + [ + 64.26567299323445, + 15.114820458471451 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 15.114820458471451 + ], + [ + 64.15083030975077, + 14.920172723542997 + ], + [ + 64.38051567671812, + 14.920172723542997 + ], + [ + 64.26567299323445, + 15.114820458471451 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 15.114820458471451 + ], + [ + 64.38051567671812, + 14.920172723542997 + ], + [ + 64.4953583602018, + 15.114820458471451 + ], + [ + 64.26567299323445, + 15.114820458471451 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 15.504115928328357 + ], + [ + 64.4953583602018, + 15.504115928328357 + ], + [ + 64.38051567671812, + 15.69876366325681 + ], + [ + 64.26567299323445, + 15.504115928328357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 15.504115928328357 + ], + [ + 64.38051567671812, + 15.69876366325681 + ], + [ + 64.15083030975077, + 15.69876366325681 + ], + [ + 64.26567299323445, + 15.504115928328357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 15.504115928328357 + ], + [ + 64.15083030975077, + 15.69876366325681 + ], + [ + 64.03598762626709, + 15.504115928328357 + ], + [ + 64.26567299323445, + 15.504115928328357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 15.504115928328357 + ], + [ + 64.03598762626709, + 15.504115928328357 + ], + [ + 64.15083030975077, + 15.309468193399903 + ], + [ + 64.26567299323445, + 15.504115928328357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 15.504115928328357 + ], + [ + 64.15083030975077, + 15.309468193399903 + ], + [ + 64.38051567671812, + 15.309468193399903 + ], + [ + 64.26567299323445, + 15.504115928328357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 15.504115928328357 + ], + [ + 64.38051567671812, + 15.309468193399903 + ], + [ + 64.4953583602018, + 15.504115928328357 + ], + [ + 64.26567299323445, + 15.504115928328357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 15.893411398185265 + ], + [ + 64.4953583602018, + 15.893411398185265 + ], + [ + 64.38051567671812, + 16.088059133113717 + ], + [ + 64.26567299323445, + 15.893411398185265 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 15.893411398185265 + ], + [ + 64.38051567671812, + 16.088059133113717 + ], + [ + 64.15083030975077, + 16.088059133113717 + ], + [ + 64.26567299323445, + 15.893411398185265 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 15.893411398185265 + ], + [ + 64.15083030975077, + 16.088059133113717 + ], + [ + 64.03598762626709, + 15.893411398185265 + ], + [ + 64.26567299323445, + 15.893411398185265 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 15.893411398185265 + ], + [ + 64.03598762626709, + 15.893411398185265 + ], + [ + 64.15083030975077, + 15.69876366325681 + ], + [ + 64.26567299323445, + 15.893411398185265 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 15.893411398185265 + ], + [ + 64.15083030975077, + 15.69876366325681 + ], + [ + 64.38051567671812, + 15.69876366325681 + ], + [ + 64.26567299323445, + 15.893411398185265 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 15.893411398185265 + ], + [ + 64.38051567671812, + 15.69876366325681 + ], + [ + 64.4953583602018, + 15.893411398185265 + ], + [ + 64.26567299323445, + 15.893411398185265 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 16.28270686804217 + ], + [ + 64.4953583602018, + 16.28270686804217 + ], + [ + 64.38051567671812, + 16.47735460297062 + ], + [ + 64.26567299323445, + 16.28270686804217 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 16.28270686804217 + ], + [ + 64.38051567671812, + 16.47735460297062 + ], + [ + 64.15083030975077, + 16.47735460297062 + ], + [ + 64.26567299323445, + 16.28270686804217 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 16.28270686804217 + ], + [ + 64.15083030975077, + 16.47735460297062 + ], + [ + 64.03598762626709, + 16.28270686804217 + ], + [ + 64.26567299323445, + 16.28270686804217 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 16.28270686804217 + ], + [ + 64.03598762626709, + 16.28270686804217 + ], + [ + 64.15083030975077, + 16.088059133113717 + ], + [ + 64.26567299323445, + 16.28270686804217 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 16.28270686804217 + ], + [ + 64.15083030975077, + 16.088059133113717 + ], + [ + 64.38051567671812, + 16.088059133113717 + ], + [ + 64.26567299323445, + 16.28270686804217 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 16.28270686804217 + ], + [ + 64.38051567671812, + 16.088059133113717 + ], + [ + 64.4953583602018, + 16.28270686804217 + ], + [ + 64.26567299323445, + 16.28270686804217 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 16.672002337899077 + ], + [ + 64.4953583602018, + 16.672002337899077 + ], + [ + 64.38051567671812, + 16.86665007282753 + ], + [ + 64.26567299323445, + 16.672002337899077 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 16.672002337899077 + ], + [ + 64.38051567671812, + 16.86665007282753 + ], + [ + 64.15083030975077, + 16.86665007282753 + ], + [ + 64.26567299323445, + 16.672002337899077 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 16.672002337899077 + ], + [ + 64.15083030975077, + 16.86665007282753 + ], + [ + 64.03598762626709, + 16.672002337899077 + ], + [ + 64.26567299323445, + 16.672002337899077 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 16.672002337899077 + ], + [ + 64.03598762626709, + 16.672002337899077 + ], + [ + 64.15083030975077, + 16.477354602970625 + ], + [ + 64.26567299323445, + 16.672002337899077 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 16.672002337899077 + ], + [ + 64.15083030975077, + 16.477354602970625 + ], + [ + 64.38051567671812, + 16.477354602970625 + ], + [ + 64.26567299323445, + 16.672002337899077 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 16.672002337899077 + ], + [ + 64.38051567671812, + 16.477354602970625 + ], + [ + 64.4953583602018, + 16.672002337899077 + ], + [ + 64.26567299323445, + 16.672002337899077 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 17.06129780775598 + ], + [ + 64.4953583602018, + 17.06129780775598 + ], + [ + 64.38051567671812, + 17.255945542684433 + ], + [ + 64.26567299323445, + 17.06129780775598 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 17.06129780775598 + ], + [ + 64.38051567671812, + 17.255945542684433 + ], + [ + 64.15083030975077, + 17.255945542684433 + ], + [ + 64.26567299323445, + 17.06129780775598 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 17.06129780775598 + ], + [ + 64.15083030975077, + 17.255945542684433 + ], + [ + 64.03598762626709, + 17.06129780775598 + ], + [ + 64.26567299323445, + 17.06129780775598 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 17.06129780775598 + ], + [ + 64.03598762626709, + 17.06129780775598 + ], + [ + 64.15083030975077, + 16.86665007282753 + ], + [ + 64.26567299323445, + 17.06129780775598 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 17.06129780775598 + ], + [ + 64.15083030975077, + 16.86665007282753 + ], + [ + 64.38051567671812, + 16.86665007282753 + ], + [ + 64.26567299323445, + 17.06129780775598 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 17.06129780775598 + ], + [ + 64.38051567671812, + 16.86665007282753 + ], + [ + 64.4953583602018, + 17.06129780775598 + ], + [ + 64.26567299323445, + 17.06129780775598 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 17.45059327761289 + ], + [ + 64.4953583602018, + 17.45059327761289 + ], + [ + 64.38051567671812, + 17.64524101254134 + ], + [ + 64.26567299323445, + 17.45059327761289 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 17.45059327761289 + ], + [ + 64.38051567671812, + 17.64524101254134 + ], + [ + 64.15083030975077, + 17.64524101254134 + ], + [ + 64.26567299323445, + 17.45059327761289 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 17.45059327761289 + ], + [ + 64.15083030975077, + 17.64524101254134 + ], + [ + 64.03598762626709, + 17.45059327761289 + ], + [ + 64.26567299323445, + 17.45059327761289 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 17.45059327761289 + ], + [ + 64.03598762626709, + 17.45059327761289 + ], + [ + 64.15083030975077, + 17.255945542684437 + ], + [ + 64.26567299323445, + 17.45059327761289 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 17.45059327761289 + ], + [ + 64.15083030975077, + 17.255945542684437 + ], + [ + 64.38051567671812, + 17.255945542684437 + ], + [ + 64.26567299323445, + 17.45059327761289 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 17.45059327761289 + ], + [ + 64.38051567671812, + 17.255945542684437 + ], + [ + 64.4953583602018, + 17.45059327761289 + ], + [ + 64.26567299323445, + 17.45059327761289 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 17.839888747469793 + ], + [ + 64.4953583602018, + 17.839888747469793 + ], + [ + 64.38051567671812, + 18.034536482398245 + ], + [ + 64.26567299323445, + 17.839888747469793 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 17.839888747469793 + ], + [ + 64.38051567671812, + 18.034536482398245 + ], + [ + 64.15083030975077, + 18.034536482398245 + ], + [ + 64.26567299323445, + 17.839888747469793 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 17.839888747469793 + ], + [ + 64.15083030975077, + 18.034536482398245 + ], + [ + 64.03598762626709, + 17.839888747469793 + ], + [ + 64.26567299323445, + 17.839888747469793 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 17.839888747469793 + ], + [ + 64.03598762626709, + 17.839888747469793 + ], + [ + 64.15083030975077, + 17.64524101254134 + ], + [ + 64.26567299323445, + 17.839888747469793 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 17.839888747469793 + ], + [ + 64.15083030975077, + 17.64524101254134 + ], + [ + 64.38051567671812, + 17.64524101254134 + ], + [ + 64.26567299323445, + 17.839888747469793 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 17.839888747469793 + ], + [ + 64.38051567671812, + 17.64524101254134 + ], + [ + 64.4953583602018, + 17.839888747469793 + ], + [ + 64.26567299323445, + 17.839888747469793 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 18.2291842173267 + ], + [ + 64.4953583602018, + 18.2291842173267 + ], + [ + 64.38051567671812, + 18.423831952255153 + ], + [ + 64.26567299323445, + 18.2291842173267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 18.2291842173267 + ], + [ + 64.38051567671812, + 18.423831952255153 + ], + [ + 64.15083030975077, + 18.423831952255153 + ], + [ + 64.26567299323445, + 18.2291842173267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 18.2291842173267 + ], + [ + 64.15083030975077, + 18.423831952255153 + ], + [ + 64.03598762626709, + 18.2291842173267 + ], + [ + 64.26567299323445, + 18.2291842173267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 18.2291842173267 + ], + [ + 64.03598762626709, + 18.2291842173267 + ], + [ + 64.15083030975077, + 18.03453648239825 + ], + [ + 64.26567299323445, + 18.2291842173267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 18.2291842173267 + ], + [ + 64.15083030975077, + 18.03453648239825 + ], + [ + 64.38051567671812, + 18.03453648239825 + ], + [ + 64.26567299323445, + 18.2291842173267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 18.2291842173267 + ], + [ + 64.38051567671812, + 18.03453648239825 + ], + [ + 64.4953583602018, + 18.2291842173267 + ], + [ + 64.26567299323445, + 18.2291842173267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 18.61847968718361 + ], + [ + 64.4953583602018, + 18.61847968718361 + ], + [ + 64.38051567671812, + 18.81312742211206 + ], + [ + 64.26567299323445, + 18.61847968718361 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 18.61847968718361 + ], + [ + 64.38051567671812, + 18.81312742211206 + ], + [ + 64.15083030975077, + 18.81312742211206 + ], + [ + 64.26567299323445, + 18.61847968718361 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 18.61847968718361 + ], + [ + 64.15083030975077, + 18.81312742211206 + ], + [ + 64.03598762626709, + 18.61847968718361 + ], + [ + 64.26567299323445, + 18.61847968718361 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 18.61847968718361 + ], + [ + 64.03598762626709, + 18.61847968718361 + ], + [ + 64.15083030975077, + 18.423831952255156 + ], + [ + 64.26567299323445, + 18.61847968718361 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 18.61847968718361 + ], + [ + 64.15083030975077, + 18.423831952255156 + ], + [ + 64.38051567671812, + 18.423831952255156 + ], + [ + 64.26567299323445, + 18.61847968718361 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 18.61847968718361 + ], + [ + 64.38051567671812, + 18.423831952255156 + ], + [ + 64.4953583602018, + 18.61847968718361 + ], + [ + 64.26567299323445, + 18.61847968718361 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 19.007775157040513 + ], + [ + 64.4953583602018, + 19.007775157040513 + ], + [ + 64.38051567671812, + 19.202422891968965 + ], + [ + 64.26567299323445, + 19.007775157040513 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 19.007775157040513 + ], + [ + 64.38051567671812, + 19.202422891968965 + ], + [ + 64.15083030975077, + 19.202422891968965 + ], + [ + 64.26567299323445, + 19.007775157040513 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 19.007775157040513 + ], + [ + 64.15083030975077, + 19.202422891968965 + ], + [ + 64.03598762626709, + 19.007775157040513 + ], + [ + 64.26567299323445, + 19.007775157040513 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 19.007775157040513 + ], + [ + 64.03598762626709, + 19.007775157040513 + ], + [ + 64.15083030975077, + 18.81312742211206 + ], + [ + 64.26567299323445, + 19.007775157040513 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 19.007775157040513 + ], + [ + 64.15083030975077, + 18.81312742211206 + ], + [ + 64.38051567671812, + 18.81312742211206 + ], + [ + 64.26567299323445, + 19.007775157040513 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 19.007775157040513 + ], + [ + 64.38051567671812, + 18.81312742211206 + ], + [ + 64.4953583602018, + 19.007775157040513 + ], + [ + 64.26567299323445, + 19.007775157040513 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 19.39707062689742 + ], + [ + 64.4953583602018, + 19.39707062689742 + ], + [ + 64.38051567671812, + 19.591718361825873 + ], + [ + 64.26567299323445, + 19.39707062689742 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 19.39707062689742 + ], + [ + 64.38051567671812, + 19.591718361825873 + ], + [ + 64.15083030975077, + 19.591718361825873 + ], + [ + 64.26567299323445, + 19.39707062689742 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 19.39707062689742 + ], + [ + 64.15083030975077, + 19.591718361825873 + ], + [ + 64.03598762626709, + 19.39707062689742 + ], + [ + 64.26567299323445, + 19.39707062689742 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 19.39707062689742 + ], + [ + 64.03598762626709, + 19.39707062689742 + ], + [ + 64.15083030975077, + 19.20242289196897 + ], + [ + 64.26567299323445, + 19.39707062689742 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 19.39707062689742 + ], + [ + 64.15083030975077, + 19.20242289196897 + ], + [ + 64.38051567671812, + 19.20242289196897 + ], + [ + 64.26567299323445, + 19.39707062689742 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 19.39707062689742 + ], + [ + 64.38051567671812, + 19.20242289196897 + ], + [ + 64.4953583602018, + 19.39707062689742 + ], + [ + 64.26567299323445, + 19.39707062689742 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 19.78636609675433 + ], + [ + 64.4953583602018, + 19.78636609675433 + ], + [ + 64.38051567671812, + 19.98101383168278 + ], + [ + 64.26567299323445, + 19.78636609675433 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 19.78636609675433 + ], + [ + 64.38051567671812, + 19.98101383168278 + ], + [ + 64.15083030975077, + 19.98101383168278 + ], + [ + 64.26567299323445, + 19.78636609675433 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 19.78636609675433 + ], + [ + 64.15083030975077, + 19.98101383168278 + ], + [ + 64.03598762626709, + 19.78636609675433 + ], + [ + 64.26567299323445, + 19.78636609675433 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 19.78636609675433 + ], + [ + 64.03598762626709, + 19.78636609675433 + ], + [ + 64.15083030975077, + 19.591718361825876 + ], + [ + 64.26567299323445, + 19.78636609675433 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 19.78636609675433 + ], + [ + 64.15083030975077, + 19.591718361825876 + ], + [ + 64.38051567671812, + 19.591718361825876 + ], + [ + 64.26567299323445, + 19.78636609675433 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 19.78636609675433 + ], + [ + 64.38051567671812, + 19.591718361825876 + ], + [ + 64.4953583602018, + 19.78636609675433 + ], + [ + 64.26567299323445, + 19.78636609675433 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 20.175661566611232 + ], + [ + 64.4953583602018, + 20.175661566611232 + ], + [ + 64.38051567671812, + 20.370309301539685 + ], + [ + 64.26567299323445, + 20.175661566611232 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 20.175661566611232 + ], + [ + 64.38051567671812, + 20.370309301539685 + ], + [ + 64.15083030975077, + 20.370309301539685 + ], + [ + 64.26567299323445, + 20.175661566611232 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 20.175661566611232 + ], + [ + 64.15083030975077, + 20.370309301539685 + ], + [ + 64.03598762626709, + 20.175661566611232 + ], + [ + 64.26567299323445, + 20.175661566611232 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 20.175661566611232 + ], + [ + 64.03598762626709, + 20.175661566611232 + ], + [ + 64.15083030975077, + 19.98101383168278 + ], + [ + 64.26567299323445, + 20.175661566611232 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 20.175661566611232 + ], + [ + 64.15083030975077, + 19.98101383168278 + ], + [ + 64.38051567671812, + 19.98101383168278 + ], + [ + 64.26567299323445, + 20.175661566611232 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 20.175661566611232 + ], + [ + 64.38051567671812, + 19.98101383168278 + ], + [ + 64.4953583602018, + 20.175661566611232 + ], + [ + 64.26567299323445, + 20.175661566611232 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 20.564957036468137 + ], + [ + 64.4953583602018, + 20.564957036468137 + ], + [ + 64.38051567671812, + 20.75960477139659 + ], + [ + 64.26567299323445, + 20.564957036468137 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 20.564957036468137 + ], + [ + 64.38051567671812, + 20.75960477139659 + ], + [ + 64.15083030975077, + 20.75960477139659 + ], + [ + 64.26567299323445, + 20.564957036468137 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 20.564957036468137 + ], + [ + 64.15083030975077, + 20.75960477139659 + ], + [ + 64.03598762626709, + 20.564957036468137 + ], + [ + 64.26567299323445, + 20.564957036468137 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 20.564957036468137 + ], + [ + 64.03598762626709, + 20.564957036468137 + ], + [ + 64.15083030975077, + 20.370309301539685 + ], + [ + 64.26567299323445, + 20.564957036468137 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 20.564957036468137 + ], + [ + 64.15083030975077, + 20.370309301539685 + ], + [ + 64.38051567671812, + 20.370309301539685 + ], + [ + 64.26567299323445, + 20.564957036468137 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 20.564957036468137 + ], + [ + 64.38051567671812, + 20.370309301539685 + ], + [ + 64.4953583602018, + 20.564957036468137 + ], + [ + 64.26567299323445, + 20.564957036468137 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 20.954252506325044 + ], + [ + 64.4953583602018, + 20.954252506325044 + ], + [ + 64.38051567671812, + 21.148900241253497 + ], + [ + 64.26567299323445, + 20.954252506325044 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 20.954252506325044 + ], + [ + 64.38051567671812, + 21.148900241253497 + ], + [ + 64.15083030975077, + 21.148900241253497 + ], + [ + 64.26567299323445, + 20.954252506325044 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 20.954252506325044 + ], + [ + 64.15083030975077, + 21.148900241253497 + ], + [ + 64.03598762626709, + 20.954252506325044 + ], + [ + 64.26567299323445, + 20.954252506325044 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 20.954252506325044 + ], + [ + 64.03598762626709, + 20.954252506325044 + ], + [ + 64.15083030975077, + 20.759604771396592 + ], + [ + 64.26567299323445, + 20.954252506325044 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 20.954252506325044 + ], + [ + 64.15083030975077, + 20.759604771396592 + ], + [ + 64.38051567671812, + 20.759604771396592 + ], + [ + 64.26567299323445, + 20.954252506325044 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 20.954252506325044 + ], + [ + 64.38051567671812, + 20.759604771396592 + ], + [ + 64.4953583602018, + 20.954252506325044 + ], + [ + 64.26567299323445, + 20.954252506325044 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 21.343547976181952 + ], + [ + 64.4953583602018, + 21.343547976181952 + ], + [ + 64.38051567671812, + 21.538195711110404 + ], + [ + 64.26567299323445, + 21.343547976181952 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 21.343547976181952 + ], + [ + 64.38051567671812, + 21.538195711110404 + ], + [ + 64.15083030975077, + 21.538195711110404 + ], + [ + 64.26567299323445, + 21.343547976181952 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 21.343547976181952 + ], + [ + 64.15083030975077, + 21.538195711110404 + ], + [ + 64.03598762626709, + 21.343547976181952 + ], + [ + 64.26567299323445, + 21.343547976181952 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 21.343547976181952 + ], + [ + 64.03598762626709, + 21.343547976181952 + ], + [ + 64.15083030975077, + 21.1489002412535 + ], + [ + 64.26567299323445, + 21.343547976181952 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 21.343547976181952 + ], + [ + 64.15083030975077, + 21.1489002412535 + ], + [ + 64.38051567671812, + 21.1489002412535 + ], + [ + 64.26567299323445, + 21.343547976181952 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 21.343547976181952 + ], + [ + 64.38051567671812, + 21.1489002412535 + ], + [ + 64.4953583602018, + 21.343547976181952 + ], + [ + 64.26567299323445, + 21.343547976181952 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 21.732843446038856 + ], + [ + 64.4953583602018, + 21.732843446038856 + ], + [ + 64.38051567671812, + 21.92749118096731 + ], + [ + 64.26567299323445, + 21.732843446038856 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 21.732843446038856 + ], + [ + 64.38051567671812, + 21.92749118096731 + ], + [ + 64.15083030975077, + 21.92749118096731 + ], + [ + 64.26567299323445, + 21.732843446038856 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 21.732843446038856 + ], + [ + 64.15083030975077, + 21.92749118096731 + ], + [ + 64.03598762626709, + 21.732843446038856 + ], + [ + 64.26567299323445, + 21.732843446038856 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 21.732843446038856 + ], + [ + 64.03598762626709, + 21.732843446038856 + ], + [ + 64.15083030975077, + 21.538195711110404 + ], + [ + 64.26567299323445, + 21.732843446038856 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 21.732843446038856 + ], + [ + 64.15083030975077, + 21.538195711110404 + ], + [ + 64.38051567671812, + 21.538195711110404 + ], + [ + 64.26567299323445, + 21.732843446038856 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 21.732843446038856 + ], + [ + 64.38051567671812, + 21.538195711110404 + ], + [ + 64.4953583602018, + 21.732843446038856 + ], + [ + 64.26567299323445, + 21.732843446038856 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 22.122138915895764 + ], + [ + 64.4953583602018, + 22.122138915895764 + ], + [ + 64.38051567671812, + 22.316786650824216 + ], + [ + 64.26567299323445, + 22.122138915895764 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 22.122138915895764 + ], + [ + 64.38051567671812, + 22.316786650824216 + ], + [ + 64.15083030975077, + 22.316786650824216 + ], + [ + 64.26567299323445, + 22.122138915895764 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 22.122138915895764 + ], + [ + 64.15083030975077, + 22.316786650824216 + ], + [ + 64.03598762626709, + 22.122138915895764 + ], + [ + 64.26567299323445, + 22.122138915895764 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 22.122138915895764 + ], + [ + 64.03598762626709, + 22.122138915895764 + ], + [ + 64.15083030975077, + 21.927491180967312 + ], + [ + 64.26567299323445, + 22.122138915895764 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 22.122138915895764 + ], + [ + 64.15083030975077, + 21.927491180967312 + ], + [ + 64.38051567671812, + 21.927491180967312 + ], + [ + 64.26567299323445, + 22.122138915895764 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 22.122138915895764 + ], + [ + 64.38051567671812, + 21.927491180967312 + ], + [ + 64.4953583602018, + 22.122138915895764 + ], + [ + 64.26567299323445, + 22.122138915895764 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 22.511434385752672 + ], + [ + 64.4953583602018, + 22.511434385752672 + ], + [ + 64.38051567671812, + 22.706082120681124 + ], + [ + 64.26567299323445, + 22.511434385752672 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 22.511434385752672 + ], + [ + 64.38051567671812, + 22.706082120681124 + ], + [ + 64.15083030975077, + 22.706082120681124 + ], + [ + 64.26567299323445, + 22.511434385752672 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 22.511434385752672 + ], + [ + 64.15083030975077, + 22.706082120681124 + ], + [ + 64.03598762626709, + 22.511434385752672 + ], + [ + 64.26567299323445, + 22.511434385752672 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 22.511434385752672 + ], + [ + 64.03598762626709, + 22.511434385752672 + ], + [ + 64.15083030975077, + 22.31678665082422 + ], + [ + 64.26567299323445, + 22.511434385752672 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 22.511434385752672 + ], + [ + 64.15083030975077, + 22.31678665082422 + ], + [ + 64.38051567671812, + 22.31678665082422 + ], + [ + 64.26567299323445, + 22.511434385752672 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 22.511434385752672 + ], + [ + 64.38051567671812, + 22.31678665082422 + ], + [ + 64.4953583602018, + 22.511434385752672 + ], + [ + 64.26567299323445, + 22.511434385752672 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 22.900729855609576 + ], + [ + 64.4953583602018, + 22.900729855609576 + ], + [ + 64.38051567671812, + 23.09537759053803 + ], + [ + 64.26567299323445, + 22.900729855609576 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 22.900729855609576 + ], + [ + 64.38051567671812, + 23.09537759053803 + ], + [ + 64.15083030975077, + 23.09537759053803 + ], + [ + 64.26567299323445, + 22.900729855609576 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 22.900729855609576 + ], + [ + 64.15083030975077, + 23.09537759053803 + ], + [ + 64.03598762626709, + 22.900729855609576 + ], + [ + 64.26567299323445, + 22.900729855609576 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 22.900729855609576 + ], + [ + 64.03598762626709, + 22.900729855609576 + ], + [ + 64.15083030975077, + 22.706082120681124 + ], + [ + 64.26567299323445, + 22.900729855609576 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 22.900729855609576 + ], + [ + 64.15083030975077, + 22.706082120681124 + ], + [ + 64.38051567671812, + 22.706082120681124 + ], + [ + 64.26567299323445, + 22.900729855609576 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 22.900729855609576 + ], + [ + 64.38051567671812, + 22.706082120681124 + ], + [ + 64.4953583602018, + 22.900729855609576 + ], + [ + 64.26567299323445, + 22.900729855609576 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 23.290025325466484 + ], + [ + 64.4953583602018, + 23.290025325466484 + ], + [ + 64.38051567671812, + 23.484673060394936 + ], + [ + 64.26567299323445, + 23.290025325466484 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 23.290025325466484 + ], + [ + 64.38051567671812, + 23.484673060394936 + ], + [ + 64.15083030975077, + 23.484673060394936 + ], + [ + 64.26567299323445, + 23.290025325466484 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 23.290025325466484 + ], + [ + 64.15083030975077, + 23.484673060394936 + ], + [ + 64.03598762626709, + 23.290025325466484 + ], + [ + 64.26567299323445, + 23.290025325466484 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 23.290025325466484 + ], + [ + 64.03598762626709, + 23.290025325466484 + ], + [ + 64.15083030975077, + 23.095377590538032 + ], + [ + 64.26567299323445, + 23.290025325466484 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 23.290025325466484 + ], + [ + 64.15083030975077, + 23.095377590538032 + ], + [ + 64.38051567671812, + 23.095377590538032 + ], + [ + 64.26567299323445, + 23.290025325466484 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 23.290025325466484 + ], + [ + 64.38051567671812, + 23.095377590538032 + ], + [ + 64.4953583602018, + 23.290025325466484 + ], + [ + 64.26567299323445, + 23.290025325466484 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 23.67932079532339 + ], + [ + 64.4953583602018, + 23.67932079532339 + ], + [ + 64.38051567671812, + 23.873968530251844 + ], + [ + 64.26567299323445, + 23.67932079532339 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 23.67932079532339 + ], + [ + 64.38051567671812, + 23.873968530251844 + ], + [ + 64.15083030975077, + 23.873968530251844 + ], + [ + 64.26567299323445, + 23.67932079532339 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 23.67932079532339 + ], + [ + 64.15083030975077, + 23.873968530251844 + ], + [ + 64.03598762626709, + 23.67932079532339 + ], + [ + 64.26567299323445, + 23.67932079532339 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 23.67932079532339 + ], + [ + 64.03598762626709, + 23.67932079532339 + ], + [ + 64.15083030975077, + 23.48467306039494 + ], + [ + 64.26567299323445, + 23.67932079532339 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 23.67932079532339 + ], + [ + 64.15083030975077, + 23.48467306039494 + ], + [ + 64.38051567671812, + 23.48467306039494 + ], + [ + 64.26567299323445, + 23.67932079532339 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 23.67932079532339 + ], + [ + 64.38051567671812, + 23.48467306039494 + ], + [ + 64.4953583602018, + 23.67932079532339 + ], + [ + 64.26567299323445, + 23.67932079532339 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 24.068616265180296 + ], + [ + 64.4953583602018, + 24.068616265180296 + ], + [ + 64.38051567671812, + 24.263264000108748 + ], + [ + 64.26567299323445, + 24.068616265180296 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 24.068616265180296 + ], + [ + 64.38051567671812, + 24.263264000108748 + ], + [ + 64.15083030975077, + 24.263264000108748 + ], + [ + 64.26567299323445, + 24.068616265180296 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 24.068616265180296 + ], + [ + 64.15083030975077, + 24.263264000108748 + ], + [ + 64.03598762626709, + 24.068616265180296 + ], + [ + 64.26567299323445, + 24.068616265180296 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 24.068616265180296 + ], + [ + 64.03598762626709, + 24.068616265180296 + ], + [ + 64.15083030975077, + 23.873968530251844 + ], + [ + 64.26567299323445, + 24.068616265180296 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 24.068616265180296 + ], + [ + 64.15083030975077, + 23.873968530251844 + ], + [ + 64.38051567671812, + 23.873968530251844 + ], + [ + 64.26567299323445, + 24.068616265180296 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 24.068616265180296 + ], + [ + 64.38051567671812, + 23.873968530251844 + ], + [ + 64.4953583602018, + 24.068616265180296 + ], + [ + 64.26567299323445, + 24.068616265180296 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 24.4579117350372 + ], + [ + 64.4953583602018, + 24.4579117350372 + ], + [ + 64.38051567671812, + 24.652559469965652 + ], + [ + 64.26567299323445, + 24.4579117350372 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 24.4579117350372 + ], + [ + 64.38051567671812, + 24.652559469965652 + ], + [ + 64.15083030975077, + 24.652559469965652 + ], + [ + 64.26567299323445, + 24.4579117350372 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 24.4579117350372 + ], + [ + 64.15083030975077, + 24.652559469965652 + ], + [ + 64.03598762626709, + 24.4579117350372 + ], + [ + 64.26567299323445, + 24.4579117350372 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 24.4579117350372 + ], + [ + 64.03598762626709, + 24.4579117350372 + ], + [ + 64.15083030975077, + 24.263264000108748 + ], + [ + 64.26567299323445, + 24.4579117350372 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 24.4579117350372 + ], + [ + 64.15083030975077, + 24.263264000108748 + ], + [ + 64.38051567671812, + 24.263264000108748 + ], + [ + 64.26567299323445, + 24.4579117350372 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 24.4579117350372 + ], + [ + 64.38051567671812, + 24.263264000108748 + ], + [ + 64.4953583602018, + 24.4579117350372 + ], + [ + 64.26567299323445, + 24.4579117350372 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 24.847207204894108 + ], + [ + 64.4953583602018, + 24.847207204894108 + ], + [ + 64.38051567671812, + 25.04185493982256 + ], + [ + 64.26567299323445, + 24.847207204894108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 24.847207204894108 + ], + [ + 64.38051567671812, + 25.04185493982256 + ], + [ + 64.15083030975077, + 25.04185493982256 + ], + [ + 64.26567299323445, + 24.847207204894108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 24.847207204894108 + ], + [ + 64.15083030975077, + 25.04185493982256 + ], + [ + 64.03598762626709, + 24.847207204894108 + ], + [ + 64.26567299323445, + 24.847207204894108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 24.847207204894108 + ], + [ + 64.03598762626709, + 24.847207204894108 + ], + [ + 64.15083030975077, + 24.652559469965656 + ], + [ + 64.26567299323445, + 24.847207204894108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 24.847207204894108 + ], + [ + 64.15083030975077, + 24.652559469965656 + ], + [ + 64.38051567671812, + 24.652559469965656 + ], + [ + 64.26567299323445, + 24.847207204894108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 24.847207204894108 + ], + [ + 64.38051567671812, + 24.652559469965656 + ], + [ + 64.4953583602018, + 24.847207204894108 + ], + [ + 64.26567299323445, + 24.847207204894108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 25.236502674751016 + ], + [ + 64.4953583602018, + 25.236502674751016 + ], + [ + 64.38051567671812, + 25.431150409679468 + ], + [ + 64.26567299323445, + 25.236502674751016 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 25.236502674751016 + ], + [ + 64.38051567671812, + 25.431150409679468 + ], + [ + 64.15083030975077, + 25.431150409679468 + ], + [ + 64.26567299323445, + 25.236502674751016 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 25.236502674751016 + ], + [ + 64.15083030975077, + 25.431150409679468 + ], + [ + 64.03598762626709, + 25.236502674751016 + ], + [ + 64.26567299323445, + 25.236502674751016 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 25.236502674751016 + ], + [ + 64.03598762626709, + 25.236502674751016 + ], + [ + 64.15083030975077, + 25.041854939822564 + ], + [ + 64.26567299323445, + 25.236502674751016 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 25.236502674751016 + ], + [ + 64.15083030975077, + 25.041854939822564 + ], + [ + 64.38051567671812, + 25.041854939822564 + ], + [ + 64.26567299323445, + 25.236502674751016 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 25.236502674751016 + ], + [ + 64.38051567671812, + 25.041854939822564 + ], + [ + 64.4953583602018, + 25.236502674751016 + ], + [ + 64.26567299323445, + 25.236502674751016 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 25.62579814460792 + ], + [ + 64.4953583602018, + 25.62579814460792 + ], + [ + 64.38051567671812, + 25.820445879536372 + ], + [ + 64.26567299323445, + 25.62579814460792 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 25.62579814460792 + ], + [ + 64.38051567671812, + 25.820445879536372 + ], + [ + 64.15083030975077, + 25.820445879536372 + ], + [ + 64.26567299323445, + 25.62579814460792 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 25.62579814460792 + ], + [ + 64.15083030975077, + 25.820445879536372 + ], + [ + 64.03598762626709, + 25.62579814460792 + ], + [ + 64.26567299323445, + 25.62579814460792 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 25.62579814460792 + ], + [ + 64.03598762626709, + 25.62579814460792 + ], + [ + 64.15083030975077, + 25.431150409679468 + ], + [ + 64.26567299323445, + 25.62579814460792 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 25.62579814460792 + ], + [ + 64.15083030975077, + 25.431150409679468 + ], + [ + 64.38051567671812, + 25.431150409679468 + ], + [ + 64.26567299323445, + 25.62579814460792 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 25.62579814460792 + ], + [ + 64.38051567671812, + 25.431150409679468 + ], + [ + 64.4953583602018, + 25.62579814460792 + ], + [ + 64.26567299323445, + 25.62579814460792 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 26.015093614464828 + ], + [ + 64.4953583602018, + 26.015093614464828 + ], + [ + 64.38051567671812, + 26.20974134939328 + ], + [ + 64.26567299323445, + 26.015093614464828 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 26.015093614464828 + ], + [ + 64.38051567671812, + 26.20974134939328 + ], + [ + 64.15083030975077, + 26.20974134939328 + ], + [ + 64.26567299323445, + 26.015093614464828 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 26.015093614464828 + ], + [ + 64.15083030975077, + 26.20974134939328 + ], + [ + 64.03598762626709, + 26.015093614464828 + ], + [ + 64.26567299323445, + 26.015093614464828 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 26.015093614464828 + ], + [ + 64.03598762626709, + 26.015093614464828 + ], + [ + 64.15083030975077, + 25.820445879536376 + ], + [ + 64.26567299323445, + 26.015093614464828 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 26.015093614464828 + ], + [ + 64.15083030975077, + 25.820445879536376 + ], + [ + 64.38051567671812, + 25.820445879536376 + ], + [ + 64.26567299323445, + 26.015093614464828 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 26.015093614464828 + ], + [ + 64.38051567671812, + 25.820445879536376 + ], + [ + 64.4953583602018, + 26.015093614464828 + ], + [ + 64.26567299323445, + 26.015093614464828 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 26.404389084321735 + ], + [ + 64.4953583602018, + 26.404389084321735 + ], + [ + 64.38051567671812, + 26.599036819250188 + ], + [ + 64.26567299323445, + 26.404389084321735 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 26.404389084321735 + ], + [ + 64.38051567671812, + 26.599036819250188 + ], + [ + 64.15083030975077, + 26.599036819250188 + ], + [ + 64.26567299323445, + 26.404389084321735 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 26.404389084321735 + ], + [ + 64.15083030975077, + 26.599036819250188 + ], + [ + 64.03598762626709, + 26.404389084321735 + ], + [ + 64.26567299323445, + 26.404389084321735 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 26.404389084321735 + ], + [ + 64.03598762626709, + 26.404389084321735 + ], + [ + 64.15083030975077, + 26.209741349393283 + ], + [ + 64.26567299323445, + 26.404389084321735 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 26.404389084321735 + ], + [ + 64.15083030975077, + 26.209741349393283 + ], + [ + 64.38051567671812, + 26.209741349393283 + ], + [ + 64.26567299323445, + 26.404389084321735 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 26.404389084321735 + ], + [ + 64.38051567671812, + 26.209741349393283 + ], + [ + 64.4953583602018, + 26.404389084321735 + ], + [ + 64.26567299323445, + 26.404389084321735 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 26.79368455417864 + ], + [ + 64.4953583602018, + 26.79368455417864 + ], + [ + 64.38051567671812, + 26.988332289107092 + ], + [ + 64.26567299323445, + 26.79368455417864 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 26.79368455417864 + ], + [ + 64.38051567671812, + 26.988332289107092 + ], + [ + 64.15083030975077, + 26.988332289107092 + ], + [ + 64.26567299323445, + 26.79368455417864 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 26.79368455417864 + ], + [ + 64.15083030975077, + 26.988332289107092 + ], + [ + 64.03598762626709, + 26.79368455417864 + ], + [ + 64.26567299323445, + 26.79368455417864 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 26.79368455417864 + ], + [ + 64.03598762626709, + 26.79368455417864 + ], + [ + 64.15083030975077, + 26.599036819250188 + ], + [ + 64.26567299323445, + 26.79368455417864 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 26.79368455417864 + ], + [ + 64.15083030975077, + 26.599036819250188 + ], + [ + 64.38051567671812, + 26.599036819250188 + ], + [ + 64.26567299323445, + 26.79368455417864 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 26.79368455417864 + ], + [ + 64.38051567671812, + 26.599036819250188 + ], + [ + 64.4953583602018, + 26.79368455417864 + ], + [ + 64.26567299323445, + 26.79368455417864 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 27.182980024035547 + ], + [ + 64.4953583602018, + 27.182980024035547 + ], + [ + 64.38051567671812, + 27.377627758964 + ], + [ + 64.26567299323445, + 27.182980024035547 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 27.182980024035547 + ], + [ + 64.38051567671812, + 27.377627758964 + ], + [ + 64.15083030975077, + 27.377627758964 + ], + [ + 64.26567299323445, + 27.182980024035547 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 27.182980024035547 + ], + [ + 64.15083030975077, + 27.377627758964 + ], + [ + 64.03598762626709, + 27.182980024035547 + ], + [ + 64.26567299323445, + 27.182980024035547 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 27.182980024035547 + ], + [ + 64.03598762626709, + 27.182980024035547 + ], + [ + 64.15083030975077, + 26.988332289107095 + ], + [ + 64.26567299323445, + 27.182980024035547 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 27.182980024035547 + ], + [ + 64.15083030975077, + 26.988332289107095 + ], + [ + 64.38051567671812, + 26.988332289107095 + ], + [ + 64.26567299323445, + 27.182980024035547 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 27.182980024035547 + ], + [ + 64.38051567671812, + 26.988332289107095 + ], + [ + 64.4953583602018, + 27.182980024035547 + ], + [ + 64.26567299323445, + 27.182980024035547 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 27.572275493892455 + ], + [ + 64.4953583602018, + 27.572275493892455 + ], + [ + 64.38051567671812, + 27.766923228820907 + ], + [ + 64.26567299323445, + 27.572275493892455 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 27.572275493892455 + ], + [ + 64.38051567671812, + 27.766923228820907 + ], + [ + 64.15083030975077, + 27.766923228820907 + ], + [ + 64.26567299323445, + 27.572275493892455 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 27.572275493892455 + ], + [ + 64.15083030975077, + 27.766923228820907 + ], + [ + 64.03598762626709, + 27.572275493892455 + ], + [ + 64.26567299323445, + 27.572275493892455 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 27.572275493892455 + ], + [ + 64.03598762626709, + 27.572275493892455 + ], + [ + 64.15083030975077, + 27.377627758964003 + ], + [ + 64.26567299323445, + 27.572275493892455 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 27.572275493892455 + ], + [ + 64.15083030975077, + 27.377627758964003 + ], + [ + 64.38051567671812, + 27.377627758964003 + ], + [ + 64.26567299323445, + 27.572275493892455 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 27.572275493892455 + ], + [ + 64.38051567671812, + 27.377627758964003 + ], + [ + 64.4953583602018, + 27.572275493892455 + ], + [ + 64.26567299323445, + 27.572275493892455 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 27.96157096374936 + ], + [ + 64.4953583602018, + 27.96157096374936 + ], + [ + 64.38051567671812, + 28.15621869867781 + ], + [ + 64.26567299323445, + 27.96157096374936 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 27.96157096374936 + ], + [ + 64.38051567671812, + 28.15621869867781 + ], + [ + 64.15083030975077, + 28.15621869867781 + ], + [ + 64.26567299323445, + 27.96157096374936 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 27.96157096374936 + ], + [ + 64.15083030975077, + 28.15621869867781 + ], + [ + 64.03598762626709, + 27.96157096374936 + ], + [ + 64.26567299323445, + 27.96157096374936 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 27.96157096374936 + ], + [ + 64.03598762626709, + 27.96157096374936 + ], + [ + 64.15083030975077, + 27.766923228820907 + ], + [ + 64.26567299323445, + 27.96157096374936 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 27.96157096374936 + ], + [ + 64.15083030975077, + 27.766923228820907 + ], + [ + 64.38051567671812, + 27.766923228820907 + ], + [ + 64.26567299323445, + 27.96157096374936 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 27.96157096374936 + ], + [ + 64.38051567671812, + 27.766923228820907 + ], + [ + 64.4953583602018, + 27.96157096374936 + ], + [ + 64.26567299323445, + 27.96157096374936 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 28.350866433606267 + ], + [ + 64.4953583602018, + 28.350866433606267 + ], + [ + 64.38051567671812, + 28.54551416853472 + ], + [ + 64.26567299323445, + 28.350866433606267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 28.350866433606267 + ], + [ + 64.38051567671812, + 28.54551416853472 + ], + [ + 64.15083030975077, + 28.54551416853472 + ], + [ + 64.26567299323445, + 28.350866433606267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 28.350866433606267 + ], + [ + 64.15083030975077, + 28.54551416853472 + ], + [ + 64.03598762626709, + 28.350866433606267 + ], + [ + 64.26567299323445, + 28.350866433606267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 28.350866433606267 + ], + [ + 64.03598762626709, + 28.350866433606267 + ], + [ + 64.15083030975077, + 28.156218698677815 + ], + [ + 64.26567299323445, + 28.350866433606267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 28.350866433606267 + ], + [ + 64.15083030975077, + 28.156218698677815 + ], + [ + 64.38051567671812, + 28.156218698677815 + ], + [ + 64.26567299323445, + 28.350866433606267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 28.350866433606267 + ], + [ + 64.38051567671812, + 28.156218698677815 + ], + [ + 64.4953583602018, + 28.350866433606267 + ], + [ + 64.26567299323445, + 28.350866433606267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 28.74016190346317 + ], + [ + 64.4953583602018, + 28.74016190346317 + ], + [ + 64.38051567671812, + 28.934809638391624 + ], + [ + 64.26567299323445, + 28.74016190346317 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 28.74016190346317 + ], + [ + 64.38051567671812, + 28.934809638391624 + ], + [ + 64.15083030975077, + 28.934809638391624 + ], + [ + 64.26567299323445, + 28.74016190346317 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 28.74016190346317 + ], + [ + 64.15083030975077, + 28.934809638391624 + ], + [ + 64.03598762626709, + 28.74016190346317 + ], + [ + 64.26567299323445, + 28.74016190346317 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 28.74016190346317 + ], + [ + 64.03598762626709, + 28.74016190346317 + ], + [ + 64.15083030975077, + 28.54551416853472 + ], + [ + 64.26567299323445, + 28.74016190346317 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 28.74016190346317 + ], + [ + 64.15083030975077, + 28.54551416853472 + ], + [ + 64.38051567671812, + 28.54551416853472 + ], + [ + 64.26567299323445, + 28.74016190346317 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 28.74016190346317 + ], + [ + 64.38051567671812, + 28.54551416853472 + ], + [ + 64.4953583602018, + 28.74016190346317 + ], + [ + 64.26567299323445, + 28.74016190346317 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 29.12945737332008 + ], + [ + 64.4953583602018, + 29.12945737332008 + ], + [ + 64.38051567671812, + 29.32410510824853 + ], + [ + 64.26567299323445, + 29.12945737332008 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 29.12945737332008 + ], + [ + 64.38051567671812, + 29.32410510824853 + ], + [ + 64.15083030975077, + 29.32410510824853 + ], + [ + 64.26567299323445, + 29.12945737332008 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 29.12945737332008 + ], + [ + 64.15083030975077, + 29.32410510824853 + ], + [ + 64.03598762626709, + 29.12945737332008 + ], + [ + 64.26567299323445, + 29.12945737332008 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 29.12945737332008 + ], + [ + 64.03598762626709, + 29.12945737332008 + ], + [ + 64.15083030975077, + 28.934809638391627 + ], + [ + 64.26567299323445, + 29.12945737332008 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 29.12945737332008 + ], + [ + 64.15083030975077, + 28.934809638391627 + ], + [ + 64.38051567671812, + 28.934809638391627 + ], + [ + 64.26567299323445, + 29.12945737332008 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 29.12945737332008 + ], + [ + 64.38051567671812, + 28.934809638391627 + ], + [ + 64.4953583602018, + 29.12945737332008 + ], + [ + 64.26567299323445, + 29.12945737332008 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 29.518752843176983 + ], + [ + 64.4953583602018, + 29.518752843176983 + ], + [ + 64.38051567671812, + 29.713400578105436 + ], + [ + 64.26567299323445, + 29.518752843176983 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 29.518752843176983 + ], + [ + 64.38051567671812, + 29.713400578105436 + ], + [ + 64.15083030975077, + 29.713400578105436 + ], + [ + 64.26567299323445, + 29.518752843176983 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 29.518752843176983 + ], + [ + 64.15083030975077, + 29.713400578105436 + ], + [ + 64.03598762626709, + 29.518752843176983 + ], + [ + 64.26567299323445, + 29.518752843176983 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 29.518752843176983 + ], + [ + 64.03598762626709, + 29.518752843176983 + ], + [ + 64.15083030975077, + 29.32410510824853 + ], + [ + 64.26567299323445, + 29.518752843176983 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 29.518752843176983 + ], + [ + 64.15083030975077, + 29.32410510824853 + ], + [ + 64.38051567671812, + 29.32410510824853 + ], + [ + 64.26567299323445, + 29.518752843176983 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 29.518752843176983 + ], + [ + 64.38051567671812, + 29.32410510824853 + ], + [ + 64.4953583602018, + 29.518752843176983 + ], + [ + 64.26567299323445, + 29.518752843176983 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 29.90804831303389 + ], + [ + 64.4953583602018, + 29.90804831303389 + ], + [ + 64.38051567671812, + 30.102696047962343 + ], + [ + 64.26567299323445, + 29.90804831303389 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 29.90804831303389 + ], + [ + 64.38051567671812, + 30.102696047962343 + ], + [ + 64.15083030975077, + 30.102696047962343 + ], + [ + 64.26567299323445, + 29.90804831303389 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 29.90804831303389 + ], + [ + 64.15083030975077, + 30.102696047962343 + ], + [ + 64.03598762626709, + 29.90804831303389 + ], + [ + 64.26567299323445, + 29.90804831303389 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 29.90804831303389 + ], + [ + 64.03598762626709, + 29.90804831303389 + ], + [ + 64.15083030975077, + 29.71340057810544 + ], + [ + 64.26567299323445, + 29.90804831303389 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 29.90804831303389 + ], + [ + 64.15083030975077, + 29.71340057810544 + ], + [ + 64.38051567671812, + 29.71340057810544 + ], + [ + 64.26567299323445, + 29.90804831303389 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 29.90804831303389 + ], + [ + 64.38051567671812, + 29.71340057810544 + ], + [ + 64.4953583602018, + 29.90804831303389 + ], + [ + 64.26567299323445, + 29.90804831303389 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 30.297343782890795 + ], + [ + 64.4953583602018, + 30.297343782890795 + ], + [ + 64.38051567671812, + 30.491991517819248 + ], + [ + 64.26567299323445, + 30.297343782890795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 30.297343782890795 + ], + [ + 64.38051567671812, + 30.491991517819248 + ], + [ + 64.15083030975077, + 30.491991517819248 + ], + [ + 64.26567299323445, + 30.297343782890795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 30.297343782890795 + ], + [ + 64.15083030975077, + 30.491991517819248 + ], + [ + 64.03598762626709, + 30.297343782890795 + ], + [ + 64.26567299323445, + 30.297343782890795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 30.297343782890795 + ], + [ + 64.03598762626709, + 30.297343782890795 + ], + [ + 64.15083030975077, + 30.102696047962343 + ], + [ + 64.26567299323445, + 30.297343782890795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 30.297343782890795 + ], + [ + 64.15083030975077, + 30.102696047962343 + ], + [ + 64.38051567671812, + 30.102696047962343 + ], + [ + 64.26567299323445, + 30.297343782890795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 30.297343782890795 + ], + [ + 64.38051567671812, + 30.102696047962343 + ], + [ + 64.4953583602018, + 30.297343782890795 + ], + [ + 64.26567299323445, + 30.297343782890795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 30.686639252747703 + ], + [ + 64.4953583602018, + 30.686639252747703 + ], + [ + 64.38051567671812, + 30.881286987676155 + ], + [ + 64.26567299323445, + 30.686639252747703 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 30.686639252747703 + ], + [ + 64.38051567671812, + 30.881286987676155 + ], + [ + 64.15083030975077, + 30.881286987676155 + ], + [ + 64.26567299323445, + 30.686639252747703 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 30.686639252747703 + ], + [ + 64.15083030975077, + 30.881286987676155 + ], + [ + 64.03598762626709, + 30.686639252747703 + ], + [ + 64.26567299323445, + 30.686639252747703 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 30.686639252747703 + ], + [ + 64.03598762626709, + 30.686639252747703 + ], + [ + 64.15083030975077, + 30.49199151781925 + ], + [ + 64.26567299323445, + 30.686639252747703 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 30.686639252747703 + ], + [ + 64.15083030975077, + 30.49199151781925 + ], + [ + 64.38051567671812, + 30.49199151781925 + ], + [ + 64.26567299323445, + 30.686639252747703 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 30.686639252747703 + ], + [ + 64.38051567671812, + 30.49199151781925 + ], + [ + 64.4953583602018, + 30.686639252747703 + ], + [ + 64.26567299323445, + 30.686639252747703 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 31.07593472260461 + ], + [ + 64.4953583602018, + 31.07593472260461 + ], + [ + 64.38051567671812, + 31.270582457533063 + ], + [ + 64.26567299323445, + 31.07593472260461 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 31.07593472260461 + ], + [ + 64.38051567671812, + 31.270582457533063 + ], + [ + 64.15083030975077, + 31.270582457533063 + ], + [ + 64.26567299323445, + 31.07593472260461 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 31.07593472260461 + ], + [ + 64.15083030975077, + 31.270582457533063 + ], + [ + 64.03598762626709, + 31.07593472260461 + ], + [ + 64.26567299323445, + 31.07593472260461 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 31.07593472260461 + ], + [ + 64.03598762626709, + 31.07593472260461 + ], + [ + 64.15083030975077, + 30.88128698767616 + ], + [ + 64.26567299323445, + 31.07593472260461 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 31.07593472260461 + ], + [ + 64.15083030975077, + 30.88128698767616 + ], + [ + 64.38051567671812, + 30.88128698767616 + ], + [ + 64.26567299323445, + 31.07593472260461 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 31.07593472260461 + ], + [ + 64.38051567671812, + 30.88128698767616 + ], + [ + 64.4953583602018, + 31.07593472260461 + ], + [ + 64.26567299323445, + 31.07593472260461 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 31.465230192461515 + ], + [ + 64.4953583602018, + 31.465230192461515 + ], + [ + 64.38051567671812, + 31.659877927389967 + ], + [ + 64.26567299323445, + 31.465230192461515 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 31.465230192461515 + ], + [ + 64.38051567671812, + 31.659877927389967 + ], + [ + 64.15083030975077, + 31.659877927389967 + ], + [ + 64.26567299323445, + 31.465230192461515 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 31.465230192461515 + ], + [ + 64.15083030975077, + 31.659877927389967 + ], + [ + 64.03598762626709, + 31.465230192461515 + ], + [ + 64.26567299323445, + 31.465230192461515 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 31.465230192461515 + ], + [ + 64.03598762626709, + 31.465230192461515 + ], + [ + 64.15083030975077, + 31.270582457533063 + ], + [ + 64.26567299323445, + 31.465230192461515 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 31.465230192461515 + ], + [ + 64.15083030975077, + 31.270582457533063 + ], + [ + 64.38051567671812, + 31.270582457533063 + ], + [ + 64.26567299323445, + 31.465230192461515 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 31.465230192461515 + ], + [ + 64.38051567671812, + 31.270582457533063 + ], + [ + 64.4953583602018, + 31.465230192461515 + ], + [ + 64.26567299323445, + 31.465230192461515 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 31.854525662318423 + ], + [ + 64.4953583602018, + 31.854525662318423 + ], + [ + 64.38051567671812, + 32.049173397246875 + ], + [ + 64.26567299323445, + 31.854525662318423 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 31.854525662318423 + ], + [ + 64.38051567671812, + 32.049173397246875 + ], + [ + 64.15083030975077, + 32.049173397246875 + ], + [ + 64.26567299323445, + 31.854525662318423 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 31.854525662318423 + ], + [ + 64.15083030975077, + 32.049173397246875 + ], + [ + 64.03598762626709, + 31.854525662318423 + ], + [ + 64.26567299323445, + 31.854525662318423 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 31.854525662318423 + ], + [ + 64.03598762626709, + 31.854525662318423 + ], + [ + 64.15083030975077, + 31.65987792738997 + ], + [ + 64.26567299323445, + 31.854525662318423 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 31.854525662318423 + ], + [ + 64.15083030975077, + 31.65987792738997 + ], + [ + 64.38051567671812, + 31.65987792738997 + ], + [ + 64.26567299323445, + 31.854525662318423 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 31.854525662318423 + ], + [ + 64.38051567671812, + 31.65987792738997 + ], + [ + 64.4953583602018, + 31.854525662318423 + ], + [ + 64.26567299323445, + 31.854525662318423 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 32.24382113217533 + ], + [ + 64.4953583602018, + 32.24382113217533 + ], + [ + 64.38051567671812, + 32.43846886710378 + ], + [ + 64.26567299323445, + 32.24382113217533 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 32.24382113217533 + ], + [ + 64.38051567671812, + 32.43846886710378 + ], + [ + 64.15083030975077, + 32.43846886710378 + ], + [ + 64.26567299323445, + 32.24382113217533 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 32.24382113217533 + ], + [ + 64.15083030975077, + 32.43846886710378 + ], + [ + 64.03598762626709, + 32.24382113217533 + ], + [ + 64.26567299323445, + 32.24382113217533 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 32.24382113217533 + ], + [ + 64.03598762626709, + 32.24382113217533 + ], + [ + 64.15083030975077, + 32.049173397246875 + ], + [ + 64.26567299323445, + 32.24382113217533 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 32.24382113217533 + ], + [ + 64.15083030975077, + 32.049173397246875 + ], + [ + 64.38051567671812, + 32.049173397246875 + ], + [ + 64.26567299323445, + 32.24382113217533 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 32.24382113217533 + ], + [ + 64.38051567671812, + 32.049173397246875 + ], + [ + 64.4953583602018, + 32.24382113217533 + ], + [ + 64.26567299323445, + 32.24382113217533 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 32.63311660203224 + ], + [ + 64.4953583602018, + 32.63311660203224 + ], + [ + 64.38051567671812, + 32.82776433696069 + ], + [ + 64.26567299323445, + 32.63311660203224 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 32.63311660203224 + ], + [ + 64.38051567671812, + 32.82776433696069 + ], + [ + 64.15083030975077, + 32.82776433696069 + ], + [ + 64.26567299323445, + 32.63311660203224 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 32.63311660203224 + ], + [ + 64.15083030975077, + 32.82776433696069 + ], + [ + 64.03598762626709, + 32.63311660203224 + ], + [ + 64.26567299323445, + 32.63311660203224 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 32.63311660203224 + ], + [ + 64.03598762626709, + 32.63311660203224 + ], + [ + 64.15083030975077, + 32.438468867103786 + ], + [ + 64.26567299323445, + 32.63311660203224 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 32.63311660203224 + ], + [ + 64.15083030975077, + 32.438468867103786 + ], + [ + 64.38051567671812, + 32.438468867103786 + ], + [ + 64.26567299323445, + 32.63311660203224 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 32.63311660203224 + ], + [ + 64.38051567671812, + 32.438468867103786 + ], + [ + 64.4953583602018, + 32.63311660203224 + ], + [ + 64.26567299323445, + 32.63311660203224 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 33.02241207188914 + ], + [ + 64.4953583602018, + 33.02241207188914 + ], + [ + 64.38051567671812, + 33.217059806817595 + ], + [ + 64.26567299323445, + 33.02241207188914 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 33.02241207188914 + ], + [ + 64.38051567671812, + 33.217059806817595 + ], + [ + 64.15083030975077, + 33.217059806817595 + ], + [ + 64.26567299323445, + 33.02241207188914 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 33.02241207188914 + ], + [ + 64.15083030975077, + 33.217059806817595 + ], + [ + 64.03598762626709, + 33.02241207188914 + ], + [ + 64.26567299323445, + 33.02241207188914 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 33.02241207188914 + ], + [ + 64.03598762626709, + 33.02241207188914 + ], + [ + 64.15083030975077, + 32.82776433696069 + ], + [ + 64.26567299323445, + 33.02241207188914 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 33.02241207188914 + ], + [ + 64.15083030975077, + 32.82776433696069 + ], + [ + 64.38051567671812, + 32.82776433696069 + ], + [ + 64.26567299323445, + 33.02241207188914 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 33.02241207188914 + ], + [ + 64.38051567671812, + 32.82776433696069 + ], + [ + 64.4953583602018, + 33.02241207188914 + ], + [ + 64.26567299323445, + 33.02241207188914 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 33.41170754174605 + ], + [ + 64.4953583602018, + 33.41170754174605 + ], + [ + 64.38051567671812, + 33.6063552766745 + ], + [ + 64.26567299323445, + 33.41170754174605 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 33.41170754174605 + ], + [ + 64.38051567671812, + 33.6063552766745 + ], + [ + 64.15083030975077, + 33.6063552766745 + ], + [ + 64.26567299323445, + 33.41170754174605 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 33.41170754174605 + ], + [ + 64.15083030975077, + 33.6063552766745 + ], + [ + 64.03598762626709, + 33.41170754174605 + ], + [ + 64.26567299323445, + 33.41170754174605 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 33.41170754174605 + ], + [ + 64.03598762626709, + 33.41170754174605 + ], + [ + 64.15083030975077, + 33.217059806817595 + ], + [ + 64.26567299323445, + 33.41170754174605 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 33.41170754174605 + ], + [ + 64.15083030975077, + 33.217059806817595 + ], + [ + 64.38051567671812, + 33.217059806817595 + ], + [ + 64.26567299323445, + 33.41170754174605 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 33.41170754174605 + ], + [ + 64.38051567671812, + 33.217059806817595 + ], + [ + 64.4953583602018, + 33.41170754174605 + ], + [ + 64.26567299323445, + 33.41170754174605 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 33.80100301160295 + ], + [ + 64.4953583602018, + 33.80100301160295 + ], + [ + 64.38051567671812, + 33.9956507465314 + ], + [ + 64.26567299323445, + 33.80100301160295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 33.80100301160295 + ], + [ + 64.38051567671812, + 33.9956507465314 + ], + [ + 64.15083030975077, + 33.9956507465314 + ], + [ + 64.26567299323445, + 33.80100301160295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 33.80100301160295 + ], + [ + 64.15083030975077, + 33.9956507465314 + ], + [ + 64.03598762626709, + 33.80100301160295 + ], + [ + 64.26567299323445, + 33.80100301160295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 33.80100301160295 + ], + [ + 64.03598762626709, + 33.80100301160295 + ], + [ + 64.15083030975077, + 33.6063552766745 + ], + [ + 64.26567299323445, + 33.80100301160295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 33.80100301160295 + ], + [ + 64.15083030975077, + 33.6063552766745 + ], + [ + 64.38051567671812, + 33.6063552766745 + ], + [ + 64.26567299323445, + 33.80100301160295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 33.80100301160295 + ], + [ + 64.38051567671812, + 33.6063552766745 + ], + [ + 64.4953583602018, + 33.80100301160295 + ], + [ + 64.26567299323445, + 33.80100301160295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 34.190298481459855 + ], + [ + 64.4953583602018, + 34.190298481459855 + ], + [ + 64.38051567671812, + 34.38494621638831 + ], + [ + 64.26567299323445, + 34.190298481459855 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 34.190298481459855 + ], + [ + 64.38051567671812, + 34.38494621638831 + ], + [ + 64.15083030975077, + 34.38494621638831 + ], + [ + 64.26567299323445, + 34.190298481459855 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 34.190298481459855 + ], + [ + 64.15083030975077, + 34.38494621638831 + ], + [ + 64.03598762626709, + 34.190298481459855 + ], + [ + 64.26567299323445, + 34.190298481459855 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 34.190298481459855 + ], + [ + 64.03598762626709, + 34.190298481459855 + ], + [ + 64.15083030975077, + 33.9956507465314 + ], + [ + 64.26567299323445, + 34.190298481459855 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 34.190298481459855 + ], + [ + 64.15083030975077, + 33.9956507465314 + ], + [ + 64.38051567671812, + 33.9956507465314 + ], + [ + 64.26567299323445, + 34.190298481459855 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 34.190298481459855 + ], + [ + 64.38051567671812, + 33.9956507465314 + ], + [ + 64.4953583602018, + 34.190298481459855 + ], + [ + 64.26567299323445, + 34.190298481459855 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 34.57959395131677 + ], + [ + 64.4953583602018, + 34.57959395131677 + ], + [ + 64.38051567671812, + 34.77424168624522 + ], + [ + 64.26567299323445, + 34.57959395131677 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 34.57959395131677 + ], + [ + 64.38051567671812, + 34.77424168624522 + ], + [ + 64.15083030975077, + 34.77424168624522 + ], + [ + 64.26567299323445, + 34.57959395131677 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 34.57959395131677 + ], + [ + 64.15083030975077, + 34.77424168624522 + ], + [ + 64.03598762626709, + 34.57959395131677 + ], + [ + 64.26567299323445, + 34.57959395131677 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 34.57959395131677 + ], + [ + 64.03598762626709, + 34.57959395131677 + ], + [ + 64.15083030975077, + 34.384946216388315 + ], + [ + 64.26567299323445, + 34.57959395131677 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 34.57959395131677 + ], + [ + 64.15083030975077, + 34.384946216388315 + ], + [ + 64.38051567671812, + 34.384946216388315 + ], + [ + 64.26567299323445, + 34.57959395131677 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 34.57959395131677 + ], + [ + 64.38051567671812, + 34.384946216388315 + ], + [ + 64.4953583602018, + 34.57959395131677 + ], + [ + 64.26567299323445, + 34.57959395131677 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 34.96888942117368 + ], + [ + 64.4953583602018, + 34.96888942117368 + ], + [ + 64.38051567671812, + 35.16353715610213 + ], + [ + 64.26567299323445, + 34.96888942117368 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 34.96888942117368 + ], + [ + 64.38051567671812, + 35.16353715610213 + ], + [ + 64.15083030975077, + 35.16353715610213 + ], + [ + 64.26567299323445, + 34.96888942117368 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 34.96888942117368 + ], + [ + 64.15083030975077, + 35.16353715610213 + ], + [ + 64.03598762626709, + 34.96888942117368 + ], + [ + 64.26567299323445, + 34.96888942117368 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 34.96888942117368 + ], + [ + 64.03598762626709, + 34.96888942117368 + ], + [ + 64.15083030975077, + 34.774241686245226 + ], + [ + 64.26567299323445, + 34.96888942117368 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 34.96888942117368 + ], + [ + 64.15083030975077, + 34.774241686245226 + ], + [ + 64.38051567671812, + 34.774241686245226 + ], + [ + 64.26567299323445, + 34.96888942117368 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 34.96888942117368 + ], + [ + 64.38051567671812, + 34.774241686245226 + ], + [ + 64.4953583602018, + 34.96888942117368 + ], + [ + 64.26567299323445, + 34.96888942117368 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 35.35818489103058 + ], + [ + 64.4953583602018, + 35.35818489103058 + ], + [ + 64.38051567671812, + 35.552832625959034 + ], + [ + 64.26567299323445, + 35.35818489103058 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 35.35818489103058 + ], + [ + 64.38051567671812, + 35.552832625959034 + ], + [ + 64.15083030975077, + 35.552832625959034 + ], + [ + 64.26567299323445, + 35.35818489103058 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 35.35818489103058 + ], + [ + 64.15083030975077, + 35.552832625959034 + ], + [ + 64.03598762626709, + 35.35818489103058 + ], + [ + 64.26567299323445, + 35.35818489103058 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 35.35818489103058 + ], + [ + 64.03598762626709, + 35.35818489103058 + ], + [ + 64.15083030975077, + 35.16353715610213 + ], + [ + 64.26567299323445, + 35.35818489103058 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 35.35818489103058 + ], + [ + 64.15083030975077, + 35.16353715610213 + ], + [ + 64.38051567671812, + 35.16353715610213 + ], + [ + 64.26567299323445, + 35.35818489103058 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 35.35818489103058 + ], + [ + 64.38051567671812, + 35.16353715610213 + ], + [ + 64.4953583602018, + 35.35818489103058 + ], + [ + 64.26567299323445, + 35.35818489103058 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 35.74748036088749 + ], + [ + 64.4953583602018, + 35.74748036088749 + ], + [ + 64.38051567671812, + 35.94212809581594 + ], + [ + 64.26567299323445, + 35.74748036088749 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 35.74748036088749 + ], + [ + 64.38051567671812, + 35.94212809581594 + ], + [ + 64.15083030975077, + 35.94212809581594 + ], + [ + 64.26567299323445, + 35.74748036088749 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 35.74748036088749 + ], + [ + 64.15083030975077, + 35.94212809581594 + ], + [ + 64.03598762626709, + 35.74748036088749 + ], + [ + 64.26567299323445, + 35.74748036088749 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 35.74748036088749 + ], + [ + 64.03598762626709, + 35.74748036088749 + ], + [ + 64.15083030975077, + 35.552832625959034 + ], + [ + 64.26567299323445, + 35.74748036088749 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 35.74748036088749 + ], + [ + 64.15083030975077, + 35.552832625959034 + ], + [ + 64.38051567671812, + 35.552832625959034 + ], + [ + 64.26567299323445, + 35.74748036088749 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 35.74748036088749 + ], + [ + 64.38051567671812, + 35.552832625959034 + ], + [ + 64.4953583602018, + 35.74748036088749 + ], + [ + 64.26567299323445, + 35.74748036088749 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 36.13677583074439 + ], + [ + 64.4953583602018, + 36.13677583074439 + ], + [ + 64.38051567671812, + 36.33142356567284 + ], + [ + 64.26567299323445, + 36.13677583074439 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 36.13677583074439 + ], + [ + 64.38051567671812, + 36.33142356567284 + ], + [ + 64.15083030975077, + 36.33142356567284 + ], + [ + 64.26567299323445, + 36.13677583074439 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 36.13677583074439 + ], + [ + 64.15083030975077, + 36.33142356567284 + ], + [ + 64.03598762626709, + 36.13677583074439 + ], + [ + 64.26567299323445, + 36.13677583074439 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 36.13677583074439 + ], + [ + 64.03598762626709, + 36.13677583074439 + ], + [ + 64.15083030975077, + 35.94212809581594 + ], + [ + 64.26567299323445, + 36.13677583074439 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 36.13677583074439 + ], + [ + 64.15083030975077, + 35.94212809581594 + ], + [ + 64.38051567671812, + 35.94212809581594 + ], + [ + 64.26567299323445, + 36.13677583074439 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 36.13677583074439 + ], + [ + 64.38051567671812, + 35.94212809581594 + ], + [ + 64.4953583602018, + 36.13677583074439 + ], + [ + 64.26567299323445, + 36.13677583074439 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 36.526071300601295 + ], + [ + 64.4953583602018, + 36.526071300601295 + ], + [ + 64.38051567671812, + 36.72071903552975 + ], + [ + 64.26567299323445, + 36.526071300601295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 36.526071300601295 + ], + [ + 64.38051567671812, + 36.72071903552975 + ], + [ + 64.15083030975077, + 36.72071903552975 + ], + [ + 64.26567299323445, + 36.526071300601295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 36.526071300601295 + ], + [ + 64.15083030975077, + 36.72071903552975 + ], + [ + 64.03598762626709, + 36.526071300601295 + ], + [ + 64.26567299323445, + 36.526071300601295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 36.526071300601295 + ], + [ + 64.03598762626709, + 36.526071300601295 + ], + [ + 64.15083030975077, + 36.33142356567284 + ], + [ + 64.26567299323445, + 36.526071300601295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 36.526071300601295 + ], + [ + 64.15083030975077, + 36.33142356567284 + ], + [ + 64.38051567671812, + 36.33142356567284 + ], + [ + 64.26567299323445, + 36.526071300601295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 36.526071300601295 + ], + [ + 64.38051567671812, + 36.33142356567284 + ], + [ + 64.4953583602018, + 36.526071300601295 + ], + [ + 64.26567299323445, + 36.526071300601295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 36.915366770458206 + ], + [ + 64.4953583602018, + 36.915366770458206 + ], + [ + 64.38051567671812, + 37.11001450538666 + ], + [ + 64.26567299323445, + 36.915366770458206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 36.915366770458206 + ], + [ + 64.38051567671812, + 37.11001450538666 + ], + [ + 64.15083030975077, + 37.11001450538666 + ], + [ + 64.26567299323445, + 36.915366770458206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 36.915366770458206 + ], + [ + 64.15083030975077, + 37.11001450538666 + ], + [ + 64.03598762626709, + 36.915366770458206 + ], + [ + 64.26567299323445, + 36.915366770458206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 36.915366770458206 + ], + [ + 64.03598762626709, + 36.915366770458206 + ], + [ + 64.15083030975077, + 36.720719035529754 + ], + [ + 64.26567299323445, + 36.915366770458206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 36.915366770458206 + ], + [ + 64.15083030975077, + 36.720719035529754 + ], + [ + 64.38051567671812, + 36.720719035529754 + ], + [ + 64.26567299323445, + 36.915366770458206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 36.915366770458206 + ], + [ + 64.38051567671812, + 36.720719035529754 + ], + [ + 64.4953583602018, + 36.915366770458206 + ], + [ + 64.26567299323445, + 36.915366770458206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 37.30466224031511 + ], + [ + 64.4953583602018, + 37.30466224031511 + ], + [ + 64.38051567671812, + 37.49930997524356 + ], + [ + 64.26567299323445, + 37.30466224031511 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 37.30466224031511 + ], + [ + 64.38051567671812, + 37.49930997524356 + ], + [ + 64.15083030975077, + 37.49930997524356 + ], + [ + 64.26567299323445, + 37.30466224031511 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 37.30466224031511 + ], + [ + 64.15083030975077, + 37.49930997524356 + ], + [ + 64.03598762626709, + 37.30466224031511 + ], + [ + 64.26567299323445, + 37.30466224031511 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 37.30466224031511 + ], + [ + 64.03598762626709, + 37.30466224031511 + ], + [ + 64.15083030975077, + 37.11001450538666 + ], + [ + 64.26567299323445, + 37.30466224031511 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 37.30466224031511 + ], + [ + 64.15083030975077, + 37.11001450538666 + ], + [ + 64.38051567671812, + 37.11001450538666 + ], + [ + 64.26567299323445, + 37.30466224031511 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 37.30466224031511 + ], + [ + 64.38051567671812, + 37.11001450538666 + ], + [ + 64.4953583602018, + 37.30466224031511 + ], + [ + 64.26567299323445, + 37.30466224031511 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 37.69395771017202 + ], + [ + 64.4953583602018, + 37.69395771017202 + ], + [ + 64.38051567671812, + 37.888605445100474 + ], + [ + 64.26567299323445, + 37.69395771017202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 37.69395771017202 + ], + [ + 64.38051567671812, + 37.888605445100474 + ], + [ + 64.15083030975077, + 37.888605445100474 + ], + [ + 64.26567299323445, + 37.69395771017202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 37.69395771017202 + ], + [ + 64.15083030975077, + 37.888605445100474 + ], + [ + 64.03598762626709, + 37.69395771017202 + ], + [ + 64.26567299323445, + 37.69395771017202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 37.69395771017202 + ], + [ + 64.03598762626709, + 37.69395771017202 + ], + [ + 64.15083030975077, + 37.49930997524357 + ], + [ + 64.26567299323445, + 37.69395771017202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 37.69395771017202 + ], + [ + 64.15083030975077, + 37.49930997524357 + ], + [ + 64.38051567671812, + 37.49930997524357 + ], + [ + 64.26567299323445, + 37.69395771017202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 37.69395771017202 + ], + [ + 64.38051567671812, + 37.49930997524357 + ], + [ + 64.4953583602018, + 37.69395771017202 + ], + [ + 64.26567299323445, + 37.69395771017202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 38.083253180028926 + ], + [ + 64.4953583602018, + 38.083253180028926 + ], + [ + 64.38051567671812, + 38.27790091495738 + ], + [ + 64.26567299323445, + 38.083253180028926 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 38.083253180028926 + ], + [ + 64.38051567671812, + 38.27790091495738 + ], + [ + 64.15083030975077, + 38.27790091495738 + ], + [ + 64.26567299323445, + 38.083253180028926 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 38.083253180028926 + ], + [ + 64.15083030975077, + 38.27790091495738 + ], + [ + 64.03598762626709, + 38.083253180028926 + ], + [ + 64.26567299323445, + 38.083253180028926 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 38.083253180028926 + ], + [ + 64.03598762626709, + 38.083253180028926 + ], + [ + 64.15083030975077, + 37.888605445100474 + ], + [ + 64.26567299323445, + 38.083253180028926 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 38.083253180028926 + ], + [ + 64.15083030975077, + 37.888605445100474 + ], + [ + 64.38051567671812, + 37.888605445100474 + ], + [ + 64.26567299323445, + 38.083253180028926 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 38.083253180028926 + ], + [ + 64.38051567671812, + 37.888605445100474 + ], + [ + 64.4953583602018, + 38.083253180028926 + ], + [ + 64.26567299323445, + 38.083253180028926 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 38.47254864988583 + ], + [ + 64.4953583602018, + 38.47254864988583 + ], + [ + 64.38051567671812, + 38.66719638481428 + ], + [ + 64.26567299323445, + 38.47254864988583 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 38.47254864988583 + ], + [ + 64.38051567671812, + 38.66719638481428 + ], + [ + 64.15083030975077, + 38.66719638481428 + ], + [ + 64.26567299323445, + 38.47254864988583 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 38.47254864988583 + ], + [ + 64.15083030975077, + 38.66719638481428 + ], + [ + 64.03598762626709, + 38.47254864988583 + ], + [ + 64.26567299323445, + 38.47254864988583 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 38.47254864988583 + ], + [ + 64.03598762626709, + 38.47254864988583 + ], + [ + 64.15083030975077, + 38.27790091495738 + ], + [ + 64.26567299323445, + 38.47254864988583 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 38.47254864988583 + ], + [ + 64.15083030975077, + 38.27790091495738 + ], + [ + 64.38051567671812, + 38.27790091495738 + ], + [ + 64.26567299323445, + 38.47254864988583 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 38.47254864988583 + ], + [ + 64.38051567671812, + 38.27790091495738 + ], + [ + 64.4953583602018, + 38.47254864988583 + ], + [ + 64.26567299323445, + 38.47254864988583 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 38.861844119742734 + ], + [ + 64.4953583602018, + 38.861844119742734 + ], + [ + 64.38051567671812, + 39.05649185467119 + ], + [ + 64.26567299323445, + 38.861844119742734 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 38.861844119742734 + ], + [ + 64.38051567671812, + 39.05649185467119 + ], + [ + 64.15083030975077, + 39.05649185467119 + ], + [ + 64.26567299323445, + 38.861844119742734 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 38.861844119742734 + ], + [ + 64.15083030975077, + 39.05649185467119 + ], + [ + 64.03598762626709, + 38.861844119742734 + ], + [ + 64.26567299323445, + 38.861844119742734 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 38.861844119742734 + ], + [ + 64.03598762626709, + 38.861844119742734 + ], + [ + 64.15083030975077, + 38.66719638481428 + ], + [ + 64.26567299323445, + 38.861844119742734 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 38.861844119742734 + ], + [ + 64.15083030975077, + 38.66719638481428 + ], + [ + 64.38051567671812, + 38.66719638481428 + ], + [ + 64.26567299323445, + 38.861844119742734 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 38.861844119742734 + ], + [ + 64.38051567671812, + 38.66719638481428 + ], + [ + 64.4953583602018, + 38.861844119742734 + ], + [ + 64.26567299323445, + 38.861844119742734 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 39.25113958959964 + ], + [ + 64.4953583602018, + 39.25113958959964 + ], + [ + 64.38051567671812, + 39.44578732452809 + ], + [ + 64.26567299323445, + 39.25113958959964 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 39.25113958959964 + ], + [ + 64.38051567671812, + 39.44578732452809 + ], + [ + 64.15083030975077, + 39.44578732452809 + ], + [ + 64.26567299323445, + 39.25113958959964 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 39.25113958959964 + ], + [ + 64.15083030975077, + 39.44578732452809 + ], + [ + 64.03598762626709, + 39.25113958959964 + ], + [ + 64.26567299323445, + 39.25113958959964 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 39.25113958959964 + ], + [ + 64.03598762626709, + 39.25113958959964 + ], + [ + 64.15083030975077, + 39.05649185467119 + ], + [ + 64.26567299323445, + 39.25113958959964 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 39.25113958959964 + ], + [ + 64.15083030975077, + 39.05649185467119 + ], + [ + 64.38051567671812, + 39.05649185467119 + ], + [ + 64.26567299323445, + 39.25113958959964 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 39.25113958959964 + ], + [ + 64.38051567671812, + 39.05649185467119 + ], + [ + 64.4953583602018, + 39.25113958959964 + ], + [ + 64.26567299323445, + 39.25113958959964 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 39.64043505945655 + ], + [ + 64.4953583602018, + 39.64043505945655 + ], + [ + 64.38051567671812, + 39.835082794385 + ], + [ + 64.26567299323445, + 39.64043505945655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 39.64043505945655 + ], + [ + 64.38051567671812, + 39.835082794385 + ], + [ + 64.15083030975077, + 39.835082794385 + ], + [ + 64.26567299323445, + 39.64043505945655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 39.64043505945655 + ], + [ + 64.15083030975077, + 39.835082794385 + ], + [ + 64.03598762626709, + 39.64043505945655 + ], + [ + 64.26567299323445, + 39.64043505945655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 39.64043505945655 + ], + [ + 64.03598762626709, + 39.64043505945655 + ], + [ + 64.15083030975077, + 39.4457873245281 + ], + [ + 64.26567299323445, + 39.64043505945655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 39.64043505945655 + ], + [ + 64.15083030975077, + 39.4457873245281 + ], + [ + 64.38051567671812, + 39.4457873245281 + ], + [ + 64.26567299323445, + 39.64043505945655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 39.64043505945655 + ], + [ + 64.38051567671812, + 39.4457873245281 + ], + [ + 64.4953583602018, + 39.64043505945655 + ], + [ + 64.26567299323445, + 39.64043505945655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 40.029730529313454 + ], + [ + 64.4953583602018, + 40.029730529313454 + ], + [ + 64.38051567671812, + 40.224378264241906 + ], + [ + 64.26567299323445, + 40.029730529313454 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 40.029730529313454 + ], + [ + 64.38051567671812, + 40.224378264241906 + ], + [ + 64.15083030975077, + 40.224378264241906 + ], + [ + 64.26567299323445, + 40.029730529313454 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 40.029730529313454 + ], + [ + 64.15083030975077, + 40.224378264241906 + ], + [ + 64.03598762626709, + 40.029730529313454 + ], + [ + 64.26567299323445, + 40.029730529313454 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 40.029730529313454 + ], + [ + 64.03598762626709, + 40.029730529313454 + ], + [ + 64.15083030975077, + 39.835082794385 + ], + [ + 64.26567299323445, + 40.029730529313454 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 40.029730529313454 + ], + [ + 64.15083030975077, + 39.835082794385 + ], + [ + 64.38051567671812, + 39.835082794385 + ], + [ + 64.26567299323445, + 40.029730529313454 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 40.029730529313454 + ], + [ + 64.38051567671812, + 39.835082794385 + ], + [ + 64.4953583602018, + 40.029730529313454 + ], + [ + 64.26567299323445, + 40.029730529313454 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 40.419025999170366 + ], + [ + 64.4953583602018, + 40.419025999170366 + ], + [ + 64.38051567671812, + 40.61367373409882 + ], + [ + 64.26567299323445, + 40.419025999170366 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 40.419025999170366 + ], + [ + 64.38051567671812, + 40.61367373409882 + ], + [ + 64.15083030975077, + 40.61367373409882 + ], + [ + 64.26567299323445, + 40.419025999170366 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 40.419025999170366 + ], + [ + 64.15083030975077, + 40.61367373409882 + ], + [ + 64.03598762626709, + 40.419025999170366 + ], + [ + 64.26567299323445, + 40.419025999170366 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 40.419025999170366 + ], + [ + 64.03598762626709, + 40.419025999170366 + ], + [ + 64.15083030975077, + 40.22437826424191 + ], + [ + 64.26567299323445, + 40.419025999170366 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 40.419025999170366 + ], + [ + 64.15083030975077, + 40.22437826424191 + ], + [ + 64.38051567671812, + 40.22437826424191 + ], + [ + 64.26567299323445, + 40.419025999170366 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 40.419025999170366 + ], + [ + 64.38051567671812, + 40.22437826424191 + ], + [ + 64.4953583602018, + 40.419025999170366 + ], + [ + 64.26567299323445, + 40.419025999170366 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 40.80832146902727 + ], + [ + 64.4953583602018, + 40.80832146902727 + ], + [ + 64.38051567671812, + 41.00296920395572 + ], + [ + 64.26567299323445, + 40.80832146902727 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 40.80832146902727 + ], + [ + 64.38051567671812, + 41.00296920395572 + ], + [ + 64.15083030975077, + 41.00296920395572 + ], + [ + 64.26567299323445, + 40.80832146902727 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 40.80832146902727 + ], + [ + 64.15083030975077, + 41.00296920395572 + ], + [ + 64.03598762626709, + 40.80832146902727 + ], + [ + 64.26567299323445, + 40.80832146902727 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 40.80832146902727 + ], + [ + 64.03598762626709, + 40.80832146902727 + ], + [ + 64.15083030975077, + 40.61367373409882 + ], + [ + 64.26567299323445, + 40.80832146902727 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 40.80832146902727 + ], + [ + 64.15083030975077, + 40.61367373409882 + ], + [ + 64.38051567671812, + 40.61367373409882 + ], + [ + 64.26567299323445, + 40.80832146902727 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 40.80832146902727 + ], + [ + 64.38051567671812, + 40.61367373409882 + ], + [ + 64.4953583602018, + 40.80832146902727 + ], + [ + 64.26567299323445, + 40.80832146902727 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 41.197616938884174 + ], + [ + 64.4953583602018, + 41.197616938884174 + ], + [ + 64.38051567671812, + 41.392264673812626 + ], + [ + 64.26567299323445, + 41.197616938884174 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 41.197616938884174 + ], + [ + 64.38051567671812, + 41.392264673812626 + ], + [ + 64.15083030975077, + 41.392264673812626 + ], + [ + 64.26567299323445, + 41.197616938884174 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 41.197616938884174 + ], + [ + 64.15083030975077, + 41.392264673812626 + ], + [ + 64.03598762626709, + 41.197616938884174 + ], + [ + 64.26567299323445, + 41.197616938884174 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 41.197616938884174 + ], + [ + 64.03598762626709, + 41.197616938884174 + ], + [ + 64.15083030975077, + 41.00296920395572 + ], + [ + 64.26567299323445, + 41.197616938884174 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 41.197616938884174 + ], + [ + 64.15083030975077, + 41.00296920395572 + ], + [ + 64.38051567671812, + 41.00296920395572 + ], + [ + 64.26567299323445, + 41.197616938884174 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 41.197616938884174 + ], + [ + 64.38051567671812, + 41.00296920395572 + ], + [ + 64.4953583602018, + 41.197616938884174 + ], + [ + 64.26567299323445, + 41.197616938884174 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 41.58691240874108 + ], + [ + 64.4953583602018, + 41.58691240874108 + ], + [ + 64.38051567671812, + 41.78156014366953 + ], + [ + 64.26567299323445, + 41.58691240874108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 41.58691240874108 + ], + [ + 64.38051567671812, + 41.78156014366953 + ], + [ + 64.15083030975077, + 41.78156014366953 + ], + [ + 64.26567299323445, + 41.58691240874108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 41.58691240874108 + ], + [ + 64.15083030975077, + 41.78156014366953 + ], + [ + 64.03598762626709, + 41.58691240874108 + ], + [ + 64.26567299323445, + 41.58691240874108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 41.58691240874108 + ], + [ + 64.03598762626709, + 41.58691240874108 + ], + [ + 64.15083030975077, + 41.392264673812626 + ], + [ + 64.26567299323445, + 41.58691240874108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 41.58691240874108 + ], + [ + 64.15083030975077, + 41.392264673812626 + ], + [ + 64.38051567671812, + 41.392264673812626 + ], + [ + 64.26567299323445, + 41.58691240874108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 41.58691240874108 + ], + [ + 64.38051567671812, + 41.392264673812626 + ], + [ + 64.4953583602018, + 41.58691240874108 + ], + [ + 64.26567299323445, + 41.58691240874108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 41.97620787859798 + ], + [ + 64.4953583602018, + 41.97620787859798 + ], + [ + 64.38051567671812, + 42.170855613526435 + ], + [ + 64.26567299323445, + 41.97620787859798 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 41.97620787859798 + ], + [ + 64.38051567671812, + 42.170855613526435 + ], + [ + 64.15083030975077, + 42.170855613526435 + ], + [ + 64.26567299323445, + 41.97620787859798 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 41.97620787859798 + ], + [ + 64.15083030975077, + 42.170855613526435 + ], + [ + 64.03598762626709, + 41.97620787859798 + ], + [ + 64.26567299323445, + 41.97620787859798 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 41.97620787859798 + ], + [ + 64.03598762626709, + 41.97620787859798 + ], + [ + 64.15083030975077, + 41.78156014366953 + ], + [ + 64.26567299323445, + 41.97620787859798 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 41.97620787859798 + ], + [ + 64.15083030975077, + 41.78156014366953 + ], + [ + 64.38051567671812, + 41.78156014366953 + ], + [ + 64.26567299323445, + 41.97620787859798 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 41.97620787859798 + ], + [ + 64.38051567671812, + 41.78156014366953 + ], + [ + 64.4953583602018, + 41.97620787859798 + ], + [ + 64.26567299323445, + 41.97620787859798 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 42.365503348454894 + ], + [ + 64.4953583602018, + 42.365503348454894 + ], + [ + 64.38051567671812, + 42.560151083383346 + ], + [ + 64.26567299323445, + 42.365503348454894 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 42.365503348454894 + ], + [ + 64.38051567671812, + 42.560151083383346 + ], + [ + 64.15083030975077, + 42.560151083383346 + ], + [ + 64.26567299323445, + 42.365503348454894 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 42.365503348454894 + ], + [ + 64.15083030975077, + 42.560151083383346 + ], + [ + 64.03598762626709, + 42.365503348454894 + ], + [ + 64.26567299323445, + 42.365503348454894 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 42.365503348454894 + ], + [ + 64.03598762626709, + 42.365503348454894 + ], + [ + 64.15083030975077, + 42.17085561352644 + ], + [ + 64.26567299323445, + 42.365503348454894 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 42.365503348454894 + ], + [ + 64.15083030975077, + 42.17085561352644 + ], + [ + 64.38051567671812, + 42.17085561352644 + ], + [ + 64.26567299323445, + 42.365503348454894 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 42.365503348454894 + ], + [ + 64.38051567671812, + 42.17085561352644 + ], + [ + 64.4953583602018, + 42.365503348454894 + ], + [ + 64.26567299323445, + 42.365503348454894 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 42.754798818311805 + ], + [ + 64.4953583602018, + 42.754798818311805 + ], + [ + 64.38051567671812, + 42.94944655324026 + ], + [ + 64.26567299323445, + 42.754798818311805 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 42.754798818311805 + ], + [ + 64.38051567671812, + 42.94944655324026 + ], + [ + 64.15083030975077, + 42.94944655324026 + ], + [ + 64.26567299323445, + 42.754798818311805 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 42.754798818311805 + ], + [ + 64.15083030975077, + 42.94944655324026 + ], + [ + 64.03598762626709, + 42.754798818311805 + ], + [ + 64.26567299323445, + 42.754798818311805 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 42.754798818311805 + ], + [ + 64.03598762626709, + 42.754798818311805 + ], + [ + 64.15083030975077, + 42.56015108338335 + ], + [ + 64.26567299323445, + 42.754798818311805 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 42.754798818311805 + ], + [ + 64.15083030975077, + 42.56015108338335 + ], + [ + 64.38051567671812, + 42.56015108338335 + ], + [ + 64.26567299323445, + 42.754798818311805 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 42.754798818311805 + ], + [ + 64.38051567671812, + 42.56015108338335 + ], + [ + 64.4953583602018, + 42.754798818311805 + ], + [ + 64.26567299323445, + 42.754798818311805 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 43.14409428816871 + ], + [ + 64.4953583602018, + 43.14409428816871 + ], + [ + 64.38051567671812, + 43.33874202309716 + ], + [ + 64.26567299323445, + 43.14409428816871 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 43.14409428816871 + ], + [ + 64.38051567671812, + 43.33874202309716 + ], + [ + 64.15083030975077, + 43.33874202309716 + ], + [ + 64.26567299323445, + 43.14409428816871 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 43.14409428816871 + ], + [ + 64.15083030975077, + 43.33874202309716 + ], + [ + 64.03598762626709, + 43.14409428816871 + ], + [ + 64.26567299323445, + 43.14409428816871 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 43.14409428816871 + ], + [ + 64.03598762626709, + 43.14409428816871 + ], + [ + 64.15083030975077, + 42.94944655324026 + ], + [ + 64.26567299323445, + 43.14409428816871 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 43.14409428816871 + ], + [ + 64.15083030975077, + 42.94944655324026 + ], + [ + 64.38051567671812, + 42.94944655324026 + ], + [ + 64.26567299323445, + 43.14409428816871 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 43.14409428816871 + ], + [ + 64.38051567671812, + 42.94944655324026 + ], + [ + 64.4953583602018, + 43.14409428816871 + ], + [ + 64.26567299323445, + 43.14409428816871 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 43.53338975802561 + ], + [ + 64.4953583602018, + 43.53338975802561 + ], + [ + 64.38051567671812, + 43.728037492954066 + ], + [ + 64.26567299323445, + 43.53338975802561 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 43.53338975802561 + ], + [ + 64.38051567671812, + 43.728037492954066 + ], + [ + 64.15083030975077, + 43.728037492954066 + ], + [ + 64.26567299323445, + 43.53338975802561 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 43.53338975802561 + ], + [ + 64.15083030975077, + 43.728037492954066 + ], + [ + 64.03598762626709, + 43.53338975802561 + ], + [ + 64.26567299323445, + 43.53338975802561 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 43.53338975802561 + ], + [ + 64.03598762626709, + 43.53338975802561 + ], + [ + 64.15083030975077, + 43.33874202309716 + ], + [ + 64.26567299323445, + 43.53338975802561 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 43.53338975802561 + ], + [ + 64.15083030975077, + 43.33874202309716 + ], + [ + 64.38051567671812, + 43.33874202309716 + ], + [ + 64.26567299323445, + 43.53338975802561 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 43.53338975802561 + ], + [ + 64.38051567671812, + 43.33874202309716 + ], + [ + 64.4953583602018, + 43.53338975802561 + ], + [ + 64.26567299323445, + 43.53338975802561 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 43.92268522788252 + ], + [ + 64.4953583602018, + 43.92268522788252 + ], + [ + 64.38051567671812, + 44.11733296281097 + ], + [ + 64.26567299323445, + 43.92268522788252 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 43.92268522788252 + ], + [ + 64.38051567671812, + 44.11733296281097 + ], + [ + 64.15083030975077, + 44.11733296281097 + ], + [ + 64.26567299323445, + 43.92268522788252 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 43.92268522788252 + ], + [ + 64.15083030975077, + 44.11733296281097 + ], + [ + 64.03598762626709, + 43.92268522788252 + ], + [ + 64.26567299323445, + 43.92268522788252 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 43.92268522788252 + ], + [ + 64.03598762626709, + 43.92268522788252 + ], + [ + 64.15083030975077, + 43.728037492954066 + ], + [ + 64.26567299323445, + 43.92268522788252 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 43.92268522788252 + ], + [ + 64.15083030975077, + 43.728037492954066 + ], + [ + 64.38051567671812, + 43.728037492954066 + ], + [ + 64.26567299323445, + 43.92268522788252 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 43.92268522788252 + ], + [ + 64.38051567671812, + 43.728037492954066 + ], + [ + 64.4953583602018, + 43.92268522788252 + ], + [ + 64.26567299323445, + 43.92268522788252 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 44.31198069773942 + ], + [ + 64.4953583602018, + 44.31198069773942 + ], + [ + 64.38051567671812, + 44.506628432667874 + ], + [ + 64.26567299323445, + 44.31198069773942 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 44.31198069773942 + ], + [ + 64.38051567671812, + 44.506628432667874 + ], + [ + 64.15083030975077, + 44.506628432667874 + ], + [ + 64.26567299323445, + 44.31198069773942 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 44.31198069773942 + ], + [ + 64.15083030975077, + 44.506628432667874 + ], + [ + 64.03598762626709, + 44.31198069773942 + ], + [ + 64.26567299323445, + 44.31198069773942 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 44.31198069773942 + ], + [ + 64.03598762626709, + 44.31198069773942 + ], + [ + 64.15083030975077, + 44.11733296281097 + ], + [ + 64.26567299323445, + 44.31198069773942 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 44.31198069773942 + ], + [ + 64.15083030975077, + 44.11733296281097 + ], + [ + 64.38051567671812, + 44.11733296281097 + ], + [ + 64.26567299323445, + 44.31198069773942 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 44.31198069773942 + ], + [ + 64.38051567671812, + 44.11733296281097 + ], + [ + 64.4953583602018, + 44.31198069773942 + ], + [ + 64.26567299323445, + 44.31198069773942 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 44.701276167596326 + ], + [ + 64.4953583602018, + 44.701276167596326 + ], + [ + 64.38051567671812, + 44.89592390252478 + ], + [ + 64.26567299323445, + 44.701276167596326 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 44.701276167596326 + ], + [ + 64.38051567671812, + 44.89592390252478 + ], + [ + 64.15083030975077, + 44.89592390252478 + ], + [ + 64.26567299323445, + 44.701276167596326 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 44.701276167596326 + ], + [ + 64.15083030975077, + 44.89592390252478 + ], + [ + 64.03598762626709, + 44.701276167596326 + ], + [ + 64.26567299323445, + 44.701276167596326 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 44.701276167596326 + ], + [ + 64.03598762626709, + 44.701276167596326 + ], + [ + 64.15083030975077, + 44.506628432667874 + ], + [ + 64.26567299323445, + 44.701276167596326 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 44.701276167596326 + ], + [ + 64.15083030975077, + 44.506628432667874 + ], + [ + 64.38051567671812, + 44.506628432667874 + ], + [ + 64.26567299323445, + 44.701276167596326 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 44.701276167596326 + ], + [ + 64.38051567671812, + 44.506628432667874 + ], + [ + 64.4953583602018, + 44.701276167596326 + ], + [ + 64.26567299323445, + 44.701276167596326 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 45.090571637453245 + ], + [ + 64.4953583602018, + 45.090571637453245 + ], + [ + 64.38051567671812, + 45.2852193723817 + ], + [ + 64.26567299323445, + 45.090571637453245 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 45.090571637453245 + ], + [ + 64.38051567671812, + 45.2852193723817 + ], + [ + 64.15083030975077, + 45.2852193723817 + ], + [ + 64.26567299323445, + 45.090571637453245 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 45.090571637453245 + ], + [ + 64.15083030975077, + 45.2852193723817 + ], + [ + 64.03598762626709, + 45.090571637453245 + ], + [ + 64.26567299323445, + 45.090571637453245 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 45.090571637453245 + ], + [ + 64.03598762626709, + 45.090571637453245 + ], + [ + 64.15083030975077, + 44.89592390252479 + ], + [ + 64.26567299323445, + 45.090571637453245 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 45.090571637453245 + ], + [ + 64.15083030975077, + 44.89592390252479 + ], + [ + 64.38051567671812, + 44.89592390252479 + ], + [ + 64.26567299323445, + 45.090571637453245 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 45.090571637453245 + ], + [ + 64.38051567671812, + 44.89592390252479 + ], + [ + 64.4953583602018, + 45.090571637453245 + ], + [ + 64.26567299323445, + 45.090571637453245 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 45.47986710731015 + ], + [ + 64.4953583602018, + 45.47986710731015 + ], + [ + 64.38051567671812, + 45.6745148422386 + ], + [ + 64.26567299323445, + 45.47986710731015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 45.47986710731015 + ], + [ + 64.38051567671812, + 45.6745148422386 + ], + [ + 64.15083030975077, + 45.6745148422386 + ], + [ + 64.26567299323445, + 45.47986710731015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 45.47986710731015 + ], + [ + 64.15083030975077, + 45.6745148422386 + ], + [ + 64.03598762626709, + 45.47986710731015 + ], + [ + 64.26567299323445, + 45.47986710731015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 45.47986710731015 + ], + [ + 64.03598762626709, + 45.47986710731015 + ], + [ + 64.15083030975077, + 45.2852193723817 + ], + [ + 64.26567299323445, + 45.47986710731015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 45.47986710731015 + ], + [ + 64.15083030975077, + 45.2852193723817 + ], + [ + 64.38051567671812, + 45.2852193723817 + ], + [ + 64.26567299323445, + 45.47986710731015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 45.47986710731015 + ], + [ + 64.38051567671812, + 45.2852193723817 + ], + [ + 64.4953583602018, + 45.47986710731015 + ], + [ + 64.26567299323445, + 45.47986710731015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 45.86916257716705 + ], + [ + 64.4953583602018, + 45.86916257716705 + ], + [ + 64.38051567671812, + 46.063810312095505 + ], + [ + 64.26567299323445, + 45.86916257716705 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 45.86916257716705 + ], + [ + 64.38051567671812, + 46.063810312095505 + ], + [ + 64.15083030975077, + 46.063810312095505 + ], + [ + 64.26567299323445, + 45.86916257716705 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 45.86916257716705 + ], + [ + 64.15083030975077, + 46.063810312095505 + ], + [ + 64.03598762626709, + 45.86916257716705 + ], + [ + 64.26567299323445, + 45.86916257716705 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 45.86916257716705 + ], + [ + 64.03598762626709, + 45.86916257716705 + ], + [ + 64.15083030975077, + 45.6745148422386 + ], + [ + 64.26567299323445, + 45.86916257716705 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 45.86916257716705 + ], + [ + 64.15083030975077, + 45.6745148422386 + ], + [ + 64.38051567671812, + 45.6745148422386 + ], + [ + 64.26567299323445, + 45.86916257716705 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 45.86916257716705 + ], + [ + 64.38051567671812, + 45.6745148422386 + ], + [ + 64.4953583602018, + 45.86916257716705 + ], + [ + 64.26567299323445, + 45.86916257716705 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 46.25845804702396 + ], + [ + 64.4953583602018, + 46.25845804702396 + ], + [ + 64.38051567671812, + 46.45310578195241 + ], + [ + 64.26567299323445, + 46.25845804702396 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 46.25845804702396 + ], + [ + 64.38051567671812, + 46.45310578195241 + ], + [ + 64.15083030975077, + 46.45310578195241 + ], + [ + 64.26567299323445, + 46.25845804702396 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 46.25845804702396 + ], + [ + 64.15083030975077, + 46.45310578195241 + ], + [ + 64.03598762626709, + 46.25845804702396 + ], + [ + 64.26567299323445, + 46.25845804702396 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 46.25845804702396 + ], + [ + 64.03598762626709, + 46.25845804702396 + ], + [ + 64.15083030975077, + 46.063810312095505 + ], + [ + 64.26567299323445, + 46.25845804702396 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 46.25845804702396 + ], + [ + 64.15083030975077, + 46.063810312095505 + ], + [ + 64.38051567671812, + 46.063810312095505 + ], + [ + 64.26567299323445, + 46.25845804702396 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 46.25845804702396 + ], + [ + 64.38051567671812, + 46.063810312095505 + ], + [ + 64.4953583602018, + 46.25845804702396 + ], + [ + 64.26567299323445, + 46.25845804702396 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 46.64775351688086 + ], + [ + 64.4953583602018, + 46.64775351688086 + ], + [ + 64.38051567671812, + 46.842401251809314 + ], + [ + 64.26567299323445, + 46.64775351688086 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 46.64775351688086 + ], + [ + 64.38051567671812, + 46.842401251809314 + ], + [ + 64.15083030975077, + 46.842401251809314 + ], + [ + 64.26567299323445, + 46.64775351688086 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 46.64775351688086 + ], + [ + 64.15083030975077, + 46.842401251809314 + ], + [ + 64.03598762626709, + 46.64775351688086 + ], + [ + 64.26567299323445, + 46.64775351688086 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 46.64775351688086 + ], + [ + 64.03598762626709, + 46.64775351688086 + ], + [ + 64.15083030975077, + 46.45310578195241 + ], + [ + 64.26567299323445, + 46.64775351688086 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 46.64775351688086 + ], + [ + 64.15083030975077, + 46.45310578195241 + ], + [ + 64.38051567671812, + 46.45310578195241 + ], + [ + 64.26567299323445, + 46.64775351688086 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 46.64775351688086 + ], + [ + 64.38051567671812, + 46.45310578195241 + ], + [ + 64.4953583602018, + 46.64775351688086 + ], + [ + 64.26567299323445, + 46.64775351688086 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 47.037048986737766 + ], + [ + 64.4953583602018, + 47.037048986737766 + ], + [ + 64.38051567671812, + 47.23169672166622 + ], + [ + 64.26567299323445, + 47.037048986737766 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 47.037048986737766 + ], + [ + 64.38051567671812, + 47.23169672166622 + ], + [ + 64.15083030975077, + 47.23169672166622 + ], + [ + 64.26567299323445, + 47.037048986737766 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 47.037048986737766 + ], + [ + 64.15083030975077, + 47.23169672166622 + ], + [ + 64.03598762626709, + 47.037048986737766 + ], + [ + 64.26567299323445, + 47.037048986737766 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 47.037048986737766 + ], + [ + 64.03598762626709, + 47.037048986737766 + ], + [ + 64.15083030975077, + 46.842401251809314 + ], + [ + 64.26567299323445, + 47.037048986737766 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 47.037048986737766 + ], + [ + 64.15083030975077, + 46.842401251809314 + ], + [ + 64.38051567671812, + 46.842401251809314 + ], + [ + 64.26567299323445, + 47.037048986737766 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 47.037048986737766 + ], + [ + 64.38051567671812, + 46.842401251809314 + ], + [ + 64.4953583602018, + 47.037048986737766 + ], + [ + 64.26567299323445, + 47.037048986737766 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 47.42634445659467 + ], + [ + 64.4953583602018, + 47.42634445659467 + ], + [ + 64.38051567671812, + 47.62099219152312 + ], + [ + 64.26567299323445, + 47.42634445659467 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 47.42634445659467 + ], + [ + 64.38051567671812, + 47.62099219152312 + ], + [ + 64.15083030975077, + 47.62099219152312 + ], + [ + 64.26567299323445, + 47.42634445659467 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 47.42634445659467 + ], + [ + 64.15083030975077, + 47.62099219152312 + ], + [ + 64.03598762626709, + 47.42634445659467 + ], + [ + 64.26567299323445, + 47.42634445659467 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 47.42634445659467 + ], + [ + 64.03598762626709, + 47.42634445659467 + ], + [ + 64.15083030975077, + 47.23169672166622 + ], + [ + 64.26567299323445, + 47.42634445659467 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 47.42634445659467 + ], + [ + 64.15083030975077, + 47.23169672166622 + ], + [ + 64.38051567671812, + 47.23169672166622 + ], + [ + 64.26567299323445, + 47.42634445659467 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 47.42634445659467 + ], + [ + 64.38051567671812, + 47.23169672166622 + ], + [ + 64.4953583602018, + 47.42634445659467 + ], + [ + 64.26567299323445, + 47.42634445659467 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 47.81563992645159 + ], + [ + 64.4953583602018, + 47.81563992645159 + ], + [ + 64.38051567671812, + 48.01028766138004 + ], + [ + 64.26567299323445, + 47.81563992645159 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 47.81563992645159 + ], + [ + 64.38051567671812, + 48.01028766138004 + ], + [ + 64.15083030975077, + 48.01028766138004 + ], + [ + 64.26567299323445, + 47.81563992645159 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 47.81563992645159 + ], + [ + 64.15083030975077, + 48.01028766138004 + ], + [ + 64.03598762626709, + 47.81563992645159 + ], + [ + 64.26567299323445, + 47.81563992645159 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 47.81563992645159 + ], + [ + 64.03598762626709, + 47.81563992645159 + ], + [ + 64.15083030975077, + 47.620992191523136 + ], + [ + 64.26567299323445, + 47.81563992645159 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 47.81563992645159 + ], + [ + 64.15083030975077, + 47.620992191523136 + ], + [ + 64.38051567671812, + 47.620992191523136 + ], + [ + 64.26567299323445, + 47.81563992645159 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.26567299323445, + 47.81563992645159 + ], + [ + 64.38051567671812, + 47.620992191523136 + ], + [ + 64.4953583602018, + 47.81563992645159 + ], + [ + 64.26567299323445, + 47.81563992645159 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 11.805808964687746 + ], + [ + 64.83988641065284, + 11.805808964687746 + ], + [ + 64.72504372716915, + 12.0004566996162 + ], + [ + 64.61020104368548, + 11.805808964687746 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 11.805808964687746 + ], + [ + 64.72504372716915, + 12.0004566996162 + ], + [ + 64.4953583602018, + 12.0004566996162 + ], + [ + 64.61020104368548, + 11.805808964687746 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 11.805808964687746 + ], + [ + 64.4953583602018, + 12.0004566996162 + ], + [ + 64.38051567671812, + 11.805808964687746 + ], + [ + 64.61020104368548, + 11.805808964687746 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 11.805808964687746 + ], + [ + 64.38051567671812, + 11.805808964687746 + ], + [ + 64.4953583602018, + 11.611161229759292 + ], + [ + 64.61020104368548, + 11.805808964687746 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 11.805808964687746 + ], + [ + 64.4953583602018, + 11.611161229759292 + ], + [ + 64.72504372716915, + 11.611161229759292 + ], + [ + 64.61020104368548, + 11.805808964687746 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 11.805808964687746 + ], + [ + 64.72504372716915, + 11.611161229759292 + ], + [ + 64.83988641065284, + 11.805808964687746 + ], + [ + 64.61020104368548, + 11.805808964687746 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 12.195104434544652 + ], + [ + 64.83988641065284, + 12.195104434544652 + ], + [ + 64.72504372716915, + 12.389752169473105 + ], + [ + 64.61020104368548, + 12.195104434544652 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 12.195104434544652 + ], + [ + 64.72504372716915, + 12.389752169473105 + ], + [ + 64.4953583602018, + 12.389752169473105 + ], + [ + 64.61020104368548, + 12.195104434544652 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 12.195104434544652 + ], + [ + 64.4953583602018, + 12.389752169473105 + ], + [ + 64.38051567671812, + 12.195104434544652 + ], + [ + 64.61020104368548, + 12.195104434544652 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 12.195104434544652 + ], + [ + 64.38051567671812, + 12.195104434544652 + ], + [ + 64.4953583602018, + 12.000456699616198 + ], + [ + 64.61020104368548, + 12.195104434544652 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 12.195104434544652 + ], + [ + 64.4953583602018, + 12.000456699616198 + ], + [ + 64.72504372716915, + 12.000456699616198 + ], + [ + 64.61020104368548, + 12.195104434544652 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 12.195104434544652 + ], + [ + 64.72504372716915, + 12.000456699616198 + ], + [ + 64.83988641065284, + 12.195104434544652 + ], + [ + 64.61020104368548, + 12.195104434544652 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 12.58439990440156 + ], + [ + 64.83988641065284, + 12.58439990440156 + ], + [ + 64.72504372716915, + 12.779047639330013 + ], + [ + 64.61020104368548, + 12.58439990440156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 12.58439990440156 + ], + [ + 64.72504372716915, + 12.779047639330013 + ], + [ + 64.4953583602018, + 12.779047639330013 + ], + [ + 64.61020104368548, + 12.58439990440156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 12.58439990440156 + ], + [ + 64.4953583602018, + 12.779047639330013 + ], + [ + 64.38051567671812, + 12.58439990440156 + ], + [ + 64.61020104368548, + 12.58439990440156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 12.58439990440156 + ], + [ + 64.38051567671812, + 12.58439990440156 + ], + [ + 64.4953583602018, + 12.389752169473105 + ], + [ + 64.61020104368548, + 12.58439990440156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 12.58439990440156 + ], + [ + 64.4953583602018, + 12.389752169473105 + ], + [ + 64.72504372716915, + 12.389752169473105 + ], + [ + 64.61020104368548, + 12.58439990440156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 12.58439990440156 + ], + [ + 64.72504372716915, + 12.389752169473105 + ], + [ + 64.83988641065284, + 12.58439990440156 + ], + [ + 64.61020104368548, + 12.58439990440156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 12.973695374258465 + ], + [ + 64.83988641065284, + 12.973695374258465 + ], + [ + 64.72504372716915, + 13.16834310918692 + ], + [ + 64.61020104368548, + 12.973695374258465 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 12.973695374258465 + ], + [ + 64.72504372716915, + 13.16834310918692 + ], + [ + 64.4953583602018, + 13.16834310918692 + ], + [ + 64.61020104368548, + 12.973695374258465 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 12.973695374258465 + ], + [ + 64.4953583602018, + 13.16834310918692 + ], + [ + 64.38051567671812, + 12.973695374258465 + ], + [ + 64.61020104368548, + 12.973695374258465 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 12.973695374258465 + ], + [ + 64.38051567671812, + 12.973695374258465 + ], + [ + 64.4953583602018, + 12.779047639330011 + ], + [ + 64.61020104368548, + 12.973695374258465 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 12.973695374258465 + ], + [ + 64.4953583602018, + 12.779047639330011 + ], + [ + 64.72504372716915, + 12.779047639330011 + ], + [ + 64.61020104368548, + 12.973695374258465 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 12.973695374258465 + ], + [ + 64.72504372716915, + 12.779047639330011 + ], + [ + 64.83988641065284, + 12.973695374258465 + ], + [ + 64.61020104368548, + 12.973695374258465 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 13.362990844115371 + ], + [ + 64.83988641065284, + 13.362990844115371 + ], + [ + 64.72504372716915, + 13.557638579043825 + ], + [ + 64.61020104368548, + 13.362990844115371 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 13.362990844115371 + ], + [ + 64.72504372716915, + 13.557638579043825 + ], + [ + 64.4953583602018, + 13.557638579043825 + ], + [ + 64.61020104368548, + 13.362990844115371 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 13.362990844115371 + ], + [ + 64.4953583602018, + 13.557638579043825 + ], + [ + 64.38051567671812, + 13.362990844115371 + ], + [ + 64.61020104368548, + 13.362990844115371 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 13.362990844115371 + ], + [ + 64.38051567671812, + 13.362990844115371 + ], + [ + 64.4953583602018, + 13.168343109186917 + ], + [ + 64.61020104368548, + 13.362990844115371 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 13.362990844115371 + ], + [ + 64.4953583602018, + 13.168343109186917 + ], + [ + 64.72504372716915, + 13.168343109186917 + ], + [ + 64.61020104368548, + 13.362990844115371 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 13.362990844115371 + ], + [ + 64.72504372716915, + 13.168343109186917 + ], + [ + 64.83988641065284, + 13.362990844115371 + ], + [ + 64.61020104368548, + 13.362990844115371 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 13.752286313972277 + ], + [ + 64.83988641065284, + 13.752286313972277 + ], + [ + 64.72504372716915, + 13.946934048900731 + ], + [ + 64.61020104368548, + 13.752286313972277 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 13.752286313972277 + ], + [ + 64.72504372716915, + 13.946934048900731 + ], + [ + 64.4953583602018, + 13.946934048900731 + ], + [ + 64.61020104368548, + 13.752286313972277 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 13.752286313972277 + ], + [ + 64.4953583602018, + 13.946934048900731 + ], + [ + 64.38051567671812, + 13.752286313972277 + ], + [ + 64.61020104368548, + 13.752286313972277 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 13.752286313972277 + ], + [ + 64.38051567671812, + 13.752286313972277 + ], + [ + 64.4953583602018, + 13.557638579043823 + ], + [ + 64.61020104368548, + 13.752286313972277 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 13.752286313972277 + ], + [ + 64.4953583602018, + 13.557638579043823 + ], + [ + 64.72504372716915, + 13.557638579043823 + ], + [ + 64.61020104368548, + 13.752286313972277 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 13.752286313972277 + ], + [ + 64.72504372716915, + 13.557638579043823 + ], + [ + 64.83988641065284, + 13.752286313972277 + ], + [ + 64.61020104368548, + 13.752286313972277 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 14.141581783829183 + ], + [ + 64.83988641065284, + 14.141581783829183 + ], + [ + 64.72504372716915, + 14.336229518757637 + ], + [ + 64.61020104368548, + 14.141581783829183 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 14.141581783829183 + ], + [ + 64.72504372716915, + 14.336229518757637 + ], + [ + 64.4953583602018, + 14.336229518757637 + ], + [ + 64.61020104368548, + 14.141581783829183 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 14.141581783829183 + ], + [ + 64.4953583602018, + 14.336229518757637 + ], + [ + 64.38051567671812, + 14.141581783829183 + ], + [ + 64.61020104368548, + 14.141581783829183 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 14.141581783829183 + ], + [ + 64.38051567671812, + 14.141581783829183 + ], + [ + 64.4953583602018, + 13.94693404890073 + ], + [ + 64.61020104368548, + 14.141581783829183 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 14.141581783829183 + ], + [ + 64.4953583602018, + 13.94693404890073 + ], + [ + 64.72504372716915, + 13.94693404890073 + ], + [ + 64.61020104368548, + 14.141581783829183 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 14.141581783829183 + ], + [ + 64.72504372716915, + 13.94693404890073 + ], + [ + 64.83988641065284, + 14.141581783829183 + ], + [ + 64.61020104368548, + 14.141581783829183 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 14.530877253686091 + ], + [ + 64.83988641065284, + 14.530877253686091 + ], + [ + 64.72504372716915, + 14.725524988614545 + ], + [ + 64.61020104368548, + 14.530877253686091 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 14.530877253686091 + ], + [ + 64.72504372716915, + 14.725524988614545 + ], + [ + 64.4953583602018, + 14.725524988614545 + ], + [ + 64.61020104368548, + 14.530877253686091 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 14.530877253686091 + ], + [ + 64.4953583602018, + 14.725524988614545 + ], + [ + 64.38051567671812, + 14.530877253686091 + ], + [ + 64.61020104368548, + 14.530877253686091 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 14.530877253686091 + ], + [ + 64.38051567671812, + 14.530877253686091 + ], + [ + 64.4953583602018, + 14.336229518757637 + ], + [ + 64.61020104368548, + 14.530877253686091 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 14.530877253686091 + ], + [ + 64.4953583602018, + 14.336229518757637 + ], + [ + 64.72504372716915, + 14.336229518757637 + ], + [ + 64.61020104368548, + 14.530877253686091 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 14.530877253686091 + ], + [ + 64.72504372716915, + 14.336229518757637 + ], + [ + 64.83988641065284, + 14.530877253686091 + ], + [ + 64.61020104368548, + 14.530877253686091 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 14.920172723542997 + ], + [ + 64.83988641065284, + 14.920172723542997 + ], + [ + 64.72504372716915, + 15.114820458471451 + ], + [ + 64.61020104368548, + 14.920172723542997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 14.920172723542997 + ], + [ + 64.72504372716915, + 15.114820458471451 + ], + [ + 64.4953583602018, + 15.114820458471451 + ], + [ + 64.61020104368548, + 14.920172723542997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 14.920172723542997 + ], + [ + 64.4953583602018, + 15.114820458471451 + ], + [ + 64.38051567671812, + 14.920172723542997 + ], + [ + 64.61020104368548, + 14.920172723542997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 14.920172723542997 + ], + [ + 64.38051567671812, + 14.920172723542997 + ], + [ + 64.4953583602018, + 14.725524988614543 + ], + [ + 64.61020104368548, + 14.920172723542997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 14.920172723542997 + ], + [ + 64.4953583602018, + 14.725524988614543 + ], + [ + 64.72504372716915, + 14.725524988614543 + ], + [ + 64.61020104368548, + 14.920172723542997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 14.920172723542997 + ], + [ + 64.72504372716915, + 14.725524988614543 + ], + [ + 64.83988641065284, + 14.920172723542997 + ], + [ + 64.61020104368548, + 14.920172723542997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 15.309468193399903 + ], + [ + 64.83988641065284, + 15.309468193399903 + ], + [ + 64.72504372716915, + 15.504115928328357 + ], + [ + 64.61020104368548, + 15.309468193399903 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 15.309468193399903 + ], + [ + 64.72504372716915, + 15.504115928328357 + ], + [ + 64.4953583602018, + 15.504115928328357 + ], + [ + 64.61020104368548, + 15.309468193399903 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 15.309468193399903 + ], + [ + 64.4953583602018, + 15.504115928328357 + ], + [ + 64.38051567671812, + 15.309468193399903 + ], + [ + 64.61020104368548, + 15.309468193399903 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 15.309468193399903 + ], + [ + 64.38051567671812, + 15.309468193399903 + ], + [ + 64.4953583602018, + 15.11482045847145 + ], + [ + 64.61020104368548, + 15.309468193399903 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 15.309468193399903 + ], + [ + 64.4953583602018, + 15.11482045847145 + ], + [ + 64.72504372716915, + 15.11482045847145 + ], + [ + 64.61020104368548, + 15.309468193399903 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 15.309468193399903 + ], + [ + 64.72504372716915, + 15.11482045847145 + ], + [ + 64.83988641065284, + 15.309468193399903 + ], + [ + 64.61020104368548, + 15.309468193399903 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 15.69876366325681 + ], + [ + 64.83988641065284, + 15.69876366325681 + ], + [ + 64.72504372716915, + 15.893411398185265 + ], + [ + 64.61020104368548, + 15.69876366325681 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 15.69876366325681 + ], + [ + 64.72504372716915, + 15.893411398185265 + ], + [ + 64.4953583602018, + 15.893411398185265 + ], + [ + 64.61020104368548, + 15.69876366325681 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 15.69876366325681 + ], + [ + 64.4953583602018, + 15.893411398185265 + ], + [ + 64.38051567671812, + 15.69876366325681 + ], + [ + 64.61020104368548, + 15.69876366325681 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 15.69876366325681 + ], + [ + 64.38051567671812, + 15.69876366325681 + ], + [ + 64.4953583602018, + 15.504115928328357 + ], + [ + 64.61020104368548, + 15.69876366325681 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 15.69876366325681 + ], + [ + 64.4953583602018, + 15.504115928328357 + ], + [ + 64.72504372716915, + 15.504115928328357 + ], + [ + 64.61020104368548, + 15.69876366325681 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 15.69876366325681 + ], + [ + 64.72504372716915, + 15.504115928328357 + ], + [ + 64.83988641065284, + 15.69876366325681 + ], + [ + 64.61020104368548, + 15.69876366325681 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 16.088059133113717 + ], + [ + 64.83988641065284, + 16.088059133113717 + ], + [ + 64.72504372716915, + 16.28270686804217 + ], + [ + 64.61020104368548, + 16.088059133113717 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 16.088059133113717 + ], + [ + 64.72504372716915, + 16.28270686804217 + ], + [ + 64.4953583602018, + 16.28270686804217 + ], + [ + 64.61020104368548, + 16.088059133113717 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 16.088059133113717 + ], + [ + 64.4953583602018, + 16.28270686804217 + ], + [ + 64.38051567671812, + 16.088059133113717 + ], + [ + 64.61020104368548, + 16.088059133113717 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 16.088059133113717 + ], + [ + 64.38051567671812, + 16.088059133113717 + ], + [ + 64.4953583602018, + 15.893411398185263 + ], + [ + 64.61020104368548, + 16.088059133113717 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 16.088059133113717 + ], + [ + 64.4953583602018, + 15.893411398185263 + ], + [ + 64.72504372716915, + 15.893411398185263 + ], + [ + 64.61020104368548, + 16.088059133113717 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 16.088059133113717 + ], + [ + 64.72504372716915, + 15.893411398185263 + ], + [ + 64.83988641065284, + 16.088059133113717 + ], + [ + 64.61020104368548, + 16.088059133113717 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 16.477354602970625 + ], + [ + 64.83988641065284, + 16.477354602970625 + ], + [ + 64.72504372716915, + 16.672002337899077 + ], + [ + 64.61020104368548, + 16.477354602970625 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 16.477354602970625 + ], + [ + 64.72504372716915, + 16.672002337899077 + ], + [ + 64.4953583602018, + 16.672002337899077 + ], + [ + 64.61020104368548, + 16.477354602970625 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 16.477354602970625 + ], + [ + 64.4953583602018, + 16.672002337899077 + ], + [ + 64.38051567671812, + 16.477354602970625 + ], + [ + 64.61020104368548, + 16.477354602970625 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 16.477354602970625 + ], + [ + 64.38051567671812, + 16.477354602970625 + ], + [ + 64.4953583602018, + 16.282706868042172 + ], + [ + 64.61020104368548, + 16.477354602970625 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 16.477354602970625 + ], + [ + 64.4953583602018, + 16.282706868042172 + ], + [ + 64.72504372716915, + 16.282706868042172 + ], + [ + 64.61020104368548, + 16.477354602970625 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 16.477354602970625 + ], + [ + 64.72504372716915, + 16.282706868042172 + ], + [ + 64.83988641065284, + 16.477354602970625 + ], + [ + 64.61020104368548, + 16.477354602970625 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 16.86665007282753 + ], + [ + 64.83988641065284, + 16.86665007282753 + ], + [ + 64.72504372716915, + 17.06129780775598 + ], + [ + 64.61020104368548, + 16.86665007282753 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 16.86665007282753 + ], + [ + 64.72504372716915, + 17.06129780775598 + ], + [ + 64.4953583602018, + 17.06129780775598 + ], + [ + 64.61020104368548, + 16.86665007282753 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 16.86665007282753 + ], + [ + 64.4953583602018, + 17.06129780775598 + ], + [ + 64.38051567671812, + 16.86665007282753 + ], + [ + 64.61020104368548, + 16.86665007282753 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 16.86665007282753 + ], + [ + 64.38051567671812, + 16.86665007282753 + ], + [ + 64.4953583602018, + 16.672002337899077 + ], + [ + 64.61020104368548, + 16.86665007282753 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 16.86665007282753 + ], + [ + 64.4953583602018, + 16.672002337899077 + ], + [ + 64.72504372716915, + 16.672002337899077 + ], + [ + 64.61020104368548, + 16.86665007282753 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 16.86665007282753 + ], + [ + 64.72504372716915, + 16.672002337899077 + ], + [ + 64.83988641065284, + 16.86665007282753 + ], + [ + 64.61020104368548, + 16.86665007282753 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 17.255945542684437 + ], + [ + 64.83988641065284, + 17.255945542684437 + ], + [ + 64.72504372716915, + 17.45059327761289 + ], + [ + 64.61020104368548, + 17.255945542684437 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 17.255945542684437 + ], + [ + 64.72504372716915, + 17.45059327761289 + ], + [ + 64.4953583602018, + 17.45059327761289 + ], + [ + 64.61020104368548, + 17.255945542684437 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 17.255945542684437 + ], + [ + 64.4953583602018, + 17.45059327761289 + ], + [ + 64.38051567671812, + 17.255945542684437 + ], + [ + 64.61020104368548, + 17.255945542684437 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 17.255945542684437 + ], + [ + 64.38051567671812, + 17.255945542684437 + ], + [ + 64.4953583602018, + 17.061297807755984 + ], + [ + 64.61020104368548, + 17.255945542684437 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 17.255945542684437 + ], + [ + 64.4953583602018, + 17.061297807755984 + ], + [ + 64.72504372716915, + 17.061297807755984 + ], + [ + 64.61020104368548, + 17.255945542684437 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 17.255945542684437 + ], + [ + 64.72504372716915, + 17.061297807755984 + ], + [ + 64.83988641065284, + 17.255945542684437 + ], + [ + 64.61020104368548, + 17.255945542684437 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 17.64524101254134 + ], + [ + 64.83988641065284, + 17.64524101254134 + ], + [ + 64.72504372716915, + 17.839888747469793 + ], + [ + 64.61020104368548, + 17.64524101254134 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 17.64524101254134 + ], + [ + 64.72504372716915, + 17.839888747469793 + ], + [ + 64.4953583602018, + 17.839888747469793 + ], + [ + 64.61020104368548, + 17.64524101254134 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 17.64524101254134 + ], + [ + 64.4953583602018, + 17.839888747469793 + ], + [ + 64.38051567671812, + 17.64524101254134 + ], + [ + 64.61020104368548, + 17.64524101254134 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 17.64524101254134 + ], + [ + 64.38051567671812, + 17.64524101254134 + ], + [ + 64.4953583602018, + 17.45059327761289 + ], + [ + 64.61020104368548, + 17.64524101254134 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 17.64524101254134 + ], + [ + 64.4953583602018, + 17.45059327761289 + ], + [ + 64.72504372716915, + 17.45059327761289 + ], + [ + 64.61020104368548, + 17.64524101254134 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 17.64524101254134 + ], + [ + 64.72504372716915, + 17.45059327761289 + ], + [ + 64.83988641065284, + 17.64524101254134 + ], + [ + 64.61020104368548, + 17.64524101254134 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 18.03453648239825 + ], + [ + 64.83988641065284, + 18.03453648239825 + ], + [ + 64.72504372716915, + 18.2291842173267 + ], + [ + 64.61020104368548, + 18.03453648239825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 18.03453648239825 + ], + [ + 64.72504372716915, + 18.2291842173267 + ], + [ + 64.4953583602018, + 18.2291842173267 + ], + [ + 64.61020104368548, + 18.03453648239825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 18.03453648239825 + ], + [ + 64.4953583602018, + 18.2291842173267 + ], + [ + 64.38051567671812, + 18.03453648239825 + ], + [ + 64.61020104368548, + 18.03453648239825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 18.03453648239825 + ], + [ + 64.38051567671812, + 18.03453648239825 + ], + [ + 64.4953583602018, + 17.839888747469796 + ], + [ + 64.61020104368548, + 18.03453648239825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 18.03453648239825 + ], + [ + 64.4953583602018, + 17.839888747469796 + ], + [ + 64.72504372716915, + 17.839888747469796 + ], + [ + 64.61020104368548, + 18.03453648239825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 18.03453648239825 + ], + [ + 64.72504372716915, + 17.839888747469796 + ], + [ + 64.83988641065284, + 18.03453648239825 + ], + [ + 64.61020104368548, + 18.03453648239825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 18.423831952255156 + ], + [ + 64.83988641065284, + 18.423831952255156 + ], + [ + 64.72504372716915, + 18.61847968718361 + ], + [ + 64.61020104368548, + 18.423831952255156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 18.423831952255156 + ], + [ + 64.72504372716915, + 18.61847968718361 + ], + [ + 64.4953583602018, + 18.61847968718361 + ], + [ + 64.61020104368548, + 18.423831952255156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 18.423831952255156 + ], + [ + 64.4953583602018, + 18.61847968718361 + ], + [ + 64.38051567671812, + 18.423831952255156 + ], + [ + 64.61020104368548, + 18.423831952255156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 18.423831952255156 + ], + [ + 64.38051567671812, + 18.423831952255156 + ], + [ + 64.4953583602018, + 18.229184217326704 + ], + [ + 64.61020104368548, + 18.423831952255156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 18.423831952255156 + ], + [ + 64.4953583602018, + 18.229184217326704 + ], + [ + 64.72504372716915, + 18.229184217326704 + ], + [ + 64.61020104368548, + 18.423831952255156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 18.423831952255156 + ], + [ + 64.72504372716915, + 18.229184217326704 + ], + [ + 64.83988641065284, + 18.423831952255156 + ], + [ + 64.61020104368548, + 18.423831952255156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 18.81312742211206 + ], + [ + 64.83988641065284, + 18.81312742211206 + ], + [ + 64.72504372716915, + 19.007775157040513 + ], + [ + 64.61020104368548, + 18.81312742211206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 18.81312742211206 + ], + [ + 64.72504372716915, + 19.007775157040513 + ], + [ + 64.4953583602018, + 19.007775157040513 + ], + [ + 64.61020104368548, + 18.81312742211206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 18.81312742211206 + ], + [ + 64.4953583602018, + 19.007775157040513 + ], + [ + 64.38051567671812, + 18.81312742211206 + ], + [ + 64.61020104368548, + 18.81312742211206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 18.81312742211206 + ], + [ + 64.38051567671812, + 18.81312742211206 + ], + [ + 64.4953583602018, + 18.61847968718361 + ], + [ + 64.61020104368548, + 18.81312742211206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 18.81312742211206 + ], + [ + 64.4953583602018, + 18.61847968718361 + ], + [ + 64.72504372716915, + 18.61847968718361 + ], + [ + 64.61020104368548, + 18.81312742211206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 18.81312742211206 + ], + [ + 64.72504372716915, + 18.61847968718361 + ], + [ + 64.83988641065284, + 18.81312742211206 + ], + [ + 64.61020104368548, + 18.81312742211206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 19.20242289196897 + ], + [ + 64.83988641065284, + 19.20242289196897 + ], + [ + 64.72504372716915, + 19.39707062689742 + ], + [ + 64.61020104368548, + 19.20242289196897 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 19.20242289196897 + ], + [ + 64.72504372716915, + 19.39707062689742 + ], + [ + 64.4953583602018, + 19.39707062689742 + ], + [ + 64.61020104368548, + 19.20242289196897 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 19.20242289196897 + ], + [ + 64.4953583602018, + 19.39707062689742 + ], + [ + 64.38051567671812, + 19.20242289196897 + ], + [ + 64.61020104368548, + 19.20242289196897 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 19.20242289196897 + ], + [ + 64.38051567671812, + 19.20242289196897 + ], + [ + 64.4953583602018, + 19.007775157040516 + ], + [ + 64.61020104368548, + 19.20242289196897 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 19.20242289196897 + ], + [ + 64.4953583602018, + 19.007775157040516 + ], + [ + 64.72504372716915, + 19.007775157040516 + ], + [ + 64.61020104368548, + 19.20242289196897 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 19.20242289196897 + ], + [ + 64.72504372716915, + 19.007775157040516 + ], + [ + 64.83988641065284, + 19.20242289196897 + ], + [ + 64.61020104368548, + 19.20242289196897 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 19.591718361825876 + ], + [ + 64.83988641065284, + 19.591718361825876 + ], + [ + 64.72504372716915, + 19.78636609675433 + ], + [ + 64.61020104368548, + 19.591718361825876 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 19.591718361825876 + ], + [ + 64.72504372716915, + 19.78636609675433 + ], + [ + 64.4953583602018, + 19.78636609675433 + ], + [ + 64.61020104368548, + 19.591718361825876 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 19.591718361825876 + ], + [ + 64.4953583602018, + 19.78636609675433 + ], + [ + 64.38051567671812, + 19.591718361825876 + ], + [ + 64.61020104368548, + 19.591718361825876 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 19.591718361825876 + ], + [ + 64.38051567671812, + 19.591718361825876 + ], + [ + 64.4953583602018, + 19.397070626897424 + ], + [ + 64.61020104368548, + 19.591718361825876 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 19.591718361825876 + ], + [ + 64.4953583602018, + 19.397070626897424 + ], + [ + 64.72504372716915, + 19.397070626897424 + ], + [ + 64.61020104368548, + 19.591718361825876 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 19.591718361825876 + ], + [ + 64.72504372716915, + 19.397070626897424 + ], + [ + 64.83988641065284, + 19.591718361825876 + ], + [ + 64.61020104368548, + 19.591718361825876 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 19.98101383168278 + ], + [ + 64.83988641065284, + 19.98101383168278 + ], + [ + 64.72504372716915, + 20.175661566611232 + ], + [ + 64.61020104368548, + 19.98101383168278 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 19.98101383168278 + ], + [ + 64.72504372716915, + 20.175661566611232 + ], + [ + 64.4953583602018, + 20.175661566611232 + ], + [ + 64.61020104368548, + 19.98101383168278 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 19.98101383168278 + ], + [ + 64.4953583602018, + 20.175661566611232 + ], + [ + 64.38051567671812, + 19.98101383168278 + ], + [ + 64.61020104368548, + 19.98101383168278 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 19.98101383168278 + ], + [ + 64.38051567671812, + 19.98101383168278 + ], + [ + 64.4953583602018, + 19.78636609675433 + ], + [ + 64.61020104368548, + 19.98101383168278 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 19.98101383168278 + ], + [ + 64.4953583602018, + 19.78636609675433 + ], + [ + 64.72504372716915, + 19.78636609675433 + ], + [ + 64.61020104368548, + 19.98101383168278 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 19.98101383168278 + ], + [ + 64.72504372716915, + 19.78636609675433 + ], + [ + 64.83988641065284, + 19.98101383168278 + ], + [ + 64.61020104368548, + 19.98101383168278 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 20.370309301539685 + ], + [ + 64.83988641065284, + 20.370309301539685 + ], + [ + 64.72504372716915, + 20.564957036468137 + ], + [ + 64.61020104368548, + 20.370309301539685 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 20.370309301539685 + ], + [ + 64.72504372716915, + 20.564957036468137 + ], + [ + 64.4953583602018, + 20.564957036468137 + ], + [ + 64.61020104368548, + 20.370309301539685 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 20.370309301539685 + ], + [ + 64.4953583602018, + 20.564957036468137 + ], + [ + 64.38051567671812, + 20.370309301539685 + ], + [ + 64.61020104368548, + 20.370309301539685 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 20.370309301539685 + ], + [ + 64.38051567671812, + 20.370309301539685 + ], + [ + 64.4953583602018, + 20.175661566611232 + ], + [ + 64.61020104368548, + 20.370309301539685 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 20.370309301539685 + ], + [ + 64.4953583602018, + 20.175661566611232 + ], + [ + 64.72504372716915, + 20.175661566611232 + ], + [ + 64.61020104368548, + 20.370309301539685 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 20.370309301539685 + ], + [ + 64.72504372716915, + 20.175661566611232 + ], + [ + 64.83988641065284, + 20.370309301539685 + ], + [ + 64.61020104368548, + 20.370309301539685 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 20.759604771396592 + ], + [ + 64.83988641065284, + 20.759604771396592 + ], + [ + 64.72504372716915, + 20.954252506325044 + ], + [ + 64.61020104368548, + 20.759604771396592 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 20.759604771396592 + ], + [ + 64.72504372716915, + 20.954252506325044 + ], + [ + 64.4953583602018, + 20.954252506325044 + ], + [ + 64.61020104368548, + 20.759604771396592 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 20.759604771396592 + ], + [ + 64.4953583602018, + 20.954252506325044 + ], + [ + 64.38051567671812, + 20.759604771396592 + ], + [ + 64.61020104368548, + 20.759604771396592 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 20.759604771396592 + ], + [ + 64.38051567671812, + 20.759604771396592 + ], + [ + 64.4953583602018, + 20.56495703646814 + ], + [ + 64.61020104368548, + 20.759604771396592 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 20.759604771396592 + ], + [ + 64.4953583602018, + 20.56495703646814 + ], + [ + 64.72504372716915, + 20.56495703646814 + ], + [ + 64.61020104368548, + 20.759604771396592 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 20.759604771396592 + ], + [ + 64.72504372716915, + 20.56495703646814 + ], + [ + 64.83988641065284, + 20.759604771396592 + ], + [ + 64.61020104368548, + 20.759604771396592 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 21.1489002412535 + ], + [ + 64.83988641065284, + 21.1489002412535 + ], + [ + 64.72504372716915, + 21.343547976181952 + ], + [ + 64.61020104368548, + 21.1489002412535 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 21.1489002412535 + ], + [ + 64.72504372716915, + 21.343547976181952 + ], + [ + 64.4953583602018, + 21.343547976181952 + ], + [ + 64.61020104368548, + 21.1489002412535 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 21.1489002412535 + ], + [ + 64.4953583602018, + 21.343547976181952 + ], + [ + 64.38051567671812, + 21.1489002412535 + ], + [ + 64.61020104368548, + 21.1489002412535 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 21.1489002412535 + ], + [ + 64.38051567671812, + 21.1489002412535 + ], + [ + 64.4953583602018, + 20.954252506325048 + ], + [ + 64.61020104368548, + 21.1489002412535 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 21.1489002412535 + ], + [ + 64.4953583602018, + 20.954252506325048 + ], + [ + 64.72504372716915, + 20.954252506325048 + ], + [ + 64.61020104368548, + 21.1489002412535 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 21.1489002412535 + ], + [ + 64.72504372716915, + 20.954252506325048 + ], + [ + 64.83988641065284, + 21.1489002412535 + ], + [ + 64.61020104368548, + 21.1489002412535 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 21.538195711110404 + ], + [ + 64.83988641065284, + 21.538195711110404 + ], + [ + 64.72504372716915, + 21.732843446038856 + ], + [ + 64.61020104368548, + 21.538195711110404 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 21.538195711110404 + ], + [ + 64.72504372716915, + 21.732843446038856 + ], + [ + 64.4953583602018, + 21.732843446038856 + ], + [ + 64.61020104368548, + 21.538195711110404 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 21.538195711110404 + ], + [ + 64.4953583602018, + 21.732843446038856 + ], + [ + 64.38051567671812, + 21.538195711110404 + ], + [ + 64.61020104368548, + 21.538195711110404 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 21.538195711110404 + ], + [ + 64.38051567671812, + 21.538195711110404 + ], + [ + 64.4953583602018, + 21.343547976181952 + ], + [ + 64.61020104368548, + 21.538195711110404 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 21.538195711110404 + ], + [ + 64.4953583602018, + 21.343547976181952 + ], + [ + 64.72504372716915, + 21.343547976181952 + ], + [ + 64.61020104368548, + 21.538195711110404 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 21.538195711110404 + ], + [ + 64.72504372716915, + 21.343547976181952 + ], + [ + 64.83988641065284, + 21.538195711110404 + ], + [ + 64.61020104368548, + 21.538195711110404 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 21.927491180967312 + ], + [ + 64.83988641065284, + 21.927491180967312 + ], + [ + 64.72504372716915, + 22.122138915895764 + ], + [ + 64.61020104368548, + 21.927491180967312 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 21.927491180967312 + ], + [ + 64.72504372716915, + 22.122138915895764 + ], + [ + 64.4953583602018, + 22.122138915895764 + ], + [ + 64.61020104368548, + 21.927491180967312 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 21.927491180967312 + ], + [ + 64.4953583602018, + 22.122138915895764 + ], + [ + 64.38051567671812, + 21.927491180967312 + ], + [ + 64.61020104368548, + 21.927491180967312 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 21.927491180967312 + ], + [ + 64.38051567671812, + 21.927491180967312 + ], + [ + 64.4953583602018, + 21.73284344603886 + ], + [ + 64.61020104368548, + 21.927491180967312 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 21.927491180967312 + ], + [ + 64.4953583602018, + 21.73284344603886 + ], + [ + 64.72504372716915, + 21.73284344603886 + ], + [ + 64.61020104368548, + 21.927491180967312 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 21.927491180967312 + ], + [ + 64.72504372716915, + 21.73284344603886 + ], + [ + 64.83988641065284, + 21.927491180967312 + ], + [ + 64.61020104368548, + 21.927491180967312 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 22.31678665082422 + ], + [ + 64.83988641065284, + 22.31678665082422 + ], + [ + 64.72504372716915, + 22.511434385752672 + ], + [ + 64.61020104368548, + 22.31678665082422 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 22.31678665082422 + ], + [ + 64.72504372716915, + 22.511434385752672 + ], + [ + 64.4953583602018, + 22.511434385752672 + ], + [ + 64.61020104368548, + 22.31678665082422 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 22.31678665082422 + ], + [ + 64.4953583602018, + 22.511434385752672 + ], + [ + 64.38051567671812, + 22.31678665082422 + ], + [ + 64.61020104368548, + 22.31678665082422 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 22.31678665082422 + ], + [ + 64.38051567671812, + 22.31678665082422 + ], + [ + 64.4953583602018, + 22.122138915895768 + ], + [ + 64.61020104368548, + 22.31678665082422 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 22.31678665082422 + ], + [ + 64.4953583602018, + 22.122138915895768 + ], + [ + 64.72504372716915, + 22.122138915895768 + ], + [ + 64.61020104368548, + 22.31678665082422 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 22.31678665082422 + ], + [ + 64.72504372716915, + 22.122138915895768 + ], + [ + 64.83988641065284, + 22.31678665082422 + ], + [ + 64.61020104368548, + 22.31678665082422 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 22.706082120681124 + ], + [ + 64.83988641065284, + 22.706082120681124 + ], + [ + 64.72504372716915, + 22.900729855609576 + ], + [ + 64.61020104368548, + 22.706082120681124 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 22.706082120681124 + ], + [ + 64.72504372716915, + 22.900729855609576 + ], + [ + 64.4953583602018, + 22.900729855609576 + ], + [ + 64.61020104368548, + 22.706082120681124 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 22.706082120681124 + ], + [ + 64.4953583602018, + 22.900729855609576 + ], + [ + 64.38051567671812, + 22.706082120681124 + ], + [ + 64.61020104368548, + 22.706082120681124 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 22.706082120681124 + ], + [ + 64.38051567671812, + 22.706082120681124 + ], + [ + 64.4953583602018, + 22.511434385752672 + ], + [ + 64.61020104368548, + 22.706082120681124 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 22.706082120681124 + ], + [ + 64.4953583602018, + 22.511434385752672 + ], + [ + 64.72504372716915, + 22.511434385752672 + ], + [ + 64.61020104368548, + 22.706082120681124 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 22.706082120681124 + ], + [ + 64.72504372716915, + 22.511434385752672 + ], + [ + 64.83988641065284, + 22.706082120681124 + ], + [ + 64.61020104368548, + 22.706082120681124 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 23.095377590538032 + ], + [ + 64.83988641065284, + 23.095377590538032 + ], + [ + 64.72504372716915, + 23.290025325466484 + ], + [ + 64.61020104368548, + 23.095377590538032 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 23.095377590538032 + ], + [ + 64.72504372716915, + 23.290025325466484 + ], + [ + 64.4953583602018, + 23.290025325466484 + ], + [ + 64.61020104368548, + 23.095377590538032 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 23.095377590538032 + ], + [ + 64.4953583602018, + 23.290025325466484 + ], + [ + 64.38051567671812, + 23.095377590538032 + ], + [ + 64.61020104368548, + 23.095377590538032 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 23.095377590538032 + ], + [ + 64.38051567671812, + 23.095377590538032 + ], + [ + 64.4953583602018, + 22.90072985560958 + ], + [ + 64.61020104368548, + 23.095377590538032 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 23.095377590538032 + ], + [ + 64.4953583602018, + 22.90072985560958 + ], + [ + 64.72504372716915, + 22.90072985560958 + ], + [ + 64.61020104368548, + 23.095377590538032 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 23.095377590538032 + ], + [ + 64.72504372716915, + 22.90072985560958 + ], + [ + 64.83988641065284, + 23.095377590538032 + ], + [ + 64.61020104368548, + 23.095377590538032 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 23.48467306039494 + ], + [ + 64.83988641065284, + 23.48467306039494 + ], + [ + 64.72504372716915, + 23.67932079532339 + ], + [ + 64.61020104368548, + 23.48467306039494 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 23.48467306039494 + ], + [ + 64.72504372716915, + 23.67932079532339 + ], + [ + 64.4953583602018, + 23.67932079532339 + ], + [ + 64.61020104368548, + 23.48467306039494 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 23.48467306039494 + ], + [ + 64.4953583602018, + 23.67932079532339 + ], + [ + 64.38051567671812, + 23.48467306039494 + ], + [ + 64.61020104368548, + 23.48467306039494 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 23.48467306039494 + ], + [ + 64.38051567671812, + 23.48467306039494 + ], + [ + 64.4953583602018, + 23.290025325466488 + ], + [ + 64.61020104368548, + 23.48467306039494 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 23.48467306039494 + ], + [ + 64.4953583602018, + 23.290025325466488 + ], + [ + 64.72504372716915, + 23.290025325466488 + ], + [ + 64.61020104368548, + 23.48467306039494 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 23.48467306039494 + ], + [ + 64.72504372716915, + 23.290025325466488 + ], + [ + 64.83988641065284, + 23.48467306039494 + ], + [ + 64.61020104368548, + 23.48467306039494 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 23.873968530251844 + ], + [ + 64.83988641065284, + 23.873968530251844 + ], + [ + 64.72504372716915, + 24.068616265180296 + ], + [ + 64.61020104368548, + 23.873968530251844 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 23.873968530251844 + ], + [ + 64.72504372716915, + 24.068616265180296 + ], + [ + 64.4953583602018, + 24.068616265180296 + ], + [ + 64.61020104368548, + 23.873968530251844 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 23.873968530251844 + ], + [ + 64.4953583602018, + 24.068616265180296 + ], + [ + 64.38051567671812, + 23.873968530251844 + ], + [ + 64.61020104368548, + 23.873968530251844 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 23.873968530251844 + ], + [ + 64.38051567671812, + 23.873968530251844 + ], + [ + 64.4953583602018, + 23.67932079532339 + ], + [ + 64.61020104368548, + 23.873968530251844 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 23.873968530251844 + ], + [ + 64.4953583602018, + 23.67932079532339 + ], + [ + 64.72504372716915, + 23.67932079532339 + ], + [ + 64.61020104368548, + 23.873968530251844 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 23.873968530251844 + ], + [ + 64.72504372716915, + 23.67932079532339 + ], + [ + 64.83988641065284, + 23.873968530251844 + ], + [ + 64.61020104368548, + 23.873968530251844 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 24.263264000108748 + ], + [ + 64.83988641065284, + 24.263264000108748 + ], + [ + 64.72504372716915, + 24.4579117350372 + ], + [ + 64.61020104368548, + 24.263264000108748 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 24.263264000108748 + ], + [ + 64.72504372716915, + 24.4579117350372 + ], + [ + 64.4953583602018, + 24.4579117350372 + ], + [ + 64.61020104368548, + 24.263264000108748 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 24.263264000108748 + ], + [ + 64.4953583602018, + 24.4579117350372 + ], + [ + 64.38051567671812, + 24.263264000108748 + ], + [ + 64.61020104368548, + 24.263264000108748 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 24.263264000108748 + ], + [ + 64.38051567671812, + 24.263264000108748 + ], + [ + 64.4953583602018, + 24.068616265180296 + ], + [ + 64.61020104368548, + 24.263264000108748 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 24.263264000108748 + ], + [ + 64.4953583602018, + 24.068616265180296 + ], + [ + 64.72504372716915, + 24.068616265180296 + ], + [ + 64.61020104368548, + 24.263264000108748 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 24.263264000108748 + ], + [ + 64.72504372716915, + 24.068616265180296 + ], + [ + 64.83988641065284, + 24.263264000108748 + ], + [ + 64.61020104368548, + 24.263264000108748 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 24.652559469965656 + ], + [ + 64.83988641065284, + 24.652559469965656 + ], + [ + 64.72504372716915, + 24.847207204894108 + ], + [ + 64.61020104368548, + 24.652559469965656 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 24.652559469965656 + ], + [ + 64.72504372716915, + 24.847207204894108 + ], + [ + 64.4953583602018, + 24.847207204894108 + ], + [ + 64.61020104368548, + 24.652559469965656 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 24.652559469965656 + ], + [ + 64.4953583602018, + 24.847207204894108 + ], + [ + 64.38051567671812, + 24.652559469965656 + ], + [ + 64.61020104368548, + 24.652559469965656 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 24.652559469965656 + ], + [ + 64.38051567671812, + 24.652559469965656 + ], + [ + 64.4953583602018, + 24.457911735037204 + ], + [ + 64.61020104368548, + 24.652559469965656 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 24.652559469965656 + ], + [ + 64.4953583602018, + 24.457911735037204 + ], + [ + 64.72504372716915, + 24.457911735037204 + ], + [ + 64.61020104368548, + 24.652559469965656 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 24.652559469965656 + ], + [ + 64.72504372716915, + 24.457911735037204 + ], + [ + 64.83988641065284, + 24.652559469965656 + ], + [ + 64.61020104368548, + 24.652559469965656 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 25.041854939822564 + ], + [ + 64.83988641065284, + 25.041854939822564 + ], + [ + 64.72504372716915, + 25.236502674751016 + ], + [ + 64.61020104368548, + 25.041854939822564 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 25.041854939822564 + ], + [ + 64.72504372716915, + 25.236502674751016 + ], + [ + 64.4953583602018, + 25.236502674751016 + ], + [ + 64.61020104368548, + 25.041854939822564 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 25.041854939822564 + ], + [ + 64.4953583602018, + 25.236502674751016 + ], + [ + 64.38051567671812, + 25.041854939822564 + ], + [ + 64.61020104368548, + 25.041854939822564 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 25.041854939822564 + ], + [ + 64.38051567671812, + 25.041854939822564 + ], + [ + 64.4953583602018, + 24.84720720489411 + ], + [ + 64.61020104368548, + 25.041854939822564 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 25.041854939822564 + ], + [ + 64.4953583602018, + 24.84720720489411 + ], + [ + 64.72504372716915, + 24.84720720489411 + ], + [ + 64.61020104368548, + 25.041854939822564 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 25.041854939822564 + ], + [ + 64.72504372716915, + 24.84720720489411 + ], + [ + 64.83988641065284, + 25.041854939822564 + ], + [ + 64.61020104368548, + 25.041854939822564 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 25.431150409679468 + ], + [ + 64.83988641065284, + 25.431150409679468 + ], + [ + 64.72504372716915, + 25.62579814460792 + ], + [ + 64.61020104368548, + 25.431150409679468 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 25.431150409679468 + ], + [ + 64.72504372716915, + 25.62579814460792 + ], + [ + 64.4953583602018, + 25.62579814460792 + ], + [ + 64.61020104368548, + 25.431150409679468 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 25.431150409679468 + ], + [ + 64.4953583602018, + 25.62579814460792 + ], + [ + 64.38051567671812, + 25.431150409679468 + ], + [ + 64.61020104368548, + 25.431150409679468 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 25.431150409679468 + ], + [ + 64.38051567671812, + 25.431150409679468 + ], + [ + 64.4953583602018, + 25.236502674751016 + ], + [ + 64.61020104368548, + 25.431150409679468 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 25.431150409679468 + ], + [ + 64.4953583602018, + 25.236502674751016 + ], + [ + 64.72504372716915, + 25.236502674751016 + ], + [ + 64.61020104368548, + 25.431150409679468 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 25.431150409679468 + ], + [ + 64.72504372716915, + 25.236502674751016 + ], + [ + 64.83988641065284, + 25.431150409679468 + ], + [ + 64.61020104368548, + 25.431150409679468 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 25.820445879536376 + ], + [ + 64.83988641065284, + 25.820445879536376 + ], + [ + 64.72504372716915, + 26.015093614464828 + ], + [ + 64.61020104368548, + 25.820445879536376 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 25.820445879536376 + ], + [ + 64.72504372716915, + 26.015093614464828 + ], + [ + 64.4953583602018, + 26.015093614464828 + ], + [ + 64.61020104368548, + 25.820445879536376 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 25.820445879536376 + ], + [ + 64.4953583602018, + 26.015093614464828 + ], + [ + 64.38051567671812, + 25.820445879536376 + ], + [ + 64.61020104368548, + 25.820445879536376 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 25.820445879536376 + ], + [ + 64.38051567671812, + 25.820445879536376 + ], + [ + 64.4953583602018, + 25.625798144607923 + ], + [ + 64.61020104368548, + 25.820445879536376 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 25.820445879536376 + ], + [ + 64.4953583602018, + 25.625798144607923 + ], + [ + 64.72504372716915, + 25.625798144607923 + ], + [ + 64.61020104368548, + 25.820445879536376 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 25.820445879536376 + ], + [ + 64.72504372716915, + 25.625798144607923 + ], + [ + 64.83988641065284, + 25.820445879536376 + ], + [ + 64.61020104368548, + 25.820445879536376 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 26.209741349393283 + ], + [ + 64.83988641065284, + 26.209741349393283 + ], + [ + 64.72504372716915, + 26.404389084321735 + ], + [ + 64.61020104368548, + 26.209741349393283 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 26.209741349393283 + ], + [ + 64.72504372716915, + 26.404389084321735 + ], + [ + 64.4953583602018, + 26.404389084321735 + ], + [ + 64.61020104368548, + 26.209741349393283 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 26.209741349393283 + ], + [ + 64.4953583602018, + 26.404389084321735 + ], + [ + 64.38051567671812, + 26.209741349393283 + ], + [ + 64.61020104368548, + 26.209741349393283 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 26.209741349393283 + ], + [ + 64.38051567671812, + 26.209741349393283 + ], + [ + 64.4953583602018, + 26.01509361446483 + ], + [ + 64.61020104368548, + 26.209741349393283 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 26.209741349393283 + ], + [ + 64.4953583602018, + 26.01509361446483 + ], + [ + 64.72504372716915, + 26.01509361446483 + ], + [ + 64.61020104368548, + 26.209741349393283 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 26.209741349393283 + ], + [ + 64.72504372716915, + 26.01509361446483 + ], + [ + 64.83988641065284, + 26.209741349393283 + ], + [ + 64.61020104368548, + 26.209741349393283 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 26.599036819250188 + ], + [ + 64.83988641065284, + 26.599036819250188 + ], + [ + 64.72504372716915, + 26.79368455417864 + ], + [ + 64.61020104368548, + 26.599036819250188 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 26.599036819250188 + ], + [ + 64.72504372716915, + 26.79368455417864 + ], + [ + 64.4953583602018, + 26.79368455417864 + ], + [ + 64.61020104368548, + 26.599036819250188 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 26.599036819250188 + ], + [ + 64.4953583602018, + 26.79368455417864 + ], + [ + 64.38051567671812, + 26.599036819250188 + ], + [ + 64.61020104368548, + 26.599036819250188 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 26.599036819250188 + ], + [ + 64.38051567671812, + 26.599036819250188 + ], + [ + 64.4953583602018, + 26.404389084321735 + ], + [ + 64.61020104368548, + 26.599036819250188 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 26.599036819250188 + ], + [ + 64.4953583602018, + 26.404389084321735 + ], + [ + 64.72504372716915, + 26.404389084321735 + ], + [ + 64.61020104368548, + 26.599036819250188 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 26.599036819250188 + ], + [ + 64.72504372716915, + 26.404389084321735 + ], + [ + 64.83988641065284, + 26.599036819250188 + ], + [ + 64.61020104368548, + 26.599036819250188 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 26.988332289107095 + ], + [ + 64.83988641065284, + 26.988332289107095 + ], + [ + 64.72504372716915, + 27.182980024035547 + ], + [ + 64.61020104368548, + 26.988332289107095 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 26.988332289107095 + ], + [ + 64.72504372716915, + 27.182980024035547 + ], + [ + 64.4953583602018, + 27.182980024035547 + ], + [ + 64.61020104368548, + 26.988332289107095 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 26.988332289107095 + ], + [ + 64.4953583602018, + 27.182980024035547 + ], + [ + 64.38051567671812, + 26.988332289107095 + ], + [ + 64.61020104368548, + 26.988332289107095 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 26.988332289107095 + ], + [ + 64.38051567671812, + 26.988332289107095 + ], + [ + 64.4953583602018, + 26.793684554178643 + ], + [ + 64.61020104368548, + 26.988332289107095 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 26.988332289107095 + ], + [ + 64.4953583602018, + 26.793684554178643 + ], + [ + 64.72504372716915, + 26.793684554178643 + ], + [ + 64.61020104368548, + 26.988332289107095 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 26.988332289107095 + ], + [ + 64.72504372716915, + 26.793684554178643 + ], + [ + 64.83988641065284, + 26.988332289107095 + ], + [ + 64.61020104368548, + 26.988332289107095 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 27.377627758964003 + ], + [ + 64.83988641065284, + 27.377627758964003 + ], + [ + 64.72504372716915, + 27.572275493892455 + ], + [ + 64.61020104368548, + 27.377627758964003 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 27.377627758964003 + ], + [ + 64.72504372716915, + 27.572275493892455 + ], + [ + 64.4953583602018, + 27.572275493892455 + ], + [ + 64.61020104368548, + 27.377627758964003 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 27.377627758964003 + ], + [ + 64.4953583602018, + 27.572275493892455 + ], + [ + 64.38051567671812, + 27.377627758964003 + ], + [ + 64.61020104368548, + 27.377627758964003 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 27.377627758964003 + ], + [ + 64.38051567671812, + 27.377627758964003 + ], + [ + 64.4953583602018, + 27.18298002403555 + ], + [ + 64.61020104368548, + 27.377627758964003 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 27.377627758964003 + ], + [ + 64.4953583602018, + 27.18298002403555 + ], + [ + 64.72504372716915, + 27.18298002403555 + ], + [ + 64.61020104368548, + 27.377627758964003 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 27.377627758964003 + ], + [ + 64.72504372716915, + 27.18298002403555 + ], + [ + 64.83988641065284, + 27.377627758964003 + ], + [ + 64.61020104368548, + 27.377627758964003 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 27.766923228820907 + ], + [ + 64.83988641065284, + 27.766923228820907 + ], + [ + 64.72504372716915, + 27.96157096374936 + ], + [ + 64.61020104368548, + 27.766923228820907 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 27.766923228820907 + ], + [ + 64.72504372716915, + 27.96157096374936 + ], + [ + 64.4953583602018, + 27.96157096374936 + ], + [ + 64.61020104368548, + 27.766923228820907 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 27.766923228820907 + ], + [ + 64.4953583602018, + 27.96157096374936 + ], + [ + 64.38051567671812, + 27.766923228820907 + ], + [ + 64.61020104368548, + 27.766923228820907 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 27.766923228820907 + ], + [ + 64.38051567671812, + 27.766923228820907 + ], + [ + 64.4953583602018, + 27.572275493892455 + ], + [ + 64.61020104368548, + 27.766923228820907 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 27.766923228820907 + ], + [ + 64.4953583602018, + 27.572275493892455 + ], + [ + 64.72504372716915, + 27.572275493892455 + ], + [ + 64.61020104368548, + 27.766923228820907 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 27.766923228820907 + ], + [ + 64.72504372716915, + 27.572275493892455 + ], + [ + 64.83988641065284, + 27.766923228820907 + ], + [ + 64.61020104368548, + 27.766923228820907 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 28.156218698677815 + ], + [ + 64.83988641065284, + 28.156218698677815 + ], + [ + 64.72504372716915, + 28.350866433606267 + ], + [ + 64.61020104368548, + 28.156218698677815 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 28.156218698677815 + ], + [ + 64.72504372716915, + 28.350866433606267 + ], + [ + 64.4953583602018, + 28.350866433606267 + ], + [ + 64.61020104368548, + 28.156218698677815 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 28.156218698677815 + ], + [ + 64.4953583602018, + 28.350866433606267 + ], + [ + 64.38051567671812, + 28.156218698677815 + ], + [ + 64.61020104368548, + 28.156218698677815 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 28.156218698677815 + ], + [ + 64.38051567671812, + 28.156218698677815 + ], + [ + 64.4953583602018, + 27.961570963749363 + ], + [ + 64.61020104368548, + 28.156218698677815 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 28.156218698677815 + ], + [ + 64.4953583602018, + 27.961570963749363 + ], + [ + 64.72504372716915, + 27.961570963749363 + ], + [ + 64.61020104368548, + 28.156218698677815 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 28.156218698677815 + ], + [ + 64.72504372716915, + 27.961570963749363 + ], + [ + 64.83988641065284, + 28.156218698677815 + ], + [ + 64.61020104368548, + 28.156218698677815 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 28.54551416853472 + ], + [ + 64.83988641065284, + 28.54551416853472 + ], + [ + 64.72504372716915, + 28.74016190346317 + ], + [ + 64.61020104368548, + 28.54551416853472 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 28.54551416853472 + ], + [ + 64.72504372716915, + 28.74016190346317 + ], + [ + 64.4953583602018, + 28.74016190346317 + ], + [ + 64.61020104368548, + 28.54551416853472 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 28.54551416853472 + ], + [ + 64.4953583602018, + 28.74016190346317 + ], + [ + 64.38051567671812, + 28.54551416853472 + ], + [ + 64.61020104368548, + 28.54551416853472 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 28.54551416853472 + ], + [ + 64.38051567671812, + 28.54551416853472 + ], + [ + 64.4953583602018, + 28.350866433606267 + ], + [ + 64.61020104368548, + 28.54551416853472 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 28.54551416853472 + ], + [ + 64.4953583602018, + 28.350866433606267 + ], + [ + 64.72504372716915, + 28.350866433606267 + ], + [ + 64.61020104368548, + 28.54551416853472 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 28.54551416853472 + ], + [ + 64.72504372716915, + 28.350866433606267 + ], + [ + 64.83988641065284, + 28.54551416853472 + ], + [ + 64.61020104368548, + 28.54551416853472 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 28.934809638391627 + ], + [ + 64.83988641065284, + 28.934809638391627 + ], + [ + 64.72504372716915, + 29.12945737332008 + ], + [ + 64.61020104368548, + 28.934809638391627 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 28.934809638391627 + ], + [ + 64.72504372716915, + 29.12945737332008 + ], + [ + 64.4953583602018, + 29.12945737332008 + ], + [ + 64.61020104368548, + 28.934809638391627 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 28.934809638391627 + ], + [ + 64.4953583602018, + 29.12945737332008 + ], + [ + 64.38051567671812, + 28.934809638391627 + ], + [ + 64.61020104368548, + 28.934809638391627 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 28.934809638391627 + ], + [ + 64.38051567671812, + 28.934809638391627 + ], + [ + 64.4953583602018, + 28.740161903463175 + ], + [ + 64.61020104368548, + 28.934809638391627 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 28.934809638391627 + ], + [ + 64.4953583602018, + 28.740161903463175 + ], + [ + 64.72504372716915, + 28.740161903463175 + ], + [ + 64.61020104368548, + 28.934809638391627 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 28.934809638391627 + ], + [ + 64.72504372716915, + 28.740161903463175 + ], + [ + 64.83988641065284, + 28.934809638391627 + ], + [ + 64.61020104368548, + 28.934809638391627 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 29.32410510824853 + ], + [ + 64.83988641065284, + 29.32410510824853 + ], + [ + 64.72504372716915, + 29.518752843176983 + ], + [ + 64.61020104368548, + 29.32410510824853 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 29.32410510824853 + ], + [ + 64.72504372716915, + 29.518752843176983 + ], + [ + 64.4953583602018, + 29.518752843176983 + ], + [ + 64.61020104368548, + 29.32410510824853 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 29.32410510824853 + ], + [ + 64.4953583602018, + 29.518752843176983 + ], + [ + 64.38051567671812, + 29.32410510824853 + ], + [ + 64.61020104368548, + 29.32410510824853 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 29.32410510824853 + ], + [ + 64.38051567671812, + 29.32410510824853 + ], + [ + 64.4953583602018, + 29.12945737332008 + ], + [ + 64.61020104368548, + 29.32410510824853 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 29.32410510824853 + ], + [ + 64.4953583602018, + 29.12945737332008 + ], + [ + 64.72504372716915, + 29.12945737332008 + ], + [ + 64.61020104368548, + 29.32410510824853 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 29.32410510824853 + ], + [ + 64.72504372716915, + 29.12945737332008 + ], + [ + 64.83988641065284, + 29.32410510824853 + ], + [ + 64.61020104368548, + 29.32410510824853 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 29.71340057810544 + ], + [ + 64.83988641065284, + 29.71340057810544 + ], + [ + 64.72504372716915, + 29.90804831303389 + ], + [ + 64.61020104368548, + 29.71340057810544 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 29.71340057810544 + ], + [ + 64.72504372716915, + 29.90804831303389 + ], + [ + 64.4953583602018, + 29.90804831303389 + ], + [ + 64.61020104368548, + 29.71340057810544 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 29.71340057810544 + ], + [ + 64.4953583602018, + 29.90804831303389 + ], + [ + 64.38051567671812, + 29.71340057810544 + ], + [ + 64.61020104368548, + 29.71340057810544 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 29.71340057810544 + ], + [ + 64.38051567671812, + 29.71340057810544 + ], + [ + 64.4953583602018, + 29.518752843176987 + ], + [ + 64.61020104368548, + 29.71340057810544 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 29.71340057810544 + ], + [ + 64.4953583602018, + 29.518752843176987 + ], + [ + 64.72504372716915, + 29.518752843176987 + ], + [ + 64.61020104368548, + 29.71340057810544 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 29.71340057810544 + ], + [ + 64.72504372716915, + 29.518752843176987 + ], + [ + 64.83988641065284, + 29.71340057810544 + ], + [ + 64.61020104368548, + 29.71340057810544 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 30.102696047962343 + ], + [ + 64.83988641065284, + 30.102696047962343 + ], + [ + 64.72504372716915, + 30.297343782890795 + ], + [ + 64.61020104368548, + 30.102696047962343 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 30.102696047962343 + ], + [ + 64.72504372716915, + 30.297343782890795 + ], + [ + 64.4953583602018, + 30.297343782890795 + ], + [ + 64.61020104368548, + 30.102696047962343 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 30.102696047962343 + ], + [ + 64.4953583602018, + 30.297343782890795 + ], + [ + 64.38051567671812, + 30.102696047962343 + ], + [ + 64.61020104368548, + 30.102696047962343 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 30.102696047962343 + ], + [ + 64.38051567671812, + 30.102696047962343 + ], + [ + 64.4953583602018, + 29.90804831303389 + ], + [ + 64.61020104368548, + 30.102696047962343 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 30.102696047962343 + ], + [ + 64.4953583602018, + 29.90804831303389 + ], + [ + 64.72504372716915, + 29.90804831303389 + ], + [ + 64.61020104368548, + 30.102696047962343 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 30.102696047962343 + ], + [ + 64.72504372716915, + 29.90804831303389 + ], + [ + 64.83988641065284, + 30.102696047962343 + ], + [ + 64.61020104368548, + 30.102696047962343 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 30.49199151781925 + ], + [ + 64.83988641065284, + 30.49199151781925 + ], + [ + 64.72504372716915, + 30.686639252747703 + ], + [ + 64.61020104368548, + 30.49199151781925 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 30.49199151781925 + ], + [ + 64.72504372716915, + 30.686639252747703 + ], + [ + 64.4953583602018, + 30.686639252747703 + ], + [ + 64.61020104368548, + 30.49199151781925 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 30.49199151781925 + ], + [ + 64.4953583602018, + 30.686639252747703 + ], + [ + 64.38051567671812, + 30.49199151781925 + ], + [ + 64.61020104368548, + 30.49199151781925 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 30.49199151781925 + ], + [ + 64.38051567671812, + 30.49199151781925 + ], + [ + 64.4953583602018, + 30.2973437828908 + ], + [ + 64.61020104368548, + 30.49199151781925 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 30.49199151781925 + ], + [ + 64.4953583602018, + 30.2973437828908 + ], + [ + 64.72504372716915, + 30.2973437828908 + ], + [ + 64.61020104368548, + 30.49199151781925 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 30.49199151781925 + ], + [ + 64.72504372716915, + 30.2973437828908 + ], + [ + 64.83988641065284, + 30.49199151781925 + ], + [ + 64.61020104368548, + 30.49199151781925 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 30.88128698767616 + ], + [ + 64.83988641065284, + 30.88128698767616 + ], + [ + 64.72504372716915, + 31.07593472260461 + ], + [ + 64.61020104368548, + 30.88128698767616 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 30.88128698767616 + ], + [ + 64.72504372716915, + 31.07593472260461 + ], + [ + 64.4953583602018, + 31.07593472260461 + ], + [ + 64.61020104368548, + 30.88128698767616 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 30.88128698767616 + ], + [ + 64.4953583602018, + 31.07593472260461 + ], + [ + 64.38051567671812, + 30.88128698767616 + ], + [ + 64.61020104368548, + 30.88128698767616 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 30.88128698767616 + ], + [ + 64.38051567671812, + 30.88128698767616 + ], + [ + 64.4953583602018, + 30.686639252747707 + ], + [ + 64.61020104368548, + 30.88128698767616 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 30.88128698767616 + ], + [ + 64.4953583602018, + 30.686639252747707 + ], + [ + 64.72504372716915, + 30.686639252747707 + ], + [ + 64.61020104368548, + 30.88128698767616 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 30.88128698767616 + ], + [ + 64.72504372716915, + 30.686639252747707 + ], + [ + 64.83988641065284, + 30.88128698767616 + ], + [ + 64.61020104368548, + 30.88128698767616 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 31.270582457533063 + ], + [ + 64.83988641065284, + 31.270582457533063 + ], + [ + 64.72504372716915, + 31.465230192461515 + ], + [ + 64.61020104368548, + 31.270582457533063 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 31.270582457533063 + ], + [ + 64.72504372716915, + 31.465230192461515 + ], + [ + 64.4953583602018, + 31.465230192461515 + ], + [ + 64.61020104368548, + 31.270582457533063 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 31.270582457533063 + ], + [ + 64.4953583602018, + 31.465230192461515 + ], + [ + 64.38051567671812, + 31.270582457533063 + ], + [ + 64.61020104368548, + 31.270582457533063 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 31.270582457533063 + ], + [ + 64.38051567671812, + 31.270582457533063 + ], + [ + 64.4953583602018, + 31.07593472260461 + ], + [ + 64.61020104368548, + 31.270582457533063 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 31.270582457533063 + ], + [ + 64.4953583602018, + 31.07593472260461 + ], + [ + 64.72504372716915, + 31.07593472260461 + ], + [ + 64.61020104368548, + 31.270582457533063 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 31.270582457533063 + ], + [ + 64.72504372716915, + 31.07593472260461 + ], + [ + 64.83988641065284, + 31.270582457533063 + ], + [ + 64.61020104368548, + 31.270582457533063 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 31.65987792738997 + ], + [ + 64.83988641065284, + 31.65987792738997 + ], + [ + 64.72504372716915, + 31.854525662318423 + ], + [ + 64.61020104368548, + 31.65987792738997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 31.65987792738997 + ], + [ + 64.72504372716915, + 31.854525662318423 + ], + [ + 64.4953583602018, + 31.854525662318423 + ], + [ + 64.61020104368548, + 31.65987792738997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 31.65987792738997 + ], + [ + 64.4953583602018, + 31.854525662318423 + ], + [ + 64.38051567671812, + 31.65987792738997 + ], + [ + 64.61020104368548, + 31.65987792738997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 31.65987792738997 + ], + [ + 64.38051567671812, + 31.65987792738997 + ], + [ + 64.4953583602018, + 31.46523019246152 + ], + [ + 64.61020104368548, + 31.65987792738997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 31.65987792738997 + ], + [ + 64.4953583602018, + 31.46523019246152 + ], + [ + 64.72504372716915, + 31.46523019246152 + ], + [ + 64.61020104368548, + 31.65987792738997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 31.65987792738997 + ], + [ + 64.72504372716915, + 31.46523019246152 + ], + [ + 64.83988641065284, + 31.65987792738997 + ], + [ + 64.61020104368548, + 31.65987792738997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 32.049173397246875 + ], + [ + 64.83988641065284, + 32.049173397246875 + ], + [ + 64.72504372716915, + 32.24382113217533 + ], + [ + 64.61020104368548, + 32.049173397246875 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 32.049173397246875 + ], + [ + 64.72504372716915, + 32.24382113217533 + ], + [ + 64.4953583602018, + 32.24382113217533 + ], + [ + 64.61020104368548, + 32.049173397246875 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 32.049173397246875 + ], + [ + 64.4953583602018, + 32.24382113217533 + ], + [ + 64.38051567671812, + 32.049173397246875 + ], + [ + 64.61020104368548, + 32.049173397246875 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 32.049173397246875 + ], + [ + 64.38051567671812, + 32.049173397246875 + ], + [ + 64.4953583602018, + 31.854525662318423 + ], + [ + 64.61020104368548, + 32.049173397246875 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 32.049173397246875 + ], + [ + 64.4953583602018, + 31.854525662318423 + ], + [ + 64.72504372716915, + 31.854525662318423 + ], + [ + 64.61020104368548, + 32.049173397246875 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 32.049173397246875 + ], + [ + 64.72504372716915, + 31.854525662318423 + ], + [ + 64.83988641065284, + 32.049173397246875 + ], + [ + 64.61020104368548, + 32.049173397246875 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 32.438468867103786 + ], + [ + 64.83988641065284, + 32.438468867103786 + ], + [ + 64.72504372716915, + 32.63311660203224 + ], + [ + 64.61020104368548, + 32.438468867103786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 32.438468867103786 + ], + [ + 64.72504372716915, + 32.63311660203224 + ], + [ + 64.4953583602018, + 32.63311660203224 + ], + [ + 64.61020104368548, + 32.438468867103786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 32.438468867103786 + ], + [ + 64.4953583602018, + 32.63311660203224 + ], + [ + 64.38051567671812, + 32.438468867103786 + ], + [ + 64.61020104368548, + 32.438468867103786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 32.438468867103786 + ], + [ + 64.38051567671812, + 32.438468867103786 + ], + [ + 64.4953583602018, + 32.243821132175334 + ], + [ + 64.61020104368548, + 32.438468867103786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 32.438468867103786 + ], + [ + 64.4953583602018, + 32.243821132175334 + ], + [ + 64.72504372716915, + 32.243821132175334 + ], + [ + 64.61020104368548, + 32.438468867103786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 32.438468867103786 + ], + [ + 64.72504372716915, + 32.243821132175334 + ], + [ + 64.83988641065284, + 32.438468867103786 + ], + [ + 64.61020104368548, + 32.438468867103786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 32.82776433696069 + ], + [ + 64.83988641065284, + 32.82776433696069 + ], + [ + 64.72504372716915, + 33.02241207188914 + ], + [ + 64.61020104368548, + 32.82776433696069 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 32.82776433696069 + ], + [ + 64.72504372716915, + 33.02241207188914 + ], + [ + 64.4953583602018, + 33.02241207188914 + ], + [ + 64.61020104368548, + 32.82776433696069 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 32.82776433696069 + ], + [ + 64.4953583602018, + 33.02241207188914 + ], + [ + 64.38051567671812, + 32.82776433696069 + ], + [ + 64.61020104368548, + 32.82776433696069 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 32.82776433696069 + ], + [ + 64.38051567671812, + 32.82776433696069 + ], + [ + 64.4953583602018, + 32.63311660203224 + ], + [ + 64.61020104368548, + 32.82776433696069 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 32.82776433696069 + ], + [ + 64.4953583602018, + 32.63311660203224 + ], + [ + 64.72504372716915, + 32.63311660203224 + ], + [ + 64.61020104368548, + 32.82776433696069 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 32.82776433696069 + ], + [ + 64.72504372716915, + 32.63311660203224 + ], + [ + 64.83988641065284, + 32.82776433696069 + ], + [ + 64.61020104368548, + 32.82776433696069 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 33.217059806817595 + ], + [ + 64.83988641065284, + 33.217059806817595 + ], + [ + 64.72504372716915, + 33.41170754174605 + ], + [ + 64.61020104368548, + 33.217059806817595 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 33.217059806817595 + ], + [ + 64.72504372716915, + 33.41170754174605 + ], + [ + 64.4953583602018, + 33.41170754174605 + ], + [ + 64.61020104368548, + 33.217059806817595 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 33.217059806817595 + ], + [ + 64.4953583602018, + 33.41170754174605 + ], + [ + 64.38051567671812, + 33.217059806817595 + ], + [ + 64.61020104368548, + 33.217059806817595 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 33.217059806817595 + ], + [ + 64.38051567671812, + 33.217059806817595 + ], + [ + 64.4953583602018, + 33.02241207188914 + ], + [ + 64.61020104368548, + 33.217059806817595 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 33.217059806817595 + ], + [ + 64.4953583602018, + 33.02241207188914 + ], + [ + 64.72504372716915, + 33.02241207188914 + ], + [ + 64.61020104368548, + 33.217059806817595 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 33.217059806817595 + ], + [ + 64.72504372716915, + 33.02241207188914 + ], + [ + 64.83988641065284, + 33.217059806817595 + ], + [ + 64.61020104368548, + 33.217059806817595 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 33.6063552766745 + ], + [ + 64.83988641065284, + 33.6063552766745 + ], + [ + 64.72504372716915, + 33.80100301160295 + ], + [ + 64.61020104368548, + 33.6063552766745 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 33.6063552766745 + ], + [ + 64.72504372716915, + 33.80100301160295 + ], + [ + 64.4953583602018, + 33.80100301160295 + ], + [ + 64.61020104368548, + 33.6063552766745 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 33.6063552766745 + ], + [ + 64.4953583602018, + 33.80100301160295 + ], + [ + 64.38051567671812, + 33.6063552766745 + ], + [ + 64.61020104368548, + 33.6063552766745 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 33.6063552766745 + ], + [ + 64.38051567671812, + 33.6063552766745 + ], + [ + 64.4953583602018, + 33.41170754174605 + ], + [ + 64.61020104368548, + 33.6063552766745 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 33.6063552766745 + ], + [ + 64.4953583602018, + 33.41170754174605 + ], + [ + 64.72504372716915, + 33.41170754174605 + ], + [ + 64.61020104368548, + 33.6063552766745 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 33.6063552766745 + ], + [ + 64.72504372716915, + 33.41170754174605 + ], + [ + 64.83988641065284, + 33.6063552766745 + ], + [ + 64.61020104368548, + 33.6063552766745 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 33.9956507465314 + ], + [ + 64.83988641065284, + 33.9956507465314 + ], + [ + 64.72504372716915, + 34.190298481459855 + ], + [ + 64.61020104368548, + 33.9956507465314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 33.9956507465314 + ], + [ + 64.72504372716915, + 34.190298481459855 + ], + [ + 64.4953583602018, + 34.190298481459855 + ], + [ + 64.61020104368548, + 33.9956507465314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 33.9956507465314 + ], + [ + 64.4953583602018, + 34.190298481459855 + ], + [ + 64.38051567671812, + 33.9956507465314 + ], + [ + 64.61020104368548, + 33.9956507465314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 33.9956507465314 + ], + [ + 64.38051567671812, + 33.9956507465314 + ], + [ + 64.4953583602018, + 33.80100301160295 + ], + [ + 64.61020104368548, + 33.9956507465314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 33.9956507465314 + ], + [ + 64.4953583602018, + 33.80100301160295 + ], + [ + 64.72504372716915, + 33.80100301160295 + ], + [ + 64.61020104368548, + 33.9956507465314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 33.9956507465314 + ], + [ + 64.72504372716915, + 33.80100301160295 + ], + [ + 64.83988641065284, + 33.9956507465314 + ], + [ + 64.61020104368548, + 33.9956507465314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 34.384946216388315 + ], + [ + 64.83988641065284, + 34.384946216388315 + ], + [ + 64.72504372716915, + 34.57959395131677 + ], + [ + 64.61020104368548, + 34.384946216388315 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 34.384946216388315 + ], + [ + 64.72504372716915, + 34.57959395131677 + ], + [ + 64.4953583602018, + 34.57959395131677 + ], + [ + 64.61020104368548, + 34.384946216388315 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 34.384946216388315 + ], + [ + 64.4953583602018, + 34.57959395131677 + ], + [ + 64.38051567671812, + 34.384946216388315 + ], + [ + 64.61020104368548, + 34.384946216388315 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 34.384946216388315 + ], + [ + 64.38051567671812, + 34.384946216388315 + ], + [ + 64.4953583602018, + 34.19029848145986 + ], + [ + 64.61020104368548, + 34.384946216388315 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 34.384946216388315 + ], + [ + 64.4953583602018, + 34.19029848145986 + ], + [ + 64.72504372716915, + 34.19029848145986 + ], + [ + 64.61020104368548, + 34.384946216388315 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 34.384946216388315 + ], + [ + 64.72504372716915, + 34.19029848145986 + ], + [ + 64.83988641065284, + 34.384946216388315 + ], + [ + 64.61020104368548, + 34.384946216388315 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 34.774241686245226 + ], + [ + 64.83988641065284, + 34.774241686245226 + ], + [ + 64.72504372716915, + 34.96888942117368 + ], + [ + 64.61020104368548, + 34.774241686245226 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 34.774241686245226 + ], + [ + 64.72504372716915, + 34.96888942117368 + ], + [ + 64.4953583602018, + 34.96888942117368 + ], + [ + 64.61020104368548, + 34.774241686245226 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 34.774241686245226 + ], + [ + 64.4953583602018, + 34.96888942117368 + ], + [ + 64.38051567671812, + 34.774241686245226 + ], + [ + 64.61020104368548, + 34.774241686245226 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 34.774241686245226 + ], + [ + 64.38051567671812, + 34.774241686245226 + ], + [ + 64.4953583602018, + 34.579593951316774 + ], + [ + 64.61020104368548, + 34.774241686245226 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 34.774241686245226 + ], + [ + 64.4953583602018, + 34.579593951316774 + ], + [ + 64.72504372716915, + 34.579593951316774 + ], + [ + 64.61020104368548, + 34.774241686245226 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 34.774241686245226 + ], + [ + 64.72504372716915, + 34.579593951316774 + ], + [ + 64.83988641065284, + 34.774241686245226 + ], + [ + 64.61020104368548, + 34.774241686245226 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 35.16353715610213 + ], + [ + 64.83988641065284, + 35.16353715610213 + ], + [ + 64.72504372716915, + 35.35818489103058 + ], + [ + 64.61020104368548, + 35.16353715610213 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 35.16353715610213 + ], + [ + 64.72504372716915, + 35.35818489103058 + ], + [ + 64.4953583602018, + 35.35818489103058 + ], + [ + 64.61020104368548, + 35.16353715610213 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 35.16353715610213 + ], + [ + 64.4953583602018, + 35.35818489103058 + ], + [ + 64.38051567671812, + 35.16353715610213 + ], + [ + 64.61020104368548, + 35.16353715610213 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 35.16353715610213 + ], + [ + 64.38051567671812, + 35.16353715610213 + ], + [ + 64.4953583602018, + 34.96888942117368 + ], + [ + 64.61020104368548, + 35.16353715610213 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 35.16353715610213 + ], + [ + 64.4953583602018, + 34.96888942117368 + ], + [ + 64.72504372716915, + 34.96888942117368 + ], + [ + 64.61020104368548, + 35.16353715610213 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 35.16353715610213 + ], + [ + 64.72504372716915, + 34.96888942117368 + ], + [ + 64.83988641065284, + 35.16353715610213 + ], + [ + 64.61020104368548, + 35.16353715610213 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 35.552832625959034 + ], + [ + 64.83988641065284, + 35.552832625959034 + ], + [ + 64.72504372716915, + 35.74748036088749 + ], + [ + 64.61020104368548, + 35.552832625959034 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 35.552832625959034 + ], + [ + 64.72504372716915, + 35.74748036088749 + ], + [ + 64.4953583602018, + 35.74748036088749 + ], + [ + 64.61020104368548, + 35.552832625959034 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 35.552832625959034 + ], + [ + 64.4953583602018, + 35.74748036088749 + ], + [ + 64.38051567671812, + 35.552832625959034 + ], + [ + 64.61020104368548, + 35.552832625959034 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 35.552832625959034 + ], + [ + 64.38051567671812, + 35.552832625959034 + ], + [ + 64.4953583602018, + 35.35818489103058 + ], + [ + 64.61020104368548, + 35.552832625959034 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 35.552832625959034 + ], + [ + 64.4953583602018, + 35.35818489103058 + ], + [ + 64.72504372716915, + 35.35818489103058 + ], + [ + 64.61020104368548, + 35.552832625959034 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 35.552832625959034 + ], + [ + 64.72504372716915, + 35.35818489103058 + ], + [ + 64.83988641065284, + 35.552832625959034 + ], + [ + 64.61020104368548, + 35.552832625959034 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 35.94212809581594 + ], + [ + 64.83988641065284, + 35.94212809581594 + ], + [ + 64.72504372716915, + 36.13677583074439 + ], + [ + 64.61020104368548, + 35.94212809581594 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 35.94212809581594 + ], + [ + 64.72504372716915, + 36.13677583074439 + ], + [ + 64.4953583602018, + 36.13677583074439 + ], + [ + 64.61020104368548, + 35.94212809581594 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 35.94212809581594 + ], + [ + 64.4953583602018, + 36.13677583074439 + ], + [ + 64.38051567671812, + 35.94212809581594 + ], + [ + 64.61020104368548, + 35.94212809581594 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 35.94212809581594 + ], + [ + 64.38051567671812, + 35.94212809581594 + ], + [ + 64.4953583602018, + 35.74748036088749 + ], + [ + 64.61020104368548, + 35.94212809581594 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 35.94212809581594 + ], + [ + 64.4953583602018, + 35.74748036088749 + ], + [ + 64.72504372716915, + 35.74748036088749 + ], + [ + 64.61020104368548, + 35.94212809581594 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 35.94212809581594 + ], + [ + 64.72504372716915, + 35.74748036088749 + ], + [ + 64.83988641065284, + 35.94212809581594 + ], + [ + 64.61020104368548, + 35.94212809581594 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 36.33142356567284 + ], + [ + 64.83988641065284, + 36.33142356567284 + ], + [ + 64.72504372716915, + 36.526071300601295 + ], + [ + 64.61020104368548, + 36.33142356567284 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 36.33142356567284 + ], + [ + 64.72504372716915, + 36.526071300601295 + ], + [ + 64.4953583602018, + 36.526071300601295 + ], + [ + 64.61020104368548, + 36.33142356567284 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 36.33142356567284 + ], + [ + 64.4953583602018, + 36.526071300601295 + ], + [ + 64.38051567671812, + 36.33142356567284 + ], + [ + 64.61020104368548, + 36.33142356567284 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 36.33142356567284 + ], + [ + 64.38051567671812, + 36.33142356567284 + ], + [ + 64.4953583602018, + 36.13677583074439 + ], + [ + 64.61020104368548, + 36.33142356567284 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 36.33142356567284 + ], + [ + 64.4953583602018, + 36.13677583074439 + ], + [ + 64.72504372716915, + 36.13677583074439 + ], + [ + 64.61020104368548, + 36.33142356567284 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 36.33142356567284 + ], + [ + 64.72504372716915, + 36.13677583074439 + ], + [ + 64.83988641065284, + 36.33142356567284 + ], + [ + 64.61020104368548, + 36.33142356567284 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 36.720719035529754 + ], + [ + 64.83988641065284, + 36.720719035529754 + ], + [ + 64.72504372716915, + 36.915366770458206 + ], + [ + 64.61020104368548, + 36.720719035529754 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 36.720719035529754 + ], + [ + 64.72504372716915, + 36.915366770458206 + ], + [ + 64.4953583602018, + 36.915366770458206 + ], + [ + 64.61020104368548, + 36.720719035529754 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 36.720719035529754 + ], + [ + 64.4953583602018, + 36.915366770458206 + ], + [ + 64.38051567671812, + 36.720719035529754 + ], + [ + 64.61020104368548, + 36.720719035529754 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 36.720719035529754 + ], + [ + 64.38051567671812, + 36.720719035529754 + ], + [ + 64.4953583602018, + 36.5260713006013 + ], + [ + 64.61020104368548, + 36.720719035529754 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 36.720719035529754 + ], + [ + 64.4953583602018, + 36.5260713006013 + ], + [ + 64.72504372716915, + 36.5260713006013 + ], + [ + 64.61020104368548, + 36.720719035529754 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 36.720719035529754 + ], + [ + 64.72504372716915, + 36.5260713006013 + ], + [ + 64.83988641065284, + 36.720719035529754 + ], + [ + 64.61020104368548, + 36.720719035529754 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 37.11001450538666 + ], + [ + 64.83988641065284, + 37.11001450538666 + ], + [ + 64.72504372716915, + 37.30466224031511 + ], + [ + 64.61020104368548, + 37.11001450538666 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 37.11001450538666 + ], + [ + 64.72504372716915, + 37.30466224031511 + ], + [ + 64.4953583602018, + 37.30466224031511 + ], + [ + 64.61020104368548, + 37.11001450538666 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 37.11001450538666 + ], + [ + 64.4953583602018, + 37.30466224031511 + ], + [ + 64.38051567671812, + 37.11001450538666 + ], + [ + 64.61020104368548, + 37.11001450538666 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 37.11001450538666 + ], + [ + 64.38051567671812, + 37.11001450538666 + ], + [ + 64.4953583602018, + 36.915366770458206 + ], + [ + 64.61020104368548, + 37.11001450538666 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 37.11001450538666 + ], + [ + 64.4953583602018, + 36.915366770458206 + ], + [ + 64.72504372716915, + 36.915366770458206 + ], + [ + 64.61020104368548, + 37.11001450538666 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 37.11001450538666 + ], + [ + 64.72504372716915, + 36.915366770458206 + ], + [ + 64.83988641065284, + 37.11001450538666 + ], + [ + 64.61020104368548, + 37.11001450538666 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 37.49930997524357 + ], + [ + 64.83988641065284, + 37.49930997524357 + ], + [ + 64.72504372716915, + 37.69395771017202 + ], + [ + 64.61020104368548, + 37.49930997524357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 37.49930997524357 + ], + [ + 64.72504372716915, + 37.69395771017202 + ], + [ + 64.4953583602018, + 37.69395771017202 + ], + [ + 64.61020104368548, + 37.49930997524357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 37.49930997524357 + ], + [ + 64.4953583602018, + 37.69395771017202 + ], + [ + 64.38051567671812, + 37.49930997524357 + ], + [ + 64.61020104368548, + 37.49930997524357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 37.49930997524357 + ], + [ + 64.38051567671812, + 37.49930997524357 + ], + [ + 64.4953583602018, + 37.30466224031512 + ], + [ + 64.61020104368548, + 37.49930997524357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 37.49930997524357 + ], + [ + 64.4953583602018, + 37.30466224031512 + ], + [ + 64.72504372716915, + 37.30466224031512 + ], + [ + 64.61020104368548, + 37.49930997524357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 37.49930997524357 + ], + [ + 64.72504372716915, + 37.30466224031512 + ], + [ + 64.83988641065284, + 37.49930997524357 + ], + [ + 64.61020104368548, + 37.49930997524357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 37.888605445100474 + ], + [ + 64.83988641065284, + 37.888605445100474 + ], + [ + 64.72504372716915, + 38.083253180028926 + ], + [ + 64.61020104368548, + 37.888605445100474 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 37.888605445100474 + ], + [ + 64.72504372716915, + 38.083253180028926 + ], + [ + 64.4953583602018, + 38.083253180028926 + ], + [ + 64.61020104368548, + 37.888605445100474 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 37.888605445100474 + ], + [ + 64.4953583602018, + 38.083253180028926 + ], + [ + 64.38051567671812, + 37.888605445100474 + ], + [ + 64.61020104368548, + 37.888605445100474 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 37.888605445100474 + ], + [ + 64.38051567671812, + 37.888605445100474 + ], + [ + 64.4953583602018, + 37.69395771017202 + ], + [ + 64.61020104368548, + 37.888605445100474 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 37.888605445100474 + ], + [ + 64.4953583602018, + 37.69395771017202 + ], + [ + 64.72504372716915, + 37.69395771017202 + ], + [ + 64.61020104368548, + 37.888605445100474 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 37.888605445100474 + ], + [ + 64.72504372716915, + 37.69395771017202 + ], + [ + 64.83988641065284, + 37.888605445100474 + ], + [ + 64.61020104368548, + 37.888605445100474 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 38.27790091495738 + ], + [ + 64.83988641065284, + 38.27790091495738 + ], + [ + 64.72504372716915, + 38.47254864988583 + ], + [ + 64.61020104368548, + 38.27790091495738 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 38.27790091495738 + ], + [ + 64.72504372716915, + 38.47254864988583 + ], + [ + 64.4953583602018, + 38.47254864988583 + ], + [ + 64.61020104368548, + 38.27790091495738 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 38.27790091495738 + ], + [ + 64.4953583602018, + 38.47254864988583 + ], + [ + 64.38051567671812, + 38.27790091495738 + ], + [ + 64.61020104368548, + 38.27790091495738 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 38.27790091495738 + ], + [ + 64.38051567671812, + 38.27790091495738 + ], + [ + 64.4953583602018, + 38.083253180028926 + ], + [ + 64.61020104368548, + 38.27790091495738 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 38.27790091495738 + ], + [ + 64.4953583602018, + 38.083253180028926 + ], + [ + 64.72504372716915, + 38.083253180028926 + ], + [ + 64.61020104368548, + 38.27790091495738 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 38.27790091495738 + ], + [ + 64.72504372716915, + 38.083253180028926 + ], + [ + 64.83988641065284, + 38.27790091495738 + ], + [ + 64.61020104368548, + 38.27790091495738 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 38.66719638481428 + ], + [ + 64.83988641065284, + 38.66719638481428 + ], + [ + 64.72504372716915, + 38.861844119742734 + ], + [ + 64.61020104368548, + 38.66719638481428 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 38.66719638481428 + ], + [ + 64.72504372716915, + 38.861844119742734 + ], + [ + 64.4953583602018, + 38.861844119742734 + ], + [ + 64.61020104368548, + 38.66719638481428 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 38.66719638481428 + ], + [ + 64.4953583602018, + 38.861844119742734 + ], + [ + 64.38051567671812, + 38.66719638481428 + ], + [ + 64.61020104368548, + 38.66719638481428 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 38.66719638481428 + ], + [ + 64.38051567671812, + 38.66719638481428 + ], + [ + 64.4953583602018, + 38.47254864988583 + ], + [ + 64.61020104368548, + 38.66719638481428 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 38.66719638481428 + ], + [ + 64.4953583602018, + 38.47254864988583 + ], + [ + 64.72504372716915, + 38.47254864988583 + ], + [ + 64.61020104368548, + 38.66719638481428 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 38.66719638481428 + ], + [ + 64.72504372716915, + 38.47254864988583 + ], + [ + 64.83988641065284, + 38.66719638481428 + ], + [ + 64.61020104368548, + 38.66719638481428 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 39.05649185467119 + ], + [ + 64.83988641065284, + 39.05649185467119 + ], + [ + 64.72504372716915, + 39.25113958959964 + ], + [ + 64.61020104368548, + 39.05649185467119 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 39.05649185467119 + ], + [ + 64.72504372716915, + 39.25113958959964 + ], + [ + 64.4953583602018, + 39.25113958959964 + ], + [ + 64.61020104368548, + 39.05649185467119 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 39.05649185467119 + ], + [ + 64.4953583602018, + 39.25113958959964 + ], + [ + 64.38051567671812, + 39.05649185467119 + ], + [ + 64.61020104368548, + 39.05649185467119 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 39.05649185467119 + ], + [ + 64.38051567671812, + 39.05649185467119 + ], + [ + 64.4953583602018, + 38.861844119742734 + ], + [ + 64.61020104368548, + 39.05649185467119 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 39.05649185467119 + ], + [ + 64.4953583602018, + 38.861844119742734 + ], + [ + 64.72504372716915, + 38.861844119742734 + ], + [ + 64.61020104368548, + 39.05649185467119 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 39.05649185467119 + ], + [ + 64.72504372716915, + 38.861844119742734 + ], + [ + 64.83988641065284, + 39.05649185467119 + ], + [ + 64.61020104368548, + 39.05649185467119 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 39.4457873245281 + ], + [ + 64.83988641065284, + 39.4457873245281 + ], + [ + 64.72504372716915, + 39.64043505945655 + ], + [ + 64.61020104368548, + 39.4457873245281 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 39.4457873245281 + ], + [ + 64.72504372716915, + 39.64043505945655 + ], + [ + 64.4953583602018, + 39.64043505945655 + ], + [ + 64.61020104368548, + 39.4457873245281 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 39.4457873245281 + ], + [ + 64.4953583602018, + 39.64043505945655 + ], + [ + 64.38051567671812, + 39.4457873245281 + ], + [ + 64.61020104368548, + 39.4457873245281 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 39.4457873245281 + ], + [ + 64.38051567671812, + 39.4457873245281 + ], + [ + 64.4953583602018, + 39.251139589599646 + ], + [ + 64.61020104368548, + 39.4457873245281 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 39.4457873245281 + ], + [ + 64.4953583602018, + 39.251139589599646 + ], + [ + 64.72504372716915, + 39.251139589599646 + ], + [ + 64.61020104368548, + 39.4457873245281 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 39.4457873245281 + ], + [ + 64.72504372716915, + 39.251139589599646 + ], + [ + 64.83988641065284, + 39.4457873245281 + ], + [ + 64.61020104368548, + 39.4457873245281 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 39.835082794385 + ], + [ + 64.83988641065284, + 39.835082794385 + ], + [ + 64.72504372716915, + 40.029730529313454 + ], + [ + 64.61020104368548, + 39.835082794385 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 39.835082794385 + ], + [ + 64.72504372716915, + 40.029730529313454 + ], + [ + 64.4953583602018, + 40.029730529313454 + ], + [ + 64.61020104368548, + 39.835082794385 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 39.835082794385 + ], + [ + 64.4953583602018, + 40.029730529313454 + ], + [ + 64.38051567671812, + 39.835082794385 + ], + [ + 64.61020104368548, + 39.835082794385 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 39.835082794385 + ], + [ + 64.38051567671812, + 39.835082794385 + ], + [ + 64.4953583602018, + 39.64043505945655 + ], + [ + 64.61020104368548, + 39.835082794385 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 39.835082794385 + ], + [ + 64.4953583602018, + 39.64043505945655 + ], + [ + 64.72504372716915, + 39.64043505945655 + ], + [ + 64.61020104368548, + 39.835082794385 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 39.835082794385 + ], + [ + 64.72504372716915, + 39.64043505945655 + ], + [ + 64.83988641065284, + 39.835082794385 + ], + [ + 64.61020104368548, + 39.835082794385 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 40.22437826424191 + ], + [ + 64.83988641065284, + 40.22437826424191 + ], + [ + 64.72504372716915, + 40.419025999170366 + ], + [ + 64.61020104368548, + 40.22437826424191 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 40.22437826424191 + ], + [ + 64.72504372716915, + 40.419025999170366 + ], + [ + 64.4953583602018, + 40.419025999170366 + ], + [ + 64.61020104368548, + 40.22437826424191 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 40.22437826424191 + ], + [ + 64.4953583602018, + 40.419025999170366 + ], + [ + 64.38051567671812, + 40.22437826424191 + ], + [ + 64.61020104368548, + 40.22437826424191 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 40.22437826424191 + ], + [ + 64.38051567671812, + 40.22437826424191 + ], + [ + 64.4953583602018, + 40.02973052931346 + ], + [ + 64.61020104368548, + 40.22437826424191 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 40.22437826424191 + ], + [ + 64.4953583602018, + 40.02973052931346 + ], + [ + 64.72504372716915, + 40.02973052931346 + ], + [ + 64.61020104368548, + 40.22437826424191 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 40.22437826424191 + ], + [ + 64.72504372716915, + 40.02973052931346 + ], + [ + 64.83988641065284, + 40.22437826424191 + ], + [ + 64.61020104368548, + 40.22437826424191 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 40.61367373409882 + ], + [ + 64.83988641065284, + 40.61367373409882 + ], + [ + 64.72504372716915, + 40.80832146902727 + ], + [ + 64.61020104368548, + 40.61367373409882 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 40.61367373409882 + ], + [ + 64.72504372716915, + 40.80832146902727 + ], + [ + 64.4953583602018, + 40.80832146902727 + ], + [ + 64.61020104368548, + 40.61367373409882 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 40.61367373409882 + ], + [ + 64.4953583602018, + 40.80832146902727 + ], + [ + 64.38051567671812, + 40.61367373409882 + ], + [ + 64.61020104368548, + 40.61367373409882 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 40.61367373409882 + ], + [ + 64.38051567671812, + 40.61367373409882 + ], + [ + 64.4953583602018, + 40.419025999170366 + ], + [ + 64.61020104368548, + 40.61367373409882 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 40.61367373409882 + ], + [ + 64.4953583602018, + 40.419025999170366 + ], + [ + 64.72504372716915, + 40.419025999170366 + ], + [ + 64.61020104368548, + 40.61367373409882 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 40.61367373409882 + ], + [ + 64.72504372716915, + 40.419025999170366 + ], + [ + 64.83988641065284, + 40.61367373409882 + ], + [ + 64.61020104368548, + 40.61367373409882 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 41.00296920395572 + ], + [ + 64.83988641065284, + 41.00296920395572 + ], + [ + 64.72504372716915, + 41.197616938884174 + ], + [ + 64.61020104368548, + 41.00296920395572 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 41.00296920395572 + ], + [ + 64.72504372716915, + 41.197616938884174 + ], + [ + 64.4953583602018, + 41.197616938884174 + ], + [ + 64.61020104368548, + 41.00296920395572 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 41.00296920395572 + ], + [ + 64.4953583602018, + 41.197616938884174 + ], + [ + 64.38051567671812, + 41.00296920395572 + ], + [ + 64.61020104368548, + 41.00296920395572 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 41.00296920395572 + ], + [ + 64.38051567671812, + 41.00296920395572 + ], + [ + 64.4953583602018, + 40.80832146902727 + ], + [ + 64.61020104368548, + 41.00296920395572 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 41.00296920395572 + ], + [ + 64.4953583602018, + 40.80832146902727 + ], + [ + 64.72504372716915, + 40.80832146902727 + ], + [ + 64.61020104368548, + 41.00296920395572 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 41.00296920395572 + ], + [ + 64.72504372716915, + 40.80832146902727 + ], + [ + 64.83988641065284, + 41.00296920395572 + ], + [ + 64.61020104368548, + 41.00296920395572 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 41.392264673812626 + ], + [ + 64.83988641065284, + 41.392264673812626 + ], + [ + 64.72504372716915, + 41.58691240874108 + ], + [ + 64.61020104368548, + 41.392264673812626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 41.392264673812626 + ], + [ + 64.72504372716915, + 41.58691240874108 + ], + [ + 64.4953583602018, + 41.58691240874108 + ], + [ + 64.61020104368548, + 41.392264673812626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 41.392264673812626 + ], + [ + 64.4953583602018, + 41.58691240874108 + ], + [ + 64.38051567671812, + 41.392264673812626 + ], + [ + 64.61020104368548, + 41.392264673812626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 41.392264673812626 + ], + [ + 64.38051567671812, + 41.392264673812626 + ], + [ + 64.4953583602018, + 41.197616938884174 + ], + [ + 64.61020104368548, + 41.392264673812626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 41.392264673812626 + ], + [ + 64.4953583602018, + 41.197616938884174 + ], + [ + 64.72504372716915, + 41.197616938884174 + ], + [ + 64.61020104368548, + 41.392264673812626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 41.392264673812626 + ], + [ + 64.72504372716915, + 41.197616938884174 + ], + [ + 64.83988641065284, + 41.392264673812626 + ], + [ + 64.61020104368548, + 41.392264673812626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 41.78156014366953 + ], + [ + 64.83988641065284, + 41.78156014366953 + ], + [ + 64.72504372716915, + 41.97620787859798 + ], + [ + 64.61020104368548, + 41.78156014366953 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 41.78156014366953 + ], + [ + 64.72504372716915, + 41.97620787859798 + ], + [ + 64.4953583602018, + 41.97620787859798 + ], + [ + 64.61020104368548, + 41.78156014366953 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 41.78156014366953 + ], + [ + 64.4953583602018, + 41.97620787859798 + ], + [ + 64.38051567671812, + 41.78156014366953 + ], + [ + 64.61020104368548, + 41.78156014366953 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 41.78156014366953 + ], + [ + 64.38051567671812, + 41.78156014366953 + ], + [ + 64.4953583602018, + 41.58691240874108 + ], + [ + 64.61020104368548, + 41.78156014366953 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 41.78156014366953 + ], + [ + 64.4953583602018, + 41.58691240874108 + ], + [ + 64.72504372716915, + 41.58691240874108 + ], + [ + 64.61020104368548, + 41.78156014366953 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 41.78156014366953 + ], + [ + 64.72504372716915, + 41.58691240874108 + ], + [ + 64.83988641065284, + 41.78156014366953 + ], + [ + 64.61020104368548, + 41.78156014366953 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 42.17085561352644 + ], + [ + 64.83988641065284, + 42.17085561352644 + ], + [ + 64.72504372716915, + 42.365503348454894 + ], + [ + 64.61020104368548, + 42.17085561352644 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 42.17085561352644 + ], + [ + 64.72504372716915, + 42.365503348454894 + ], + [ + 64.4953583602018, + 42.365503348454894 + ], + [ + 64.61020104368548, + 42.17085561352644 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 42.17085561352644 + ], + [ + 64.4953583602018, + 42.365503348454894 + ], + [ + 64.38051567671812, + 42.17085561352644 + ], + [ + 64.61020104368548, + 42.17085561352644 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 42.17085561352644 + ], + [ + 64.38051567671812, + 42.17085561352644 + ], + [ + 64.4953583602018, + 41.97620787859799 + ], + [ + 64.61020104368548, + 42.17085561352644 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 42.17085561352644 + ], + [ + 64.4953583602018, + 41.97620787859799 + ], + [ + 64.72504372716915, + 41.97620787859799 + ], + [ + 64.61020104368548, + 42.17085561352644 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 42.17085561352644 + ], + [ + 64.72504372716915, + 41.97620787859799 + ], + [ + 64.83988641065284, + 42.17085561352644 + ], + [ + 64.61020104368548, + 42.17085561352644 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 42.56015108338335 + ], + [ + 64.83988641065284, + 42.56015108338335 + ], + [ + 64.72504372716915, + 42.754798818311805 + ], + [ + 64.61020104368548, + 42.56015108338335 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 42.56015108338335 + ], + [ + 64.72504372716915, + 42.754798818311805 + ], + [ + 64.4953583602018, + 42.754798818311805 + ], + [ + 64.61020104368548, + 42.56015108338335 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 42.56015108338335 + ], + [ + 64.4953583602018, + 42.754798818311805 + ], + [ + 64.38051567671812, + 42.56015108338335 + ], + [ + 64.61020104368548, + 42.56015108338335 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 42.56015108338335 + ], + [ + 64.38051567671812, + 42.56015108338335 + ], + [ + 64.4953583602018, + 42.3655033484549 + ], + [ + 64.61020104368548, + 42.56015108338335 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 42.56015108338335 + ], + [ + 64.4953583602018, + 42.3655033484549 + ], + [ + 64.72504372716915, + 42.3655033484549 + ], + [ + 64.61020104368548, + 42.56015108338335 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 42.56015108338335 + ], + [ + 64.72504372716915, + 42.3655033484549 + ], + [ + 64.83988641065284, + 42.56015108338335 + ], + [ + 64.61020104368548, + 42.56015108338335 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 42.94944655324026 + ], + [ + 64.83988641065284, + 42.94944655324026 + ], + [ + 64.72504372716915, + 43.14409428816871 + ], + [ + 64.61020104368548, + 42.94944655324026 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 42.94944655324026 + ], + [ + 64.72504372716915, + 43.14409428816871 + ], + [ + 64.4953583602018, + 43.14409428816871 + ], + [ + 64.61020104368548, + 42.94944655324026 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 42.94944655324026 + ], + [ + 64.4953583602018, + 43.14409428816871 + ], + [ + 64.38051567671812, + 42.94944655324026 + ], + [ + 64.61020104368548, + 42.94944655324026 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 42.94944655324026 + ], + [ + 64.38051567671812, + 42.94944655324026 + ], + [ + 64.4953583602018, + 42.754798818311805 + ], + [ + 64.61020104368548, + 42.94944655324026 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 42.94944655324026 + ], + [ + 64.4953583602018, + 42.754798818311805 + ], + [ + 64.72504372716915, + 42.754798818311805 + ], + [ + 64.61020104368548, + 42.94944655324026 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 42.94944655324026 + ], + [ + 64.72504372716915, + 42.754798818311805 + ], + [ + 64.83988641065284, + 42.94944655324026 + ], + [ + 64.61020104368548, + 42.94944655324026 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 43.33874202309716 + ], + [ + 64.83988641065284, + 43.33874202309716 + ], + [ + 64.72504372716915, + 43.53338975802561 + ], + [ + 64.61020104368548, + 43.33874202309716 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 43.33874202309716 + ], + [ + 64.72504372716915, + 43.53338975802561 + ], + [ + 64.4953583602018, + 43.53338975802561 + ], + [ + 64.61020104368548, + 43.33874202309716 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 43.33874202309716 + ], + [ + 64.4953583602018, + 43.53338975802561 + ], + [ + 64.38051567671812, + 43.33874202309716 + ], + [ + 64.61020104368548, + 43.33874202309716 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 43.33874202309716 + ], + [ + 64.38051567671812, + 43.33874202309716 + ], + [ + 64.4953583602018, + 43.14409428816871 + ], + [ + 64.61020104368548, + 43.33874202309716 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 43.33874202309716 + ], + [ + 64.4953583602018, + 43.14409428816871 + ], + [ + 64.72504372716915, + 43.14409428816871 + ], + [ + 64.61020104368548, + 43.33874202309716 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 43.33874202309716 + ], + [ + 64.72504372716915, + 43.14409428816871 + ], + [ + 64.83988641065284, + 43.33874202309716 + ], + [ + 64.61020104368548, + 43.33874202309716 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 43.728037492954066 + ], + [ + 64.83988641065284, + 43.728037492954066 + ], + [ + 64.72504372716915, + 43.92268522788252 + ], + [ + 64.61020104368548, + 43.728037492954066 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 43.728037492954066 + ], + [ + 64.72504372716915, + 43.92268522788252 + ], + [ + 64.4953583602018, + 43.92268522788252 + ], + [ + 64.61020104368548, + 43.728037492954066 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 43.728037492954066 + ], + [ + 64.4953583602018, + 43.92268522788252 + ], + [ + 64.38051567671812, + 43.728037492954066 + ], + [ + 64.61020104368548, + 43.728037492954066 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 43.728037492954066 + ], + [ + 64.38051567671812, + 43.728037492954066 + ], + [ + 64.4953583602018, + 43.53338975802561 + ], + [ + 64.61020104368548, + 43.728037492954066 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 43.728037492954066 + ], + [ + 64.4953583602018, + 43.53338975802561 + ], + [ + 64.72504372716915, + 43.53338975802561 + ], + [ + 64.61020104368548, + 43.728037492954066 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 43.728037492954066 + ], + [ + 64.72504372716915, + 43.53338975802561 + ], + [ + 64.83988641065284, + 43.728037492954066 + ], + [ + 64.61020104368548, + 43.728037492954066 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 44.11733296281097 + ], + [ + 64.83988641065284, + 44.11733296281097 + ], + [ + 64.72504372716915, + 44.31198069773942 + ], + [ + 64.61020104368548, + 44.11733296281097 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 44.11733296281097 + ], + [ + 64.72504372716915, + 44.31198069773942 + ], + [ + 64.4953583602018, + 44.31198069773942 + ], + [ + 64.61020104368548, + 44.11733296281097 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 44.11733296281097 + ], + [ + 64.4953583602018, + 44.31198069773942 + ], + [ + 64.38051567671812, + 44.11733296281097 + ], + [ + 64.61020104368548, + 44.11733296281097 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 44.11733296281097 + ], + [ + 64.38051567671812, + 44.11733296281097 + ], + [ + 64.4953583602018, + 43.92268522788252 + ], + [ + 64.61020104368548, + 44.11733296281097 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 44.11733296281097 + ], + [ + 64.4953583602018, + 43.92268522788252 + ], + [ + 64.72504372716915, + 43.92268522788252 + ], + [ + 64.61020104368548, + 44.11733296281097 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 44.11733296281097 + ], + [ + 64.72504372716915, + 43.92268522788252 + ], + [ + 64.83988641065284, + 44.11733296281097 + ], + [ + 64.61020104368548, + 44.11733296281097 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 44.506628432667874 + ], + [ + 64.83988641065284, + 44.506628432667874 + ], + [ + 64.72504372716915, + 44.701276167596326 + ], + [ + 64.61020104368548, + 44.506628432667874 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 44.506628432667874 + ], + [ + 64.72504372716915, + 44.701276167596326 + ], + [ + 64.4953583602018, + 44.701276167596326 + ], + [ + 64.61020104368548, + 44.506628432667874 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 44.506628432667874 + ], + [ + 64.4953583602018, + 44.701276167596326 + ], + [ + 64.38051567671812, + 44.506628432667874 + ], + [ + 64.61020104368548, + 44.506628432667874 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 44.506628432667874 + ], + [ + 64.38051567671812, + 44.506628432667874 + ], + [ + 64.4953583602018, + 44.31198069773942 + ], + [ + 64.61020104368548, + 44.506628432667874 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 44.506628432667874 + ], + [ + 64.4953583602018, + 44.31198069773942 + ], + [ + 64.72504372716915, + 44.31198069773942 + ], + [ + 64.61020104368548, + 44.506628432667874 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 44.506628432667874 + ], + [ + 64.72504372716915, + 44.31198069773942 + ], + [ + 64.83988641065284, + 44.506628432667874 + ], + [ + 64.61020104368548, + 44.506628432667874 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 44.89592390252479 + ], + [ + 64.83988641065284, + 44.89592390252479 + ], + [ + 64.72504372716915, + 45.090571637453245 + ], + [ + 64.61020104368548, + 44.89592390252479 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 44.89592390252479 + ], + [ + 64.72504372716915, + 45.090571637453245 + ], + [ + 64.4953583602018, + 45.090571637453245 + ], + [ + 64.61020104368548, + 44.89592390252479 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 44.89592390252479 + ], + [ + 64.4953583602018, + 45.090571637453245 + ], + [ + 64.38051567671812, + 44.89592390252479 + ], + [ + 64.61020104368548, + 44.89592390252479 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 44.89592390252479 + ], + [ + 64.38051567671812, + 44.89592390252479 + ], + [ + 64.4953583602018, + 44.70127616759634 + ], + [ + 64.61020104368548, + 44.89592390252479 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 44.89592390252479 + ], + [ + 64.4953583602018, + 44.70127616759634 + ], + [ + 64.72504372716915, + 44.70127616759634 + ], + [ + 64.61020104368548, + 44.89592390252479 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 44.89592390252479 + ], + [ + 64.72504372716915, + 44.70127616759634 + ], + [ + 64.83988641065284, + 44.89592390252479 + ], + [ + 64.61020104368548, + 44.89592390252479 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 45.2852193723817 + ], + [ + 64.83988641065284, + 45.2852193723817 + ], + [ + 64.72504372716915, + 45.47986710731015 + ], + [ + 64.61020104368548, + 45.2852193723817 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 45.2852193723817 + ], + [ + 64.72504372716915, + 45.47986710731015 + ], + [ + 64.4953583602018, + 45.47986710731015 + ], + [ + 64.61020104368548, + 45.2852193723817 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 45.2852193723817 + ], + [ + 64.4953583602018, + 45.47986710731015 + ], + [ + 64.38051567671812, + 45.2852193723817 + ], + [ + 64.61020104368548, + 45.2852193723817 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 45.2852193723817 + ], + [ + 64.38051567671812, + 45.2852193723817 + ], + [ + 64.4953583602018, + 45.090571637453245 + ], + [ + 64.61020104368548, + 45.2852193723817 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 45.2852193723817 + ], + [ + 64.4953583602018, + 45.090571637453245 + ], + [ + 64.72504372716915, + 45.090571637453245 + ], + [ + 64.61020104368548, + 45.2852193723817 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 45.2852193723817 + ], + [ + 64.72504372716915, + 45.090571637453245 + ], + [ + 64.83988641065284, + 45.2852193723817 + ], + [ + 64.61020104368548, + 45.2852193723817 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 45.6745148422386 + ], + [ + 64.83988641065284, + 45.6745148422386 + ], + [ + 64.72504372716915, + 45.86916257716705 + ], + [ + 64.61020104368548, + 45.6745148422386 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 45.6745148422386 + ], + [ + 64.72504372716915, + 45.86916257716705 + ], + [ + 64.4953583602018, + 45.86916257716705 + ], + [ + 64.61020104368548, + 45.6745148422386 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 45.6745148422386 + ], + [ + 64.4953583602018, + 45.86916257716705 + ], + [ + 64.38051567671812, + 45.6745148422386 + ], + [ + 64.61020104368548, + 45.6745148422386 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 45.6745148422386 + ], + [ + 64.38051567671812, + 45.6745148422386 + ], + [ + 64.4953583602018, + 45.47986710731015 + ], + [ + 64.61020104368548, + 45.6745148422386 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 45.6745148422386 + ], + [ + 64.4953583602018, + 45.47986710731015 + ], + [ + 64.72504372716915, + 45.47986710731015 + ], + [ + 64.61020104368548, + 45.6745148422386 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 45.6745148422386 + ], + [ + 64.72504372716915, + 45.47986710731015 + ], + [ + 64.83988641065284, + 45.6745148422386 + ], + [ + 64.61020104368548, + 45.6745148422386 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 46.063810312095505 + ], + [ + 64.83988641065284, + 46.063810312095505 + ], + [ + 64.72504372716915, + 46.25845804702396 + ], + [ + 64.61020104368548, + 46.063810312095505 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 46.063810312095505 + ], + [ + 64.72504372716915, + 46.25845804702396 + ], + [ + 64.4953583602018, + 46.25845804702396 + ], + [ + 64.61020104368548, + 46.063810312095505 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 46.063810312095505 + ], + [ + 64.4953583602018, + 46.25845804702396 + ], + [ + 64.38051567671812, + 46.063810312095505 + ], + [ + 64.61020104368548, + 46.063810312095505 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 46.063810312095505 + ], + [ + 64.38051567671812, + 46.063810312095505 + ], + [ + 64.4953583602018, + 45.86916257716705 + ], + [ + 64.61020104368548, + 46.063810312095505 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 46.063810312095505 + ], + [ + 64.4953583602018, + 45.86916257716705 + ], + [ + 64.72504372716915, + 45.86916257716705 + ], + [ + 64.61020104368548, + 46.063810312095505 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 46.063810312095505 + ], + [ + 64.72504372716915, + 45.86916257716705 + ], + [ + 64.83988641065284, + 46.063810312095505 + ], + [ + 64.61020104368548, + 46.063810312095505 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 46.45310578195241 + ], + [ + 64.83988641065284, + 46.45310578195241 + ], + [ + 64.72504372716915, + 46.64775351688086 + ], + [ + 64.61020104368548, + 46.45310578195241 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 46.45310578195241 + ], + [ + 64.72504372716915, + 46.64775351688086 + ], + [ + 64.4953583602018, + 46.64775351688086 + ], + [ + 64.61020104368548, + 46.45310578195241 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 46.45310578195241 + ], + [ + 64.4953583602018, + 46.64775351688086 + ], + [ + 64.38051567671812, + 46.45310578195241 + ], + [ + 64.61020104368548, + 46.45310578195241 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 46.45310578195241 + ], + [ + 64.38051567671812, + 46.45310578195241 + ], + [ + 64.4953583602018, + 46.25845804702396 + ], + [ + 64.61020104368548, + 46.45310578195241 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 46.45310578195241 + ], + [ + 64.4953583602018, + 46.25845804702396 + ], + [ + 64.72504372716915, + 46.25845804702396 + ], + [ + 64.61020104368548, + 46.45310578195241 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 46.45310578195241 + ], + [ + 64.72504372716915, + 46.25845804702396 + ], + [ + 64.83988641065284, + 46.45310578195241 + ], + [ + 64.61020104368548, + 46.45310578195241 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 46.842401251809314 + ], + [ + 64.83988641065284, + 46.842401251809314 + ], + [ + 64.72504372716915, + 47.037048986737766 + ], + [ + 64.61020104368548, + 46.842401251809314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 46.842401251809314 + ], + [ + 64.72504372716915, + 47.037048986737766 + ], + [ + 64.4953583602018, + 47.037048986737766 + ], + [ + 64.61020104368548, + 46.842401251809314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 46.842401251809314 + ], + [ + 64.4953583602018, + 47.037048986737766 + ], + [ + 64.38051567671812, + 46.842401251809314 + ], + [ + 64.61020104368548, + 46.842401251809314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 46.842401251809314 + ], + [ + 64.38051567671812, + 46.842401251809314 + ], + [ + 64.4953583602018, + 46.64775351688086 + ], + [ + 64.61020104368548, + 46.842401251809314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 46.842401251809314 + ], + [ + 64.4953583602018, + 46.64775351688086 + ], + [ + 64.72504372716915, + 46.64775351688086 + ], + [ + 64.61020104368548, + 46.842401251809314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 46.842401251809314 + ], + [ + 64.72504372716915, + 46.64775351688086 + ], + [ + 64.83988641065284, + 46.842401251809314 + ], + [ + 64.61020104368548, + 46.842401251809314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 47.23169672166622 + ], + [ + 64.83988641065284, + 47.23169672166622 + ], + [ + 64.72504372716915, + 47.42634445659467 + ], + [ + 64.61020104368548, + 47.23169672166622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 47.23169672166622 + ], + [ + 64.72504372716915, + 47.42634445659467 + ], + [ + 64.4953583602018, + 47.42634445659467 + ], + [ + 64.61020104368548, + 47.23169672166622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 47.23169672166622 + ], + [ + 64.4953583602018, + 47.42634445659467 + ], + [ + 64.38051567671812, + 47.23169672166622 + ], + [ + 64.61020104368548, + 47.23169672166622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 47.23169672166622 + ], + [ + 64.38051567671812, + 47.23169672166622 + ], + [ + 64.4953583602018, + 47.037048986737766 + ], + [ + 64.61020104368548, + 47.23169672166622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 47.23169672166622 + ], + [ + 64.4953583602018, + 47.037048986737766 + ], + [ + 64.72504372716915, + 47.037048986737766 + ], + [ + 64.61020104368548, + 47.23169672166622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 47.23169672166622 + ], + [ + 64.72504372716915, + 47.037048986737766 + ], + [ + 64.83988641065284, + 47.23169672166622 + ], + [ + 64.61020104368548, + 47.23169672166622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 47.620992191523136 + ], + [ + 64.83988641065284, + 47.620992191523136 + ], + [ + 64.72504372716915, + 47.81563992645159 + ], + [ + 64.61020104368548, + 47.620992191523136 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 47.620992191523136 + ], + [ + 64.72504372716915, + 47.81563992645159 + ], + [ + 64.4953583602018, + 47.81563992645159 + ], + [ + 64.61020104368548, + 47.620992191523136 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 47.620992191523136 + ], + [ + 64.4953583602018, + 47.81563992645159 + ], + [ + 64.38051567671812, + 47.620992191523136 + ], + [ + 64.61020104368548, + 47.620992191523136 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 47.620992191523136 + ], + [ + 64.38051567671812, + 47.620992191523136 + ], + [ + 64.4953583602018, + 47.426344456594684 + ], + [ + 64.61020104368548, + 47.620992191523136 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 47.620992191523136 + ], + [ + 64.4953583602018, + 47.426344456594684 + ], + [ + 64.72504372716915, + 47.426344456594684 + ], + [ + 64.61020104368548, + 47.620992191523136 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.61020104368548, + 47.620992191523136 + ], + [ + 64.72504372716915, + 47.426344456594684 + ], + [ + 64.83988641065284, + 47.620992191523136 + ], + [ + 64.61020104368548, + 47.620992191523136 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 12.0004566996162 + ], + [ + 65.18441446110387, + 12.0004566996162 + ], + [ + 65.06957177762018, + 12.195104434544653 + ], + [ + 64.95472909413651, + 12.0004566996162 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 12.0004566996162 + ], + [ + 65.06957177762018, + 12.195104434544653 + ], + [ + 64.83988641065284, + 12.195104434544653 + ], + [ + 64.95472909413651, + 12.0004566996162 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 12.0004566996162 + ], + [ + 64.83988641065284, + 12.195104434544653 + ], + [ + 64.72504372716915, + 12.0004566996162 + ], + [ + 64.95472909413651, + 12.0004566996162 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 12.0004566996162 + ], + [ + 64.72504372716915, + 12.0004566996162 + ], + [ + 64.83988641065284, + 11.805808964687746 + ], + [ + 64.95472909413651, + 12.0004566996162 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 12.0004566996162 + ], + [ + 64.83988641065284, + 11.805808964687746 + ], + [ + 65.06957177762018, + 11.805808964687746 + ], + [ + 64.95472909413651, + 12.0004566996162 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 12.0004566996162 + ], + [ + 65.06957177762018, + 11.805808964687746 + ], + [ + 65.18441446110387, + 12.0004566996162 + ], + [ + 64.95472909413651, + 12.0004566996162 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 12.389752169473105 + ], + [ + 65.18441446110387, + 12.389752169473105 + ], + [ + 65.06957177762018, + 12.58439990440156 + ], + [ + 64.95472909413651, + 12.389752169473105 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 12.389752169473105 + ], + [ + 65.06957177762018, + 12.58439990440156 + ], + [ + 64.83988641065284, + 12.58439990440156 + ], + [ + 64.95472909413651, + 12.389752169473105 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 12.389752169473105 + ], + [ + 64.83988641065284, + 12.58439990440156 + ], + [ + 64.72504372716915, + 12.389752169473105 + ], + [ + 64.95472909413651, + 12.389752169473105 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 12.389752169473105 + ], + [ + 64.72504372716915, + 12.389752169473105 + ], + [ + 64.83988641065284, + 12.195104434544652 + ], + [ + 64.95472909413651, + 12.389752169473105 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 12.389752169473105 + ], + [ + 64.83988641065284, + 12.195104434544652 + ], + [ + 65.06957177762018, + 12.195104434544652 + ], + [ + 64.95472909413651, + 12.389752169473105 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 12.389752169473105 + ], + [ + 65.06957177762018, + 12.195104434544652 + ], + [ + 65.18441446110387, + 12.389752169473105 + ], + [ + 64.95472909413651, + 12.389752169473105 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 12.779047639330013 + ], + [ + 65.18441446110387, + 12.779047639330013 + ], + [ + 65.06957177762018, + 12.973695374258467 + ], + [ + 64.95472909413651, + 12.779047639330013 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 12.779047639330013 + ], + [ + 65.06957177762018, + 12.973695374258467 + ], + [ + 64.83988641065284, + 12.973695374258467 + ], + [ + 64.95472909413651, + 12.779047639330013 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 12.779047639330013 + ], + [ + 64.83988641065284, + 12.973695374258467 + ], + [ + 64.72504372716915, + 12.779047639330013 + ], + [ + 64.95472909413651, + 12.779047639330013 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 12.779047639330013 + ], + [ + 64.72504372716915, + 12.779047639330013 + ], + [ + 64.83988641065284, + 12.58439990440156 + ], + [ + 64.95472909413651, + 12.779047639330013 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 12.779047639330013 + ], + [ + 64.83988641065284, + 12.58439990440156 + ], + [ + 65.06957177762018, + 12.58439990440156 + ], + [ + 64.95472909413651, + 12.779047639330013 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 12.779047639330013 + ], + [ + 65.06957177762018, + 12.58439990440156 + ], + [ + 65.18441446110387, + 12.779047639330013 + ], + [ + 64.95472909413651, + 12.779047639330013 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 13.16834310918692 + ], + [ + 65.18441446110387, + 13.16834310918692 + ], + [ + 65.06957177762018, + 13.362990844115373 + ], + [ + 64.95472909413651, + 13.16834310918692 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 13.16834310918692 + ], + [ + 65.06957177762018, + 13.362990844115373 + ], + [ + 64.83988641065284, + 13.362990844115373 + ], + [ + 64.95472909413651, + 13.16834310918692 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 13.16834310918692 + ], + [ + 64.83988641065284, + 13.362990844115373 + ], + [ + 64.72504372716915, + 13.16834310918692 + ], + [ + 64.95472909413651, + 13.16834310918692 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 13.16834310918692 + ], + [ + 64.72504372716915, + 13.16834310918692 + ], + [ + 64.83988641065284, + 12.973695374258465 + ], + [ + 64.95472909413651, + 13.16834310918692 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 13.16834310918692 + ], + [ + 64.83988641065284, + 12.973695374258465 + ], + [ + 65.06957177762018, + 12.973695374258465 + ], + [ + 64.95472909413651, + 13.16834310918692 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 13.16834310918692 + ], + [ + 65.06957177762018, + 12.973695374258465 + ], + [ + 65.18441446110387, + 13.16834310918692 + ], + [ + 64.95472909413651, + 13.16834310918692 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 13.557638579043825 + ], + [ + 65.18441446110387, + 13.557638579043825 + ], + [ + 65.06957177762018, + 13.752286313972279 + ], + [ + 64.95472909413651, + 13.557638579043825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 13.557638579043825 + ], + [ + 65.06957177762018, + 13.752286313972279 + ], + [ + 64.83988641065284, + 13.752286313972279 + ], + [ + 64.95472909413651, + 13.557638579043825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 13.557638579043825 + ], + [ + 64.83988641065284, + 13.752286313972279 + ], + [ + 64.72504372716915, + 13.557638579043825 + ], + [ + 64.95472909413651, + 13.557638579043825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 13.557638579043825 + ], + [ + 64.72504372716915, + 13.557638579043825 + ], + [ + 64.83988641065284, + 13.362990844115371 + ], + [ + 64.95472909413651, + 13.557638579043825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 13.557638579043825 + ], + [ + 64.83988641065284, + 13.362990844115371 + ], + [ + 65.06957177762018, + 13.362990844115371 + ], + [ + 64.95472909413651, + 13.557638579043825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 13.557638579043825 + ], + [ + 65.06957177762018, + 13.362990844115371 + ], + [ + 65.18441446110387, + 13.557638579043825 + ], + [ + 64.95472909413651, + 13.557638579043825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 13.946934048900731 + ], + [ + 65.18441446110387, + 13.946934048900731 + ], + [ + 65.06957177762018, + 14.141581783829185 + ], + [ + 64.95472909413651, + 13.946934048900731 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 13.946934048900731 + ], + [ + 65.06957177762018, + 14.141581783829185 + ], + [ + 64.83988641065284, + 14.141581783829185 + ], + [ + 64.95472909413651, + 13.946934048900731 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 13.946934048900731 + ], + [ + 64.83988641065284, + 14.141581783829185 + ], + [ + 64.72504372716915, + 13.946934048900731 + ], + [ + 64.95472909413651, + 13.946934048900731 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 13.946934048900731 + ], + [ + 64.72504372716915, + 13.946934048900731 + ], + [ + 64.83988641065284, + 13.752286313972277 + ], + [ + 64.95472909413651, + 13.946934048900731 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 13.946934048900731 + ], + [ + 64.83988641065284, + 13.752286313972277 + ], + [ + 65.06957177762018, + 13.752286313972277 + ], + [ + 64.95472909413651, + 13.946934048900731 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 13.946934048900731 + ], + [ + 65.06957177762018, + 13.752286313972277 + ], + [ + 65.18441446110387, + 13.946934048900731 + ], + [ + 64.95472909413651, + 13.946934048900731 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 14.336229518757637 + ], + [ + 65.18441446110387, + 14.336229518757637 + ], + [ + 65.06957177762018, + 14.530877253686091 + ], + [ + 64.95472909413651, + 14.336229518757637 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 14.336229518757637 + ], + [ + 65.06957177762018, + 14.530877253686091 + ], + [ + 64.83988641065284, + 14.530877253686091 + ], + [ + 64.95472909413651, + 14.336229518757637 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 14.336229518757637 + ], + [ + 64.83988641065284, + 14.530877253686091 + ], + [ + 64.72504372716915, + 14.336229518757637 + ], + [ + 64.95472909413651, + 14.336229518757637 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 14.336229518757637 + ], + [ + 64.72504372716915, + 14.336229518757637 + ], + [ + 64.83988641065284, + 14.141581783829183 + ], + [ + 64.95472909413651, + 14.336229518757637 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 14.336229518757637 + ], + [ + 64.83988641065284, + 14.141581783829183 + ], + [ + 65.06957177762018, + 14.141581783829183 + ], + [ + 64.95472909413651, + 14.336229518757637 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 14.336229518757637 + ], + [ + 65.06957177762018, + 14.141581783829183 + ], + [ + 65.18441446110387, + 14.336229518757637 + ], + [ + 64.95472909413651, + 14.336229518757637 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 14.725524988614545 + ], + [ + 65.18441446110387, + 14.725524988614545 + ], + [ + 65.06957177762018, + 14.920172723542999 + ], + [ + 64.95472909413651, + 14.725524988614545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 14.725524988614545 + ], + [ + 65.06957177762018, + 14.920172723542999 + ], + [ + 64.83988641065284, + 14.920172723542999 + ], + [ + 64.95472909413651, + 14.725524988614545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 14.725524988614545 + ], + [ + 64.83988641065284, + 14.920172723542999 + ], + [ + 64.72504372716915, + 14.725524988614545 + ], + [ + 64.95472909413651, + 14.725524988614545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 14.725524988614545 + ], + [ + 64.72504372716915, + 14.725524988614545 + ], + [ + 64.83988641065284, + 14.530877253686091 + ], + [ + 64.95472909413651, + 14.725524988614545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 14.725524988614545 + ], + [ + 64.83988641065284, + 14.530877253686091 + ], + [ + 65.06957177762018, + 14.530877253686091 + ], + [ + 64.95472909413651, + 14.725524988614545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 14.725524988614545 + ], + [ + 65.06957177762018, + 14.530877253686091 + ], + [ + 65.18441446110387, + 14.725524988614545 + ], + [ + 64.95472909413651, + 14.725524988614545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 15.114820458471451 + ], + [ + 65.18441446110387, + 15.114820458471451 + ], + [ + 65.06957177762018, + 15.309468193399905 + ], + [ + 64.95472909413651, + 15.114820458471451 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 15.114820458471451 + ], + [ + 65.06957177762018, + 15.309468193399905 + ], + [ + 64.83988641065284, + 15.309468193399905 + ], + [ + 64.95472909413651, + 15.114820458471451 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 15.114820458471451 + ], + [ + 64.83988641065284, + 15.309468193399905 + ], + [ + 64.72504372716915, + 15.114820458471451 + ], + [ + 64.95472909413651, + 15.114820458471451 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 15.114820458471451 + ], + [ + 64.72504372716915, + 15.114820458471451 + ], + [ + 64.83988641065284, + 14.920172723542997 + ], + [ + 64.95472909413651, + 15.114820458471451 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 15.114820458471451 + ], + [ + 64.83988641065284, + 14.920172723542997 + ], + [ + 65.06957177762018, + 14.920172723542997 + ], + [ + 64.95472909413651, + 15.114820458471451 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 15.114820458471451 + ], + [ + 65.06957177762018, + 14.920172723542997 + ], + [ + 65.18441446110387, + 15.114820458471451 + ], + [ + 64.95472909413651, + 15.114820458471451 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 15.504115928328357 + ], + [ + 65.18441446110387, + 15.504115928328357 + ], + [ + 65.06957177762018, + 15.69876366325681 + ], + [ + 64.95472909413651, + 15.504115928328357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 15.504115928328357 + ], + [ + 65.06957177762018, + 15.69876366325681 + ], + [ + 64.83988641065284, + 15.69876366325681 + ], + [ + 64.95472909413651, + 15.504115928328357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 15.504115928328357 + ], + [ + 64.83988641065284, + 15.69876366325681 + ], + [ + 64.72504372716915, + 15.504115928328357 + ], + [ + 64.95472909413651, + 15.504115928328357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 15.504115928328357 + ], + [ + 64.72504372716915, + 15.504115928328357 + ], + [ + 64.83988641065284, + 15.309468193399903 + ], + [ + 64.95472909413651, + 15.504115928328357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 15.504115928328357 + ], + [ + 64.83988641065284, + 15.309468193399903 + ], + [ + 65.06957177762018, + 15.309468193399903 + ], + [ + 64.95472909413651, + 15.504115928328357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 15.504115928328357 + ], + [ + 65.06957177762018, + 15.309468193399903 + ], + [ + 65.18441446110387, + 15.504115928328357 + ], + [ + 64.95472909413651, + 15.504115928328357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 15.893411398185265 + ], + [ + 65.18441446110387, + 15.893411398185265 + ], + [ + 65.06957177762018, + 16.088059133113717 + ], + [ + 64.95472909413651, + 15.893411398185265 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 15.893411398185265 + ], + [ + 65.06957177762018, + 16.088059133113717 + ], + [ + 64.83988641065284, + 16.088059133113717 + ], + [ + 64.95472909413651, + 15.893411398185265 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 15.893411398185265 + ], + [ + 64.83988641065284, + 16.088059133113717 + ], + [ + 64.72504372716915, + 15.893411398185265 + ], + [ + 64.95472909413651, + 15.893411398185265 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 15.893411398185265 + ], + [ + 64.72504372716915, + 15.893411398185265 + ], + [ + 64.83988641065284, + 15.69876366325681 + ], + [ + 64.95472909413651, + 15.893411398185265 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 15.893411398185265 + ], + [ + 64.83988641065284, + 15.69876366325681 + ], + [ + 65.06957177762018, + 15.69876366325681 + ], + [ + 64.95472909413651, + 15.893411398185265 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 15.893411398185265 + ], + [ + 65.06957177762018, + 15.69876366325681 + ], + [ + 65.18441446110387, + 15.893411398185265 + ], + [ + 64.95472909413651, + 15.893411398185265 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 16.28270686804217 + ], + [ + 65.18441446110387, + 16.28270686804217 + ], + [ + 65.06957177762018, + 16.47735460297062 + ], + [ + 64.95472909413651, + 16.28270686804217 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 16.28270686804217 + ], + [ + 65.06957177762018, + 16.47735460297062 + ], + [ + 64.83988641065284, + 16.47735460297062 + ], + [ + 64.95472909413651, + 16.28270686804217 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 16.28270686804217 + ], + [ + 64.83988641065284, + 16.47735460297062 + ], + [ + 64.72504372716915, + 16.28270686804217 + ], + [ + 64.95472909413651, + 16.28270686804217 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 16.28270686804217 + ], + [ + 64.72504372716915, + 16.28270686804217 + ], + [ + 64.83988641065284, + 16.088059133113717 + ], + [ + 64.95472909413651, + 16.28270686804217 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 16.28270686804217 + ], + [ + 64.83988641065284, + 16.088059133113717 + ], + [ + 65.06957177762018, + 16.088059133113717 + ], + [ + 64.95472909413651, + 16.28270686804217 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 16.28270686804217 + ], + [ + 65.06957177762018, + 16.088059133113717 + ], + [ + 65.18441446110387, + 16.28270686804217 + ], + [ + 64.95472909413651, + 16.28270686804217 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 16.672002337899077 + ], + [ + 65.18441446110387, + 16.672002337899077 + ], + [ + 65.06957177762018, + 16.86665007282753 + ], + [ + 64.95472909413651, + 16.672002337899077 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 16.672002337899077 + ], + [ + 65.06957177762018, + 16.86665007282753 + ], + [ + 64.83988641065284, + 16.86665007282753 + ], + [ + 64.95472909413651, + 16.672002337899077 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 16.672002337899077 + ], + [ + 64.83988641065284, + 16.86665007282753 + ], + [ + 64.72504372716915, + 16.672002337899077 + ], + [ + 64.95472909413651, + 16.672002337899077 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 16.672002337899077 + ], + [ + 64.72504372716915, + 16.672002337899077 + ], + [ + 64.83988641065284, + 16.477354602970625 + ], + [ + 64.95472909413651, + 16.672002337899077 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 16.672002337899077 + ], + [ + 64.83988641065284, + 16.477354602970625 + ], + [ + 65.06957177762018, + 16.477354602970625 + ], + [ + 64.95472909413651, + 16.672002337899077 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 16.672002337899077 + ], + [ + 65.06957177762018, + 16.477354602970625 + ], + [ + 65.18441446110387, + 16.672002337899077 + ], + [ + 64.95472909413651, + 16.672002337899077 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 17.06129780775598 + ], + [ + 65.18441446110387, + 17.06129780775598 + ], + [ + 65.06957177762018, + 17.255945542684433 + ], + [ + 64.95472909413651, + 17.06129780775598 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 17.06129780775598 + ], + [ + 65.06957177762018, + 17.255945542684433 + ], + [ + 64.83988641065284, + 17.255945542684433 + ], + [ + 64.95472909413651, + 17.06129780775598 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 17.06129780775598 + ], + [ + 64.83988641065284, + 17.255945542684433 + ], + [ + 64.72504372716915, + 17.06129780775598 + ], + [ + 64.95472909413651, + 17.06129780775598 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 17.06129780775598 + ], + [ + 64.72504372716915, + 17.06129780775598 + ], + [ + 64.83988641065284, + 16.86665007282753 + ], + [ + 64.95472909413651, + 17.06129780775598 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 17.06129780775598 + ], + [ + 64.83988641065284, + 16.86665007282753 + ], + [ + 65.06957177762018, + 16.86665007282753 + ], + [ + 64.95472909413651, + 17.06129780775598 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 17.06129780775598 + ], + [ + 65.06957177762018, + 16.86665007282753 + ], + [ + 65.18441446110387, + 17.06129780775598 + ], + [ + 64.95472909413651, + 17.06129780775598 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 17.45059327761289 + ], + [ + 65.18441446110387, + 17.45059327761289 + ], + [ + 65.06957177762018, + 17.64524101254134 + ], + [ + 64.95472909413651, + 17.45059327761289 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 17.45059327761289 + ], + [ + 65.06957177762018, + 17.64524101254134 + ], + [ + 64.83988641065284, + 17.64524101254134 + ], + [ + 64.95472909413651, + 17.45059327761289 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 17.45059327761289 + ], + [ + 64.83988641065284, + 17.64524101254134 + ], + [ + 64.72504372716915, + 17.45059327761289 + ], + [ + 64.95472909413651, + 17.45059327761289 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 17.45059327761289 + ], + [ + 64.72504372716915, + 17.45059327761289 + ], + [ + 64.83988641065284, + 17.255945542684437 + ], + [ + 64.95472909413651, + 17.45059327761289 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 17.45059327761289 + ], + [ + 64.83988641065284, + 17.255945542684437 + ], + [ + 65.06957177762018, + 17.255945542684437 + ], + [ + 64.95472909413651, + 17.45059327761289 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 17.45059327761289 + ], + [ + 65.06957177762018, + 17.255945542684437 + ], + [ + 65.18441446110387, + 17.45059327761289 + ], + [ + 64.95472909413651, + 17.45059327761289 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 17.839888747469793 + ], + [ + 65.18441446110387, + 17.839888747469793 + ], + [ + 65.06957177762018, + 18.034536482398245 + ], + [ + 64.95472909413651, + 17.839888747469793 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 17.839888747469793 + ], + [ + 65.06957177762018, + 18.034536482398245 + ], + [ + 64.83988641065284, + 18.034536482398245 + ], + [ + 64.95472909413651, + 17.839888747469793 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 17.839888747469793 + ], + [ + 64.83988641065284, + 18.034536482398245 + ], + [ + 64.72504372716915, + 17.839888747469793 + ], + [ + 64.95472909413651, + 17.839888747469793 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 17.839888747469793 + ], + [ + 64.72504372716915, + 17.839888747469793 + ], + [ + 64.83988641065284, + 17.64524101254134 + ], + [ + 64.95472909413651, + 17.839888747469793 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 17.839888747469793 + ], + [ + 64.83988641065284, + 17.64524101254134 + ], + [ + 65.06957177762018, + 17.64524101254134 + ], + [ + 64.95472909413651, + 17.839888747469793 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 17.839888747469793 + ], + [ + 65.06957177762018, + 17.64524101254134 + ], + [ + 65.18441446110387, + 17.839888747469793 + ], + [ + 64.95472909413651, + 17.839888747469793 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 18.2291842173267 + ], + [ + 65.18441446110387, + 18.2291842173267 + ], + [ + 65.06957177762018, + 18.423831952255153 + ], + [ + 64.95472909413651, + 18.2291842173267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 18.2291842173267 + ], + [ + 65.06957177762018, + 18.423831952255153 + ], + [ + 64.83988641065284, + 18.423831952255153 + ], + [ + 64.95472909413651, + 18.2291842173267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 18.2291842173267 + ], + [ + 64.83988641065284, + 18.423831952255153 + ], + [ + 64.72504372716915, + 18.2291842173267 + ], + [ + 64.95472909413651, + 18.2291842173267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 18.2291842173267 + ], + [ + 64.72504372716915, + 18.2291842173267 + ], + [ + 64.83988641065284, + 18.03453648239825 + ], + [ + 64.95472909413651, + 18.2291842173267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 18.2291842173267 + ], + [ + 64.83988641065284, + 18.03453648239825 + ], + [ + 65.06957177762018, + 18.03453648239825 + ], + [ + 64.95472909413651, + 18.2291842173267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 18.2291842173267 + ], + [ + 65.06957177762018, + 18.03453648239825 + ], + [ + 65.18441446110387, + 18.2291842173267 + ], + [ + 64.95472909413651, + 18.2291842173267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 18.61847968718361 + ], + [ + 65.18441446110387, + 18.61847968718361 + ], + [ + 65.06957177762018, + 18.81312742211206 + ], + [ + 64.95472909413651, + 18.61847968718361 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 18.61847968718361 + ], + [ + 65.06957177762018, + 18.81312742211206 + ], + [ + 64.83988641065284, + 18.81312742211206 + ], + [ + 64.95472909413651, + 18.61847968718361 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 18.61847968718361 + ], + [ + 64.83988641065284, + 18.81312742211206 + ], + [ + 64.72504372716915, + 18.61847968718361 + ], + [ + 64.95472909413651, + 18.61847968718361 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 18.61847968718361 + ], + [ + 64.72504372716915, + 18.61847968718361 + ], + [ + 64.83988641065284, + 18.423831952255156 + ], + [ + 64.95472909413651, + 18.61847968718361 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 18.61847968718361 + ], + [ + 64.83988641065284, + 18.423831952255156 + ], + [ + 65.06957177762018, + 18.423831952255156 + ], + [ + 64.95472909413651, + 18.61847968718361 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 18.61847968718361 + ], + [ + 65.06957177762018, + 18.423831952255156 + ], + [ + 65.18441446110387, + 18.61847968718361 + ], + [ + 64.95472909413651, + 18.61847968718361 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 19.007775157040513 + ], + [ + 65.18441446110387, + 19.007775157040513 + ], + [ + 65.06957177762018, + 19.202422891968965 + ], + [ + 64.95472909413651, + 19.007775157040513 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 19.007775157040513 + ], + [ + 65.06957177762018, + 19.202422891968965 + ], + [ + 64.83988641065284, + 19.202422891968965 + ], + [ + 64.95472909413651, + 19.007775157040513 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 19.007775157040513 + ], + [ + 64.83988641065284, + 19.202422891968965 + ], + [ + 64.72504372716915, + 19.007775157040513 + ], + [ + 64.95472909413651, + 19.007775157040513 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 19.007775157040513 + ], + [ + 64.72504372716915, + 19.007775157040513 + ], + [ + 64.83988641065284, + 18.81312742211206 + ], + [ + 64.95472909413651, + 19.007775157040513 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 19.007775157040513 + ], + [ + 64.83988641065284, + 18.81312742211206 + ], + [ + 65.06957177762018, + 18.81312742211206 + ], + [ + 64.95472909413651, + 19.007775157040513 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 19.007775157040513 + ], + [ + 65.06957177762018, + 18.81312742211206 + ], + [ + 65.18441446110387, + 19.007775157040513 + ], + [ + 64.95472909413651, + 19.007775157040513 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 19.39707062689742 + ], + [ + 65.18441446110387, + 19.39707062689742 + ], + [ + 65.06957177762018, + 19.591718361825873 + ], + [ + 64.95472909413651, + 19.39707062689742 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 19.39707062689742 + ], + [ + 65.06957177762018, + 19.591718361825873 + ], + [ + 64.83988641065284, + 19.591718361825873 + ], + [ + 64.95472909413651, + 19.39707062689742 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 19.39707062689742 + ], + [ + 64.83988641065284, + 19.591718361825873 + ], + [ + 64.72504372716915, + 19.39707062689742 + ], + [ + 64.95472909413651, + 19.39707062689742 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 19.39707062689742 + ], + [ + 64.72504372716915, + 19.39707062689742 + ], + [ + 64.83988641065284, + 19.20242289196897 + ], + [ + 64.95472909413651, + 19.39707062689742 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 19.39707062689742 + ], + [ + 64.83988641065284, + 19.20242289196897 + ], + [ + 65.06957177762018, + 19.20242289196897 + ], + [ + 64.95472909413651, + 19.39707062689742 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 19.39707062689742 + ], + [ + 65.06957177762018, + 19.20242289196897 + ], + [ + 65.18441446110387, + 19.39707062689742 + ], + [ + 64.95472909413651, + 19.39707062689742 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 19.78636609675433 + ], + [ + 65.18441446110387, + 19.78636609675433 + ], + [ + 65.06957177762018, + 19.98101383168278 + ], + [ + 64.95472909413651, + 19.78636609675433 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 19.78636609675433 + ], + [ + 65.06957177762018, + 19.98101383168278 + ], + [ + 64.83988641065284, + 19.98101383168278 + ], + [ + 64.95472909413651, + 19.78636609675433 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 19.78636609675433 + ], + [ + 64.83988641065284, + 19.98101383168278 + ], + [ + 64.72504372716915, + 19.78636609675433 + ], + [ + 64.95472909413651, + 19.78636609675433 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 19.78636609675433 + ], + [ + 64.72504372716915, + 19.78636609675433 + ], + [ + 64.83988641065284, + 19.591718361825876 + ], + [ + 64.95472909413651, + 19.78636609675433 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 19.78636609675433 + ], + [ + 64.83988641065284, + 19.591718361825876 + ], + [ + 65.06957177762018, + 19.591718361825876 + ], + [ + 64.95472909413651, + 19.78636609675433 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 19.78636609675433 + ], + [ + 65.06957177762018, + 19.591718361825876 + ], + [ + 65.18441446110387, + 19.78636609675433 + ], + [ + 64.95472909413651, + 19.78636609675433 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 20.175661566611232 + ], + [ + 65.18441446110387, + 20.175661566611232 + ], + [ + 65.06957177762018, + 20.370309301539685 + ], + [ + 64.95472909413651, + 20.175661566611232 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 20.175661566611232 + ], + [ + 65.06957177762018, + 20.370309301539685 + ], + [ + 64.83988641065284, + 20.370309301539685 + ], + [ + 64.95472909413651, + 20.175661566611232 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 20.175661566611232 + ], + [ + 64.83988641065284, + 20.370309301539685 + ], + [ + 64.72504372716915, + 20.175661566611232 + ], + [ + 64.95472909413651, + 20.175661566611232 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 20.175661566611232 + ], + [ + 64.72504372716915, + 20.175661566611232 + ], + [ + 64.83988641065284, + 19.98101383168278 + ], + [ + 64.95472909413651, + 20.175661566611232 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 20.175661566611232 + ], + [ + 64.83988641065284, + 19.98101383168278 + ], + [ + 65.06957177762018, + 19.98101383168278 + ], + [ + 64.95472909413651, + 20.175661566611232 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 20.175661566611232 + ], + [ + 65.06957177762018, + 19.98101383168278 + ], + [ + 65.18441446110387, + 20.175661566611232 + ], + [ + 64.95472909413651, + 20.175661566611232 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 20.564957036468137 + ], + [ + 65.18441446110387, + 20.564957036468137 + ], + [ + 65.06957177762018, + 20.75960477139659 + ], + [ + 64.95472909413651, + 20.564957036468137 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 20.564957036468137 + ], + [ + 65.06957177762018, + 20.75960477139659 + ], + [ + 64.83988641065284, + 20.75960477139659 + ], + [ + 64.95472909413651, + 20.564957036468137 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 20.564957036468137 + ], + [ + 64.83988641065284, + 20.75960477139659 + ], + [ + 64.72504372716915, + 20.564957036468137 + ], + [ + 64.95472909413651, + 20.564957036468137 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 20.564957036468137 + ], + [ + 64.72504372716915, + 20.564957036468137 + ], + [ + 64.83988641065284, + 20.370309301539685 + ], + [ + 64.95472909413651, + 20.564957036468137 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 20.564957036468137 + ], + [ + 64.83988641065284, + 20.370309301539685 + ], + [ + 65.06957177762018, + 20.370309301539685 + ], + [ + 64.95472909413651, + 20.564957036468137 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 20.564957036468137 + ], + [ + 65.06957177762018, + 20.370309301539685 + ], + [ + 65.18441446110387, + 20.564957036468137 + ], + [ + 64.95472909413651, + 20.564957036468137 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 20.954252506325044 + ], + [ + 65.18441446110387, + 20.954252506325044 + ], + [ + 65.06957177762018, + 21.148900241253497 + ], + [ + 64.95472909413651, + 20.954252506325044 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 20.954252506325044 + ], + [ + 65.06957177762018, + 21.148900241253497 + ], + [ + 64.83988641065284, + 21.148900241253497 + ], + [ + 64.95472909413651, + 20.954252506325044 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 20.954252506325044 + ], + [ + 64.83988641065284, + 21.148900241253497 + ], + [ + 64.72504372716915, + 20.954252506325044 + ], + [ + 64.95472909413651, + 20.954252506325044 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 20.954252506325044 + ], + [ + 64.72504372716915, + 20.954252506325044 + ], + [ + 64.83988641065284, + 20.759604771396592 + ], + [ + 64.95472909413651, + 20.954252506325044 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 20.954252506325044 + ], + [ + 64.83988641065284, + 20.759604771396592 + ], + [ + 65.06957177762018, + 20.759604771396592 + ], + [ + 64.95472909413651, + 20.954252506325044 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 20.954252506325044 + ], + [ + 65.06957177762018, + 20.759604771396592 + ], + [ + 65.18441446110387, + 20.954252506325044 + ], + [ + 64.95472909413651, + 20.954252506325044 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 21.343547976181952 + ], + [ + 65.18441446110387, + 21.343547976181952 + ], + [ + 65.06957177762018, + 21.538195711110404 + ], + [ + 64.95472909413651, + 21.343547976181952 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 21.343547976181952 + ], + [ + 65.06957177762018, + 21.538195711110404 + ], + [ + 64.83988641065284, + 21.538195711110404 + ], + [ + 64.95472909413651, + 21.343547976181952 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 21.343547976181952 + ], + [ + 64.83988641065284, + 21.538195711110404 + ], + [ + 64.72504372716915, + 21.343547976181952 + ], + [ + 64.95472909413651, + 21.343547976181952 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 21.343547976181952 + ], + [ + 64.72504372716915, + 21.343547976181952 + ], + [ + 64.83988641065284, + 21.1489002412535 + ], + [ + 64.95472909413651, + 21.343547976181952 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 21.343547976181952 + ], + [ + 64.83988641065284, + 21.1489002412535 + ], + [ + 65.06957177762018, + 21.1489002412535 + ], + [ + 64.95472909413651, + 21.343547976181952 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 21.343547976181952 + ], + [ + 65.06957177762018, + 21.1489002412535 + ], + [ + 65.18441446110387, + 21.343547976181952 + ], + [ + 64.95472909413651, + 21.343547976181952 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 21.732843446038856 + ], + [ + 65.18441446110387, + 21.732843446038856 + ], + [ + 65.06957177762018, + 21.92749118096731 + ], + [ + 64.95472909413651, + 21.732843446038856 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 21.732843446038856 + ], + [ + 65.06957177762018, + 21.92749118096731 + ], + [ + 64.83988641065284, + 21.92749118096731 + ], + [ + 64.95472909413651, + 21.732843446038856 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 21.732843446038856 + ], + [ + 64.83988641065284, + 21.92749118096731 + ], + [ + 64.72504372716915, + 21.732843446038856 + ], + [ + 64.95472909413651, + 21.732843446038856 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 21.732843446038856 + ], + [ + 64.72504372716915, + 21.732843446038856 + ], + [ + 64.83988641065284, + 21.538195711110404 + ], + [ + 64.95472909413651, + 21.732843446038856 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 21.732843446038856 + ], + [ + 64.83988641065284, + 21.538195711110404 + ], + [ + 65.06957177762018, + 21.538195711110404 + ], + [ + 64.95472909413651, + 21.732843446038856 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 21.732843446038856 + ], + [ + 65.06957177762018, + 21.538195711110404 + ], + [ + 65.18441446110387, + 21.732843446038856 + ], + [ + 64.95472909413651, + 21.732843446038856 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 22.122138915895764 + ], + [ + 65.18441446110387, + 22.122138915895764 + ], + [ + 65.06957177762018, + 22.316786650824216 + ], + [ + 64.95472909413651, + 22.122138915895764 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 22.122138915895764 + ], + [ + 65.06957177762018, + 22.316786650824216 + ], + [ + 64.83988641065284, + 22.316786650824216 + ], + [ + 64.95472909413651, + 22.122138915895764 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 22.122138915895764 + ], + [ + 64.83988641065284, + 22.316786650824216 + ], + [ + 64.72504372716915, + 22.122138915895764 + ], + [ + 64.95472909413651, + 22.122138915895764 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 22.122138915895764 + ], + [ + 64.72504372716915, + 22.122138915895764 + ], + [ + 64.83988641065284, + 21.927491180967312 + ], + [ + 64.95472909413651, + 22.122138915895764 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 22.122138915895764 + ], + [ + 64.83988641065284, + 21.927491180967312 + ], + [ + 65.06957177762018, + 21.927491180967312 + ], + [ + 64.95472909413651, + 22.122138915895764 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 22.122138915895764 + ], + [ + 65.06957177762018, + 21.927491180967312 + ], + [ + 65.18441446110387, + 22.122138915895764 + ], + [ + 64.95472909413651, + 22.122138915895764 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 22.511434385752672 + ], + [ + 65.18441446110387, + 22.511434385752672 + ], + [ + 65.06957177762018, + 22.706082120681124 + ], + [ + 64.95472909413651, + 22.511434385752672 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 22.511434385752672 + ], + [ + 65.06957177762018, + 22.706082120681124 + ], + [ + 64.83988641065284, + 22.706082120681124 + ], + [ + 64.95472909413651, + 22.511434385752672 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 22.511434385752672 + ], + [ + 64.83988641065284, + 22.706082120681124 + ], + [ + 64.72504372716915, + 22.511434385752672 + ], + [ + 64.95472909413651, + 22.511434385752672 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 22.511434385752672 + ], + [ + 64.72504372716915, + 22.511434385752672 + ], + [ + 64.83988641065284, + 22.31678665082422 + ], + [ + 64.95472909413651, + 22.511434385752672 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 22.511434385752672 + ], + [ + 64.83988641065284, + 22.31678665082422 + ], + [ + 65.06957177762018, + 22.31678665082422 + ], + [ + 64.95472909413651, + 22.511434385752672 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 22.511434385752672 + ], + [ + 65.06957177762018, + 22.31678665082422 + ], + [ + 65.18441446110387, + 22.511434385752672 + ], + [ + 64.95472909413651, + 22.511434385752672 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 22.900729855609576 + ], + [ + 65.18441446110387, + 22.900729855609576 + ], + [ + 65.06957177762018, + 23.09537759053803 + ], + [ + 64.95472909413651, + 22.900729855609576 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 22.900729855609576 + ], + [ + 65.06957177762018, + 23.09537759053803 + ], + [ + 64.83988641065284, + 23.09537759053803 + ], + [ + 64.95472909413651, + 22.900729855609576 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 22.900729855609576 + ], + [ + 64.83988641065284, + 23.09537759053803 + ], + [ + 64.72504372716915, + 22.900729855609576 + ], + [ + 64.95472909413651, + 22.900729855609576 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 22.900729855609576 + ], + [ + 64.72504372716915, + 22.900729855609576 + ], + [ + 64.83988641065284, + 22.706082120681124 + ], + [ + 64.95472909413651, + 22.900729855609576 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 22.900729855609576 + ], + [ + 64.83988641065284, + 22.706082120681124 + ], + [ + 65.06957177762018, + 22.706082120681124 + ], + [ + 64.95472909413651, + 22.900729855609576 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 22.900729855609576 + ], + [ + 65.06957177762018, + 22.706082120681124 + ], + [ + 65.18441446110387, + 22.900729855609576 + ], + [ + 64.95472909413651, + 22.900729855609576 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 23.290025325466484 + ], + [ + 65.18441446110387, + 23.290025325466484 + ], + [ + 65.06957177762018, + 23.484673060394936 + ], + [ + 64.95472909413651, + 23.290025325466484 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 23.290025325466484 + ], + [ + 65.06957177762018, + 23.484673060394936 + ], + [ + 64.83988641065284, + 23.484673060394936 + ], + [ + 64.95472909413651, + 23.290025325466484 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 23.290025325466484 + ], + [ + 64.83988641065284, + 23.484673060394936 + ], + [ + 64.72504372716915, + 23.290025325466484 + ], + [ + 64.95472909413651, + 23.290025325466484 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 23.290025325466484 + ], + [ + 64.72504372716915, + 23.290025325466484 + ], + [ + 64.83988641065284, + 23.095377590538032 + ], + [ + 64.95472909413651, + 23.290025325466484 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 23.290025325466484 + ], + [ + 64.83988641065284, + 23.095377590538032 + ], + [ + 65.06957177762018, + 23.095377590538032 + ], + [ + 64.95472909413651, + 23.290025325466484 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 23.290025325466484 + ], + [ + 65.06957177762018, + 23.095377590538032 + ], + [ + 65.18441446110387, + 23.290025325466484 + ], + [ + 64.95472909413651, + 23.290025325466484 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 23.67932079532339 + ], + [ + 65.18441446110387, + 23.67932079532339 + ], + [ + 65.06957177762018, + 23.873968530251844 + ], + [ + 64.95472909413651, + 23.67932079532339 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 23.67932079532339 + ], + [ + 65.06957177762018, + 23.873968530251844 + ], + [ + 64.83988641065284, + 23.873968530251844 + ], + [ + 64.95472909413651, + 23.67932079532339 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 23.67932079532339 + ], + [ + 64.83988641065284, + 23.873968530251844 + ], + [ + 64.72504372716915, + 23.67932079532339 + ], + [ + 64.95472909413651, + 23.67932079532339 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 23.67932079532339 + ], + [ + 64.72504372716915, + 23.67932079532339 + ], + [ + 64.83988641065284, + 23.48467306039494 + ], + [ + 64.95472909413651, + 23.67932079532339 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 23.67932079532339 + ], + [ + 64.83988641065284, + 23.48467306039494 + ], + [ + 65.06957177762018, + 23.48467306039494 + ], + [ + 64.95472909413651, + 23.67932079532339 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 23.67932079532339 + ], + [ + 65.06957177762018, + 23.48467306039494 + ], + [ + 65.18441446110387, + 23.67932079532339 + ], + [ + 64.95472909413651, + 23.67932079532339 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 24.068616265180296 + ], + [ + 65.18441446110387, + 24.068616265180296 + ], + [ + 65.06957177762018, + 24.263264000108748 + ], + [ + 64.95472909413651, + 24.068616265180296 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 24.068616265180296 + ], + [ + 65.06957177762018, + 24.263264000108748 + ], + [ + 64.83988641065284, + 24.263264000108748 + ], + [ + 64.95472909413651, + 24.068616265180296 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 24.068616265180296 + ], + [ + 64.83988641065284, + 24.263264000108748 + ], + [ + 64.72504372716915, + 24.068616265180296 + ], + [ + 64.95472909413651, + 24.068616265180296 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 24.068616265180296 + ], + [ + 64.72504372716915, + 24.068616265180296 + ], + [ + 64.83988641065284, + 23.873968530251844 + ], + [ + 64.95472909413651, + 24.068616265180296 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 24.068616265180296 + ], + [ + 64.83988641065284, + 23.873968530251844 + ], + [ + 65.06957177762018, + 23.873968530251844 + ], + [ + 64.95472909413651, + 24.068616265180296 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 24.068616265180296 + ], + [ + 65.06957177762018, + 23.873968530251844 + ], + [ + 65.18441446110387, + 24.068616265180296 + ], + [ + 64.95472909413651, + 24.068616265180296 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 24.4579117350372 + ], + [ + 65.18441446110387, + 24.4579117350372 + ], + [ + 65.06957177762018, + 24.652559469965652 + ], + [ + 64.95472909413651, + 24.4579117350372 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 24.4579117350372 + ], + [ + 65.06957177762018, + 24.652559469965652 + ], + [ + 64.83988641065284, + 24.652559469965652 + ], + [ + 64.95472909413651, + 24.4579117350372 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 24.4579117350372 + ], + [ + 64.83988641065284, + 24.652559469965652 + ], + [ + 64.72504372716915, + 24.4579117350372 + ], + [ + 64.95472909413651, + 24.4579117350372 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 24.4579117350372 + ], + [ + 64.72504372716915, + 24.4579117350372 + ], + [ + 64.83988641065284, + 24.263264000108748 + ], + [ + 64.95472909413651, + 24.4579117350372 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 24.4579117350372 + ], + [ + 64.83988641065284, + 24.263264000108748 + ], + [ + 65.06957177762018, + 24.263264000108748 + ], + [ + 64.95472909413651, + 24.4579117350372 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 24.4579117350372 + ], + [ + 65.06957177762018, + 24.263264000108748 + ], + [ + 65.18441446110387, + 24.4579117350372 + ], + [ + 64.95472909413651, + 24.4579117350372 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 24.847207204894108 + ], + [ + 65.18441446110387, + 24.847207204894108 + ], + [ + 65.06957177762018, + 25.04185493982256 + ], + [ + 64.95472909413651, + 24.847207204894108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 24.847207204894108 + ], + [ + 65.06957177762018, + 25.04185493982256 + ], + [ + 64.83988641065284, + 25.04185493982256 + ], + [ + 64.95472909413651, + 24.847207204894108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 24.847207204894108 + ], + [ + 64.83988641065284, + 25.04185493982256 + ], + [ + 64.72504372716915, + 24.847207204894108 + ], + [ + 64.95472909413651, + 24.847207204894108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 24.847207204894108 + ], + [ + 64.72504372716915, + 24.847207204894108 + ], + [ + 64.83988641065284, + 24.652559469965656 + ], + [ + 64.95472909413651, + 24.847207204894108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 24.847207204894108 + ], + [ + 64.83988641065284, + 24.652559469965656 + ], + [ + 65.06957177762018, + 24.652559469965656 + ], + [ + 64.95472909413651, + 24.847207204894108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 24.847207204894108 + ], + [ + 65.06957177762018, + 24.652559469965656 + ], + [ + 65.18441446110387, + 24.847207204894108 + ], + [ + 64.95472909413651, + 24.847207204894108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 25.236502674751016 + ], + [ + 65.18441446110387, + 25.236502674751016 + ], + [ + 65.06957177762018, + 25.431150409679468 + ], + [ + 64.95472909413651, + 25.236502674751016 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 25.236502674751016 + ], + [ + 65.06957177762018, + 25.431150409679468 + ], + [ + 64.83988641065284, + 25.431150409679468 + ], + [ + 64.95472909413651, + 25.236502674751016 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 25.236502674751016 + ], + [ + 64.83988641065284, + 25.431150409679468 + ], + [ + 64.72504372716915, + 25.236502674751016 + ], + [ + 64.95472909413651, + 25.236502674751016 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 25.236502674751016 + ], + [ + 64.72504372716915, + 25.236502674751016 + ], + [ + 64.83988641065284, + 25.041854939822564 + ], + [ + 64.95472909413651, + 25.236502674751016 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 25.236502674751016 + ], + [ + 64.83988641065284, + 25.041854939822564 + ], + [ + 65.06957177762018, + 25.041854939822564 + ], + [ + 64.95472909413651, + 25.236502674751016 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 25.236502674751016 + ], + [ + 65.06957177762018, + 25.041854939822564 + ], + [ + 65.18441446110387, + 25.236502674751016 + ], + [ + 64.95472909413651, + 25.236502674751016 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 25.62579814460792 + ], + [ + 65.18441446110387, + 25.62579814460792 + ], + [ + 65.06957177762018, + 25.820445879536372 + ], + [ + 64.95472909413651, + 25.62579814460792 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 25.62579814460792 + ], + [ + 65.06957177762018, + 25.820445879536372 + ], + [ + 64.83988641065284, + 25.820445879536372 + ], + [ + 64.95472909413651, + 25.62579814460792 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 25.62579814460792 + ], + [ + 64.83988641065284, + 25.820445879536372 + ], + [ + 64.72504372716915, + 25.62579814460792 + ], + [ + 64.95472909413651, + 25.62579814460792 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 25.62579814460792 + ], + [ + 64.72504372716915, + 25.62579814460792 + ], + [ + 64.83988641065284, + 25.431150409679468 + ], + [ + 64.95472909413651, + 25.62579814460792 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 25.62579814460792 + ], + [ + 64.83988641065284, + 25.431150409679468 + ], + [ + 65.06957177762018, + 25.431150409679468 + ], + [ + 64.95472909413651, + 25.62579814460792 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 25.62579814460792 + ], + [ + 65.06957177762018, + 25.431150409679468 + ], + [ + 65.18441446110387, + 25.62579814460792 + ], + [ + 64.95472909413651, + 25.62579814460792 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 26.015093614464828 + ], + [ + 65.18441446110387, + 26.015093614464828 + ], + [ + 65.06957177762018, + 26.20974134939328 + ], + [ + 64.95472909413651, + 26.015093614464828 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 26.015093614464828 + ], + [ + 65.06957177762018, + 26.20974134939328 + ], + [ + 64.83988641065284, + 26.20974134939328 + ], + [ + 64.95472909413651, + 26.015093614464828 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 26.015093614464828 + ], + [ + 64.83988641065284, + 26.20974134939328 + ], + [ + 64.72504372716915, + 26.015093614464828 + ], + [ + 64.95472909413651, + 26.015093614464828 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 26.015093614464828 + ], + [ + 64.72504372716915, + 26.015093614464828 + ], + [ + 64.83988641065284, + 25.820445879536376 + ], + [ + 64.95472909413651, + 26.015093614464828 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 26.015093614464828 + ], + [ + 64.83988641065284, + 25.820445879536376 + ], + [ + 65.06957177762018, + 25.820445879536376 + ], + [ + 64.95472909413651, + 26.015093614464828 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 26.015093614464828 + ], + [ + 65.06957177762018, + 25.820445879536376 + ], + [ + 65.18441446110387, + 26.015093614464828 + ], + [ + 64.95472909413651, + 26.015093614464828 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 26.404389084321735 + ], + [ + 65.18441446110387, + 26.404389084321735 + ], + [ + 65.06957177762018, + 26.599036819250188 + ], + [ + 64.95472909413651, + 26.404389084321735 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 26.404389084321735 + ], + [ + 65.06957177762018, + 26.599036819250188 + ], + [ + 64.83988641065284, + 26.599036819250188 + ], + [ + 64.95472909413651, + 26.404389084321735 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 26.404389084321735 + ], + [ + 64.83988641065284, + 26.599036819250188 + ], + [ + 64.72504372716915, + 26.404389084321735 + ], + [ + 64.95472909413651, + 26.404389084321735 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 26.404389084321735 + ], + [ + 64.72504372716915, + 26.404389084321735 + ], + [ + 64.83988641065284, + 26.209741349393283 + ], + [ + 64.95472909413651, + 26.404389084321735 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 26.404389084321735 + ], + [ + 64.83988641065284, + 26.209741349393283 + ], + [ + 65.06957177762018, + 26.209741349393283 + ], + [ + 64.95472909413651, + 26.404389084321735 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 26.404389084321735 + ], + [ + 65.06957177762018, + 26.209741349393283 + ], + [ + 65.18441446110387, + 26.404389084321735 + ], + [ + 64.95472909413651, + 26.404389084321735 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 26.79368455417864 + ], + [ + 65.18441446110387, + 26.79368455417864 + ], + [ + 65.06957177762018, + 26.988332289107092 + ], + [ + 64.95472909413651, + 26.79368455417864 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 26.79368455417864 + ], + [ + 65.06957177762018, + 26.988332289107092 + ], + [ + 64.83988641065284, + 26.988332289107092 + ], + [ + 64.95472909413651, + 26.79368455417864 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 26.79368455417864 + ], + [ + 64.83988641065284, + 26.988332289107092 + ], + [ + 64.72504372716915, + 26.79368455417864 + ], + [ + 64.95472909413651, + 26.79368455417864 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 26.79368455417864 + ], + [ + 64.72504372716915, + 26.79368455417864 + ], + [ + 64.83988641065284, + 26.599036819250188 + ], + [ + 64.95472909413651, + 26.79368455417864 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 26.79368455417864 + ], + [ + 64.83988641065284, + 26.599036819250188 + ], + [ + 65.06957177762018, + 26.599036819250188 + ], + [ + 64.95472909413651, + 26.79368455417864 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 26.79368455417864 + ], + [ + 65.06957177762018, + 26.599036819250188 + ], + [ + 65.18441446110387, + 26.79368455417864 + ], + [ + 64.95472909413651, + 26.79368455417864 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 27.182980024035547 + ], + [ + 65.18441446110387, + 27.182980024035547 + ], + [ + 65.06957177762018, + 27.377627758964 + ], + [ + 64.95472909413651, + 27.182980024035547 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 27.182980024035547 + ], + [ + 65.06957177762018, + 27.377627758964 + ], + [ + 64.83988641065284, + 27.377627758964 + ], + [ + 64.95472909413651, + 27.182980024035547 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 27.182980024035547 + ], + [ + 64.83988641065284, + 27.377627758964 + ], + [ + 64.72504372716915, + 27.182980024035547 + ], + [ + 64.95472909413651, + 27.182980024035547 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 27.182980024035547 + ], + [ + 64.72504372716915, + 27.182980024035547 + ], + [ + 64.83988641065284, + 26.988332289107095 + ], + [ + 64.95472909413651, + 27.182980024035547 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 27.182980024035547 + ], + [ + 64.83988641065284, + 26.988332289107095 + ], + [ + 65.06957177762018, + 26.988332289107095 + ], + [ + 64.95472909413651, + 27.182980024035547 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 27.182980024035547 + ], + [ + 65.06957177762018, + 26.988332289107095 + ], + [ + 65.18441446110387, + 27.182980024035547 + ], + [ + 64.95472909413651, + 27.182980024035547 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 27.572275493892455 + ], + [ + 65.18441446110387, + 27.572275493892455 + ], + [ + 65.06957177762018, + 27.766923228820907 + ], + [ + 64.95472909413651, + 27.572275493892455 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 27.572275493892455 + ], + [ + 65.06957177762018, + 27.766923228820907 + ], + [ + 64.83988641065284, + 27.766923228820907 + ], + [ + 64.95472909413651, + 27.572275493892455 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 27.572275493892455 + ], + [ + 64.83988641065284, + 27.766923228820907 + ], + [ + 64.72504372716915, + 27.572275493892455 + ], + [ + 64.95472909413651, + 27.572275493892455 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 27.572275493892455 + ], + [ + 64.72504372716915, + 27.572275493892455 + ], + [ + 64.83988641065284, + 27.377627758964003 + ], + [ + 64.95472909413651, + 27.572275493892455 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 27.572275493892455 + ], + [ + 64.83988641065284, + 27.377627758964003 + ], + [ + 65.06957177762018, + 27.377627758964003 + ], + [ + 64.95472909413651, + 27.572275493892455 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 27.572275493892455 + ], + [ + 65.06957177762018, + 27.377627758964003 + ], + [ + 65.18441446110387, + 27.572275493892455 + ], + [ + 64.95472909413651, + 27.572275493892455 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 27.96157096374936 + ], + [ + 65.18441446110387, + 27.96157096374936 + ], + [ + 65.06957177762018, + 28.15621869867781 + ], + [ + 64.95472909413651, + 27.96157096374936 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 27.96157096374936 + ], + [ + 65.06957177762018, + 28.15621869867781 + ], + [ + 64.83988641065284, + 28.15621869867781 + ], + [ + 64.95472909413651, + 27.96157096374936 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 27.96157096374936 + ], + [ + 64.83988641065284, + 28.15621869867781 + ], + [ + 64.72504372716915, + 27.96157096374936 + ], + [ + 64.95472909413651, + 27.96157096374936 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 27.96157096374936 + ], + [ + 64.72504372716915, + 27.96157096374936 + ], + [ + 64.83988641065284, + 27.766923228820907 + ], + [ + 64.95472909413651, + 27.96157096374936 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 27.96157096374936 + ], + [ + 64.83988641065284, + 27.766923228820907 + ], + [ + 65.06957177762018, + 27.766923228820907 + ], + [ + 64.95472909413651, + 27.96157096374936 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 27.96157096374936 + ], + [ + 65.06957177762018, + 27.766923228820907 + ], + [ + 65.18441446110387, + 27.96157096374936 + ], + [ + 64.95472909413651, + 27.96157096374936 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 28.350866433606267 + ], + [ + 65.18441446110387, + 28.350866433606267 + ], + [ + 65.06957177762018, + 28.54551416853472 + ], + [ + 64.95472909413651, + 28.350866433606267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 28.350866433606267 + ], + [ + 65.06957177762018, + 28.54551416853472 + ], + [ + 64.83988641065284, + 28.54551416853472 + ], + [ + 64.95472909413651, + 28.350866433606267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 28.350866433606267 + ], + [ + 64.83988641065284, + 28.54551416853472 + ], + [ + 64.72504372716915, + 28.350866433606267 + ], + [ + 64.95472909413651, + 28.350866433606267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 28.350866433606267 + ], + [ + 64.72504372716915, + 28.350866433606267 + ], + [ + 64.83988641065284, + 28.156218698677815 + ], + [ + 64.95472909413651, + 28.350866433606267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 28.350866433606267 + ], + [ + 64.83988641065284, + 28.156218698677815 + ], + [ + 65.06957177762018, + 28.156218698677815 + ], + [ + 64.95472909413651, + 28.350866433606267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 28.350866433606267 + ], + [ + 65.06957177762018, + 28.156218698677815 + ], + [ + 65.18441446110387, + 28.350866433606267 + ], + [ + 64.95472909413651, + 28.350866433606267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 28.74016190346317 + ], + [ + 65.18441446110387, + 28.74016190346317 + ], + [ + 65.06957177762018, + 28.934809638391624 + ], + [ + 64.95472909413651, + 28.74016190346317 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 28.74016190346317 + ], + [ + 65.06957177762018, + 28.934809638391624 + ], + [ + 64.83988641065284, + 28.934809638391624 + ], + [ + 64.95472909413651, + 28.74016190346317 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 28.74016190346317 + ], + [ + 64.83988641065284, + 28.934809638391624 + ], + [ + 64.72504372716915, + 28.74016190346317 + ], + [ + 64.95472909413651, + 28.74016190346317 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 28.74016190346317 + ], + [ + 64.72504372716915, + 28.74016190346317 + ], + [ + 64.83988641065284, + 28.54551416853472 + ], + [ + 64.95472909413651, + 28.74016190346317 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 28.74016190346317 + ], + [ + 64.83988641065284, + 28.54551416853472 + ], + [ + 65.06957177762018, + 28.54551416853472 + ], + [ + 64.95472909413651, + 28.74016190346317 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 28.74016190346317 + ], + [ + 65.06957177762018, + 28.54551416853472 + ], + [ + 65.18441446110387, + 28.74016190346317 + ], + [ + 64.95472909413651, + 28.74016190346317 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 29.12945737332008 + ], + [ + 65.18441446110387, + 29.12945737332008 + ], + [ + 65.06957177762018, + 29.32410510824853 + ], + [ + 64.95472909413651, + 29.12945737332008 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 29.12945737332008 + ], + [ + 65.06957177762018, + 29.32410510824853 + ], + [ + 64.83988641065284, + 29.32410510824853 + ], + [ + 64.95472909413651, + 29.12945737332008 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 29.12945737332008 + ], + [ + 64.83988641065284, + 29.32410510824853 + ], + [ + 64.72504372716915, + 29.12945737332008 + ], + [ + 64.95472909413651, + 29.12945737332008 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 29.12945737332008 + ], + [ + 64.72504372716915, + 29.12945737332008 + ], + [ + 64.83988641065284, + 28.934809638391627 + ], + [ + 64.95472909413651, + 29.12945737332008 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 29.12945737332008 + ], + [ + 64.83988641065284, + 28.934809638391627 + ], + [ + 65.06957177762018, + 28.934809638391627 + ], + [ + 64.95472909413651, + 29.12945737332008 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 29.12945737332008 + ], + [ + 65.06957177762018, + 28.934809638391627 + ], + [ + 65.18441446110387, + 29.12945737332008 + ], + [ + 64.95472909413651, + 29.12945737332008 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 29.518752843176983 + ], + [ + 65.18441446110387, + 29.518752843176983 + ], + [ + 65.06957177762018, + 29.713400578105436 + ], + [ + 64.95472909413651, + 29.518752843176983 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 29.518752843176983 + ], + [ + 65.06957177762018, + 29.713400578105436 + ], + [ + 64.83988641065284, + 29.713400578105436 + ], + [ + 64.95472909413651, + 29.518752843176983 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 29.518752843176983 + ], + [ + 64.83988641065284, + 29.713400578105436 + ], + [ + 64.72504372716915, + 29.518752843176983 + ], + [ + 64.95472909413651, + 29.518752843176983 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 29.518752843176983 + ], + [ + 64.72504372716915, + 29.518752843176983 + ], + [ + 64.83988641065284, + 29.32410510824853 + ], + [ + 64.95472909413651, + 29.518752843176983 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 29.518752843176983 + ], + [ + 64.83988641065284, + 29.32410510824853 + ], + [ + 65.06957177762018, + 29.32410510824853 + ], + [ + 64.95472909413651, + 29.518752843176983 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 29.518752843176983 + ], + [ + 65.06957177762018, + 29.32410510824853 + ], + [ + 65.18441446110387, + 29.518752843176983 + ], + [ + 64.95472909413651, + 29.518752843176983 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 29.90804831303389 + ], + [ + 65.18441446110387, + 29.90804831303389 + ], + [ + 65.06957177762018, + 30.102696047962343 + ], + [ + 64.95472909413651, + 29.90804831303389 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 29.90804831303389 + ], + [ + 65.06957177762018, + 30.102696047962343 + ], + [ + 64.83988641065284, + 30.102696047962343 + ], + [ + 64.95472909413651, + 29.90804831303389 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 29.90804831303389 + ], + [ + 64.83988641065284, + 30.102696047962343 + ], + [ + 64.72504372716915, + 29.90804831303389 + ], + [ + 64.95472909413651, + 29.90804831303389 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 29.90804831303389 + ], + [ + 64.72504372716915, + 29.90804831303389 + ], + [ + 64.83988641065284, + 29.71340057810544 + ], + [ + 64.95472909413651, + 29.90804831303389 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 29.90804831303389 + ], + [ + 64.83988641065284, + 29.71340057810544 + ], + [ + 65.06957177762018, + 29.71340057810544 + ], + [ + 64.95472909413651, + 29.90804831303389 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 29.90804831303389 + ], + [ + 65.06957177762018, + 29.71340057810544 + ], + [ + 65.18441446110387, + 29.90804831303389 + ], + [ + 64.95472909413651, + 29.90804831303389 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 30.297343782890795 + ], + [ + 65.18441446110387, + 30.297343782890795 + ], + [ + 65.06957177762018, + 30.491991517819248 + ], + [ + 64.95472909413651, + 30.297343782890795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 30.297343782890795 + ], + [ + 65.06957177762018, + 30.491991517819248 + ], + [ + 64.83988641065284, + 30.491991517819248 + ], + [ + 64.95472909413651, + 30.297343782890795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 30.297343782890795 + ], + [ + 64.83988641065284, + 30.491991517819248 + ], + [ + 64.72504372716915, + 30.297343782890795 + ], + [ + 64.95472909413651, + 30.297343782890795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 30.297343782890795 + ], + [ + 64.72504372716915, + 30.297343782890795 + ], + [ + 64.83988641065284, + 30.102696047962343 + ], + [ + 64.95472909413651, + 30.297343782890795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 30.297343782890795 + ], + [ + 64.83988641065284, + 30.102696047962343 + ], + [ + 65.06957177762018, + 30.102696047962343 + ], + [ + 64.95472909413651, + 30.297343782890795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 30.297343782890795 + ], + [ + 65.06957177762018, + 30.102696047962343 + ], + [ + 65.18441446110387, + 30.297343782890795 + ], + [ + 64.95472909413651, + 30.297343782890795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 30.686639252747703 + ], + [ + 65.18441446110387, + 30.686639252747703 + ], + [ + 65.06957177762018, + 30.881286987676155 + ], + [ + 64.95472909413651, + 30.686639252747703 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 30.686639252747703 + ], + [ + 65.06957177762018, + 30.881286987676155 + ], + [ + 64.83988641065284, + 30.881286987676155 + ], + [ + 64.95472909413651, + 30.686639252747703 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 30.686639252747703 + ], + [ + 64.83988641065284, + 30.881286987676155 + ], + [ + 64.72504372716915, + 30.686639252747703 + ], + [ + 64.95472909413651, + 30.686639252747703 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 30.686639252747703 + ], + [ + 64.72504372716915, + 30.686639252747703 + ], + [ + 64.83988641065284, + 30.49199151781925 + ], + [ + 64.95472909413651, + 30.686639252747703 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 30.686639252747703 + ], + [ + 64.83988641065284, + 30.49199151781925 + ], + [ + 65.06957177762018, + 30.49199151781925 + ], + [ + 64.95472909413651, + 30.686639252747703 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 30.686639252747703 + ], + [ + 65.06957177762018, + 30.49199151781925 + ], + [ + 65.18441446110387, + 30.686639252747703 + ], + [ + 64.95472909413651, + 30.686639252747703 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 31.07593472260461 + ], + [ + 65.18441446110387, + 31.07593472260461 + ], + [ + 65.06957177762018, + 31.270582457533063 + ], + [ + 64.95472909413651, + 31.07593472260461 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 31.07593472260461 + ], + [ + 65.06957177762018, + 31.270582457533063 + ], + [ + 64.83988641065284, + 31.270582457533063 + ], + [ + 64.95472909413651, + 31.07593472260461 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 31.07593472260461 + ], + [ + 64.83988641065284, + 31.270582457533063 + ], + [ + 64.72504372716915, + 31.07593472260461 + ], + [ + 64.95472909413651, + 31.07593472260461 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 31.07593472260461 + ], + [ + 64.72504372716915, + 31.07593472260461 + ], + [ + 64.83988641065284, + 30.88128698767616 + ], + [ + 64.95472909413651, + 31.07593472260461 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 31.07593472260461 + ], + [ + 64.83988641065284, + 30.88128698767616 + ], + [ + 65.06957177762018, + 30.88128698767616 + ], + [ + 64.95472909413651, + 31.07593472260461 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 31.07593472260461 + ], + [ + 65.06957177762018, + 30.88128698767616 + ], + [ + 65.18441446110387, + 31.07593472260461 + ], + [ + 64.95472909413651, + 31.07593472260461 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 31.465230192461515 + ], + [ + 65.18441446110387, + 31.465230192461515 + ], + [ + 65.06957177762018, + 31.659877927389967 + ], + [ + 64.95472909413651, + 31.465230192461515 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 31.465230192461515 + ], + [ + 65.06957177762018, + 31.659877927389967 + ], + [ + 64.83988641065284, + 31.659877927389967 + ], + [ + 64.95472909413651, + 31.465230192461515 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 31.465230192461515 + ], + [ + 64.83988641065284, + 31.659877927389967 + ], + [ + 64.72504372716915, + 31.465230192461515 + ], + [ + 64.95472909413651, + 31.465230192461515 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 31.465230192461515 + ], + [ + 64.72504372716915, + 31.465230192461515 + ], + [ + 64.83988641065284, + 31.270582457533063 + ], + [ + 64.95472909413651, + 31.465230192461515 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 31.465230192461515 + ], + [ + 64.83988641065284, + 31.270582457533063 + ], + [ + 65.06957177762018, + 31.270582457533063 + ], + [ + 64.95472909413651, + 31.465230192461515 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 31.465230192461515 + ], + [ + 65.06957177762018, + 31.270582457533063 + ], + [ + 65.18441446110387, + 31.465230192461515 + ], + [ + 64.95472909413651, + 31.465230192461515 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 31.854525662318423 + ], + [ + 65.18441446110387, + 31.854525662318423 + ], + [ + 65.06957177762018, + 32.049173397246875 + ], + [ + 64.95472909413651, + 31.854525662318423 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 31.854525662318423 + ], + [ + 65.06957177762018, + 32.049173397246875 + ], + [ + 64.83988641065284, + 32.049173397246875 + ], + [ + 64.95472909413651, + 31.854525662318423 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 31.854525662318423 + ], + [ + 64.83988641065284, + 32.049173397246875 + ], + [ + 64.72504372716915, + 31.854525662318423 + ], + [ + 64.95472909413651, + 31.854525662318423 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 31.854525662318423 + ], + [ + 64.72504372716915, + 31.854525662318423 + ], + [ + 64.83988641065284, + 31.65987792738997 + ], + [ + 64.95472909413651, + 31.854525662318423 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 31.854525662318423 + ], + [ + 64.83988641065284, + 31.65987792738997 + ], + [ + 65.06957177762018, + 31.65987792738997 + ], + [ + 64.95472909413651, + 31.854525662318423 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 31.854525662318423 + ], + [ + 65.06957177762018, + 31.65987792738997 + ], + [ + 65.18441446110387, + 31.854525662318423 + ], + [ + 64.95472909413651, + 31.854525662318423 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 32.24382113217533 + ], + [ + 65.18441446110387, + 32.24382113217533 + ], + [ + 65.06957177762018, + 32.43846886710378 + ], + [ + 64.95472909413651, + 32.24382113217533 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 32.24382113217533 + ], + [ + 65.06957177762018, + 32.43846886710378 + ], + [ + 64.83988641065284, + 32.43846886710378 + ], + [ + 64.95472909413651, + 32.24382113217533 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 32.24382113217533 + ], + [ + 64.83988641065284, + 32.43846886710378 + ], + [ + 64.72504372716915, + 32.24382113217533 + ], + [ + 64.95472909413651, + 32.24382113217533 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 32.24382113217533 + ], + [ + 64.72504372716915, + 32.24382113217533 + ], + [ + 64.83988641065284, + 32.049173397246875 + ], + [ + 64.95472909413651, + 32.24382113217533 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 32.24382113217533 + ], + [ + 64.83988641065284, + 32.049173397246875 + ], + [ + 65.06957177762018, + 32.049173397246875 + ], + [ + 64.95472909413651, + 32.24382113217533 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 32.24382113217533 + ], + [ + 65.06957177762018, + 32.049173397246875 + ], + [ + 65.18441446110387, + 32.24382113217533 + ], + [ + 64.95472909413651, + 32.24382113217533 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 32.63311660203224 + ], + [ + 65.18441446110387, + 32.63311660203224 + ], + [ + 65.06957177762018, + 32.82776433696069 + ], + [ + 64.95472909413651, + 32.63311660203224 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 32.63311660203224 + ], + [ + 65.06957177762018, + 32.82776433696069 + ], + [ + 64.83988641065284, + 32.82776433696069 + ], + [ + 64.95472909413651, + 32.63311660203224 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 32.63311660203224 + ], + [ + 64.83988641065284, + 32.82776433696069 + ], + [ + 64.72504372716915, + 32.63311660203224 + ], + [ + 64.95472909413651, + 32.63311660203224 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 32.63311660203224 + ], + [ + 64.72504372716915, + 32.63311660203224 + ], + [ + 64.83988641065284, + 32.438468867103786 + ], + [ + 64.95472909413651, + 32.63311660203224 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 32.63311660203224 + ], + [ + 64.83988641065284, + 32.438468867103786 + ], + [ + 65.06957177762018, + 32.438468867103786 + ], + [ + 64.95472909413651, + 32.63311660203224 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 32.63311660203224 + ], + [ + 65.06957177762018, + 32.438468867103786 + ], + [ + 65.18441446110387, + 32.63311660203224 + ], + [ + 64.95472909413651, + 32.63311660203224 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 33.02241207188914 + ], + [ + 65.18441446110387, + 33.02241207188914 + ], + [ + 65.06957177762018, + 33.217059806817595 + ], + [ + 64.95472909413651, + 33.02241207188914 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 33.02241207188914 + ], + [ + 65.06957177762018, + 33.217059806817595 + ], + [ + 64.83988641065284, + 33.217059806817595 + ], + [ + 64.95472909413651, + 33.02241207188914 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 33.02241207188914 + ], + [ + 64.83988641065284, + 33.217059806817595 + ], + [ + 64.72504372716915, + 33.02241207188914 + ], + [ + 64.95472909413651, + 33.02241207188914 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 33.02241207188914 + ], + [ + 64.72504372716915, + 33.02241207188914 + ], + [ + 64.83988641065284, + 32.82776433696069 + ], + [ + 64.95472909413651, + 33.02241207188914 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 33.02241207188914 + ], + [ + 64.83988641065284, + 32.82776433696069 + ], + [ + 65.06957177762018, + 32.82776433696069 + ], + [ + 64.95472909413651, + 33.02241207188914 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 33.02241207188914 + ], + [ + 65.06957177762018, + 32.82776433696069 + ], + [ + 65.18441446110387, + 33.02241207188914 + ], + [ + 64.95472909413651, + 33.02241207188914 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 33.41170754174605 + ], + [ + 65.18441446110387, + 33.41170754174605 + ], + [ + 65.06957177762018, + 33.6063552766745 + ], + [ + 64.95472909413651, + 33.41170754174605 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 33.41170754174605 + ], + [ + 65.06957177762018, + 33.6063552766745 + ], + [ + 64.83988641065284, + 33.6063552766745 + ], + [ + 64.95472909413651, + 33.41170754174605 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 33.41170754174605 + ], + [ + 64.83988641065284, + 33.6063552766745 + ], + [ + 64.72504372716915, + 33.41170754174605 + ], + [ + 64.95472909413651, + 33.41170754174605 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 33.41170754174605 + ], + [ + 64.72504372716915, + 33.41170754174605 + ], + [ + 64.83988641065284, + 33.217059806817595 + ], + [ + 64.95472909413651, + 33.41170754174605 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 33.41170754174605 + ], + [ + 64.83988641065284, + 33.217059806817595 + ], + [ + 65.06957177762018, + 33.217059806817595 + ], + [ + 64.95472909413651, + 33.41170754174605 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 33.41170754174605 + ], + [ + 65.06957177762018, + 33.217059806817595 + ], + [ + 65.18441446110387, + 33.41170754174605 + ], + [ + 64.95472909413651, + 33.41170754174605 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 33.80100301160295 + ], + [ + 65.18441446110387, + 33.80100301160295 + ], + [ + 65.06957177762018, + 33.9956507465314 + ], + [ + 64.95472909413651, + 33.80100301160295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 33.80100301160295 + ], + [ + 65.06957177762018, + 33.9956507465314 + ], + [ + 64.83988641065284, + 33.9956507465314 + ], + [ + 64.95472909413651, + 33.80100301160295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 33.80100301160295 + ], + [ + 64.83988641065284, + 33.9956507465314 + ], + [ + 64.72504372716915, + 33.80100301160295 + ], + [ + 64.95472909413651, + 33.80100301160295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 33.80100301160295 + ], + [ + 64.72504372716915, + 33.80100301160295 + ], + [ + 64.83988641065284, + 33.6063552766745 + ], + [ + 64.95472909413651, + 33.80100301160295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 33.80100301160295 + ], + [ + 64.83988641065284, + 33.6063552766745 + ], + [ + 65.06957177762018, + 33.6063552766745 + ], + [ + 64.95472909413651, + 33.80100301160295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 33.80100301160295 + ], + [ + 65.06957177762018, + 33.6063552766745 + ], + [ + 65.18441446110387, + 33.80100301160295 + ], + [ + 64.95472909413651, + 33.80100301160295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 34.190298481459855 + ], + [ + 65.18441446110387, + 34.190298481459855 + ], + [ + 65.06957177762018, + 34.38494621638831 + ], + [ + 64.95472909413651, + 34.190298481459855 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 34.190298481459855 + ], + [ + 65.06957177762018, + 34.38494621638831 + ], + [ + 64.83988641065284, + 34.38494621638831 + ], + [ + 64.95472909413651, + 34.190298481459855 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 34.190298481459855 + ], + [ + 64.83988641065284, + 34.38494621638831 + ], + [ + 64.72504372716915, + 34.190298481459855 + ], + [ + 64.95472909413651, + 34.190298481459855 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 34.190298481459855 + ], + [ + 64.72504372716915, + 34.190298481459855 + ], + [ + 64.83988641065284, + 33.9956507465314 + ], + [ + 64.95472909413651, + 34.190298481459855 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 34.190298481459855 + ], + [ + 64.83988641065284, + 33.9956507465314 + ], + [ + 65.06957177762018, + 33.9956507465314 + ], + [ + 64.95472909413651, + 34.190298481459855 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 34.190298481459855 + ], + [ + 65.06957177762018, + 33.9956507465314 + ], + [ + 65.18441446110387, + 34.190298481459855 + ], + [ + 64.95472909413651, + 34.190298481459855 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 34.57959395131677 + ], + [ + 65.18441446110387, + 34.57959395131677 + ], + [ + 65.06957177762018, + 34.77424168624522 + ], + [ + 64.95472909413651, + 34.57959395131677 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 34.57959395131677 + ], + [ + 65.06957177762018, + 34.77424168624522 + ], + [ + 64.83988641065284, + 34.77424168624522 + ], + [ + 64.95472909413651, + 34.57959395131677 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 34.57959395131677 + ], + [ + 64.83988641065284, + 34.77424168624522 + ], + [ + 64.72504372716915, + 34.57959395131677 + ], + [ + 64.95472909413651, + 34.57959395131677 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 34.57959395131677 + ], + [ + 64.72504372716915, + 34.57959395131677 + ], + [ + 64.83988641065284, + 34.384946216388315 + ], + [ + 64.95472909413651, + 34.57959395131677 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 34.57959395131677 + ], + [ + 64.83988641065284, + 34.384946216388315 + ], + [ + 65.06957177762018, + 34.384946216388315 + ], + [ + 64.95472909413651, + 34.57959395131677 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 34.57959395131677 + ], + [ + 65.06957177762018, + 34.384946216388315 + ], + [ + 65.18441446110387, + 34.57959395131677 + ], + [ + 64.95472909413651, + 34.57959395131677 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 34.96888942117368 + ], + [ + 65.18441446110387, + 34.96888942117368 + ], + [ + 65.06957177762018, + 35.16353715610213 + ], + [ + 64.95472909413651, + 34.96888942117368 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 34.96888942117368 + ], + [ + 65.06957177762018, + 35.16353715610213 + ], + [ + 64.83988641065284, + 35.16353715610213 + ], + [ + 64.95472909413651, + 34.96888942117368 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 34.96888942117368 + ], + [ + 64.83988641065284, + 35.16353715610213 + ], + [ + 64.72504372716915, + 34.96888942117368 + ], + [ + 64.95472909413651, + 34.96888942117368 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 34.96888942117368 + ], + [ + 64.72504372716915, + 34.96888942117368 + ], + [ + 64.83988641065284, + 34.774241686245226 + ], + [ + 64.95472909413651, + 34.96888942117368 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 34.96888942117368 + ], + [ + 64.83988641065284, + 34.774241686245226 + ], + [ + 65.06957177762018, + 34.774241686245226 + ], + [ + 64.95472909413651, + 34.96888942117368 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 34.96888942117368 + ], + [ + 65.06957177762018, + 34.774241686245226 + ], + [ + 65.18441446110387, + 34.96888942117368 + ], + [ + 64.95472909413651, + 34.96888942117368 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 35.35818489103058 + ], + [ + 65.18441446110387, + 35.35818489103058 + ], + [ + 65.06957177762018, + 35.552832625959034 + ], + [ + 64.95472909413651, + 35.35818489103058 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 35.35818489103058 + ], + [ + 65.06957177762018, + 35.552832625959034 + ], + [ + 64.83988641065284, + 35.552832625959034 + ], + [ + 64.95472909413651, + 35.35818489103058 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 35.35818489103058 + ], + [ + 64.83988641065284, + 35.552832625959034 + ], + [ + 64.72504372716915, + 35.35818489103058 + ], + [ + 64.95472909413651, + 35.35818489103058 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 35.35818489103058 + ], + [ + 64.72504372716915, + 35.35818489103058 + ], + [ + 64.83988641065284, + 35.16353715610213 + ], + [ + 64.95472909413651, + 35.35818489103058 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 35.35818489103058 + ], + [ + 64.83988641065284, + 35.16353715610213 + ], + [ + 65.06957177762018, + 35.16353715610213 + ], + [ + 64.95472909413651, + 35.35818489103058 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 35.35818489103058 + ], + [ + 65.06957177762018, + 35.16353715610213 + ], + [ + 65.18441446110387, + 35.35818489103058 + ], + [ + 64.95472909413651, + 35.35818489103058 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 35.74748036088749 + ], + [ + 65.18441446110387, + 35.74748036088749 + ], + [ + 65.06957177762018, + 35.94212809581594 + ], + [ + 64.95472909413651, + 35.74748036088749 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 35.74748036088749 + ], + [ + 65.06957177762018, + 35.94212809581594 + ], + [ + 64.83988641065284, + 35.94212809581594 + ], + [ + 64.95472909413651, + 35.74748036088749 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 35.74748036088749 + ], + [ + 64.83988641065284, + 35.94212809581594 + ], + [ + 64.72504372716915, + 35.74748036088749 + ], + [ + 64.95472909413651, + 35.74748036088749 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 35.74748036088749 + ], + [ + 64.72504372716915, + 35.74748036088749 + ], + [ + 64.83988641065284, + 35.552832625959034 + ], + [ + 64.95472909413651, + 35.74748036088749 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 35.74748036088749 + ], + [ + 64.83988641065284, + 35.552832625959034 + ], + [ + 65.06957177762018, + 35.552832625959034 + ], + [ + 64.95472909413651, + 35.74748036088749 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 35.74748036088749 + ], + [ + 65.06957177762018, + 35.552832625959034 + ], + [ + 65.18441446110387, + 35.74748036088749 + ], + [ + 64.95472909413651, + 35.74748036088749 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 36.13677583074439 + ], + [ + 65.18441446110387, + 36.13677583074439 + ], + [ + 65.06957177762018, + 36.33142356567284 + ], + [ + 64.95472909413651, + 36.13677583074439 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 36.13677583074439 + ], + [ + 65.06957177762018, + 36.33142356567284 + ], + [ + 64.83988641065284, + 36.33142356567284 + ], + [ + 64.95472909413651, + 36.13677583074439 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 36.13677583074439 + ], + [ + 64.83988641065284, + 36.33142356567284 + ], + [ + 64.72504372716915, + 36.13677583074439 + ], + [ + 64.95472909413651, + 36.13677583074439 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 36.13677583074439 + ], + [ + 64.72504372716915, + 36.13677583074439 + ], + [ + 64.83988641065284, + 35.94212809581594 + ], + [ + 64.95472909413651, + 36.13677583074439 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 36.13677583074439 + ], + [ + 64.83988641065284, + 35.94212809581594 + ], + [ + 65.06957177762018, + 35.94212809581594 + ], + [ + 64.95472909413651, + 36.13677583074439 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 36.13677583074439 + ], + [ + 65.06957177762018, + 35.94212809581594 + ], + [ + 65.18441446110387, + 36.13677583074439 + ], + [ + 64.95472909413651, + 36.13677583074439 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 36.526071300601295 + ], + [ + 65.18441446110387, + 36.526071300601295 + ], + [ + 65.06957177762018, + 36.72071903552975 + ], + [ + 64.95472909413651, + 36.526071300601295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 36.526071300601295 + ], + [ + 65.06957177762018, + 36.72071903552975 + ], + [ + 64.83988641065284, + 36.72071903552975 + ], + [ + 64.95472909413651, + 36.526071300601295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 36.526071300601295 + ], + [ + 64.83988641065284, + 36.72071903552975 + ], + [ + 64.72504372716915, + 36.526071300601295 + ], + [ + 64.95472909413651, + 36.526071300601295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 36.526071300601295 + ], + [ + 64.72504372716915, + 36.526071300601295 + ], + [ + 64.83988641065284, + 36.33142356567284 + ], + [ + 64.95472909413651, + 36.526071300601295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 36.526071300601295 + ], + [ + 64.83988641065284, + 36.33142356567284 + ], + [ + 65.06957177762018, + 36.33142356567284 + ], + [ + 64.95472909413651, + 36.526071300601295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 36.526071300601295 + ], + [ + 65.06957177762018, + 36.33142356567284 + ], + [ + 65.18441446110387, + 36.526071300601295 + ], + [ + 64.95472909413651, + 36.526071300601295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 36.915366770458206 + ], + [ + 65.18441446110387, + 36.915366770458206 + ], + [ + 65.06957177762018, + 37.11001450538666 + ], + [ + 64.95472909413651, + 36.915366770458206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 36.915366770458206 + ], + [ + 65.06957177762018, + 37.11001450538666 + ], + [ + 64.83988641065284, + 37.11001450538666 + ], + [ + 64.95472909413651, + 36.915366770458206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 36.915366770458206 + ], + [ + 64.83988641065284, + 37.11001450538666 + ], + [ + 64.72504372716915, + 36.915366770458206 + ], + [ + 64.95472909413651, + 36.915366770458206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 36.915366770458206 + ], + [ + 64.72504372716915, + 36.915366770458206 + ], + [ + 64.83988641065284, + 36.720719035529754 + ], + [ + 64.95472909413651, + 36.915366770458206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 36.915366770458206 + ], + [ + 64.83988641065284, + 36.720719035529754 + ], + [ + 65.06957177762018, + 36.720719035529754 + ], + [ + 64.95472909413651, + 36.915366770458206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 36.915366770458206 + ], + [ + 65.06957177762018, + 36.720719035529754 + ], + [ + 65.18441446110387, + 36.915366770458206 + ], + [ + 64.95472909413651, + 36.915366770458206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 37.30466224031511 + ], + [ + 65.18441446110387, + 37.30466224031511 + ], + [ + 65.06957177762018, + 37.49930997524356 + ], + [ + 64.95472909413651, + 37.30466224031511 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 37.30466224031511 + ], + [ + 65.06957177762018, + 37.49930997524356 + ], + [ + 64.83988641065284, + 37.49930997524356 + ], + [ + 64.95472909413651, + 37.30466224031511 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 37.30466224031511 + ], + [ + 64.83988641065284, + 37.49930997524356 + ], + [ + 64.72504372716915, + 37.30466224031511 + ], + [ + 64.95472909413651, + 37.30466224031511 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 37.30466224031511 + ], + [ + 64.72504372716915, + 37.30466224031511 + ], + [ + 64.83988641065284, + 37.11001450538666 + ], + [ + 64.95472909413651, + 37.30466224031511 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 37.30466224031511 + ], + [ + 64.83988641065284, + 37.11001450538666 + ], + [ + 65.06957177762018, + 37.11001450538666 + ], + [ + 64.95472909413651, + 37.30466224031511 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 37.30466224031511 + ], + [ + 65.06957177762018, + 37.11001450538666 + ], + [ + 65.18441446110387, + 37.30466224031511 + ], + [ + 64.95472909413651, + 37.30466224031511 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 37.69395771017202 + ], + [ + 65.18441446110387, + 37.69395771017202 + ], + [ + 65.06957177762018, + 37.888605445100474 + ], + [ + 64.95472909413651, + 37.69395771017202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 37.69395771017202 + ], + [ + 65.06957177762018, + 37.888605445100474 + ], + [ + 64.83988641065284, + 37.888605445100474 + ], + [ + 64.95472909413651, + 37.69395771017202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 37.69395771017202 + ], + [ + 64.83988641065284, + 37.888605445100474 + ], + [ + 64.72504372716915, + 37.69395771017202 + ], + [ + 64.95472909413651, + 37.69395771017202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 37.69395771017202 + ], + [ + 64.72504372716915, + 37.69395771017202 + ], + [ + 64.83988641065284, + 37.49930997524357 + ], + [ + 64.95472909413651, + 37.69395771017202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 37.69395771017202 + ], + [ + 64.83988641065284, + 37.49930997524357 + ], + [ + 65.06957177762018, + 37.49930997524357 + ], + [ + 64.95472909413651, + 37.69395771017202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 37.69395771017202 + ], + [ + 65.06957177762018, + 37.49930997524357 + ], + [ + 65.18441446110387, + 37.69395771017202 + ], + [ + 64.95472909413651, + 37.69395771017202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 38.083253180028926 + ], + [ + 65.18441446110387, + 38.083253180028926 + ], + [ + 65.06957177762018, + 38.27790091495738 + ], + [ + 64.95472909413651, + 38.083253180028926 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 38.083253180028926 + ], + [ + 65.06957177762018, + 38.27790091495738 + ], + [ + 64.83988641065284, + 38.27790091495738 + ], + [ + 64.95472909413651, + 38.083253180028926 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 38.083253180028926 + ], + [ + 64.83988641065284, + 38.27790091495738 + ], + [ + 64.72504372716915, + 38.083253180028926 + ], + [ + 64.95472909413651, + 38.083253180028926 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 38.083253180028926 + ], + [ + 64.72504372716915, + 38.083253180028926 + ], + [ + 64.83988641065284, + 37.888605445100474 + ], + [ + 64.95472909413651, + 38.083253180028926 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 38.083253180028926 + ], + [ + 64.83988641065284, + 37.888605445100474 + ], + [ + 65.06957177762018, + 37.888605445100474 + ], + [ + 64.95472909413651, + 38.083253180028926 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 38.083253180028926 + ], + [ + 65.06957177762018, + 37.888605445100474 + ], + [ + 65.18441446110387, + 38.083253180028926 + ], + [ + 64.95472909413651, + 38.083253180028926 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 38.47254864988583 + ], + [ + 65.18441446110387, + 38.47254864988583 + ], + [ + 65.06957177762018, + 38.66719638481428 + ], + [ + 64.95472909413651, + 38.47254864988583 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 38.47254864988583 + ], + [ + 65.06957177762018, + 38.66719638481428 + ], + [ + 64.83988641065284, + 38.66719638481428 + ], + [ + 64.95472909413651, + 38.47254864988583 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 38.47254864988583 + ], + [ + 64.83988641065284, + 38.66719638481428 + ], + [ + 64.72504372716915, + 38.47254864988583 + ], + [ + 64.95472909413651, + 38.47254864988583 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 38.47254864988583 + ], + [ + 64.72504372716915, + 38.47254864988583 + ], + [ + 64.83988641065284, + 38.27790091495738 + ], + [ + 64.95472909413651, + 38.47254864988583 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 38.47254864988583 + ], + [ + 64.83988641065284, + 38.27790091495738 + ], + [ + 65.06957177762018, + 38.27790091495738 + ], + [ + 64.95472909413651, + 38.47254864988583 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 38.47254864988583 + ], + [ + 65.06957177762018, + 38.27790091495738 + ], + [ + 65.18441446110387, + 38.47254864988583 + ], + [ + 64.95472909413651, + 38.47254864988583 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 38.861844119742734 + ], + [ + 65.18441446110387, + 38.861844119742734 + ], + [ + 65.06957177762018, + 39.05649185467119 + ], + [ + 64.95472909413651, + 38.861844119742734 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 38.861844119742734 + ], + [ + 65.06957177762018, + 39.05649185467119 + ], + [ + 64.83988641065284, + 39.05649185467119 + ], + [ + 64.95472909413651, + 38.861844119742734 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 38.861844119742734 + ], + [ + 64.83988641065284, + 39.05649185467119 + ], + [ + 64.72504372716915, + 38.861844119742734 + ], + [ + 64.95472909413651, + 38.861844119742734 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 38.861844119742734 + ], + [ + 64.72504372716915, + 38.861844119742734 + ], + [ + 64.83988641065284, + 38.66719638481428 + ], + [ + 64.95472909413651, + 38.861844119742734 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 38.861844119742734 + ], + [ + 64.83988641065284, + 38.66719638481428 + ], + [ + 65.06957177762018, + 38.66719638481428 + ], + [ + 64.95472909413651, + 38.861844119742734 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 38.861844119742734 + ], + [ + 65.06957177762018, + 38.66719638481428 + ], + [ + 65.18441446110387, + 38.861844119742734 + ], + [ + 64.95472909413651, + 38.861844119742734 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 39.25113958959964 + ], + [ + 65.18441446110387, + 39.25113958959964 + ], + [ + 65.06957177762018, + 39.44578732452809 + ], + [ + 64.95472909413651, + 39.25113958959964 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 39.25113958959964 + ], + [ + 65.06957177762018, + 39.44578732452809 + ], + [ + 64.83988641065284, + 39.44578732452809 + ], + [ + 64.95472909413651, + 39.25113958959964 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 39.25113958959964 + ], + [ + 64.83988641065284, + 39.44578732452809 + ], + [ + 64.72504372716915, + 39.25113958959964 + ], + [ + 64.95472909413651, + 39.25113958959964 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 39.25113958959964 + ], + [ + 64.72504372716915, + 39.25113958959964 + ], + [ + 64.83988641065284, + 39.05649185467119 + ], + [ + 64.95472909413651, + 39.25113958959964 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 39.25113958959964 + ], + [ + 64.83988641065284, + 39.05649185467119 + ], + [ + 65.06957177762018, + 39.05649185467119 + ], + [ + 64.95472909413651, + 39.25113958959964 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 39.25113958959964 + ], + [ + 65.06957177762018, + 39.05649185467119 + ], + [ + 65.18441446110387, + 39.25113958959964 + ], + [ + 64.95472909413651, + 39.25113958959964 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 39.64043505945655 + ], + [ + 65.18441446110387, + 39.64043505945655 + ], + [ + 65.06957177762018, + 39.835082794385 + ], + [ + 64.95472909413651, + 39.64043505945655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 39.64043505945655 + ], + [ + 65.06957177762018, + 39.835082794385 + ], + [ + 64.83988641065284, + 39.835082794385 + ], + [ + 64.95472909413651, + 39.64043505945655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 39.64043505945655 + ], + [ + 64.83988641065284, + 39.835082794385 + ], + [ + 64.72504372716915, + 39.64043505945655 + ], + [ + 64.95472909413651, + 39.64043505945655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 39.64043505945655 + ], + [ + 64.72504372716915, + 39.64043505945655 + ], + [ + 64.83988641065284, + 39.4457873245281 + ], + [ + 64.95472909413651, + 39.64043505945655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 39.64043505945655 + ], + [ + 64.83988641065284, + 39.4457873245281 + ], + [ + 65.06957177762018, + 39.4457873245281 + ], + [ + 64.95472909413651, + 39.64043505945655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 39.64043505945655 + ], + [ + 65.06957177762018, + 39.4457873245281 + ], + [ + 65.18441446110387, + 39.64043505945655 + ], + [ + 64.95472909413651, + 39.64043505945655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 40.029730529313454 + ], + [ + 65.18441446110387, + 40.029730529313454 + ], + [ + 65.06957177762018, + 40.224378264241906 + ], + [ + 64.95472909413651, + 40.029730529313454 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 40.029730529313454 + ], + [ + 65.06957177762018, + 40.224378264241906 + ], + [ + 64.83988641065284, + 40.224378264241906 + ], + [ + 64.95472909413651, + 40.029730529313454 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 40.029730529313454 + ], + [ + 64.83988641065284, + 40.224378264241906 + ], + [ + 64.72504372716915, + 40.029730529313454 + ], + [ + 64.95472909413651, + 40.029730529313454 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 40.029730529313454 + ], + [ + 64.72504372716915, + 40.029730529313454 + ], + [ + 64.83988641065284, + 39.835082794385 + ], + [ + 64.95472909413651, + 40.029730529313454 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 40.029730529313454 + ], + [ + 64.83988641065284, + 39.835082794385 + ], + [ + 65.06957177762018, + 39.835082794385 + ], + [ + 64.95472909413651, + 40.029730529313454 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 40.029730529313454 + ], + [ + 65.06957177762018, + 39.835082794385 + ], + [ + 65.18441446110387, + 40.029730529313454 + ], + [ + 64.95472909413651, + 40.029730529313454 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 40.419025999170366 + ], + [ + 65.18441446110387, + 40.419025999170366 + ], + [ + 65.06957177762018, + 40.61367373409882 + ], + [ + 64.95472909413651, + 40.419025999170366 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 40.419025999170366 + ], + [ + 65.06957177762018, + 40.61367373409882 + ], + [ + 64.83988641065284, + 40.61367373409882 + ], + [ + 64.95472909413651, + 40.419025999170366 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 40.419025999170366 + ], + [ + 64.83988641065284, + 40.61367373409882 + ], + [ + 64.72504372716915, + 40.419025999170366 + ], + [ + 64.95472909413651, + 40.419025999170366 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 40.419025999170366 + ], + [ + 64.72504372716915, + 40.419025999170366 + ], + [ + 64.83988641065284, + 40.22437826424191 + ], + [ + 64.95472909413651, + 40.419025999170366 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 40.419025999170366 + ], + [ + 64.83988641065284, + 40.22437826424191 + ], + [ + 65.06957177762018, + 40.22437826424191 + ], + [ + 64.95472909413651, + 40.419025999170366 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 40.419025999170366 + ], + [ + 65.06957177762018, + 40.22437826424191 + ], + [ + 65.18441446110387, + 40.419025999170366 + ], + [ + 64.95472909413651, + 40.419025999170366 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 40.80832146902727 + ], + [ + 65.18441446110387, + 40.80832146902727 + ], + [ + 65.06957177762018, + 41.00296920395572 + ], + [ + 64.95472909413651, + 40.80832146902727 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 40.80832146902727 + ], + [ + 65.06957177762018, + 41.00296920395572 + ], + [ + 64.83988641065284, + 41.00296920395572 + ], + [ + 64.95472909413651, + 40.80832146902727 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 40.80832146902727 + ], + [ + 64.83988641065284, + 41.00296920395572 + ], + [ + 64.72504372716915, + 40.80832146902727 + ], + [ + 64.95472909413651, + 40.80832146902727 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 40.80832146902727 + ], + [ + 64.72504372716915, + 40.80832146902727 + ], + [ + 64.83988641065284, + 40.61367373409882 + ], + [ + 64.95472909413651, + 40.80832146902727 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 40.80832146902727 + ], + [ + 64.83988641065284, + 40.61367373409882 + ], + [ + 65.06957177762018, + 40.61367373409882 + ], + [ + 64.95472909413651, + 40.80832146902727 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 40.80832146902727 + ], + [ + 65.06957177762018, + 40.61367373409882 + ], + [ + 65.18441446110387, + 40.80832146902727 + ], + [ + 64.95472909413651, + 40.80832146902727 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 41.197616938884174 + ], + [ + 65.18441446110387, + 41.197616938884174 + ], + [ + 65.06957177762018, + 41.392264673812626 + ], + [ + 64.95472909413651, + 41.197616938884174 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 41.197616938884174 + ], + [ + 65.06957177762018, + 41.392264673812626 + ], + [ + 64.83988641065284, + 41.392264673812626 + ], + [ + 64.95472909413651, + 41.197616938884174 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 41.197616938884174 + ], + [ + 64.83988641065284, + 41.392264673812626 + ], + [ + 64.72504372716915, + 41.197616938884174 + ], + [ + 64.95472909413651, + 41.197616938884174 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 41.197616938884174 + ], + [ + 64.72504372716915, + 41.197616938884174 + ], + [ + 64.83988641065284, + 41.00296920395572 + ], + [ + 64.95472909413651, + 41.197616938884174 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 41.197616938884174 + ], + [ + 64.83988641065284, + 41.00296920395572 + ], + [ + 65.06957177762018, + 41.00296920395572 + ], + [ + 64.95472909413651, + 41.197616938884174 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 41.197616938884174 + ], + [ + 65.06957177762018, + 41.00296920395572 + ], + [ + 65.18441446110387, + 41.197616938884174 + ], + [ + 64.95472909413651, + 41.197616938884174 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 41.58691240874108 + ], + [ + 65.18441446110387, + 41.58691240874108 + ], + [ + 65.06957177762018, + 41.78156014366953 + ], + [ + 64.95472909413651, + 41.58691240874108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 41.58691240874108 + ], + [ + 65.06957177762018, + 41.78156014366953 + ], + [ + 64.83988641065284, + 41.78156014366953 + ], + [ + 64.95472909413651, + 41.58691240874108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 41.58691240874108 + ], + [ + 64.83988641065284, + 41.78156014366953 + ], + [ + 64.72504372716915, + 41.58691240874108 + ], + [ + 64.95472909413651, + 41.58691240874108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 41.58691240874108 + ], + [ + 64.72504372716915, + 41.58691240874108 + ], + [ + 64.83988641065284, + 41.392264673812626 + ], + [ + 64.95472909413651, + 41.58691240874108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 41.58691240874108 + ], + [ + 64.83988641065284, + 41.392264673812626 + ], + [ + 65.06957177762018, + 41.392264673812626 + ], + [ + 64.95472909413651, + 41.58691240874108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 41.58691240874108 + ], + [ + 65.06957177762018, + 41.392264673812626 + ], + [ + 65.18441446110387, + 41.58691240874108 + ], + [ + 64.95472909413651, + 41.58691240874108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 41.97620787859798 + ], + [ + 65.18441446110387, + 41.97620787859798 + ], + [ + 65.06957177762018, + 42.170855613526435 + ], + [ + 64.95472909413651, + 41.97620787859798 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 41.97620787859798 + ], + [ + 65.06957177762018, + 42.170855613526435 + ], + [ + 64.83988641065284, + 42.170855613526435 + ], + [ + 64.95472909413651, + 41.97620787859798 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 41.97620787859798 + ], + [ + 64.83988641065284, + 42.170855613526435 + ], + [ + 64.72504372716915, + 41.97620787859798 + ], + [ + 64.95472909413651, + 41.97620787859798 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 41.97620787859798 + ], + [ + 64.72504372716915, + 41.97620787859798 + ], + [ + 64.83988641065284, + 41.78156014366953 + ], + [ + 64.95472909413651, + 41.97620787859798 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 41.97620787859798 + ], + [ + 64.83988641065284, + 41.78156014366953 + ], + [ + 65.06957177762018, + 41.78156014366953 + ], + [ + 64.95472909413651, + 41.97620787859798 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 41.97620787859798 + ], + [ + 65.06957177762018, + 41.78156014366953 + ], + [ + 65.18441446110387, + 41.97620787859798 + ], + [ + 64.95472909413651, + 41.97620787859798 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 42.365503348454894 + ], + [ + 65.18441446110387, + 42.365503348454894 + ], + [ + 65.06957177762018, + 42.560151083383346 + ], + [ + 64.95472909413651, + 42.365503348454894 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 42.365503348454894 + ], + [ + 65.06957177762018, + 42.560151083383346 + ], + [ + 64.83988641065284, + 42.560151083383346 + ], + [ + 64.95472909413651, + 42.365503348454894 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 42.365503348454894 + ], + [ + 64.83988641065284, + 42.560151083383346 + ], + [ + 64.72504372716915, + 42.365503348454894 + ], + [ + 64.95472909413651, + 42.365503348454894 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 42.365503348454894 + ], + [ + 64.72504372716915, + 42.365503348454894 + ], + [ + 64.83988641065284, + 42.17085561352644 + ], + [ + 64.95472909413651, + 42.365503348454894 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 42.365503348454894 + ], + [ + 64.83988641065284, + 42.17085561352644 + ], + [ + 65.06957177762018, + 42.17085561352644 + ], + [ + 64.95472909413651, + 42.365503348454894 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 42.365503348454894 + ], + [ + 65.06957177762018, + 42.17085561352644 + ], + [ + 65.18441446110387, + 42.365503348454894 + ], + [ + 64.95472909413651, + 42.365503348454894 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 42.754798818311805 + ], + [ + 65.18441446110387, + 42.754798818311805 + ], + [ + 65.06957177762018, + 42.94944655324026 + ], + [ + 64.95472909413651, + 42.754798818311805 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 42.754798818311805 + ], + [ + 65.06957177762018, + 42.94944655324026 + ], + [ + 64.83988641065284, + 42.94944655324026 + ], + [ + 64.95472909413651, + 42.754798818311805 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 42.754798818311805 + ], + [ + 64.83988641065284, + 42.94944655324026 + ], + [ + 64.72504372716915, + 42.754798818311805 + ], + [ + 64.95472909413651, + 42.754798818311805 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 42.754798818311805 + ], + [ + 64.72504372716915, + 42.754798818311805 + ], + [ + 64.83988641065284, + 42.56015108338335 + ], + [ + 64.95472909413651, + 42.754798818311805 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 42.754798818311805 + ], + [ + 64.83988641065284, + 42.56015108338335 + ], + [ + 65.06957177762018, + 42.56015108338335 + ], + [ + 64.95472909413651, + 42.754798818311805 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 42.754798818311805 + ], + [ + 65.06957177762018, + 42.56015108338335 + ], + [ + 65.18441446110387, + 42.754798818311805 + ], + [ + 64.95472909413651, + 42.754798818311805 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 43.14409428816871 + ], + [ + 65.18441446110387, + 43.14409428816871 + ], + [ + 65.06957177762018, + 43.33874202309716 + ], + [ + 64.95472909413651, + 43.14409428816871 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 43.14409428816871 + ], + [ + 65.06957177762018, + 43.33874202309716 + ], + [ + 64.83988641065284, + 43.33874202309716 + ], + [ + 64.95472909413651, + 43.14409428816871 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 43.14409428816871 + ], + [ + 64.83988641065284, + 43.33874202309716 + ], + [ + 64.72504372716915, + 43.14409428816871 + ], + [ + 64.95472909413651, + 43.14409428816871 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 43.14409428816871 + ], + [ + 64.72504372716915, + 43.14409428816871 + ], + [ + 64.83988641065284, + 42.94944655324026 + ], + [ + 64.95472909413651, + 43.14409428816871 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 43.14409428816871 + ], + [ + 64.83988641065284, + 42.94944655324026 + ], + [ + 65.06957177762018, + 42.94944655324026 + ], + [ + 64.95472909413651, + 43.14409428816871 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 43.14409428816871 + ], + [ + 65.06957177762018, + 42.94944655324026 + ], + [ + 65.18441446110387, + 43.14409428816871 + ], + [ + 64.95472909413651, + 43.14409428816871 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 43.53338975802561 + ], + [ + 65.18441446110387, + 43.53338975802561 + ], + [ + 65.06957177762018, + 43.728037492954066 + ], + [ + 64.95472909413651, + 43.53338975802561 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 43.53338975802561 + ], + [ + 65.06957177762018, + 43.728037492954066 + ], + [ + 64.83988641065284, + 43.728037492954066 + ], + [ + 64.95472909413651, + 43.53338975802561 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 43.53338975802561 + ], + [ + 64.83988641065284, + 43.728037492954066 + ], + [ + 64.72504372716915, + 43.53338975802561 + ], + [ + 64.95472909413651, + 43.53338975802561 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 43.53338975802561 + ], + [ + 64.72504372716915, + 43.53338975802561 + ], + [ + 64.83988641065284, + 43.33874202309716 + ], + [ + 64.95472909413651, + 43.53338975802561 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 43.53338975802561 + ], + [ + 64.83988641065284, + 43.33874202309716 + ], + [ + 65.06957177762018, + 43.33874202309716 + ], + [ + 64.95472909413651, + 43.53338975802561 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 43.53338975802561 + ], + [ + 65.06957177762018, + 43.33874202309716 + ], + [ + 65.18441446110387, + 43.53338975802561 + ], + [ + 64.95472909413651, + 43.53338975802561 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 43.92268522788252 + ], + [ + 65.18441446110387, + 43.92268522788252 + ], + [ + 65.06957177762018, + 44.11733296281097 + ], + [ + 64.95472909413651, + 43.92268522788252 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 43.92268522788252 + ], + [ + 65.06957177762018, + 44.11733296281097 + ], + [ + 64.83988641065284, + 44.11733296281097 + ], + [ + 64.95472909413651, + 43.92268522788252 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 43.92268522788252 + ], + [ + 64.83988641065284, + 44.11733296281097 + ], + [ + 64.72504372716915, + 43.92268522788252 + ], + [ + 64.95472909413651, + 43.92268522788252 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 43.92268522788252 + ], + [ + 64.72504372716915, + 43.92268522788252 + ], + [ + 64.83988641065284, + 43.728037492954066 + ], + [ + 64.95472909413651, + 43.92268522788252 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 43.92268522788252 + ], + [ + 64.83988641065284, + 43.728037492954066 + ], + [ + 65.06957177762018, + 43.728037492954066 + ], + [ + 64.95472909413651, + 43.92268522788252 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 43.92268522788252 + ], + [ + 65.06957177762018, + 43.728037492954066 + ], + [ + 65.18441446110387, + 43.92268522788252 + ], + [ + 64.95472909413651, + 43.92268522788252 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 44.31198069773942 + ], + [ + 65.18441446110387, + 44.31198069773942 + ], + [ + 65.06957177762018, + 44.506628432667874 + ], + [ + 64.95472909413651, + 44.31198069773942 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 44.31198069773942 + ], + [ + 65.06957177762018, + 44.506628432667874 + ], + [ + 64.83988641065284, + 44.506628432667874 + ], + [ + 64.95472909413651, + 44.31198069773942 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 44.31198069773942 + ], + [ + 64.83988641065284, + 44.506628432667874 + ], + [ + 64.72504372716915, + 44.31198069773942 + ], + [ + 64.95472909413651, + 44.31198069773942 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 44.31198069773942 + ], + [ + 64.72504372716915, + 44.31198069773942 + ], + [ + 64.83988641065284, + 44.11733296281097 + ], + [ + 64.95472909413651, + 44.31198069773942 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 44.31198069773942 + ], + [ + 64.83988641065284, + 44.11733296281097 + ], + [ + 65.06957177762018, + 44.11733296281097 + ], + [ + 64.95472909413651, + 44.31198069773942 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 44.31198069773942 + ], + [ + 65.06957177762018, + 44.11733296281097 + ], + [ + 65.18441446110387, + 44.31198069773942 + ], + [ + 64.95472909413651, + 44.31198069773942 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 44.701276167596326 + ], + [ + 65.18441446110387, + 44.701276167596326 + ], + [ + 65.06957177762018, + 44.89592390252478 + ], + [ + 64.95472909413651, + 44.701276167596326 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 44.701276167596326 + ], + [ + 65.06957177762018, + 44.89592390252478 + ], + [ + 64.83988641065284, + 44.89592390252478 + ], + [ + 64.95472909413651, + 44.701276167596326 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 44.701276167596326 + ], + [ + 64.83988641065284, + 44.89592390252478 + ], + [ + 64.72504372716915, + 44.701276167596326 + ], + [ + 64.95472909413651, + 44.701276167596326 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 44.701276167596326 + ], + [ + 64.72504372716915, + 44.701276167596326 + ], + [ + 64.83988641065284, + 44.506628432667874 + ], + [ + 64.95472909413651, + 44.701276167596326 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 44.701276167596326 + ], + [ + 64.83988641065284, + 44.506628432667874 + ], + [ + 65.06957177762018, + 44.506628432667874 + ], + [ + 64.95472909413651, + 44.701276167596326 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 44.701276167596326 + ], + [ + 65.06957177762018, + 44.506628432667874 + ], + [ + 65.18441446110387, + 44.701276167596326 + ], + [ + 64.95472909413651, + 44.701276167596326 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 45.090571637453245 + ], + [ + 65.18441446110387, + 45.090571637453245 + ], + [ + 65.06957177762018, + 45.2852193723817 + ], + [ + 64.95472909413651, + 45.090571637453245 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 45.090571637453245 + ], + [ + 65.06957177762018, + 45.2852193723817 + ], + [ + 64.83988641065284, + 45.2852193723817 + ], + [ + 64.95472909413651, + 45.090571637453245 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 45.090571637453245 + ], + [ + 64.83988641065284, + 45.2852193723817 + ], + [ + 64.72504372716915, + 45.090571637453245 + ], + [ + 64.95472909413651, + 45.090571637453245 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 45.090571637453245 + ], + [ + 64.72504372716915, + 45.090571637453245 + ], + [ + 64.83988641065284, + 44.89592390252479 + ], + [ + 64.95472909413651, + 45.090571637453245 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 45.090571637453245 + ], + [ + 64.83988641065284, + 44.89592390252479 + ], + [ + 65.06957177762018, + 44.89592390252479 + ], + [ + 64.95472909413651, + 45.090571637453245 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 45.090571637453245 + ], + [ + 65.06957177762018, + 44.89592390252479 + ], + [ + 65.18441446110387, + 45.090571637453245 + ], + [ + 64.95472909413651, + 45.090571637453245 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 45.47986710731015 + ], + [ + 65.18441446110387, + 45.47986710731015 + ], + [ + 65.06957177762018, + 45.6745148422386 + ], + [ + 64.95472909413651, + 45.47986710731015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 45.47986710731015 + ], + [ + 65.06957177762018, + 45.6745148422386 + ], + [ + 64.83988641065284, + 45.6745148422386 + ], + [ + 64.95472909413651, + 45.47986710731015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 45.47986710731015 + ], + [ + 64.83988641065284, + 45.6745148422386 + ], + [ + 64.72504372716915, + 45.47986710731015 + ], + [ + 64.95472909413651, + 45.47986710731015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 45.47986710731015 + ], + [ + 64.72504372716915, + 45.47986710731015 + ], + [ + 64.83988641065284, + 45.2852193723817 + ], + [ + 64.95472909413651, + 45.47986710731015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 45.47986710731015 + ], + [ + 64.83988641065284, + 45.2852193723817 + ], + [ + 65.06957177762018, + 45.2852193723817 + ], + [ + 64.95472909413651, + 45.47986710731015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 45.47986710731015 + ], + [ + 65.06957177762018, + 45.2852193723817 + ], + [ + 65.18441446110387, + 45.47986710731015 + ], + [ + 64.95472909413651, + 45.47986710731015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 45.86916257716705 + ], + [ + 65.18441446110387, + 45.86916257716705 + ], + [ + 65.06957177762018, + 46.063810312095505 + ], + [ + 64.95472909413651, + 45.86916257716705 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 45.86916257716705 + ], + [ + 65.06957177762018, + 46.063810312095505 + ], + [ + 64.83988641065284, + 46.063810312095505 + ], + [ + 64.95472909413651, + 45.86916257716705 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 45.86916257716705 + ], + [ + 64.83988641065284, + 46.063810312095505 + ], + [ + 64.72504372716915, + 45.86916257716705 + ], + [ + 64.95472909413651, + 45.86916257716705 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 45.86916257716705 + ], + [ + 64.72504372716915, + 45.86916257716705 + ], + [ + 64.83988641065284, + 45.6745148422386 + ], + [ + 64.95472909413651, + 45.86916257716705 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 45.86916257716705 + ], + [ + 64.83988641065284, + 45.6745148422386 + ], + [ + 65.06957177762018, + 45.6745148422386 + ], + [ + 64.95472909413651, + 45.86916257716705 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 45.86916257716705 + ], + [ + 65.06957177762018, + 45.6745148422386 + ], + [ + 65.18441446110387, + 45.86916257716705 + ], + [ + 64.95472909413651, + 45.86916257716705 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 46.25845804702396 + ], + [ + 65.18441446110387, + 46.25845804702396 + ], + [ + 65.06957177762018, + 46.45310578195241 + ], + [ + 64.95472909413651, + 46.25845804702396 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 46.25845804702396 + ], + [ + 65.06957177762018, + 46.45310578195241 + ], + [ + 64.83988641065284, + 46.45310578195241 + ], + [ + 64.95472909413651, + 46.25845804702396 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 46.25845804702396 + ], + [ + 64.83988641065284, + 46.45310578195241 + ], + [ + 64.72504372716915, + 46.25845804702396 + ], + [ + 64.95472909413651, + 46.25845804702396 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 46.25845804702396 + ], + [ + 64.72504372716915, + 46.25845804702396 + ], + [ + 64.83988641065284, + 46.063810312095505 + ], + [ + 64.95472909413651, + 46.25845804702396 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 46.25845804702396 + ], + [ + 64.83988641065284, + 46.063810312095505 + ], + [ + 65.06957177762018, + 46.063810312095505 + ], + [ + 64.95472909413651, + 46.25845804702396 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 46.25845804702396 + ], + [ + 65.06957177762018, + 46.063810312095505 + ], + [ + 65.18441446110387, + 46.25845804702396 + ], + [ + 64.95472909413651, + 46.25845804702396 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 46.64775351688086 + ], + [ + 65.18441446110387, + 46.64775351688086 + ], + [ + 65.06957177762018, + 46.842401251809314 + ], + [ + 64.95472909413651, + 46.64775351688086 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 46.64775351688086 + ], + [ + 65.06957177762018, + 46.842401251809314 + ], + [ + 64.83988641065284, + 46.842401251809314 + ], + [ + 64.95472909413651, + 46.64775351688086 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 46.64775351688086 + ], + [ + 64.83988641065284, + 46.842401251809314 + ], + [ + 64.72504372716915, + 46.64775351688086 + ], + [ + 64.95472909413651, + 46.64775351688086 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 46.64775351688086 + ], + [ + 64.72504372716915, + 46.64775351688086 + ], + [ + 64.83988641065284, + 46.45310578195241 + ], + [ + 64.95472909413651, + 46.64775351688086 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 46.64775351688086 + ], + [ + 64.83988641065284, + 46.45310578195241 + ], + [ + 65.06957177762018, + 46.45310578195241 + ], + [ + 64.95472909413651, + 46.64775351688086 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 46.64775351688086 + ], + [ + 65.06957177762018, + 46.45310578195241 + ], + [ + 65.18441446110387, + 46.64775351688086 + ], + [ + 64.95472909413651, + 46.64775351688086 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 47.037048986737766 + ], + [ + 65.18441446110387, + 47.037048986737766 + ], + [ + 65.06957177762018, + 47.23169672166622 + ], + [ + 64.95472909413651, + 47.037048986737766 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 47.037048986737766 + ], + [ + 65.06957177762018, + 47.23169672166622 + ], + [ + 64.83988641065284, + 47.23169672166622 + ], + [ + 64.95472909413651, + 47.037048986737766 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 47.037048986737766 + ], + [ + 64.83988641065284, + 47.23169672166622 + ], + [ + 64.72504372716915, + 47.037048986737766 + ], + [ + 64.95472909413651, + 47.037048986737766 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 47.037048986737766 + ], + [ + 64.72504372716915, + 47.037048986737766 + ], + [ + 64.83988641065284, + 46.842401251809314 + ], + [ + 64.95472909413651, + 47.037048986737766 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 47.037048986737766 + ], + [ + 64.83988641065284, + 46.842401251809314 + ], + [ + 65.06957177762018, + 46.842401251809314 + ], + [ + 64.95472909413651, + 47.037048986737766 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 47.037048986737766 + ], + [ + 65.06957177762018, + 46.842401251809314 + ], + [ + 65.18441446110387, + 47.037048986737766 + ], + [ + 64.95472909413651, + 47.037048986737766 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 47.42634445659467 + ], + [ + 65.18441446110387, + 47.42634445659467 + ], + [ + 65.06957177762018, + 47.62099219152312 + ], + [ + 64.95472909413651, + 47.42634445659467 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 47.42634445659467 + ], + [ + 65.06957177762018, + 47.62099219152312 + ], + [ + 64.83988641065284, + 47.62099219152312 + ], + [ + 64.95472909413651, + 47.42634445659467 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 47.42634445659467 + ], + [ + 64.83988641065284, + 47.62099219152312 + ], + [ + 64.72504372716915, + 47.42634445659467 + ], + [ + 64.95472909413651, + 47.42634445659467 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 47.42634445659467 + ], + [ + 64.72504372716915, + 47.42634445659467 + ], + [ + 64.83988641065284, + 47.23169672166622 + ], + [ + 64.95472909413651, + 47.42634445659467 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 47.42634445659467 + ], + [ + 64.83988641065284, + 47.23169672166622 + ], + [ + 65.06957177762018, + 47.23169672166622 + ], + [ + 64.95472909413651, + 47.42634445659467 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 47.42634445659467 + ], + [ + 65.06957177762018, + 47.23169672166622 + ], + [ + 65.18441446110387, + 47.42634445659467 + ], + [ + 64.95472909413651, + 47.42634445659467 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 47.81563992645159 + ], + [ + 65.18441446110387, + 47.81563992645159 + ], + [ + 65.06957177762018, + 48.01028766138004 + ], + [ + 64.95472909413651, + 47.81563992645159 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 47.81563992645159 + ], + [ + 65.06957177762018, + 48.01028766138004 + ], + [ + 64.83988641065284, + 48.01028766138004 + ], + [ + 64.95472909413651, + 47.81563992645159 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 47.81563992645159 + ], + [ + 64.83988641065284, + 48.01028766138004 + ], + [ + 64.72504372716915, + 47.81563992645159 + ], + [ + 64.95472909413651, + 47.81563992645159 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 47.81563992645159 + ], + [ + 64.72504372716915, + 47.81563992645159 + ], + [ + 64.83988641065284, + 47.620992191523136 + ], + [ + 64.95472909413651, + 47.81563992645159 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 47.81563992645159 + ], + [ + 64.83988641065284, + 47.620992191523136 + ], + [ + 65.06957177762018, + 47.620992191523136 + ], + [ + 64.95472909413651, + 47.81563992645159 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.95472909413651, + 47.81563992645159 + ], + [ + 65.06957177762018, + 47.620992191523136 + ], + [ + 65.18441446110387, + 47.81563992645159 + ], + [ + 64.95472909413651, + 47.81563992645159 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 11.805808964687746 + ], + [ + 65.52894251155492, + 11.805808964687746 + ], + [ + 65.41409982807123, + 12.0004566996162 + ], + [ + 65.29925714458756, + 11.805808964687746 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 11.805808964687746 + ], + [ + 65.41409982807123, + 12.0004566996162 + ], + [ + 65.18441446110388, + 12.0004566996162 + ], + [ + 65.29925714458756, + 11.805808964687746 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 11.805808964687746 + ], + [ + 65.18441446110388, + 12.0004566996162 + ], + [ + 65.0695717776202, + 11.805808964687746 + ], + [ + 65.29925714458756, + 11.805808964687746 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 11.805808964687746 + ], + [ + 65.0695717776202, + 11.805808964687746 + ], + [ + 65.18441446110388, + 11.611161229759292 + ], + [ + 65.29925714458756, + 11.805808964687746 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 11.805808964687746 + ], + [ + 65.18441446110388, + 11.611161229759292 + ], + [ + 65.41409982807123, + 11.611161229759292 + ], + [ + 65.29925714458756, + 11.805808964687746 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 11.805808964687746 + ], + [ + 65.41409982807123, + 11.611161229759292 + ], + [ + 65.52894251155492, + 11.805808964687746 + ], + [ + 65.29925714458756, + 11.805808964687746 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 12.195104434544652 + ], + [ + 65.52894251155492, + 12.195104434544652 + ], + [ + 65.41409982807123, + 12.389752169473105 + ], + [ + 65.29925714458756, + 12.195104434544652 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 12.195104434544652 + ], + [ + 65.41409982807123, + 12.389752169473105 + ], + [ + 65.18441446110388, + 12.389752169473105 + ], + [ + 65.29925714458756, + 12.195104434544652 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 12.195104434544652 + ], + [ + 65.18441446110388, + 12.389752169473105 + ], + [ + 65.0695717776202, + 12.195104434544652 + ], + [ + 65.29925714458756, + 12.195104434544652 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 12.195104434544652 + ], + [ + 65.0695717776202, + 12.195104434544652 + ], + [ + 65.18441446110388, + 12.000456699616198 + ], + [ + 65.29925714458756, + 12.195104434544652 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 12.195104434544652 + ], + [ + 65.18441446110388, + 12.000456699616198 + ], + [ + 65.41409982807123, + 12.000456699616198 + ], + [ + 65.29925714458756, + 12.195104434544652 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 12.195104434544652 + ], + [ + 65.41409982807123, + 12.000456699616198 + ], + [ + 65.52894251155492, + 12.195104434544652 + ], + [ + 65.29925714458756, + 12.195104434544652 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 12.58439990440156 + ], + [ + 65.52894251155492, + 12.58439990440156 + ], + [ + 65.41409982807123, + 12.779047639330013 + ], + [ + 65.29925714458756, + 12.58439990440156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 12.58439990440156 + ], + [ + 65.41409982807123, + 12.779047639330013 + ], + [ + 65.18441446110388, + 12.779047639330013 + ], + [ + 65.29925714458756, + 12.58439990440156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 12.58439990440156 + ], + [ + 65.18441446110388, + 12.779047639330013 + ], + [ + 65.0695717776202, + 12.58439990440156 + ], + [ + 65.29925714458756, + 12.58439990440156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 12.58439990440156 + ], + [ + 65.0695717776202, + 12.58439990440156 + ], + [ + 65.18441446110388, + 12.389752169473105 + ], + [ + 65.29925714458756, + 12.58439990440156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 12.58439990440156 + ], + [ + 65.18441446110388, + 12.389752169473105 + ], + [ + 65.41409982807123, + 12.389752169473105 + ], + [ + 65.29925714458756, + 12.58439990440156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 12.58439990440156 + ], + [ + 65.41409982807123, + 12.389752169473105 + ], + [ + 65.52894251155492, + 12.58439990440156 + ], + [ + 65.29925714458756, + 12.58439990440156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 12.973695374258465 + ], + [ + 65.52894251155492, + 12.973695374258465 + ], + [ + 65.41409982807123, + 13.16834310918692 + ], + [ + 65.29925714458756, + 12.973695374258465 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 12.973695374258465 + ], + [ + 65.41409982807123, + 13.16834310918692 + ], + [ + 65.18441446110388, + 13.16834310918692 + ], + [ + 65.29925714458756, + 12.973695374258465 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 12.973695374258465 + ], + [ + 65.18441446110388, + 13.16834310918692 + ], + [ + 65.0695717776202, + 12.973695374258465 + ], + [ + 65.29925714458756, + 12.973695374258465 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 12.973695374258465 + ], + [ + 65.0695717776202, + 12.973695374258465 + ], + [ + 65.18441446110388, + 12.779047639330011 + ], + [ + 65.29925714458756, + 12.973695374258465 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 12.973695374258465 + ], + [ + 65.18441446110388, + 12.779047639330011 + ], + [ + 65.41409982807123, + 12.779047639330011 + ], + [ + 65.29925714458756, + 12.973695374258465 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 12.973695374258465 + ], + [ + 65.41409982807123, + 12.779047639330011 + ], + [ + 65.52894251155492, + 12.973695374258465 + ], + [ + 65.29925714458756, + 12.973695374258465 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 13.362990844115371 + ], + [ + 65.52894251155492, + 13.362990844115371 + ], + [ + 65.41409982807123, + 13.557638579043825 + ], + [ + 65.29925714458756, + 13.362990844115371 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 13.362990844115371 + ], + [ + 65.41409982807123, + 13.557638579043825 + ], + [ + 65.18441446110388, + 13.557638579043825 + ], + [ + 65.29925714458756, + 13.362990844115371 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 13.362990844115371 + ], + [ + 65.18441446110388, + 13.557638579043825 + ], + [ + 65.0695717776202, + 13.362990844115371 + ], + [ + 65.29925714458756, + 13.362990844115371 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 13.362990844115371 + ], + [ + 65.0695717776202, + 13.362990844115371 + ], + [ + 65.18441446110388, + 13.168343109186917 + ], + [ + 65.29925714458756, + 13.362990844115371 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 13.362990844115371 + ], + [ + 65.18441446110388, + 13.168343109186917 + ], + [ + 65.41409982807123, + 13.168343109186917 + ], + [ + 65.29925714458756, + 13.362990844115371 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 13.362990844115371 + ], + [ + 65.41409982807123, + 13.168343109186917 + ], + [ + 65.52894251155492, + 13.362990844115371 + ], + [ + 65.29925714458756, + 13.362990844115371 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 13.752286313972277 + ], + [ + 65.52894251155492, + 13.752286313972277 + ], + [ + 65.41409982807123, + 13.946934048900731 + ], + [ + 65.29925714458756, + 13.752286313972277 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 13.752286313972277 + ], + [ + 65.41409982807123, + 13.946934048900731 + ], + [ + 65.18441446110388, + 13.946934048900731 + ], + [ + 65.29925714458756, + 13.752286313972277 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 13.752286313972277 + ], + [ + 65.18441446110388, + 13.946934048900731 + ], + [ + 65.0695717776202, + 13.752286313972277 + ], + [ + 65.29925714458756, + 13.752286313972277 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 13.752286313972277 + ], + [ + 65.0695717776202, + 13.752286313972277 + ], + [ + 65.18441446110388, + 13.557638579043823 + ], + [ + 65.29925714458756, + 13.752286313972277 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 13.752286313972277 + ], + [ + 65.18441446110388, + 13.557638579043823 + ], + [ + 65.41409982807123, + 13.557638579043823 + ], + [ + 65.29925714458756, + 13.752286313972277 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 13.752286313972277 + ], + [ + 65.41409982807123, + 13.557638579043823 + ], + [ + 65.52894251155492, + 13.752286313972277 + ], + [ + 65.29925714458756, + 13.752286313972277 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 14.141581783829183 + ], + [ + 65.52894251155492, + 14.141581783829183 + ], + [ + 65.41409982807123, + 14.336229518757637 + ], + [ + 65.29925714458756, + 14.141581783829183 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 14.141581783829183 + ], + [ + 65.41409982807123, + 14.336229518757637 + ], + [ + 65.18441446110388, + 14.336229518757637 + ], + [ + 65.29925714458756, + 14.141581783829183 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 14.141581783829183 + ], + [ + 65.18441446110388, + 14.336229518757637 + ], + [ + 65.0695717776202, + 14.141581783829183 + ], + [ + 65.29925714458756, + 14.141581783829183 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 14.141581783829183 + ], + [ + 65.0695717776202, + 14.141581783829183 + ], + [ + 65.18441446110388, + 13.94693404890073 + ], + [ + 65.29925714458756, + 14.141581783829183 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 14.141581783829183 + ], + [ + 65.18441446110388, + 13.94693404890073 + ], + [ + 65.41409982807123, + 13.94693404890073 + ], + [ + 65.29925714458756, + 14.141581783829183 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 14.141581783829183 + ], + [ + 65.41409982807123, + 13.94693404890073 + ], + [ + 65.52894251155492, + 14.141581783829183 + ], + [ + 65.29925714458756, + 14.141581783829183 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 14.530877253686091 + ], + [ + 65.52894251155492, + 14.530877253686091 + ], + [ + 65.41409982807123, + 14.725524988614545 + ], + [ + 65.29925714458756, + 14.530877253686091 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 14.530877253686091 + ], + [ + 65.41409982807123, + 14.725524988614545 + ], + [ + 65.18441446110388, + 14.725524988614545 + ], + [ + 65.29925714458756, + 14.530877253686091 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 14.530877253686091 + ], + [ + 65.18441446110388, + 14.725524988614545 + ], + [ + 65.0695717776202, + 14.530877253686091 + ], + [ + 65.29925714458756, + 14.530877253686091 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 14.530877253686091 + ], + [ + 65.0695717776202, + 14.530877253686091 + ], + [ + 65.18441446110388, + 14.336229518757637 + ], + [ + 65.29925714458756, + 14.530877253686091 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 14.530877253686091 + ], + [ + 65.18441446110388, + 14.336229518757637 + ], + [ + 65.41409982807123, + 14.336229518757637 + ], + [ + 65.29925714458756, + 14.530877253686091 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 14.530877253686091 + ], + [ + 65.41409982807123, + 14.336229518757637 + ], + [ + 65.52894251155492, + 14.530877253686091 + ], + [ + 65.29925714458756, + 14.530877253686091 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 14.920172723542997 + ], + [ + 65.52894251155492, + 14.920172723542997 + ], + [ + 65.41409982807123, + 15.114820458471451 + ], + [ + 65.29925714458756, + 14.920172723542997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 14.920172723542997 + ], + [ + 65.41409982807123, + 15.114820458471451 + ], + [ + 65.18441446110388, + 15.114820458471451 + ], + [ + 65.29925714458756, + 14.920172723542997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 14.920172723542997 + ], + [ + 65.18441446110388, + 15.114820458471451 + ], + [ + 65.0695717776202, + 14.920172723542997 + ], + [ + 65.29925714458756, + 14.920172723542997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 14.920172723542997 + ], + [ + 65.0695717776202, + 14.920172723542997 + ], + [ + 65.18441446110388, + 14.725524988614543 + ], + [ + 65.29925714458756, + 14.920172723542997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 14.920172723542997 + ], + [ + 65.18441446110388, + 14.725524988614543 + ], + [ + 65.41409982807123, + 14.725524988614543 + ], + [ + 65.29925714458756, + 14.920172723542997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 14.920172723542997 + ], + [ + 65.41409982807123, + 14.725524988614543 + ], + [ + 65.52894251155492, + 14.920172723542997 + ], + [ + 65.29925714458756, + 14.920172723542997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 15.309468193399903 + ], + [ + 65.52894251155492, + 15.309468193399903 + ], + [ + 65.41409982807123, + 15.504115928328357 + ], + [ + 65.29925714458756, + 15.309468193399903 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 15.309468193399903 + ], + [ + 65.41409982807123, + 15.504115928328357 + ], + [ + 65.18441446110388, + 15.504115928328357 + ], + [ + 65.29925714458756, + 15.309468193399903 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 15.309468193399903 + ], + [ + 65.18441446110388, + 15.504115928328357 + ], + [ + 65.0695717776202, + 15.309468193399903 + ], + [ + 65.29925714458756, + 15.309468193399903 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 15.309468193399903 + ], + [ + 65.0695717776202, + 15.309468193399903 + ], + [ + 65.18441446110388, + 15.11482045847145 + ], + [ + 65.29925714458756, + 15.309468193399903 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 15.309468193399903 + ], + [ + 65.18441446110388, + 15.11482045847145 + ], + [ + 65.41409982807123, + 15.11482045847145 + ], + [ + 65.29925714458756, + 15.309468193399903 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 15.309468193399903 + ], + [ + 65.41409982807123, + 15.11482045847145 + ], + [ + 65.52894251155492, + 15.309468193399903 + ], + [ + 65.29925714458756, + 15.309468193399903 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 15.69876366325681 + ], + [ + 65.52894251155492, + 15.69876366325681 + ], + [ + 65.41409982807123, + 15.893411398185265 + ], + [ + 65.29925714458756, + 15.69876366325681 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 15.69876366325681 + ], + [ + 65.41409982807123, + 15.893411398185265 + ], + [ + 65.18441446110388, + 15.893411398185265 + ], + [ + 65.29925714458756, + 15.69876366325681 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 15.69876366325681 + ], + [ + 65.18441446110388, + 15.893411398185265 + ], + [ + 65.0695717776202, + 15.69876366325681 + ], + [ + 65.29925714458756, + 15.69876366325681 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 15.69876366325681 + ], + [ + 65.0695717776202, + 15.69876366325681 + ], + [ + 65.18441446110388, + 15.504115928328357 + ], + [ + 65.29925714458756, + 15.69876366325681 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 15.69876366325681 + ], + [ + 65.18441446110388, + 15.504115928328357 + ], + [ + 65.41409982807123, + 15.504115928328357 + ], + [ + 65.29925714458756, + 15.69876366325681 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 15.69876366325681 + ], + [ + 65.41409982807123, + 15.504115928328357 + ], + [ + 65.52894251155492, + 15.69876366325681 + ], + [ + 65.29925714458756, + 15.69876366325681 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 16.088059133113717 + ], + [ + 65.52894251155492, + 16.088059133113717 + ], + [ + 65.41409982807123, + 16.28270686804217 + ], + [ + 65.29925714458756, + 16.088059133113717 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 16.088059133113717 + ], + [ + 65.41409982807123, + 16.28270686804217 + ], + [ + 65.18441446110388, + 16.28270686804217 + ], + [ + 65.29925714458756, + 16.088059133113717 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 16.088059133113717 + ], + [ + 65.18441446110388, + 16.28270686804217 + ], + [ + 65.0695717776202, + 16.088059133113717 + ], + [ + 65.29925714458756, + 16.088059133113717 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 16.088059133113717 + ], + [ + 65.0695717776202, + 16.088059133113717 + ], + [ + 65.18441446110388, + 15.893411398185263 + ], + [ + 65.29925714458756, + 16.088059133113717 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 16.088059133113717 + ], + [ + 65.18441446110388, + 15.893411398185263 + ], + [ + 65.41409982807123, + 15.893411398185263 + ], + [ + 65.29925714458756, + 16.088059133113717 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 16.088059133113717 + ], + [ + 65.41409982807123, + 15.893411398185263 + ], + [ + 65.52894251155492, + 16.088059133113717 + ], + [ + 65.29925714458756, + 16.088059133113717 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 16.477354602970625 + ], + [ + 65.52894251155492, + 16.477354602970625 + ], + [ + 65.41409982807123, + 16.672002337899077 + ], + [ + 65.29925714458756, + 16.477354602970625 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 16.477354602970625 + ], + [ + 65.41409982807123, + 16.672002337899077 + ], + [ + 65.18441446110388, + 16.672002337899077 + ], + [ + 65.29925714458756, + 16.477354602970625 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 16.477354602970625 + ], + [ + 65.18441446110388, + 16.672002337899077 + ], + [ + 65.0695717776202, + 16.477354602970625 + ], + [ + 65.29925714458756, + 16.477354602970625 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 16.477354602970625 + ], + [ + 65.0695717776202, + 16.477354602970625 + ], + [ + 65.18441446110388, + 16.282706868042172 + ], + [ + 65.29925714458756, + 16.477354602970625 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 16.477354602970625 + ], + [ + 65.18441446110388, + 16.282706868042172 + ], + [ + 65.41409982807123, + 16.282706868042172 + ], + [ + 65.29925714458756, + 16.477354602970625 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 16.477354602970625 + ], + [ + 65.41409982807123, + 16.282706868042172 + ], + [ + 65.52894251155492, + 16.477354602970625 + ], + [ + 65.29925714458756, + 16.477354602970625 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 16.86665007282753 + ], + [ + 65.52894251155492, + 16.86665007282753 + ], + [ + 65.41409982807123, + 17.06129780775598 + ], + [ + 65.29925714458756, + 16.86665007282753 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 16.86665007282753 + ], + [ + 65.41409982807123, + 17.06129780775598 + ], + [ + 65.18441446110388, + 17.06129780775598 + ], + [ + 65.29925714458756, + 16.86665007282753 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 16.86665007282753 + ], + [ + 65.18441446110388, + 17.06129780775598 + ], + [ + 65.0695717776202, + 16.86665007282753 + ], + [ + 65.29925714458756, + 16.86665007282753 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 16.86665007282753 + ], + [ + 65.0695717776202, + 16.86665007282753 + ], + [ + 65.18441446110388, + 16.672002337899077 + ], + [ + 65.29925714458756, + 16.86665007282753 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 16.86665007282753 + ], + [ + 65.18441446110388, + 16.672002337899077 + ], + [ + 65.41409982807123, + 16.672002337899077 + ], + [ + 65.29925714458756, + 16.86665007282753 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 16.86665007282753 + ], + [ + 65.41409982807123, + 16.672002337899077 + ], + [ + 65.52894251155492, + 16.86665007282753 + ], + [ + 65.29925714458756, + 16.86665007282753 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 17.255945542684437 + ], + [ + 65.52894251155492, + 17.255945542684437 + ], + [ + 65.41409982807123, + 17.45059327761289 + ], + [ + 65.29925714458756, + 17.255945542684437 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 17.255945542684437 + ], + [ + 65.41409982807123, + 17.45059327761289 + ], + [ + 65.18441446110388, + 17.45059327761289 + ], + [ + 65.29925714458756, + 17.255945542684437 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 17.255945542684437 + ], + [ + 65.18441446110388, + 17.45059327761289 + ], + [ + 65.0695717776202, + 17.255945542684437 + ], + [ + 65.29925714458756, + 17.255945542684437 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 17.255945542684437 + ], + [ + 65.0695717776202, + 17.255945542684437 + ], + [ + 65.18441446110388, + 17.061297807755984 + ], + [ + 65.29925714458756, + 17.255945542684437 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 17.255945542684437 + ], + [ + 65.18441446110388, + 17.061297807755984 + ], + [ + 65.41409982807123, + 17.061297807755984 + ], + [ + 65.29925714458756, + 17.255945542684437 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 17.255945542684437 + ], + [ + 65.41409982807123, + 17.061297807755984 + ], + [ + 65.52894251155492, + 17.255945542684437 + ], + [ + 65.29925714458756, + 17.255945542684437 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 17.64524101254134 + ], + [ + 65.52894251155492, + 17.64524101254134 + ], + [ + 65.41409982807123, + 17.839888747469793 + ], + [ + 65.29925714458756, + 17.64524101254134 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 17.64524101254134 + ], + [ + 65.41409982807123, + 17.839888747469793 + ], + [ + 65.18441446110388, + 17.839888747469793 + ], + [ + 65.29925714458756, + 17.64524101254134 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 17.64524101254134 + ], + [ + 65.18441446110388, + 17.839888747469793 + ], + [ + 65.0695717776202, + 17.64524101254134 + ], + [ + 65.29925714458756, + 17.64524101254134 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 17.64524101254134 + ], + [ + 65.0695717776202, + 17.64524101254134 + ], + [ + 65.18441446110388, + 17.45059327761289 + ], + [ + 65.29925714458756, + 17.64524101254134 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 17.64524101254134 + ], + [ + 65.18441446110388, + 17.45059327761289 + ], + [ + 65.41409982807123, + 17.45059327761289 + ], + [ + 65.29925714458756, + 17.64524101254134 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 17.64524101254134 + ], + [ + 65.41409982807123, + 17.45059327761289 + ], + [ + 65.52894251155492, + 17.64524101254134 + ], + [ + 65.29925714458756, + 17.64524101254134 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 18.03453648239825 + ], + [ + 65.52894251155492, + 18.03453648239825 + ], + [ + 65.41409982807123, + 18.2291842173267 + ], + [ + 65.29925714458756, + 18.03453648239825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 18.03453648239825 + ], + [ + 65.41409982807123, + 18.2291842173267 + ], + [ + 65.18441446110388, + 18.2291842173267 + ], + [ + 65.29925714458756, + 18.03453648239825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 18.03453648239825 + ], + [ + 65.18441446110388, + 18.2291842173267 + ], + [ + 65.0695717776202, + 18.03453648239825 + ], + [ + 65.29925714458756, + 18.03453648239825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 18.03453648239825 + ], + [ + 65.0695717776202, + 18.03453648239825 + ], + [ + 65.18441446110388, + 17.839888747469796 + ], + [ + 65.29925714458756, + 18.03453648239825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 18.03453648239825 + ], + [ + 65.18441446110388, + 17.839888747469796 + ], + [ + 65.41409982807123, + 17.839888747469796 + ], + [ + 65.29925714458756, + 18.03453648239825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 18.03453648239825 + ], + [ + 65.41409982807123, + 17.839888747469796 + ], + [ + 65.52894251155492, + 18.03453648239825 + ], + [ + 65.29925714458756, + 18.03453648239825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 18.423831952255156 + ], + [ + 65.52894251155492, + 18.423831952255156 + ], + [ + 65.41409982807123, + 18.61847968718361 + ], + [ + 65.29925714458756, + 18.423831952255156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 18.423831952255156 + ], + [ + 65.41409982807123, + 18.61847968718361 + ], + [ + 65.18441446110388, + 18.61847968718361 + ], + [ + 65.29925714458756, + 18.423831952255156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 18.423831952255156 + ], + [ + 65.18441446110388, + 18.61847968718361 + ], + [ + 65.0695717776202, + 18.423831952255156 + ], + [ + 65.29925714458756, + 18.423831952255156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 18.423831952255156 + ], + [ + 65.0695717776202, + 18.423831952255156 + ], + [ + 65.18441446110388, + 18.229184217326704 + ], + [ + 65.29925714458756, + 18.423831952255156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 18.423831952255156 + ], + [ + 65.18441446110388, + 18.229184217326704 + ], + [ + 65.41409982807123, + 18.229184217326704 + ], + [ + 65.29925714458756, + 18.423831952255156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 18.423831952255156 + ], + [ + 65.41409982807123, + 18.229184217326704 + ], + [ + 65.52894251155492, + 18.423831952255156 + ], + [ + 65.29925714458756, + 18.423831952255156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 18.81312742211206 + ], + [ + 65.52894251155492, + 18.81312742211206 + ], + [ + 65.41409982807123, + 19.007775157040513 + ], + [ + 65.29925714458756, + 18.81312742211206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 18.81312742211206 + ], + [ + 65.41409982807123, + 19.007775157040513 + ], + [ + 65.18441446110388, + 19.007775157040513 + ], + [ + 65.29925714458756, + 18.81312742211206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 18.81312742211206 + ], + [ + 65.18441446110388, + 19.007775157040513 + ], + [ + 65.0695717776202, + 18.81312742211206 + ], + [ + 65.29925714458756, + 18.81312742211206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 18.81312742211206 + ], + [ + 65.0695717776202, + 18.81312742211206 + ], + [ + 65.18441446110388, + 18.61847968718361 + ], + [ + 65.29925714458756, + 18.81312742211206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 18.81312742211206 + ], + [ + 65.18441446110388, + 18.61847968718361 + ], + [ + 65.41409982807123, + 18.61847968718361 + ], + [ + 65.29925714458756, + 18.81312742211206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 18.81312742211206 + ], + [ + 65.41409982807123, + 18.61847968718361 + ], + [ + 65.52894251155492, + 18.81312742211206 + ], + [ + 65.29925714458756, + 18.81312742211206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 19.20242289196897 + ], + [ + 65.52894251155492, + 19.20242289196897 + ], + [ + 65.41409982807123, + 19.39707062689742 + ], + [ + 65.29925714458756, + 19.20242289196897 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 19.20242289196897 + ], + [ + 65.41409982807123, + 19.39707062689742 + ], + [ + 65.18441446110388, + 19.39707062689742 + ], + [ + 65.29925714458756, + 19.20242289196897 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 19.20242289196897 + ], + [ + 65.18441446110388, + 19.39707062689742 + ], + [ + 65.0695717776202, + 19.20242289196897 + ], + [ + 65.29925714458756, + 19.20242289196897 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 19.20242289196897 + ], + [ + 65.0695717776202, + 19.20242289196897 + ], + [ + 65.18441446110388, + 19.007775157040516 + ], + [ + 65.29925714458756, + 19.20242289196897 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 19.20242289196897 + ], + [ + 65.18441446110388, + 19.007775157040516 + ], + [ + 65.41409982807123, + 19.007775157040516 + ], + [ + 65.29925714458756, + 19.20242289196897 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 19.20242289196897 + ], + [ + 65.41409982807123, + 19.007775157040516 + ], + [ + 65.52894251155492, + 19.20242289196897 + ], + [ + 65.29925714458756, + 19.20242289196897 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 19.591718361825876 + ], + [ + 65.52894251155492, + 19.591718361825876 + ], + [ + 65.41409982807123, + 19.78636609675433 + ], + [ + 65.29925714458756, + 19.591718361825876 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 19.591718361825876 + ], + [ + 65.41409982807123, + 19.78636609675433 + ], + [ + 65.18441446110388, + 19.78636609675433 + ], + [ + 65.29925714458756, + 19.591718361825876 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 19.591718361825876 + ], + [ + 65.18441446110388, + 19.78636609675433 + ], + [ + 65.0695717776202, + 19.591718361825876 + ], + [ + 65.29925714458756, + 19.591718361825876 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 19.591718361825876 + ], + [ + 65.0695717776202, + 19.591718361825876 + ], + [ + 65.18441446110388, + 19.397070626897424 + ], + [ + 65.29925714458756, + 19.591718361825876 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 19.591718361825876 + ], + [ + 65.18441446110388, + 19.397070626897424 + ], + [ + 65.41409982807123, + 19.397070626897424 + ], + [ + 65.29925714458756, + 19.591718361825876 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 19.591718361825876 + ], + [ + 65.41409982807123, + 19.397070626897424 + ], + [ + 65.52894251155492, + 19.591718361825876 + ], + [ + 65.29925714458756, + 19.591718361825876 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 19.98101383168278 + ], + [ + 65.52894251155492, + 19.98101383168278 + ], + [ + 65.41409982807123, + 20.175661566611232 + ], + [ + 65.29925714458756, + 19.98101383168278 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 19.98101383168278 + ], + [ + 65.41409982807123, + 20.175661566611232 + ], + [ + 65.18441446110388, + 20.175661566611232 + ], + [ + 65.29925714458756, + 19.98101383168278 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 19.98101383168278 + ], + [ + 65.18441446110388, + 20.175661566611232 + ], + [ + 65.0695717776202, + 19.98101383168278 + ], + [ + 65.29925714458756, + 19.98101383168278 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 19.98101383168278 + ], + [ + 65.0695717776202, + 19.98101383168278 + ], + [ + 65.18441446110388, + 19.78636609675433 + ], + [ + 65.29925714458756, + 19.98101383168278 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 19.98101383168278 + ], + [ + 65.18441446110388, + 19.78636609675433 + ], + [ + 65.41409982807123, + 19.78636609675433 + ], + [ + 65.29925714458756, + 19.98101383168278 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 19.98101383168278 + ], + [ + 65.41409982807123, + 19.78636609675433 + ], + [ + 65.52894251155492, + 19.98101383168278 + ], + [ + 65.29925714458756, + 19.98101383168278 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 20.370309301539685 + ], + [ + 65.52894251155492, + 20.370309301539685 + ], + [ + 65.41409982807123, + 20.564957036468137 + ], + [ + 65.29925714458756, + 20.370309301539685 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 20.370309301539685 + ], + [ + 65.41409982807123, + 20.564957036468137 + ], + [ + 65.18441446110388, + 20.564957036468137 + ], + [ + 65.29925714458756, + 20.370309301539685 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 20.370309301539685 + ], + [ + 65.18441446110388, + 20.564957036468137 + ], + [ + 65.0695717776202, + 20.370309301539685 + ], + [ + 65.29925714458756, + 20.370309301539685 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 20.370309301539685 + ], + [ + 65.0695717776202, + 20.370309301539685 + ], + [ + 65.18441446110388, + 20.175661566611232 + ], + [ + 65.29925714458756, + 20.370309301539685 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 20.370309301539685 + ], + [ + 65.18441446110388, + 20.175661566611232 + ], + [ + 65.41409982807123, + 20.175661566611232 + ], + [ + 65.29925714458756, + 20.370309301539685 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 20.370309301539685 + ], + [ + 65.41409982807123, + 20.175661566611232 + ], + [ + 65.52894251155492, + 20.370309301539685 + ], + [ + 65.29925714458756, + 20.370309301539685 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 20.759604771396592 + ], + [ + 65.52894251155492, + 20.759604771396592 + ], + [ + 65.41409982807123, + 20.954252506325044 + ], + [ + 65.29925714458756, + 20.759604771396592 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 20.759604771396592 + ], + [ + 65.41409982807123, + 20.954252506325044 + ], + [ + 65.18441446110388, + 20.954252506325044 + ], + [ + 65.29925714458756, + 20.759604771396592 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 20.759604771396592 + ], + [ + 65.18441446110388, + 20.954252506325044 + ], + [ + 65.0695717776202, + 20.759604771396592 + ], + [ + 65.29925714458756, + 20.759604771396592 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 20.759604771396592 + ], + [ + 65.0695717776202, + 20.759604771396592 + ], + [ + 65.18441446110388, + 20.56495703646814 + ], + [ + 65.29925714458756, + 20.759604771396592 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 20.759604771396592 + ], + [ + 65.18441446110388, + 20.56495703646814 + ], + [ + 65.41409982807123, + 20.56495703646814 + ], + [ + 65.29925714458756, + 20.759604771396592 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 20.759604771396592 + ], + [ + 65.41409982807123, + 20.56495703646814 + ], + [ + 65.52894251155492, + 20.759604771396592 + ], + [ + 65.29925714458756, + 20.759604771396592 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 21.1489002412535 + ], + [ + 65.52894251155492, + 21.1489002412535 + ], + [ + 65.41409982807123, + 21.343547976181952 + ], + [ + 65.29925714458756, + 21.1489002412535 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 21.1489002412535 + ], + [ + 65.41409982807123, + 21.343547976181952 + ], + [ + 65.18441446110388, + 21.343547976181952 + ], + [ + 65.29925714458756, + 21.1489002412535 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 21.1489002412535 + ], + [ + 65.18441446110388, + 21.343547976181952 + ], + [ + 65.0695717776202, + 21.1489002412535 + ], + [ + 65.29925714458756, + 21.1489002412535 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 21.1489002412535 + ], + [ + 65.0695717776202, + 21.1489002412535 + ], + [ + 65.18441446110388, + 20.954252506325048 + ], + [ + 65.29925714458756, + 21.1489002412535 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 21.1489002412535 + ], + [ + 65.18441446110388, + 20.954252506325048 + ], + [ + 65.41409982807123, + 20.954252506325048 + ], + [ + 65.29925714458756, + 21.1489002412535 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 21.1489002412535 + ], + [ + 65.41409982807123, + 20.954252506325048 + ], + [ + 65.52894251155492, + 21.1489002412535 + ], + [ + 65.29925714458756, + 21.1489002412535 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 21.538195711110404 + ], + [ + 65.52894251155492, + 21.538195711110404 + ], + [ + 65.41409982807123, + 21.732843446038856 + ], + [ + 65.29925714458756, + 21.538195711110404 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 21.538195711110404 + ], + [ + 65.41409982807123, + 21.732843446038856 + ], + [ + 65.18441446110388, + 21.732843446038856 + ], + [ + 65.29925714458756, + 21.538195711110404 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 21.538195711110404 + ], + [ + 65.18441446110388, + 21.732843446038856 + ], + [ + 65.0695717776202, + 21.538195711110404 + ], + [ + 65.29925714458756, + 21.538195711110404 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 21.538195711110404 + ], + [ + 65.0695717776202, + 21.538195711110404 + ], + [ + 65.18441446110388, + 21.343547976181952 + ], + [ + 65.29925714458756, + 21.538195711110404 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 21.538195711110404 + ], + [ + 65.18441446110388, + 21.343547976181952 + ], + [ + 65.41409982807123, + 21.343547976181952 + ], + [ + 65.29925714458756, + 21.538195711110404 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 21.538195711110404 + ], + [ + 65.41409982807123, + 21.343547976181952 + ], + [ + 65.52894251155492, + 21.538195711110404 + ], + [ + 65.29925714458756, + 21.538195711110404 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 21.927491180967312 + ], + [ + 65.52894251155492, + 21.927491180967312 + ], + [ + 65.41409982807123, + 22.122138915895764 + ], + [ + 65.29925714458756, + 21.927491180967312 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 21.927491180967312 + ], + [ + 65.41409982807123, + 22.122138915895764 + ], + [ + 65.18441446110388, + 22.122138915895764 + ], + [ + 65.29925714458756, + 21.927491180967312 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 21.927491180967312 + ], + [ + 65.18441446110388, + 22.122138915895764 + ], + [ + 65.0695717776202, + 21.927491180967312 + ], + [ + 65.29925714458756, + 21.927491180967312 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 21.927491180967312 + ], + [ + 65.0695717776202, + 21.927491180967312 + ], + [ + 65.18441446110388, + 21.73284344603886 + ], + [ + 65.29925714458756, + 21.927491180967312 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 21.927491180967312 + ], + [ + 65.18441446110388, + 21.73284344603886 + ], + [ + 65.41409982807123, + 21.73284344603886 + ], + [ + 65.29925714458756, + 21.927491180967312 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 21.927491180967312 + ], + [ + 65.41409982807123, + 21.73284344603886 + ], + [ + 65.52894251155492, + 21.927491180967312 + ], + [ + 65.29925714458756, + 21.927491180967312 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 22.31678665082422 + ], + [ + 65.52894251155492, + 22.31678665082422 + ], + [ + 65.41409982807123, + 22.511434385752672 + ], + [ + 65.29925714458756, + 22.31678665082422 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 22.31678665082422 + ], + [ + 65.41409982807123, + 22.511434385752672 + ], + [ + 65.18441446110388, + 22.511434385752672 + ], + [ + 65.29925714458756, + 22.31678665082422 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 22.31678665082422 + ], + [ + 65.18441446110388, + 22.511434385752672 + ], + [ + 65.0695717776202, + 22.31678665082422 + ], + [ + 65.29925714458756, + 22.31678665082422 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 22.31678665082422 + ], + [ + 65.0695717776202, + 22.31678665082422 + ], + [ + 65.18441446110388, + 22.122138915895768 + ], + [ + 65.29925714458756, + 22.31678665082422 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 22.31678665082422 + ], + [ + 65.18441446110388, + 22.122138915895768 + ], + [ + 65.41409982807123, + 22.122138915895768 + ], + [ + 65.29925714458756, + 22.31678665082422 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 22.31678665082422 + ], + [ + 65.41409982807123, + 22.122138915895768 + ], + [ + 65.52894251155492, + 22.31678665082422 + ], + [ + 65.29925714458756, + 22.31678665082422 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 22.706082120681124 + ], + [ + 65.52894251155492, + 22.706082120681124 + ], + [ + 65.41409982807123, + 22.900729855609576 + ], + [ + 65.29925714458756, + 22.706082120681124 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 22.706082120681124 + ], + [ + 65.41409982807123, + 22.900729855609576 + ], + [ + 65.18441446110388, + 22.900729855609576 + ], + [ + 65.29925714458756, + 22.706082120681124 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 22.706082120681124 + ], + [ + 65.18441446110388, + 22.900729855609576 + ], + [ + 65.0695717776202, + 22.706082120681124 + ], + [ + 65.29925714458756, + 22.706082120681124 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 22.706082120681124 + ], + [ + 65.0695717776202, + 22.706082120681124 + ], + [ + 65.18441446110388, + 22.511434385752672 + ], + [ + 65.29925714458756, + 22.706082120681124 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 22.706082120681124 + ], + [ + 65.18441446110388, + 22.511434385752672 + ], + [ + 65.41409982807123, + 22.511434385752672 + ], + [ + 65.29925714458756, + 22.706082120681124 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 22.706082120681124 + ], + [ + 65.41409982807123, + 22.511434385752672 + ], + [ + 65.52894251155492, + 22.706082120681124 + ], + [ + 65.29925714458756, + 22.706082120681124 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 23.095377590538032 + ], + [ + 65.52894251155492, + 23.095377590538032 + ], + [ + 65.41409982807123, + 23.290025325466484 + ], + [ + 65.29925714458756, + 23.095377590538032 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 23.095377590538032 + ], + [ + 65.41409982807123, + 23.290025325466484 + ], + [ + 65.18441446110388, + 23.290025325466484 + ], + [ + 65.29925714458756, + 23.095377590538032 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 23.095377590538032 + ], + [ + 65.18441446110388, + 23.290025325466484 + ], + [ + 65.0695717776202, + 23.095377590538032 + ], + [ + 65.29925714458756, + 23.095377590538032 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 23.095377590538032 + ], + [ + 65.0695717776202, + 23.095377590538032 + ], + [ + 65.18441446110388, + 22.90072985560958 + ], + [ + 65.29925714458756, + 23.095377590538032 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 23.095377590538032 + ], + [ + 65.18441446110388, + 22.90072985560958 + ], + [ + 65.41409982807123, + 22.90072985560958 + ], + [ + 65.29925714458756, + 23.095377590538032 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 23.095377590538032 + ], + [ + 65.41409982807123, + 22.90072985560958 + ], + [ + 65.52894251155492, + 23.095377590538032 + ], + [ + 65.29925714458756, + 23.095377590538032 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 23.48467306039494 + ], + [ + 65.52894251155492, + 23.48467306039494 + ], + [ + 65.41409982807123, + 23.67932079532339 + ], + [ + 65.29925714458756, + 23.48467306039494 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 23.48467306039494 + ], + [ + 65.41409982807123, + 23.67932079532339 + ], + [ + 65.18441446110388, + 23.67932079532339 + ], + [ + 65.29925714458756, + 23.48467306039494 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 23.48467306039494 + ], + [ + 65.18441446110388, + 23.67932079532339 + ], + [ + 65.0695717776202, + 23.48467306039494 + ], + [ + 65.29925714458756, + 23.48467306039494 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 23.48467306039494 + ], + [ + 65.0695717776202, + 23.48467306039494 + ], + [ + 65.18441446110388, + 23.290025325466488 + ], + [ + 65.29925714458756, + 23.48467306039494 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 23.48467306039494 + ], + [ + 65.18441446110388, + 23.290025325466488 + ], + [ + 65.41409982807123, + 23.290025325466488 + ], + [ + 65.29925714458756, + 23.48467306039494 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 23.48467306039494 + ], + [ + 65.41409982807123, + 23.290025325466488 + ], + [ + 65.52894251155492, + 23.48467306039494 + ], + [ + 65.29925714458756, + 23.48467306039494 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 23.873968530251844 + ], + [ + 65.52894251155492, + 23.873968530251844 + ], + [ + 65.41409982807123, + 24.068616265180296 + ], + [ + 65.29925714458756, + 23.873968530251844 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 23.873968530251844 + ], + [ + 65.41409982807123, + 24.068616265180296 + ], + [ + 65.18441446110388, + 24.068616265180296 + ], + [ + 65.29925714458756, + 23.873968530251844 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 23.873968530251844 + ], + [ + 65.18441446110388, + 24.068616265180296 + ], + [ + 65.0695717776202, + 23.873968530251844 + ], + [ + 65.29925714458756, + 23.873968530251844 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 23.873968530251844 + ], + [ + 65.0695717776202, + 23.873968530251844 + ], + [ + 65.18441446110388, + 23.67932079532339 + ], + [ + 65.29925714458756, + 23.873968530251844 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 23.873968530251844 + ], + [ + 65.18441446110388, + 23.67932079532339 + ], + [ + 65.41409982807123, + 23.67932079532339 + ], + [ + 65.29925714458756, + 23.873968530251844 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 23.873968530251844 + ], + [ + 65.41409982807123, + 23.67932079532339 + ], + [ + 65.52894251155492, + 23.873968530251844 + ], + [ + 65.29925714458756, + 23.873968530251844 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 24.263264000108748 + ], + [ + 65.52894251155492, + 24.263264000108748 + ], + [ + 65.41409982807123, + 24.4579117350372 + ], + [ + 65.29925714458756, + 24.263264000108748 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 24.263264000108748 + ], + [ + 65.41409982807123, + 24.4579117350372 + ], + [ + 65.18441446110388, + 24.4579117350372 + ], + [ + 65.29925714458756, + 24.263264000108748 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 24.263264000108748 + ], + [ + 65.18441446110388, + 24.4579117350372 + ], + [ + 65.0695717776202, + 24.263264000108748 + ], + [ + 65.29925714458756, + 24.263264000108748 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 24.263264000108748 + ], + [ + 65.0695717776202, + 24.263264000108748 + ], + [ + 65.18441446110388, + 24.068616265180296 + ], + [ + 65.29925714458756, + 24.263264000108748 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 24.263264000108748 + ], + [ + 65.18441446110388, + 24.068616265180296 + ], + [ + 65.41409982807123, + 24.068616265180296 + ], + [ + 65.29925714458756, + 24.263264000108748 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 24.263264000108748 + ], + [ + 65.41409982807123, + 24.068616265180296 + ], + [ + 65.52894251155492, + 24.263264000108748 + ], + [ + 65.29925714458756, + 24.263264000108748 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 24.652559469965656 + ], + [ + 65.52894251155492, + 24.652559469965656 + ], + [ + 65.41409982807123, + 24.847207204894108 + ], + [ + 65.29925714458756, + 24.652559469965656 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 24.652559469965656 + ], + [ + 65.41409982807123, + 24.847207204894108 + ], + [ + 65.18441446110388, + 24.847207204894108 + ], + [ + 65.29925714458756, + 24.652559469965656 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 24.652559469965656 + ], + [ + 65.18441446110388, + 24.847207204894108 + ], + [ + 65.0695717776202, + 24.652559469965656 + ], + [ + 65.29925714458756, + 24.652559469965656 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 24.652559469965656 + ], + [ + 65.0695717776202, + 24.652559469965656 + ], + [ + 65.18441446110388, + 24.457911735037204 + ], + [ + 65.29925714458756, + 24.652559469965656 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 24.652559469965656 + ], + [ + 65.18441446110388, + 24.457911735037204 + ], + [ + 65.41409982807123, + 24.457911735037204 + ], + [ + 65.29925714458756, + 24.652559469965656 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 24.652559469965656 + ], + [ + 65.41409982807123, + 24.457911735037204 + ], + [ + 65.52894251155492, + 24.652559469965656 + ], + [ + 65.29925714458756, + 24.652559469965656 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 25.041854939822564 + ], + [ + 65.52894251155492, + 25.041854939822564 + ], + [ + 65.41409982807123, + 25.236502674751016 + ], + [ + 65.29925714458756, + 25.041854939822564 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 25.041854939822564 + ], + [ + 65.41409982807123, + 25.236502674751016 + ], + [ + 65.18441446110388, + 25.236502674751016 + ], + [ + 65.29925714458756, + 25.041854939822564 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 25.041854939822564 + ], + [ + 65.18441446110388, + 25.236502674751016 + ], + [ + 65.0695717776202, + 25.041854939822564 + ], + [ + 65.29925714458756, + 25.041854939822564 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 25.041854939822564 + ], + [ + 65.0695717776202, + 25.041854939822564 + ], + [ + 65.18441446110388, + 24.84720720489411 + ], + [ + 65.29925714458756, + 25.041854939822564 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 25.041854939822564 + ], + [ + 65.18441446110388, + 24.84720720489411 + ], + [ + 65.41409982807123, + 24.84720720489411 + ], + [ + 65.29925714458756, + 25.041854939822564 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 25.041854939822564 + ], + [ + 65.41409982807123, + 24.84720720489411 + ], + [ + 65.52894251155492, + 25.041854939822564 + ], + [ + 65.29925714458756, + 25.041854939822564 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 25.431150409679468 + ], + [ + 65.52894251155492, + 25.431150409679468 + ], + [ + 65.41409982807123, + 25.62579814460792 + ], + [ + 65.29925714458756, + 25.431150409679468 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 25.431150409679468 + ], + [ + 65.41409982807123, + 25.62579814460792 + ], + [ + 65.18441446110388, + 25.62579814460792 + ], + [ + 65.29925714458756, + 25.431150409679468 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 25.431150409679468 + ], + [ + 65.18441446110388, + 25.62579814460792 + ], + [ + 65.0695717776202, + 25.431150409679468 + ], + [ + 65.29925714458756, + 25.431150409679468 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 25.431150409679468 + ], + [ + 65.0695717776202, + 25.431150409679468 + ], + [ + 65.18441446110388, + 25.236502674751016 + ], + [ + 65.29925714458756, + 25.431150409679468 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 25.431150409679468 + ], + [ + 65.18441446110388, + 25.236502674751016 + ], + [ + 65.41409982807123, + 25.236502674751016 + ], + [ + 65.29925714458756, + 25.431150409679468 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 25.431150409679468 + ], + [ + 65.41409982807123, + 25.236502674751016 + ], + [ + 65.52894251155492, + 25.431150409679468 + ], + [ + 65.29925714458756, + 25.431150409679468 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 25.820445879536376 + ], + [ + 65.52894251155492, + 25.820445879536376 + ], + [ + 65.41409982807123, + 26.015093614464828 + ], + [ + 65.29925714458756, + 25.820445879536376 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 25.820445879536376 + ], + [ + 65.41409982807123, + 26.015093614464828 + ], + [ + 65.18441446110388, + 26.015093614464828 + ], + [ + 65.29925714458756, + 25.820445879536376 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 25.820445879536376 + ], + [ + 65.18441446110388, + 26.015093614464828 + ], + [ + 65.0695717776202, + 25.820445879536376 + ], + [ + 65.29925714458756, + 25.820445879536376 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 25.820445879536376 + ], + [ + 65.0695717776202, + 25.820445879536376 + ], + [ + 65.18441446110388, + 25.625798144607923 + ], + [ + 65.29925714458756, + 25.820445879536376 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 25.820445879536376 + ], + [ + 65.18441446110388, + 25.625798144607923 + ], + [ + 65.41409982807123, + 25.625798144607923 + ], + [ + 65.29925714458756, + 25.820445879536376 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 25.820445879536376 + ], + [ + 65.41409982807123, + 25.625798144607923 + ], + [ + 65.52894251155492, + 25.820445879536376 + ], + [ + 65.29925714458756, + 25.820445879536376 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 26.209741349393283 + ], + [ + 65.52894251155492, + 26.209741349393283 + ], + [ + 65.41409982807123, + 26.404389084321735 + ], + [ + 65.29925714458756, + 26.209741349393283 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 26.209741349393283 + ], + [ + 65.41409982807123, + 26.404389084321735 + ], + [ + 65.18441446110388, + 26.404389084321735 + ], + [ + 65.29925714458756, + 26.209741349393283 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 26.209741349393283 + ], + [ + 65.18441446110388, + 26.404389084321735 + ], + [ + 65.0695717776202, + 26.209741349393283 + ], + [ + 65.29925714458756, + 26.209741349393283 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 26.209741349393283 + ], + [ + 65.0695717776202, + 26.209741349393283 + ], + [ + 65.18441446110388, + 26.01509361446483 + ], + [ + 65.29925714458756, + 26.209741349393283 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 26.209741349393283 + ], + [ + 65.18441446110388, + 26.01509361446483 + ], + [ + 65.41409982807123, + 26.01509361446483 + ], + [ + 65.29925714458756, + 26.209741349393283 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 26.209741349393283 + ], + [ + 65.41409982807123, + 26.01509361446483 + ], + [ + 65.52894251155492, + 26.209741349393283 + ], + [ + 65.29925714458756, + 26.209741349393283 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 26.599036819250188 + ], + [ + 65.52894251155492, + 26.599036819250188 + ], + [ + 65.41409982807123, + 26.79368455417864 + ], + [ + 65.29925714458756, + 26.599036819250188 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 26.599036819250188 + ], + [ + 65.41409982807123, + 26.79368455417864 + ], + [ + 65.18441446110388, + 26.79368455417864 + ], + [ + 65.29925714458756, + 26.599036819250188 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 26.599036819250188 + ], + [ + 65.18441446110388, + 26.79368455417864 + ], + [ + 65.0695717776202, + 26.599036819250188 + ], + [ + 65.29925714458756, + 26.599036819250188 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 26.599036819250188 + ], + [ + 65.0695717776202, + 26.599036819250188 + ], + [ + 65.18441446110388, + 26.404389084321735 + ], + [ + 65.29925714458756, + 26.599036819250188 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 26.599036819250188 + ], + [ + 65.18441446110388, + 26.404389084321735 + ], + [ + 65.41409982807123, + 26.404389084321735 + ], + [ + 65.29925714458756, + 26.599036819250188 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 26.599036819250188 + ], + [ + 65.41409982807123, + 26.404389084321735 + ], + [ + 65.52894251155492, + 26.599036819250188 + ], + [ + 65.29925714458756, + 26.599036819250188 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 26.988332289107095 + ], + [ + 65.52894251155492, + 26.988332289107095 + ], + [ + 65.41409982807123, + 27.182980024035547 + ], + [ + 65.29925714458756, + 26.988332289107095 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 26.988332289107095 + ], + [ + 65.41409982807123, + 27.182980024035547 + ], + [ + 65.18441446110388, + 27.182980024035547 + ], + [ + 65.29925714458756, + 26.988332289107095 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 26.988332289107095 + ], + [ + 65.18441446110388, + 27.182980024035547 + ], + [ + 65.0695717776202, + 26.988332289107095 + ], + [ + 65.29925714458756, + 26.988332289107095 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 26.988332289107095 + ], + [ + 65.0695717776202, + 26.988332289107095 + ], + [ + 65.18441446110388, + 26.793684554178643 + ], + [ + 65.29925714458756, + 26.988332289107095 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 26.988332289107095 + ], + [ + 65.18441446110388, + 26.793684554178643 + ], + [ + 65.41409982807123, + 26.793684554178643 + ], + [ + 65.29925714458756, + 26.988332289107095 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 26.988332289107095 + ], + [ + 65.41409982807123, + 26.793684554178643 + ], + [ + 65.52894251155492, + 26.988332289107095 + ], + [ + 65.29925714458756, + 26.988332289107095 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 27.377627758964003 + ], + [ + 65.52894251155492, + 27.377627758964003 + ], + [ + 65.41409982807123, + 27.572275493892455 + ], + [ + 65.29925714458756, + 27.377627758964003 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 27.377627758964003 + ], + [ + 65.41409982807123, + 27.572275493892455 + ], + [ + 65.18441446110388, + 27.572275493892455 + ], + [ + 65.29925714458756, + 27.377627758964003 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 27.377627758964003 + ], + [ + 65.18441446110388, + 27.572275493892455 + ], + [ + 65.0695717776202, + 27.377627758964003 + ], + [ + 65.29925714458756, + 27.377627758964003 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 27.377627758964003 + ], + [ + 65.0695717776202, + 27.377627758964003 + ], + [ + 65.18441446110388, + 27.18298002403555 + ], + [ + 65.29925714458756, + 27.377627758964003 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 27.377627758964003 + ], + [ + 65.18441446110388, + 27.18298002403555 + ], + [ + 65.41409982807123, + 27.18298002403555 + ], + [ + 65.29925714458756, + 27.377627758964003 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 27.377627758964003 + ], + [ + 65.41409982807123, + 27.18298002403555 + ], + [ + 65.52894251155492, + 27.377627758964003 + ], + [ + 65.29925714458756, + 27.377627758964003 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 27.766923228820907 + ], + [ + 65.52894251155492, + 27.766923228820907 + ], + [ + 65.41409982807123, + 27.96157096374936 + ], + [ + 65.29925714458756, + 27.766923228820907 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 27.766923228820907 + ], + [ + 65.41409982807123, + 27.96157096374936 + ], + [ + 65.18441446110388, + 27.96157096374936 + ], + [ + 65.29925714458756, + 27.766923228820907 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 27.766923228820907 + ], + [ + 65.18441446110388, + 27.96157096374936 + ], + [ + 65.0695717776202, + 27.766923228820907 + ], + [ + 65.29925714458756, + 27.766923228820907 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 27.766923228820907 + ], + [ + 65.0695717776202, + 27.766923228820907 + ], + [ + 65.18441446110388, + 27.572275493892455 + ], + [ + 65.29925714458756, + 27.766923228820907 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 27.766923228820907 + ], + [ + 65.18441446110388, + 27.572275493892455 + ], + [ + 65.41409982807123, + 27.572275493892455 + ], + [ + 65.29925714458756, + 27.766923228820907 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 27.766923228820907 + ], + [ + 65.41409982807123, + 27.572275493892455 + ], + [ + 65.52894251155492, + 27.766923228820907 + ], + [ + 65.29925714458756, + 27.766923228820907 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 28.156218698677815 + ], + [ + 65.52894251155492, + 28.156218698677815 + ], + [ + 65.41409982807123, + 28.350866433606267 + ], + [ + 65.29925714458756, + 28.156218698677815 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 28.156218698677815 + ], + [ + 65.41409982807123, + 28.350866433606267 + ], + [ + 65.18441446110388, + 28.350866433606267 + ], + [ + 65.29925714458756, + 28.156218698677815 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 28.156218698677815 + ], + [ + 65.18441446110388, + 28.350866433606267 + ], + [ + 65.0695717776202, + 28.156218698677815 + ], + [ + 65.29925714458756, + 28.156218698677815 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 28.156218698677815 + ], + [ + 65.0695717776202, + 28.156218698677815 + ], + [ + 65.18441446110388, + 27.961570963749363 + ], + [ + 65.29925714458756, + 28.156218698677815 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 28.156218698677815 + ], + [ + 65.18441446110388, + 27.961570963749363 + ], + [ + 65.41409982807123, + 27.961570963749363 + ], + [ + 65.29925714458756, + 28.156218698677815 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 28.156218698677815 + ], + [ + 65.41409982807123, + 27.961570963749363 + ], + [ + 65.52894251155492, + 28.156218698677815 + ], + [ + 65.29925714458756, + 28.156218698677815 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 28.54551416853472 + ], + [ + 65.52894251155492, + 28.54551416853472 + ], + [ + 65.41409982807123, + 28.74016190346317 + ], + [ + 65.29925714458756, + 28.54551416853472 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 28.54551416853472 + ], + [ + 65.41409982807123, + 28.74016190346317 + ], + [ + 65.18441446110388, + 28.74016190346317 + ], + [ + 65.29925714458756, + 28.54551416853472 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 28.54551416853472 + ], + [ + 65.18441446110388, + 28.74016190346317 + ], + [ + 65.0695717776202, + 28.54551416853472 + ], + [ + 65.29925714458756, + 28.54551416853472 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 28.54551416853472 + ], + [ + 65.0695717776202, + 28.54551416853472 + ], + [ + 65.18441446110388, + 28.350866433606267 + ], + [ + 65.29925714458756, + 28.54551416853472 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 28.54551416853472 + ], + [ + 65.18441446110388, + 28.350866433606267 + ], + [ + 65.41409982807123, + 28.350866433606267 + ], + [ + 65.29925714458756, + 28.54551416853472 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 28.54551416853472 + ], + [ + 65.41409982807123, + 28.350866433606267 + ], + [ + 65.52894251155492, + 28.54551416853472 + ], + [ + 65.29925714458756, + 28.54551416853472 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 28.934809638391627 + ], + [ + 65.52894251155492, + 28.934809638391627 + ], + [ + 65.41409982807123, + 29.12945737332008 + ], + [ + 65.29925714458756, + 28.934809638391627 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 28.934809638391627 + ], + [ + 65.41409982807123, + 29.12945737332008 + ], + [ + 65.18441446110388, + 29.12945737332008 + ], + [ + 65.29925714458756, + 28.934809638391627 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 28.934809638391627 + ], + [ + 65.18441446110388, + 29.12945737332008 + ], + [ + 65.0695717776202, + 28.934809638391627 + ], + [ + 65.29925714458756, + 28.934809638391627 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 28.934809638391627 + ], + [ + 65.0695717776202, + 28.934809638391627 + ], + [ + 65.18441446110388, + 28.740161903463175 + ], + [ + 65.29925714458756, + 28.934809638391627 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 28.934809638391627 + ], + [ + 65.18441446110388, + 28.740161903463175 + ], + [ + 65.41409982807123, + 28.740161903463175 + ], + [ + 65.29925714458756, + 28.934809638391627 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 28.934809638391627 + ], + [ + 65.41409982807123, + 28.740161903463175 + ], + [ + 65.52894251155492, + 28.934809638391627 + ], + [ + 65.29925714458756, + 28.934809638391627 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 29.32410510824853 + ], + [ + 65.52894251155492, + 29.32410510824853 + ], + [ + 65.41409982807123, + 29.518752843176983 + ], + [ + 65.29925714458756, + 29.32410510824853 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 29.32410510824853 + ], + [ + 65.41409982807123, + 29.518752843176983 + ], + [ + 65.18441446110388, + 29.518752843176983 + ], + [ + 65.29925714458756, + 29.32410510824853 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 29.32410510824853 + ], + [ + 65.18441446110388, + 29.518752843176983 + ], + [ + 65.0695717776202, + 29.32410510824853 + ], + [ + 65.29925714458756, + 29.32410510824853 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 29.32410510824853 + ], + [ + 65.0695717776202, + 29.32410510824853 + ], + [ + 65.18441446110388, + 29.12945737332008 + ], + [ + 65.29925714458756, + 29.32410510824853 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 29.32410510824853 + ], + [ + 65.18441446110388, + 29.12945737332008 + ], + [ + 65.41409982807123, + 29.12945737332008 + ], + [ + 65.29925714458756, + 29.32410510824853 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 29.32410510824853 + ], + [ + 65.41409982807123, + 29.12945737332008 + ], + [ + 65.52894251155492, + 29.32410510824853 + ], + [ + 65.29925714458756, + 29.32410510824853 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 29.71340057810544 + ], + [ + 65.52894251155492, + 29.71340057810544 + ], + [ + 65.41409982807123, + 29.90804831303389 + ], + [ + 65.29925714458756, + 29.71340057810544 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 29.71340057810544 + ], + [ + 65.41409982807123, + 29.90804831303389 + ], + [ + 65.18441446110388, + 29.90804831303389 + ], + [ + 65.29925714458756, + 29.71340057810544 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 29.71340057810544 + ], + [ + 65.18441446110388, + 29.90804831303389 + ], + [ + 65.0695717776202, + 29.71340057810544 + ], + [ + 65.29925714458756, + 29.71340057810544 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 29.71340057810544 + ], + [ + 65.0695717776202, + 29.71340057810544 + ], + [ + 65.18441446110388, + 29.518752843176987 + ], + [ + 65.29925714458756, + 29.71340057810544 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 29.71340057810544 + ], + [ + 65.18441446110388, + 29.518752843176987 + ], + [ + 65.41409982807123, + 29.518752843176987 + ], + [ + 65.29925714458756, + 29.71340057810544 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 29.71340057810544 + ], + [ + 65.41409982807123, + 29.518752843176987 + ], + [ + 65.52894251155492, + 29.71340057810544 + ], + [ + 65.29925714458756, + 29.71340057810544 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 30.102696047962343 + ], + [ + 65.52894251155492, + 30.102696047962343 + ], + [ + 65.41409982807123, + 30.297343782890795 + ], + [ + 65.29925714458756, + 30.102696047962343 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 30.102696047962343 + ], + [ + 65.41409982807123, + 30.297343782890795 + ], + [ + 65.18441446110388, + 30.297343782890795 + ], + [ + 65.29925714458756, + 30.102696047962343 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 30.102696047962343 + ], + [ + 65.18441446110388, + 30.297343782890795 + ], + [ + 65.0695717776202, + 30.102696047962343 + ], + [ + 65.29925714458756, + 30.102696047962343 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 30.102696047962343 + ], + [ + 65.0695717776202, + 30.102696047962343 + ], + [ + 65.18441446110388, + 29.90804831303389 + ], + [ + 65.29925714458756, + 30.102696047962343 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 30.102696047962343 + ], + [ + 65.18441446110388, + 29.90804831303389 + ], + [ + 65.41409982807123, + 29.90804831303389 + ], + [ + 65.29925714458756, + 30.102696047962343 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 30.102696047962343 + ], + [ + 65.41409982807123, + 29.90804831303389 + ], + [ + 65.52894251155492, + 30.102696047962343 + ], + [ + 65.29925714458756, + 30.102696047962343 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 30.49199151781925 + ], + [ + 65.52894251155492, + 30.49199151781925 + ], + [ + 65.41409982807123, + 30.686639252747703 + ], + [ + 65.29925714458756, + 30.49199151781925 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 30.49199151781925 + ], + [ + 65.41409982807123, + 30.686639252747703 + ], + [ + 65.18441446110388, + 30.686639252747703 + ], + [ + 65.29925714458756, + 30.49199151781925 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 30.49199151781925 + ], + [ + 65.18441446110388, + 30.686639252747703 + ], + [ + 65.0695717776202, + 30.49199151781925 + ], + [ + 65.29925714458756, + 30.49199151781925 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 30.49199151781925 + ], + [ + 65.0695717776202, + 30.49199151781925 + ], + [ + 65.18441446110388, + 30.2973437828908 + ], + [ + 65.29925714458756, + 30.49199151781925 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 30.49199151781925 + ], + [ + 65.18441446110388, + 30.2973437828908 + ], + [ + 65.41409982807123, + 30.2973437828908 + ], + [ + 65.29925714458756, + 30.49199151781925 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 30.49199151781925 + ], + [ + 65.41409982807123, + 30.2973437828908 + ], + [ + 65.52894251155492, + 30.49199151781925 + ], + [ + 65.29925714458756, + 30.49199151781925 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 30.88128698767616 + ], + [ + 65.52894251155492, + 30.88128698767616 + ], + [ + 65.41409982807123, + 31.07593472260461 + ], + [ + 65.29925714458756, + 30.88128698767616 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 30.88128698767616 + ], + [ + 65.41409982807123, + 31.07593472260461 + ], + [ + 65.18441446110388, + 31.07593472260461 + ], + [ + 65.29925714458756, + 30.88128698767616 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 30.88128698767616 + ], + [ + 65.18441446110388, + 31.07593472260461 + ], + [ + 65.0695717776202, + 30.88128698767616 + ], + [ + 65.29925714458756, + 30.88128698767616 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 30.88128698767616 + ], + [ + 65.0695717776202, + 30.88128698767616 + ], + [ + 65.18441446110388, + 30.686639252747707 + ], + [ + 65.29925714458756, + 30.88128698767616 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 30.88128698767616 + ], + [ + 65.18441446110388, + 30.686639252747707 + ], + [ + 65.41409982807123, + 30.686639252747707 + ], + [ + 65.29925714458756, + 30.88128698767616 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 30.88128698767616 + ], + [ + 65.41409982807123, + 30.686639252747707 + ], + [ + 65.52894251155492, + 30.88128698767616 + ], + [ + 65.29925714458756, + 30.88128698767616 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 31.270582457533063 + ], + [ + 65.52894251155492, + 31.270582457533063 + ], + [ + 65.41409982807123, + 31.465230192461515 + ], + [ + 65.29925714458756, + 31.270582457533063 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 31.270582457533063 + ], + [ + 65.41409982807123, + 31.465230192461515 + ], + [ + 65.18441446110388, + 31.465230192461515 + ], + [ + 65.29925714458756, + 31.270582457533063 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 31.270582457533063 + ], + [ + 65.18441446110388, + 31.465230192461515 + ], + [ + 65.0695717776202, + 31.270582457533063 + ], + [ + 65.29925714458756, + 31.270582457533063 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 31.270582457533063 + ], + [ + 65.0695717776202, + 31.270582457533063 + ], + [ + 65.18441446110388, + 31.07593472260461 + ], + [ + 65.29925714458756, + 31.270582457533063 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 31.270582457533063 + ], + [ + 65.18441446110388, + 31.07593472260461 + ], + [ + 65.41409982807123, + 31.07593472260461 + ], + [ + 65.29925714458756, + 31.270582457533063 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 31.270582457533063 + ], + [ + 65.41409982807123, + 31.07593472260461 + ], + [ + 65.52894251155492, + 31.270582457533063 + ], + [ + 65.29925714458756, + 31.270582457533063 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 31.65987792738997 + ], + [ + 65.52894251155492, + 31.65987792738997 + ], + [ + 65.41409982807123, + 31.854525662318423 + ], + [ + 65.29925714458756, + 31.65987792738997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 31.65987792738997 + ], + [ + 65.41409982807123, + 31.854525662318423 + ], + [ + 65.18441446110388, + 31.854525662318423 + ], + [ + 65.29925714458756, + 31.65987792738997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 31.65987792738997 + ], + [ + 65.18441446110388, + 31.854525662318423 + ], + [ + 65.0695717776202, + 31.65987792738997 + ], + [ + 65.29925714458756, + 31.65987792738997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 31.65987792738997 + ], + [ + 65.0695717776202, + 31.65987792738997 + ], + [ + 65.18441446110388, + 31.46523019246152 + ], + [ + 65.29925714458756, + 31.65987792738997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 31.65987792738997 + ], + [ + 65.18441446110388, + 31.46523019246152 + ], + [ + 65.41409982807123, + 31.46523019246152 + ], + [ + 65.29925714458756, + 31.65987792738997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 31.65987792738997 + ], + [ + 65.41409982807123, + 31.46523019246152 + ], + [ + 65.52894251155492, + 31.65987792738997 + ], + [ + 65.29925714458756, + 31.65987792738997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 32.049173397246875 + ], + [ + 65.52894251155492, + 32.049173397246875 + ], + [ + 65.41409982807123, + 32.24382113217533 + ], + [ + 65.29925714458756, + 32.049173397246875 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 32.049173397246875 + ], + [ + 65.41409982807123, + 32.24382113217533 + ], + [ + 65.18441446110388, + 32.24382113217533 + ], + [ + 65.29925714458756, + 32.049173397246875 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 32.049173397246875 + ], + [ + 65.18441446110388, + 32.24382113217533 + ], + [ + 65.0695717776202, + 32.049173397246875 + ], + [ + 65.29925714458756, + 32.049173397246875 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 32.049173397246875 + ], + [ + 65.0695717776202, + 32.049173397246875 + ], + [ + 65.18441446110388, + 31.854525662318423 + ], + [ + 65.29925714458756, + 32.049173397246875 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 32.049173397246875 + ], + [ + 65.18441446110388, + 31.854525662318423 + ], + [ + 65.41409982807123, + 31.854525662318423 + ], + [ + 65.29925714458756, + 32.049173397246875 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 32.049173397246875 + ], + [ + 65.41409982807123, + 31.854525662318423 + ], + [ + 65.52894251155492, + 32.049173397246875 + ], + [ + 65.29925714458756, + 32.049173397246875 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 32.438468867103786 + ], + [ + 65.52894251155492, + 32.438468867103786 + ], + [ + 65.41409982807123, + 32.63311660203224 + ], + [ + 65.29925714458756, + 32.438468867103786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 32.438468867103786 + ], + [ + 65.41409982807123, + 32.63311660203224 + ], + [ + 65.18441446110388, + 32.63311660203224 + ], + [ + 65.29925714458756, + 32.438468867103786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 32.438468867103786 + ], + [ + 65.18441446110388, + 32.63311660203224 + ], + [ + 65.0695717776202, + 32.438468867103786 + ], + [ + 65.29925714458756, + 32.438468867103786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 32.438468867103786 + ], + [ + 65.0695717776202, + 32.438468867103786 + ], + [ + 65.18441446110388, + 32.243821132175334 + ], + [ + 65.29925714458756, + 32.438468867103786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 32.438468867103786 + ], + [ + 65.18441446110388, + 32.243821132175334 + ], + [ + 65.41409982807123, + 32.243821132175334 + ], + [ + 65.29925714458756, + 32.438468867103786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 32.438468867103786 + ], + [ + 65.41409982807123, + 32.243821132175334 + ], + [ + 65.52894251155492, + 32.438468867103786 + ], + [ + 65.29925714458756, + 32.438468867103786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 32.82776433696069 + ], + [ + 65.52894251155492, + 32.82776433696069 + ], + [ + 65.41409982807123, + 33.02241207188914 + ], + [ + 65.29925714458756, + 32.82776433696069 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 32.82776433696069 + ], + [ + 65.41409982807123, + 33.02241207188914 + ], + [ + 65.18441446110388, + 33.02241207188914 + ], + [ + 65.29925714458756, + 32.82776433696069 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 32.82776433696069 + ], + [ + 65.18441446110388, + 33.02241207188914 + ], + [ + 65.0695717776202, + 32.82776433696069 + ], + [ + 65.29925714458756, + 32.82776433696069 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 32.82776433696069 + ], + [ + 65.0695717776202, + 32.82776433696069 + ], + [ + 65.18441446110388, + 32.63311660203224 + ], + [ + 65.29925714458756, + 32.82776433696069 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 32.82776433696069 + ], + [ + 65.18441446110388, + 32.63311660203224 + ], + [ + 65.41409982807123, + 32.63311660203224 + ], + [ + 65.29925714458756, + 32.82776433696069 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 32.82776433696069 + ], + [ + 65.41409982807123, + 32.63311660203224 + ], + [ + 65.52894251155492, + 32.82776433696069 + ], + [ + 65.29925714458756, + 32.82776433696069 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 33.217059806817595 + ], + [ + 65.52894251155492, + 33.217059806817595 + ], + [ + 65.41409982807123, + 33.41170754174605 + ], + [ + 65.29925714458756, + 33.217059806817595 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 33.217059806817595 + ], + [ + 65.41409982807123, + 33.41170754174605 + ], + [ + 65.18441446110388, + 33.41170754174605 + ], + [ + 65.29925714458756, + 33.217059806817595 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 33.217059806817595 + ], + [ + 65.18441446110388, + 33.41170754174605 + ], + [ + 65.0695717776202, + 33.217059806817595 + ], + [ + 65.29925714458756, + 33.217059806817595 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 33.217059806817595 + ], + [ + 65.0695717776202, + 33.217059806817595 + ], + [ + 65.18441446110388, + 33.02241207188914 + ], + [ + 65.29925714458756, + 33.217059806817595 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 33.217059806817595 + ], + [ + 65.18441446110388, + 33.02241207188914 + ], + [ + 65.41409982807123, + 33.02241207188914 + ], + [ + 65.29925714458756, + 33.217059806817595 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 33.217059806817595 + ], + [ + 65.41409982807123, + 33.02241207188914 + ], + [ + 65.52894251155492, + 33.217059806817595 + ], + [ + 65.29925714458756, + 33.217059806817595 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 33.6063552766745 + ], + [ + 65.52894251155492, + 33.6063552766745 + ], + [ + 65.41409982807123, + 33.80100301160295 + ], + [ + 65.29925714458756, + 33.6063552766745 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 33.6063552766745 + ], + [ + 65.41409982807123, + 33.80100301160295 + ], + [ + 65.18441446110388, + 33.80100301160295 + ], + [ + 65.29925714458756, + 33.6063552766745 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 33.6063552766745 + ], + [ + 65.18441446110388, + 33.80100301160295 + ], + [ + 65.0695717776202, + 33.6063552766745 + ], + [ + 65.29925714458756, + 33.6063552766745 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 33.6063552766745 + ], + [ + 65.0695717776202, + 33.6063552766745 + ], + [ + 65.18441446110388, + 33.41170754174605 + ], + [ + 65.29925714458756, + 33.6063552766745 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 33.6063552766745 + ], + [ + 65.18441446110388, + 33.41170754174605 + ], + [ + 65.41409982807123, + 33.41170754174605 + ], + [ + 65.29925714458756, + 33.6063552766745 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 33.6063552766745 + ], + [ + 65.41409982807123, + 33.41170754174605 + ], + [ + 65.52894251155492, + 33.6063552766745 + ], + [ + 65.29925714458756, + 33.6063552766745 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 33.9956507465314 + ], + [ + 65.52894251155492, + 33.9956507465314 + ], + [ + 65.41409982807123, + 34.190298481459855 + ], + [ + 65.29925714458756, + 33.9956507465314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 33.9956507465314 + ], + [ + 65.41409982807123, + 34.190298481459855 + ], + [ + 65.18441446110388, + 34.190298481459855 + ], + [ + 65.29925714458756, + 33.9956507465314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 33.9956507465314 + ], + [ + 65.18441446110388, + 34.190298481459855 + ], + [ + 65.0695717776202, + 33.9956507465314 + ], + [ + 65.29925714458756, + 33.9956507465314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 33.9956507465314 + ], + [ + 65.0695717776202, + 33.9956507465314 + ], + [ + 65.18441446110388, + 33.80100301160295 + ], + [ + 65.29925714458756, + 33.9956507465314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 33.9956507465314 + ], + [ + 65.18441446110388, + 33.80100301160295 + ], + [ + 65.41409982807123, + 33.80100301160295 + ], + [ + 65.29925714458756, + 33.9956507465314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 33.9956507465314 + ], + [ + 65.41409982807123, + 33.80100301160295 + ], + [ + 65.52894251155492, + 33.9956507465314 + ], + [ + 65.29925714458756, + 33.9956507465314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 34.384946216388315 + ], + [ + 65.52894251155492, + 34.384946216388315 + ], + [ + 65.41409982807123, + 34.57959395131677 + ], + [ + 65.29925714458756, + 34.384946216388315 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 34.384946216388315 + ], + [ + 65.41409982807123, + 34.57959395131677 + ], + [ + 65.18441446110388, + 34.57959395131677 + ], + [ + 65.29925714458756, + 34.384946216388315 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 34.384946216388315 + ], + [ + 65.18441446110388, + 34.57959395131677 + ], + [ + 65.0695717776202, + 34.384946216388315 + ], + [ + 65.29925714458756, + 34.384946216388315 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 34.384946216388315 + ], + [ + 65.0695717776202, + 34.384946216388315 + ], + [ + 65.18441446110388, + 34.19029848145986 + ], + [ + 65.29925714458756, + 34.384946216388315 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 34.384946216388315 + ], + [ + 65.18441446110388, + 34.19029848145986 + ], + [ + 65.41409982807123, + 34.19029848145986 + ], + [ + 65.29925714458756, + 34.384946216388315 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 34.384946216388315 + ], + [ + 65.41409982807123, + 34.19029848145986 + ], + [ + 65.52894251155492, + 34.384946216388315 + ], + [ + 65.29925714458756, + 34.384946216388315 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 34.774241686245226 + ], + [ + 65.52894251155492, + 34.774241686245226 + ], + [ + 65.41409982807123, + 34.96888942117368 + ], + [ + 65.29925714458756, + 34.774241686245226 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 34.774241686245226 + ], + [ + 65.41409982807123, + 34.96888942117368 + ], + [ + 65.18441446110388, + 34.96888942117368 + ], + [ + 65.29925714458756, + 34.774241686245226 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 34.774241686245226 + ], + [ + 65.18441446110388, + 34.96888942117368 + ], + [ + 65.0695717776202, + 34.774241686245226 + ], + [ + 65.29925714458756, + 34.774241686245226 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 34.774241686245226 + ], + [ + 65.0695717776202, + 34.774241686245226 + ], + [ + 65.18441446110388, + 34.579593951316774 + ], + [ + 65.29925714458756, + 34.774241686245226 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 34.774241686245226 + ], + [ + 65.18441446110388, + 34.579593951316774 + ], + [ + 65.41409982807123, + 34.579593951316774 + ], + [ + 65.29925714458756, + 34.774241686245226 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 34.774241686245226 + ], + [ + 65.41409982807123, + 34.579593951316774 + ], + [ + 65.52894251155492, + 34.774241686245226 + ], + [ + 65.29925714458756, + 34.774241686245226 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 35.16353715610213 + ], + [ + 65.52894251155492, + 35.16353715610213 + ], + [ + 65.41409982807123, + 35.35818489103058 + ], + [ + 65.29925714458756, + 35.16353715610213 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 35.16353715610213 + ], + [ + 65.41409982807123, + 35.35818489103058 + ], + [ + 65.18441446110388, + 35.35818489103058 + ], + [ + 65.29925714458756, + 35.16353715610213 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 35.16353715610213 + ], + [ + 65.18441446110388, + 35.35818489103058 + ], + [ + 65.0695717776202, + 35.16353715610213 + ], + [ + 65.29925714458756, + 35.16353715610213 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 35.16353715610213 + ], + [ + 65.0695717776202, + 35.16353715610213 + ], + [ + 65.18441446110388, + 34.96888942117368 + ], + [ + 65.29925714458756, + 35.16353715610213 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 35.16353715610213 + ], + [ + 65.18441446110388, + 34.96888942117368 + ], + [ + 65.41409982807123, + 34.96888942117368 + ], + [ + 65.29925714458756, + 35.16353715610213 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 35.16353715610213 + ], + [ + 65.41409982807123, + 34.96888942117368 + ], + [ + 65.52894251155492, + 35.16353715610213 + ], + [ + 65.29925714458756, + 35.16353715610213 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 35.552832625959034 + ], + [ + 65.52894251155492, + 35.552832625959034 + ], + [ + 65.41409982807123, + 35.74748036088749 + ], + [ + 65.29925714458756, + 35.552832625959034 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 35.552832625959034 + ], + [ + 65.41409982807123, + 35.74748036088749 + ], + [ + 65.18441446110388, + 35.74748036088749 + ], + [ + 65.29925714458756, + 35.552832625959034 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 35.552832625959034 + ], + [ + 65.18441446110388, + 35.74748036088749 + ], + [ + 65.0695717776202, + 35.552832625959034 + ], + [ + 65.29925714458756, + 35.552832625959034 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 35.552832625959034 + ], + [ + 65.0695717776202, + 35.552832625959034 + ], + [ + 65.18441446110388, + 35.35818489103058 + ], + [ + 65.29925714458756, + 35.552832625959034 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 35.552832625959034 + ], + [ + 65.18441446110388, + 35.35818489103058 + ], + [ + 65.41409982807123, + 35.35818489103058 + ], + [ + 65.29925714458756, + 35.552832625959034 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 35.552832625959034 + ], + [ + 65.41409982807123, + 35.35818489103058 + ], + [ + 65.52894251155492, + 35.552832625959034 + ], + [ + 65.29925714458756, + 35.552832625959034 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 35.94212809581594 + ], + [ + 65.52894251155492, + 35.94212809581594 + ], + [ + 65.41409982807123, + 36.13677583074439 + ], + [ + 65.29925714458756, + 35.94212809581594 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 35.94212809581594 + ], + [ + 65.41409982807123, + 36.13677583074439 + ], + [ + 65.18441446110388, + 36.13677583074439 + ], + [ + 65.29925714458756, + 35.94212809581594 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 35.94212809581594 + ], + [ + 65.18441446110388, + 36.13677583074439 + ], + [ + 65.0695717776202, + 35.94212809581594 + ], + [ + 65.29925714458756, + 35.94212809581594 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 35.94212809581594 + ], + [ + 65.0695717776202, + 35.94212809581594 + ], + [ + 65.18441446110388, + 35.74748036088749 + ], + [ + 65.29925714458756, + 35.94212809581594 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 35.94212809581594 + ], + [ + 65.18441446110388, + 35.74748036088749 + ], + [ + 65.41409982807123, + 35.74748036088749 + ], + [ + 65.29925714458756, + 35.94212809581594 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 35.94212809581594 + ], + [ + 65.41409982807123, + 35.74748036088749 + ], + [ + 65.52894251155492, + 35.94212809581594 + ], + [ + 65.29925714458756, + 35.94212809581594 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 36.33142356567284 + ], + [ + 65.52894251155492, + 36.33142356567284 + ], + [ + 65.41409982807123, + 36.526071300601295 + ], + [ + 65.29925714458756, + 36.33142356567284 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 36.33142356567284 + ], + [ + 65.41409982807123, + 36.526071300601295 + ], + [ + 65.18441446110388, + 36.526071300601295 + ], + [ + 65.29925714458756, + 36.33142356567284 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 36.33142356567284 + ], + [ + 65.18441446110388, + 36.526071300601295 + ], + [ + 65.0695717776202, + 36.33142356567284 + ], + [ + 65.29925714458756, + 36.33142356567284 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 36.33142356567284 + ], + [ + 65.0695717776202, + 36.33142356567284 + ], + [ + 65.18441446110388, + 36.13677583074439 + ], + [ + 65.29925714458756, + 36.33142356567284 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 36.33142356567284 + ], + [ + 65.18441446110388, + 36.13677583074439 + ], + [ + 65.41409982807123, + 36.13677583074439 + ], + [ + 65.29925714458756, + 36.33142356567284 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 36.33142356567284 + ], + [ + 65.41409982807123, + 36.13677583074439 + ], + [ + 65.52894251155492, + 36.33142356567284 + ], + [ + 65.29925714458756, + 36.33142356567284 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 36.720719035529754 + ], + [ + 65.52894251155492, + 36.720719035529754 + ], + [ + 65.41409982807123, + 36.915366770458206 + ], + [ + 65.29925714458756, + 36.720719035529754 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 36.720719035529754 + ], + [ + 65.41409982807123, + 36.915366770458206 + ], + [ + 65.18441446110388, + 36.915366770458206 + ], + [ + 65.29925714458756, + 36.720719035529754 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 36.720719035529754 + ], + [ + 65.18441446110388, + 36.915366770458206 + ], + [ + 65.0695717776202, + 36.720719035529754 + ], + [ + 65.29925714458756, + 36.720719035529754 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 36.720719035529754 + ], + [ + 65.0695717776202, + 36.720719035529754 + ], + [ + 65.18441446110388, + 36.5260713006013 + ], + [ + 65.29925714458756, + 36.720719035529754 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 36.720719035529754 + ], + [ + 65.18441446110388, + 36.5260713006013 + ], + [ + 65.41409982807123, + 36.5260713006013 + ], + [ + 65.29925714458756, + 36.720719035529754 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 36.720719035529754 + ], + [ + 65.41409982807123, + 36.5260713006013 + ], + [ + 65.52894251155492, + 36.720719035529754 + ], + [ + 65.29925714458756, + 36.720719035529754 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 37.11001450538666 + ], + [ + 65.52894251155492, + 37.11001450538666 + ], + [ + 65.41409982807123, + 37.30466224031511 + ], + [ + 65.29925714458756, + 37.11001450538666 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 37.11001450538666 + ], + [ + 65.41409982807123, + 37.30466224031511 + ], + [ + 65.18441446110388, + 37.30466224031511 + ], + [ + 65.29925714458756, + 37.11001450538666 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 37.11001450538666 + ], + [ + 65.18441446110388, + 37.30466224031511 + ], + [ + 65.0695717776202, + 37.11001450538666 + ], + [ + 65.29925714458756, + 37.11001450538666 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 37.11001450538666 + ], + [ + 65.0695717776202, + 37.11001450538666 + ], + [ + 65.18441446110388, + 36.915366770458206 + ], + [ + 65.29925714458756, + 37.11001450538666 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 37.11001450538666 + ], + [ + 65.18441446110388, + 36.915366770458206 + ], + [ + 65.41409982807123, + 36.915366770458206 + ], + [ + 65.29925714458756, + 37.11001450538666 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 37.11001450538666 + ], + [ + 65.41409982807123, + 36.915366770458206 + ], + [ + 65.52894251155492, + 37.11001450538666 + ], + [ + 65.29925714458756, + 37.11001450538666 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 37.49930997524357 + ], + [ + 65.52894251155492, + 37.49930997524357 + ], + [ + 65.41409982807123, + 37.69395771017202 + ], + [ + 65.29925714458756, + 37.49930997524357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 37.49930997524357 + ], + [ + 65.41409982807123, + 37.69395771017202 + ], + [ + 65.18441446110388, + 37.69395771017202 + ], + [ + 65.29925714458756, + 37.49930997524357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 37.49930997524357 + ], + [ + 65.18441446110388, + 37.69395771017202 + ], + [ + 65.0695717776202, + 37.49930997524357 + ], + [ + 65.29925714458756, + 37.49930997524357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 37.49930997524357 + ], + [ + 65.0695717776202, + 37.49930997524357 + ], + [ + 65.18441446110388, + 37.30466224031512 + ], + [ + 65.29925714458756, + 37.49930997524357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 37.49930997524357 + ], + [ + 65.18441446110388, + 37.30466224031512 + ], + [ + 65.41409982807123, + 37.30466224031512 + ], + [ + 65.29925714458756, + 37.49930997524357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 37.49930997524357 + ], + [ + 65.41409982807123, + 37.30466224031512 + ], + [ + 65.52894251155492, + 37.49930997524357 + ], + [ + 65.29925714458756, + 37.49930997524357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 37.888605445100474 + ], + [ + 65.52894251155492, + 37.888605445100474 + ], + [ + 65.41409982807123, + 38.083253180028926 + ], + [ + 65.29925714458756, + 37.888605445100474 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 37.888605445100474 + ], + [ + 65.41409982807123, + 38.083253180028926 + ], + [ + 65.18441446110388, + 38.083253180028926 + ], + [ + 65.29925714458756, + 37.888605445100474 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 37.888605445100474 + ], + [ + 65.18441446110388, + 38.083253180028926 + ], + [ + 65.0695717776202, + 37.888605445100474 + ], + [ + 65.29925714458756, + 37.888605445100474 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 37.888605445100474 + ], + [ + 65.0695717776202, + 37.888605445100474 + ], + [ + 65.18441446110388, + 37.69395771017202 + ], + [ + 65.29925714458756, + 37.888605445100474 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 37.888605445100474 + ], + [ + 65.18441446110388, + 37.69395771017202 + ], + [ + 65.41409982807123, + 37.69395771017202 + ], + [ + 65.29925714458756, + 37.888605445100474 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 37.888605445100474 + ], + [ + 65.41409982807123, + 37.69395771017202 + ], + [ + 65.52894251155492, + 37.888605445100474 + ], + [ + 65.29925714458756, + 37.888605445100474 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 38.27790091495738 + ], + [ + 65.52894251155492, + 38.27790091495738 + ], + [ + 65.41409982807123, + 38.47254864988583 + ], + [ + 65.29925714458756, + 38.27790091495738 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 38.27790091495738 + ], + [ + 65.41409982807123, + 38.47254864988583 + ], + [ + 65.18441446110388, + 38.47254864988583 + ], + [ + 65.29925714458756, + 38.27790091495738 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 38.27790091495738 + ], + [ + 65.18441446110388, + 38.47254864988583 + ], + [ + 65.0695717776202, + 38.27790091495738 + ], + [ + 65.29925714458756, + 38.27790091495738 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 38.27790091495738 + ], + [ + 65.0695717776202, + 38.27790091495738 + ], + [ + 65.18441446110388, + 38.083253180028926 + ], + [ + 65.29925714458756, + 38.27790091495738 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 38.27790091495738 + ], + [ + 65.18441446110388, + 38.083253180028926 + ], + [ + 65.41409982807123, + 38.083253180028926 + ], + [ + 65.29925714458756, + 38.27790091495738 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 38.27790091495738 + ], + [ + 65.41409982807123, + 38.083253180028926 + ], + [ + 65.52894251155492, + 38.27790091495738 + ], + [ + 65.29925714458756, + 38.27790091495738 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 38.66719638481428 + ], + [ + 65.52894251155492, + 38.66719638481428 + ], + [ + 65.41409982807123, + 38.861844119742734 + ], + [ + 65.29925714458756, + 38.66719638481428 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 38.66719638481428 + ], + [ + 65.41409982807123, + 38.861844119742734 + ], + [ + 65.18441446110388, + 38.861844119742734 + ], + [ + 65.29925714458756, + 38.66719638481428 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 38.66719638481428 + ], + [ + 65.18441446110388, + 38.861844119742734 + ], + [ + 65.0695717776202, + 38.66719638481428 + ], + [ + 65.29925714458756, + 38.66719638481428 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 38.66719638481428 + ], + [ + 65.0695717776202, + 38.66719638481428 + ], + [ + 65.18441446110388, + 38.47254864988583 + ], + [ + 65.29925714458756, + 38.66719638481428 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 38.66719638481428 + ], + [ + 65.18441446110388, + 38.47254864988583 + ], + [ + 65.41409982807123, + 38.47254864988583 + ], + [ + 65.29925714458756, + 38.66719638481428 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 38.66719638481428 + ], + [ + 65.41409982807123, + 38.47254864988583 + ], + [ + 65.52894251155492, + 38.66719638481428 + ], + [ + 65.29925714458756, + 38.66719638481428 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 39.05649185467119 + ], + [ + 65.52894251155492, + 39.05649185467119 + ], + [ + 65.41409982807123, + 39.25113958959964 + ], + [ + 65.29925714458756, + 39.05649185467119 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 39.05649185467119 + ], + [ + 65.41409982807123, + 39.25113958959964 + ], + [ + 65.18441446110388, + 39.25113958959964 + ], + [ + 65.29925714458756, + 39.05649185467119 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 39.05649185467119 + ], + [ + 65.18441446110388, + 39.25113958959964 + ], + [ + 65.0695717776202, + 39.05649185467119 + ], + [ + 65.29925714458756, + 39.05649185467119 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 39.05649185467119 + ], + [ + 65.0695717776202, + 39.05649185467119 + ], + [ + 65.18441446110388, + 38.861844119742734 + ], + [ + 65.29925714458756, + 39.05649185467119 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 39.05649185467119 + ], + [ + 65.18441446110388, + 38.861844119742734 + ], + [ + 65.41409982807123, + 38.861844119742734 + ], + [ + 65.29925714458756, + 39.05649185467119 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 39.05649185467119 + ], + [ + 65.41409982807123, + 38.861844119742734 + ], + [ + 65.52894251155492, + 39.05649185467119 + ], + [ + 65.29925714458756, + 39.05649185467119 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 39.4457873245281 + ], + [ + 65.52894251155492, + 39.4457873245281 + ], + [ + 65.41409982807123, + 39.64043505945655 + ], + [ + 65.29925714458756, + 39.4457873245281 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 39.4457873245281 + ], + [ + 65.41409982807123, + 39.64043505945655 + ], + [ + 65.18441446110388, + 39.64043505945655 + ], + [ + 65.29925714458756, + 39.4457873245281 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 39.4457873245281 + ], + [ + 65.18441446110388, + 39.64043505945655 + ], + [ + 65.0695717776202, + 39.4457873245281 + ], + [ + 65.29925714458756, + 39.4457873245281 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 39.4457873245281 + ], + [ + 65.0695717776202, + 39.4457873245281 + ], + [ + 65.18441446110388, + 39.251139589599646 + ], + [ + 65.29925714458756, + 39.4457873245281 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 39.4457873245281 + ], + [ + 65.18441446110388, + 39.251139589599646 + ], + [ + 65.41409982807123, + 39.251139589599646 + ], + [ + 65.29925714458756, + 39.4457873245281 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 39.4457873245281 + ], + [ + 65.41409982807123, + 39.251139589599646 + ], + [ + 65.52894251155492, + 39.4457873245281 + ], + [ + 65.29925714458756, + 39.4457873245281 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 39.835082794385 + ], + [ + 65.52894251155492, + 39.835082794385 + ], + [ + 65.41409982807123, + 40.029730529313454 + ], + [ + 65.29925714458756, + 39.835082794385 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 39.835082794385 + ], + [ + 65.41409982807123, + 40.029730529313454 + ], + [ + 65.18441446110388, + 40.029730529313454 + ], + [ + 65.29925714458756, + 39.835082794385 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 39.835082794385 + ], + [ + 65.18441446110388, + 40.029730529313454 + ], + [ + 65.0695717776202, + 39.835082794385 + ], + [ + 65.29925714458756, + 39.835082794385 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 39.835082794385 + ], + [ + 65.0695717776202, + 39.835082794385 + ], + [ + 65.18441446110388, + 39.64043505945655 + ], + [ + 65.29925714458756, + 39.835082794385 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 39.835082794385 + ], + [ + 65.18441446110388, + 39.64043505945655 + ], + [ + 65.41409982807123, + 39.64043505945655 + ], + [ + 65.29925714458756, + 39.835082794385 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 39.835082794385 + ], + [ + 65.41409982807123, + 39.64043505945655 + ], + [ + 65.52894251155492, + 39.835082794385 + ], + [ + 65.29925714458756, + 39.835082794385 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 40.22437826424191 + ], + [ + 65.52894251155492, + 40.22437826424191 + ], + [ + 65.41409982807123, + 40.419025999170366 + ], + [ + 65.29925714458756, + 40.22437826424191 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 40.22437826424191 + ], + [ + 65.41409982807123, + 40.419025999170366 + ], + [ + 65.18441446110388, + 40.419025999170366 + ], + [ + 65.29925714458756, + 40.22437826424191 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 40.22437826424191 + ], + [ + 65.18441446110388, + 40.419025999170366 + ], + [ + 65.0695717776202, + 40.22437826424191 + ], + [ + 65.29925714458756, + 40.22437826424191 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 40.22437826424191 + ], + [ + 65.0695717776202, + 40.22437826424191 + ], + [ + 65.18441446110388, + 40.02973052931346 + ], + [ + 65.29925714458756, + 40.22437826424191 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 40.22437826424191 + ], + [ + 65.18441446110388, + 40.02973052931346 + ], + [ + 65.41409982807123, + 40.02973052931346 + ], + [ + 65.29925714458756, + 40.22437826424191 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 40.22437826424191 + ], + [ + 65.41409982807123, + 40.02973052931346 + ], + [ + 65.52894251155492, + 40.22437826424191 + ], + [ + 65.29925714458756, + 40.22437826424191 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 40.61367373409882 + ], + [ + 65.52894251155492, + 40.61367373409882 + ], + [ + 65.41409982807123, + 40.80832146902727 + ], + [ + 65.29925714458756, + 40.61367373409882 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 40.61367373409882 + ], + [ + 65.41409982807123, + 40.80832146902727 + ], + [ + 65.18441446110388, + 40.80832146902727 + ], + [ + 65.29925714458756, + 40.61367373409882 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 40.61367373409882 + ], + [ + 65.18441446110388, + 40.80832146902727 + ], + [ + 65.0695717776202, + 40.61367373409882 + ], + [ + 65.29925714458756, + 40.61367373409882 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 40.61367373409882 + ], + [ + 65.0695717776202, + 40.61367373409882 + ], + [ + 65.18441446110388, + 40.419025999170366 + ], + [ + 65.29925714458756, + 40.61367373409882 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 40.61367373409882 + ], + [ + 65.18441446110388, + 40.419025999170366 + ], + [ + 65.41409982807123, + 40.419025999170366 + ], + [ + 65.29925714458756, + 40.61367373409882 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 40.61367373409882 + ], + [ + 65.41409982807123, + 40.419025999170366 + ], + [ + 65.52894251155492, + 40.61367373409882 + ], + [ + 65.29925714458756, + 40.61367373409882 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 41.00296920395572 + ], + [ + 65.52894251155492, + 41.00296920395572 + ], + [ + 65.41409982807123, + 41.197616938884174 + ], + [ + 65.29925714458756, + 41.00296920395572 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 41.00296920395572 + ], + [ + 65.41409982807123, + 41.197616938884174 + ], + [ + 65.18441446110388, + 41.197616938884174 + ], + [ + 65.29925714458756, + 41.00296920395572 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 41.00296920395572 + ], + [ + 65.18441446110388, + 41.197616938884174 + ], + [ + 65.0695717776202, + 41.00296920395572 + ], + [ + 65.29925714458756, + 41.00296920395572 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 41.00296920395572 + ], + [ + 65.0695717776202, + 41.00296920395572 + ], + [ + 65.18441446110388, + 40.80832146902727 + ], + [ + 65.29925714458756, + 41.00296920395572 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 41.00296920395572 + ], + [ + 65.18441446110388, + 40.80832146902727 + ], + [ + 65.41409982807123, + 40.80832146902727 + ], + [ + 65.29925714458756, + 41.00296920395572 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 41.00296920395572 + ], + [ + 65.41409982807123, + 40.80832146902727 + ], + [ + 65.52894251155492, + 41.00296920395572 + ], + [ + 65.29925714458756, + 41.00296920395572 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 41.392264673812626 + ], + [ + 65.52894251155492, + 41.392264673812626 + ], + [ + 65.41409982807123, + 41.58691240874108 + ], + [ + 65.29925714458756, + 41.392264673812626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 41.392264673812626 + ], + [ + 65.41409982807123, + 41.58691240874108 + ], + [ + 65.18441446110388, + 41.58691240874108 + ], + [ + 65.29925714458756, + 41.392264673812626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 41.392264673812626 + ], + [ + 65.18441446110388, + 41.58691240874108 + ], + [ + 65.0695717776202, + 41.392264673812626 + ], + [ + 65.29925714458756, + 41.392264673812626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 41.392264673812626 + ], + [ + 65.0695717776202, + 41.392264673812626 + ], + [ + 65.18441446110388, + 41.197616938884174 + ], + [ + 65.29925714458756, + 41.392264673812626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 41.392264673812626 + ], + [ + 65.18441446110388, + 41.197616938884174 + ], + [ + 65.41409982807123, + 41.197616938884174 + ], + [ + 65.29925714458756, + 41.392264673812626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 41.392264673812626 + ], + [ + 65.41409982807123, + 41.197616938884174 + ], + [ + 65.52894251155492, + 41.392264673812626 + ], + [ + 65.29925714458756, + 41.392264673812626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 41.78156014366953 + ], + [ + 65.52894251155492, + 41.78156014366953 + ], + [ + 65.41409982807123, + 41.97620787859798 + ], + [ + 65.29925714458756, + 41.78156014366953 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 41.78156014366953 + ], + [ + 65.41409982807123, + 41.97620787859798 + ], + [ + 65.18441446110388, + 41.97620787859798 + ], + [ + 65.29925714458756, + 41.78156014366953 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 41.78156014366953 + ], + [ + 65.18441446110388, + 41.97620787859798 + ], + [ + 65.0695717776202, + 41.78156014366953 + ], + [ + 65.29925714458756, + 41.78156014366953 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 41.78156014366953 + ], + [ + 65.0695717776202, + 41.78156014366953 + ], + [ + 65.18441446110388, + 41.58691240874108 + ], + [ + 65.29925714458756, + 41.78156014366953 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 41.78156014366953 + ], + [ + 65.18441446110388, + 41.58691240874108 + ], + [ + 65.41409982807123, + 41.58691240874108 + ], + [ + 65.29925714458756, + 41.78156014366953 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 41.78156014366953 + ], + [ + 65.41409982807123, + 41.58691240874108 + ], + [ + 65.52894251155492, + 41.78156014366953 + ], + [ + 65.29925714458756, + 41.78156014366953 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 42.17085561352644 + ], + [ + 65.52894251155492, + 42.17085561352644 + ], + [ + 65.41409982807123, + 42.365503348454894 + ], + [ + 65.29925714458756, + 42.17085561352644 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 42.17085561352644 + ], + [ + 65.41409982807123, + 42.365503348454894 + ], + [ + 65.18441446110388, + 42.365503348454894 + ], + [ + 65.29925714458756, + 42.17085561352644 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 42.17085561352644 + ], + [ + 65.18441446110388, + 42.365503348454894 + ], + [ + 65.0695717776202, + 42.17085561352644 + ], + [ + 65.29925714458756, + 42.17085561352644 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 42.17085561352644 + ], + [ + 65.0695717776202, + 42.17085561352644 + ], + [ + 65.18441446110388, + 41.97620787859799 + ], + [ + 65.29925714458756, + 42.17085561352644 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 42.17085561352644 + ], + [ + 65.18441446110388, + 41.97620787859799 + ], + [ + 65.41409982807123, + 41.97620787859799 + ], + [ + 65.29925714458756, + 42.17085561352644 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 42.17085561352644 + ], + [ + 65.41409982807123, + 41.97620787859799 + ], + [ + 65.52894251155492, + 42.17085561352644 + ], + [ + 65.29925714458756, + 42.17085561352644 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 42.56015108338335 + ], + [ + 65.52894251155492, + 42.56015108338335 + ], + [ + 65.41409982807123, + 42.754798818311805 + ], + [ + 65.29925714458756, + 42.56015108338335 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 42.56015108338335 + ], + [ + 65.41409982807123, + 42.754798818311805 + ], + [ + 65.18441446110388, + 42.754798818311805 + ], + [ + 65.29925714458756, + 42.56015108338335 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 42.56015108338335 + ], + [ + 65.18441446110388, + 42.754798818311805 + ], + [ + 65.0695717776202, + 42.56015108338335 + ], + [ + 65.29925714458756, + 42.56015108338335 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 42.56015108338335 + ], + [ + 65.0695717776202, + 42.56015108338335 + ], + [ + 65.18441446110388, + 42.3655033484549 + ], + [ + 65.29925714458756, + 42.56015108338335 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 42.56015108338335 + ], + [ + 65.18441446110388, + 42.3655033484549 + ], + [ + 65.41409982807123, + 42.3655033484549 + ], + [ + 65.29925714458756, + 42.56015108338335 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 42.56015108338335 + ], + [ + 65.41409982807123, + 42.3655033484549 + ], + [ + 65.52894251155492, + 42.56015108338335 + ], + [ + 65.29925714458756, + 42.56015108338335 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 42.94944655324026 + ], + [ + 65.52894251155492, + 42.94944655324026 + ], + [ + 65.41409982807123, + 43.14409428816871 + ], + [ + 65.29925714458756, + 42.94944655324026 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 42.94944655324026 + ], + [ + 65.41409982807123, + 43.14409428816871 + ], + [ + 65.18441446110388, + 43.14409428816871 + ], + [ + 65.29925714458756, + 42.94944655324026 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 42.94944655324026 + ], + [ + 65.18441446110388, + 43.14409428816871 + ], + [ + 65.0695717776202, + 42.94944655324026 + ], + [ + 65.29925714458756, + 42.94944655324026 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 42.94944655324026 + ], + [ + 65.0695717776202, + 42.94944655324026 + ], + [ + 65.18441446110388, + 42.754798818311805 + ], + [ + 65.29925714458756, + 42.94944655324026 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 42.94944655324026 + ], + [ + 65.18441446110388, + 42.754798818311805 + ], + [ + 65.41409982807123, + 42.754798818311805 + ], + [ + 65.29925714458756, + 42.94944655324026 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 42.94944655324026 + ], + [ + 65.41409982807123, + 42.754798818311805 + ], + [ + 65.52894251155492, + 42.94944655324026 + ], + [ + 65.29925714458756, + 42.94944655324026 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 43.33874202309716 + ], + [ + 65.52894251155492, + 43.33874202309716 + ], + [ + 65.41409982807123, + 43.53338975802561 + ], + [ + 65.29925714458756, + 43.33874202309716 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 43.33874202309716 + ], + [ + 65.41409982807123, + 43.53338975802561 + ], + [ + 65.18441446110388, + 43.53338975802561 + ], + [ + 65.29925714458756, + 43.33874202309716 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 43.33874202309716 + ], + [ + 65.18441446110388, + 43.53338975802561 + ], + [ + 65.0695717776202, + 43.33874202309716 + ], + [ + 65.29925714458756, + 43.33874202309716 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 43.33874202309716 + ], + [ + 65.0695717776202, + 43.33874202309716 + ], + [ + 65.18441446110388, + 43.14409428816871 + ], + [ + 65.29925714458756, + 43.33874202309716 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 43.33874202309716 + ], + [ + 65.18441446110388, + 43.14409428816871 + ], + [ + 65.41409982807123, + 43.14409428816871 + ], + [ + 65.29925714458756, + 43.33874202309716 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 43.33874202309716 + ], + [ + 65.41409982807123, + 43.14409428816871 + ], + [ + 65.52894251155492, + 43.33874202309716 + ], + [ + 65.29925714458756, + 43.33874202309716 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 43.728037492954066 + ], + [ + 65.52894251155492, + 43.728037492954066 + ], + [ + 65.41409982807123, + 43.92268522788252 + ], + [ + 65.29925714458756, + 43.728037492954066 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 43.728037492954066 + ], + [ + 65.41409982807123, + 43.92268522788252 + ], + [ + 65.18441446110388, + 43.92268522788252 + ], + [ + 65.29925714458756, + 43.728037492954066 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 43.728037492954066 + ], + [ + 65.18441446110388, + 43.92268522788252 + ], + [ + 65.0695717776202, + 43.728037492954066 + ], + [ + 65.29925714458756, + 43.728037492954066 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 43.728037492954066 + ], + [ + 65.0695717776202, + 43.728037492954066 + ], + [ + 65.18441446110388, + 43.53338975802561 + ], + [ + 65.29925714458756, + 43.728037492954066 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 43.728037492954066 + ], + [ + 65.18441446110388, + 43.53338975802561 + ], + [ + 65.41409982807123, + 43.53338975802561 + ], + [ + 65.29925714458756, + 43.728037492954066 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 43.728037492954066 + ], + [ + 65.41409982807123, + 43.53338975802561 + ], + [ + 65.52894251155492, + 43.728037492954066 + ], + [ + 65.29925714458756, + 43.728037492954066 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 44.11733296281097 + ], + [ + 65.52894251155492, + 44.11733296281097 + ], + [ + 65.41409982807123, + 44.31198069773942 + ], + [ + 65.29925714458756, + 44.11733296281097 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 44.11733296281097 + ], + [ + 65.41409982807123, + 44.31198069773942 + ], + [ + 65.18441446110388, + 44.31198069773942 + ], + [ + 65.29925714458756, + 44.11733296281097 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 44.11733296281097 + ], + [ + 65.18441446110388, + 44.31198069773942 + ], + [ + 65.0695717776202, + 44.11733296281097 + ], + [ + 65.29925714458756, + 44.11733296281097 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 44.11733296281097 + ], + [ + 65.0695717776202, + 44.11733296281097 + ], + [ + 65.18441446110388, + 43.92268522788252 + ], + [ + 65.29925714458756, + 44.11733296281097 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 44.11733296281097 + ], + [ + 65.18441446110388, + 43.92268522788252 + ], + [ + 65.41409982807123, + 43.92268522788252 + ], + [ + 65.29925714458756, + 44.11733296281097 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 44.11733296281097 + ], + [ + 65.41409982807123, + 43.92268522788252 + ], + [ + 65.52894251155492, + 44.11733296281097 + ], + [ + 65.29925714458756, + 44.11733296281097 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 44.506628432667874 + ], + [ + 65.52894251155492, + 44.506628432667874 + ], + [ + 65.41409982807123, + 44.701276167596326 + ], + [ + 65.29925714458756, + 44.506628432667874 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 44.506628432667874 + ], + [ + 65.41409982807123, + 44.701276167596326 + ], + [ + 65.18441446110388, + 44.701276167596326 + ], + [ + 65.29925714458756, + 44.506628432667874 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 44.506628432667874 + ], + [ + 65.18441446110388, + 44.701276167596326 + ], + [ + 65.0695717776202, + 44.506628432667874 + ], + [ + 65.29925714458756, + 44.506628432667874 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 44.506628432667874 + ], + [ + 65.0695717776202, + 44.506628432667874 + ], + [ + 65.18441446110388, + 44.31198069773942 + ], + [ + 65.29925714458756, + 44.506628432667874 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 44.506628432667874 + ], + [ + 65.18441446110388, + 44.31198069773942 + ], + [ + 65.41409982807123, + 44.31198069773942 + ], + [ + 65.29925714458756, + 44.506628432667874 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 44.506628432667874 + ], + [ + 65.41409982807123, + 44.31198069773942 + ], + [ + 65.52894251155492, + 44.506628432667874 + ], + [ + 65.29925714458756, + 44.506628432667874 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 44.89592390252479 + ], + [ + 65.52894251155492, + 44.89592390252479 + ], + [ + 65.41409982807123, + 45.090571637453245 + ], + [ + 65.29925714458756, + 44.89592390252479 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 44.89592390252479 + ], + [ + 65.41409982807123, + 45.090571637453245 + ], + [ + 65.18441446110388, + 45.090571637453245 + ], + [ + 65.29925714458756, + 44.89592390252479 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 44.89592390252479 + ], + [ + 65.18441446110388, + 45.090571637453245 + ], + [ + 65.0695717776202, + 44.89592390252479 + ], + [ + 65.29925714458756, + 44.89592390252479 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 44.89592390252479 + ], + [ + 65.0695717776202, + 44.89592390252479 + ], + [ + 65.18441446110388, + 44.70127616759634 + ], + [ + 65.29925714458756, + 44.89592390252479 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 44.89592390252479 + ], + [ + 65.18441446110388, + 44.70127616759634 + ], + [ + 65.41409982807123, + 44.70127616759634 + ], + [ + 65.29925714458756, + 44.89592390252479 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 44.89592390252479 + ], + [ + 65.41409982807123, + 44.70127616759634 + ], + [ + 65.52894251155492, + 44.89592390252479 + ], + [ + 65.29925714458756, + 44.89592390252479 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 45.2852193723817 + ], + [ + 65.52894251155492, + 45.2852193723817 + ], + [ + 65.41409982807123, + 45.47986710731015 + ], + [ + 65.29925714458756, + 45.2852193723817 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 45.2852193723817 + ], + [ + 65.41409982807123, + 45.47986710731015 + ], + [ + 65.18441446110388, + 45.47986710731015 + ], + [ + 65.29925714458756, + 45.2852193723817 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 45.2852193723817 + ], + [ + 65.18441446110388, + 45.47986710731015 + ], + [ + 65.0695717776202, + 45.2852193723817 + ], + [ + 65.29925714458756, + 45.2852193723817 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 45.2852193723817 + ], + [ + 65.0695717776202, + 45.2852193723817 + ], + [ + 65.18441446110388, + 45.090571637453245 + ], + [ + 65.29925714458756, + 45.2852193723817 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 45.2852193723817 + ], + [ + 65.18441446110388, + 45.090571637453245 + ], + [ + 65.41409982807123, + 45.090571637453245 + ], + [ + 65.29925714458756, + 45.2852193723817 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 45.2852193723817 + ], + [ + 65.41409982807123, + 45.090571637453245 + ], + [ + 65.52894251155492, + 45.2852193723817 + ], + [ + 65.29925714458756, + 45.2852193723817 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 45.6745148422386 + ], + [ + 65.52894251155492, + 45.6745148422386 + ], + [ + 65.41409982807123, + 45.86916257716705 + ], + [ + 65.29925714458756, + 45.6745148422386 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 45.6745148422386 + ], + [ + 65.41409982807123, + 45.86916257716705 + ], + [ + 65.18441446110388, + 45.86916257716705 + ], + [ + 65.29925714458756, + 45.6745148422386 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 45.6745148422386 + ], + [ + 65.18441446110388, + 45.86916257716705 + ], + [ + 65.0695717776202, + 45.6745148422386 + ], + [ + 65.29925714458756, + 45.6745148422386 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 45.6745148422386 + ], + [ + 65.0695717776202, + 45.6745148422386 + ], + [ + 65.18441446110388, + 45.47986710731015 + ], + [ + 65.29925714458756, + 45.6745148422386 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 45.6745148422386 + ], + [ + 65.18441446110388, + 45.47986710731015 + ], + [ + 65.41409982807123, + 45.47986710731015 + ], + [ + 65.29925714458756, + 45.6745148422386 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 45.6745148422386 + ], + [ + 65.41409982807123, + 45.47986710731015 + ], + [ + 65.52894251155492, + 45.6745148422386 + ], + [ + 65.29925714458756, + 45.6745148422386 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 46.063810312095505 + ], + [ + 65.52894251155492, + 46.063810312095505 + ], + [ + 65.41409982807123, + 46.25845804702396 + ], + [ + 65.29925714458756, + 46.063810312095505 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 46.063810312095505 + ], + [ + 65.41409982807123, + 46.25845804702396 + ], + [ + 65.18441446110388, + 46.25845804702396 + ], + [ + 65.29925714458756, + 46.063810312095505 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 46.063810312095505 + ], + [ + 65.18441446110388, + 46.25845804702396 + ], + [ + 65.0695717776202, + 46.063810312095505 + ], + [ + 65.29925714458756, + 46.063810312095505 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 46.063810312095505 + ], + [ + 65.0695717776202, + 46.063810312095505 + ], + [ + 65.18441446110388, + 45.86916257716705 + ], + [ + 65.29925714458756, + 46.063810312095505 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 46.063810312095505 + ], + [ + 65.18441446110388, + 45.86916257716705 + ], + [ + 65.41409982807123, + 45.86916257716705 + ], + [ + 65.29925714458756, + 46.063810312095505 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 46.063810312095505 + ], + [ + 65.41409982807123, + 45.86916257716705 + ], + [ + 65.52894251155492, + 46.063810312095505 + ], + [ + 65.29925714458756, + 46.063810312095505 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 46.45310578195241 + ], + [ + 65.52894251155492, + 46.45310578195241 + ], + [ + 65.41409982807123, + 46.64775351688086 + ], + [ + 65.29925714458756, + 46.45310578195241 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 46.45310578195241 + ], + [ + 65.41409982807123, + 46.64775351688086 + ], + [ + 65.18441446110388, + 46.64775351688086 + ], + [ + 65.29925714458756, + 46.45310578195241 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 46.45310578195241 + ], + [ + 65.18441446110388, + 46.64775351688086 + ], + [ + 65.0695717776202, + 46.45310578195241 + ], + [ + 65.29925714458756, + 46.45310578195241 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 46.45310578195241 + ], + [ + 65.0695717776202, + 46.45310578195241 + ], + [ + 65.18441446110388, + 46.25845804702396 + ], + [ + 65.29925714458756, + 46.45310578195241 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 46.45310578195241 + ], + [ + 65.18441446110388, + 46.25845804702396 + ], + [ + 65.41409982807123, + 46.25845804702396 + ], + [ + 65.29925714458756, + 46.45310578195241 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 46.45310578195241 + ], + [ + 65.41409982807123, + 46.25845804702396 + ], + [ + 65.52894251155492, + 46.45310578195241 + ], + [ + 65.29925714458756, + 46.45310578195241 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 46.842401251809314 + ], + [ + 65.52894251155492, + 46.842401251809314 + ], + [ + 65.41409982807123, + 47.037048986737766 + ], + [ + 65.29925714458756, + 46.842401251809314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 46.842401251809314 + ], + [ + 65.41409982807123, + 47.037048986737766 + ], + [ + 65.18441446110388, + 47.037048986737766 + ], + [ + 65.29925714458756, + 46.842401251809314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 46.842401251809314 + ], + [ + 65.18441446110388, + 47.037048986737766 + ], + [ + 65.0695717776202, + 46.842401251809314 + ], + [ + 65.29925714458756, + 46.842401251809314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 46.842401251809314 + ], + [ + 65.0695717776202, + 46.842401251809314 + ], + [ + 65.18441446110388, + 46.64775351688086 + ], + [ + 65.29925714458756, + 46.842401251809314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 46.842401251809314 + ], + [ + 65.18441446110388, + 46.64775351688086 + ], + [ + 65.41409982807123, + 46.64775351688086 + ], + [ + 65.29925714458756, + 46.842401251809314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 46.842401251809314 + ], + [ + 65.41409982807123, + 46.64775351688086 + ], + [ + 65.52894251155492, + 46.842401251809314 + ], + [ + 65.29925714458756, + 46.842401251809314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 47.23169672166622 + ], + [ + 65.52894251155492, + 47.23169672166622 + ], + [ + 65.41409982807123, + 47.42634445659467 + ], + [ + 65.29925714458756, + 47.23169672166622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 47.23169672166622 + ], + [ + 65.41409982807123, + 47.42634445659467 + ], + [ + 65.18441446110388, + 47.42634445659467 + ], + [ + 65.29925714458756, + 47.23169672166622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 47.23169672166622 + ], + [ + 65.18441446110388, + 47.42634445659467 + ], + [ + 65.0695717776202, + 47.23169672166622 + ], + [ + 65.29925714458756, + 47.23169672166622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 47.23169672166622 + ], + [ + 65.0695717776202, + 47.23169672166622 + ], + [ + 65.18441446110388, + 47.037048986737766 + ], + [ + 65.29925714458756, + 47.23169672166622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 47.23169672166622 + ], + [ + 65.18441446110388, + 47.037048986737766 + ], + [ + 65.41409982807123, + 47.037048986737766 + ], + [ + 65.29925714458756, + 47.23169672166622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 47.23169672166622 + ], + [ + 65.41409982807123, + 47.037048986737766 + ], + [ + 65.52894251155492, + 47.23169672166622 + ], + [ + 65.29925714458756, + 47.23169672166622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 47.620992191523136 + ], + [ + 65.52894251155492, + 47.620992191523136 + ], + [ + 65.41409982807123, + 47.81563992645159 + ], + [ + 65.29925714458756, + 47.620992191523136 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 47.620992191523136 + ], + [ + 65.41409982807123, + 47.81563992645159 + ], + [ + 65.18441446110388, + 47.81563992645159 + ], + [ + 65.29925714458756, + 47.620992191523136 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 47.620992191523136 + ], + [ + 65.18441446110388, + 47.81563992645159 + ], + [ + 65.0695717776202, + 47.620992191523136 + ], + [ + 65.29925714458756, + 47.620992191523136 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 47.620992191523136 + ], + [ + 65.0695717776202, + 47.620992191523136 + ], + [ + 65.18441446110388, + 47.426344456594684 + ], + [ + 65.29925714458756, + 47.620992191523136 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 47.620992191523136 + ], + [ + 65.18441446110388, + 47.426344456594684 + ], + [ + 65.41409982807123, + 47.426344456594684 + ], + [ + 65.29925714458756, + 47.620992191523136 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.29925714458756, + 47.620992191523136 + ], + [ + 65.41409982807123, + 47.426344456594684 + ], + [ + 65.52894251155492, + 47.620992191523136 + ], + [ + 65.29925714458756, + 47.620992191523136 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 12.0004566996162 + ], + [ + 65.87347056200595, + 12.0004566996162 + ], + [ + 65.75862787852226, + 12.195104434544653 + ], + [ + 65.64378519503859, + 12.0004566996162 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 12.0004566996162 + ], + [ + 65.75862787852226, + 12.195104434544653 + ], + [ + 65.52894251155492, + 12.195104434544653 + ], + [ + 65.64378519503859, + 12.0004566996162 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 12.0004566996162 + ], + [ + 65.52894251155492, + 12.195104434544653 + ], + [ + 65.41409982807123, + 12.0004566996162 + ], + [ + 65.64378519503859, + 12.0004566996162 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 12.0004566996162 + ], + [ + 65.41409982807123, + 12.0004566996162 + ], + [ + 65.52894251155492, + 11.805808964687746 + ], + [ + 65.64378519503859, + 12.0004566996162 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 12.0004566996162 + ], + [ + 65.52894251155492, + 11.805808964687746 + ], + [ + 65.75862787852226, + 11.805808964687746 + ], + [ + 65.64378519503859, + 12.0004566996162 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 12.0004566996162 + ], + [ + 65.75862787852226, + 11.805808964687746 + ], + [ + 65.87347056200595, + 12.0004566996162 + ], + [ + 65.64378519503859, + 12.0004566996162 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 12.389752169473105 + ], + [ + 65.87347056200595, + 12.389752169473105 + ], + [ + 65.75862787852226, + 12.58439990440156 + ], + [ + 65.64378519503859, + 12.389752169473105 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 12.389752169473105 + ], + [ + 65.75862787852226, + 12.58439990440156 + ], + [ + 65.52894251155492, + 12.58439990440156 + ], + [ + 65.64378519503859, + 12.389752169473105 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 12.389752169473105 + ], + [ + 65.52894251155492, + 12.58439990440156 + ], + [ + 65.41409982807123, + 12.389752169473105 + ], + [ + 65.64378519503859, + 12.389752169473105 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 12.389752169473105 + ], + [ + 65.41409982807123, + 12.389752169473105 + ], + [ + 65.52894251155492, + 12.195104434544652 + ], + [ + 65.64378519503859, + 12.389752169473105 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 12.389752169473105 + ], + [ + 65.52894251155492, + 12.195104434544652 + ], + [ + 65.75862787852226, + 12.195104434544652 + ], + [ + 65.64378519503859, + 12.389752169473105 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 12.389752169473105 + ], + [ + 65.75862787852226, + 12.195104434544652 + ], + [ + 65.87347056200595, + 12.389752169473105 + ], + [ + 65.64378519503859, + 12.389752169473105 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 12.779047639330013 + ], + [ + 65.87347056200595, + 12.779047639330013 + ], + [ + 65.75862787852226, + 12.973695374258467 + ], + [ + 65.64378519503859, + 12.779047639330013 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 12.779047639330013 + ], + [ + 65.75862787852226, + 12.973695374258467 + ], + [ + 65.52894251155492, + 12.973695374258467 + ], + [ + 65.64378519503859, + 12.779047639330013 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 12.779047639330013 + ], + [ + 65.52894251155492, + 12.973695374258467 + ], + [ + 65.41409982807123, + 12.779047639330013 + ], + [ + 65.64378519503859, + 12.779047639330013 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 12.779047639330013 + ], + [ + 65.41409982807123, + 12.779047639330013 + ], + [ + 65.52894251155492, + 12.58439990440156 + ], + [ + 65.64378519503859, + 12.779047639330013 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 12.779047639330013 + ], + [ + 65.52894251155492, + 12.58439990440156 + ], + [ + 65.75862787852226, + 12.58439990440156 + ], + [ + 65.64378519503859, + 12.779047639330013 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 12.779047639330013 + ], + [ + 65.75862787852226, + 12.58439990440156 + ], + [ + 65.87347056200595, + 12.779047639330013 + ], + [ + 65.64378519503859, + 12.779047639330013 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 13.16834310918692 + ], + [ + 65.87347056200595, + 13.16834310918692 + ], + [ + 65.75862787852226, + 13.362990844115373 + ], + [ + 65.64378519503859, + 13.16834310918692 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 13.16834310918692 + ], + [ + 65.75862787852226, + 13.362990844115373 + ], + [ + 65.52894251155492, + 13.362990844115373 + ], + [ + 65.64378519503859, + 13.16834310918692 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 13.16834310918692 + ], + [ + 65.52894251155492, + 13.362990844115373 + ], + [ + 65.41409982807123, + 13.16834310918692 + ], + [ + 65.64378519503859, + 13.16834310918692 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 13.16834310918692 + ], + [ + 65.41409982807123, + 13.16834310918692 + ], + [ + 65.52894251155492, + 12.973695374258465 + ], + [ + 65.64378519503859, + 13.16834310918692 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 13.16834310918692 + ], + [ + 65.52894251155492, + 12.973695374258465 + ], + [ + 65.75862787852226, + 12.973695374258465 + ], + [ + 65.64378519503859, + 13.16834310918692 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 13.16834310918692 + ], + [ + 65.75862787852226, + 12.973695374258465 + ], + [ + 65.87347056200595, + 13.16834310918692 + ], + [ + 65.64378519503859, + 13.16834310918692 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 13.557638579043825 + ], + [ + 65.87347056200595, + 13.557638579043825 + ], + [ + 65.75862787852226, + 13.752286313972279 + ], + [ + 65.64378519503859, + 13.557638579043825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 13.557638579043825 + ], + [ + 65.75862787852226, + 13.752286313972279 + ], + [ + 65.52894251155492, + 13.752286313972279 + ], + [ + 65.64378519503859, + 13.557638579043825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 13.557638579043825 + ], + [ + 65.52894251155492, + 13.752286313972279 + ], + [ + 65.41409982807123, + 13.557638579043825 + ], + [ + 65.64378519503859, + 13.557638579043825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 13.557638579043825 + ], + [ + 65.41409982807123, + 13.557638579043825 + ], + [ + 65.52894251155492, + 13.362990844115371 + ], + [ + 65.64378519503859, + 13.557638579043825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 13.557638579043825 + ], + [ + 65.52894251155492, + 13.362990844115371 + ], + [ + 65.75862787852226, + 13.362990844115371 + ], + [ + 65.64378519503859, + 13.557638579043825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 13.557638579043825 + ], + [ + 65.75862787852226, + 13.362990844115371 + ], + [ + 65.87347056200595, + 13.557638579043825 + ], + [ + 65.64378519503859, + 13.557638579043825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 13.946934048900731 + ], + [ + 65.87347056200595, + 13.946934048900731 + ], + [ + 65.75862787852226, + 14.141581783829185 + ], + [ + 65.64378519503859, + 13.946934048900731 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 13.946934048900731 + ], + [ + 65.75862787852226, + 14.141581783829185 + ], + [ + 65.52894251155492, + 14.141581783829185 + ], + [ + 65.64378519503859, + 13.946934048900731 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 13.946934048900731 + ], + [ + 65.52894251155492, + 14.141581783829185 + ], + [ + 65.41409982807123, + 13.946934048900731 + ], + [ + 65.64378519503859, + 13.946934048900731 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 13.946934048900731 + ], + [ + 65.41409982807123, + 13.946934048900731 + ], + [ + 65.52894251155492, + 13.752286313972277 + ], + [ + 65.64378519503859, + 13.946934048900731 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 13.946934048900731 + ], + [ + 65.52894251155492, + 13.752286313972277 + ], + [ + 65.75862787852226, + 13.752286313972277 + ], + [ + 65.64378519503859, + 13.946934048900731 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 13.946934048900731 + ], + [ + 65.75862787852226, + 13.752286313972277 + ], + [ + 65.87347056200595, + 13.946934048900731 + ], + [ + 65.64378519503859, + 13.946934048900731 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 14.336229518757637 + ], + [ + 65.87347056200595, + 14.336229518757637 + ], + [ + 65.75862787852226, + 14.530877253686091 + ], + [ + 65.64378519503859, + 14.336229518757637 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 14.336229518757637 + ], + [ + 65.75862787852226, + 14.530877253686091 + ], + [ + 65.52894251155492, + 14.530877253686091 + ], + [ + 65.64378519503859, + 14.336229518757637 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 14.336229518757637 + ], + [ + 65.52894251155492, + 14.530877253686091 + ], + [ + 65.41409982807123, + 14.336229518757637 + ], + [ + 65.64378519503859, + 14.336229518757637 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 14.336229518757637 + ], + [ + 65.41409982807123, + 14.336229518757637 + ], + [ + 65.52894251155492, + 14.141581783829183 + ], + [ + 65.64378519503859, + 14.336229518757637 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 14.336229518757637 + ], + [ + 65.52894251155492, + 14.141581783829183 + ], + [ + 65.75862787852226, + 14.141581783829183 + ], + [ + 65.64378519503859, + 14.336229518757637 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 14.336229518757637 + ], + [ + 65.75862787852226, + 14.141581783829183 + ], + [ + 65.87347056200595, + 14.336229518757637 + ], + [ + 65.64378519503859, + 14.336229518757637 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 14.725524988614545 + ], + [ + 65.87347056200595, + 14.725524988614545 + ], + [ + 65.75862787852226, + 14.920172723542999 + ], + [ + 65.64378519503859, + 14.725524988614545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 14.725524988614545 + ], + [ + 65.75862787852226, + 14.920172723542999 + ], + [ + 65.52894251155492, + 14.920172723542999 + ], + [ + 65.64378519503859, + 14.725524988614545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 14.725524988614545 + ], + [ + 65.52894251155492, + 14.920172723542999 + ], + [ + 65.41409982807123, + 14.725524988614545 + ], + [ + 65.64378519503859, + 14.725524988614545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 14.725524988614545 + ], + [ + 65.41409982807123, + 14.725524988614545 + ], + [ + 65.52894251155492, + 14.530877253686091 + ], + [ + 65.64378519503859, + 14.725524988614545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 14.725524988614545 + ], + [ + 65.52894251155492, + 14.530877253686091 + ], + [ + 65.75862787852226, + 14.530877253686091 + ], + [ + 65.64378519503859, + 14.725524988614545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 14.725524988614545 + ], + [ + 65.75862787852226, + 14.530877253686091 + ], + [ + 65.87347056200595, + 14.725524988614545 + ], + [ + 65.64378519503859, + 14.725524988614545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 15.114820458471451 + ], + [ + 65.87347056200595, + 15.114820458471451 + ], + [ + 65.75862787852226, + 15.309468193399905 + ], + [ + 65.64378519503859, + 15.114820458471451 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 15.114820458471451 + ], + [ + 65.75862787852226, + 15.309468193399905 + ], + [ + 65.52894251155492, + 15.309468193399905 + ], + [ + 65.64378519503859, + 15.114820458471451 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 15.114820458471451 + ], + [ + 65.52894251155492, + 15.309468193399905 + ], + [ + 65.41409982807123, + 15.114820458471451 + ], + [ + 65.64378519503859, + 15.114820458471451 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 15.114820458471451 + ], + [ + 65.41409982807123, + 15.114820458471451 + ], + [ + 65.52894251155492, + 14.920172723542997 + ], + [ + 65.64378519503859, + 15.114820458471451 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 15.114820458471451 + ], + [ + 65.52894251155492, + 14.920172723542997 + ], + [ + 65.75862787852226, + 14.920172723542997 + ], + [ + 65.64378519503859, + 15.114820458471451 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 15.114820458471451 + ], + [ + 65.75862787852226, + 14.920172723542997 + ], + [ + 65.87347056200595, + 15.114820458471451 + ], + [ + 65.64378519503859, + 15.114820458471451 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 15.504115928328357 + ], + [ + 65.87347056200595, + 15.504115928328357 + ], + [ + 65.75862787852226, + 15.69876366325681 + ], + [ + 65.64378519503859, + 15.504115928328357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 15.504115928328357 + ], + [ + 65.75862787852226, + 15.69876366325681 + ], + [ + 65.52894251155492, + 15.69876366325681 + ], + [ + 65.64378519503859, + 15.504115928328357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 15.504115928328357 + ], + [ + 65.52894251155492, + 15.69876366325681 + ], + [ + 65.41409982807123, + 15.504115928328357 + ], + [ + 65.64378519503859, + 15.504115928328357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 15.504115928328357 + ], + [ + 65.41409982807123, + 15.504115928328357 + ], + [ + 65.52894251155492, + 15.309468193399903 + ], + [ + 65.64378519503859, + 15.504115928328357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 15.504115928328357 + ], + [ + 65.52894251155492, + 15.309468193399903 + ], + [ + 65.75862787852226, + 15.309468193399903 + ], + [ + 65.64378519503859, + 15.504115928328357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 15.504115928328357 + ], + [ + 65.75862787852226, + 15.309468193399903 + ], + [ + 65.87347056200595, + 15.504115928328357 + ], + [ + 65.64378519503859, + 15.504115928328357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 15.893411398185265 + ], + [ + 65.87347056200595, + 15.893411398185265 + ], + [ + 65.75862787852226, + 16.088059133113717 + ], + [ + 65.64378519503859, + 15.893411398185265 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 15.893411398185265 + ], + [ + 65.75862787852226, + 16.088059133113717 + ], + [ + 65.52894251155492, + 16.088059133113717 + ], + [ + 65.64378519503859, + 15.893411398185265 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 15.893411398185265 + ], + [ + 65.52894251155492, + 16.088059133113717 + ], + [ + 65.41409982807123, + 15.893411398185265 + ], + [ + 65.64378519503859, + 15.893411398185265 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 15.893411398185265 + ], + [ + 65.41409982807123, + 15.893411398185265 + ], + [ + 65.52894251155492, + 15.69876366325681 + ], + [ + 65.64378519503859, + 15.893411398185265 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 15.893411398185265 + ], + [ + 65.52894251155492, + 15.69876366325681 + ], + [ + 65.75862787852226, + 15.69876366325681 + ], + [ + 65.64378519503859, + 15.893411398185265 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 15.893411398185265 + ], + [ + 65.75862787852226, + 15.69876366325681 + ], + [ + 65.87347056200595, + 15.893411398185265 + ], + [ + 65.64378519503859, + 15.893411398185265 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 16.28270686804217 + ], + [ + 65.87347056200595, + 16.28270686804217 + ], + [ + 65.75862787852226, + 16.47735460297062 + ], + [ + 65.64378519503859, + 16.28270686804217 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 16.28270686804217 + ], + [ + 65.75862787852226, + 16.47735460297062 + ], + [ + 65.52894251155492, + 16.47735460297062 + ], + [ + 65.64378519503859, + 16.28270686804217 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 16.28270686804217 + ], + [ + 65.52894251155492, + 16.47735460297062 + ], + [ + 65.41409982807123, + 16.28270686804217 + ], + [ + 65.64378519503859, + 16.28270686804217 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 16.28270686804217 + ], + [ + 65.41409982807123, + 16.28270686804217 + ], + [ + 65.52894251155492, + 16.088059133113717 + ], + [ + 65.64378519503859, + 16.28270686804217 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 16.28270686804217 + ], + [ + 65.52894251155492, + 16.088059133113717 + ], + [ + 65.75862787852226, + 16.088059133113717 + ], + [ + 65.64378519503859, + 16.28270686804217 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 16.28270686804217 + ], + [ + 65.75862787852226, + 16.088059133113717 + ], + [ + 65.87347056200595, + 16.28270686804217 + ], + [ + 65.64378519503859, + 16.28270686804217 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 16.672002337899077 + ], + [ + 65.87347056200595, + 16.672002337899077 + ], + [ + 65.75862787852226, + 16.86665007282753 + ], + [ + 65.64378519503859, + 16.672002337899077 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 16.672002337899077 + ], + [ + 65.75862787852226, + 16.86665007282753 + ], + [ + 65.52894251155492, + 16.86665007282753 + ], + [ + 65.64378519503859, + 16.672002337899077 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 16.672002337899077 + ], + [ + 65.52894251155492, + 16.86665007282753 + ], + [ + 65.41409982807123, + 16.672002337899077 + ], + [ + 65.64378519503859, + 16.672002337899077 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 16.672002337899077 + ], + [ + 65.41409982807123, + 16.672002337899077 + ], + [ + 65.52894251155492, + 16.477354602970625 + ], + [ + 65.64378519503859, + 16.672002337899077 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 16.672002337899077 + ], + [ + 65.52894251155492, + 16.477354602970625 + ], + [ + 65.75862787852226, + 16.477354602970625 + ], + [ + 65.64378519503859, + 16.672002337899077 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 16.672002337899077 + ], + [ + 65.75862787852226, + 16.477354602970625 + ], + [ + 65.87347056200595, + 16.672002337899077 + ], + [ + 65.64378519503859, + 16.672002337899077 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 17.06129780775598 + ], + [ + 65.87347056200595, + 17.06129780775598 + ], + [ + 65.75862787852226, + 17.255945542684433 + ], + [ + 65.64378519503859, + 17.06129780775598 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 17.06129780775598 + ], + [ + 65.75862787852226, + 17.255945542684433 + ], + [ + 65.52894251155492, + 17.255945542684433 + ], + [ + 65.64378519503859, + 17.06129780775598 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 17.06129780775598 + ], + [ + 65.52894251155492, + 17.255945542684433 + ], + [ + 65.41409982807123, + 17.06129780775598 + ], + [ + 65.64378519503859, + 17.06129780775598 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 17.06129780775598 + ], + [ + 65.41409982807123, + 17.06129780775598 + ], + [ + 65.52894251155492, + 16.86665007282753 + ], + [ + 65.64378519503859, + 17.06129780775598 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 17.06129780775598 + ], + [ + 65.52894251155492, + 16.86665007282753 + ], + [ + 65.75862787852226, + 16.86665007282753 + ], + [ + 65.64378519503859, + 17.06129780775598 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 17.06129780775598 + ], + [ + 65.75862787852226, + 16.86665007282753 + ], + [ + 65.87347056200595, + 17.06129780775598 + ], + [ + 65.64378519503859, + 17.06129780775598 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 17.45059327761289 + ], + [ + 65.87347056200595, + 17.45059327761289 + ], + [ + 65.75862787852226, + 17.64524101254134 + ], + [ + 65.64378519503859, + 17.45059327761289 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 17.45059327761289 + ], + [ + 65.75862787852226, + 17.64524101254134 + ], + [ + 65.52894251155492, + 17.64524101254134 + ], + [ + 65.64378519503859, + 17.45059327761289 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 17.45059327761289 + ], + [ + 65.52894251155492, + 17.64524101254134 + ], + [ + 65.41409982807123, + 17.45059327761289 + ], + [ + 65.64378519503859, + 17.45059327761289 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 17.45059327761289 + ], + [ + 65.41409982807123, + 17.45059327761289 + ], + [ + 65.52894251155492, + 17.255945542684437 + ], + [ + 65.64378519503859, + 17.45059327761289 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 17.45059327761289 + ], + [ + 65.52894251155492, + 17.255945542684437 + ], + [ + 65.75862787852226, + 17.255945542684437 + ], + [ + 65.64378519503859, + 17.45059327761289 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 17.45059327761289 + ], + [ + 65.75862787852226, + 17.255945542684437 + ], + [ + 65.87347056200595, + 17.45059327761289 + ], + [ + 65.64378519503859, + 17.45059327761289 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 17.839888747469793 + ], + [ + 65.87347056200595, + 17.839888747469793 + ], + [ + 65.75862787852226, + 18.034536482398245 + ], + [ + 65.64378519503859, + 17.839888747469793 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 17.839888747469793 + ], + [ + 65.75862787852226, + 18.034536482398245 + ], + [ + 65.52894251155492, + 18.034536482398245 + ], + [ + 65.64378519503859, + 17.839888747469793 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 17.839888747469793 + ], + [ + 65.52894251155492, + 18.034536482398245 + ], + [ + 65.41409982807123, + 17.839888747469793 + ], + [ + 65.64378519503859, + 17.839888747469793 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 17.839888747469793 + ], + [ + 65.41409982807123, + 17.839888747469793 + ], + [ + 65.52894251155492, + 17.64524101254134 + ], + [ + 65.64378519503859, + 17.839888747469793 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 17.839888747469793 + ], + [ + 65.52894251155492, + 17.64524101254134 + ], + [ + 65.75862787852226, + 17.64524101254134 + ], + [ + 65.64378519503859, + 17.839888747469793 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 17.839888747469793 + ], + [ + 65.75862787852226, + 17.64524101254134 + ], + [ + 65.87347056200595, + 17.839888747469793 + ], + [ + 65.64378519503859, + 17.839888747469793 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 18.2291842173267 + ], + [ + 65.87347056200595, + 18.2291842173267 + ], + [ + 65.75862787852226, + 18.423831952255153 + ], + [ + 65.64378519503859, + 18.2291842173267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 18.2291842173267 + ], + [ + 65.75862787852226, + 18.423831952255153 + ], + [ + 65.52894251155492, + 18.423831952255153 + ], + [ + 65.64378519503859, + 18.2291842173267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 18.2291842173267 + ], + [ + 65.52894251155492, + 18.423831952255153 + ], + [ + 65.41409982807123, + 18.2291842173267 + ], + [ + 65.64378519503859, + 18.2291842173267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 18.2291842173267 + ], + [ + 65.41409982807123, + 18.2291842173267 + ], + [ + 65.52894251155492, + 18.03453648239825 + ], + [ + 65.64378519503859, + 18.2291842173267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 18.2291842173267 + ], + [ + 65.52894251155492, + 18.03453648239825 + ], + [ + 65.75862787852226, + 18.03453648239825 + ], + [ + 65.64378519503859, + 18.2291842173267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 18.2291842173267 + ], + [ + 65.75862787852226, + 18.03453648239825 + ], + [ + 65.87347056200595, + 18.2291842173267 + ], + [ + 65.64378519503859, + 18.2291842173267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 18.61847968718361 + ], + [ + 65.87347056200595, + 18.61847968718361 + ], + [ + 65.75862787852226, + 18.81312742211206 + ], + [ + 65.64378519503859, + 18.61847968718361 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 18.61847968718361 + ], + [ + 65.75862787852226, + 18.81312742211206 + ], + [ + 65.52894251155492, + 18.81312742211206 + ], + [ + 65.64378519503859, + 18.61847968718361 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 18.61847968718361 + ], + [ + 65.52894251155492, + 18.81312742211206 + ], + [ + 65.41409982807123, + 18.61847968718361 + ], + [ + 65.64378519503859, + 18.61847968718361 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 18.61847968718361 + ], + [ + 65.41409982807123, + 18.61847968718361 + ], + [ + 65.52894251155492, + 18.423831952255156 + ], + [ + 65.64378519503859, + 18.61847968718361 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 18.61847968718361 + ], + [ + 65.52894251155492, + 18.423831952255156 + ], + [ + 65.75862787852226, + 18.423831952255156 + ], + [ + 65.64378519503859, + 18.61847968718361 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 18.61847968718361 + ], + [ + 65.75862787852226, + 18.423831952255156 + ], + [ + 65.87347056200595, + 18.61847968718361 + ], + [ + 65.64378519503859, + 18.61847968718361 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 19.007775157040513 + ], + [ + 65.87347056200595, + 19.007775157040513 + ], + [ + 65.75862787852226, + 19.202422891968965 + ], + [ + 65.64378519503859, + 19.007775157040513 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 19.007775157040513 + ], + [ + 65.75862787852226, + 19.202422891968965 + ], + [ + 65.52894251155492, + 19.202422891968965 + ], + [ + 65.64378519503859, + 19.007775157040513 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 19.007775157040513 + ], + [ + 65.52894251155492, + 19.202422891968965 + ], + [ + 65.41409982807123, + 19.007775157040513 + ], + [ + 65.64378519503859, + 19.007775157040513 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 19.007775157040513 + ], + [ + 65.41409982807123, + 19.007775157040513 + ], + [ + 65.52894251155492, + 18.81312742211206 + ], + [ + 65.64378519503859, + 19.007775157040513 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 19.007775157040513 + ], + [ + 65.52894251155492, + 18.81312742211206 + ], + [ + 65.75862787852226, + 18.81312742211206 + ], + [ + 65.64378519503859, + 19.007775157040513 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 19.007775157040513 + ], + [ + 65.75862787852226, + 18.81312742211206 + ], + [ + 65.87347056200595, + 19.007775157040513 + ], + [ + 65.64378519503859, + 19.007775157040513 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 19.39707062689742 + ], + [ + 65.87347056200595, + 19.39707062689742 + ], + [ + 65.75862787852226, + 19.591718361825873 + ], + [ + 65.64378519503859, + 19.39707062689742 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 19.39707062689742 + ], + [ + 65.75862787852226, + 19.591718361825873 + ], + [ + 65.52894251155492, + 19.591718361825873 + ], + [ + 65.64378519503859, + 19.39707062689742 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 19.39707062689742 + ], + [ + 65.52894251155492, + 19.591718361825873 + ], + [ + 65.41409982807123, + 19.39707062689742 + ], + [ + 65.64378519503859, + 19.39707062689742 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 19.39707062689742 + ], + [ + 65.41409982807123, + 19.39707062689742 + ], + [ + 65.52894251155492, + 19.20242289196897 + ], + [ + 65.64378519503859, + 19.39707062689742 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 19.39707062689742 + ], + [ + 65.52894251155492, + 19.20242289196897 + ], + [ + 65.75862787852226, + 19.20242289196897 + ], + [ + 65.64378519503859, + 19.39707062689742 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 19.39707062689742 + ], + [ + 65.75862787852226, + 19.20242289196897 + ], + [ + 65.87347056200595, + 19.39707062689742 + ], + [ + 65.64378519503859, + 19.39707062689742 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 19.78636609675433 + ], + [ + 65.87347056200595, + 19.78636609675433 + ], + [ + 65.75862787852226, + 19.98101383168278 + ], + [ + 65.64378519503859, + 19.78636609675433 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 19.78636609675433 + ], + [ + 65.75862787852226, + 19.98101383168278 + ], + [ + 65.52894251155492, + 19.98101383168278 + ], + [ + 65.64378519503859, + 19.78636609675433 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 19.78636609675433 + ], + [ + 65.52894251155492, + 19.98101383168278 + ], + [ + 65.41409982807123, + 19.78636609675433 + ], + [ + 65.64378519503859, + 19.78636609675433 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 19.78636609675433 + ], + [ + 65.41409982807123, + 19.78636609675433 + ], + [ + 65.52894251155492, + 19.591718361825876 + ], + [ + 65.64378519503859, + 19.78636609675433 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 19.78636609675433 + ], + [ + 65.52894251155492, + 19.591718361825876 + ], + [ + 65.75862787852226, + 19.591718361825876 + ], + [ + 65.64378519503859, + 19.78636609675433 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 19.78636609675433 + ], + [ + 65.75862787852226, + 19.591718361825876 + ], + [ + 65.87347056200595, + 19.78636609675433 + ], + [ + 65.64378519503859, + 19.78636609675433 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 20.175661566611232 + ], + [ + 65.87347056200595, + 20.175661566611232 + ], + [ + 65.75862787852226, + 20.370309301539685 + ], + [ + 65.64378519503859, + 20.175661566611232 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 20.175661566611232 + ], + [ + 65.75862787852226, + 20.370309301539685 + ], + [ + 65.52894251155492, + 20.370309301539685 + ], + [ + 65.64378519503859, + 20.175661566611232 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 20.175661566611232 + ], + [ + 65.52894251155492, + 20.370309301539685 + ], + [ + 65.41409982807123, + 20.175661566611232 + ], + [ + 65.64378519503859, + 20.175661566611232 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 20.175661566611232 + ], + [ + 65.41409982807123, + 20.175661566611232 + ], + [ + 65.52894251155492, + 19.98101383168278 + ], + [ + 65.64378519503859, + 20.175661566611232 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 20.175661566611232 + ], + [ + 65.52894251155492, + 19.98101383168278 + ], + [ + 65.75862787852226, + 19.98101383168278 + ], + [ + 65.64378519503859, + 20.175661566611232 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 20.175661566611232 + ], + [ + 65.75862787852226, + 19.98101383168278 + ], + [ + 65.87347056200595, + 20.175661566611232 + ], + [ + 65.64378519503859, + 20.175661566611232 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 20.564957036468137 + ], + [ + 65.87347056200595, + 20.564957036468137 + ], + [ + 65.75862787852226, + 20.75960477139659 + ], + [ + 65.64378519503859, + 20.564957036468137 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 20.564957036468137 + ], + [ + 65.75862787852226, + 20.75960477139659 + ], + [ + 65.52894251155492, + 20.75960477139659 + ], + [ + 65.64378519503859, + 20.564957036468137 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 20.564957036468137 + ], + [ + 65.52894251155492, + 20.75960477139659 + ], + [ + 65.41409982807123, + 20.564957036468137 + ], + [ + 65.64378519503859, + 20.564957036468137 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 20.564957036468137 + ], + [ + 65.41409982807123, + 20.564957036468137 + ], + [ + 65.52894251155492, + 20.370309301539685 + ], + [ + 65.64378519503859, + 20.564957036468137 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 20.564957036468137 + ], + [ + 65.52894251155492, + 20.370309301539685 + ], + [ + 65.75862787852226, + 20.370309301539685 + ], + [ + 65.64378519503859, + 20.564957036468137 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 20.564957036468137 + ], + [ + 65.75862787852226, + 20.370309301539685 + ], + [ + 65.87347056200595, + 20.564957036468137 + ], + [ + 65.64378519503859, + 20.564957036468137 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 20.954252506325044 + ], + [ + 65.87347056200595, + 20.954252506325044 + ], + [ + 65.75862787852226, + 21.148900241253497 + ], + [ + 65.64378519503859, + 20.954252506325044 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 20.954252506325044 + ], + [ + 65.75862787852226, + 21.148900241253497 + ], + [ + 65.52894251155492, + 21.148900241253497 + ], + [ + 65.64378519503859, + 20.954252506325044 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 20.954252506325044 + ], + [ + 65.52894251155492, + 21.148900241253497 + ], + [ + 65.41409982807123, + 20.954252506325044 + ], + [ + 65.64378519503859, + 20.954252506325044 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 20.954252506325044 + ], + [ + 65.41409982807123, + 20.954252506325044 + ], + [ + 65.52894251155492, + 20.759604771396592 + ], + [ + 65.64378519503859, + 20.954252506325044 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 20.954252506325044 + ], + [ + 65.52894251155492, + 20.759604771396592 + ], + [ + 65.75862787852226, + 20.759604771396592 + ], + [ + 65.64378519503859, + 20.954252506325044 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 20.954252506325044 + ], + [ + 65.75862787852226, + 20.759604771396592 + ], + [ + 65.87347056200595, + 20.954252506325044 + ], + [ + 65.64378519503859, + 20.954252506325044 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 21.343547976181952 + ], + [ + 65.87347056200595, + 21.343547976181952 + ], + [ + 65.75862787852226, + 21.538195711110404 + ], + [ + 65.64378519503859, + 21.343547976181952 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 21.343547976181952 + ], + [ + 65.75862787852226, + 21.538195711110404 + ], + [ + 65.52894251155492, + 21.538195711110404 + ], + [ + 65.64378519503859, + 21.343547976181952 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 21.343547976181952 + ], + [ + 65.52894251155492, + 21.538195711110404 + ], + [ + 65.41409982807123, + 21.343547976181952 + ], + [ + 65.64378519503859, + 21.343547976181952 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 21.343547976181952 + ], + [ + 65.41409982807123, + 21.343547976181952 + ], + [ + 65.52894251155492, + 21.1489002412535 + ], + [ + 65.64378519503859, + 21.343547976181952 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 21.343547976181952 + ], + [ + 65.52894251155492, + 21.1489002412535 + ], + [ + 65.75862787852226, + 21.1489002412535 + ], + [ + 65.64378519503859, + 21.343547976181952 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 21.343547976181952 + ], + [ + 65.75862787852226, + 21.1489002412535 + ], + [ + 65.87347056200595, + 21.343547976181952 + ], + [ + 65.64378519503859, + 21.343547976181952 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 21.732843446038856 + ], + [ + 65.87347056200595, + 21.732843446038856 + ], + [ + 65.75862787852226, + 21.92749118096731 + ], + [ + 65.64378519503859, + 21.732843446038856 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 21.732843446038856 + ], + [ + 65.75862787852226, + 21.92749118096731 + ], + [ + 65.52894251155492, + 21.92749118096731 + ], + [ + 65.64378519503859, + 21.732843446038856 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 21.732843446038856 + ], + [ + 65.52894251155492, + 21.92749118096731 + ], + [ + 65.41409982807123, + 21.732843446038856 + ], + [ + 65.64378519503859, + 21.732843446038856 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 21.732843446038856 + ], + [ + 65.41409982807123, + 21.732843446038856 + ], + [ + 65.52894251155492, + 21.538195711110404 + ], + [ + 65.64378519503859, + 21.732843446038856 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 21.732843446038856 + ], + [ + 65.52894251155492, + 21.538195711110404 + ], + [ + 65.75862787852226, + 21.538195711110404 + ], + [ + 65.64378519503859, + 21.732843446038856 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 21.732843446038856 + ], + [ + 65.75862787852226, + 21.538195711110404 + ], + [ + 65.87347056200595, + 21.732843446038856 + ], + [ + 65.64378519503859, + 21.732843446038856 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 22.122138915895764 + ], + [ + 65.87347056200595, + 22.122138915895764 + ], + [ + 65.75862787852226, + 22.316786650824216 + ], + [ + 65.64378519503859, + 22.122138915895764 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 22.122138915895764 + ], + [ + 65.75862787852226, + 22.316786650824216 + ], + [ + 65.52894251155492, + 22.316786650824216 + ], + [ + 65.64378519503859, + 22.122138915895764 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 22.122138915895764 + ], + [ + 65.52894251155492, + 22.316786650824216 + ], + [ + 65.41409982807123, + 22.122138915895764 + ], + [ + 65.64378519503859, + 22.122138915895764 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 22.122138915895764 + ], + [ + 65.41409982807123, + 22.122138915895764 + ], + [ + 65.52894251155492, + 21.927491180967312 + ], + [ + 65.64378519503859, + 22.122138915895764 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 22.122138915895764 + ], + [ + 65.52894251155492, + 21.927491180967312 + ], + [ + 65.75862787852226, + 21.927491180967312 + ], + [ + 65.64378519503859, + 22.122138915895764 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 22.122138915895764 + ], + [ + 65.75862787852226, + 21.927491180967312 + ], + [ + 65.87347056200595, + 22.122138915895764 + ], + [ + 65.64378519503859, + 22.122138915895764 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 22.511434385752672 + ], + [ + 65.87347056200595, + 22.511434385752672 + ], + [ + 65.75862787852226, + 22.706082120681124 + ], + [ + 65.64378519503859, + 22.511434385752672 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 22.511434385752672 + ], + [ + 65.75862787852226, + 22.706082120681124 + ], + [ + 65.52894251155492, + 22.706082120681124 + ], + [ + 65.64378519503859, + 22.511434385752672 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 22.511434385752672 + ], + [ + 65.52894251155492, + 22.706082120681124 + ], + [ + 65.41409982807123, + 22.511434385752672 + ], + [ + 65.64378519503859, + 22.511434385752672 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 22.511434385752672 + ], + [ + 65.41409982807123, + 22.511434385752672 + ], + [ + 65.52894251155492, + 22.31678665082422 + ], + [ + 65.64378519503859, + 22.511434385752672 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 22.511434385752672 + ], + [ + 65.52894251155492, + 22.31678665082422 + ], + [ + 65.75862787852226, + 22.31678665082422 + ], + [ + 65.64378519503859, + 22.511434385752672 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 22.511434385752672 + ], + [ + 65.75862787852226, + 22.31678665082422 + ], + [ + 65.87347056200595, + 22.511434385752672 + ], + [ + 65.64378519503859, + 22.511434385752672 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 22.900729855609576 + ], + [ + 65.87347056200595, + 22.900729855609576 + ], + [ + 65.75862787852226, + 23.09537759053803 + ], + [ + 65.64378519503859, + 22.900729855609576 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 22.900729855609576 + ], + [ + 65.75862787852226, + 23.09537759053803 + ], + [ + 65.52894251155492, + 23.09537759053803 + ], + [ + 65.64378519503859, + 22.900729855609576 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 22.900729855609576 + ], + [ + 65.52894251155492, + 23.09537759053803 + ], + [ + 65.41409982807123, + 22.900729855609576 + ], + [ + 65.64378519503859, + 22.900729855609576 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 22.900729855609576 + ], + [ + 65.41409982807123, + 22.900729855609576 + ], + [ + 65.52894251155492, + 22.706082120681124 + ], + [ + 65.64378519503859, + 22.900729855609576 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 22.900729855609576 + ], + [ + 65.52894251155492, + 22.706082120681124 + ], + [ + 65.75862787852226, + 22.706082120681124 + ], + [ + 65.64378519503859, + 22.900729855609576 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 22.900729855609576 + ], + [ + 65.75862787852226, + 22.706082120681124 + ], + [ + 65.87347056200595, + 22.900729855609576 + ], + [ + 65.64378519503859, + 22.900729855609576 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 23.290025325466484 + ], + [ + 65.87347056200595, + 23.290025325466484 + ], + [ + 65.75862787852226, + 23.484673060394936 + ], + [ + 65.64378519503859, + 23.290025325466484 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 23.290025325466484 + ], + [ + 65.75862787852226, + 23.484673060394936 + ], + [ + 65.52894251155492, + 23.484673060394936 + ], + [ + 65.64378519503859, + 23.290025325466484 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 23.290025325466484 + ], + [ + 65.52894251155492, + 23.484673060394936 + ], + [ + 65.41409982807123, + 23.290025325466484 + ], + [ + 65.64378519503859, + 23.290025325466484 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 23.290025325466484 + ], + [ + 65.41409982807123, + 23.290025325466484 + ], + [ + 65.52894251155492, + 23.095377590538032 + ], + [ + 65.64378519503859, + 23.290025325466484 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 23.290025325466484 + ], + [ + 65.52894251155492, + 23.095377590538032 + ], + [ + 65.75862787852226, + 23.095377590538032 + ], + [ + 65.64378519503859, + 23.290025325466484 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 23.290025325466484 + ], + [ + 65.75862787852226, + 23.095377590538032 + ], + [ + 65.87347056200595, + 23.290025325466484 + ], + [ + 65.64378519503859, + 23.290025325466484 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 23.67932079532339 + ], + [ + 65.87347056200595, + 23.67932079532339 + ], + [ + 65.75862787852226, + 23.873968530251844 + ], + [ + 65.64378519503859, + 23.67932079532339 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 23.67932079532339 + ], + [ + 65.75862787852226, + 23.873968530251844 + ], + [ + 65.52894251155492, + 23.873968530251844 + ], + [ + 65.64378519503859, + 23.67932079532339 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 23.67932079532339 + ], + [ + 65.52894251155492, + 23.873968530251844 + ], + [ + 65.41409982807123, + 23.67932079532339 + ], + [ + 65.64378519503859, + 23.67932079532339 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 23.67932079532339 + ], + [ + 65.41409982807123, + 23.67932079532339 + ], + [ + 65.52894251155492, + 23.48467306039494 + ], + [ + 65.64378519503859, + 23.67932079532339 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 23.67932079532339 + ], + [ + 65.52894251155492, + 23.48467306039494 + ], + [ + 65.75862787852226, + 23.48467306039494 + ], + [ + 65.64378519503859, + 23.67932079532339 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 23.67932079532339 + ], + [ + 65.75862787852226, + 23.48467306039494 + ], + [ + 65.87347056200595, + 23.67932079532339 + ], + [ + 65.64378519503859, + 23.67932079532339 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 24.068616265180296 + ], + [ + 65.87347056200595, + 24.068616265180296 + ], + [ + 65.75862787852226, + 24.263264000108748 + ], + [ + 65.64378519503859, + 24.068616265180296 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 24.068616265180296 + ], + [ + 65.75862787852226, + 24.263264000108748 + ], + [ + 65.52894251155492, + 24.263264000108748 + ], + [ + 65.64378519503859, + 24.068616265180296 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 24.068616265180296 + ], + [ + 65.52894251155492, + 24.263264000108748 + ], + [ + 65.41409982807123, + 24.068616265180296 + ], + [ + 65.64378519503859, + 24.068616265180296 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 24.068616265180296 + ], + [ + 65.41409982807123, + 24.068616265180296 + ], + [ + 65.52894251155492, + 23.873968530251844 + ], + [ + 65.64378519503859, + 24.068616265180296 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 24.068616265180296 + ], + [ + 65.52894251155492, + 23.873968530251844 + ], + [ + 65.75862787852226, + 23.873968530251844 + ], + [ + 65.64378519503859, + 24.068616265180296 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 24.068616265180296 + ], + [ + 65.75862787852226, + 23.873968530251844 + ], + [ + 65.87347056200595, + 24.068616265180296 + ], + [ + 65.64378519503859, + 24.068616265180296 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 24.4579117350372 + ], + [ + 65.87347056200595, + 24.4579117350372 + ], + [ + 65.75862787852226, + 24.652559469965652 + ], + [ + 65.64378519503859, + 24.4579117350372 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 24.4579117350372 + ], + [ + 65.75862787852226, + 24.652559469965652 + ], + [ + 65.52894251155492, + 24.652559469965652 + ], + [ + 65.64378519503859, + 24.4579117350372 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 24.4579117350372 + ], + [ + 65.52894251155492, + 24.652559469965652 + ], + [ + 65.41409982807123, + 24.4579117350372 + ], + [ + 65.64378519503859, + 24.4579117350372 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 24.4579117350372 + ], + [ + 65.41409982807123, + 24.4579117350372 + ], + [ + 65.52894251155492, + 24.263264000108748 + ], + [ + 65.64378519503859, + 24.4579117350372 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 24.4579117350372 + ], + [ + 65.52894251155492, + 24.263264000108748 + ], + [ + 65.75862787852226, + 24.263264000108748 + ], + [ + 65.64378519503859, + 24.4579117350372 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 24.4579117350372 + ], + [ + 65.75862787852226, + 24.263264000108748 + ], + [ + 65.87347056200595, + 24.4579117350372 + ], + [ + 65.64378519503859, + 24.4579117350372 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 24.847207204894108 + ], + [ + 65.87347056200595, + 24.847207204894108 + ], + [ + 65.75862787852226, + 25.04185493982256 + ], + [ + 65.64378519503859, + 24.847207204894108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 24.847207204894108 + ], + [ + 65.75862787852226, + 25.04185493982256 + ], + [ + 65.52894251155492, + 25.04185493982256 + ], + [ + 65.64378519503859, + 24.847207204894108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 24.847207204894108 + ], + [ + 65.52894251155492, + 25.04185493982256 + ], + [ + 65.41409982807123, + 24.847207204894108 + ], + [ + 65.64378519503859, + 24.847207204894108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 24.847207204894108 + ], + [ + 65.41409982807123, + 24.847207204894108 + ], + [ + 65.52894251155492, + 24.652559469965656 + ], + [ + 65.64378519503859, + 24.847207204894108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 24.847207204894108 + ], + [ + 65.52894251155492, + 24.652559469965656 + ], + [ + 65.75862787852226, + 24.652559469965656 + ], + [ + 65.64378519503859, + 24.847207204894108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 24.847207204894108 + ], + [ + 65.75862787852226, + 24.652559469965656 + ], + [ + 65.87347056200595, + 24.847207204894108 + ], + [ + 65.64378519503859, + 24.847207204894108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 25.236502674751016 + ], + [ + 65.87347056200595, + 25.236502674751016 + ], + [ + 65.75862787852226, + 25.431150409679468 + ], + [ + 65.64378519503859, + 25.236502674751016 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 25.236502674751016 + ], + [ + 65.75862787852226, + 25.431150409679468 + ], + [ + 65.52894251155492, + 25.431150409679468 + ], + [ + 65.64378519503859, + 25.236502674751016 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 25.236502674751016 + ], + [ + 65.52894251155492, + 25.431150409679468 + ], + [ + 65.41409982807123, + 25.236502674751016 + ], + [ + 65.64378519503859, + 25.236502674751016 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 25.236502674751016 + ], + [ + 65.41409982807123, + 25.236502674751016 + ], + [ + 65.52894251155492, + 25.041854939822564 + ], + [ + 65.64378519503859, + 25.236502674751016 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 25.236502674751016 + ], + [ + 65.52894251155492, + 25.041854939822564 + ], + [ + 65.75862787852226, + 25.041854939822564 + ], + [ + 65.64378519503859, + 25.236502674751016 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 25.236502674751016 + ], + [ + 65.75862787852226, + 25.041854939822564 + ], + [ + 65.87347056200595, + 25.236502674751016 + ], + [ + 65.64378519503859, + 25.236502674751016 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 25.62579814460792 + ], + [ + 65.87347056200595, + 25.62579814460792 + ], + [ + 65.75862787852226, + 25.820445879536372 + ], + [ + 65.64378519503859, + 25.62579814460792 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 25.62579814460792 + ], + [ + 65.75862787852226, + 25.820445879536372 + ], + [ + 65.52894251155492, + 25.820445879536372 + ], + [ + 65.64378519503859, + 25.62579814460792 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 25.62579814460792 + ], + [ + 65.52894251155492, + 25.820445879536372 + ], + [ + 65.41409982807123, + 25.62579814460792 + ], + [ + 65.64378519503859, + 25.62579814460792 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 25.62579814460792 + ], + [ + 65.41409982807123, + 25.62579814460792 + ], + [ + 65.52894251155492, + 25.431150409679468 + ], + [ + 65.64378519503859, + 25.62579814460792 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 25.62579814460792 + ], + [ + 65.52894251155492, + 25.431150409679468 + ], + [ + 65.75862787852226, + 25.431150409679468 + ], + [ + 65.64378519503859, + 25.62579814460792 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 25.62579814460792 + ], + [ + 65.75862787852226, + 25.431150409679468 + ], + [ + 65.87347056200595, + 25.62579814460792 + ], + [ + 65.64378519503859, + 25.62579814460792 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 26.015093614464828 + ], + [ + 65.87347056200595, + 26.015093614464828 + ], + [ + 65.75862787852226, + 26.20974134939328 + ], + [ + 65.64378519503859, + 26.015093614464828 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 26.015093614464828 + ], + [ + 65.75862787852226, + 26.20974134939328 + ], + [ + 65.52894251155492, + 26.20974134939328 + ], + [ + 65.64378519503859, + 26.015093614464828 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 26.015093614464828 + ], + [ + 65.52894251155492, + 26.20974134939328 + ], + [ + 65.41409982807123, + 26.015093614464828 + ], + [ + 65.64378519503859, + 26.015093614464828 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 26.015093614464828 + ], + [ + 65.41409982807123, + 26.015093614464828 + ], + [ + 65.52894251155492, + 25.820445879536376 + ], + [ + 65.64378519503859, + 26.015093614464828 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 26.015093614464828 + ], + [ + 65.52894251155492, + 25.820445879536376 + ], + [ + 65.75862787852226, + 25.820445879536376 + ], + [ + 65.64378519503859, + 26.015093614464828 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 26.015093614464828 + ], + [ + 65.75862787852226, + 25.820445879536376 + ], + [ + 65.87347056200595, + 26.015093614464828 + ], + [ + 65.64378519503859, + 26.015093614464828 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 26.404389084321735 + ], + [ + 65.87347056200595, + 26.404389084321735 + ], + [ + 65.75862787852226, + 26.599036819250188 + ], + [ + 65.64378519503859, + 26.404389084321735 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 26.404389084321735 + ], + [ + 65.75862787852226, + 26.599036819250188 + ], + [ + 65.52894251155492, + 26.599036819250188 + ], + [ + 65.64378519503859, + 26.404389084321735 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 26.404389084321735 + ], + [ + 65.52894251155492, + 26.599036819250188 + ], + [ + 65.41409982807123, + 26.404389084321735 + ], + [ + 65.64378519503859, + 26.404389084321735 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 26.404389084321735 + ], + [ + 65.41409982807123, + 26.404389084321735 + ], + [ + 65.52894251155492, + 26.209741349393283 + ], + [ + 65.64378519503859, + 26.404389084321735 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 26.404389084321735 + ], + [ + 65.52894251155492, + 26.209741349393283 + ], + [ + 65.75862787852226, + 26.209741349393283 + ], + [ + 65.64378519503859, + 26.404389084321735 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 26.404389084321735 + ], + [ + 65.75862787852226, + 26.209741349393283 + ], + [ + 65.87347056200595, + 26.404389084321735 + ], + [ + 65.64378519503859, + 26.404389084321735 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 26.79368455417864 + ], + [ + 65.87347056200595, + 26.79368455417864 + ], + [ + 65.75862787852226, + 26.988332289107092 + ], + [ + 65.64378519503859, + 26.79368455417864 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 26.79368455417864 + ], + [ + 65.75862787852226, + 26.988332289107092 + ], + [ + 65.52894251155492, + 26.988332289107092 + ], + [ + 65.64378519503859, + 26.79368455417864 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 26.79368455417864 + ], + [ + 65.52894251155492, + 26.988332289107092 + ], + [ + 65.41409982807123, + 26.79368455417864 + ], + [ + 65.64378519503859, + 26.79368455417864 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 26.79368455417864 + ], + [ + 65.41409982807123, + 26.79368455417864 + ], + [ + 65.52894251155492, + 26.599036819250188 + ], + [ + 65.64378519503859, + 26.79368455417864 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 26.79368455417864 + ], + [ + 65.52894251155492, + 26.599036819250188 + ], + [ + 65.75862787852226, + 26.599036819250188 + ], + [ + 65.64378519503859, + 26.79368455417864 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 26.79368455417864 + ], + [ + 65.75862787852226, + 26.599036819250188 + ], + [ + 65.87347056200595, + 26.79368455417864 + ], + [ + 65.64378519503859, + 26.79368455417864 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 27.182980024035547 + ], + [ + 65.87347056200595, + 27.182980024035547 + ], + [ + 65.75862787852226, + 27.377627758964 + ], + [ + 65.64378519503859, + 27.182980024035547 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 27.182980024035547 + ], + [ + 65.75862787852226, + 27.377627758964 + ], + [ + 65.52894251155492, + 27.377627758964 + ], + [ + 65.64378519503859, + 27.182980024035547 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 27.182980024035547 + ], + [ + 65.52894251155492, + 27.377627758964 + ], + [ + 65.41409982807123, + 27.182980024035547 + ], + [ + 65.64378519503859, + 27.182980024035547 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 27.182980024035547 + ], + [ + 65.41409982807123, + 27.182980024035547 + ], + [ + 65.52894251155492, + 26.988332289107095 + ], + [ + 65.64378519503859, + 27.182980024035547 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 27.182980024035547 + ], + [ + 65.52894251155492, + 26.988332289107095 + ], + [ + 65.75862787852226, + 26.988332289107095 + ], + [ + 65.64378519503859, + 27.182980024035547 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 27.182980024035547 + ], + [ + 65.75862787852226, + 26.988332289107095 + ], + [ + 65.87347056200595, + 27.182980024035547 + ], + [ + 65.64378519503859, + 27.182980024035547 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 27.572275493892455 + ], + [ + 65.87347056200595, + 27.572275493892455 + ], + [ + 65.75862787852226, + 27.766923228820907 + ], + [ + 65.64378519503859, + 27.572275493892455 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 27.572275493892455 + ], + [ + 65.75862787852226, + 27.766923228820907 + ], + [ + 65.52894251155492, + 27.766923228820907 + ], + [ + 65.64378519503859, + 27.572275493892455 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 27.572275493892455 + ], + [ + 65.52894251155492, + 27.766923228820907 + ], + [ + 65.41409982807123, + 27.572275493892455 + ], + [ + 65.64378519503859, + 27.572275493892455 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 27.572275493892455 + ], + [ + 65.41409982807123, + 27.572275493892455 + ], + [ + 65.52894251155492, + 27.377627758964003 + ], + [ + 65.64378519503859, + 27.572275493892455 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 27.572275493892455 + ], + [ + 65.52894251155492, + 27.377627758964003 + ], + [ + 65.75862787852226, + 27.377627758964003 + ], + [ + 65.64378519503859, + 27.572275493892455 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 27.572275493892455 + ], + [ + 65.75862787852226, + 27.377627758964003 + ], + [ + 65.87347056200595, + 27.572275493892455 + ], + [ + 65.64378519503859, + 27.572275493892455 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 27.96157096374936 + ], + [ + 65.87347056200595, + 27.96157096374936 + ], + [ + 65.75862787852226, + 28.15621869867781 + ], + [ + 65.64378519503859, + 27.96157096374936 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 27.96157096374936 + ], + [ + 65.75862787852226, + 28.15621869867781 + ], + [ + 65.52894251155492, + 28.15621869867781 + ], + [ + 65.64378519503859, + 27.96157096374936 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 27.96157096374936 + ], + [ + 65.52894251155492, + 28.15621869867781 + ], + [ + 65.41409982807123, + 27.96157096374936 + ], + [ + 65.64378519503859, + 27.96157096374936 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 27.96157096374936 + ], + [ + 65.41409982807123, + 27.96157096374936 + ], + [ + 65.52894251155492, + 27.766923228820907 + ], + [ + 65.64378519503859, + 27.96157096374936 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 27.96157096374936 + ], + [ + 65.52894251155492, + 27.766923228820907 + ], + [ + 65.75862787852226, + 27.766923228820907 + ], + [ + 65.64378519503859, + 27.96157096374936 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 27.96157096374936 + ], + [ + 65.75862787852226, + 27.766923228820907 + ], + [ + 65.87347056200595, + 27.96157096374936 + ], + [ + 65.64378519503859, + 27.96157096374936 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 28.350866433606267 + ], + [ + 65.87347056200595, + 28.350866433606267 + ], + [ + 65.75862787852226, + 28.54551416853472 + ], + [ + 65.64378519503859, + 28.350866433606267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 28.350866433606267 + ], + [ + 65.75862787852226, + 28.54551416853472 + ], + [ + 65.52894251155492, + 28.54551416853472 + ], + [ + 65.64378519503859, + 28.350866433606267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 28.350866433606267 + ], + [ + 65.52894251155492, + 28.54551416853472 + ], + [ + 65.41409982807123, + 28.350866433606267 + ], + [ + 65.64378519503859, + 28.350866433606267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 28.350866433606267 + ], + [ + 65.41409982807123, + 28.350866433606267 + ], + [ + 65.52894251155492, + 28.156218698677815 + ], + [ + 65.64378519503859, + 28.350866433606267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 28.350866433606267 + ], + [ + 65.52894251155492, + 28.156218698677815 + ], + [ + 65.75862787852226, + 28.156218698677815 + ], + [ + 65.64378519503859, + 28.350866433606267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 28.350866433606267 + ], + [ + 65.75862787852226, + 28.156218698677815 + ], + [ + 65.87347056200595, + 28.350866433606267 + ], + [ + 65.64378519503859, + 28.350866433606267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 28.74016190346317 + ], + [ + 65.87347056200595, + 28.74016190346317 + ], + [ + 65.75862787852226, + 28.934809638391624 + ], + [ + 65.64378519503859, + 28.74016190346317 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 28.74016190346317 + ], + [ + 65.75862787852226, + 28.934809638391624 + ], + [ + 65.52894251155492, + 28.934809638391624 + ], + [ + 65.64378519503859, + 28.74016190346317 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 28.74016190346317 + ], + [ + 65.52894251155492, + 28.934809638391624 + ], + [ + 65.41409982807123, + 28.74016190346317 + ], + [ + 65.64378519503859, + 28.74016190346317 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 28.74016190346317 + ], + [ + 65.41409982807123, + 28.74016190346317 + ], + [ + 65.52894251155492, + 28.54551416853472 + ], + [ + 65.64378519503859, + 28.74016190346317 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 28.74016190346317 + ], + [ + 65.52894251155492, + 28.54551416853472 + ], + [ + 65.75862787852226, + 28.54551416853472 + ], + [ + 65.64378519503859, + 28.74016190346317 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 28.74016190346317 + ], + [ + 65.75862787852226, + 28.54551416853472 + ], + [ + 65.87347056200595, + 28.74016190346317 + ], + [ + 65.64378519503859, + 28.74016190346317 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 29.12945737332008 + ], + [ + 65.87347056200595, + 29.12945737332008 + ], + [ + 65.75862787852226, + 29.32410510824853 + ], + [ + 65.64378519503859, + 29.12945737332008 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 29.12945737332008 + ], + [ + 65.75862787852226, + 29.32410510824853 + ], + [ + 65.52894251155492, + 29.32410510824853 + ], + [ + 65.64378519503859, + 29.12945737332008 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 29.12945737332008 + ], + [ + 65.52894251155492, + 29.32410510824853 + ], + [ + 65.41409982807123, + 29.12945737332008 + ], + [ + 65.64378519503859, + 29.12945737332008 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 29.12945737332008 + ], + [ + 65.41409982807123, + 29.12945737332008 + ], + [ + 65.52894251155492, + 28.934809638391627 + ], + [ + 65.64378519503859, + 29.12945737332008 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 29.12945737332008 + ], + [ + 65.52894251155492, + 28.934809638391627 + ], + [ + 65.75862787852226, + 28.934809638391627 + ], + [ + 65.64378519503859, + 29.12945737332008 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 29.12945737332008 + ], + [ + 65.75862787852226, + 28.934809638391627 + ], + [ + 65.87347056200595, + 29.12945737332008 + ], + [ + 65.64378519503859, + 29.12945737332008 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 29.518752843176983 + ], + [ + 65.87347056200595, + 29.518752843176983 + ], + [ + 65.75862787852226, + 29.713400578105436 + ], + [ + 65.64378519503859, + 29.518752843176983 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 29.518752843176983 + ], + [ + 65.75862787852226, + 29.713400578105436 + ], + [ + 65.52894251155492, + 29.713400578105436 + ], + [ + 65.64378519503859, + 29.518752843176983 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 29.518752843176983 + ], + [ + 65.52894251155492, + 29.713400578105436 + ], + [ + 65.41409982807123, + 29.518752843176983 + ], + [ + 65.64378519503859, + 29.518752843176983 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 29.518752843176983 + ], + [ + 65.41409982807123, + 29.518752843176983 + ], + [ + 65.52894251155492, + 29.32410510824853 + ], + [ + 65.64378519503859, + 29.518752843176983 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 29.518752843176983 + ], + [ + 65.52894251155492, + 29.32410510824853 + ], + [ + 65.75862787852226, + 29.32410510824853 + ], + [ + 65.64378519503859, + 29.518752843176983 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 29.518752843176983 + ], + [ + 65.75862787852226, + 29.32410510824853 + ], + [ + 65.87347056200595, + 29.518752843176983 + ], + [ + 65.64378519503859, + 29.518752843176983 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 29.90804831303389 + ], + [ + 65.87347056200595, + 29.90804831303389 + ], + [ + 65.75862787852226, + 30.102696047962343 + ], + [ + 65.64378519503859, + 29.90804831303389 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 29.90804831303389 + ], + [ + 65.75862787852226, + 30.102696047962343 + ], + [ + 65.52894251155492, + 30.102696047962343 + ], + [ + 65.64378519503859, + 29.90804831303389 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 29.90804831303389 + ], + [ + 65.52894251155492, + 30.102696047962343 + ], + [ + 65.41409982807123, + 29.90804831303389 + ], + [ + 65.64378519503859, + 29.90804831303389 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 29.90804831303389 + ], + [ + 65.41409982807123, + 29.90804831303389 + ], + [ + 65.52894251155492, + 29.71340057810544 + ], + [ + 65.64378519503859, + 29.90804831303389 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 29.90804831303389 + ], + [ + 65.52894251155492, + 29.71340057810544 + ], + [ + 65.75862787852226, + 29.71340057810544 + ], + [ + 65.64378519503859, + 29.90804831303389 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 29.90804831303389 + ], + [ + 65.75862787852226, + 29.71340057810544 + ], + [ + 65.87347056200595, + 29.90804831303389 + ], + [ + 65.64378519503859, + 29.90804831303389 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 30.297343782890795 + ], + [ + 65.87347056200595, + 30.297343782890795 + ], + [ + 65.75862787852226, + 30.491991517819248 + ], + [ + 65.64378519503859, + 30.297343782890795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 30.297343782890795 + ], + [ + 65.75862787852226, + 30.491991517819248 + ], + [ + 65.52894251155492, + 30.491991517819248 + ], + [ + 65.64378519503859, + 30.297343782890795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 30.297343782890795 + ], + [ + 65.52894251155492, + 30.491991517819248 + ], + [ + 65.41409982807123, + 30.297343782890795 + ], + [ + 65.64378519503859, + 30.297343782890795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 30.297343782890795 + ], + [ + 65.41409982807123, + 30.297343782890795 + ], + [ + 65.52894251155492, + 30.102696047962343 + ], + [ + 65.64378519503859, + 30.297343782890795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 30.297343782890795 + ], + [ + 65.52894251155492, + 30.102696047962343 + ], + [ + 65.75862787852226, + 30.102696047962343 + ], + [ + 65.64378519503859, + 30.297343782890795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 30.297343782890795 + ], + [ + 65.75862787852226, + 30.102696047962343 + ], + [ + 65.87347056200595, + 30.297343782890795 + ], + [ + 65.64378519503859, + 30.297343782890795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 30.686639252747703 + ], + [ + 65.87347056200595, + 30.686639252747703 + ], + [ + 65.75862787852226, + 30.881286987676155 + ], + [ + 65.64378519503859, + 30.686639252747703 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 30.686639252747703 + ], + [ + 65.75862787852226, + 30.881286987676155 + ], + [ + 65.52894251155492, + 30.881286987676155 + ], + [ + 65.64378519503859, + 30.686639252747703 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 30.686639252747703 + ], + [ + 65.52894251155492, + 30.881286987676155 + ], + [ + 65.41409982807123, + 30.686639252747703 + ], + [ + 65.64378519503859, + 30.686639252747703 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 30.686639252747703 + ], + [ + 65.41409982807123, + 30.686639252747703 + ], + [ + 65.52894251155492, + 30.49199151781925 + ], + [ + 65.64378519503859, + 30.686639252747703 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 30.686639252747703 + ], + [ + 65.52894251155492, + 30.49199151781925 + ], + [ + 65.75862787852226, + 30.49199151781925 + ], + [ + 65.64378519503859, + 30.686639252747703 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 30.686639252747703 + ], + [ + 65.75862787852226, + 30.49199151781925 + ], + [ + 65.87347056200595, + 30.686639252747703 + ], + [ + 65.64378519503859, + 30.686639252747703 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 31.07593472260461 + ], + [ + 65.87347056200595, + 31.07593472260461 + ], + [ + 65.75862787852226, + 31.270582457533063 + ], + [ + 65.64378519503859, + 31.07593472260461 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 31.07593472260461 + ], + [ + 65.75862787852226, + 31.270582457533063 + ], + [ + 65.52894251155492, + 31.270582457533063 + ], + [ + 65.64378519503859, + 31.07593472260461 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 31.07593472260461 + ], + [ + 65.52894251155492, + 31.270582457533063 + ], + [ + 65.41409982807123, + 31.07593472260461 + ], + [ + 65.64378519503859, + 31.07593472260461 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 31.07593472260461 + ], + [ + 65.41409982807123, + 31.07593472260461 + ], + [ + 65.52894251155492, + 30.88128698767616 + ], + [ + 65.64378519503859, + 31.07593472260461 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 31.07593472260461 + ], + [ + 65.52894251155492, + 30.88128698767616 + ], + [ + 65.75862787852226, + 30.88128698767616 + ], + [ + 65.64378519503859, + 31.07593472260461 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 31.07593472260461 + ], + [ + 65.75862787852226, + 30.88128698767616 + ], + [ + 65.87347056200595, + 31.07593472260461 + ], + [ + 65.64378519503859, + 31.07593472260461 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 31.465230192461515 + ], + [ + 65.87347056200595, + 31.465230192461515 + ], + [ + 65.75862787852226, + 31.659877927389967 + ], + [ + 65.64378519503859, + 31.465230192461515 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 31.465230192461515 + ], + [ + 65.75862787852226, + 31.659877927389967 + ], + [ + 65.52894251155492, + 31.659877927389967 + ], + [ + 65.64378519503859, + 31.465230192461515 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 31.465230192461515 + ], + [ + 65.52894251155492, + 31.659877927389967 + ], + [ + 65.41409982807123, + 31.465230192461515 + ], + [ + 65.64378519503859, + 31.465230192461515 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 31.465230192461515 + ], + [ + 65.41409982807123, + 31.465230192461515 + ], + [ + 65.52894251155492, + 31.270582457533063 + ], + [ + 65.64378519503859, + 31.465230192461515 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 31.465230192461515 + ], + [ + 65.52894251155492, + 31.270582457533063 + ], + [ + 65.75862787852226, + 31.270582457533063 + ], + [ + 65.64378519503859, + 31.465230192461515 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 31.465230192461515 + ], + [ + 65.75862787852226, + 31.270582457533063 + ], + [ + 65.87347056200595, + 31.465230192461515 + ], + [ + 65.64378519503859, + 31.465230192461515 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 31.854525662318423 + ], + [ + 65.87347056200595, + 31.854525662318423 + ], + [ + 65.75862787852226, + 32.049173397246875 + ], + [ + 65.64378519503859, + 31.854525662318423 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 31.854525662318423 + ], + [ + 65.75862787852226, + 32.049173397246875 + ], + [ + 65.52894251155492, + 32.049173397246875 + ], + [ + 65.64378519503859, + 31.854525662318423 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 31.854525662318423 + ], + [ + 65.52894251155492, + 32.049173397246875 + ], + [ + 65.41409982807123, + 31.854525662318423 + ], + [ + 65.64378519503859, + 31.854525662318423 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 31.854525662318423 + ], + [ + 65.41409982807123, + 31.854525662318423 + ], + [ + 65.52894251155492, + 31.65987792738997 + ], + [ + 65.64378519503859, + 31.854525662318423 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 31.854525662318423 + ], + [ + 65.52894251155492, + 31.65987792738997 + ], + [ + 65.75862787852226, + 31.65987792738997 + ], + [ + 65.64378519503859, + 31.854525662318423 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 31.854525662318423 + ], + [ + 65.75862787852226, + 31.65987792738997 + ], + [ + 65.87347056200595, + 31.854525662318423 + ], + [ + 65.64378519503859, + 31.854525662318423 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 32.24382113217533 + ], + [ + 65.87347056200595, + 32.24382113217533 + ], + [ + 65.75862787852226, + 32.43846886710378 + ], + [ + 65.64378519503859, + 32.24382113217533 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 32.24382113217533 + ], + [ + 65.75862787852226, + 32.43846886710378 + ], + [ + 65.52894251155492, + 32.43846886710378 + ], + [ + 65.64378519503859, + 32.24382113217533 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 32.24382113217533 + ], + [ + 65.52894251155492, + 32.43846886710378 + ], + [ + 65.41409982807123, + 32.24382113217533 + ], + [ + 65.64378519503859, + 32.24382113217533 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 32.24382113217533 + ], + [ + 65.41409982807123, + 32.24382113217533 + ], + [ + 65.52894251155492, + 32.049173397246875 + ], + [ + 65.64378519503859, + 32.24382113217533 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 32.24382113217533 + ], + [ + 65.52894251155492, + 32.049173397246875 + ], + [ + 65.75862787852226, + 32.049173397246875 + ], + [ + 65.64378519503859, + 32.24382113217533 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 32.24382113217533 + ], + [ + 65.75862787852226, + 32.049173397246875 + ], + [ + 65.87347056200595, + 32.24382113217533 + ], + [ + 65.64378519503859, + 32.24382113217533 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 32.63311660203224 + ], + [ + 65.87347056200595, + 32.63311660203224 + ], + [ + 65.75862787852226, + 32.82776433696069 + ], + [ + 65.64378519503859, + 32.63311660203224 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 32.63311660203224 + ], + [ + 65.75862787852226, + 32.82776433696069 + ], + [ + 65.52894251155492, + 32.82776433696069 + ], + [ + 65.64378519503859, + 32.63311660203224 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 32.63311660203224 + ], + [ + 65.52894251155492, + 32.82776433696069 + ], + [ + 65.41409982807123, + 32.63311660203224 + ], + [ + 65.64378519503859, + 32.63311660203224 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 32.63311660203224 + ], + [ + 65.41409982807123, + 32.63311660203224 + ], + [ + 65.52894251155492, + 32.438468867103786 + ], + [ + 65.64378519503859, + 32.63311660203224 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 32.63311660203224 + ], + [ + 65.52894251155492, + 32.438468867103786 + ], + [ + 65.75862787852226, + 32.438468867103786 + ], + [ + 65.64378519503859, + 32.63311660203224 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 32.63311660203224 + ], + [ + 65.75862787852226, + 32.438468867103786 + ], + [ + 65.87347056200595, + 32.63311660203224 + ], + [ + 65.64378519503859, + 32.63311660203224 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 33.02241207188914 + ], + [ + 65.87347056200595, + 33.02241207188914 + ], + [ + 65.75862787852226, + 33.217059806817595 + ], + [ + 65.64378519503859, + 33.02241207188914 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 33.02241207188914 + ], + [ + 65.75862787852226, + 33.217059806817595 + ], + [ + 65.52894251155492, + 33.217059806817595 + ], + [ + 65.64378519503859, + 33.02241207188914 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 33.02241207188914 + ], + [ + 65.52894251155492, + 33.217059806817595 + ], + [ + 65.41409982807123, + 33.02241207188914 + ], + [ + 65.64378519503859, + 33.02241207188914 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 33.02241207188914 + ], + [ + 65.41409982807123, + 33.02241207188914 + ], + [ + 65.52894251155492, + 32.82776433696069 + ], + [ + 65.64378519503859, + 33.02241207188914 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 33.02241207188914 + ], + [ + 65.52894251155492, + 32.82776433696069 + ], + [ + 65.75862787852226, + 32.82776433696069 + ], + [ + 65.64378519503859, + 33.02241207188914 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 33.02241207188914 + ], + [ + 65.75862787852226, + 32.82776433696069 + ], + [ + 65.87347056200595, + 33.02241207188914 + ], + [ + 65.64378519503859, + 33.02241207188914 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 33.41170754174605 + ], + [ + 65.87347056200595, + 33.41170754174605 + ], + [ + 65.75862787852226, + 33.6063552766745 + ], + [ + 65.64378519503859, + 33.41170754174605 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 33.41170754174605 + ], + [ + 65.75862787852226, + 33.6063552766745 + ], + [ + 65.52894251155492, + 33.6063552766745 + ], + [ + 65.64378519503859, + 33.41170754174605 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 33.41170754174605 + ], + [ + 65.52894251155492, + 33.6063552766745 + ], + [ + 65.41409982807123, + 33.41170754174605 + ], + [ + 65.64378519503859, + 33.41170754174605 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 33.41170754174605 + ], + [ + 65.41409982807123, + 33.41170754174605 + ], + [ + 65.52894251155492, + 33.217059806817595 + ], + [ + 65.64378519503859, + 33.41170754174605 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 33.41170754174605 + ], + [ + 65.52894251155492, + 33.217059806817595 + ], + [ + 65.75862787852226, + 33.217059806817595 + ], + [ + 65.64378519503859, + 33.41170754174605 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 33.41170754174605 + ], + [ + 65.75862787852226, + 33.217059806817595 + ], + [ + 65.87347056200595, + 33.41170754174605 + ], + [ + 65.64378519503859, + 33.41170754174605 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 33.80100301160295 + ], + [ + 65.87347056200595, + 33.80100301160295 + ], + [ + 65.75862787852226, + 33.9956507465314 + ], + [ + 65.64378519503859, + 33.80100301160295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 33.80100301160295 + ], + [ + 65.75862787852226, + 33.9956507465314 + ], + [ + 65.52894251155492, + 33.9956507465314 + ], + [ + 65.64378519503859, + 33.80100301160295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 33.80100301160295 + ], + [ + 65.52894251155492, + 33.9956507465314 + ], + [ + 65.41409982807123, + 33.80100301160295 + ], + [ + 65.64378519503859, + 33.80100301160295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 33.80100301160295 + ], + [ + 65.41409982807123, + 33.80100301160295 + ], + [ + 65.52894251155492, + 33.6063552766745 + ], + [ + 65.64378519503859, + 33.80100301160295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 33.80100301160295 + ], + [ + 65.52894251155492, + 33.6063552766745 + ], + [ + 65.75862787852226, + 33.6063552766745 + ], + [ + 65.64378519503859, + 33.80100301160295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 33.80100301160295 + ], + [ + 65.75862787852226, + 33.6063552766745 + ], + [ + 65.87347056200595, + 33.80100301160295 + ], + [ + 65.64378519503859, + 33.80100301160295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 34.190298481459855 + ], + [ + 65.87347056200595, + 34.190298481459855 + ], + [ + 65.75862787852226, + 34.38494621638831 + ], + [ + 65.64378519503859, + 34.190298481459855 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 34.190298481459855 + ], + [ + 65.75862787852226, + 34.38494621638831 + ], + [ + 65.52894251155492, + 34.38494621638831 + ], + [ + 65.64378519503859, + 34.190298481459855 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 34.190298481459855 + ], + [ + 65.52894251155492, + 34.38494621638831 + ], + [ + 65.41409982807123, + 34.190298481459855 + ], + [ + 65.64378519503859, + 34.190298481459855 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 34.190298481459855 + ], + [ + 65.41409982807123, + 34.190298481459855 + ], + [ + 65.52894251155492, + 33.9956507465314 + ], + [ + 65.64378519503859, + 34.190298481459855 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 34.190298481459855 + ], + [ + 65.52894251155492, + 33.9956507465314 + ], + [ + 65.75862787852226, + 33.9956507465314 + ], + [ + 65.64378519503859, + 34.190298481459855 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 34.190298481459855 + ], + [ + 65.75862787852226, + 33.9956507465314 + ], + [ + 65.87347056200595, + 34.190298481459855 + ], + [ + 65.64378519503859, + 34.190298481459855 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 34.57959395131677 + ], + [ + 65.87347056200595, + 34.57959395131677 + ], + [ + 65.75862787852226, + 34.77424168624522 + ], + [ + 65.64378519503859, + 34.57959395131677 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 34.57959395131677 + ], + [ + 65.75862787852226, + 34.77424168624522 + ], + [ + 65.52894251155492, + 34.77424168624522 + ], + [ + 65.64378519503859, + 34.57959395131677 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 34.57959395131677 + ], + [ + 65.52894251155492, + 34.77424168624522 + ], + [ + 65.41409982807123, + 34.57959395131677 + ], + [ + 65.64378519503859, + 34.57959395131677 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 34.57959395131677 + ], + [ + 65.41409982807123, + 34.57959395131677 + ], + [ + 65.52894251155492, + 34.384946216388315 + ], + [ + 65.64378519503859, + 34.57959395131677 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 34.57959395131677 + ], + [ + 65.52894251155492, + 34.384946216388315 + ], + [ + 65.75862787852226, + 34.384946216388315 + ], + [ + 65.64378519503859, + 34.57959395131677 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 34.57959395131677 + ], + [ + 65.75862787852226, + 34.384946216388315 + ], + [ + 65.87347056200595, + 34.57959395131677 + ], + [ + 65.64378519503859, + 34.57959395131677 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 34.96888942117368 + ], + [ + 65.87347056200595, + 34.96888942117368 + ], + [ + 65.75862787852226, + 35.16353715610213 + ], + [ + 65.64378519503859, + 34.96888942117368 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 34.96888942117368 + ], + [ + 65.75862787852226, + 35.16353715610213 + ], + [ + 65.52894251155492, + 35.16353715610213 + ], + [ + 65.64378519503859, + 34.96888942117368 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 34.96888942117368 + ], + [ + 65.52894251155492, + 35.16353715610213 + ], + [ + 65.41409982807123, + 34.96888942117368 + ], + [ + 65.64378519503859, + 34.96888942117368 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 34.96888942117368 + ], + [ + 65.41409982807123, + 34.96888942117368 + ], + [ + 65.52894251155492, + 34.774241686245226 + ], + [ + 65.64378519503859, + 34.96888942117368 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 34.96888942117368 + ], + [ + 65.52894251155492, + 34.774241686245226 + ], + [ + 65.75862787852226, + 34.774241686245226 + ], + [ + 65.64378519503859, + 34.96888942117368 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 34.96888942117368 + ], + [ + 65.75862787852226, + 34.774241686245226 + ], + [ + 65.87347056200595, + 34.96888942117368 + ], + [ + 65.64378519503859, + 34.96888942117368 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 35.35818489103058 + ], + [ + 65.87347056200595, + 35.35818489103058 + ], + [ + 65.75862787852226, + 35.552832625959034 + ], + [ + 65.64378519503859, + 35.35818489103058 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 35.35818489103058 + ], + [ + 65.75862787852226, + 35.552832625959034 + ], + [ + 65.52894251155492, + 35.552832625959034 + ], + [ + 65.64378519503859, + 35.35818489103058 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 35.35818489103058 + ], + [ + 65.52894251155492, + 35.552832625959034 + ], + [ + 65.41409982807123, + 35.35818489103058 + ], + [ + 65.64378519503859, + 35.35818489103058 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 35.35818489103058 + ], + [ + 65.41409982807123, + 35.35818489103058 + ], + [ + 65.52894251155492, + 35.16353715610213 + ], + [ + 65.64378519503859, + 35.35818489103058 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 35.35818489103058 + ], + [ + 65.52894251155492, + 35.16353715610213 + ], + [ + 65.75862787852226, + 35.16353715610213 + ], + [ + 65.64378519503859, + 35.35818489103058 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 35.35818489103058 + ], + [ + 65.75862787852226, + 35.16353715610213 + ], + [ + 65.87347056200595, + 35.35818489103058 + ], + [ + 65.64378519503859, + 35.35818489103058 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 35.74748036088749 + ], + [ + 65.87347056200595, + 35.74748036088749 + ], + [ + 65.75862787852226, + 35.94212809581594 + ], + [ + 65.64378519503859, + 35.74748036088749 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 35.74748036088749 + ], + [ + 65.75862787852226, + 35.94212809581594 + ], + [ + 65.52894251155492, + 35.94212809581594 + ], + [ + 65.64378519503859, + 35.74748036088749 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 35.74748036088749 + ], + [ + 65.52894251155492, + 35.94212809581594 + ], + [ + 65.41409982807123, + 35.74748036088749 + ], + [ + 65.64378519503859, + 35.74748036088749 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 35.74748036088749 + ], + [ + 65.41409982807123, + 35.74748036088749 + ], + [ + 65.52894251155492, + 35.552832625959034 + ], + [ + 65.64378519503859, + 35.74748036088749 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 35.74748036088749 + ], + [ + 65.52894251155492, + 35.552832625959034 + ], + [ + 65.75862787852226, + 35.552832625959034 + ], + [ + 65.64378519503859, + 35.74748036088749 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 35.74748036088749 + ], + [ + 65.75862787852226, + 35.552832625959034 + ], + [ + 65.87347056200595, + 35.74748036088749 + ], + [ + 65.64378519503859, + 35.74748036088749 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 36.13677583074439 + ], + [ + 65.87347056200595, + 36.13677583074439 + ], + [ + 65.75862787852226, + 36.33142356567284 + ], + [ + 65.64378519503859, + 36.13677583074439 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 36.13677583074439 + ], + [ + 65.75862787852226, + 36.33142356567284 + ], + [ + 65.52894251155492, + 36.33142356567284 + ], + [ + 65.64378519503859, + 36.13677583074439 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 36.13677583074439 + ], + [ + 65.52894251155492, + 36.33142356567284 + ], + [ + 65.41409982807123, + 36.13677583074439 + ], + [ + 65.64378519503859, + 36.13677583074439 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 36.13677583074439 + ], + [ + 65.41409982807123, + 36.13677583074439 + ], + [ + 65.52894251155492, + 35.94212809581594 + ], + [ + 65.64378519503859, + 36.13677583074439 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 36.13677583074439 + ], + [ + 65.52894251155492, + 35.94212809581594 + ], + [ + 65.75862787852226, + 35.94212809581594 + ], + [ + 65.64378519503859, + 36.13677583074439 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 36.13677583074439 + ], + [ + 65.75862787852226, + 35.94212809581594 + ], + [ + 65.87347056200595, + 36.13677583074439 + ], + [ + 65.64378519503859, + 36.13677583074439 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 36.526071300601295 + ], + [ + 65.87347056200595, + 36.526071300601295 + ], + [ + 65.75862787852226, + 36.72071903552975 + ], + [ + 65.64378519503859, + 36.526071300601295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 36.526071300601295 + ], + [ + 65.75862787852226, + 36.72071903552975 + ], + [ + 65.52894251155492, + 36.72071903552975 + ], + [ + 65.64378519503859, + 36.526071300601295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 36.526071300601295 + ], + [ + 65.52894251155492, + 36.72071903552975 + ], + [ + 65.41409982807123, + 36.526071300601295 + ], + [ + 65.64378519503859, + 36.526071300601295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 36.526071300601295 + ], + [ + 65.41409982807123, + 36.526071300601295 + ], + [ + 65.52894251155492, + 36.33142356567284 + ], + [ + 65.64378519503859, + 36.526071300601295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 36.526071300601295 + ], + [ + 65.52894251155492, + 36.33142356567284 + ], + [ + 65.75862787852226, + 36.33142356567284 + ], + [ + 65.64378519503859, + 36.526071300601295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 36.526071300601295 + ], + [ + 65.75862787852226, + 36.33142356567284 + ], + [ + 65.87347056200595, + 36.526071300601295 + ], + [ + 65.64378519503859, + 36.526071300601295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 36.915366770458206 + ], + [ + 65.87347056200595, + 36.915366770458206 + ], + [ + 65.75862787852226, + 37.11001450538666 + ], + [ + 65.64378519503859, + 36.915366770458206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 36.915366770458206 + ], + [ + 65.75862787852226, + 37.11001450538666 + ], + [ + 65.52894251155492, + 37.11001450538666 + ], + [ + 65.64378519503859, + 36.915366770458206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 36.915366770458206 + ], + [ + 65.52894251155492, + 37.11001450538666 + ], + [ + 65.41409982807123, + 36.915366770458206 + ], + [ + 65.64378519503859, + 36.915366770458206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 36.915366770458206 + ], + [ + 65.41409982807123, + 36.915366770458206 + ], + [ + 65.52894251155492, + 36.720719035529754 + ], + [ + 65.64378519503859, + 36.915366770458206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 36.915366770458206 + ], + [ + 65.52894251155492, + 36.720719035529754 + ], + [ + 65.75862787852226, + 36.720719035529754 + ], + [ + 65.64378519503859, + 36.915366770458206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 36.915366770458206 + ], + [ + 65.75862787852226, + 36.720719035529754 + ], + [ + 65.87347056200595, + 36.915366770458206 + ], + [ + 65.64378519503859, + 36.915366770458206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 37.30466224031511 + ], + [ + 65.87347056200595, + 37.30466224031511 + ], + [ + 65.75862787852226, + 37.49930997524356 + ], + [ + 65.64378519503859, + 37.30466224031511 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 37.30466224031511 + ], + [ + 65.75862787852226, + 37.49930997524356 + ], + [ + 65.52894251155492, + 37.49930997524356 + ], + [ + 65.64378519503859, + 37.30466224031511 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 37.30466224031511 + ], + [ + 65.52894251155492, + 37.49930997524356 + ], + [ + 65.41409982807123, + 37.30466224031511 + ], + [ + 65.64378519503859, + 37.30466224031511 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 37.30466224031511 + ], + [ + 65.41409982807123, + 37.30466224031511 + ], + [ + 65.52894251155492, + 37.11001450538666 + ], + [ + 65.64378519503859, + 37.30466224031511 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 37.30466224031511 + ], + [ + 65.52894251155492, + 37.11001450538666 + ], + [ + 65.75862787852226, + 37.11001450538666 + ], + [ + 65.64378519503859, + 37.30466224031511 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 37.30466224031511 + ], + [ + 65.75862787852226, + 37.11001450538666 + ], + [ + 65.87347056200595, + 37.30466224031511 + ], + [ + 65.64378519503859, + 37.30466224031511 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 37.69395771017202 + ], + [ + 65.87347056200595, + 37.69395771017202 + ], + [ + 65.75862787852226, + 37.888605445100474 + ], + [ + 65.64378519503859, + 37.69395771017202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 37.69395771017202 + ], + [ + 65.75862787852226, + 37.888605445100474 + ], + [ + 65.52894251155492, + 37.888605445100474 + ], + [ + 65.64378519503859, + 37.69395771017202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 37.69395771017202 + ], + [ + 65.52894251155492, + 37.888605445100474 + ], + [ + 65.41409982807123, + 37.69395771017202 + ], + [ + 65.64378519503859, + 37.69395771017202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 37.69395771017202 + ], + [ + 65.41409982807123, + 37.69395771017202 + ], + [ + 65.52894251155492, + 37.49930997524357 + ], + [ + 65.64378519503859, + 37.69395771017202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 37.69395771017202 + ], + [ + 65.52894251155492, + 37.49930997524357 + ], + [ + 65.75862787852226, + 37.49930997524357 + ], + [ + 65.64378519503859, + 37.69395771017202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 37.69395771017202 + ], + [ + 65.75862787852226, + 37.49930997524357 + ], + [ + 65.87347056200595, + 37.69395771017202 + ], + [ + 65.64378519503859, + 37.69395771017202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 38.083253180028926 + ], + [ + 65.87347056200595, + 38.083253180028926 + ], + [ + 65.75862787852226, + 38.27790091495738 + ], + [ + 65.64378519503859, + 38.083253180028926 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 38.083253180028926 + ], + [ + 65.75862787852226, + 38.27790091495738 + ], + [ + 65.52894251155492, + 38.27790091495738 + ], + [ + 65.64378519503859, + 38.083253180028926 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 38.083253180028926 + ], + [ + 65.52894251155492, + 38.27790091495738 + ], + [ + 65.41409982807123, + 38.083253180028926 + ], + [ + 65.64378519503859, + 38.083253180028926 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 38.083253180028926 + ], + [ + 65.41409982807123, + 38.083253180028926 + ], + [ + 65.52894251155492, + 37.888605445100474 + ], + [ + 65.64378519503859, + 38.083253180028926 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 38.083253180028926 + ], + [ + 65.52894251155492, + 37.888605445100474 + ], + [ + 65.75862787852226, + 37.888605445100474 + ], + [ + 65.64378519503859, + 38.083253180028926 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 38.083253180028926 + ], + [ + 65.75862787852226, + 37.888605445100474 + ], + [ + 65.87347056200595, + 38.083253180028926 + ], + [ + 65.64378519503859, + 38.083253180028926 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 38.47254864988583 + ], + [ + 65.87347056200595, + 38.47254864988583 + ], + [ + 65.75862787852226, + 38.66719638481428 + ], + [ + 65.64378519503859, + 38.47254864988583 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 38.47254864988583 + ], + [ + 65.75862787852226, + 38.66719638481428 + ], + [ + 65.52894251155492, + 38.66719638481428 + ], + [ + 65.64378519503859, + 38.47254864988583 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 38.47254864988583 + ], + [ + 65.52894251155492, + 38.66719638481428 + ], + [ + 65.41409982807123, + 38.47254864988583 + ], + [ + 65.64378519503859, + 38.47254864988583 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 38.47254864988583 + ], + [ + 65.41409982807123, + 38.47254864988583 + ], + [ + 65.52894251155492, + 38.27790091495738 + ], + [ + 65.64378519503859, + 38.47254864988583 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 38.47254864988583 + ], + [ + 65.52894251155492, + 38.27790091495738 + ], + [ + 65.75862787852226, + 38.27790091495738 + ], + [ + 65.64378519503859, + 38.47254864988583 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 38.47254864988583 + ], + [ + 65.75862787852226, + 38.27790091495738 + ], + [ + 65.87347056200595, + 38.47254864988583 + ], + [ + 65.64378519503859, + 38.47254864988583 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 38.861844119742734 + ], + [ + 65.87347056200595, + 38.861844119742734 + ], + [ + 65.75862787852226, + 39.05649185467119 + ], + [ + 65.64378519503859, + 38.861844119742734 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 38.861844119742734 + ], + [ + 65.75862787852226, + 39.05649185467119 + ], + [ + 65.52894251155492, + 39.05649185467119 + ], + [ + 65.64378519503859, + 38.861844119742734 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 38.861844119742734 + ], + [ + 65.52894251155492, + 39.05649185467119 + ], + [ + 65.41409982807123, + 38.861844119742734 + ], + [ + 65.64378519503859, + 38.861844119742734 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 38.861844119742734 + ], + [ + 65.41409982807123, + 38.861844119742734 + ], + [ + 65.52894251155492, + 38.66719638481428 + ], + [ + 65.64378519503859, + 38.861844119742734 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 38.861844119742734 + ], + [ + 65.52894251155492, + 38.66719638481428 + ], + [ + 65.75862787852226, + 38.66719638481428 + ], + [ + 65.64378519503859, + 38.861844119742734 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 38.861844119742734 + ], + [ + 65.75862787852226, + 38.66719638481428 + ], + [ + 65.87347056200595, + 38.861844119742734 + ], + [ + 65.64378519503859, + 38.861844119742734 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 39.25113958959964 + ], + [ + 65.87347056200595, + 39.25113958959964 + ], + [ + 65.75862787852226, + 39.44578732452809 + ], + [ + 65.64378519503859, + 39.25113958959964 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 39.25113958959964 + ], + [ + 65.75862787852226, + 39.44578732452809 + ], + [ + 65.52894251155492, + 39.44578732452809 + ], + [ + 65.64378519503859, + 39.25113958959964 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 39.25113958959964 + ], + [ + 65.52894251155492, + 39.44578732452809 + ], + [ + 65.41409982807123, + 39.25113958959964 + ], + [ + 65.64378519503859, + 39.25113958959964 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 39.25113958959964 + ], + [ + 65.41409982807123, + 39.25113958959964 + ], + [ + 65.52894251155492, + 39.05649185467119 + ], + [ + 65.64378519503859, + 39.25113958959964 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 39.25113958959964 + ], + [ + 65.52894251155492, + 39.05649185467119 + ], + [ + 65.75862787852226, + 39.05649185467119 + ], + [ + 65.64378519503859, + 39.25113958959964 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 39.25113958959964 + ], + [ + 65.75862787852226, + 39.05649185467119 + ], + [ + 65.87347056200595, + 39.25113958959964 + ], + [ + 65.64378519503859, + 39.25113958959964 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 39.64043505945655 + ], + [ + 65.87347056200595, + 39.64043505945655 + ], + [ + 65.75862787852226, + 39.835082794385 + ], + [ + 65.64378519503859, + 39.64043505945655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 39.64043505945655 + ], + [ + 65.75862787852226, + 39.835082794385 + ], + [ + 65.52894251155492, + 39.835082794385 + ], + [ + 65.64378519503859, + 39.64043505945655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 39.64043505945655 + ], + [ + 65.52894251155492, + 39.835082794385 + ], + [ + 65.41409982807123, + 39.64043505945655 + ], + [ + 65.64378519503859, + 39.64043505945655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 39.64043505945655 + ], + [ + 65.41409982807123, + 39.64043505945655 + ], + [ + 65.52894251155492, + 39.4457873245281 + ], + [ + 65.64378519503859, + 39.64043505945655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 39.64043505945655 + ], + [ + 65.52894251155492, + 39.4457873245281 + ], + [ + 65.75862787852226, + 39.4457873245281 + ], + [ + 65.64378519503859, + 39.64043505945655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 39.64043505945655 + ], + [ + 65.75862787852226, + 39.4457873245281 + ], + [ + 65.87347056200595, + 39.64043505945655 + ], + [ + 65.64378519503859, + 39.64043505945655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 40.029730529313454 + ], + [ + 65.87347056200595, + 40.029730529313454 + ], + [ + 65.75862787852226, + 40.224378264241906 + ], + [ + 65.64378519503859, + 40.029730529313454 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 40.029730529313454 + ], + [ + 65.75862787852226, + 40.224378264241906 + ], + [ + 65.52894251155492, + 40.224378264241906 + ], + [ + 65.64378519503859, + 40.029730529313454 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 40.029730529313454 + ], + [ + 65.52894251155492, + 40.224378264241906 + ], + [ + 65.41409982807123, + 40.029730529313454 + ], + [ + 65.64378519503859, + 40.029730529313454 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 40.029730529313454 + ], + [ + 65.41409982807123, + 40.029730529313454 + ], + [ + 65.52894251155492, + 39.835082794385 + ], + [ + 65.64378519503859, + 40.029730529313454 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 40.029730529313454 + ], + [ + 65.52894251155492, + 39.835082794385 + ], + [ + 65.75862787852226, + 39.835082794385 + ], + [ + 65.64378519503859, + 40.029730529313454 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 40.029730529313454 + ], + [ + 65.75862787852226, + 39.835082794385 + ], + [ + 65.87347056200595, + 40.029730529313454 + ], + [ + 65.64378519503859, + 40.029730529313454 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 40.419025999170366 + ], + [ + 65.87347056200595, + 40.419025999170366 + ], + [ + 65.75862787852226, + 40.61367373409882 + ], + [ + 65.64378519503859, + 40.419025999170366 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 40.419025999170366 + ], + [ + 65.75862787852226, + 40.61367373409882 + ], + [ + 65.52894251155492, + 40.61367373409882 + ], + [ + 65.64378519503859, + 40.419025999170366 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 40.419025999170366 + ], + [ + 65.52894251155492, + 40.61367373409882 + ], + [ + 65.41409982807123, + 40.419025999170366 + ], + [ + 65.64378519503859, + 40.419025999170366 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 40.419025999170366 + ], + [ + 65.41409982807123, + 40.419025999170366 + ], + [ + 65.52894251155492, + 40.22437826424191 + ], + [ + 65.64378519503859, + 40.419025999170366 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 40.419025999170366 + ], + [ + 65.52894251155492, + 40.22437826424191 + ], + [ + 65.75862787852226, + 40.22437826424191 + ], + [ + 65.64378519503859, + 40.419025999170366 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 40.419025999170366 + ], + [ + 65.75862787852226, + 40.22437826424191 + ], + [ + 65.87347056200595, + 40.419025999170366 + ], + [ + 65.64378519503859, + 40.419025999170366 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 40.80832146902727 + ], + [ + 65.87347056200595, + 40.80832146902727 + ], + [ + 65.75862787852226, + 41.00296920395572 + ], + [ + 65.64378519503859, + 40.80832146902727 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 40.80832146902727 + ], + [ + 65.75862787852226, + 41.00296920395572 + ], + [ + 65.52894251155492, + 41.00296920395572 + ], + [ + 65.64378519503859, + 40.80832146902727 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 40.80832146902727 + ], + [ + 65.52894251155492, + 41.00296920395572 + ], + [ + 65.41409982807123, + 40.80832146902727 + ], + [ + 65.64378519503859, + 40.80832146902727 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 40.80832146902727 + ], + [ + 65.41409982807123, + 40.80832146902727 + ], + [ + 65.52894251155492, + 40.61367373409882 + ], + [ + 65.64378519503859, + 40.80832146902727 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 40.80832146902727 + ], + [ + 65.52894251155492, + 40.61367373409882 + ], + [ + 65.75862787852226, + 40.61367373409882 + ], + [ + 65.64378519503859, + 40.80832146902727 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 40.80832146902727 + ], + [ + 65.75862787852226, + 40.61367373409882 + ], + [ + 65.87347056200595, + 40.80832146902727 + ], + [ + 65.64378519503859, + 40.80832146902727 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 41.197616938884174 + ], + [ + 65.87347056200595, + 41.197616938884174 + ], + [ + 65.75862787852226, + 41.392264673812626 + ], + [ + 65.64378519503859, + 41.197616938884174 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 41.197616938884174 + ], + [ + 65.75862787852226, + 41.392264673812626 + ], + [ + 65.52894251155492, + 41.392264673812626 + ], + [ + 65.64378519503859, + 41.197616938884174 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 41.197616938884174 + ], + [ + 65.52894251155492, + 41.392264673812626 + ], + [ + 65.41409982807123, + 41.197616938884174 + ], + [ + 65.64378519503859, + 41.197616938884174 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 41.197616938884174 + ], + [ + 65.41409982807123, + 41.197616938884174 + ], + [ + 65.52894251155492, + 41.00296920395572 + ], + [ + 65.64378519503859, + 41.197616938884174 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 41.197616938884174 + ], + [ + 65.52894251155492, + 41.00296920395572 + ], + [ + 65.75862787852226, + 41.00296920395572 + ], + [ + 65.64378519503859, + 41.197616938884174 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 41.197616938884174 + ], + [ + 65.75862787852226, + 41.00296920395572 + ], + [ + 65.87347056200595, + 41.197616938884174 + ], + [ + 65.64378519503859, + 41.197616938884174 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 41.58691240874108 + ], + [ + 65.87347056200595, + 41.58691240874108 + ], + [ + 65.75862787852226, + 41.78156014366953 + ], + [ + 65.64378519503859, + 41.58691240874108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 41.58691240874108 + ], + [ + 65.75862787852226, + 41.78156014366953 + ], + [ + 65.52894251155492, + 41.78156014366953 + ], + [ + 65.64378519503859, + 41.58691240874108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 41.58691240874108 + ], + [ + 65.52894251155492, + 41.78156014366953 + ], + [ + 65.41409982807123, + 41.58691240874108 + ], + [ + 65.64378519503859, + 41.58691240874108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 41.58691240874108 + ], + [ + 65.41409982807123, + 41.58691240874108 + ], + [ + 65.52894251155492, + 41.392264673812626 + ], + [ + 65.64378519503859, + 41.58691240874108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 41.58691240874108 + ], + [ + 65.52894251155492, + 41.392264673812626 + ], + [ + 65.75862787852226, + 41.392264673812626 + ], + [ + 65.64378519503859, + 41.58691240874108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 41.58691240874108 + ], + [ + 65.75862787852226, + 41.392264673812626 + ], + [ + 65.87347056200595, + 41.58691240874108 + ], + [ + 65.64378519503859, + 41.58691240874108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 41.97620787859798 + ], + [ + 65.87347056200595, + 41.97620787859798 + ], + [ + 65.75862787852226, + 42.170855613526435 + ], + [ + 65.64378519503859, + 41.97620787859798 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 41.97620787859798 + ], + [ + 65.75862787852226, + 42.170855613526435 + ], + [ + 65.52894251155492, + 42.170855613526435 + ], + [ + 65.64378519503859, + 41.97620787859798 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 41.97620787859798 + ], + [ + 65.52894251155492, + 42.170855613526435 + ], + [ + 65.41409982807123, + 41.97620787859798 + ], + [ + 65.64378519503859, + 41.97620787859798 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 41.97620787859798 + ], + [ + 65.41409982807123, + 41.97620787859798 + ], + [ + 65.52894251155492, + 41.78156014366953 + ], + [ + 65.64378519503859, + 41.97620787859798 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 41.97620787859798 + ], + [ + 65.52894251155492, + 41.78156014366953 + ], + [ + 65.75862787852226, + 41.78156014366953 + ], + [ + 65.64378519503859, + 41.97620787859798 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 41.97620787859798 + ], + [ + 65.75862787852226, + 41.78156014366953 + ], + [ + 65.87347056200595, + 41.97620787859798 + ], + [ + 65.64378519503859, + 41.97620787859798 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 42.365503348454894 + ], + [ + 65.87347056200595, + 42.365503348454894 + ], + [ + 65.75862787852226, + 42.560151083383346 + ], + [ + 65.64378519503859, + 42.365503348454894 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 42.365503348454894 + ], + [ + 65.75862787852226, + 42.560151083383346 + ], + [ + 65.52894251155492, + 42.560151083383346 + ], + [ + 65.64378519503859, + 42.365503348454894 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 42.365503348454894 + ], + [ + 65.52894251155492, + 42.560151083383346 + ], + [ + 65.41409982807123, + 42.365503348454894 + ], + [ + 65.64378519503859, + 42.365503348454894 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 42.365503348454894 + ], + [ + 65.41409982807123, + 42.365503348454894 + ], + [ + 65.52894251155492, + 42.17085561352644 + ], + [ + 65.64378519503859, + 42.365503348454894 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 42.365503348454894 + ], + [ + 65.52894251155492, + 42.17085561352644 + ], + [ + 65.75862787852226, + 42.17085561352644 + ], + [ + 65.64378519503859, + 42.365503348454894 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 42.365503348454894 + ], + [ + 65.75862787852226, + 42.17085561352644 + ], + [ + 65.87347056200595, + 42.365503348454894 + ], + [ + 65.64378519503859, + 42.365503348454894 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 42.754798818311805 + ], + [ + 65.87347056200595, + 42.754798818311805 + ], + [ + 65.75862787852226, + 42.94944655324026 + ], + [ + 65.64378519503859, + 42.754798818311805 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 42.754798818311805 + ], + [ + 65.75862787852226, + 42.94944655324026 + ], + [ + 65.52894251155492, + 42.94944655324026 + ], + [ + 65.64378519503859, + 42.754798818311805 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 42.754798818311805 + ], + [ + 65.52894251155492, + 42.94944655324026 + ], + [ + 65.41409982807123, + 42.754798818311805 + ], + [ + 65.64378519503859, + 42.754798818311805 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 42.754798818311805 + ], + [ + 65.41409982807123, + 42.754798818311805 + ], + [ + 65.52894251155492, + 42.56015108338335 + ], + [ + 65.64378519503859, + 42.754798818311805 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 42.754798818311805 + ], + [ + 65.52894251155492, + 42.56015108338335 + ], + [ + 65.75862787852226, + 42.56015108338335 + ], + [ + 65.64378519503859, + 42.754798818311805 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 42.754798818311805 + ], + [ + 65.75862787852226, + 42.56015108338335 + ], + [ + 65.87347056200595, + 42.754798818311805 + ], + [ + 65.64378519503859, + 42.754798818311805 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 43.14409428816871 + ], + [ + 65.87347056200595, + 43.14409428816871 + ], + [ + 65.75862787852226, + 43.33874202309716 + ], + [ + 65.64378519503859, + 43.14409428816871 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 43.14409428816871 + ], + [ + 65.75862787852226, + 43.33874202309716 + ], + [ + 65.52894251155492, + 43.33874202309716 + ], + [ + 65.64378519503859, + 43.14409428816871 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 43.14409428816871 + ], + [ + 65.52894251155492, + 43.33874202309716 + ], + [ + 65.41409982807123, + 43.14409428816871 + ], + [ + 65.64378519503859, + 43.14409428816871 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 43.14409428816871 + ], + [ + 65.41409982807123, + 43.14409428816871 + ], + [ + 65.52894251155492, + 42.94944655324026 + ], + [ + 65.64378519503859, + 43.14409428816871 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 43.14409428816871 + ], + [ + 65.52894251155492, + 42.94944655324026 + ], + [ + 65.75862787852226, + 42.94944655324026 + ], + [ + 65.64378519503859, + 43.14409428816871 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 43.14409428816871 + ], + [ + 65.75862787852226, + 42.94944655324026 + ], + [ + 65.87347056200595, + 43.14409428816871 + ], + [ + 65.64378519503859, + 43.14409428816871 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 43.53338975802561 + ], + [ + 65.87347056200595, + 43.53338975802561 + ], + [ + 65.75862787852226, + 43.728037492954066 + ], + [ + 65.64378519503859, + 43.53338975802561 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 43.53338975802561 + ], + [ + 65.75862787852226, + 43.728037492954066 + ], + [ + 65.52894251155492, + 43.728037492954066 + ], + [ + 65.64378519503859, + 43.53338975802561 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 43.53338975802561 + ], + [ + 65.52894251155492, + 43.728037492954066 + ], + [ + 65.41409982807123, + 43.53338975802561 + ], + [ + 65.64378519503859, + 43.53338975802561 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 43.53338975802561 + ], + [ + 65.41409982807123, + 43.53338975802561 + ], + [ + 65.52894251155492, + 43.33874202309716 + ], + [ + 65.64378519503859, + 43.53338975802561 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 43.53338975802561 + ], + [ + 65.52894251155492, + 43.33874202309716 + ], + [ + 65.75862787852226, + 43.33874202309716 + ], + [ + 65.64378519503859, + 43.53338975802561 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 43.53338975802561 + ], + [ + 65.75862787852226, + 43.33874202309716 + ], + [ + 65.87347056200595, + 43.53338975802561 + ], + [ + 65.64378519503859, + 43.53338975802561 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 43.92268522788252 + ], + [ + 65.87347056200595, + 43.92268522788252 + ], + [ + 65.75862787852226, + 44.11733296281097 + ], + [ + 65.64378519503859, + 43.92268522788252 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 43.92268522788252 + ], + [ + 65.75862787852226, + 44.11733296281097 + ], + [ + 65.52894251155492, + 44.11733296281097 + ], + [ + 65.64378519503859, + 43.92268522788252 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 43.92268522788252 + ], + [ + 65.52894251155492, + 44.11733296281097 + ], + [ + 65.41409982807123, + 43.92268522788252 + ], + [ + 65.64378519503859, + 43.92268522788252 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 43.92268522788252 + ], + [ + 65.41409982807123, + 43.92268522788252 + ], + [ + 65.52894251155492, + 43.728037492954066 + ], + [ + 65.64378519503859, + 43.92268522788252 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 43.92268522788252 + ], + [ + 65.52894251155492, + 43.728037492954066 + ], + [ + 65.75862787852226, + 43.728037492954066 + ], + [ + 65.64378519503859, + 43.92268522788252 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 43.92268522788252 + ], + [ + 65.75862787852226, + 43.728037492954066 + ], + [ + 65.87347056200595, + 43.92268522788252 + ], + [ + 65.64378519503859, + 43.92268522788252 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 44.31198069773942 + ], + [ + 65.87347056200595, + 44.31198069773942 + ], + [ + 65.75862787852226, + 44.506628432667874 + ], + [ + 65.64378519503859, + 44.31198069773942 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 44.31198069773942 + ], + [ + 65.75862787852226, + 44.506628432667874 + ], + [ + 65.52894251155492, + 44.506628432667874 + ], + [ + 65.64378519503859, + 44.31198069773942 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 44.31198069773942 + ], + [ + 65.52894251155492, + 44.506628432667874 + ], + [ + 65.41409982807123, + 44.31198069773942 + ], + [ + 65.64378519503859, + 44.31198069773942 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 44.31198069773942 + ], + [ + 65.41409982807123, + 44.31198069773942 + ], + [ + 65.52894251155492, + 44.11733296281097 + ], + [ + 65.64378519503859, + 44.31198069773942 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 44.31198069773942 + ], + [ + 65.52894251155492, + 44.11733296281097 + ], + [ + 65.75862787852226, + 44.11733296281097 + ], + [ + 65.64378519503859, + 44.31198069773942 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 44.31198069773942 + ], + [ + 65.75862787852226, + 44.11733296281097 + ], + [ + 65.87347056200595, + 44.31198069773942 + ], + [ + 65.64378519503859, + 44.31198069773942 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 44.701276167596326 + ], + [ + 65.87347056200595, + 44.701276167596326 + ], + [ + 65.75862787852226, + 44.89592390252478 + ], + [ + 65.64378519503859, + 44.701276167596326 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 44.701276167596326 + ], + [ + 65.75862787852226, + 44.89592390252478 + ], + [ + 65.52894251155492, + 44.89592390252478 + ], + [ + 65.64378519503859, + 44.701276167596326 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 44.701276167596326 + ], + [ + 65.52894251155492, + 44.89592390252478 + ], + [ + 65.41409982807123, + 44.701276167596326 + ], + [ + 65.64378519503859, + 44.701276167596326 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 44.701276167596326 + ], + [ + 65.41409982807123, + 44.701276167596326 + ], + [ + 65.52894251155492, + 44.506628432667874 + ], + [ + 65.64378519503859, + 44.701276167596326 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 44.701276167596326 + ], + [ + 65.52894251155492, + 44.506628432667874 + ], + [ + 65.75862787852226, + 44.506628432667874 + ], + [ + 65.64378519503859, + 44.701276167596326 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 44.701276167596326 + ], + [ + 65.75862787852226, + 44.506628432667874 + ], + [ + 65.87347056200595, + 44.701276167596326 + ], + [ + 65.64378519503859, + 44.701276167596326 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 45.090571637453245 + ], + [ + 65.87347056200595, + 45.090571637453245 + ], + [ + 65.75862787852226, + 45.2852193723817 + ], + [ + 65.64378519503859, + 45.090571637453245 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 45.090571637453245 + ], + [ + 65.75862787852226, + 45.2852193723817 + ], + [ + 65.52894251155492, + 45.2852193723817 + ], + [ + 65.64378519503859, + 45.090571637453245 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 45.090571637453245 + ], + [ + 65.52894251155492, + 45.2852193723817 + ], + [ + 65.41409982807123, + 45.090571637453245 + ], + [ + 65.64378519503859, + 45.090571637453245 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 45.090571637453245 + ], + [ + 65.41409982807123, + 45.090571637453245 + ], + [ + 65.52894251155492, + 44.89592390252479 + ], + [ + 65.64378519503859, + 45.090571637453245 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 45.090571637453245 + ], + [ + 65.52894251155492, + 44.89592390252479 + ], + [ + 65.75862787852226, + 44.89592390252479 + ], + [ + 65.64378519503859, + 45.090571637453245 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 45.090571637453245 + ], + [ + 65.75862787852226, + 44.89592390252479 + ], + [ + 65.87347056200595, + 45.090571637453245 + ], + [ + 65.64378519503859, + 45.090571637453245 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 45.47986710731015 + ], + [ + 65.87347056200595, + 45.47986710731015 + ], + [ + 65.75862787852226, + 45.6745148422386 + ], + [ + 65.64378519503859, + 45.47986710731015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 45.47986710731015 + ], + [ + 65.75862787852226, + 45.6745148422386 + ], + [ + 65.52894251155492, + 45.6745148422386 + ], + [ + 65.64378519503859, + 45.47986710731015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 45.47986710731015 + ], + [ + 65.52894251155492, + 45.6745148422386 + ], + [ + 65.41409982807123, + 45.47986710731015 + ], + [ + 65.64378519503859, + 45.47986710731015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 45.47986710731015 + ], + [ + 65.41409982807123, + 45.47986710731015 + ], + [ + 65.52894251155492, + 45.2852193723817 + ], + [ + 65.64378519503859, + 45.47986710731015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 45.47986710731015 + ], + [ + 65.52894251155492, + 45.2852193723817 + ], + [ + 65.75862787852226, + 45.2852193723817 + ], + [ + 65.64378519503859, + 45.47986710731015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 45.47986710731015 + ], + [ + 65.75862787852226, + 45.2852193723817 + ], + [ + 65.87347056200595, + 45.47986710731015 + ], + [ + 65.64378519503859, + 45.47986710731015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 45.86916257716705 + ], + [ + 65.87347056200595, + 45.86916257716705 + ], + [ + 65.75862787852226, + 46.063810312095505 + ], + [ + 65.64378519503859, + 45.86916257716705 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 45.86916257716705 + ], + [ + 65.75862787852226, + 46.063810312095505 + ], + [ + 65.52894251155492, + 46.063810312095505 + ], + [ + 65.64378519503859, + 45.86916257716705 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 45.86916257716705 + ], + [ + 65.52894251155492, + 46.063810312095505 + ], + [ + 65.41409982807123, + 45.86916257716705 + ], + [ + 65.64378519503859, + 45.86916257716705 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 45.86916257716705 + ], + [ + 65.41409982807123, + 45.86916257716705 + ], + [ + 65.52894251155492, + 45.6745148422386 + ], + [ + 65.64378519503859, + 45.86916257716705 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 45.86916257716705 + ], + [ + 65.52894251155492, + 45.6745148422386 + ], + [ + 65.75862787852226, + 45.6745148422386 + ], + [ + 65.64378519503859, + 45.86916257716705 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 45.86916257716705 + ], + [ + 65.75862787852226, + 45.6745148422386 + ], + [ + 65.87347056200595, + 45.86916257716705 + ], + [ + 65.64378519503859, + 45.86916257716705 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 46.25845804702396 + ], + [ + 65.87347056200595, + 46.25845804702396 + ], + [ + 65.75862787852226, + 46.45310578195241 + ], + [ + 65.64378519503859, + 46.25845804702396 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 46.25845804702396 + ], + [ + 65.75862787852226, + 46.45310578195241 + ], + [ + 65.52894251155492, + 46.45310578195241 + ], + [ + 65.64378519503859, + 46.25845804702396 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 46.25845804702396 + ], + [ + 65.52894251155492, + 46.45310578195241 + ], + [ + 65.41409982807123, + 46.25845804702396 + ], + [ + 65.64378519503859, + 46.25845804702396 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 46.25845804702396 + ], + [ + 65.41409982807123, + 46.25845804702396 + ], + [ + 65.52894251155492, + 46.063810312095505 + ], + [ + 65.64378519503859, + 46.25845804702396 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 46.25845804702396 + ], + [ + 65.52894251155492, + 46.063810312095505 + ], + [ + 65.75862787852226, + 46.063810312095505 + ], + [ + 65.64378519503859, + 46.25845804702396 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 46.25845804702396 + ], + [ + 65.75862787852226, + 46.063810312095505 + ], + [ + 65.87347056200595, + 46.25845804702396 + ], + [ + 65.64378519503859, + 46.25845804702396 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 46.64775351688086 + ], + [ + 65.87347056200595, + 46.64775351688086 + ], + [ + 65.75862787852226, + 46.842401251809314 + ], + [ + 65.64378519503859, + 46.64775351688086 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 46.64775351688086 + ], + [ + 65.75862787852226, + 46.842401251809314 + ], + [ + 65.52894251155492, + 46.842401251809314 + ], + [ + 65.64378519503859, + 46.64775351688086 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 46.64775351688086 + ], + [ + 65.52894251155492, + 46.842401251809314 + ], + [ + 65.41409982807123, + 46.64775351688086 + ], + [ + 65.64378519503859, + 46.64775351688086 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 46.64775351688086 + ], + [ + 65.41409982807123, + 46.64775351688086 + ], + [ + 65.52894251155492, + 46.45310578195241 + ], + [ + 65.64378519503859, + 46.64775351688086 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 46.64775351688086 + ], + [ + 65.52894251155492, + 46.45310578195241 + ], + [ + 65.75862787852226, + 46.45310578195241 + ], + [ + 65.64378519503859, + 46.64775351688086 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 46.64775351688086 + ], + [ + 65.75862787852226, + 46.45310578195241 + ], + [ + 65.87347056200595, + 46.64775351688086 + ], + [ + 65.64378519503859, + 46.64775351688086 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 47.037048986737766 + ], + [ + 65.87347056200595, + 47.037048986737766 + ], + [ + 65.75862787852226, + 47.23169672166622 + ], + [ + 65.64378519503859, + 47.037048986737766 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 47.037048986737766 + ], + [ + 65.75862787852226, + 47.23169672166622 + ], + [ + 65.52894251155492, + 47.23169672166622 + ], + [ + 65.64378519503859, + 47.037048986737766 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 47.037048986737766 + ], + [ + 65.52894251155492, + 47.23169672166622 + ], + [ + 65.41409982807123, + 47.037048986737766 + ], + [ + 65.64378519503859, + 47.037048986737766 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 47.037048986737766 + ], + [ + 65.41409982807123, + 47.037048986737766 + ], + [ + 65.52894251155492, + 46.842401251809314 + ], + [ + 65.64378519503859, + 47.037048986737766 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 47.037048986737766 + ], + [ + 65.52894251155492, + 46.842401251809314 + ], + [ + 65.75862787852226, + 46.842401251809314 + ], + [ + 65.64378519503859, + 47.037048986737766 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 47.037048986737766 + ], + [ + 65.75862787852226, + 46.842401251809314 + ], + [ + 65.87347056200595, + 47.037048986737766 + ], + [ + 65.64378519503859, + 47.037048986737766 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 47.42634445659467 + ], + [ + 65.87347056200595, + 47.42634445659467 + ], + [ + 65.75862787852226, + 47.62099219152312 + ], + [ + 65.64378519503859, + 47.42634445659467 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 47.42634445659467 + ], + [ + 65.75862787852226, + 47.62099219152312 + ], + [ + 65.52894251155492, + 47.62099219152312 + ], + [ + 65.64378519503859, + 47.42634445659467 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 47.42634445659467 + ], + [ + 65.52894251155492, + 47.62099219152312 + ], + [ + 65.41409982807123, + 47.42634445659467 + ], + [ + 65.64378519503859, + 47.42634445659467 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 47.42634445659467 + ], + [ + 65.41409982807123, + 47.42634445659467 + ], + [ + 65.52894251155492, + 47.23169672166622 + ], + [ + 65.64378519503859, + 47.42634445659467 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 47.42634445659467 + ], + [ + 65.52894251155492, + 47.23169672166622 + ], + [ + 65.75862787852226, + 47.23169672166622 + ], + [ + 65.64378519503859, + 47.42634445659467 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 47.42634445659467 + ], + [ + 65.75862787852226, + 47.23169672166622 + ], + [ + 65.87347056200595, + 47.42634445659467 + ], + [ + 65.64378519503859, + 47.42634445659467 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 47.81563992645159 + ], + [ + 65.87347056200595, + 47.81563992645159 + ], + [ + 65.75862787852226, + 48.01028766138004 + ], + [ + 65.64378519503859, + 47.81563992645159 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 47.81563992645159 + ], + [ + 65.75862787852226, + 48.01028766138004 + ], + [ + 65.52894251155492, + 48.01028766138004 + ], + [ + 65.64378519503859, + 47.81563992645159 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 47.81563992645159 + ], + [ + 65.52894251155492, + 48.01028766138004 + ], + [ + 65.41409982807123, + 47.81563992645159 + ], + [ + 65.64378519503859, + 47.81563992645159 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 47.81563992645159 + ], + [ + 65.41409982807123, + 47.81563992645159 + ], + [ + 65.52894251155492, + 47.620992191523136 + ], + [ + 65.64378519503859, + 47.81563992645159 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 47.81563992645159 + ], + [ + 65.52894251155492, + 47.620992191523136 + ], + [ + 65.75862787852226, + 47.620992191523136 + ], + [ + 65.64378519503859, + 47.81563992645159 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.64378519503859, + 47.81563992645159 + ], + [ + 65.75862787852226, + 47.620992191523136 + ], + [ + 65.87347056200595, + 47.81563992645159 + ], + [ + 65.64378519503859, + 47.81563992645159 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 11.805808964687746 + ], + [ + 66.217998612457, + 11.805808964687746 + ], + [ + 66.10315592897331, + 12.0004566996162 + ], + [ + 65.98831324548964, + 11.805808964687746 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 11.805808964687746 + ], + [ + 66.10315592897331, + 12.0004566996162 + ], + [ + 65.87347056200596, + 12.0004566996162 + ], + [ + 65.98831324548964, + 11.805808964687746 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 11.805808964687746 + ], + [ + 65.87347056200596, + 12.0004566996162 + ], + [ + 65.75862787852228, + 11.805808964687746 + ], + [ + 65.98831324548964, + 11.805808964687746 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 11.805808964687746 + ], + [ + 65.75862787852228, + 11.805808964687746 + ], + [ + 65.87347056200596, + 11.611161229759292 + ], + [ + 65.98831324548964, + 11.805808964687746 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 11.805808964687746 + ], + [ + 65.87347056200596, + 11.611161229759292 + ], + [ + 66.10315592897331, + 11.611161229759292 + ], + [ + 65.98831324548964, + 11.805808964687746 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 11.805808964687746 + ], + [ + 66.10315592897331, + 11.611161229759292 + ], + [ + 66.217998612457, + 11.805808964687746 + ], + [ + 65.98831324548964, + 11.805808964687746 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 12.195104434544652 + ], + [ + 66.217998612457, + 12.195104434544652 + ], + [ + 66.10315592897331, + 12.389752169473105 + ], + [ + 65.98831324548964, + 12.195104434544652 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 12.195104434544652 + ], + [ + 66.10315592897331, + 12.389752169473105 + ], + [ + 65.87347056200596, + 12.389752169473105 + ], + [ + 65.98831324548964, + 12.195104434544652 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 12.195104434544652 + ], + [ + 65.87347056200596, + 12.389752169473105 + ], + [ + 65.75862787852228, + 12.195104434544652 + ], + [ + 65.98831324548964, + 12.195104434544652 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 12.195104434544652 + ], + [ + 65.75862787852228, + 12.195104434544652 + ], + [ + 65.87347056200596, + 12.000456699616198 + ], + [ + 65.98831324548964, + 12.195104434544652 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 12.195104434544652 + ], + [ + 65.87347056200596, + 12.000456699616198 + ], + [ + 66.10315592897331, + 12.000456699616198 + ], + [ + 65.98831324548964, + 12.195104434544652 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 12.195104434544652 + ], + [ + 66.10315592897331, + 12.000456699616198 + ], + [ + 66.217998612457, + 12.195104434544652 + ], + [ + 65.98831324548964, + 12.195104434544652 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 12.58439990440156 + ], + [ + 66.217998612457, + 12.58439990440156 + ], + [ + 66.10315592897331, + 12.779047639330013 + ], + [ + 65.98831324548964, + 12.58439990440156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 12.58439990440156 + ], + [ + 66.10315592897331, + 12.779047639330013 + ], + [ + 65.87347056200596, + 12.779047639330013 + ], + [ + 65.98831324548964, + 12.58439990440156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 12.58439990440156 + ], + [ + 65.87347056200596, + 12.779047639330013 + ], + [ + 65.75862787852228, + 12.58439990440156 + ], + [ + 65.98831324548964, + 12.58439990440156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 12.58439990440156 + ], + [ + 65.75862787852228, + 12.58439990440156 + ], + [ + 65.87347056200596, + 12.389752169473105 + ], + [ + 65.98831324548964, + 12.58439990440156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 12.58439990440156 + ], + [ + 65.87347056200596, + 12.389752169473105 + ], + [ + 66.10315592897331, + 12.389752169473105 + ], + [ + 65.98831324548964, + 12.58439990440156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 12.58439990440156 + ], + [ + 66.10315592897331, + 12.389752169473105 + ], + [ + 66.217998612457, + 12.58439990440156 + ], + [ + 65.98831324548964, + 12.58439990440156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 12.973695374258465 + ], + [ + 66.217998612457, + 12.973695374258465 + ], + [ + 66.10315592897331, + 13.16834310918692 + ], + [ + 65.98831324548964, + 12.973695374258465 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 12.973695374258465 + ], + [ + 66.10315592897331, + 13.16834310918692 + ], + [ + 65.87347056200596, + 13.16834310918692 + ], + [ + 65.98831324548964, + 12.973695374258465 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 12.973695374258465 + ], + [ + 65.87347056200596, + 13.16834310918692 + ], + [ + 65.75862787852228, + 12.973695374258465 + ], + [ + 65.98831324548964, + 12.973695374258465 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 12.973695374258465 + ], + [ + 65.75862787852228, + 12.973695374258465 + ], + [ + 65.87347056200596, + 12.779047639330011 + ], + [ + 65.98831324548964, + 12.973695374258465 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 12.973695374258465 + ], + [ + 65.87347056200596, + 12.779047639330011 + ], + [ + 66.10315592897331, + 12.779047639330011 + ], + [ + 65.98831324548964, + 12.973695374258465 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 12.973695374258465 + ], + [ + 66.10315592897331, + 12.779047639330011 + ], + [ + 66.217998612457, + 12.973695374258465 + ], + [ + 65.98831324548964, + 12.973695374258465 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 13.362990844115371 + ], + [ + 66.217998612457, + 13.362990844115371 + ], + [ + 66.10315592897331, + 13.557638579043825 + ], + [ + 65.98831324548964, + 13.362990844115371 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 13.362990844115371 + ], + [ + 66.10315592897331, + 13.557638579043825 + ], + [ + 65.87347056200596, + 13.557638579043825 + ], + [ + 65.98831324548964, + 13.362990844115371 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 13.362990844115371 + ], + [ + 65.87347056200596, + 13.557638579043825 + ], + [ + 65.75862787852228, + 13.362990844115371 + ], + [ + 65.98831324548964, + 13.362990844115371 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 13.362990844115371 + ], + [ + 65.75862787852228, + 13.362990844115371 + ], + [ + 65.87347056200596, + 13.168343109186917 + ], + [ + 65.98831324548964, + 13.362990844115371 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 13.362990844115371 + ], + [ + 65.87347056200596, + 13.168343109186917 + ], + [ + 66.10315592897331, + 13.168343109186917 + ], + [ + 65.98831324548964, + 13.362990844115371 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 13.362990844115371 + ], + [ + 66.10315592897331, + 13.168343109186917 + ], + [ + 66.217998612457, + 13.362990844115371 + ], + [ + 65.98831324548964, + 13.362990844115371 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 13.752286313972277 + ], + [ + 66.217998612457, + 13.752286313972277 + ], + [ + 66.10315592897331, + 13.946934048900731 + ], + [ + 65.98831324548964, + 13.752286313972277 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 13.752286313972277 + ], + [ + 66.10315592897331, + 13.946934048900731 + ], + [ + 65.87347056200596, + 13.946934048900731 + ], + [ + 65.98831324548964, + 13.752286313972277 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 13.752286313972277 + ], + [ + 65.87347056200596, + 13.946934048900731 + ], + [ + 65.75862787852228, + 13.752286313972277 + ], + [ + 65.98831324548964, + 13.752286313972277 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 13.752286313972277 + ], + [ + 65.75862787852228, + 13.752286313972277 + ], + [ + 65.87347056200596, + 13.557638579043823 + ], + [ + 65.98831324548964, + 13.752286313972277 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 13.752286313972277 + ], + [ + 65.87347056200596, + 13.557638579043823 + ], + [ + 66.10315592897331, + 13.557638579043823 + ], + [ + 65.98831324548964, + 13.752286313972277 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 13.752286313972277 + ], + [ + 66.10315592897331, + 13.557638579043823 + ], + [ + 66.217998612457, + 13.752286313972277 + ], + [ + 65.98831324548964, + 13.752286313972277 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 14.141581783829183 + ], + [ + 66.217998612457, + 14.141581783829183 + ], + [ + 66.10315592897331, + 14.336229518757637 + ], + [ + 65.98831324548964, + 14.141581783829183 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 14.141581783829183 + ], + [ + 66.10315592897331, + 14.336229518757637 + ], + [ + 65.87347056200596, + 14.336229518757637 + ], + [ + 65.98831324548964, + 14.141581783829183 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 14.141581783829183 + ], + [ + 65.87347056200596, + 14.336229518757637 + ], + [ + 65.75862787852228, + 14.141581783829183 + ], + [ + 65.98831324548964, + 14.141581783829183 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 14.141581783829183 + ], + [ + 65.75862787852228, + 14.141581783829183 + ], + [ + 65.87347056200596, + 13.94693404890073 + ], + [ + 65.98831324548964, + 14.141581783829183 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 14.141581783829183 + ], + [ + 65.87347056200596, + 13.94693404890073 + ], + [ + 66.10315592897331, + 13.94693404890073 + ], + [ + 65.98831324548964, + 14.141581783829183 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 14.141581783829183 + ], + [ + 66.10315592897331, + 13.94693404890073 + ], + [ + 66.217998612457, + 14.141581783829183 + ], + [ + 65.98831324548964, + 14.141581783829183 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 14.530877253686091 + ], + [ + 66.217998612457, + 14.530877253686091 + ], + [ + 66.10315592897331, + 14.725524988614545 + ], + [ + 65.98831324548964, + 14.530877253686091 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 14.530877253686091 + ], + [ + 66.10315592897331, + 14.725524988614545 + ], + [ + 65.87347056200596, + 14.725524988614545 + ], + [ + 65.98831324548964, + 14.530877253686091 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 14.530877253686091 + ], + [ + 65.87347056200596, + 14.725524988614545 + ], + [ + 65.75862787852228, + 14.530877253686091 + ], + [ + 65.98831324548964, + 14.530877253686091 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 14.530877253686091 + ], + [ + 65.75862787852228, + 14.530877253686091 + ], + [ + 65.87347056200596, + 14.336229518757637 + ], + [ + 65.98831324548964, + 14.530877253686091 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 14.530877253686091 + ], + [ + 65.87347056200596, + 14.336229518757637 + ], + [ + 66.10315592897331, + 14.336229518757637 + ], + [ + 65.98831324548964, + 14.530877253686091 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 14.530877253686091 + ], + [ + 66.10315592897331, + 14.336229518757637 + ], + [ + 66.217998612457, + 14.530877253686091 + ], + [ + 65.98831324548964, + 14.530877253686091 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 14.920172723542997 + ], + [ + 66.217998612457, + 14.920172723542997 + ], + [ + 66.10315592897331, + 15.114820458471451 + ], + [ + 65.98831324548964, + 14.920172723542997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 14.920172723542997 + ], + [ + 66.10315592897331, + 15.114820458471451 + ], + [ + 65.87347056200596, + 15.114820458471451 + ], + [ + 65.98831324548964, + 14.920172723542997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 14.920172723542997 + ], + [ + 65.87347056200596, + 15.114820458471451 + ], + [ + 65.75862787852228, + 14.920172723542997 + ], + [ + 65.98831324548964, + 14.920172723542997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 14.920172723542997 + ], + [ + 65.75862787852228, + 14.920172723542997 + ], + [ + 65.87347056200596, + 14.725524988614543 + ], + [ + 65.98831324548964, + 14.920172723542997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 14.920172723542997 + ], + [ + 65.87347056200596, + 14.725524988614543 + ], + [ + 66.10315592897331, + 14.725524988614543 + ], + [ + 65.98831324548964, + 14.920172723542997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 14.920172723542997 + ], + [ + 66.10315592897331, + 14.725524988614543 + ], + [ + 66.217998612457, + 14.920172723542997 + ], + [ + 65.98831324548964, + 14.920172723542997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 15.309468193399903 + ], + [ + 66.217998612457, + 15.309468193399903 + ], + [ + 66.10315592897331, + 15.504115928328357 + ], + [ + 65.98831324548964, + 15.309468193399903 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 15.309468193399903 + ], + [ + 66.10315592897331, + 15.504115928328357 + ], + [ + 65.87347056200596, + 15.504115928328357 + ], + [ + 65.98831324548964, + 15.309468193399903 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 15.309468193399903 + ], + [ + 65.87347056200596, + 15.504115928328357 + ], + [ + 65.75862787852228, + 15.309468193399903 + ], + [ + 65.98831324548964, + 15.309468193399903 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 15.309468193399903 + ], + [ + 65.75862787852228, + 15.309468193399903 + ], + [ + 65.87347056200596, + 15.11482045847145 + ], + [ + 65.98831324548964, + 15.309468193399903 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 15.309468193399903 + ], + [ + 65.87347056200596, + 15.11482045847145 + ], + [ + 66.10315592897331, + 15.11482045847145 + ], + [ + 65.98831324548964, + 15.309468193399903 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 15.309468193399903 + ], + [ + 66.10315592897331, + 15.11482045847145 + ], + [ + 66.217998612457, + 15.309468193399903 + ], + [ + 65.98831324548964, + 15.309468193399903 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 15.69876366325681 + ], + [ + 66.217998612457, + 15.69876366325681 + ], + [ + 66.10315592897331, + 15.893411398185265 + ], + [ + 65.98831324548964, + 15.69876366325681 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 15.69876366325681 + ], + [ + 66.10315592897331, + 15.893411398185265 + ], + [ + 65.87347056200596, + 15.893411398185265 + ], + [ + 65.98831324548964, + 15.69876366325681 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 15.69876366325681 + ], + [ + 65.87347056200596, + 15.893411398185265 + ], + [ + 65.75862787852228, + 15.69876366325681 + ], + [ + 65.98831324548964, + 15.69876366325681 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 15.69876366325681 + ], + [ + 65.75862787852228, + 15.69876366325681 + ], + [ + 65.87347056200596, + 15.504115928328357 + ], + [ + 65.98831324548964, + 15.69876366325681 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 15.69876366325681 + ], + [ + 65.87347056200596, + 15.504115928328357 + ], + [ + 66.10315592897331, + 15.504115928328357 + ], + [ + 65.98831324548964, + 15.69876366325681 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 15.69876366325681 + ], + [ + 66.10315592897331, + 15.504115928328357 + ], + [ + 66.217998612457, + 15.69876366325681 + ], + [ + 65.98831324548964, + 15.69876366325681 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 16.088059133113717 + ], + [ + 66.217998612457, + 16.088059133113717 + ], + [ + 66.10315592897331, + 16.28270686804217 + ], + [ + 65.98831324548964, + 16.088059133113717 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 16.088059133113717 + ], + [ + 66.10315592897331, + 16.28270686804217 + ], + [ + 65.87347056200596, + 16.28270686804217 + ], + [ + 65.98831324548964, + 16.088059133113717 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 16.088059133113717 + ], + [ + 65.87347056200596, + 16.28270686804217 + ], + [ + 65.75862787852228, + 16.088059133113717 + ], + [ + 65.98831324548964, + 16.088059133113717 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 16.088059133113717 + ], + [ + 65.75862787852228, + 16.088059133113717 + ], + [ + 65.87347056200596, + 15.893411398185263 + ], + [ + 65.98831324548964, + 16.088059133113717 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 16.088059133113717 + ], + [ + 65.87347056200596, + 15.893411398185263 + ], + [ + 66.10315592897331, + 15.893411398185263 + ], + [ + 65.98831324548964, + 16.088059133113717 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 16.088059133113717 + ], + [ + 66.10315592897331, + 15.893411398185263 + ], + [ + 66.217998612457, + 16.088059133113717 + ], + [ + 65.98831324548964, + 16.088059133113717 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 16.477354602970625 + ], + [ + 66.217998612457, + 16.477354602970625 + ], + [ + 66.10315592897331, + 16.672002337899077 + ], + [ + 65.98831324548964, + 16.477354602970625 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 16.477354602970625 + ], + [ + 66.10315592897331, + 16.672002337899077 + ], + [ + 65.87347056200596, + 16.672002337899077 + ], + [ + 65.98831324548964, + 16.477354602970625 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 16.477354602970625 + ], + [ + 65.87347056200596, + 16.672002337899077 + ], + [ + 65.75862787852228, + 16.477354602970625 + ], + [ + 65.98831324548964, + 16.477354602970625 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 16.477354602970625 + ], + [ + 65.75862787852228, + 16.477354602970625 + ], + [ + 65.87347056200596, + 16.282706868042172 + ], + [ + 65.98831324548964, + 16.477354602970625 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 16.477354602970625 + ], + [ + 65.87347056200596, + 16.282706868042172 + ], + [ + 66.10315592897331, + 16.282706868042172 + ], + [ + 65.98831324548964, + 16.477354602970625 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 16.477354602970625 + ], + [ + 66.10315592897331, + 16.282706868042172 + ], + [ + 66.217998612457, + 16.477354602970625 + ], + [ + 65.98831324548964, + 16.477354602970625 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 16.86665007282753 + ], + [ + 66.217998612457, + 16.86665007282753 + ], + [ + 66.10315592897331, + 17.06129780775598 + ], + [ + 65.98831324548964, + 16.86665007282753 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 16.86665007282753 + ], + [ + 66.10315592897331, + 17.06129780775598 + ], + [ + 65.87347056200596, + 17.06129780775598 + ], + [ + 65.98831324548964, + 16.86665007282753 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 16.86665007282753 + ], + [ + 65.87347056200596, + 17.06129780775598 + ], + [ + 65.75862787852228, + 16.86665007282753 + ], + [ + 65.98831324548964, + 16.86665007282753 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 16.86665007282753 + ], + [ + 65.75862787852228, + 16.86665007282753 + ], + [ + 65.87347056200596, + 16.672002337899077 + ], + [ + 65.98831324548964, + 16.86665007282753 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 16.86665007282753 + ], + [ + 65.87347056200596, + 16.672002337899077 + ], + [ + 66.10315592897331, + 16.672002337899077 + ], + [ + 65.98831324548964, + 16.86665007282753 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 16.86665007282753 + ], + [ + 66.10315592897331, + 16.672002337899077 + ], + [ + 66.217998612457, + 16.86665007282753 + ], + [ + 65.98831324548964, + 16.86665007282753 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 17.255945542684437 + ], + [ + 66.217998612457, + 17.255945542684437 + ], + [ + 66.10315592897331, + 17.45059327761289 + ], + [ + 65.98831324548964, + 17.255945542684437 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 17.255945542684437 + ], + [ + 66.10315592897331, + 17.45059327761289 + ], + [ + 65.87347056200596, + 17.45059327761289 + ], + [ + 65.98831324548964, + 17.255945542684437 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 17.255945542684437 + ], + [ + 65.87347056200596, + 17.45059327761289 + ], + [ + 65.75862787852228, + 17.255945542684437 + ], + [ + 65.98831324548964, + 17.255945542684437 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 17.255945542684437 + ], + [ + 65.75862787852228, + 17.255945542684437 + ], + [ + 65.87347056200596, + 17.061297807755984 + ], + [ + 65.98831324548964, + 17.255945542684437 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 17.255945542684437 + ], + [ + 65.87347056200596, + 17.061297807755984 + ], + [ + 66.10315592897331, + 17.061297807755984 + ], + [ + 65.98831324548964, + 17.255945542684437 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 17.255945542684437 + ], + [ + 66.10315592897331, + 17.061297807755984 + ], + [ + 66.217998612457, + 17.255945542684437 + ], + [ + 65.98831324548964, + 17.255945542684437 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 17.64524101254134 + ], + [ + 66.217998612457, + 17.64524101254134 + ], + [ + 66.10315592897331, + 17.839888747469793 + ], + [ + 65.98831324548964, + 17.64524101254134 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 17.64524101254134 + ], + [ + 66.10315592897331, + 17.839888747469793 + ], + [ + 65.87347056200596, + 17.839888747469793 + ], + [ + 65.98831324548964, + 17.64524101254134 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 17.64524101254134 + ], + [ + 65.87347056200596, + 17.839888747469793 + ], + [ + 65.75862787852228, + 17.64524101254134 + ], + [ + 65.98831324548964, + 17.64524101254134 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 17.64524101254134 + ], + [ + 65.75862787852228, + 17.64524101254134 + ], + [ + 65.87347056200596, + 17.45059327761289 + ], + [ + 65.98831324548964, + 17.64524101254134 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 17.64524101254134 + ], + [ + 65.87347056200596, + 17.45059327761289 + ], + [ + 66.10315592897331, + 17.45059327761289 + ], + [ + 65.98831324548964, + 17.64524101254134 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 17.64524101254134 + ], + [ + 66.10315592897331, + 17.45059327761289 + ], + [ + 66.217998612457, + 17.64524101254134 + ], + [ + 65.98831324548964, + 17.64524101254134 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 18.03453648239825 + ], + [ + 66.217998612457, + 18.03453648239825 + ], + [ + 66.10315592897331, + 18.2291842173267 + ], + [ + 65.98831324548964, + 18.03453648239825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 18.03453648239825 + ], + [ + 66.10315592897331, + 18.2291842173267 + ], + [ + 65.87347056200596, + 18.2291842173267 + ], + [ + 65.98831324548964, + 18.03453648239825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 18.03453648239825 + ], + [ + 65.87347056200596, + 18.2291842173267 + ], + [ + 65.75862787852228, + 18.03453648239825 + ], + [ + 65.98831324548964, + 18.03453648239825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 18.03453648239825 + ], + [ + 65.75862787852228, + 18.03453648239825 + ], + [ + 65.87347056200596, + 17.839888747469796 + ], + [ + 65.98831324548964, + 18.03453648239825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 18.03453648239825 + ], + [ + 65.87347056200596, + 17.839888747469796 + ], + [ + 66.10315592897331, + 17.839888747469796 + ], + [ + 65.98831324548964, + 18.03453648239825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 18.03453648239825 + ], + [ + 66.10315592897331, + 17.839888747469796 + ], + [ + 66.217998612457, + 18.03453648239825 + ], + [ + 65.98831324548964, + 18.03453648239825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 18.423831952255156 + ], + [ + 66.217998612457, + 18.423831952255156 + ], + [ + 66.10315592897331, + 18.61847968718361 + ], + [ + 65.98831324548964, + 18.423831952255156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 18.423831952255156 + ], + [ + 66.10315592897331, + 18.61847968718361 + ], + [ + 65.87347056200596, + 18.61847968718361 + ], + [ + 65.98831324548964, + 18.423831952255156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 18.423831952255156 + ], + [ + 65.87347056200596, + 18.61847968718361 + ], + [ + 65.75862787852228, + 18.423831952255156 + ], + [ + 65.98831324548964, + 18.423831952255156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 18.423831952255156 + ], + [ + 65.75862787852228, + 18.423831952255156 + ], + [ + 65.87347056200596, + 18.229184217326704 + ], + [ + 65.98831324548964, + 18.423831952255156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 18.423831952255156 + ], + [ + 65.87347056200596, + 18.229184217326704 + ], + [ + 66.10315592897331, + 18.229184217326704 + ], + [ + 65.98831324548964, + 18.423831952255156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 18.423831952255156 + ], + [ + 66.10315592897331, + 18.229184217326704 + ], + [ + 66.217998612457, + 18.423831952255156 + ], + [ + 65.98831324548964, + 18.423831952255156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 18.81312742211206 + ], + [ + 66.217998612457, + 18.81312742211206 + ], + [ + 66.10315592897331, + 19.007775157040513 + ], + [ + 65.98831324548964, + 18.81312742211206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 18.81312742211206 + ], + [ + 66.10315592897331, + 19.007775157040513 + ], + [ + 65.87347056200596, + 19.007775157040513 + ], + [ + 65.98831324548964, + 18.81312742211206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 18.81312742211206 + ], + [ + 65.87347056200596, + 19.007775157040513 + ], + [ + 65.75862787852228, + 18.81312742211206 + ], + [ + 65.98831324548964, + 18.81312742211206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 18.81312742211206 + ], + [ + 65.75862787852228, + 18.81312742211206 + ], + [ + 65.87347056200596, + 18.61847968718361 + ], + [ + 65.98831324548964, + 18.81312742211206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 18.81312742211206 + ], + [ + 65.87347056200596, + 18.61847968718361 + ], + [ + 66.10315592897331, + 18.61847968718361 + ], + [ + 65.98831324548964, + 18.81312742211206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 18.81312742211206 + ], + [ + 66.10315592897331, + 18.61847968718361 + ], + [ + 66.217998612457, + 18.81312742211206 + ], + [ + 65.98831324548964, + 18.81312742211206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 19.20242289196897 + ], + [ + 66.217998612457, + 19.20242289196897 + ], + [ + 66.10315592897331, + 19.39707062689742 + ], + [ + 65.98831324548964, + 19.20242289196897 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 19.20242289196897 + ], + [ + 66.10315592897331, + 19.39707062689742 + ], + [ + 65.87347056200596, + 19.39707062689742 + ], + [ + 65.98831324548964, + 19.20242289196897 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 19.20242289196897 + ], + [ + 65.87347056200596, + 19.39707062689742 + ], + [ + 65.75862787852228, + 19.20242289196897 + ], + [ + 65.98831324548964, + 19.20242289196897 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 19.20242289196897 + ], + [ + 65.75862787852228, + 19.20242289196897 + ], + [ + 65.87347056200596, + 19.007775157040516 + ], + [ + 65.98831324548964, + 19.20242289196897 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 19.20242289196897 + ], + [ + 65.87347056200596, + 19.007775157040516 + ], + [ + 66.10315592897331, + 19.007775157040516 + ], + [ + 65.98831324548964, + 19.20242289196897 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 19.20242289196897 + ], + [ + 66.10315592897331, + 19.007775157040516 + ], + [ + 66.217998612457, + 19.20242289196897 + ], + [ + 65.98831324548964, + 19.20242289196897 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 19.591718361825876 + ], + [ + 66.217998612457, + 19.591718361825876 + ], + [ + 66.10315592897331, + 19.78636609675433 + ], + [ + 65.98831324548964, + 19.591718361825876 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 19.591718361825876 + ], + [ + 66.10315592897331, + 19.78636609675433 + ], + [ + 65.87347056200596, + 19.78636609675433 + ], + [ + 65.98831324548964, + 19.591718361825876 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 19.591718361825876 + ], + [ + 65.87347056200596, + 19.78636609675433 + ], + [ + 65.75862787852228, + 19.591718361825876 + ], + [ + 65.98831324548964, + 19.591718361825876 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 19.591718361825876 + ], + [ + 65.75862787852228, + 19.591718361825876 + ], + [ + 65.87347056200596, + 19.397070626897424 + ], + [ + 65.98831324548964, + 19.591718361825876 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 19.591718361825876 + ], + [ + 65.87347056200596, + 19.397070626897424 + ], + [ + 66.10315592897331, + 19.397070626897424 + ], + [ + 65.98831324548964, + 19.591718361825876 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 19.591718361825876 + ], + [ + 66.10315592897331, + 19.397070626897424 + ], + [ + 66.217998612457, + 19.591718361825876 + ], + [ + 65.98831324548964, + 19.591718361825876 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 19.98101383168278 + ], + [ + 66.217998612457, + 19.98101383168278 + ], + [ + 66.10315592897331, + 20.175661566611232 + ], + [ + 65.98831324548964, + 19.98101383168278 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 19.98101383168278 + ], + [ + 66.10315592897331, + 20.175661566611232 + ], + [ + 65.87347056200596, + 20.175661566611232 + ], + [ + 65.98831324548964, + 19.98101383168278 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 19.98101383168278 + ], + [ + 65.87347056200596, + 20.175661566611232 + ], + [ + 65.75862787852228, + 19.98101383168278 + ], + [ + 65.98831324548964, + 19.98101383168278 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 19.98101383168278 + ], + [ + 65.75862787852228, + 19.98101383168278 + ], + [ + 65.87347056200596, + 19.78636609675433 + ], + [ + 65.98831324548964, + 19.98101383168278 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 19.98101383168278 + ], + [ + 65.87347056200596, + 19.78636609675433 + ], + [ + 66.10315592897331, + 19.78636609675433 + ], + [ + 65.98831324548964, + 19.98101383168278 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 19.98101383168278 + ], + [ + 66.10315592897331, + 19.78636609675433 + ], + [ + 66.217998612457, + 19.98101383168278 + ], + [ + 65.98831324548964, + 19.98101383168278 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 20.370309301539685 + ], + [ + 66.217998612457, + 20.370309301539685 + ], + [ + 66.10315592897331, + 20.564957036468137 + ], + [ + 65.98831324548964, + 20.370309301539685 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 20.370309301539685 + ], + [ + 66.10315592897331, + 20.564957036468137 + ], + [ + 65.87347056200596, + 20.564957036468137 + ], + [ + 65.98831324548964, + 20.370309301539685 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 20.370309301539685 + ], + [ + 65.87347056200596, + 20.564957036468137 + ], + [ + 65.75862787852228, + 20.370309301539685 + ], + [ + 65.98831324548964, + 20.370309301539685 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 20.370309301539685 + ], + [ + 65.75862787852228, + 20.370309301539685 + ], + [ + 65.87347056200596, + 20.175661566611232 + ], + [ + 65.98831324548964, + 20.370309301539685 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 20.370309301539685 + ], + [ + 65.87347056200596, + 20.175661566611232 + ], + [ + 66.10315592897331, + 20.175661566611232 + ], + [ + 65.98831324548964, + 20.370309301539685 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 20.370309301539685 + ], + [ + 66.10315592897331, + 20.175661566611232 + ], + [ + 66.217998612457, + 20.370309301539685 + ], + [ + 65.98831324548964, + 20.370309301539685 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 20.759604771396592 + ], + [ + 66.217998612457, + 20.759604771396592 + ], + [ + 66.10315592897331, + 20.954252506325044 + ], + [ + 65.98831324548964, + 20.759604771396592 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 20.759604771396592 + ], + [ + 66.10315592897331, + 20.954252506325044 + ], + [ + 65.87347056200596, + 20.954252506325044 + ], + [ + 65.98831324548964, + 20.759604771396592 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 20.759604771396592 + ], + [ + 65.87347056200596, + 20.954252506325044 + ], + [ + 65.75862787852228, + 20.759604771396592 + ], + [ + 65.98831324548964, + 20.759604771396592 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 20.759604771396592 + ], + [ + 65.75862787852228, + 20.759604771396592 + ], + [ + 65.87347056200596, + 20.56495703646814 + ], + [ + 65.98831324548964, + 20.759604771396592 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 20.759604771396592 + ], + [ + 65.87347056200596, + 20.56495703646814 + ], + [ + 66.10315592897331, + 20.56495703646814 + ], + [ + 65.98831324548964, + 20.759604771396592 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 20.759604771396592 + ], + [ + 66.10315592897331, + 20.56495703646814 + ], + [ + 66.217998612457, + 20.759604771396592 + ], + [ + 65.98831324548964, + 20.759604771396592 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 21.1489002412535 + ], + [ + 66.217998612457, + 21.1489002412535 + ], + [ + 66.10315592897331, + 21.343547976181952 + ], + [ + 65.98831324548964, + 21.1489002412535 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 21.1489002412535 + ], + [ + 66.10315592897331, + 21.343547976181952 + ], + [ + 65.87347056200596, + 21.343547976181952 + ], + [ + 65.98831324548964, + 21.1489002412535 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 21.1489002412535 + ], + [ + 65.87347056200596, + 21.343547976181952 + ], + [ + 65.75862787852228, + 21.1489002412535 + ], + [ + 65.98831324548964, + 21.1489002412535 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 21.1489002412535 + ], + [ + 65.75862787852228, + 21.1489002412535 + ], + [ + 65.87347056200596, + 20.954252506325048 + ], + [ + 65.98831324548964, + 21.1489002412535 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 21.1489002412535 + ], + [ + 65.87347056200596, + 20.954252506325048 + ], + [ + 66.10315592897331, + 20.954252506325048 + ], + [ + 65.98831324548964, + 21.1489002412535 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 21.1489002412535 + ], + [ + 66.10315592897331, + 20.954252506325048 + ], + [ + 66.217998612457, + 21.1489002412535 + ], + [ + 65.98831324548964, + 21.1489002412535 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 21.538195711110404 + ], + [ + 66.217998612457, + 21.538195711110404 + ], + [ + 66.10315592897331, + 21.732843446038856 + ], + [ + 65.98831324548964, + 21.538195711110404 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 21.538195711110404 + ], + [ + 66.10315592897331, + 21.732843446038856 + ], + [ + 65.87347056200596, + 21.732843446038856 + ], + [ + 65.98831324548964, + 21.538195711110404 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 21.538195711110404 + ], + [ + 65.87347056200596, + 21.732843446038856 + ], + [ + 65.75862787852228, + 21.538195711110404 + ], + [ + 65.98831324548964, + 21.538195711110404 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 21.538195711110404 + ], + [ + 65.75862787852228, + 21.538195711110404 + ], + [ + 65.87347056200596, + 21.343547976181952 + ], + [ + 65.98831324548964, + 21.538195711110404 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 21.538195711110404 + ], + [ + 65.87347056200596, + 21.343547976181952 + ], + [ + 66.10315592897331, + 21.343547976181952 + ], + [ + 65.98831324548964, + 21.538195711110404 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 21.538195711110404 + ], + [ + 66.10315592897331, + 21.343547976181952 + ], + [ + 66.217998612457, + 21.538195711110404 + ], + [ + 65.98831324548964, + 21.538195711110404 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 21.927491180967312 + ], + [ + 66.217998612457, + 21.927491180967312 + ], + [ + 66.10315592897331, + 22.122138915895764 + ], + [ + 65.98831324548964, + 21.927491180967312 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 21.927491180967312 + ], + [ + 66.10315592897331, + 22.122138915895764 + ], + [ + 65.87347056200596, + 22.122138915895764 + ], + [ + 65.98831324548964, + 21.927491180967312 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 21.927491180967312 + ], + [ + 65.87347056200596, + 22.122138915895764 + ], + [ + 65.75862787852228, + 21.927491180967312 + ], + [ + 65.98831324548964, + 21.927491180967312 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 21.927491180967312 + ], + [ + 65.75862787852228, + 21.927491180967312 + ], + [ + 65.87347056200596, + 21.73284344603886 + ], + [ + 65.98831324548964, + 21.927491180967312 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 21.927491180967312 + ], + [ + 65.87347056200596, + 21.73284344603886 + ], + [ + 66.10315592897331, + 21.73284344603886 + ], + [ + 65.98831324548964, + 21.927491180967312 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 21.927491180967312 + ], + [ + 66.10315592897331, + 21.73284344603886 + ], + [ + 66.217998612457, + 21.927491180967312 + ], + [ + 65.98831324548964, + 21.927491180967312 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 22.31678665082422 + ], + [ + 66.217998612457, + 22.31678665082422 + ], + [ + 66.10315592897331, + 22.511434385752672 + ], + [ + 65.98831324548964, + 22.31678665082422 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 22.31678665082422 + ], + [ + 66.10315592897331, + 22.511434385752672 + ], + [ + 65.87347056200596, + 22.511434385752672 + ], + [ + 65.98831324548964, + 22.31678665082422 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 22.31678665082422 + ], + [ + 65.87347056200596, + 22.511434385752672 + ], + [ + 65.75862787852228, + 22.31678665082422 + ], + [ + 65.98831324548964, + 22.31678665082422 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 22.31678665082422 + ], + [ + 65.75862787852228, + 22.31678665082422 + ], + [ + 65.87347056200596, + 22.122138915895768 + ], + [ + 65.98831324548964, + 22.31678665082422 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 22.31678665082422 + ], + [ + 65.87347056200596, + 22.122138915895768 + ], + [ + 66.10315592897331, + 22.122138915895768 + ], + [ + 65.98831324548964, + 22.31678665082422 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 22.31678665082422 + ], + [ + 66.10315592897331, + 22.122138915895768 + ], + [ + 66.217998612457, + 22.31678665082422 + ], + [ + 65.98831324548964, + 22.31678665082422 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 22.706082120681124 + ], + [ + 66.217998612457, + 22.706082120681124 + ], + [ + 66.10315592897331, + 22.900729855609576 + ], + [ + 65.98831324548964, + 22.706082120681124 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 22.706082120681124 + ], + [ + 66.10315592897331, + 22.900729855609576 + ], + [ + 65.87347056200596, + 22.900729855609576 + ], + [ + 65.98831324548964, + 22.706082120681124 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 22.706082120681124 + ], + [ + 65.87347056200596, + 22.900729855609576 + ], + [ + 65.75862787852228, + 22.706082120681124 + ], + [ + 65.98831324548964, + 22.706082120681124 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 22.706082120681124 + ], + [ + 65.75862787852228, + 22.706082120681124 + ], + [ + 65.87347056200596, + 22.511434385752672 + ], + [ + 65.98831324548964, + 22.706082120681124 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 22.706082120681124 + ], + [ + 65.87347056200596, + 22.511434385752672 + ], + [ + 66.10315592897331, + 22.511434385752672 + ], + [ + 65.98831324548964, + 22.706082120681124 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 22.706082120681124 + ], + [ + 66.10315592897331, + 22.511434385752672 + ], + [ + 66.217998612457, + 22.706082120681124 + ], + [ + 65.98831324548964, + 22.706082120681124 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 23.095377590538032 + ], + [ + 66.217998612457, + 23.095377590538032 + ], + [ + 66.10315592897331, + 23.290025325466484 + ], + [ + 65.98831324548964, + 23.095377590538032 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 23.095377590538032 + ], + [ + 66.10315592897331, + 23.290025325466484 + ], + [ + 65.87347056200596, + 23.290025325466484 + ], + [ + 65.98831324548964, + 23.095377590538032 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 23.095377590538032 + ], + [ + 65.87347056200596, + 23.290025325466484 + ], + [ + 65.75862787852228, + 23.095377590538032 + ], + [ + 65.98831324548964, + 23.095377590538032 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 23.095377590538032 + ], + [ + 65.75862787852228, + 23.095377590538032 + ], + [ + 65.87347056200596, + 22.90072985560958 + ], + [ + 65.98831324548964, + 23.095377590538032 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 23.095377590538032 + ], + [ + 65.87347056200596, + 22.90072985560958 + ], + [ + 66.10315592897331, + 22.90072985560958 + ], + [ + 65.98831324548964, + 23.095377590538032 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 23.095377590538032 + ], + [ + 66.10315592897331, + 22.90072985560958 + ], + [ + 66.217998612457, + 23.095377590538032 + ], + [ + 65.98831324548964, + 23.095377590538032 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 23.48467306039494 + ], + [ + 66.217998612457, + 23.48467306039494 + ], + [ + 66.10315592897331, + 23.67932079532339 + ], + [ + 65.98831324548964, + 23.48467306039494 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 23.48467306039494 + ], + [ + 66.10315592897331, + 23.67932079532339 + ], + [ + 65.87347056200596, + 23.67932079532339 + ], + [ + 65.98831324548964, + 23.48467306039494 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 23.48467306039494 + ], + [ + 65.87347056200596, + 23.67932079532339 + ], + [ + 65.75862787852228, + 23.48467306039494 + ], + [ + 65.98831324548964, + 23.48467306039494 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 23.48467306039494 + ], + [ + 65.75862787852228, + 23.48467306039494 + ], + [ + 65.87347056200596, + 23.290025325466488 + ], + [ + 65.98831324548964, + 23.48467306039494 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 23.48467306039494 + ], + [ + 65.87347056200596, + 23.290025325466488 + ], + [ + 66.10315592897331, + 23.290025325466488 + ], + [ + 65.98831324548964, + 23.48467306039494 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 23.48467306039494 + ], + [ + 66.10315592897331, + 23.290025325466488 + ], + [ + 66.217998612457, + 23.48467306039494 + ], + [ + 65.98831324548964, + 23.48467306039494 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 23.873968530251844 + ], + [ + 66.217998612457, + 23.873968530251844 + ], + [ + 66.10315592897331, + 24.068616265180296 + ], + [ + 65.98831324548964, + 23.873968530251844 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 23.873968530251844 + ], + [ + 66.10315592897331, + 24.068616265180296 + ], + [ + 65.87347056200596, + 24.068616265180296 + ], + [ + 65.98831324548964, + 23.873968530251844 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 23.873968530251844 + ], + [ + 65.87347056200596, + 24.068616265180296 + ], + [ + 65.75862787852228, + 23.873968530251844 + ], + [ + 65.98831324548964, + 23.873968530251844 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 23.873968530251844 + ], + [ + 65.75862787852228, + 23.873968530251844 + ], + [ + 65.87347056200596, + 23.67932079532339 + ], + [ + 65.98831324548964, + 23.873968530251844 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 23.873968530251844 + ], + [ + 65.87347056200596, + 23.67932079532339 + ], + [ + 66.10315592897331, + 23.67932079532339 + ], + [ + 65.98831324548964, + 23.873968530251844 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 23.873968530251844 + ], + [ + 66.10315592897331, + 23.67932079532339 + ], + [ + 66.217998612457, + 23.873968530251844 + ], + [ + 65.98831324548964, + 23.873968530251844 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 24.263264000108748 + ], + [ + 66.217998612457, + 24.263264000108748 + ], + [ + 66.10315592897331, + 24.4579117350372 + ], + [ + 65.98831324548964, + 24.263264000108748 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 24.263264000108748 + ], + [ + 66.10315592897331, + 24.4579117350372 + ], + [ + 65.87347056200596, + 24.4579117350372 + ], + [ + 65.98831324548964, + 24.263264000108748 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 24.263264000108748 + ], + [ + 65.87347056200596, + 24.4579117350372 + ], + [ + 65.75862787852228, + 24.263264000108748 + ], + [ + 65.98831324548964, + 24.263264000108748 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 24.263264000108748 + ], + [ + 65.75862787852228, + 24.263264000108748 + ], + [ + 65.87347056200596, + 24.068616265180296 + ], + [ + 65.98831324548964, + 24.263264000108748 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 24.263264000108748 + ], + [ + 65.87347056200596, + 24.068616265180296 + ], + [ + 66.10315592897331, + 24.068616265180296 + ], + [ + 65.98831324548964, + 24.263264000108748 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 24.263264000108748 + ], + [ + 66.10315592897331, + 24.068616265180296 + ], + [ + 66.217998612457, + 24.263264000108748 + ], + [ + 65.98831324548964, + 24.263264000108748 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 24.652559469965656 + ], + [ + 66.217998612457, + 24.652559469965656 + ], + [ + 66.10315592897331, + 24.847207204894108 + ], + [ + 65.98831324548964, + 24.652559469965656 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 24.652559469965656 + ], + [ + 66.10315592897331, + 24.847207204894108 + ], + [ + 65.87347056200596, + 24.847207204894108 + ], + [ + 65.98831324548964, + 24.652559469965656 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 24.652559469965656 + ], + [ + 65.87347056200596, + 24.847207204894108 + ], + [ + 65.75862787852228, + 24.652559469965656 + ], + [ + 65.98831324548964, + 24.652559469965656 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 24.652559469965656 + ], + [ + 65.75862787852228, + 24.652559469965656 + ], + [ + 65.87347056200596, + 24.457911735037204 + ], + [ + 65.98831324548964, + 24.652559469965656 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 24.652559469965656 + ], + [ + 65.87347056200596, + 24.457911735037204 + ], + [ + 66.10315592897331, + 24.457911735037204 + ], + [ + 65.98831324548964, + 24.652559469965656 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 24.652559469965656 + ], + [ + 66.10315592897331, + 24.457911735037204 + ], + [ + 66.217998612457, + 24.652559469965656 + ], + [ + 65.98831324548964, + 24.652559469965656 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 25.041854939822564 + ], + [ + 66.217998612457, + 25.041854939822564 + ], + [ + 66.10315592897331, + 25.236502674751016 + ], + [ + 65.98831324548964, + 25.041854939822564 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 25.041854939822564 + ], + [ + 66.10315592897331, + 25.236502674751016 + ], + [ + 65.87347056200596, + 25.236502674751016 + ], + [ + 65.98831324548964, + 25.041854939822564 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 25.041854939822564 + ], + [ + 65.87347056200596, + 25.236502674751016 + ], + [ + 65.75862787852228, + 25.041854939822564 + ], + [ + 65.98831324548964, + 25.041854939822564 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 25.041854939822564 + ], + [ + 65.75862787852228, + 25.041854939822564 + ], + [ + 65.87347056200596, + 24.84720720489411 + ], + [ + 65.98831324548964, + 25.041854939822564 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 25.041854939822564 + ], + [ + 65.87347056200596, + 24.84720720489411 + ], + [ + 66.10315592897331, + 24.84720720489411 + ], + [ + 65.98831324548964, + 25.041854939822564 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 25.041854939822564 + ], + [ + 66.10315592897331, + 24.84720720489411 + ], + [ + 66.217998612457, + 25.041854939822564 + ], + [ + 65.98831324548964, + 25.041854939822564 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 25.431150409679468 + ], + [ + 66.217998612457, + 25.431150409679468 + ], + [ + 66.10315592897331, + 25.62579814460792 + ], + [ + 65.98831324548964, + 25.431150409679468 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 25.431150409679468 + ], + [ + 66.10315592897331, + 25.62579814460792 + ], + [ + 65.87347056200596, + 25.62579814460792 + ], + [ + 65.98831324548964, + 25.431150409679468 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 25.431150409679468 + ], + [ + 65.87347056200596, + 25.62579814460792 + ], + [ + 65.75862787852228, + 25.431150409679468 + ], + [ + 65.98831324548964, + 25.431150409679468 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 25.431150409679468 + ], + [ + 65.75862787852228, + 25.431150409679468 + ], + [ + 65.87347056200596, + 25.236502674751016 + ], + [ + 65.98831324548964, + 25.431150409679468 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 25.431150409679468 + ], + [ + 65.87347056200596, + 25.236502674751016 + ], + [ + 66.10315592897331, + 25.236502674751016 + ], + [ + 65.98831324548964, + 25.431150409679468 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 25.431150409679468 + ], + [ + 66.10315592897331, + 25.236502674751016 + ], + [ + 66.217998612457, + 25.431150409679468 + ], + [ + 65.98831324548964, + 25.431150409679468 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 25.820445879536376 + ], + [ + 66.217998612457, + 25.820445879536376 + ], + [ + 66.10315592897331, + 26.015093614464828 + ], + [ + 65.98831324548964, + 25.820445879536376 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 25.820445879536376 + ], + [ + 66.10315592897331, + 26.015093614464828 + ], + [ + 65.87347056200596, + 26.015093614464828 + ], + [ + 65.98831324548964, + 25.820445879536376 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 25.820445879536376 + ], + [ + 65.87347056200596, + 26.015093614464828 + ], + [ + 65.75862787852228, + 25.820445879536376 + ], + [ + 65.98831324548964, + 25.820445879536376 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 25.820445879536376 + ], + [ + 65.75862787852228, + 25.820445879536376 + ], + [ + 65.87347056200596, + 25.625798144607923 + ], + [ + 65.98831324548964, + 25.820445879536376 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 25.820445879536376 + ], + [ + 65.87347056200596, + 25.625798144607923 + ], + [ + 66.10315592897331, + 25.625798144607923 + ], + [ + 65.98831324548964, + 25.820445879536376 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 25.820445879536376 + ], + [ + 66.10315592897331, + 25.625798144607923 + ], + [ + 66.217998612457, + 25.820445879536376 + ], + [ + 65.98831324548964, + 25.820445879536376 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 26.209741349393283 + ], + [ + 66.217998612457, + 26.209741349393283 + ], + [ + 66.10315592897331, + 26.404389084321735 + ], + [ + 65.98831324548964, + 26.209741349393283 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 26.209741349393283 + ], + [ + 66.10315592897331, + 26.404389084321735 + ], + [ + 65.87347056200596, + 26.404389084321735 + ], + [ + 65.98831324548964, + 26.209741349393283 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 26.209741349393283 + ], + [ + 65.87347056200596, + 26.404389084321735 + ], + [ + 65.75862787852228, + 26.209741349393283 + ], + [ + 65.98831324548964, + 26.209741349393283 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 26.209741349393283 + ], + [ + 65.75862787852228, + 26.209741349393283 + ], + [ + 65.87347056200596, + 26.01509361446483 + ], + [ + 65.98831324548964, + 26.209741349393283 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 26.209741349393283 + ], + [ + 65.87347056200596, + 26.01509361446483 + ], + [ + 66.10315592897331, + 26.01509361446483 + ], + [ + 65.98831324548964, + 26.209741349393283 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 26.209741349393283 + ], + [ + 66.10315592897331, + 26.01509361446483 + ], + [ + 66.217998612457, + 26.209741349393283 + ], + [ + 65.98831324548964, + 26.209741349393283 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 26.599036819250188 + ], + [ + 66.217998612457, + 26.599036819250188 + ], + [ + 66.10315592897331, + 26.79368455417864 + ], + [ + 65.98831324548964, + 26.599036819250188 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 26.599036819250188 + ], + [ + 66.10315592897331, + 26.79368455417864 + ], + [ + 65.87347056200596, + 26.79368455417864 + ], + [ + 65.98831324548964, + 26.599036819250188 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 26.599036819250188 + ], + [ + 65.87347056200596, + 26.79368455417864 + ], + [ + 65.75862787852228, + 26.599036819250188 + ], + [ + 65.98831324548964, + 26.599036819250188 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 26.599036819250188 + ], + [ + 65.75862787852228, + 26.599036819250188 + ], + [ + 65.87347056200596, + 26.404389084321735 + ], + [ + 65.98831324548964, + 26.599036819250188 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 26.599036819250188 + ], + [ + 65.87347056200596, + 26.404389084321735 + ], + [ + 66.10315592897331, + 26.404389084321735 + ], + [ + 65.98831324548964, + 26.599036819250188 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 26.599036819250188 + ], + [ + 66.10315592897331, + 26.404389084321735 + ], + [ + 66.217998612457, + 26.599036819250188 + ], + [ + 65.98831324548964, + 26.599036819250188 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 26.988332289107095 + ], + [ + 66.217998612457, + 26.988332289107095 + ], + [ + 66.10315592897331, + 27.182980024035547 + ], + [ + 65.98831324548964, + 26.988332289107095 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 26.988332289107095 + ], + [ + 66.10315592897331, + 27.182980024035547 + ], + [ + 65.87347056200596, + 27.182980024035547 + ], + [ + 65.98831324548964, + 26.988332289107095 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 26.988332289107095 + ], + [ + 65.87347056200596, + 27.182980024035547 + ], + [ + 65.75862787852228, + 26.988332289107095 + ], + [ + 65.98831324548964, + 26.988332289107095 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 26.988332289107095 + ], + [ + 65.75862787852228, + 26.988332289107095 + ], + [ + 65.87347056200596, + 26.793684554178643 + ], + [ + 65.98831324548964, + 26.988332289107095 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 26.988332289107095 + ], + [ + 65.87347056200596, + 26.793684554178643 + ], + [ + 66.10315592897331, + 26.793684554178643 + ], + [ + 65.98831324548964, + 26.988332289107095 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 26.988332289107095 + ], + [ + 66.10315592897331, + 26.793684554178643 + ], + [ + 66.217998612457, + 26.988332289107095 + ], + [ + 65.98831324548964, + 26.988332289107095 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 27.377627758964003 + ], + [ + 66.217998612457, + 27.377627758964003 + ], + [ + 66.10315592897331, + 27.572275493892455 + ], + [ + 65.98831324548964, + 27.377627758964003 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 27.377627758964003 + ], + [ + 66.10315592897331, + 27.572275493892455 + ], + [ + 65.87347056200596, + 27.572275493892455 + ], + [ + 65.98831324548964, + 27.377627758964003 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 27.377627758964003 + ], + [ + 65.87347056200596, + 27.572275493892455 + ], + [ + 65.75862787852228, + 27.377627758964003 + ], + [ + 65.98831324548964, + 27.377627758964003 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 27.377627758964003 + ], + [ + 65.75862787852228, + 27.377627758964003 + ], + [ + 65.87347056200596, + 27.18298002403555 + ], + [ + 65.98831324548964, + 27.377627758964003 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 27.377627758964003 + ], + [ + 65.87347056200596, + 27.18298002403555 + ], + [ + 66.10315592897331, + 27.18298002403555 + ], + [ + 65.98831324548964, + 27.377627758964003 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 27.377627758964003 + ], + [ + 66.10315592897331, + 27.18298002403555 + ], + [ + 66.217998612457, + 27.377627758964003 + ], + [ + 65.98831324548964, + 27.377627758964003 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 27.766923228820907 + ], + [ + 66.217998612457, + 27.766923228820907 + ], + [ + 66.10315592897331, + 27.96157096374936 + ], + [ + 65.98831324548964, + 27.766923228820907 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 27.766923228820907 + ], + [ + 66.10315592897331, + 27.96157096374936 + ], + [ + 65.87347056200596, + 27.96157096374936 + ], + [ + 65.98831324548964, + 27.766923228820907 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 27.766923228820907 + ], + [ + 65.87347056200596, + 27.96157096374936 + ], + [ + 65.75862787852228, + 27.766923228820907 + ], + [ + 65.98831324548964, + 27.766923228820907 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 27.766923228820907 + ], + [ + 65.75862787852228, + 27.766923228820907 + ], + [ + 65.87347056200596, + 27.572275493892455 + ], + [ + 65.98831324548964, + 27.766923228820907 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 27.766923228820907 + ], + [ + 65.87347056200596, + 27.572275493892455 + ], + [ + 66.10315592897331, + 27.572275493892455 + ], + [ + 65.98831324548964, + 27.766923228820907 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 27.766923228820907 + ], + [ + 66.10315592897331, + 27.572275493892455 + ], + [ + 66.217998612457, + 27.766923228820907 + ], + [ + 65.98831324548964, + 27.766923228820907 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 28.156218698677815 + ], + [ + 66.217998612457, + 28.156218698677815 + ], + [ + 66.10315592897331, + 28.350866433606267 + ], + [ + 65.98831324548964, + 28.156218698677815 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 28.156218698677815 + ], + [ + 66.10315592897331, + 28.350866433606267 + ], + [ + 65.87347056200596, + 28.350866433606267 + ], + [ + 65.98831324548964, + 28.156218698677815 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 28.156218698677815 + ], + [ + 65.87347056200596, + 28.350866433606267 + ], + [ + 65.75862787852228, + 28.156218698677815 + ], + [ + 65.98831324548964, + 28.156218698677815 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 28.156218698677815 + ], + [ + 65.75862787852228, + 28.156218698677815 + ], + [ + 65.87347056200596, + 27.961570963749363 + ], + [ + 65.98831324548964, + 28.156218698677815 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 28.156218698677815 + ], + [ + 65.87347056200596, + 27.961570963749363 + ], + [ + 66.10315592897331, + 27.961570963749363 + ], + [ + 65.98831324548964, + 28.156218698677815 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 28.156218698677815 + ], + [ + 66.10315592897331, + 27.961570963749363 + ], + [ + 66.217998612457, + 28.156218698677815 + ], + [ + 65.98831324548964, + 28.156218698677815 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 28.54551416853472 + ], + [ + 66.217998612457, + 28.54551416853472 + ], + [ + 66.10315592897331, + 28.74016190346317 + ], + [ + 65.98831324548964, + 28.54551416853472 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 28.54551416853472 + ], + [ + 66.10315592897331, + 28.74016190346317 + ], + [ + 65.87347056200596, + 28.74016190346317 + ], + [ + 65.98831324548964, + 28.54551416853472 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 28.54551416853472 + ], + [ + 65.87347056200596, + 28.74016190346317 + ], + [ + 65.75862787852228, + 28.54551416853472 + ], + [ + 65.98831324548964, + 28.54551416853472 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 28.54551416853472 + ], + [ + 65.75862787852228, + 28.54551416853472 + ], + [ + 65.87347056200596, + 28.350866433606267 + ], + [ + 65.98831324548964, + 28.54551416853472 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 28.54551416853472 + ], + [ + 65.87347056200596, + 28.350866433606267 + ], + [ + 66.10315592897331, + 28.350866433606267 + ], + [ + 65.98831324548964, + 28.54551416853472 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 28.54551416853472 + ], + [ + 66.10315592897331, + 28.350866433606267 + ], + [ + 66.217998612457, + 28.54551416853472 + ], + [ + 65.98831324548964, + 28.54551416853472 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 28.934809638391627 + ], + [ + 66.217998612457, + 28.934809638391627 + ], + [ + 66.10315592897331, + 29.12945737332008 + ], + [ + 65.98831324548964, + 28.934809638391627 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 28.934809638391627 + ], + [ + 66.10315592897331, + 29.12945737332008 + ], + [ + 65.87347056200596, + 29.12945737332008 + ], + [ + 65.98831324548964, + 28.934809638391627 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 28.934809638391627 + ], + [ + 65.87347056200596, + 29.12945737332008 + ], + [ + 65.75862787852228, + 28.934809638391627 + ], + [ + 65.98831324548964, + 28.934809638391627 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 28.934809638391627 + ], + [ + 65.75862787852228, + 28.934809638391627 + ], + [ + 65.87347056200596, + 28.740161903463175 + ], + [ + 65.98831324548964, + 28.934809638391627 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 28.934809638391627 + ], + [ + 65.87347056200596, + 28.740161903463175 + ], + [ + 66.10315592897331, + 28.740161903463175 + ], + [ + 65.98831324548964, + 28.934809638391627 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 28.934809638391627 + ], + [ + 66.10315592897331, + 28.740161903463175 + ], + [ + 66.217998612457, + 28.934809638391627 + ], + [ + 65.98831324548964, + 28.934809638391627 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 29.32410510824853 + ], + [ + 66.217998612457, + 29.32410510824853 + ], + [ + 66.10315592897331, + 29.518752843176983 + ], + [ + 65.98831324548964, + 29.32410510824853 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 29.32410510824853 + ], + [ + 66.10315592897331, + 29.518752843176983 + ], + [ + 65.87347056200596, + 29.518752843176983 + ], + [ + 65.98831324548964, + 29.32410510824853 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 29.32410510824853 + ], + [ + 65.87347056200596, + 29.518752843176983 + ], + [ + 65.75862787852228, + 29.32410510824853 + ], + [ + 65.98831324548964, + 29.32410510824853 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 29.32410510824853 + ], + [ + 65.75862787852228, + 29.32410510824853 + ], + [ + 65.87347056200596, + 29.12945737332008 + ], + [ + 65.98831324548964, + 29.32410510824853 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 29.32410510824853 + ], + [ + 65.87347056200596, + 29.12945737332008 + ], + [ + 66.10315592897331, + 29.12945737332008 + ], + [ + 65.98831324548964, + 29.32410510824853 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 29.32410510824853 + ], + [ + 66.10315592897331, + 29.12945737332008 + ], + [ + 66.217998612457, + 29.32410510824853 + ], + [ + 65.98831324548964, + 29.32410510824853 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 29.71340057810544 + ], + [ + 66.217998612457, + 29.71340057810544 + ], + [ + 66.10315592897331, + 29.90804831303389 + ], + [ + 65.98831324548964, + 29.71340057810544 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 29.71340057810544 + ], + [ + 66.10315592897331, + 29.90804831303389 + ], + [ + 65.87347056200596, + 29.90804831303389 + ], + [ + 65.98831324548964, + 29.71340057810544 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 29.71340057810544 + ], + [ + 65.87347056200596, + 29.90804831303389 + ], + [ + 65.75862787852228, + 29.71340057810544 + ], + [ + 65.98831324548964, + 29.71340057810544 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 29.71340057810544 + ], + [ + 65.75862787852228, + 29.71340057810544 + ], + [ + 65.87347056200596, + 29.518752843176987 + ], + [ + 65.98831324548964, + 29.71340057810544 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 29.71340057810544 + ], + [ + 65.87347056200596, + 29.518752843176987 + ], + [ + 66.10315592897331, + 29.518752843176987 + ], + [ + 65.98831324548964, + 29.71340057810544 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 29.71340057810544 + ], + [ + 66.10315592897331, + 29.518752843176987 + ], + [ + 66.217998612457, + 29.71340057810544 + ], + [ + 65.98831324548964, + 29.71340057810544 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 30.102696047962343 + ], + [ + 66.217998612457, + 30.102696047962343 + ], + [ + 66.10315592897331, + 30.297343782890795 + ], + [ + 65.98831324548964, + 30.102696047962343 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 30.102696047962343 + ], + [ + 66.10315592897331, + 30.297343782890795 + ], + [ + 65.87347056200596, + 30.297343782890795 + ], + [ + 65.98831324548964, + 30.102696047962343 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 30.102696047962343 + ], + [ + 65.87347056200596, + 30.297343782890795 + ], + [ + 65.75862787852228, + 30.102696047962343 + ], + [ + 65.98831324548964, + 30.102696047962343 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 30.102696047962343 + ], + [ + 65.75862787852228, + 30.102696047962343 + ], + [ + 65.87347056200596, + 29.90804831303389 + ], + [ + 65.98831324548964, + 30.102696047962343 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 30.102696047962343 + ], + [ + 65.87347056200596, + 29.90804831303389 + ], + [ + 66.10315592897331, + 29.90804831303389 + ], + [ + 65.98831324548964, + 30.102696047962343 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 30.102696047962343 + ], + [ + 66.10315592897331, + 29.90804831303389 + ], + [ + 66.217998612457, + 30.102696047962343 + ], + [ + 65.98831324548964, + 30.102696047962343 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 30.49199151781925 + ], + [ + 66.217998612457, + 30.49199151781925 + ], + [ + 66.10315592897331, + 30.686639252747703 + ], + [ + 65.98831324548964, + 30.49199151781925 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 30.49199151781925 + ], + [ + 66.10315592897331, + 30.686639252747703 + ], + [ + 65.87347056200596, + 30.686639252747703 + ], + [ + 65.98831324548964, + 30.49199151781925 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 30.49199151781925 + ], + [ + 65.87347056200596, + 30.686639252747703 + ], + [ + 65.75862787852228, + 30.49199151781925 + ], + [ + 65.98831324548964, + 30.49199151781925 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 30.49199151781925 + ], + [ + 65.75862787852228, + 30.49199151781925 + ], + [ + 65.87347056200596, + 30.2973437828908 + ], + [ + 65.98831324548964, + 30.49199151781925 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 30.49199151781925 + ], + [ + 65.87347056200596, + 30.2973437828908 + ], + [ + 66.10315592897331, + 30.2973437828908 + ], + [ + 65.98831324548964, + 30.49199151781925 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 30.49199151781925 + ], + [ + 66.10315592897331, + 30.2973437828908 + ], + [ + 66.217998612457, + 30.49199151781925 + ], + [ + 65.98831324548964, + 30.49199151781925 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 30.88128698767616 + ], + [ + 66.217998612457, + 30.88128698767616 + ], + [ + 66.10315592897331, + 31.07593472260461 + ], + [ + 65.98831324548964, + 30.88128698767616 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 30.88128698767616 + ], + [ + 66.10315592897331, + 31.07593472260461 + ], + [ + 65.87347056200596, + 31.07593472260461 + ], + [ + 65.98831324548964, + 30.88128698767616 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 30.88128698767616 + ], + [ + 65.87347056200596, + 31.07593472260461 + ], + [ + 65.75862787852228, + 30.88128698767616 + ], + [ + 65.98831324548964, + 30.88128698767616 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 30.88128698767616 + ], + [ + 65.75862787852228, + 30.88128698767616 + ], + [ + 65.87347056200596, + 30.686639252747707 + ], + [ + 65.98831324548964, + 30.88128698767616 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 30.88128698767616 + ], + [ + 65.87347056200596, + 30.686639252747707 + ], + [ + 66.10315592897331, + 30.686639252747707 + ], + [ + 65.98831324548964, + 30.88128698767616 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 30.88128698767616 + ], + [ + 66.10315592897331, + 30.686639252747707 + ], + [ + 66.217998612457, + 30.88128698767616 + ], + [ + 65.98831324548964, + 30.88128698767616 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 31.270582457533063 + ], + [ + 66.217998612457, + 31.270582457533063 + ], + [ + 66.10315592897331, + 31.465230192461515 + ], + [ + 65.98831324548964, + 31.270582457533063 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 31.270582457533063 + ], + [ + 66.10315592897331, + 31.465230192461515 + ], + [ + 65.87347056200596, + 31.465230192461515 + ], + [ + 65.98831324548964, + 31.270582457533063 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 31.270582457533063 + ], + [ + 65.87347056200596, + 31.465230192461515 + ], + [ + 65.75862787852228, + 31.270582457533063 + ], + [ + 65.98831324548964, + 31.270582457533063 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 31.270582457533063 + ], + [ + 65.75862787852228, + 31.270582457533063 + ], + [ + 65.87347056200596, + 31.07593472260461 + ], + [ + 65.98831324548964, + 31.270582457533063 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 31.270582457533063 + ], + [ + 65.87347056200596, + 31.07593472260461 + ], + [ + 66.10315592897331, + 31.07593472260461 + ], + [ + 65.98831324548964, + 31.270582457533063 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 31.270582457533063 + ], + [ + 66.10315592897331, + 31.07593472260461 + ], + [ + 66.217998612457, + 31.270582457533063 + ], + [ + 65.98831324548964, + 31.270582457533063 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 31.65987792738997 + ], + [ + 66.217998612457, + 31.65987792738997 + ], + [ + 66.10315592897331, + 31.854525662318423 + ], + [ + 65.98831324548964, + 31.65987792738997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 31.65987792738997 + ], + [ + 66.10315592897331, + 31.854525662318423 + ], + [ + 65.87347056200596, + 31.854525662318423 + ], + [ + 65.98831324548964, + 31.65987792738997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 31.65987792738997 + ], + [ + 65.87347056200596, + 31.854525662318423 + ], + [ + 65.75862787852228, + 31.65987792738997 + ], + [ + 65.98831324548964, + 31.65987792738997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 31.65987792738997 + ], + [ + 65.75862787852228, + 31.65987792738997 + ], + [ + 65.87347056200596, + 31.46523019246152 + ], + [ + 65.98831324548964, + 31.65987792738997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 31.65987792738997 + ], + [ + 65.87347056200596, + 31.46523019246152 + ], + [ + 66.10315592897331, + 31.46523019246152 + ], + [ + 65.98831324548964, + 31.65987792738997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 31.65987792738997 + ], + [ + 66.10315592897331, + 31.46523019246152 + ], + [ + 66.217998612457, + 31.65987792738997 + ], + [ + 65.98831324548964, + 31.65987792738997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 32.049173397246875 + ], + [ + 66.217998612457, + 32.049173397246875 + ], + [ + 66.10315592897331, + 32.24382113217533 + ], + [ + 65.98831324548964, + 32.049173397246875 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 32.049173397246875 + ], + [ + 66.10315592897331, + 32.24382113217533 + ], + [ + 65.87347056200596, + 32.24382113217533 + ], + [ + 65.98831324548964, + 32.049173397246875 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 32.049173397246875 + ], + [ + 65.87347056200596, + 32.24382113217533 + ], + [ + 65.75862787852228, + 32.049173397246875 + ], + [ + 65.98831324548964, + 32.049173397246875 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 32.049173397246875 + ], + [ + 65.75862787852228, + 32.049173397246875 + ], + [ + 65.87347056200596, + 31.854525662318423 + ], + [ + 65.98831324548964, + 32.049173397246875 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 32.049173397246875 + ], + [ + 65.87347056200596, + 31.854525662318423 + ], + [ + 66.10315592897331, + 31.854525662318423 + ], + [ + 65.98831324548964, + 32.049173397246875 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 32.049173397246875 + ], + [ + 66.10315592897331, + 31.854525662318423 + ], + [ + 66.217998612457, + 32.049173397246875 + ], + [ + 65.98831324548964, + 32.049173397246875 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 32.438468867103786 + ], + [ + 66.217998612457, + 32.438468867103786 + ], + [ + 66.10315592897331, + 32.63311660203224 + ], + [ + 65.98831324548964, + 32.438468867103786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 32.438468867103786 + ], + [ + 66.10315592897331, + 32.63311660203224 + ], + [ + 65.87347056200596, + 32.63311660203224 + ], + [ + 65.98831324548964, + 32.438468867103786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 32.438468867103786 + ], + [ + 65.87347056200596, + 32.63311660203224 + ], + [ + 65.75862787852228, + 32.438468867103786 + ], + [ + 65.98831324548964, + 32.438468867103786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 32.438468867103786 + ], + [ + 65.75862787852228, + 32.438468867103786 + ], + [ + 65.87347056200596, + 32.243821132175334 + ], + [ + 65.98831324548964, + 32.438468867103786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 32.438468867103786 + ], + [ + 65.87347056200596, + 32.243821132175334 + ], + [ + 66.10315592897331, + 32.243821132175334 + ], + [ + 65.98831324548964, + 32.438468867103786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 32.438468867103786 + ], + [ + 66.10315592897331, + 32.243821132175334 + ], + [ + 66.217998612457, + 32.438468867103786 + ], + [ + 65.98831324548964, + 32.438468867103786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 32.82776433696069 + ], + [ + 66.217998612457, + 32.82776433696069 + ], + [ + 66.10315592897331, + 33.02241207188914 + ], + [ + 65.98831324548964, + 32.82776433696069 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 32.82776433696069 + ], + [ + 66.10315592897331, + 33.02241207188914 + ], + [ + 65.87347056200596, + 33.02241207188914 + ], + [ + 65.98831324548964, + 32.82776433696069 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 32.82776433696069 + ], + [ + 65.87347056200596, + 33.02241207188914 + ], + [ + 65.75862787852228, + 32.82776433696069 + ], + [ + 65.98831324548964, + 32.82776433696069 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 32.82776433696069 + ], + [ + 65.75862787852228, + 32.82776433696069 + ], + [ + 65.87347056200596, + 32.63311660203224 + ], + [ + 65.98831324548964, + 32.82776433696069 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 32.82776433696069 + ], + [ + 65.87347056200596, + 32.63311660203224 + ], + [ + 66.10315592897331, + 32.63311660203224 + ], + [ + 65.98831324548964, + 32.82776433696069 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 32.82776433696069 + ], + [ + 66.10315592897331, + 32.63311660203224 + ], + [ + 66.217998612457, + 32.82776433696069 + ], + [ + 65.98831324548964, + 32.82776433696069 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 33.217059806817595 + ], + [ + 66.217998612457, + 33.217059806817595 + ], + [ + 66.10315592897331, + 33.41170754174605 + ], + [ + 65.98831324548964, + 33.217059806817595 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 33.217059806817595 + ], + [ + 66.10315592897331, + 33.41170754174605 + ], + [ + 65.87347056200596, + 33.41170754174605 + ], + [ + 65.98831324548964, + 33.217059806817595 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 33.217059806817595 + ], + [ + 65.87347056200596, + 33.41170754174605 + ], + [ + 65.75862787852228, + 33.217059806817595 + ], + [ + 65.98831324548964, + 33.217059806817595 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 33.217059806817595 + ], + [ + 65.75862787852228, + 33.217059806817595 + ], + [ + 65.87347056200596, + 33.02241207188914 + ], + [ + 65.98831324548964, + 33.217059806817595 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 33.217059806817595 + ], + [ + 65.87347056200596, + 33.02241207188914 + ], + [ + 66.10315592897331, + 33.02241207188914 + ], + [ + 65.98831324548964, + 33.217059806817595 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 33.217059806817595 + ], + [ + 66.10315592897331, + 33.02241207188914 + ], + [ + 66.217998612457, + 33.217059806817595 + ], + [ + 65.98831324548964, + 33.217059806817595 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 33.6063552766745 + ], + [ + 66.217998612457, + 33.6063552766745 + ], + [ + 66.10315592897331, + 33.80100301160295 + ], + [ + 65.98831324548964, + 33.6063552766745 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 33.6063552766745 + ], + [ + 66.10315592897331, + 33.80100301160295 + ], + [ + 65.87347056200596, + 33.80100301160295 + ], + [ + 65.98831324548964, + 33.6063552766745 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 33.6063552766745 + ], + [ + 65.87347056200596, + 33.80100301160295 + ], + [ + 65.75862787852228, + 33.6063552766745 + ], + [ + 65.98831324548964, + 33.6063552766745 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 33.6063552766745 + ], + [ + 65.75862787852228, + 33.6063552766745 + ], + [ + 65.87347056200596, + 33.41170754174605 + ], + [ + 65.98831324548964, + 33.6063552766745 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 33.6063552766745 + ], + [ + 65.87347056200596, + 33.41170754174605 + ], + [ + 66.10315592897331, + 33.41170754174605 + ], + [ + 65.98831324548964, + 33.6063552766745 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 33.6063552766745 + ], + [ + 66.10315592897331, + 33.41170754174605 + ], + [ + 66.217998612457, + 33.6063552766745 + ], + [ + 65.98831324548964, + 33.6063552766745 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 33.9956507465314 + ], + [ + 66.217998612457, + 33.9956507465314 + ], + [ + 66.10315592897331, + 34.190298481459855 + ], + [ + 65.98831324548964, + 33.9956507465314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 33.9956507465314 + ], + [ + 66.10315592897331, + 34.190298481459855 + ], + [ + 65.87347056200596, + 34.190298481459855 + ], + [ + 65.98831324548964, + 33.9956507465314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 33.9956507465314 + ], + [ + 65.87347056200596, + 34.190298481459855 + ], + [ + 65.75862787852228, + 33.9956507465314 + ], + [ + 65.98831324548964, + 33.9956507465314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 33.9956507465314 + ], + [ + 65.75862787852228, + 33.9956507465314 + ], + [ + 65.87347056200596, + 33.80100301160295 + ], + [ + 65.98831324548964, + 33.9956507465314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 33.9956507465314 + ], + [ + 65.87347056200596, + 33.80100301160295 + ], + [ + 66.10315592897331, + 33.80100301160295 + ], + [ + 65.98831324548964, + 33.9956507465314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 33.9956507465314 + ], + [ + 66.10315592897331, + 33.80100301160295 + ], + [ + 66.217998612457, + 33.9956507465314 + ], + [ + 65.98831324548964, + 33.9956507465314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 34.384946216388315 + ], + [ + 66.217998612457, + 34.384946216388315 + ], + [ + 66.10315592897331, + 34.57959395131677 + ], + [ + 65.98831324548964, + 34.384946216388315 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 34.384946216388315 + ], + [ + 66.10315592897331, + 34.57959395131677 + ], + [ + 65.87347056200596, + 34.57959395131677 + ], + [ + 65.98831324548964, + 34.384946216388315 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 34.384946216388315 + ], + [ + 65.87347056200596, + 34.57959395131677 + ], + [ + 65.75862787852228, + 34.384946216388315 + ], + [ + 65.98831324548964, + 34.384946216388315 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 34.384946216388315 + ], + [ + 65.75862787852228, + 34.384946216388315 + ], + [ + 65.87347056200596, + 34.19029848145986 + ], + [ + 65.98831324548964, + 34.384946216388315 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 34.384946216388315 + ], + [ + 65.87347056200596, + 34.19029848145986 + ], + [ + 66.10315592897331, + 34.19029848145986 + ], + [ + 65.98831324548964, + 34.384946216388315 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 34.384946216388315 + ], + [ + 66.10315592897331, + 34.19029848145986 + ], + [ + 66.217998612457, + 34.384946216388315 + ], + [ + 65.98831324548964, + 34.384946216388315 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 34.774241686245226 + ], + [ + 66.217998612457, + 34.774241686245226 + ], + [ + 66.10315592897331, + 34.96888942117368 + ], + [ + 65.98831324548964, + 34.774241686245226 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 34.774241686245226 + ], + [ + 66.10315592897331, + 34.96888942117368 + ], + [ + 65.87347056200596, + 34.96888942117368 + ], + [ + 65.98831324548964, + 34.774241686245226 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 34.774241686245226 + ], + [ + 65.87347056200596, + 34.96888942117368 + ], + [ + 65.75862787852228, + 34.774241686245226 + ], + [ + 65.98831324548964, + 34.774241686245226 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 34.774241686245226 + ], + [ + 65.75862787852228, + 34.774241686245226 + ], + [ + 65.87347056200596, + 34.579593951316774 + ], + [ + 65.98831324548964, + 34.774241686245226 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 34.774241686245226 + ], + [ + 65.87347056200596, + 34.579593951316774 + ], + [ + 66.10315592897331, + 34.579593951316774 + ], + [ + 65.98831324548964, + 34.774241686245226 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 34.774241686245226 + ], + [ + 66.10315592897331, + 34.579593951316774 + ], + [ + 66.217998612457, + 34.774241686245226 + ], + [ + 65.98831324548964, + 34.774241686245226 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 35.16353715610213 + ], + [ + 66.217998612457, + 35.16353715610213 + ], + [ + 66.10315592897331, + 35.35818489103058 + ], + [ + 65.98831324548964, + 35.16353715610213 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 35.16353715610213 + ], + [ + 66.10315592897331, + 35.35818489103058 + ], + [ + 65.87347056200596, + 35.35818489103058 + ], + [ + 65.98831324548964, + 35.16353715610213 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 35.16353715610213 + ], + [ + 65.87347056200596, + 35.35818489103058 + ], + [ + 65.75862787852228, + 35.16353715610213 + ], + [ + 65.98831324548964, + 35.16353715610213 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 35.16353715610213 + ], + [ + 65.75862787852228, + 35.16353715610213 + ], + [ + 65.87347056200596, + 34.96888942117368 + ], + [ + 65.98831324548964, + 35.16353715610213 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 35.16353715610213 + ], + [ + 65.87347056200596, + 34.96888942117368 + ], + [ + 66.10315592897331, + 34.96888942117368 + ], + [ + 65.98831324548964, + 35.16353715610213 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 35.16353715610213 + ], + [ + 66.10315592897331, + 34.96888942117368 + ], + [ + 66.217998612457, + 35.16353715610213 + ], + [ + 65.98831324548964, + 35.16353715610213 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 35.552832625959034 + ], + [ + 66.217998612457, + 35.552832625959034 + ], + [ + 66.10315592897331, + 35.74748036088749 + ], + [ + 65.98831324548964, + 35.552832625959034 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 35.552832625959034 + ], + [ + 66.10315592897331, + 35.74748036088749 + ], + [ + 65.87347056200596, + 35.74748036088749 + ], + [ + 65.98831324548964, + 35.552832625959034 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 35.552832625959034 + ], + [ + 65.87347056200596, + 35.74748036088749 + ], + [ + 65.75862787852228, + 35.552832625959034 + ], + [ + 65.98831324548964, + 35.552832625959034 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 35.552832625959034 + ], + [ + 65.75862787852228, + 35.552832625959034 + ], + [ + 65.87347056200596, + 35.35818489103058 + ], + [ + 65.98831324548964, + 35.552832625959034 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 35.552832625959034 + ], + [ + 65.87347056200596, + 35.35818489103058 + ], + [ + 66.10315592897331, + 35.35818489103058 + ], + [ + 65.98831324548964, + 35.552832625959034 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 35.552832625959034 + ], + [ + 66.10315592897331, + 35.35818489103058 + ], + [ + 66.217998612457, + 35.552832625959034 + ], + [ + 65.98831324548964, + 35.552832625959034 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 35.94212809581594 + ], + [ + 66.217998612457, + 35.94212809581594 + ], + [ + 66.10315592897331, + 36.13677583074439 + ], + [ + 65.98831324548964, + 35.94212809581594 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 35.94212809581594 + ], + [ + 66.10315592897331, + 36.13677583074439 + ], + [ + 65.87347056200596, + 36.13677583074439 + ], + [ + 65.98831324548964, + 35.94212809581594 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 35.94212809581594 + ], + [ + 65.87347056200596, + 36.13677583074439 + ], + [ + 65.75862787852228, + 35.94212809581594 + ], + [ + 65.98831324548964, + 35.94212809581594 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 35.94212809581594 + ], + [ + 65.75862787852228, + 35.94212809581594 + ], + [ + 65.87347056200596, + 35.74748036088749 + ], + [ + 65.98831324548964, + 35.94212809581594 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 35.94212809581594 + ], + [ + 65.87347056200596, + 35.74748036088749 + ], + [ + 66.10315592897331, + 35.74748036088749 + ], + [ + 65.98831324548964, + 35.94212809581594 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 35.94212809581594 + ], + [ + 66.10315592897331, + 35.74748036088749 + ], + [ + 66.217998612457, + 35.94212809581594 + ], + [ + 65.98831324548964, + 35.94212809581594 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 36.33142356567284 + ], + [ + 66.217998612457, + 36.33142356567284 + ], + [ + 66.10315592897331, + 36.526071300601295 + ], + [ + 65.98831324548964, + 36.33142356567284 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 36.33142356567284 + ], + [ + 66.10315592897331, + 36.526071300601295 + ], + [ + 65.87347056200596, + 36.526071300601295 + ], + [ + 65.98831324548964, + 36.33142356567284 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 36.33142356567284 + ], + [ + 65.87347056200596, + 36.526071300601295 + ], + [ + 65.75862787852228, + 36.33142356567284 + ], + [ + 65.98831324548964, + 36.33142356567284 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 36.33142356567284 + ], + [ + 65.75862787852228, + 36.33142356567284 + ], + [ + 65.87347056200596, + 36.13677583074439 + ], + [ + 65.98831324548964, + 36.33142356567284 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 36.33142356567284 + ], + [ + 65.87347056200596, + 36.13677583074439 + ], + [ + 66.10315592897331, + 36.13677583074439 + ], + [ + 65.98831324548964, + 36.33142356567284 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 36.33142356567284 + ], + [ + 66.10315592897331, + 36.13677583074439 + ], + [ + 66.217998612457, + 36.33142356567284 + ], + [ + 65.98831324548964, + 36.33142356567284 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 36.720719035529754 + ], + [ + 66.217998612457, + 36.720719035529754 + ], + [ + 66.10315592897331, + 36.915366770458206 + ], + [ + 65.98831324548964, + 36.720719035529754 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 36.720719035529754 + ], + [ + 66.10315592897331, + 36.915366770458206 + ], + [ + 65.87347056200596, + 36.915366770458206 + ], + [ + 65.98831324548964, + 36.720719035529754 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 36.720719035529754 + ], + [ + 65.87347056200596, + 36.915366770458206 + ], + [ + 65.75862787852228, + 36.720719035529754 + ], + [ + 65.98831324548964, + 36.720719035529754 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 36.720719035529754 + ], + [ + 65.75862787852228, + 36.720719035529754 + ], + [ + 65.87347056200596, + 36.5260713006013 + ], + [ + 65.98831324548964, + 36.720719035529754 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 36.720719035529754 + ], + [ + 65.87347056200596, + 36.5260713006013 + ], + [ + 66.10315592897331, + 36.5260713006013 + ], + [ + 65.98831324548964, + 36.720719035529754 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 36.720719035529754 + ], + [ + 66.10315592897331, + 36.5260713006013 + ], + [ + 66.217998612457, + 36.720719035529754 + ], + [ + 65.98831324548964, + 36.720719035529754 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 37.11001450538666 + ], + [ + 66.217998612457, + 37.11001450538666 + ], + [ + 66.10315592897331, + 37.30466224031511 + ], + [ + 65.98831324548964, + 37.11001450538666 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 37.11001450538666 + ], + [ + 66.10315592897331, + 37.30466224031511 + ], + [ + 65.87347056200596, + 37.30466224031511 + ], + [ + 65.98831324548964, + 37.11001450538666 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 37.11001450538666 + ], + [ + 65.87347056200596, + 37.30466224031511 + ], + [ + 65.75862787852228, + 37.11001450538666 + ], + [ + 65.98831324548964, + 37.11001450538666 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 37.11001450538666 + ], + [ + 65.75862787852228, + 37.11001450538666 + ], + [ + 65.87347056200596, + 36.915366770458206 + ], + [ + 65.98831324548964, + 37.11001450538666 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 37.11001450538666 + ], + [ + 65.87347056200596, + 36.915366770458206 + ], + [ + 66.10315592897331, + 36.915366770458206 + ], + [ + 65.98831324548964, + 37.11001450538666 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 37.11001450538666 + ], + [ + 66.10315592897331, + 36.915366770458206 + ], + [ + 66.217998612457, + 37.11001450538666 + ], + [ + 65.98831324548964, + 37.11001450538666 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 37.49930997524357 + ], + [ + 66.217998612457, + 37.49930997524357 + ], + [ + 66.10315592897331, + 37.69395771017202 + ], + [ + 65.98831324548964, + 37.49930997524357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 37.49930997524357 + ], + [ + 66.10315592897331, + 37.69395771017202 + ], + [ + 65.87347056200596, + 37.69395771017202 + ], + [ + 65.98831324548964, + 37.49930997524357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 37.49930997524357 + ], + [ + 65.87347056200596, + 37.69395771017202 + ], + [ + 65.75862787852228, + 37.49930997524357 + ], + [ + 65.98831324548964, + 37.49930997524357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 37.49930997524357 + ], + [ + 65.75862787852228, + 37.49930997524357 + ], + [ + 65.87347056200596, + 37.30466224031512 + ], + [ + 65.98831324548964, + 37.49930997524357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 37.49930997524357 + ], + [ + 65.87347056200596, + 37.30466224031512 + ], + [ + 66.10315592897331, + 37.30466224031512 + ], + [ + 65.98831324548964, + 37.49930997524357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 37.49930997524357 + ], + [ + 66.10315592897331, + 37.30466224031512 + ], + [ + 66.217998612457, + 37.49930997524357 + ], + [ + 65.98831324548964, + 37.49930997524357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 37.888605445100474 + ], + [ + 66.217998612457, + 37.888605445100474 + ], + [ + 66.10315592897331, + 38.083253180028926 + ], + [ + 65.98831324548964, + 37.888605445100474 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 37.888605445100474 + ], + [ + 66.10315592897331, + 38.083253180028926 + ], + [ + 65.87347056200596, + 38.083253180028926 + ], + [ + 65.98831324548964, + 37.888605445100474 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 37.888605445100474 + ], + [ + 65.87347056200596, + 38.083253180028926 + ], + [ + 65.75862787852228, + 37.888605445100474 + ], + [ + 65.98831324548964, + 37.888605445100474 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 37.888605445100474 + ], + [ + 65.75862787852228, + 37.888605445100474 + ], + [ + 65.87347056200596, + 37.69395771017202 + ], + [ + 65.98831324548964, + 37.888605445100474 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 37.888605445100474 + ], + [ + 65.87347056200596, + 37.69395771017202 + ], + [ + 66.10315592897331, + 37.69395771017202 + ], + [ + 65.98831324548964, + 37.888605445100474 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 37.888605445100474 + ], + [ + 66.10315592897331, + 37.69395771017202 + ], + [ + 66.217998612457, + 37.888605445100474 + ], + [ + 65.98831324548964, + 37.888605445100474 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 38.27790091495738 + ], + [ + 66.217998612457, + 38.27790091495738 + ], + [ + 66.10315592897331, + 38.47254864988583 + ], + [ + 65.98831324548964, + 38.27790091495738 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 38.27790091495738 + ], + [ + 66.10315592897331, + 38.47254864988583 + ], + [ + 65.87347056200596, + 38.47254864988583 + ], + [ + 65.98831324548964, + 38.27790091495738 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 38.27790091495738 + ], + [ + 65.87347056200596, + 38.47254864988583 + ], + [ + 65.75862787852228, + 38.27790091495738 + ], + [ + 65.98831324548964, + 38.27790091495738 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 38.27790091495738 + ], + [ + 65.75862787852228, + 38.27790091495738 + ], + [ + 65.87347056200596, + 38.083253180028926 + ], + [ + 65.98831324548964, + 38.27790091495738 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 38.27790091495738 + ], + [ + 65.87347056200596, + 38.083253180028926 + ], + [ + 66.10315592897331, + 38.083253180028926 + ], + [ + 65.98831324548964, + 38.27790091495738 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 38.27790091495738 + ], + [ + 66.10315592897331, + 38.083253180028926 + ], + [ + 66.217998612457, + 38.27790091495738 + ], + [ + 65.98831324548964, + 38.27790091495738 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 38.66719638481428 + ], + [ + 66.217998612457, + 38.66719638481428 + ], + [ + 66.10315592897331, + 38.861844119742734 + ], + [ + 65.98831324548964, + 38.66719638481428 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 38.66719638481428 + ], + [ + 66.10315592897331, + 38.861844119742734 + ], + [ + 65.87347056200596, + 38.861844119742734 + ], + [ + 65.98831324548964, + 38.66719638481428 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 38.66719638481428 + ], + [ + 65.87347056200596, + 38.861844119742734 + ], + [ + 65.75862787852228, + 38.66719638481428 + ], + [ + 65.98831324548964, + 38.66719638481428 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 38.66719638481428 + ], + [ + 65.75862787852228, + 38.66719638481428 + ], + [ + 65.87347056200596, + 38.47254864988583 + ], + [ + 65.98831324548964, + 38.66719638481428 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 38.66719638481428 + ], + [ + 65.87347056200596, + 38.47254864988583 + ], + [ + 66.10315592897331, + 38.47254864988583 + ], + [ + 65.98831324548964, + 38.66719638481428 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 38.66719638481428 + ], + [ + 66.10315592897331, + 38.47254864988583 + ], + [ + 66.217998612457, + 38.66719638481428 + ], + [ + 65.98831324548964, + 38.66719638481428 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 39.05649185467119 + ], + [ + 66.217998612457, + 39.05649185467119 + ], + [ + 66.10315592897331, + 39.25113958959964 + ], + [ + 65.98831324548964, + 39.05649185467119 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 39.05649185467119 + ], + [ + 66.10315592897331, + 39.25113958959964 + ], + [ + 65.87347056200596, + 39.25113958959964 + ], + [ + 65.98831324548964, + 39.05649185467119 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 39.05649185467119 + ], + [ + 65.87347056200596, + 39.25113958959964 + ], + [ + 65.75862787852228, + 39.05649185467119 + ], + [ + 65.98831324548964, + 39.05649185467119 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 39.05649185467119 + ], + [ + 65.75862787852228, + 39.05649185467119 + ], + [ + 65.87347056200596, + 38.861844119742734 + ], + [ + 65.98831324548964, + 39.05649185467119 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 39.05649185467119 + ], + [ + 65.87347056200596, + 38.861844119742734 + ], + [ + 66.10315592897331, + 38.861844119742734 + ], + [ + 65.98831324548964, + 39.05649185467119 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 39.05649185467119 + ], + [ + 66.10315592897331, + 38.861844119742734 + ], + [ + 66.217998612457, + 39.05649185467119 + ], + [ + 65.98831324548964, + 39.05649185467119 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 39.4457873245281 + ], + [ + 66.217998612457, + 39.4457873245281 + ], + [ + 66.10315592897331, + 39.64043505945655 + ], + [ + 65.98831324548964, + 39.4457873245281 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 39.4457873245281 + ], + [ + 66.10315592897331, + 39.64043505945655 + ], + [ + 65.87347056200596, + 39.64043505945655 + ], + [ + 65.98831324548964, + 39.4457873245281 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 39.4457873245281 + ], + [ + 65.87347056200596, + 39.64043505945655 + ], + [ + 65.75862787852228, + 39.4457873245281 + ], + [ + 65.98831324548964, + 39.4457873245281 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 39.4457873245281 + ], + [ + 65.75862787852228, + 39.4457873245281 + ], + [ + 65.87347056200596, + 39.251139589599646 + ], + [ + 65.98831324548964, + 39.4457873245281 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 39.4457873245281 + ], + [ + 65.87347056200596, + 39.251139589599646 + ], + [ + 66.10315592897331, + 39.251139589599646 + ], + [ + 65.98831324548964, + 39.4457873245281 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 39.4457873245281 + ], + [ + 66.10315592897331, + 39.251139589599646 + ], + [ + 66.217998612457, + 39.4457873245281 + ], + [ + 65.98831324548964, + 39.4457873245281 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 39.835082794385 + ], + [ + 66.217998612457, + 39.835082794385 + ], + [ + 66.10315592897331, + 40.029730529313454 + ], + [ + 65.98831324548964, + 39.835082794385 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 39.835082794385 + ], + [ + 66.10315592897331, + 40.029730529313454 + ], + [ + 65.87347056200596, + 40.029730529313454 + ], + [ + 65.98831324548964, + 39.835082794385 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 39.835082794385 + ], + [ + 65.87347056200596, + 40.029730529313454 + ], + [ + 65.75862787852228, + 39.835082794385 + ], + [ + 65.98831324548964, + 39.835082794385 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 39.835082794385 + ], + [ + 65.75862787852228, + 39.835082794385 + ], + [ + 65.87347056200596, + 39.64043505945655 + ], + [ + 65.98831324548964, + 39.835082794385 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 39.835082794385 + ], + [ + 65.87347056200596, + 39.64043505945655 + ], + [ + 66.10315592897331, + 39.64043505945655 + ], + [ + 65.98831324548964, + 39.835082794385 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 39.835082794385 + ], + [ + 66.10315592897331, + 39.64043505945655 + ], + [ + 66.217998612457, + 39.835082794385 + ], + [ + 65.98831324548964, + 39.835082794385 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 40.22437826424191 + ], + [ + 66.217998612457, + 40.22437826424191 + ], + [ + 66.10315592897331, + 40.419025999170366 + ], + [ + 65.98831324548964, + 40.22437826424191 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 40.22437826424191 + ], + [ + 66.10315592897331, + 40.419025999170366 + ], + [ + 65.87347056200596, + 40.419025999170366 + ], + [ + 65.98831324548964, + 40.22437826424191 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 40.22437826424191 + ], + [ + 65.87347056200596, + 40.419025999170366 + ], + [ + 65.75862787852228, + 40.22437826424191 + ], + [ + 65.98831324548964, + 40.22437826424191 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 40.22437826424191 + ], + [ + 65.75862787852228, + 40.22437826424191 + ], + [ + 65.87347056200596, + 40.02973052931346 + ], + [ + 65.98831324548964, + 40.22437826424191 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 40.22437826424191 + ], + [ + 65.87347056200596, + 40.02973052931346 + ], + [ + 66.10315592897331, + 40.02973052931346 + ], + [ + 65.98831324548964, + 40.22437826424191 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 40.22437826424191 + ], + [ + 66.10315592897331, + 40.02973052931346 + ], + [ + 66.217998612457, + 40.22437826424191 + ], + [ + 65.98831324548964, + 40.22437826424191 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 40.61367373409882 + ], + [ + 66.217998612457, + 40.61367373409882 + ], + [ + 66.10315592897331, + 40.80832146902727 + ], + [ + 65.98831324548964, + 40.61367373409882 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 40.61367373409882 + ], + [ + 66.10315592897331, + 40.80832146902727 + ], + [ + 65.87347056200596, + 40.80832146902727 + ], + [ + 65.98831324548964, + 40.61367373409882 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 40.61367373409882 + ], + [ + 65.87347056200596, + 40.80832146902727 + ], + [ + 65.75862787852228, + 40.61367373409882 + ], + [ + 65.98831324548964, + 40.61367373409882 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 40.61367373409882 + ], + [ + 65.75862787852228, + 40.61367373409882 + ], + [ + 65.87347056200596, + 40.419025999170366 + ], + [ + 65.98831324548964, + 40.61367373409882 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 40.61367373409882 + ], + [ + 65.87347056200596, + 40.419025999170366 + ], + [ + 66.10315592897331, + 40.419025999170366 + ], + [ + 65.98831324548964, + 40.61367373409882 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 40.61367373409882 + ], + [ + 66.10315592897331, + 40.419025999170366 + ], + [ + 66.217998612457, + 40.61367373409882 + ], + [ + 65.98831324548964, + 40.61367373409882 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 41.00296920395572 + ], + [ + 66.217998612457, + 41.00296920395572 + ], + [ + 66.10315592897331, + 41.197616938884174 + ], + [ + 65.98831324548964, + 41.00296920395572 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 41.00296920395572 + ], + [ + 66.10315592897331, + 41.197616938884174 + ], + [ + 65.87347056200596, + 41.197616938884174 + ], + [ + 65.98831324548964, + 41.00296920395572 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 41.00296920395572 + ], + [ + 65.87347056200596, + 41.197616938884174 + ], + [ + 65.75862787852228, + 41.00296920395572 + ], + [ + 65.98831324548964, + 41.00296920395572 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 41.00296920395572 + ], + [ + 65.75862787852228, + 41.00296920395572 + ], + [ + 65.87347056200596, + 40.80832146902727 + ], + [ + 65.98831324548964, + 41.00296920395572 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 41.00296920395572 + ], + [ + 65.87347056200596, + 40.80832146902727 + ], + [ + 66.10315592897331, + 40.80832146902727 + ], + [ + 65.98831324548964, + 41.00296920395572 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 41.00296920395572 + ], + [ + 66.10315592897331, + 40.80832146902727 + ], + [ + 66.217998612457, + 41.00296920395572 + ], + [ + 65.98831324548964, + 41.00296920395572 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 41.392264673812626 + ], + [ + 66.217998612457, + 41.392264673812626 + ], + [ + 66.10315592897331, + 41.58691240874108 + ], + [ + 65.98831324548964, + 41.392264673812626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 41.392264673812626 + ], + [ + 66.10315592897331, + 41.58691240874108 + ], + [ + 65.87347056200596, + 41.58691240874108 + ], + [ + 65.98831324548964, + 41.392264673812626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 41.392264673812626 + ], + [ + 65.87347056200596, + 41.58691240874108 + ], + [ + 65.75862787852228, + 41.392264673812626 + ], + [ + 65.98831324548964, + 41.392264673812626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 41.392264673812626 + ], + [ + 65.75862787852228, + 41.392264673812626 + ], + [ + 65.87347056200596, + 41.197616938884174 + ], + [ + 65.98831324548964, + 41.392264673812626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 41.392264673812626 + ], + [ + 65.87347056200596, + 41.197616938884174 + ], + [ + 66.10315592897331, + 41.197616938884174 + ], + [ + 65.98831324548964, + 41.392264673812626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 41.392264673812626 + ], + [ + 66.10315592897331, + 41.197616938884174 + ], + [ + 66.217998612457, + 41.392264673812626 + ], + [ + 65.98831324548964, + 41.392264673812626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 41.78156014366953 + ], + [ + 66.217998612457, + 41.78156014366953 + ], + [ + 66.10315592897331, + 41.97620787859798 + ], + [ + 65.98831324548964, + 41.78156014366953 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 41.78156014366953 + ], + [ + 66.10315592897331, + 41.97620787859798 + ], + [ + 65.87347056200596, + 41.97620787859798 + ], + [ + 65.98831324548964, + 41.78156014366953 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 41.78156014366953 + ], + [ + 65.87347056200596, + 41.97620787859798 + ], + [ + 65.75862787852228, + 41.78156014366953 + ], + [ + 65.98831324548964, + 41.78156014366953 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 41.78156014366953 + ], + [ + 65.75862787852228, + 41.78156014366953 + ], + [ + 65.87347056200596, + 41.58691240874108 + ], + [ + 65.98831324548964, + 41.78156014366953 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 41.78156014366953 + ], + [ + 65.87347056200596, + 41.58691240874108 + ], + [ + 66.10315592897331, + 41.58691240874108 + ], + [ + 65.98831324548964, + 41.78156014366953 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 41.78156014366953 + ], + [ + 66.10315592897331, + 41.58691240874108 + ], + [ + 66.217998612457, + 41.78156014366953 + ], + [ + 65.98831324548964, + 41.78156014366953 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 42.17085561352644 + ], + [ + 66.217998612457, + 42.17085561352644 + ], + [ + 66.10315592897331, + 42.365503348454894 + ], + [ + 65.98831324548964, + 42.17085561352644 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 42.17085561352644 + ], + [ + 66.10315592897331, + 42.365503348454894 + ], + [ + 65.87347056200596, + 42.365503348454894 + ], + [ + 65.98831324548964, + 42.17085561352644 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 42.17085561352644 + ], + [ + 65.87347056200596, + 42.365503348454894 + ], + [ + 65.75862787852228, + 42.17085561352644 + ], + [ + 65.98831324548964, + 42.17085561352644 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 42.17085561352644 + ], + [ + 65.75862787852228, + 42.17085561352644 + ], + [ + 65.87347056200596, + 41.97620787859799 + ], + [ + 65.98831324548964, + 42.17085561352644 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 42.17085561352644 + ], + [ + 65.87347056200596, + 41.97620787859799 + ], + [ + 66.10315592897331, + 41.97620787859799 + ], + [ + 65.98831324548964, + 42.17085561352644 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 42.17085561352644 + ], + [ + 66.10315592897331, + 41.97620787859799 + ], + [ + 66.217998612457, + 42.17085561352644 + ], + [ + 65.98831324548964, + 42.17085561352644 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 42.56015108338335 + ], + [ + 66.217998612457, + 42.56015108338335 + ], + [ + 66.10315592897331, + 42.754798818311805 + ], + [ + 65.98831324548964, + 42.56015108338335 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 42.56015108338335 + ], + [ + 66.10315592897331, + 42.754798818311805 + ], + [ + 65.87347056200596, + 42.754798818311805 + ], + [ + 65.98831324548964, + 42.56015108338335 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 42.56015108338335 + ], + [ + 65.87347056200596, + 42.754798818311805 + ], + [ + 65.75862787852228, + 42.56015108338335 + ], + [ + 65.98831324548964, + 42.56015108338335 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 42.56015108338335 + ], + [ + 65.75862787852228, + 42.56015108338335 + ], + [ + 65.87347056200596, + 42.3655033484549 + ], + [ + 65.98831324548964, + 42.56015108338335 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 42.56015108338335 + ], + [ + 65.87347056200596, + 42.3655033484549 + ], + [ + 66.10315592897331, + 42.3655033484549 + ], + [ + 65.98831324548964, + 42.56015108338335 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 42.56015108338335 + ], + [ + 66.10315592897331, + 42.3655033484549 + ], + [ + 66.217998612457, + 42.56015108338335 + ], + [ + 65.98831324548964, + 42.56015108338335 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 42.94944655324026 + ], + [ + 66.217998612457, + 42.94944655324026 + ], + [ + 66.10315592897331, + 43.14409428816871 + ], + [ + 65.98831324548964, + 42.94944655324026 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 42.94944655324026 + ], + [ + 66.10315592897331, + 43.14409428816871 + ], + [ + 65.87347056200596, + 43.14409428816871 + ], + [ + 65.98831324548964, + 42.94944655324026 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 42.94944655324026 + ], + [ + 65.87347056200596, + 43.14409428816871 + ], + [ + 65.75862787852228, + 42.94944655324026 + ], + [ + 65.98831324548964, + 42.94944655324026 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 42.94944655324026 + ], + [ + 65.75862787852228, + 42.94944655324026 + ], + [ + 65.87347056200596, + 42.754798818311805 + ], + [ + 65.98831324548964, + 42.94944655324026 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 42.94944655324026 + ], + [ + 65.87347056200596, + 42.754798818311805 + ], + [ + 66.10315592897331, + 42.754798818311805 + ], + [ + 65.98831324548964, + 42.94944655324026 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 42.94944655324026 + ], + [ + 66.10315592897331, + 42.754798818311805 + ], + [ + 66.217998612457, + 42.94944655324026 + ], + [ + 65.98831324548964, + 42.94944655324026 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 43.33874202309716 + ], + [ + 66.217998612457, + 43.33874202309716 + ], + [ + 66.10315592897331, + 43.53338975802561 + ], + [ + 65.98831324548964, + 43.33874202309716 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 43.33874202309716 + ], + [ + 66.10315592897331, + 43.53338975802561 + ], + [ + 65.87347056200596, + 43.53338975802561 + ], + [ + 65.98831324548964, + 43.33874202309716 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 43.33874202309716 + ], + [ + 65.87347056200596, + 43.53338975802561 + ], + [ + 65.75862787852228, + 43.33874202309716 + ], + [ + 65.98831324548964, + 43.33874202309716 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 43.33874202309716 + ], + [ + 65.75862787852228, + 43.33874202309716 + ], + [ + 65.87347056200596, + 43.14409428816871 + ], + [ + 65.98831324548964, + 43.33874202309716 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 43.33874202309716 + ], + [ + 65.87347056200596, + 43.14409428816871 + ], + [ + 66.10315592897331, + 43.14409428816871 + ], + [ + 65.98831324548964, + 43.33874202309716 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 43.33874202309716 + ], + [ + 66.10315592897331, + 43.14409428816871 + ], + [ + 66.217998612457, + 43.33874202309716 + ], + [ + 65.98831324548964, + 43.33874202309716 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 43.728037492954066 + ], + [ + 66.217998612457, + 43.728037492954066 + ], + [ + 66.10315592897331, + 43.92268522788252 + ], + [ + 65.98831324548964, + 43.728037492954066 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 43.728037492954066 + ], + [ + 66.10315592897331, + 43.92268522788252 + ], + [ + 65.87347056200596, + 43.92268522788252 + ], + [ + 65.98831324548964, + 43.728037492954066 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 43.728037492954066 + ], + [ + 65.87347056200596, + 43.92268522788252 + ], + [ + 65.75862787852228, + 43.728037492954066 + ], + [ + 65.98831324548964, + 43.728037492954066 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 43.728037492954066 + ], + [ + 65.75862787852228, + 43.728037492954066 + ], + [ + 65.87347056200596, + 43.53338975802561 + ], + [ + 65.98831324548964, + 43.728037492954066 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 43.728037492954066 + ], + [ + 65.87347056200596, + 43.53338975802561 + ], + [ + 66.10315592897331, + 43.53338975802561 + ], + [ + 65.98831324548964, + 43.728037492954066 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 43.728037492954066 + ], + [ + 66.10315592897331, + 43.53338975802561 + ], + [ + 66.217998612457, + 43.728037492954066 + ], + [ + 65.98831324548964, + 43.728037492954066 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 44.11733296281097 + ], + [ + 66.217998612457, + 44.11733296281097 + ], + [ + 66.10315592897331, + 44.31198069773942 + ], + [ + 65.98831324548964, + 44.11733296281097 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 44.11733296281097 + ], + [ + 66.10315592897331, + 44.31198069773942 + ], + [ + 65.87347056200596, + 44.31198069773942 + ], + [ + 65.98831324548964, + 44.11733296281097 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 44.11733296281097 + ], + [ + 65.87347056200596, + 44.31198069773942 + ], + [ + 65.75862787852228, + 44.11733296281097 + ], + [ + 65.98831324548964, + 44.11733296281097 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 44.11733296281097 + ], + [ + 65.75862787852228, + 44.11733296281097 + ], + [ + 65.87347056200596, + 43.92268522788252 + ], + [ + 65.98831324548964, + 44.11733296281097 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 44.11733296281097 + ], + [ + 65.87347056200596, + 43.92268522788252 + ], + [ + 66.10315592897331, + 43.92268522788252 + ], + [ + 65.98831324548964, + 44.11733296281097 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 44.11733296281097 + ], + [ + 66.10315592897331, + 43.92268522788252 + ], + [ + 66.217998612457, + 44.11733296281097 + ], + [ + 65.98831324548964, + 44.11733296281097 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 44.506628432667874 + ], + [ + 66.217998612457, + 44.506628432667874 + ], + [ + 66.10315592897331, + 44.701276167596326 + ], + [ + 65.98831324548964, + 44.506628432667874 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 44.506628432667874 + ], + [ + 66.10315592897331, + 44.701276167596326 + ], + [ + 65.87347056200596, + 44.701276167596326 + ], + [ + 65.98831324548964, + 44.506628432667874 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 44.506628432667874 + ], + [ + 65.87347056200596, + 44.701276167596326 + ], + [ + 65.75862787852228, + 44.506628432667874 + ], + [ + 65.98831324548964, + 44.506628432667874 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 44.506628432667874 + ], + [ + 65.75862787852228, + 44.506628432667874 + ], + [ + 65.87347056200596, + 44.31198069773942 + ], + [ + 65.98831324548964, + 44.506628432667874 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 44.506628432667874 + ], + [ + 65.87347056200596, + 44.31198069773942 + ], + [ + 66.10315592897331, + 44.31198069773942 + ], + [ + 65.98831324548964, + 44.506628432667874 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 44.506628432667874 + ], + [ + 66.10315592897331, + 44.31198069773942 + ], + [ + 66.217998612457, + 44.506628432667874 + ], + [ + 65.98831324548964, + 44.506628432667874 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 44.89592390252479 + ], + [ + 66.217998612457, + 44.89592390252479 + ], + [ + 66.10315592897331, + 45.090571637453245 + ], + [ + 65.98831324548964, + 44.89592390252479 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 44.89592390252479 + ], + [ + 66.10315592897331, + 45.090571637453245 + ], + [ + 65.87347056200596, + 45.090571637453245 + ], + [ + 65.98831324548964, + 44.89592390252479 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 44.89592390252479 + ], + [ + 65.87347056200596, + 45.090571637453245 + ], + [ + 65.75862787852228, + 44.89592390252479 + ], + [ + 65.98831324548964, + 44.89592390252479 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 44.89592390252479 + ], + [ + 65.75862787852228, + 44.89592390252479 + ], + [ + 65.87347056200596, + 44.70127616759634 + ], + [ + 65.98831324548964, + 44.89592390252479 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 44.89592390252479 + ], + [ + 65.87347056200596, + 44.70127616759634 + ], + [ + 66.10315592897331, + 44.70127616759634 + ], + [ + 65.98831324548964, + 44.89592390252479 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 44.89592390252479 + ], + [ + 66.10315592897331, + 44.70127616759634 + ], + [ + 66.217998612457, + 44.89592390252479 + ], + [ + 65.98831324548964, + 44.89592390252479 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 45.2852193723817 + ], + [ + 66.217998612457, + 45.2852193723817 + ], + [ + 66.10315592897331, + 45.47986710731015 + ], + [ + 65.98831324548964, + 45.2852193723817 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 45.2852193723817 + ], + [ + 66.10315592897331, + 45.47986710731015 + ], + [ + 65.87347056200596, + 45.47986710731015 + ], + [ + 65.98831324548964, + 45.2852193723817 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 45.2852193723817 + ], + [ + 65.87347056200596, + 45.47986710731015 + ], + [ + 65.75862787852228, + 45.2852193723817 + ], + [ + 65.98831324548964, + 45.2852193723817 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 45.2852193723817 + ], + [ + 65.75862787852228, + 45.2852193723817 + ], + [ + 65.87347056200596, + 45.090571637453245 + ], + [ + 65.98831324548964, + 45.2852193723817 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 45.2852193723817 + ], + [ + 65.87347056200596, + 45.090571637453245 + ], + [ + 66.10315592897331, + 45.090571637453245 + ], + [ + 65.98831324548964, + 45.2852193723817 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 45.2852193723817 + ], + [ + 66.10315592897331, + 45.090571637453245 + ], + [ + 66.217998612457, + 45.2852193723817 + ], + [ + 65.98831324548964, + 45.2852193723817 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 45.6745148422386 + ], + [ + 66.217998612457, + 45.6745148422386 + ], + [ + 66.10315592897331, + 45.86916257716705 + ], + [ + 65.98831324548964, + 45.6745148422386 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 45.6745148422386 + ], + [ + 66.10315592897331, + 45.86916257716705 + ], + [ + 65.87347056200596, + 45.86916257716705 + ], + [ + 65.98831324548964, + 45.6745148422386 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 45.6745148422386 + ], + [ + 65.87347056200596, + 45.86916257716705 + ], + [ + 65.75862787852228, + 45.6745148422386 + ], + [ + 65.98831324548964, + 45.6745148422386 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 45.6745148422386 + ], + [ + 65.75862787852228, + 45.6745148422386 + ], + [ + 65.87347056200596, + 45.47986710731015 + ], + [ + 65.98831324548964, + 45.6745148422386 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 45.6745148422386 + ], + [ + 65.87347056200596, + 45.47986710731015 + ], + [ + 66.10315592897331, + 45.47986710731015 + ], + [ + 65.98831324548964, + 45.6745148422386 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 45.6745148422386 + ], + [ + 66.10315592897331, + 45.47986710731015 + ], + [ + 66.217998612457, + 45.6745148422386 + ], + [ + 65.98831324548964, + 45.6745148422386 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 46.063810312095505 + ], + [ + 66.217998612457, + 46.063810312095505 + ], + [ + 66.10315592897331, + 46.25845804702396 + ], + [ + 65.98831324548964, + 46.063810312095505 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 46.063810312095505 + ], + [ + 66.10315592897331, + 46.25845804702396 + ], + [ + 65.87347056200596, + 46.25845804702396 + ], + [ + 65.98831324548964, + 46.063810312095505 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 46.063810312095505 + ], + [ + 65.87347056200596, + 46.25845804702396 + ], + [ + 65.75862787852228, + 46.063810312095505 + ], + [ + 65.98831324548964, + 46.063810312095505 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 46.063810312095505 + ], + [ + 65.75862787852228, + 46.063810312095505 + ], + [ + 65.87347056200596, + 45.86916257716705 + ], + [ + 65.98831324548964, + 46.063810312095505 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 46.063810312095505 + ], + [ + 65.87347056200596, + 45.86916257716705 + ], + [ + 66.10315592897331, + 45.86916257716705 + ], + [ + 65.98831324548964, + 46.063810312095505 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 46.063810312095505 + ], + [ + 66.10315592897331, + 45.86916257716705 + ], + [ + 66.217998612457, + 46.063810312095505 + ], + [ + 65.98831324548964, + 46.063810312095505 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 46.45310578195241 + ], + [ + 66.217998612457, + 46.45310578195241 + ], + [ + 66.10315592897331, + 46.64775351688086 + ], + [ + 65.98831324548964, + 46.45310578195241 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 46.45310578195241 + ], + [ + 66.10315592897331, + 46.64775351688086 + ], + [ + 65.87347056200596, + 46.64775351688086 + ], + [ + 65.98831324548964, + 46.45310578195241 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 46.45310578195241 + ], + [ + 65.87347056200596, + 46.64775351688086 + ], + [ + 65.75862787852228, + 46.45310578195241 + ], + [ + 65.98831324548964, + 46.45310578195241 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 46.45310578195241 + ], + [ + 65.75862787852228, + 46.45310578195241 + ], + [ + 65.87347056200596, + 46.25845804702396 + ], + [ + 65.98831324548964, + 46.45310578195241 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 46.45310578195241 + ], + [ + 65.87347056200596, + 46.25845804702396 + ], + [ + 66.10315592897331, + 46.25845804702396 + ], + [ + 65.98831324548964, + 46.45310578195241 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 46.45310578195241 + ], + [ + 66.10315592897331, + 46.25845804702396 + ], + [ + 66.217998612457, + 46.45310578195241 + ], + [ + 65.98831324548964, + 46.45310578195241 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 46.842401251809314 + ], + [ + 66.217998612457, + 46.842401251809314 + ], + [ + 66.10315592897331, + 47.037048986737766 + ], + [ + 65.98831324548964, + 46.842401251809314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 46.842401251809314 + ], + [ + 66.10315592897331, + 47.037048986737766 + ], + [ + 65.87347056200596, + 47.037048986737766 + ], + [ + 65.98831324548964, + 46.842401251809314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 46.842401251809314 + ], + [ + 65.87347056200596, + 47.037048986737766 + ], + [ + 65.75862787852228, + 46.842401251809314 + ], + [ + 65.98831324548964, + 46.842401251809314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 46.842401251809314 + ], + [ + 65.75862787852228, + 46.842401251809314 + ], + [ + 65.87347056200596, + 46.64775351688086 + ], + [ + 65.98831324548964, + 46.842401251809314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 46.842401251809314 + ], + [ + 65.87347056200596, + 46.64775351688086 + ], + [ + 66.10315592897331, + 46.64775351688086 + ], + [ + 65.98831324548964, + 46.842401251809314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 46.842401251809314 + ], + [ + 66.10315592897331, + 46.64775351688086 + ], + [ + 66.217998612457, + 46.842401251809314 + ], + [ + 65.98831324548964, + 46.842401251809314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 47.23169672166622 + ], + [ + 66.217998612457, + 47.23169672166622 + ], + [ + 66.10315592897331, + 47.42634445659467 + ], + [ + 65.98831324548964, + 47.23169672166622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 47.23169672166622 + ], + [ + 66.10315592897331, + 47.42634445659467 + ], + [ + 65.87347056200596, + 47.42634445659467 + ], + [ + 65.98831324548964, + 47.23169672166622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 47.23169672166622 + ], + [ + 65.87347056200596, + 47.42634445659467 + ], + [ + 65.75862787852228, + 47.23169672166622 + ], + [ + 65.98831324548964, + 47.23169672166622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 47.23169672166622 + ], + [ + 65.75862787852228, + 47.23169672166622 + ], + [ + 65.87347056200596, + 47.037048986737766 + ], + [ + 65.98831324548964, + 47.23169672166622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 47.23169672166622 + ], + [ + 65.87347056200596, + 47.037048986737766 + ], + [ + 66.10315592897331, + 47.037048986737766 + ], + [ + 65.98831324548964, + 47.23169672166622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 47.23169672166622 + ], + [ + 66.10315592897331, + 47.037048986737766 + ], + [ + 66.217998612457, + 47.23169672166622 + ], + [ + 65.98831324548964, + 47.23169672166622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 47.620992191523136 + ], + [ + 66.217998612457, + 47.620992191523136 + ], + [ + 66.10315592897331, + 47.81563992645159 + ], + [ + 65.98831324548964, + 47.620992191523136 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 47.620992191523136 + ], + [ + 66.10315592897331, + 47.81563992645159 + ], + [ + 65.87347056200596, + 47.81563992645159 + ], + [ + 65.98831324548964, + 47.620992191523136 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 47.620992191523136 + ], + [ + 65.87347056200596, + 47.81563992645159 + ], + [ + 65.75862787852228, + 47.620992191523136 + ], + [ + 65.98831324548964, + 47.620992191523136 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 47.620992191523136 + ], + [ + 65.75862787852228, + 47.620992191523136 + ], + [ + 65.87347056200596, + 47.426344456594684 + ], + [ + 65.98831324548964, + 47.620992191523136 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 47.620992191523136 + ], + [ + 65.87347056200596, + 47.426344456594684 + ], + [ + 66.10315592897331, + 47.426344456594684 + ], + [ + 65.98831324548964, + 47.620992191523136 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.98831324548964, + 47.620992191523136 + ], + [ + 66.10315592897331, + 47.426344456594684 + ], + [ + 66.217998612457, + 47.620992191523136 + ], + [ + 65.98831324548964, + 47.620992191523136 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 12.0004566996162 + ], + [ + 66.56252666290803, + 12.0004566996162 + ], + [ + 66.44768397942434, + 12.195104434544653 + ], + [ + 66.33284129594067, + 12.0004566996162 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 12.0004566996162 + ], + [ + 66.44768397942434, + 12.195104434544653 + ], + [ + 66.217998612457, + 12.195104434544653 + ], + [ + 66.33284129594067, + 12.0004566996162 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 12.0004566996162 + ], + [ + 66.217998612457, + 12.195104434544653 + ], + [ + 66.10315592897331, + 12.0004566996162 + ], + [ + 66.33284129594067, + 12.0004566996162 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 12.0004566996162 + ], + [ + 66.10315592897331, + 12.0004566996162 + ], + [ + 66.217998612457, + 11.805808964687746 + ], + [ + 66.33284129594067, + 12.0004566996162 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 12.0004566996162 + ], + [ + 66.217998612457, + 11.805808964687746 + ], + [ + 66.44768397942434, + 11.805808964687746 + ], + [ + 66.33284129594067, + 12.0004566996162 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 12.0004566996162 + ], + [ + 66.44768397942434, + 11.805808964687746 + ], + [ + 66.56252666290803, + 12.0004566996162 + ], + [ + 66.33284129594067, + 12.0004566996162 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 12.389752169473105 + ], + [ + 66.56252666290803, + 12.389752169473105 + ], + [ + 66.44768397942434, + 12.58439990440156 + ], + [ + 66.33284129594067, + 12.389752169473105 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 12.389752169473105 + ], + [ + 66.44768397942434, + 12.58439990440156 + ], + [ + 66.217998612457, + 12.58439990440156 + ], + [ + 66.33284129594067, + 12.389752169473105 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 12.389752169473105 + ], + [ + 66.217998612457, + 12.58439990440156 + ], + [ + 66.10315592897331, + 12.389752169473105 + ], + [ + 66.33284129594067, + 12.389752169473105 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 12.389752169473105 + ], + [ + 66.10315592897331, + 12.389752169473105 + ], + [ + 66.217998612457, + 12.195104434544652 + ], + [ + 66.33284129594067, + 12.389752169473105 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 12.389752169473105 + ], + [ + 66.217998612457, + 12.195104434544652 + ], + [ + 66.44768397942434, + 12.195104434544652 + ], + [ + 66.33284129594067, + 12.389752169473105 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 12.389752169473105 + ], + [ + 66.44768397942434, + 12.195104434544652 + ], + [ + 66.56252666290803, + 12.389752169473105 + ], + [ + 66.33284129594067, + 12.389752169473105 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 12.779047639330013 + ], + [ + 66.56252666290803, + 12.779047639330013 + ], + [ + 66.44768397942434, + 12.973695374258467 + ], + [ + 66.33284129594067, + 12.779047639330013 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 12.779047639330013 + ], + [ + 66.44768397942434, + 12.973695374258467 + ], + [ + 66.217998612457, + 12.973695374258467 + ], + [ + 66.33284129594067, + 12.779047639330013 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 12.779047639330013 + ], + [ + 66.217998612457, + 12.973695374258467 + ], + [ + 66.10315592897331, + 12.779047639330013 + ], + [ + 66.33284129594067, + 12.779047639330013 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 12.779047639330013 + ], + [ + 66.10315592897331, + 12.779047639330013 + ], + [ + 66.217998612457, + 12.58439990440156 + ], + [ + 66.33284129594067, + 12.779047639330013 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 12.779047639330013 + ], + [ + 66.217998612457, + 12.58439990440156 + ], + [ + 66.44768397942434, + 12.58439990440156 + ], + [ + 66.33284129594067, + 12.779047639330013 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 12.779047639330013 + ], + [ + 66.44768397942434, + 12.58439990440156 + ], + [ + 66.56252666290803, + 12.779047639330013 + ], + [ + 66.33284129594067, + 12.779047639330013 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 13.16834310918692 + ], + [ + 66.56252666290803, + 13.16834310918692 + ], + [ + 66.44768397942434, + 13.362990844115373 + ], + [ + 66.33284129594067, + 13.16834310918692 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 13.16834310918692 + ], + [ + 66.44768397942434, + 13.362990844115373 + ], + [ + 66.217998612457, + 13.362990844115373 + ], + [ + 66.33284129594067, + 13.16834310918692 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 13.16834310918692 + ], + [ + 66.217998612457, + 13.362990844115373 + ], + [ + 66.10315592897331, + 13.16834310918692 + ], + [ + 66.33284129594067, + 13.16834310918692 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 13.16834310918692 + ], + [ + 66.10315592897331, + 13.16834310918692 + ], + [ + 66.217998612457, + 12.973695374258465 + ], + [ + 66.33284129594067, + 13.16834310918692 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 13.16834310918692 + ], + [ + 66.217998612457, + 12.973695374258465 + ], + [ + 66.44768397942434, + 12.973695374258465 + ], + [ + 66.33284129594067, + 13.16834310918692 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 13.16834310918692 + ], + [ + 66.44768397942434, + 12.973695374258465 + ], + [ + 66.56252666290803, + 13.16834310918692 + ], + [ + 66.33284129594067, + 13.16834310918692 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 13.557638579043825 + ], + [ + 66.56252666290803, + 13.557638579043825 + ], + [ + 66.44768397942434, + 13.752286313972279 + ], + [ + 66.33284129594067, + 13.557638579043825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 13.557638579043825 + ], + [ + 66.44768397942434, + 13.752286313972279 + ], + [ + 66.217998612457, + 13.752286313972279 + ], + [ + 66.33284129594067, + 13.557638579043825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 13.557638579043825 + ], + [ + 66.217998612457, + 13.752286313972279 + ], + [ + 66.10315592897331, + 13.557638579043825 + ], + [ + 66.33284129594067, + 13.557638579043825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 13.557638579043825 + ], + [ + 66.10315592897331, + 13.557638579043825 + ], + [ + 66.217998612457, + 13.362990844115371 + ], + [ + 66.33284129594067, + 13.557638579043825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 13.557638579043825 + ], + [ + 66.217998612457, + 13.362990844115371 + ], + [ + 66.44768397942434, + 13.362990844115371 + ], + [ + 66.33284129594067, + 13.557638579043825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 13.557638579043825 + ], + [ + 66.44768397942434, + 13.362990844115371 + ], + [ + 66.56252666290803, + 13.557638579043825 + ], + [ + 66.33284129594067, + 13.557638579043825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 13.946934048900731 + ], + [ + 66.56252666290803, + 13.946934048900731 + ], + [ + 66.44768397942434, + 14.141581783829185 + ], + [ + 66.33284129594067, + 13.946934048900731 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 13.946934048900731 + ], + [ + 66.44768397942434, + 14.141581783829185 + ], + [ + 66.217998612457, + 14.141581783829185 + ], + [ + 66.33284129594067, + 13.946934048900731 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 13.946934048900731 + ], + [ + 66.217998612457, + 14.141581783829185 + ], + [ + 66.10315592897331, + 13.946934048900731 + ], + [ + 66.33284129594067, + 13.946934048900731 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 13.946934048900731 + ], + [ + 66.10315592897331, + 13.946934048900731 + ], + [ + 66.217998612457, + 13.752286313972277 + ], + [ + 66.33284129594067, + 13.946934048900731 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 13.946934048900731 + ], + [ + 66.217998612457, + 13.752286313972277 + ], + [ + 66.44768397942434, + 13.752286313972277 + ], + [ + 66.33284129594067, + 13.946934048900731 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 13.946934048900731 + ], + [ + 66.44768397942434, + 13.752286313972277 + ], + [ + 66.56252666290803, + 13.946934048900731 + ], + [ + 66.33284129594067, + 13.946934048900731 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 14.336229518757637 + ], + [ + 66.56252666290803, + 14.336229518757637 + ], + [ + 66.44768397942434, + 14.530877253686091 + ], + [ + 66.33284129594067, + 14.336229518757637 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 14.336229518757637 + ], + [ + 66.44768397942434, + 14.530877253686091 + ], + [ + 66.217998612457, + 14.530877253686091 + ], + [ + 66.33284129594067, + 14.336229518757637 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 14.336229518757637 + ], + [ + 66.217998612457, + 14.530877253686091 + ], + [ + 66.10315592897331, + 14.336229518757637 + ], + [ + 66.33284129594067, + 14.336229518757637 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 14.336229518757637 + ], + [ + 66.10315592897331, + 14.336229518757637 + ], + [ + 66.217998612457, + 14.141581783829183 + ], + [ + 66.33284129594067, + 14.336229518757637 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 14.336229518757637 + ], + [ + 66.217998612457, + 14.141581783829183 + ], + [ + 66.44768397942434, + 14.141581783829183 + ], + [ + 66.33284129594067, + 14.336229518757637 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 14.336229518757637 + ], + [ + 66.44768397942434, + 14.141581783829183 + ], + [ + 66.56252666290803, + 14.336229518757637 + ], + [ + 66.33284129594067, + 14.336229518757637 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 14.725524988614545 + ], + [ + 66.56252666290803, + 14.725524988614545 + ], + [ + 66.44768397942434, + 14.920172723542999 + ], + [ + 66.33284129594067, + 14.725524988614545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 14.725524988614545 + ], + [ + 66.44768397942434, + 14.920172723542999 + ], + [ + 66.217998612457, + 14.920172723542999 + ], + [ + 66.33284129594067, + 14.725524988614545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 14.725524988614545 + ], + [ + 66.217998612457, + 14.920172723542999 + ], + [ + 66.10315592897331, + 14.725524988614545 + ], + [ + 66.33284129594067, + 14.725524988614545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 14.725524988614545 + ], + [ + 66.10315592897331, + 14.725524988614545 + ], + [ + 66.217998612457, + 14.530877253686091 + ], + [ + 66.33284129594067, + 14.725524988614545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 14.725524988614545 + ], + [ + 66.217998612457, + 14.530877253686091 + ], + [ + 66.44768397942434, + 14.530877253686091 + ], + [ + 66.33284129594067, + 14.725524988614545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 14.725524988614545 + ], + [ + 66.44768397942434, + 14.530877253686091 + ], + [ + 66.56252666290803, + 14.725524988614545 + ], + [ + 66.33284129594067, + 14.725524988614545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 15.114820458471451 + ], + [ + 66.56252666290803, + 15.114820458471451 + ], + [ + 66.44768397942434, + 15.309468193399905 + ], + [ + 66.33284129594067, + 15.114820458471451 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 15.114820458471451 + ], + [ + 66.44768397942434, + 15.309468193399905 + ], + [ + 66.217998612457, + 15.309468193399905 + ], + [ + 66.33284129594067, + 15.114820458471451 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 15.114820458471451 + ], + [ + 66.217998612457, + 15.309468193399905 + ], + [ + 66.10315592897331, + 15.114820458471451 + ], + [ + 66.33284129594067, + 15.114820458471451 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 15.114820458471451 + ], + [ + 66.10315592897331, + 15.114820458471451 + ], + [ + 66.217998612457, + 14.920172723542997 + ], + [ + 66.33284129594067, + 15.114820458471451 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 15.114820458471451 + ], + [ + 66.217998612457, + 14.920172723542997 + ], + [ + 66.44768397942434, + 14.920172723542997 + ], + [ + 66.33284129594067, + 15.114820458471451 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 15.114820458471451 + ], + [ + 66.44768397942434, + 14.920172723542997 + ], + [ + 66.56252666290803, + 15.114820458471451 + ], + [ + 66.33284129594067, + 15.114820458471451 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 15.504115928328357 + ], + [ + 66.56252666290803, + 15.504115928328357 + ], + [ + 66.44768397942434, + 15.69876366325681 + ], + [ + 66.33284129594067, + 15.504115928328357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 15.504115928328357 + ], + [ + 66.44768397942434, + 15.69876366325681 + ], + [ + 66.217998612457, + 15.69876366325681 + ], + [ + 66.33284129594067, + 15.504115928328357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 15.504115928328357 + ], + [ + 66.217998612457, + 15.69876366325681 + ], + [ + 66.10315592897331, + 15.504115928328357 + ], + [ + 66.33284129594067, + 15.504115928328357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 15.504115928328357 + ], + [ + 66.10315592897331, + 15.504115928328357 + ], + [ + 66.217998612457, + 15.309468193399903 + ], + [ + 66.33284129594067, + 15.504115928328357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 15.504115928328357 + ], + [ + 66.217998612457, + 15.309468193399903 + ], + [ + 66.44768397942434, + 15.309468193399903 + ], + [ + 66.33284129594067, + 15.504115928328357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 15.504115928328357 + ], + [ + 66.44768397942434, + 15.309468193399903 + ], + [ + 66.56252666290803, + 15.504115928328357 + ], + [ + 66.33284129594067, + 15.504115928328357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 15.893411398185265 + ], + [ + 66.56252666290803, + 15.893411398185265 + ], + [ + 66.44768397942434, + 16.088059133113717 + ], + [ + 66.33284129594067, + 15.893411398185265 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 15.893411398185265 + ], + [ + 66.44768397942434, + 16.088059133113717 + ], + [ + 66.217998612457, + 16.088059133113717 + ], + [ + 66.33284129594067, + 15.893411398185265 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 15.893411398185265 + ], + [ + 66.217998612457, + 16.088059133113717 + ], + [ + 66.10315592897331, + 15.893411398185265 + ], + [ + 66.33284129594067, + 15.893411398185265 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 15.893411398185265 + ], + [ + 66.10315592897331, + 15.893411398185265 + ], + [ + 66.217998612457, + 15.69876366325681 + ], + [ + 66.33284129594067, + 15.893411398185265 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 15.893411398185265 + ], + [ + 66.217998612457, + 15.69876366325681 + ], + [ + 66.44768397942434, + 15.69876366325681 + ], + [ + 66.33284129594067, + 15.893411398185265 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 15.893411398185265 + ], + [ + 66.44768397942434, + 15.69876366325681 + ], + [ + 66.56252666290803, + 15.893411398185265 + ], + [ + 66.33284129594067, + 15.893411398185265 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 16.28270686804217 + ], + [ + 66.56252666290803, + 16.28270686804217 + ], + [ + 66.44768397942434, + 16.47735460297062 + ], + [ + 66.33284129594067, + 16.28270686804217 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 16.28270686804217 + ], + [ + 66.44768397942434, + 16.47735460297062 + ], + [ + 66.217998612457, + 16.47735460297062 + ], + [ + 66.33284129594067, + 16.28270686804217 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 16.28270686804217 + ], + [ + 66.217998612457, + 16.47735460297062 + ], + [ + 66.10315592897331, + 16.28270686804217 + ], + [ + 66.33284129594067, + 16.28270686804217 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 16.28270686804217 + ], + [ + 66.10315592897331, + 16.28270686804217 + ], + [ + 66.217998612457, + 16.088059133113717 + ], + [ + 66.33284129594067, + 16.28270686804217 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 16.28270686804217 + ], + [ + 66.217998612457, + 16.088059133113717 + ], + [ + 66.44768397942434, + 16.088059133113717 + ], + [ + 66.33284129594067, + 16.28270686804217 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 16.28270686804217 + ], + [ + 66.44768397942434, + 16.088059133113717 + ], + [ + 66.56252666290803, + 16.28270686804217 + ], + [ + 66.33284129594067, + 16.28270686804217 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 16.672002337899077 + ], + [ + 66.56252666290803, + 16.672002337899077 + ], + [ + 66.44768397942434, + 16.86665007282753 + ], + [ + 66.33284129594067, + 16.672002337899077 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 16.672002337899077 + ], + [ + 66.44768397942434, + 16.86665007282753 + ], + [ + 66.217998612457, + 16.86665007282753 + ], + [ + 66.33284129594067, + 16.672002337899077 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 16.672002337899077 + ], + [ + 66.217998612457, + 16.86665007282753 + ], + [ + 66.10315592897331, + 16.672002337899077 + ], + [ + 66.33284129594067, + 16.672002337899077 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 16.672002337899077 + ], + [ + 66.10315592897331, + 16.672002337899077 + ], + [ + 66.217998612457, + 16.477354602970625 + ], + [ + 66.33284129594067, + 16.672002337899077 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 16.672002337899077 + ], + [ + 66.217998612457, + 16.477354602970625 + ], + [ + 66.44768397942434, + 16.477354602970625 + ], + [ + 66.33284129594067, + 16.672002337899077 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 16.672002337899077 + ], + [ + 66.44768397942434, + 16.477354602970625 + ], + [ + 66.56252666290803, + 16.672002337899077 + ], + [ + 66.33284129594067, + 16.672002337899077 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 17.06129780775598 + ], + [ + 66.56252666290803, + 17.06129780775598 + ], + [ + 66.44768397942434, + 17.255945542684433 + ], + [ + 66.33284129594067, + 17.06129780775598 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 17.06129780775598 + ], + [ + 66.44768397942434, + 17.255945542684433 + ], + [ + 66.217998612457, + 17.255945542684433 + ], + [ + 66.33284129594067, + 17.06129780775598 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 17.06129780775598 + ], + [ + 66.217998612457, + 17.255945542684433 + ], + [ + 66.10315592897331, + 17.06129780775598 + ], + [ + 66.33284129594067, + 17.06129780775598 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 17.06129780775598 + ], + [ + 66.10315592897331, + 17.06129780775598 + ], + [ + 66.217998612457, + 16.86665007282753 + ], + [ + 66.33284129594067, + 17.06129780775598 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 17.06129780775598 + ], + [ + 66.217998612457, + 16.86665007282753 + ], + [ + 66.44768397942434, + 16.86665007282753 + ], + [ + 66.33284129594067, + 17.06129780775598 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 17.06129780775598 + ], + [ + 66.44768397942434, + 16.86665007282753 + ], + [ + 66.56252666290803, + 17.06129780775598 + ], + [ + 66.33284129594067, + 17.06129780775598 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 17.45059327761289 + ], + [ + 66.56252666290803, + 17.45059327761289 + ], + [ + 66.44768397942434, + 17.64524101254134 + ], + [ + 66.33284129594067, + 17.45059327761289 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 17.45059327761289 + ], + [ + 66.44768397942434, + 17.64524101254134 + ], + [ + 66.217998612457, + 17.64524101254134 + ], + [ + 66.33284129594067, + 17.45059327761289 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 17.45059327761289 + ], + [ + 66.217998612457, + 17.64524101254134 + ], + [ + 66.10315592897331, + 17.45059327761289 + ], + [ + 66.33284129594067, + 17.45059327761289 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 17.45059327761289 + ], + [ + 66.10315592897331, + 17.45059327761289 + ], + [ + 66.217998612457, + 17.255945542684437 + ], + [ + 66.33284129594067, + 17.45059327761289 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 17.45059327761289 + ], + [ + 66.217998612457, + 17.255945542684437 + ], + [ + 66.44768397942434, + 17.255945542684437 + ], + [ + 66.33284129594067, + 17.45059327761289 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 17.45059327761289 + ], + [ + 66.44768397942434, + 17.255945542684437 + ], + [ + 66.56252666290803, + 17.45059327761289 + ], + [ + 66.33284129594067, + 17.45059327761289 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 17.839888747469793 + ], + [ + 66.56252666290803, + 17.839888747469793 + ], + [ + 66.44768397942434, + 18.034536482398245 + ], + [ + 66.33284129594067, + 17.839888747469793 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 17.839888747469793 + ], + [ + 66.44768397942434, + 18.034536482398245 + ], + [ + 66.217998612457, + 18.034536482398245 + ], + [ + 66.33284129594067, + 17.839888747469793 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 17.839888747469793 + ], + [ + 66.217998612457, + 18.034536482398245 + ], + [ + 66.10315592897331, + 17.839888747469793 + ], + [ + 66.33284129594067, + 17.839888747469793 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 17.839888747469793 + ], + [ + 66.10315592897331, + 17.839888747469793 + ], + [ + 66.217998612457, + 17.64524101254134 + ], + [ + 66.33284129594067, + 17.839888747469793 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 17.839888747469793 + ], + [ + 66.217998612457, + 17.64524101254134 + ], + [ + 66.44768397942434, + 17.64524101254134 + ], + [ + 66.33284129594067, + 17.839888747469793 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 17.839888747469793 + ], + [ + 66.44768397942434, + 17.64524101254134 + ], + [ + 66.56252666290803, + 17.839888747469793 + ], + [ + 66.33284129594067, + 17.839888747469793 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 18.2291842173267 + ], + [ + 66.56252666290803, + 18.2291842173267 + ], + [ + 66.44768397942434, + 18.423831952255153 + ], + [ + 66.33284129594067, + 18.2291842173267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 18.2291842173267 + ], + [ + 66.44768397942434, + 18.423831952255153 + ], + [ + 66.217998612457, + 18.423831952255153 + ], + [ + 66.33284129594067, + 18.2291842173267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 18.2291842173267 + ], + [ + 66.217998612457, + 18.423831952255153 + ], + [ + 66.10315592897331, + 18.2291842173267 + ], + [ + 66.33284129594067, + 18.2291842173267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 18.2291842173267 + ], + [ + 66.10315592897331, + 18.2291842173267 + ], + [ + 66.217998612457, + 18.03453648239825 + ], + [ + 66.33284129594067, + 18.2291842173267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 18.2291842173267 + ], + [ + 66.217998612457, + 18.03453648239825 + ], + [ + 66.44768397942434, + 18.03453648239825 + ], + [ + 66.33284129594067, + 18.2291842173267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 18.2291842173267 + ], + [ + 66.44768397942434, + 18.03453648239825 + ], + [ + 66.56252666290803, + 18.2291842173267 + ], + [ + 66.33284129594067, + 18.2291842173267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 18.61847968718361 + ], + [ + 66.56252666290803, + 18.61847968718361 + ], + [ + 66.44768397942434, + 18.81312742211206 + ], + [ + 66.33284129594067, + 18.61847968718361 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 18.61847968718361 + ], + [ + 66.44768397942434, + 18.81312742211206 + ], + [ + 66.217998612457, + 18.81312742211206 + ], + [ + 66.33284129594067, + 18.61847968718361 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 18.61847968718361 + ], + [ + 66.217998612457, + 18.81312742211206 + ], + [ + 66.10315592897331, + 18.61847968718361 + ], + [ + 66.33284129594067, + 18.61847968718361 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 18.61847968718361 + ], + [ + 66.10315592897331, + 18.61847968718361 + ], + [ + 66.217998612457, + 18.423831952255156 + ], + [ + 66.33284129594067, + 18.61847968718361 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 18.61847968718361 + ], + [ + 66.217998612457, + 18.423831952255156 + ], + [ + 66.44768397942434, + 18.423831952255156 + ], + [ + 66.33284129594067, + 18.61847968718361 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 18.61847968718361 + ], + [ + 66.44768397942434, + 18.423831952255156 + ], + [ + 66.56252666290803, + 18.61847968718361 + ], + [ + 66.33284129594067, + 18.61847968718361 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 19.007775157040513 + ], + [ + 66.56252666290803, + 19.007775157040513 + ], + [ + 66.44768397942434, + 19.202422891968965 + ], + [ + 66.33284129594067, + 19.007775157040513 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 19.007775157040513 + ], + [ + 66.44768397942434, + 19.202422891968965 + ], + [ + 66.217998612457, + 19.202422891968965 + ], + [ + 66.33284129594067, + 19.007775157040513 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 19.007775157040513 + ], + [ + 66.217998612457, + 19.202422891968965 + ], + [ + 66.10315592897331, + 19.007775157040513 + ], + [ + 66.33284129594067, + 19.007775157040513 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 19.007775157040513 + ], + [ + 66.10315592897331, + 19.007775157040513 + ], + [ + 66.217998612457, + 18.81312742211206 + ], + [ + 66.33284129594067, + 19.007775157040513 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 19.007775157040513 + ], + [ + 66.217998612457, + 18.81312742211206 + ], + [ + 66.44768397942434, + 18.81312742211206 + ], + [ + 66.33284129594067, + 19.007775157040513 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 19.007775157040513 + ], + [ + 66.44768397942434, + 18.81312742211206 + ], + [ + 66.56252666290803, + 19.007775157040513 + ], + [ + 66.33284129594067, + 19.007775157040513 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 19.39707062689742 + ], + [ + 66.56252666290803, + 19.39707062689742 + ], + [ + 66.44768397942434, + 19.591718361825873 + ], + [ + 66.33284129594067, + 19.39707062689742 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 19.39707062689742 + ], + [ + 66.44768397942434, + 19.591718361825873 + ], + [ + 66.217998612457, + 19.591718361825873 + ], + [ + 66.33284129594067, + 19.39707062689742 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 19.39707062689742 + ], + [ + 66.217998612457, + 19.591718361825873 + ], + [ + 66.10315592897331, + 19.39707062689742 + ], + [ + 66.33284129594067, + 19.39707062689742 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 19.39707062689742 + ], + [ + 66.10315592897331, + 19.39707062689742 + ], + [ + 66.217998612457, + 19.20242289196897 + ], + [ + 66.33284129594067, + 19.39707062689742 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 19.39707062689742 + ], + [ + 66.217998612457, + 19.20242289196897 + ], + [ + 66.44768397942434, + 19.20242289196897 + ], + [ + 66.33284129594067, + 19.39707062689742 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 19.39707062689742 + ], + [ + 66.44768397942434, + 19.20242289196897 + ], + [ + 66.56252666290803, + 19.39707062689742 + ], + [ + 66.33284129594067, + 19.39707062689742 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 19.78636609675433 + ], + [ + 66.56252666290803, + 19.78636609675433 + ], + [ + 66.44768397942434, + 19.98101383168278 + ], + [ + 66.33284129594067, + 19.78636609675433 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 19.78636609675433 + ], + [ + 66.44768397942434, + 19.98101383168278 + ], + [ + 66.217998612457, + 19.98101383168278 + ], + [ + 66.33284129594067, + 19.78636609675433 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 19.78636609675433 + ], + [ + 66.217998612457, + 19.98101383168278 + ], + [ + 66.10315592897331, + 19.78636609675433 + ], + [ + 66.33284129594067, + 19.78636609675433 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 19.78636609675433 + ], + [ + 66.10315592897331, + 19.78636609675433 + ], + [ + 66.217998612457, + 19.591718361825876 + ], + [ + 66.33284129594067, + 19.78636609675433 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 19.78636609675433 + ], + [ + 66.217998612457, + 19.591718361825876 + ], + [ + 66.44768397942434, + 19.591718361825876 + ], + [ + 66.33284129594067, + 19.78636609675433 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 19.78636609675433 + ], + [ + 66.44768397942434, + 19.591718361825876 + ], + [ + 66.56252666290803, + 19.78636609675433 + ], + [ + 66.33284129594067, + 19.78636609675433 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 20.175661566611232 + ], + [ + 66.56252666290803, + 20.175661566611232 + ], + [ + 66.44768397942434, + 20.370309301539685 + ], + [ + 66.33284129594067, + 20.175661566611232 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 20.175661566611232 + ], + [ + 66.44768397942434, + 20.370309301539685 + ], + [ + 66.217998612457, + 20.370309301539685 + ], + [ + 66.33284129594067, + 20.175661566611232 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 20.175661566611232 + ], + [ + 66.217998612457, + 20.370309301539685 + ], + [ + 66.10315592897331, + 20.175661566611232 + ], + [ + 66.33284129594067, + 20.175661566611232 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 20.175661566611232 + ], + [ + 66.10315592897331, + 20.175661566611232 + ], + [ + 66.217998612457, + 19.98101383168278 + ], + [ + 66.33284129594067, + 20.175661566611232 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 20.175661566611232 + ], + [ + 66.217998612457, + 19.98101383168278 + ], + [ + 66.44768397942434, + 19.98101383168278 + ], + [ + 66.33284129594067, + 20.175661566611232 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 20.175661566611232 + ], + [ + 66.44768397942434, + 19.98101383168278 + ], + [ + 66.56252666290803, + 20.175661566611232 + ], + [ + 66.33284129594067, + 20.175661566611232 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 20.564957036468137 + ], + [ + 66.56252666290803, + 20.564957036468137 + ], + [ + 66.44768397942434, + 20.75960477139659 + ], + [ + 66.33284129594067, + 20.564957036468137 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 20.564957036468137 + ], + [ + 66.44768397942434, + 20.75960477139659 + ], + [ + 66.217998612457, + 20.75960477139659 + ], + [ + 66.33284129594067, + 20.564957036468137 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 20.564957036468137 + ], + [ + 66.217998612457, + 20.75960477139659 + ], + [ + 66.10315592897331, + 20.564957036468137 + ], + [ + 66.33284129594067, + 20.564957036468137 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 20.564957036468137 + ], + [ + 66.10315592897331, + 20.564957036468137 + ], + [ + 66.217998612457, + 20.370309301539685 + ], + [ + 66.33284129594067, + 20.564957036468137 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 20.564957036468137 + ], + [ + 66.217998612457, + 20.370309301539685 + ], + [ + 66.44768397942434, + 20.370309301539685 + ], + [ + 66.33284129594067, + 20.564957036468137 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 20.564957036468137 + ], + [ + 66.44768397942434, + 20.370309301539685 + ], + [ + 66.56252666290803, + 20.564957036468137 + ], + [ + 66.33284129594067, + 20.564957036468137 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 20.954252506325044 + ], + [ + 66.56252666290803, + 20.954252506325044 + ], + [ + 66.44768397942434, + 21.148900241253497 + ], + [ + 66.33284129594067, + 20.954252506325044 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 20.954252506325044 + ], + [ + 66.44768397942434, + 21.148900241253497 + ], + [ + 66.217998612457, + 21.148900241253497 + ], + [ + 66.33284129594067, + 20.954252506325044 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 20.954252506325044 + ], + [ + 66.217998612457, + 21.148900241253497 + ], + [ + 66.10315592897331, + 20.954252506325044 + ], + [ + 66.33284129594067, + 20.954252506325044 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 20.954252506325044 + ], + [ + 66.10315592897331, + 20.954252506325044 + ], + [ + 66.217998612457, + 20.759604771396592 + ], + [ + 66.33284129594067, + 20.954252506325044 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 20.954252506325044 + ], + [ + 66.217998612457, + 20.759604771396592 + ], + [ + 66.44768397942434, + 20.759604771396592 + ], + [ + 66.33284129594067, + 20.954252506325044 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 20.954252506325044 + ], + [ + 66.44768397942434, + 20.759604771396592 + ], + [ + 66.56252666290803, + 20.954252506325044 + ], + [ + 66.33284129594067, + 20.954252506325044 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 21.343547976181952 + ], + [ + 66.56252666290803, + 21.343547976181952 + ], + [ + 66.44768397942434, + 21.538195711110404 + ], + [ + 66.33284129594067, + 21.343547976181952 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 21.343547976181952 + ], + [ + 66.44768397942434, + 21.538195711110404 + ], + [ + 66.217998612457, + 21.538195711110404 + ], + [ + 66.33284129594067, + 21.343547976181952 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 21.343547976181952 + ], + [ + 66.217998612457, + 21.538195711110404 + ], + [ + 66.10315592897331, + 21.343547976181952 + ], + [ + 66.33284129594067, + 21.343547976181952 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 21.343547976181952 + ], + [ + 66.10315592897331, + 21.343547976181952 + ], + [ + 66.217998612457, + 21.1489002412535 + ], + [ + 66.33284129594067, + 21.343547976181952 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 21.343547976181952 + ], + [ + 66.217998612457, + 21.1489002412535 + ], + [ + 66.44768397942434, + 21.1489002412535 + ], + [ + 66.33284129594067, + 21.343547976181952 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 21.343547976181952 + ], + [ + 66.44768397942434, + 21.1489002412535 + ], + [ + 66.56252666290803, + 21.343547976181952 + ], + [ + 66.33284129594067, + 21.343547976181952 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 21.732843446038856 + ], + [ + 66.56252666290803, + 21.732843446038856 + ], + [ + 66.44768397942434, + 21.92749118096731 + ], + [ + 66.33284129594067, + 21.732843446038856 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 21.732843446038856 + ], + [ + 66.44768397942434, + 21.92749118096731 + ], + [ + 66.217998612457, + 21.92749118096731 + ], + [ + 66.33284129594067, + 21.732843446038856 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 21.732843446038856 + ], + [ + 66.217998612457, + 21.92749118096731 + ], + [ + 66.10315592897331, + 21.732843446038856 + ], + [ + 66.33284129594067, + 21.732843446038856 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 21.732843446038856 + ], + [ + 66.10315592897331, + 21.732843446038856 + ], + [ + 66.217998612457, + 21.538195711110404 + ], + [ + 66.33284129594067, + 21.732843446038856 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 21.732843446038856 + ], + [ + 66.217998612457, + 21.538195711110404 + ], + [ + 66.44768397942434, + 21.538195711110404 + ], + [ + 66.33284129594067, + 21.732843446038856 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 21.732843446038856 + ], + [ + 66.44768397942434, + 21.538195711110404 + ], + [ + 66.56252666290803, + 21.732843446038856 + ], + [ + 66.33284129594067, + 21.732843446038856 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 22.122138915895764 + ], + [ + 66.56252666290803, + 22.122138915895764 + ], + [ + 66.44768397942434, + 22.316786650824216 + ], + [ + 66.33284129594067, + 22.122138915895764 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 22.122138915895764 + ], + [ + 66.44768397942434, + 22.316786650824216 + ], + [ + 66.217998612457, + 22.316786650824216 + ], + [ + 66.33284129594067, + 22.122138915895764 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 22.122138915895764 + ], + [ + 66.217998612457, + 22.316786650824216 + ], + [ + 66.10315592897331, + 22.122138915895764 + ], + [ + 66.33284129594067, + 22.122138915895764 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 22.122138915895764 + ], + [ + 66.10315592897331, + 22.122138915895764 + ], + [ + 66.217998612457, + 21.927491180967312 + ], + [ + 66.33284129594067, + 22.122138915895764 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 22.122138915895764 + ], + [ + 66.217998612457, + 21.927491180967312 + ], + [ + 66.44768397942434, + 21.927491180967312 + ], + [ + 66.33284129594067, + 22.122138915895764 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 22.122138915895764 + ], + [ + 66.44768397942434, + 21.927491180967312 + ], + [ + 66.56252666290803, + 22.122138915895764 + ], + [ + 66.33284129594067, + 22.122138915895764 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 22.511434385752672 + ], + [ + 66.56252666290803, + 22.511434385752672 + ], + [ + 66.44768397942434, + 22.706082120681124 + ], + [ + 66.33284129594067, + 22.511434385752672 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 22.511434385752672 + ], + [ + 66.44768397942434, + 22.706082120681124 + ], + [ + 66.217998612457, + 22.706082120681124 + ], + [ + 66.33284129594067, + 22.511434385752672 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 22.511434385752672 + ], + [ + 66.217998612457, + 22.706082120681124 + ], + [ + 66.10315592897331, + 22.511434385752672 + ], + [ + 66.33284129594067, + 22.511434385752672 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 22.511434385752672 + ], + [ + 66.10315592897331, + 22.511434385752672 + ], + [ + 66.217998612457, + 22.31678665082422 + ], + [ + 66.33284129594067, + 22.511434385752672 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 22.511434385752672 + ], + [ + 66.217998612457, + 22.31678665082422 + ], + [ + 66.44768397942434, + 22.31678665082422 + ], + [ + 66.33284129594067, + 22.511434385752672 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 22.511434385752672 + ], + [ + 66.44768397942434, + 22.31678665082422 + ], + [ + 66.56252666290803, + 22.511434385752672 + ], + [ + 66.33284129594067, + 22.511434385752672 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 22.900729855609576 + ], + [ + 66.56252666290803, + 22.900729855609576 + ], + [ + 66.44768397942434, + 23.09537759053803 + ], + [ + 66.33284129594067, + 22.900729855609576 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 22.900729855609576 + ], + [ + 66.44768397942434, + 23.09537759053803 + ], + [ + 66.217998612457, + 23.09537759053803 + ], + [ + 66.33284129594067, + 22.900729855609576 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 22.900729855609576 + ], + [ + 66.217998612457, + 23.09537759053803 + ], + [ + 66.10315592897331, + 22.900729855609576 + ], + [ + 66.33284129594067, + 22.900729855609576 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 22.900729855609576 + ], + [ + 66.10315592897331, + 22.900729855609576 + ], + [ + 66.217998612457, + 22.706082120681124 + ], + [ + 66.33284129594067, + 22.900729855609576 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 22.900729855609576 + ], + [ + 66.217998612457, + 22.706082120681124 + ], + [ + 66.44768397942434, + 22.706082120681124 + ], + [ + 66.33284129594067, + 22.900729855609576 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 22.900729855609576 + ], + [ + 66.44768397942434, + 22.706082120681124 + ], + [ + 66.56252666290803, + 22.900729855609576 + ], + [ + 66.33284129594067, + 22.900729855609576 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 23.290025325466484 + ], + [ + 66.56252666290803, + 23.290025325466484 + ], + [ + 66.44768397942434, + 23.484673060394936 + ], + [ + 66.33284129594067, + 23.290025325466484 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 23.290025325466484 + ], + [ + 66.44768397942434, + 23.484673060394936 + ], + [ + 66.217998612457, + 23.484673060394936 + ], + [ + 66.33284129594067, + 23.290025325466484 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 23.290025325466484 + ], + [ + 66.217998612457, + 23.484673060394936 + ], + [ + 66.10315592897331, + 23.290025325466484 + ], + [ + 66.33284129594067, + 23.290025325466484 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 23.290025325466484 + ], + [ + 66.10315592897331, + 23.290025325466484 + ], + [ + 66.217998612457, + 23.095377590538032 + ], + [ + 66.33284129594067, + 23.290025325466484 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 23.290025325466484 + ], + [ + 66.217998612457, + 23.095377590538032 + ], + [ + 66.44768397942434, + 23.095377590538032 + ], + [ + 66.33284129594067, + 23.290025325466484 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 23.290025325466484 + ], + [ + 66.44768397942434, + 23.095377590538032 + ], + [ + 66.56252666290803, + 23.290025325466484 + ], + [ + 66.33284129594067, + 23.290025325466484 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 23.67932079532339 + ], + [ + 66.56252666290803, + 23.67932079532339 + ], + [ + 66.44768397942434, + 23.873968530251844 + ], + [ + 66.33284129594067, + 23.67932079532339 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 23.67932079532339 + ], + [ + 66.44768397942434, + 23.873968530251844 + ], + [ + 66.217998612457, + 23.873968530251844 + ], + [ + 66.33284129594067, + 23.67932079532339 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 23.67932079532339 + ], + [ + 66.217998612457, + 23.873968530251844 + ], + [ + 66.10315592897331, + 23.67932079532339 + ], + [ + 66.33284129594067, + 23.67932079532339 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 23.67932079532339 + ], + [ + 66.10315592897331, + 23.67932079532339 + ], + [ + 66.217998612457, + 23.48467306039494 + ], + [ + 66.33284129594067, + 23.67932079532339 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 23.67932079532339 + ], + [ + 66.217998612457, + 23.48467306039494 + ], + [ + 66.44768397942434, + 23.48467306039494 + ], + [ + 66.33284129594067, + 23.67932079532339 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 23.67932079532339 + ], + [ + 66.44768397942434, + 23.48467306039494 + ], + [ + 66.56252666290803, + 23.67932079532339 + ], + [ + 66.33284129594067, + 23.67932079532339 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 24.068616265180296 + ], + [ + 66.56252666290803, + 24.068616265180296 + ], + [ + 66.44768397942434, + 24.263264000108748 + ], + [ + 66.33284129594067, + 24.068616265180296 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 24.068616265180296 + ], + [ + 66.44768397942434, + 24.263264000108748 + ], + [ + 66.217998612457, + 24.263264000108748 + ], + [ + 66.33284129594067, + 24.068616265180296 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 24.068616265180296 + ], + [ + 66.217998612457, + 24.263264000108748 + ], + [ + 66.10315592897331, + 24.068616265180296 + ], + [ + 66.33284129594067, + 24.068616265180296 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 24.068616265180296 + ], + [ + 66.10315592897331, + 24.068616265180296 + ], + [ + 66.217998612457, + 23.873968530251844 + ], + [ + 66.33284129594067, + 24.068616265180296 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 24.068616265180296 + ], + [ + 66.217998612457, + 23.873968530251844 + ], + [ + 66.44768397942434, + 23.873968530251844 + ], + [ + 66.33284129594067, + 24.068616265180296 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 24.068616265180296 + ], + [ + 66.44768397942434, + 23.873968530251844 + ], + [ + 66.56252666290803, + 24.068616265180296 + ], + [ + 66.33284129594067, + 24.068616265180296 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 24.4579117350372 + ], + [ + 66.56252666290803, + 24.4579117350372 + ], + [ + 66.44768397942434, + 24.652559469965652 + ], + [ + 66.33284129594067, + 24.4579117350372 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 24.4579117350372 + ], + [ + 66.44768397942434, + 24.652559469965652 + ], + [ + 66.217998612457, + 24.652559469965652 + ], + [ + 66.33284129594067, + 24.4579117350372 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 24.4579117350372 + ], + [ + 66.217998612457, + 24.652559469965652 + ], + [ + 66.10315592897331, + 24.4579117350372 + ], + [ + 66.33284129594067, + 24.4579117350372 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 24.4579117350372 + ], + [ + 66.10315592897331, + 24.4579117350372 + ], + [ + 66.217998612457, + 24.263264000108748 + ], + [ + 66.33284129594067, + 24.4579117350372 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 24.4579117350372 + ], + [ + 66.217998612457, + 24.263264000108748 + ], + [ + 66.44768397942434, + 24.263264000108748 + ], + [ + 66.33284129594067, + 24.4579117350372 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 24.4579117350372 + ], + [ + 66.44768397942434, + 24.263264000108748 + ], + [ + 66.56252666290803, + 24.4579117350372 + ], + [ + 66.33284129594067, + 24.4579117350372 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 24.847207204894108 + ], + [ + 66.56252666290803, + 24.847207204894108 + ], + [ + 66.44768397942434, + 25.04185493982256 + ], + [ + 66.33284129594067, + 24.847207204894108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 24.847207204894108 + ], + [ + 66.44768397942434, + 25.04185493982256 + ], + [ + 66.217998612457, + 25.04185493982256 + ], + [ + 66.33284129594067, + 24.847207204894108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 24.847207204894108 + ], + [ + 66.217998612457, + 25.04185493982256 + ], + [ + 66.10315592897331, + 24.847207204894108 + ], + [ + 66.33284129594067, + 24.847207204894108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 24.847207204894108 + ], + [ + 66.10315592897331, + 24.847207204894108 + ], + [ + 66.217998612457, + 24.652559469965656 + ], + [ + 66.33284129594067, + 24.847207204894108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 24.847207204894108 + ], + [ + 66.217998612457, + 24.652559469965656 + ], + [ + 66.44768397942434, + 24.652559469965656 + ], + [ + 66.33284129594067, + 24.847207204894108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 24.847207204894108 + ], + [ + 66.44768397942434, + 24.652559469965656 + ], + [ + 66.56252666290803, + 24.847207204894108 + ], + [ + 66.33284129594067, + 24.847207204894108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 25.236502674751016 + ], + [ + 66.56252666290803, + 25.236502674751016 + ], + [ + 66.44768397942434, + 25.431150409679468 + ], + [ + 66.33284129594067, + 25.236502674751016 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 25.236502674751016 + ], + [ + 66.44768397942434, + 25.431150409679468 + ], + [ + 66.217998612457, + 25.431150409679468 + ], + [ + 66.33284129594067, + 25.236502674751016 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 25.236502674751016 + ], + [ + 66.217998612457, + 25.431150409679468 + ], + [ + 66.10315592897331, + 25.236502674751016 + ], + [ + 66.33284129594067, + 25.236502674751016 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 25.236502674751016 + ], + [ + 66.10315592897331, + 25.236502674751016 + ], + [ + 66.217998612457, + 25.041854939822564 + ], + [ + 66.33284129594067, + 25.236502674751016 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 25.236502674751016 + ], + [ + 66.217998612457, + 25.041854939822564 + ], + [ + 66.44768397942434, + 25.041854939822564 + ], + [ + 66.33284129594067, + 25.236502674751016 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 25.236502674751016 + ], + [ + 66.44768397942434, + 25.041854939822564 + ], + [ + 66.56252666290803, + 25.236502674751016 + ], + [ + 66.33284129594067, + 25.236502674751016 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 25.62579814460792 + ], + [ + 66.56252666290803, + 25.62579814460792 + ], + [ + 66.44768397942434, + 25.820445879536372 + ], + [ + 66.33284129594067, + 25.62579814460792 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 25.62579814460792 + ], + [ + 66.44768397942434, + 25.820445879536372 + ], + [ + 66.217998612457, + 25.820445879536372 + ], + [ + 66.33284129594067, + 25.62579814460792 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 25.62579814460792 + ], + [ + 66.217998612457, + 25.820445879536372 + ], + [ + 66.10315592897331, + 25.62579814460792 + ], + [ + 66.33284129594067, + 25.62579814460792 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 25.62579814460792 + ], + [ + 66.10315592897331, + 25.62579814460792 + ], + [ + 66.217998612457, + 25.431150409679468 + ], + [ + 66.33284129594067, + 25.62579814460792 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 25.62579814460792 + ], + [ + 66.217998612457, + 25.431150409679468 + ], + [ + 66.44768397942434, + 25.431150409679468 + ], + [ + 66.33284129594067, + 25.62579814460792 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 25.62579814460792 + ], + [ + 66.44768397942434, + 25.431150409679468 + ], + [ + 66.56252666290803, + 25.62579814460792 + ], + [ + 66.33284129594067, + 25.62579814460792 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 26.015093614464828 + ], + [ + 66.56252666290803, + 26.015093614464828 + ], + [ + 66.44768397942434, + 26.20974134939328 + ], + [ + 66.33284129594067, + 26.015093614464828 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 26.015093614464828 + ], + [ + 66.44768397942434, + 26.20974134939328 + ], + [ + 66.217998612457, + 26.20974134939328 + ], + [ + 66.33284129594067, + 26.015093614464828 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 26.015093614464828 + ], + [ + 66.217998612457, + 26.20974134939328 + ], + [ + 66.10315592897331, + 26.015093614464828 + ], + [ + 66.33284129594067, + 26.015093614464828 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 26.015093614464828 + ], + [ + 66.10315592897331, + 26.015093614464828 + ], + [ + 66.217998612457, + 25.820445879536376 + ], + [ + 66.33284129594067, + 26.015093614464828 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 26.015093614464828 + ], + [ + 66.217998612457, + 25.820445879536376 + ], + [ + 66.44768397942434, + 25.820445879536376 + ], + [ + 66.33284129594067, + 26.015093614464828 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 26.015093614464828 + ], + [ + 66.44768397942434, + 25.820445879536376 + ], + [ + 66.56252666290803, + 26.015093614464828 + ], + [ + 66.33284129594067, + 26.015093614464828 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 26.404389084321735 + ], + [ + 66.56252666290803, + 26.404389084321735 + ], + [ + 66.44768397942434, + 26.599036819250188 + ], + [ + 66.33284129594067, + 26.404389084321735 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 26.404389084321735 + ], + [ + 66.44768397942434, + 26.599036819250188 + ], + [ + 66.217998612457, + 26.599036819250188 + ], + [ + 66.33284129594067, + 26.404389084321735 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 26.404389084321735 + ], + [ + 66.217998612457, + 26.599036819250188 + ], + [ + 66.10315592897331, + 26.404389084321735 + ], + [ + 66.33284129594067, + 26.404389084321735 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 26.404389084321735 + ], + [ + 66.10315592897331, + 26.404389084321735 + ], + [ + 66.217998612457, + 26.209741349393283 + ], + [ + 66.33284129594067, + 26.404389084321735 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 26.404389084321735 + ], + [ + 66.217998612457, + 26.209741349393283 + ], + [ + 66.44768397942434, + 26.209741349393283 + ], + [ + 66.33284129594067, + 26.404389084321735 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 26.404389084321735 + ], + [ + 66.44768397942434, + 26.209741349393283 + ], + [ + 66.56252666290803, + 26.404389084321735 + ], + [ + 66.33284129594067, + 26.404389084321735 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 26.79368455417864 + ], + [ + 66.56252666290803, + 26.79368455417864 + ], + [ + 66.44768397942434, + 26.988332289107092 + ], + [ + 66.33284129594067, + 26.79368455417864 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 26.79368455417864 + ], + [ + 66.44768397942434, + 26.988332289107092 + ], + [ + 66.217998612457, + 26.988332289107092 + ], + [ + 66.33284129594067, + 26.79368455417864 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 26.79368455417864 + ], + [ + 66.217998612457, + 26.988332289107092 + ], + [ + 66.10315592897331, + 26.79368455417864 + ], + [ + 66.33284129594067, + 26.79368455417864 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 26.79368455417864 + ], + [ + 66.10315592897331, + 26.79368455417864 + ], + [ + 66.217998612457, + 26.599036819250188 + ], + [ + 66.33284129594067, + 26.79368455417864 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 26.79368455417864 + ], + [ + 66.217998612457, + 26.599036819250188 + ], + [ + 66.44768397942434, + 26.599036819250188 + ], + [ + 66.33284129594067, + 26.79368455417864 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 26.79368455417864 + ], + [ + 66.44768397942434, + 26.599036819250188 + ], + [ + 66.56252666290803, + 26.79368455417864 + ], + [ + 66.33284129594067, + 26.79368455417864 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 27.182980024035547 + ], + [ + 66.56252666290803, + 27.182980024035547 + ], + [ + 66.44768397942434, + 27.377627758964 + ], + [ + 66.33284129594067, + 27.182980024035547 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 27.182980024035547 + ], + [ + 66.44768397942434, + 27.377627758964 + ], + [ + 66.217998612457, + 27.377627758964 + ], + [ + 66.33284129594067, + 27.182980024035547 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 27.182980024035547 + ], + [ + 66.217998612457, + 27.377627758964 + ], + [ + 66.10315592897331, + 27.182980024035547 + ], + [ + 66.33284129594067, + 27.182980024035547 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 27.182980024035547 + ], + [ + 66.10315592897331, + 27.182980024035547 + ], + [ + 66.217998612457, + 26.988332289107095 + ], + [ + 66.33284129594067, + 27.182980024035547 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 27.182980024035547 + ], + [ + 66.217998612457, + 26.988332289107095 + ], + [ + 66.44768397942434, + 26.988332289107095 + ], + [ + 66.33284129594067, + 27.182980024035547 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 27.182980024035547 + ], + [ + 66.44768397942434, + 26.988332289107095 + ], + [ + 66.56252666290803, + 27.182980024035547 + ], + [ + 66.33284129594067, + 27.182980024035547 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 27.572275493892455 + ], + [ + 66.56252666290803, + 27.572275493892455 + ], + [ + 66.44768397942434, + 27.766923228820907 + ], + [ + 66.33284129594067, + 27.572275493892455 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 27.572275493892455 + ], + [ + 66.44768397942434, + 27.766923228820907 + ], + [ + 66.217998612457, + 27.766923228820907 + ], + [ + 66.33284129594067, + 27.572275493892455 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 27.572275493892455 + ], + [ + 66.217998612457, + 27.766923228820907 + ], + [ + 66.10315592897331, + 27.572275493892455 + ], + [ + 66.33284129594067, + 27.572275493892455 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 27.572275493892455 + ], + [ + 66.10315592897331, + 27.572275493892455 + ], + [ + 66.217998612457, + 27.377627758964003 + ], + [ + 66.33284129594067, + 27.572275493892455 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 27.572275493892455 + ], + [ + 66.217998612457, + 27.377627758964003 + ], + [ + 66.44768397942434, + 27.377627758964003 + ], + [ + 66.33284129594067, + 27.572275493892455 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 27.572275493892455 + ], + [ + 66.44768397942434, + 27.377627758964003 + ], + [ + 66.56252666290803, + 27.572275493892455 + ], + [ + 66.33284129594067, + 27.572275493892455 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 27.96157096374936 + ], + [ + 66.56252666290803, + 27.96157096374936 + ], + [ + 66.44768397942434, + 28.15621869867781 + ], + [ + 66.33284129594067, + 27.96157096374936 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 27.96157096374936 + ], + [ + 66.44768397942434, + 28.15621869867781 + ], + [ + 66.217998612457, + 28.15621869867781 + ], + [ + 66.33284129594067, + 27.96157096374936 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 27.96157096374936 + ], + [ + 66.217998612457, + 28.15621869867781 + ], + [ + 66.10315592897331, + 27.96157096374936 + ], + [ + 66.33284129594067, + 27.96157096374936 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 27.96157096374936 + ], + [ + 66.10315592897331, + 27.96157096374936 + ], + [ + 66.217998612457, + 27.766923228820907 + ], + [ + 66.33284129594067, + 27.96157096374936 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 27.96157096374936 + ], + [ + 66.217998612457, + 27.766923228820907 + ], + [ + 66.44768397942434, + 27.766923228820907 + ], + [ + 66.33284129594067, + 27.96157096374936 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 27.96157096374936 + ], + [ + 66.44768397942434, + 27.766923228820907 + ], + [ + 66.56252666290803, + 27.96157096374936 + ], + [ + 66.33284129594067, + 27.96157096374936 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 28.350866433606267 + ], + [ + 66.56252666290803, + 28.350866433606267 + ], + [ + 66.44768397942434, + 28.54551416853472 + ], + [ + 66.33284129594067, + 28.350866433606267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 28.350866433606267 + ], + [ + 66.44768397942434, + 28.54551416853472 + ], + [ + 66.217998612457, + 28.54551416853472 + ], + [ + 66.33284129594067, + 28.350866433606267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 28.350866433606267 + ], + [ + 66.217998612457, + 28.54551416853472 + ], + [ + 66.10315592897331, + 28.350866433606267 + ], + [ + 66.33284129594067, + 28.350866433606267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 28.350866433606267 + ], + [ + 66.10315592897331, + 28.350866433606267 + ], + [ + 66.217998612457, + 28.156218698677815 + ], + [ + 66.33284129594067, + 28.350866433606267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 28.350866433606267 + ], + [ + 66.217998612457, + 28.156218698677815 + ], + [ + 66.44768397942434, + 28.156218698677815 + ], + [ + 66.33284129594067, + 28.350866433606267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 28.350866433606267 + ], + [ + 66.44768397942434, + 28.156218698677815 + ], + [ + 66.56252666290803, + 28.350866433606267 + ], + [ + 66.33284129594067, + 28.350866433606267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 28.74016190346317 + ], + [ + 66.56252666290803, + 28.74016190346317 + ], + [ + 66.44768397942434, + 28.934809638391624 + ], + [ + 66.33284129594067, + 28.74016190346317 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 28.74016190346317 + ], + [ + 66.44768397942434, + 28.934809638391624 + ], + [ + 66.217998612457, + 28.934809638391624 + ], + [ + 66.33284129594067, + 28.74016190346317 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 28.74016190346317 + ], + [ + 66.217998612457, + 28.934809638391624 + ], + [ + 66.10315592897331, + 28.74016190346317 + ], + [ + 66.33284129594067, + 28.74016190346317 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 28.74016190346317 + ], + [ + 66.10315592897331, + 28.74016190346317 + ], + [ + 66.217998612457, + 28.54551416853472 + ], + [ + 66.33284129594067, + 28.74016190346317 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 28.74016190346317 + ], + [ + 66.217998612457, + 28.54551416853472 + ], + [ + 66.44768397942434, + 28.54551416853472 + ], + [ + 66.33284129594067, + 28.74016190346317 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 28.74016190346317 + ], + [ + 66.44768397942434, + 28.54551416853472 + ], + [ + 66.56252666290803, + 28.74016190346317 + ], + [ + 66.33284129594067, + 28.74016190346317 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 29.12945737332008 + ], + [ + 66.56252666290803, + 29.12945737332008 + ], + [ + 66.44768397942434, + 29.32410510824853 + ], + [ + 66.33284129594067, + 29.12945737332008 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 29.12945737332008 + ], + [ + 66.44768397942434, + 29.32410510824853 + ], + [ + 66.217998612457, + 29.32410510824853 + ], + [ + 66.33284129594067, + 29.12945737332008 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 29.12945737332008 + ], + [ + 66.217998612457, + 29.32410510824853 + ], + [ + 66.10315592897331, + 29.12945737332008 + ], + [ + 66.33284129594067, + 29.12945737332008 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 29.12945737332008 + ], + [ + 66.10315592897331, + 29.12945737332008 + ], + [ + 66.217998612457, + 28.934809638391627 + ], + [ + 66.33284129594067, + 29.12945737332008 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 29.12945737332008 + ], + [ + 66.217998612457, + 28.934809638391627 + ], + [ + 66.44768397942434, + 28.934809638391627 + ], + [ + 66.33284129594067, + 29.12945737332008 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 29.12945737332008 + ], + [ + 66.44768397942434, + 28.934809638391627 + ], + [ + 66.56252666290803, + 29.12945737332008 + ], + [ + 66.33284129594067, + 29.12945737332008 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 29.518752843176983 + ], + [ + 66.56252666290803, + 29.518752843176983 + ], + [ + 66.44768397942434, + 29.713400578105436 + ], + [ + 66.33284129594067, + 29.518752843176983 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 29.518752843176983 + ], + [ + 66.44768397942434, + 29.713400578105436 + ], + [ + 66.217998612457, + 29.713400578105436 + ], + [ + 66.33284129594067, + 29.518752843176983 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 29.518752843176983 + ], + [ + 66.217998612457, + 29.713400578105436 + ], + [ + 66.10315592897331, + 29.518752843176983 + ], + [ + 66.33284129594067, + 29.518752843176983 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 29.518752843176983 + ], + [ + 66.10315592897331, + 29.518752843176983 + ], + [ + 66.217998612457, + 29.32410510824853 + ], + [ + 66.33284129594067, + 29.518752843176983 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 29.518752843176983 + ], + [ + 66.217998612457, + 29.32410510824853 + ], + [ + 66.44768397942434, + 29.32410510824853 + ], + [ + 66.33284129594067, + 29.518752843176983 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 29.518752843176983 + ], + [ + 66.44768397942434, + 29.32410510824853 + ], + [ + 66.56252666290803, + 29.518752843176983 + ], + [ + 66.33284129594067, + 29.518752843176983 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 29.90804831303389 + ], + [ + 66.56252666290803, + 29.90804831303389 + ], + [ + 66.44768397942434, + 30.102696047962343 + ], + [ + 66.33284129594067, + 29.90804831303389 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 29.90804831303389 + ], + [ + 66.44768397942434, + 30.102696047962343 + ], + [ + 66.217998612457, + 30.102696047962343 + ], + [ + 66.33284129594067, + 29.90804831303389 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 29.90804831303389 + ], + [ + 66.217998612457, + 30.102696047962343 + ], + [ + 66.10315592897331, + 29.90804831303389 + ], + [ + 66.33284129594067, + 29.90804831303389 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 29.90804831303389 + ], + [ + 66.10315592897331, + 29.90804831303389 + ], + [ + 66.217998612457, + 29.71340057810544 + ], + [ + 66.33284129594067, + 29.90804831303389 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 29.90804831303389 + ], + [ + 66.217998612457, + 29.71340057810544 + ], + [ + 66.44768397942434, + 29.71340057810544 + ], + [ + 66.33284129594067, + 29.90804831303389 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 29.90804831303389 + ], + [ + 66.44768397942434, + 29.71340057810544 + ], + [ + 66.56252666290803, + 29.90804831303389 + ], + [ + 66.33284129594067, + 29.90804831303389 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 30.297343782890795 + ], + [ + 66.56252666290803, + 30.297343782890795 + ], + [ + 66.44768397942434, + 30.491991517819248 + ], + [ + 66.33284129594067, + 30.297343782890795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 30.297343782890795 + ], + [ + 66.44768397942434, + 30.491991517819248 + ], + [ + 66.217998612457, + 30.491991517819248 + ], + [ + 66.33284129594067, + 30.297343782890795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 30.297343782890795 + ], + [ + 66.217998612457, + 30.491991517819248 + ], + [ + 66.10315592897331, + 30.297343782890795 + ], + [ + 66.33284129594067, + 30.297343782890795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 30.297343782890795 + ], + [ + 66.10315592897331, + 30.297343782890795 + ], + [ + 66.217998612457, + 30.102696047962343 + ], + [ + 66.33284129594067, + 30.297343782890795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 30.297343782890795 + ], + [ + 66.217998612457, + 30.102696047962343 + ], + [ + 66.44768397942434, + 30.102696047962343 + ], + [ + 66.33284129594067, + 30.297343782890795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 30.297343782890795 + ], + [ + 66.44768397942434, + 30.102696047962343 + ], + [ + 66.56252666290803, + 30.297343782890795 + ], + [ + 66.33284129594067, + 30.297343782890795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 30.686639252747703 + ], + [ + 66.56252666290803, + 30.686639252747703 + ], + [ + 66.44768397942434, + 30.881286987676155 + ], + [ + 66.33284129594067, + 30.686639252747703 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 30.686639252747703 + ], + [ + 66.44768397942434, + 30.881286987676155 + ], + [ + 66.217998612457, + 30.881286987676155 + ], + [ + 66.33284129594067, + 30.686639252747703 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 30.686639252747703 + ], + [ + 66.217998612457, + 30.881286987676155 + ], + [ + 66.10315592897331, + 30.686639252747703 + ], + [ + 66.33284129594067, + 30.686639252747703 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 30.686639252747703 + ], + [ + 66.10315592897331, + 30.686639252747703 + ], + [ + 66.217998612457, + 30.49199151781925 + ], + [ + 66.33284129594067, + 30.686639252747703 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 30.686639252747703 + ], + [ + 66.217998612457, + 30.49199151781925 + ], + [ + 66.44768397942434, + 30.49199151781925 + ], + [ + 66.33284129594067, + 30.686639252747703 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 30.686639252747703 + ], + [ + 66.44768397942434, + 30.49199151781925 + ], + [ + 66.56252666290803, + 30.686639252747703 + ], + [ + 66.33284129594067, + 30.686639252747703 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 31.07593472260461 + ], + [ + 66.56252666290803, + 31.07593472260461 + ], + [ + 66.44768397942434, + 31.270582457533063 + ], + [ + 66.33284129594067, + 31.07593472260461 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 31.07593472260461 + ], + [ + 66.44768397942434, + 31.270582457533063 + ], + [ + 66.217998612457, + 31.270582457533063 + ], + [ + 66.33284129594067, + 31.07593472260461 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 31.07593472260461 + ], + [ + 66.217998612457, + 31.270582457533063 + ], + [ + 66.10315592897331, + 31.07593472260461 + ], + [ + 66.33284129594067, + 31.07593472260461 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 31.07593472260461 + ], + [ + 66.10315592897331, + 31.07593472260461 + ], + [ + 66.217998612457, + 30.88128698767616 + ], + [ + 66.33284129594067, + 31.07593472260461 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 31.07593472260461 + ], + [ + 66.217998612457, + 30.88128698767616 + ], + [ + 66.44768397942434, + 30.88128698767616 + ], + [ + 66.33284129594067, + 31.07593472260461 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 31.07593472260461 + ], + [ + 66.44768397942434, + 30.88128698767616 + ], + [ + 66.56252666290803, + 31.07593472260461 + ], + [ + 66.33284129594067, + 31.07593472260461 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 31.465230192461515 + ], + [ + 66.56252666290803, + 31.465230192461515 + ], + [ + 66.44768397942434, + 31.659877927389967 + ], + [ + 66.33284129594067, + 31.465230192461515 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 31.465230192461515 + ], + [ + 66.44768397942434, + 31.659877927389967 + ], + [ + 66.217998612457, + 31.659877927389967 + ], + [ + 66.33284129594067, + 31.465230192461515 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 31.465230192461515 + ], + [ + 66.217998612457, + 31.659877927389967 + ], + [ + 66.10315592897331, + 31.465230192461515 + ], + [ + 66.33284129594067, + 31.465230192461515 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 31.465230192461515 + ], + [ + 66.10315592897331, + 31.465230192461515 + ], + [ + 66.217998612457, + 31.270582457533063 + ], + [ + 66.33284129594067, + 31.465230192461515 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 31.465230192461515 + ], + [ + 66.217998612457, + 31.270582457533063 + ], + [ + 66.44768397942434, + 31.270582457533063 + ], + [ + 66.33284129594067, + 31.465230192461515 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 31.465230192461515 + ], + [ + 66.44768397942434, + 31.270582457533063 + ], + [ + 66.56252666290803, + 31.465230192461515 + ], + [ + 66.33284129594067, + 31.465230192461515 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 31.854525662318423 + ], + [ + 66.56252666290803, + 31.854525662318423 + ], + [ + 66.44768397942434, + 32.049173397246875 + ], + [ + 66.33284129594067, + 31.854525662318423 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 31.854525662318423 + ], + [ + 66.44768397942434, + 32.049173397246875 + ], + [ + 66.217998612457, + 32.049173397246875 + ], + [ + 66.33284129594067, + 31.854525662318423 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 31.854525662318423 + ], + [ + 66.217998612457, + 32.049173397246875 + ], + [ + 66.10315592897331, + 31.854525662318423 + ], + [ + 66.33284129594067, + 31.854525662318423 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 31.854525662318423 + ], + [ + 66.10315592897331, + 31.854525662318423 + ], + [ + 66.217998612457, + 31.65987792738997 + ], + [ + 66.33284129594067, + 31.854525662318423 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 31.854525662318423 + ], + [ + 66.217998612457, + 31.65987792738997 + ], + [ + 66.44768397942434, + 31.65987792738997 + ], + [ + 66.33284129594067, + 31.854525662318423 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 31.854525662318423 + ], + [ + 66.44768397942434, + 31.65987792738997 + ], + [ + 66.56252666290803, + 31.854525662318423 + ], + [ + 66.33284129594067, + 31.854525662318423 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 32.24382113217533 + ], + [ + 66.56252666290803, + 32.24382113217533 + ], + [ + 66.44768397942434, + 32.43846886710378 + ], + [ + 66.33284129594067, + 32.24382113217533 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 32.24382113217533 + ], + [ + 66.44768397942434, + 32.43846886710378 + ], + [ + 66.217998612457, + 32.43846886710378 + ], + [ + 66.33284129594067, + 32.24382113217533 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 32.24382113217533 + ], + [ + 66.217998612457, + 32.43846886710378 + ], + [ + 66.10315592897331, + 32.24382113217533 + ], + [ + 66.33284129594067, + 32.24382113217533 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 32.24382113217533 + ], + [ + 66.10315592897331, + 32.24382113217533 + ], + [ + 66.217998612457, + 32.049173397246875 + ], + [ + 66.33284129594067, + 32.24382113217533 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 32.24382113217533 + ], + [ + 66.217998612457, + 32.049173397246875 + ], + [ + 66.44768397942434, + 32.049173397246875 + ], + [ + 66.33284129594067, + 32.24382113217533 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 32.24382113217533 + ], + [ + 66.44768397942434, + 32.049173397246875 + ], + [ + 66.56252666290803, + 32.24382113217533 + ], + [ + 66.33284129594067, + 32.24382113217533 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 32.63311660203224 + ], + [ + 66.56252666290803, + 32.63311660203224 + ], + [ + 66.44768397942434, + 32.82776433696069 + ], + [ + 66.33284129594067, + 32.63311660203224 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 32.63311660203224 + ], + [ + 66.44768397942434, + 32.82776433696069 + ], + [ + 66.217998612457, + 32.82776433696069 + ], + [ + 66.33284129594067, + 32.63311660203224 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 32.63311660203224 + ], + [ + 66.217998612457, + 32.82776433696069 + ], + [ + 66.10315592897331, + 32.63311660203224 + ], + [ + 66.33284129594067, + 32.63311660203224 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 32.63311660203224 + ], + [ + 66.10315592897331, + 32.63311660203224 + ], + [ + 66.217998612457, + 32.438468867103786 + ], + [ + 66.33284129594067, + 32.63311660203224 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 32.63311660203224 + ], + [ + 66.217998612457, + 32.438468867103786 + ], + [ + 66.44768397942434, + 32.438468867103786 + ], + [ + 66.33284129594067, + 32.63311660203224 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 32.63311660203224 + ], + [ + 66.44768397942434, + 32.438468867103786 + ], + [ + 66.56252666290803, + 32.63311660203224 + ], + [ + 66.33284129594067, + 32.63311660203224 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 33.02241207188914 + ], + [ + 66.56252666290803, + 33.02241207188914 + ], + [ + 66.44768397942434, + 33.217059806817595 + ], + [ + 66.33284129594067, + 33.02241207188914 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 33.02241207188914 + ], + [ + 66.44768397942434, + 33.217059806817595 + ], + [ + 66.217998612457, + 33.217059806817595 + ], + [ + 66.33284129594067, + 33.02241207188914 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 33.02241207188914 + ], + [ + 66.217998612457, + 33.217059806817595 + ], + [ + 66.10315592897331, + 33.02241207188914 + ], + [ + 66.33284129594067, + 33.02241207188914 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 33.02241207188914 + ], + [ + 66.10315592897331, + 33.02241207188914 + ], + [ + 66.217998612457, + 32.82776433696069 + ], + [ + 66.33284129594067, + 33.02241207188914 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 33.02241207188914 + ], + [ + 66.217998612457, + 32.82776433696069 + ], + [ + 66.44768397942434, + 32.82776433696069 + ], + [ + 66.33284129594067, + 33.02241207188914 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 33.02241207188914 + ], + [ + 66.44768397942434, + 32.82776433696069 + ], + [ + 66.56252666290803, + 33.02241207188914 + ], + [ + 66.33284129594067, + 33.02241207188914 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 33.41170754174605 + ], + [ + 66.56252666290803, + 33.41170754174605 + ], + [ + 66.44768397942434, + 33.6063552766745 + ], + [ + 66.33284129594067, + 33.41170754174605 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 33.41170754174605 + ], + [ + 66.44768397942434, + 33.6063552766745 + ], + [ + 66.217998612457, + 33.6063552766745 + ], + [ + 66.33284129594067, + 33.41170754174605 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 33.41170754174605 + ], + [ + 66.217998612457, + 33.6063552766745 + ], + [ + 66.10315592897331, + 33.41170754174605 + ], + [ + 66.33284129594067, + 33.41170754174605 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 33.41170754174605 + ], + [ + 66.10315592897331, + 33.41170754174605 + ], + [ + 66.217998612457, + 33.217059806817595 + ], + [ + 66.33284129594067, + 33.41170754174605 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 33.41170754174605 + ], + [ + 66.217998612457, + 33.217059806817595 + ], + [ + 66.44768397942434, + 33.217059806817595 + ], + [ + 66.33284129594067, + 33.41170754174605 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 33.41170754174605 + ], + [ + 66.44768397942434, + 33.217059806817595 + ], + [ + 66.56252666290803, + 33.41170754174605 + ], + [ + 66.33284129594067, + 33.41170754174605 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 33.80100301160295 + ], + [ + 66.56252666290803, + 33.80100301160295 + ], + [ + 66.44768397942434, + 33.9956507465314 + ], + [ + 66.33284129594067, + 33.80100301160295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 33.80100301160295 + ], + [ + 66.44768397942434, + 33.9956507465314 + ], + [ + 66.217998612457, + 33.9956507465314 + ], + [ + 66.33284129594067, + 33.80100301160295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 33.80100301160295 + ], + [ + 66.217998612457, + 33.9956507465314 + ], + [ + 66.10315592897331, + 33.80100301160295 + ], + [ + 66.33284129594067, + 33.80100301160295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 33.80100301160295 + ], + [ + 66.10315592897331, + 33.80100301160295 + ], + [ + 66.217998612457, + 33.6063552766745 + ], + [ + 66.33284129594067, + 33.80100301160295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 33.80100301160295 + ], + [ + 66.217998612457, + 33.6063552766745 + ], + [ + 66.44768397942434, + 33.6063552766745 + ], + [ + 66.33284129594067, + 33.80100301160295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 33.80100301160295 + ], + [ + 66.44768397942434, + 33.6063552766745 + ], + [ + 66.56252666290803, + 33.80100301160295 + ], + [ + 66.33284129594067, + 33.80100301160295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 34.190298481459855 + ], + [ + 66.56252666290803, + 34.190298481459855 + ], + [ + 66.44768397942434, + 34.38494621638831 + ], + [ + 66.33284129594067, + 34.190298481459855 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 34.190298481459855 + ], + [ + 66.44768397942434, + 34.38494621638831 + ], + [ + 66.217998612457, + 34.38494621638831 + ], + [ + 66.33284129594067, + 34.190298481459855 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 34.190298481459855 + ], + [ + 66.217998612457, + 34.38494621638831 + ], + [ + 66.10315592897331, + 34.190298481459855 + ], + [ + 66.33284129594067, + 34.190298481459855 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 34.190298481459855 + ], + [ + 66.10315592897331, + 34.190298481459855 + ], + [ + 66.217998612457, + 33.9956507465314 + ], + [ + 66.33284129594067, + 34.190298481459855 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 34.190298481459855 + ], + [ + 66.217998612457, + 33.9956507465314 + ], + [ + 66.44768397942434, + 33.9956507465314 + ], + [ + 66.33284129594067, + 34.190298481459855 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 34.190298481459855 + ], + [ + 66.44768397942434, + 33.9956507465314 + ], + [ + 66.56252666290803, + 34.190298481459855 + ], + [ + 66.33284129594067, + 34.190298481459855 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 34.57959395131677 + ], + [ + 66.56252666290803, + 34.57959395131677 + ], + [ + 66.44768397942434, + 34.77424168624522 + ], + [ + 66.33284129594067, + 34.57959395131677 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 34.57959395131677 + ], + [ + 66.44768397942434, + 34.77424168624522 + ], + [ + 66.217998612457, + 34.77424168624522 + ], + [ + 66.33284129594067, + 34.57959395131677 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 34.57959395131677 + ], + [ + 66.217998612457, + 34.77424168624522 + ], + [ + 66.10315592897331, + 34.57959395131677 + ], + [ + 66.33284129594067, + 34.57959395131677 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 34.57959395131677 + ], + [ + 66.10315592897331, + 34.57959395131677 + ], + [ + 66.217998612457, + 34.384946216388315 + ], + [ + 66.33284129594067, + 34.57959395131677 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 34.57959395131677 + ], + [ + 66.217998612457, + 34.384946216388315 + ], + [ + 66.44768397942434, + 34.384946216388315 + ], + [ + 66.33284129594067, + 34.57959395131677 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 34.57959395131677 + ], + [ + 66.44768397942434, + 34.384946216388315 + ], + [ + 66.56252666290803, + 34.57959395131677 + ], + [ + 66.33284129594067, + 34.57959395131677 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 34.96888942117368 + ], + [ + 66.56252666290803, + 34.96888942117368 + ], + [ + 66.44768397942434, + 35.16353715610213 + ], + [ + 66.33284129594067, + 34.96888942117368 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 34.96888942117368 + ], + [ + 66.44768397942434, + 35.16353715610213 + ], + [ + 66.217998612457, + 35.16353715610213 + ], + [ + 66.33284129594067, + 34.96888942117368 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 34.96888942117368 + ], + [ + 66.217998612457, + 35.16353715610213 + ], + [ + 66.10315592897331, + 34.96888942117368 + ], + [ + 66.33284129594067, + 34.96888942117368 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 34.96888942117368 + ], + [ + 66.10315592897331, + 34.96888942117368 + ], + [ + 66.217998612457, + 34.774241686245226 + ], + [ + 66.33284129594067, + 34.96888942117368 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 34.96888942117368 + ], + [ + 66.217998612457, + 34.774241686245226 + ], + [ + 66.44768397942434, + 34.774241686245226 + ], + [ + 66.33284129594067, + 34.96888942117368 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 34.96888942117368 + ], + [ + 66.44768397942434, + 34.774241686245226 + ], + [ + 66.56252666290803, + 34.96888942117368 + ], + [ + 66.33284129594067, + 34.96888942117368 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 35.35818489103058 + ], + [ + 66.56252666290803, + 35.35818489103058 + ], + [ + 66.44768397942434, + 35.552832625959034 + ], + [ + 66.33284129594067, + 35.35818489103058 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 35.35818489103058 + ], + [ + 66.44768397942434, + 35.552832625959034 + ], + [ + 66.217998612457, + 35.552832625959034 + ], + [ + 66.33284129594067, + 35.35818489103058 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 35.35818489103058 + ], + [ + 66.217998612457, + 35.552832625959034 + ], + [ + 66.10315592897331, + 35.35818489103058 + ], + [ + 66.33284129594067, + 35.35818489103058 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 35.35818489103058 + ], + [ + 66.10315592897331, + 35.35818489103058 + ], + [ + 66.217998612457, + 35.16353715610213 + ], + [ + 66.33284129594067, + 35.35818489103058 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 35.35818489103058 + ], + [ + 66.217998612457, + 35.16353715610213 + ], + [ + 66.44768397942434, + 35.16353715610213 + ], + [ + 66.33284129594067, + 35.35818489103058 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 35.35818489103058 + ], + [ + 66.44768397942434, + 35.16353715610213 + ], + [ + 66.56252666290803, + 35.35818489103058 + ], + [ + 66.33284129594067, + 35.35818489103058 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 35.74748036088749 + ], + [ + 66.56252666290803, + 35.74748036088749 + ], + [ + 66.44768397942434, + 35.94212809581594 + ], + [ + 66.33284129594067, + 35.74748036088749 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 35.74748036088749 + ], + [ + 66.44768397942434, + 35.94212809581594 + ], + [ + 66.217998612457, + 35.94212809581594 + ], + [ + 66.33284129594067, + 35.74748036088749 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 35.74748036088749 + ], + [ + 66.217998612457, + 35.94212809581594 + ], + [ + 66.10315592897331, + 35.74748036088749 + ], + [ + 66.33284129594067, + 35.74748036088749 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 35.74748036088749 + ], + [ + 66.10315592897331, + 35.74748036088749 + ], + [ + 66.217998612457, + 35.552832625959034 + ], + [ + 66.33284129594067, + 35.74748036088749 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 35.74748036088749 + ], + [ + 66.217998612457, + 35.552832625959034 + ], + [ + 66.44768397942434, + 35.552832625959034 + ], + [ + 66.33284129594067, + 35.74748036088749 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 35.74748036088749 + ], + [ + 66.44768397942434, + 35.552832625959034 + ], + [ + 66.56252666290803, + 35.74748036088749 + ], + [ + 66.33284129594067, + 35.74748036088749 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 36.13677583074439 + ], + [ + 66.56252666290803, + 36.13677583074439 + ], + [ + 66.44768397942434, + 36.33142356567284 + ], + [ + 66.33284129594067, + 36.13677583074439 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 36.13677583074439 + ], + [ + 66.44768397942434, + 36.33142356567284 + ], + [ + 66.217998612457, + 36.33142356567284 + ], + [ + 66.33284129594067, + 36.13677583074439 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 36.13677583074439 + ], + [ + 66.217998612457, + 36.33142356567284 + ], + [ + 66.10315592897331, + 36.13677583074439 + ], + [ + 66.33284129594067, + 36.13677583074439 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 36.13677583074439 + ], + [ + 66.10315592897331, + 36.13677583074439 + ], + [ + 66.217998612457, + 35.94212809581594 + ], + [ + 66.33284129594067, + 36.13677583074439 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 36.13677583074439 + ], + [ + 66.217998612457, + 35.94212809581594 + ], + [ + 66.44768397942434, + 35.94212809581594 + ], + [ + 66.33284129594067, + 36.13677583074439 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 36.13677583074439 + ], + [ + 66.44768397942434, + 35.94212809581594 + ], + [ + 66.56252666290803, + 36.13677583074439 + ], + [ + 66.33284129594067, + 36.13677583074439 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 36.526071300601295 + ], + [ + 66.56252666290803, + 36.526071300601295 + ], + [ + 66.44768397942434, + 36.72071903552975 + ], + [ + 66.33284129594067, + 36.526071300601295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 36.526071300601295 + ], + [ + 66.44768397942434, + 36.72071903552975 + ], + [ + 66.217998612457, + 36.72071903552975 + ], + [ + 66.33284129594067, + 36.526071300601295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 36.526071300601295 + ], + [ + 66.217998612457, + 36.72071903552975 + ], + [ + 66.10315592897331, + 36.526071300601295 + ], + [ + 66.33284129594067, + 36.526071300601295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 36.526071300601295 + ], + [ + 66.10315592897331, + 36.526071300601295 + ], + [ + 66.217998612457, + 36.33142356567284 + ], + [ + 66.33284129594067, + 36.526071300601295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 36.526071300601295 + ], + [ + 66.217998612457, + 36.33142356567284 + ], + [ + 66.44768397942434, + 36.33142356567284 + ], + [ + 66.33284129594067, + 36.526071300601295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 36.526071300601295 + ], + [ + 66.44768397942434, + 36.33142356567284 + ], + [ + 66.56252666290803, + 36.526071300601295 + ], + [ + 66.33284129594067, + 36.526071300601295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 36.915366770458206 + ], + [ + 66.56252666290803, + 36.915366770458206 + ], + [ + 66.44768397942434, + 37.11001450538666 + ], + [ + 66.33284129594067, + 36.915366770458206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 36.915366770458206 + ], + [ + 66.44768397942434, + 37.11001450538666 + ], + [ + 66.217998612457, + 37.11001450538666 + ], + [ + 66.33284129594067, + 36.915366770458206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 36.915366770458206 + ], + [ + 66.217998612457, + 37.11001450538666 + ], + [ + 66.10315592897331, + 36.915366770458206 + ], + [ + 66.33284129594067, + 36.915366770458206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 36.915366770458206 + ], + [ + 66.10315592897331, + 36.915366770458206 + ], + [ + 66.217998612457, + 36.720719035529754 + ], + [ + 66.33284129594067, + 36.915366770458206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 36.915366770458206 + ], + [ + 66.217998612457, + 36.720719035529754 + ], + [ + 66.44768397942434, + 36.720719035529754 + ], + [ + 66.33284129594067, + 36.915366770458206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 36.915366770458206 + ], + [ + 66.44768397942434, + 36.720719035529754 + ], + [ + 66.56252666290803, + 36.915366770458206 + ], + [ + 66.33284129594067, + 36.915366770458206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 37.30466224031511 + ], + [ + 66.56252666290803, + 37.30466224031511 + ], + [ + 66.44768397942434, + 37.49930997524356 + ], + [ + 66.33284129594067, + 37.30466224031511 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 37.30466224031511 + ], + [ + 66.44768397942434, + 37.49930997524356 + ], + [ + 66.217998612457, + 37.49930997524356 + ], + [ + 66.33284129594067, + 37.30466224031511 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 37.30466224031511 + ], + [ + 66.217998612457, + 37.49930997524356 + ], + [ + 66.10315592897331, + 37.30466224031511 + ], + [ + 66.33284129594067, + 37.30466224031511 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 37.30466224031511 + ], + [ + 66.10315592897331, + 37.30466224031511 + ], + [ + 66.217998612457, + 37.11001450538666 + ], + [ + 66.33284129594067, + 37.30466224031511 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 37.30466224031511 + ], + [ + 66.217998612457, + 37.11001450538666 + ], + [ + 66.44768397942434, + 37.11001450538666 + ], + [ + 66.33284129594067, + 37.30466224031511 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 37.30466224031511 + ], + [ + 66.44768397942434, + 37.11001450538666 + ], + [ + 66.56252666290803, + 37.30466224031511 + ], + [ + 66.33284129594067, + 37.30466224031511 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 37.69395771017202 + ], + [ + 66.56252666290803, + 37.69395771017202 + ], + [ + 66.44768397942434, + 37.888605445100474 + ], + [ + 66.33284129594067, + 37.69395771017202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 37.69395771017202 + ], + [ + 66.44768397942434, + 37.888605445100474 + ], + [ + 66.217998612457, + 37.888605445100474 + ], + [ + 66.33284129594067, + 37.69395771017202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 37.69395771017202 + ], + [ + 66.217998612457, + 37.888605445100474 + ], + [ + 66.10315592897331, + 37.69395771017202 + ], + [ + 66.33284129594067, + 37.69395771017202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 37.69395771017202 + ], + [ + 66.10315592897331, + 37.69395771017202 + ], + [ + 66.217998612457, + 37.49930997524357 + ], + [ + 66.33284129594067, + 37.69395771017202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 37.69395771017202 + ], + [ + 66.217998612457, + 37.49930997524357 + ], + [ + 66.44768397942434, + 37.49930997524357 + ], + [ + 66.33284129594067, + 37.69395771017202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 37.69395771017202 + ], + [ + 66.44768397942434, + 37.49930997524357 + ], + [ + 66.56252666290803, + 37.69395771017202 + ], + [ + 66.33284129594067, + 37.69395771017202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 38.083253180028926 + ], + [ + 66.56252666290803, + 38.083253180028926 + ], + [ + 66.44768397942434, + 38.27790091495738 + ], + [ + 66.33284129594067, + 38.083253180028926 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 38.083253180028926 + ], + [ + 66.44768397942434, + 38.27790091495738 + ], + [ + 66.217998612457, + 38.27790091495738 + ], + [ + 66.33284129594067, + 38.083253180028926 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 38.083253180028926 + ], + [ + 66.217998612457, + 38.27790091495738 + ], + [ + 66.10315592897331, + 38.083253180028926 + ], + [ + 66.33284129594067, + 38.083253180028926 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 38.083253180028926 + ], + [ + 66.10315592897331, + 38.083253180028926 + ], + [ + 66.217998612457, + 37.888605445100474 + ], + [ + 66.33284129594067, + 38.083253180028926 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 38.083253180028926 + ], + [ + 66.217998612457, + 37.888605445100474 + ], + [ + 66.44768397942434, + 37.888605445100474 + ], + [ + 66.33284129594067, + 38.083253180028926 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 38.083253180028926 + ], + [ + 66.44768397942434, + 37.888605445100474 + ], + [ + 66.56252666290803, + 38.083253180028926 + ], + [ + 66.33284129594067, + 38.083253180028926 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 38.47254864988583 + ], + [ + 66.56252666290803, + 38.47254864988583 + ], + [ + 66.44768397942434, + 38.66719638481428 + ], + [ + 66.33284129594067, + 38.47254864988583 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 38.47254864988583 + ], + [ + 66.44768397942434, + 38.66719638481428 + ], + [ + 66.217998612457, + 38.66719638481428 + ], + [ + 66.33284129594067, + 38.47254864988583 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 38.47254864988583 + ], + [ + 66.217998612457, + 38.66719638481428 + ], + [ + 66.10315592897331, + 38.47254864988583 + ], + [ + 66.33284129594067, + 38.47254864988583 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 38.47254864988583 + ], + [ + 66.10315592897331, + 38.47254864988583 + ], + [ + 66.217998612457, + 38.27790091495738 + ], + [ + 66.33284129594067, + 38.47254864988583 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 38.47254864988583 + ], + [ + 66.217998612457, + 38.27790091495738 + ], + [ + 66.44768397942434, + 38.27790091495738 + ], + [ + 66.33284129594067, + 38.47254864988583 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 38.47254864988583 + ], + [ + 66.44768397942434, + 38.27790091495738 + ], + [ + 66.56252666290803, + 38.47254864988583 + ], + [ + 66.33284129594067, + 38.47254864988583 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 38.861844119742734 + ], + [ + 66.56252666290803, + 38.861844119742734 + ], + [ + 66.44768397942434, + 39.05649185467119 + ], + [ + 66.33284129594067, + 38.861844119742734 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 38.861844119742734 + ], + [ + 66.44768397942434, + 39.05649185467119 + ], + [ + 66.217998612457, + 39.05649185467119 + ], + [ + 66.33284129594067, + 38.861844119742734 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 38.861844119742734 + ], + [ + 66.217998612457, + 39.05649185467119 + ], + [ + 66.10315592897331, + 38.861844119742734 + ], + [ + 66.33284129594067, + 38.861844119742734 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 38.861844119742734 + ], + [ + 66.10315592897331, + 38.861844119742734 + ], + [ + 66.217998612457, + 38.66719638481428 + ], + [ + 66.33284129594067, + 38.861844119742734 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 38.861844119742734 + ], + [ + 66.217998612457, + 38.66719638481428 + ], + [ + 66.44768397942434, + 38.66719638481428 + ], + [ + 66.33284129594067, + 38.861844119742734 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 38.861844119742734 + ], + [ + 66.44768397942434, + 38.66719638481428 + ], + [ + 66.56252666290803, + 38.861844119742734 + ], + [ + 66.33284129594067, + 38.861844119742734 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 39.25113958959964 + ], + [ + 66.56252666290803, + 39.25113958959964 + ], + [ + 66.44768397942434, + 39.44578732452809 + ], + [ + 66.33284129594067, + 39.25113958959964 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 39.25113958959964 + ], + [ + 66.44768397942434, + 39.44578732452809 + ], + [ + 66.217998612457, + 39.44578732452809 + ], + [ + 66.33284129594067, + 39.25113958959964 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 39.25113958959964 + ], + [ + 66.217998612457, + 39.44578732452809 + ], + [ + 66.10315592897331, + 39.25113958959964 + ], + [ + 66.33284129594067, + 39.25113958959964 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 39.25113958959964 + ], + [ + 66.10315592897331, + 39.25113958959964 + ], + [ + 66.217998612457, + 39.05649185467119 + ], + [ + 66.33284129594067, + 39.25113958959964 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 39.25113958959964 + ], + [ + 66.217998612457, + 39.05649185467119 + ], + [ + 66.44768397942434, + 39.05649185467119 + ], + [ + 66.33284129594067, + 39.25113958959964 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 39.25113958959964 + ], + [ + 66.44768397942434, + 39.05649185467119 + ], + [ + 66.56252666290803, + 39.25113958959964 + ], + [ + 66.33284129594067, + 39.25113958959964 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 39.64043505945655 + ], + [ + 66.56252666290803, + 39.64043505945655 + ], + [ + 66.44768397942434, + 39.835082794385 + ], + [ + 66.33284129594067, + 39.64043505945655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 39.64043505945655 + ], + [ + 66.44768397942434, + 39.835082794385 + ], + [ + 66.217998612457, + 39.835082794385 + ], + [ + 66.33284129594067, + 39.64043505945655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 39.64043505945655 + ], + [ + 66.217998612457, + 39.835082794385 + ], + [ + 66.10315592897331, + 39.64043505945655 + ], + [ + 66.33284129594067, + 39.64043505945655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 39.64043505945655 + ], + [ + 66.10315592897331, + 39.64043505945655 + ], + [ + 66.217998612457, + 39.4457873245281 + ], + [ + 66.33284129594067, + 39.64043505945655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 39.64043505945655 + ], + [ + 66.217998612457, + 39.4457873245281 + ], + [ + 66.44768397942434, + 39.4457873245281 + ], + [ + 66.33284129594067, + 39.64043505945655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 39.64043505945655 + ], + [ + 66.44768397942434, + 39.4457873245281 + ], + [ + 66.56252666290803, + 39.64043505945655 + ], + [ + 66.33284129594067, + 39.64043505945655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 40.029730529313454 + ], + [ + 66.56252666290803, + 40.029730529313454 + ], + [ + 66.44768397942434, + 40.224378264241906 + ], + [ + 66.33284129594067, + 40.029730529313454 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 40.029730529313454 + ], + [ + 66.44768397942434, + 40.224378264241906 + ], + [ + 66.217998612457, + 40.224378264241906 + ], + [ + 66.33284129594067, + 40.029730529313454 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 40.029730529313454 + ], + [ + 66.217998612457, + 40.224378264241906 + ], + [ + 66.10315592897331, + 40.029730529313454 + ], + [ + 66.33284129594067, + 40.029730529313454 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 40.029730529313454 + ], + [ + 66.10315592897331, + 40.029730529313454 + ], + [ + 66.217998612457, + 39.835082794385 + ], + [ + 66.33284129594067, + 40.029730529313454 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 40.029730529313454 + ], + [ + 66.217998612457, + 39.835082794385 + ], + [ + 66.44768397942434, + 39.835082794385 + ], + [ + 66.33284129594067, + 40.029730529313454 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 40.029730529313454 + ], + [ + 66.44768397942434, + 39.835082794385 + ], + [ + 66.56252666290803, + 40.029730529313454 + ], + [ + 66.33284129594067, + 40.029730529313454 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 40.419025999170366 + ], + [ + 66.56252666290803, + 40.419025999170366 + ], + [ + 66.44768397942434, + 40.61367373409882 + ], + [ + 66.33284129594067, + 40.419025999170366 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 40.419025999170366 + ], + [ + 66.44768397942434, + 40.61367373409882 + ], + [ + 66.217998612457, + 40.61367373409882 + ], + [ + 66.33284129594067, + 40.419025999170366 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 40.419025999170366 + ], + [ + 66.217998612457, + 40.61367373409882 + ], + [ + 66.10315592897331, + 40.419025999170366 + ], + [ + 66.33284129594067, + 40.419025999170366 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 40.419025999170366 + ], + [ + 66.10315592897331, + 40.419025999170366 + ], + [ + 66.217998612457, + 40.22437826424191 + ], + [ + 66.33284129594067, + 40.419025999170366 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 40.419025999170366 + ], + [ + 66.217998612457, + 40.22437826424191 + ], + [ + 66.44768397942434, + 40.22437826424191 + ], + [ + 66.33284129594067, + 40.419025999170366 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 40.419025999170366 + ], + [ + 66.44768397942434, + 40.22437826424191 + ], + [ + 66.56252666290803, + 40.419025999170366 + ], + [ + 66.33284129594067, + 40.419025999170366 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 40.80832146902727 + ], + [ + 66.56252666290803, + 40.80832146902727 + ], + [ + 66.44768397942434, + 41.00296920395572 + ], + [ + 66.33284129594067, + 40.80832146902727 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 40.80832146902727 + ], + [ + 66.44768397942434, + 41.00296920395572 + ], + [ + 66.217998612457, + 41.00296920395572 + ], + [ + 66.33284129594067, + 40.80832146902727 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 40.80832146902727 + ], + [ + 66.217998612457, + 41.00296920395572 + ], + [ + 66.10315592897331, + 40.80832146902727 + ], + [ + 66.33284129594067, + 40.80832146902727 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 40.80832146902727 + ], + [ + 66.10315592897331, + 40.80832146902727 + ], + [ + 66.217998612457, + 40.61367373409882 + ], + [ + 66.33284129594067, + 40.80832146902727 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 40.80832146902727 + ], + [ + 66.217998612457, + 40.61367373409882 + ], + [ + 66.44768397942434, + 40.61367373409882 + ], + [ + 66.33284129594067, + 40.80832146902727 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 40.80832146902727 + ], + [ + 66.44768397942434, + 40.61367373409882 + ], + [ + 66.56252666290803, + 40.80832146902727 + ], + [ + 66.33284129594067, + 40.80832146902727 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 41.197616938884174 + ], + [ + 66.56252666290803, + 41.197616938884174 + ], + [ + 66.44768397942434, + 41.392264673812626 + ], + [ + 66.33284129594067, + 41.197616938884174 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 41.197616938884174 + ], + [ + 66.44768397942434, + 41.392264673812626 + ], + [ + 66.217998612457, + 41.392264673812626 + ], + [ + 66.33284129594067, + 41.197616938884174 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 41.197616938884174 + ], + [ + 66.217998612457, + 41.392264673812626 + ], + [ + 66.10315592897331, + 41.197616938884174 + ], + [ + 66.33284129594067, + 41.197616938884174 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 41.197616938884174 + ], + [ + 66.10315592897331, + 41.197616938884174 + ], + [ + 66.217998612457, + 41.00296920395572 + ], + [ + 66.33284129594067, + 41.197616938884174 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 41.197616938884174 + ], + [ + 66.217998612457, + 41.00296920395572 + ], + [ + 66.44768397942434, + 41.00296920395572 + ], + [ + 66.33284129594067, + 41.197616938884174 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 41.197616938884174 + ], + [ + 66.44768397942434, + 41.00296920395572 + ], + [ + 66.56252666290803, + 41.197616938884174 + ], + [ + 66.33284129594067, + 41.197616938884174 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 41.58691240874108 + ], + [ + 66.56252666290803, + 41.58691240874108 + ], + [ + 66.44768397942434, + 41.78156014366953 + ], + [ + 66.33284129594067, + 41.58691240874108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 41.58691240874108 + ], + [ + 66.44768397942434, + 41.78156014366953 + ], + [ + 66.217998612457, + 41.78156014366953 + ], + [ + 66.33284129594067, + 41.58691240874108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 41.58691240874108 + ], + [ + 66.217998612457, + 41.78156014366953 + ], + [ + 66.10315592897331, + 41.58691240874108 + ], + [ + 66.33284129594067, + 41.58691240874108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 41.58691240874108 + ], + [ + 66.10315592897331, + 41.58691240874108 + ], + [ + 66.217998612457, + 41.392264673812626 + ], + [ + 66.33284129594067, + 41.58691240874108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 41.58691240874108 + ], + [ + 66.217998612457, + 41.392264673812626 + ], + [ + 66.44768397942434, + 41.392264673812626 + ], + [ + 66.33284129594067, + 41.58691240874108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 41.58691240874108 + ], + [ + 66.44768397942434, + 41.392264673812626 + ], + [ + 66.56252666290803, + 41.58691240874108 + ], + [ + 66.33284129594067, + 41.58691240874108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 41.97620787859798 + ], + [ + 66.56252666290803, + 41.97620787859798 + ], + [ + 66.44768397942434, + 42.170855613526435 + ], + [ + 66.33284129594067, + 41.97620787859798 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 41.97620787859798 + ], + [ + 66.44768397942434, + 42.170855613526435 + ], + [ + 66.217998612457, + 42.170855613526435 + ], + [ + 66.33284129594067, + 41.97620787859798 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 41.97620787859798 + ], + [ + 66.217998612457, + 42.170855613526435 + ], + [ + 66.10315592897331, + 41.97620787859798 + ], + [ + 66.33284129594067, + 41.97620787859798 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 41.97620787859798 + ], + [ + 66.10315592897331, + 41.97620787859798 + ], + [ + 66.217998612457, + 41.78156014366953 + ], + [ + 66.33284129594067, + 41.97620787859798 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 41.97620787859798 + ], + [ + 66.217998612457, + 41.78156014366953 + ], + [ + 66.44768397942434, + 41.78156014366953 + ], + [ + 66.33284129594067, + 41.97620787859798 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 41.97620787859798 + ], + [ + 66.44768397942434, + 41.78156014366953 + ], + [ + 66.56252666290803, + 41.97620787859798 + ], + [ + 66.33284129594067, + 41.97620787859798 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 42.365503348454894 + ], + [ + 66.56252666290803, + 42.365503348454894 + ], + [ + 66.44768397942434, + 42.560151083383346 + ], + [ + 66.33284129594067, + 42.365503348454894 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 42.365503348454894 + ], + [ + 66.44768397942434, + 42.560151083383346 + ], + [ + 66.217998612457, + 42.560151083383346 + ], + [ + 66.33284129594067, + 42.365503348454894 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 42.365503348454894 + ], + [ + 66.217998612457, + 42.560151083383346 + ], + [ + 66.10315592897331, + 42.365503348454894 + ], + [ + 66.33284129594067, + 42.365503348454894 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 42.365503348454894 + ], + [ + 66.10315592897331, + 42.365503348454894 + ], + [ + 66.217998612457, + 42.17085561352644 + ], + [ + 66.33284129594067, + 42.365503348454894 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 42.365503348454894 + ], + [ + 66.217998612457, + 42.17085561352644 + ], + [ + 66.44768397942434, + 42.17085561352644 + ], + [ + 66.33284129594067, + 42.365503348454894 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 42.365503348454894 + ], + [ + 66.44768397942434, + 42.17085561352644 + ], + [ + 66.56252666290803, + 42.365503348454894 + ], + [ + 66.33284129594067, + 42.365503348454894 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 42.754798818311805 + ], + [ + 66.56252666290803, + 42.754798818311805 + ], + [ + 66.44768397942434, + 42.94944655324026 + ], + [ + 66.33284129594067, + 42.754798818311805 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 42.754798818311805 + ], + [ + 66.44768397942434, + 42.94944655324026 + ], + [ + 66.217998612457, + 42.94944655324026 + ], + [ + 66.33284129594067, + 42.754798818311805 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 42.754798818311805 + ], + [ + 66.217998612457, + 42.94944655324026 + ], + [ + 66.10315592897331, + 42.754798818311805 + ], + [ + 66.33284129594067, + 42.754798818311805 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 42.754798818311805 + ], + [ + 66.10315592897331, + 42.754798818311805 + ], + [ + 66.217998612457, + 42.56015108338335 + ], + [ + 66.33284129594067, + 42.754798818311805 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 42.754798818311805 + ], + [ + 66.217998612457, + 42.56015108338335 + ], + [ + 66.44768397942434, + 42.56015108338335 + ], + [ + 66.33284129594067, + 42.754798818311805 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 42.754798818311805 + ], + [ + 66.44768397942434, + 42.56015108338335 + ], + [ + 66.56252666290803, + 42.754798818311805 + ], + [ + 66.33284129594067, + 42.754798818311805 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 43.14409428816871 + ], + [ + 66.56252666290803, + 43.14409428816871 + ], + [ + 66.44768397942434, + 43.33874202309716 + ], + [ + 66.33284129594067, + 43.14409428816871 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 43.14409428816871 + ], + [ + 66.44768397942434, + 43.33874202309716 + ], + [ + 66.217998612457, + 43.33874202309716 + ], + [ + 66.33284129594067, + 43.14409428816871 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 43.14409428816871 + ], + [ + 66.217998612457, + 43.33874202309716 + ], + [ + 66.10315592897331, + 43.14409428816871 + ], + [ + 66.33284129594067, + 43.14409428816871 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 43.14409428816871 + ], + [ + 66.10315592897331, + 43.14409428816871 + ], + [ + 66.217998612457, + 42.94944655324026 + ], + [ + 66.33284129594067, + 43.14409428816871 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 43.14409428816871 + ], + [ + 66.217998612457, + 42.94944655324026 + ], + [ + 66.44768397942434, + 42.94944655324026 + ], + [ + 66.33284129594067, + 43.14409428816871 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 43.14409428816871 + ], + [ + 66.44768397942434, + 42.94944655324026 + ], + [ + 66.56252666290803, + 43.14409428816871 + ], + [ + 66.33284129594067, + 43.14409428816871 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 43.53338975802561 + ], + [ + 66.56252666290803, + 43.53338975802561 + ], + [ + 66.44768397942434, + 43.728037492954066 + ], + [ + 66.33284129594067, + 43.53338975802561 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 43.53338975802561 + ], + [ + 66.44768397942434, + 43.728037492954066 + ], + [ + 66.217998612457, + 43.728037492954066 + ], + [ + 66.33284129594067, + 43.53338975802561 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 43.53338975802561 + ], + [ + 66.217998612457, + 43.728037492954066 + ], + [ + 66.10315592897331, + 43.53338975802561 + ], + [ + 66.33284129594067, + 43.53338975802561 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 43.53338975802561 + ], + [ + 66.10315592897331, + 43.53338975802561 + ], + [ + 66.217998612457, + 43.33874202309716 + ], + [ + 66.33284129594067, + 43.53338975802561 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 43.53338975802561 + ], + [ + 66.217998612457, + 43.33874202309716 + ], + [ + 66.44768397942434, + 43.33874202309716 + ], + [ + 66.33284129594067, + 43.53338975802561 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 43.53338975802561 + ], + [ + 66.44768397942434, + 43.33874202309716 + ], + [ + 66.56252666290803, + 43.53338975802561 + ], + [ + 66.33284129594067, + 43.53338975802561 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 43.92268522788252 + ], + [ + 66.56252666290803, + 43.92268522788252 + ], + [ + 66.44768397942434, + 44.11733296281097 + ], + [ + 66.33284129594067, + 43.92268522788252 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 43.92268522788252 + ], + [ + 66.44768397942434, + 44.11733296281097 + ], + [ + 66.217998612457, + 44.11733296281097 + ], + [ + 66.33284129594067, + 43.92268522788252 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 43.92268522788252 + ], + [ + 66.217998612457, + 44.11733296281097 + ], + [ + 66.10315592897331, + 43.92268522788252 + ], + [ + 66.33284129594067, + 43.92268522788252 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 43.92268522788252 + ], + [ + 66.10315592897331, + 43.92268522788252 + ], + [ + 66.217998612457, + 43.728037492954066 + ], + [ + 66.33284129594067, + 43.92268522788252 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 43.92268522788252 + ], + [ + 66.217998612457, + 43.728037492954066 + ], + [ + 66.44768397942434, + 43.728037492954066 + ], + [ + 66.33284129594067, + 43.92268522788252 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 43.92268522788252 + ], + [ + 66.44768397942434, + 43.728037492954066 + ], + [ + 66.56252666290803, + 43.92268522788252 + ], + [ + 66.33284129594067, + 43.92268522788252 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 44.31198069773942 + ], + [ + 66.56252666290803, + 44.31198069773942 + ], + [ + 66.44768397942434, + 44.506628432667874 + ], + [ + 66.33284129594067, + 44.31198069773942 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 44.31198069773942 + ], + [ + 66.44768397942434, + 44.506628432667874 + ], + [ + 66.217998612457, + 44.506628432667874 + ], + [ + 66.33284129594067, + 44.31198069773942 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 44.31198069773942 + ], + [ + 66.217998612457, + 44.506628432667874 + ], + [ + 66.10315592897331, + 44.31198069773942 + ], + [ + 66.33284129594067, + 44.31198069773942 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 44.31198069773942 + ], + [ + 66.10315592897331, + 44.31198069773942 + ], + [ + 66.217998612457, + 44.11733296281097 + ], + [ + 66.33284129594067, + 44.31198069773942 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 44.31198069773942 + ], + [ + 66.217998612457, + 44.11733296281097 + ], + [ + 66.44768397942434, + 44.11733296281097 + ], + [ + 66.33284129594067, + 44.31198069773942 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 44.31198069773942 + ], + [ + 66.44768397942434, + 44.11733296281097 + ], + [ + 66.56252666290803, + 44.31198069773942 + ], + [ + 66.33284129594067, + 44.31198069773942 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 44.701276167596326 + ], + [ + 66.56252666290803, + 44.701276167596326 + ], + [ + 66.44768397942434, + 44.89592390252478 + ], + [ + 66.33284129594067, + 44.701276167596326 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 44.701276167596326 + ], + [ + 66.44768397942434, + 44.89592390252478 + ], + [ + 66.217998612457, + 44.89592390252478 + ], + [ + 66.33284129594067, + 44.701276167596326 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 44.701276167596326 + ], + [ + 66.217998612457, + 44.89592390252478 + ], + [ + 66.10315592897331, + 44.701276167596326 + ], + [ + 66.33284129594067, + 44.701276167596326 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 44.701276167596326 + ], + [ + 66.10315592897331, + 44.701276167596326 + ], + [ + 66.217998612457, + 44.506628432667874 + ], + [ + 66.33284129594067, + 44.701276167596326 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 44.701276167596326 + ], + [ + 66.217998612457, + 44.506628432667874 + ], + [ + 66.44768397942434, + 44.506628432667874 + ], + [ + 66.33284129594067, + 44.701276167596326 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 44.701276167596326 + ], + [ + 66.44768397942434, + 44.506628432667874 + ], + [ + 66.56252666290803, + 44.701276167596326 + ], + [ + 66.33284129594067, + 44.701276167596326 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 45.090571637453245 + ], + [ + 66.56252666290803, + 45.090571637453245 + ], + [ + 66.44768397942434, + 45.2852193723817 + ], + [ + 66.33284129594067, + 45.090571637453245 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 45.090571637453245 + ], + [ + 66.44768397942434, + 45.2852193723817 + ], + [ + 66.217998612457, + 45.2852193723817 + ], + [ + 66.33284129594067, + 45.090571637453245 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 45.090571637453245 + ], + [ + 66.217998612457, + 45.2852193723817 + ], + [ + 66.10315592897331, + 45.090571637453245 + ], + [ + 66.33284129594067, + 45.090571637453245 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 45.090571637453245 + ], + [ + 66.10315592897331, + 45.090571637453245 + ], + [ + 66.217998612457, + 44.89592390252479 + ], + [ + 66.33284129594067, + 45.090571637453245 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 45.090571637453245 + ], + [ + 66.217998612457, + 44.89592390252479 + ], + [ + 66.44768397942434, + 44.89592390252479 + ], + [ + 66.33284129594067, + 45.090571637453245 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 45.090571637453245 + ], + [ + 66.44768397942434, + 44.89592390252479 + ], + [ + 66.56252666290803, + 45.090571637453245 + ], + [ + 66.33284129594067, + 45.090571637453245 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 45.47986710731015 + ], + [ + 66.56252666290803, + 45.47986710731015 + ], + [ + 66.44768397942434, + 45.6745148422386 + ], + [ + 66.33284129594067, + 45.47986710731015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 45.47986710731015 + ], + [ + 66.44768397942434, + 45.6745148422386 + ], + [ + 66.217998612457, + 45.6745148422386 + ], + [ + 66.33284129594067, + 45.47986710731015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 45.47986710731015 + ], + [ + 66.217998612457, + 45.6745148422386 + ], + [ + 66.10315592897331, + 45.47986710731015 + ], + [ + 66.33284129594067, + 45.47986710731015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 45.47986710731015 + ], + [ + 66.10315592897331, + 45.47986710731015 + ], + [ + 66.217998612457, + 45.2852193723817 + ], + [ + 66.33284129594067, + 45.47986710731015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 45.47986710731015 + ], + [ + 66.217998612457, + 45.2852193723817 + ], + [ + 66.44768397942434, + 45.2852193723817 + ], + [ + 66.33284129594067, + 45.47986710731015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 45.47986710731015 + ], + [ + 66.44768397942434, + 45.2852193723817 + ], + [ + 66.56252666290803, + 45.47986710731015 + ], + [ + 66.33284129594067, + 45.47986710731015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 45.86916257716705 + ], + [ + 66.56252666290803, + 45.86916257716705 + ], + [ + 66.44768397942434, + 46.063810312095505 + ], + [ + 66.33284129594067, + 45.86916257716705 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 45.86916257716705 + ], + [ + 66.44768397942434, + 46.063810312095505 + ], + [ + 66.217998612457, + 46.063810312095505 + ], + [ + 66.33284129594067, + 45.86916257716705 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 45.86916257716705 + ], + [ + 66.217998612457, + 46.063810312095505 + ], + [ + 66.10315592897331, + 45.86916257716705 + ], + [ + 66.33284129594067, + 45.86916257716705 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 45.86916257716705 + ], + [ + 66.10315592897331, + 45.86916257716705 + ], + [ + 66.217998612457, + 45.6745148422386 + ], + [ + 66.33284129594067, + 45.86916257716705 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 45.86916257716705 + ], + [ + 66.217998612457, + 45.6745148422386 + ], + [ + 66.44768397942434, + 45.6745148422386 + ], + [ + 66.33284129594067, + 45.86916257716705 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 45.86916257716705 + ], + [ + 66.44768397942434, + 45.6745148422386 + ], + [ + 66.56252666290803, + 45.86916257716705 + ], + [ + 66.33284129594067, + 45.86916257716705 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 46.25845804702396 + ], + [ + 66.56252666290803, + 46.25845804702396 + ], + [ + 66.44768397942434, + 46.45310578195241 + ], + [ + 66.33284129594067, + 46.25845804702396 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 46.25845804702396 + ], + [ + 66.44768397942434, + 46.45310578195241 + ], + [ + 66.217998612457, + 46.45310578195241 + ], + [ + 66.33284129594067, + 46.25845804702396 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 46.25845804702396 + ], + [ + 66.217998612457, + 46.45310578195241 + ], + [ + 66.10315592897331, + 46.25845804702396 + ], + [ + 66.33284129594067, + 46.25845804702396 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 46.25845804702396 + ], + [ + 66.10315592897331, + 46.25845804702396 + ], + [ + 66.217998612457, + 46.063810312095505 + ], + [ + 66.33284129594067, + 46.25845804702396 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 46.25845804702396 + ], + [ + 66.217998612457, + 46.063810312095505 + ], + [ + 66.44768397942434, + 46.063810312095505 + ], + [ + 66.33284129594067, + 46.25845804702396 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 46.25845804702396 + ], + [ + 66.44768397942434, + 46.063810312095505 + ], + [ + 66.56252666290803, + 46.25845804702396 + ], + [ + 66.33284129594067, + 46.25845804702396 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 46.64775351688086 + ], + [ + 66.56252666290803, + 46.64775351688086 + ], + [ + 66.44768397942434, + 46.842401251809314 + ], + [ + 66.33284129594067, + 46.64775351688086 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 46.64775351688086 + ], + [ + 66.44768397942434, + 46.842401251809314 + ], + [ + 66.217998612457, + 46.842401251809314 + ], + [ + 66.33284129594067, + 46.64775351688086 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 46.64775351688086 + ], + [ + 66.217998612457, + 46.842401251809314 + ], + [ + 66.10315592897331, + 46.64775351688086 + ], + [ + 66.33284129594067, + 46.64775351688086 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 46.64775351688086 + ], + [ + 66.10315592897331, + 46.64775351688086 + ], + [ + 66.217998612457, + 46.45310578195241 + ], + [ + 66.33284129594067, + 46.64775351688086 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 46.64775351688086 + ], + [ + 66.217998612457, + 46.45310578195241 + ], + [ + 66.44768397942434, + 46.45310578195241 + ], + [ + 66.33284129594067, + 46.64775351688086 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 46.64775351688086 + ], + [ + 66.44768397942434, + 46.45310578195241 + ], + [ + 66.56252666290803, + 46.64775351688086 + ], + [ + 66.33284129594067, + 46.64775351688086 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 47.037048986737766 + ], + [ + 66.56252666290803, + 47.037048986737766 + ], + [ + 66.44768397942434, + 47.23169672166622 + ], + [ + 66.33284129594067, + 47.037048986737766 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 47.037048986737766 + ], + [ + 66.44768397942434, + 47.23169672166622 + ], + [ + 66.217998612457, + 47.23169672166622 + ], + [ + 66.33284129594067, + 47.037048986737766 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 47.037048986737766 + ], + [ + 66.217998612457, + 47.23169672166622 + ], + [ + 66.10315592897331, + 47.037048986737766 + ], + [ + 66.33284129594067, + 47.037048986737766 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 47.037048986737766 + ], + [ + 66.10315592897331, + 47.037048986737766 + ], + [ + 66.217998612457, + 46.842401251809314 + ], + [ + 66.33284129594067, + 47.037048986737766 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 47.037048986737766 + ], + [ + 66.217998612457, + 46.842401251809314 + ], + [ + 66.44768397942434, + 46.842401251809314 + ], + [ + 66.33284129594067, + 47.037048986737766 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 47.037048986737766 + ], + [ + 66.44768397942434, + 46.842401251809314 + ], + [ + 66.56252666290803, + 47.037048986737766 + ], + [ + 66.33284129594067, + 47.037048986737766 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 47.42634445659467 + ], + [ + 66.56252666290803, + 47.42634445659467 + ], + [ + 66.44768397942434, + 47.62099219152312 + ], + [ + 66.33284129594067, + 47.42634445659467 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 47.42634445659467 + ], + [ + 66.44768397942434, + 47.62099219152312 + ], + [ + 66.217998612457, + 47.62099219152312 + ], + [ + 66.33284129594067, + 47.42634445659467 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 47.42634445659467 + ], + [ + 66.217998612457, + 47.62099219152312 + ], + [ + 66.10315592897331, + 47.42634445659467 + ], + [ + 66.33284129594067, + 47.42634445659467 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 47.42634445659467 + ], + [ + 66.10315592897331, + 47.42634445659467 + ], + [ + 66.217998612457, + 47.23169672166622 + ], + [ + 66.33284129594067, + 47.42634445659467 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 47.42634445659467 + ], + [ + 66.217998612457, + 47.23169672166622 + ], + [ + 66.44768397942434, + 47.23169672166622 + ], + [ + 66.33284129594067, + 47.42634445659467 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 47.42634445659467 + ], + [ + 66.44768397942434, + 47.23169672166622 + ], + [ + 66.56252666290803, + 47.42634445659467 + ], + [ + 66.33284129594067, + 47.42634445659467 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 47.81563992645159 + ], + [ + 66.56252666290803, + 47.81563992645159 + ], + [ + 66.44768397942434, + 48.01028766138004 + ], + [ + 66.33284129594067, + 47.81563992645159 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 47.81563992645159 + ], + [ + 66.44768397942434, + 48.01028766138004 + ], + [ + 66.217998612457, + 48.01028766138004 + ], + [ + 66.33284129594067, + 47.81563992645159 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 47.81563992645159 + ], + [ + 66.217998612457, + 48.01028766138004 + ], + [ + 66.10315592897331, + 47.81563992645159 + ], + [ + 66.33284129594067, + 47.81563992645159 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 47.81563992645159 + ], + [ + 66.10315592897331, + 47.81563992645159 + ], + [ + 66.217998612457, + 47.620992191523136 + ], + [ + 66.33284129594067, + 47.81563992645159 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 47.81563992645159 + ], + [ + 66.217998612457, + 47.620992191523136 + ], + [ + 66.44768397942434, + 47.620992191523136 + ], + [ + 66.33284129594067, + 47.81563992645159 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.33284129594067, + 47.81563992645159 + ], + [ + 66.44768397942434, + 47.620992191523136 + ], + [ + 66.56252666290803, + 47.81563992645159 + ], + [ + 66.33284129594067, + 47.81563992645159 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 11.805808964687746 + ], + [ + 66.90705471335906, + 11.805808964687746 + ], + [ + 66.79221202987537, + 12.0004566996162 + ], + [ + 66.6773693463917, + 11.805808964687746 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 11.805808964687746 + ], + [ + 66.79221202987537, + 12.0004566996162 + ], + [ + 66.56252666290803, + 12.0004566996162 + ], + [ + 66.6773693463917, + 11.805808964687746 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 11.805808964687746 + ], + [ + 66.56252666290803, + 12.0004566996162 + ], + [ + 66.44768397942434, + 11.805808964687746 + ], + [ + 66.6773693463917, + 11.805808964687746 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 11.805808964687746 + ], + [ + 66.44768397942434, + 11.805808964687746 + ], + [ + 66.56252666290803, + 11.611161229759292 + ], + [ + 66.6773693463917, + 11.805808964687746 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 11.805808964687746 + ], + [ + 66.56252666290803, + 11.611161229759292 + ], + [ + 66.79221202987537, + 11.611161229759292 + ], + [ + 66.6773693463917, + 11.805808964687746 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 11.805808964687746 + ], + [ + 66.79221202987537, + 11.611161229759292 + ], + [ + 66.90705471335906, + 11.805808964687746 + ], + [ + 66.6773693463917, + 11.805808964687746 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 12.195104434544652 + ], + [ + 66.90705471335906, + 12.195104434544652 + ], + [ + 66.79221202987537, + 12.389752169473105 + ], + [ + 66.6773693463917, + 12.195104434544652 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 12.195104434544652 + ], + [ + 66.79221202987537, + 12.389752169473105 + ], + [ + 66.56252666290803, + 12.389752169473105 + ], + [ + 66.6773693463917, + 12.195104434544652 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 12.195104434544652 + ], + [ + 66.56252666290803, + 12.389752169473105 + ], + [ + 66.44768397942434, + 12.195104434544652 + ], + [ + 66.6773693463917, + 12.195104434544652 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 12.195104434544652 + ], + [ + 66.44768397942434, + 12.195104434544652 + ], + [ + 66.56252666290803, + 12.000456699616198 + ], + [ + 66.6773693463917, + 12.195104434544652 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 12.195104434544652 + ], + [ + 66.56252666290803, + 12.000456699616198 + ], + [ + 66.79221202987537, + 12.000456699616198 + ], + [ + 66.6773693463917, + 12.195104434544652 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 12.195104434544652 + ], + [ + 66.79221202987537, + 12.000456699616198 + ], + [ + 66.90705471335906, + 12.195104434544652 + ], + [ + 66.6773693463917, + 12.195104434544652 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 12.58439990440156 + ], + [ + 66.90705471335906, + 12.58439990440156 + ], + [ + 66.79221202987537, + 12.779047639330013 + ], + [ + 66.6773693463917, + 12.58439990440156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 12.58439990440156 + ], + [ + 66.79221202987537, + 12.779047639330013 + ], + [ + 66.56252666290803, + 12.779047639330013 + ], + [ + 66.6773693463917, + 12.58439990440156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 12.58439990440156 + ], + [ + 66.56252666290803, + 12.779047639330013 + ], + [ + 66.44768397942434, + 12.58439990440156 + ], + [ + 66.6773693463917, + 12.58439990440156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 12.58439990440156 + ], + [ + 66.44768397942434, + 12.58439990440156 + ], + [ + 66.56252666290803, + 12.389752169473105 + ], + [ + 66.6773693463917, + 12.58439990440156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 12.58439990440156 + ], + [ + 66.56252666290803, + 12.389752169473105 + ], + [ + 66.79221202987537, + 12.389752169473105 + ], + [ + 66.6773693463917, + 12.58439990440156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 12.58439990440156 + ], + [ + 66.79221202987537, + 12.389752169473105 + ], + [ + 66.90705471335906, + 12.58439990440156 + ], + [ + 66.6773693463917, + 12.58439990440156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 12.973695374258465 + ], + [ + 66.90705471335906, + 12.973695374258465 + ], + [ + 66.79221202987537, + 13.16834310918692 + ], + [ + 66.6773693463917, + 12.973695374258465 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 12.973695374258465 + ], + [ + 66.79221202987537, + 13.16834310918692 + ], + [ + 66.56252666290803, + 13.16834310918692 + ], + [ + 66.6773693463917, + 12.973695374258465 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 12.973695374258465 + ], + [ + 66.56252666290803, + 13.16834310918692 + ], + [ + 66.44768397942434, + 12.973695374258465 + ], + [ + 66.6773693463917, + 12.973695374258465 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 12.973695374258465 + ], + [ + 66.44768397942434, + 12.973695374258465 + ], + [ + 66.56252666290803, + 12.779047639330011 + ], + [ + 66.6773693463917, + 12.973695374258465 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 12.973695374258465 + ], + [ + 66.56252666290803, + 12.779047639330011 + ], + [ + 66.79221202987537, + 12.779047639330011 + ], + [ + 66.6773693463917, + 12.973695374258465 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 12.973695374258465 + ], + [ + 66.79221202987537, + 12.779047639330011 + ], + [ + 66.90705471335906, + 12.973695374258465 + ], + [ + 66.6773693463917, + 12.973695374258465 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 13.362990844115371 + ], + [ + 66.90705471335906, + 13.362990844115371 + ], + [ + 66.79221202987537, + 13.557638579043825 + ], + [ + 66.6773693463917, + 13.362990844115371 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 13.362990844115371 + ], + [ + 66.79221202987537, + 13.557638579043825 + ], + [ + 66.56252666290803, + 13.557638579043825 + ], + [ + 66.6773693463917, + 13.362990844115371 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 13.362990844115371 + ], + [ + 66.56252666290803, + 13.557638579043825 + ], + [ + 66.44768397942434, + 13.362990844115371 + ], + [ + 66.6773693463917, + 13.362990844115371 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 13.362990844115371 + ], + [ + 66.44768397942434, + 13.362990844115371 + ], + [ + 66.56252666290803, + 13.168343109186917 + ], + [ + 66.6773693463917, + 13.362990844115371 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 13.362990844115371 + ], + [ + 66.56252666290803, + 13.168343109186917 + ], + [ + 66.79221202987537, + 13.168343109186917 + ], + [ + 66.6773693463917, + 13.362990844115371 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 13.362990844115371 + ], + [ + 66.79221202987537, + 13.168343109186917 + ], + [ + 66.90705471335906, + 13.362990844115371 + ], + [ + 66.6773693463917, + 13.362990844115371 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 13.752286313972277 + ], + [ + 66.90705471335906, + 13.752286313972277 + ], + [ + 66.79221202987537, + 13.946934048900731 + ], + [ + 66.6773693463917, + 13.752286313972277 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 13.752286313972277 + ], + [ + 66.79221202987537, + 13.946934048900731 + ], + [ + 66.56252666290803, + 13.946934048900731 + ], + [ + 66.6773693463917, + 13.752286313972277 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 13.752286313972277 + ], + [ + 66.56252666290803, + 13.946934048900731 + ], + [ + 66.44768397942434, + 13.752286313972277 + ], + [ + 66.6773693463917, + 13.752286313972277 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 13.752286313972277 + ], + [ + 66.44768397942434, + 13.752286313972277 + ], + [ + 66.56252666290803, + 13.557638579043823 + ], + [ + 66.6773693463917, + 13.752286313972277 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 13.752286313972277 + ], + [ + 66.56252666290803, + 13.557638579043823 + ], + [ + 66.79221202987537, + 13.557638579043823 + ], + [ + 66.6773693463917, + 13.752286313972277 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 13.752286313972277 + ], + [ + 66.79221202987537, + 13.557638579043823 + ], + [ + 66.90705471335906, + 13.752286313972277 + ], + [ + 66.6773693463917, + 13.752286313972277 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 14.141581783829183 + ], + [ + 66.90705471335906, + 14.141581783829183 + ], + [ + 66.79221202987537, + 14.336229518757637 + ], + [ + 66.6773693463917, + 14.141581783829183 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 14.141581783829183 + ], + [ + 66.79221202987537, + 14.336229518757637 + ], + [ + 66.56252666290803, + 14.336229518757637 + ], + [ + 66.6773693463917, + 14.141581783829183 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 14.141581783829183 + ], + [ + 66.56252666290803, + 14.336229518757637 + ], + [ + 66.44768397942434, + 14.141581783829183 + ], + [ + 66.6773693463917, + 14.141581783829183 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 14.141581783829183 + ], + [ + 66.44768397942434, + 14.141581783829183 + ], + [ + 66.56252666290803, + 13.94693404890073 + ], + [ + 66.6773693463917, + 14.141581783829183 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 14.141581783829183 + ], + [ + 66.56252666290803, + 13.94693404890073 + ], + [ + 66.79221202987537, + 13.94693404890073 + ], + [ + 66.6773693463917, + 14.141581783829183 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 14.141581783829183 + ], + [ + 66.79221202987537, + 13.94693404890073 + ], + [ + 66.90705471335906, + 14.141581783829183 + ], + [ + 66.6773693463917, + 14.141581783829183 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 14.530877253686091 + ], + [ + 66.90705471335906, + 14.530877253686091 + ], + [ + 66.79221202987537, + 14.725524988614545 + ], + [ + 66.6773693463917, + 14.530877253686091 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 14.530877253686091 + ], + [ + 66.79221202987537, + 14.725524988614545 + ], + [ + 66.56252666290803, + 14.725524988614545 + ], + [ + 66.6773693463917, + 14.530877253686091 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 14.530877253686091 + ], + [ + 66.56252666290803, + 14.725524988614545 + ], + [ + 66.44768397942434, + 14.530877253686091 + ], + [ + 66.6773693463917, + 14.530877253686091 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 14.530877253686091 + ], + [ + 66.44768397942434, + 14.530877253686091 + ], + [ + 66.56252666290803, + 14.336229518757637 + ], + [ + 66.6773693463917, + 14.530877253686091 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 14.530877253686091 + ], + [ + 66.56252666290803, + 14.336229518757637 + ], + [ + 66.79221202987537, + 14.336229518757637 + ], + [ + 66.6773693463917, + 14.530877253686091 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 14.530877253686091 + ], + [ + 66.79221202987537, + 14.336229518757637 + ], + [ + 66.90705471335906, + 14.530877253686091 + ], + [ + 66.6773693463917, + 14.530877253686091 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 14.920172723542997 + ], + [ + 66.90705471335906, + 14.920172723542997 + ], + [ + 66.79221202987537, + 15.114820458471451 + ], + [ + 66.6773693463917, + 14.920172723542997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 14.920172723542997 + ], + [ + 66.79221202987537, + 15.114820458471451 + ], + [ + 66.56252666290803, + 15.114820458471451 + ], + [ + 66.6773693463917, + 14.920172723542997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 14.920172723542997 + ], + [ + 66.56252666290803, + 15.114820458471451 + ], + [ + 66.44768397942434, + 14.920172723542997 + ], + [ + 66.6773693463917, + 14.920172723542997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 14.920172723542997 + ], + [ + 66.44768397942434, + 14.920172723542997 + ], + [ + 66.56252666290803, + 14.725524988614543 + ], + [ + 66.6773693463917, + 14.920172723542997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 14.920172723542997 + ], + [ + 66.56252666290803, + 14.725524988614543 + ], + [ + 66.79221202987537, + 14.725524988614543 + ], + [ + 66.6773693463917, + 14.920172723542997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 14.920172723542997 + ], + [ + 66.79221202987537, + 14.725524988614543 + ], + [ + 66.90705471335906, + 14.920172723542997 + ], + [ + 66.6773693463917, + 14.920172723542997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 15.309468193399903 + ], + [ + 66.90705471335906, + 15.309468193399903 + ], + [ + 66.79221202987537, + 15.504115928328357 + ], + [ + 66.6773693463917, + 15.309468193399903 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 15.309468193399903 + ], + [ + 66.79221202987537, + 15.504115928328357 + ], + [ + 66.56252666290803, + 15.504115928328357 + ], + [ + 66.6773693463917, + 15.309468193399903 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 15.309468193399903 + ], + [ + 66.56252666290803, + 15.504115928328357 + ], + [ + 66.44768397942434, + 15.309468193399903 + ], + [ + 66.6773693463917, + 15.309468193399903 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 15.309468193399903 + ], + [ + 66.44768397942434, + 15.309468193399903 + ], + [ + 66.56252666290803, + 15.11482045847145 + ], + [ + 66.6773693463917, + 15.309468193399903 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 15.309468193399903 + ], + [ + 66.56252666290803, + 15.11482045847145 + ], + [ + 66.79221202987537, + 15.11482045847145 + ], + [ + 66.6773693463917, + 15.309468193399903 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 15.309468193399903 + ], + [ + 66.79221202987537, + 15.11482045847145 + ], + [ + 66.90705471335906, + 15.309468193399903 + ], + [ + 66.6773693463917, + 15.309468193399903 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 15.69876366325681 + ], + [ + 66.90705471335906, + 15.69876366325681 + ], + [ + 66.79221202987537, + 15.893411398185265 + ], + [ + 66.6773693463917, + 15.69876366325681 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 15.69876366325681 + ], + [ + 66.79221202987537, + 15.893411398185265 + ], + [ + 66.56252666290803, + 15.893411398185265 + ], + [ + 66.6773693463917, + 15.69876366325681 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 15.69876366325681 + ], + [ + 66.56252666290803, + 15.893411398185265 + ], + [ + 66.44768397942434, + 15.69876366325681 + ], + [ + 66.6773693463917, + 15.69876366325681 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 15.69876366325681 + ], + [ + 66.44768397942434, + 15.69876366325681 + ], + [ + 66.56252666290803, + 15.504115928328357 + ], + [ + 66.6773693463917, + 15.69876366325681 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 15.69876366325681 + ], + [ + 66.56252666290803, + 15.504115928328357 + ], + [ + 66.79221202987537, + 15.504115928328357 + ], + [ + 66.6773693463917, + 15.69876366325681 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 15.69876366325681 + ], + [ + 66.79221202987537, + 15.504115928328357 + ], + [ + 66.90705471335906, + 15.69876366325681 + ], + [ + 66.6773693463917, + 15.69876366325681 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 16.088059133113717 + ], + [ + 66.90705471335906, + 16.088059133113717 + ], + [ + 66.79221202987537, + 16.28270686804217 + ], + [ + 66.6773693463917, + 16.088059133113717 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 16.088059133113717 + ], + [ + 66.79221202987537, + 16.28270686804217 + ], + [ + 66.56252666290803, + 16.28270686804217 + ], + [ + 66.6773693463917, + 16.088059133113717 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 16.088059133113717 + ], + [ + 66.56252666290803, + 16.28270686804217 + ], + [ + 66.44768397942434, + 16.088059133113717 + ], + [ + 66.6773693463917, + 16.088059133113717 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 16.088059133113717 + ], + [ + 66.44768397942434, + 16.088059133113717 + ], + [ + 66.56252666290803, + 15.893411398185263 + ], + [ + 66.6773693463917, + 16.088059133113717 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 16.088059133113717 + ], + [ + 66.56252666290803, + 15.893411398185263 + ], + [ + 66.79221202987537, + 15.893411398185263 + ], + [ + 66.6773693463917, + 16.088059133113717 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 16.088059133113717 + ], + [ + 66.79221202987537, + 15.893411398185263 + ], + [ + 66.90705471335906, + 16.088059133113717 + ], + [ + 66.6773693463917, + 16.088059133113717 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 16.477354602970625 + ], + [ + 66.90705471335906, + 16.477354602970625 + ], + [ + 66.79221202987537, + 16.672002337899077 + ], + [ + 66.6773693463917, + 16.477354602970625 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 16.477354602970625 + ], + [ + 66.79221202987537, + 16.672002337899077 + ], + [ + 66.56252666290803, + 16.672002337899077 + ], + [ + 66.6773693463917, + 16.477354602970625 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 16.477354602970625 + ], + [ + 66.56252666290803, + 16.672002337899077 + ], + [ + 66.44768397942434, + 16.477354602970625 + ], + [ + 66.6773693463917, + 16.477354602970625 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 16.477354602970625 + ], + [ + 66.44768397942434, + 16.477354602970625 + ], + [ + 66.56252666290803, + 16.282706868042172 + ], + [ + 66.6773693463917, + 16.477354602970625 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 16.477354602970625 + ], + [ + 66.56252666290803, + 16.282706868042172 + ], + [ + 66.79221202987537, + 16.282706868042172 + ], + [ + 66.6773693463917, + 16.477354602970625 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 16.477354602970625 + ], + [ + 66.79221202987537, + 16.282706868042172 + ], + [ + 66.90705471335906, + 16.477354602970625 + ], + [ + 66.6773693463917, + 16.477354602970625 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 16.86665007282753 + ], + [ + 66.90705471335906, + 16.86665007282753 + ], + [ + 66.79221202987537, + 17.06129780775598 + ], + [ + 66.6773693463917, + 16.86665007282753 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 16.86665007282753 + ], + [ + 66.79221202987537, + 17.06129780775598 + ], + [ + 66.56252666290803, + 17.06129780775598 + ], + [ + 66.6773693463917, + 16.86665007282753 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 16.86665007282753 + ], + [ + 66.56252666290803, + 17.06129780775598 + ], + [ + 66.44768397942434, + 16.86665007282753 + ], + [ + 66.6773693463917, + 16.86665007282753 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 16.86665007282753 + ], + [ + 66.44768397942434, + 16.86665007282753 + ], + [ + 66.56252666290803, + 16.672002337899077 + ], + [ + 66.6773693463917, + 16.86665007282753 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 16.86665007282753 + ], + [ + 66.56252666290803, + 16.672002337899077 + ], + [ + 66.79221202987537, + 16.672002337899077 + ], + [ + 66.6773693463917, + 16.86665007282753 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 16.86665007282753 + ], + [ + 66.79221202987537, + 16.672002337899077 + ], + [ + 66.90705471335906, + 16.86665007282753 + ], + [ + 66.6773693463917, + 16.86665007282753 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 17.255945542684437 + ], + [ + 66.90705471335906, + 17.255945542684437 + ], + [ + 66.79221202987537, + 17.45059327761289 + ], + [ + 66.6773693463917, + 17.255945542684437 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 17.255945542684437 + ], + [ + 66.79221202987537, + 17.45059327761289 + ], + [ + 66.56252666290803, + 17.45059327761289 + ], + [ + 66.6773693463917, + 17.255945542684437 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 17.255945542684437 + ], + [ + 66.56252666290803, + 17.45059327761289 + ], + [ + 66.44768397942434, + 17.255945542684437 + ], + [ + 66.6773693463917, + 17.255945542684437 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 17.255945542684437 + ], + [ + 66.44768397942434, + 17.255945542684437 + ], + [ + 66.56252666290803, + 17.061297807755984 + ], + [ + 66.6773693463917, + 17.255945542684437 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 17.255945542684437 + ], + [ + 66.56252666290803, + 17.061297807755984 + ], + [ + 66.79221202987537, + 17.061297807755984 + ], + [ + 66.6773693463917, + 17.255945542684437 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 17.255945542684437 + ], + [ + 66.79221202987537, + 17.061297807755984 + ], + [ + 66.90705471335906, + 17.255945542684437 + ], + [ + 66.6773693463917, + 17.255945542684437 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 17.64524101254134 + ], + [ + 66.90705471335906, + 17.64524101254134 + ], + [ + 66.79221202987537, + 17.839888747469793 + ], + [ + 66.6773693463917, + 17.64524101254134 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 17.64524101254134 + ], + [ + 66.79221202987537, + 17.839888747469793 + ], + [ + 66.56252666290803, + 17.839888747469793 + ], + [ + 66.6773693463917, + 17.64524101254134 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 17.64524101254134 + ], + [ + 66.56252666290803, + 17.839888747469793 + ], + [ + 66.44768397942434, + 17.64524101254134 + ], + [ + 66.6773693463917, + 17.64524101254134 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 17.64524101254134 + ], + [ + 66.44768397942434, + 17.64524101254134 + ], + [ + 66.56252666290803, + 17.45059327761289 + ], + [ + 66.6773693463917, + 17.64524101254134 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 17.64524101254134 + ], + [ + 66.56252666290803, + 17.45059327761289 + ], + [ + 66.79221202987537, + 17.45059327761289 + ], + [ + 66.6773693463917, + 17.64524101254134 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 17.64524101254134 + ], + [ + 66.79221202987537, + 17.45059327761289 + ], + [ + 66.90705471335906, + 17.64524101254134 + ], + [ + 66.6773693463917, + 17.64524101254134 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 18.03453648239825 + ], + [ + 66.90705471335906, + 18.03453648239825 + ], + [ + 66.79221202987537, + 18.2291842173267 + ], + [ + 66.6773693463917, + 18.03453648239825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 18.03453648239825 + ], + [ + 66.79221202987537, + 18.2291842173267 + ], + [ + 66.56252666290803, + 18.2291842173267 + ], + [ + 66.6773693463917, + 18.03453648239825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 18.03453648239825 + ], + [ + 66.56252666290803, + 18.2291842173267 + ], + [ + 66.44768397942434, + 18.03453648239825 + ], + [ + 66.6773693463917, + 18.03453648239825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 18.03453648239825 + ], + [ + 66.44768397942434, + 18.03453648239825 + ], + [ + 66.56252666290803, + 17.839888747469796 + ], + [ + 66.6773693463917, + 18.03453648239825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 18.03453648239825 + ], + [ + 66.56252666290803, + 17.839888747469796 + ], + [ + 66.79221202987537, + 17.839888747469796 + ], + [ + 66.6773693463917, + 18.03453648239825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 18.03453648239825 + ], + [ + 66.79221202987537, + 17.839888747469796 + ], + [ + 66.90705471335906, + 18.03453648239825 + ], + [ + 66.6773693463917, + 18.03453648239825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 18.423831952255156 + ], + [ + 66.90705471335906, + 18.423831952255156 + ], + [ + 66.79221202987537, + 18.61847968718361 + ], + [ + 66.6773693463917, + 18.423831952255156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 18.423831952255156 + ], + [ + 66.79221202987537, + 18.61847968718361 + ], + [ + 66.56252666290803, + 18.61847968718361 + ], + [ + 66.6773693463917, + 18.423831952255156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 18.423831952255156 + ], + [ + 66.56252666290803, + 18.61847968718361 + ], + [ + 66.44768397942434, + 18.423831952255156 + ], + [ + 66.6773693463917, + 18.423831952255156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 18.423831952255156 + ], + [ + 66.44768397942434, + 18.423831952255156 + ], + [ + 66.56252666290803, + 18.229184217326704 + ], + [ + 66.6773693463917, + 18.423831952255156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 18.423831952255156 + ], + [ + 66.56252666290803, + 18.229184217326704 + ], + [ + 66.79221202987537, + 18.229184217326704 + ], + [ + 66.6773693463917, + 18.423831952255156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 18.423831952255156 + ], + [ + 66.79221202987537, + 18.229184217326704 + ], + [ + 66.90705471335906, + 18.423831952255156 + ], + [ + 66.6773693463917, + 18.423831952255156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 18.81312742211206 + ], + [ + 66.90705471335906, + 18.81312742211206 + ], + [ + 66.79221202987537, + 19.007775157040513 + ], + [ + 66.6773693463917, + 18.81312742211206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 18.81312742211206 + ], + [ + 66.79221202987537, + 19.007775157040513 + ], + [ + 66.56252666290803, + 19.007775157040513 + ], + [ + 66.6773693463917, + 18.81312742211206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 18.81312742211206 + ], + [ + 66.56252666290803, + 19.007775157040513 + ], + [ + 66.44768397942434, + 18.81312742211206 + ], + [ + 66.6773693463917, + 18.81312742211206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 18.81312742211206 + ], + [ + 66.44768397942434, + 18.81312742211206 + ], + [ + 66.56252666290803, + 18.61847968718361 + ], + [ + 66.6773693463917, + 18.81312742211206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 18.81312742211206 + ], + [ + 66.56252666290803, + 18.61847968718361 + ], + [ + 66.79221202987537, + 18.61847968718361 + ], + [ + 66.6773693463917, + 18.81312742211206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 18.81312742211206 + ], + [ + 66.79221202987537, + 18.61847968718361 + ], + [ + 66.90705471335906, + 18.81312742211206 + ], + [ + 66.6773693463917, + 18.81312742211206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 19.20242289196897 + ], + [ + 66.90705471335906, + 19.20242289196897 + ], + [ + 66.79221202987537, + 19.39707062689742 + ], + [ + 66.6773693463917, + 19.20242289196897 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 19.20242289196897 + ], + [ + 66.79221202987537, + 19.39707062689742 + ], + [ + 66.56252666290803, + 19.39707062689742 + ], + [ + 66.6773693463917, + 19.20242289196897 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 19.20242289196897 + ], + [ + 66.56252666290803, + 19.39707062689742 + ], + [ + 66.44768397942434, + 19.20242289196897 + ], + [ + 66.6773693463917, + 19.20242289196897 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 19.20242289196897 + ], + [ + 66.44768397942434, + 19.20242289196897 + ], + [ + 66.56252666290803, + 19.007775157040516 + ], + [ + 66.6773693463917, + 19.20242289196897 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 19.20242289196897 + ], + [ + 66.56252666290803, + 19.007775157040516 + ], + [ + 66.79221202987537, + 19.007775157040516 + ], + [ + 66.6773693463917, + 19.20242289196897 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 19.20242289196897 + ], + [ + 66.79221202987537, + 19.007775157040516 + ], + [ + 66.90705471335906, + 19.20242289196897 + ], + [ + 66.6773693463917, + 19.20242289196897 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 19.591718361825876 + ], + [ + 66.90705471335906, + 19.591718361825876 + ], + [ + 66.79221202987537, + 19.78636609675433 + ], + [ + 66.6773693463917, + 19.591718361825876 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 19.591718361825876 + ], + [ + 66.79221202987537, + 19.78636609675433 + ], + [ + 66.56252666290803, + 19.78636609675433 + ], + [ + 66.6773693463917, + 19.591718361825876 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 19.591718361825876 + ], + [ + 66.56252666290803, + 19.78636609675433 + ], + [ + 66.44768397942434, + 19.591718361825876 + ], + [ + 66.6773693463917, + 19.591718361825876 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 19.591718361825876 + ], + [ + 66.44768397942434, + 19.591718361825876 + ], + [ + 66.56252666290803, + 19.397070626897424 + ], + [ + 66.6773693463917, + 19.591718361825876 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 19.591718361825876 + ], + [ + 66.56252666290803, + 19.397070626897424 + ], + [ + 66.79221202987537, + 19.397070626897424 + ], + [ + 66.6773693463917, + 19.591718361825876 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 19.591718361825876 + ], + [ + 66.79221202987537, + 19.397070626897424 + ], + [ + 66.90705471335906, + 19.591718361825876 + ], + [ + 66.6773693463917, + 19.591718361825876 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 19.98101383168278 + ], + [ + 66.90705471335906, + 19.98101383168278 + ], + [ + 66.79221202987537, + 20.175661566611232 + ], + [ + 66.6773693463917, + 19.98101383168278 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 19.98101383168278 + ], + [ + 66.79221202987537, + 20.175661566611232 + ], + [ + 66.56252666290803, + 20.175661566611232 + ], + [ + 66.6773693463917, + 19.98101383168278 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 19.98101383168278 + ], + [ + 66.56252666290803, + 20.175661566611232 + ], + [ + 66.44768397942434, + 19.98101383168278 + ], + [ + 66.6773693463917, + 19.98101383168278 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 19.98101383168278 + ], + [ + 66.44768397942434, + 19.98101383168278 + ], + [ + 66.56252666290803, + 19.78636609675433 + ], + [ + 66.6773693463917, + 19.98101383168278 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 19.98101383168278 + ], + [ + 66.56252666290803, + 19.78636609675433 + ], + [ + 66.79221202987537, + 19.78636609675433 + ], + [ + 66.6773693463917, + 19.98101383168278 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 19.98101383168278 + ], + [ + 66.79221202987537, + 19.78636609675433 + ], + [ + 66.90705471335906, + 19.98101383168278 + ], + [ + 66.6773693463917, + 19.98101383168278 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 20.370309301539685 + ], + [ + 66.90705471335906, + 20.370309301539685 + ], + [ + 66.79221202987537, + 20.564957036468137 + ], + [ + 66.6773693463917, + 20.370309301539685 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 20.370309301539685 + ], + [ + 66.79221202987537, + 20.564957036468137 + ], + [ + 66.56252666290803, + 20.564957036468137 + ], + [ + 66.6773693463917, + 20.370309301539685 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 20.370309301539685 + ], + [ + 66.56252666290803, + 20.564957036468137 + ], + [ + 66.44768397942434, + 20.370309301539685 + ], + [ + 66.6773693463917, + 20.370309301539685 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 20.370309301539685 + ], + [ + 66.44768397942434, + 20.370309301539685 + ], + [ + 66.56252666290803, + 20.175661566611232 + ], + [ + 66.6773693463917, + 20.370309301539685 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 20.370309301539685 + ], + [ + 66.56252666290803, + 20.175661566611232 + ], + [ + 66.79221202987537, + 20.175661566611232 + ], + [ + 66.6773693463917, + 20.370309301539685 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 20.370309301539685 + ], + [ + 66.79221202987537, + 20.175661566611232 + ], + [ + 66.90705471335906, + 20.370309301539685 + ], + [ + 66.6773693463917, + 20.370309301539685 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 20.759604771396592 + ], + [ + 66.90705471335906, + 20.759604771396592 + ], + [ + 66.79221202987537, + 20.954252506325044 + ], + [ + 66.6773693463917, + 20.759604771396592 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 20.759604771396592 + ], + [ + 66.79221202987537, + 20.954252506325044 + ], + [ + 66.56252666290803, + 20.954252506325044 + ], + [ + 66.6773693463917, + 20.759604771396592 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 20.759604771396592 + ], + [ + 66.56252666290803, + 20.954252506325044 + ], + [ + 66.44768397942434, + 20.759604771396592 + ], + [ + 66.6773693463917, + 20.759604771396592 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 20.759604771396592 + ], + [ + 66.44768397942434, + 20.759604771396592 + ], + [ + 66.56252666290803, + 20.56495703646814 + ], + [ + 66.6773693463917, + 20.759604771396592 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 20.759604771396592 + ], + [ + 66.56252666290803, + 20.56495703646814 + ], + [ + 66.79221202987537, + 20.56495703646814 + ], + [ + 66.6773693463917, + 20.759604771396592 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 20.759604771396592 + ], + [ + 66.79221202987537, + 20.56495703646814 + ], + [ + 66.90705471335906, + 20.759604771396592 + ], + [ + 66.6773693463917, + 20.759604771396592 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 21.1489002412535 + ], + [ + 66.90705471335906, + 21.1489002412535 + ], + [ + 66.79221202987537, + 21.343547976181952 + ], + [ + 66.6773693463917, + 21.1489002412535 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 21.1489002412535 + ], + [ + 66.79221202987537, + 21.343547976181952 + ], + [ + 66.56252666290803, + 21.343547976181952 + ], + [ + 66.6773693463917, + 21.1489002412535 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 21.1489002412535 + ], + [ + 66.56252666290803, + 21.343547976181952 + ], + [ + 66.44768397942434, + 21.1489002412535 + ], + [ + 66.6773693463917, + 21.1489002412535 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 21.1489002412535 + ], + [ + 66.44768397942434, + 21.1489002412535 + ], + [ + 66.56252666290803, + 20.954252506325048 + ], + [ + 66.6773693463917, + 21.1489002412535 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 21.1489002412535 + ], + [ + 66.56252666290803, + 20.954252506325048 + ], + [ + 66.79221202987537, + 20.954252506325048 + ], + [ + 66.6773693463917, + 21.1489002412535 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 21.1489002412535 + ], + [ + 66.79221202987537, + 20.954252506325048 + ], + [ + 66.90705471335906, + 21.1489002412535 + ], + [ + 66.6773693463917, + 21.1489002412535 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 21.538195711110404 + ], + [ + 66.90705471335906, + 21.538195711110404 + ], + [ + 66.79221202987537, + 21.732843446038856 + ], + [ + 66.6773693463917, + 21.538195711110404 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 21.538195711110404 + ], + [ + 66.79221202987537, + 21.732843446038856 + ], + [ + 66.56252666290803, + 21.732843446038856 + ], + [ + 66.6773693463917, + 21.538195711110404 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 21.538195711110404 + ], + [ + 66.56252666290803, + 21.732843446038856 + ], + [ + 66.44768397942434, + 21.538195711110404 + ], + [ + 66.6773693463917, + 21.538195711110404 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 21.538195711110404 + ], + [ + 66.44768397942434, + 21.538195711110404 + ], + [ + 66.56252666290803, + 21.343547976181952 + ], + [ + 66.6773693463917, + 21.538195711110404 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 21.538195711110404 + ], + [ + 66.56252666290803, + 21.343547976181952 + ], + [ + 66.79221202987537, + 21.343547976181952 + ], + [ + 66.6773693463917, + 21.538195711110404 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 21.538195711110404 + ], + [ + 66.79221202987537, + 21.343547976181952 + ], + [ + 66.90705471335906, + 21.538195711110404 + ], + [ + 66.6773693463917, + 21.538195711110404 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 21.927491180967312 + ], + [ + 66.90705471335906, + 21.927491180967312 + ], + [ + 66.79221202987537, + 22.122138915895764 + ], + [ + 66.6773693463917, + 21.927491180967312 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 21.927491180967312 + ], + [ + 66.79221202987537, + 22.122138915895764 + ], + [ + 66.56252666290803, + 22.122138915895764 + ], + [ + 66.6773693463917, + 21.927491180967312 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 21.927491180967312 + ], + [ + 66.56252666290803, + 22.122138915895764 + ], + [ + 66.44768397942434, + 21.927491180967312 + ], + [ + 66.6773693463917, + 21.927491180967312 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 21.927491180967312 + ], + [ + 66.44768397942434, + 21.927491180967312 + ], + [ + 66.56252666290803, + 21.73284344603886 + ], + [ + 66.6773693463917, + 21.927491180967312 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 21.927491180967312 + ], + [ + 66.56252666290803, + 21.73284344603886 + ], + [ + 66.79221202987537, + 21.73284344603886 + ], + [ + 66.6773693463917, + 21.927491180967312 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 21.927491180967312 + ], + [ + 66.79221202987537, + 21.73284344603886 + ], + [ + 66.90705471335906, + 21.927491180967312 + ], + [ + 66.6773693463917, + 21.927491180967312 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 22.31678665082422 + ], + [ + 66.90705471335906, + 22.31678665082422 + ], + [ + 66.79221202987537, + 22.511434385752672 + ], + [ + 66.6773693463917, + 22.31678665082422 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 22.31678665082422 + ], + [ + 66.79221202987537, + 22.511434385752672 + ], + [ + 66.56252666290803, + 22.511434385752672 + ], + [ + 66.6773693463917, + 22.31678665082422 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 22.31678665082422 + ], + [ + 66.56252666290803, + 22.511434385752672 + ], + [ + 66.44768397942434, + 22.31678665082422 + ], + [ + 66.6773693463917, + 22.31678665082422 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 22.31678665082422 + ], + [ + 66.44768397942434, + 22.31678665082422 + ], + [ + 66.56252666290803, + 22.122138915895768 + ], + [ + 66.6773693463917, + 22.31678665082422 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 22.31678665082422 + ], + [ + 66.56252666290803, + 22.122138915895768 + ], + [ + 66.79221202987537, + 22.122138915895768 + ], + [ + 66.6773693463917, + 22.31678665082422 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 22.31678665082422 + ], + [ + 66.79221202987537, + 22.122138915895768 + ], + [ + 66.90705471335906, + 22.31678665082422 + ], + [ + 66.6773693463917, + 22.31678665082422 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 22.706082120681124 + ], + [ + 66.90705471335906, + 22.706082120681124 + ], + [ + 66.79221202987537, + 22.900729855609576 + ], + [ + 66.6773693463917, + 22.706082120681124 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 22.706082120681124 + ], + [ + 66.79221202987537, + 22.900729855609576 + ], + [ + 66.56252666290803, + 22.900729855609576 + ], + [ + 66.6773693463917, + 22.706082120681124 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 22.706082120681124 + ], + [ + 66.56252666290803, + 22.900729855609576 + ], + [ + 66.44768397942434, + 22.706082120681124 + ], + [ + 66.6773693463917, + 22.706082120681124 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 22.706082120681124 + ], + [ + 66.44768397942434, + 22.706082120681124 + ], + [ + 66.56252666290803, + 22.511434385752672 + ], + [ + 66.6773693463917, + 22.706082120681124 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 22.706082120681124 + ], + [ + 66.56252666290803, + 22.511434385752672 + ], + [ + 66.79221202987537, + 22.511434385752672 + ], + [ + 66.6773693463917, + 22.706082120681124 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 22.706082120681124 + ], + [ + 66.79221202987537, + 22.511434385752672 + ], + [ + 66.90705471335906, + 22.706082120681124 + ], + [ + 66.6773693463917, + 22.706082120681124 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 23.095377590538032 + ], + [ + 66.90705471335906, + 23.095377590538032 + ], + [ + 66.79221202987537, + 23.290025325466484 + ], + [ + 66.6773693463917, + 23.095377590538032 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 23.095377590538032 + ], + [ + 66.79221202987537, + 23.290025325466484 + ], + [ + 66.56252666290803, + 23.290025325466484 + ], + [ + 66.6773693463917, + 23.095377590538032 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 23.095377590538032 + ], + [ + 66.56252666290803, + 23.290025325466484 + ], + [ + 66.44768397942434, + 23.095377590538032 + ], + [ + 66.6773693463917, + 23.095377590538032 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 23.095377590538032 + ], + [ + 66.44768397942434, + 23.095377590538032 + ], + [ + 66.56252666290803, + 22.90072985560958 + ], + [ + 66.6773693463917, + 23.095377590538032 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 23.095377590538032 + ], + [ + 66.56252666290803, + 22.90072985560958 + ], + [ + 66.79221202987537, + 22.90072985560958 + ], + [ + 66.6773693463917, + 23.095377590538032 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 23.095377590538032 + ], + [ + 66.79221202987537, + 22.90072985560958 + ], + [ + 66.90705471335906, + 23.095377590538032 + ], + [ + 66.6773693463917, + 23.095377590538032 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 23.48467306039494 + ], + [ + 66.90705471335906, + 23.48467306039494 + ], + [ + 66.79221202987537, + 23.67932079532339 + ], + [ + 66.6773693463917, + 23.48467306039494 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 23.48467306039494 + ], + [ + 66.79221202987537, + 23.67932079532339 + ], + [ + 66.56252666290803, + 23.67932079532339 + ], + [ + 66.6773693463917, + 23.48467306039494 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 23.48467306039494 + ], + [ + 66.56252666290803, + 23.67932079532339 + ], + [ + 66.44768397942434, + 23.48467306039494 + ], + [ + 66.6773693463917, + 23.48467306039494 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 23.48467306039494 + ], + [ + 66.44768397942434, + 23.48467306039494 + ], + [ + 66.56252666290803, + 23.290025325466488 + ], + [ + 66.6773693463917, + 23.48467306039494 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 23.48467306039494 + ], + [ + 66.56252666290803, + 23.290025325466488 + ], + [ + 66.79221202987537, + 23.290025325466488 + ], + [ + 66.6773693463917, + 23.48467306039494 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 23.48467306039494 + ], + [ + 66.79221202987537, + 23.290025325466488 + ], + [ + 66.90705471335906, + 23.48467306039494 + ], + [ + 66.6773693463917, + 23.48467306039494 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 23.873968530251844 + ], + [ + 66.90705471335906, + 23.873968530251844 + ], + [ + 66.79221202987537, + 24.068616265180296 + ], + [ + 66.6773693463917, + 23.873968530251844 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 23.873968530251844 + ], + [ + 66.79221202987537, + 24.068616265180296 + ], + [ + 66.56252666290803, + 24.068616265180296 + ], + [ + 66.6773693463917, + 23.873968530251844 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 23.873968530251844 + ], + [ + 66.56252666290803, + 24.068616265180296 + ], + [ + 66.44768397942434, + 23.873968530251844 + ], + [ + 66.6773693463917, + 23.873968530251844 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 23.873968530251844 + ], + [ + 66.44768397942434, + 23.873968530251844 + ], + [ + 66.56252666290803, + 23.67932079532339 + ], + [ + 66.6773693463917, + 23.873968530251844 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 23.873968530251844 + ], + [ + 66.56252666290803, + 23.67932079532339 + ], + [ + 66.79221202987537, + 23.67932079532339 + ], + [ + 66.6773693463917, + 23.873968530251844 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 23.873968530251844 + ], + [ + 66.79221202987537, + 23.67932079532339 + ], + [ + 66.90705471335906, + 23.873968530251844 + ], + [ + 66.6773693463917, + 23.873968530251844 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 24.263264000108748 + ], + [ + 66.90705471335906, + 24.263264000108748 + ], + [ + 66.79221202987537, + 24.4579117350372 + ], + [ + 66.6773693463917, + 24.263264000108748 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 24.263264000108748 + ], + [ + 66.79221202987537, + 24.4579117350372 + ], + [ + 66.56252666290803, + 24.4579117350372 + ], + [ + 66.6773693463917, + 24.263264000108748 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 24.263264000108748 + ], + [ + 66.56252666290803, + 24.4579117350372 + ], + [ + 66.44768397942434, + 24.263264000108748 + ], + [ + 66.6773693463917, + 24.263264000108748 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 24.263264000108748 + ], + [ + 66.44768397942434, + 24.263264000108748 + ], + [ + 66.56252666290803, + 24.068616265180296 + ], + [ + 66.6773693463917, + 24.263264000108748 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 24.263264000108748 + ], + [ + 66.56252666290803, + 24.068616265180296 + ], + [ + 66.79221202987537, + 24.068616265180296 + ], + [ + 66.6773693463917, + 24.263264000108748 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 24.263264000108748 + ], + [ + 66.79221202987537, + 24.068616265180296 + ], + [ + 66.90705471335906, + 24.263264000108748 + ], + [ + 66.6773693463917, + 24.263264000108748 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 24.652559469965656 + ], + [ + 66.90705471335906, + 24.652559469965656 + ], + [ + 66.79221202987537, + 24.847207204894108 + ], + [ + 66.6773693463917, + 24.652559469965656 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 24.652559469965656 + ], + [ + 66.79221202987537, + 24.847207204894108 + ], + [ + 66.56252666290803, + 24.847207204894108 + ], + [ + 66.6773693463917, + 24.652559469965656 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 24.652559469965656 + ], + [ + 66.56252666290803, + 24.847207204894108 + ], + [ + 66.44768397942434, + 24.652559469965656 + ], + [ + 66.6773693463917, + 24.652559469965656 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 24.652559469965656 + ], + [ + 66.44768397942434, + 24.652559469965656 + ], + [ + 66.56252666290803, + 24.457911735037204 + ], + [ + 66.6773693463917, + 24.652559469965656 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 24.652559469965656 + ], + [ + 66.56252666290803, + 24.457911735037204 + ], + [ + 66.79221202987537, + 24.457911735037204 + ], + [ + 66.6773693463917, + 24.652559469965656 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 24.652559469965656 + ], + [ + 66.79221202987537, + 24.457911735037204 + ], + [ + 66.90705471335906, + 24.652559469965656 + ], + [ + 66.6773693463917, + 24.652559469965656 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 25.041854939822564 + ], + [ + 66.90705471335906, + 25.041854939822564 + ], + [ + 66.79221202987537, + 25.236502674751016 + ], + [ + 66.6773693463917, + 25.041854939822564 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 25.041854939822564 + ], + [ + 66.79221202987537, + 25.236502674751016 + ], + [ + 66.56252666290803, + 25.236502674751016 + ], + [ + 66.6773693463917, + 25.041854939822564 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 25.041854939822564 + ], + [ + 66.56252666290803, + 25.236502674751016 + ], + [ + 66.44768397942434, + 25.041854939822564 + ], + [ + 66.6773693463917, + 25.041854939822564 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 25.041854939822564 + ], + [ + 66.44768397942434, + 25.041854939822564 + ], + [ + 66.56252666290803, + 24.84720720489411 + ], + [ + 66.6773693463917, + 25.041854939822564 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 25.041854939822564 + ], + [ + 66.56252666290803, + 24.84720720489411 + ], + [ + 66.79221202987537, + 24.84720720489411 + ], + [ + 66.6773693463917, + 25.041854939822564 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 25.041854939822564 + ], + [ + 66.79221202987537, + 24.84720720489411 + ], + [ + 66.90705471335906, + 25.041854939822564 + ], + [ + 66.6773693463917, + 25.041854939822564 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 25.431150409679468 + ], + [ + 66.90705471335906, + 25.431150409679468 + ], + [ + 66.79221202987537, + 25.62579814460792 + ], + [ + 66.6773693463917, + 25.431150409679468 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 25.431150409679468 + ], + [ + 66.79221202987537, + 25.62579814460792 + ], + [ + 66.56252666290803, + 25.62579814460792 + ], + [ + 66.6773693463917, + 25.431150409679468 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 25.431150409679468 + ], + [ + 66.56252666290803, + 25.62579814460792 + ], + [ + 66.44768397942434, + 25.431150409679468 + ], + [ + 66.6773693463917, + 25.431150409679468 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 25.431150409679468 + ], + [ + 66.44768397942434, + 25.431150409679468 + ], + [ + 66.56252666290803, + 25.236502674751016 + ], + [ + 66.6773693463917, + 25.431150409679468 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 25.431150409679468 + ], + [ + 66.56252666290803, + 25.236502674751016 + ], + [ + 66.79221202987537, + 25.236502674751016 + ], + [ + 66.6773693463917, + 25.431150409679468 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 25.431150409679468 + ], + [ + 66.79221202987537, + 25.236502674751016 + ], + [ + 66.90705471335906, + 25.431150409679468 + ], + [ + 66.6773693463917, + 25.431150409679468 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 25.820445879536376 + ], + [ + 66.90705471335906, + 25.820445879536376 + ], + [ + 66.79221202987537, + 26.015093614464828 + ], + [ + 66.6773693463917, + 25.820445879536376 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 25.820445879536376 + ], + [ + 66.79221202987537, + 26.015093614464828 + ], + [ + 66.56252666290803, + 26.015093614464828 + ], + [ + 66.6773693463917, + 25.820445879536376 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 25.820445879536376 + ], + [ + 66.56252666290803, + 26.015093614464828 + ], + [ + 66.44768397942434, + 25.820445879536376 + ], + [ + 66.6773693463917, + 25.820445879536376 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 25.820445879536376 + ], + [ + 66.44768397942434, + 25.820445879536376 + ], + [ + 66.56252666290803, + 25.625798144607923 + ], + [ + 66.6773693463917, + 25.820445879536376 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 25.820445879536376 + ], + [ + 66.56252666290803, + 25.625798144607923 + ], + [ + 66.79221202987537, + 25.625798144607923 + ], + [ + 66.6773693463917, + 25.820445879536376 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 25.820445879536376 + ], + [ + 66.79221202987537, + 25.625798144607923 + ], + [ + 66.90705471335906, + 25.820445879536376 + ], + [ + 66.6773693463917, + 25.820445879536376 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 26.209741349393283 + ], + [ + 66.90705471335906, + 26.209741349393283 + ], + [ + 66.79221202987537, + 26.404389084321735 + ], + [ + 66.6773693463917, + 26.209741349393283 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 26.209741349393283 + ], + [ + 66.79221202987537, + 26.404389084321735 + ], + [ + 66.56252666290803, + 26.404389084321735 + ], + [ + 66.6773693463917, + 26.209741349393283 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 26.209741349393283 + ], + [ + 66.56252666290803, + 26.404389084321735 + ], + [ + 66.44768397942434, + 26.209741349393283 + ], + [ + 66.6773693463917, + 26.209741349393283 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 26.209741349393283 + ], + [ + 66.44768397942434, + 26.209741349393283 + ], + [ + 66.56252666290803, + 26.01509361446483 + ], + [ + 66.6773693463917, + 26.209741349393283 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 26.209741349393283 + ], + [ + 66.56252666290803, + 26.01509361446483 + ], + [ + 66.79221202987537, + 26.01509361446483 + ], + [ + 66.6773693463917, + 26.209741349393283 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 26.209741349393283 + ], + [ + 66.79221202987537, + 26.01509361446483 + ], + [ + 66.90705471335906, + 26.209741349393283 + ], + [ + 66.6773693463917, + 26.209741349393283 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 26.599036819250188 + ], + [ + 66.90705471335906, + 26.599036819250188 + ], + [ + 66.79221202987537, + 26.79368455417864 + ], + [ + 66.6773693463917, + 26.599036819250188 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 26.599036819250188 + ], + [ + 66.79221202987537, + 26.79368455417864 + ], + [ + 66.56252666290803, + 26.79368455417864 + ], + [ + 66.6773693463917, + 26.599036819250188 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 26.599036819250188 + ], + [ + 66.56252666290803, + 26.79368455417864 + ], + [ + 66.44768397942434, + 26.599036819250188 + ], + [ + 66.6773693463917, + 26.599036819250188 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 26.599036819250188 + ], + [ + 66.44768397942434, + 26.599036819250188 + ], + [ + 66.56252666290803, + 26.404389084321735 + ], + [ + 66.6773693463917, + 26.599036819250188 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 26.599036819250188 + ], + [ + 66.56252666290803, + 26.404389084321735 + ], + [ + 66.79221202987537, + 26.404389084321735 + ], + [ + 66.6773693463917, + 26.599036819250188 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 26.599036819250188 + ], + [ + 66.79221202987537, + 26.404389084321735 + ], + [ + 66.90705471335906, + 26.599036819250188 + ], + [ + 66.6773693463917, + 26.599036819250188 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 26.988332289107095 + ], + [ + 66.90705471335906, + 26.988332289107095 + ], + [ + 66.79221202987537, + 27.182980024035547 + ], + [ + 66.6773693463917, + 26.988332289107095 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 26.988332289107095 + ], + [ + 66.79221202987537, + 27.182980024035547 + ], + [ + 66.56252666290803, + 27.182980024035547 + ], + [ + 66.6773693463917, + 26.988332289107095 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 26.988332289107095 + ], + [ + 66.56252666290803, + 27.182980024035547 + ], + [ + 66.44768397942434, + 26.988332289107095 + ], + [ + 66.6773693463917, + 26.988332289107095 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 26.988332289107095 + ], + [ + 66.44768397942434, + 26.988332289107095 + ], + [ + 66.56252666290803, + 26.793684554178643 + ], + [ + 66.6773693463917, + 26.988332289107095 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 26.988332289107095 + ], + [ + 66.56252666290803, + 26.793684554178643 + ], + [ + 66.79221202987537, + 26.793684554178643 + ], + [ + 66.6773693463917, + 26.988332289107095 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 26.988332289107095 + ], + [ + 66.79221202987537, + 26.793684554178643 + ], + [ + 66.90705471335906, + 26.988332289107095 + ], + [ + 66.6773693463917, + 26.988332289107095 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 27.377627758964003 + ], + [ + 66.90705471335906, + 27.377627758964003 + ], + [ + 66.79221202987537, + 27.572275493892455 + ], + [ + 66.6773693463917, + 27.377627758964003 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 27.377627758964003 + ], + [ + 66.79221202987537, + 27.572275493892455 + ], + [ + 66.56252666290803, + 27.572275493892455 + ], + [ + 66.6773693463917, + 27.377627758964003 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 27.377627758964003 + ], + [ + 66.56252666290803, + 27.572275493892455 + ], + [ + 66.44768397942434, + 27.377627758964003 + ], + [ + 66.6773693463917, + 27.377627758964003 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 27.377627758964003 + ], + [ + 66.44768397942434, + 27.377627758964003 + ], + [ + 66.56252666290803, + 27.18298002403555 + ], + [ + 66.6773693463917, + 27.377627758964003 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 27.377627758964003 + ], + [ + 66.56252666290803, + 27.18298002403555 + ], + [ + 66.79221202987537, + 27.18298002403555 + ], + [ + 66.6773693463917, + 27.377627758964003 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 27.377627758964003 + ], + [ + 66.79221202987537, + 27.18298002403555 + ], + [ + 66.90705471335906, + 27.377627758964003 + ], + [ + 66.6773693463917, + 27.377627758964003 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 27.766923228820907 + ], + [ + 66.90705471335906, + 27.766923228820907 + ], + [ + 66.79221202987537, + 27.96157096374936 + ], + [ + 66.6773693463917, + 27.766923228820907 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 27.766923228820907 + ], + [ + 66.79221202987537, + 27.96157096374936 + ], + [ + 66.56252666290803, + 27.96157096374936 + ], + [ + 66.6773693463917, + 27.766923228820907 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 27.766923228820907 + ], + [ + 66.56252666290803, + 27.96157096374936 + ], + [ + 66.44768397942434, + 27.766923228820907 + ], + [ + 66.6773693463917, + 27.766923228820907 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 27.766923228820907 + ], + [ + 66.44768397942434, + 27.766923228820907 + ], + [ + 66.56252666290803, + 27.572275493892455 + ], + [ + 66.6773693463917, + 27.766923228820907 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 27.766923228820907 + ], + [ + 66.56252666290803, + 27.572275493892455 + ], + [ + 66.79221202987537, + 27.572275493892455 + ], + [ + 66.6773693463917, + 27.766923228820907 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 27.766923228820907 + ], + [ + 66.79221202987537, + 27.572275493892455 + ], + [ + 66.90705471335906, + 27.766923228820907 + ], + [ + 66.6773693463917, + 27.766923228820907 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 28.156218698677815 + ], + [ + 66.90705471335906, + 28.156218698677815 + ], + [ + 66.79221202987537, + 28.350866433606267 + ], + [ + 66.6773693463917, + 28.156218698677815 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 28.156218698677815 + ], + [ + 66.79221202987537, + 28.350866433606267 + ], + [ + 66.56252666290803, + 28.350866433606267 + ], + [ + 66.6773693463917, + 28.156218698677815 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 28.156218698677815 + ], + [ + 66.56252666290803, + 28.350866433606267 + ], + [ + 66.44768397942434, + 28.156218698677815 + ], + [ + 66.6773693463917, + 28.156218698677815 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 28.156218698677815 + ], + [ + 66.44768397942434, + 28.156218698677815 + ], + [ + 66.56252666290803, + 27.961570963749363 + ], + [ + 66.6773693463917, + 28.156218698677815 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 28.156218698677815 + ], + [ + 66.56252666290803, + 27.961570963749363 + ], + [ + 66.79221202987537, + 27.961570963749363 + ], + [ + 66.6773693463917, + 28.156218698677815 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 28.156218698677815 + ], + [ + 66.79221202987537, + 27.961570963749363 + ], + [ + 66.90705471335906, + 28.156218698677815 + ], + [ + 66.6773693463917, + 28.156218698677815 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 28.54551416853472 + ], + [ + 66.90705471335906, + 28.54551416853472 + ], + [ + 66.79221202987537, + 28.74016190346317 + ], + [ + 66.6773693463917, + 28.54551416853472 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 28.54551416853472 + ], + [ + 66.79221202987537, + 28.74016190346317 + ], + [ + 66.56252666290803, + 28.74016190346317 + ], + [ + 66.6773693463917, + 28.54551416853472 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 28.54551416853472 + ], + [ + 66.56252666290803, + 28.74016190346317 + ], + [ + 66.44768397942434, + 28.54551416853472 + ], + [ + 66.6773693463917, + 28.54551416853472 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 28.54551416853472 + ], + [ + 66.44768397942434, + 28.54551416853472 + ], + [ + 66.56252666290803, + 28.350866433606267 + ], + [ + 66.6773693463917, + 28.54551416853472 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 28.54551416853472 + ], + [ + 66.56252666290803, + 28.350866433606267 + ], + [ + 66.79221202987537, + 28.350866433606267 + ], + [ + 66.6773693463917, + 28.54551416853472 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 28.54551416853472 + ], + [ + 66.79221202987537, + 28.350866433606267 + ], + [ + 66.90705471335906, + 28.54551416853472 + ], + [ + 66.6773693463917, + 28.54551416853472 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 28.934809638391627 + ], + [ + 66.90705471335906, + 28.934809638391627 + ], + [ + 66.79221202987537, + 29.12945737332008 + ], + [ + 66.6773693463917, + 28.934809638391627 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 28.934809638391627 + ], + [ + 66.79221202987537, + 29.12945737332008 + ], + [ + 66.56252666290803, + 29.12945737332008 + ], + [ + 66.6773693463917, + 28.934809638391627 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 28.934809638391627 + ], + [ + 66.56252666290803, + 29.12945737332008 + ], + [ + 66.44768397942434, + 28.934809638391627 + ], + [ + 66.6773693463917, + 28.934809638391627 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 28.934809638391627 + ], + [ + 66.44768397942434, + 28.934809638391627 + ], + [ + 66.56252666290803, + 28.740161903463175 + ], + [ + 66.6773693463917, + 28.934809638391627 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 28.934809638391627 + ], + [ + 66.56252666290803, + 28.740161903463175 + ], + [ + 66.79221202987537, + 28.740161903463175 + ], + [ + 66.6773693463917, + 28.934809638391627 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 28.934809638391627 + ], + [ + 66.79221202987537, + 28.740161903463175 + ], + [ + 66.90705471335906, + 28.934809638391627 + ], + [ + 66.6773693463917, + 28.934809638391627 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 29.32410510824853 + ], + [ + 66.90705471335906, + 29.32410510824853 + ], + [ + 66.79221202987537, + 29.518752843176983 + ], + [ + 66.6773693463917, + 29.32410510824853 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 29.32410510824853 + ], + [ + 66.79221202987537, + 29.518752843176983 + ], + [ + 66.56252666290803, + 29.518752843176983 + ], + [ + 66.6773693463917, + 29.32410510824853 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 29.32410510824853 + ], + [ + 66.56252666290803, + 29.518752843176983 + ], + [ + 66.44768397942434, + 29.32410510824853 + ], + [ + 66.6773693463917, + 29.32410510824853 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 29.32410510824853 + ], + [ + 66.44768397942434, + 29.32410510824853 + ], + [ + 66.56252666290803, + 29.12945737332008 + ], + [ + 66.6773693463917, + 29.32410510824853 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 29.32410510824853 + ], + [ + 66.56252666290803, + 29.12945737332008 + ], + [ + 66.79221202987537, + 29.12945737332008 + ], + [ + 66.6773693463917, + 29.32410510824853 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 29.32410510824853 + ], + [ + 66.79221202987537, + 29.12945737332008 + ], + [ + 66.90705471335906, + 29.32410510824853 + ], + [ + 66.6773693463917, + 29.32410510824853 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 29.71340057810544 + ], + [ + 66.90705471335906, + 29.71340057810544 + ], + [ + 66.79221202987537, + 29.90804831303389 + ], + [ + 66.6773693463917, + 29.71340057810544 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 29.71340057810544 + ], + [ + 66.79221202987537, + 29.90804831303389 + ], + [ + 66.56252666290803, + 29.90804831303389 + ], + [ + 66.6773693463917, + 29.71340057810544 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 29.71340057810544 + ], + [ + 66.56252666290803, + 29.90804831303389 + ], + [ + 66.44768397942434, + 29.71340057810544 + ], + [ + 66.6773693463917, + 29.71340057810544 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 29.71340057810544 + ], + [ + 66.44768397942434, + 29.71340057810544 + ], + [ + 66.56252666290803, + 29.518752843176987 + ], + [ + 66.6773693463917, + 29.71340057810544 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 29.71340057810544 + ], + [ + 66.56252666290803, + 29.518752843176987 + ], + [ + 66.79221202987537, + 29.518752843176987 + ], + [ + 66.6773693463917, + 29.71340057810544 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 29.71340057810544 + ], + [ + 66.79221202987537, + 29.518752843176987 + ], + [ + 66.90705471335906, + 29.71340057810544 + ], + [ + 66.6773693463917, + 29.71340057810544 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 30.102696047962343 + ], + [ + 66.90705471335906, + 30.102696047962343 + ], + [ + 66.79221202987537, + 30.297343782890795 + ], + [ + 66.6773693463917, + 30.102696047962343 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 30.102696047962343 + ], + [ + 66.79221202987537, + 30.297343782890795 + ], + [ + 66.56252666290803, + 30.297343782890795 + ], + [ + 66.6773693463917, + 30.102696047962343 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 30.102696047962343 + ], + [ + 66.56252666290803, + 30.297343782890795 + ], + [ + 66.44768397942434, + 30.102696047962343 + ], + [ + 66.6773693463917, + 30.102696047962343 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 30.102696047962343 + ], + [ + 66.44768397942434, + 30.102696047962343 + ], + [ + 66.56252666290803, + 29.90804831303389 + ], + [ + 66.6773693463917, + 30.102696047962343 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 30.102696047962343 + ], + [ + 66.56252666290803, + 29.90804831303389 + ], + [ + 66.79221202987537, + 29.90804831303389 + ], + [ + 66.6773693463917, + 30.102696047962343 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 30.102696047962343 + ], + [ + 66.79221202987537, + 29.90804831303389 + ], + [ + 66.90705471335906, + 30.102696047962343 + ], + [ + 66.6773693463917, + 30.102696047962343 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 30.49199151781925 + ], + [ + 66.90705471335906, + 30.49199151781925 + ], + [ + 66.79221202987537, + 30.686639252747703 + ], + [ + 66.6773693463917, + 30.49199151781925 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 30.49199151781925 + ], + [ + 66.79221202987537, + 30.686639252747703 + ], + [ + 66.56252666290803, + 30.686639252747703 + ], + [ + 66.6773693463917, + 30.49199151781925 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 30.49199151781925 + ], + [ + 66.56252666290803, + 30.686639252747703 + ], + [ + 66.44768397942434, + 30.49199151781925 + ], + [ + 66.6773693463917, + 30.49199151781925 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 30.49199151781925 + ], + [ + 66.44768397942434, + 30.49199151781925 + ], + [ + 66.56252666290803, + 30.2973437828908 + ], + [ + 66.6773693463917, + 30.49199151781925 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 30.49199151781925 + ], + [ + 66.56252666290803, + 30.2973437828908 + ], + [ + 66.79221202987537, + 30.2973437828908 + ], + [ + 66.6773693463917, + 30.49199151781925 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 30.49199151781925 + ], + [ + 66.79221202987537, + 30.2973437828908 + ], + [ + 66.90705471335906, + 30.49199151781925 + ], + [ + 66.6773693463917, + 30.49199151781925 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 30.88128698767616 + ], + [ + 66.90705471335906, + 30.88128698767616 + ], + [ + 66.79221202987537, + 31.07593472260461 + ], + [ + 66.6773693463917, + 30.88128698767616 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 30.88128698767616 + ], + [ + 66.79221202987537, + 31.07593472260461 + ], + [ + 66.56252666290803, + 31.07593472260461 + ], + [ + 66.6773693463917, + 30.88128698767616 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 30.88128698767616 + ], + [ + 66.56252666290803, + 31.07593472260461 + ], + [ + 66.44768397942434, + 30.88128698767616 + ], + [ + 66.6773693463917, + 30.88128698767616 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 30.88128698767616 + ], + [ + 66.44768397942434, + 30.88128698767616 + ], + [ + 66.56252666290803, + 30.686639252747707 + ], + [ + 66.6773693463917, + 30.88128698767616 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 30.88128698767616 + ], + [ + 66.56252666290803, + 30.686639252747707 + ], + [ + 66.79221202987537, + 30.686639252747707 + ], + [ + 66.6773693463917, + 30.88128698767616 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 30.88128698767616 + ], + [ + 66.79221202987537, + 30.686639252747707 + ], + [ + 66.90705471335906, + 30.88128698767616 + ], + [ + 66.6773693463917, + 30.88128698767616 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 31.270582457533063 + ], + [ + 66.90705471335906, + 31.270582457533063 + ], + [ + 66.79221202987537, + 31.465230192461515 + ], + [ + 66.6773693463917, + 31.270582457533063 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 31.270582457533063 + ], + [ + 66.79221202987537, + 31.465230192461515 + ], + [ + 66.56252666290803, + 31.465230192461515 + ], + [ + 66.6773693463917, + 31.270582457533063 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 31.270582457533063 + ], + [ + 66.56252666290803, + 31.465230192461515 + ], + [ + 66.44768397942434, + 31.270582457533063 + ], + [ + 66.6773693463917, + 31.270582457533063 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 31.270582457533063 + ], + [ + 66.44768397942434, + 31.270582457533063 + ], + [ + 66.56252666290803, + 31.07593472260461 + ], + [ + 66.6773693463917, + 31.270582457533063 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 31.270582457533063 + ], + [ + 66.56252666290803, + 31.07593472260461 + ], + [ + 66.79221202987537, + 31.07593472260461 + ], + [ + 66.6773693463917, + 31.270582457533063 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 31.270582457533063 + ], + [ + 66.79221202987537, + 31.07593472260461 + ], + [ + 66.90705471335906, + 31.270582457533063 + ], + [ + 66.6773693463917, + 31.270582457533063 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 31.65987792738997 + ], + [ + 66.90705471335906, + 31.65987792738997 + ], + [ + 66.79221202987537, + 31.854525662318423 + ], + [ + 66.6773693463917, + 31.65987792738997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 31.65987792738997 + ], + [ + 66.79221202987537, + 31.854525662318423 + ], + [ + 66.56252666290803, + 31.854525662318423 + ], + [ + 66.6773693463917, + 31.65987792738997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 31.65987792738997 + ], + [ + 66.56252666290803, + 31.854525662318423 + ], + [ + 66.44768397942434, + 31.65987792738997 + ], + [ + 66.6773693463917, + 31.65987792738997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 31.65987792738997 + ], + [ + 66.44768397942434, + 31.65987792738997 + ], + [ + 66.56252666290803, + 31.46523019246152 + ], + [ + 66.6773693463917, + 31.65987792738997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 31.65987792738997 + ], + [ + 66.56252666290803, + 31.46523019246152 + ], + [ + 66.79221202987537, + 31.46523019246152 + ], + [ + 66.6773693463917, + 31.65987792738997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 31.65987792738997 + ], + [ + 66.79221202987537, + 31.46523019246152 + ], + [ + 66.90705471335906, + 31.65987792738997 + ], + [ + 66.6773693463917, + 31.65987792738997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 32.049173397246875 + ], + [ + 66.90705471335906, + 32.049173397246875 + ], + [ + 66.79221202987537, + 32.24382113217533 + ], + [ + 66.6773693463917, + 32.049173397246875 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 32.049173397246875 + ], + [ + 66.79221202987537, + 32.24382113217533 + ], + [ + 66.56252666290803, + 32.24382113217533 + ], + [ + 66.6773693463917, + 32.049173397246875 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 32.049173397246875 + ], + [ + 66.56252666290803, + 32.24382113217533 + ], + [ + 66.44768397942434, + 32.049173397246875 + ], + [ + 66.6773693463917, + 32.049173397246875 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 32.049173397246875 + ], + [ + 66.44768397942434, + 32.049173397246875 + ], + [ + 66.56252666290803, + 31.854525662318423 + ], + [ + 66.6773693463917, + 32.049173397246875 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 32.049173397246875 + ], + [ + 66.56252666290803, + 31.854525662318423 + ], + [ + 66.79221202987537, + 31.854525662318423 + ], + [ + 66.6773693463917, + 32.049173397246875 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 32.049173397246875 + ], + [ + 66.79221202987537, + 31.854525662318423 + ], + [ + 66.90705471335906, + 32.049173397246875 + ], + [ + 66.6773693463917, + 32.049173397246875 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 32.438468867103786 + ], + [ + 66.90705471335906, + 32.438468867103786 + ], + [ + 66.79221202987537, + 32.63311660203224 + ], + [ + 66.6773693463917, + 32.438468867103786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 32.438468867103786 + ], + [ + 66.79221202987537, + 32.63311660203224 + ], + [ + 66.56252666290803, + 32.63311660203224 + ], + [ + 66.6773693463917, + 32.438468867103786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 32.438468867103786 + ], + [ + 66.56252666290803, + 32.63311660203224 + ], + [ + 66.44768397942434, + 32.438468867103786 + ], + [ + 66.6773693463917, + 32.438468867103786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 32.438468867103786 + ], + [ + 66.44768397942434, + 32.438468867103786 + ], + [ + 66.56252666290803, + 32.243821132175334 + ], + [ + 66.6773693463917, + 32.438468867103786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 32.438468867103786 + ], + [ + 66.56252666290803, + 32.243821132175334 + ], + [ + 66.79221202987537, + 32.243821132175334 + ], + [ + 66.6773693463917, + 32.438468867103786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 32.438468867103786 + ], + [ + 66.79221202987537, + 32.243821132175334 + ], + [ + 66.90705471335906, + 32.438468867103786 + ], + [ + 66.6773693463917, + 32.438468867103786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 32.82776433696069 + ], + [ + 66.90705471335906, + 32.82776433696069 + ], + [ + 66.79221202987537, + 33.02241207188914 + ], + [ + 66.6773693463917, + 32.82776433696069 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 32.82776433696069 + ], + [ + 66.79221202987537, + 33.02241207188914 + ], + [ + 66.56252666290803, + 33.02241207188914 + ], + [ + 66.6773693463917, + 32.82776433696069 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 32.82776433696069 + ], + [ + 66.56252666290803, + 33.02241207188914 + ], + [ + 66.44768397942434, + 32.82776433696069 + ], + [ + 66.6773693463917, + 32.82776433696069 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 32.82776433696069 + ], + [ + 66.44768397942434, + 32.82776433696069 + ], + [ + 66.56252666290803, + 32.63311660203224 + ], + [ + 66.6773693463917, + 32.82776433696069 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 32.82776433696069 + ], + [ + 66.56252666290803, + 32.63311660203224 + ], + [ + 66.79221202987537, + 32.63311660203224 + ], + [ + 66.6773693463917, + 32.82776433696069 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 32.82776433696069 + ], + [ + 66.79221202987537, + 32.63311660203224 + ], + [ + 66.90705471335906, + 32.82776433696069 + ], + [ + 66.6773693463917, + 32.82776433696069 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 33.217059806817595 + ], + [ + 66.90705471335906, + 33.217059806817595 + ], + [ + 66.79221202987537, + 33.41170754174605 + ], + [ + 66.6773693463917, + 33.217059806817595 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 33.217059806817595 + ], + [ + 66.79221202987537, + 33.41170754174605 + ], + [ + 66.56252666290803, + 33.41170754174605 + ], + [ + 66.6773693463917, + 33.217059806817595 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 33.217059806817595 + ], + [ + 66.56252666290803, + 33.41170754174605 + ], + [ + 66.44768397942434, + 33.217059806817595 + ], + [ + 66.6773693463917, + 33.217059806817595 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 33.217059806817595 + ], + [ + 66.44768397942434, + 33.217059806817595 + ], + [ + 66.56252666290803, + 33.02241207188914 + ], + [ + 66.6773693463917, + 33.217059806817595 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 33.217059806817595 + ], + [ + 66.56252666290803, + 33.02241207188914 + ], + [ + 66.79221202987537, + 33.02241207188914 + ], + [ + 66.6773693463917, + 33.217059806817595 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 33.217059806817595 + ], + [ + 66.79221202987537, + 33.02241207188914 + ], + [ + 66.90705471335906, + 33.217059806817595 + ], + [ + 66.6773693463917, + 33.217059806817595 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 33.6063552766745 + ], + [ + 66.90705471335906, + 33.6063552766745 + ], + [ + 66.79221202987537, + 33.80100301160295 + ], + [ + 66.6773693463917, + 33.6063552766745 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 33.6063552766745 + ], + [ + 66.79221202987537, + 33.80100301160295 + ], + [ + 66.56252666290803, + 33.80100301160295 + ], + [ + 66.6773693463917, + 33.6063552766745 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 33.6063552766745 + ], + [ + 66.56252666290803, + 33.80100301160295 + ], + [ + 66.44768397942434, + 33.6063552766745 + ], + [ + 66.6773693463917, + 33.6063552766745 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 33.6063552766745 + ], + [ + 66.44768397942434, + 33.6063552766745 + ], + [ + 66.56252666290803, + 33.41170754174605 + ], + [ + 66.6773693463917, + 33.6063552766745 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 33.6063552766745 + ], + [ + 66.56252666290803, + 33.41170754174605 + ], + [ + 66.79221202987537, + 33.41170754174605 + ], + [ + 66.6773693463917, + 33.6063552766745 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 33.6063552766745 + ], + [ + 66.79221202987537, + 33.41170754174605 + ], + [ + 66.90705471335906, + 33.6063552766745 + ], + [ + 66.6773693463917, + 33.6063552766745 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 33.9956507465314 + ], + [ + 66.90705471335906, + 33.9956507465314 + ], + [ + 66.79221202987537, + 34.190298481459855 + ], + [ + 66.6773693463917, + 33.9956507465314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 33.9956507465314 + ], + [ + 66.79221202987537, + 34.190298481459855 + ], + [ + 66.56252666290803, + 34.190298481459855 + ], + [ + 66.6773693463917, + 33.9956507465314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 33.9956507465314 + ], + [ + 66.56252666290803, + 34.190298481459855 + ], + [ + 66.44768397942434, + 33.9956507465314 + ], + [ + 66.6773693463917, + 33.9956507465314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 33.9956507465314 + ], + [ + 66.44768397942434, + 33.9956507465314 + ], + [ + 66.56252666290803, + 33.80100301160295 + ], + [ + 66.6773693463917, + 33.9956507465314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 33.9956507465314 + ], + [ + 66.56252666290803, + 33.80100301160295 + ], + [ + 66.79221202987537, + 33.80100301160295 + ], + [ + 66.6773693463917, + 33.9956507465314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 33.9956507465314 + ], + [ + 66.79221202987537, + 33.80100301160295 + ], + [ + 66.90705471335906, + 33.9956507465314 + ], + [ + 66.6773693463917, + 33.9956507465314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 34.384946216388315 + ], + [ + 66.90705471335906, + 34.384946216388315 + ], + [ + 66.79221202987537, + 34.57959395131677 + ], + [ + 66.6773693463917, + 34.384946216388315 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 34.384946216388315 + ], + [ + 66.79221202987537, + 34.57959395131677 + ], + [ + 66.56252666290803, + 34.57959395131677 + ], + [ + 66.6773693463917, + 34.384946216388315 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 34.384946216388315 + ], + [ + 66.56252666290803, + 34.57959395131677 + ], + [ + 66.44768397942434, + 34.384946216388315 + ], + [ + 66.6773693463917, + 34.384946216388315 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 34.384946216388315 + ], + [ + 66.44768397942434, + 34.384946216388315 + ], + [ + 66.56252666290803, + 34.19029848145986 + ], + [ + 66.6773693463917, + 34.384946216388315 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 34.384946216388315 + ], + [ + 66.56252666290803, + 34.19029848145986 + ], + [ + 66.79221202987537, + 34.19029848145986 + ], + [ + 66.6773693463917, + 34.384946216388315 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 34.384946216388315 + ], + [ + 66.79221202987537, + 34.19029848145986 + ], + [ + 66.90705471335906, + 34.384946216388315 + ], + [ + 66.6773693463917, + 34.384946216388315 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 34.774241686245226 + ], + [ + 66.90705471335906, + 34.774241686245226 + ], + [ + 66.79221202987537, + 34.96888942117368 + ], + [ + 66.6773693463917, + 34.774241686245226 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 34.774241686245226 + ], + [ + 66.79221202987537, + 34.96888942117368 + ], + [ + 66.56252666290803, + 34.96888942117368 + ], + [ + 66.6773693463917, + 34.774241686245226 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 34.774241686245226 + ], + [ + 66.56252666290803, + 34.96888942117368 + ], + [ + 66.44768397942434, + 34.774241686245226 + ], + [ + 66.6773693463917, + 34.774241686245226 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 34.774241686245226 + ], + [ + 66.44768397942434, + 34.774241686245226 + ], + [ + 66.56252666290803, + 34.579593951316774 + ], + [ + 66.6773693463917, + 34.774241686245226 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 34.774241686245226 + ], + [ + 66.56252666290803, + 34.579593951316774 + ], + [ + 66.79221202987537, + 34.579593951316774 + ], + [ + 66.6773693463917, + 34.774241686245226 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 34.774241686245226 + ], + [ + 66.79221202987537, + 34.579593951316774 + ], + [ + 66.90705471335906, + 34.774241686245226 + ], + [ + 66.6773693463917, + 34.774241686245226 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 35.16353715610213 + ], + [ + 66.90705471335906, + 35.16353715610213 + ], + [ + 66.79221202987537, + 35.35818489103058 + ], + [ + 66.6773693463917, + 35.16353715610213 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 35.16353715610213 + ], + [ + 66.79221202987537, + 35.35818489103058 + ], + [ + 66.56252666290803, + 35.35818489103058 + ], + [ + 66.6773693463917, + 35.16353715610213 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 35.16353715610213 + ], + [ + 66.56252666290803, + 35.35818489103058 + ], + [ + 66.44768397942434, + 35.16353715610213 + ], + [ + 66.6773693463917, + 35.16353715610213 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 35.16353715610213 + ], + [ + 66.44768397942434, + 35.16353715610213 + ], + [ + 66.56252666290803, + 34.96888942117368 + ], + [ + 66.6773693463917, + 35.16353715610213 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 35.16353715610213 + ], + [ + 66.56252666290803, + 34.96888942117368 + ], + [ + 66.79221202987537, + 34.96888942117368 + ], + [ + 66.6773693463917, + 35.16353715610213 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 35.16353715610213 + ], + [ + 66.79221202987537, + 34.96888942117368 + ], + [ + 66.90705471335906, + 35.16353715610213 + ], + [ + 66.6773693463917, + 35.16353715610213 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 35.552832625959034 + ], + [ + 66.90705471335906, + 35.552832625959034 + ], + [ + 66.79221202987537, + 35.74748036088749 + ], + [ + 66.6773693463917, + 35.552832625959034 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 35.552832625959034 + ], + [ + 66.79221202987537, + 35.74748036088749 + ], + [ + 66.56252666290803, + 35.74748036088749 + ], + [ + 66.6773693463917, + 35.552832625959034 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 35.552832625959034 + ], + [ + 66.56252666290803, + 35.74748036088749 + ], + [ + 66.44768397942434, + 35.552832625959034 + ], + [ + 66.6773693463917, + 35.552832625959034 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 35.552832625959034 + ], + [ + 66.44768397942434, + 35.552832625959034 + ], + [ + 66.56252666290803, + 35.35818489103058 + ], + [ + 66.6773693463917, + 35.552832625959034 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 35.552832625959034 + ], + [ + 66.56252666290803, + 35.35818489103058 + ], + [ + 66.79221202987537, + 35.35818489103058 + ], + [ + 66.6773693463917, + 35.552832625959034 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 35.552832625959034 + ], + [ + 66.79221202987537, + 35.35818489103058 + ], + [ + 66.90705471335906, + 35.552832625959034 + ], + [ + 66.6773693463917, + 35.552832625959034 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 35.94212809581594 + ], + [ + 66.90705471335906, + 35.94212809581594 + ], + [ + 66.79221202987537, + 36.13677583074439 + ], + [ + 66.6773693463917, + 35.94212809581594 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 35.94212809581594 + ], + [ + 66.79221202987537, + 36.13677583074439 + ], + [ + 66.56252666290803, + 36.13677583074439 + ], + [ + 66.6773693463917, + 35.94212809581594 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 35.94212809581594 + ], + [ + 66.56252666290803, + 36.13677583074439 + ], + [ + 66.44768397942434, + 35.94212809581594 + ], + [ + 66.6773693463917, + 35.94212809581594 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 35.94212809581594 + ], + [ + 66.44768397942434, + 35.94212809581594 + ], + [ + 66.56252666290803, + 35.74748036088749 + ], + [ + 66.6773693463917, + 35.94212809581594 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 35.94212809581594 + ], + [ + 66.56252666290803, + 35.74748036088749 + ], + [ + 66.79221202987537, + 35.74748036088749 + ], + [ + 66.6773693463917, + 35.94212809581594 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 35.94212809581594 + ], + [ + 66.79221202987537, + 35.74748036088749 + ], + [ + 66.90705471335906, + 35.94212809581594 + ], + [ + 66.6773693463917, + 35.94212809581594 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 36.33142356567284 + ], + [ + 66.90705471335906, + 36.33142356567284 + ], + [ + 66.79221202987537, + 36.526071300601295 + ], + [ + 66.6773693463917, + 36.33142356567284 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 36.33142356567284 + ], + [ + 66.79221202987537, + 36.526071300601295 + ], + [ + 66.56252666290803, + 36.526071300601295 + ], + [ + 66.6773693463917, + 36.33142356567284 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 36.33142356567284 + ], + [ + 66.56252666290803, + 36.526071300601295 + ], + [ + 66.44768397942434, + 36.33142356567284 + ], + [ + 66.6773693463917, + 36.33142356567284 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 36.33142356567284 + ], + [ + 66.44768397942434, + 36.33142356567284 + ], + [ + 66.56252666290803, + 36.13677583074439 + ], + [ + 66.6773693463917, + 36.33142356567284 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 36.33142356567284 + ], + [ + 66.56252666290803, + 36.13677583074439 + ], + [ + 66.79221202987537, + 36.13677583074439 + ], + [ + 66.6773693463917, + 36.33142356567284 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 36.33142356567284 + ], + [ + 66.79221202987537, + 36.13677583074439 + ], + [ + 66.90705471335906, + 36.33142356567284 + ], + [ + 66.6773693463917, + 36.33142356567284 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 36.720719035529754 + ], + [ + 66.90705471335906, + 36.720719035529754 + ], + [ + 66.79221202987537, + 36.915366770458206 + ], + [ + 66.6773693463917, + 36.720719035529754 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 36.720719035529754 + ], + [ + 66.79221202987537, + 36.915366770458206 + ], + [ + 66.56252666290803, + 36.915366770458206 + ], + [ + 66.6773693463917, + 36.720719035529754 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 36.720719035529754 + ], + [ + 66.56252666290803, + 36.915366770458206 + ], + [ + 66.44768397942434, + 36.720719035529754 + ], + [ + 66.6773693463917, + 36.720719035529754 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 36.720719035529754 + ], + [ + 66.44768397942434, + 36.720719035529754 + ], + [ + 66.56252666290803, + 36.5260713006013 + ], + [ + 66.6773693463917, + 36.720719035529754 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 36.720719035529754 + ], + [ + 66.56252666290803, + 36.5260713006013 + ], + [ + 66.79221202987537, + 36.5260713006013 + ], + [ + 66.6773693463917, + 36.720719035529754 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 36.720719035529754 + ], + [ + 66.79221202987537, + 36.5260713006013 + ], + [ + 66.90705471335906, + 36.720719035529754 + ], + [ + 66.6773693463917, + 36.720719035529754 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 37.11001450538666 + ], + [ + 66.90705471335906, + 37.11001450538666 + ], + [ + 66.79221202987537, + 37.30466224031511 + ], + [ + 66.6773693463917, + 37.11001450538666 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 37.11001450538666 + ], + [ + 66.79221202987537, + 37.30466224031511 + ], + [ + 66.56252666290803, + 37.30466224031511 + ], + [ + 66.6773693463917, + 37.11001450538666 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 37.11001450538666 + ], + [ + 66.56252666290803, + 37.30466224031511 + ], + [ + 66.44768397942434, + 37.11001450538666 + ], + [ + 66.6773693463917, + 37.11001450538666 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 37.11001450538666 + ], + [ + 66.44768397942434, + 37.11001450538666 + ], + [ + 66.56252666290803, + 36.915366770458206 + ], + [ + 66.6773693463917, + 37.11001450538666 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 37.11001450538666 + ], + [ + 66.56252666290803, + 36.915366770458206 + ], + [ + 66.79221202987537, + 36.915366770458206 + ], + [ + 66.6773693463917, + 37.11001450538666 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 37.11001450538666 + ], + [ + 66.79221202987537, + 36.915366770458206 + ], + [ + 66.90705471335906, + 37.11001450538666 + ], + [ + 66.6773693463917, + 37.11001450538666 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 37.49930997524357 + ], + [ + 66.90705471335906, + 37.49930997524357 + ], + [ + 66.79221202987537, + 37.69395771017202 + ], + [ + 66.6773693463917, + 37.49930997524357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 37.49930997524357 + ], + [ + 66.79221202987537, + 37.69395771017202 + ], + [ + 66.56252666290803, + 37.69395771017202 + ], + [ + 66.6773693463917, + 37.49930997524357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 37.49930997524357 + ], + [ + 66.56252666290803, + 37.69395771017202 + ], + [ + 66.44768397942434, + 37.49930997524357 + ], + [ + 66.6773693463917, + 37.49930997524357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 37.49930997524357 + ], + [ + 66.44768397942434, + 37.49930997524357 + ], + [ + 66.56252666290803, + 37.30466224031512 + ], + [ + 66.6773693463917, + 37.49930997524357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 37.49930997524357 + ], + [ + 66.56252666290803, + 37.30466224031512 + ], + [ + 66.79221202987537, + 37.30466224031512 + ], + [ + 66.6773693463917, + 37.49930997524357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 37.49930997524357 + ], + [ + 66.79221202987537, + 37.30466224031512 + ], + [ + 66.90705471335906, + 37.49930997524357 + ], + [ + 66.6773693463917, + 37.49930997524357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 37.888605445100474 + ], + [ + 66.90705471335906, + 37.888605445100474 + ], + [ + 66.79221202987537, + 38.083253180028926 + ], + [ + 66.6773693463917, + 37.888605445100474 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 37.888605445100474 + ], + [ + 66.79221202987537, + 38.083253180028926 + ], + [ + 66.56252666290803, + 38.083253180028926 + ], + [ + 66.6773693463917, + 37.888605445100474 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 37.888605445100474 + ], + [ + 66.56252666290803, + 38.083253180028926 + ], + [ + 66.44768397942434, + 37.888605445100474 + ], + [ + 66.6773693463917, + 37.888605445100474 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 37.888605445100474 + ], + [ + 66.44768397942434, + 37.888605445100474 + ], + [ + 66.56252666290803, + 37.69395771017202 + ], + [ + 66.6773693463917, + 37.888605445100474 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 37.888605445100474 + ], + [ + 66.56252666290803, + 37.69395771017202 + ], + [ + 66.79221202987537, + 37.69395771017202 + ], + [ + 66.6773693463917, + 37.888605445100474 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 37.888605445100474 + ], + [ + 66.79221202987537, + 37.69395771017202 + ], + [ + 66.90705471335906, + 37.888605445100474 + ], + [ + 66.6773693463917, + 37.888605445100474 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 38.27790091495738 + ], + [ + 66.90705471335906, + 38.27790091495738 + ], + [ + 66.79221202987537, + 38.47254864988583 + ], + [ + 66.6773693463917, + 38.27790091495738 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 38.27790091495738 + ], + [ + 66.79221202987537, + 38.47254864988583 + ], + [ + 66.56252666290803, + 38.47254864988583 + ], + [ + 66.6773693463917, + 38.27790091495738 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 38.27790091495738 + ], + [ + 66.56252666290803, + 38.47254864988583 + ], + [ + 66.44768397942434, + 38.27790091495738 + ], + [ + 66.6773693463917, + 38.27790091495738 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 38.27790091495738 + ], + [ + 66.44768397942434, + 38.27790091495738 + ], + [ + 66.56252666290803, + 38.083253180028926 + ], + [ + 66.6773693463917, + 38.27790091495738 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 38.27790091495738 + ], + [ + 66.56252666290803, + 38.083253180028926 + ], + [ + 66.79221202987537, + 38.083253180028926 + ], + [ + 66.6773693463917, + 38.27790091495738 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 38.27790091495738 + ], + [ + 66.79221202987537, + 38.083253180028926 + ], + [ + 66.90705471335906, + 38.27790091495738 + ], + [ + 66.6773693463917, + 38.27790091495738 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 38.66719638481428 + ], + [ + 66.90705471335906, + 38.66719638481428 + ], + [ + 66.79221202987537, + 38.861844119742734 + ], + [ + 66.6773693463917, + 38.66719638481428 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 38.66719638481428 + ], + [ + 66.79221202987537, + 38.861844119742734 + ], + [ + 66.56252666290803, + 38.861844119742734 + ], + [ + 66.6773693463917, + 38.66719638481428 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 38.66719638481428 + ], + [ + 66.56252666290803, + 38.861844119742734 + ], + [ + 66.44768397942434, + 38.66719638481428 + ], + [ + 66.6773693463917, + 38.66719638481428 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 38.66719638481428 + ], + [ + 66.44768397942434, + 38.66719638481428 + ], + [ + 66.56252666290803, + 38.47254864988583 + ], + [ + 66.6773693463917, + 38.66719638481428 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 38.66719638481428 + ], + [ + 66.56252666290803, + 38.47254864988583 + ], + [ + 66.79221202987537, + 38.47254864988583 + ], + [ + 66.6773693463917, + 38.66719638481428 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 38.66719638481428 + ], + [ + 66.79221202987537, + 38.47254864988583 + ], + [ + 66.90705471335906, + 38.66719638481428 + ], + [ + 66.6773693463917, + 38.66719638481428 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 39.05649185467119 + ], + [ + 66.90705471335906, + 39.05649185467119 + ], + [ + 66.79221202987537, + 39.25113958959964 + ], + [ + 66.6773693463917, + 39.05649185467119 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 39.05649185467119 + ], + [ + 66.79221202987537, + 39.25113958959964 + ], + [ + 66.56252666290803, + 39.25113958959964 + ], + [ + 66.6773693463917, + 39.05649185467119 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 39.05649185467119 + ], + [ + 66.56252666290803, + 39.25113958959964 + ], + [ + 66.44768397942434, + 39.05649185467119 + ], + [ + 66.6773693463917, + 39.05649185467119 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 39.05649185467119 + ], + [ + 66.44768397942434, + 39.05649185467119 + ], + [ + 66.56252666290803, + 38.861844119742734 + ], + [ + 66.6773693463917, + 39.05649185467119 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 39.05649185467119 + ], + [ + 66.56252666290803, + 38.861844119742734 + ], + [ + 66.79221202987537, + 38.861844119742734 + ], + [ + 66.6773693463917, + 39.05649185467119 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 39.05649185467119 + ], + [ + 66.79221202987537, + 38.861844119742734 + ], + [ + 66.90705471335906, + 39.05649185467119 + ], + [ + 66.6773693463917, + 39.05649185467119 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 39.4457873245281 + ], + [ + 66.90705471335906, + 39.4457873245281 + ], + [ + 66.79221202987537, + 39.64043505945655 + ], + [ + 66.6773693463917, + 39.4457873245281 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 39.4457873245281 + ], + [ + 66.79221202987537, + 39.64043505945655 + ], + [ + 66.56252666290803, + 39.64043505945655 + ], + [ + 66.6773693463917, + 39.4457873245281 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 39.4457873245281 + ], + [ + 66.56252666290803, + 39.64043505945655 + ], + [ + 66.44768397942434, + 39.4457873245281 + ], + [ + 66.6773693463917, + 39.4457873245281 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 39.4457873245281 + ], + [ + 66.44768397942434, + 39.4457873245281 + ], + [ + 66.56252666290803, + 39.251139589599646 + ], + [ + 66.6773693463917, + 39.4457873245281 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 39.4457873245281 + ], + [ + 66.56252666290803, + 39.251139589599646 + ], + [ + 66.79221202987537, + 39.251139589599646 + ], + [ + 66.6773693463917, + 39.4457873245281 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 39.4457873245281 + ], + [ + 66.79221202987537, + 39.251139589599646 + ], + [ + 66.90705471335906, + 39.4457873245281 + ], + [ + 66.6773693463917, + 39.4457873245281 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 39.835082794385 + ], + [ + 66.90705471335906, + 39.835082794385 + ], + [ + 66.79221202987537, + 40.029730529313454 + ], + [ + 66.6773693463917, + 39.835082794385 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 39.835082794385 + ], + [ + 66.79221202987537, + 40.029730529313454 + ], + [ + 66.56252666290803, + 40.029730529313454 + ], + [ + 66.6773693463917, + 39.835082794385 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 39.835082794385 + ], + [ + 66.56252666290803, + 40.029730529313454 + ], + [ + 66.44768397942434, + 39.835082794385 + ], + [ + 66.6773693463917, + 39.835082794385 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 39.835082794385 + ], + [ + 66.44768397942434, + 39.835082794385 + ], + [ + 66.56252666290803, + 39.64043505945655 + ], + [ + 66.6773693463917, + 39.835082794385 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 39.835082794385 + ], + [ + 66.56252666290803, + 39.64043505945655 + ], + [ + 66.79221202987537, + 39.64043505945655 + ], + [ + 66.6773693463917, + 39.835082794385 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 39.835082794385 + ], + [ + 66.79221202987537, + 39.64043505945655 + ], + [ + 66.90705471335906, + 39.835082794385 + ], + [ + 66.6773693463917, + 39.835082794385 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 40.22437826424191 + ], + [ + 66.90705471335906, + 40.22437826424191 + ], + [ + 66.79221202987537, + 40.419025999170366 + ], + [ + 66.6773693463917, + 40.22437826424191 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 40.22437826424191 + ], + [ + 66.79221202987537, + 40.419025999170366 + ], + [ + 66.56252666290803, + 40.419025999170366 + ], + [ + 66.6773693463917, + 40.22437826424191 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 40.22437826424191 + ], + [ + 66.56252666290803, + 40.419025999170366 + ], + [ + 66.44768397942434, + 40.22437826424191 + ], + [ + 66.6773693463917, + 40.22437826424191 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 40.22437826424191 + ], + [ + 66.44768397942434, + 40.22437826424191 + ], + [ + 66.56252666290803, + 40.02973052931346 + ], + [ + 66.6773693463917, + 40.22437826424191 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 40.22437826424191 + ], + [ + 66.56252666290803, + 40.02973052931346 + ], + [ + 66.79221202987537, + 40.02973052931346 + ], + [ + 66.6773693463917, + 40.22437826424191 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 40.22437826424191 + ], + [ + 66.79221202987537, + 40.02973052931346 + ], + [ + 66.90705471335906, + 40.22437826424191 + ], + [ + 66.6773693463917, + 40.22437826424191 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 40.61367373409882 + ], + [ + 66.90705471335906, + 40.61367373409882 + ], + [ + 66.79221202987537, + 40.80832146902727 + ], + [ + 66.6773693463917, + 40.61367373409882 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 40.61367373409882 + ], + [ + 66.79221202987537, + 40.80832146902727 + ], + [ + 66.56252666290803, + 40.80832146902727 + ], + [ + 66.6773693463917, + 40.61367373409882 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 40.61367373409882 + ], + [ + 66.56252666290803, + 40.80832146902727 + ], + [ + 66.44768397942434, + 40.61367373409882 + ], + [ + 66.6773693463917, + 40.61367373409882 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 40.61367373409882 + ], + [ + 66.44768397942434, + 40.61367373409882 + ], + [ + 66.56252666290803, + 40.419025999170366 + ], + [ + 66.6773693463917, + 40.61367373409882 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 40.61367373409882 + ], + [ + 66.56252666290803, + 40.419025999170366 + ], + [ + 66.79221202987537, + 40.419025999170366 + ], + [ + 66.6773693463917, + 40.61367373409882 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 40.61367373409882 + ], + [ + 66.79221202987537, + 40.419025999170366 + ], + [ + 66.90705471335906, + 40.61367373409882 + ], + [ + 66.6773693463917, + 40.61367373409882 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 41.00296920395572 + ], + [ + 66.90705471335906, + 41.00296920395572 + ], + [ + 66.79221202987537, + 41.197616938884174 + ], + [ + 66.6773693463917, + 41.00296920395572 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 41.00296920395572 + ], + [ + 66.79221202987537, + 41.197616938884174 + ], + [ + 66.56252666290803, + 41.197616938884174 + ], + [ + 66.6773693463917, + 41.00296920395572 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 41.00296920395572 + ], + [ + 66.56252666290803, + 41.197616938884174 + ], + [ + 66.44768397942434, + 41.00296920395572 + ], + [ + 66.6773693463917, + 41.00296920395572 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 41.00296920395572 + ], + [ + 66.44768397942434, + 41.00296920395572 + ], + [ + 66.56252666290803, + 40.80832146902727 + ], + [ + 66.6773693463917, + 41.00296920395572 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 41.00296920395572 + ], + [ + 66.56252666290803, + 40.80832146902727 + ], + [ + 66.79221202987537, + 40.80832146902727 + ], + [ + 66.6773693463917, + 41.00296920395572 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 41.00296920395572 + ], + [ + 66.79221202987537, + 40.80832146902727 + ], + [ + 66.90705471335906, + 41.00296920395572 + ], + [ + 66.6773693463917, + 41.00296920395572 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 41.392264673812626 + ], + [ + 66.90705471335906, + 41.392264673812626 + ], + [ + 66.79221202987537, + 41.58691240874108 + ], + [ + 66.6773693463917, + 41.392264673812626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 41.392264673812626 + ], + [ + 66.79221202987537, + 41.58691240874108 + ], + [ + 66.56252666290803, + 41.58691240874108 + ], + [ + 66.6773693463917, + 41.392264673812626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 41.392264673812626 + ], + [ + 66.56252666290803, + 41.58691240874108 + ], + [ + 66.44768397942434, + 41.392264673812626 + ], + [ + 66.6773693463917, + 41.392264673812626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 41.392264673812626 + ], + [ + 66.44768397942434, + 41.392264673812626 + ], + [ + 66.56252666290803, + 41.197616938884174 + ], + [ + 66.6773693463917, + 41.392264673812626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 41.392264673812626 + ], + [ + 66.56252666290803, + 41.197616938884174 + ], + [ + 66.79221202987537, + 41.197616938884174 + ], + [ + 66.6773693463917, + 41.392264673812626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 41.392264673812626 + ], + [ + 66.79221202987537, + 41.197616938884174 + ], + [ + 66.90705471335906, + 41.392264673812626 + ], + [ + 66.6773693463917, + 41.392264673812626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 41.78156014366953 + ], + [ + 66.90705471335906, + 41.78156014366953 + ], + [ + 66.79221202987537, + 41.97620787859798 + ], + [ + 66.6773693463917, + 41.78156014366953 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 41.78156014366953 + ], + [ + 66.79221202987537, + 41.97620787859798 + ], + [ + 66.56252666290803, + 41.97620787859798 + ], + [ + 66.6773693463917, + 41.78156014366953 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 41.78156014366953 + ], + [ + 66.56252666290803, + 41.97620787859798 + ], + [ + 66.44768397942434, + 41.78156014366953 + ], + [ + 66.6773693463917, + 41.78156014366953 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 41.78156014366953 + ], + [ + 66.44768397942434, + 41.78156014366953 + ], + [ + 66.56252666290803, + 41.58691240874108 + ], + [ + 66.6773693463917, + 41.78156014366953 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 41.78156014366953 + ], + [ + 66.56252666290803, + 41.58691240874108 + ], + [ + 66.79221202987537, + 41.58691240874108 + ], + [ + 66.6773693463917, + 41.78156014366953 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 41.78156014366953 + ], + [ + 66.79221202987537, + 41.58691240874108 + ], + [ + 66.90705471335906, + 41.78156014366953 + ], + [ + 66.6773693463917, + 41.78156014366953 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 42.17085561352644 + ], + [ + 66.90705471335906, + 42.17085561352644 + ], + [ + 66.79221202987537, + 42.365503348454894 + ], + [ + 66.6773693463917, + 42.17085561352644 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 42.17085561352644 + ], + [ + 66.79221202987537, + 42.365503348454894 + ], + [ + 66.56252666290803, + 42.365503348454894 + ], + [ + 66.6773693463917, + 42.17085561352644 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 42.17085561352644 + ], + [ + 66.56252666290803, + 42.365503348454894 + ], + [ + 66.44768397942434, + 42.17085561352644 + ], + [ + 66.6773693463917, + 42.17085561352644 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 42.17085561352644 + ], + [ + 66.44768397942434, + 42.17085561352644 + ], + [ + 66.56252666290803, + 41.97620787859799 + ], + [ + 66.6773693463917, + 42.17085561352644 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 42.17085561352644 + ], + [ + 66.56252666290803, + 41.97620787859799 + ], + [ + 66.79221202987537, + 41.97620787859799 + ], + [ + 66.6773693463917, + 42.17085561352644 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 42.17085561352644 + ], + [ + 66.79221202987537, + 41.97620787859799 + ], + [ + 66.90705471335906, + 42.17085561352644 + ], + [ + 66.6773693463917, + 42.17085561352644 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 42.56015108338335 + ], + [ + 66.90705471335906, + 42.56015108338335 + ], + [ + 66.79221202987537, + 42.754798818311805 + ], + [ + 66.6773693463917, + 42.56015108338335 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 42.56015108338335 + ], + [ + 66.79221202987537, + 42.754798818311805 + ], + [ + 66.56252666290803, + 42.754798818311805 + ], + [ + 66.6773693463917, + 42.56015108338335 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 42.56015108338335 + ], + [ + 66.56252666290803, + 42.754798818311805 + ], + [ + 66.44768397942434, + 42.56015108338335 + ], + [ + 66.6773693463917, + 42.56015108338335 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 42.56015108338335 + ], + [ + 66.44768397942434, + 42.56015108338335 + ], + [ + 66.56252666290803, + 42.3655033484549 + ], + [ + 66.6773693463917, + 42.56015108338335 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 42.56015108338335 + ], + [ + 66.56252666290803, + 42.3655033484549 + ], + [ + 66.79221202987537, + 42.3655033484549 + ], + [ + 66.6773693463917, + 42.56015108338335 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 42.56015108338335 + ], + [ + 66.79221202987537, + 42.3655033484549 + ], + [ + 66.90705471335906, + 42.56015108338335 + ], + [ + 66.6773693463917, + 42.56015108338335 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 42.94944655324026 + ], + [ + 66.90705471335906, + 42.94944655324026 + ], + [ + 66.79221202987537, + 43.14409428816871 + ], + [ + 66.6773693463917, + 42.94944655324026 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 42.94944655324026 + ], + [ + 66.79221202987537, + 43.14409428816871 + ], + [ + 66.56252666290803, + 43.14409428816871 + ], + [ + 66.6773693463917, + 42.94944655324026 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 42.94944655324026 + ], + [ + 66.56252666290803, + 43.14409428816871 + ], + [ + 66.44768397942434, + 42.94944655324026 + ], + [ + 66.6773693463917, + 42.94944655324026 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 42.94944655324026 + ], + [ + 66.44768397942434, + 42.94944655324026 + ], + [ + 66.56252666290803, + 42.754798818311805 + ], + [ + 66.6773693463917, + 42.94944655324026 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 42.94944655324026 + ], + [ + 66.56252666290803, + 42.754798818311805 + ], + [ + 66.79221202987537, + 42.754798818311805 + ], + [ + 66.6773693463917, + 42.94944655324026 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 42.94944655324026 + ], + [ + 66.79221202987537, + 42.754798818311805 + ], + [ + 66.90705471335906, + 42.94944655324026 + ], + [ + 66.6773693463917, + 42.94944655324026 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 43.33874202309716 + ], + [ + 66.90705471335906, + 43.33874202309716 + ], + [ + 66.79221202987537, + 43.53338975802561 + ], + [ + 66.6773693463917, + 43.33874202309716 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 43.33874202309716 + ], + [ + 66.79221202987537, + 43.53338975802561 + ], + [ + 66.56252666290803, + 43.53338975802561 + ], + [ + 66.6773693463917, + 43.33874202309716 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 43.33874202309716 + ], + [ + 66.56252666290803, + 43.53338975802561 + ], + [ + 66.44768397942434, + 43.33874202309716 + ], + [ + 66.6773693463917, + 43.33874202309716 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 43.33874202309716 + ], + [ + 66.44768397942434, + 43.33874202309716 + ], + [ + 66.56252666290803, + 43.14409428816871 + ], + [ + 66.6773693463917, + 43.33874202309716 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 43.33874202309716 + ], + [ + 66.56252666290803, + 43.14409428816871 + ], + [ + 66.79221202987537, + 43.14409428816871 + ], + [ + 66.6773693463917, + 43.33874202309716 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 43.33874202309716 + ], + [ + 66.79221202987537, + 43.14409428816871 + ], + [ + 66.90705471335906, + 43.33874202309716 + ], + [ + 66.6773693463917, + 43.33874202309716 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 43.728037492954066 + ], + [ + 66.90705471335906, + 43.728037492954066 + ], + [ + 66.79221202987537, + 43.92268522788252 + ], + [ + 66.6773693463917, + 43.728037492954066 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 43.728037492954066 + ], + [ + 66.79221202987537, + 43.92268522788252 + ], + [ + 66.56252666290803, + 43.92268522788252 + ], + [ + 66.6773693463917, + 43.728037492954066 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 43.728037492954066 + ], + [ + 66.56252666290803, + 43.92268522788252 + ], + [ + 66.44768397942434, + 43.728037492954066 + ], + [ + 66.6773693463917, + 43.728037492954066 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 43.728037492954066 + ], + [ + 66.44768397942434, + 43.728037492954066 + ], + [ + 66.56252666290803, + 43.53338975802561 + ], + [ + 66.6773693463917, + 43.728037492954066 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 43.728037492954066 + ], + [ + 66.56252666290803, + 43.53338975802561 + ], + [ + 66.79221202987537, + 43.53338975802561 + ], + [ + 66.6773693463917, + 43.728037492954066 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 43.728037492954066 + ], + [ + 66.79221202987537, + 43.53338975802561 + ], + [ + 66.90705471335906, + 43.728037492954066 + ], + [ + 66.6773693463917, + 43.728037492954066 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 44.11733296281097 + ], + [ + 66.90705471335906, + 44.11733296281097 + ], + [ + 66.79221202987537, + 44.31198069773942 + ], + [ + 66.6773693463917, + 44.11733296281097 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 44.11733296281097 + ], + [ + 66.79221202987537, + 44.31198069773942 + ], + [ + 66.56252666290803, + 44.31198069773942 + ], + [ + 66.6773693463917, + 44.11733296281097 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 44.11733296281097 + ], + [ + 66.56252666290803, + 44.31198069773942 + ], + [ + 66.44768397942434, + 44.11733296281097 + ], + [ + 66.6773693463917, + 44.11733296281097 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 44.11733296281097 + ], + [ + 66.44768397942434, + 44.11733296281097 + ], + [ + 66.56252666290803, + 43.92268522788252 + ], + [ + 66.6773693463917, + 44.11733296281097 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 44.11733296281097 + ], + [ + 66.56252666290803, + 43.92268522788252 + ], + [ + 66.79221202987537, + 43.92268522788252 + ], + [ + 66.6773693463917, + 44.11733296281097 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 44.11733296281097 + ], + [ + 66.79221202987537, + 43.92268522788252 + ], + [ + 66.90705471335906, + 44.11733296281097 + ], + [ + 66.6773693463917, + 44.11733296281097 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 44.506628432667874 + ], + [ + 66.90705471335906, + 44.506628432667874 + ], + [ + 66.79221202987537, + 44.701276167596326 + ], + [ + 66.6773693463917, + 44.506628432667874 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 44.506628432667874 + ], + [ + 66.79221202987537, + 44.701276167596326 + ], + [ + 66.56252666290803, + 44.701276167596326 + ], + [ + 66.6773693463917, + 44.506628432667874 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 44.506628432667874 + ], + [ + 66.56252666290803, + 44.701276167596326 + ], + [ + 66.44768397942434, + 44.506628432667874 + ], + [ + 66.6773693463917, + 44.506628432667874 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 44.506628432667874 + ], + [ + 66.44768397942434, + 44.506628432667874 + ], + [ + 66.56252666290803, + 44.31198069773942 + ], + [ + 66.6773693463917, + 44.506628432667874 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 44.506628432667874 + ], + [ + 66.56252666290803, + 44.31198069773942 + ], + [ + 66.79221202987537, + 44.31198069773942 + ], + [ + 66.6773693463917, + 44.506628432667874 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 44.506628432667874 + ], + [ + 66.79221202987537, + 44.31198069773942 + ], + [ + 66.90705471335906, + 44.506628432667874 + ], + [ + 66.6773693463917, + 44.506628432667874 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 44.89592390252479 + ], + [ + 66.90705471335906, + 44.89592390252479 + ], + [ + 66.79221202987537, + 45.090571637453245 + ], + [ + 66.6773693463917, + 44.89592390252479 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 44.89592390252479 + ], + [ + 66.79221202987537, + 45.090571637453245 + ], + [ + 66.56252666290803, + 45.090571637453245 + ], + [ + 66.6773693463917, + 44.89592390252479 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 44.89592390252479 + ], + [ + 66.56252666290803, + 45.090571637453245 + ], + [ + 66.44768397942434, + 44.89592390252479 + ], + [ + 66.6773693463917, + 44.89592390252479 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 44.89592390252479 + ], + [ + 66.44768397942434, + 44.89592390252479 + ], + [ + 66.56252666290803, + 44.70127616759634 + ], + [ + 66.6773693463917, + 44.89592390252479 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 44.89592390252479 + ], + [ + 66.56252666290803, + 44.70127616759634 + ], + [ + 66.79221202987537, + 44.70127616759634 + ], + [ + 66.6773693463917, + 44.89592390252479 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 44.89592390252479 + ], + [ + 66.79221202987537, + 44.70127616759634 + ], + [ + 66.90705471335906, + 44.89592390252479 + ], + [ + 66.6773693463917, + 44.89592390252479 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 45.2852193723817 + ], + [ + 66.90705471335906, + 45.2852193723817 + ], + [ + 66.79221202987537, + 45.47986710731015 + ], + [ + 66.6773693463917, + 45.2852193723817 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 45.2852193723817 + ], + [ + 66.79221202987537, + 45.47986710731015 + ], + [ + 66.56252666290803, + 45.47986710731015 + ], + [ + 66.6773693463917, + 45.2852193723817 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 45.2852193723817 + ], + [ + 66.56252666290803, + 45.47986710731015 + ], + [ + 66.44768397942434, + 45.2852193723817 + ], + [ + 66.6773693463917, + 45.2852193723817 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 45.2852193723817 + ], + [ + 66.44768397942434, + 45.2852193723817 + ], + [ + 66.56252666290803, + 45.090571637453245 + ], + [ + 66.6773693463917, + 45.2852193723817 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 45.2852193723817 + ], + [ + 66.56252666290803, + 45.090571637453245 + ], + [ + 66.79221202987537, + 45.090571637453245 + ], + [ + 66.6773693463917, + 45.2852193723817 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 45.2852193723817 + ], + [ + 66.79221202987537, + 45.090571637453245 + ], + [ + 66.90705471335906, + 45.2852193723817 + ], + [ + 66.6773693463917, + 45.2852193723817 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 45.6745148422386 + ], + [ + 66.90705471335906, + 45.6745148422386 + ], + [ + 66.79221202987537, + 45.86916257716705 + ], + [ + 66.6773693463917, + 45.6745148422386 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 45.6745148422386 + ], + [ + 66.79221202987537, + 45.86916257716705 + ], + [ + 66.56252666290803, + 45.86916257716705 + ], + [ + 66.6773693463917, + 45.6745148422386 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 45.6745148422386 + ], + [ + 66.56252666290803, + 45.86916257716705 + ], + [ + 66.44768397942434, + 45.6745148422386 + ], + [ + 66.6773693463917, + 45.6745148422386 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 45.6745148422386 + ], + [ + 66.44768397942434, + 45.6745148422386 + ], + [ + 66.56252666290803, + 45.47986710731015 + ], + [ + 66.6773693463917, + 45.6745148422386 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 45.6745148422386 + ], + [ + 66.56252666290803, + 45.47986710731015 + ], + [ + 66.79221202987537, + 45.47986710731015 + ], + [ + 66.6773693463917, + 45.6745148422386 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 45.6745148422386 + ], + [ + 66.79221202987537, + 45.47986710731015 + ], + [ + 66.90705471335906, + 45.6745148422386 + ], + [ + 66.6773693463917, + 45.6745148422386 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 46.063810312095505 + ], + [ + 66.90705471335906, + 46.063810312095505 + ], + [ + 66.79221202987537, + 46.25845804702396 + ], + [ + 66.6773693463917, + 46.063810312095505 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 46.063810312095505 + ], + [ + 66.79221202987537, + 46.25845804702396 + ], + [ + 66.56252666290803, + 46.25845804702396 + ], + [ + 66.6773693463917, + 46.063810312095505 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 46.063810312095505 + ], + [ + 66.56252666290803, + 46.25845804702396 + ], + [ + 66.44768397942434, + 46.063810312095505 + ], + [ + 66.6773693463917, + 46.063810312095505 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 46.063810312095505 + ], + [ + 66.44768397942434, + 46.063810312095505 + ], + [ + 66.56252666290803, + 45.86916257716705 + ], + [ + 66.6773693463917, + 46.063810312095505 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 46.063810312095505 + ], + [ + 66.56252666290803, + 45.86916257716705 + ], + [ + 66.79221202987537, + 45.86916257716705 + ], + [ + 66.6773693463917, + 46.063810312095505 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 46.063810312095505 + ], + [ + 66.79221202987537, + 45.86916257716705 + ], + [ + 66.90705471335906, + 46.063810312095505 + ], + [ + 66.6773693463917, + 46.063810312095505 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 46.45310578195241 + ], + [ + 66.90705471335906, + 46.45310578195241 + ], + [ + 66.79221202987537, + 46.64775351688086 + ], + [ + 66.6773693463917, + 46.45310578195241 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 46.45310578195241 + ], + [ + 66.79221202987537, + 46.64775351688086 + ], + [ + 66.56252666290803, + 46.64775351688086 + ], + [ + 66.6773693463917, + 46.45310578195241 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 46.45310578195241 + ], + [ + 66.56252666290803, + 46.64775351688086 + ], + [ + 66.44768397942434, + 46.45310578195241 + ], + [ + 66.6773693463917, + 46.45310578195241 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 46.45310578195241 + ], + [ + 66.44768397942434, + 46.45310578195241 + ], + [ + 66.56252666290803, + 46.25845804702396 + ], + [ + 66.6773693463917, + 46.45310578195241 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 46.45310578195241 + ], + [ + 66.56252666290803, + 46.25845804702396 + ], + [ + 66.79221202987537, + 46.25845804702396 + ], + [ + 66.6773693463917, + 46.45310578195241 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 46.45310578195241 + ], + [ + 66.79221202987537, + 46.25845804702396 + ], + [ + 66.90705471335906, + 46.45310578195241 + ], + [ + 66.6773693463917, + 46.45310578195241 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 46.842401251809314 + ], + [ + 66.90705471335906, + 46.842401251809314 + ], + [ + 66.79221202987537, + 47.037048986737766 + ], + [ + 66.6773693463917, + 46.842401251809314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 46.842401251809314 + ], + [ + 66.79221202987537, + 47.037048986737766 + ], + [ + 66.56252666290803, + 47.037048986737766 + ], + [ + 66.6773693463917, + 46.842401251809314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 46.842401251809314 + ], + [ + 66.56252666290803, + 47.037048986737766 + ], + [ + 66.44768397942434, + 46.842401251809314 + ], + [ + 66.6773693463917, + 46.842401251809314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 46.842401251809314 + ], + [ + 66.44768397942434, + 46.842401251809314 + ], + [ + 66.56252666290803, + 46.64775351688086 + ], + [ + 66.6773693463917, + 46.842401251809314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 46.842401251809314 + ], + [ + 66.56252666290803, + 46.64775351688086 + ], + [ + 66.79221202987537, + 46.64775351688086 + ], + [ + 66.6773693463917, + 46.842401251809314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 46.842401251809314 + ], + [ + 66.79221202987537, + 46.64775351688086 + ], + [ + 66.90705471335906, + 46.842401251809314 + ], + [ + 66.6773693463917, + 46.842401251809314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 47.23169672166622 + ], + [ + 66.90705471335906, + 47.23169672166622 + ], + [ + 66.79221202987537, + 47.42634445659467 + ], + [ + 66.6773693463917, + 47.23169672166622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 47.23169672166622 + ], + [ + 66.79221202987537, + 47.42634445659467 + ], + [ + 66.56252666290803, + 47.42634445659467 + ], + [ + 66.6773693463917, + 47.23169672166622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 47.23169672166622 + ], + [ + 66.56252666290803, + 47.42634445659467 + ], + [ + 66.44768397942434, + 47.23169672166622 + ], + [ + 66.6773693463917, + 47.23169672166622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 47.23169672166622 + ], + [ + 66.44768397942434, + 47.23169672166622 + ], + [ + 66.56252666290803, + 47.037048986737766 + ], + [ + 66.6773693463917, + 47.23169672166622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 47.23169672166622 + ], + [ + 66.56252666290803, + 47.037048986737766 + ], + [ + 66.79221202987537, + 47.037048986737766 + ], + [ + 66.6773693463917, + 47.23169672166622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 47.23169672166622 + ], + [ + 66.79221202987537, + 47.037048986737766 + ], + [ + 66.90705471335906, + 47.23169672166622 + ], + [ + 66.6773693463917, + 47.23169672166622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 47.620992191523136 + ], + [ + 66.90705471335906, + 47.620992191523136 + ], + [ + 66.79221202987537, + 47.81563992645159 + ], + [ + 66.6773693463917, + 47.620992191523136 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 47.620992191523136 + ], + [ + 66.79221202987537, + 47.81563992645159 + ], + [ + 66.56252666290803, + 47.81563992645159 + ], + [ + 66.6773693463917, + 47.620992191523136 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 47.620992191523136 + ], + [ + 66.56252666290803, + 47.81563992645159 + ], + [ + 66.44768397942434, + 47.620992191523136 + ], + [ + 66.6773693463917, + 47.620992191523136 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 47.620992191523136 + ], + [ + 66.44768397942434, + 47.620992191523136 + ], + [ + 66.56252666290803, + 47.426344456594684 + ], + [ + 66.6773693463917, + 47.620992191523136 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 47.620992191523136 + ], + [ + 66.56252666290803, + 47.426344456594684 + ], + [ + 66.79221202987537, + 47.426344456594684 + ], + [ + 66.6773693463917, + 47.620992191523136 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.6773693463917, + 47.620992191523136 + ], + [ + 66.79221202987537, + 47.426344456594684 + ], + [ + 66.90705471335906, + 47.620992191523136 + ], + [ + 66.6773693463917, + 47.620992191523136 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 12.0004566996162 + ], + [ + 67.2515827638101, + 12.0004566996162 + ], + [ + 67.13674008032642, + 12.195104434544653 + ], + [ + 67.02189739684275, + 12.0004566996162 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 12.0004566996162 + ], + [ + 67.13674008032642, + 12.195104434544653 + ], + [ + 66.90705471335907, + 12.195104434544653 + ], + [ + 67.02189739684275, + 12.0004566996162 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 12.0004566996162 + ], + [ + 66.90705471335907, + 12.195104434544653 + ], + [ + 66.79221202987539, + 12.0004566996162 + ], + [ + 67.02189739684275, + 12.0004566996162 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 12.0004566996162 + ], + [ + 66.79221202987539, + 12.0004566996162 + ], + [ + 66.90705471335907, + 11.805808964687746 + ], + [ + 67.02189739684275, + 12.0004566996162 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 12.0004566996162 + ], + [ + 66.90705471335907, + 11.805808964687746 + ], + [ + 67.13674008032642, + 11.805808964687746 + ], + [ + 67.02189739684275, + 12.0004566996162 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 12.0004566996162 + ], + [ + 67.13674008032642, + 11.805808964687746 + ], + [ + 67.2515827638101, + 12.0004566996162 + ], + [ + 67.02189739684275, + 12.0004566996162 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 12.389752169473105 + ], + [ + 67.2515827638101, + 12.389752169473105 + ], + [ + 67.13674008032642, + 12.58439990440156 + ], + [ + 67.02189739684275, + 12.389752169473105 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 12.389752169473105 + ], + [ + 67.13674008032642, + 12.58439990440156 + ], + [ + 66.90705471335907, + 12.58439990440156 + ], + [ + 67.02189739684275, + 12.389752169473105 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 12.389752169473105 + ], + [ + 66.90705471335907, + 12.58439990440156 + ], + [ + 66.79221202987539, + 12.389752169473105 + ], + [ + 67.02189739684275, + 12.389752169473105 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 12.389752169473105 + ], + [ + 66.79221202987539, + 12.389752169473105 + ], + [ + 66.90705471335907, + 12.195104434544652 + ], + [ + 67.02189739684275, + 12.389752169473105 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 12.389752169473105 + ], + [ + 66.90705471335907, + 12.195104434544652 + ], + [ + 67.13674008032642, + 12.195104434544652 + ], + [ + 67.02189739684275, + 12.389752169473105 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 12.389752169473105 + ], + [ + 67.13674008032642, + 12.195104434544652 + ], + [ + 67.2515827638101, + 12.389752169473105 + ], + [ + 67.02189739684275, + 12.389752169473105 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 12.779047639330013 + ], + [ + 67.2515827638101, + 12.779047639330013 + ], + [ + 67.13674008032642, + 12.973695374258467 + ], + [ + 67.02189739684275, + 12.779047639330013 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 12.779047639330013 + ], + [ + 67.13674008032642, + 12.973695374258467 + ], + [ + 66.90705471335907, + 12.973695374258467 + ], + [ + 67.02189739684275, + 12.779047639330013 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 12.779047639330013 + ], + [ + 66.90705471335907, + 12.973695374258467 + ], + [ + 66.79221202987539, + 12.779047639330013 + ], + [ + 67.02189739684275, + 12.779047639330013 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 12.779047639330013 + ], + [ + 66.79221202987539, + 12.779047639330013 + ], + [ + 66.90705471335907, + 12.58439990440156 + ], + [ + 67.02189739684275, + 12.779047639330013 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 12.779047639330013 + ], + [ + 66.90705471335907, + 12.58439990440156 + ], + [ + 67.13674008032642, + 12.58439990440156 + ], + [ + 67.02189739684275, + 12.779047639330013 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 12.779047639330013 + ], + [ + 67.13674008032642, + 12.58439990440156 + ], + [ + 67.2515827638101, + 12.779047639330013 + ], + [ + 67.02189739684275, + 12.779047639330013 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 13.16834310918692 + ], + [ + 67.2515827638101, + 13.16834310918692 + ], + [ + 67.13674008032642, + 13.362990844115373 + ], + [ + 67.02189739684275, + 13.16834310918692 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 13.16834310918692 + ], + [ + 67.13674008032642, + 13.362990844115373 + ], + [ + 66.90705471335907, + 13.362990844115373 + ], + [ + 67.02189739684275, + 13.16834310918692 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 13.16834310918692 + ], + [ + 66.90705471335907, + 13.362990844115373 + ], + [ + 66.79221202987539, + 13.16834310918692 + ], + [ + 67.02189739684275, + 13.16834310918692 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 13.16834310918692 + ], + [ + 66.79221202987539, + 13.16834310918692 + ], + [ + 66.90705471335907, + 12.973695374258465 + ], + [ + 67.02189739684275, + 13.16834310918692 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 13.16834310918692 + ], + [ + 66.90705471335907, + 12.973695374258465 + ], + [ + 67.13674008032642, + 12.973695374258465 + ], + [ + 67.02189739684275, + 13.16834310918692 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 13.16834310918692 + ], + [ + 67.13674008032642, + 12.973695374258465 + ], + [ + 67.2515827638101, + 13.16834310918692 + ], + [ + 67.02189739684275, + 13.16834310918692 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 13.557638579043825 + ], + [ + 67.2515827638101, + 13.557638579043825 + ], + [ + 67.13674008032642, + 13.752286313972279 + ], + [ + 67.02189739684275, + 13.557638579043825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 13.557638579043825 + ], + [ + 67.13674008032642, + 13.752286313972279 + ], + [ + 66.90705471335907, + 13.752286313972279 + ], + [ + 67.02189739684275, + 13.557638579043825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 13.557638579043825 + ], + [ + 66.90705471335907, + 13.752286313972279 + ], + [ + 66.79221202987539, + 13.557638579043825 + ], + [ + 67.02189739684275, + 13.557638579043825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 13.557638579043825 + ], + [ + 66.79221202987539, + 13.557638579043825 + ], + [ + 66.90705471335907, + 13.362990844115371 + ], + [ + 67.02189739684275, + 13.557638579043825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 13.557638579043825 + ], + [ + 66.90705471335907, + 13.362990844115371 + ], + [ + 67.13674008032642, + 13.362990844115371 + ], + [ + 67.02189739684275, + 13.557638579043825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 13.557638579043825 + ], + [ + 67.13674008032642, + 13.362990844115371 + ], + [ + 67.2515827638101, + 13.557638579043825 + ], + [ + 67.02189739684275, + 13.557638579043825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 13.946934048900731 + ], + [ + 67.2515827638101, + 13.946934048900731 + ], + [ + 67.13674008032642, + 14.141581783829185 + ], + [ + 67.02189739684275, + 13.946934048900731 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 13.946934048900731 + ], + [ + 67.13674008032642, + 14.141581783829185 + ], + [ + 66.90705471335907, + 14.141581783829185 + ], + [ + 67.02189739684275, + 13.946934048900731 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 13.946934048900731 + ], + [ + 66.90705471335907, + 14.141581783829185 + ], + [ + 66.79221202987539, + 13.946934048900731 + ], + [ + 67.02189739684275, + 13.946934048900731 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 13.946934048900731 + ], + [ + 66.79221202987539, + 13.946934048900731 + ], + [ + 66.90705471335907, + 13.752286313972277 + ], + [ + 67.02189739684275, + 13.946934048900731 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 13.946934048900731 + ], + [ + 66.90705471335907, + 13.752286313972277 + ], + [ + 67.13674008032642, + 13.752286313972277 + ], + [ + 67.02189739684275, + 13.946934048900731 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 13.946934048900731 + ], + [ + 67.13674008032642, + 13.752286313972277 + ], + [ + 67.2515827638101, + 13.946934048900731 + ], + [ + 67.02189739684275, + 13.946934048900731 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 14.336229518757637 + ], + [ + 67.2515827638101, + 14.336229518757637 + ], + [ + 67.13674008032642, + 14.530877253686091 + ], + [ + 67.02189739684275, + 14.336229518757637 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 14.336229518757637 + ], + [ + 67.13674008032642, + 14.530877253686091 + ], + [ + 66.90705471335907, + 14.530877253686091 + ], + [ + 67.02189739684275, + 14.336229518757637 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 14.336229518757637 + ], + [ + 66.90705471335907, + 14.530877253686091 + ], + [ + 66.79221202987539, + 14.336229518757637 + ], + [ + 67.02189739684275, + 14.336229518757637 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 14.336229518757637 + ], + [ + 66.79221202987539, + 14.336229518757637 + ], + [ + 66.90705471335907, + 14.141581783829183 + ], + [ + 67.02189739684275, + 14.336229518757637 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 14.336229518757637 + ], + [ + 66.90705471335907, + 14.141581783829183 + ], + [ + 67.13674008032642, + 14.141581783829183 + ], + [ + 67.02189739684275, + 14.336229518757637 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 14.336229518757637 + ], + [ + 67.13674008032642, + 14.141581783829183 + ], + [ + 67.2515827638101, + 14.336229518757637 + ], + [ + 67.02189739684275, + 14.336229518757637 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 14.725524988614545 + ], + [ + 67.2515827638101, + 14.725524988614545 + ], + [ + 67.13674008032642, + 14.920172723542999 + ], + [ + 67.02189739684275, + 14.725524988614545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 14.725524988614545 + ], + [ + 67.13674008032642, + 14.920172723542999 + ], + [ + 66.90705471335907, + 14.920172723542999 + ], + [ + 67.02189739684275, + 14.725524988614545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 14.725524988614545 + ], + [ + 66.90705471335907, + 14.920172723542999 + ], + [ + 66.79221202987539, + 14.725524988614545 + ], + [ + 67.02189739684275, + 14.725524988614545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 14.725524988614545 + ], + [ + 66.79221202987539, + 14.725524988614545 + ], + [ + 66.90705471335907, + 14.530877253686091 + ], + [ + 67.02189739684275, + 14.725524988614545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 14.725524988614545 + ], + [ + 66.90705471335907, + 14.530877253686091 + ], + [ + 67.13674008032642, + 14.530877253686091 + ], + [ + 67.02189739684275, + 14.725524988614545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 14.725524988614545 + ], + [ + 67.13674008032642, + 14.530877253686091 + ], + [ + 67.2515827638101, + 14.725524988614545 + ], + [ + 67.02189739684275, + 14.725524988614545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 15.114820458471451 + ], + [ + 67.2515827638101, + 15.114820458471451 + ], + [ + 67.13674008032642, + 15.309468193399905 + ], + [ + 67.02189739684275, + 15.114820458471451 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 15.114820458471451 + ], + [ + 67.13674008032642, + 15.309468193399905 + ], + [ + 66.90705471335907, + 15.309468193399905 + ], + [ + 67.02189739684275, + 15.114820458471451 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 15.114820458471451 + ], + [ + 66.90705471335907, + 15.309468193399905 + ], + [ + 66.79221202987539, + 15.114820458471451 + ], + [ + 67.02189739684275, + 15.114820458471451 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 15.114820458471451 + ], + [ + 66.79221202987539, + 15.114820458471451 + ], + [ + 66.90705471335907, + 14.920172723542997 + ], + [ + 67.02189739684275, + 15.114820458471451 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 15.114820458471451 + ], + [ + 66.90705471335907, + 14.920172723542997 + ], + [ + 67.13674008032642, + 14.920172723542997 + ], + [ + 67.02189739684275, + 15.114820458471451 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 15.114820458471451 + ], + [ + 67.13674008032642, + 14.920172723542997 + ], + [ + 67.2515827638101, + 15.114820458471451 + ], + [ + 67.02189739684275, + 15.114820458471451 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 15.504115928328357 + ], + [ + 67.2515827638101, + 15.504115928328357 + ], + [ + 67.13674008032642, + 15.69876366325681 + ], + [ + 67.02189739684275, + 15.504115928328357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 15.504115928328357 + ], + [ + 67.13674008032642, + 15.69876366325681 + ], + [ + 66.90705471335907, + 15.69876366325681 + ], + [ + 67.02189739684275, + 15.504115928328357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 15.504115928328357 + ], + [ + 66.90705471335907, + 15.69876366325681 + ], + [ + 66.79221202987539, + 15.504115928328357 + ], + [ + 67.02189739684275, + 15.504115928328357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 15.504115928328357 + ], + [ + 66.79221202987539, + 15.504115928328357 + ], + [ + 66.90705471335907, + 15.309468193399903 + ], + [ + 67.02189739684275, + 15.504115928328357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 15.504115928328357 + ], + [ + 66.90705471335907, + 15.309468193399903 + ], + [ + 67.13674008032642, + 15.309468193399903 + ], + [ + 67.02189739684275, + 15.504115928328357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 15.504115928328357 + ], + [ + 67.13674008032642, + 15.309468193399903 + ], + [ + 67.2515827638101, + 15.504115928328357 + ], + [ + 67.02189739684275, + 15.504115928328357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 15.893411398185265 + ], + [ + 67.2515827638101, + 15.893411398185265 + ], + [ + 67.13674008032642, + 16.088059133113717 + ], + [ + 67.02189739684275, + 15.893411398185265 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 15.893411398185265 + ], + [ + 67.13674008032642, + 16.088059133113717 + ], + [ + 66.90705471335907, + 16.088059133113717 + ], + [ + 67.02189739684275, + 15.893411398185265 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 15.893411398185265 + ], + [ + 66.90705471335907, + 16.088059133113717 + ], + [ + 66.79221202987539, + 15.893411398185265 + ], + [ + 67.02189739684275, + 15.893411398185265 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 15.893411398185265 + ], + [ + 66.79221202987539, + 15.893411398185265 + ], + [ + 66.90705471335907, + 15.69876366325681 + ], + [ + 67.02189739684275, + 15.893411398185265 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 15.893411398185265 + ], + [ + 66.90705471335907, + 15.69876366325681 + ], + [ + 67.13674008032642, + 15.69876366325681 + ], + [ + 67.02189739684275, + 15.893411398185265 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 15.893411398185265 + ], + [ + 67.13674008032642, + 15.69876366325681 + ], + [ + 67.2515827638101, + 15.893411398185265 + ], + [ + 67.02189739684275, + 15.893411398185265 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 16.28270686804217 + ], + [ + 67.2515827638101, + 16.28270686804217 + ], + [ + 67.13674008032642, + 16.47735460297062 + ], + [ + 67.02189739684275, + 16.28270686804217 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 16.28270686804217 + ], + [ + 67.13674008032642, + 16.47735460297062 + ], + [ + 66.90705471335907, + 16.47735460297062 + ], + [ + 67.02189739684275, + 16.28270686804217 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 16.28270686804217 + ], + [ + 66.90705471335907, + 16.47735460297062 + ], + [ + 66.79221202987539, + 16.28270686804217 + ], + [ + 67.02189739684275, + 16.28270686804217 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 16.28270686804217 + ], + [ + 66.79221202987539, + 16.28270686804217 + ], + [ + 66.90705471335907, + 16.088059133113717 + ], + [ + 67.02189739684275, + 16.28270686804217 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 16.28270686804217 + ], + [ + 66.90705471335907, + 16.088059133113717 + ], + [ + 67.13674008032642, + 16.088059133113717 + ], + [ + 67.02189739684275, + 16.28270686804217 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 16.28270686804217 + ], + [ + 67.13674008032642, + 16.088059133113717 + ], + [ + 67.2515827638101, + 16.28270686804217 + ], + [ + 67.02189739684275, + 16.28270686804217 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 16.672002337899077 + ], + [ + 67.2515827638101, + 16.672002337899077 + ], + [ + 67.13674008032642, + 16.86665007282753 + ], + [ + 67.02189739684275, + 16.672002337899077 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 16.672002337899077 + ], + [ + 67.13674008032642, + 16.86665007282753 + ], + [ + 66.90705471335907, + 16.86665007282753 + ], + [ + 67.02189739684275, + 16.672002337899077 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 16.672002337899077 + ], + [ + 66.90705471335907, + 16.86665007282753 + ], + [ + 66.79221202987539, + 16.672002337899077 + ], + [ + 67.02189739684275, + 16.672002337899077 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 16.672002337899077 + ], + [ + 66.79221202987539, + 16.672002337899077 + ], + [ + 66.90705471335907, + 16.477354602970625 + ], + [ + 67.02189739684275, + 16.672002337899077 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 16.672002337899077 + ], + [ + 66.90705471335907, + 16.477354602970625 + ], + [ + 67.13674008032642, + 16.477354602970625 + ], + [ + 67.02189739684275, + 16.672002337899077 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 16.672002337899077 + ], + [ + 67.13674008032642, + 16.477354602970625 + ], + [ + 67.2515827638101, + 16.672002337899077 + ], + [ + 67.02189739684275, + 16.672002337899077 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 17.06129780775598 + ], + [ + 67.2515827638101, + 17.06129780775598 + ], + [ + 67.13674008032642, + 17.255945542684433 + ], + [ + 67.02189739684275, + 17.06129780775598 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 17.06129780775598 + ], + [ + 67.13674008032642, + 17.255945542684433 + ], + [ + 66.90705471335907, + 17.255945542684433 + ], + [ + 67.02189739684275, + 17.06129780775598 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 17.06129780775598 + ], + [ + 66.90705471335907, + 17.255945542684433 + ], + [ + 66.79221202987539, + 17.06129780775598 + ], + [ + 67.02189739684275, + 17.06129780775598 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 17.06129780775598 + ], + [ + 66.79221202987539, + 17.06129780775598 + ], + [ + 66.90705471335907, + 16.86665007282753 + ], + [ + 67.02189739684275, + 17.06129780775598 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 17.06129780775598 + ], + [ + 66.90705471335907, + 16.86665007282753 + ], + [ + 67.13674008032642, + 16.86665007282753 + ], + [ + 67.02189739684275, + 17.06129780775598 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 17.06129780775598 + ], + [ + 67.13674008032642, + 16.86665007282753 + ], + [ + 67.2515827638101, + 17.06129780775598 + ], + [ + 67.02189739684275, + 17.06129780775598 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 17.45059327761289 + ], + [ + 67.2515827638101, + 17.45059327761289 + ], + [ + 67.13674008032642, + 17.64524101254134 + ], + [ + 67.02189739684275, + 17.45059327761289 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 17.45059327761289 + ], + [ + 67.13674008032642, + 17.64524101254134 + ], + [ + 66.90705471335907, + 17.64524101254134 + ], + [ + 67.02189739684275, + 17.45059327761289 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 17.45059327761289 + ], + [ + 66.90705471335907, + 17.64524101254134 + ], + [ + 66.79221202987539, + 17.45059327761289 + ], + [ + 67.02189739684275, + 17.45059327761289 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 17.45059327761289 + ], + [ + 66.79221202987539, + 17.45059327761289 + ], + [ + 66.90705471335907, + 17.255945542684437 + ], + [ + 67.02189739684275, + 17.45059327761289 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 17.45059327761289 + ], + [ + 66.90705471335907, + 17.255945542684437 + ], + [ + 67.13674008032642, + 17.255945542684437 + ], + [ + 67.02189739684275, + 17.45059327761289 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 17.45059327761289 + ], + [ + 67.13674008032642, + 17.255945542684437 + ], + [ + 67.2515827638101, + 17.45059327761289 + ], + [ + 67.02189739684275, + 17.45059327761289 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 17.839888747469793 + ], + [ + 67.2515827638101, + 17.839888747469793 + ], + [ + 67.13674008032642, + 18.034536482398245 + ], + [ + 67.02189739684275, + 17.839888747469793 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 17.839888747469793 + ], + [ + 67.13674008032642, + 18.034536482398245 + ], + [ + 66.90705471335907, + 18.034536482398245 + ], + [ + 67.02189739684275, + 17.839888747469793 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 17.839888747469793 + ], + [ + 66.90705471335907, + 18.034536482398245 + ], + [ + 66.79221202987539, + 17.839888747469793 + ], + [ + 67.02189739684275, + 17.839888747469793 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 17.839888747469793 + ], + [ + 66.79221202987539, + 17.839888747469793 + ], + [ + 66.90705471335907, + 17.64524101254134 + ], + [ + 67.02189739684275, + 17.839888747469793 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 17.839888747469793 + ], + [ + 66.90705471335907, + 17.64524101254134 + ], + [ + 67.13674008032642, + 17.64524101254134 + ], + [ + 67.02189739684275, + 17.839888747469793 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 17.839888747469793 + ], + [ + 67.13674008032642, + 17.64524101254134 + ], + [ + 67.2515827638101, + 17.839888747469793 + ], + [ + 67.02189739684275, + 17.839888747469793 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 18.2291842173267 + ], + [ + 67.2515827638101, + 18.2291842173267 + ], + [ + 67.13674008032642, + 18.423831952255153 + ], + [ + 67.02189739684275, + 18.2291842173267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 18.2291842173267 + ], + [ + 67.13674008032642, + 18.423831952255153 + ], + [ + 66.90705471335907, + 18.423831952255153 + ], + [ + 67.02189739684275, + 18.2291842173267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 18.2291842173267 + ], + [ + 66.90705471335907, + 18.423831952255153 + ], + [ + 66.79221202987539, + 18.2291842173267 + ], + [ + 67.02189739684275, + 18.2291842173267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 18.2291842173267 + ], + [ + 66.79221202987539, + 18.2291842173267 + ], + [ + 66.90705471335907, + 18.03453648239825 + ], + [ + 67.02189739684275, + 18.2291842173267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 18.2291842173267 + ], + [ + 66.90705471335907, + 18.03453648239825 + ], + [ + 67.13674008032642, + 18.03453648239825 + ], + [ + 67.02189739684275, + 18.2291842173267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 18.2291842173267 + ], + [ + 67.13674008032642, + 18.03453648239825 + ], + [ + 67.2515827638101, + 18.2291842173267 + ], + [ + 67.02189739684275, + 18.2291842173267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 18.61847968718361 + ], + [ + 67.2515827638101, + 18.61847968718361 + ], + [ + 67.13674008032642, + 18.81312742211206 + ], + [ + 67.02189739684275, + 18.61847968718361 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 18.61847968718361 + ], + [ + 67.13674008032642, + 18.81312742211206 + ], + [ + 66.90705471335907, + 18.81312742211206 + ], + [ + 67.02189739684275, + 18.61847968718361 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 18.61847968718361 + ], + [ + 66.90705471335907, + 18.81312742211206 + ], + [ + 66.79221202987539, + 18.61847968718361 + ], + [ + 67.02189739684275, + 18.61847968718361 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 18.61847968718361 + ], + [ + 66.79221202987539, + 18.61847968718361 + ], + [ + 66.90705471335907, + 18.423831952255156 + ], + [ + 67.02189739684275, + 18.61847968718361 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 18.61847968718361 + ], + [ + 66.90705471335907, + 18.423831952255156 + ], + [ + 67.13674008032642, + 18.423831952255156 + ], + [ + 67.02189739684275, + 18.61847968718361 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 18.61847968718361 + ], + [ + 67.13674008032642, + 18.423831952255156 + ], + [ + 67.2515827638101, + 18.61847968718361 + ], + [ + 67.02189739684275, + 18.61847968718361 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 19.007775157040513 + ], + [ + 67.2515827638101, + 19.007775157040513 + ], + [ + 67.13674008032642, + 19.202422891968965 + ], + [ + 67.02189739684275, + 19.007775157040513 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 19.007775157040513 + ], + [ + 67.13674008032642, + 19.202422891968965 + ], + [ + 66.90705471335907, + 19.202422891968965 + ], + [ + 67.02189739684275, + 19.007775157040513 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 19.007775157040513 + ], + [ + 66.90705471335907, + 19.202422891968965 + ], + [ + 66.79221202987539, + 19.007775157040513 + ], + [ + 67.02189739684275, + 19.007775157040513 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 19.007775157040513 + ], + [ + 66.79221202987539, + 19.007775157040513 + ], + [ + 66.90705471335907, + 18.81312742211206 + ], + [ + 67.02189739684275, + 19.007775157040513 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 19.007775157040513 + ], + [ + 66.90705471335907, + 18.81312742211206 + ], + [ + 67.13674008032642, + 18.81312742211206 + ], + [ + 67.02189739684275, + 19.007775157040513 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 19.007775157040513 + ], + [ + 67.13674008032642, + 18.81312742211206 + ], + [ + 67.2515827638101, + 19.007775157040513 + ], + [ + 67.02189739684275, + 19.007775157040513 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 19.39707062689742 + ], + [ + 67.2515827638101, + 19.39707062689742 + ], + [ + 67.13674008032642, + 19.591718361825873 + ], + [ + 67.02189739684275, + 19.39707062689742 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 19.39707062689742 + ], + [ + 67.13674008032642, + 19.591718361825873 + ], + [ + 66.90705471335907, + 19.591718361825873 + ], + [ + 67.02189739684275, + 19.39707062689742 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 19.39707062689742 + ], + [ + 66.90705471335907, + 19.591718361825873 + ], + [ + 66.79221202987539, + 19.39707062689742 + ], + [ + 67.02189739684275, + 19.39707062689742 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 19.39707062689742 + ], + [ + 66.79221202987539, + 19.39707062689742 + ], + [ + 66.90705471335907, + 19.20242289196897 + ], + [ + 67.02189739684275, + 19.39707062689742 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 19.39707062689742 + ], + [ + 66.90705471335907, + 19.20242289196897 + ], + [ + 67.13674008032642, + 19.20242289196897 + ], + [ + 67.02189739684275, + 19.39707062689742 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 19.39707062689742 + ], + [ + 67.13674008032642, + 19.20242289196897 + ], + [ + 67.2515827638101, + 19.39707062689742 + ], + [ + 67.02189739684275, + 19.39707062689742 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 19.78636609675433 + ], + [ + 67.2515827638101, + 19.78636609675433 + ], + [ + 67.13674008032642, + 19.98101383168278 + ], + [ + 67.02189739684275, + 19.78636609675433 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 19.78636609675433 + ], + [ + 67.13674008032642, + 19.98101383168278 + ], + [ + 66.90705471335907, + 19.98101383168278 + ], + [ + 67.02189739684275, + 19.78636609675433 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 19.78636609675433 + ], + [ + 66.90705471335907, + 19.98101383168278 + ], + [ + 66.79221202987539, + 19.78636609675433 + ], + [ + 67.02189739684275, + 19.78636609675433 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 19.78636609675433 + ], + [ + 66.79221202987539, + 19.78636609675433 + ], + [ + 66.90705471335907, + 19.591718361825876 + ], + [ + 67.02189739684275, + 19.78636609675433 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 19.78636609675433 + ], + [ + 66.90705471335907, + 19.591718361825876 + ], + [ + 67.13674008032642, + 19.591718361825876 + ], + [ + 67.02189739684275, + 19.78636609675433 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 19.78636609675433 + ], + [ + 67.13674008032642, + 19.591718361825876 + ], + [ + 67.2515827638101, + 19.78636609675433 + ], + [ + 67.02189739684275, + 19.78636609675433 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 20.175661566611232 + ], + [ + 67.2515827638101, + 20.175661566611232 + ], + [ + 67.13674008032642, + 20.370309301539685 + ], + [ + 67.02189739684275, + 20.175661566611232 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 20.175661566611232 + ], + [ + 67.13674008032642, + 20.370309301539685 + ], + [ + 66.90705471335907, + 20.370309301539685 + ], + [ + 67.02189739684275, + 20.175661566611232 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 20.175661566611232 + ], + [ + 66.90705471335907, + 20.370309301539685 + ], + [ + 66.79221202987539, + 20.175661566611232 + ], + [ + 67.02189739684275, + 20.175661566611232 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 20.175661566611232 + ], + [ + 66.79221202987539, + 20.175661566611232 + ], + [ + 66.90705471335907, + 19.98101383168278 + ], + [ + 67.02189739684275, + 20.175661566611232 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 20.175661566611232 + ], + [ + 66.90705471335907, + 19.98101383168278 + ], + [ + 67.13674008032642, + 19.98101383168278 + ], + [ + 67.02189739684275, + 20.175661566611232 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 20.175661566611232 + ], + [ + 67.13674008032642, + 19.98101383168278 + ], + [ + 67.2515827638101, + 20.175661566611232 + ], + [ + 67.02189739684275, + 20.175661566611232 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 20.564957036468137 + ], + [ + 67.2515827638101, + 20.564957036468137 + ], + [ + 67.13674008032642, + 20.75960477139659 + ], + [ + 67.02189739684275, + 20.564957036468137 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 20.564957036468137 + ], + [ + 67.13674008032642, + 20.75960477139659 + ], + [ + 66.90705471335907, + 20.75960477139659 + ], + [ + 67.02189739684275, + 20.564957036468137 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 20.564957036468137 + ], + [ + 66.90705471335907, + 20.75960477139659 + ], + [ + 66.79221202987539, + 20.564957036468137 + ], + [ + 67.02189739684275, + 20.564957036468137 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 20.564957036468137 + ], + [ + 66.79221202987539, + 20.564957036468137 + ], + [ + 66.90705471335907, + 20.370309301539685 + ], + [ + 67.02189739684275, + 20.564957036468137 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 20.564957036468137 + ], + [ + 66.90705471335907, + 20.370309301539685 + ], + [ + 67.13674008032642, + 20.370309301539685 + ], + [ + 67.02189739684275, + 20.564957036468137 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 20.564957036468137 + ], + [ + 67.13674008032642, + 20.370309301539685 + ], + [ + 67.2515827638101, + 20.564957036468137 + ], + [ + 67.02189739684275, + 20.564957036468137 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 20.954252506325044 + ], + [ + 67.2515827638101, + 20.954252506325044 + ], + [ + 67.13674008032642, + 21.148900241253497 + ], + [ + 67.02189739684275, + 20.954252506325044 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 20.954252506325044 + ], + [ + 67.13674008032642, + 21.148900241253497 + ], + [ + 66.90705471335907, + 21.148900241253497 + ], + [ + 67.02189739684275, + 20.954252506325044 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 20.954252506325044 + ], + [ + 66.90705471335907, + 21.148900241253497 + ], + [ + 66.79221202987539, + 20.954252506325044 + ], + [ + 67.02189739684275, + 20.954252506325044 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 20.954252506325044 + ], + [ + 66.79221202987539, + 20.954252506325044 + ], + [ + 66.90705471335907, + 20.759604771396592 + ], + [ + 67.02189739684275, + 20.954252506325044 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 20.954252506325044 + ], + [ + 66.90705471335907, + 20.759604771396592 + ], + [ + 67.13674008032642, + 20.759604771396592 + ], + [ + 67.02189739684275, + 20.954252506325044 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 20.954252506325044 + ], + [ + 67.13674008032642, + 20.759604771396592 + ], + [ + 67.2515827638101, + 20.954252506325044 + ], + [ + 67.02189739684275, + 20.954252506325044 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 21.343547976181952 + ], + [ + 67.2515827638101, + 21.343547976181952 + ], + [ + 67.13674008032642, + 21.538195711110404 + ], + [ + 67.02189739684275, + 21.343547976181952 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 21.343547976181952 + ], + [ + 67.13674008032642, + 21.538195711110404 + ], + [ + 66.90705471335907, + 21.538195711110404 + ], + [ + 67.02189739684275, + 21.343547976181952 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 21.343547976181952 + ], + [ + 66.90705471335907, + 21.538195711110404 + ], + [ + 66.79221202987539, + 21.343547976181952 + ], + [ + 67.02189739684275, + 21.343547976181952 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 21.343547976181952 + ], + [ + 66.79221202987539, + 21.343547976181952 + ], + [ + 66.90705471335907, + 21.1489002412535 + ], + [ + 67.02189739684275, + 21.343547976181952 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 21.343547976181952 + ], + [ + 66.90705471335907, + 21.1489002412535 + ], + [ + 67.13674008032642, + 21.1489002412535 + ], + [ + 67.02189739684275, + 21.343547976181952 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 21.343547976181952 + ], + [ + 67.13674008032642, + 21.1489002412535 + ], + [ + 67.2515827638101, + 21.343547976181952 + ], + [ + 67.02189739684275, + 21.343547976181952 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 21.732843446038856 + ], + [ + 67.2515827638101, + 21.732843446038856 + ], + [ + 67.13674008032642, + 21.92749118096731 + ], + [ + 67.02189739684275, + 21.732843446038856 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 21.732843446038856 + ], + [ + 67.13674008032642, + 21.92749118096731 + ], + [ + 66.90705471335907, + 21.92749118096731 + ], + [ + 67.02189739684275, + 21.732843446038856 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 21.732843446038856 + ], + [ + 66.90705471335907, + 21.92749118096731 + ], + [ + 66.79221202987539, + 21.732843446038856 + ], + [ + 67.02189739684275, + 21.732843446038856 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 21.732843446038856 + ], + [ + 66.79221202987539, + 21.732843446038856 + ], + [ + 66.90705471335907, + 21.538195711110404 + ], + [ + 67.02189739684275, + 21.732843446038856 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 21.732843446038856 + ], + [ + 66.90705471335907, + 21.538195711110404 + ], + [ + 67.13674008032642, + 21.538195711110404 + ], + [ + 67.02189739684275, + 21.732843446038856 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 21.732843446038856 + ], + [ + 67.13674008032642, + 21.538195711110404 + ], + [ + 67.2515827638101, + 21.732843446038856 + ], + [ + 67.02189739684275, + 21.732843446038856 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 22.122138915895764 + ], + [ + 67.2515827638101, + 22.122138915895764 + ], + [ + 67.13674008032642, + 22.316786650824216 + ], + [ + 67.02189739684275, + 22.122138915895764 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 22.122138915895764 + ], + [ + 67.13674008032642, + 22.316786650824216 + ], + [ + 66.90705471335907, + 22.316786650824216 + ], + [ + 67.02189739684275, + 22.122138915895764 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 22.122138915895764 + ], + [ + 66.90705471335907, + 22.316786650824216 + ], + [ + 66.79221202987539, + 22.122138915895764 + ], + [ + 67.02189739684275, + 22.122138915895764 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 22.122138915895764 + ], + [ + 66.79221202987539, + 22.122138915895764 + ], + [ + 66.90705471335907, + 21.927491180967312 + ], + [ + 67.02189739684275, + 22.122138915895764 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 22.122138915895764 + ], + [ + 66.90705471335907, + 21.927491180967312 + ], + [ + 67.13674008032642, + 21.927491180967312 + ], + [ + 67.02189739684275, + 22.122138915895764 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 22.122138915895764 + ], + [ + 67.13674008032642, + 21.927491180967312 + ], + [ + 67.2515827638101, + 22.122138915895764 + ], + [ + 67.02189739684275, + 22.122138915895764 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 22.511434385752672 + ], + [ + 67.2515827638101, + 22.511434385752672 + ], + [ + 67.13674008032642, + 22.706082120681124 + ], + [ + 67.02189739684275, + 22.511434385752672 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 22.511434385752672 + ], + [ + 67.13674008032642, + 22.706082120681124 + ], + [ + 66.90705471335907, + 22.706082120681124 + ], + [ + 67.02189739684275, + 22.511434385752672 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 22.511434385752672 + ], + [ + 66.90705471335907, + 22.706082120681124 + ], + [ + 66.79221202987539, + 22.511434385752672 + ], + [ + 67.02189739684275, + 22.511434385752672 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 22.511434385752672 + ], + [ + 66.79221202987539, + 22.511434385752672 + ], + [ + 66.90705471335907, + 22.31678665082422 + ], + [ + 67.02189739684275, + 22.511434385752672 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 22.511434385752672 + ], + [ + 66.90705471335907, + 22.31678665082422 + ], + [ + 67.13674008032642, + 22.31678665082422 + ], + [ + 67.02189739684275, + 22.511434385752672 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 22.511434385752672 + ], + [ + 67.13674008032642, + 22.31678665082422 + ], + [ + 67.2515827638101, + 22.511434385752672 + ], + [ + 67.02189739684275, + 22.511434385752672 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 22.900729855609576 + ], + [ + 67.2515827638101, + 22.900729855609576 + ], + [ + 67.13674008032642, + 23.09537759053803 + ], + [ + 67.02189739684275, + 22.900729855609576 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 22.900729855609576 + ], + [ + 67.13674008032642, + 23.09537759053803 + ], + [ + 66.90705471335907, + 23.09537759053803 + ], + [ + 67.02189739684275, + 22.900729855609576 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 22.900729855609576 + ], + [ + 66.90705471335907, + 23.09537759053803 + ], + [ + 66.79221202987539, + 22.900729855609576 + ], + [ + 67.02189739684275, + 22.900729855609576 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 22.900729855609576 + ], + [ + 66.79221202987539, + 22.900729855609576 + ], + [ + 66.90705471335907, + 22.706082120681124 + ], + [ + 67.02189739684275, + 22.900729855609576 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 22.900729855609576 + ], + [ + 66.90705471335907, + 22.706082120681124 + ], + [ + 67.13674008032642, + 22.706082120681124 + ], + [ + 67.02189739684275, + 22.900729855609576 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 22.900729855609576 + ], + [ + 67.13674008032642, + 22.706082120681124 + ], + [ + 67.2515827638101, + 22.900729855609576 + ], + [ + 67.02189739684275, + 22.900729855609576 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 23.290025325466484 + ], + [ + 67.2515827638101, + 23.290025325466484 + ], + [ + 67.13674008032642, + 23.484673060394936 + ], + [ + 67.02189739684275, + 23.290025325466484 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 23.290025325466484 + ], + [ + 67.13674008032642, + 23.484673060394936 + ], + [ + 66.90705471335907, + 23.484673060394936 + ], + [ + 67.02189739684275, + 23.290025325466484 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 23.290025325466484 + ], + [ + 66.90705471335907, + 23.484673060394936 + ], + [ + 66.79221202987539, + 23.290025325466484 + ], + [ + 67.02189739684275, + 23.290025325466484 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 23.290025325466484 + ], + [ + 66.79221202987539, + 23.290025325466484 + ], + [ + 66.90705471335907, + 23.095377590538032 + ], + [ + 67.02189739684275, + 23.290025325466484 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 23.290025325466484 + ], + [ + 66.90705471335907, + 23.095377590538032 + ], + [ + 67.13674008032642, + 23.095377590538032 + ], + [ + 67.02189739684275, + 23.290025325466484 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 23.290025325466484 + ], + [ + 67.13674008032642, + 23.095377590538032 + ], + [ + 67.2515827638101, + 23.290025325466484 + ], + [ + 67.02189739684275, + 23.290025325466484 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 23.67932079532339 + ], + [ + 67.2515827638101, + 23.67932079532339 + ], + [ + 67.13674008032642, + 23.873968530251844 + ], + [ + 67.02189739684275, + 23.67932079532339 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 23.67932079532339 + ], + [ + 67.13674008032642, + 23.873968530251844 + ], + [ + 66.90705471335907, + 23.873968530251844 + ], + [ + 67.02189739684275, + 23.67932079532339 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 23.67932079532339 + ], + [ + 66.90705471335907, + 23.873968530251844 + ], + [ + 66.79221202987539, + 23.67932079532339 + ], + [ + 67.02189739684275, + 23.67932079532339 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 23.67932079532339 + ], + [ + 66.79221202987539, + 23.67932079532339 + ], + [ + 66.90705471335907, + 23.48467306039494 + ], + [ + 67.02189739684275, + 23.67932079532339 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 23.67932079532339 + ], + [ + 66.90705471335907, + 23.48467306039494 + ], + [ + 67.13674008032642, + 23.48467306039494 + ], + [ + 67.02189739684275, + 23.67932079532339 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 23.67932079532339 + ], + [ + 67.13674008032642, + 23.48467306039494 + ], + [ + 67.2515827638101, + 23.67932079532339 + ], + [ + 67.02189739684275, + 23.67932079532339 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 24.068616265180296 + ], + [ + 67.2515827638101, + 24.068616265180296 + ], + [ + 67.13674008032642, + 24.263264000108748 + ], + [ + 67.02189739684275, + 24.068616265180296 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 24.068616265180296 + ], + [ + 67.13674008032642, + 24.263264000108748 + ], + [ + 66.90705471335907, + 24.263264000108748 + ], + [ + 67.02189739684275, + 24.068616265180296 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 24.068616265180296 + ], + [ + 66.90705471335907, + 24.263264000108748 + ], + [ + 66.79221202987539, + 24.068616265180296 + ], + [ + 67.02189739684275, + 24.068616265180296 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 24.068616265180296 + ], + [ + 66.79221202987539, + 24.068616265180296 + ], + [ + 66.90705471335907, + 23.873968530251844 + ], + [ + 67.02189739684275, + 24.068616265180296 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 24.068616265180296 + ], + [ + 66.90705471335907, + 23.873968530251844 + ], + [ + 67.13674008032642, + 23.873968530251844 + ], + [ + 67.02189739684275, + 24.068616265180296 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 24.068616265180296 + ], + [ + 67.13674008032642, + 23.873968530251844 + ], + [ + 67.2515827638101, + 24.068616265180296 + ], + [ + 67.02189739684275, + 24.068616265180296 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 24.4579117350372 + ], + [ + 67.2515827638101, + 24.4579117350372 + ], + [ + 67.13674008032642, + 24.652559469965652 + ], + [ + 67.02189739684275, + 24.4579117350372 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 24.4579117350372 + ], + [ + 67.13674008032642, + 24.652559469965652 + ], + [ + 66.90705471335907, + 24.652559469965652 + ], + [ + 67.02189739684275, + 24.4579117350372 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 24.4579117350372 + ], + [ + 66.90705471335907, + 24.652559469965652 + ], + [ + 66.79221202987539, + 24.4579117350372 + ], + [ + 67.02189739684275, + 24.4579117350372 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 24.4579117350372 + ], + [ + 66.79221202987539, + 24.4579117350372 + ], + [ + 66.90705471335907, + 24.263264000108748 + ], + [ + 67.02189739684275, + 24.4579117350372 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 24.4579117350372 + ], + [ + 66.90705471335907, + 24.263264000108748 + ], + [ + 67.13674008032642, + 24.263264000108748 + ], + [ + 67.02189739684275, + 24.4579117350372 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 24.4579117350372 + ], + [ + 67.13674008032642, + 24.263264000108748 + ], + [ + 67.2515827638101, + 24.4579117350372 + ], + [ + 67.02189739684275, + 24.4579117350372 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 24.847207204894108 + ], + [ + 67.2515827638101, + 24.847207204894108 + ], + [ + 67.13674008032642, + 25.04185493982256 + ], + [ + 67.02189739684275, + 24.847207204894108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 24.847207204894108 + ], + [ + 67.13674008032642, + 25.04185493982256 + ], + [ + 66.90705471335907, + 25.04185493982256 + ], + [ + 67.02189739684275, + 24.847207204894108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 24.847207204894108 + ], + [ + 66.90705471335907, + 25.04185493982256 + ], + [ + 66.79221202987539, + 24.847207204894108 + ], + [ + 67.02189739684275, + 24.847207204894108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 24.847207204894108 + ], + [ + 66.79221202987539, + 24.847207204894108 + ], + [ + 66.90705471335907, + 24.652559469965656 + ], + [ + 67.02189739684275, + 24.847207204894108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 24.847207204894108 + ], + [ + 66.90705471335907, + 24.652559469965656 + ], + [ + 67.13674008032642, + 24.652559469965656 + ], + [ + 67.02189739684275, + 24.847207204894108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 24.847207204894108 + ], + [ + 67.13674008032642, + 24.652559469965656 + ], + [ + 67.2515827638101, + 24.847207204894108 + ], + [ + 67.02189739684275, + 24.847207204894108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 25.236502674751016 + ], + [ + 67.2515827638101, + 25.236502674751016 + ], + [ + 67.13674008032642, + 25.431150409679468 + ], + [ + 67.02189739684275, + 25.236502674751016 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 25.236502674751016 + ], + [ + 67.13674008032642, + 25.431150409679468 + ], + [ + 66.90705471335907, + 25.431150409679468 + ], + [ + 67.02189739684275, + 25.236502674751016 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 25.236502674751016 + ], + [ + 66.90705471335907, + 25.431150409679468 + ], + [ + 66.79221202987539, + 25.236502674751016 + ], + [ + 67.02189739684275, + 25.236502674751016 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 25.236502674751016 + ], + [ + 66.79221202987539, + 25.236502674751016 + ], + [ + 66.90705471335907, + 25.041854939822564 + ], + [ + 67.02189739684275, + 25.236502674751016 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 25.236502674751016 + ], + [ + 66.90705471335907, + 25.041854939822564 + ], + [ + 67.13674008032642, + 25.041854939822564 + ], + [ + 67.02189739684275, + 25.236502674751016 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 25.236502674751016 + ], + [ + 67.13674008032642, + 25.041854939822564 + ], + [ + 67.2515827638101, + 25.236502674751016 + ], + [ + 67.02189739684275, + 25.236502674751016 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 25.62579814460792 + ], + [ + 67.2515827638101, + 25.62579814460792 + ], + [ + 67.13674008032642, + 25.820445879536372 + ], + [ + 67.02189739684275, + 25.62579814460792 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 25.62579814460792 + ], + [ + 67.13674008032642, + 25.820445879536372 + ], + [ + 66.90705471335907, + 25.820445879536372 + ], + [ + 67.02189739684275, + 25.62579814460792 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 25.62579814460792 + ], + [ + 66.90705471335907, + 25.820445879536372 + ], + [ + 66.79221202987539, + 25.62579814460792 + ], + [ + 67.02189739684275, + 25.62579814460792 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 25.62579814460792 + ], + [ + 66.79221202987539, + 25.62579814460792 + ], + [ + 66.90705471335907, + 25.431150409679468 + ], + [ + 67.02189739684275, + 25.62579814460792 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 25.62579814460792 + ], + [ + 66.90705471335907, + 25.431150409679468 + ], + [ + 67.13674008032642, + 25.431150409679468 + ], + [ + 67.02189739684275, + 25.62579814460792 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 25.62579814460792 + ], + [ + 67.13674008032642, + 25.431150409679468 + ], + [ + 67.2515827638101, + 25.62579814460792 + ], + [ + 67.02189739684275, + 25.62579814460792 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 26.015093614464828 + ], + [ + 67.2515827638101, + 26.015093614464828 + ], + [ + 67.13674008032642, + 26.20974134939328 + ], + [ + 67.02189739684275, + 26.015093614464828 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 26.015093614464828 + ], + [ + 67.13674008032642, + 26.20974134939328 + ], + [ + 66.90705471335907, + 26.20974134939328 + ], + [ + 67.02189739684275, + 26.015093614464828 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 26.015093614464828 + ], + [ + 66.90705471335907, + 26.20974134939328 + ], + [ + 66.79221202987539, + 26.015093614464828 + ], + [ + 67.02189739684275, + 26.015093614464828 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 26.015093614464828 + ], + [ + 66.79221202987539, + 26.015093614464828 + ], + [ + 66.90705471335907, + 25.820445879536376 + ], + [ + 67.02189739684275, + 26.015093614464828 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 26.015093614464828 + ], + [ + 66.90705471335907, + 25.820445879536376 + ], + [ + 67.13674008032642, + 25.820445879536376 + ], + [ + 67.02189739684275, + 26.015093614464828 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 26.015093614464828 + ], + [ + 67.13674008032642, + 25.820445879536376 + ], + [ + 67.2515827638101, + 26.015093614464828 + ], + [ + 67.02189739684275, + 26.015093614464828 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 26.404389084321735 + ], + [ + 67.2515827638101, + 26.404389084321735 + ], + [ + 67.13674008032642, + 26.599036819250188 + ], + [ + 67.02189739684275, + 26.404389084321735 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 26.404389084321735 + ], + [ + 67.13674008032642, + 26.599036819250188 + ], + [ + 66.90705471335907, + 26.599036819250188 + ], + [ + 67.02189739684275, + 26.404389084321735 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 26.404389084321735 + ], + [ + 66.90705471335907, + 26.599036819250188 + ], + [ + 66.79221202987539, + 26.404389084321735 + ], + [ + 67.02189739684275, + 26.404389084321735 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 26.404389084321735 + ], + [ + 66.79221202987539, + 26.404389084321735 + ], + [ + 66.90705471335907, + 26.209741349393283 + ], + [ + 67.02189739684275, + 26.404389084321735 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 26.404389084321735 + ], + [ + 66.90705471335907, + 26.209741349393283 + ], + [ + 67.13674008032642, + 26.209741349393283 + ], + [ + 67.02189739684275, + 26.404389084321735 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 26.404389084321735 + ], + [ + 67.13674008032642, + 26.209741349393283 + ], + [ + 67.2515827638101, + 26.404389084321735 + ], + [ + 67.02189739684275, + 26.404389084321735 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 26.79368455417864 + ], + [ + 67.2515827638101, + 26.79368455417864 + ], + [ + 67.13674008032642, + 26.988332289107092 + ], + [ + 67.02189739684275, + 26.79368455417864 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 26.79368455417864 + ], + [ + 67.13674008032642, + 26.988332289107092 + ], + [ + 66.90705471335907, + 26.988332289107092 + ], + [ + 67.02189739684275, + 26.79368455417864 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 26.79368455417864 + ], + [ + 66.90705471335907, + 26.988332289107092 + ], + [ + 66.79221202987539, + 26.79368455417864 + ], + [ + 67.02189739684275, + 26.79368455417864 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 26.79368455417864 + ], + [ + 66.79221202987539, + 26.79368455417864 + ], + [ + 66.90705471335907, + 26.599036819250188 + ], + [ + 67.02189739684275, + 26.79368455417864 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 26.79368455417864 + ], + [ + 66.90705471335907, + 26.599036819250188 + ], + [ + 67.13674008032642, + 26.599036819250188 + ], + [ + 67.02189739684275, + 26.79368455417864 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 26.79368455417864 + ], + [ + 67.13674008032642, + 26.599036819250188 + ], + [ + 67.2515827638101, + 26.79368455417864 + ], + [ + 67.02189739684275, + 26.79368455417864 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 27.182980024035547 + ], + [ + 67.2515827638101, + 27.182980024035547 + ], + [ + 67.13674008032642, + 27.377627758964 + ], + [ + 67.02189739684275, + 27.182980024035547 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 27.182980024035547 + ], + [ + 67.13674008032642, + 27.377627758964 + ], + [ + 66.90705471335907, + 27.377627758964 + ], + [ + 67.02189739684275, + 27.182980024035547 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 27.182980024035547 + ], + [ + 66.90705471335907, + 27.377627758964 + ], + [ + 66.79221202987539, + 27.182980024035547 + ], + [ + 67.02189739684275, + 27.182980024035547 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 27.182980024035547 + ], + [ + 66.79221202987539, + 27.182980024035547 + ], + [ + 66.90705471335907, + 26.988332289107095 + ], + [ + 67.02189739684275, + 27.182980024035547 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 27.182980024035547 + ], + [ + 66.90705471335907, + 26.988332289107095 + ], + [ + 67.13674008032642, + 26.988332289107095 + ], + [ + 67.02189739684275, + 27.182980024035547 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 27.182980024035547 + ], + [ + 67.13674008032642, + 26.988332289107095 + ], + [ + 67.2515827638101, + 27.182980024035547 + ], + [ + 67.02189739684275, + 27.182980024035547 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 27.572275493892455 + ], + [ + 67.2515827638101, + 27.572275493892455 + ], + [ + 67.13674008032642, + 27.766923228820907 + ], + [ + 67.02189739684275, + 27.572275493892455 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 27.572275493892455 + ], + [ + 67.13674008032642, + 27.766923228820907 + ], + [ + 66.90705471335907, + 27.766923228820907 + ], + [ + 67.02189739684275, + 27.572275493892455 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 27.572275493892455 + ], + [ + 66.90705471335907, + 27.766923228820907 + ], + [ + 66.79221202987539, + 27.572275493892455 + ], + [ + 67.02189739684275, + 27.572275493892455 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 27.572275493892455 + ], + [ + 66.79221202987539, + 27.572275493892455 + ], + [ + 66.90705471335907, + 27.377627758964003 + ], + [ + 67.02189739684275, + 27.572275493892455 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 27.572275493892455 + ], + [ + 66.90705471335907, + 27.377627758964003 + ], + [ + 67.13674008032642, + 27.377627758964003 + ], + [ + 67.02189739684275, + 27.572275493892455 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 27.572275493892455 + ], + [ + 67.13674008032642, + 27.377627758964003 + ], + [ + 67.2515827638101, + 27.572275493892455 + ], + [ + 67.02189739684275, + 27.572275493892455 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 27.96157096374936 + ], + [ + 67.2515827638101, + 27.96157096374936 + ], + [ + 67.13674008032642, + 28.15621869867781 + ], + [ + 67.02189739684275, + 27.96157096374936 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 27.96157096374936 + ], + [ + 67.13674008032642, + 28.15621869867781 + ], + [ + 66.90705471335907, + 28.15621869867781 + ], + [ + 67.02189739684275, + 27.96157096374936 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 27.96157096374936 + ], + [ + 66.90705471335907, + 28.15621869867781 + ], + [ + 66.79221202987539, + 27.96157096374936 + ], + [ + 67.02189739684275, + 27.96157096374936 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 27.96157096374936 + ], + [ + 66.79221202987539, + 27.96157096374936 + ], + [ + 66.90705471335907, + 27.766923228820907 + ], + [ + 67.02189739684275, + 27.96157096374936 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 27.96157096374936 + ], + [ + 66.90705471335907, + 27.766923228820907 + ], + [ + 67.13674008032642, + 27.766923228820907 + ], + [ + 67.02189739684275, + 27.96157096374936 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 27.96157096374936 + ], + [ + 67.13674008032642, + 27.766923228820907 + ], + [ + 67.2515827638101, + 27.96157096374936 + ], + [ + 67.02189739684275, + 27.96157096374936 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 28.350866433606267 + ], + [ + 67.2515827638101, + 28.350866433606267 + ], + [ + 67.13674008032642, + 28.54551416853472 + ], + [ + 67.02189739684275, + 28.350866433606267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 28.350866433606267 + ], + [ + 67.13674008032642, + 28.54551416853472 + ], + [ + 66.90705471335907, + 28.54551416853472 + ], + [ + 67.02189739684275, + 28.350866433606267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 28.350866433606267 + ], + [ + 66.90705471335907, + 28.54551416853472 + ], + [ + 66.79221202987539, + 28.350866433606267 + ], + [ + 67.02189739684275, + 28.350866433606267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 28.350866433606267 + ], + [ + 66.79221202987539, + 28.350866433606267 + ], + [ + 66.90705471335907, + 28.156218698677815 + ], + [ + 67.02189739684275, + 28.350866433606267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 28.350866433606267 + ], + [ + 66.90705471335907, + 28.156218698677815 + ], + [ + 67.13674008032642, + 28.156218698677815 + ], + [ + 67.02189739684275, + 28.350866433606267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 28.350866433606267 + ], + [ + 67.13674008032642, + 28.156218698677815 + ], + [ + 67.2515827638101, + 28.350866433606267 + ], + [ + 67.02189739684275, + 28.350866433606267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 28.74016190346317 + ], + [ + 67.2515827638101, + 28.74016190346317 + ], + [ + 67.13674008032642, + 28.934809638391624 + ], + [ + 67.02189739684275, + 28.74016190346317 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 28.74016190346317 + ], + [ + 67.13674008032642, + 28.934809638391624 + ], + [ + 66.90705471335907, + 28.934809638391624 + ], + [ + 67.02189739684275, + 28.74016190346317 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 28.74016190346317 + ], + [ + 66.90705471335907, + 28.934809638391624 + ], + [ + 66.79221202987539, + 28.74016190346317 + ], + [ + 67.02189739684275, + 28.74016190346317 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 28.74016190346317 + ], + [ + 66.79221202987539, + 28.74016190346317 + ], + [ + 66.90705471335907, + 28.54551416853472 + ], + [ + 67.02189739684275, + 28.74016190346317 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 28.74016190346317 + ], + [ + 66.90705471335907, + 28.54551416853472 + ], + [ + 67.13674008032642, + 28.54551416853472 + ], + [ + 67.02189739684275, + 28.74016190346317 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 28.74016190346317 + ], + [ + 67.13674008032642, + 28.54551416853472 + ], + [ + 67.2515827638101, + 28.74016190346317 + ], + [ + 67.02189739684275, + 28.74016190346317 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 29.12945737332008 + ], + [ + 67.2515827638101, + 29.12945737332008 + ], + [ + 67.13674008032642, + 29.32410510824853 + ], + [ + 67.02189739684275, + 29.12945737332008 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 29.12945737332008 + ], + [ + 67.13674008032642, + 29.32410510824853 + ], + [ + 66.90705471335907, + 29.32410510824853 + ], + [ + 67.02189739684275, + 29.12945737332008 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 29.12945737332008 + ], + [ + 66.90705471335907, + 29.32410510824853 + ], + [ + 66.79221202987539, + 29.12945737332008 + ], + [ + 67.02189739684275, + 29.12945737332008 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 29.12945737332008 + ], + [ + 66.79221202987539, + 29.12945737332008 + ], + [ + 66.90705471335907, + 28.934809638391627 + ], + [ + 67.02189739684275, + 29.12945737332008 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 29.12945737332008 + ], + [ + 66.90705471335907, + 28.934809638391627 + ], + [ + 67.13674008032642, + 28.934809638391627 + ], + [ + 67.02189739684275, + 29.12945737332008 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 29.12945737332008 + ], + [ + 67.13674008032642, + 28.934809638391627 + ], + [ + 67.2515827638101, + 29.12945737332008 + ], + [ + 67.02189739684275, + 29.12945737332008 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 29.518752843176983 + ], + [ + 67.2515827638101, + 29.518752843176983 + ], + [ + 67.13674008032642, + 29.713400578105436 + ], + [ + 67.02189739684275, + 29.518752843176983 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 29.518752843176983 + ], + [ + 67.13674008032642, + 29.713400578105436 + ], + [ + 66.90705471335907, + 29.713400578105436 + ], + [ + 67.02189739684275, + 29.518752843176983 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 29.518752843176983 + ], + [ + 66.90705471335907, + 29.713400578105436 + ], + [ + 66.79221202987539, + 29.518752843176983 + ], + [ + 67.02189739684275, + 29.518752843176983 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 29.518752843176983 + ], + [ + 66.79221202987539, + 29.518752843176983 + ], + [ + 66.90705471335907, + 29.32410510824853 + ], + [ + 67.02189739684275, + 29.518752843176983 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 29.518752843176983 + ], + [ + 66.90705471335907, + 29.32410510824853 + ], + [ + 67.13674008032642, + 29.32410510824853 + ], + [ + 67.02189739684275, + 29.518752843176983 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 29.518752843176983 + ], + [ + 67.13674008032642, + 29.32410510824853 + ], + [ + 67.2515827638101, + 29.518752843176983 + ], + [ + 67.02189739684275, + 29.518752843176983 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 29.90804831303389 + ], + [ + 67.2515827638101, + 29.90804831303389 + ], + [ + 67.13674008032642, + 30.102696047962343 + ], + [ + 67.02189739684275, + 29.90804831303389 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 29.90804831303389 + ], + [ + 67.13674008032642, + 30.102696047962343 + ], + [ + 66.90705471335907, + 30.102696047962343 + ], + [ + 67.02189739684275, + 29.90804831303389 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 29.90804831303389 + ], + [ + 66.90705471335907, + 30.102696047962343 + ], + [ + 66.79221202987539, + 29.90804831303389 + ], + [ + 67.02189739684275, + 29.90804831303389 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 29.90804831303389 + ], + [ + 66.79221202987539, + 29.90804831303389 + ], + [ + 66.90705471335907, + 29.71340057810544 + ], + [ + 67.02189739684275, + 29.90804831303389 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 29.90804831303389 + ], + [ + 66.90705471335907, + 29.71340057810544 + ], + [ + 67.13674008032642, + 29.71340057810544 + ], + [ + 67.02189739684275, + 29.90804831303389 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 29.90804831303389 + ], + [ + 67.13674008032642, + 29.71340057810544 + ], + [ + 67.2515827638101, + 29.90804831303389 + ], + [ + 67.02189739684275, + 29.90804831303389 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 30.297343782890795 + ], + [ + 67.2515827638101, + 30.297343782890795 + ], + [ + 67.13674008032642, + 30.491991517819248 + ], + [ + 67.02189739684275, + 30.297343782890795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 30.297343782890795 + ], + [ + 67.13674008032642, + 30.491991517819248 + ], + [ + 66.90705471335907, + 30.491991517819248 + ], + [ + 67.02189739684275, + 30.297343782890795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 30.297343782890795 + ], + [ + 66.90705471335907, + 30.491991517819248 + ], + [ + 66.79221202987539, + 30.297343782890795 + ], + [ + 67.02189739684275, + 30.297343782890795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 30.297343782890795 + ], + [ + 66.79221202987539, + 30.297343782890795 + ], + [ + 66.90705471335907, + 30.102696047962343 + ], + [ + 67.02189739684275, + 30.297343782890795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 30.297343782890795 + ], + [ + 66.90705471335907, + 30.102696047962343 + ], + [ + 67.13674008032642, + 30.102696047962343 + ], + [ + 67.02189739684275, + 30.297343782890795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 30.297343782890795 + ], + [ + 67.13674008032642, + 30.102696047962343 + ], + [ + 67.2515827638101, + 30.297343782890795 + ], + [ + 67.02189739684275, + 30.297343782890795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 30.686639252747703 + ], + [ + 67.2515827638101, + 30.686639252747703 + ], + [ + 67.13674008032642, + 30.881286987676155 + ], + [ + 67.02189739684275, + 30.686639252747703 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 30.686639252747703 + ], + [ + 67.13674008032642, + 30.881286987676155 + ], + [ + 66.90705471335907, + 30.881286987676155 + ], + [ + 67.02189739684275, + 30.686639252747703 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 30.686639252747703 + ], + [ + 66.90705471335907, + 30.881286987676155 + ], + [ + 66.79221202987539, + 30.686639252747703 + ], + [ + 67.02189739684275, + 30.686639252747703 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 30.686639252747703 + ], + [ + 66.79221202987539, + 30.686639252747703 + ], + [ + 66.90705471335907, + 30.49199151781925 + ], + [ + 67.02189739684275, + 30.686639252747703 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 30.686639252747703 + ], + [ + 66.90705471335907, + 30.49199151781925 + ], + [ + 67.13674008032642, + 30.49199151781925 + ], + [ + 67.02189739684275, + 30.686639252747703 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 30.686639252747703 + ], + [ + 67.13674008032642, + 30.49199151781925 + ], + [ + 67.2515827638101, + 30.686639252747703 + ], + [ + 67.02189739684275, + 30.686639252747703 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 31.07593472260461 + ], + [ + 67.2515827638101, + 31.07593472260461 + ], + [ + 67.13674008032642, + 31.270582457533063 + ], + [ + 67.02189739684275, + 31.07593472260461 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 31.07593472260461 + ], + [ + 67.13674008032642, + 31.270582457533063 + ], + [ + 66.90705471335907, + 31.270582457533063 + ], + [ + 67.02189739684275, + 31.07593472260461 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 31.07593472260461 + ], + [ + 66.90705471335907, + 31.270582457533063 + ], + [ + 66.79221202987539, + 31.07593472260461 + ], + [ + 67.02189739684275, + 31.07593472260461 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 31.07593472260461 + ], + [ + 66.79221202987539, + 31.07593472260461 + ], + [ + 66.90705471335907, + 30.88128698767616 + ], + [ + 67.02189739684275, + 31.07593472260461 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 31.07593472260461 + ], + [ + 66.90705471335907, + 30.88128698767616 + ], + [ + 67.13674008032642, + 30.88128698767616 + ], + [ + 67.02189739684275, + 31.07593472260461 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 31.07593472260461 + ], + [ + 67.13674008032642, + 30.88128698767616 + ], + [ + 67.2515827638101, + 31.07593472260461 + ], + [ + 67.02189739684275, + 31.07593472260461 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 31.465230192461515 + ], + [ + 67.2515827638101, + 31.465230192461515 + ], + [ + 67.13674008032642, + 31.659877927389967 + ], + [ + 67.02189739684275, + 31.465230192461515 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 31.465230192461515 + ], + [ + 67.13674008032642, + 31.659877927389967 + ], + [ + 66.90705471335907, + 31.659877927389967 + ], + [ + 67.02189739684275, + 31.465230192461515 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 31.465230192461515 + ], + [ + 66.90705471335907, + 31.659877927389967 + ], + [ + 66.79221202987539, + 31.465230192461515 + ], + [ + 67.02189739684275, + 31.465230192461515 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 31.465230192461515 + ], + [ + 66.79221202987539, + 31.465230192461515 + ], + [ + 66.90705471335907, + 31.270582457533063 + ], + [ + 67.02189739684275, + 31.465230192461515 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 31.465230192461515 + ], + [ + 66.90705471335907, + 31.270582457533063 + ], + [ + 67.13674008032642, + 31.270582457533063 + ], + [ + 67.02189739684275, + 31.465230192461515 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 31.465230192461515 + ], + [ + 67.13674008032642, + 31.270582457533063 + ], + [ + 67.2515827638101, + 31.465230192461515 + ], + [ + 67.02189739684275, + 31.465230192461515 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 31.854525662318423 + ], + [ + 67.2515827638101, + 31.854525662318423 + ], + [ + 67.13674008032642, + 32.049173397246875 + ], + [ + 67.02189739684275, + 31.854525662318423 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 31.854525662318423 + ], + [ + 67.13674008032642, + 32.049173397246875 + ], + [ + 66.90705471335907, + 32.049173397246875 + ], + [ + 67.02189739684275, + 31.854525662318423 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 31.854525662318423 + ], + [ + 66.90705471335907, + 32.049173397246875 + ], + [ + 66.79221202987539, + 31.854525662318423 + ], + [ + 67.02189739684275, + 31.854525662318423 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 31.854525662318423 + ], + [ + 66.79221202987539, + 31.854525662318423 + ], + [ + 66.90705471335907, + 31.65987792738997 + ], + [ + 67.02189739684275, + 31.854525662318423 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 31.854525662318423 + ], + [ + 66.90705471335907, + 31.65987792738997 + ], + [ + 67.13674008032642, + 31.65987792738997 + ], + [ + 67.02189739684275, + 31.854525662318423 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 31.854525662318423 + ], + [ + 67.13674008032642, + 31.65987792738997 + ], + [ + 67.2515827638101, + 31.854525662318423 + ], + [ + 67.02189739684275, + 31.854525662318423 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 32.24382113217533 + ], + [ + 67.2515827638101, + 32.24382113217533 + ], + [ + 67.13674008032642, + 32.43846886710378 + ], + [ + 67.02189739684275, + 32.24382113217533 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 32.24382113217533 + ], + [ + 67.13674008032642, + 32.43846886710378 + ], + [ + 66.90705471335907, + 32.43846886710378 + ], + [ + 67.02189739684275, + 32.24382113217533 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 32.24382113217533 + ], + [ + 66.90705471335907, + 32.43846886710378 + ], + [ + 66.79221202987539, + 32.24382113217533 + ], + [ + 67.02189739684275, + 32.24382113217533 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 32.24382113217533 + ], + [ + 66.79221202987539, + 32.24382113217533 + ], + [ + 66.90705471335907, + 32.049173397246875 + ], + [ + 67.02189739684275, + 32.24382113217533 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 32.24382113217533 + ], + [ + 66.90705471335907, + 32.049173397246875 + ], + [ + 67.13674008032642, + 32.049173397246875 + ], + [ + 67.02189739684275, + 32.24382113217533 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 32.24382113217533 + ], + [ + 67.13674008032642, + 32.049173397246875 + ], + [ + 67.2515827638101, + 32.24382113217533 + ], + [ + 67.02189739684275, + 32.24382113217533 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 32.63311660203224 + ], + [ + 67.2515827638101, + 32.63311660203224 + ], + [ + 67.13674008032642, + 32.82776433696069 + ], + [ + 67.02189739684275, + 32.63311660203224 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 32.63311660203224 + ], + [ + 67.13674008032642, + 32.82776433696069 + ], + [ + 66.90705471335907, + 32.82776433696069 + ], + [ + 67.02189739684275, + 32.63311660203224 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 32.63311660203224 + ], + [ + 66.90705471335907, + 32.82776433696069 + ], + [ + 66.79221202987539, + 32.63311660203224 + ], + [ + 67.02189739684275, + 32.63311660203224 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 32.63311660203224 + ], + [ + 66.79221202987539, + 32.63311660203224 + ], + [ + 66.90705471335907, + 32.438468867103786 + ], + [ + 67.02189739684275, + 32.63311660203224 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 32.63311660203224 + ], + [ + 66.90705471335907, + 32.438468867103786 + ], + [ + 67.13674008032642, + 32.438468867103786 + ], + [ + 67.02189739684275, + 32.63311660203224 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 32.63311660203224 + ], + [ + 67.13674008032642, + 32.438468867103786 + ], + [ + 67.2515827638101, + 32.63311660203224 + ], + [ + 67.02189739684275, + 32.63311660203224 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 33.02241207188914 + ], + [ + 67.2515827638101, + 33.02241207188914 + ], + [ + 67.13674008032642, + 33.217059806817595 + ], + [ + 67.02189739684275, + 33.02241207188914 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 33.02241207188914 + ], + [ + 67.13674008032642, + 33.217059806817595 + ], + [ + 66.90705471335907, + 33.217059806817595 + ], + [ + 67.02189739684275, + 33.02241207188914 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 33.02241207188914 + ], + [ + 66.90705471335907, + 33.217059806817595 + ], + [ + 66.79221202987539, + 33.02241207188914 + ], + [ + 67.02189739684275, + 33.02241207188914 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 33.02241207188914 + ], + [ + 66.79221202987539, + 33.02241207188914 + ], + [ + 66.90705471335907, + 32.82776433696069 + ], + [ + 67.02189739684275, + 33.02241207188914 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 33.02241207188914 + ], + [ + 66.90705471335907, + 32.82776433696069 + ], + [ + 67.13674008032642, + 32.82776433696069 + ], + [ + 67.02189739684275, + 33.02241207188914 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 33.02241207188914 + ], + [ + 67.13674008032642, + 32.82776433696069 + ], + [ + 67.2515827638101, + 33.02241207188914 + ], + [ + 67.02189739684275, + 33.02241207188914 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 33.41170754174605 + ], + [ + 67.2515827638101, + 33.41170754174605 + ], + [ + 67.13674008032642, + 33.6063552766745 + ], + [ + 67.02189739684275, + 33.41170754174605 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 33.41170754174605 + ], + [ + 67.13674008032642, + 33.6063552766745 + ], + [ + 66.90705471335907, + 33.6063552766745 + ], + [ + 67.02189739684275, + 33.41170754174605 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 33.41170754174605 + ], + [ + 66.90705471335907, + 33.6063552766745 + ], + [ + 66.79221202987539, + 33.41170754174605 + ], + [ + 67.02189739684275, + 33.41170754174605 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 33.41170754174605 + ], + [ + 66.79221202987539, + 33.41170754174605 + ], + [ + 66.90705471335907, + 33.217059806817595 + ], + [ + 67.02189739684275, + 33.41170754174605 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 33.41170754174605 + ], + [ + 66.90705471335907, + 33.217059806817595 + ], + [ + 67.13674008032642, + 33.217059806817595 + ], + [ + 67.02189739684275, + 33.41170754174605 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 33.41170754174605 + ], + [ + 67.13674008032642, + 33.217059806817595 + ], + [ + 67.2515827638101, + 33.41170754174605 + ], + [ + 67.02189739684275, + 33.41170754174605 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 33.80100301160295 + ], + [ + 67.2515827638101, + 33.80100301160295 + ], + [ + 67.13674008032642, + 33.9956507465314 + ], + [ + 67.02189739684275, + 33.80100301160295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 33.80100301160295 + ], + [ + 67.13674008032642, + 33.9956507465314 + ], + [ + 66.90705471335907, + 33.9956507465314 + ], + [ + 67.02189739684275, + 33.80100301160295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 33.80100301160295 + ], + [ + 66.90705471335907, + 33.9956507465314 + ], + [ + 66.79221202987539, + 33.80100301160295 + ], + [ + 67.02189739684275, + 33.80100301160295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 33.80100301160295 + ], + [ + 66.79221202987539, + 33.80100301160295 + ], + [ + 66.90705471335907, + 33.6063552766745 + ], + [ + 67.02189739684275, + 33.80100301160295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 33.80100301160295 + ], + [ + 66.90705471335907, + 33.6063552766745 + ], + [ + 67.13674008032642, + 33.6063552766745 + ], + [ + 67.02189739684275, + 33.80100301160295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 33.80100301160295 + ], + [ + 67.13674008032642, + 33.6063552766745 + ], + [ + 67.2515827638101, + 33.80100301160295 + ], + [ + 67.02189739684275, + 33.80100301160295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 34.190298481459855 + ], + [ + 67.2515827638101, + 34.190298481459855 + ], + [ + 67.13674008032642, + 34.38494621638831 + ], + [ + 67.02189739684275, + 34.190298481459855 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 34.190298481459855 + ], + [ + 67.13674008032642, + 34.38494621638831 + ], + [ + 66.90705471335907, + 34.38494621638831 + ], + [ + 67.02189739684275, + 34.190298481459855 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 34.190298481459855 + ], + [ + 66.90705471335907, + 34.38494621638831 + ], + [ + 66.79221202987539, + 34.190298481459855 + ], + [ + 67.02189739684275, + 34.190298481459855 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 34.190298481459855 + ], + [ + 66.79221202987539, + 34.190298481459855 + ], + [ + 66.90705471335907, + 33.9956507465314 + ], + [ + 67.02189739684275, + 34.190298481459855 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 34.190298481459855 + ], + [ + 66.90705471335907, + 33.9956507465314 + ], + [ + 67.13674008032642, + 33.9956507465314 + ], + [ + 67.02189739684275, + 34.190298481459855 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 34.190298481459855 + ], + [ + 67.13674008032642, + 33.9956507465314 + ], + [ + 67.2515827638101, + 34.190298481459855 + ], + [ + 67.02189739684275, + 34.190298481459855 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 34.57959395131677 + ], + [ + 67.2515827638101, + 34.57959395131677 + ], + [ + 67.13674008032642, + 34.77424168624522 + ], + [ + 67.02189739684275, + 34.57959395131677 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 34.57959395131677 + ], + [ + 67.13674008032642, + 34.77424168624522 + ], + [ + 66.90705471335907, + 34.77424168624522 + ], + [ + 67.02189739684275, + 34.57959395131677 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 34.57959395131677 + ], + [ + 66.90705471335907, + 34.77424168624522 + ], + [ + 66.79221202987539, + 34.57959395131677 + ], + [ + 67.02189739684275, + 34.57959395131677 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 34.57959395131677 + ], + [ + 66.79221202987539, + 34.57959395131677 + ], + [ + 66.90705471335907, + 34.384946216388315 + ], + [ + 67.02189739684275, + 34.57959395131677 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 34.57959395131677 + ], + [ + 66.90705471335907, + 34.384946216388315 + ], + [ + 67.13674008032642, + 34.384946216388315 + ], + [ + 67.02189739684275, + 34.57959395131677 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 34.57959395131677 + ], + [ + 67.13674008032642, + 34.384946216388315 + ], + [ + 67.2515827638101, + 34.57959395131677 + ], + [ + 67.02189739684275, + 34.57959395131677 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 34.96888942117368 + ], + [ + 67.2515827638101, + 34.96888942117368 + ], + [ + 67.13674008032642, + 35.16353715610213 + ], + [ + 67.02189739684275, + 34.96888942117368 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 34.96888942117368 + ], + [ + 67.13674008032642, + 35.16353715610213 + ], + [ + 66.90705471335907, + 35.16353715610213 + ], + [ + 67.02189739684275, + 34.96888942117368 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 34.96888942117368 + ], + [ + 66.90705471335907, + 35.16353715610213 + ], + [ + 66.79221202987539, + 34.96888942117368 + ], + [ + 67.02189739684275, + 34.96888942117368 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 34.96888942117368 + ], + [ + 66.79221202987539, + 34.96888942117368 + ], + [ + 66.90705471335907, + 34.774241686245226 + ], + [ + 67.02189739684275, + 34.96888942117368 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 34.96888942117368 + ], + [ + 66.90705471335907, + 34.774241686245226 + ], + [ + 67.13674008032642, + 34.774241686245226 + ], + [ + 67.02189739684275, + 34.96888942117368 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 34.96888942117368 + ], + [ + 67.13674008032642, + 34.774241686245226 + ], + [ + 67.2515827638101, + 34.96888942117368 + ], + [ + 67.02189739684275, + 34.96888942117368 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 35.35818489103058 + ], + [ + 67.2515827638101, + 35.35818489103058 + ], + [ + 67.13674008032642, + 35.552832625959034 + ], + [ + 67.02189739684275, + 35.35818489103058 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 35.35818489103058 + ], + [ + 67.13674008032642, + 35.552832625959034 + ], + [ + 66.90705471335907, + 35.552832625959034 + ], + [ + 67.02189739684275, + 35.35818489103058 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 35.35818489103058 + ], + [ + 66.90705471335907, + 35.552832625959034 + ], + [ + 66.79221202987539, + 35.35818489103058 + ], + [ + 67.02189739684275, + 35.35818489103058 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 35.35818489103058 + ], + [ + 66.79221202987539, + 35.35818489103058 + ], + [ + 66.90705471335907, + 35.16353715610213 + ], + [ + 67.02189739684275, + 35.35818489103058 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 35.35818489103058 + ], + [ + 66.90705471335907, + 35.16353715610213 + ], + [ + 67.13674008032642, + 35.16353715610213 + ], + [ + 67.02189739684275, + 35.35818489103058 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 35.35818489103058 + ], + [ + 67.13674008032642, + 35.16353715610213 + ], + [ + 67.2515827638101, + 35.35818489103058 + ], + [ + 67.02189739684275, + 35.35818489103058 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 35.74748036088749 + ], + [ + 67.2515827638101, + 35.74748036088749 + ], + [ + 67.13674008032642, + 35.94212809581594 + ], + [ + 67.02189739684275, + 35.74748036088749 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 35.74748036088749 + ], + [ + 67.13674008032642, + 35.94212809581594 + ], + [ + 66.90705471335907, + 35.94212809581594 + ], + [ + 67.02189739684275, + 35.74748036088749 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 35.74748036088749 + ], + [ + 66.90705471335907, + 35.94212809581594 + ], + [ + 66.79221202987539, + 35.74748036088749 + ], + [ + 67.02189739684275, + 35.74748036088749 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 35.74748036088749 + ], + [ + 66.79221202987539, + 35.74748036088749 + ], + [ + 66.90705471335907, + 35.552832625959034 + ], + [ + 67.02189739684275, + 35.74748036088749 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 35.74748036088749 + ], + [ + 66.90705471335907, + 35.552832625959034 + ], + [ + 67.13674008032642, + 35.552832625959034 + ], + [ + 67.02189739684275, + 35.74748036088749 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 35.74748036088749 + ], + [ + 67.13674008032642, + 35.552832625959034 + ], + [ + 67.2515827638101, + 35.74748036088749 + ], + [ + 67.02189739684275, + 35.74748036088749 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 36.13677583074439 + ], + [ + 67.2515827638101, + 36.13677583074439 + ], + [ + 67.13674008032642, + 36.33142356567284 + ], + [ + 67.02189739684275, + 36.13677583074439 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 36.13677583074439 + ], + [ + 67.13674008032642, + 36.33142356567284 + ], + [ + 66.90705471335907, + 36.33142356567284 + ], + [ + 67.02189739684275, + 36.13677583074439 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 36.13677583074439 + ], + [ + 66.90705471335907, + 36.33142356567284 + ], + [ + 66.79221202987539, + 36.13677583074439 + ], + [ + 67.02189739684275, + 36.13677583074439 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 36.13677583074439 + ], + [ + 66.79221202987539, + 36.13677583074439 + ], + [ + 66.90705471335907, + 35.94212809581594 + ], + [ + 67.02189739684275, + 36.13677583074439 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 36.13677583074439 + ], + [ + 66.90705471335907, + 35.94212809581594 + ], + [ + 67.13674008032642, + 35.94212809581594 + ], + [ + 67.02189739684275, + 36.13677583074439 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 36.13677583074439 + ], + [ + 67.13674008032642, + 35.94212809581594 + ], + [ + 67.2515827638101, + 36.13677583074439 + ], + [ + 67.02189739684275, + 36.13677583074439 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 36.526071300601295 + ], + [ + 67.2515827638101, + 36.526071300601295 + ], + [ + 67.13674008032642, + 36.72071903552975 + ], + [ + 67.02189739684275, + 36.526071300601295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 36.526071300601295 + ], + [ + 67.13674008032642, + 36.72071903552975 + ], + [ + 66.90705471335907, + 36.72071903552975 + ], + [ + 67.02189739684275, + 36.526071300601295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 36.526071300601295 + ], + [ + 66.90705471335907, + 36.72071903552975 + ], + [ + 66.79221202987539, + 36.526071300601295 + ], + [ + 67.02189739684275, + 36.526071300601295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 36.526071300601295 + ], + [ + 66.79221202987539, + 36.526071300601295 + ], + [ + 66.90705471335907, + 36.33142356567284 + ], + [ + 67.02189739684275, + 36.526071300601295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 36.526071300601295 + ], + [ + 66.90705471335907, + 36.33142356567284 + ], + [ + 67.13674008032642, + 36.33142356567284 + ], + [ + 67.02189739684275, + 36.526071300601295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 36.526071300601295 + ], + [ + 67.13674008032642, + 36.33142356567284 + ], + [ + 67.2515827638101, + 36.526071300601295 + ], + [ + 67.02189739684275, + 36.526071300601295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 36.915366770458206 + ], + [ + 67.2515827638101, + 36.915366770458206 + ], + [ + 67.13674008032642, + 37.11001450538666 + ], + [ + 67.02189739684275, + 36.915366770458206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 36.915366770458206 + ], + [ + 67.13674008032642, + 37.11001450538666 + ], + [ + 66.90705471335907, + 37.11001450538666 + ], + [ + 67.02189739684275, + 36.915366770458206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 36.915366770458206 + ], + [ + 66.90705471335907, + 37.11001450538666 + ], + [ + 66.79221202987539, + 36.915366770458206 + ], + [ + 67.02189739684275, + 36.915366770458206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 36.915366770458206 + ], + [ + 66.79221202987539, + 36.915366770458206 + ], + [ + 66.90705471335907, + 36.720719035529754 + ], + [ + 67.02189739684275, + 36.915366770458206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 36.915366770458206 + ], + [ + 66.90705471335907, + 36.720719035529754 + ], + [ + 67.13674008032642, + 36.720719035529754 + ], + [ + 67.02189739684275, + 36.915366770458206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 36.915366770458206 + ], + [ + 67.13674008032642, + 36.720719035529754 + ], + [ + 67.2515827638101, + 36.915366770458206 + ], + [ + 67.02189739684275, + 36.915366770458206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 37.30466224031511 + ], + [ + 67.2515827638101, + 37.30466224031511 + ], + [ + 67.13674008032642, + 37.49930997524356 + ], + [ + 67.02189739684275, + 37.30466224031511 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 37.30466224031511 + ], + [ + 67.13674008032642, + 37.49930997524356 + ], + [ + 66.90705471335907, + 37.49930997524356 + ], + [ + 67.02189739684275, + 37.30466224031511 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 37.30466224031511 + ], + [ + 66.90705471335907, + 37.49930997524356 + ], + [ + 66.79221202987539, + 37.30466224031511 + ], + [ + 67.02189739684275, + 37.30466224031511 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 37.30466224031511 + ], + [ + 66.79221202987539, + 37.30466224031511 + ], + [ + 66.90705471335907, + 37.11001450538666 + ], + [ + 67.02189739684275, + 37.30466224031511 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 37.30466224031511 + ], + [ + 66.90705471335907, + 37.11001450538666 + ], + [ + 67.13674008032642, + 37.11001450538666 + ], + [ + 67.02189739684275, + 37.30466224031511 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 37.30466224031511 + ], + [ + 67.13674008032642, + 37.11001450538666 + ], + [ + 67.2515827638101, + 37.30466224031511 + ], + [ + 67.02189739684275, + 37.30466224031511 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 37.69395771017202 + ], + [ + 67.2515827638101, + 37.69395771017202 + ], + [ + 67.13674008032642, + 37.888605445100474 + ], + [ + 67.02189739684275, + 37.69395771017202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 37.69395771017202 + ], + [ + 67.13674008032642, + 37.888605445100474 + ], + [ + 66.90705471335907, + 37.888605445100474 + ], + [ + 67.02189739684275, + 37.69395771017202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 37.69395771017202 + ], + [ + 66.90705471335907, + 37.888605445100474 + ], + [ + 66.79221202987539, + 37.69395771017202 + ], + [ + 67.02189739684275, + 37.69395771017202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 37.69395771017202 + ], + [ + 66.79221202987539, + 37.69395771017202 + ], + [ + 66.90705471335907, + 37.49930997524357 + ], + [ + 67.02189739684275, + 37.69395771017202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 37.69395771017202 + ], + [ + 66.90705471335907, + 37.49930997524357 + ], + [ + 67.13674008032642, + 37.49930997524357 + ], + [ + 67.02189739684275, + 37.69395771017202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 37.69395771017202 + ], + [ + 67.13674008032642, + 37.49930997524357 + ], + [ + 67.2515827638101, + 37.69395771017202 + ], + [ + 67.02189739684275, + 37.69395771017202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 38.083253180028926 + ], + [ + 67.2515827638101, + 38.083253180028926 + ], + [ + 67.13674008032642, + 38.27790091495738 + ], + [ + 67.02189739684275, + 38.083253180028926 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 38.083253180028926 + ], + [ + 67.13674008032642, + 38.27790091495738 + ], + [ + 66.90705471335907, + 38.27790091495738 + ], + [ + 67.02189739684275, + 38.083253180028926 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 38.083253180028926 + ], + [ + 66.90705471335907, + 38.27790091495738 + ], + [ + 66.79221202987539, + 38.083253180028926 + ], + [ + 67.02189739684275, + 38.083253180028926 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 38.083253180028926 + ], + [ + 66.79221202987539, + 38.083253180028926 + ], + [ + 66.90705471335907, + 37.888605445100474 + ], + [ + 67.02189739684275, + 38.083253180028926 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 38.083253180028926 + ], + [ + 66.90705471335907, + 37.888605445100474 + ], + [ + 67.13674008032642, + 37.888605445100474 + ], + [ + 67.02189739684275, + 38.083253180028926 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 38.083253180028926 + ], + [ + 67.13674008032642, + 37.888605445100474 + ], + [ + 67.2515827638101, + 38.083253180028926 + ], + [ + 67.02189739684275, + 38.083253180028926 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 38.47254864988583 + ], + [ + 67.2515827638101, + 38.47254864988583 + ], + [ + 67.13674008032642, + 38.66719638481428 + ], + [ + 67.02189739684275, + 38.47254864988583 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 38.47254864988583 + ], + [ + 67.13674008032642, + 38.66719638481428 + ], + [ + 66.90705471335907, + 38.66719638481428 + ], + [ + 67.02189739684275, + 38.47254864988583 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 38.47254864988583 + ], + [ + 66.90705471335907, + 38.66719638481428 + ], + [ + 66.79221202987539, + 38.47254864988583 + ], + [ + 67.02189739684275, + 38.47254864988583 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 38.47254864988583 + ], + [ + 66.79221202987539, + 38.47254864988583 + ], + [ + 66.90705471335907, + 38.27790091495738 + ], + [ + 67.02189739684275, + 38.47254864988583 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 38.47254864988583 + ], + [ + 66.90705471335907, + 38.27790091495738 + ], + [ + 67.13674008032642, + 38.27790091495738 + ], + [ + 67.02189739684275, + 38.47254864988583 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 38.47254864988583 + ], + [ + 67.13674008032642, + 38.27790091495738 + ], + [ + 67.2515827638101, + 38.47254864988583 + ], + [ + 67.02189739684275, + 38.47254864988583 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 38.861844119742734 + ], + [ + 67.2515827638101, + 38.861844119742734 + ], + [ + 67.13674008032642, + 39.05649185467119 + ], + [ + 67.02189739684275, + 38.861844119742734 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 38.861844119742734 + ], + [ + 67.13674008032642, + 39.05649185467119 + ], + [ + 66.90705471335907, + 39.05649185467119 + ], + [ + 67.02189739684275, + 38.861844119742734 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 38.861844119742734 + ], + [ + 66.90705471335907, + 39.05649185467119 + ], + [ + 66.79221202987539, + 38.861844119742734 + ], + [ + 67.02189739684275, + 38.861844119742734 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 38.861844119742734 + ], + [ + 66.79221202987539, + 38.861844119742734 + ], + [ + 66.90705471335907, + 38.66719638481428 + ], + [ + 67.02189739684275, + 38.861844119742734 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 38.861844119742734 + ], + [ + 66.90705471335907, + 38.66719638481428 + ], + [ + 67.13674008032642, + 38.66719638481428 + ], + [ + 67.02189739684275, + 38.861844119742734 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 38.861844119742734 + ], + [ + 67.13674008032642, + 38.66719638481428 + ], + [ + 67.2515827638101, + 38.861844119742734 + ], + [ + 67.02189739684275, + 38.861844119742734 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 39.25113958959964 + ], + [ + 67.2515827638101, + 39.25113958959964 + ], + [ + 67.13674008032642, + 39.44578732452809 + ], + [ + 67.02189739684275, + 39.25113958959964 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 39.25113958959964 + ], + [ + 67.13674008032642, + 39.44578732452809 + ], + [ + 66.90705471335907, + 39.44578732452809 + ], + [ + 67.02189739684275, + 39.25113958959964 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 39.25113958959964 + ], + [ + 66.90705471335907, + 39.44578732452809 + ], + [ + 66.79221202987539, + 39.25113958959964 + ], + [ + 67.02189739684275, + 39.25113958959964 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 39.25113958959964 + ], + [ + 66.79221202987539, + 39.25113958959964 + ], + [ + 66.90705471335907, + 39.05649185467119 + ], + [ + 67.02189739684275, + 39.25113958959964 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 39.25113958959964 + ], + [ + 66.90705471335907, + 39.05649185467119 + ], + [ + 67.13674008032642, + 39.05649185467119 + ], + [ + 67.02189739684275, + 39.25113958959964 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 39.25113958959964 + ], + [ + 67.13674008032642, + 39.05649185467119 + ], + [ + 67.2515827638101, + 39.25113958959964 + ], + [ + 67.02189739684275, + 39.25113958959964 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 39.64043505945655 + ], + [ + 67.2515827638101, + 39.64043505945655 + ], + [ + 67.13674008032642, + 39.835082794385 + ], + [ + 67.02189739684275, + 39.64043505945655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 39.64043505945655 + ], + [ + 67.13674008032642, + 39.835082794385 + ], + [ + 66.90705471335907, + 39.835082794385 + ], + [ + 67.02189739684275, + 39.64043505945655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 39.64043505945655 + ], + [ + 66.90705471335907, + 39.835082794385 + ], + [ + 66.79221202987539, + 39.64043505945655 + ], + [ + 67.02189739684275, + 39.64043505945655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 39.64043505945655 + ], + [ + 66.79221202987539, + 39.64043505945655 + ], + [ + 66.90705471335907, + 39.4457873245281 + ], + [ + 67.02189739684275, + 39.64043505945655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 39.64043505945655 + ], + [ + 66.90705471335907, + 39.4457873245281 + ], + [ + 67.13674008032642, + 39.4457873245281 + ], + [ + 67.02189739684275, + 39.64043505945655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 39.64043505945655 + ], + [ + 67.13674008032642, + 39.4457873245281 + ], + [ + 67.2515827638101, + 39.64043505945655 + ], + [ + 67.02189739684275, + 39.64043505945655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 40.029730529313454 + ], + [ + 67.2515827638101, + 40.029730529313454 + ], + [ + 67.13674008032642, + 40.224378264241906 + ], + [ + 67.02189739684275, + 40.029730529313454 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 40.029730529313454 + ], + [ + 67.13674008032642, + 40.224378264241906 + ], + [ + 66.90705471335907, + 40.224378264241906 + ], + [ + 67.02189739684275, + 40.029730529313454 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 40.029730529313454 + ], + [ + 66.90705471335907, + 40.224378264241906 + ], + [ + 66.79221202987539, + 40.029730529313454 + ], + [ + 67.02189739684275, + 40.029730529313454 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 40.029730529313454 + ], + [ + 66.79221202987539, + 40.029730529313454 + ], + [ + 66.90705471335907, + 39.835082794385 + ], + [ + 67.02189739684275, + 40.029730529313454 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 40.029730529313454 + ], + [ + 66.90705471335907, + 39.835082794385 + ], + [ + 67.13674008032642, + 39.835082794385 + ], + [ + 67.02189739684275, + 40.029730529313454 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 40.029730529313454 + ], + [ + 67.13674008032642, + 39.835082794385 + ], + [ + 67.2515827638101, + 40.029730529313454 + ], + [ + 67.02189739684275, + 40.029730529313454 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 40.419025999170366 + ], + [ + 67.2515827638101, + 40.419025999170366 + ], + [ + 67.13674008032642, + 40.61367373409882 + ], + [ + 67.02189739684275, + 40.419025999170366 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 40.419025999170366 + ], + [ + 67.13674008032642, + 40.61367373409882 + ], + [ + 66.90705471335907, + 40.61367373409882 + ], + [ + 67.02189739684275, + 40.419025999170366 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 40.419025999170366 + ], + [ + 66.90705471335907, + 40.61367373409882 + ], + [ + 66.79221202987539, + 40.419025999170366 + ], + [ + 67.02189739684275, + 40.419025999170366 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 40.419025999170366 + ], + [ + 66.79221202987539, + 40.419025999170366 + ], + [ + 66.90705471335907, + 40.22437826424191 + ], + [ + 67.02189739684275, + 40.419025999170366 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 40.419025999170366 + ], + [ + 66.90705471335907, + 40.22437826424191 + ], + [ + 67.13674008032642, + 40.22437826424191 + ], + [ + 67.02189739684275, + 40.419025999170366 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 40.419025999170366 + ], + [ + 67.13674008032642, + 40.22437826424191 + ], + [ + 67.2515827638101, + 40.419025999170366 + ], + [ + 67.02189739684275, + 40.419025999170366 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 40.80832146902727 + ], + [ + 67.2515827638101, + 40.80832146902727 + ], + [ + 67.13674008032642, + 41.00296920395572 + ], + [ + 67.02189739684275, + 40.80832146902727 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 40.80832146902727 + ], + [ + 67.13674008032642, + 41.00296920395572 + ], + [ + 66.90705471335907, + 41.00296920395572 + ], + [ + 67.02189739684275, + 40.80832146902727 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 40.80832146902727 + ], + [ + 66.90705471335907, + 41.00296920395572 + ], + [ + 66.79221202987539, + 40.80832146902727 + ], + [ + 67.02189739684275, + 40.80832146902727 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 40.80832146902727 + ], + [ + 66.79221202987539, + 40.80832146902727 + ], + [ + 66.90705471335907, + 40.61367373409882 + ], + [ + 67.02189739684275, + 40.80832146902727 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 40.80832146902727 + ], + [ + 66.90705471335907, + 40.61367373409882 + ], + [ + 67.13674008032642, + 40.61367373409882 + ], + [ + 67.02189739684275, + 40.80832146902727 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 40.80832146902727 + ], + [ + 67.13674008032642, + 40.61367373409882 + ], + [ + 67.2515827638101, + 40.80832146902727 + ], + [ + 67.02189739684275, + 40.80832146902727 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 41.197616938884174 + ], + [ + 67.2515827638101, + 41.197616938884174 + ], + [ + 67.13674008032642, + 41.392264673812626 + ], + [ + 67.02189739684275, + 41.197616938884174 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 41.197616938884174 + ], + [ + 67.13674008032642, + 41.392264673812626 + ], + [ + 66.90705471335907, + 41.392264673812626 + ], + [ + 67.02189739684275, + 41.197616938884174 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 41.197616938884174 + ], + [ + 66.90705471335907, + 41.392264673812626 + ], + [ + 66.79221202987539, + 41.197616938884174 + ], + [ + 67.02189739684275, + 41.197616938884174 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 41.197616938884174 + ], + [ + 66.79221202987539, + 41.197616938884174 + ], + [ + 66.90705471335907, + 41.00296920395572 + ], + [ + 67.02189739684275, + 41.197616938884174 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 41.197616938884174 + ], + [ + 66.90705471335907, + 41.00296920395572 + ], + [ + 67.13674008032642, + 41.00296920395572 + ], + [ + 67.02189739684275, + 41.197616938884174 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 41.197616938884174 + ], + [ + 67.13674008032642, + 41.00296920395572 + ], + [ + 67.2515827638101, + 41.197616938884174 + ], + [ + 67.02189739684275, + 41.197616938884174 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 41.58691240874108 + ], + [ + 67.2515827638101, + 41.58691240874108 + ], + [ + 67.13674008032642, + 41.78156014366953 + ], + [ + 67.02189739684275, + 41.58691240874108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 41.58691240874108 + ], + [ + 67.13674008032642, + 41.78156014366953 + ], + [ + 66.90705471335907, + 41.78156014366953 + ], + [ + 67.02189739684275, + 41.58691240874108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 41.58691240874108 + ], + [ + 66.90705471335907, + 41.78156014366953 + ], + [ + 66.79221202987539, + 41.58691240874108 + ], + [ + 67.02189739684275, + 41.58691240874108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 41.58691240874108 + ], + [ + 66.79221202987539, + 41.58691240874108 + ], + [ + 66.90705471335907, + 41.392264673812626 + ], + [ + 67.02189739684275, + 41.58691240874108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 41.58691240874108 + ], + [ + 66.90705471335907, + 41.392264673812626 + ], + [ + 67.13674008032642, + 41.392264673812626 + ], + [ + 67.02189739684275, + 41.58691240874108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 41.58691240874108 + ], + [ + 67.13674008032642, + 41.392264673812626 + ], + [ + 67.2515827638101, + 41.58691240874108 + ], + [ + 67.02189739684275, + 41.58691240874108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 41.97620787859798 + ], + [ + 67.2515827638101, + 41.97620787859798 + ], + [ + 67.13674008032642, + 42.170855613526435 + ], + [ + 67.02189739684275, + 41.97620787859798 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 41.97620787859798 + ], + [ + 67.13674008032642, + 42.170855613526435 + ], + [ + 66.90705471335907, + 42.170855613526435 + ], + [ + 67.02189739684275, + 41.97620787859798 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 41.97620787859798 + ], + [ + 66.90705471335907, + 42.170855613526435 + ], + [ + 66.79221202987539, + 41.97620787859798 + ], + [ + 67.02189739684275, + 41.97620787859798 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 41.97620787859798 + ], + [ + 66.79221202987539, + 41.97620787859798 + ], + [ + 66.90705471335907, + 41.78156014366953 + ], + [ + 67.02189739684275, + 41.97620787859798 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 41.97620787859798 + ], + [ + 66.90705471335907, + 41.78156014366953 + ], + [ + 67.13674008032642, + 41.78156014366953 + ], + [ + 67.02189739684275, + 41.97620787859798 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 41.97620787859798 + ], + [ + 67.13674008032642, + 41.78156014366953 + ], + [ + 67.2515827638101, + 41.97620787859798 + ], + [ + 67.02189739684275, + 41.97620787859798 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 42.365503348454894 + ], + [ + 67.2515827638101, + 42.365503348454894 + ], + [ + 67.13674008032642, + 42.560151083383346 + ], + [ + 67.02189739684275, + 42.365503348454894 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 42.365503348454894 + ], + [ + 67.13674008032642, + 42.560151083383346 + ], + [ + 66.90705471335907, + 42.560151083383346 + ], + [ + 67.02189739684275, + 42.365503348454894 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 42.365503348454894 + ], + [ + 66.90705471335907, + 42.560151083383346 + ], + [ + 66.79221202987539, + 42.365503348454894 + ], + [ + 67.02189739684275, + 42.365503348454894 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 42.365503348454894 + ], + [ + 66.79221202987539, + 42.365503348454894 + ], + [ + 66.90705471335907, + 42.17085561352644 + ], + [ + 67.02189739684275, + 42.365503348454894 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 42.365503348454894 + ], + [ + 66.90705471335907, + 42.17085561352644 + ], + [ + 67.13674008032642, + 42.17085561352644 + ], + [ + 67.02189739684275, + 42.365503348454894 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 42.365503348454894 + ], + [ + 67.13674008032642, + 42.17085561352644 + ], + [ + 67.2515827638101, + 42.365503348454894 + ], + [ + 67.02189739684275, + 42.365503348454894 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 42.754798818311805 + ], + [ + 67.2515827638101, + 42.754798818311805 + ], + [ + 67.13674008032642, + 42.94944655324026 + ], + [ + 67.02189739684275, + 42.754798818311805 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 42.754798818311805 + ], + [ + 67.13674008032642, + 42.94944655324026 + ], + [ + 66.90705471335907, + 42.94944655324026 + ], + [ + 67.02189739684275, + 42.754798818311805 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 42.754798818311805 + ], + [ + 66.90705471335907, + 42.94944655324026 + ], + [ + 66.79221202987539, + 42.754798818311805 + ], + [ + 67.02189739684275, + 42.754798818311805 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 42.754798818311805 + ], + [ + 66.79221202987539, + 42.754798818311805 + ], + [ + 66.90705471335907, + 42.56015108338335 + ], + [ + 67.02189739684275, + 42.754798818311805 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 42.754798818311805 + ], + [ + 66.90705471335907, + 42.56015108338335 + ], + [ + 67.13674008032642, + 42.56015108338335 + ], + [ + 67.02189739684275, + 42.754798818311805 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 42.754798818311805 + ], + [ + 67.13674008032642, + 42.56015108338335 + ], + [ + 67.2515827638101, + 42.754798818311805 + ], + [ + 67.02189739684275, + 42.754798818311805 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 43.14409428816871 + ], + [ + 67.2515827638101, + 43.14409428816871 + ], + [ + 67.13674008032642, + 43.33874202309716 + ], + [ + 67.02189739684275, + 43.14409428816871 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 43.14409428816871 + ], + [ + 67.13674008032642, + 43.33874202309716 + ], + [ + 66.90705471335907, + 43.33874202309716 + ], + [ + 67.02189739684275, + 43.14409428816871 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 43.14409428816871 + ], + [ + 66.90705471335907, + 43.33874202309716 + ], + [ + 66.79221202987539, + 43.14409428816871 + ], + [ + 67.02189739684275, + 43.14409428816871 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 43.14409428816871 + ], + [ + 66.79221202987539, + 43.14409428816871 + ], + [ + 66.90705471335907, + 42.94944655324026 + ], + [ + 67.02189739684275, + 43.14409428816871 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 43.14409428816871 + ], + [ + 66.90705471335907, + 42.94944655324026 + ], + [ + 67.13674008032642, + 42.94944655324026 + ], + [ + 67.02189739684275, + 43.14409428816871 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 43.14409428816871 + ], + [ + 67.13674008032642, + 42.94944655324026 + ], + [ + 67.2515827638101, + 43.14409428816871 + ], + [ + 67.02189739684275, + 43.14409428816871 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 43.53338975802561 + ], + [ + 67.2515827638101, + 43.53338975802561 + ], + [ + 67.13674008032642, + 43.728037492954066 + ], + [ + 67.02189739684275, + 43.53338975802561 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 43.53338975802561 + ], + [ + 67.13674008032642, + 43.728037492954066 + ], + [ + 66.90705471335907, + 43.728037492954066 + ], + [ + 67.02189739684275, + 43.53338975802561 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 43.53338975802561 + ], + [ + 66.90705471335907, + 43.728037492954066 + ], + [ + 66.79221202987539, + 43.53338975802561 + ], + [ + 67.02189739684275, + 43.53338975802561 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 43.53338975802561 + ], + [ + 66.79221202987539, + 43.53338975802561 + ], + [ + 66.90705471335907, + 43.33874202309716 + ], + [ + 67.02189739684275, + 43.53338975802561 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 43.53338975802561 + ], + [ + 66.90705471335907, + 43.33874202309716 + ], + [ + 67.13674008032642, + 43.33874202309716 + ], + [ + 67.02189739684275, + 43.53338975802561 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 43.53338975802561 + ], + [ + 67.13674008032642, + 43.33874202309716 + ], + [ + 67.2515827638101, + 43.53338975802561 + ], + [ + 67.02189739684275, + 43.53338975802561 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 43.92268522788252 + ], + [ + 67.2515827638101, + 43.92268522788252 + ], + [ + 67.13674008032642, + 44.11733296281097 + ], + [ + 67.02189739684275, + 43.92268522788252 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 43.92268522788252 + ], + [ + 67.13674008032642, + 44.11733296281097 + ], + [ + 66.90705471335907, + 44.11733296281097 + ], + [ + 67.02189739684275, + 43.92268522788252 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 43.92268522788252 + ], + [ + 66.90705471335907, + 44.11733296281097 + ], + [ + 66.79221202987539, + 43.92268522788252 + ], + [ + 67.02189739684275, + 43.92268522788252 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 43.92268522788252 + ], + [ + 66.79221202987539, + 43.92268522788252 + ], + [ + 66.90705471335907, + 43.728037492954066 + ], + [ + 67.02189739684275, + 43.92268522788252 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 43.92268522788252 + ], + [ + 66.90705471335907, + 43.728037492954066 + ], + [ + 67.13674008032642, + 43.728037492954066 + ], + [ + 67.02189739684275, + 43.92268522788252 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 43.92268522788252 + ], + [ + 67.13674008032642, + 43.728037492954066 + ], + [ + 67.2515827638101, + 43.92268522788252 + ], + [ + 67.02189739684275, + 43.92268522788252 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 44.31198069773942 + ], + [ + 67.2515827638101, + 44.31198069773942 + ], + [ + 67.13674008032642, + 44.506628432667874 + ], + [ + 67.02189739684275, + 44.31198069773942 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 44.31198069773942 + ], + [ + 67.13674008032642, + 44.506628432667874 + ], + [ + 66.90705471335907, + 44.506628432667874 + ], + [ + 67.02189739684275, + 44.31198069773942 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 44.31198069773942 + ], + [ + 66.90705471335907, + 44.506628432667874 + ], + [ + 66.79221202987539, + 44.31198069773942 + ], + [ + 67.02189739684275, + 44.31198069773942 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 44.31198069773942 + ], + [ + 66.79221202987539, + 44.31198069773942 + ], + [ + 66.90705471335907, + 44.11733296281097 + ], + [ + 67.02189739684275, + 44.31198069773942 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 44.31198069773942 + ], + [ + 66.90705471335907, + 44.11733296281097 + ], + [ + 67.13674008032642, + 44.11733296281097 + ], + [ + 67.02189739684275, + 44.31198069773942 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 44.31198069773942 + ], + [ + 67.13674008032642, + 44.11733296281097 + ], + [ + 67.2515827638101, + 44.31198069773942 + ], + [ + 67.02189739684275, + 44.31198069773942 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 44.701276167596326 + ], + [ + 67.2515827638101, + 44.701276167596326 + ], + [ + 67.13674008032642, + 44.89592390252478 + ], + [ + 67.02189739684275, + 44.701276167596326 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 44.701276167596326 + ], + [ + 67.13674008032642, + 44.89592390252478 + ], + [ + 66.90705471335907, + 44.89592390252478 + ], + [ + 67.02189739684275, + 44.701276167596326 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 44.701276167596326 + ], + [ + 66.90705471335907, + 44.89592390252478 + ], + [ + 66.79221202987539, + 44.701276167596326 + ], + [ + 67.02189739684275, + 44.701276167596326 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 44.701276167596326 + ], + [ + 66.79221202987539, + 44.701276167596326 + ], + [ + 66.90705471335907, + 44.506628432667874 + ], + [ + 67.02189739684275, + 44.701276167596326 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 44.701276167596326 + ], + [ + 66.90705471335907, + 44.506628432667874 + ], + [ + 67.13674008032642, + 44.506628432667874 + ], + [ + 67.02189739684275, + 44.701276167596326 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 44.701276167596326 + ], + [ + 67.13674008032642, + 44.506628432667874 + ], + [ + 67.2515827638101, + 44.701276167596326 + ], + [ + 67.02189739684275, + 44.701276167596326 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 45.090571637453245 + ], + [ + 67.2515827638101, + 45.090571637453245 + ], + [ + 67.13674008032642, + 45.2852193723817 + ], + [ + 67.02189739684275, + 45.090571637453245 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 45.090571637453245 + ], + [ + 67.13674008032642, + 45.2852193723817 + ], + [ + 66.90705471335907, + 45.2852193723817 + ], + [ + 67.02189739684275, + 45.090571637453245 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 45.090571637453245 + ], + [ + 66.90705471335907, + 45.2852193723817 + ], + [ + 66.79221202987539, + 45.090571637453245 + ], + [ + 67.02189739684275, + 45.090571637453245 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 45.090571637453245 + ], + [ + 66.79221202987539, + 45.090571637453245 + ], + [ + 66.90705471335907, + 44.89592390252479 + ], + [ + 67.02189739684275, + 45.090571637453245 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 45.090571637453245 + ], + [ + 66.90705471335907, + 44.89592390252479 + ], + [ + 67.13674008032642, + 44.89592390252479 + ], + [ + 67.02189739684275, + 45.090571637453245 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 45.090571637453245 + ], + [ + 67.13674008032642, + 44.89592390252479 + ], + [ + 67.2515827638101, + 45.090571637453245 + ], + [ + 67.02189739684275, + 45.090571637453245 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 45.47986710731015 + ], + [ + 67.2515827638101, + 45.47986710731015 + ], + [ + 67.13674008032642, + 45.6745148422386 + ], + [ + 67.02189739684275, + 45.47986710731015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 45.47986710731015 + ], + [ + 67.13674008032642, + 45.6745148422386 + ], + [ + 66.90705471335907, + 45.6745148422386 + ], + [ + 67.02189739684275, + 45.47986710731015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 45.47986710731015 + ], + [ + 66.90705471335907, + 45.6745148422386 + ], + [ + 66.79221202987539, + 45.47986710731015 + ], + [ + 67.02189739684275, + 45.47986710731015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 45.47986710731015 + ], + [ + 66.79221202987539, + 45.47986710731015 + ], + [ + 66.90705471335907, + 45.2852193723817 + ], + [ + 67.02189739684275, + 45.47986710731015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 45.47986710731015 + ], + [ + 66.90705471335907, + 45.2852193723817 + ], + [ + 67.13674008032642, + 45.2852193723817 + ], + [ + 67.02189739684275, + 45.47986710731015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 45.47986710731015 + ], + [ + 67.13674008032642, + 45.2852193723817 + ], + [ + 67.2515827638101, + 45.47986710731015 + ], + [ + 67.02189739684275, + 45.47986710731015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 45.86916257716705 + ], + [ + 67.2515827638101, + 45.86916257716705 + ], + [ + 67.13674008032642, + 46.063810312095505 + ], + [ + 67.02189739684275, + 45.86916257716705 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 45.86916257716705 + ], + [ + 67.13674008032642, + 46.063810312095505 + ], + [ + 66.90705471335907, + 46.063810312095505 + ], + [ + 67.02189739684275, + 45.86916257716705 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 45.86916257716705 + ], + [ + 66.90705471335907, + 46.063810312095505 + ], + [ + 66.79221202987539, + 45.86916257716705 + ], + [ + 67.02189739684275, + 45.86916257716705 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 45.86916257716705 + ], + [ + 66.79221202987539, + 45.86916257716705 + ], + [ + 66.90705471335907, + 45.6745148422386 + ], + [ + 67.02189739684275, + 45.86916257716705 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 45.86916257716705 + ], + [ + 66.90705471335907, + 45.6745148422386 + ], + [ + 67.13674008032642, + 45.6745148422386 + ], + [ + 67.02189739684275, + 45.86916257716705 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 45.86916257716705 + ], + [ + 67.13674008032642, + 45.6745148422386 + ], + [ + 67.2515827638101, + 45.86916257716705 + ], + [ + 67.02189739684275, + 45.86916257716705 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 46.25845804702396 + ], + [ + 67.2515827638101, + 46.25845804702396 + ], + [ + 67.13674008032642, + 46.45310578195241 + ], + [ + 67.02189739684275, + 46.25845804702396 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 46.25845804702396 + ], + [ + 67.13674008032642, + 46.45310578195241 + ], + [ + 66.90705471335907, + 46.45310578195241 + ], + [ + 67.02189739684275, + 46.25845804702396 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 46.25845804702396 + ], + [ + 66.90705471335907, + 46.45310578195241 + ], + [ + 66.79221202987539, + 46.25845804702396 + ], + [ + 67.02189739684275, + 46.25845804702396 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 46.25845804702396 + ], + [ + 66.79221202987539, + 46.25845804702396 + ], + [ + 66.90705471335907, + 46.063810312095505 + ], + [ + 67.02189739684275, + 46.25845804702396 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 46.25845804702396 + ], + [ + 66.90705471335907, + 46.063810312095505 + ], + [ + 67.13674008032642, + 46.063810312095505 + ], + [ + 67.02189739684275, + 46.25845804702396 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 46.25845804702396 + ], + [ + 67.13674008032642, + 46.063810312095505 + ], + [ + 67.2515827638101, + 46.25845804702396 + ], + [ + 67.02189739684275, + 46.25845804702396 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 46.64775351688086 + ], + [ + 67.2515827638101, + 46.64775351688086 + ], + [ + 67.13674008032642, + 46.842401251809314 + ], + [ + 67.02189739684275, + 46.64775351688086 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 46.64775351688086 + ], + [ + 67.13674008032642, + 46.842401251809314 + ], + [ + 66.90705471335907, + 46.842401251809314 + ], + [ + 67.02189739684275, + 46.64775351688086 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 46.64775351688086 + ], + [ + 66.90705471335907, + 46.842401251809314 + ], + [ + 66.79221202987539, + 46.64775351688086 + ], + [ + 67.02189739684275, + 46.64775351688086 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 46.64775351688086 + ], + [ + 66.79221202987539, + 46.64775351688086 + ], + [ + 66.90705471335907, + 46.45310578195241 + ], + [ + 67.02189739684275, + 46.64775351688086 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 46.64775351688086 + ], + [ + 66.90705471335907, + 46.45310578195241 + ], + [ + 67.13674008032642, + 46.45310578195241 + ], + [ + 67.02189739684275, + 46.64775351688086 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 46.64775351688086 + ], + [ + 67.13674008032642, + 46.45310578195241 + ], + [ + 67.2515827638101, + 46.64775351688086 + ], + [ + 67.02189739684275, + 46.64775351688086 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 47.037048986737766 + ], + [ + 67.2515827638101, + 47.037048986737766 + ], + [ + 67.13674008032642, + 47.23169672166622 + ], + [ + 67.02189739684275, + 47.037048986737766 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 47.037048986737766 + ], + [ + 67.13674008032642, + 47.23169672166622 + ], + [ + 66.90705471335907, + 47.23169672166622 + ], + [ + 67.02189739684275, + 47.037048986737766 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 47.037048986737766 + ], + [ + 66.90705471335907, + 47.23169672166622 + ], + [ + 66.79221202987539, + 47.037048986737766 + ], + [ + 67.02189739684275, + 47.037048986737766 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 47.037048986737766 + ], + [ + 66.79221202987539, + 47.037048986737766 + ], + [ + 66.90705471335907, + 46.842401251809314 + ], + [ + 67.02189739684275, + 47.037048986737766 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 47.037048986737766 + ], + [ + 66.90705471335907, + 46.842401251809314 + ], + [ + 67.13674008032642, + 46.842401251809314 + ], + [ + 67.02189739684275, + 47.037048986737766 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 47.037048986737766 + ], + [ + 67.13674008032642, + 46.842401251809314 + ], + [ + 67.2515827638101, + 47.037048986737766 + ], + [ + 67.02189739684275, + 47.037048986737766 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 47.42634445659467 + ], + [ + 67.2515827638101, + 47.42634445659467 + ], + [ + 67.13674008032642, + 47.62099219152312 + ], + [ + 67.02189739684275, + 47.42634445659467 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 47.42634445659467 + ], + [ + 67.13674008032642, + 47.62099219152312 + ], + [ + 66.90705471335907, + 47.62099219152312 + ], + [ + 67.02189739684275, + 47.42634445659467 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 47.42634445659467 + ], + [ + 66.90705471335907, + 47.62099219152312 + ], + [ + 66.79221202987539, + 47.42634445659467 + ], + [ + 67.02189739684275, + 47.42634445659467 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 47.42634445659467 + ], + [ + 66.79221202987539, + 47.42634445659467 + ], + [ + 66.90705471335907, + 47.23169672166622 + ], + [ + 67.02189739684275, + 47.42634445659467 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 47.42634445659467 + ], + [ + 66.90705471335907, + 47.23169672166622 + ], + [ + 67.13674008032642, + 47.23169672166622 + ], + [ + 67.02189739684275, + 47.42634445659467 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 47.42634445659467 + ], + [ + 67.13674008032642, + 47.23169672166622 + ], + [ + 67.2515827638101, + 47.42634445659467 + ], + [ + 67.02189739684275, + 47.42634445659467 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 47.81563992645159 + ], + [ + 67.2515827638101, + 47.81563992645159 + ], + [ + 67.13674008032642, + 48.01028766138004 + ], + [ + 67.02189739684275, + 47.81563992645159 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 47.81563992645159 + ], + [ + 67.13674008032642, + 48.01028766138004 + ], + [ + 66.90705471335907, + 48.01028766138004 + ], + [ + 67.02189739684275, + 47.81563992645159 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 47.81563992645159 + ], + [ + 66.90705471335907, + 48.01028766138004 + ], + [ + 66.79221202987539, + 47.81563992645159 + ], + [ + 67.02189739684275, + 47.81563992645159 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 47.81563992645159 + ], + [ + 66.79221202987539, + 47.81563992645159 + ], + [ + 66.90705471335907, + 47.620992191523136 + ], + [ + 67.02189739684275, + 47.81563992645159 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 47.81563992645159 + ], + [ + 66.90705471335907, + 47.620992191523136 + ], + [ + 67.13674008032642, + 47.620992191523136 + ], + [ + 67.02189739684275, + 47.81563992645159 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.02189739684275, + 47.81563992645159 + ], + [ + 67.13674008032642, + 47.620992191523136 + ], + [ + 67.2515827638101, + 47.81563992645159 + ], + [ + 67.02189739684275, + 47.81563992645159 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 11.805808964687746 + ], + [ + 67.59611081426114, + 11.805808964687746 + ], + [ + 67.48126813077745, + 12.0004566996162 + ], + [ + 67.36642544729378, + 11.805808964687746 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 11.805808964687746 + ], + [ + 67.48126813077745, + 12.0004566996162 + ], + [ + 67.2515827638101, + 12.0004566996162 + ], + [ + 67.36642544729378, + 11.805808964687746 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 11.805808964687746 + ], + [ + 67.2515827638101, + 12.0004566996162 + ], + [ + 67.13674008032642, + 11.805808964687746 + ], + [ + 67.36642544729378, + 11.805808964687746 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 11.805808964687746 + ], + [ + 67.13674008032642, + 11.805808964687746 + ], + [ + 67.2515827638101, + 11.611161229759292 + ], + [ + 67.36642544729378, + 11.805808964687746 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 11.805808964687746 + ], + [ + 67.2515827638101, + 11.611161229759292 + ], + [ + 67.48126813077745, + 11.611161229759292 + ], + [ + 67.36642544729378, + 11.805808964687746 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 11.805808964687746 + ], + [ + 67.48126813077745, + 11.611161229759292 + ], + [ + 67.59611081426114, + 11.805808964687746 + ], + [ + 67.36642544729378, + 11.805808964687746 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 12.195104434544652 + ], + [ + 67.59611081426114, + 12.195104434544652 + ], + [ + 67.48126813077745, + 12.389752169473105 + ], + [ + 67.36642544729378, + 12.195104434544652 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 12.195104434544652 + ], + [ + 67.48126813077745, + 12.389752169473105 + ], + [ + 67.2515827638101, + 12.389752169473105 + ], + [ + 67.36642544729378, + 12.195104434544652 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 12.195104434544652 + ], + [ + 67.2515827638101, + 12.389752169473105 + ], + [ + 67.13674008032642, + 12.195104434544652 + ], + [ + 67.36642544729378, + 12.195104434544652 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 12.195104434544652 + ], + [ + 67.13674008032642, + 12.195104434544652 + ], + [ + 67.2515827638101, + 12.000456699616198 + ], + [ + 67.36642544729378, + 12.195104434544652 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 12.195104434544652 + ], + [ + 67.2515827638101, + 12.000456699616198 + ], + [ + 67.48126813077745, + 12.000456699616198 + ], + [ + 67.36642544729378, + 12.195104434544652 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 12.195104434544652 + ], + [ + 67.48126813077745, + 12.000456699616198 + ], + [ + 67.59611081426114, + 12.195104434544652 + ], + [ + 67.36642544729378, + 12.195104434544652 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 12.58439990440156 + ], + [ + 67.59611081426114, + 12.58439990440156 + ], + [ + 67.48126813077745, + 12.779047639330013 + ], + [ + 67.36642544729378, + 12.58439990440156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 12.58439990440156 + ], + [ + 67.48126813077745, + 12.779047639330013 + ], + [ + 67.2515827638101, + 12.779047639330013 + ], + [ + 67.36642544729378, + 12.58439990440156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 12.58439990440156 + ], + [ + 67.2515827638101, + 12.779047639330013 + ], + [ + 67.13674008032642, + 12.58439990440156 + ], + [ + 67.36642544729378, + 12.58439990440156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 12.58439990440156 + ], + [ + 67.13674008032642, + 12.58439990440156 + ], + [ + 67.2515827638101, + 12.389752169473105 + ], + [ + 67.36642544729378, + 12.58439990440156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 12.58439990440156 + ], + [ + 67.2515827638101, + 12.389752169473105 + ], + [ + 67.48126813077745, + 12.389752169473105 + ], + [ + 67.36642544729378, + 12.58439990440156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 12.58439990440156 + ], + [ + 67.48126813077745, + 12.389752169473105 + ], + [ + 67.59611081426114, + 12.58439990440156 + ], + [ + 67.36642544729378, + 12.58439990440156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 12.973695374258465 + ], + [ + 67.59611081426114, + 12.973695374258465 + ], + [ + 67.48126813077745, + 13.16834310918692 + ], + [ + 67.36642544729378, + 12.973695374258465 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 12.973695374258465 + ], + [ + 67.48126813077745, + 13.16834310918692 + ], + [ + 67.2515827638101, + 13.16834310918692 + ], + [ + 67.36642544729378, + 12.973695374258465 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 12.973695374258465 + ], + [ + 67.2515827638101, + 13.16834310918692 + ], + [ + 67.13674008032642, + 12.973695374258465 + ], + [ + 67.36642544729378, + 12.973695374258465 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 12.973695374258465 + ], + [ + 67.13674008032642, + 12.973695374258465 + ], + [ + 67.2515827638101, + 12.779047639330011 + ], + [ + 67.36642544729378, + 12.973695374258465 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 12.973695374258465 + ], + [ + 67.2515827638101, + 12.779047639330011 + ], + [ + 67.48126813077745, + 12.779047639330011 + ], + [ + 67.36642544729378, + 12.973695374258465 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 12.973695374258465 + ], + [ + 67.48126813077745, + 12.779047639330011 + ], + [ + 67.59611081426114, + 12.973695374258465 + ], + [ + 67.36642544729378, + 12.973695374258465 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 13.362990844115371 + ], + [ + 67.59611081426114, + 13.362990844115371 + ], + [ + 67.48126813077745, + 13.557638579043825 + ], + [ + 67.36642544729378, + 13.362990844115371 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 13.362990844115371 + ], + [ + 67.48126813077745, + 13.557638579043825 + ], + [ + 67.2515827638101, + 13.557638579043825 + ], + [ + 67.36642544729378, + 13.362990844115371 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 13.362990844115371 + ], + [ + 67.2515827638101, + 13.557638579043825 + ], + [ + 67.13674008032642, + 13.362990844115371 + ], + [ + 67.36642544729378, + 13.362990844115371 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 13.362990844115371 + ], + [ + 67.13674008032642, + 13.362990844115371 + ], + [ + 67.2515827638101, + 13.168343109186917 + ], + [ + 67.36642544729378, + 13.362990844115371 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 13.362990844115371 + ], + [ + 67.2515827638101, + 13.168343109186917 + ], + [ + 67.48126813077745, + 13.168343109186917 + ], + [ + 67.36642544729378, + 13.362990844115371 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 13.362990844115371 + ], + [ + 67.48126813077745, + 13.168343109186917 + ], + [ + 67.59611081426114, + 13.362990844115371 + ], + [ + 67.36642544729378, + 13.362990844115371 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 13.752286313972277 + ], + [ + 67.59611081426114, + 13.752286313972277 + ], + [ + 67.48126813077745, + 13.946934048900731 + ], + [ + 67.36642544729378, + 13.752286313972277 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 13.752286313972277 + ], + [ + 67.48126813077745, + 13.946934048900731 + ], + [ + 67.2515827638101, + 13.946934048900731 + ], + [ + 67.36642544729378, + 13.752286313972277 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 13.752286313972277 + ], + [ + 67.2515827638101, + 13.946934048900731 + ], + [ + 67.13674008032642, + 13.752286313972277 + ], + [ + 67.36642544729378, + 13.752286313972277 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 13.752286313972277 + ], + [ + 67.13674008032642, + 13.752286313972277 + ], + [ + 67.2515827638101, + 13.557638579043823 + ], + [ + 67.36642544729378, + 13.752286313972277 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 13.752286313972277 + ], + [ + 67.2515827638101, + 13.557638579043823 + ], + [ + 67.48126813077745, + 13.557638579043823 + ], + [ + 67.36642544729378, + 13.752286313972277 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 13.752286313972277 + ], + [ + 67.48126813077745, + 13.557638579043823 + ], + [ + 67.59611081426114, + 13.752286313972277 + ], + [ + 67.36642544729378, + 13.752286313972277 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 14.141581783829183 + ], + [ + 67.59611081426114, + 14.141581783829183 + ], + [ + 67.48126813077745, + 14.336229518757637 + ], + [ + 67.36642544729378, + 14.141581783829183 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 14.141581783829183 + ], + [ + 67.48126813077745, + 14.336229518757637 + ], + [ + 67.2515827638101, + 14.336229518757637 + ], + [ + 67.36642544729378, + 14.141581783829183 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 14.141581783829183 + ], + [ + 67.2515827638101, + 14.336229518757637 + ], + [ + 67.13674008032642, + 14.141581783829183 + ], + [ + 67.36642544729378, + 14.141581783829183 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 14.141581783829183 + ], + [ + 67.13674008032642, + 14.141581783829183 + ], + [ + 67.2515827638101, + 13.94693404890073 + ], + [ + 67.36642544729378, + 14.141581783829183 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 14.141581783829183 + ], + [ + 67.2515827638101, + 13.94693404890073 + ], + [ + 67.48126813077745, + 13.94693404890073 + ], + [ + 67.36642544729378, + 14.141581783829183 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 14.141581783829183 + ], + [ + 67.48126813077745, + 13.94693404890073 + ], + [ + 67.59611081426114, + 14.141581783829183 + ], + [ + 67.36642544729378, + 14.141581783829183 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 14.530877253686091 + ], + [ + 67.59611081426114, + 14.530877253686091 + ], + [ + 67.48126813077745, + 14.725524988614545 + ], + [ + 67.36642544729378, + 14.530877253686091 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 14.530877253686091 + ], + [ + 67.48126813077745, + 14.725524988614545 + ], + [ + 67.2515827638101, + 14.725524988614545 + ], + [ + 67.36642544729378, + 14.530877253686091 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 14.530877253686091 + ], + [ + 67.2515827638101, + 14.725524988614545 + ], + [ + 67.13674008032642, + 14.530877253686091 + ], + [ + 67.36642544729378, + 14.530877253686091 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 14.530877253686091 + ], + [ + 67.13674008032642, + 14.530877253686091 + ], + [ + 67.2515827638101, + 14.336229518757637 + ], + [ + 67.36642544729378, + 14.530877253686091 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 14.530877253686091 + ], + [ + 67.2515827638101, + 14.336229518757637 + ], + [ + 67.48126813077745, + 14.336229518757637 + ], + [ + 67.36642544729378, + 14.530877253686091 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 14.530877253686091 + ], + [ + 67.48126813077745, + 14.336229518757637 + ], + [ + 67.59611081426114, + 14.530877253686091 + ], + [ + 67.36642544729378, + 14.530877253686091 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 14.920172723542997 + ], + [ + 67.59611081426114, + 14.920172723542997 + ], + [ + 67.48126813077745, + 15.114820458471451 + ], + [ + 67.36642544729378, + 14.920172723542997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 14.920172723542997 + ], + [ + 67.48126813077745, + 15.114820458471451 + ], + [ + 67.2515827638101, + 15.114820458471451 + ], + [ + 67.36642544729378, + 14.920172723542997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 14.920172723542997 + ], + [ + 67.2515827638101, + 15.114820458471451 + ], + [ + 67.13674008032642, + 14.920172723542997 + ], + [ + 67.36642544729378, + 14.920172723542997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 14.920172723542997 + ], + [ + 67.13674008032642, + 14.920172723542997 + ], + [ + 67.2515827638101, + 14.725524988614543 + ], + [ + 67.36642544729378, + 14.920172723542997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 14.920172723542997 + ], + [ + 67.2515827638101, + 14.725524988614543 + ], + [ + 67.48126813077745, + 14.725524988614543 + ], + [ + 67.36642544729378, + 14.920172723542997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 14.920172723542997 + ], + [ + 67.48126813077745, + 14.725524988614543 + ], + [ + 67.59611081426114, + 14.920172723542997 + ], + [ + 67.36642544729378, + 14.920172723542997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 15.309468193399903 + ], + [ + 67.59611081426114, + 15.309468193399903 + ], + [ + 67.48126813077745, + 15.504115928328357 + ], + [ + 67.36642544729378, + 15.309468193399903 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 15.309468193399903 + ], + [ + 67.48126813077745, + 15.504115928328357 + ], + [ + 67.2515827638101, + 15.504115928328357 + ], + [ + 67.36642544729378, + 15.309468193399903 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 15.309468193399903 + ], + [ + 67.2515827638101, + 15.504115928328357 + ], + [ + 67.13674008032642, + 15.309468193399903 + ], + [ + 67.36642544729378, + 15.309468193399903 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 15.309468193399903 + ], + [ + 67.13674008032642, + 15.309468193399903 + ], + [ + 67.2515827638101, + 15.11482045847145 + ], + [ + 67.36642544729378, + 15.309468193399903 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 15.309468193399903 + ], + [ + 67.2515827638101, + 15.11482045847145 + ], + [ + 67.48126813077745, + 15.11482045847145 + ], + [ + 67.36642544729378, + 15.309468193399903 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 15.309468193399903 + ], + [ + 67.48126813077745, + 15.11482045847145 + ], + [ + 67.59611081426114, + 15.309468193399903 + ], + [ + 67.36642544729378, + 15.309468193399903 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 15.69876366325681 + ], + [ + 67.59611081426114, + 15.69876366325681 + ], + [ + 67.48126813077745, + 15.893411398185265 + ], + [ + 67.36642544729378, + 15.69876366325681 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 15.69876366325681 + ], + [ + 67.48126813077745, + 15.893411398185265 + ], + [ + 67.2515827638101, + 15.893411398185265 + ], + [ + 67.36642544729378, + 15.69876366325681 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 15.69876366325681 + ], + [ + 67.2515827638101, + 15.893411398185265 + ], + [ + 67.13674008032642, + 15.69876366325681 + ], + [ + 67.36642544729378, + 15.69876366325681 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 15.69876366325681 + ], + [ + 67.13674008032642, + 15.69876366325681 + ], + [ + 67.2515827638101, + 15.504115928328357 + ], + [ + 67.36642544729378, + 15.69876366325681 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 15.69876366325681 + ], + [ + 67.2515827638101, + 15.504115928328357 + ], + [ + 67.48126813077745, + 15.504115928328357 + ], + [ + 67.36642544729378, + 15.69876366325681 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 15.69876366325681 + ], + [ + 67.48126813077745, + 15.504115928328357 + ], + [ + 67.59611081426114, + 15.69876366325681 + ], + [ + 67.36642544729378, + 15.69876366325681 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 16.088059133113717 + ], + [ + 67.59611081426114, + 16.088059133113717 + ], + [ + 67.48126813077745, + 16.28270686804217 + ], + [ + 67.36642544729378, + 16.088059133113717 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 16.088059133113717 + ], + [ + 67.48126813077745, + 16.28270686804217 + ], + [ + 67.2515827638101, + 16.28270686804217 + ], + [ + 67.36642544729378, + 16.088059133113717 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 16.088059133113717 + ], + [ + 67.2515827638101, + 16.28270686804217 + ], + [ + 67.13674008032642, + 16.088059133113717 + ], + [ + 67.36642544729378, + 16.088059133113717 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 16.088059133113717 + ], + [ + 67.13674008032642, + 16.088059133113717 + ], + [ + 67.2515827638101, + 15.893411398185263 + ], + [ + 67.36642544729378, + 16.088059133113717 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 16.088059133113717 + ], + [ + 67.2515827638101, + 15.893411398185263 + ], + [ + 67.48126813077745, + 15.893411398185263 + ], + [ + 67.36642544729378, + 16.088059133113717 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 16.088059133113717 + ], + [ + 67.48126813077745, + 15.893411398185263 + ], + [ + 67.59611081426114, + 16.088059133113717 + ], + [ + 67.36642544729378, + 16.088059133113717 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 16.477354602970625 + ], + [ + 67.59611081426114, + 16.477354602970625 + ], + [ + 67.48126813077745, + 16.672002337899077 + ], + [ + 67.36642544729378, + 16.477354602970625 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 16.477354602970625 + ], + [ + 67.48126813077745, + 16.672002337899077 + ], + [ + 67.2515827638101, + 16.672002337899077 + ], + [ + 67.36642544729378, + 16.477354602970625 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 16.477354602970625 + ], + [ + 67.2515827638101, + 16.672002337899077 + ], + [ + 67.13674008032642, + 16.477354602970625 + ], + [ + 67.36642544729378, + 16.477354602970625 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 16.477354602970625 + ], + [ + 67.13674008032642, + 16.477354602970625 + ], + [ + 67.2515827638101, + 16.282706868042172 + ], + [ + 67.36642544729378, + 16.477354602970625 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 16.477354602970625 + ], + [ + 67.2515827638101, + 16.282706868042172 + ], + [ + 67.48126813077745, + 16.282706868042172 + ], + [ + 67.36642544729378, + 16.477354602970625 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 16.477354602970625 + ], + [ + 67.48126813077745, + 16.282706868042172 + ], + [ + 67.59611081426114, + 16.477354602970625 + ], + [ + 67.36642544729378, + 16.477354602970625 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 16.86665007282753 + ], + [ + 67.59611081426114, + 16.86665007282753 + ], + [ + 67.48126813077745, + 17.06129780775598 + ], + [ + 67.36642544729378, + 16.86665007282753 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 16.86665007282753 + ], + [ + 67.48126813077745, + 17.06129780775598 + ], + [ + 67.2515827638101, + 17.06129780775598 + ], + [ + 67.36642544729378, + 16.86665007282753 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 16.86665007282753 + ], + [ + 67.2515827638101, + 17.06129780775598 + ], + [ + 67.13674008032642, + 16.86665007282753 + ], + [ + 67.36642544729378, + 16.86665007282753 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 16.86665007282753 + ], + [ + 67.13674008032642, + 16.86665007282753 + ], + [ + 67.2515827638101, + 16.672002337899077 + ], + [ + 67.36642544729378, + 16.86665007282753 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 16.86665007282753 + ], + [ + 67.2515827638101, + 16.672002337899077 + ], + [ + 67.48126813077745, + 16.672002337899077 + ], + [ + 67.36642544729378, + 16.86665007282753 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 16.86665007282753 + ], + [ + 67.48126813077745, + 16.672002337899077 + ], + [ + 67.59611081426114, + 16.86665007282753 + ], + [ + 67.36642544729378, + 16.86665007282753 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 17.255945542684437 + ], + [ + 67.59611081426114, + 17.255945542684437 + ], + [ + 67.48126813077745, + 17.45059327761289 + ], + [ + 67.36642544729378, + 17.255945542684437 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 17.255945542684437 + ], + [ + 67.48126813077745, + 17.45059327761289 + ], + [ + 67.2515827638101, + 17.45059327761289 + ], + [ + 67.36642544729378, + 17.255945542684437 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 17.255945542684437 + ], + [ + 67.2515827638101, + 17.45059327761289 + ], + [ + 67.13674008032642, + 17.255945542684437 + ], + [ + 67.36642544729378, + 17.255945542684437 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 17.255945542684437 + ], + [ + 67.13674008032642, + 17.255945542684437 + ], + [ + 67.2515827638101, + 17.061297807755984 + ], + [ + 67.36642544729378, + 17.255945542684437 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 17.255945542684437 + ], + [ + 67.2515827638101, + 17.061297807755984 + ], + [ + 67.48126813077745, + 17.061297807755984 + ], + [ + 67.36642544729378, + 17.255945542684437 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 17.255945542684437 + ], + [ + 67.48126813077745, + 17.061297807755984 + ], + [ + 67.59611081426114, + 17.255945542684437 + ], + [ + 67.36642544729378, + 17.255945542684437 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 17.64524101254134 + ], + [ + 67.59611081426114, + 17.64524101254134 + ], + [ + 67.48126813077745, + 17.839888747469793 + ], + [ + 67.36642544729378, + 17.64524101254134 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 17.64524101254134 + ], + [ + 67.48126813077745, + 17.839888747469793 + ], + [ + 67.2515827638101, + 17.839888747469793 + ], + [ + 67.36642544729378, + 17.64524101254134 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 17.64524101254134 + ], + [ + 67.2515827638101, + 17.839888747469793 + ], + [ + 67.13674008032642, + 17.64524101254134 + ], + [ + 67.36642544729378, + 17.64524101254134 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 17.64524101254134 + ], + [ + 67.13674008032642, + 17.64524101254134 + ], + [ + 67.2515827638101, + 17.45059327761289 + ], + [ + 67.36642544729378, + 17.64524101254134 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 17.64524101254134 + ], + [ + 67.2515827638101, + 17.45059327761289 + ], + [ + 67.48126813077745, + 17.45059327761289 + ], + [ + 67.36642544729378, + 17.64524101254134 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 17.64524101254134 + ], + [ + 67.48126813077745, + 17.45059327761289 + ], + [ + 67.59611081426114, + 17.64524101254134 + ], + [ + 67.36642544729378, + 17.64524101254134 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 18.03453648239825 + ], + [ + 67.59611081426114, + 18.03453648239825 + ], + [ + 67.48126813077745, + 18.2291842173267 + ], + [ + 67.36642544729378, + 18.03453648239825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 18.03453648239825 + ], + [ + 67.48126813077745, + 18.2291842173267 + ], + [ + 67.2515827638101, + 18.2291842173267 + ], + [ + 67.36642544729378, + 18.03453648239825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 18.03453648239825 + ], + [ + 67.2515827638101, + 18.2291842173267 + ], + [ + 67.13674008032642, + 18.03453648239825 + ], + [ + 67.36642544729378, + 18.03453648239825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 18.03453648239825 + ], + [ + 67.13674008032642, + 18.03453648239825 + ], + [ + 67.2515827638101, + 17.839888747469796 + ], + [ + 67.36642544729378, + 18.03453648239825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 18.03453648239825 + ], + [ + 67.2515827638101, + 17.839888747469796 + ], + [ + 67.48126813077745, + 17.839888747469796 + ], + [ + 67.36642544729378, + 18.03453648239825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 18.03453648239825 + ], + [ + 67.48126813077745, + 17.839888747469796 + ], + [ + 67.59611081426114, + 18.03453648239825 + ], + [ + 67.36642544729378, + 18.03453648239825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 18.423831952255156 + ], + [ + 67.59611081426114, + 18.423831952255156 + ], + [ + 67.48126813077745, + 18.61847968718361 + ], + [ + 67.36642544729378, + 18.423831952255156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 18.423831952255156 + ], + [ + 67.48126813077745, + 18.61847968718361 + ], + [ + 67.2515827638101, + 18.61847968718361 + ], + [ + 67.36642544729378, + 18.423831952255156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 18.423831952255156 + ], + [ + 67.2515827638101, + 18.61847968718361 + ], + [ + 67.13674008032642, + 18.423831952255156 + ], + [ + 67.36642544729378, + 18.423831952255156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 18.423831952255156 + ], + [ + 67.13674008032642, + 18.423831952255156 + ], + [ + 67.2515827638101, + 18.229184217326704 + ], + [ + 67.36642544729378, + 18.423831952255156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 18.423831952255156 + ], + [ + 67.2515827638101, + 18.229184217326704 + ], + [ + 67.48126813077745, + 18.229184217326704 + ], + [ + 67.36642544729378, + 18.423831952255156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 18.423831952255156 + ], + [ + 67.48126813077745, + 18.229184217326704 + ], + [ + 67.59611081426114, + 18.423831952255156 + ], + [ + 67.36642544729378, + 18.423831952255156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 18.81312742211206 + ], + [ + 67.59611081426114, + 18.81312742211206 + ], + [ + 67.48126813077745, + 19.007775157040513 + ], + [ + 67.36642544729378, + 18.81312742211206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 18.81312742211206 + ], + [ + 67.48126813077745, + 19.007775157040513 + ], + [ + 67.2515827638101, + 19.007775157040513 + ], + [ + 67.36642544729378, + 18.81312742211206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 18.81312742211206 + ], + [ + 67.2515827638101, + 19.007775157040513 + ], + [ + 67.13674008032642, + 18.81312742211206 + ], + [ + 67.36642544729378, + 18.81312742211206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 18.81312742211206 + ], + [ + 67.13674008032642, + 18.81312742211206 + ], + [ + 67.2515827638101, + 18.61847968718361 + ], + [ + 67.36642544729378, + 18.81312742211206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 18.81312742211206 + ], + [ + 67.2515827638101, + 18.61847968718361 + ], + [ + 67.48126813077745, + 18.61847968718361 + ], + [ + 67.36642544729378, + 18.81312742211206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 18.81312742211206 + ], + [ + 67.48126813077745, + 18.61847968718361 + ], + [ + 67.59611081426114, + 18.81312742211206 + ], + [ + 67.36642544729378, + 18.81312742211206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 19.20242289196897 + ], + [ + 67.59611081426114, + 19.20242289196897 + ], + [ + 67.48126813077745, + 19.39707062689742 + ], + [ + 67.36642544729378, + 19.20242289196897 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 19.20242289196897 + ], + [ + 67.48126813077745, + 19.39707062689742 + ], + [ + 67.2515827638101, + 19.39707062689742 + ], + [ + 67.36642544729378, + 19.20242289196897 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 19.20242289196897 + ], + [ + 67.2515827638101, + 19.39707062689742 + ], + [ + 67.13674008032642, + 19.20242289196897 + ], + [ + 67.36642544729378, + 19.20242289196897 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 19.20242289196897 + ], + [ + 67.13674008032642, + 19.20242289196897 + ], + [ + 67.2515827638101, + 19.007775157040516 + ], + [ + 67.36642544729378, + 19.20242289196897 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 19.20242289196897 + ], + [ + 67.2515827638101, + 19.007775157040516 + ], + [ + 67.48126813077745, + 19.007775157040516 + ], + [ + 67.36642544729378, + 19.20242289196897 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 19.20242289196897 + ], + [ + 67.48126813077745, + 19.007775157040516 + ], + [ + 67.59611081426114, + 19.20242289196897 + ], + [ + 67.36642544729378, + 19.20242289196897 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 19.591718361825876 + ], + [ + 67.59611081426114, + 19.591718361825876 + ], + [ + 67.48126813077745, + 19.78636609675433 + ], + [ + 67.36642544729378, + 19.591718361825876 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 19.591718361825876 + ], + [ + 67.48126813077745, + 19.78636609675433 + ], + [ + 67.2515827638101, + 19.78636609675433 + ], + [ + 67.36642544729378, + 19.591718361825876 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 19.591718361825876 + ], + [ + 67.2515827638101, + 19.78636609675433 + ], + [ + 67.13674008032642, + 19.591718361825876 + ], + [ + 67.36642544729378, + 19.591718361825876 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 19.591718361825876 + ], + [ + 67.13674008032642, + 19.591718361825876 + ], + [ + 67.2515827638101, + 19.397070626897424 + ], + [ + 67.36642544729378, + 19.591718361825876 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 19.591718361825876 + ], + [ + 67.2515827638101, + 19.397070626897424 + ], + [ + 67.48126813077745, + 19.397070626897424 + ], + [ + 67.36642544729378, + 19.591718361825876 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 19.591718361825876 + ], + [ + 67.48126813077745, + 19.397070626897424 + ], + [ + 67.59611081426114, + 19.591718361825876 + ], + [ + 67.36642544729378, + 19.591718361825876 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 19.98101383168278 + ], + [ + 67.59611081426114, + 19.98101383168278 + ], + [ + 67.48126813077745, + 20.175661566611232 + ], + [ + 67.36642544729378, + 19.98101383168278 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 19.98101383168278 + ], + [ + 67.48126813077745, + 20.175661566611232 + ], + [ + 67.2515827638101, + 20.175661566611232 + ], + [ + 67.36642544729378, + 19.98101383168278 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 19.98101383168278 + ], + [ + 67.2515827638101, + 20.175661566611232 + ], + [ + 67.13674008032642, + 19.98101383168278 + ], + [ + 67.36642544729378, + 19.98101383168278 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 19.98101383168278 + ], + [ + 67.13674008032642, + 19.98101383168278 + ], + [ + 67.2515827638101, + 19.78636609675433 + ], + [ + 67.36642544729378, + 19.98101383168278 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 19.98101383168278 + ], + [ + 67.2515827638101, + 19.78636609675433 + ], + [ + 67.48126813077745, + 19.78636609675433 + ], + [ + 67.36642544729378, + 19.98101383168278 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 19.98101383168278 + ], + [ + 67.48126813077745, + 19.78636609675433 + ], + [ + 67.59611081426114, + 19.98101383168278 + ], + [ + 67.36642544729378, + 19.98101383168278 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 20.370309301539685 + ], + [ + 67.59611081426114, + 20.370309301539685 + ], + [ + 67.48126813077745, + 20.564957036468137 + ], + [ + 67.36642544729378, + 20.370309301539685 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 20.370309301539685 + ], + [ + 67.48126813077745, + 20.564957036468137 + ], + [ + 67.2515827638101, + 20.564957036468137 + ], + [ + 67.36642544729378, + 20.370309301539685 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 20.370309301539685 + ], + [ + 67.2515827638101, + 20.564957036468137 + ], + [ + 67.13674008032642, + 20.370309301539685 + ], + [ + 67.36642544729378, + 20.370309301539685 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 20.370309301539685 + ], + [ + 67.13674008032642, + 20.370309301539685 + ], + [ + 67.2515827638101, + 20.175661566611232 + ], + [ + 67.36642544729378, + 20.370309301539685 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 20.370309301539685 + ], + [ + 67.2515827638101, + 20.175661566611232 + ], + [ + 67.48126813077745, + 20.175661566611232 + ], + [ + 67.36642544729378, + 20.370309301539685 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 20.370309301539685 + ], + [ + 67.48126813077745, + 20.175661566611232 + ], + [ + 67.59611081426114, + 20.370309301539685 + ], + [ + 67.36642544729378, + 20.370309301539685 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 20.759604771396592 + ], + [ + 67.59611081426114, + 20.759604771396592 + ], + [ + 67.48126813077745, + 20.954252506325044 + ], + [ + 67.36642544729378, + 20.759604771396592 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 20.759604771396592 + ], + [ + 67.48126813077745, + 20.954252506325044 + ], + [ + 67.2515827638101, + 20.954252506325044 + ], + [ + 67.36642544729378, + 20.759604771396592 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 20.759604771396592 + ], + [ + 67.2515827638101, + 20.954252506325044 + ], + [ + 67.13674008032642, + 20.759604771396592 + ], + [ + 67.36642544729378, + 20.759604771396592 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 20.759604771396592 + ], + [ + 67.13674008032642, + 20.759604771396592 + ], + [ + 67.2515827638101, + 20.56495703646814 + ], + [ + 67.36642544729378, + 20.759604771396592 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 20.759604771396592 + ], + [ + 67.2515827638101, + 20.56495703646814 + ], + [ + 67.48126813077745, + 20.56495703646814 + ], + [ + 67.36642544729378, + 20.759604771396592 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 20.759604771396592 + ], + [ + 67.48126813077745, + 20.56495703646814 + ], + [ + 67.59611081426114, + 20.759604771396592 + ], + [ + 67.36642544729378, + 20.759604771396592 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 21.1489002412535 + ], + [ + 67.59611081426114, + 21.1489002412535 + ], + [ + 67.48126813077745, + 21.343547976181952 + ], + [ + 67.36642544729378, + 21.1489002412535 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 21.1489002412535 + ], + [ + 67.48126813077745, + 21.343547976181952 + ], + [ + 67.2515827638101, + 21.343547976181952 + ], + [ + 67.36642544729378, + 21.1489002412535 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 21.1489002412535 + ], + [ + 67.2515827638101, + 21.343547976181952 + ], + [ + 67.13674008032642, + 21.1489002412535 + ], + [ + 67.36642544729378, + 21.1489002412535 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 21.1489002412535 + ], + [ + 67.13674008032642, + 21.1489002412535 + ], + [ + 67.2515827638101, + 20.954252506325048 + ], + [ + 67.36642544729378, + 21.1489002412535 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 21.1489002412535 + ], + [ + 67.2515827638101, + 20.954252506325048 + ], + [ + 67.48126813077745, + 20.954252506325048 + ], + [ + 67.36642544729378, + 21.1489002412535 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 21.1489002412535 + ], + [ + 67.48126813077745, + 20.954252506325048 + ], + [ + 67.59611081426114, + 21.1489002412535 + ], + [ + 67.36642544729378, + 21.1489002412535 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 21.538195711110404 + ], + [ + 67.59611081426114, + 21.538195711110404 + ], + [ + 67.48126813077745, + 21.732843446038856 + ], + [ + 67.36642544729378, + 21.538195711110404 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 21.538195711110404 + ], + [ + 67.48126813077745, + 21.732843446038856 + ], + [ + 67.2515827638101, + 21.732843446038856 + ], + [ + 67.36642544729378, + 21.538195711110404 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 21.538195711110404 + ], + [ + 67.2515827638101, + 21.732843446038856 + ], + [ + 67.13674008032642, + 21.538195711110404 + ], + [ + 67.36642544729378, + 21.538195711110404 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 21.538195711110404 + ], + [ + 67.13674008032642, + 21.538195711110404 + ], + [ + 67.2515827638101, + 21.343547976181952 + ], + [ + 67.36642544729378, + 21.538195711110404 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 21.538195711110404 + ], + [ + 67.2515827638101, + 21.343547976181952 + ], + [ + 67.48126813077745, + 21.343547976181952 + ], + [ + 67.36642544729378, + 21.538195711110404 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 21.538195711110404 + ], + [ + 67.48126813077745, + 21.343547976181952 + ], + [ + 67.59611081426114, + 21.538195711110404 + ], + [ + 67.36642544729378, + 21.538195711110404 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 21.927491180967312 + ], + [ + 67.59611081426114, + 21.927491180967312 + ], + [ + 67.48126813077745, + 22.122138915895764 + ], + [ + 67.36642544729378, + 21.927491180967312 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 21.927491180967312 + ], + [ + 67.48126813077745, + 22.122138915895764 + ], + [ + 67.2515827638101, + 22.122138915895764 + ], + [ + 67.36642544729378, + 21.927491180967312 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 21.927491180967312 + ], + [ + 67.2515827638101, + 22.122138915895764 + ], + [ + 67.13674008032642, + 21.927491180967312 + ], + [ + 67.36642544729378, + 21.927491180967312 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 21.927491180967312 + ], + [ + 67.13674008032642, + 21.927491180967312 + ], + [ + 67.2515827638101, + 21.73284344603886 + ], + [ + 67.36642544729378, + 21.927491180967312 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 21.927491180967312 + ], + [ + 67.2515827638101, + 21.73284344603886 + ], + [ + 67.48126813077745, + 21.73284344603886 + ], + [ + 67.36642544729378, + 21.927491180967312 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 21.927491180967312 + ], + [ + 67.48126813077745, + 21.73284344603886 + ], + [ + 67.59611081426114, + 21.927491180967312 + ], + [ + 67.36642544729378, + 21.927491180967312 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 22.31678665082422 + ], + [ + 67.59611081426114, + 22.31678665082422 + ], + [ + 67.48126813077745, + 22.511434385752672 + ], + [ + 67.36642544729378, + 22.31678665082422 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 22.31678665082422 + ], + [ + 67.48126813077745, + 22.511434385752672 + ], + [ + 67.2515827638101, + 22.511434385752672 + ], + [ + 67.36642544729378, + 22.31678665082422 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 22.31678665082422 + ], + [ + 67.2515827638101, + 22.511434385752672 + ], + [ + 67.13674008032642, + 22.31678665082422 + ], + [ + 67.36642544729378, + 22.31678665082422 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 22.31678665082422 + ], + [ + 67.13674008032642, + 22.31678665082422 + ], + [ + 67.2515827638101, + 22.122138915895768 + ], + [ + 67.36642544729378, + 22.31678665082422 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 22.31678665082422 + ], + [ + 67.2515827638101, + 22.122138915895768 + ], + [ + 67.48126813077745, + 22.122138915895768 + ], + [ + 67.36642544729378, + 22.31678665082422 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 22.31678665082422 + ], + [ + 67.48126813077745, + 22.122138915895768 + ], + [ + 67.59611081426114, + 22.31678665082422 + ], + [ + 67.36642544729378, + 22.31678665082422 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 22.706082120681124 + ], + [ + 67.59611081426114, + 22.706082120681124 + ], + [ + 67.48126813077745, + 22.900729855609576 + ], + [ + 67.36642544729378, + 22.706082120681124 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 22.706082120681124 + ], + [ + 67.48126813077745, + 22.900729855609576 + ], + [ + 67.2515827638101, + 22.900729855609576 + ], + [ + 67.36642544729378, + 22.706082120681124 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 22.706082120681124 + ], + [ + 67.2515827638101, + 22.900729855609576 + ], + [ + 67.13674008032642, + 22.706082120681124 + ], + [ + 67.36642544729378, + 22.706082120681124 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 22.706082120681124 + ], + [ + 67.13674008032642, + 22.706082120681124 + ], + [ + 67.2515827638101, + 22.511434385752672 + ], + [ + 67.36642544729378, + 22.706082120681124 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 22.706082120681124 + ], + [ + 67.2515827638101, + 22.511434385752672 + ], + [ + 67.48126813077745, + 22.511434385752672 + ], + [ + 67.36642544729378, + 22.706082120681124 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 22.706082120681124 + ], + [ + 67.48126813077745, + 22.511434385752672 + ], + [ + 67.59611081426114, + 22.706082120681124 + ], + [ + 67.36642544729378, + 22.706082120681124 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 23.095377590538032 + ], + [ + 67.59611081426114, + 23.095377590538032 + ], + [ + 67.48126813077745, + 23.290025325466484 + ], + [ + 67.36642544729378, + 23.095377590538032 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 23.095377590538032 + ], + [ + 67.48126813077745, + 23.290025325466484 + ], + [ + 67.2515827638101, + 23.290025325466484 + ], + [ + 67.36642544729378, + 23.095377590538032 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 23.095377590538032 + ], + [ + 67.2515827638101, + 23.290025325466484 + ], + [ + 67.13674008032642, + 23.095377590538032 + ], + [ + 67.36642544729378, + 23.095377590538032 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 23.095377590538032 + ], + [ + 67.13674008032642, + 23.095377590538032 + ], + [ + 67.2515827638101, + 22.90072985560958 + ], + [ + 67.36642544729378, + 23.095377590538032 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 23.095377590538032 + ], + [ + 67.2515827638101, + 22.90072985560958 + ], + [ + 67.48126813077745, + 22.90072985560958 + ], + [ + 67.36642544729378, + 23.095377590538032 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 23.095377590538032 + ], + [ + 67.48126813077745, + 22.90072985560958 + ], + [ + 67.59611081426114, + 23.095377590538032 + ], + [ + 67.36642544729378, + 23.095377590538032 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 23.48467306039494 + ], + [ + 67.59611081426114, + 23.48467306039494 + ], + [ + 67.48126813077745, + 23.67932079532339 + ], + [ + 67.36642544729378, + 23.48467306039494 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 23.48467306039494 + ], + [ + 67.48126813077745, + 23.67932079532339 + ], + [ + 67.2515827638101, + 23.67932079532339 + ], + [ + 67.36642544729378, + 23.48467306039494 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 23.48467306039494 + ], + [ + 67.2515827638101, + 23.67932079532339 + ], + [ + 67.13674008032642, + 23.48467306039494 + ], + [ + 67.36642544729378, + 23.48467306039494 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 23.48467306039494 + ], + [ + 67.13674008032642, + 23.48467306039494 + ], + [ + 67.2515827638101, + 23.290025325466488 + ], + [ + 67.36642544729378, + 23.48467306039494 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 23.48467306039494 + ], + [ + 67.2515827638101, + 23.290025325466488 + ], + [ + 67.48126813077745, + 23.290025325466488 + ], + [ + 67.36642544729378, + 23.48467306039494 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 23.48467306039494 + ], + [ + 67.48126813077745, + 23.290025325466488 + ], + [ + 67.59611081426114, + 23.48467306039494 + ], + [ + 67.36642544729378, + 23.48467306039494 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 23.873968530251844 + ], + [ + 67.59611081426114, + 23.873968530251844 + ], + [ + 67.48126813077745, + 24.068616265180296 + ], + [ + 67.36642544729378, + 23.873968530251844 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 23.873968530251844 + ], + [ + 67.48126813077745, + 24.068616265180296 + ], + [ + 67.2515827638101, + 24.068616265180296 + ], + [ + 67.36642544729378, + 23.873968530251844 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 23.873968530251844 + ], + [ + 67.2515827638101, + 24.068616265180296 + ], + [ + 67.13674008032642, + 23.873968530251844 + ], + [ + 67.36642544729378, + 23.873968530251844 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 23.873968530251844 + ], + [ + 67.13674008032642, + 23.873968530251844 + ], + [ + 67.2515827638101, + 23.67932079532339 + ], + [ + 67.36642544729378, + 23.873968530251844 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 23.873968530251844 + ], + [ + 67.2515827638101, + 23.67932079532339 + ], + [ + 67.48126813077745, + 23.67932079532339 + ], + [ + 67.36642544729378, + 23.873968530251844 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 23.873968530251844 + ], + [ + 67.48126813077745, + 23.67932079532339 + ], + [ + 67.59611081426114, + 23.873968530251844 + ], + [ + 67.36642544729378, + 23.873968530251844 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 24.263264000108748 + ], + [ + 67.59611081426114, + 24.263264000108748 + ], + [ + 67.48126813077745, + 24.4579117350372 + ], + [ + 67.36642544729378, + 24.263264000108748 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 24.263264000108748 + ], + [ + 67.48126813077745, + 24.4579117350372 + ], + [ + 67.2515827638101, + 24.4579117350372 + ], + [ + 67.36642544729378, + 24.263264000108748 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 24.263264000108748 + ], + [ + 67.2515827638101, + 24.4579117350372 + ], + [ + 67.13674008032642, + 24.263264000108748 + ], + [ + 67.36642544729378, + 24.263264000108748 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 24.263264000108748 + ], + [ + 67.13674008032642, + 24.263264000108748 + ], + [ + 67.2515827638101, + 24.068616265180296 + ], + [ + 67.36642544729378, + 24.263264000108748 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 24.263264000108748 + ], + [ + 67.2515827638101, + 24.068616265180296 + ], + [ + 67.48126813077745, + 24.068616265180296 + ], + [ + 67.36642544729378, + 24.263264000108748 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 24.263264000108748 + ], + [ + 67.48126813077745, + 24.068616265180296 + ], + [ + 67.59611081426114, + 24.263264000108748 + ], + [ + 67.36642544729378, + 24.263264000108748 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 24.652559469965656 + ], + [ + 67.59611081426114, + 24.652559469965656 + ], + [ + 67.48126813077745, + 24.847207204894108 + ], + [ + 67.36642544729378, + 24.652559469965656 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 24.652559469965656 + ], + [ + 67.48126813077745, + 24.847207204894108 + ], + [ + 67.2515827638101, + 24.847207204894108 + ], + [ + 67.36642544729378, + 24.652559469965656 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 24.652559469965656 + ], + [ + 67.2515827638101, + 24.847207204894108 + ], + [ + 67.13674008032642, + 24.652559469965656 + ], + [ + 67.36642544729378, + 24.652559469965656 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 24.652559469965656 + ], + [ + 67.13674008032642, + 24.652559469965656 + ], + [ + 67.2515827638101, + 24.457911735037204 + ], + [ + 67.36642544729378, + 24.652559469965656 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 24.652559469965656 + ], + [ + 67.2515827638101, + 24.457911735037204 + ], + [ + 67.48126813077745, + 24.457911735037204 + ], + [ + 67.36642544729378, + 24.652559469965656 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 24.652559469965656 + ], + [ + 67.48126813077745, + 24.457911735037204 + ], + [ + 67.59611081426114, + 24.652559469965656 + ], + [ + 67.36642544729378, + 24.652559469965656 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 25.041854939822564 + ], + [ + 67.59611081426114, + 25.041854939822564 + ], + [ + 67.48126813077745, + 25.236502674751016 + ], + [ + 67.36642544729378, + 25.041854939822564 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 25.041854939822564 + ], + [ + 67.48126813077745, + 25.236502674751016 + ], + [ + 67.2515827638101, + 25.236502674751016 + ], + [ + 67.36642544729378, + 25.041854939822564 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 25.041854939822564 + ], + [ + 67.2515827638101, + 25.236502674751016 + ], + [ + 67.13674008032642, + 25.041854939822564 + ], + [ + 67.36642544729378, + 25.041854939822564 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 25.041854939822564 + ], + [ + 67.13674008032642, + 25.041854939822564 + ], + [ + 67.2515827638101, + 24.84720720489411 + ], + [ + 67.36642544729378, + 25.041854939822564 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 25.041854939822564 + ], + [ + 67.2515827638101, + 24.84720720489411 + ], + [ + 67.48126813077745, + 24.84720720489411 + ], + [ + 67.36642544729378, + 25.041854939822564 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 25.041854939822564 + ], + [ + 67.48126813077745, + 24.84720720489411 + ], + [ + 67.59611081426114, + 25.041854939822564 + ], + [ + 67.36642544729378, + 25.041854939822564 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 25.431150409679468 + ], + [ + 67.59611081426114, + 25.431150409679468 + ], + [ + 67.48126813077745, + 25.62579814460792 + ], + [ + 67.36642544729378, + 25.431150409679468 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 25.431150409679468 + ], + [ + 67.48126813077745, + 25.62579814460792 + ], + [ + 67.2515827638101, + 25.62579814460792 + ], + [ + 67.36642544729378, + 25.431150409679468 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 25.431150409679468 + ], + [ + 67.2515827638101, + 25.62579814460792 + ], + [ + 67.13674008032642, + 25.431150409679468 + ], + [ + 67.36642544729378, + 25.431150409679468 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 25.431150409679468 + ], + [ + 67.13674008032642, + 25.431150409679468 + ], + [ + 67.2515827638101, + 25.236502674751016 + ], + [ + 67.36642544729378, + 25.431150409679468 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 25.431150409679468 + ], + [ + 67.2515827638101, + 25.236502674751016 + ], + [ + 67.48126813077745, + 25.236502674751016 + ], + [ + 67.36642544729378, + 25.431150409679468 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 25.431150409679468 + ], + [ + 67.48126813077745, + 25.236502674751016 + ], + [ + 67.59611081426114, + 25.431150409679468 + ], + [ + 67.36642544729378, + 25.431150409679468 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 25.820445879536376 + ], + [ + 67.59611081426114, + 25.820445879536376 + ], + [ + 67.48126813077745, + 26.015093614464828 + ], + [ + 67.36642544729378, + 25.820445879536376 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 25.820445879536376 + ], + [ + 67.48126813077745, + 26.015093614464828 + ], + [ + 67.2515827638101, + 26.015093614464828 + ], + [ + 67.36642544729378, + 25.820445879536376 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 25.820445879536376 + ], + [ + 67.2515827638101, + 26.015093614464828 + ], + [ + 67.13674008032642, + 25.820445879536376 + ], + [ + 67.36642544729378, + 25.820445879536376 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 25.820445879536376 + ], + [ + 67.13674008032642, + 25.820445879536376 + ], + [ + 67.2515827638101, + 25.625798144607923 + ], + [ + 67.36642544729378, + 25.820445879536376 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 25.820445879536376 + ], + [ + 67.2515827638101, + 25.625798144607923 + ], + [ + 67.48126813077745, + 25.625798144607923 + ], + [ + 67.36642544729378, + 25.820445879536376 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 25.820445879536376 + ], + [ + 67.48126813077745, + 25.625798144607923 + ], + [ + 67.59611081426114, + 25.820445879536376 + ], + [ + 67.36642544729378, + 25.820445879536376 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 26.209741349393283 + ], + [ + 67.59611081426114, + 26.209741349393283 + ], + [ + 67.48126813077745, + 26.404389084321735 + ], + [ + 67.36642544729378, + 26.209741349393283 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 26.209741349393283 + ], + [ + 67.48126813077745, + 26.404389084321735 + ], + [ + 67.2515827638101, + 26.404389084321735 + ], + [ + 67.36642544729378, + 26.209741349393283 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 26.209741349393283 + ], + [ + 67.2515827638101, + 26.404389084321735 + ], + [ + 67.13674008032642, + 26.209741349393283 + ], + [ + 67.36642544729378, + 26.209741349393283 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 26.209741349393283 + ], + [ + 67.13674008032642, + 26.209741349393283 + ], + [ + 67.2515827638101, + 26.01509361446483 + ], + [ + 67.36642544729378, + 26.209741349393283 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 26.209741349393283 + ], + [ + 67.2515827638101, + 26.01509361446483 + ], + [ + 67.48126813077745, + 26.01509361446483 + ], + [ + 67.36642544729378, + 26.209741349393283 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 26.209741349393283 + ], + [ + 67.48126813077745, + 26.01509361446483 + ], + [ + 67.59611081426114, + 26.209741349393283 + ], + [ + 67.36642544729378, + 26.209741349393283 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 26.599036819250188 + ], + [ + 67.59611081426114, + 26.599036819250188 + ], + [ + 67.48126813077745, + 26.79368455417864 + ], + [ + 67.36642544729378, + 26.599036819250188 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 26.599036819250188 + ], + [ + 67.48126813077745, + 26.79368455417864 + ], + [ + 67.2515827638101, + 26.79368455417864 + ], + [ + 67.36642544729378, + 26.599036819250188 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 26.599036819250188 + ], + [ + 67.2515827638101, + 26.79368455417864 + ], + [ + 67.13674008032642, + 26.599036819250188 + ], + [ + 67.36642544729378, + 26.599036819250188 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 26.599036819250188 + ], + [ + 67.13674008032642, + 26.599036819250188 + ], + [ + 67.2515827638101, + 26.404389084321735 + ], + [ + 67.36642544729378, + 26.599036819250188 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 26.599036819250188 + ], + [ + 67.2515827638101, + 26.404389084321735 + ], + [ + 67.48126813077745, + 26.404389084321735 + ], + [ + 67.36642544729378, + 26.599036819250188 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 26.599036819250188 + ], + [ + 67.48126813077745, + 26.404389084321735 + ], + [ + 67.59611081426114, + 26.599036819250188 + ], + [ + 67.36642544729378, + 26.599036819250188 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 26.988332289107095 + ], + [ + 67.59611081426114, + 26.988332289107095 + ], + [ + 67.48126813077745, + 27.182980024035547 + ], + [ + 67.36642544729378, + 26.988332289107095 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 26.988332289107095 + ], + [ + 67.48126813077745, + 27.182980024035547 + ], + [ + 67.2515827638101, + 27.182980024035547 + ], + [ + 67.36642544729378, + 26.988332289107095 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 26.988332289107095 + ], + [ + 67.2515827638101, + 27.182980024035547 + ], + [ + 67.13674008032642, + 26.988332289107095 + ], + [ + 67.36642544729378, + 26.988332289107095 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 26.988332289107095 + ], + [ + 67.13674008032642, + 26.988332289107095 + ], + [ + 67.2515827638101, + 26.793684554178643 + ], + [ + 67.36642544729378, + 26.988332289107095 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 26.988332289107095 + ], + [ + 67.2515827638101, + 26.793684554178643 + ], + [ + 67.48126813077745, + 26.793684554178643 + ], + [ + 67.36642544729378, + 26.988332289107095 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 26.988332289107095 + ], + [ + 67.48126813077745, + 26.793684554178643 + ], + [ + 67.59611081426114, + 26.988332289107095 + ], + [ + 67.36642544729378, + 26.988332289107095 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 27.377627758964003 + ], + [ + 67.59611081426114, + 27.377627758964003 + ], + [ + 67.48126813077745, + 27.572275493892455 + ], + [ + 67.36642544729378, + 27.377627758964003 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 27.377627758964003 + ], + [ + 67.48126813077745, + 27.572275493892455 + ], + [ + 67.2515827638101, + 27.572275493892455 + ], + [ + 67.36642544729378, + 27.377627758964003 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 27.377627758964003 + ], + [ + 67.2515827638101, + 27.572275493892455 + ], + [ + 67.13674008032642, + 27.377627758964003 + ], + [ + 67.36642544729378, + 27.377627758964003 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 27.377627758964003 + ], + [ + 67.13674008032642, + 27.377627758964003 + ], + [ + 67.2515827638101, + 27.18298002403555 + ], + [ + 67.36642544729378, + 27.377627758964003 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 27.377627758964003 + ], + [ + 67.2515827638101, + 27.18298002403555 + ], + [ + 67.48126813077745, + 27.18298002403555 + ], + [ + 67.36642544729378, + 27.377627758964003 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 27.377627758964003 + ], + [ + 67.48126813077745, + 27.18298002403555 + ], + [ + 67.59611081426114, + 27.377627758964003 + ], + [ + 67.36642544729378, + 27.377627758964003 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 27.766923228820907 + ], + [ + 67.59611081426114, + 27.766923228820907 + ], + [ + 67.48126813077745, + 27.96157096374936 + ], + [ + 67.36642544729378, + 27.766923228820907 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 27.766923228820907 + ], + [ + 67.48126813077745, + 27.96157096374936 + ], + [ + 67.2515827638101, + 27.96157096374936 + ], + [ + 67.36642544729378, + 27.766923228820907 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 27.766923228820907 + ], + [ + 67.2515827638101, + 27.96157096374936 + ], + [ + 67.13674008032642, + 27.766923228820907 + ], + [ + 67.36642544729378, + 27.766923228820907 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 27.766923228820907 + ], + [ + 67.13674008032642, + 27.766923228820907 + ], + [ + 67.2515827638101, + 27.572275493892455 + ], + [ + 67.36642544729378, + 27.766923228820907 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 27.766923228820907 + ], + [ + 67.2515827638101, + 27.572275493892455 + ], + [ + 67.48126813077745, + 27.572275493892455 + ], + [ + 67.36642544729378, + 27.766923228820907 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 27.766923228820907 + ], + [ + 67.48126813077745, + 27.572275493892455 + ], + [ + 67.59611081426114, + 27.766923228820907 + ], + [ + 67.36642544729378, + 27.766923228820907 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 28.156218698677815 + ], + [ + 67.59611081426114, + 28.156218698677815 + ], + [ + 67.48126813077745, + 28.350866433606267 + ], + [ + 67.36642544729378, + 28.156218698677815 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 28.156218698677815 + ], + [ + 67.48126813077745, + 28.350866433606267 + ], + [ + 67.2515827638101, + 28.350866433606267 + ], + [ + 67.36642544729378, + 28.156218698677815 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 28.156218698677815 + ], + [ + 67.2515827638101, + 28.350866433606267 + ], + [ + 67.13674008032642, + 28.156218698677815 + ], + [ + 67.36642544729378, + 28.156218698677815 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 28.156218698677815 + ], + [ + 67.13674008032642, + 28.156218698677815 + ], + [ + 67.2515827638101, + 27.961570963749363 + ], + [ + 67.36642544729378, + 28.156218698677815 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 28.156218698677815 + ], + [ + 67.2515827638101, + 27.961570963749363 + ], + [ + 67.48126813077745, + 27.961570963749363 + ], + [ + 67.36642544729378, + 28.156218698677815 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 28.156218698677815 + ], + [ + 67.48126813077745, + 27.961570963749363 + ], + [ + 67.59611081426114, + 28.156218698677815 + ], + [ + 67.36642544729378, + 28.156218698677815 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 28.54551416853472 + ], + [ + 67.59611081426114, + 28.54551416853472 + ], + [ + 67.48126813077745, + 28.74016190346317 + ], + [ + 67.36642544729378, + 28.54551416853472 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 28.54551416853472 + ], + [ + 67.48126813077745, + 28.74016190346317 + ], + [ + 67.2515827638101, + 28.74016190346317 + ], + [ + 67.36642544729378, + 28.54551416853472 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 28.54551416853472 + ], + [ + 67.2515827638101, + 28.74016190346317 + ], + [ + 67.13674008032642, + 28.54551416853472 + ], + [ + 67.36642544729378, + 28.54551416853472 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 28.54551416853472 + ], + [ + 67.13674008032642, + 28.54551416853472 + ], + [ + 67.2515827638101, + 28.350866433606267 + ], + [ + 67.36642544729378, + 28.54551416853472 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 28.54551416853472 + ], + [ + 67.2515827638101, + 28.350866433606267 + ], + [ + 67.48126813077745, + 28.350866433606267 + ], + [ + 67.36642544729378, + 28.54551416853472 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 28.54551416853472 + ], + [ + 67.48126813077745, + 28.350866433606267 + ], + [ + 67.59611081426114, + 28.54551416853472 + ], + [ + 67.36642544729378, + 28.54551416853472 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 28.934809638391627 + ], + [ + 67.59611081426114, + 28.934809638391627 + ], + [ + 67.48126813077745, + 29.12945737332008 + ], + [ + 67.36642544729378, + 28.934809638391627 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 28.934809638391627 + ], + [ + 67.48126813077745, + 29.12945737332008 + ], + [ + 67.2515827638101, + 29.12945737332008 + ], + [ + 67.36642544729378, + 28.934809638391627 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 28.934809638391627 + ], + [ + 67.2515827638101, + 29.12945737332008 + ], + [ + 67.13674008032642, + 28.934809638391627 + ], + [ + 67.36642544729378, + 28.934809638391627 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 28.934809638391627 + ], + [ + 67.13674008032642, + 28.934809638391627 + ], + [ + 67.2515827638101, + 28.740161903463175 + ], + [ + 67.36642544729378, + 28.934809638391627 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 28.934809638391627 + ], + [ + 67.2515827638101, + 28.740161903463175 + ], + [ + 67.48126813077745, + 28.740161903463175 + ], + [ + 67.36642544729378, + 28.934809638391627 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 28.934809638391627 + ], + [ + 67.48126813077745, + 28.740161903463175 + ], + [ + 67.59611081426114, + 28.934809638391627 + ], + [ + 67.36642544729378, + 28.934809638391627 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 29.32410510824853 + ], + [ + 67.59611081426114, + 29.32410510824853 + ], + [ + 67.48126813077745, + 29.518752843176983 + ], + [ + 67.36642544729378, + 29.32410510824853 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 29.32410510824853 + ], + [ + 67.48126813077745, + 29.518752843176983 + ], + [ + 67.2515827638101, + 29.518752843176983 + ], + [ + 67.36642544729378, + 29.32410510824853 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 29.32410510824853 + ], + [ + 67.2515827638101, + 29.518752843176983 + ], + [ + 67.13674008032642, + 29.32410510824853 + ], + [ + 67.36642544729378, + 29.32410510824853 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 29.32410510824853 + ], + [ + 67.13674008032642, + 29.32410510824853 + ], + [ + 67.2515827638101, + 29.12945737332008 + ], + [ + 67.36642544729378, + 29.32410510824853 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 29.32410510824853 + ], + [ + 67.2515827638101, + 29.12945737332008 + ], + [ + 67.48126813077745, + 29.12945737332008 + ], + [ + 67.36642544729378, + 29.32410510824853 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 29.32410510824853 + ], + [ + 67.48126813077745, + 29.12945737332008 + ], + [ + 67.59611081426114, + 29.32410510824853 + ], + [ + 67.36642544729378, + 29.32410510824853 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 29.71340057810544 + ], + [ + 67.59611081426114, + 29.71340057810544 + ], + [ + 67.48126813077745, + 29.90804831303389 + ], + [ + 67.36642544729378, + 29.71340057810544 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 29.71340057810544 + ], + [ + 67.48126813077745, + 29.90804831303389 + ], + [ + 67.2515827638101, + 29.90804831303389 + ], + [ + 67.36642544729378, + 29.71340057810544 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 29.71340057810544 + ], + [ + 67.2515827638101, + 29.90804831303389 + ], + [ + 67.13674008032642, + 29.71340057810544 + ], + [ + 67.36642544729378, + 29.71340057810544 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 29.71340057810544 + ], + [ + 67.13674008032642, + 29.71340057810544 + ], + [ + 67.2515827638101, + 29.518752843176987 + ], + [ + 67.36642544729378, + 29.71340057810544 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 29.71340057810544 + ], + [ + 67.2515827638101, + 29.518752843176987 + ], + [ + 67.48126813077745, + 29.518752843176987 + ], + [ + 67.36642544729378, + 29.71340057810544 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 29.71340057810544 + ], + [ + 67.48126813077745, + 29.518752843176987 + ], + [ + 67.59611081426114, + 29.71340057810544 + ], + [ + 67.36642544729378, + 29.71340057810544 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 30.102696047962343 + ], + [ + 67.59611081426114, + 30.102696047962343 + ], + [ + 67.48126813077745, + 30.297343782890795 + ], + [ + 67.36642544729378, + 30.102696047962343 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 30.102696047962343 + ], + [ + 67.48126813077745, + 30.297343782890795 + ], + [ + 67.2515827638101, + 30.297343782890795 + ], + [ + 67.36642544729378, + 30.102696047962343 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 30.102696047962343 + ], + [ + 67.2515827638101, + 30.297343782890795 + ], + [ + 67.13674008032642, + 30.102696047962343 + ], + [ + 67.36642544729378, + 30.102696047962343 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 30.102696047962343 + ], + [ + 67.13674008032642, + 30.102696047962343 + ], + [ + 67.2515827638101, + 29.90804831303389 + ], + [ + 67.36642544729378, + 30.102696047962343 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 30.102696047962343 + ], + [ + 67.2515827638101, + 29.90804831303389 + ], + [ + 67.48126813077745, + 29.90804831303389 + ], + [ + 67.36642544729378, + 30.102696047962343 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 30.102696047962343 + ], + [ + 67.48126813077745, + 29.90804831303389 + ], + [ + 67.59611081426114, + 30.102696047962343 + ], + [ + 67.36642544729378, + 30.102696047962343 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 30.49199151781925 + ], + [ + 67.59611081426114, + 30.49199151781925 + ], + [ + 67.48126813077745, + 30.686639252747703 + ], + [ + 67.36642544729378, + 30.49199151781925 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 30.49199151781925 + ], + [ + 67.48126813077745, + 30.686639252747703 + ], + [ + 67.2515827638101, + 30.686639252747703 + ], + [ + 67.36642544729378, + 30.49199151781925 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 30.49199151781925 + ], + [ + 67.2515827638101, + 30.686639252747703 + ], + [ + 67.13674008032642, + 30.49199151781925 + ], + [ + 67.36642544729378, + 30.49199151781925 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 30.49199151781925 + ], + [ + 67.13674008032642, + 30.49199151781925 + ], + [ + 67.2515827638101, + 30.2973437828908 + ], + [ + 67.36642544729378, + 30.49199151781925 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 30.49199151781925 + ], + [ + 67.2515827638101, + 30.2973437828908 + ], + [ + 67.48126813077745, + 30.2973437828908 + ], + [ + 67.36642544729378, + 30.49199151781925 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 30.49199151781925 + ], + [ + 67.48126813077745, + 30.2973437828908 + ], + [ + 67.59611081426114, + 30.49199151781925 + ], + [ + 67.36642544729378, + 30.49199151781925 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 30.88128698767616 + ], + [ + 67.59611081426114, + 30.88128698767616 + ], + [ + 67.48126813077745, + 31.07593472260461 + ], + [ + 67.36642544729378, + 30.88128698767616 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 30.88128698767616 + ], + [ + 67.48126813077745, + 31.07593472260461 + ], + [ + 67.2515827638101, + 31.07593472260461 + ], + [ + 67.36642544729378, + 30.88128698767616 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 30.88128698767616 + ], + [ + 67.2515827638101, + 31.07593472260461 + ], + [ + 67.13674008032642, + 30.88128698767616 + ], + [ + 67.36642544729378, + 30.88128698767616 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 30.88128698767616 + ], + [ + 67.13674008032642, + 30.88128698767616 + ], + [ + 67.2515827638101, + 30.686639252747707 + ], + [ + 67.36642544729378, + 30.88128698767616 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 30.88128698767616 + ], + [ + 67.2515827638101, + 30.686639252747707 + ], + [ + 67.48126813077745, + 30.686639252747707 + ], + [ + 67.36642544729378, + 30.88128698767616 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 30.88128698767616 + ], + [ + 67.48126813077745, + 30.686639252747707 + ], + [ + 67.59611081426114, + 30.88128698767616 + ], + [ + 67.36642544729378, + 30.88128698767616 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 31.270582457533063 + ], + [ + 67.59611081426114, + 31.270582457533063 + ], + [ + 67.48126813077745, + 31.465230192461515 + ], + [ + 67.36642544729378, + 31.270582457533063 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 31.270582457533063 + ], + [ + 67.48126813077745, + 31.465230192461515 + ], + [ + 67.2515827638101, + 31.465230192461515 + ], + [ + 67.36642544729378, + 31.270582457533063 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 31.270582457533063 + ], + [ + 67.2515827638101, + 31.465230192461515 + ], + [ + 67.13674008032642, + 31.270582457533063 + ], + [ + 67.36642544729378, + 31.270582457533063 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 31.270582457533063 + ], + [ + 67.13674008032642, + 31.270582457533063 + ], + [ + 67.2515827638101, + 31.07593472260461 + ], + [ + 67.36642544729378, + 31.270582457533063 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 31.270582457533063 + ], + [ + 67.2515827638101, + 31.07593472260461 + ], + [ + 67.48126813077745, + 31.07593472260461 + ], + [ + 67.36642544729378, + 31.270582457533063 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 31.270582457533063 + ], + [ + 67.48126813077745, + 31.07593472260461 + ], + [ + 67.59611081426114, + 31.270582457533063 + ], + [ + 67.36642544729378, + 31.270582457533063 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 31.65987792738997 + ], + [ + 67.59611081426114, + 31.65987792738997 + ], + [ + 67.48126813077745, + 31.854525662318423 + ], + [ + 67.36642544729378, + 31.65987792738997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 31.65987792738997 + ], + [ + 67.48126813077745, + 31.854525662318423 + ], + [ + 67.2515827638101, + 31.854525662318423 + ], + [ + 67.36642544729378, + 31.65987792738997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 31.65987792738997 + ], + [ + 67.2515827638101, + 31.854525662318423 + ], + [ + 67.13674008032642, + 31.65987792738997 + ], + [ + 67.36642544729378, + 31.65987792738997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 31.65987792738997 + ], + [ + 67.13674008032642, + 31.65987792738997 + ], + [ + 67.2515827638101, + 31.46523019246152 + ], + [ + 67.36642544729378, + 31.65987792738997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 31.65987792738997 + ], + [ + 67.2515827638101, + 31.46523019246152 + ], + [ + 67.48126813077745, + 31.46523019246152 + ], + [ + 67.36642544729378, + 31.65987792738997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 31.65987792738997 + ], + [ + 67.48126813077745, + 31.46523019246152 + ], + [ + 67.59611081426114, + 31.65987792738997 + ], + [ + 67.36642544729378, + 31.65987792738997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 32.049173397246875 + ], + [ + 67.59611081426114, + 32.049173397246875 + ], + [ + 67.48126813077745, + 32.24382113217533 + ], + [ + 67.36642544729378, + 32.049173397246875 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 32.049173397246875 + ], + [ + 67.48126813077745, + 32.24382113217533 + ], + [ + 67.2515827638101, + 32.24382113217533 + ], + [ + 67.36642544729378, + 32.049173397246875 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 32.049173397246875 + ], + [ + 67.2515827638101, + 32.24382113217533 + ], + [ + 67.13674008032642, + 32.049173397246875 + ], + [ + 67.36642544729378, + 32.049173397246875 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 32.049173397246875 + ], + [ + 67.13674008032642, + 32.049173397246875 + ], + [ + 67.2515827638101, + 31.854525662318423 + ], + [ + 67.36642544729378, + 32.049173397246875 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 32.049173397246875 + ], + [ + 67.2515827638101, + 31.854525662318423 + ], + [ + 67.48126813077745, + 31.854525662318423 + ], + [ + 67.36642544729378, + 32.049173397246875 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 32.049173397246875 + ], + [ + 67.48126813077745, + 31.854525662318423 + ], + [ + 67.59611081426114, + 32.049173397246875 + ], + [ + 67.36642544729378, + 32.049173397246875 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 32.438468867103786 + ], + [ + 67.59611081426114, + 32.438468867103786 + ], + [ + 67.48126813077745, + 32.63311660203224 + ], + [ + 67.36642544729378, + 32.438468867103786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 32.438468867103786 + ], + [ + 67.48126813077745, + 32.63311660203224 + ], + [ + 67.2515827638101, + 32.63311660203224 + ], + [ + 67.36642544729378, + 32.438468867103786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 32.438468867103786 + ], + [ + 67.2515827638101, + 32.63311660203224 + ], + [ + 67.13674008032642, + 32.438468867103786 + ], + [ + 67.36642544729378, + 32.438468867103786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 32.438468867103786 + ], + [ + 67.13674008032642, + 32.438468867103786 + ], + [ + 67.2515827638101, + 32.243821132175334 + ], + [ + 67.36642544729378, + 32.438468867103786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 32.438468867103786 + ], + [ + 67.2515827638101, + 32.243821132175334 + ], + [ + 67.48126813077745, + 32.243821132175334 + ], + [ + 67.36642544729378, + 32.438468867103786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 32.438468867103786 + ], + [ + 67.48126813077745, + 32.243821132175334 + ], + [ + 67.59611081426114, + 32.438468867103786 + ], + [ + 67.36642544729378, + 32.438468867103786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 32.82776433696069 + ], + [ + 67.59611081426114, + 32.82776433696069 + ], + [ + 67.48126813077745, + 33.02241207188914 + ], + [ + 67.36642544729378, + 32.82776433696069 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 32.82776433696069 + ], + [ + 67.48126813077745, + 33.02241207188914 + ], + [ + 67.2515827638101, + 33.02241207188914 + ], + [ + 67.36642544729378, + 32.82776433696069 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 32.82776433696069 + ], + [ + 67.2515827638101, + 33.02241207188914 + ], + [ + 67.13674008032642, + 32.82776433696069 + ], + [ + 67.36642544729378, + 32.82776433696069 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 32.82776433696069 + ], + [ + 67.13674008032642, + 32.82776433696069 + ], + [ + 67.2515827638101, + 32.63311660203224 + ], + [ + 67.36642544729378, + 32.82776433696069 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 32.82776433696069 + ], + [ + 67.2515827638101, + 32.63311660203224 + ], + [ + 67.48126813077745, + 32.63311660203224 + ], + [ + 67.36642544729378, + 32.82776433696069 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 32.82776433696069 + ], + [ + 67.48126813077745, + 32.63311660203224 + ], + [ + 67.59611081426114, + 32.82776433696069 + ], + [ + 67.36642544729378, + 32.82776433696069 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 33.217059806817595 + ], + [ + 67.59611081426114, + 33.217059806817595 + ], + [ + 67.48126813077745, + 33.41170754174605 + ], + [ + 67.36642544729378, + 33.217059806817595 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 33.217059806817595 + ], + [ + 67.48126813077745, + 33.41170754174605 + ], + [ + 67.2515827638101, + 33.41170754174605 + ], + [ + 67.36642544729378, + 33.217059806817595 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 33.217059806817595 + ], + [ + 67.2515827638101, + 33.41170754174605 + ], + [ + 67.13674008032642, + 33.217059806817595 + ], + [ + 67.36642544729378, + 33.217059806817595 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 33.217059806817595 + ], + [ + 67.13674008032642, + 33.217059806817595 + ], + [ + 67.2515827638101, + 33.02241207188914 + ], + [ + 67.36642544729378, + 33.217059806817595 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 33.217059806817595 + ], + [ + 67.2515827638101, + 33.02241207188914 + ], + [ + 67.48126813077745, + 33.02241207188914 + ], + [ + 67.36642544729378, + 33.217059806817595 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 33.217059806817595 + ], + [ + 67.48126813077745, + 33.02241207188914 + ], + [ + 67.59611081426114, + 33.217059806817595 + ], + [ + 67.36642544729378, + 33.217059806817595 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 33.6063552766745 + ], + [ + 67.59611081426114, + 33.6063552766745 + ], + [ + 67.48126813077745, + 33.80100301160295 + ], + [ + 67.36642544729378, + 33.6063552766745 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 33.6063552766745 + ], + [ + 67.48126813077745, + 33.80100301160295 + ], + [ + 67.2515827638101, + 33.80100301160295 + ], + [ + 67.36642544729378, + 33.6063552766745 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 33.6063552766745 + ], + [ + 67.2515827638101, + 33.80100301160295 + ], + [ + 67.13674008032642, + 33.6063552766745 + ], + [ + 67.36642544729378, + 33.6063552766745 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 33.6063552766745 + ], + [ + 67.13674008032642, + 33.6063552766745 + ], + [ + 67.2515827638101, + 33.41170754174605 + ], + [ + 67.36642544729378, + 33.6063552766745 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 33.6063552766745 + ], + [ + 67.2515827638101, + 33.41170754174605 + ], + [ + 67.48126813077745, + 33.41170754174605 + ], + [ + 67.36642544729378, + 33.6063552766745 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 33.6063552766745 + ], + [ + 67.48126813077745, + 33.41170754174605 + ], + [ + 67.59611081426114, + 33.6063552766745 + ], + [ + 67.36642544729378, + 33.6063552766745 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 33.9956507465314 + ], + [ + 67.59611081426114, + 33.9956507465314 + ], + [ + 67.48126813077745, + 34.190298481459855 + ], + [ + 67.36642544729378, + 33.9956507465314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 33.9956507465314 + ], + [ + 67.48126813077745, + 34.190298481459855 + ], + [ + 67.2515827638101, + 34.190298481459855 + ], + [ + 67.36642544729378, + 33.9956507465314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 33.9956507465314 + ], + [ + 67.2515827638101, + 34.190298481459855 + ], + [ + 67.13674008032642, + 33.9956507465314 + ], + [ + 67.36642544729378, + 33.9956507465314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 33.9956507465314 + ], + [ + 67.13674008032642, + 33.9956507465314 + ], + [ + 67.2515827638101, + 33.80100301160295 + ], + [ + 67.36642544729378, + 33.9956507465314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 33.9956507465314 + ], + [ + 67.2515827638101, + 33.80100301160295 + ], + [ + 67.48126813077745, + 33.80100301160295 + ], + [ + 67.36642544729378, + 33.9956507465314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 33.9956507465314 + ], + [ + 67.48126813077745, + 33.80100301160295 + ], + [ + 67.59611081426114, + 33.9956507465314 + ], + [ + 67.36642544729378, + 33.9956507465314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 34.384946216388315 + ], + [ + 67.59611081426114, + 34.384946216388315 + ], + [ + 67.48126813077745, + 34.57959395131677 + ], + [ + 67.36642544729378, + 34.384946216388315 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 34.384946216388315 + ], + [ + 67.48126813077745, + 34.57959395131677 + ], + [ + 67.2515827638101, + 34.57959395131677 + ], + [ + 67.36642544729378, + 34.384946216388315 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 34.384946216388315 + ], + [ + 67.2515827638101, + 34.57959395131677 + ], + [ + 67.13674008032642, + 34.384946216388315 + ], + [ + 67.36642544729378, + 34.384946216388315 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 34.384946216388315 + ], + [ + 67.13674008032642, + 34.384946216388315 + ], + [ + 67.2515827638101, + 34.19029848145986 + ], + [ + 67.36642544729378, + 34.384946216388315 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 34.384946216388315 + ], + [ + 67.2515827638101, + 34.19029848145986 + ], + [ + 67.48126813077745, + 34.19029848145986 + ], + [ + 67.36642544729378, + 34.384946216388315 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 34.384946216388315 + ], + [ + 67.48126813077745, + 34.19029848145986 + ], + [ + 67.59611081426114, + 34.384946216388315 + ], + [ + 67.36642544729378, + 34.384946216388315 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 34.774241686245226 + ], + [ + 67.59611081426114, + 34.774241686245226 + ], + [ + 67.48126813077745, + 34.96888942117368 + ], + [ + 67.36642544729378, + 34.774241686245226 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 34.774241686245226 + ], + [ + 67.48126813077745, + 34.96888942117368 + ], + [ + 67.2515827638101, + 34.96888942117368 + ], + [ + 67.36642544729378, + 34.774241686245226 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 34.774241686245226 + ], + [ + 67.2515827638101, + 34.96888942117368 + ], + [ + 67.13674008032642, + 34.774241686245226 + ], + [ + 67.36642544729378, + 34.774241686245226 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 34.774241686245226 + ], + [ + 67.13674008032642, + 34.774241686245226 + ], + [ + 67.2515827638101, + 34.579593951316774 + ], + [ + 67.36642544729378, + 34.774241686245226 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 34.774241686245226 + ], + [ + 67.2515827638101, + 34.579593951316774 + ], + [ + 67.48126813077745, + 34.579593951316774 + ], + [ + 67.36642544729378, + 34.774241686245226 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 34.774241686245226 + ], + [ + 67.48126813077745, + 34.579593951316774 + ], + [ + 67.59611081426114, + 34.774241686245226 + ], + [ + 67.36642544729378, + 34.774241686245226 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 35.16353715610213 + ], + [ + 67.59611081426114, + 35.16353715610213 + ], + [ + 67.48126813077745, + 35.35818489103058 + ], + [ + 67.36642544729378, + 35.16353715610213 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 35.16353715610213 + ], + [ + 67.48126813077745, + 35.35818489103058 + ], + [ + 67.2515827638101, + 35.35818489103058 + ], + [ + 67.36642544729378, + 35.16353715610213 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 35.16353715610213 + ], + [ + 67.2515827638101, + 35.35818489103058 + ], + [ + 67.13674008032642, + 35.16353715610213 + ], + [ + 67.36642544729378, + 35.16353715610213 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 35.16353715610213 + ], + [ + 67.13674008032642, + 35.16353715610213 + ], + [ + 67.2515827638101, + 34.96888942117368 + ], + [ + 67.36642544729378, + 35.16353715610213 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 35.16353715610213 + ], + [ + 67.2515827638101, + 34.96888942117368 + ], + [ + 67.48126813077745, + 34.96888942117368 + ], + [ + 67.36642544729378, + 35.16353715610213 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 35.16353715610213 + ], + [ + 67.48126813077745, + 34.96888942117368 + ], + [ + 67.59611081426114, + 35.16353715610213 + ], + [ + 67.36642544729378, + 35.16353715610213 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 35.552832625959034 + ], + [ + 67.59611081426114, + 35.552832625959034 + ], + [ + 67.48126813077745, + 35.74748036088749 + ], + [ + 67.36642544729378, + 35.552832625959034 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 35.552832625959034 + ], + [ + 67.48126813077745, + 35.74748036088749 + ], + [ + 67.2515827638101, + 35.74748036088749 + ], + [ + 67.36642544729378, + 35.552832625959034 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 35.552832625959034 + ], + [ + 67.2515827638101, + 35.74748036088749 + ], + [ + 67.13674008032642, + 35.552832625959034 + ], + [ + 67.36642544729378, + 35.552832625959034 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 35.552832625959034 + ], + [ + 67.13674008032642, + 35.552832625959034 + ], + [ + 67.2515827638101, + 35.35818489103058 + ], + [ + 67.36642544729378, + 35.552832625959034 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 35.552832625959034 + ], + [ + 67.2515827638101, + 35.35818489103058 + ], + [ + 67.48126813077745, + 35.35818489103058 + ], + [ + 67.36642544729378, + 35.552832625959034 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 35.552832625959034 + ], + [ + 67.48126813077745, + 35.35818489103058 + ], + [ + 67.59611081426114, + 35.552832625959034 + ], + [ + 67.36642544729378, + 35.552832625959034 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 35.94212809581594 + ], + [ + 67.59611081426114, + 35.94212809581594 + ], + [ + 67.48126813077745, + 36.13677583074439 + ], + [ + 67.36642544729378, + 35.94212809581594 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 35.94212809581594 + ], + [ + 67.48126813077745, + 36.13677583074439 + ], + [ + 67.2515827638101, + 36.13677583074439 + ], + [ + 67.36642544729378, + 35.94212809581594 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 35.94212809581594 + ], + [ + 67.2515827638101, + 36.13677583074439 + ], + [ + 67.13674008032642, + 35.94212809581594 + ], + [ + 67.36642544729378, + 35.94212809581594 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 35.94212809581594 + ], + [ + 67.13674008032642, + 35.94212809581594 + ], + [ + 67.2515827638101, + 35.74748036088749 + ], + [ + 67.36642544729378, + 35.94212809581594 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 35.94212809581594 + ], + [ + 67.2515827638101, + 35.74748036088749 + ], + [ + 67.48126813077745, + 35.74748036088749 + ], + [ + 67.36642544729378, + 35.94212809581594 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 35.94212809581594 + ], + [ + 67.48126813077745, + 35.74748036088749 + ], + [ + 67.59611081426114, + 35.94212809581594 + ], + [ + 67.36642544729378, + 35.94212809581594 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 36.33142356567284 + ], + [ + 67.59611081426114, + 36.33142356567284 + ], + [ + 67.48126813077745, + 36.526071300601295 + ], + [ + 67.36642544729378, + 36.33142356567284 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 36.33142356567284 + ], + [ + 67.48126813077745, + 36.526071300601295 + ], + [ + 67.2515827638101, + 36.526071300601295 + ], + [ + 67.36642544729378, + 36.33142356567284 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 36.33142356567284 + ], + [ + 67.2515827638101, + 36.526071300601295 + ], + [ + 67.13674008032642, + 36.33142356567284 + ], + [ + 67.36642544729378, + 36.33142356567284 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 36.33142356567284 + ], + [ + 67.13674008032642, + 36.33142356567284 + ], + [ + 67.2515827638101, + 36.13677583074439 + ], + [ + 67.36642544729378, + 36.33142356567284 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 36.33142356567284 + ], + [ + 67.2515827638101, + 36.13677583074439 + ], + [ + 67.48126813077745, + 36.13677583074439 + ], + [ + 67.36642544729378, + 36.33142356567284 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 36.33142356567284 + ], + [ + 67.48126813077745, + 36.13677583074439 + ], + [ + 67.59611081426114, + 36.33142356567284 + ], + [ + 67.36642544729378, + 36.33142356567284 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 36.720719035529754 + ], + [ + 67.59611081426114, + 36.720719035529754 + ], + [ + 67.48126813077745, + 36.915366770458206 + ], + [ + 67.36642544729378, + 36.720719035529754 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 36.720719035529754 + ], + [ + 67.48126813077745, + 36.915366770458206 + ], + [ + 67.2515827638101, + 36.915366770458206 + ], + [ + 67.36642544729378, + 36.720719035529754 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 36.720719035529754 + ], + [ + 67.2515827638101, + 36.915366770458206 + ], + [ + 67.13674008032642, + 36.720719035529754 + ], + [ + 67.36642544729378, + 36.720719035529754 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 36.720719035529754 + ], + [ + 67.13674008032642, + 36.720719035529754 + ], + [ + 67.2515827638101, + 36.5260713006013 + ], + [ + 67.36642544729378, + 36.720719035529754 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 36.720719035529754 + ], + [ + 67.2515827638101, + 36.5260713006013 + ], + [ + 67.48126813077745, + 36.5260713006013 + ], + [ + 67.36642544729378, + 36.720719035529754 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 36.720719035529754 + ], + [ + 67.48126813077745, + 36.5260713006013 + ], + [ + 67.59611081426114, + 36.720719035529754 + ], + [ + 67.36642544729378, + 36.720719035529754 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 37.11001450538666 + ], + [ + 67.59611081426114, + 37.11001450538666 + ], + [ + 67.48126813077745, + 37.30466224031511 + ], + [ + 67.36642544729378, + 37.11001450538666 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 37.11001450538666 + ], + [ + 67.48126813077745, + 37.30466224031511 + ], + [ + 67.2515827638101, + 37.30466224031511 + ], + [ + 67.36642544729378, + 37.11001450538666 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 37.11001450538666 + ], + [ + 67.2515827638101, + 37.30466224031511 + ], + [ + 67.13674008032642, + 37.11001450538666 + ], + [ + 67.36642544729378, + 37.11001450538666 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 37.11001450538666 + ], + [ + 67.13674008032642, + 37.11001450538666 + ], + [ + 67.2515827638101, + 36.915366770458206 + ], + [ + 67.36642544729378, + 37.11001450538666 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 37.11001450538666 + ], + [ + 67.2515827638101, + 36.915366770458206 + ], + [ + 67.48126813077745, + 36.915366770458206 + ], + [ + 67.36642544729378, + 37.11001450538666 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 37.11001450538666 + ], + [ + 67.48126813077745, + 36.915366770458206 + ], + [ + 67.59611081426114, + 37.11001450538666 + ], + [ + 67.36642544729378, + 37.11001450538666 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 37.49930997524357 + ], + [ + 67.59611081426114, + 37.49930997524357 + ], + [ + 67.48126813077745, + 37.69395771017202 + ], + [ + 67.36642544729378, + 37.49930997524357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 37.49930997524357 + ], + [ + 67.48126813077745, + 37.69395771017202 + ], + [ + 67.2515827638101, + 37.69395771017202 + ], + [ + 67.36642544729378, + 37.49930997524357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 37.49930997524357 + ], + [ + 67.2515827638101, + 37.69395771017202 + ], + [ + 67.13674008032642, + 37.49930997524357 + ], + [ + 67.36642544729378, + 37.49930997524357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 37.49930997524357 + ], + [ + 67.13674008032642, + 37.49930997524357 + ], + [ + 67.2515827638101, + 37.30466224031512 + ], + [ + 67.36642544729378, + 37.49930997524357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 37.49930997524357 + ], + [ + 67.2515827638101, + 37.30466224031512 + ], + [ + 67.48126813077745, + 37.30466224031512 + ], + [ + 67.36642544729378, + 37.49930997524357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 37.49930997524357 + ], + [ + 67.48126813077745, + 37.30466224031512 + ], + [ + 67.59611081426114, + 37.49930997524357 + ], + [ + 67.36642544729378, + 37.49930997524357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 37.888605445100474 + ], + [ + 67.59611081426114, + 37.888605445100474 + ], + [ + 67.48126813077745, + 38.083253180028926 + ], + [ + 67.36642544729378, + 37.888605445100474 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 37.888605445100474 + ], + [ + 67.48126813077745, + 38.083253180028926 + ], + [ + 67.2515827638101, + 38.083253180028926 + ], + [ + 67.36642544729378, + 37.888605445100474 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 37.888605445100474 + ], + [ + 67.2515827638101, + 38.083253180028926 + ], + [ + 67.13674008032642, + 37.888605445100474 + ], + [ + 67.36642544729378, + 37.888605445100474 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 37.888605445100474 + ], + [ + 67.13674008032642, + 37.888605445100474 + ], + [ + 67.2515827638101, + 37.69395771017202 + ], + [ + 67.36642544729378, + 37.888605445100474 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 37.888605445100474 + ], + [ + 67.2515827638101, + 37.69395771017202 + ], + [ + 67.48126813077745, + 37.69395771017202 + ], + [ + 67.36642544729378, + 37.888605445100474 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 37.888605445100474 + ], + [ + 67.48126813077745, + 37.69395771017202 + ], + [ + 67.59611081426114, + 37.888605445100474 + ], + [ + 67.36642544729378, + 37.888605445100474 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 38.27790091495738 + ], + [ + 67.59611081426114, + 38.27790091495738 + ], + [ + 67.48126813077745, + 38.47254864988583 + ], + [ + 67.36642544729378, + 38.27790091495738 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 38.27790091495738 + ], + [ + 67.48126813077745, + 38.47254864988583 + ], + [ + 67.2515827638101, + 38.47254864988583 + ], + [ + 67.36642544729378, + 38.27790091495738 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 38.27790091495738 + ], + [ + 67.2515827638101, + 38.47254864988583 + ], + [ + 67.13674008032642, + 38.27790091495738 + ], + [ + 67.36642544729378, + 38.27790091495738 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 38.27790091495738 + ], + [ + 67.13674008032642, + 38.27790091495738 + ], + [ + 67.2515827638101, + 38.083253180028926 + ], + [ + 67.36642544729378, + 38.27790091495738 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 38.27790091495738 + ], + [ + 67.2515827638101, + 38.083253180028926 + ], + [ + 67.48126813077745, + 38.083253180028926 + ], + [ + 67.36642544729378, + 38.27790091495738 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 38.27790091495738 + ], + [ + 67.48126813077745, + 38.083253180028926 + ], + [ + 67.59611081426114, + 38.27790091495738 + ], + [ + 67.36642544729378, + 38.27790091495738 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 38.66719638481428 + ], + [ + 67.59611081426114, + 38.66719638481428 + ], + [ + 67.48126813077745, + 38.861844119742734 + ], + [ + 67.36642544729378, + 38.66719638481428 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 38.66719638481428 + ], + [ + 67.48126813077745, + 38.861844119742734 + ], + [ + 67.2515827638101, + 38.861844119742734 + ], + [ + 67.36642544729378, + 38.66719638481428 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 38.66719638481428 + ], + [ + 67.2515827638101, + 38.861844119742734 + ], + [ + 67.13674008032642, + 38.66719638481428 + ], + [ + 67.36642544729378, + 38.66719638481428 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 38.66719638481428 + ], + [ + 67.13674008032642, + 38.66719638481428 + ], + [ + 67.2515827638101, + 38.47254864988583 + ], + [ + 67.36642544729378, + 38.66719638481428 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 38.66719638481428 + ], + [ + 67.2515827638101, + 38.47254864988583 + ], + [ + 67.48126813077745, + 38.47254864988583 + ], + [ + 67.36642544729378, + 38.66719638481428 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 38.66719638481428 + ], + [ + 67.48126813077745, + 38.47254864988583 + ], + [ + 67.59611081426114, + 38.66719638481428 + ], + [ + 67.36642544729378, + 38.66719638481428 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 39.05649185467119 + ], + [ + 67.59611081426114, + 39.05649185467119 + ], + [ + 67.48126813077745, + 39.25113958959964 + ], + [ + 67.36642544729378, + 39.05649185467119 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 39.05649185467119 + ], + [ + 67.48126813077745, + 39.25113958959964 + ], + [ + 67.2515827638101, + 39.25113958959964 + ], + [ + 67.36642544729378, + 39.05649185467119 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 39.05649185467119 + ], + [ + 67.2515827638101, + 39.25113958959964 + ], + [ + 67.13674008032642, + 39.05649185467119 + ], + [ + 67.36642544729378, + 39.05649185467119 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 39.05649185467119 + ], + [ + 67.13674008032642, + 39.05649185467119 + ], + [ + 67.2515827638101, + 38.861844119742734 + ], + [ + 67.36642544729378, + 39.05649185467119 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 39.05649185467119 + ], + [ + 67.2515827638101, + 38.861844119742734 + ], + [ + 67.48126813077745, + 38.861844119742734 + ], + [ + 67.36642544729378, + 39.05649185467119 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 39.05649185467119 + ], + [ + 67.48126813077745, + 38.861844119742734 + ], + [ + 67.59611081426114, + 39.05649185467119 + ], + [ + 67.36642544729378, + 39.05649185467119 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 39.4457873245281 + ], + [ + 67.59611081426114, + 39.4457873245281 + ], + [ + 67.48126813077745, + 39.64043505945655 + ], + [ + 67.36642544729378, + 39.4457873245281 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 39.4457873245281 + ], + [ + 67.48126813077745, + 39.64043505945655 + ], + [ + 67.2515827638101, + 39.64043505945655 + ], + [ + 67.36642544729378, + 39.4457873245281 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 39.4457873245281 + ], + [ + 67.2515827638101, + 39.64043505945655 + ], + [ + 67.13674008032642, + 39.4457873245281 + ], + [ + 67.36642544729378, + 39.4457873245281 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 39.4457873245281 + ], + [ + 67.13674008032642, + 39.4457873245281 + ], + [ + 67.2515827638101, + 39.251139589599646 + ], + [ + 67.36642544729378, + 39.4457873245281 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 39.4457873245281 + ], + [ + 67.2515827638101, + 39.251139589599646 + ], + [ + 67.48126813077745, + 39.251139589599646 + ], + [ + 67.36642544729378, + 39.4457873245281 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 39.4457873245281 + ], + [ + 67.48126813077745, + 39.251139589599646 + ], + [ + 67.59611081426114, + 39.4457873245281 + ], + [ + 67.36642544729378, + 39.4457873245281 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 39.835082794385 + ], + [ + 67.59611081426114, + 39.835082794385 + ], + [ + 67.48126813077745, + 40.029730529313454 + ], + [ + 67.36642544729378, + 39.835082794385 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 39.835082794385 + ], + [ + 67.48126813077745, + 40.029730529313454 + ], + [ + 67.2515827638101, + 40.029730529313454 + ], + [ + 67.36642544729378, + 39.835082794385 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 39.835082794385 + ], + [ + 67.2515827638101, + 40.029730529313454 + ], + [ + 67.13674008032642, + 39.835082794385 + ], + [ + 67.36642544729378, + 39.835082794385 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 39.835082794385 + ], + [ + 67.13674008032642, + 39.835082794385 + ], + [ + 67.2515827638101, + 39.64043505945655 + ], + [ + 67.36642544729378, + 39.835082794385 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 39.835082794385 + ], + [ + 67.2515827638101, + 39.64043505945655 + ], + [ + 67.48126813077745, + 39.64043505945655 + ], + [ + 67.36642544729378, + 39.835082794385 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 39.835082794385 + ], + [ + 67.48126813077745, + 39.64043505945655 + ], + [ + 67.59611081426114, + 39.835082794385 + ], + [ + 67.36642544729378, + 39.835082794385 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 40.22437826424191 + ], + [ + 67.59611081426114, + 40.22437826424191 + ], + [ + 67.48126813077745, + 40.419025999170366 + ], + [ + 67.36642544729378, + 40.22437826424191 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 40.22437826424191 + ], + [ + 67.48126813077745, + 40.419025999170366 + ], + [ + 67.2515827638101, + 40.419025999170366 + ], + [ + 67.36642544729378, + 40.22437826424191 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 40.22437826424191 + ], + [ + 67.2515827638101, + 40.419025999170366 + ], + [ + 67.13674008032642, + 40.22437826424191 + ], + [ + 67.36642544729378, + 40.22437826424191 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 40.22437826424191 + ], + [ + 67.13674008032642, + 40.22437826424191 + ], + [ + 67.2515827638101, + 40.02973052931346 + ], + [ + 67.36642544729378, + 40.22437826424191 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 40.22437826424191 + ], + [ + 67.2515827638101, + 40.02973052931346 + ], + [ + 67.48126813077745, + 40.02973052931346 + ], + [ + 67.36642544729378, + 40.22437826424191 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 40.22437826424191 + ], + [ + 67.48126813077745, + 40.02973052931346 + ], + [ + 67.59611081426114, + 40.22437826424191 + ], + [ + 67.36642544729378, + 40.22437826424191 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 40.61367373409882 + ], + [ + 67.59611081426114, + 40.61367373409882 + ], + [ + 67.48126813077745, + 40.80832146902727 + ], + [ + 67.36642544729378, + 40.61367373409882 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 40.61367373409882 + ], + [ + 67.48126813077745, + 40.80832146902727 + ], + [ + 67.2515827638101, + 40.80832146902727 + ], + [ + 67.36642544729378, + 40.61367373409882 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 40.61367373409882 + ], + [ + 67.2515827638101, + 40.80832146902727 + ], + [ + 67.13674008032642, + 40.61367373409882 + ], + [ + 67.36642544729378, + 40.61367373409882 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 40.61367373409882 + ], + [ + 67.13674008032642, + 40.61367373409882 + ], + [ + 67.2515827638101, + 40.419025999170366 + ], + [ + 67.36642544729378, + 40.61367373409882 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 40.61367373409882 + ], + [ + 67.2515827638101, + 40.419025999170366 + ], + [ + 67.48126813077745, + 40.419025999170366 + ], + [ + 67.36642544729378, + 40.61367373409882 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 40.61367373409882 + ], + [ + 67.48126813077745, + 40.419025999170366 + ], + [ + 67.59611081426114, + 40.61367373409882 + ], + [ + 67.36642544729378, + 40.61367373409882 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 41.00296920395572 + ], + [ + 67.59611081426114, + 41.00296920395572 + ], + [ + 67.48126813077745, + 41.197616938884174 + ], + [ + 67.36642544729378, + 41.00296920395572 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 41.00296920395572 + ], + [ + 67.48126813077745, + 41.197616938884174 + ], + [ + 67.2515827638101, + 41.197616938884174 + ], + [ + 67.36642544729378, + 41.00296920395572 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 41.00296920395572 + ], + [ + 67.2515827638101, + 41.197616938884174 + ], + [ + 67.13674008032642, + 41.00296920395572 + ], + [ + 67.36642544729378, + 41.00296920395572 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 41.00296920395572 + ], + [ + 67.13674008032642, + 41.00296920395572 + ], + [ + 67.2515827638101, + 40.80832146902727 + ], + [ + 67.36642544729378, + 41.00296920395572 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 41.00296920395572 + ], + [ + 67.2515827638101, + 40.80832146902727 + ], + [ + 67.48126813077745, + 40.80832146902727 + ], + [ + 67.36642544729378, + 41.00296920395572 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 41.00296920395572 + ], + [ + 67.48126813077745, + 40.80832146902727 + ], + [ + 67.59611081426114, + 41.00296920395572 + ], + [ + 67.36642544729378, + 41.00296920395572 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 41.392264673812626 + ], + [ + 67.59611081426114, + 41.392264673812626 + ], + [ + 67.48126813077745, + 41.58691240874108 + ], + [ + 67.36642544729378, + 41.392264673812626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 41.392264673812626 + ], + [ + 67.48126813077745, + 41.58691240874108 + ], + [ + 67.2515827638101, + 41.58691240874108 + ], + [ + 67.36642544729378, + 41.392264673812626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 41.392264673812626 + ], + [ + 67.2515827638101, + 41.58691240874108 + ], + [ + 67.13674008032642, + 41.392264673812626 + ], + [ + 67.36642544729378, + 41.392264673812626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 41.392264673812626 + ], + [ + 67.13674008032642, + 41.392264673812626 + ], + [ + 67.2515827638101, + 41.197616938884174 + ], + [ + 67.36642544729378, + 41.392264673812626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 41.392264673812626 + ], + [ + 67.2515827638101, + 41.197616938884174 + ], + [ + 67.48126813077745, + 41.197616938884174 + ], + [ + 67.36642544729378, + 41.392264673812626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 41.392264673812626 + ], + [ + 67.48126813077745, + 41.197616938884174 + ], + [ + 67.59611081426114, + 41.392264673812626 + ], + [ + 67.36642544729378, + 41.392264673812626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 41.78156014366953 + ], + [ + 67.59611081426114, + 41.78156014366953 + ], + [ + 67.48126813077745, + 41.97620787859798 + ], + [ + 67.36642544729378, + 41.78156014366953 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 41.78156014366953 + ], + [ + 67.48126813077745, + 41.97620787859798 + ], + [ + 67.2515827638101, + 41.97620787859798 + ], + [ + 67.36642544729378, + 41.78156014366953 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 41.78156014366953 + ], + [ + 67.2515827638101, + 41.97620787859798 + ], + [ + 67.13674008032642, + 41.78156014366953 + ], + [ + 67.36642544729378, + 41.78156014366953 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 41.78156014366953 + ], + [ + 67.13674008032642, + 41.78156014366953 + ], + [ + 67.2515827638101, + 41.58691240874108 + ], + [ + 67.36642544729378, + 41.78156014366953 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 41.78156014366953 + ], + [ + 67.2515827638101, + 41.58691240874108 + ], + [ + 67.48126813077745, + 41.58691240874108 + ], + [ + 67.36642544729378, + 41.78156014366953 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 41.78156014366953 + ], + [ + 67.48126813077745, + 41.58691240874108 + ], + [ + 67.59611081426114, + 41.78156014366953 + ], + [ + 67.36642544729378, + 41.78156014366953 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 42.17085561352644 + ], + [ + 67.59611081426114, + 42.17085561352644 + ], + [ + 67.48126813077745, + 42.365503348454894 + ], + [ + 67.36642544729378, + 42.17085561352644 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 42.17085561352644 + ], + [ + 67.48126813077745, + 42.365503348454894 + ], + [ + 67.2515827638101, + 42.365503348454894 + ], + [ + 67.36642544729378, + 42.17085561352644 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 42.17085561352644 + ], + [ + 67.2515827638101, + 42.365503348454894 + ], + [ + 67.13674008032642, + 42.17085561352644 + ], + [ + 67.36642544729378, + 42.17085561352644 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 42.17085561352644 + ], + [ + 67.13674008032642, + 42.17085561352644 + ], + [ + 67.2515827638101, + 41.97620787859799 + ], + [ + 67.36642544729378, + 42.17085561352644 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 42.17085561352644 + ], + [ + 67.2515827638101, + 41.97620787859799 + ], + [ + 67.48126813077745, + 41.97620787859799 + ], + [ + 67.36642544729378, + 42.17085561352644 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 42.17085561352644 + ], + [ + 67.48126813077745, + 41.97620787859799 + ], + [ + 67.59611081426114, + 42.17085561352644 + ], + [ + 67.36642544729378, + 42.17085561352644 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 42.56015108338335 + ], + [ + 67.59611081426114, + 42.56015108338335 + ], + [ + 67.48126813077745, + 42.754798818311805 + ], + [ + 67.36642544729378, + 42.56015108338335 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 42.56015108338335 + ], + [ + 67.48126813077745, + 42.754798818311805 + ], + [ + 67.2515827638101, + 42.754798818311805 + ], + [ + 67.36642544729378, + 42.56015108338335 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 42.56015108338335 + ], + [ + 67.2515827638101, + 42.754798818311805 + ], + [ + 67.13674008032642, + 42.56015108338335 + ], + [ + 67.36642544729378, + 42.56015108338335 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 42.56015108338335 + ], + [ + 67.13674008032642, + 42.56015108338335 + ], + [ + 67.2515827638101, + 42.3655033484549 + ], + [ + 67.36642544729378, + 42.56015108338335 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 42.56015108338335 + ], + [ + 67.2515827638101, + 42.3655033484549 + ], + [ + 67.48126813077745, + 42.3655033484549 + ], + [ + 67.36642544729378, + 42.56015108338335 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 42.56015108338335 + ], + [ + 67.48126813077745, + 42.3655033484549 + ], + [ + 67.59611081426114, + 42.56015108338335 + ], + [ + 67.36642544729378, + 42.56015108338335 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 42.94944655324026 + ], + [ + 67.59611081426114, + 42.94944655324026 + ], + [ + 67.48126813077745, + 43.14409428816871 + ], + [ + 67.36642544729378, + 42.94944655324026 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 42.94944655324026 + ], + [ + 67.48126813077745, + 43.14409428816871 + ], + [ + 67.2515827638101, + 43.14409428816871 + ], + [ + 67.36642544729378, + 42.94944655324026 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 42.94944655324026 + ], + [ + 67.2515827638101, + 43.14409428816871 + ], + [ + 67.13674008032642, + 42.94944655324026 + ], + [ + 67.36642544729378, + 42.94944655324026 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 42.94944655324026 + ], + [ + 67.13674008032642, + 42.94944655324026 + ], + [ + 67.2515827638101, + 42.754798818311805 + ], + [ + 67.36642544729378, + 42.94944655324026 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 42.94944655324026 + ], + [ + 67.2515827638101, + 42.754798818311805 + ], + [ + 67.48126813077745, + 42.754798818311805 + ], + [ + 67.36642544729378, + 42.94944655324026 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 42.94944655324026 + ], + [ + 67.48126813077745, + 42.754798818311805 + ], + [ + 67.59611081426114, + 42.94944655324026 + ], + [ + 67.36642544729378, + 42.94944655324026 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 43.33874202309716 + ], + [ + 67.59611081426114, + 43.33874202309716 + ], + [ + 67.48126813077745, + 43.53338975802561 + ], + [ + 67.36642544729378, + 43.33874202309716 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 43.33874202309716 + ], + [ + 67.48126813077745, + 43.53338975802561 + ], + [ + 67.2515827638101, + 43.53338975802561 + ], + [ + 67.36642544729378, + 43.33874202309716 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 43.33874202309716 + ], + [ + 67.2515827638101, + 43.53338975802561 + ], + [ + 67.13674008032642, + 43.33874202309716 + ], + [ + 67.36642544729378, + 43.33874202309716 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 43.33874202309716 + ], + [ + 67.13674008032642, + 43.33874202309716 + ], + [ + 67.2515827638101, + 43.14409428816871 + ], + [ + 67.36642544729378, + 43.33874202309716 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 43.33874202309716 + ], + [ + 67.2515827638101, + 43.14409428816871 + ], + [ + 67.48126813077745, + 43.14409428816871 + ], + [ + 67.36642544729378, + 43.33874202309716 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 43.33874202309716 + ], + [ + 67.48126813077745, + 43.14409428816871 + ], + [ + 67.59611081426114, + 43.33874202309716 + ], + [ + 67.36642544729378, + 43.33874202309716 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 43.728037492954066 + ], + [ + 67.59611081426114, + 43.728037492954066 + ], + [ + 67.48126813077745, + 43.92268522788252 + ], + [ + 67.36642544729378, + 43.728037492954066 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 43.728037492954066 + ], + [ + 67.48126813077745, + 43.92268522788252 + ], + [ + 67.2515827638101, + 43.92268522788252 + ], + [ + 67.36642544729378, + 43.728037492954066 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 43.728037492954066 + ], + [ + 67.2515827638101, + 43.92268522788252 + ], + [ + 67.13674008032642, + 43.728037492954066 + ], + [ + 67.36642544729378, + 43.728037492954066 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 43.728037492954066 + ], + [ + 67.13674008032642, + 43.728037492954066 + ], + [ + 67.2515827638101, + 43.53338975802561 + ], + [ + 67.36642544729378, + 43.728037492954066 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 43.728037492954066 + ], + [ + 67.2515827638101, + 43.53338975802561 + ], + [ + 67.48126813077745, + 43.53338975802561 + ], + [ + 67.36642544729378, + 43.728037492954066 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 43.728037492954066 + ], + [ + 67.48126813077745, + 43.53338975802561 + ], + [ + 67.59611081426114, + 43.728037492954066 + ], + [ + 67.36642544729378, + 43.728037492954066 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 44.11733296281097 + ], + [ + 67.59611081426114, + 44.11733296281097 + ], + [ + 67.48126813077745, + 44.31198069773942 + ], + [ + 67.36642544729378, + 44.11733296281097 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 44.11733296281097 + ], + [ + 67.48126813077745, + 44.31198069773942 + ], + [ + 67.2515827638101, + 44.31198069773942 + ], + [ + 67.36642544729378, + 44.11733296281097 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 44.11733296281097 + ], + [ + 67.2515827638101, + 44.31198069773942 + ], + [ + 67.13674008032642, + 44.11733296281097 + ], + [ + 67.36642544729378, + 44.11733296281097 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 44.11733296281097 + ], + [ + 67.13674008032642, + 44.11733296281097 + ], + [ + 67.2515827638101, + 43.92268522788252 + ], + [ + 67.36642544729378, + 44.11733296281097 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 44.11733296281097 + ], + [ + 67.2515827638101, + 43.92268522788252 + ], + [ + 67.48126813077745, + 43.92268522788252 + ], + [ + 67.36642544729378, + 44.11733296281097 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 44.11733296281097 + ], + [ + 67.48126813077745, + 43.92268522788252 + ], + [ + 67.59611081426114, + 44.11733296281097 + ], + [ + 67.36642544729378, + 44.11733296281097 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 44.506628432667874 + ], + [ + 67.59611081426114, + 44.506628432667874 + ], + [ + 67.48126813077745, + 44.701276167596326 + ], + [ + 67.36642544729378, + 44.506628432667874 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 44.506628432667874 + ], + [ + 67.48126813077745, + 44.701276167596326 + ], + [ + 67.2515827638101, + 44.701276167596326 + ], + [ + 67.36642544729378, + 44.506628432667874 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 44.506628432667874 + ], + [ + 67.2515827638101, + 44.701276167596326 + ], + [ + 67.13674008032642, + 44.506628432667874 + ], + [ + 67.36642544729378, + 44.506628432667874 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 44.506628432667874 + ], + [ + 67.13674008032642, + 44.506628432667874 + ], + [ + 67.2515827638101, + 44.31198069773942 + ], + [ + 67.36642544729378, + 44.506628432667874 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 44.506628432667874 + ], + [ + 67.2515827638101, + 44.31198069773942 + ], + [ + 67.48126813077745, + 44.31198069773942 + ], + [ + 67.36642544729378, + 44.506628432667874 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 44.506628432667874 + ], + [ + 67.48126813077745, + 44.31198069773942 + ], + [ + 67.59611081426114, + 44.506628432667874 + ], + [ + 67.36642544729378, + 44.506628432667874 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 44.89592390252479 + ], + [ + 67.59611081426114, + 44.89592390252479 + ], + [ + 67.48126813077745, + 45.090571637453245 + ], + [ + 67.36642544729378, + 44.89592390252479 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 44.89592390252479 + ], + [ + 67.48126813077745, + 45.090571637453245 + ], + [ + 67.2515827638101, + 45.090571637453245 + ], + [ + 67.36642544729378, + 44.89592390252479 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 44.89592390252479 + ], + [ + 67.2515827638101, + 45.090571637453245 + ], + [ + 67.13674008032642, + 44.89592390252479 + ], + [ + 67.36642544729378, + 44.89592390252479 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 44.89592390252479 + ], + [ + 67.13674008032642, + 44.89592390252479 + ], + [ + 67.2515827638101, + 44.70127616759634 + ], + [ + 67.36642544729378, + 44.89592390252479 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 44.89592390252479 + ], + [ + 67.2515827638101, + 44.70127616759634 + ], + [ + 67.48126813077745, + 44.70127616759634 + ], + [ + 67.36642544729378, + 44.89592390252479 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 44.89592390252479 + ], + [ + 67.48126813077745, + 44.70127616759634 + ], + [ + 67.59611081426114, + 44.89592390252479 + ], + [ + 67.36642544729378, + 44.89592390252479 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 45.2852193723817 + ], + [ + 67.59611081426114, + 45.2852193723817 + ], + [ + 67.48126813077745, + 45.47986710731015 + ], + [ + 67.36642544729378, + 45.2852193723817 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 45.2852193723817 + ], + [ + 67.48126813077745, + 45.47986710731015 + ], + [ + 67.2515827638101, + 45.47986710731015 + ], + [ + 67.36642544729378, + 45.2852193723817 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 45.2852193723817 + ], + [ + 67.2515827638101, + 45.47986710731015 + ], + [ + 67.13674008032642, + 45.2852193723817 + ], + [ + 67.36642544729378, + 45.2852193723817 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 45.2852193723817 + ], + [ + 67.13674008032642, + 45.2852193723817 + ], + [ + 67.2515827638101, + 45.090571637453245 + ], + [ + 67.36642544729378, + 45.2852193723817 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 45.2852193723817 + ], + [ + 67.2515827638101, + 45.090571637453245 + ], + [ + 67.48126813077745, + 45.090571637453245 + ], + [ + 67.36642544729378, + 45.2852193723817 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 45.2852193723817 + ], + [ + 67.48126813077745, + 45.090571637453245 + ], + [ + 67.59611081426114, + 45.2852193723817 + ], + [ + 67.36642544729378, + 45.2852193723817 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 45.6745148422386 + ], + [ + 67.59611081426114, + 45.6745148422386 + ], + [ + 67.48126813077745, + 45.86916257716705 + ], + [ + 67.36642544729378, + 45.6745148422386 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 45.6745148422386 + ], + [ + 67.48126813077745, + 45.86916257716705 + ], + [ + 67.2515827638101, + 45.86916257716705 + ], + [ + 67.36642544729378, + 45.6745148422386 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 45.6745148422386 + ], + [ + 67.2515827638101, + 45.86916257716705 + ], + [ + 67.13674008032642, + 45.6745148422386 + ], + [ + 67.36642544729378, + 45.6745148422386 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 45.6745148422386 + ], + [ + 67.13674008032642, + 45.6745148422386 + ], + [ + 67.2515827638101, + 45.47986710731015 + ], + [ + 67.36642544729378, + 45.6745148422386 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 45.6745148422386 + ], + [ + 67.2515827638101, + 45.47986710731015 + ], + [ + 67.48126813077745, + 45.47986710731015 + ], + [ + 67.36642544729378, + 45.6745148422386 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 45.6745148422386 + ], + [ + 67.48126813077745, + 45.47986710731015 + ], + [ + 67.59611081426114, + 45.6745148422386 + ], + [ + 67.36642544729378, + 45.6745148422386 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 46.063810312095505 + ], + [ + 67.59611081426114, + 46.063810312095505 + ], + [ + 67.48126813077745, + 46.25845804702396 + ], + [ + 67.36642544729378, + 46.063810312095505 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 46.063810312095505 + ], + [ + 67.48126813077745, + 46.25845804702396 + ], + [ + 67.2515827638101, + 46.25845804702396 + ], + [ + 67.36642544729378, + 46.063810312095505 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 46.063810312095505 + ], + [ + 67.2515827638101, + 46.25845804702396 + ], + [ + 67.13674008032642, + 46.063810312095505 + ], + [ + 67.36642544729378, + 46.063810312095505 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 46.063810312095505 + ], + [ + 67.13674008032642, + 46.063810312095505 + ], + [ + 67.2515827638101, + 45.86916257716705 + ], + [ + 67.36642544729378, + 46.063810312095505 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 46.063810312095505 + ], + [ + 67.2515827638101, + 45.86916257716705 + ], + [ + 67.48126813077745, + 45.86916257716705 + ], + [ + 67.36642544729378, + 46.063810312095505 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 46.063810312095505 + ], + [ + 67.48126813077745, + 45.86916257716705 + ], + [ + 67.59611081426114, + 46.063810312095505 + ], + [ + 67.36642544729378, + 46.063810312095505 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 46.45310578195241 + ], + [ + 67.59611081426114, + 46.45310578195241 + ], + [ + 67.48126813077745, + 46.64775351688086 + ], + [ + 67.36642544729378, + 46.45310578195241 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 46.45310578195241 + ], + [ + 67.48126813077745, + 46.64775351688086 + ], + [ + 67.2515827638101, + 46.64775351688086 + ], + [ + 67.36642544729378, + 46.45310578195241 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 46.45310578195241 + ], + [ + 67.2515827638101, + 46.64775351688086 + ], + [ + 67.13674008032642, + 46.45310578195241 + ], + [ + 67.36642544729378, + 46.45310578195241 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 46.45310578195241 + ], + [ + 67.13674008032642, + 46.45310578195241 + ], + [ + 67.2515827638101, + 46.25845804702396 + ], + [ + 67.36642544729378, + 46.45310578195241 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 46.45310578195241 + ], + [ + 67.2515827638101, + 46.25845804702396 + ], + [ + 67.48126813077745, + 46.25845804702396 + ], + [ + 67.36642544729378, + 46.45310578195241 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 46.45310578195241 + ], + [ + 67.48126813077745, + 46.25845804702396 + ], + [ + 67.59611081426114, + 46.45310578195241 + ], + [ + 67.36642544729378, + 46.45310578195241 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 46.842401251809314 + ], + [ + 67.59611081426114, + 46.842401251809314 + ], + [ + 67.48126813077745, + 47.037048986737766 + ], + [ + 67.36642544729378, + 46.842401251809314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 46.842401251809314 + ], + [ + 67.48126813077745, + 47.037048986737766 + ], + [ + 67.2515827638101, + 47.037048986737766 + ], + [ + 67.36642544729378, + 46.842401251809314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 46.842401251809314 + ], + [ + 67.2515827638101, + 47.037048986737766 + ], + [ + 67.13674008032642, + 46.842401251809314 + ], + [ + 67.36642544729378, + 46.842401251809314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 46.842401251809314 + ], + [ + 67.13674008032642, + 46.842401251809314 + ], + [ + 67.2515827638101, + 46.64775351688086 + ], + [ + 67.36642544729378, + 46.842401251809314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 46.842401251809314 + ], + [ + 67.2515827638101, + 46.64775351688086 + ], + [ + 67.48126813077745, + 46.64775351688086 + ], + [ + 67.36642544729378, + 46.842401251809314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 46.842401251809314 + ], + [ + 67.48126813077745, + 46.64775351688086 + ], + [ + 67.59611081426114, + 46.842401251809314 + ], + [ + 67.36642544729378, + 46.842401251809314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 47.23169672166622 + ], + [ + 67.59611081426114, + 47.23169672166622 + ], + [ + 67.48126813077745, + 47.42634445659467 + ], + [ + 67.36642544729378, + 47.23169672166622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 47.23169672166622 + ], + [ + 67.48126813077745, + 47.42634445659467 + ], + [ + 67.2515827638101, + 47.42634445659467 + ], + [ + 67.36642544729378, + 47.23169672166622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 47.23169672166622 + ], + [ + 67.2515827638101, + 47.42634445659467 + ], + [ + 67.13674008032642, + 47.23169672166622 + ], + [ + 67.36642544729378, + 47.23169672166622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 47.23169672166622 + ], + [ + 67.13674008032642, + 47.23169672166622 + ], + [ + 67.2515827638101, + 47.037048986737766 + ], + [ + 67.36642544729378, + 47.23169672166622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 47.23169672166622 + ], + [ + 67.2515827638101, + 47.037048986737766 + ], + [ + 67.48126813077745, + 47.037048986737766 + ], + [ + 67.36642544729378, + 47.23169672166622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 47.23169672166622 + ], + [ + 67.48126813077745, + 47.037048986737766 + ], + [ + 67.59611081426114, + 47.23169672166622 + ], + [ + 67.36642544729378, + 47.23169672166622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 47.620992191523136 + ], + [ + 67.59611081426114, + 47.620992191523136 + ], + [ + 67.48126813077745, + 47.81563992645159 + ], + [ + 67.36642544729378, + 47.620992191523136 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 47.620992191523136 + ], + [ + 67.48126813077745, + 47.81563992645159 + ], + [ + 67.2515827638101, + 47.81563992645159 + ], + [ + 67.36642544729378, + 47.620992191523136 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 47.620992191523136 + ], + [ + 67.2515827638101, + 47.81563992645159 + ], + [ + 67.13674008032642, + 47.620992191523136 + ], + [ + 67.36642544729378, + 47.620992191523136 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 47.620992191523136 + ], + [ + 67.13674008032642, + 47.620992191523136 + ], + [ + 67.2515827638101, + 47.426344456594684 + ], + [ + 67.36642544729378, + 47.620992191523136 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 47.620992191523136 + ], + [ + 67.2515827638101, + 47.426344456594684 + ], + [ + 67.48126813077745, + 47.426344456594684 + ], + [ + 67.36642544729378, + 47.620992191523136 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.36642544729378, + 47.620992191523136 + ], + [ + 67.48126813077745, + 47.426344456594684 + ], + [ + 67.59611081426114, + 47.620992191523136 + ], + [ + 67.36642544729378, + 47.620992191523136 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 12.0004566996162 + ], + [ + 67.94063886471217, + 12.0004566996162 + ], + [ + 67.82579618122848, + 12.195104434544653 + ], + [ + 67.71095349774481, + 12.0004566996162 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 12.0004566996162 + ], + [ + 67.82579618122848, + 12.195104434544653 + ], + [ + 67.59611081426114, + 12.195104434544653 + ], + [ + 67.71095349774481, + 12.0004566996162 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 12.0004566996162 + ], + [ + 67.59611081426114, + 12.195104434544653 + ], + [ + 67.48126813077745, + 12.0004566996162 + ], + [ + 67.71095349774481, + 12.0004566996162 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 12.0004566996162 + ], + [ + 67.48126813077745, + 12.0004566996162 + ], + [ + 67.59611081426114, + 11.805808964687746 + ], + [ + 67.71095349774481, + 12.0004566996162 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 12.0004566996162 + ], + [ + 67.59611081426114, + 11.805808964687746 + ], + [ + 67.82579618122848, + 11.805808964687746 + ], + [ + 67.71095349774481, + 12.0004566996162 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 12.0004566996162 + ], + [ + 67.82579618122848, + 11.805808964687746 + ], + [ + 67.94063886471217, + 12.0004566996162 + ], + [ + 67.71095349774481, + 12.0004566996162 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 12.389752169473105 + ], + [ + 67.94063886471217, + 12.389752169473105 + ], + [ + 67.82579618122848, + 12.58439990440156 + ], + [ + 67.71095349774481, + 12.389752169473105 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 12.389752169473105 + ], + [ + 67.82579618122848, + 12.58439990440156 + ], + [ + 67.59611081426114, + 12.58439990440156 + ], + [ + 67.71095349774481, + 12.389752169473105 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 12.389752169473105 + ], + [ + 67.59611081426114, + 12.58439990440156 + ], + [ + 67.48126813077745, + 12.389752169473105 + ], + [ + 67.71095349774481, + 12.389752169473105 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 12.389752169473105 + ], + [ + 67.48126813077745, + 12.389752169473105 + ], + [ + 67.59611081426114, + 12.195104434544652 + ], + [ + 67.71095349774481, + 12.389752169473105 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 12.389752169473105 + ], + [ + 67.59611081426114, + 12.195104434544652 + ], + [ + 67.82579618122848, + 12.195104434544652 + ], + [ + 67.71095349774481, + 12.389752169473105 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 12.389752169473105 + ], + [ + 67.82579618122848, + 12.195104434544652 + ], + [ + 67.94063886471217, + 12.389752169473105 + ], + [ + 67.71095349774481, + 12.389752169473105 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 12.779047639330013 + ], + [ + 67.94063886471217, + 12.779047639330013 + ], + [ + 67.82579618122848, + 12.973695374258467 + ], + [ + 67.71095349774481, + 12.779047639330013 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 12.779047639330013 + ], + [ + 67.82579618122848, + 12.973695374258467 + ], + [ + 67.59611081426114, + 12.973695374258467 + ], + [ + 67.71095349774481, + 12.779047639330013 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 12.779047639330013 + ], + [ + 67.59611081426114, + 12.973695374258467 + ], + [ + 67.48126813077745, + 12.779047639330013 + ], + [ + 67.71095349774481, + 12.779047639330013 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 12.779047639330013 + ], + [ + 67.48126813077745, + 12.779047639330013 + ], + [ + 67.59611081426114, + 12.58439990440156 + ], + [ + 67.71095349774481, + 12.779047639330013 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 12.779047639330013 + ], + [ + 67.59611081426114, + 12.58439990440156 + ], + [ + 67.82579618122848, + 12.58439990440156 + ], + [ + 67.71095349774481, + 12.779047639330013 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 12.779047639330013 + ], + [ + 67.82579618122848, + 12.58439990440156 + ], + [ + 67.94063886471217, + 12.779047639330013 + ], + [ + 67.71095349774481, + 12.779047639330013 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 13.16834310918692 + ], + [ + 67.94063886471217, + 13.16834310918692 + ], + [ + 67.82579618122848, + 13.362990844115373 + ], + [ + 67.71095349774481, + 13.16834310918692 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 13.16834310918692 + ], + [ + 67.82579618122848, + 13.362990844115373 + ], + [ + 67.59611081426114, + 13.362990844115373 + ], + [ + 67.71095349774481, + 13.16834310918692 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 13.16834310918692 + ], + [ + 67.59611081426114, + 13.362990844115373 + ], + [ + 67.48126813077745, + 13.16834310918692 + ], + [ + 67.71095349774481, + 13.16834310918692 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 13.16834310918692 + ], + [ + 67.48126813077745, + 13.16834310918692 + ], + [ + 67.59611081426114, + 12.973695374258465 + ], + [ + 67.71095349774481, + 13.16834310918692 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 13.16834310918692 + ], + [ + 67.59611081426114, + 12.973695374258465 + ], + [ + 67.82579618122848, + 12.973695374258465 + ], + [ + 67.71095349774481, + 13.16834310918692 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 13.16834310918692 + ], + [ + 67.82579618122848, + 12.973695374258465 + ], + [ + 67.94063886471217, + 13.16834310918692 + ], + [ + 67.71095349774481, + 13.16834310918692 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 13.557638579043825 + ], + [ + 67.94063886471217, + 13.557638579043825 + ], + [ + 67.82579618122848, + 13.752286313972279 + ], + [ + 67.71095349774481, + 13.557638579043825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 13.557638579043825 + ], + [ + 67.82579618122848, + 13.752286313972279 + ], + [ + 67.59611081426114, + 13.752286313972279 + ], + [ + 67.71095349774481, + 13.557638579043825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 13.557638579043825 + ], + [ + 67.59611081426114, + 13.752286313972279 + ], + [ + 67.48126813077745, + 13.557638579043825 + ], + [ + 67.71095349774481, + 13.557638579043825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 13.557638579043825 + ], + [ + 67.48126813077745, + 13.557638579043825 + ], + [ + 67.59611081426114, + 13.362990844115371 + ], + [ + 67.71095349774481, + 13.557638579043825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 13.557638579043825 + ], + [ + 67.59611081426114, + 13.362990844115371 + ], + [ + 67.82579618122848, + 13.362990844115371 + ], + [ + 67.71095349774481, + 13.557638579043825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 13.557638579043825 + ], + [ + 67.82579618122848, + 13.362990844115371 + ], + [ + 67.94063886471217, + 13.557638579043825 + ], + [ + 67.71095349774481, + 13.557638579043825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 13.946934048900731 + ], + [ + 67.94063886471217, + 13.946934048900731 + ], + [ + 67.82579618122848, + 14.141581783829185 + ], + [ + 67.71095349774481, + 13.946934048900731 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 13.946934048900731 + ], + [ + 67.82579618122848, + 14.141581783829185 + ], + [ + 67.59611081426114, + 14.141581783829185 + ], + [ + 67.71095349774481, + 13.946934048900731 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 13.946934048900731 + ], + [ + 67.59611081426114, + 14.141581783829185 + ], + [ + 67.48126813077745, + 13.946934048900731 + ], + [ + 67.71095349774481, + 13.946934048900731 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 13.946934048900731 + ], + [ + 67.48126813077745, + 13.946934048900731 + ], + [ + 67.59611081426114, + 13.752286313972277 + ], + [ + 67.71095349774481, + 13.946934048900731 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 13.946934048900731 + ], + [ + 67.59611081426114, + 13.752286313972277 + ], + [ + 67.82579618122848, + 13.752286313972277 + ], + [ + 67.71095349774481, + 13.946934048900731 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 13.946934048900731 + ], + [ + 67.82579618122848, + 13.752286313972277 + ], + [ + 67.94063886471217, + 13.946934048900731 + ], + [ + 67.71095349774481, + 13.946934048900731 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 14.336229518757637 + ], + [ + 67.94063886471217, + 14.336229518757637 + ], + [ + 67.82579618122848, + 14.530877253686091 + ], + [ + 67.71095349774481, + 14.336229518757637 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 14.336229518757637 + ], + [ + 67.82579618122848, + 14.530877253686091 + ], + [ + 67.59611081426114, + 14.530877253686091 + ], + [ + 67.71095349774481, + 14.336229518757637 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 14.336229518757637 + ], + [ + 67.59611081426114, + 14.530877253686091 + ], + [ + 67.48126813077745, + 14.336229518757637 + ], + [ + 67.71095349774481, + 14.336229518757637 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 14.336229518757637 + ], + [ + 67.48126813077745, + 14.336229518757637 + ], + [ + 67.59611081426114, + 14.141581783829183 + ], + [ + 67.71095349774481, + 14.336229518757637 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 14.336229518757637 + ], + [ + 67.59611081426114, + 14.141581783829183 + ], + [ + 67.82579618122848, + 14.141581783829183 + ], + [ + 67.71095349774481, + 14.336229518757637 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 14.336229518757637 + ], + [ + 67.82579618122848, + 14.141581783829183 + ], + [ + 67.94063886471217, + 14.336229518757637 + ], + [ + 67.71095349774481, + 14.336229518757637 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 14.725524988614545 + ], + [ + 67.94063886471217, + 14.725524988614545 + ], + [ + 67.82579618122848, + 14.920172723542999 + ], + [ + 67.71095349774481, + 14.725524988614545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 14.725524988614545 + ], + [ + 67.82579618122848, + 14.920172723542999 + ], + [ + 67.59611081426114, + 14.920172723542999 + ], + [ + 67.71095349774481, + 14.725524988614545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 14.725524988614545 + ], + [ + 67.59611081426114, + 14.920172723542999 + ], + [ + 67.48126813077745, + 14.725524988614545 + ], + [ + 67.71095349774481, + 14.725524988614545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 14.725524988614545 + ], + [ + 67.48126813077745, + 14.725524988614545 + ], + [ + 67.59611081426114, + 14.530877253686091 + ], + [ + 67.71095349774481, + 14.725524988614545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 14.725524988614545 + ], + [ + 67.59611081426114, + 14.530877253686091 + ], + [ + 67.82579618122848, + 14.530877253686091 + ], + [ + 67.71095349774481, + 14.725524988614545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 14.725524988614545 + ], + [ + 67.82579618122848, + 14.530877253686091 + ], + [ + 67.94063886471217, + 14.725524988614545 + ], + [ + 67.71095349774481, + 14.725524988614545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 15.114820458471451 + ], + [ + 67.94063886471217, + 15.114820458471451 + ], + [ + 67.82579618122848, + 15.309468193399905 + ], + [ + 67.71095349774481, + 15.114820458471451 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 15.114820458471451 + ], + [ + 67.82579618122848, + 15.309468193399905 + ], + [ + 67.59611081426114, + 15.309468193399905 + ], + [ + 67.71095349774481, + 15.114820458471451 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 15.114820458471451 + ], + [ + 67.59611081426114, + 15.309468193399905 + ], + [ + 67.48126813077745, + 15.114820458471451 + ], + [ + 67.71095349774481, + 15.114820458471451 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 15.114820458471451 + ], + [ + 67.48126813077745, + 15.114820458471451 + ], + [ + 67.59611081426114, + 14.920172723542997 + ], + [ + 67.71095349774481, + 15.114820458471451 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 15.114820458471451 + ], + [ + 67.59611081426114, + 14.920172723542997 + ], + [ + 67.82579618122848, + 14.920172723542997 + ], + [ + 67.71095349774481, + 15.114820458471451 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 15.114820458471451 + ], + [ + 67.82579618122848, + 14.920172723542997 + ], + [ + 67.94063886471217, + 15.114820458471451 + ], + [ + 67.71095349774481, + 15.114820458471451 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 15.504115928328357 + ], + [ + 67.94063886471217, + 15.504115928328357 + ], + [ + 67.82579618122848, + 15.69876366325681 + ], + [ + 67.71095349774481, + 15.504115928328357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 15.504115928328357 + ], + [ + 67.82579618122848, + 15.69876366325681 + ], + [ + 67.59611081426114, + 15.69876366325681 + ], + [ + 67.71095349774481, + 15.504115928328357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 15.504115928328357 + ], + [ + 67.59611081426114, + 15.69876366325681 + ], + [ + 67.48126813077745, + 15.504115928328357 + ], + [ + 67.71095349774481, + 15.504115928328357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 15.504115928328357 + ], + [ + 67.48126813077745, + 15.504115928328357 + ], + [ + 67.59611081426114, + 15.309468193399903 + ], + [ + 67.71095349774481, + 15.504115928328357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 15.504115928328357 + ], + [ + 67.59611081426114, + 15.309468193399903 + ], + [ + 67.82579618122848, + 15.309468193399903 + ], + [ + 67.71095349774481, + 15.504115928328357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 15.504115928328357 + ], + [ + 67.82579618122848, + 15.309468193399903 + ], + [ + 67.94063886471217, + 15.504115928328357 + ], + [ + 67.71095349774481, + 15.504115928328357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 15.893411398185265 + ], + [ + 67.94063886471217, + 15.893411398185265 + ], + [ + 67.82579618122848, + 16.088059133113717 + ], + [ + 67.71095349774481, + 15.893411398185265 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 15.893411398185265 + ], + [ + 67.82579618122848, + 16.088059133113717 + ], + [ + 67.59611081426114, + 16.088059133113717 + ], + [ + 67.71095349774481, + 15.893411398185265 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 15.893411398185265 + ], + [ + 67.59611081426114, + 16.088059133113717 + ], + [ + 67.48126813077745, + 15.893411398185265 + ], + [ + 67.71095349774481, + 15.893411398185265 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 15.893411398185265 + ], + [ + 67.48126813077745, + 15.893411398185265 + ], + [ + 67.59611081426114, + 15.69876366325681 + ], + [ + 67.71095349774481, + 15.893411398185265 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 15.893411398185265 + ], + [ + 67.59611081426114, + 15.69876366325681 + ], + [ + 67.82579618122848, + 15.69876366325681 + ], + [ + 67.71095349774481, + 15.893411398185265 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 15.893411398185265 + ], + [ + 67.82579618122848, + 15.69876366325681 + ], + [ + 67.94063886471217, + 15.893411398185265 + ], + [ + 67.71095349774481, + 15.893411398185265 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 16.28270686804217 + ], + [ + 67.94063886471217, + 16.28270686804217 + ], + [ + 67.82579618122848, + 16.47735460297062 + ], + [ + 67.71095349774481, + 16.28270686804217 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 16.28270686804217 + ], + [ + 67.82579618122848, + 16.47735460297062 + ], + [ + 67.59611081426114, + 16.47735460297062 + ], + [ + 67.71095349774481, + 16.28270686804217 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 16.28270686804217 + ], + [ + 67.59611081426114, + 16.47735460297062 + ], + [ + 67.48126813077745, + 16.28270686804217 + ], + [ + 67.71095349774481, + 16.28270686804217 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 16.28270686804217 + ], + [ + 67.48126813077745, + 16.28270686804217 + ], + [ + 67.59611081426114, + 16.088059133113717 + ], + [ + 67.71095349774481, + 16.28270686804217 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 16.28270686804217 + ], + [ + 67.59611081426114, + 16.088059133113717 + ], + [ + 67.82579618122848, + 16.088059133113717 + ], + [ + 67.71095349774481, + 16.28270686804217 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 16.28270686804217 + ], + [ + 67.82579618122848, + 16.088059133113717 + ], + [ + 67.94063886471217, + 16.28270686804217 + ], + [ + 67.71095349774481, + 16.28270686804217 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 16.672002337899077 + ], + [ + 67.94063886471217, + 16.672002337899077 + ], + [ + 67.82579618122848, + 16.86665007282753 + ], + [ + 67.71095349774481, + 16.672002337899077 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 16.672002337899077 + ], + [ + 67.82579618122848, + 16.86665007282753 + ], + [ + 67.59611081426114, + 16.86665007282753 + ], + [ + 67.71095349774481, + 16.672002337899077 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 16.672002337899077 + ], + [ + 67.59611081426114, + 16.86665007282753 + ], + [ + 67.48126813077745, + 16.672002337899077 + ], + [ + 67.71095349774481, + 16.672002337899077 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 16.672002337899077 + ], + [ + 67.48126813077745, + 16.672002337899077 + ], + [ + 67.59611081426114, + 16.477354602970625 + ], + [ + 67.71095349774481, + 16.672002337899077 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 16.672002337899077 + ], + [ + 67.59611081426114, + 16.477354602970625 + ], + [ + 67.82579618122848, + 16.477354602970625 + ], + [ + 67.71095349774481, + 16.672002337899077 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 16.672002337899077 + ], + [ + 67.82579618122848, + 16.477354602970625 + ], + [ + 67.94063886471217, + 16.672002337899077 + ], + [ + 67.71095349774481, + 16.672002337899077 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 17.06129780775598 + ], + [ + 67.94063886471217, + 17.06129780775598 + ], + [ + 67.82579618122848, + 17.255945542684433 + ], + [ + 67.71095349774481, + 17.06129780775598 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 17.06129780775598 + ], + [ + 67.82579618122848, + 17.255945542684433 + ], + [ + 67.59611081426114, + 17.255945542684433 + ], + [ + 67.71095349774481, + 17.06129780775598 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 17.06129780775598 + ], + [ + 67.59611081426114, + 17.255945542684433 + ], + [ + 67.48126813077745, + 17.06129780775598 + ], + [ + 67.71095349774481, + 17.06129780775598 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 17.06129780775598 + ], + [ + 67.48126813077745, + 17.06129780775598 + ], + [ + 67.59611081426114, + 16.86665007282753 + ], + [ + 67.71095349774481, + 17.06129780775598 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 17.06129780775598 + ], + [ + 67.59611081426114, + 16.86665007282753 + ], + [ + 67.82579618122848, + 16.86665007282753 + ], + [ + 67.71095349774481, + 17.06129780775598 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 17.06129780775598 + ], + [ + 67.82579618122848, + 16.86665007282753 + ], + [ + 67.94063886471217, + 17.06129780775598 + ], + [ + 67.71095349774481, + 17.06129780775598 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 17.45059327761289 + ], + [ + 67.94063886471217, + 17.45059327761289 + ], + [ + 67.82579618122848, + 17.64524101254134 + ], + [ + 67.71095349774481, + 17.45059327761289 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 17.45059327761289 + ], + [ + 67.82579618122848, + 17.64524101254134 + ], + [ + 67.59611081426114, + 17.64524101254134 + ], + [ + 67.71095349774481, + 17.45059327761289 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 17.45059327761289 + ], + [ + 67.59611081426114, + 17.64524101254134 + ], + [ + 67.48126813077745, + 17.45059327761289 + ], + [ + 67.71095349774481, + 17.45059327761289 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 17.45059327761289 + ], + [ + 67.48126813077745, + 17.45059327761289 + ], + [ + 67.59611081426114, + 17.255945542684437 + ], + [ + 67.71095349774481, + 17.45059327761289 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 17.45059327761289 + ], + [ + 67.59611081426114, + 17.255945542684437 + ], + [ + 67.82579618122848, + 17.255945542684437 + ], + [ + 67.71095349774481, + 17.45059327761289 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 17.45059327761289 + ], + [ + 67.82579618122848, + 17.255945542684437 + ], + [ + 67.94063886471217, + 17.45059327761289 + ], + [ + 67.71095349774481, + 17.45059327761289 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 17.839888747469793 + ], + [ + 67.94063886471217, + 17.839888747469793 + ], + [ + 67.82579618122848, + 18.034536482398245 + ], + [ + 67.71095349774481, + 17.839888747469793 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 17.839888747469793 + ], + [ + 67.82579618122848, + 18.034536482398245 + ], + [ + 67.59611081426114, + 18.034536482398245 + ], + [ + 67.71095349774481, + 17.839888747469793 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 17.839888747469793 + ], + [ + 67.59611081426114, + 18.034536482398245 + ], + [ + 67.48126813077745, + 17.839888747469793 + ], + [ + 67.71095349774481, + 17.839888747469793 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 17.839888747469793 + ], + [ + 67.48126813077745, + 17.839888747469793 + ], + [ + 67.59611081426114, + 17.64524101254134 + ], + [ + 67.71095349774481, + 17.839888747469793 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 17.839888747469793 + ], + [ + 67.59611081426114, + 17.64524101254134 + ], + [ + 67.82579618122848, + 17.64524101254134 + ], + [ + 67.71095349774481, + 17.839888747469793 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 17.839888747469793 + ], + [ + 67.82579618122848, + 17.64524101254134 + ], + [ + 67.94063886471217, + 17.839888747469793 + ], + [ + 67.71095349774481, + 17.839888747469793 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 18.2291842173267 + ], + [ + 67.94063886471217, + 18.2291842173267 + ], + [ + 67.82579618122848, + 18.423831952255153 + ], + [ + 67.71095349774481, + 18.2291842173267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 18.2291842173267 + ], + [ + 67.82579618122848, + 18.423831952255153 + ], + [ + 67.59611081426114, + 18.423831952255153 + ], + [ + 67.71095349774481, + 18.2291842173267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 18.2291842173267 + ], + [ + 67.59611081426114, + 18.423831952255153 + ], + [ + 67.48126813077745, + 18.2291842173267 + ], + [ + 67.71095349774481, + 18.2291842173267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 18.2291842173267 + ], + [ + 67.48126813077745, + 18.2291842173267 + ], + [ + 67.59611081426114, + 18.03453648239825 + ], + [ + 67.71095349774481, + 18.2291842173267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 18.2291842173267 + ], + [ + 67.59611081426114, + 18.03453648239825 + ], + [ + 67.82579618122848, + 18.03453648239825 + ], + [ + 67.71095349774481, + 18.2291842173267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 18.2291842173267 + ], + [ + 67.82579618122848, + 18.03453648239825 + ], + [ + 67.94063886471217, + 18.2291842173267 + ], + [ + 67.71095349774481, + 18.2291842173267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 18.61847968718361 + ], + [ + 67.94063886471217, + 18.61847968718361 + ], + [ + 67.82579618122848, + 18.81312742211206 + ], + [ + 67.71095349774481, + 18.61847968718361 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 18.61847968718361 + ], + [ + 67.82579618122848, + 18.81312742211206 + ], + [ + 67.59611081426114, + 18.81312742211206 + ], + [ + 67.71095349774481, + 18.61847968718361 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 18.61847968718361 + ], + [ + 67.59611081426114, + 18.81312742211206 + ], + [ + 67.48126813077745, + 18.61847968718361 + ], + [ + 67.71095349774481, + 18.61847968718361 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 18.61847968718361 + ], + [ + 67.48126813077745, + 18.61847968718361 + ], + [ + 67.59611081426114, + 18.423831952255156 + ], + [ + 67.71095349774481, + 18.61847968718361 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 18.61847968718361 + ], + [ + 67.59611081426114, + 18.423831952255156 + ], + [ + 67.82579618122848, + 18.423831952255156 + ], + [ + 67.71095349774481, + 18.61847968718361 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 18.61847968718361 + ], + [ + 67.82579618122848, + 18.423831952255156 + ], + [ + 67.94063886471217, + 18.61847968718361 + ], + [ + 67.71095349774481, + 18.61847968718361 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 19.007775157040513 + ], + [ + 67.94063886471217, + 19.007775157040513 + ], + [ + 67.82579618122848, + 19.202422891968965 + ], + [ + 67.71095349774481, + 19.007775157040513 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 19.007775157040513 + ], + [ + 67.82579618122848, + 19.202422891968965 + ], + [ + 67.59611081426114, + 19.202422891968965 + ], + [ + 67.71095349774481, + 19.007775157040513 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 19.007775157040513 + ], + [ + 67.59611081426114, + 19.202422891968965 + ], + [ + 67.48126813077745, + 19.007775157040513 + ], + [ + 67.71095349774481, + 19.007775157040513 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 19.007775157040513 + ], + [ + 67.48126813077745, + 19.007775157040513 + ], + [ + 67.59611081426114, + 18.81312742211206 + ], + [ + 67.71095349774481, + 19.007775157040513 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 19.007775157040513 + ], + [ + 67.59611081426114, + 18.81312742211206 + ], + [ + 67.82579618122848, + 18.81312742211206 + ], + [ + 67.71095349774481, + 19.007775157040513 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 19.007775157040513 + ], + [ + 67.82579618122848, + 18.81312742211206 + ], + [ + 67.94063886471217, + 19.007775157040513 + ], + [ + 67.71095349774481, + 19.007775157040513 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 19.39707062689742 + ], + [ + 67.94063886471217, + 19.39707062689742 + ], + [ + 67.82579618122848, + 19.591718361825873 + ], + [ + 67.71095349774481, + 19.39707062689742 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 19.39707062689742 + ], + [ + 67.82579618122848, + 19.591718361825873 + ], + [ + 67.59611081426114, + 19.591718361825873 + ], + [ + 67.71095349774481, + 19.39707062689742 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 19.39707062689742 + ], + [ + 67.59611081426114, + 19.591718361825873 + ], + [ + 67.48126813077745, + 19.39707062689742 + ], + [ + 67.71095349774481, + 19.39707062689742 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 19.39707062689742 + ], + [ + 67.48126813077745, + 19.39707062689742 + ], + [ + 67.59611081426114, + 19.20242289196897 + ], + [ + 67.71095349774481, + 19.39707062689742 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 19.39707062689742 + ], + [ + 67.59611081426114, + 19.20242289196897 + ], + [ + 67.82579618122848, + 19.20242289196897 + ], + [ + 67.71095349774481, + 19.39707062689742 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 19.39707062689742 + ], + [ + 67.82579618122848, + 19.20242289196897 + ], + [ + 67.94063886471217, + 19.39707062689742 + ], + [ + 67.71095349774481, + 19.39707062689742 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 19.78636609675433 + ], + [ + 67.94063886471217, + 19.78636609675433 + ], + [ + 67.82579618122848, + 19.98101383168278 + ], + [ + 67.71095349774481, + 19.78636609675433 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 19.78636609675433 + ], + [ + 67.82579618122848, + 19.98101383168278 + ], + [ + 67.59611081426114, + 19.98101383168278 + ], + [ + 67.71095349774481, + 19.78636609675433 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 19.78636609675433 + ], + [ + 67.59611081426114, + 19.98101383168278 + ], + [ + 67.48126813077745, + 19.78636609675433 + ], + [ + 67.71095349774481, + 19.78636609675433 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 19.78636609675433 + ], + [ + 67.48126813077745, + 19.78636609675433 + ], + [ + 67.59611081426114, + 19.591718361825876 + ], + [ + 67.71095349774481, + 19.78636609675433 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 19.78636609675433 + ], + [ + 67.59611081426114, + 19.591718361825876 + ], + [ + 67.82579618122848, + 19.591718361825876 + ], + [ + 67.71095349774481, + 19.78636609675433 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 19.78636609675433 + ], + [ + 67.82579618122848, + 19.591718361825876 + ], + [ + 67.94063886471217, + 19.78636609675433 + ], + [ + 67.71095349774481, + 19.78636609675433 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 20.175661566611232 + ], + [ + 67.94063886471217, + 20.175661566611232 + ], + [ + 67.82579618122848, + 20.370309301539685 + ], + [ + 67.71095349774481, + 20.175661566611232 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 20.175661566611232 + ], + [ + 67.82579618122848, + 20.370309301539685 + ], + [ + 67.59611081426114, + 20.370309301539685 + ], + [ + 67.71095349774481, + 20.175661566611232 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 20.175661566611232 + ], + [ + 67.59611081426114, + 20.370309301539685 + ], + [ + 67.48126813077745, + 20.175661566611232 + ], + [ + 67.71095349774481, + 20.175661566611232 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 20.175661566611232 + ], + [ + 67.48126813077745, + 20.175661566611232 + ], + [ + 67.59611081426114, + 19.98101383168278 + ], + [ + 67.71095349774481, + 20.175661566611232 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 20.175661566611232 + ], + [ + 67.59611081426114, + 19.98101383168278 + ], + [ + 67.82579618122848, + 19.98101383168278 + ], + [ + 67.71095349774481, + 20.175661566611232 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 20.175661566611232 + ], + [ + 67.82579618122848, + 19.98101383168278 + ], + [ + 67.94063886471217, + 20.175661566611232 + ], + [ + 67.71095349774481, + 20.175661566611232 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 20.564957036468137 + ], + [ + 67.94063886471217, + 20.564957036468137 + ], + [ + 67.82579618122848, + 20.75960477139659 + ], + [ + 67.71095349774481, + 20.564957036468137 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 20.564957036468137 + ], + [ + 67.82579618122848, + 20.75960477139659 + ], + [ + 67.59611081426114, + 20.75960477139659 + ], + [ + 67.71095349774481, + 20.564957036468137 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 20.564957036468137 + ], + [ + 67.59611081426114, + 20.75960477139659 + ], + [ + 67.48126813077745, + 20.564957036468137 + ], + [ + 67.71095349774481, + 20.564957036468137 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 20.564957036468137 + ], + [ + 67.48126813077745, + 20.564957036468137 + ], + [ + 67.59611081426114, + 20.370309301539685 + ], + [ + 67.71095349774481, + 20.564957036468137 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 20.564957036468137 + ], + [ + 67.59611081426114, + 20.370309301539685 + ], + [ + 67.82579618122848, + 20.370309301539685 + ], + [ + 67.71095349774481, + 20.564957036468137 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 20.564957036468137 + ], + [ + 67.82579618122848, + 20.370309301539685 + ], + [ + 67.94063886471217, + 20.564957036468137 + ], + [ + 67.71095349774481, + 20.564957036468137 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 20.954252506325044 + ], + [ + 67.94063886471217, + 20.954252506325044 + ], + [ + 67.82579618122848, + 21.148900241253497 + ], + [ + 67.71095349774481, + 20.954252506325044 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 20.954252506325044 + ], + [ + 67.82579618122848, + 21.148900241253497 + ], + [ + 67.59611081426114, + 21.148900241253497 + ], + [ + 67.71095349774481, + 20.954252506325044 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 20.954252506325044 + ], + [ + 67.59611081426114, + 21.148900241253497 + ], + [ + 67.48126813077745, + 20.954252506325044 + ], + [ + 67.71095349774481, + 20.954252506325044 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 20.954252506325044 + ], + [ + 67.48126813077745, + 20.954252506325044 + ], + [ + 67.59611081426114, + 20.759604771396592 + ], + [ + 67.71095349774481, + 20.954252506325044 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 20.954252506325044 + ], + [ + 67.59611081426114, + 20.759604771396592 + ], + [ + 67.82579618122848, + 20.759604771396592 + ], + [ + 67.71095349774481, + 20.954252506325044 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 20.954252506325044 + ], + [ + 67.82579618122848, + 20.759604771396592 + ], + [ + 67.94063886471217, + 20.954252506325044 + ], + [ + 67.71095349774481, + 20.954252506325044 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 21.343547976181952 + ], + [ + 67.94063886471217, + 21.343547976181952 + ], + [ + 67.82579618122848, + 21.538195711110404 + ], + [ + 67.71095349774481, + 21.343547976181952 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 21.343547976181952 + ], + [ + 67.82579618122848, + 21.538195711110404 + ], + [ + 67.59611081426114, + 21.538195711110404 + ], + [ + 67.71095349774481, + 21.343547976181952 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 21.343547976181952 + ], + [ + 67.59611081426114, + 21.538195711110404 + ], + [ + 67.48126813077745, + 21.343547976181952 + ], + [ + 67.71095349774481, + 21.343547976181952 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 21.343547976181952 + ], + [ + 67.48126813077745, + 21.343547976181952 + ], + [ + 67.59611081426114, + 21.1489002412535 + ], + [ + 67.71095349774481, + 21.343547976181952 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 21.343547976181952 + ], + [ + 67.59611081426114, + 21.1489002412535 + ], + [ + 67.82579618122848, + 21.1489002412535 + ], + [ + 67.71095349774481, + 21.343547976181952 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 21.343547976181952 + ], + [ + 67.82579618122848, + 21.1489002412535 + ], + [ + 67.94063886471217, + 21.343547976181952 + ], + [ + 67.71095349774481, + 21.343547976181952 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 21.732843446038856 + ], + [ + 67.94063886471217, + 21.732843446038856 + ], + [ + 67.82579618122848, + 21.92749118096731 + ], + [ + 67.71095349774481, + 21.732843446038856 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 21.732843446038856 + ], + [ + 67.82579618122848, + 21.92749118096731 + ], + [ + 67.59611081426114, + 21.92749118096731 + ], + [ + 67.71095349774481, + 21.732843446038856 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 21.732843446038856 + ], + [ + 67.59611081426114, + 21.92749118096731 + ], + [ + 67.48126813077745, + 21.732843446038856 + ], + [ + 67.71095349774481, + 21.732843446038856 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 21.732843446038856 + ], + [ + 67.48126813077745, + 21.732843446038856 + ], + [ + 67.59611081426114, + 21.538195711110404 + ], + [ + 67.71095349774481, + 21.732843446038856 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 21.732843446038856 + ], + [ + 67.59611081426114, + 21.538195711110404 + ], + [ + 67.82579618122848, + 21.538195711110404 + ], + [ + 67.71095349774481, + 21.732843446038856 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 21.732843446038856 + ], + [ + 67.82579618122848, + 21.538195711110404 + ], + [ + 67.94063886471217, + 21.732843446038856 + ], + [ + 67.71095349774481, + 21.732843446038856 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 22.122138915895764 + ], + [ + 67.94063886471217, + 22.122138915895764 + ], + [ + 67.82579618122848, + 22.316786650824216 + ], + [ + 67.71095349774481, + 22.122138915895764 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 22.122138915895764 + ], + [ + 67.82579618122848, + 22.316786650824216 + ], + [ + 67.59611081426114, + 22.316786650824216 + ], + [ + 67.71095349774481, + 22.122138915895764 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 22.122138915895764 + ], + [ + 67.59611081426114, + 22.316786650824216 + ], + [ + 67.48126813077745, + 22.122138915895764 + ], + [ + 67.71095349774481, + 22.122138915895764 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 22.122138915895764 + ], + [ + 67.48126813077745, + 22.122138915895764 + ], + [ + 67.59611081426114, + 21.927491180967312 + ], + [ + 67.71095349774481, + 22.122138915895764 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 22.122138915895764 + ], + [ + 67.59611081426114, + 21.927491180967312 + ], + [ + 67.82579618122848, + 21.927491180967312 + ], + [ + 67.71095349774481, + 22.122138915895764 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 22.122138915895764 + ], + [ + 67.82579618122848, + 21.927491180967312 + ], + [ + 67.94063886471217, + 22.122138915895764 + ], + [ + 67.71095349774481, + 22.122138915895764 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 22.511434385752672 + ], + [ + 67.94063886471217, + 22.511434385752672 + ], + [ + 67.82579618122848, + 22.706082120681124 + ], + [ + 67.71095349774481, + 22.511434385752672 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 22.511434385752672 + ], + [ + 67.82579618122848, + 22.706082120681124 + ], + [ + 67.59611081426114, + 22.706082120681124 + ], + [ + 67.71095349774481, + 22.511434385752672 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 22.511434385752672 + ], + [ + 67.59611081426114, + 22.706082120681124 + ], + [ + 67.48126813077745, + 22.511434385752672 + ], + [ + 67.71095349774481, + 22.511434385752672 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 22.511434385752672 + ], + [ + 67.48126813077745, + 22.511434385752672 + ], + [ + 67.59611081426114, + 22.31678665082422 + ], + [ + 67.71095349774481, + 22.511434385752672 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 22.511434385752672 + ], + [ + 67.59611081426114, + 22.31678665082422 + ], + [ + 67.82579618122848, + 22.31678665082422 + ], + [ + 67.71095349774481, + 22.511434385752672 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 22.511434385752672 + ], + [ + 67.82579618122848, + 22.31678665082422 + ], + [ + 67.94063886471217, + 22.511434385752672 + ], + [ + 67.71095349774481, + 22.511434385752672 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 22.900729855609576 + ], + [ + 67.94063886471217, + 22.900729855609576 + ], + [ + 67.82579618122848, + 23.09537759053803 + ], + [ + 67.71095349774481, + 22.900729855609576 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 22.900729855609576 + ], + [ + 67.82579618122848, + 23.09537759053803 + ], + [ + 67.59611081426114, + 23.09537759053803 + ], + [ + 67.71095349774481, + 22.900729855609576 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 22.900729855609576 + ], + [ + 67.59611081426114, + 23.09537759053803 + ], + [ + 67.48126813077745, + 22.900729855609576 + ], + [ + 67.71095349774481, + 22.900729855609576 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 22.900729855609576 + ], + [ + 67.48126813077745, + 22.900729855609576 + ], + [ + 67.59611081426114, + 22.706082120681124 + ], + [ + 67.71095349774481, + 22.900729855609576 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 22.900729855609576 + ], + [ + 67.59611081426114, + 22.706082120681124 + ], + [ + 67.82579618122848, + 22.706082120681124 + ], + [ + 67.71095349774481, + 22.900729855609576 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 22.900729855609576 + ], + [ + 67.82579618122848, + 22.706082120681124 + ], + [ + 67.94063886471217, + 22.900729855609576 + ], + [ + 67.71095349774481, + 22.900729855609576 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 23.290025325466484 + ], + [ + 67.94063886471217, + 23.290025325466484 + ], + [ + 67.82579618122848, + 23.484673060394936 + ], + [ + 67.71095349774481, + 23.290025325466484 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 23.290025325466484 + ], + [ + 67.82579618122848, + 23.484673060394936 + ], + [ + 67.59611081426114, + 23.484673060394936 + ], + [ + 67.71095349774481, + 23.290025325466484 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 23.290025325466484 + ], + [ + 67.59611081426114, + 23.484673060394936 + ], + [ + 67.48126813077745, + 23.290025325466484 + ], + [ + 67.71095349774481, + 23.290025325466484 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 23.290025325466484 + ], + [ + 67.48126813077745, + 23.290025325466484 + ], + [ + 67.59611081426114, + 23.095377590538032 + ], + [ + 67.71095349774481, + 23.290025325466484 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 23.290025325466484 + ], + [ + 67.59611081426114, + 23.095377590538032 + ], + [ + 67.82579618122848, + 23.095377590538032 + ], + [ + 67.71095349774481, + 23.290025325466484 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 23.290025325466484 + ], + [ + 67.82579618122848, + 23.095377590538032 + ], + [ + 67.94063886471217, + 23.290025325466484 + ], + [ + 67.71095349774481, + 23.290025325466484 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 23.67932079532339 + ], + [ + 67.94063886471217, + 23.67932079532339 + ], + [ + 67.82579618122848, + 23.873968530251844 + ], + [ + 67.71095349774481, + 23.67932079532339 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 23.67932079532339 + ], + [ + 67.82579618122848, + 23.873968530251844 + ], + [ + 67.59611081426114, + 23.873968530251844 + ], + [ + 67.71095349774481, + 23.67932079532339 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 23.67932079532339 + ], + [ + 67.59611081426114, + 23.873968530251844 + ], + [ + 67.48126813077745, + 23.67932079532339 + ], + [ + 67.71095349774481, + 23.67932079532339 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 23.67932079532339 + ], + [ + 67.48126813077745, + 23.67932079532339 + ], + [ + 67.59611081426114, + 23.48467306039494 + ], + [ + 67.71095349774481, + 23.67932079532339 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 23.67932079532339 + ], + [ + 67.59611081426114, + 23.48467306039494 + ], + [ + 67.82579618122848, + 23.48467306039494 + ], + [ + 67.71095349774481, + 23.67932079532339 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 23.67932079532339 + ], + [ + 67.82579618122848, + 23.48467306039494 + ], + [ + 67.94063886471217, + 23.67932079532339 + ], + [ + 67.71095349774481, + 23.67932079532339 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 24.068616265180296 + ], + [ + 67.94063886471217, + 24.068616265180296 + ], + [ + 67.82579618122848, + 24.263264000108748 + ], + [ + 67.71095349774481, + 24.068616265180296 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 24.068616265180296 + ], + [ + 67.82579618122848, + 24.263264000108748 + ], + [ + 67.59611081426114, + 24.263264000108748 + ], + [ + 67.71095349774481, + 24.068616265180296 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 24.068616265180296 + ], + [ + 67.59611081426114, + 24.263264000108748 + ], + [ + 67.48126813077745, + 24.068616265180296 + ], + [ + 67.71095349774481, + 24.068616265180296 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 24.068616265180296 + ], + [ + 67.48126813077745, + 24.068616265180296 + ], + [ + 67.59611081426114, + 23.873968530251844 + ], + [ + 67.71095349774481, + 24.068616265180296 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 24.068616265180296 + ], + [ + 67.59611081426114, + 23.873968530251844 + ], + [ + 67.82579618122848, + 23.873968530251844 + ], + [ + 67.71095349774481, + 24.068616265180296 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 24.068616265180296 + ], + [ + 67.82579618122848, + 23.873968530251844 + ], + [ + 67.94063886471217, + 24.068616265180296 + ], + [ + 67.71095349774481, + 24.068616265180296 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 24.4579117350372 + ], + [ + 67.94063886471217, + 24.4579117350372 + ], + [ + 67.82579618122848, + 24.652559469965652 + ], + [ + 67.71095349774481, + 24.4579117350372 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 24.4579117350372 + ], + [ + 67.82579618122848, + 24.652559469965652 + ], + [ + 67.59611081426114, + 24.652559469965652 + ], + [ + 67.71095349774481, + 24.4579117350372 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 24.4579117350372 + ], + [ + 67.59611081426114, + 24.652559469965652 + ], + [ + 67.48126813077745, + 24.4579117350372 + ], + [ + 67.71095349774481, + 24.4579117350372 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 24.4579117350372 + ], + [ + 67.48126813077745, + 24.4579117350372 + ], + [ + 67.59611081426114, + 24.263264000108748 + ], + [ + 67.71095349774481, + 24.4579117350372 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 24.4579117350372 + ], + [ + 67.59611081426114, + 24.263264000108748 + ], + [ + 67.82579618122848, + 24.263264000108748 + ], + [ + 67.71095349774481, + 24.4579117350372 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 24.4579117350372 + ], + [ + 67.82579618122848, + 24.263264000108748 + ], + [ + 67.94063886471217, + 24.4579117350372 + ], + [ + 67.71095349774481, + 24.4579117350372 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 24.847207204894108 + ], + [ + 67.94063886471217, + 24.847207204894108 + ], + [ + 67.82579618122848, + 25.04185493982256 + ], + [ + 67.71095349774481, + 24.847207204894108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 24.847207204894108 + ], + [ + 67.82579618122848, + 25.04185493982256 + ], + [ + 67.59611081426114, + 25.04185493982256 + ], + [ + 67.71095349774481, + 24.847207204894108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 24.847207204894108 + ], + [ + 67.59611081426114, + 25.04185493982256 + ], + [ + 67.48126813077745, + 24.847207204894108 + ], + [ + 67.71095349774481, + 24.847207204894108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 24.847207204894108 + ], + [ + 67.48126813077745, + 24.847207204894108 + ], + [ + 67.59611081426114, + 24.652559469965656 + ], + [ + 67.71095349774481, + 24.847207204894108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 24.847207204894108 + ], + [ + 67.59611081426114, + 24.652559469965656 + ], + [ + 67.82579618122848, + 24.652559469965656 + ], + [ + 67.71095349774481, + 24.847207204894108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 24.847207204894108 + ], + [ + 67.82579618122848, + 24.652559469965656 + ], + [ + 67.94063886471217, + 24.847207204894108 + ], + [ + 67.71095349774481, + 24.847207204894108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 25.236502674751016 + ], + [ + 67.94063886471217, + 25.236502674751016 + ], + [ + 67.82579618122848, + 25.431150409679468 + ], + [ + 67.71095349774481, + 25.236502674751016 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 25.236502674751016 + ], + [ + 67.82579618122848, + 25.431150409679468 + ], + [ + 67.59611081426114, + 25.431150409679468 + ], + [ + 67.71095349774481, + 25.236502674751016 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 25.236502674751016 + ], + [ + 67.59611081426114, + 25.431150409679468 + ], + [ + 67.48126813077745, + 25.236502674751016 + ], + [ + 67.71095349774481, + 25.236502674751016 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 25.236502674751016 + ], + [ + 67.48126813077745, + 25.236502674751016 + ], + [ + 67.59611081426114, + 25.041854939822564 + ], + [ + 67.71095349774481, + 25.236502674751016 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 25.236502674751016 + ], + [ + 67.59611081426114, + 25.041854939822564 + ], + [ + 67.82579618122848, + 25.041854939822564 + ], + [ + 67.71095349774481, + 25.236502674751016 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 25.236502674751016 + ], + [ + 67.82579618122848, + 25.041854939822564 + ], + [ + 67.94063886471217, + 25.236502674751016 + ], + [ + 67.71095349774481, + 25.236502674751016 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 25.62579814460792 + ], + [ + 67.94063886471217, + 25.62579814460792 + ], + [ + 67.82579618122848, + 25.820445879536372 + ], + [ + 67.71095349774481, + 25.62579814460792 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 25.62579814460792 + ], + [ + 67.82579618122848, + 25.820445879536372 + ], + [ + 67.59611081426114, + 25.820445879536372 + ], + [ + 67.71095349774481, + 25.62579814460792 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 25.62579814460792 + ], + [ + 67.59611081426114, + 25.820445879536372 + ], + [ + 67.48126813077745, + 25.62579814460792 + ], + [ + 67.71095349774481, + 25.62579814460792 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 25.62579814460792 + ], + [ + 67.48126813077745, + 25.62579814460792 + ], + [ + 67.59611081426114, + 25.431150409679468 + ], + [ + 67.71095349774481, + 25.62579814460792 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 25.62579814460792 + ], + [ + 67.59611081426114, + 25.431150409679468 + ], + [ + 67.82579618122848, + 25.431150409679468 + ], + [ + 67.71095349774481, + 25.62579814460792 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 25.62579814460792 + ], + [ + 67.82579618122848, + 25.431150409679468 + ], + [ + 67.94063886471217, + 25.62579814460792 + ], + [ + 67.71095349774481, + 25.62579814460792 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 26.015093614464828 + ], + [ + 67.94063886471217, + 26.015093614464828 + ], + [ + 67.82579618122848, + 26.20974134939328 + ], + [ + 67.71095349774481, + 26.015093614464828 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 26.015093614464828 + ], + [ + 67.82579618122848, + 26.20974134939328 + ], + [ + 67.59611081426114, + 26.20974134939328 + ], + [ + 67.71095349774481, + 26.015093614464828 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 26.015093614464828 + ], + [ + 67.59611081426114, + 26.20974134939328 + ], + [ + 67.48126813077745, + 26.015093614464828 + ], + [ + 67.71095349774481, + 26.015093614464828 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 26.015093614464828 + ], + [ + 67.48126813077745, + 26.015093614464828 + ], + [ + 67.59611081426114, + 25.820445879536376 + ], + [ + 67.71095349774481, + 26.015093614464828 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 26.015093614464828 + ], + [ + 67.59611081426114, + 25.820445879536376 + ], + [ + 67.82579618122848, + 25.820445879536376 + ], + [ + 67.71095349774481, + 26.015093614464828 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 26.015093614464828 + ], + [ + 67.82579618122848, + 25.820445879536376 + ], + [ + 67.94063886471217, + 26.015093614464828 + ], + [ + 67.71095349774481, + 26.015093614464828 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 26.404389084321735 + ], + [ + 67.94063886471217, + 26.404389084321735 + ], + [ + 67.82579618122848, + 26.599036819250188 + ], + [ + 67.71095349774481, + 26.404389084321735 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 26.404389084321735 + ], + [ + 67.82579618122848, + 26.599036819250188 + ], + [ + 67.59611081426114, + 26.599036819250188 + ], + [ + 67.71095349774481, + 26.404389084321735 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 26.404389084321735 + ], + [ + 67.59611081426114, + 26.599036819250188 + ], + [ + 67.48126813077745, + 26.404389084321735 + ], + [ + 67.71095349774481, + 26.404389084321735 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 26.404389084321735 + ], + [ + 67.48126813077745, + 26.404389084321735 + ], + [ + 67.59611081426114, + 26.209741349393283 + ], + [ + 67.71095349774481, + 26.404389084321735 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 26.404389084321735 + ], + [ + 67.59611081426114, + 26.209741349393283 + ], + [ + 67.82579618122848, + 26.209741349393283 + ], + [ + 67.71095349774481, + 26.404389084321735 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 26.404389084321735 + ], + [ + 67.82579618122848, + 26.209741349393283 + ], + [ + 67.94063886471217, + 26.404389084321735 + ], + [ + 67.71095349774481, + 26.404389084321735 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 26.79368455417864 + ], + [ + 67.94063886471217, + 26.79368455417864 + ], + [ + 67.82579618122848, + 26.988332289107092 + ], + [ + 67.71095349774481, + 26.79368455417864 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 26.79368455417864 + ], + [ + 67.82579618122848, + 26.988332289107092 + ], + [ + 67.59611081426114, + 26.988332289107092 + ], + [ + 67.71095349774481, + 26.79368455417864 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 26.79368455417864 + ], + [ + 67.59611081426114, + 26.988332289107092 + ], + [ + 67.48126813077745, + 26.79368455417864 + ], + [ + 67.71095349774481, + 26.79368455417864 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 26.79368455417864 + ], + [ + 67.48126813077745, + 26.79368455417864 + ], + [ + 67.59611081426114, + 26.599036819250188 + ], + [ + 67.71095349774481, + 26.79368455417864 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 26.79368455417864 + ], + [ + 67.59611081426114, + 26.599036819250188 + ], + [ + 67.82579618122848, + 26.599036819250188 + ], + [ + 67.71095349774481, + 26.79368455417864 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 26.79368455417864 + ], + [ + 67.82579618122848, + 26.599036819250188 + ], + [ + 67.94063886471217, + 26.79368455417864 + ], + [ + 67.71095349774481, + 26.79368455417864 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 27.182980024035547 + ], + [ + 67.94063886471217, + 27.182980024035547 + ], + [ + 67.82579618122848, + 27.377627758964 + ], + [ + 67.71095349774481, + 27.182980024035547 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 27.182980024035547 + ], + [ + 67.82579618122848, + 27.377627758964 + ], + [ + 67.59611081426114, + 27.377627758964 + ], + [ + 67.71095349774481, + 27.182980024035547 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 27.182980024035547 + ], + [ + 67.59611081426114, + 27.377627758964 + ], + [ + 67.48126813077745, + 27.182980024035547 + ], + [ + 67.71095349774481, + 27.182980024035547 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 27.182980024035547 + ], + [ + 67.48126813077745, + 27.182980024035547 + ], + [ + 67.59611081426114, + 26.988332289107095 + ], + [ + 67.71095349774481, + 27.182980024035547 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 27.182980024035547 + ], + [ + 67.59611081426114, + 26.988332289107095 + ], + [ + 67.82579618122848, + 26.988332289107095 + ], + [ + 67.71095349774481, + 27.182980024035547 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 27.182980024035547 + ], + [ + 67.82579618122848, + 26.988332289107095 + ], + [ + 67.94063886471217, + 27.182980024035547 + ], + [ + 67.71095349774481, + 27.182980024035547 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 27.572275493892455 + ], + [ + 67.94063886471217, + 27.572275493892455 + ], + [ + 67.82579618122848, + 27.766923228820907 + ], + [ + 67.71095349774481, + 27.572275493892455 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 27.572275493892455 + ], + [ + 67.82579618122848, + 27.766923228820907 + ], + [ + 67.59611081426114, + 27.766923228820907 + ], + [ + 67.71095349774481, + 27.572275493892455 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 27.572275493892455 + ], + [ + 67.59611081426114, + 27.766923228820907 + ], + [ + 67.48126813077745, + 27.572275493892455 + ], + [ + 67.71095349774481, + 27.572275493892455 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 27.572275493892455 + ], + [ + 67.48126813077745, + 27.572275493892455 + ], + [ + 67.59611081426114, + 27.377627758964003 + ], + [ + 67.71095349774481, + 27.572275493892455 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 27.572275493892455 + ], + [ + 67.59611081426114, + 27.377627758964003 + ], + [ + 67.82579618122848, + 27.377627758964003 + ], + [ + 67.71095349774481, + 27.572275493892455 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 27.572275493892455 + ], + [ + 67.82579618122848, + 27.377627758964003 + ], + [ + 67.94063886471217, + 27.572275493892455 + ], + [ + 67.71095349774481, + 27.572275493892455 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 27.96157096374936 + ], + [ + 67.94063886471217, + 27.96157096374936 + ], + [ + 67.82579618122848, + 28.15621869867781 + ], + [ + 67.71095349774481, + 27.96157096374936 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 27.96157096374936 + ], + [ + 67.82579618122848, + 28.15621869867781 + ], + [ + 67.59611081426114, + 28.15621869867781 + ], + [ + 67.71095349774481, + 27.96157096374936 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 27.96157096374936 + ], + [ + 67.59611081426114, + 28.15621869867781 + ], + [ + 67.48126813077745, + 27.96157096374936 + ], + [ + 67.71095349774481, + 27.96157096374936 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 27.96157096374936 + ], + [ + 67.48126813077745, + 27.96157096374936 + ], + [ + 67.59611081426114, + 27.766923228820907 + ], + [ + 67.71095349774481, + 27.96157096374936 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 27.96157096374936 + ], + [ + 67.59611081426114, + 27.766923228820907 + ], + [ + 67.82579618122848, + 27.766923228820907 + ], + [ + 67.71095349774481, + 27.96157096374936 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 27.96157096374936 + ], + [ + 67.82579618122848, + 27.766923228820907 + ], + [ + 67.94063886471217, + 27.96157096374936 + ], + [ + 67.71095349774481, + 27.96157096374936 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 28.350866433606267 + ], + [ + 67.94063886471217, + 28.350866433606267 + ], + [ + 67.82579618122848, + 28.54551416853472 + ], + [ + 67.71095349774481, + 28.350866433606267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 28.350866433606267 + ], + [ + 67.82579618122848, + 28.54551416853472 + ], + [ + 67.59611081426114, + 28.54551416853472 + ], + [ + 67.71095349774481, + 28.350866433606267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 28.350866433606267 + ], + [ + 67.59611081426114, + 28.54551416853472 + ], + [ + 67.48126813077745, + 28.350866433606267 + ], + [ + 67.71095349774481, + 28.350866433606267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 28.350866433606267 + ], + [ + 67.48126813077745, + 28.350866433606267 + ], + [ + 67.59611081426114, + 28.156218698677815 + ], + [ + 67.71095349774481, + 28.350866433606267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 28.350866433606267 + ], + [ + 67.59611081426114, + 28.156218698677815 + ], + [ + 67.82579618122848, + 28.156218698677815 + ], + [ + 67.71095349774481, + 28.350866433606267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 28.350866433606267 + ], + [ + 67.82579618122848, + 28.156218698677815 + ], + [ + 67.94063886471217, + 28.350866433606267 + ], + [ + 67.71095349774481, + 28.350866433606267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 28.74016190346317 + ], + [ + 67.94063886471217, + 28.74016190346317 + ], + [ + 67.82579618122848, + 28.934809638391624 + ], + [ + 67.71095349774481, + 28.74016190346317 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 28.74016190346317 + ], + [ + 67.82579618122848, + 28.934809638391624 + ], + [ + 67.59611081426114, + 28.934809638391624 + ], + [ + 67.71095349774481, + 28.74016190346317 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 28.74016190346317 + ], + [ + 67.59611081426114, + 28.934809638391624 + ], + [ + 67.48126813077745, + 28.74016190346317 + ], + [ + 67.71095349774481, + 28.74016190346317 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 28.74016190346317 + ], + [ + 67.48126813077745, + 28.74016190346317 + ], + [ + 67.59611081426114, + 28.54551416853472 + ], + [ + 67.71095349774481, + 28.74016190346317 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 28.74016190346317 + ], + [ + 67.59611081426114, + 28.54551416853472 + ], + [ + 67.82579618122848, + 28.54551416853472 + ], + [ + 67.71095349774481, + 28.74016190346317 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 28.74016190346317 + ], + [ + 67.82579618122848, + 28.54551416853472 + ], + [ + 67.94063886471217, + 28.74016190346317 + ], + [ + 67.71095349774481, + 28.74016190346317 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 29.12945737332008 + ], + [ + 67.94063886471217, + 29.12945737332008 + ], + [ + 67.82579618122848, + 29.32410510824853 + ], + [ + 67.71095349774481, + 29.12945737332008 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 29.12945737332008 + ], + [ + 67.82579618122848, + 29.32410510824853 + ], + [ + 67.59611081426114, + 29.32410510824853 + ], + [ + 67.71095349774481, + 29.12945737332008 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 29.12945737332008 + ], + [ + 67.59611081426114, + 29.32410510824853 + ], + [ + 67.48126813077745, + 29.12945737332008 + ], + [ + 67.71095349774481, + 29.12945737332008 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 29.12945737332008 + ], + [ + 67.48126813077745, + 29.12945737332008 + ], + [ + 67.59611081426114, + 28.934809638391627 + ], + [ + 67.71095349774481, + 29.12945737332008 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 29.12945737332008 + ], + [ + 67.59611081426114, + 28.934809638391627 + ], + [ + 67.82579618122848, + 28.934809638391627 + ], + [ + 67.71095349774481, + 29.12945737332008 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 29.12945737332008 + ], + [ + 67.82579618122848, + 28.934809638391627 + ], + [ + 67.94063886471217, + 29.12945737332008 + ], + [ + 67.71095349774481, + 29.12945737332008 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 29.518752843176983 + ], + [ + 67.94063886471217, + 29.518752843176983 + ], + [ + 67.82579618122848, + 29.713400578105436 + ], + [ + 67.71095349774481, + 29.518752843176983 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 29.518752843176983 + ], + [ + 67.82579618122848, + 29.713400578105436 + ], + [ + 67.59611081426114, + 29.713400578105436 + ], + [ + 67.71095349774481, + 29.518752843176983 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 29.518752843176983 + ], + [ + 67.59611081426114, + 29.713400578105436 + ], + [ + 67.48126813077745, + 29.518752843176983 + ], + [ + 67.71095349774481, + 29.518752843176983 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 29.518752843176983 + ], + [ + 67.48126813077745, + 29.518752843176983 + ], + [ + 67.59611081426114, + 29.32410510824853 + ], + [ + 67.71095349774481, + 29.518752843176983 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 29.518752843176983 + ], + [ + 67.59611081426114, + 29.32410510824853 + ], + [ + 67.82579618122848, + 29.32410510824853 + ], + [ + 67.71095349774481, + 29.518752843176983 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 29.518752843176983 + ], + [ + 67.82579618122848, + 29.32410510824853 + ], + [ + 67.94063886471217, + 29.518752843176983 + ], + [ + 67.71095349774481, + 29.518752843176983 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 29.90804831303389 + ], + [ + 67.94063886471217, + 29.90804831303389 + ], + [ + 67.82579618122848, + 30.102696047962343 + ], + [ + 67.71095349774481, + 29.90804831303389 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 29.90804831303389 + ], + [ + 67.82579618122848, + 30.102696047962343 + ], + [ + 67.59611081426114, + 30.102696047962343 + ], + [ + 67.71095349774481, + 29.90804831303389 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 29.90804831303389 + ], + [ + 67.59611081426114, + 30.102696047962343 + ], + [ + 67.48126813077745, + 29.90804831303389 + ], + [ + 67.71095349774481, + 29.90804831303389 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 29.90804831303389 + ], + [ + 67.48126813077745, + 29.90804831303389 + ], + [ + 67.59611081426114, + 29.71340057810544 + ], + [ + 67.71095349774481, + 29.90804831303389 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 29.90804831303389 + ], + [ + 67.59611081426114, + 29.71340057810544 + ], + [ + 67.82579618122848, + 29.71340057810544 + ], + [ + 67.71095349774481, + 29.90804831303389 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 29.90804831303389 + ], + [ + 67.82579618122848, + 29.71340057810544 + ], + [ + 67.94063886471217, + 29.90804831303389 + ], + [ + 67.71095349774481, + 29.90804831303389 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 30.297343782890795 + ], + [ + 67.94063886471217, + 30.297343782890795 + ], + [ + 67.82579618122848, + 30.491991517819248 + ], + [ + 67.71095349774481, + 30.297343782890795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 30.297343782890795 + ], + [ + 67.82579618122848, + 30.491991517819248 + ], + [ + 67.59611081426114, + 30.491991517819248 + ], + [ + 67.71095349774481, + 30.297343782890795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 30.297343782890795 + ], + [ + 67.59611081426114, + 30.491991517819248 + ], + [ + 67.48126813077745, + 30.297343782890795 + ], + [ + 67.71095349774481, + 30.297343782890795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 30.297343782890795 + ], + [ + 67.48126813077745, + 30.297343782890795 + ], + [ + 67.59611081426114, + 30.102696047962343 + ], + [ + 67.71095349774481, + 30.297343782890795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 30.297343782890795 + ], + [ + 67.59611081426114, + 30.102696047962343 + ], + [ + 67.82579618122848, + 30.102696047962343 + ], + [ + 67.71095349774481, + 30.297343782890795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 30.297343782890795 + ], + [ + 67.82579618122848, + 30.102696047962343 + ], + [ + 67.94063886471217, + 30.297343782890795 + ], + [ + 67.71095349774481, + 30.297343782890795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 30.686639252747703 + ], + [ + 67.94063886471217, + 30.686639252747703 + ], + [ + 67.82579618122848, + 30.881286987676155 + ], + [ + 67.71095349774481, + 30.686639252747703 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 30.686639252747703 + ], + [ + 67.82579618122848, + 30.881286987676155 + ], + [ + 67.59611081426114, + 30.881286987676155 + ], + [ + 67.71095349774481, + 30.686639252747703 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 30.686639252747703 + ], + [ + 67.59611081426114, + 30.881286987676155 + ], + [ + 67.48126813077745, + 30.686639252747703 + ], + [ + 67.71095349774481, + 30.686639252747703 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 30.686639252747703 + ], + [ + 67.48126813077745, + 30.686639252747703 + ], + [ + 67.59611081426114, + 30.49199151781925 + ], + [ + 67.71095349774481, + 30.686639252747703 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 30.686639252747703 + ], + [ + 67.59611081426114, + 30.49199151781925 + ], + [ + 67.82579618122848, + 30.49199151781925 + ], + [ + 67.71095349774481, + 30.686639252747703 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 30.686639252747703 + ], + [ + 67.82579618122848, + 30.49199151781925 + ], + [ + 67.94063886471217, + 30.686639252747703 + ], + [ + 67.71095349774481, + 30.686639252747703 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 31.07593472260461 + ], + [ + 67.94063886471217, + 31.07593472260461 + ], + [ + 67.82579618122848, + 31.270582457533063 + ], + [ + 67.71095349774481, + 31.07593472260461 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 31.07593472260461 + ], + [ + 67.82579618122848, + 31.270582457533063 + ], + [ + 67.59611081426114, + 31.270582457533063 + ], + [ + 67.71095349774481, + 31.07593472260461 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 31.07593472260461 + ], + [ + 67.59611081426114, + 31.270582457533063 + ], + [ + 67.48126813077745, + 31.07593472260461 + ], + [ + 67.71095349774481, + 31.07593472260461 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 31.07593472260461 + ], + [ + 67.48126813077745, + 31.07593472260461 + ], + [ + 67.59611081426114, + 30.88128698767616 + ], + [ + 67.71095349774481, + 31.07593472260461 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 31.07593472260461 + ], + [ + 67.59611081426114, + 30.88128698767616 + ], + [ + 67.82579618122848, + 30.88128698767616 + ], + [ + 67.71095349774481, + 31.07593472260461 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 31.07593472260461 + ], + [ + 67.82579618122848, + 30.88128698767616 + ], + [ + 67.94063886471217, + 31.07593472260461 + ], + [ + 67.71095349774481, + 31.07593472260461 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 31.465230192461515 + ], + [ + 67.94063886471217, + 31.465230192461515 + ], + [ + 67.82579618122848, + 31.659877927389967 + ], + [ + 67.71095349774481, + 31.465230192461515 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 31.465230192461515 + ], + [ + 67.82579618122848, + 31.659877927389967 + ], + [ + 67.59611081426114, + 31.659877927389967 + ], + [ + 67.71095349774481, + 31.465230192461515 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 31.465230192461515 + ], + [ + 67.59611081426114, + 31.659877927389967 + ], + [ + 67.48126813077745, + 31.465230192461515 + ], + [ + 67.71095349774481, + 31.465230192461515 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 31.465230192461515 + ], + [ + 67.48126813077745, + 31.465230192461515 + ], + [ + 67.59611081426114, + 31.270582457533063 + ], + [ + 67.71095349774481, + 31.465230192461515 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 31.465230192461515 + ], + [ + 67.59611081426114, + 31.270582457533063 + ], + [ + 67.82579618122848, + 31.270582457533063 + ], + [ + 67.71095349774481, + 31.465230192461515 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 31.465230192461515 + ], + [ + 67.82579618122848, + 31.270582457533063 + ], + [ + 67.94063886471217, + 31.465230192461515 + ], + [ + 67.71095349774481, + 31.465230192461515 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 31.854525662318423 + ], + [ + 67.94063886471217, + 31.854525662318423 + ], + [ + 67.82579618122848, + 32.049173397246875 + ], + [ + 67.71095349774481, + 31.854525662318423 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 31.854525662318423 + ], + [ + 67.82579618122848, + 32.049173397246875 + ], + [ + 67.59611081426114, + 32.049173397246875 + ], + [ + 67.71095349774481, + 31.854525662318423 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 31.854525662318423 + ], + [ + 67.59611081426114, + 32.049173397246875 + ], + [ + 67.48126813077745, + 31.854525662318423 + ], + [ + 67.71095349774481, + 31.854525662318423 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 31.854525662318423 + ], + [ + 67.48126813077745, + 31.854525662318423 + ], + [ + 67.59611081426114, + 31.65987792738997 + ], + [ + 67.71095349774481, + 31.854525662318423 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 31.854525662318423 + ], + [ + 67.59611081426114, + 31.65987792738997 + ], + [ + 67.82579618122848, + 31.65987792738997 + ], + [ + 67.71095349774481, + 31.854525662318423 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 31.854525662318423 + ], + [ + 67.82579618122848, + 31.65987792738997 + ], + [ + 67.94063886471217, + 31.854525662318423 + ], + [ + 67.71095349774481, + 31.854525662318423 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 32.24382113217533 + ], + [ + 67.94063886471217, + 32.24382113217533 + ], + [ + 67.82579618122848, + 32.43846886710378 + ], + [ + 67.71095349774481, + 32.24382113217533 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 32.24382113217533 + ], + [ + 67.82579618122848, + 32.43846886710378 + ], + [ + 67.59611081426114, + 32.43846886710378 + ], + [ + 67.71095349774481, + 32.24382113217533 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 32.24382113217533 + ], + [ + 67.59611081426114, + 32.43846886710378 + ], + [ + 67.48126813077745, + 32.24382113217533 + ], + [ + 67.71095349774481, + 32.24382113217533 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 32.24382113217533 + ], + [ + 67.48126813077745, + 32.24382113217533 + ], + [ + 67.59611081426114, + 32.049173397246875 + ], + [ + 67.71095349774481, + 32.24382113217533 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 32.24382113217533 + ], + [ + 67.59611081426114, + 32.049173397246875 + ], + [ + 67.82579618122848, + 32.049173397246875 + ], + [ + 67.71095349774481, + 32.24382113217533 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 32.24382113217533 + ], + [ + 67.82579618122848, + 32.049173397246875 + ], + [ + 67.94063886471217, + 32.24382113217533 + ], + [ + 67.71095349774481, + 32.24382113217533 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 32.63311660203224 + ], + [ + 67.94063886471217, + 32.63311660203224 + ], + [ + 67.82579618122848, + 32.82776433696069 + ], + [ + 67.71095349774481, + 32.63311660203224 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 32.63311660203224 + ], + [ + 67.82579618122848, + 32.82776433696069 + ], + [ + 67.59611081426114, + 32.82776433696069 + ], + [ + 67.71095349774481, + 32.63311660203224 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 32.63311660203224 + ], + [ + 67.59611081426114, + 32.82776433696069 + ], + [ + 67.48126813077745, + 32.63311660203224 + ], + [ + 67.71095349774481, + 32.63311660203224 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 32.63311660203224 + ], + [ + 67.48126813077745, + 32.63311660203224 + ], + [ + 67.59611081426114, + 32.438468867103786 + ], + [ + 67.71095349774481, + 32.63311660203224 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 32.63311660203224 + ], + [ + 67.59611081426114, + 32.438468867103786 + ], + [ + 67.82579618122848, + 32.438468867103786 + ], + [ + 67.71095349774481, + 32.63311660203224 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 32.63311660203224 + ], + [ + 67.82579618122848, + 32.438468867103786 + ], + [ + 67.94063886471217, + 32.63311660203224 + ], + [ + 67.71095349774481, + 32.63311660203224 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 33.02241207188914 + ], + [ + 67.94063886471217, + 33.02241207188914 + ], + [ + 67.82579618122848, + 33.217059806817595 + ], + [ + 67.71095349774481, + 33.02241207188914 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 33.02241207188914 + ], + [ + 67.82579618122848, + 33.217059806817595 + ], + [ + 67.59611081426114, + 33.217059806817595 + ], + [ + 67.71095349774481, + 33.02241207188914 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 33.02241207188914 + ], + [ + 67.59611081426114, + 33.217059806817595 + ], + [ + 67.48126813077745, + 33.02241207188914 + ], + [ + 67.71095349774481, + 33.02241207188914 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 33.02241207188914 + ], + [ + 67.48126813077745, + 33.02241207188914 + ], + [ + 67.59611081426114, + 32.82776433696069 + ], + [ + 67.71095349774481, + 33.02241207188914 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 33.02241207188914 + ], + [ + 67.59611081426114, + 32.82776433696069 + ], + [ + 67.82579618122848, + 32.82776433696069 + ], + [ + 67.71095349774481, + 33.02241207188914 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 33.02241207188914 + ], + [ + 67.82579618122848, + 32.82776433696069 + ], + [ + 67.94063886471217, + 33.02241207188914 + ], + [ + 67.71095349774481, + 33.02241207188914 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 33.41170754174605 + ], + [ + 67.94063886471217, + 33.41170754174605 + ], + [ + 67.82579618122848, + 33.6063552766745 + ], + [ + 67.71095349774481, + 33.41170754174605 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 33.41170754174605 + ], + [ + 67.82579618122848, + 33.6063552766745 + ], + [ + 67.59611081426114, + 33.6063552766745 + ], + [ + 67.71095349774481, + 33.41170754174605 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 33.41170754174605 + ], + [ + 67.59611081426114, + 33.6063552766745 + ], + [ + 67.48126813077745, + 33.41170754174605 + ], + [ + 67.71095349774481, + 33.41170754174605 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 33.41170754174605 + ], + [ + 67.48126813077745, + 33.41170754174605 + ], + [ + 67.59611081426114, + 33.217059806817595 + ], + [ + 67.71095349774481, + 33.41170754174605 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 33.41170754174605 + ], + [ + 67.59611081426114, + 33.217059806817595 + ], + [ + 67.82579618122848, + 33.217059806817595 + ], + [ + 67.71095349774481, + 33.41170754174605 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 33.41170754174605 + ], + [ + 67.82579618122848, + 33.217059806817595 + ], + [ + 67.94063886471217, + 33.41170754174605 + ], + [ + 67.71095349774481, + 33.41170754174605 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 33.80100301160295 + ], + [ + 67.94063886471217, + 33.80100301160295 + ], + [ + 67.82579618122848, + 33.9956507465314 + ], + [ + 67.71095349774481, + 33.80100301160295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 33.80100301160295 + ], + [ + 67.82579618122848, + 33.9956507465314 + ], + [ + 67.59611081426114, + 33.9956507465314 + ], + [ + 67.71095349774481, + 33.80100301160295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 33.80100301160295 + ], + [ + 67.59611081426114, + 33.9956507465314 + ], + [ + 67.48126813077745, + 33.80100301160295 + ], + [ + 67.71095349774481, + 33.80100301160295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 33.80100301160295 + ], + [ + 67.48126813077745, + 33.80100301160295 + ], + [ + 67.59611081426114, + 33.6063552766745 + ], + [ + 67.71095349774481, + 33.80100301160295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 33.80100301160295 + ], + [ + 67.59611081426114, + 33.6063552766745 + ], + [ + 67.82579618122848, + 33.6063552766745 + ], + [ + 67.71095349774481, + 33.80100301160295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 33.80100301160295 + ], + [ + 67.82579618122848, + 33.6063552766745 + ], + [ + 67.94063886471217, + 33.80100301160295 + ], + [ + 67.71095349774481, + 33.80100301160295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 34.190298481459855 + ], + [ + 67.94063886471217, + 34.190298481459855 + ], + [ + 67.82579618122848, + 34.38494621638831 + ], + [ + 67.71095349774481, + 34.190298481459855 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 34.190298481459855 + ], + [ + 67.82579618122848, + 34.38494621638831 + ], + [ + 67.59611081426114, + 34.38494621638831 + ], + [ + 67.71095349774481, + 34.190298481459855 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 34.190298481459855 + ], + [ + 67.59611081426114, + 34.38494621638831 + ], + [ + 67.48126813077745, + 34.190298481459855 + ], + [ + 67.71095349774481, + 34.190298481459855 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 34.190298481459855 + ], + [ + 67.48126813077745, + 34.190298481459855 + ], + [ + 67.59611081426114, + 33.9956507465314 + ], + [ + 67.71095349774481, + 34.190298481459855 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 34.190298481459855 + ], + [ + 67.59611081426114, + 33.9956507465314 + ], + [ + 67.82579618122848, + 33.9956507465314 + ], + [ + 67.71095349774481, + 34.190298481459855 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 34.190298481459855 + ], + [ + 67.82579618122848, + 33.9956507465314 + ], + [ + 67.94063886471217, + 34.190298481459855 + ], + [ + 67.71095349774481, + 34.190298481459855 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 34.57959395131677 + ], + [ + 67.94063886471217, + 34.57959395131677 + ], + [ + 67.82579618122848, + 34.77424168624522 + ], + [ + 67.71095349774481, + 34.57959395131677 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 34.57959395131677 + ], + [ + 67.82579618122848, + 34.77424168624522 + ], + [ + 67.59611081426114, + 34.77424168624522 + ], + [ + 67.71095349774481, + 34.57959395131677 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 34.57959395131677 + ], + [ + 67.59611081426114, + 34.77424168624522 + ], + [ + 67.48126813077745, + 34.57959395131677 + ], + [ + 67.71095349774481, + 34.57959395131677 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 34.57959395131677 + ], + [ + 67.48126813077745, + 34.57959395131677 + ], + [ + 67.59611081426114, + 34.384946216388315 + ], + [ + 67.71095349774481, + 34.57959395131677 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 34.57959395131677 + ], + [ + 67.59611081426114, + 34.384946216388315 + ], + [ + 67.82579618122848, + 34.384946216388315 + ], + [ + 67.71095349774481, + 34.57959395131677 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 34.57959395131677 + ], + [ + 67.82579618122848, + 34.384946216388315 + ], + [ + 67.94063886471217, + 34.57959395131677 + ], + [ + 67.71095349774481, + 34.57959395131677 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 34.96888942117368 + ], + [ + 67.94063886471217, + 34.96888942117368 + ], + [ + 67.82579618122848, + 35.16353715610213 + ], + [ + 67.71095349774481, + 34.96888942117368 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 34.96888942117368 + ], + [ + 67.82579618122848, + 35.16353715610213 + ], + [ + 67.59611081426114, + 35.16353715610213 + ], + [ + 67.71095349774481, + 34.96888942117368 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 34.96888942117368 + ], + [ + 67.59611081426114, + 35.16353715610213 + ], + [ + 67.48126813077745, + 34.96888942117368 + ], + [ + 67.71095349774481, + 34.96888942117368 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 34.96888942117368 + ], + [ + 67.48126813077745, + 34.96888942117368 + ], + [ + 67.59611081426114, + 34.774241686245226 + ], + [ + 67.71095349774481, + 34.96888942117368 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 34.96888942117368 + ], + [ + 67.59611081426114, + 34.774241686245226 + ], + [ + 67.82579618122848, + 34.774241686245226 + ], + [ + 67.71095349774481, + 34.96888942117368 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 34.96888942117368 + ], + [ + 67.82579618122848, + 34.774241686245226 + ], + [ + 67.94063886471217, + 34.96888942117368 + ], + [ + 67.71095349774481, + 34.96888942117368 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 35.35818489103058 + ], + [ + 67.94063886471217, + 35.35818489103058 + ], + [ + 67.82579618122848, + 35.552832625959034 + ], + [ + 67.71095349774481, + 35.35818489103058 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 35.35818489103058 + ], + [ + 67.82579618122848, + 35.552832625959034 + ], + [ + 67.59611081426114, + 35.552832625959034 + ], + [ + 67.71095349774481, + 35.35818489103058 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 35.35818489103058 + ], + [ + 67.59611081426114, + 35.552832625959034 + ], + [ + 67.48126813077745, + 35.35818489103058 + ], + [ + 67.71095349774481, + 35.35818489103058 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 35.35818489103058 + ], + [ + 67.48126813077745, + 35.35818489103058 + ], + [ + 67.59611081426114, + 35.16353715610213 + ], + [ + 67.71095349774481, + 35.35818489103058 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 35.35818489103058 + ], + [ + 67.59611081426114, + 35.16353715610213 + ], + [ + 67.82579618122848, + 35.16353715610213 + ], + [ + 67.71095349774481, + 35.35818489103058 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 35.35818489103058 + ], + [ + 67.82579618122848, + 35.16353715610213 + ], + [ + 67.94063886471217, + 35.35818489103058 + ], + [ + 67.71095349774481, + 35.35818489103058 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 35.74748036088749 + ], + [ + 67.94063886471217, + 35.74748036088749 + ], + [ + 67.82579618122848, + 35.94212809581594 + ], + [ + 67.71095349774481, + 35.74748036088749 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 35.74748036088749 + ], + [ + 67.82579618122848, + 35.94212809581594 + ], + [ + 67.59611081426114, + 35.94212809581594 + ], + [ + 67.71095349774481, + 35.74748036088749 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 35.74748036088749 + ], + [ + 67.59611081426114, + 35.94212809581594 + ], + [ + 67.48126813077745, + 35.74748036088749 + ], + [ + 67.71095349774481, + 35.74748036088749 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 35.74748036088749 + ], + [ + 67.48126813077745, + 35.74748036088749 + ], + [ + 67.59611081426114, + 35.552832625959034 + ], + [ + 67.71095349774481, + 35.74748036088749 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 35.74748036088749 + ], + [ + 67.59611081426114, + 35.552832625959034 + ], + [ + 67.82579618122848, + 35.552832625959034 + ], + [ + 67.71095349774481, + 35.74748036088749 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 35.74748036088749 + ], + [ + 67.82579618122848, + 35.552832625959034 + ], + [ + 67.94063886471217, + 35.74748036088749 + ], + [ + 67.71095349774481, + 35.74748036088749 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 36.13677583074439 + ], + [ + 67.94063886471217, + 36.13677583074439 + ], + [ + 67.82579618122848, + 36.33142356567284 + ], + [ + 67.71095349774481, + 36.13677583074439 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 36.13677583074439 + ], + [ + 67.82579618122848, + 36.33142356567284 + ], + [ + 67.59611081426114, + 36.33142356567284 + ], + [ + 67.71095349774481, + 36.13677583074439 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 36.13677583074439 + ], + [ + 67.59611081426114, + 36.33142356567284 + ], + [ + 67.48126813077745, + 36.13677583074439 + ], + [ + 67.71095349774481, + 36.13677583074439 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 36.13677583074439 + ], + [ + 67.48126813077745, + 36.13677583074439 + ], + [ + 67.59611081426114, + 35.94212809581594 + ], + [ + 67.71095349774481, + 36.13677583074439 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 36.13677583074439 + ], + [ + 67.59611081426114, + 35.94212809581594 + ], + [ + 67.82579618122848, + 35.94212809581594 + ], + [ + 67.71095349774481, + 36.13677583074439 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 36.13677583074439 + ], + [ + 67.82579618122848, + 35.94212809581594 + ], + [ + 67.94063886471217, + 36.13677583074439 + ], + [ + 67.71095349774481, + 36.13677583074439 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 36.526071300601295 + ], + [ + 67.94063886471217, + 36.526071300601295 + ], + [ + 67.82579618122848, + 36.72071903552975 + ], + [ + 67.71095349774481, + 36.526071300601295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 36.526071300601295 + ], + [ + 67.82579618122848, + 36.72071903552975 + ], + [ + 67.59611081426114, + 36.72071903552975 + ], + [ + 67.71095349774481, + 36.526071300601295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 36.526071300601295 + ], + [ + 67.59611081426114, + 36.72071903552975 + ], + [ + 67.48126813077745, + 36.526071300601295 + ], + [ + 67.71095349774481, + 36.526071300601295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 36.526071300601295 + ], + [ + 67.48126813077745, + 36.526071300601295 + ], + [ + 67.59611081426114, + 36.33142356567284 + ], + [ + 67.71095349774481, + 36.526071300601295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 36.526071300601295 + ], + [ + 67.59611081426114, + 36.33142356567284 + ], + [ + 67.82579618122848, + 36.33142356567284 + ], + [ + 67.71095349774481, + 36.526071300601295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 36.526071300601295 + ], + [ + 67.82579618122848, + 36.33142356567284 + ], + [ + 67.94063886471217, + 36.526071300601295 + ], + [ + 67.71095349774481, + 36.526071300601295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 36.915366770458206 + ], + [ + 67.94063886471217, + 36.915366770458206 + ], + [ + 67.82579618122848, + 37.11001450538666 + ], + [ + 67.71095349774481, + 36.915366770458206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 36.915366770458206 + ], + [ + 67.82579618122848, + 37.11001450538666 + ], + [ + 67.59611081426114, + 37.11001450538666 + ], + [ + 67.71095349774481, + 36.915366770458206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 36.915366770458206 + ], + [ + 67.59611081426114, + 37.11001450538666 + ], + [ + 67.48126813077745, + 36.915366770458206 + ], + [ + 67.71095349774481, + 36.915366770458206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 36.915366770458206 + ], + [ + 67.48126813077745, + 36.915366770458206 + ], + [ + 67.59611081426114, + 36.720719035529754 + ], + [ + 67.71095349774481, + 36.915366770458206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 36.915366770458206 + ], + [ + 67.59611081426114, + 36.720719035529754 + ], + [ + 67.82579618122848, + 36.720719035529754 + ], + [ + 67.71095349774481, + 36.915366770458206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 36.915366770458206 + ], + [ + 67.82579618122848, + 36.720719035529754 + ], + [ + 67.94063886471217, + 36.915366770458206 + ], + [ + 67.71095349774481, + 36.915366770458206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 37.30466224031511 + ], + [ + 67.94063886471217, + 37.30466224031511 + ], + [ + 67.82579618122848, + 37.49930997524356 + ], + [ + 67.71095349774481, + 37.30466224031511 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 37.30466224031511 + ], + [ + 67.82579618122848, + 37.49930997524356 + ], + [ + 67.59611081426114, + 37.49930997524356 + ], + [ + 67.71095349774481, + 37.30466224031511 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 37.30466224031511 + ], + [ + 67.59611081426114, + 37.49930997524356 + ], + [ + 67.48126813077745, + 37.30466224031511 + ], + [ + 67.71095349774481, + 37.30466224031511 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 37.30466224031511 + ], + [ + 67.48126813077745, + 37.30466224031511 + ], + [ + 67.59611081426114, + 37.11001450538666 + ], + [ + 67.71095349774481, + 37.30466224031511 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 37.30466224031511 + ], + [ + 67.59611081426114, + 37.11001450538666 + ], + [ + 67.82579618122848, + 37.11001450538666 + ], + [ + 67.71095349774481, + 37.30466224031511 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 37.30466224031511 + ], + [ + 67.82579618122848, + 37.11001450538666 + ], + [ + 67.94063886471217, + 37.30466224031511 + ], + [ + 67.71095349774481, + 37.30466224031511 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 37.69395771017202 + ], + [ + 67.94063886471217, + 37.69395771017202 + ], + [ + 67.82579618122848, + 37.888605445100474 + ], + [ + 67.71095349774481, + 37.69395771017202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 37.69395771017202 + ], + [ + 67.82579618122848, + 37.888605445100474 + ], + [ + 67.59611081426114, + 37.888605445100474 + ], + [ + 67.71095349774481, + 37.69395771017202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 37.69395771017202 + ], + [ + 67.59611081426114, + 37.888605445100474 + ], + [ + 67.48126813077745, + 37.69395771017202 + ], + [ + 67.71095349774481, + 37.69395771017202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 37.69395771017202 + ], + [ + 67.48126813077745, + 37.69395771017202 + ], + [ + 67.59611081426114, + 37.49930997524357 + ], + [ + 67.71095349774481, + 37.69395771017202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 37.69395771017202 + ], + [ + 67.59611081426114, + 37.49930997524357 + ], + [ + 67.82579618122848, + 37.49930997524357 + ], + [ + 67.71095349774481, + 37.69395771017202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 37.69395771017202 + ], + [ + 67.82579618122848, + 37.49930997524357 + ], + [ + 67.94063886471217, + 37.69395771017202 + ], + [ + 67.71095349774481, + 37.69395771017202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 38.083253180028926 + ], + [ + 67.94063886471217, + 38.083253180028926 + ], + [ + 67.82579618122848, + 38.27790091495738 + ], + [ + 67.71095349774481, + 38.083253180028926 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 38.083253180028926 + ], + [ + 67.82579618122848, + 38.27790091495738 + ], + [ + 67.59611081426114, + 38.27790091495738 + ], + [ + 67.71095349774481, + 38.083253180028926 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 38.083253180028926 + ], + [ + 67.59611081426114, + 38.27790091495738 + ], + [ + 67.48126813077745, + 38.083253180028926 + ], + [ + 67.71095349774481, + 38.083253180028926 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 38.083253180028926 + ], + [ + 67.48126813077745, + 38.083253180028926 + ], + [ + 67.59611081426114, + 37.888605445100474 + ], + [ + 67.71095349774481, + 38.083253180028926 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 38.083253180028926 + ], + [ + 67.59611081426114, + 37.888605445100474 + ], + [ + 67.82579618122848, + 37.888605445100474 + ], + [ + 67.71095349774481, + 38.083253180028926 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 38.083253180028926 + ], + [ + 67.82579618122848, + 37.888605445100474 + ], + [ + 67.94063886471217, + 38.083253180028926 + ], + [ + 67.71095349774481, + 38.083253180028926 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 38.47254864988583 + ], + [ + 67.94063886471217, + 38.47254864988583 + ], + [ + 67.82579618122848, + 38.66719638481428 + ], + [ + 67.71095349774481, + 38.47254864988583 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 38.47254864988583 + ], + [ + 67.82579618122848, + 38.66719638481428 + ], + [ + 67.59611081426114, + 38.66719638481428 + ], + [ + 67.71095349774481, + 38.47254864988583 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 38.47254864988583 + ], + [ + 67.59611081426114, + 38.66719638481428 + ], + [ + 67.48126813077745, + 38.47254864988583 + ], + [ + 67.71095349774481, + 38.47254864988583 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 38.47254864988583 + ], + [ + 67.48126813077745, + 38.47254864988583 + ], + [ + 67.59611081426114, + 38.27790091495738 + ], + [ + 67.71095349774481, + 38.47254864988583 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 38.47254864988583 + ], + [ + 67.59611081426114, + 38.27790091495738 + ], + [ + 67.82579618122848, + 38.27790091495738 + ], + [ + 67.71095349774481, + 38.47254864988583 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 38.47254864988583 + ], + [ + 67.82579618122848, + 38.27790091495738 + ], + [ + 67.94063886471217, + 38.47254864988583 + ], + [ + 67.71095349774481, + 38.47254864988583 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 38.861844119742734 + ], + [ + 67.94063886471217, + 38.861844119742734 + ], + [ + 67.82579618122848, + 39.05649185467119 + ], + [ + 67.71095349774481, + 38.861844119742734 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 38.861844119742734 + ], + [ + 67.82579618122848, + 39.05649185467119 + ], + [ + 67.59611081426114, + 39.05649185467119 + ], + [ + 67.71095349774481, + 38.861844119742734 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 38.861844119742734 + ], + [ + 67.59611081426114, + 39.05649185467119 + ], + [ + 67.48126813077745, + 38.861844119742734 + ], + [ + 67.71095349774481, + 38.861844119742734 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 38.861844119742734 + ], + [ + 67.48126813077745, + 38.861844119742734 + ], + [ + 67.59611081426114, + 38.66719638481428 + ], + [ + 67.71095349774481, + 38.861844119742734 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 38.861844119742734 + ], + [ + 67.59611081426114, + 38.66719638481428 + ], + [ + 67.82579618122848, + 38.66719638481428 + ], + [ + 67.71095349774481, + 38.861844119742734 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 38.861844119742734 + ], + [ + 67.82579618122848, + 38.66719638481428 + ], + [ + 67.94063886471217, + 38.861844119742734 + ], + [ + 67.71095349774481, + 38.861844119742734 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 39.25113958959964 + ], + [ + 67.94063886471217, + 39.25113958959964 + ], + [ + 67.82579618122848, + 39.44578732452809 + ], + [ + 67.71095349774481, + 39.25113958959964 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 39.25113958959964 + ], + [ + 67.82579618122848, + 39.44578732452809 + ], + [ + 67.59611081426114, + 39.44578732452809 + ], + [ + 67.71095349774481, + 39.25113958959964 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 39.25113958959964 + ], + [ + 67.59611081426114, + 39.44578732452809 + ], + [ + 67.48126813077745, + 39.25113958959964 + ], + [ + 67.71095349774481, + 39.25113958959964 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 39.25113958959964 + ], + [ + 67.48126813077745, + 39.25113958959964 + ], + [ + 67.59611081426114, + 39.05649185467119 + ], + [ + 67.71095349774481, + 39.25113958959964 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 39.25113958959964 + ], + [ + 67.59611081426114, + 39.05649185467119 + ], + [ + 67.82579618122848, + 39.05649185467119 + ], + [ + 67.71095349774481, + 39.25113958959964 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 39.25113958959964 + ], + [ + 67.82579618122848, + 39.05649185467119 + ], + [ + 67.94063886471217, + 39.25113958959964 + ], + [ + 67.71095349774481, + 39.25113958959964 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 39.64043505945655 + ], + [ + 67.94063886471217, + 39.64043505945655 + ], + [ + 67.82579618122848, + 39.835082794385 + ], + [ + 67.71095349774481, + 39.64043505945655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 39.64043505945655 + ], + [ + 67.82579618122848, + 39.835082794385 + ], + [ + 67.59611081426114, + 39.835082794385 + ], + [ + 67.71095349774481, + 39.64043505945655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 39.64043505945655 + ], + [ + 67.59611081426114, + 39.835082794385 + ], + [ + 67.48126813077745, + 39.64043505945655 + ], + [ + 67.71095349774481, + 39.64043505945655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 39.64043505945655 + ], + [ + 67.48126813077745, + 39.64043505945655 + ], + [ + 67.59611081426114, + 39.4457873245281 + ], + [ + 67.71095349774481, + 39.64043505945655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 39.64043505945655 + ], + [ + 67.59611081426114, + 39.4457873245281 + ], + [ + 67.82579618122848, + 39.4457873245281 + ], + [ + 67.71095349774481, + 39.64043505945655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 39.64043505945655 + ], + [ + 67.82579618122848, + 39.4457873245281 + ], + [ + 67.94063886471217, + 39.64043505945655 + ], + [ + 67.71095349774481, + 39.64043505945655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 40.029730529313454 + ], + [ + 67.94063886471217, + 40.029730529313454 + ], + [ + 67.82579618122848, + 40.224378264241906 + ], + [ + 67.71095349774481, + 40.029730529313454 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 40.029730529313454 + ], + [ + 67.82579618122848, + 40.224378264241906 + ], + [ + 67.59611081426114, + 40.224378264241906 + ], + [ + 67.71095349774481, + 40.029730529313454 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 40.029730529313454 + ], + [ + 67.59611081426114, + 40.224378264241906 + ], + [ + 67.48126813077745, + 40.029730529313454 + ], + [ + 67.71095349774481, + 40.029730529313454 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 40.029730529313454 + ], + [ + 67.48126813077745, + 40.029730529313454 + ], + [ + 67.59611081426114, + 39.835082794385 + ], + [ + 67.71095349774481, + 40.029730529313454 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 40.029730529313454 + ], + [ + 67.59611081426114, + 39.835082794385 + ], + [ + 67.82579618122848, + 39.835082794385 + ], + [ + 67.71095349774481, + 40.029730529313454 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 40.029730529313454 + ], + [ + 67.82579618122848, + 39.835082794385 + ], + [ + 67.94063886471217, + 40.029730529313454 + ], + [ + 67.71095349774481, + 40.029730529313454 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 40.419025999170366 + ], + [ + 67.94063886471217, + 40.419025999170366 + ], + [ + 67.82579618122848, + 40.61367373409882 + ], + [ + 67.71095349774481, + 40.419025999170366 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 40.419025999170366 + ], + [ + 67.82579618122848, + 40.61367373409882 + ], + [ + 67.59611081426114, + 40.61367373409882 + ], + [ + 67.71095349774481, + 40.419025999170366 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 40.419025999170366 + ], + [ + 67.59611081426114, + 40.61367373409882 + ], + [ + 67.48126813077745, + 40.419025999170366 + ], + [ + 67.71095349774481, + 40.419025999170366 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 40.419025999170366 + ], + [ + 67.48126813077745, + 40.419025999170366 + ], + [ + 67.59611081426114, + 40.22437826424191 + ], + [ + 67.71095349774481, + 40.419025999170366 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 40.419025999170366 + ], + [ + 67.59611081426114, + 40.22437826424191 + ], + [ + 67.82579618122848, + 40.22437826424191 + ], + [ + 67.71095349774481, + 40.419025999170366 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 40.419025999170366 + ], + [ + 67.82579618122848, + 40.22437826424191 + ], + [ + 67.94063886471217, + 40.419025999170366 + ], + [ + 67.71095349774481, + 40.419025999170366 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 40.80832146902727 + ], + [ + 67.94063886471217, + 40.80832146902727 + ], + [ + 67.82579618122848, + 41.00296920395572 + ], + [ + 67.71095349774481, + 40.80832146902727 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 40.80832146902727 + ], + [ + 67.82579618122848, + 41.00296920395572 + ], + [ + 67.59611081426114, + 41.00296920395572 + ], + [ + 67.71095349774481, + 40.80832146902727 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 40.80832146902727 + ], + [ + 67.59611081426114, + 41.00296920395572 + ], + [ + 67.48126813077745, + 40.80832146902727 + ], + [ + 67.71095349774481, + 40.80832146902727 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 40.80832146902727 + ], + [ + 67.48126813077745, + 40.80832146902727 + ], + [ + 67.59611081426114, + 40.61367373409882 + ], + [ + 67.71095349774481, + 40.80832146902727 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 40.80832146902727 + ], + [ + 67.59611081426114, + 40.61367373409882 + ], + [ + 67.82579618122848, + 40.61367373409882 + ], + [ + 67.71095349774481, + 40.80832146902727 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 40.80832146902727 + ], + [ + 67.82579618122848, + 40.61367373409882 + ], + [ + 67.94063886471217, + 40.80832146902727 + ], + [ + 67.71095349774481, + 40.80832146902727 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 41.197616938884174 + ], + [ + 67.94063886471217, + 41.197616938884174 + ], + [ + 67.82579618122848, + 41.392264673812626 + ], + [ + 67.71095349774481, + 41.197616938884174 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 41.197616938884174 + ], + [ + 67.82579618122848, + 41.392264673812626 + ], + [ + 67.59611081426114, + 41.392264673812626 + ], + [ + 67.71095349774481, + 41.197616938884174 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 41.197616938884174 + ], + [ + 67.59611081426114, + 41.392264673812626 + ], + [ + 67.48126813077745, + 41.197616938884174 + ], + [ + 67.71095349774481, + 41.197616938884174 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 41.197616938884174 + ], + [ + 67.48126813077745, + 41.197616938884174 + ], + [ + 67.59611081426114, + 41.00296920395572 + ], + [ + 67.71095349774481, + 41.197616938884174 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 41.197616938884174 + ], + [ + 67.59611081426114, + 41.00296920395572 + ], + [ + 67.82579618122848, + 41.00296920395572 + ], + [ + 67.71095349774481, + 41.197616938884174 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 41.197616938884174 + ], + [ + 67.82579618122848, + 41.00296920395572 + ], + [ + 67.94063886471217, + 41.197616938884174 + ], + [ + 67.71095349774481, + 41.197616938884174 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 41.58691240874108 + ], + [ + 67.94063886471217, + 41.58691240874108 + ], + [ + 67.82579618122848, + 41.78156014366953 + ], + [ + 67.71095349774481, + 41.58691240874108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 41.58691240874108 + ], + [ + 67.82579618122848, + 41.78156014366953 + ], + [ + 67.59611081426114, + 41.78156014366953 + ], + [ + 67.71095349774481, + 41.58691240874108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 41.58691240874108 + ], + [ + 67.59611081426114, + 41.78156014366953 + ], + [ + 67.48126813077745, + 41.58691240874108 + ], + [ + 67.71095349774481, + 41.58691240874108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 41.58691240874108 + ], + [ + 67.48126813077745, + 41.58691240874108 + ], + [ + 67.59611081426114, + 41.392264673812626 + ], + [ + 67.71095349774481, + 41.58691240874108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 41.58691240874108 + ], + [ + 67.59611081426114, + 41.392264673812626 + ], + [ + 67.82579618122848, + 41.392264673812626 + ], + [ + 67.71095349774481, + 41.58691240874108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 41.58691240874108 + ], + [ + 67.82579618122848, + 41.392264673812626 + ], + [ + 67.94063886471217, + 41.58691240874108 + ], + [ + 67.71095349774481, + 41.58691240874108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 41.97620787859798 + ], + [ + 67.94063886471217, + 41.97620787859798 + ], + [ + 67.82579618122848, + 42.170855613526435 + ], + [ + 67.71095349774481, + 41.97620787859798 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 41.97620787859798 + ], + [ + 67.82579618122848, + 42.170855613526435 + ], + [ + 67.59611081426114, + 42.170855613526435 + ], + [ + 67.71095349774481, + 41.97620787859798 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 41.97620787859798 + ], + [ + 67.59611081426114, + 42.170855613526435 + ], + [ + 67.48126813077745, + 41.97620787859798 + ], + [ + 67.71095349774481, + 41.97620787859798 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 41.97620787859798 + ], + [ + 67.48126813077745, + 41.97620787859798 + ], + [ + 67.59611081426114, + 41.78156014366953 + ], + [ + 67.71095349774481, + 41.97620787859798 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 41.97620787859798 + ], + [ + 67.59611081426114, + 41.78156014366953 + ], + [ + 67.82579618122848, + 41.78156014366953 + ], + [ + 67.71095349774481, + 41.97620787859798 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 41.97620787859798 + ], + [ + 67.82579618122848, + 41.78156014366953 + ], + [ + 67.94063886471217, + 41.97620787859798 + ], + [ + 67.71095349774481, + 41.97620787859798 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 42.365503348454894 + ], + [ + 67.94063886471217, + 42.365503348454894 + ], + [ + 67.82579618122848, + 42.560151083383346 + ], + [ + 67.71095349774481, + 42.365503348454894 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 42.365503348454894 + ], + [ + 67.82579618122848, + 42.560151083383346 + ], + [ + 67.59611081426114, + 42.560151083383346 + ], + [ + 67.71095349774481, + 42.365503348454894 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 42.365503348454894 + ], + [ + 67.59611081426114, + 42.560151083383346 + ], + [ + 67.48126813077745, + 42.365503348454894 + ], + [ + 67.71095349774481, + 42.365503348454894 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 42.365503348454894 + ], + [ + 67.48126813077745, + 42.365503348454894 + ], + [ + 67.59611081426114, + 42.17085561352644 + ], + [ + 67.71095349774481, + 42.365503348454894 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 42.365503348454894 + ], + [ + 67.59611081426114, + 42.17085561352644 + ], + [ + 67.82579618122848, + 42.17085561352644 + ], + [ + 67.71095349774481, + 42.365503348454894 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 42.365503348454894 + ], + [ + 67.82579618122848, + 42.17085561352644 + ], + [ + 67.94063886471217, + 42.365503348454894 + ], + [ + 67.71095349774481, + 42.365503348454894 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 42.754798818311805 + ], + [ + 67.94063886471217, + 42.754798818311805 + ], + [ + 67.82579618122848, + 42.94944655324026 + ], + [ + 67.71095349774481, + 42.754798818311805 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 42.754798818311805 + ], + [ + 67.82579618122848, + 42.94944655324026 + ], + [ + 67.59611081426114, + 42.94944655324026 + ], + [ + 67.71095349774481, + 42.754798818311805 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 42.754798818311805 + ], + [ + 67.59611081426114, + 42.94944655324026 + ], + [ + 67.48126813077745, + 42.754798818311805 + ], + [ + 67.71095349774481, + 42.754798818311805 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 42.754798818311805 + ], + [ + 67.48126813077745, + 42.754798818311805 + ], + [ + 67.59611081426114, + 42.56015108338335 + ], + [ + 67.71095349774481, + 42.754798818311805 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 42.754798818311805 + ], + [ + 67.59611081426114, + 42.56015108338335 + ], + [ + 67.82579618122848, + 42.56015108338335 + ], + [ + 67.71095349774481, + 42.754798818311805 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 42.754798818311805 + ], + [ + 67.82579618122848, + 42.56015108338335 + ], + [ + 67.94063886471217, + 42.754798818311805 + ], + [ + 67.71095349774481, + 42.754798818311805 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 43.14409428816871 + ], + [ + 67.94063886471217, + 43.14409428816871 + ], + [ + 67.82579618122848, + 43.33874202309716 + ], + [ + 67.71095349774481, + 43.14409428816871 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 43.14409428816871 + ], + [ + 67.82579618122848, + 43.33874202309716 + ], + [ + 67.59611081426114, + 43.33874202309716 + ], + [ + 67.71095349774481, + 43.14409428816871 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 43.14409428816871 + ], + [ + 67.59611081426114, + 43.33874202309716 + ], + [ + 67.48126813077745, + 43.14409428816871 + ], + [ + 67.71095349774481, + 43.14409428816871 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 43.14409428816871 + ], + [ + 67.48126813077745, + 43.14409428816871 + ], + [ + 67.59611081426114, + 42.94944655324026 + ], + [ + 67.71095349774481, + 43.14409428816871 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 43.14409428816871 + ], + [ + 67.59611081426114, + 42.94944655324026 + ], + [ + 67.82579618122848, + 42.94944655324026 + ], + [ + 67.71095349774481, + 43.14409428816871 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 43.14409428816871 + ], + [ + 67.82579618122848, + 42.94944655324026 + ], + [ + 67.94063886471217, + 43.14409428816871 + ], + [ + 67.71095349774481, + 43.14409428816871 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 43.53338975802561 + ], + [ + 67.94063886471217, + 43.53338975802561 + ], + [ + 67.82579618122848, + 43.728037492954066 + ], + [ + 67.71095349774481, + 43.53338975802561 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 43.53338975802561 + ], + [ + 67.82579618122848, + 43.728037492954066 + ], + [ + 67.59611081426114, + 43.728037492954066 + ], + [ + 67.71095349774481, + 43.53338975802561 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 43.53338975802561 + ], + [ + 67.59611081426114, + 43.728037492954066 + ], + [ + 67.48126813077745, + 43.53338975802561 + ], + [ + 67.71095349774481, + 43.53338975802561 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 43.53338975802561 + ], + [ + 67.48126813077745, + 43.53338975802561 + ], + [ + 67.59611081426114, + 43.33874202309716 + ], + [ + 67.71095349774481, + 43.53338975802561 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 43.53338975802561 + ], + [ + 67.59611081426114, + 43.33874202309716 + ], + [ + 67.82579618122848, + 43.33874202309716 + ], + [ + 67.71095349774481, + 43.53338975802561 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 43.53338975802561 + ], + [ + 67.82579618122848, + 43.33874202309716 + ], + [ + 67.94063886471217, + 43.53338975802561 + ], + [ + 67.71095349774481, + 43.53338975802561 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 43.92268522788252 + ], + [ + 67.94063886471217, + 43.92268522788252 + ], + [ + 67.82579618122848, + 44.11733296281097 + ], + [ + 67.71095349774481, + 43.92268522788252 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 43.92268522788252 + ], + [ + 67.82579618122848, + 44.11733296281097 + ], + [ + 67.59611081426114, + 44.11733296281097 + ], + [ + 67.71095349774481, + 43.92268522788252 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 43.92268522788252 + ], + [ + 67.59611081426114, + 44.11733296281097 + ], + [ + 67.48126813077745, + 43.92268522788252 + ], + [ + 67.71095349774481, + 43.92268522788252 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 43.92268522788252 + ], + [ + 67.48126813077745, + 43.92268522788252 + ], + [ + 67.59611081426114, + 43.728037492954066 + ], + [ + 67.71095349774481, + 43.92268522788252 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 43.92268522788252 + ], + [ + 67.59611081426114, + 43.728037492954066 + ], + [ + 67.82579618122848, + 43.728037492954066 + ], + [ + 67.71095349774481, + 43.92268522788252 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 43.92268522788252 + ], + [ + 67.82579618122848, + 43.728037492954066 + ], + [ + 67.94063886471217, + 43.92268522788252 + ], + [ + 67.71095349774481, + 43.92268522788252 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 44.31198069773942 + ], + [ + 67.94063886471217, + 44.31198069773942 + ], + [ + 67.82579618122848, + 44.506628432667874 + ], + [ + 67.71095349774481, + 44.31198069773942 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 44.31198069773942 + ], + [ + 67.82579618122848, + 44.506628432667874 + ], + [ + 67.59611081426114, + 44.506628432667874 + ], + [ + 67.71095349774481, + 44.31198069773942 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 44.31198069773942 + ], + [ + 67.59611081426114, + 44.506628432667874 + ], + [ + 67.48126813077745, + 44.31198069773942 + ], + [ + 67.71095349774481, + 44.31198069773942 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 44.31198069773942 + ], + [ + 67.48126813077745, + 44.31198069773942 + ], + [ + 67.59611081426114, + 44.11733296281097 + ], + [ + 67.71095349774481, + 44.31198069773942 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 44.31198069773942 + ], + [ + 67.59611081426114, + 44.11733296281097 + ], + [ + 67.82579618122848, + 44.11733296281097 + ], + [ + 67.71095349774481, + 44.31198069773942 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 44.31198069773942 + ], + [ + 67.82579618122848, + 44.11733296281097 + ], + [ + 67.94063886471217, + 44.31198069773942 + ], + [ + 67.71095349774481, + 44.31198069773942 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 44.701276167596326 + ], + [ + 67.94063886471217, + 44.701276167596326 + ], + [ + 67.82579618122848, + 44.89592390252478 + ], + [ + 67.71095349774481, + 44.701276167596326 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 44.701276167596326 + ], + [ + 67.82579618122848, + 44.89592390252478 + ], + [ + 67.59611081426114, + 44.89592390252478 + ], + [ + 67.71095349774481, + 44.701276167596326 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 44.701276167596326 + ], + [ + 67.59611081426114, + 44.89592390252478 + ], + [ + 67.48126813077745, + 44.701276167596326 + ], + [ + 67.71095349774481, + 44.701276167596326 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 44.701276167596326 + ], + [ + 67.48126813077745, + 44.701276167596326 + ], + [ + 67.59611081426114, + 44.506628432667874 + ], + [ + 67.71095349774481, + 44.701276167596326 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 44.701276167596326 + ], + [ + 67.59611081426114, + 44.506628432667874 + ], + [ + 67.82579618122848, + 44.506628432667874 + ], + [ + 67.71095349774481, + 44.701276167596326 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 44.701276167596326 + ], + [ + 67.82579618122848, + 44.506628432667874 + ], + [ + 67.94063886471217, + 44.701276167596326 + ], + [ + 67.71095349774481, + 44.701276167596326 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 45.090571637453245 + ], + [ + 67.94063886471217, + 45.090571637453245 + ], + [ + 67.82579618122848, + 45.2852193723817 + ], + [ + 67.71095349774481, + 45.090571637453245 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 45.090571637453245 + ], + [ + 67.82579618122848, + 45.2852193723817 + ], + [ + 67.59611081426114, + 45.2852193723817 + ], + [ + 67.71095349774481, + 45.090571637453245 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 45.090571637453245 + ], + [ + 67.59611081426114, + 45.2852193723817 + ], + [ + 67.48126813077745, + 45.090571637453245 + ], + [ + 67.71095349774481, + 45.090571637453245 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 45.090571637453245 + ], + [ + 67.48126813077745, + 45.090571637453245 + ], + [ + 67.59611081426114, + 44.89592390252479 + ], + [ + 67.71095349774481, + 45.090571637453245 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 45.090571637453245 + ], + [ + 67.59611081426114, + 44.89592390252479 + ], + [ + 67.82579618122848, + 44.89592390252479 + ], + [ + 67.71095349774481, + 45.090571637453245 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 45.090571637453245 + ], + [ + 67.82579618122848, + 44.89592390252479 + ], + [ + 67.94063886471217, + 45.090571637453245 + ], + [ + 67.71095349774481, + 45.090571637453245 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 45.47986710731015 + ], + [ + 67.94063886471217, + 45.47986710731015 + ], + [ + 67.82579618122848, + 45.6745148422386 + ], + [ + 67.71095349774481, + 45.47986710731015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 45.47986710731015 + ], + [ + 67.82579618122848, + 45.6745148422386 + ], + [ + 67.59611081426114, + 45.6745148422386 + ], + [ + 67.71095349774481, + 45.47986710731015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 45.47986710731015 + ], + [ + 67.59611081426114, + 45.6745148422386 + ], + [ + 67.48126813077745, + 45.47986710731015 + ], + [ + 67.71095349774481, + 45.47986710731015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 45.47986710731015 + ], + [ + 67.48126813077745, + 45.47986710731015 + ], + [ + 67.59611081426114, + 45.2852193723817 + ], + [ + 67.71095349774481, + 45.47986710731015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 45.47986710731015 + ], + [ + 67.59611081426114, + 45.2852193723817 + ], + [ + 67.82579618122848, + 45.2852193723817 + ], + [ + 67.71095349774481, + 45.47986710731015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 45.47986710731015 + ], + [ + 67.82579618122848, + 45.2852193723817 + ], + [ + 67.94063886471217, + 45.47986710731015 + ], + [ + 67.71095349774481, + 45.47986710731015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 45.86916257716705 + ], + [ + 67.94063886471217, + 45.86916257716705 + ], + [ + 67.82579618122848, + 46.063810312095505 + ], + [ + 67.71095349774481, + 45.86916257716705 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 45.86916257716705 + ], + [ + 67.82579618122848, + 46.063810312095505 + ], + [ + 67.59611081426114, + 46.063810312095505 + ], + [ + 67.71095349774481, + 45.86916257716705 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 45.86916257716705 + ], + [ + 67.59611081426114, + 46.063810312095505 + ], + [ + 67.48126813077745, + 45.86916257716705 + ], + [ + 67.71095349774481, + 45.86916257716705 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 45.86916257716705 + ], + [ + 67.48126813077745, + 45.86916257716705 + ], + [ + 67.59611081426114, + 45.6745148422386 + ], + [ + 67.71095349774481, + 45.86916257716705 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 45.86916257716705 + ], + [ + 67.59611081426114, + 45.6745148422386 + ], + [ + 67.82579618122848, + 45.6745148422386 + ], + [ + 67.71095349774481, + 45.86916257716705 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 45.86916257716705 + ], + [ + 67.82579618122848, + 45.6745148422386 + ], + [ + 67.94063886471217, + 45.86916257716705 + ], + [ + 67.71095349774481, + 45.86916257716705 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 46.25845804702396 + ], + [ + 67.94063886471217, + 46.25845804702396 + ], + [ + 67.82579618122848, + 46.45310578195241 + ], + [ + 67.71095349774481, + 46.25845804702396 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 46.25845804702396 + ], + [ + 67.82579618122848, + 46.45310578195241 + ], + [ + 67.59611081426114, + 46.45310578195241 + ], + [ + 67.71095349774481, + 46.25845804702396 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 46.25845804702396 + ], + [ + 67.59611081426114, + 46.45310578195241 + ], + [ + 67.48126813077745, + 46.25845804702396 + ], + [ + 67.71095349774481, + 46.25845804702396 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 46.25845804702396 + ], + [ + 67.48126813077745, + 46.25845804702396 + ], + [ + 67.59611081426114, + 46.063810312095505 + ], + [ + 67.71095349774481, + 46.25845804702396 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 46.25845804702396 + ], + [ + 67.59611081426114, + 46.063810312095505 + ], + [ + 67.82579618122848, + 46.063810312095505 + ], + [ + 67.71095349774481, + 46.25845804702396 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 46.25845804702396 + ], + [ + 67.82579618122848, + 46.063810312095505 + ], + [ + 67.94063886471217, + 46.25845804702396 + ], + [ + 67.71095349774481, + 46.25845804702396 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 46.64775351688086 + ], + [ + 67.94063886471217, + 46.64775351688086 + ], + [ + 67.82579618122848, + 46.842401251809314 + ], + [ + 67.71095349774481, + 46.64775351688086 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 46.64775351688086 + ], + [ + 67.82579618122848, + 46.842401251809314 + ], + [ + 67.59611081426114, + 46.842401251809314 + ], + [ + 67.71095349774481, + 46.64775351688086 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 46.64775351688086 + ], + [ + 67.59611081426114, + 46.842401251809314 + ], + [ + 67.48126813077745, + 46.64775351688086 + ], + [ + 67.71095349774481, + 46.64775351688086 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 46.64775351688086 + ], + [ + 67.48126813077745, + 46.64775351688086 + ], + [ + 67.59611081426114, + 46.45310578195241 + ], + [ + 67.71095349774481, + 46.64775351688086 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 46.64775351688086 + ], + [ + 67.59611081426114, + 46.45310578195241 + ], + [ + 67.82579618122848, + 46.45310578195241 + ], + [ + 67.71095349774481, + 46.64775351688086 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 46.64775351688086 + ], + [ + 67.82579618122848, + 46.45310578195241 + ], + [ + 67.94063886471217, + 46.64775351688086 + ], + [ + 67.71095349774481, + 46.64775351688086 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 47.037048986737766 + ], + [ + 67.94063886471217, + 47.037048986737766 + ], + [ + 67.82579618122848, + 47.23169672166622 + ], + [ + 67.71095349774481, + 47.037048986737766 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 47.037048986737766 + ], + [ + 67.82579618122848, + 47.23169672166622 + ], + [ + 67.59611081426114, + 47.23169672166622 + ], + [ + 67.71095349774481, + 47.037048986737766 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 47.037048986737766 + ], + [ + 67.59611081426114, + 47.23169672166622 + ], + [ + 67.48126813077745, + 47.037048986737766 + ], + [ + 67.71095349774481, + 47.037048986737766 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 47.037048986737766 + ], + [ + 67.48126813077745, + 47.037048986737766 + ], + [ + 67.59611081426114, + 46.842401251809314 + ], + [ + 67.71095349774481, + 47.037048986737766 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 47.037048986737766 + ], + [ + 67.59611081426114, + 46.842401251809314 + ], + [ + 67.82579618122848, + 46.842401251809314 + ], + [ + 67.71095349774481, + 47.037048986737766 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 47.037048986737766 + ], + [ + 67.82579618122848, + 46.842401251809314 + ], + [ + 67.94063886471217, + 47.037048986737766 + ], + [ + 67.71095349774481, + 47.037048986737766 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 47.42634445659467 + ], + [ + 67.94063886471217, + 47.42634445659467 + ], + [ + 67.82579618122848, + 47.62099219152312 + ], + [ + 67.71095349774481, + 47.42634445659467 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 47.42634445659467 + ], + [ + 67.82579618122848, + 47.62099219152312 + ], + [ + 67.59611081426114, + 47.62099219152312 + ], + [ + 67.71095349774481, + 47.42634445659467 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 47.42634445659467 + ], + [ + 67.59611081426114, + 47.62099219152312 + ], + [ + 67.48126813077745, + 47.42634445659467 + ], + [ + 67.71095349774481, + 47.42634445659467 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 47.42634445659467 + ], + [ + 67.48126813077745, + 47.42634445659467 + ], + [ + 67.59611081426114, + 47.23169672166622 + ], + [ + 67.71095349774481, + 47.42634445659467 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 47.42634445659467 + ], + [ + 67.59611081426114, + 47.23169672166622 + ], + [ + 67.82579618122848, + 47.23169672166622 + ], + [ + 67.71095349774481, + 47.42634445659467 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 47.42634445659467 + ], + [ + 67.82579618122848, + 47.23169672166622 + ], + [ + 67.94063886471217, + 47.42634445659467 + ], + [ + 67.71095349774481, + 47.42634445659467 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 47.81563992645159 + ], + [ + 67.94063886471217, + 47.81563992645159 + ], + [ + 67.82579618122848, + 48.01028766138004 + ], + [ + 67.71095349774481, + 47.81563992645159 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 47.81563992645159 + ], + [ + 67.82579618122848, + 48.01028766138004 + ], + [ + 67.59611081426114, + 48.01028766138004 + ], + [ + 67.71095349774481, + 47.81563992645159 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 47.81563992645159 + ], + [ + 67.59611081426114, + 48.01028766138004 + ], + [ + 67.48126813077745, + 47.81563992645159 + ], + [ + 67.71095349774481, + 47.81563992645159 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 47.81563992645159 + ], + [ + 67.48126813077745, + 47.81563992645159 + ], + [ + 67.59611081426114, + 47.620992191523136 + ], + [ + 67.71095349774481, + 47.81563992645159 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 47.81563992645159 + ], + [ + 67.59611081426114, + 47.620992191523136 + ], + [ + 67.82579618122848, + 47.620992191523136 + ], + [ + 67.71095349774481, + 47.81563992645159 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.71095349774481, + 47.81563992645159 + ], + [ + 67.82579618122848, + 47.620992191523136 + ], + [ + 67.94063886471217, + 47.81563992645159 + ], + [ + 67.71095349774481, + 47.81563992645159 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 11.805808964687746 + ], + [ + 68.28516691516322, + 11.805808964687746 + ], + [ + 68.17032423167953, + 12.0004566996162 + ], + [ + 68.05548154819586, + 11.805808964687746 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 11.805808964687746 + ], + [ + 68.17032423167953, + 12.0004566996162 + ], + [ + 67.94063886471218, + 12.0004566996162 + ], + [ + 68.05548154819586, + 11.805808964687746 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 11.805808964687746 + ], + [ + 67.94063886471218, + 12.0004566996162 + ], + [ + 67.8257961812285, + 11.805808964687746 + ], + [ + 68.05548154819586, + 11.805808964687746 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 11.805808964687746 + ], + [ + 67.8257961812285, + 11.805808964687746 + ], + [ + 67.94063886471218, + 11.611161229759292 + ], + [ + 68.05548154819586, + 11.805808964687746 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 11.805808964687746 + ], + [ + 67.94063886471218, + 11.611161229759292 + ], + [ + 68.17032423167953, + 11.611161229759292 + ], + [ + 68.05548154819586, + 11.805808964687746 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 11.805808964687746 + ], + [ + 68.17032423167953, + 11.611161229759292 + ], + [ + 68.28516691516322, + 11.805808964687746 + ], + [ + 68.05548154819586, + 11.805808964687746 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 12.195104434544652 + ], + [ + 68.28516691516322, + 12.195104434544652 + ], + [ + 68.17032423167953, + 12.389752169473105 + ], + [ + 68.05548154819586, + 12.195104434544652 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 12.195104434544652 + ], + [ + 68.17032423167953, + 12.389752169473105 + ], + [ + 67.94063886471218, + 12.389752169473105 + ], + [ + 68.05548154819586, + 12.195104434544652 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 12.195104434544652 + ], + [ + 67.94063886471218, + 12.389752169473105 + ], + [ + 67.8257961812285, + 12.195104434544652 + ], + [ + 68.05548154819586, + 12.195104434544652 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 12.195104434544652 + ], + [ + 67.8257961812285, + 12.195104434544652 + ], + [ + 67.94063886471218, + 12.000456699616198 + ], + [ + 68.05548154819586, + 12.195104434544652 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 12.195104434544652 + ], + [ + 67.94063886471218, + 12.000456699616198 + ], + [ + 68.17032423167953, + 12.000456699616198 + ], + [ + 68.05548154819586, + 12.195104434544652 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 12.195104434544652 + ], + [ + 68.17032423167953, + 12.000456699616198 + ], + [ + 68.28516691516322, + 12.195104434544652 + ], + [ + 68.05548154819586, + 12.195104434544652 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 12.58439990440156 + ], + [ + 68.28516691516322, + 12.58439990440156 + ], + [ + 68.17032423167953, + 12.779047639330013 + ], + [ + 68.05548154819586, + 12.58439990440156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 12.58439990440156 + ], + [ + 68.17032423167953, + 12.779047639330013 + ], + [ + 67.94063886471218, + 12.779047639330013 + ], + [ + 68.05548154819586, + 12.58439990440156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 12.58439990440156 + ], + [ + 67.94063886471218, + 12.779047639330013 + ], + [ + 67.8257961812285, + 12.58439990440156 + ], + [ + 68.05548154819586, + 12.58439990440156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 12.58439990440156 + ], + [ + 67.8257961812285, + 12.58439990440156 + ], + [ + 67.94063886471218, + 12.389752169473105 + ], + [ + 68.05548154819586, + 12.58439990440156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 12.58439990440156 + ], + [ + 67.94063886471218, + 12.389752169473105 + ], + [ + 68.17032423167953, + 12.389752169473105 + ], + [ + 68.05548154819586, + 12.58439990440156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 12.58439990440156 + ], + [ + 68.17032423167953, + 12.389752169473105 + ], + [ + 68.28516691516322, + 12.58439990440156 + ], + [ + 68.05548154819586, + 12.58439990440156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 12.973695374258465 + ], + [ + 68.28516691516322, + 12.973695374258465 + ], + [ + 68.17032423167953, + 13.16834310918692 + ], + [ + 68.05548154819586, + 12.973695374258465 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 12.973695374258465 + ], + [ + 68.17032423167953, + 13.16834310918692 + ], + [ + 67.94063886471218, + 13.16834310918692 + ], + [ + 68.05548154819586, + 12.973695374258465 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 12.973695374258465 + ], + [ + 67.94063886471218, + 13.16834310918692 + ], + [ + 67.8257961812285, + 12.973695374258465 + ], + [ + 68.05548154819586, + 12.973695374258465 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 12.973695374258465 + ], + [ + 67.8257961812285, + 12.973695374258465 + ], + [ + 67.94063886471218, + 12.779047639330011 + ], + [ + 68.05548154819586, + 12.973695374258465 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 12.973695374258465 + ], + [ + 67.94063886471218, + 12.779047639330011 + ], + [ + 68.17032423167953, + 12.779047639330011 + ], + [ + 68.05548154819586, + 12.973695374258465 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 12.973695374258465 + ], + [ + 68.17032423167953, + 12.779047639330011 + ], + [ + 68.28516691516322, + 12.973695374258465 + ], + [ + 68.05548154819586, + 12.973695374258465 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 13.362990844115371 + ], + [ + 68.28516691516322, + 13.362990844115371 + ], + [ + 68.17032423167953, + 13.557638579043825 + ], + [ + 68.05548154819586, + 13.362990844115371 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 13.362990844115371 + ], + [ + 68.17032423167953, + 13.557638579043825 + ], + [ + 67.94063886471218, + 13.557638579043825 + ], + [ + 68.05548154819586, + 13.362990844115371 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 13.362990844115371 + ], + [ + 67.94063886471218, + 13.557638579043825 + ], + [ + 67.8257961812285, + 13.362990844115371 + ], + [ + 68.05548154819586, + 13.362990844115371 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 13.362990844115371 + ], + [ + 67.8257961812285, + 13.362990844115371 + ], + [ + 67.94063886471218, + 13.168343109186917 + ], + [ + 68.05548154819586, + 13.362990844115371 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 13.362990844115371 + ], + [ + 67.94063886471218, + 13.168343109186917 + ], + [ + 68.17032423167953, + 13.168343109186917 + ], + [ + 68.05548154819586, + 13.362990844115371 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 13.362990844115371 + ], + [ + 68.17032423167953, + 13.168343109186917 + ], + [ + 68.28516691516322, + 13.362990844115371 + ], + [ + 68.05548154819586, + 13.362990844115371 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 13.752286313972277 + ], + [ + 68.28516691516322, + 13.752286313972277 + ], + [ + 68.17032423167953, + 13.946934048900731 + ], + [ + 68.05548154819586, + 13.752286313972277 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 13.752286313972277 + ], + [ + 68.17032423167953, + 13.946934048900731 + ], + [ + 67.94063886471218, + 13.946934048900731 + ], + [ + 68.05548154819586, + 13.752286313972277 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 13.752286313972277 + ], + [ + 67.94063886471218, + 13.946934048900731 + ], + [ + 67.8257961812285, + 13.752286313972277 + ], + [ + 68.05548154819586, + 13.752286313972277 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 13.752286313972277 + ], + [ + 67.8257961812285, + 13.752286313972277 + ], + [ + 67.94063886471218, + 13.557638579043823 + ], + [ + 68.05548154819586, + 13.752286313972277 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 13.752286313972277 + ], + [ + 67.94063886471218, + 13.557638579043823 + ], + [ + 68.17032423167953, + 13.557638579043823 + ], + [ + 68.05548154819586, + 13.752286313972277 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 13.752286313972277 + ], + [ + 68.17032423167953, + 13.557638579043823 + ], + [ + 68.28516691516322, + 13.752286313972277 + ], + [ + 68.05548154819586, + 13.752286313972277 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 14.141581783829183 + ], + [ + 68.28516691516322, + 14.141581783829183 + ], + [ + 68.17032423167953, + 14.336229518757637 + ], + [ + 68.05548154819586, + 14.141581783829183 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 14.141581783829183 + ], + [ + 68.17032423167953, + 14.336229518757637 + ], + [ + 67.94063886471218, + 14.336229518757637 + ], + [ + 68.05548154819586, + 14.141581783829183 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 14.141581783829183 + ], + [ + 67.94063886471218, + 14.336229518757637 + ], + [ + 67.8257961812285, + 14.141581783829183 + ], + [ + 68.05548154819586, + 14.141581783829183 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 14.141581783829183 + ], + [ + 67.8257961812285, + 14.141581783829183 + ], + [ + 67.94063886471218, + 13.94693404890073 + ], + [ + 68.05548154819586, + 14.141581783829183 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 14.141581783829183 + ], + [ + 67.94063886471218, + 13.94693404890073 + ], + [ + 68.17032423167953, + 13.94693404890073 + ], + [ + 68.05548154819586, + 14.141581783829183 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 14.141581783829183 + ], + [ + 68.17032423167953, + 13.94693404890073 + ], + [ + 68.28516691516322, + 14.141581783829183 + ], + [ + 68.05548154819586, + 14.141581783829183 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 14.530877253686091 + ], + [ + 68.28516691516322, + 14.530877253686091 + ], + [ + 68.17032423167953, + 14.725524988614545 + ], + [ + 68.05548154819586, + 14.530877253686091 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 14.530877253686091 + ], + [ + 68.17032423167953, + 14.725524988614545 + ], + [ + 67.94063886471218, + 14.725524988614545 + ], + [ + 68.05548154819586, + 14.530877253686091 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 14.530877253686091 + ], + [ + 67.94063886471218, + 14.725524988614545 + ], + [ + 67.8257961812285, + 14.530877253686091 + ], + [ + 68.05548154819586, + 14.530877253686091 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 14.530877253686091 + ], + [ + 67.8257961812285, + 14.530877253686091 + ], + [ + 67.94063886471218, + 14.336229518757637 + ], + [ + 68.05548154819586, + 14.530877253686091 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 14.530877253686091 + ], + [ + 67.94063886471218, + 14.336229518757637 + ], + [ + 68.17032423167953, + 14.336229518757637 + ], + [ + 68.05548154819586, + 14.530877253686091 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 14.530877253686091 + ], + [ + 68.17032423167953, + 14.336229518757637 + ], + [ + 68.28516691516322, + 14.530877253686091 + ], + [ + 68.05548154819586, + 14.530877253686091 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 14.920172723542997 + ], + [ + 68.28516691516322, + 14.920172723542997 + ], + [ + 68.17032423167953, + 15.114820458471451 + ], + [ + 68.05548154819586, + 14.920172723542997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 14.920172723542997 + ], + [ + 68.17032423167953, + 15.114820458471451 + ], + [ + 67.94063886471218, + 15.114820458471451 + ], + [ + 68.05548154819586, + 14.920172723542997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 14.920172723542997 + ], + [ + 67.94063886471218, + 15.114820458471451 + ], + [ + 67.8257961812285, + 14.920172723542997 + ], + [ + 68.05548154819586, + 14.920172723542997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 14.920172723542997 + ], + [ + 67.8257961812285, + 14.920172723542997 + ], + [ + 67.94063886471218, + 14.725524988614543 + ], + [ + 68.05548154819586, + 14.920172723542997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 14.920172723542997 + ], + [ + 67.94063886471218, + 14.725524988614543 + ], + [ + 68.17032423167953, + 14.725524988614543 + ], + [ + 68.05548154819586, + 14.920172723542997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 14.920172723542997 + ], + [ + 68.17032423167953, + 14.725524988614543 + ], + [ + 68.28516691516322, + 14.920172723542997 + ], + [ + 68.05548154819586, + 14.920172723542997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 15.309468193399903 + ], + [ + 68.28516691516322, + 15.309468193399903 + ], + [ + 68.17032423167953, + 15.504115928328357 + ], + [ + 68.05548154819586, + 15.309468193399903 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 15.309468193399903 + ], + [ + 68.17032423167953, + 15.504115928328357 + ], + [ + 67.94063886471218, + 15.504115928328357 + ], + [ + 68.05548154819586, + 15.309468193399903 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 15.309468193399903 + ], + [ + 67.94063886471218, + 15.504115928328357 + ], + [ + 67.8257961812285, + 15.309468193399903 + ], + [ + 68.05548154819586, + 15.309468193399903 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 15.309468193399903 + ], + [ + 67.8257961812285, + 15.309468193399903 + ], + [ + 67.94063886471218, + 15.11482045847145 + ], + [ + 68.05548154819586, + 15.309468193399903 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 15.309468193399903 + ], + [ + 67.94063886471218, + 15.11482045847145 + ], + [ + 68.17032423167953, + 15.11482045847145 + ], + [ + 68.05548154819586, + 15.309468193399903 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 15.309468193399903 + ], + [ + 68.17032423167953, + 15.11482045847145 + ], + [ + 68.28516691516322, + 15.309468193399903 + ], + [ + 68.05548154819586, + 15.309468193399903 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 15.69876366325681 + ], + [ + 68.28516691516322, + 15.69876366325681 + ], + [ + 68.17032423167953, + 15.893411398185265 + ], + [ + 68.05548154819586, + 15.69876366325681 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 15.69876366325681 + ], + [ + 68.17032423167953, + 15.893411398185265 + ], + [ + 67.94063886471218, + 15.893411398185265 + ], + [ + 68.05548154819586, + 15.69876366325681 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 15.69876366325681 + ], + [ + 67.94063886471218, + 15.893411398185265 + ], + [ + 67.8257961812285, + 15.69876366325681 + ], + [ + 68.05548154819586, + 15.69876366325681 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 15.69876366325681 + ], + [ + 67.8257961812285, + 15.69876366325681 + ], + [ + 67.94063886471218, + 15.504115928328357 + ], + [ + 68.05548154819586, + 15.69876366325681 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 15.69876366325681 + ], + [ + 67.94063886471218, + 15.504115928328357 + ], + [ + 68.17032423167953, + 15.504115928328357 + ], + [ + 68.05548154819586, + 15.69876366325681 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 15.69876366325681 + ], + [ + 68.17032423167953, + 15.504115928328357 + ], + [ + 68.28516691516322, + 15.69876366325681 + ], + [ + 68.05548154819586, + 15.69876366325681 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 16.088059133113717 + ], + [ + 68.28516691516322, + 16.088059133113717 + ], + [ + 68.17032423167953, + 16.28270686804217 + ], + [ + 68.05548154819586, + 16.088059133113717 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 16.088059133113717 + ], + [ + 68.17032423167953, + 16.28270686804217 + ], + [ + 67.94063886471218, + 16.28270686804217 + ], + [ + 68.05548154819586, + 16.088059133113717 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 16.088059133113717 + ], + [ + 67.94063886471218, + 16.28270686804217 + ], + [ + 67.8257961812285, + 16.088059133113717 + ], + [ + 68.05548154819586, + 16.088059133113717 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 16.088059133113717 + ], + [ + 67.8257961812285, + 16.088059133113717 + ], + [ + 67.94063886471218, + 15.893411398185263 + ], + [ + 68.05548154819586, + 16.088059133113717 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 16.088059133113717 + ], + [ + 67.94063886471218, + 15.893411398185263 + ], + [ + 68.17032423167953, + 15.893411398185263 + ], + [ + 68.05548154819586, + 16.088059133113717 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 16.088059133113717 + ], + [ + 68.17032423167953, + 15.893411398185263 + ], + [ + 68.28516691516322, + 16.088059133113717 + ], + [ + 68.05548154819586, + 16.088059133113717 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 16.477354602970625 + ], + [ + 68.28516691516322, + 16.477354602970625 + ], + [ + 68.17032423167953, + 16.672002337899077 + ], + [ + 68.05548154819586, + 16.477354602970625 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 16.477354602970625 + ], + [ + 68.17032423167953, + 16.672002337899077 + ], + [ + 67.94063886471218, + 16.672002337899077 + ], + [ + 68.05548154819586, + 16.477354602970625 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 16.477354602970625 + ], + [ + 67.94063886471218, + 16.672002337899077 + ], + [ + 67.8257961812285, + 16.477354602970625 + ], + [ + 68.05548154819586, + 16.477354602970625 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 16.477354602970625 + ], + [ + 67.8257961812285, + 16.477354602970625 + ], + [ + 67.94063886471218, + 16.282706868042172 + ], + [ + 68.05548154819586, + 16.477354602970625 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 16.477354602970625 + ], + [ + 67.94063886471218, + 16.282706868042172 + ], + [ + 68.17032423167953, + 16.282706868042172 + ], + [ + 68.05548154819586, + 16.477354602970625 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 16.477354602970625 + ], + [ + 68.17032423167953, + 16.282706868042172 + ], + [ + 68.28516691516322, + 16.477354602970625 + ], + [ + 68.05548154819586, + 16.477354602970625 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 16.86665007282753 + ], + [ + 68.28516691516322, + 16.86665007282753 + ], + [ + 68.17032423167953, + 17.06129780775598 + ], + [ + 68.05548154819586, + 16.86665007282753 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 16.86665007282753 + ], + [ + 68.17032423167953, + 17.06129780775598 + ], + [ + 67.94063886471218, + 17.06129780775598 + ], + [ + 68.05548154819586, + 16.86665007282753 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 16.86665007282753 + ], + [ + 67.94063886471218, + 17.06129780775598 + ], + [ + 67.8257961812285, + 16.86665007282753 + ], + [ + 68.05548154819586, + 16.86665007282753 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 16.86665007282753 + ], + [ + 67.8257961812285, + 16.86665007282753 + ], + [ + 67.94063886471218, + 16.672002337899077 + ], + [ + 68.05548154819586, + 16.86665007282753 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 16.86665007282753 + ], + [ + 67.94063886471218, + 16.672002337899077 + ], + [ + 68.17032423167953, + 16.672002337899077 + ], + [ + 68.05548154819586, + 16.86665007282753 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 16.86665007282753 + ], + [ + 68.17032423167953, + 16.672002337899077 + ], + [ + 68.28516691516322, + 16.86665007282753 + ], + [ + 68.05548154819586, + 16.86665007282753 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 17.255945542684437 + ], + [ + 68.28516691516322, + 17.255945542684437 + ], + [ + 68.17032423167953, + 17.45059327761289 + ], + [ + 68.05548154819586, + 17.255945542684437 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 17.255945542684437 + ], + [ + 68.17032423167953, + 17.45059327761289 + ], + [ + 67.94063886471218, + 17.45059327761289 + ], + [ + 68.05548154819586, + 17.255945542684437 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 17.255945542684437 + ], + [ + 67.94063886471218, + 17.45059327761289 + ], + [ + 67.8257961812285, + 17.255945542684437 + ], + [ + 68.05548154819586, + 17.255945542684437 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 17.255945542684437 + ], + [ + 67.8257961812285, + 17.255945542684437 + ], + [ + 67.94063886471218, + 17.061297807755984 + ], + [ + 68.05548154819586, + 17.255945542684437 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 17.255945542684437 + ], + [ + 67.94063886471218, + 17.061297807755984 + ], + [ + 68.17032423167953, + 17.061297807755984 + ], + [ + 68.05548154819586, + 17.255945542684437 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 17.255945542684437 + ], + [ + 68.17032423167953, + 17.061297807755984 + ], + [ + 68.28516691516322, + 17.255945542684437 + ], + [ + 68.05548154819586, + 17.255945542684437 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 17.64524101254134 + ], + [ + 68.28516691516322, + 17.64524101254134 + ], + [ + 68.17032423167953, + 17.839888747469793 + ], + [ + 68.05548154819586, + 17.64524101254134 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 17.64524101254134 + ], + [ + 68.17032423167953, + 17.839888747469793 + ], + [ + 67.94063886471218, + 17.839888747469793 + ], + [ + 68.05548154819586, + 17.64524101254134 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 17.64524101254134 + ], + [ + 67.94063886471218, + 17.839888747469793 + ], + [ + 67.8257961812285, + 17.64524101254134 + ], + [ + 68.05548154819586, + 17.64524101254134 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 17.64524101254134 + ], + [ + 67.8257961812285, + 17.64524101254134 + ], + [ + 67.94063886471218, + 17.45059327761289 + ], + [ + 68.05548154819586, + 17.64524101254134 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 17.64524101254134 + ], + [ + 67.94063886471218, + 17.45059327761289 + ], + [ + 68.17032423167953, + 17.45059327761289 + ], + [ + 68.05548154819586, + 17.64524101254134 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 17.64524101254134 + ], + [ + 68.17032423167953, + 17.45059327761289 + ], + [ + 68.28516691516322, + 17.64524101254134 + ], + [ + 68.05548154819586, + 17.64524101254134 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 18.03453648239825 + ], + [ + 68.28516691516322, + 18.03453648239825 + ], + [ + 68.17032423167953, + 18.2291842173267 + ], + [ + 68.05548154819586, + 18.03453648239825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 18.03453648239825 + ], + [ + 68.17032423167953, + 18.2291842173267 + ], + [ + 67.94063886471218, + 18.2291842173267 + ], + [ + 68.05548154819586, + 18.03453648239825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 18.03453648239825 + ], + [ + 67.94063886471218, + 18.2291842173267 + ], + [ + 67.8257961812285, + 18.03453648239825 + ], + [ + 68.05548154819586, + 18.03453648239825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 18.03453648239825 + ], + [ + 67.8257961812285, + 18.03453648239825 + ], + [ + 67.94063886471218, + 17.839888747469796 + ], + [ + 68.05548154819586, + 18.03453648239825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 18.03453648239825 + ], + [ + 67.94063886471218, + 17.839888747469796 + ], + [ + 68.17032423167953, + 17.839888747469796 + ], + [ + 68.05548154819586, + 18.03453648239825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 18.03453648239825 + ], + [ + 68.17032423167953, + 17.839888747469796 + ], + [ + 68.28516691516322, + 18.03453648239825 + ], + [ + 68.05548154819586, + 18.03453648239825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 18.423831952255156 + ], + [ + 68.28516691516322, + 18.423831952255156 + ], + [ + 68.17032423167953, + 18.61847968718361 + ], + [ + 68.05548154819586, + 18.423831952255156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 18.423831952255156 + ], + [ + 68.17032423167953, + 18.61847968718361 + ], + [ + 67.94063886471218, + 18.61847968718361 + ], + [ + 68.05548154819586, + 18.423831952255156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 18.423831952255156 + ], + [ + 67.94063886471218, + 18.61847968718361 + ], + [ + 67.8257961812285, + 18.423831952255156 + ], + [ + 68.05548154819586, + 18.423831952255156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 18.423831952255156 + ], + [ + 67.8257961812285, + 18.423831952255156 + ], + [ + 67.94063886471218, + 18.229184217326704 + ], + [ + 68.05548154819586, + 18.423831952255156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 18.423831952255156 + ], + [ + 67.94063886471218, + 18.229184217326704 + ], + [ + 68.17032423167953, + 18.229184217326704 + ], + [ + 68.05548154819586, + 18.423831952255156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 18.423831952255156 + ], + [ + 68.17032423167953, + 18.229184217326704 + ], + [ + 68.28516691516322, + 18.423831952255156 + ], + [ + 68.05548154819586, + 18.423831952255156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 18.81312742211206 + ], + [ + 68.28516691516322, + 18.81312742211206 + ], + [ + 68.17032423167953, + 19.007775157040513 + ], + [ + 68.05548154819586, + 18.81312742211206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 18.81312742211206 + ], + [ + 68.17032423167953, + 19.007775157040513 + ], + [ + 67.94063886471218, + 19.007775157040513 + ], + [ + 68.05548154819586, + 18.81312742211206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 18.81312742211206 + ], + [ + 67.94063886471218, + 19.007775157040513 + ], + [ + 67.8257961812285, + 18.81312742211206 + ], + [ + 68.05548154819586, + 18.81312742211206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 18.81312742211206 + ], + [ + 67.8257961812285, + 18.81312742211206 + ], + [ + 67.94063886471218, + 18.61847968718361 + ], + [ + 68.05548154819586, + 18.81312742211206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 18.81312742211206 + ], + [ + 67.94063886471218, + 18.61847968718361 + ], + [ + 68.17032423167953, + 18.61847968718361 + ], + [ + 68.05548154819586, + 18.81312742211206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 18.81312742211206 + ], + [ + 68.17032423167953, + 18.61847968718361 + ], + [ + 68.28516691516322, + 18.81312742211206 + ], + [ + 68.05548154819586, + 18.81312742211206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 19.20242289196897 + ], + [ + 68.28516691516322, + 19.20242289196897 + ], + [ + 68.17032423167953, + 19.39707062689742 + ], + [ + 68.05548154819586, + 19.20242289196897 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 19.20242289196897 + ], + [ + 68.17032423167953, + 19.39707062689742 + ], + [ + 67.94063886471218, + 19.39707062689742 + ], + [ + 68.05548154819586, + 19.20242289196897 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 19.20242289196897 + ], + [ + 67.94063886471218, + 19.39707062689742 + ], + [ + 67.8257961812285, + 19.20242289196897 + ], + [ + 68.05548154819586, + 19.20242289196897 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 19.20242289196897 + ], + [ + 67.8257961812285, + 19.20242289196897 + ], + [ + 67.94063886471218, + 19.007775157040516 + ], + [ + 68.05548154819586, + 19.20242289196897 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 19.20242289196897 + ], + [ + 67.94063886471218, + 19.007775157040516 + ], + [ + 68.17032423167953, + 19.007775157040516 + ], + [ + 68.05548154819586, + 19.20242289196897 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 19.20242289196897 + ], + [ + 68.17032423167953, + 19.007775157040516 + ], + [ + 68.28516691516322, + 19.20242289196897 + ], + [ + 68.05548154819586, + 19.20242289196897 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 19.591718361825876 + ], + [ + 68.28516691516322, + 19.591718361825876 + ], + [ + 68.17032423167953, + 19.78636609675433 + ], + [ + 68.05548154819586, + 19.591718361825876 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 19.591718361825876 + ], + [ + 68.17032423167953, + 19.78636609675433 + ], + [ + 67.94063886471218, + 19.78636609675433 + ], + [ + 68.05548154819586, + 19.591718361825876 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 19.591718361825876 + ], + [ + 67.94063886471218, + 19.78636609675433 + ], + [ + 67.8257961812285, + 19.591718361825876 + ], + [ + 68.05548154819586, + 19.591718361825876 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 19.591718361825876 + ], + [ + 67.8257961812285, + 19.591718361825876 + ], + [ + 67.94063886471218, + 19.397070626897424 + ], + [ + 68.05548154819586, + 19.591718361825876 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 19.591718361825876 + ], + [ + 67.94063886471218, + 19.397070626897424 + ], + [ + 68.17032423167953, + 19.397070626897424 + ], + [ + 68.05548154819586, + 19.591718361825876 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 19.591718361825876 + ], + [ + 68.17032423167953, + 19.397070626897424 + ], + [ + 68.28516691516322, + 19.591718361825876 + ], + [ + 68.05548154819586, + 19.591718361825876 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 19.98101383168278 + ], + [ + 68.28516691516322, + 19.98101383168278 + ], + [ + 68.17032423167953, + 20.175661566611232 + ], + [ + 68.05548154819586, + 19.98101383168278 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 19.98101383168278 + ], + [ + 68.17032423167953, + 20.175661566611232 + ], + [ + 67.94063886471218, + 20.175661566611232 + ], + [ + 68.05548154819586, + 19.98101383168278 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 19.98101383168278 + ], + [ + 67.94063886471218, + 20.175661566611232 + ], + [ + 67.8257961812285, + 19.98101383168278 + ], + [ + 68.05548154819586, + 19.98101383168278 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 19.98101383168278 + ], + [ + 67.8257961812285, + 19.98101383168278 + ], + [ + 67.94063886471218, + 19.78636609675433 + ], + [ + 68.05548154819586, + 19.98101383168278 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 19.98101383168278 + ], + [ + 67.94063886471218, + 19.78636609675433 + ], + [ + 68.17032423167953, + 19.78636609675433 + ], + [ + 68.05548154819586, + 19.98101383168278 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 19.98101383168278 + ], + [ + 68.17032423167953, + 19.78636609675433 + ], + [ + 68.28516691516322, + 19.98101383168278 + ], + [ + 68.05548154819586, + 19.98101383168278 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 20.370309301539685 + ], + [ + 68.28516691516322, + 20.370309301539685 + ], + [ + 68.17032423167953, + 20.564957036468137 + ], + [ + 68.05548154819586, + 20.370309301539685 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 20.370309301539685 + ], + [ + 68.17032423167953, + 20.564957036468137 + ], + [ + 67.94063886471218, + 20.564957036468137 + ], + [ + 68.05548154819586, + 20.370309301539685 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 20.370309301539685 + ], + [ + 67.94063886471218, + 20.564957036468137 + ], + [ + 67.8257961812285, + 20.370309301539685 + ], + [ + 68.05548154819586, + 20.370309301539685 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 20.370309301539685 + ], + [ + 67.8257961812285, + 20.370309301539685 + ], + [ + 67.94063886471218, + 20.175661566611232 + ], + [ + 68.05548154819586, + 20.370309301539685 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 20.370309301539685 + ], + [ + 67.94063886471218, + 20.175661566611232 + ], + [ + 68.17032423167953, + 20.175661566611232 + ], + [ + 68.05548154819586, + 20.370309301539685 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 20.370309301539685 + ], + [ + 68.17032423167953, + 20.175661566611232 + ], + [ + 68.28516691516322, + 20.370309301539685 + ], + [ + 68.05548154819586, + 20.370309301539685 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 20.759604771396592 + ], + [ + 68.28516691516322, + 20.759604771396592 + ], + [ + 68.17032423167953, + 20.954252506325044 + ], + [ + 68.05548154819586, + 20.759604771396592 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 20.759604771396592 + ], + [ + 68.17032423167953, + 20.954252506325044 + ], + [ + 67.94063886471218, + 20.954252506325044 + ], + [ + 68.05548154819586, + 20.759604771396592 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 20.759604771396592 + ], + [ + 67.94063886471218, + 20.954252506325044 + ], + [ + 67.8257961812285, + 20.759604771396592 + ], + [ + 68.05548154819586, + 20.759604771396592 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 20.759604771396592 + ], + [ + 67.8257961812285, + 20.759604771396592 + ], + [ + 67.94063886471218, + 20.56495703646814 + ], + [ + 68.05548154819586, + 20.759604771396592 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 20.759604771396592 + ], + [ + 67.94063886471218, + 20.56495703646814 + ], + [ + 68.17032423167953, + 20.56495703646814 + ], + [ + 68.05548154819586, + 20.759604771396592 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 20.759604771396592 + ], + [ + 68.17032423167953, + 20.56495703646814 + ], + [ + 68.28516691516322, + 20.759604771396592 + ], + [ + 68.05548154819586, + 20.759604771396592 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 21.1489002412535 + ], + [ + 68.28516691516322, + 21.1489002412535 + ], + [ + 68.17032423167953, + 21.343547976181952 + ], + [ + 68.05548154819586, + 21.1489002412535 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 21.1489002412535 + ], + [ + 68.17032423167953, + 21.343547976181952 + ], + [ + 67.94063886471218, + 21.343547976181952 + ], + [ + 68.05548154819586, + 21.1489002412535 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 21.1489002412535 + ], + [ + 67.94063886471218, + 21.343547976181952 + ], + [ + 67.8257961812285, + 21.1489002412535 + ], + [ + 68.05548154819586, + 21.1489002412535 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 21.1489002412535 + ], + [ + 67.8257961812285, + 21.1489002412535 + ], + [ + 67.94063886471218, + 20.954252506325048 + ], + [ + 68.05548154819586, + 21.1489002412535 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 21.1489002412535 + ], + [ + 67.94063886471218, + 20.954252506325048 + ], + [ + 68.17032423167953, + 20.954252506325048 + ], + [ + 68.05548154819586, + 21.1489002412535 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 21.1489002412535 + ], + [ + 68.17032423167953, + 20.954252506325048 + ], + [ + 68.28516691516322, + 21.1489002412535 + ], + [ + 68.05548154819586, + 21.1489002412535 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 21.538195711110404 + ], + [ + 68.28516691516322, + 21.538195711110404 + ], + [ + 68.17032423167953, + 21.732843446038856 + ], + [ + 68.05548154819586, + 21.538195711110404 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 21.538195711110404 + ], + [ + 68.17032423167953, + 21.732843446038856 + ], + [ + 67.94063886471218, + 21.732843446038856 + ], + [ + 68.05548154819586, + 21.538195711110404 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 21.538195711110404 + ], + [ + 67.94063886471218, + 21.732843446038856 + ], + [ + 67.8257961812285, + 21.538195711110404 + ], + [ + 68.05548154819586, + 21.538195711110404 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 21.538195711110404 + ], + [ + 67.8257961812285, + 21.538195711110404 + ], + [ + 67.94063886471218, + 21.343547976181952 + ], + [ + 68.05548154819586, + 21.538195711110404 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 21.538195711110404 + ], + [ + 67.94063886471218, + 21.343547976181952 + ], + [ + 68.17032423167953, + 21.343547976181952 + ], + [ + 68.05548154819586, + 21.538195711110404 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 21.538195711110404 + ], + [ + 68.17032423167953, + 21.343547976181952 + ], + [ + 68.28516691516322, + 21.538195711110404 + ], + [ + 68.05548154819586, + 21.538195711110404 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 21.927491180967312 + ], + [ + 68.28516691516322, + 21.927491180967312 + ], + [ + 68.17032423167953, + 22.122138915895764 + ], + [ + 68.05548154819586, + 21.927491180967312 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 21.927491180967312 + ], + [ + 68.17032423167953, + 22.122138915895764 + ], + [ + 67.94063886471218, + 22.122138915895764 + ], + [ + 68.05548154819586, + 21.927491180967312 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 21.927491180967312 + ], + [ + 67.94063886471218, + 22.122138915895764 + ], + [ + 67.8257961812285, + 21.927491180967312 + ], + [ + 68.05548154819586, + 21.927491180967312 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 21.927491180967312 + ], + [ + 67.8257961812285, + 21.927491180967312 + ], + [ + 67.94063886471218, + 21.73284344603886 + ], + [ + 68.05548154819586, + 21.927491180967312 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 21.927491180967312 + ], + [ + 67.94063886471218, + 21.73284344603886 + ], + [ + 68.17032423167953, + 21.73284344603886 + ], + [ + 68.05548154819586, + 21.927491180967312 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 21.927491180967312 + ], + [ + 68.17032423167953, + 21.73284344603886 + ], + [ + 68.28516691516322, + 21.927491180967312 + ], + [ + 68.05548154819586, + 21.927491180967312 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 22.31678665082422 + ], + [ + 68.28516691516322, + 22.31678665082422 + ], + [ + 68.17032423167953, + 22.511434385752672 + ], + [ + 68.05548154819586, + 22.31678665082422 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 22.31678665082422 + ], + [ + 68.17032423167953, + 22.511434385752672 + ], + [ + 67.94063886471218, + 22.511434385752672 + ], + [ + 68.05548154819586, + 22.31678665082422 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 22.31678665082422 + ], + [ + 67.94063886471218, + 22.511434385752672 + ], + [ + 67.8257961812285, + 22.31678665082422 + ], + [ + 68.05548154819586, + 22.31678665082422 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 22.31678665082422 + ], + [ + 67.8257961812285, + 22.31678665082422 + ], + [ + 67.94063886471218, + 22.122138915895768 + ], + [ + 68.05548154819586, + 22.31678665082422 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 22.31678665082422 + ], + [ + 67.94063886471218, + 22.122138915895768 + ], + [ + 68.17032423167953, + 22.122138915895768 + ], + [ + 68.05548154819586, + 22.31678665082422 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 22.31678665082422 + ], + [ + 68.17032423167953, + 22.122138915895768 + ], + [ + 68.28516691516322, + 22.31678665082422 + ], + [ + 68.05548154819586, + 22.31678665082422 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 22.706082120681124 + ], + [ + 68.28516691516322, + 22.706082120681124 + ], + [ + 68.17032423167953, + 22.900729855609576 + ], + [ + 68.05548154819586, + 22.706082120681124 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 22.706082120681124 + ], + [ + 68.17032423167953, + 22.900729855609576 + ], + [ + 67.94063886471218, + 22.900729855609576 + ], + [ + 68.05548154819586, + 22.706082120681124 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 22.706082120681124 + ], + [ + 67.94063886471218, + 22.900729855609576 + ], + [ + 67.8257961812285, + 22.706082120681124 + ], + [ + 68.05548154819586, + 22.706082120681124 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 22.706082120681124 + ], + [ + 67.8257961812285, + 22.706082120681124 + ], + [ + 67.94063886471218, + 22.511434385752672 + ], + [ + 68.05548154819586, + 22.706082120681124 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 22.706082120681124 + ], + [ + 67.94063886471218, + 22.511434385752672 + ], + [ + 68.17032423167953, + 22.511434385752672 + ], + [ + 68.05548154819586, + 22.706082120681124 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 22.706082120681124 + ], + [ + 68.17032423167953, + 22.511434385752672 + ], + [ + 68.28516691516322, + 22.706082120681124 + ], + [ + 68.05548154819586, + 22.706082120681124 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 23.095377590538032 + ], + [ + 68.28516691516322, + 23.095377590538032 + ], + [ + 68.17032423167953, + 23.290025325466484 + ], + [ + 68.05548154819586, + 23.095377590538032 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 23.095377590538032 + ], + [ + 68.17032423167953, + 23.290025325466484 + ], + [ + 67.94063886471218, + 23.290025325466484 + ], + [ + 68.05548154819586, + 23.095377590538032 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 23.095377590538032 + ], + [ + 67.94063886471218, + 23.290025325466484 + ], + [ + 67.8257961812285, + 23.095377590538032 + ], + [ + 68.05548154819586, + 23.095377590538032 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 23.095377590538032 + ], + [ + 67.8257961812285, + 23.095377590538032 + ], + [ + 67.94063886471218, + 22.90072985560958 + ], + [ + 68.05548154819586, + 23.095377590538032 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 23.095377590538032 + ], + [ + 67.94063886471218, + 22.90072985560958 + ], + [ + 68.17032423167953, + 22.90072985560958 + ], + [ + 68.05548154819586, + 23.095377590538032 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 23.095377590538032 + ], + [ + 68.17032423167953, + 22.90072985560958 + ], + [ + 68.28516691516322, + 23.095377590538032 + ], + [ + 68.05548154819586, + 23.095377590538032 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 23.48467306039494 + ], + [ + 68.28516691516322, + 23.48467306039494 + ], + [ + 68.17032423167953, + 23.67932079532339 + ], + [ + 68.05548154819586, + 23.48467306039494 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 23.48467306039494 + ], + [ + 68.17032423167953, + 23.67932079532339 + ], + [ + 67.94063886471218, + 23.67932079532339 + ], + [ + 68.05548154819586, + 23.48467306039494 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 23.48467306039494 + ], + [ + 67.94063886471218, + 23.67932079532339 + ], + [ + 67.8257961812285, + 23.48467306039494 + ], + [ + 68.05548154819586, + 23.48467306039494 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 23.48467306039494 + ], + [ + 67.8257961812285, + 23.48467306039494 + ], + [ + 67.94063886471218, + 23.290025325466488 + ], + [ + 68.05548154819586, + 23.48467306039494 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 23.48467306039494 + ], + [ + 67.94063886471218, + 23.290025325466488 + ], + [ + 68.17032423167953, + 23.290025325466488 + ], + [ + 68.05548154819586, + 23.48467306039494 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 23.48467306039494 + ], + [ + 68.17032423167953, + 23.290025325466488 + ], + [ + 68.28516691516322, + 23.48467306039494 + ], + [ + 68.05548154819586, + 23.48467306039494 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 23.873968530251844 + ], + [ + 68.28516691516322, + 23.873968530251844 + ], + [ + 68.17032423167953, + 24.068616265180296 + ], + [ + 68.05548154819586, + 23.873968530251844 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 23.873968530251844 + ], + [ + 68.17032423167953, + 24.068616265180296 + ], + [ + 67.94063886471218, + 24.068616265180296 + ], + [ + 68.05548154819586, + 23.873968530251844 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 23.873968530251844 + ], + [ + 67.94063886471218, + 24.068616265180296 + ], + [ + 67.8257961812285, + 23.873968530251844 + ], + [ + 68.05548154819586, + 23.873968530251844 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 23.873968530251844 + ], + [ + 67.8257961812285, + 23.873968530251844 + ], + [ + 67.94063886471218, + 23.67932079532339 + ], + [ + 68.05548154819586, + 23.873968530251844 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 23.873968530251844 + ], + [ + 67.94063886471218, + 23.67932079532339 + ], + [ + 68.17032423167953, + 23.67932079532339 + ], + [ + 68.05548154819586, + 23.873968530251844 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 23.873968530251844 + ], + [ + 68.17032423167953, + 23.67932079532339 + ], + [ + 68.28516691516322, + 23.873968530251844 + ], + [ + 68.05548154819586, + 23.873968530251844 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 24.263264000108748 + ], + [ + 68.28516691516322, + 24.263264000108748 + ], + [ + 68.17032423167953, + 24.4579117350372 + ], + [ + 68.05548154819586, + 24.263264000108748 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 24.263264000108748 + ], + [ + 68.17032423167953, + 24.4579117350372 + ], + [ + 67.94063886471218, + 24.4579117350372 + ], + [ + 68.05548154819586, + 24.263264000108748 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 24.263264000108748 + ], + [ + 67.94063886471218, + 24.4579117350372 + ], + [ + 67.8257961812285, + 24.263264000108748 + ], + [ + 68.05548154819586, + 24.263264000108748 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 24.263264000108748 + ], + [ + 67.8257961812285, + 24.263264000108748 + ], + [ + 67.94063886471218, + 24.068616265180296 + ], + [ + 68.05548154819586, + 24.263264000108748 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 24.263264000108748 + ], + [ + 67.94063886471218, + 24.068616265180296 + ], + [ + 68.17032423167953, + 24.068616265180296 + ], + [ + 68.05548154819586, + 24.263264000108748 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 24.263264000108748 + ], + [ + 68.17032423167953, + 24.068616265180296 + ], + [ + 68.28516691516322, + 24.263264000108748 + ], + [ + 68.05548154819586, + 24.263264000108748 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 24.652559469965656 + ], + [ + 68.28516691516322, + 24.652559469965656 + ], + [ + 68.17032423167953, + 24.847207204894108 + ], + [ + 68.05548154819586, + 24.652559469965656 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 24.652559469965656 + ], + [ + 68.17032423167953, + 24.847207204894108 + ], + [ + 67.94063886471218, + 24.847207204894108 + ], + [ + 68.05548154819586, + 24.652559469965656 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 24.652559469965656 + ], + [ + 67.94063886471218, + 24.847207204894108 + ], + [ + 67.8257961812285, + 24.652559469965656 + ], + [ + 68.05548154819586, + 24.652559469965656 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 24.652559469965656 + ], + [ + 67.8257961812285, + 24.652559469965656 + ], + [ + 67.94063886471218, + 24.457911735037204 + ], + [ + 68.05548154819586, + 24.652559469965656 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 24.652559469965656 + ], + [ + 67.94063886471218, + 24.457911735037204 + ], + [ + 68.17032423167953, + 24.457911735037204 + ], + [ + 68.05548154819586, + 24.652559469965656 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 24.652559469965656 + ], + [ + 68.17032423167953, + 24.457911735037204 + ], + [ + 68.28516691516322, + 24.652559469965656 + ], + [ + 68.05548154819586, + 24.652559469965656 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 25.041854939822564 + ], + [ + 68.28516691516322, + 25.041854939822564 + ], + [ + 68.17032423167953, + 25.236502674751016 + ], + [ + 68.05548154819586, + 25.041854939822564 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 25.041854939822564 + ], + [ + 68.17032423167953, + 25.236502674751016 + ], + [ + 67.94063886471218, + 25.236502674751016 + ], + [ + 68.05548154819586, + 25.041854939822564 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 25.041854939822564 + ], + [ + 67.94063886471218, + 25.236502674751016 + ], + [ + 67.8257961812285, + 25.041854939822564 + ], + [ + 68.05548154819586, + 25.041854939822564 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 25.041854939822564 + ], + [ + 67.8257961812285, + 25.041854939822564 + ], + [ + 67.94063886471218, + 24.84720720489411 + ], + [ + 68.05548154819586, + 25.041854939822564 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 25.041854939822564 + ], + [ + 67.94063886471218, + 24.84720720489411 + ], + [ + 68.17032423167953, + 24.84720720489411 + ], + [ + 68.05548154819586, + 25.041854939822564 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 25.041854939822564 + ], + [ + 68.17032423167953, + 24.84720720489411 + ], + [ + 68.28516691516322, + 25.041854939822564 + ], + [ + 68.05548154819586, + 25.041854939822564 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 25.431150409679468 + ], + [ + 68.28516691516322, + 25.431150409679468 + ], + [ + 68.17032423167953, + 25.62579814460792 + ], + [ + 68.05548154819586, + 25.431150409679468 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 25.431150409679468 + ], + [ + 68.17032423167953, + 25.62579814460792 + ], + [ + 67.94063886471218, + 25.62579814460792 + ], + [ + 68.05548154819586, + 25.431150409679468 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 25.431150409679468 + ], + [ + 67.94063886471218, + 25.62579814460792 + ], + [ + 67.8257961812285, + 25.431150409679468 + ], + [ + 68.05548154819586, + 25.431150409679468 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 25.431150409679468 + ], + [ + 67.8257961812285, + 25.431150409679468 + ], + [ + 67.94063886471218, + 25.236502674751016 + ], + [ + 68.05548154819586, + 25.431150409679468 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 25.431150409679468 + ], + [ + 67.94063886471218, + 25.236502674751016 + ], + [ + 68.17032423167953, + 25.236502674751016 + ], + [ + 68.05548154819586, + 25.431150409679468 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 25.431150409679468 + ], + [ + 68.17032423167953, + 25.236502674751016 + ], + [ + 68.28516691516322, + 25.431150409679468 + ], + [ + 68.05548154819586, + 25.431150409679468 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 25.820445879536376 + ], + [ + 68.28516691516322, + 25.820445879536376 + ], + [ + 68.17032423167953, + 26.015093614464828 + ], + [ + 68.05548154819586, + 25.820445879536376 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 25.820445879536376 + ], + [ + 68.17032423167953, + 26.015093614464828 + ], + [ + 67.94063886471218, + 26.015093614464828 + ], + [ + 68.05548154819586, + 25.820445879536376 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 25.820445879536376 + ], + [ + 67.94063886471218, + 26.015093614464828 + ], + [ + 67.8257961812285, + 25.820445879536376 + ], + [ + 68.05548154819586, + 25.820445879536376 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 25.820445879536376 + ], + [ + 67.8257961812285, + 25.820445879536376 + ], + [ + 67.94063886471218, + 25.625798144607923 + ], + [ + 68.05548154819586, + 25.820445879536376 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 25.820445879536376 + ], + [ + 67.94063886471218, + 25.625798144607923 + ], + [ + 68.17032423167953, + 25.625798144607923 + ], + [ + 68.05548154819586, + 25.820445879536376 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 25.820445879536376 + ], + [ + 68.17032423167953, + 25.625798144607923 + ], + [ + 68.28516691516322, + 25.820445879536376 + ], + [ + 68.05548154819586, + 25.820445879536376 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 26.209741349393283 + ], + [ + 68.28516691516322, + 26.209741349393283 + ], + [ + 68.17032423167953, + 26.404389084321735 + ], + [ + 68.05548154819586, + 26.209741349393283 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 26.209741349393283 + ], + [ + 68.17032423167953, + 26.404389084321735 + ], + [ + 67.94063886471218, + 26.404389084321735 + ], + [ + 68.05548154819586, + 26.209741349393283 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 26.209741349393283 + ], + [ + 67.94063886471218, + 26.404389084321735 + ], + [ + 67.8257961812285, + 26.209741349393283 + ], + [ + 68.05548154819586, + 26.209741349393283 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 26.209741349393283 + ], + [ + 67.8257961812285, + 26.209741349393283 + ], + [ + 67.94063886471218, + 26.01509361446483 + ], + [ + 68.05548154819586, + 26.209741349393283 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 26.209741349393283 + ], + [ + 67.94063886471218, + 26.01509361446483 + ], + [ + 68.17032423167953, + 26.01509361446483 + ], + [ + 68.05548154819586, + 26.209741349393283 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 26.209741349393283 + ], + [ + 68.17032423167953, + 26.01509361446483 + ], + [ + 68.28516691516322, + 26.209741349393283 + ], + [ + 68.05548154819586, + 26.209741349393283 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 26.599036819250188 + ], + [ + 68.28516691516322, + 26.599036819250188 + ], + [ + 68.17032423167953, + 26.79368455417864 + ], + [ + 68.05548154819586, + 26.599036819250188 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 26.599036819250188 + ], + [ + 68.17032423167953, + 26.79368455417864 + ], + [ + 67.94063886471218, + 26.79368455417864 + ], + [ + 68.05548154819586, + 26.599036819250188 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 26.599036819250188 + ], + [ + 67.94063886471218, + 26.79368455417864 + ], + [ + 67.8257961812285, + 26.599036819250188 + ], + [ + 68.05548154819586, + 26.599036819250188 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 26.599036819250188 + ], + [ + 67.8257961812285, + 26.599036819250188 + ], + [ + 67.94063886471218, + 26.404389084321735 + ], + [ + 68.05548154819586, + 26.599036819250188 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 26.599036819250188 + ], + [ + 67.94063886471218, + 26.404389084321735 + ], + [ + 68.17032423167953, + 26.404389084321735 + ], + [ + 68.05548154819586, + 26.599036819250188 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 26.599036819250188 + ], + [ + 68.17032423167953, + 26.404389084321735 + ], + [ + 68.28516691516322, + 26.599036819250188 + ], + [ + 68.05548154819586, + 26.599036819250188 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 26.988332289107095 + ], + [ + 68.28516691516322, + 26.988332289107095 + ], + [ + 68.17032423167953, + 27.182980024035547 + ], + [ + 68.05548154819586, + 26.988332289107095 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 26.988332289107095 + ], + [ + 68.17032423167953, + 27.182980024035547 + ], + [ + 67.94063886471218, + 27.182980024035547 + ], + [ + 68.05548154819586, + 26.988332289107095 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 26.988332289107095 + ], + [ + 67.94063886471218, + 27.182980024035547 + ], + [ + 67.8257961812285, + 26.988332289107095 + ], + [ + 68.05548154819586, + 26.988332289107095 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 26.988332289107095 + ], + [ + 67.8257961812285, + 26.988332289107095 + ], + [ + 67.94063886471218, + 26.793684554178643 + ], + [ + 68.05548154819586, + 26.988332289107095 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 26.988332289107095 + ], + [ + 67.94063886471218, + 26.793684554178643 + ], + [ + 68.17032423167953, + 26.793684554178643 + ], + [ + 68.05548154819586, + 26.988332289107095 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 26.988332289107095 + ], + [ + 68.17032423167953, + 26.793684554178643 + ], + [ + 68.28516691516322, + 26.988332289107095 + ], + [ + 68.05548154819586, + 26.988332289107095 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 27.377627758964003 + ], + [ + 68.28516691516322, + 27.377627758964003 + ], + [ + 68.17032423167953, + 27.572275493892455 + ], + [ + 68.05548154819586, + 27.377627758964003 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 27.377627758964003 + ], + [ + 68.17032423167953, + 27.572275493892455 + ], + [ + 67.94063886471218, + 27.572275493892455 + ], + [ + 68.05548154819586, + 27.377627758964003 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 27.377627758964003 + ], + [ + 67.94063886471218, + 27.572275493892455 + ], + [ + 67.8257961812285, + 27.377627758964003 + ], + [ + 68.05548154819586, + 27.377627758964003 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 27.377627758964003 + ], + [ + 67.8257961812285, + 27.377627758964003 + ], + [ + 67.94063886471218, + 27.18298002403555 + ], + [ + 68.05548154819586, + 27.377627758964003 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 27.377627758964003 + ], + [ + 67.94063886471218, + 27.18298002403555 + ], + [ + 68.17032423167953, + 27.18298002403555 + ], + [ + 68.05548154819586, + 27.377627758964003 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 27.377627758964003 + ], + [ + 68.17032423167953, + 27.18298002403555 + ], + [ + 68.28516691516322, + 27.377627758964003 + ], + [ + 68.05548154819586, + 27.377627758964003 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 27.766923228820907 + ], + [ + 68.28516691516322, + 27.766923228820907 + ], + [ + 68.17032423167953, + 27.96157096374936 + ], + [ + 68.05548154819586, + 27.766923228820907 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 27.766923228820907 + ], + [ + 68.17032423167953, + 27.96157096374936 + ], + [ + 67.94063886471218, + 27.96157096374936 + ], + [ + 68.05548154819586, + 27.766923228820907 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 27.766923228820907 + ], + [ + 67.94063886471218, + 27.96157096374936 + ], + [ + 67.8257961812285, + 27.766923228820907 + ], + [ + 68.05548154819586, + 27.766923228820907 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 27.766923228820907 + ], + [ + 67.8257961812285, + 27.766923228820907 + ], + [ + 67.94063886471218, + 27.572275493892455 + ], + [ + 68.05548154819586, + 27.766923228820907 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 27.766923228820907 + ], + [ + 67.94063886471218, + 27.572275493892455 + ], + [ + 68.17032423167953, + 27.572275493892455 + ], + [ + 68.05548154819586, + 27.766923228820907 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 27.766923228820907 + ], + [ + 68.17032423167953, + 27.572275493892455 + ], + [ + 68.28516691516322, + 27.766923228820907 + ], + [ + 68.05548154819586, + 27.766923228820907 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 28.156218698677815 + ], + [ + 68.28516691516322, + 28.156218698677815 + ], + [ + 68.17032423167953, + 28.350866433606267 + ], + [ + 68.05548154819586, + 28.156218698677815 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 28.156218698677815 + ], + [ + 68.17032423167953, + 28.350866433606267 + ], + [ + 67.94063886471218, + 28.350866433606267 + ], + [ + 68.05548154819586, + 28.156218698677815 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 28.156218698677815 + ], + [ + 67.94063886471218, + 28.350866433606267 + ], + [ + 67.8257961812285, + 28.156218698677815 + ], + [ + 68.05548154819586, + 28.156218698677815 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 28.156218698677815 + ], + [ + 67.8257961812285, + 28.156218698677815 + ], + [ + 67.94063886471218, + 27.961570963749363 + ], + [ + 68.05548154819586, + 28.156218698677815 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 28.156218698677815 + ], + [ + 67.94063886471218, + 27.961570963749363 + ], + [ + 68.17032423167953, + 27.961570963749363 + ], + [ + 68.05548154819586, + 28.156218698677815 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 28.156218698677815 + ], + [ + 68.17032423167953, + 27.961570963749363 + ], + [ + 68.28516691516322, + 28.156218698677815 + ], + [ + 68.05548154819586, + 28.156218698677815 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 28.54551416853472 + ], + [ + 68.28516691516322, + 28.54551416853472 + ], + [ + 68.17032423167953, + 28.74016190346317 + ], + [ + 68.05548154819586, + 28.54551416853472 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 28.54551416853472 + ], + [ + 68.17032423167953, + 28.74016190346317 + ], + [ + 67.94063886471218, + 28.74016190346317 + ], + [ + 68.05548154819586, + 28.54551416853472 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 28.54551416853472 + ], + [ + 67.94063886471218, + 28.74016190346317 + ], + [ + 67.8257961812285, + 28.54551416853472 + ], + [ + 68.05548154819586, + 28.54551416853472 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 28.54551416853472 + ], + [ + 67.8257961812285, + 28.54551416853472 + ], + [ + 67.94063886471218, + 28.350866433606267 + ], + [ + 68.05548154819586, + 28.54551416853472 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 28.54551416853472 + ], + [ + 67.94063886471218, + 28.350866433606267 + ], + [ + 68.17032423167953, + 28.350866433606267 + ], + [ + 68.05548154819586, + 28.54551416853472 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 28.54551416853472 + ], + [ + 68.17032423167953, + 28.350866433606267 + ], + [ + 68.28516691516322, + 28.54551416853472 + ], + [ + 68.05548154819586, + 28.54551416853472 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 28.934809638391627 + ], + [ + 68.28516691516322, + 28.934809638391627 + ], + [ + 68.17032423167953, + 29.12945737332008 + ], + [ + 68.05548154819586, + 28.934809638391627 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 28.934809638391627 + ], + [ + 68.17032423167953, + 29.12945737332008 + ], + [ + 67.94063886471218, + 29.12945737332008 + ], + [ + 68.05548154819586, + 28.934809638391627 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 28.934809638391627 + ], + [ + 67.94063886471218, + 29.12945737332008 + ], + [ + 67.8257961812285, + 28.934809638391627 + ], + [ + 68.05548154819586, + 28.934809638391627 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 28.934809638391627 + ], + [ + 67.8257961812285, + 28.934809638391627 + ], + [ + 67.94063886471218, + 28.740161903463175 + ], + [ + 68.05548154819586, + 28.934809638391627 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 28.934809638391627 + ], + [ + 67.94063886471218, + 28.740161903463175 + ], + [ + 68.17032423167953, + 28.740161903463175 + ], + [ + 68.05548154819586, + 28.934809638391627 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 28.934809638391627 + ], + [ + 68.17032423167953, + 28.740161903463175 + ], + [ + 68.28516691516322, + 28.934809638391627 + ], + [ + 68.05548154819586, + 28.934809638391627 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 29.32410510824853 + ], + [ + 68.28516691516322, + 29.32410510824853 + ], + [ + 68.17032423167953, + 29.518752843176983 + ], + [ + 68.05548154819586, + 29.32410510824853 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 29.32410510824853 + ], + [ + 68.17032423167953, + 29.518752843176983 + ], + [ + 67.94063886471218, + 29.518752843176983 + ], + [ + 68.05548154819586, + 29.32410510824853 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 29.32410510824853 + ], + [ + 67.94063886471218, + 29.518752843176983 + ], + [ + 67.8257961812285, + 29.32410510824853 + ], + [ + 68.05548154819586, + 29.32410510824853 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 29.32410510824853 + ], + [ + 67.8257961812285, + 29.32410510824853 + ], + [ + 67.94063886471218, + 29.12945737332008 + ], + [ + 68.05548154819586, + 29.32410510824853 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 29.32410510824853 + ], + [ + 67.94063886471218, + 29.12945737332008 + ], + [ + 68.17032423167953, + 29.12945737332008 + ], + [ + 68.05548154819586, + 29.32410510824853 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 29.32410510824853 + ], + [ + 68.17032423167953, + 29.12945737332008 + ], + [ + 68.28516691516322, + 29.32410510824853 + ], + [ + 68.05548154819586, + 29.32410510824853 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 29.71340057810544 + ], + [ + 68.28516691516322, + 29.71340057810544 + ], + [ + 68.17032423167953, + 29.90804831303389 + ], + [ + 68.05548154819586, + 29.71340057810544 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 29.71340057810544 + ], + [ + 68.17032423167953, + 29.90804831303389 + ], + [ + 67.94063886471218, + 29.90804831303389 + ], + [ + 68.05548154819586, + 29.71340057810544 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 29.71340057810544 + ], + [ + 67.94063886471218, + 29.90804831303389 + ], + [ + 67.8257961812285, + 29.71340057810544 + ], + [ + 68.05548154819586, + 29.71340057810544 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 29.71340057810544 + ], + [ + 67.8257961812285, + 29.71340057810544 + ], + [ + 67.94063886471218, + 29.518752843176987 + ], + [ + 68.05548154819586, + 29.71340057810544 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 29.71340057810544 + ], + [ + 67.94063886471218, + 29.518752843176987 + ], + [ + 68.17032423167953, + 29.518752843176987 + ], + [ + 68.05548154819586, + 29.71340057810544 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 29.71340057810544 + ], + [ + 68.17032423167953, + 29.518752843176987 + ], + [ + 68.28516691516322, + 29.71340057810544 + ], + [ + 68.05548154819586, + 29.71340057810544 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 30.102696047962343 + ], + [ + 68.28516691516322, + 30.102696047962343 + ], + [ + 68.17032423167953, + 30.297343782890795 + ], + [ + 68.05548154819586, + 30.102696047962343 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 30.102696047962343 + ], + [ + 68.17032423167953, + 30.297343782890795 + ], + [ + 67.94063886471218, + 30.297343782890795 + ], + [ + 68.05548154819586, + 30.102696047962343 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 30.102696047962343 + ], + [ + 67.94063886471218, + 30.297343782890795 + ], + [ + 67.8257961812285, + 30.102696047962343 + ], + [ + 68.05548154819586, + 30.102696047962343 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 30.102696047962343 + ], + [ + 67.8257961812285, + 30.102696047962343 + ], + [ + 67.94063886471218, + 29.90804831303389 + ], + [ + 68.05548154819586, + 30.102696047962343 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 30.102696047962343 + ], + [ + 67.94063886471218, + 29.90804831303389 + ], + [ + 68.17032423167953, + 29.90804831303389 + ], + [ + 68.05548154819586, + 30.102696047962343 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 30.102696047962343 + ], + [ + 68.17032423167953, + 29.90804831303389 + ], + [ + 68.28516691516322, + 30.102696047962343 + ], + [ + 68.05548154819586, + 30.102696047962343 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 30.49199151781925 + ], + [ + 68.28516691516322, + 30.49199151781925 + ], + [ + 68.17032423167953, + 30.686639252747703 + ], + [ + 68.05548154819586, + 30.49199151781925 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 30.49199151781925 + ], + [ + 68.17032423167953, + 30.686639252747703 + ], + [ + 67.94063886471218, + 30.686639252747703 + ], + [ + 68.05548154819586, + 30.49199151781925 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 30.49199151781925 + ], + [ + 67.94063886471218, + 30.686639252747703 + ], + [ + 67.8257961812285, + 30.49199151781925 + ], + [ + 68.05548154819586, + 30.49199151781925 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 30.49199151781925 + ], + [ + 67.8257961812285, + 30.49199151781925 + ], + [ + 67.94063886471218, + 30.2973437828908 + ], + [ + 68.05548154819586, + 30.49199151781925 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 30.49199151781925 + ], + [ + 67.94063886471218, + 30.2973437828908 + ], + [ + 68.17032423167953, + 30.2973437828908 + ], + [ + 68.05548154819586, + 30.49199151781925 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 30.49199151781925 + ], + [ + 68.17032423167953, + 30.2973437828908 + ], + [ + 68.28516691516322, + 30.49199151781925 + ], + [ + 68.05548154819586, + 30.49199151781925 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 30.88128698767616 + ], + [ + 68.28516691516322, + 30.88128698767616 + ], + [ + 68.17032423167953, + 31.07593472260461 + ], + [ + 68.05548154819586, + 30.88128698767616 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 30.88128698767616 + ], + [ + 68.17032423167953, + 31.07593472260461 + ], + [ + 67.94063886471218, + 31.07593472260461 + ], + [ + 68.05548154819586, + 30.88128698767616 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 30.88128698767616 + ], + [ + 67.94063886471218, + 31.07593472260461 + ], + [ + 67.8257961812285, + 30.88128698767616 + ], + [ + 68.05548154819586, + 30.88128698767616 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 30.88128698767616 + ], + [ + 67.8257961812285, + 30.88128698767616 + ], + [ + 67.94063886471218, + 30.686639252747707 + ], + [ + 68.05548154819586, + 30.88128698767616 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 30.88128698767616 + ], + [ + 67.94063886471218, + 30.686639252747707 + ], + [ + 68.17032423167953, + 30.686639252747707 + ], + [ + 68.05548154819586, + 30.88128698767616 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 30.88128698767616 + ], + [ + 68.17032423167953, + 30.686639252747707 + ], + [ + 68.28516691516322, + 30.88128698767616 + ], + [ + 68.05548154819586, + 30.88128698767616 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 31.270582457533063 + ], + [ + 68.28516691516322, + 31.270582457533063 + ], + [ + 68.17032423167953, + 31.465230192461515 + ], + [ + 68.05548154819586, + 31.270582457533063 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 31.270582457533063 + ], + [ + 68.17032423167953, + 31.465230192461515 + ], + [ + 67.94063886471218, + 31.465230192461515 + ], + [ + 68.05548154819586, + 31.270582457533063 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 31.270582457533063 + ], + [ + 67.94063886471218, + 31.465230192461515 + ], + [ + 67.8257961812285, + 31.270582457533063 + ], + [ + 68.05548154819586, + 31.270582457533063 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 31.270582457533063 + ], + [ + 67.8257961812285, + 31.270582457533063 + ], + [ + 67.94063886471218, + 31.07593472260461 + ], + [ + 68.05548154819586, + 31.270582457533063 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 31.270582457533063 + ], + [ + 67.94063886471218, + 31.07593472260461 + ], + [ + 68.17032423167953, + 31.07593472260461 + ], + [ + 68.05548154819586, + 31.270582457533063 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 31.270582457533063 + ], + [ + 68.17032423167953, + 31.07593472260461 + ], + [ + 68.28516691516322, + 31.270582457533063 + ], + [ + 68.05548154819586, + 31.270582457533063 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 31.65987792738997 + ], + [ + 68.28516691516322, + 31.65987792738997 + ], + [ + 68.17032423167953, + 31.854525662318423 + ], + [ + 68.05548154819586, + 31.65987792738997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 31.65987792738997 + ], + [ + 68.17032423167953, + 31.854525662318423 + ], + [ + 67.94063886471218, + 31.854525662318423 + ], + [ + 68.05548154819586, + 31.65987792738997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 31.65987792738997 + ], + [ + 67.94063886471218, + 31.854525662318423 + ], + [ + 67.8257961812285, + 31.65987792738997 + ], + [ + 68.05548154819586, + 31.65987792738997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 31.65987792738997 + ], + [ + 67.8257961812285, + 31.65987792738997 + ], + [ + 67.94063886471218, + 31.46523019246152 + ], + [ + 68.05548154819586, + 31.65987792738997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 31.65987792738997 + ], + [ + 67.94063886471218, + 31.46523019246152 + ], + [ + 68.17032423167953, + 31.46523019246152 + ], + [ + 68.05548154819586, + 31.65987792738997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 31.65987792738997 + ], + [ + 68.17032423167953, + 31.46523019246152 + ], + [ + 68.28516691516322, + 31.65987792738997 + ], + [ + 68.05548154819586, + 31.65987792738997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 32.049173397246875 + ], + [ + 68.28516691516322, + 32.049173397246875 + ], + [ + 68.17032423167953, + 32.24382113217533 + ], + [ + 68.05548154819586, + 32.049173397246875 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 32.049173397246875 + ], + [ + 68.17032423167953, + 32.24382113217533 + ], + [ + 67.94063886471218, + 32.24382113217533 + ], + [ + 68.05548154819586, + 32.049173397246875 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 32.049173397246875 + ], + [ + 67.94063886471218, + 32.24382113217533 + ], + [ + 67.8257961812285, + 32.049173397246875 + ], + [ + 68.05548154819586, + 32.049173397246875 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 32.049173397246875 + ], + [ + 67.8257961812285, + 32.049173397246875 + ], + [ + 67.94063886471218, + 31.854525662318423 + ], + [ + 68.05548154819586, + 32.049173397246875 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 32.049173397246875 + ], + [ + 67.94063886471218, + 31.854525662318423 + ], + [ + 68.17032423167953, + 31.854525662318423 + ], + [ + 68.05548154819586, + 32.049173397246875 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 32.049173397246875 + ], + [ + 68.17032423167953, + 31.854525662318423 + ], + [ + 68.28516691516322, + 32.049173397246875 + ], + [ + 68.05548154819586, + 32.049173397246875 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 32.438468867103786 + ], + [ + 68.28516691516322, + 32.438468867103786 + ], + [ + 68.17032423167953, + 32.63311660203224 + ], + [ + 68.05548154819586, + 32.438468867103786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 32.438468867103786 + ], + [ + 68.17032423167953, + 32.63311660203224 + ], + [ + 67.94063886471218, + 32.63311660203224 + ], + [ + 68.05548154819586, + 32.438468867103786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 32.438468867103786 + ], + [ + 67.94063886471218, + 32.63311660203224 + ], + [ + 67.8257961812285, + 32.438468867103786 + ], + [ + 68.05548154819586, + 32.438468867103786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 32.438468867103786 + ], + [ + 67.8257961812285, + 32.438468867103786 + ], + [ + 67.94063886471218, + 32.243821132175334 + ], + [ + 68.05548154819586, + 32.438468867103786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 32.438468867103786 + ], + [ + 67.94063886471218, + 32.243821132175334 + ], + [ + 68.17032423167953, + 32.243821132175334 + ], + [ + 68.05548154819586, + 32.438468867103786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 32.438468867103786 + ], + [ + 68.17032423167953, + 32.243821132175334 + ], + [ + 68.28516691516322, + 32.438468867103786 + ], + [ + 68.05548154819586, + 32.438468867103786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 32.82776433696069 + ], + [ + 68.28516691516322, + 32.82776433696069 + ], + [ + 68.17032423167953, + 33.02241207188914 + ], + [ + 68.05548154819586, + 32.82776433696069 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 32.82776433696069 + ], + [ + 68.17032423167953, + 33.02241207188914 + ], + [ + 67.94063886471218, + 33.02241207188914 + ], + [ + 68.05548154819586, + 32.82776433696069 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 32.82776433696069 + ], + [ + 67.94063886471218, + 33.02241207188914 + ], + [ + 67.8257961812285, + 32.82776433696069 + ], + [ + 68.05548154819586, + 32.82776433696069 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 32.82776433696069 + ], + [ + 67.8257961812285, + 32.82776433696069 + ], + [ + 67.94063886471218, + 32.63311660203224 + ], + [ + 68.05548154819586, + 32.82776433696069 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 32.82776433696069 + ], + [ + 67.94063886471218, + 32.63311660203224 + ], + [ + 68.17032423167953, + 32.63311660203224 + ], + [ + 68.05548154819586, + 32.82776433696069 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 32.82776433696069 + ], + [ + 68.17032423167953, + 32.63311660203224 + ], + [ + 68.28516691516322, + 32.82776433696069 + ], + [ + 68.05548154819586, + 32.82776433696069 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 33.217059806817595 + ], + [ + 68.28516691516322, + 33.217059806817595 + ], + [ + 68.17032423167953, + 33.41170754174605 + ], + [ + 68.05548154819586, + 33.217059806817595 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 33.217059806817595 + ], + [ + 68.17032423167953, + 33.41170754174605 + ], + [ + 67.94063886471218, + 33.41170754174605 + ], + [ + 68.05548154819586, + 33.217059806817595 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 33.217059806817595 + ], + [ + 67.94063886471218, + 33.41170754174605 + ], + [ + 67.8257961812285, + 33.217059806817595 + ], + [ + 68.05548154819586, + 33.217059806817595 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 33.217059806817595 + ], + [ + 67.8257961812285, + 33.217059806817595 + ], + [ + 67.94063886471218, + 33.02241207188914 + ], + [ + 68.05548154819586, + 33.217059806817595 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 33.217059806817595 + ], + [ + 67.94063886471218, + 33.02241207188914 + ], + [ + 68.17032423167953, + 33.02241207188914 + ], + [ + 68.05548154819586, + 33.217059806817595 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 33.217059806817595 + ], + [ + 68.17032423167953, + 33.02241207188914 + ], + [ + 68.28516691516322, + 33.217059806817595 + ], + [ + 68.05548154819586, + 33.217059806817595 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 33.6063552766745 + ], + [ + 68.28516691516322, + 33.6063552766745 + ], + [ + 68.17032423167953, + 33.80100301160295 + ], + [ + 68.05548154819586, + 33.6063552766745 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 33.6063552766745 + ], + [ + 68.17032423167953, + 33.80100301160295 + ], + [ + 67.94063886471218, + 33.80100301160295 + ], + [ + 68.05548154819586, + 33.6063552766745 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 33.6063552766745 + ], + [ + 67.94063886471218, + 33.80100301160295 + ], + [ + 67.8257961812285, + 33.6063552766745 + ], + [ + 68.05548154819586, + 33.6063552766745 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 33.6063552766745 + ], + [ + 67.8257961812285, + 33.6063552766745 + ], + [ + 67.94063886471218, + 33.41170754174605 + ], + [ + 68.05548154819586, + 33.6063552766745 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 33.6063552766745 + ], + [ + 67.94063886471218, + 33.41170754174605 + ], + [ + 68.17032423167953, + 33.41170754174605 + ], + [ + 68.05548154819586, + 33.6063552766745 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 33.6063552766745 + ], + [ + 68.17032423167953, + 33.41170754174605 + ], + [ + 68.28516691516322, + 33.6063552766745 + ], + [ + 68.05548154819586, + 33.6063552766745 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 33.9956507465314 + ], + [ + 68.28516691516322, + 33.9956507465314 + ], + [ + 68.17032423167953, + 34.190298481459855 + ], + [ + 68.05548154819586, + 33.9956507465314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 33.9956507465314 + ], + [ + 68.17032423167953, + 34.190298481459855 + ], + [ + 67.94063886471218, + 34.190298481459855 + ], + [ + 68.05548154819586, + 33.9956507465314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 33.9956507465314 + ], + [ + 67.94063886471218, + 34.190298481459855 + ], + [ + 67.8257961812285, + 33.9956507465314 + ], + [ + 68.05548154819586, + 33.9956507465314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 33.9956507465314 + ], + [ + 67.8257961812285, + 33.9956507465314 + ], + [ + 67.94063886471218, + 33.80100301160295 + ], + [ + 68.05548154819586, + 33.9956507465314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 33.9956507465314 + ], + [ + 67.94063886471218, + 33.80100301160295 + ], + [ + 68.17032423167953, + 33.80100301160295 + ], + [ + 68.05548154819586, + 33.9956507465314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 33.9956507465314 + ], + [ + 68.17032423167953, + 33.80100301160295 + ], + [ + 68.28516691516322, + 33.9956507465314 + ], + [ + 68.05548154819586, + 33.9956507465314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 34.384946216388315 + ], + [ + 68.28516691516322, + 34.384946216388315 + ], + [ + 68.17032423167953, + 34.57959395131677 + ], + [ + 68.05548154819586, + 34.384946216388315 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 34.384946216388315 + ], + [ + 68.17032423167953, + 34.57959395131677 + ], + [ + 67.94063886471218, + 34.57959395131677 + ], + [ + 68.05548154819586, + 34.384946216388315 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 34.384946216388315 + ], + [ + 67.94063886471218, + 34.57959395131677 + ], + [ + 67.8257961812285, + 34.384946216388315 + ], + [ + 68.05548154819586, + 34.384946216388315 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 34.384946216388315 + ], + [ + 67.8257961812285, + 34.384946216388315 + ], + [ + 67.94063886471218, + 34.19029848145986 + ], + [ + 68.05548154819586, + 34.384946216388315 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 34.384946216388315 + ], + [ + 67.94063886471218, + 34.19029848145986 + ], + [ + 68.17032423167953, + 34.19029848145986 + ], + [ + 68.05548154819586, + 34.384946216388315 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 34.384946216388315 + ], + [ + 68.17032423167953, + 34.19029848145986 + ], + [ + 68.28516691516322, + 34.384946216388315 + ], + [ + 68.05548154819586, + 34.384946216388315 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 34.774241686245226 + ], + [ + 68.28516691516322, + 34.774241686245226 + ], + [ + 68.17032423167953, + 34.96888942117368 + ], + [ + 68.05548154819586, + 34.774241686245226 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 34.774241686245226 + ], + [ + 68.17032423167953, + 34.96888942117368 + ], + [ + 67.94063886471218, + 34.96888942117368 + ], + [ + 68.05548154819586, + 34.774241686245226 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 34.774241686245226 + ], + [ + 67.94063886471218, + 34.96888942117368 + ], + [ + 67.8257961812285, + 34.774241686245226 + ], + [ + 68.05548154819586, + 34.774241686245226 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 34.774241686245226 + ], + [ + 67.8257961812285, + 34.774241686245226 + ], + [ + 67.94063886471218, + 34.579593951316774 + ], + [ + 68.05548154819586, + 34.774241686245226 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 34.774241686245226 + ], + [ + 67.94063886471218, + 34.579593951316774 + ], + [ + 68.17032423167953, + 34.579593951316774 + ], + [ + 68.05548154819586, + 34.774241686245226 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 34.774241686245226 + ], + [ + 68.17032423167953, + 34.579593951316774 + ], + [ + 68.28516691516322, + 34.774241686245226 + ], + [ + 68.05548154819586, + 34.774241686245226 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 35.16353715610213 + ], + [ + 68.28516691516322, + 35.16353715610213 + ], + [ + 68.17032423167953, + 35.35818489103058 + ], + [ + 68.05548154819586, + 35.16353715610213 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 35.16353715610213 + ], + [ + 68.17032423167953, + 35.35818489103058 + ], + [ + 67.94063886471218, + 35.35818489103058 + ], + [ + 68.05548154819586, + 35.16353715610213 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 35.16353715610213 + ], + [ + 67.94063886471218, + 35.35818489103058 + ], + [ + 67.8257961812285, + 35.16353715610213 + ], + [ + 68.05548154819586, + 35.16353715610213 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 35.16353715610213 + ], + [ + 67.8257961812285, + 35.16353715610213 + ], + [ + 67.94063886471218, + 34.96888942117368 + ], + [ + 68.05548154819586, + 35.16353715610213 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 35.16353715610213 + ], + [ + 67.94063886471218, + 34.96888942117368 + ], + [ + 68.17032423167953, + 34.96888942117368 + ], + [ + 68.05548154819586, + 35.16353715610213 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 35.16353715610213 + ], + [ + 68.17032423167953, + 34.96888942117368 + ], + [ + 68.28516691516322, + 35.16353715610213 + ], + [ + 68.05548154819586, + 35.16353715610213 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 35.552832625959034 + ], + [ + 68.28516691516322, + 35.552832625959034 + ], + [ + 68.17032423167953, + 35.74748036088749 + ], + [ + 68.05548154819586, + 35.552832625959034 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 35.552832625959034 + ], + [ + 68.17032423167953, + 35.74748036088749 + ], + [ + 67.94063886471218, + 35.74748036088749 + ], + [ + 68.05548154819586, + 35.552832625959034 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 35.552832625959034 + ], + [ + 67.94063886471218, + 35.74748036088749 + ], + [ + 67.8257961812285, + 35.552832625959034 + ], + [ + 68.05548154819586, + 35.552832625959034 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 35.552832625959034 + ], + [ + 67.8257961812285, + 35.552832625959034 + ], + [ + 67.94063886471218, + 35.35818489103058 + ], + [ + 68.05548154819586, + 35.552832625959034 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 35.552832625959034 + ], + [ + 67.94063886471218, + 35.35818489103058 + ], + [ + 68.17032423167953, + 35.35818489103058 + ], + [ + 68.05548154819586, + 35.552832625959034 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 35.552832625959034 + ], + [ + 68.17032423167953, + 35.35818489103058 + ], + [ + 68.28516691516322, + 35.552832625959034 + ], + [ + 68.05548154819586, + 35.552832625959034 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 35.94212809581594 + ], + [ + 68.28516691516322, + 35.94212809581594 + ], + [ + 68.17032423167953, + 36.13677583074439 + ], + [ + 68.05548154819586, + 35.94212809581594 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 35.94212809581594 + ], + [ + 68.17032423167953, + 36.13677583074439 + ], + [ + 67.94063886471218, + 36.13677583074439 + ], + [ + 68.05548154819586, + 35.94212809581594 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 35.94212809581594 + ], + [ + 67.94063886471218, + 36.13677583074439 + ], + [ + 67.8257961812285, + 35.94212809581594 + ], + [ + 68.05548154819586, + 35.94212809581594 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 35.94212809581594 + ], + [ + 67.8257961812285, + 35.94212809581594 + ], + [ + 67.94063886471218, + 35.74748036088749 + ], + [ + 68.05548154819586, + 35.94212809581594 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 35.94212809581594 + ], + [ + 67.94063886471218, + 35.74748036088749 + ], + [ + 68.17032423167953, + 35.74748036088749 + ], + [ + 68.05548154819586, + 35.94212809581594 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 35.94212809581594 + ], + [ + 68.17032423167953, + 35.74748036088749 + ], + [ + 68.28516691516322, + 35.94212809581594 + ], + [ + 68.05548154819586, + 35.94212809581594 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 36.33142356567284 + ], + [ + 68.28516691516322, + 36.33142356567284 + ], + [ + 68.17032423167953, + 36.526071300601295 + ], + [ + 68.05548154819586, + 36.33142356567284 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 36.33142356567284 + ], + [ + 68.17032423167953, + 36.526071300601295 + ], + [ + 67.94063886471218, + 36.526071300601295 + ], + [ + 68.05548154819586, + 36.33142356567284 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 36.33142356567284 + ], + [ + 67.94063886471218, + 36.526071300601295 + ], + [ + 67.8257961812285, + 36.33142356567284 + ], + [ + 68.05548154819586, + 36.33142356567284 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 36.33142356567284 + ], + [ + 67.8257961812285, + 36.33142356567284 + ], + [ + 67.94063886471218, + 36.13677583074439 + ], + [ + 68.05548154819586, + 36.33142356567284 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 36.33142356567284 + ], + [ + 67.94063886471218, + 36.13677583074439 + ], + [ + 68.17032423167953, + 36.13677583074439 + ], + [ + 68.05548154819586, + 36.33142356567284 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 36.33142356567284 + ], + [ + 68.17032423167953, + 36.13677583074439 + ], + [ + 68.28516691516322, + 36.33142356567284 + ], + [ + 68.05548154819586, + 36.33142356567284 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 36.720719035529754 + ], + [ + 68.28516691516322, + 36.720719035529754 + ], + [ + 68.17032423167953, + 36.915366770458206 + ], + [ + 68.05548154819586, + 36.720719035529754 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 36.720719035529754 + ], + [ + 68.17032423167953, + 36.915366770458206 + ], + [ + 67.94063886471218, + 36.915366770458206 + ], + [ + 68.05548154819586, + 36.720719035529754 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 36.720719035529754 + ], + [ + 67.94063886471218, + 36.915366770458206 + ], + [ + 67.8257961812285, + 36.720719035529754 + ], + [ + 68.05548154819586, + 36.720719035529754 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 36.720719035529754 + ], + [ + 67.8257961812285, + 36.720719035529754 + ], + [ + 67.94063886471218, + 36.5260713006013 + ], + [ + 68.05548154819586, + 36.720719035529754 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 36.720719035529754 + ], + [ + 67.94063886471218, + 36.5260713006013 + ], + [ + 68.17032423167953, + 36.5260713006013 + ], + [ + 68.05548154819586, + 36.720719035529754 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 36.720719035529754 + ], + [ + 68.17032423167953, + 36.5260713006013 + ], + [ + 68.28516691516322, + 36.720719035529754 + ], + [ + 68.05548154819586, + 36.720719035529754 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 37.11001450538666 + ], + [ + 68.28516691516322, + 37.11001450538666 + ], + [ + 68.17032423167953, + 37.30466224031511 + ], + [ + 68.05548154819586, + 37.11001450538666 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 37.11001450538666 + ], + [ + 68.17032423167953, + 37.30466224031511 + ], + [ + 67.94063886471218, + 37.30466224031511 + ], + [ + 68.05548154819586, + 37.11001450538666 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 37.11001450538666 + ], + [ + 67.94063886471218, + 37.30466224031511 + ], + [ + 67.8257961812285, + 37.11001450538666 + ], + [ + 68.05548154819586, + 37.11001450538666 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 37.11001450538666 + ], + [ + 67.8257961812285, + 37.11001450538666 + ], + [ + 67.94063886471218, + 36.915366770458206 + ], + [ + 68.05548154819586, + 37.11001450538666 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 37.11001450538666 + ], + [ + 67.94063886471218, + 36.915366770458206 + ], + [ + 68.17032423167953, + 36.915366770458206 + ], + [ + 68.05548154819586, + 37.11001450538666 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 37.11001450538666 + ], + [ + 68.17032423167953, + 36.915366770458206 + ], + [ + 68.28516691516322, + 37.11001450538666 + ], + [ + 68.05548154819586, + 37.11001450538666 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 37.49930997524357 + ], + [ + 68.28516691516322, + 37.49930997524357 + ], + [ + 68.17032423167953, + 37.69395771017202 + ], + [ + 68.05548154819586, + 37.49930997524357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 37.49930997524357 + ], + [ + 68.17032423167953, + 37.69395771017202 + ], + [ + 67.94063886471218, + 37.69395771017202 + ], + [ + 68.05548154819586, + 37.49930997524357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 37.49930997524357 + ], + [ + 67.94063886471218, + 37.69395771017202 + ], + [ + 67.8257961812285, + 37.49930997524357 + ], + [ + 68.05548154819586, + 37.49930997524357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 37.49930997524357 + ], + [ + 67.8257961812285, + 37.49930997524357 + ], + [ + 67.94063886471218, + 37.30466224031512 + ], + [ + 68.05548154819586, + 37.49930997524357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 37.49930997524357 + ], + [ + 67.94063886471218, + 37.30466224031512 + ], + [ + 68.17032423167953, + 37.30466224031512 + ], + [ + 68.05548154819586, + 37.49930997524357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 37.49930997524357 + ], + [ + 68.17032423167953, + 37.30466224031512 + ], + [ + 68.28516691516322, + 37.49930997524357 + ], + [ + 68.05548154819586, + 37.49930997524357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 37.888605445100474 + ], + [ + 68.28516691516322, + 37.888605445100474 + ], + [ + 68.17032423167953, + 38.083253180028926 + ], + [ + 68.05548154819586, + 37.888605445100474 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 37.888605445100474 + ], + [ + 68.17032423167953, + 38.083253180028926 + ], + [ + 67.94063886471218, + 38.083253180028926 + ], + [ + 68.05548154819586, + 37.888605445100474 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 37.888605445100474 + ], + [ + 67.94063886471218, + 38.083253180028926 + ], + [ + 67.8257961812285, + 37.888605445100474 + ], + [ + 68.05548154819586, + 37.888605445100474 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 37.888605445100474 + ], + [ + 67.8257961812285, + 37.888605445100474 + ], + [ + 67.94063886471218, + 37.69395771017202 + ], + [ + 68.05548154819586, + 37.888605445100474 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 37.888605445100474 + ], + [ + 67.94063886471218, + 37.69395771017202 + ], + [ + 68.17032423167953, + 37.69395771017202 + ], + [ + 68.05548154819586, + 37.888605445100474 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 37.888605445100474 + ], + [ + 68.17032423167953, + 37.69395771017202 + ], + [ + 68.28516691516322, + 37.888605445100474 + ], + [ + 68.05548154819586, + 37.888605445100474 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 38.27790091495738 + ], + [ + 68.28516691516322, + 38.27790091495738 + ], + [ + 68.17032423167953, + 38.47254864988583 + ], + [ + 68.05548154819586, + 38.27790091495738 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 38.27790091495738 + ], + [ + 68.17032423167953, + 38.47254864988583 + ], + [ + 67.94063886471218, + 38.47254864988583 + ], + [ + 68.05548154819586, + 38.27790091495738 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 38.27790091495738 + ], + [ + 67.94063886471218, + 38.47254864988583 + ], + [ + 67.8257961812285, + 38.27790091495738 + ], + [ + 68.05548154819586, + 38.27790091495738 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 38.27790091495738 + ], + [ + 67.8257961812285, + 38.27790091495738 + ], + [ + 67.94063886471218, + 38.083253180028926 + ], + [ + 68.05548154819586, + 38.27790091495738 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 38.27790091495738 + ], + [ + 67.94063886471218, + 38.083253180028926 + ], + [ + 68.17032423167953, + 38.083253180028926 + ], + [ + 68.05548154819586, + 38.27790091495738 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 38.27790091495738 + ], + [ + 68.17032423167953, + 38.083253180028926 + ], + [ + 68.28516691516322, + 38.27790091495738 + ], + [ + 68.05548154819586, + 38.27790091495738 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 38.66719638481428 + ], + [ + 68.28516691516322, + 38.66719638481428 + ], + [ + 68.17032423167953, + 38.861844119742734 + ], + [ + 68.05548154819586, + 38.66719638481428 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 38.66719638481428 + ], + [ + 68.17032423167953, + 38.861844119742734 + ], + [ + 67.94063886471218, + 38.861844119742734 + ], + [ + 68.05548154819586, + 38.66719638481428 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 38.66719638481428 + ], + [ + 67.94063886471218, + 38.861844119742734 + ], + [ + 67.8257961812285, + 38.66719638481428 + ], + [ + 68.05548154819586, + 38.66719638481428 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 38.66719638481428 + ], + [ + 67.8257961812285, + 38.66719638481428 + ], + [ + 67.94063886471218, + 38.47254864988583 + ], + [ + 68.05548154819586, + 38.66719638481428 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 38.66719638481428 + ], + [ + 67.94063886471218, + 38.47254864988583 + ], + [ + 68.17032423167953, + 38.47254864988583 + ], + [ + 68.05548154819586, + 38.66719638481428 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 38.66719638481428 + ], + [ + 68.17032423167953, + 38.47254864988583 + ], + [ + 68.28516691516322, + 38.66719638481428 + ], + [ + 68.05548154819586, + 38.66719638481428 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 39.05649185467119 + ], + [ + 68.28516691516322, + 39.05649185467119 + ], + [ + 68.17032423167953, + 39.25113958959964 + ], + [ + 68.05548154819586, + 39.05649185467119 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 39.05649185467119 + ], + [ + 68.17032423167953, + 39.25113958959964 + ], + [ + 67.94063886471218, + 39.25113958959964 + ], + [ + 68.05548154819586, + 39.05649185467119 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 39.05649185467119 + ], + [ + 67.94063886471218, + 39.25113958959964 + ], + [ + 67.8257961812285, + 39.05649185467119 + ], + [ + 68.05548154819586, + 39.05649185467119 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 39.05649185467119 + ], + [ + 67.8257961812285, + 39.05649185467119 + ], + [ + 67.94063886471218, + 38.861844119742734 + ], + [ + 68.05548154819586, + 39.05649185467119 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 39.05649185467119 + ], + [ + 67.94063886471218, + 38.861844119742734 + ], + [ + 68.17032423167953, + 38.861844119742734 + ], + [ + 68.05548154819586, + 39.05649185467119 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 39.05649185467119 + ], + [ + 68.17032423167953, + 38.861844119742734 + ], + [ + 68.28516691516322, + 39.05649185467119 + ], + [ + 68.05548154819586, + 39.05649185467119 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 39.4457873245281 + ], + [ + 68.28516691516322, + 39.4457873245281 + ], + [ + 68.17032423167953, + 39.64043505945655 + ], + [ + 68.05548154819586, + 39.4457873245281 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 39.4457873245281 + ], + [ + 68.17032423167953, + 39.64043505945655 + ], + [ + 67.94063886471218, + 39.64043505945655 + ], + [ + 68.05548154819586, + 39.4457873245281 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 39.4457873245281 + ], + [ + 67.94063886471218, + 39.64043505945655 + ], + [ + 67.8257961812285, + 39.4457873245281 + ], + [ + 68.05548154819586, + 39.4457873245281 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 39.4457873245281 + ], + [ + 67.8257961812285, + 39.4457873245281 + ], + [ + 67.94063886471218, + 39.251139589599646 + ], + [ + 68.05548154819586, + 39.4457873245281 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 39.4457873245281 + ], + [ + 67.94063886471218, + 39.251139589599646 + ], + [ + 68.17032423167953, + 39.251139589599646 + ], + [ + 68.05548154819586, + 39.4457873245281 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 39.4457873245281 + ], + [ + 68.17032423167953, + 39.251139589599646 + ], + [ + 68.28516691516322, + 39.4457873245281 + ], + [ + 68.05548154819586, + 39.4457873245281 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 39.835082794385 + ], + [ + 68.28516691516322, + 39.835082794385 + ], + [ + 68.17032423167953, + 40.029730529313454 + ], + [ + 68.05548154819586, + 39.835082794385 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 39.835082794385 + ], + [ + 68.17032423167953, + 40.029730529313454 + ], + [ + 67.94063886471218, + 40.029730529313454 + ], + [ + 68.05548154819586, + 39.835082794385 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 39.835082794385 + ], + [ + 67.94063886471218, + 40.029730529313454 + ], + [ + 67.8257961812285, + 39.835082794385 + ], + [ + 68.05548154819586, + 39.835082794385 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 39.835082794385 + ], + [ + 67.8257961812285, + 39.835082794385 + ], + [ + 67.94063886471218, + 39.64043505945655 + ], + [ + 68.05548154819586, + 39.835082794385 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 39.835082794385 + ], + [ + 67.94063886471218, + 39.64043505945655 + ], + [ + 68.17032423167953, + 39.64043505945655 + ], + [ + 68.05548154819586, + 39.835082794385 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 39.835082794385 + ], + [ + 68.17032423167953, + 39.64043505945655 + ], + [ + 68.28516691516322, + 39.835082794385 + ], + [ + 68.05548154819586, + 39.835082794385 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 40.22437826424191 + ], + [ + 68.28516691516322, + 40.22437826424191 + ], + [ + 68.17032423167953, + 40.419025999170366 + ], + [ + 68.05548154819586, + 40.22437826424191 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 40.22437826424191 + ], + [ + 68.17032423167953, + 40.419025999170366 + ], + [ + 67.94063886471218, + 40.419025999170366 + ], + [ + 68.05548154819586, + 40.22437826424191 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 40.22437826424191 + ], + [ + 67.94063886471218, + 40.419025999170366 + ], + [ + 67.8257961812285, + 40.22437826424191 + ], + [ + 68.05548154819586, + 40.22437826424191 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 40.22437826424191 + ], + [ + 67.8257961812285, + 40.22437826424191 + ], + [ + 67.94063886471218, + 40.02973052931346 + ], + [ + 68.05548154819586, + 40.22437826424191 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 40.22437826424191 + ], + [ + 67.94063886471218, + 40.02973052931346 + ], + [ + 68.17032423167953, + 40.02973052931346 + ], + [ + 68.05548154819586, + 40.22437826424191 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 40.22437826424191 + ], + [ + 68.17032423167953, + 40.02973052931346 + ], + [ + 68.28516691516322, + 40.22437826424191 + ], + [ + 68.05548154819586, + 40.22437826424191 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 40.61367373409882 + ], + [ + 68.28516691516322, + 40.61367373409882 + ], + [ + 68.17032423167953, + 40.80832146902727 + ], + [ + 68.05548154819586, + 40.61367373409882 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 40.61367373409882 + ], + [ + 68.17032423167953, + 40.80832146902727 + ], + [ + 67.94063886471218, + 40.80832146902727 + ], + [ + 68.05548154819586, + 40.61367373409882 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 40.61367373409882 + ], + [ + 67.94063886471218, + 40.80832146902727 + ], + [ + 67.8257961812285, + 40.61367373409882 + ], + [ + 68.05548154819586, + 40.61367373409882 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 40.61367373409882 + ], + [ + 67.8257961812285, + 40.61367373409882 + ], + [ + 67.94063886471218, + 40.419025999170366 + ], + [ + 68.05548154819586, + 40.61367373409882 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 40.61367373409882 + ], + [ + 67.94063886471218, + 40.419025999170366 + ], + [ + 68.17032423167953, + 40.419025999170366 + ], + [ + 68.05548154819586, + 40.61367373409882 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 40.61367373409882 + ], + [ + 68.17032423167953, + 40.419025999170366 + ], + [ + 68.28516691516322, + 40.61367373409882 + ], + [ + 68.05548154819586, + 40.61367373409882 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 41.00296920395572 + ], + [ + 68.28516691516322, + 41.00296920395572 + ], + [ + 68.17032423167953, + 41.197616938884174 + ], + [ + 68.05548154819586, + 41.00296920395572 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 41.00296920395572 + ], + [ + 68.17032423167953, + 41.197616938884174 + ], + [ + 67.94063886471218, + 41.197616938884174 + ], + [ + 68.05548154819586, + 41.00296920395572 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 41.00296920395572 + ], + [ + 67.94063886471218, + 41.197616938884174 + ], + [ + 67.8257961812285, + 41.00296920395572 + ], + [ + 68.05548154819586, + 41.00296920395572 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 41.00296920395572 + ], + [ + 67.8257961812285, + 41.00296920395572 + ], + [ + 67.94063886471218, + 40.80832146902727 + ], + [ + 68.05548154819586, + 41.00296920395572 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 41.00296920395572 + ], + [ + 67.94063886471218, + 40.80832146902727 + ], + [ + 68.17032423167953, + 40.80832146902727 + ], + [ + 68.05548154819586, + 41.00296920395572 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 41.00296920395572 + ], + [ + 68.17032423167953, + 40.80832146902727 + ], + [ + 68.28516691516322, + 41.00296920395572 + ], + [ + 68.05548154819586, + 41.00296920395572 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 41.392264673812626 + ], + [ + 68.28516691516322, + 41.392264673812626 + ], + [ + 68.17032423167953, + 41.58691240874108 + ], + [ + 68.05548154819586, + 41.392264673812626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 41.392264673812626 + ], + [ + 68.17032423167953, + 41.58691240874108 + ], + [ + 67.94063886471218, + 41.58691240874108 + ], + [ + 68.05548154819586, + 41.392264673812626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 41.392264673812626 + ], + [ + 67.94063886471218, + 41.58691240874108 + ], + [ + 67.8257961812285, + 41.392264673812626 + ], + [ + 68.05548154819586, + 41.392264673812626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 41.392264673812626 + ], + [ + 67.8257961812285, + 41.392264673812626 + ], + [ + 67.94063886471218, + 41.197616938884174 + ], + [ + 68.05548154819586, + 41.392264673812626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 41.392264673812626 + ], + [ + 67.94063886471218, + 41.197616938884174 + ], + [ + 68.17032423167953, + 41.197616938884174 + ], + [ + 68.05548154819586, + 41.392264673812626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 41.392264673812626 + ], + [ + 68.17032423167953, + 41.197616938884174 + ], + [ + 68.28516691516322, + 41.392264673812626 + ], + [ + 68.05548154819586, + 41.392264673812626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 41.78156014366953 + ], + [ + 68.28516691516322, + 41.78156014366953 + ], + [ + 68.17032423167953, + 41.97620787859798 + ], + [ + 68.05548154819586, + 41.78156014366953 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 41.78156014366953 + ], + [ + 68.17032423167953, + 41.97620787859798 + ], + [ + 67.94063886471218, + 41.97620787859798 + ], + [ + 68.05548154819586, + 41.78156014366953 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 41.78156014366953 + ], + [ + 67.94063886471218, + 41.97620787859798 + ], + [ + 67.8257961812285, + 41.78156014366953 + ], + [ + 68.05548154819586, + 41.78156014366953 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 41.78156014366953 + ], + [ + 67.8257961812285, + 41.78156014366953 + ], + [ + 67.94063886471218, + 41.58691240874108 + ], + [ + 68.05548154819586, + 41.78156014366953 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 41.78156014366953 + ], + [ + 67.94063886471218, + 41.58691240874108 + ], + [ + 68.17032423167953, + 41.58691240874108 + ], + [ + 68.05548154819586, + 41.78156014366953 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 41.78156014366953 + ], + [ + 68.17032423167953, + 41.58691240874108 + ], + [ + 68.28516691516322, + 41.78156014366953 + ], + [ + 68.05548154819586, + 41.78156014366953 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 42.17085561352644 + ], + [ + 68.28516691516322, + 42.17085561352644 + ], + [ + 68.17032423167953, + 42.365503348454894 + ], + [ + 68.05548154819586, + 42.17085561352644 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 42.17085561352644 + ], + [ + 68.17032423167953, + 42.365503348454894 + ], + [ + 67.94063886471218, + 42.365503348454894 + ], + [ + 68.05548154819586, + 42.17085561352644 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 42.17085561352644 + ], + [ + 67.94063886471218, + 42.365503348454894 + ], + [ + 67.8257961812285, + 42.17085561352644 + ], + [ + 68.05548154819586, + 42.17085561352644 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 42.17085561352644 + ], + [ + 67.8257961812285, + 42.17085561352644 + ], + [ + 67.94063886471218, + 41.97620787859799 + ], + [ + 68.05548154819586, + 42.17085561352644 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 42.17085561352644 + ], + [ + 67.94063886471218, + 41.97620787859799 + ], + [ + 68.17032423167953, + 41.97620787859799 + ], + [ + 68.05548154819586, + 42.17085561352644 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 42.17085561352644 + ], + [ + 68.17032423167953, + 41.97620787859799 + ], + [ + 68.28516691516322, + 42.17085561352644 + ], + [ + 68.05548154819586, + 42.17085561352644 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 42.56015108338335 + ], + [ + 68.28516691516322, + 42.56015108338335 + ], + [ + 68.17032423167953, + 42.754798818311805 + ], + [ + 68.05548154819586, + 42.56015108338335 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 42.56015108338335 + ], + [ + 68.17032423167953, + 42.754798818311805 + ], + [ + 67.94063886471218, + 42.754798818311805 + ], + [ + 68.05548154819586, + 42.56015108338335 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 42.56015108338335 + ], + [ + 67.94063886471218, + 42.754798818311805 + ], + [ + 67.8257961812285, + 42.56015108338335 + ], + [ + 68.05548154819586, + 42.56015108338335 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 42.56015108338335 + ], + [ + 67.8257961812285, + 42.56015108338335 + ], + [ + 67.94063886471218, + 42.3655033484549 + ], + [ + 68.05548154819586, + 42.56015108338335 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 42.56015108338335 + ], + [ + 67.94063886471218, + 42.3655033484549 + ], + [ + 68.17032423167953, + 42.3655033484549 + ], + [ + 68.05548154819586, + 42.56015108338335 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 42.56015108338335 + ], + [ + 68.17032423167953, + 42.3655033484549 + ], + [ + 68.28516691516322, + 42.56015108338335 + ], + [ + 68.05548154819586, + 42.56015108338335 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 42.94944655324026 + ], + [ + 68.28516691516322, + 42.94944655324026 + ], + [ + 68.17032423167953, + 43.14409428816871 + ], + [ + 68.05548154819586, + 42.94944655324026 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 42.94944655324026 + ], + [ + 68.17032423167953, + 43.14409428816871 + ], + [ + 67.94063886471218, + 43.14409428816871 + ], + [ + 68.05548154819586, + 42.94944655324026 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 42.94944655324026 + ], + [ + 67.94063886471218, + 43.14409428816871 + ], + [ + 67.8257961812285, + 42.94944655324026 + ], + [ + 68.05548154819586, + 42.94944655324026 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 42.94944655324026 + ], + [ + 67.8257961812285, + 42.94944655324026 + ], + [ + 67.94063886471218, + 42.754798818311805 + ], + [ + 68.05548154819586, + 42.94944655324026 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 42.94944655324026 + ], + [ + 67.94063886471218, + 42.754798818311805 + ], + [ + 68.17032423167953, + 42.754798818311805 + ], + [ + 68.05548154819586, + 42.94944655324026 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 42.94944655324026 + ], + [ + 68.17032423167953, + 42.754798818311805 + ], + [ + 68.28516691516322, + 42.94944655324026 + ], + [ + 68.05548154819586, + 42.94944655324026 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 43.33874202309716 + ], + [ + 68.28516691516322, + 43.33874202309716 + ], + [ + 68.17032423167953, + 43.53338975802561 + ], + [ + 68.05548154819586, + 43.33874202309716 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 43.33874202309716 + ], + [ + 68.17032423167953, + 43.53338975802561 + ], + [ + 67.94063886471218, + 43.53338975802561 + ], + [ + 68.05548154819586, + 43.33874202309716 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 43.33874202309716 + ], + [ + 67.94063886471218, + 43.53338975802561 + ], + [ + 67.8257961812285, + 43.33874202309716 + ], + [ + 68.05548154819586, + 43.33874202309716 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 43.33874202309716 + ], + [ + 67.8257961812285, + 43.33874202309716 + ], + [ + 67.94063886471218, + 43.14409428816871 + ], + [ + 68.05548154819586, + 43.33874202309716 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 43.33874202309716 + ], + [ + 67.94063886471218, + 43.14409428816871 + ], + [ + 68.17032423167953, + 43.14409428816871 + ], + [ + 68.05548154819586, + 43.33874202309716 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 43.33874202309716 + ], + [ + 68.17032423167953, + 43.14409428816871 + ], + [ + 68.28516691516322, + 43.33874202309716 + ], + [ + 68.05548154819586, + 43.33874202309716 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 43.728037492954066 + ], + [ + 68.28516691516322, + 43.728037492954066 + ], + [ + 68.17032423167953, + 43.92268522788252 + ], + [ + 68.05548154819586, + 43.728037492954066 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 43.728037492954066 + ], + [ + 68.17032423167953, + 43.92268522788252 + ], + [ + 67.94063886471218, + 43.92268522788252 + ], + [ + 68.05548154819586, + 43.728037492954066 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 43.728037492954066 + ], + [ + 67.94063886471218, + 43.92268522788252 + ], + [ + 67.8257961812285, + 43.728037492954066 + ], + [ + 68.05548154819586, + 43.728037492954066 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 43.728037492954066 + ], + [ + 67.8257961812285, + 43.728037492954066 + ], + [ + 67.94063886471218, + 43.53338975802561 + ], + [ + 68.05548154819586, + 43.728037492954066 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 43.728037492954066 + ], + [ + 67.94063886471218, + 43.53338975802561 + ], + [ + 68.17032423167953, + 43.53338975802561 + ], + [ + 68.05548154819586, + 43.728037492954066 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 43.728037492954066 + ], + [ + 68.17032423167953, + 43.53338975802561 + ], + [ + 68.28516691516322, + 43.728037492954066 + ], + [ + 68.05548154819586, + 43.728037492954066 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 44.11733296281097 + ], + [ + 68.28516691516322, + 44.11733296281097 + ], + [ + 68.17032423167953, + 44.31198069773942 + ], + [ + 68.05548154819586, + 44.11733296281097 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 44.11733296281097 + ], + [ + 68.17032423167953, + 44.31198069773942 + ], + [ + 67.94063886471218, + 44.31198069773942 + ], + [ + 68.05548154819586, + 44.11733296281097 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 44.11733296281097 + ], + [ + 67.94063886471218, + 44.31198069773942 + ], + [ + 67.8257961812285, + 44.11733296281097 + ], + [ + 68.05548154819586, + 44.11733296281097 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 44.11733296281097 + ], + [ + 67.8257961812285, + 44.11733296281097 + ], + [ + 67.94063886471218, + 43.92268522788252 + ], + [ + 68.05548154819586, + 44.11733296281097 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 44.11733296281097 + ], + [ + 67.94063886471218, + 43.92268522788252 + ], + [ + 68.17032423167953, + 43.92268522788252 + ], + [ + 68.05548154819586, + 44.11733296281097 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 44.11733296281097 + ], + [ + 68.17032423167953, + 43.92268522788252 + ], + [ + 68.28516691516322, + 44.11733296281097 + ], + [ + 68.05548154819586, + 44.11733296281097 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 44.506628432667874 + ], + [ + 68.28516691516322, + 44.506628432667874 + ], + [ + 68.17032423167953, + 44.701276167596326 + ], + [ + 68.05548154819586, + 44.506628432667874 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 44.506628432667874 + ], + [ + 68.17032423167953, + 44.701276167596326 + ], + [ + 67.94063886471218, + 44.701276167596326 + ], + [ + 68.05548154819586, + 44.506628432667874 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 44.506628432667874 + ], + [ + 67.94063886471218, + 44.701276167596326 + ], + [ + 67.8257961812285, + 44.506628432667874 + ], + [ + 68.05548154819586, + 44.506628432667874 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 44.506628432667874 + ], + [ + 67.8257961812285, + 44.506628432667874 + ], + [ + 67.94063886471218, + 44.31198069773942 + ], + [ + 68.05548154819586, + 44.506628432667874 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 44.506628432667874 + ], + [ + 67.94063886471218, + 44.31198069773942 + ], + [ + 68.17032423167953, + 44.31198069773942 + ], + [ + 68.05548154819586, + 44.506628432667874 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 44.506628432667874 + ], + [ + 68.17032423167953, + 44.31198069773942 + ], + [ + 68.28516691516322, + 44.506628432667874 + ], + [ + 68.05548154819586, + 44.506628432667874 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 44.89592390252479 + ], + [ + 68.28516691516322, + 44.89592390252479 + ], + [ + 68.17032423167953, + 45.090571637453245 + ], + [ + 68.05548154819586, + 44.89592390252479 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 44.89592390252479 + ], + [ + 68.17032423167953, + 45.090571637453245 + ], + [ + 67.94063886471218, + 45.090571637453245 + ], + [ + 68.05548154819586, + 44.89592390252479 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 44.89592390252479 + ], + [ + 67.94063886471218, + 45.090571637453245 + ], + [ + 67.8257961812285, + 44.89592390252479 + ], + [ + 68.05548154819586, + 44.89592390252479 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 44.89592390252479 + ], + [ + 67.8257961812285, + 44.89592390252479 + ], + [ + 67.94063886471218, + 44.70127616759634 + ], + [ + 68.05548154819586, + 44.89592390252479 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 44.89592390252479 + ], + [ + 67.94063886471218, + 44.70127616759634 + ], + [ + 68.17032423167953, + 44.70127616759634 + ], + [ + 68.05548154819586, + 44.89592390252479 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 44.89592390252479 + ], + [ + 68.17032423167953, + 44.70127616759634 + ], + [ + 68.28516691516322, + 44.89592390252479 + ], + [ + 68.05548154819586, + 44.89592390252479 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 45.2852193723817 + ], + [ + 68.28516691516322, + 45.2852193723817 + ], + [ + 68.17032423167953, + 45.47986710731015 + ], + [ + 68.05548154819586, + 45.2852193723817 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 45.2852193723817 + ], + [ + 68.17032423167953, + 45.47986710731015 + ], + [ + 67.94063886471218, + 45.47986710731015 + ], + [ + 68.05548154819586, + 45.2852193723817 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 45.2852193723817 + ], + [ + 67.94063886471218, + 45.47986710731015 + ], + [ + 67.8257961812285, + 45.2852193723817 + ], + [ + 68.05548154819586, + 45.2852193723817 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 45.2852193723817 + ], + [ + 67.8257961812285, + 45.2852193723817 + ], + [ + 67.94063886471218, + 45.090571637453245 + ], + [ + 68.05548154819586, + 45.2852193723817 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 45.2852193723817 + ], + [ + 67.94063886471218, + 45.090571637453245 + ], + [ + 68.17032423167953, + 45.090571637453245 + ], + [ + 68.05548154819586, + 45.2852193723817 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 45.2852193723817 + ], + [ + 68.17032423167953, + 45.090571637453245 + ], + [ + 68.28516691516322, + 45.2852193723817 + ], + [ + 68.05548154819586, + 45.2852193723817 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 45.6745148422386 + ], + [ + 68.28516691516322, + 45.6745148422386 + ], + [ + 68.17032423167953, + 45.86916257716705 + ], + [ + 68.05548154819586, + 45.6745148422386 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 45.6745148422386 + ], + [ + 68.17032423167953, + 45.86916257716705 + ], + [ + 67.94063886471218, + 45.86916257716705 + ], + [ + 68.05548154819586, + 45.6745148422386 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 45.6745148422386 + ], + [ + 67.94063886471218, + 45.86916257716705 + ], + [ + 67.8257961812285, + 45.6745148422386 + ], + [ + 68.05548154819586, + 45.6745148422386 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 45.6745148422386 + ], + [ + 67.8257961812285, + 45.6745148422386 + ], + [ + 67.94063886471218, + 45.47986710731015 + ], + [ + 68.05548154819586, + 45.6745148422386 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 45.6745148422386 + ], + [ + 67.94063886471218, + 45.47986710731015 + ], + [ + 68.17032423167953, + 45.47986710731015 + ], + [ + 68.05548154819586, + 45.6745148422386 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 45.6745148422386 + ], + [ + 68.17032423167953, + 45.47986710731015 + ], + [ + 68.28516691516322, + 45.6745148422386 + ], + [ + 68.05548154819586, + 45.6745148422386 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 46.063810312095505 + ], + [ + 68.28516691516322, + 46.063810312095505 + ], + [ + 68.17032423167953, + 46.25845804702396 + ], + [ + 68.05548154819586, + 46.063810312095505 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 46.063810312095505 + ], + [ + 68.17032423167953, + 46.25845804702396 + ], + [ + 67.94063886471218, + 46.25845804702396 + ], + [ + 68.05548154819586, + 46.063810312095505 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 46.063810312095505 + ], + [ + 67.94063886471218, + 46.25845804702396 + ], + [ + 67.8257961812285, + 46.063810312095505 + ], + [ + 68.05548154819586, + 46.063810312095505 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 46.063810312095505 + ], + [ + 67.8257961812285, + 46.063810312095505 + ], + [ + 67.94063886471218, + 45.86916257716705 + ], + [ + 68.05548154819586, + 46.063810312095505 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 46.063810312095505 + ], + [ + 67.94063886471218, + 45.86916257716705 + ], + [ + 68.17032423167953, + 45.86916257716705 + ], + [ + 68.05548154819586, + 46.063810312095505 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 46.063810312095505 + ], + [ + 68.17032423167953, + 45.86916257716705 + ], + [ + 68.28516691516322, + 46.063810312095505 + ], + [ + 68.05548154819586, + 46.063810312095505 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 46.45310578195241 + ], + [ + 68.28516691516322, + 46.45310578195241 + ], + [ + 68.17032423167953, + 46.64775351688086 + ], + [ + 68.05548154819586, + 46.45310578195241 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 46.45310578195241 + ], + [ + 68.17032423167953, + 46.64775351688086 + ], + [ + 67.94063886471218, + 46.64775351688086 + ], + [ + 68.05548154819586, + 46.45310578195241 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 46.45310578195241 + ], + [ + 67.94063886471218, + 46.64775351688086 + ], + [ + 67.8257961812285, + 46.45310578195241 + ], + [ + 68.05548154819586, + 46.45310578195241 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 46.45310578195241 + ], + [ + 67.8257961812285, + 46.45310578195241 + ], + [ + 67.94063886471218, + 46.25845804702396 + ], + [ + 68.05548154819586, + 46.45310578195241 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 46.45310578195241 + ], + [ + 67.94063886471218, + 46.25845804702396 + ], + [ + 68.17032423167953, + 46.25845804702396 + ], + [ + 68.05548154819586, + 46.45310578195241 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 46.45310578195241 + ], + [ + 68.17032423167953, + 46.25845804702396 + ], + [ + 68.28516691516322, + 46.45310578195241 + ], + [ + 68.05548154819586, + 46.45310578195241 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 46.842401251809314 + ], + [ + 68.28516691516322, + 46.842401251809314 + ], + [ + 68.17032423167953, + 47.037048986737766 + ], + [ + 68.05548154819586, + 46.842401251809314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 46.842401251809314 + ], + [ + 68.17032423167953, + 47.037048986737766 + ], + [ + 67.94063886471218, + 47.037048986737766 + ], + [ + 68.05548154819586, + 46.842401251809314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 46.842401251809314 + ], + [ + 67.94063886471218, + 47.037048986737766 + ], + [ + 67.8257961812285, + 46.842401251809314 + ], + [ + 68.05548154819586, + 46.842401251809314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 46.842401251809314 + ], + [ + 67.8257961812285, + 46.842401251809314 + ], + [ + 67.94063886471218, + 46.64775351688086 + ], + [ + 68.05548154819586, + 46.842401251809314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 46.842401251809314 + ], + [ + 67.94063886471218, + 46.64775351688086 + ], + [ + 68.17032423167953, + 46.64775351688086 + ], + [ + 68.05548154819586, + 46.842401251809314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 46.842401251809314 + ], + [ + 68.17032423167953, + 46.64775351688086 + ], + [ + 68.28516691516322, + 46.842401251809314 + ], + [ + 68.05548154819586, + 46.842401251809314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 47.23169672166622 + ], + [ + 68.28516691516322, + 47.23169672166622 + ], + [ + 68.17032423167953, + 47.42634445659467 + ], + [ + 68.05548154819586, + 47.23169672166622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 47.23169672166622 + ], + [ + 68.17032423167953, + 47.42634445659467 + ], + [ + 67.94063886471218, + 47.42634445659467 + ], + [ + 68.05548154819586, + 47.23169672166622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 47.23169672166622 + ], + [ + 67.94063886471218, + 47.42634445659467 + ], + [ + 67.8257961812285, + 47.23169672166622 + ], + [ + 68.05548154819586, + 47.23169672166622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 47.23169672166622 + ], + [ + 67.8257961812285, + 47.23169672166622 + ], + [ + 67.94063886471218, + 47.037048986737766 + ], + [ + 68.05548154819586, + 47.23169672166622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 47.23169672166622 + ], + [ + 67.94063886471218, + 47.037048986737766 + ], + [ + 68.17032423167953, + 47.037048986737766 + ], + [ + 68.05548154819586, + 47.23169672166622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 47.23169672166622 + ], + [ + 68.17032423167953, + 47.037048986737766 + ], + [ + 68.28516691516322, + 47.23169672166622 + ], + [ + 68.05548154819586, + 47.23169672166622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 47.620992191523136 + ], + [ + 68.28516691516322, + 47.620992191523136 + ], + [ + 68.17032423167953, + 47.81563992645159 + ], + [ + 68.05548154819586, + 47.620992191523136 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 47.620992191523136 + ], + [ + 68.17032423167953, + 47.81563992645159 + ], + [ + 67.94063886471218, + 47.81563992645159 + ], + [ + 68.05548154819586, + 47.620992191523136 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 47.620992191523136 + ], + [ + 67.94063886471218, + 47.81563992645159 + ], + [ + 67.8257961812285, + 47.620992191523136 + ], + [ + 68.05548154819586, + 47.620992191523136 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 47.620992191523136 + ], + [ + 67.8257961812285, + 47.620992191523136 + ], + [ + 67.94063886471218, + 47.426344456594684 + ], + [ + 68.05548154819586, + 47.620992191523136 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 47.620992191523136 + ], + [ + 67.94063886471218, + 47.426344456594684 + ], + [ + 68.17032423167953, + 47.426344456594684 + ], + [ + 68.05548154819586, + 47.620992191523136 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.05548154819586, + 47.620992191523136 + ], + [ + 68.17032423167953, + 47.426344456594684 + ], + [ + 68.28516691516322, + 47.620992191523136 + ], + [ + 68.05548154819586, + 47.620992191523136 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 12.0004566996162 + ], + [ + 68.62969496561425, + 12.0004566996162 + ], + [ + 68.51485228213056, + 12.195104434544653 + ], + [ + 68.40000959864689, + 12.0004566996162 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 12.0004566996162 + ], + [ + 68.51485228213056, + 12.195104434544653 + ], + [ + 68.28516691516322, + 12.195104434544653 + ], + [ + 68.40000959864689, + 12.0004566996162 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 12.0004566996162 + ], + [ + 68.28516691516322, + 12.195104434544653 + ], + [ + 68.17032423167953, + 12.0004566996162 + ], + [ + 68.40000959864689, + 12.0004566996162 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 12.0004566996162 + ], + [ + 68.17032423167953, + 12.0004566996162 + ], + [ + 68.28516691516322, + 11.805808964687746 + ], + [ + 68.40000959864689, + 12.0004566996162 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 12.0004566996162 + ], + [ + 68.28516691516322, + 11.805808964687746 + ], + [ + 68.51485228213056, + 11.805808964687746 + ], + [ + 68.40000959864689, + 12.0004566996162 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 12.0004566996162 + ], + [ + 68.51485228213056, + 11.805808964687746 + ], + [ + 68.62969496561425, + 12.0004566996162 + ], + [ + 68.40000959864689, + 12.0004566996162 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 12.389752169473105 + ], + [ + 68.62969496561425, + 12.389752169473105 + ], + [ + 68.51485228213056, + 12.58439990440156 + ], + [ + 68.40000959864689, + 12.389752169473105 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 12.389752169473105 + ], + [ + 68.51485228213056, + 12.58439990440156 + ], + [ + 68.28516691516322, + 12.58439990440156 + ], + [ + 68.40000959864689, + 12.389752169473105 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 12.389752169473105 + ], + [ + 68.28516691516322, + 12.58439990440156 + ], + [ + 68.17032423167953, + 12.389752169473105 + ], + [ + 68.40000959864689, + 12.389752169473105 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 12.389752169473105 + ], + [ + 68.17032423167953, + 12.389752169473105 + ], + [ + 68.28516691516322, + 12.195104434544652 + ], + [ + 68.40000959864689, + 12.389752169473105 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 12.389752169473105 + ], + [ + 68.28516691516322, + 12.195104434544652 + ], + [ + 68.51485228213056, + 12.195104434544652 + ], + [ + 68.40000959864689, + 12.389752169473105 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 12.389752169473105 + ], + [ + 68.51485228213056, + 12.195104434544652 + ], + [ + 68.62969496561425, + 12.389752169473105 + ], + [ + 68.40000959864689, + 12.389752169473105 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 12.779047639330013 + ], + [ + 68.62969496561425, + 12.779047639330013 + ], + [ + 68.51485228213056, + 12.973695374258467 + ], + [ + 68.40000959864689, + 12.779047639330013 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 12.779047639330013 + ], + [ + 68.51485228213056, + 12.973695374258467 + ], + [ + 68.28516691516322, + 12.973695374258467 + ], + [ + 68.40000959864689, + 12.779047639330013 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 12.779047639330013 + ], + [ + 68.28516691516322, + 12.973695374258467 + ], + [ + 68.17032423167953, + 12.779047639330013 + ], + [ + 68.40000959864689, + 12.779047639330013 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 12.779047639330013 + ], + [ + 68.17032423167953, + 12.779047639330013 + ], + [ + 68.28516691516322, + 12.58439990440156 + ], + [ + 68.40000959864689, + 12.779047639330013 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 12.779047639330013 + ], + [ + 68.28516691516322, + 12.58439990440156 + ], + [ + 68.51485228213056, + 12.58439990440156 + ], + [ + 68.40000959864689, + 12.779047639330013 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 12.779047639330013 + ], + [ + 68.51485228213056, + 12.58439990440156 + ], + [ + 68.62969496561425, + 12.779047639330013 + ], + [ + 68.40000959864689, + 12.779047639330013 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 13.16834310918692 + ], + [ + 68.62969496561425, + 13.16834310918692 + ], + [ + 68.51485228213056, + 13.362990844115373 + ], + [ + 68.40000959864689, + 13.16834310918692 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 13.16834310918692 + ], + [ + 68.51485228213056, + 13.362990844115373 + ], + [ + 68.28516691516322, + 13.362990844115373 + ], + [ + 68.40000959864689, + 13.16834310918692 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 13.16834310918692 + ], + [ + 68.28516691516322, + 13.362990844115373 + ], + [ + 68.17032423167953, + 13.16834310918692 + ], + [ + 68.40000959864689, + 13.16834310918692 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 13.16834310918692 + ], + [ + 68.17032423167953, + 13.16834310918692 + ], + [ + 68.28516691516322, + 12.973695374258465 + ], + [ + 68.40000959864689, + 13.16834310918692 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 13.16834310918692 + ], + [ + 68.28516691516322, + 12.973695374258465 + ], + [ + 68.51485228213056, + 12.973695374258465 + ], + [ + 68.40000959864689, + 13.16834310918692 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 13.16834310918692 + ], + [ + 68.51485228213056, + 12.973695374258465 + ], + [ + 68.62969496561425, + 13.16834310918692 + ], + [ + 68.40000959864689, + 13.16834310918692 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 13.557638579043825 + ], + [ + 68.62969496561425, + 13.557638579043825 + ], + [ + 68.51485228213056, + 13.752286313972279 + ], + [ + 68.40000959864689, + 13.557638579043825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 13.557638579043825 + ], + [ + 68.51485228213056, + 13.752286313972279 + ], + [ + 68.28516691516322, + 13.752286313972279 + ], + [ + 68.40000959864689, + 13.557638579043825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 13.557638579043825 + ], + [ + 68.28516691516322, + 13.752286313972279 + ], + [ + 68.17032423167953, + 13.557638579043825 + ], + [ + 68.40000959864689, + 13.557638579043825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 13.557638579043825 + ], + [ + 68.17032423167953, + 13.557638579043825 + ], + [ + 68.28516691516322, + 13.362990844115371 + ], + [ + 68.40000959864689, + 13.557638579043825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 13.557638579043825 + ], + [ + 68.28516691516322, + 13.362990844115371 + ], + [ + 68.51485228213056, + 13.362990844115371 + ], + [ + 68.40000959864689, + 13.557638579043825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 13.557638579043825 + ], + [ + 68.51485228213056, + 13.362990844115371 + ], + [ + 68.62969496561425, + 13.557638579043825 + ], + [ + 68.40000959864689, + 13.557638579043825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 13.946934048900731 + ], + [ + 68.62969496561425, + 13.946934048900731 + ], + [ + 68.51485228213056, + 14.141581783829185 + ], + [ + 68.40000959864689, + 13.946934048900731 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 13.946934048900731 + ], + [ + 68.51485228213056, + 14.141581783829185 + ], + [ + 68.28516691516322, + 14.141581783829185 + ], + [ + 68.40000959864689, + 13.946934048900731 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 13.946934048900731 + ], + [ + 68.28516691516322, + 14.141581783829185 + ], + [ + 68.17032423167953, + 13.946934048900731 + ], + [ + 68.40000959864689, + 13.946934048900731 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 13.946934048900731 + ], + [ + 68.17032423167953, + 13.946934048900731 + ], + [ + 68.28516691516322, + 13.752286313972277 + ], + [ + 68.40000959864689, + 13.946934048900731 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 13.946934048900731 + ], + [ + 68.28516691516322, + 13.752286313972277 + ], + [ + 68.51485228213056, + 13.752286313972277 + ], + [ + 68.40000959864689, + 13.946934048900731 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 13.946934048900731 + ], + [ + 68.51485228213056, + 13.752286313972277 + ], + [ + 68.62969496561425, + 13.946934048900731 + ], + [ + 68.40000959864689, + 13.946934048900731 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 14.336229518757637 + ], + [ + 68.62969496561425, + 14.336229518757637 + ], + [ + 68.51485228213056, + 14.530877253686091 + ], + [ + 68.40000959864689, + 14.336229518757637 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 14.336229518757637 + ], + [ + 68.51485228213056, + 14.530877253686091 + ], + [ + 68.28516691516322, + 14.530877253686091 + ], + [ + 68.40000959864689, + 14.336229518757637 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 14.336229518757637 + ], + [ + 68.28516691516322, + 14.530877253686091 + ], + [ + 68.17032423167953, + 14.336229518757637 + ], + [ + 68.40000959864689, + 14.336229518757637 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 14.336229518757637 + ], + [ + 68.17032423167953, + 14.336229518757637 + ], + [ + 68.28516691516322, + 14.141581783829183 + ], + [ + 68.40000959864689, + 14.336229518757637 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 14.336229518757637 + ], + [ + 68.28516691516322, + 14.141581783829183 + ], + [ + 68.51485228213056, + 14.141581783829183 + ], + [ + 68.40000959864689, + 14.336229518757637 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 14.336229518757637 + ], + [ + 68.51485228213056, + 14.141581783829183 + ], + [ + 68.62969496561425, + 14.336229518757637 + ], + [ + 68.40000959864689, + 14.336229518757637 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 14.725524988614545 + ], + [ + 68.62969496561425, + 14.725524988614545 + ], + [ + 68.51485228213056, + 14.920172723542999 + ], + [ + 68.40000959864689, + 14.725524988614545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 14.725524988614545 + ], + [ + 68.51485228213056, + 14.920172723542999 + ], + [ + 68.28516691516322, + 14.920172723542999 + ], + [ + 68.40000959864689, + 14.725524988614545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 14.725524988614545 + ], + [ + 68.28516691516322, + 14.920172723542999 + ], + [ + 68.17032423167953, + 14.725524988614545 + ], + [ + 68.40000959864689, + 14.725524988614545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 14.725524988614545 + ], + [ + 68.17032423167953, + 14.725524988614545 + ], + [ + 68.28516691516322, + 14.530877253686091 + ], + [ + 68.40000959864689, + 14.725524988614545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 14.725524988614545 + ], + [ + 68.28516691516322, + 14.530877253686091 + ], + [ + 68.51485228213056, + 14.530877253686091 + ], + [ + 68.40000959864689, + 14.725524988614545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 14.725524988614545 + ], + [ + 68.51485228213056, + 14.530877253686091 + ], + [ + 68.62969496561425, + 14.725524988614545 + ], + [ + 68.40000959864689, + 14.725524988614545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 15.114820458471451 + ], + [ + 68.62969496561425, + 15.114820458471451 + ], + [ + 68.51485228213056, + 15.309468193399905 + ], + [ + 68.40000959864689, + 15.114820458471451 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 15.114820458471451 + ], + [ + 68.51485228213056, + 15.309468193399905 + ], + [ + 68.28516691516322, + 15.309468193399905 + ], + [ + 68.40000959864689, + 15.114820458471451 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 15.114820458471451 + ], + [ + 68.28516691516322, + 15.309468193399905 + ], + [ + 68.17032423167953, + 15.114820458471451 + ], + [ + 68.40000959864689, + 15.114820458471451 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 15.114820458471451 + ], + [ + 68.17032423167953, + 15.114820458471451 + ], + [ + 68.28516691516322, + 14.920172723542997 + ], + [ + 68.40000959864689, + 15.114820458471451 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 15.114820458471451 + ], + [ + 68.28516691516322, + 14.920172723542997 + ], + [ + 68.51485228213056, + 14.920172723542997 + ], + [ + 68.40000959864689, + 15.114820458471451 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 15.114820458471451 + ], + [ + 68.51485228213056, + 14.920172723542997 + ], + [ + 68.62969496561425, + 15.114820458471451 + ], + [ + 68.40000959864689, + 15.114820458471451 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 15.504115928328357 + ], + [ + 68.62969496561425, + 15.504115928328357 + ], + [ + 68.51485228213056, + 15.69876366325681 + ], + [ + 68.40000959864689, + 15.504115928328357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 15.504115928328357 + ], + [ + 68.51485228213056, + 15.69876366325681 + ], + [ + 68.28516691516322, + 15.69876366325681 + ], + [ + 68.40000959864689, + 15.504115928328357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 15.504115928328357 + ], + [ + 68.28516691516322, + 15.69876366325681 + ], + [ + 68.17032423167953, + 15.504115928328357 + ], + [ + 68.40000959864689, + 15.504115928328357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 15.504115928328357 + ], + [ + 68.17032423167953, + 15.504115928328357 + ], + [ + 68.28516691516322, + 15.309468193399903 + ], + [ + 68.40000959864689, + 15.504115928328357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 15.504115928328357 + ], + [ + 68.28516691516322, + 15.309468193399903 + ], + [ + 68.51485228213056, + 15.309468193399903 + ], + [ + 68.40000959864689, + 15.504115928328357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 15.504115928328357 + ], + [ + 68.51485228213056, + 15.309468193399903 + ], + [ + 68.62969496561425, + 15.504115928328357 + ], + [ + 68.40000959864689, + 15.504115928328357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 15.893411398185265 + ], + [ + 68.62969496561425, + 15.893411398185265 + ], + [ + 68.51485228213056, + 16.088059133113717 + ], + [ + 68.40000959864689, + 15.893411398185265 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 15.893411398185265 + ], + [ + 68.51485228213056, + 16.088059133113717 + ], + [ + 68.28516691516322, + 16.088059133113717 + ], + [ + 68.40000959864689, + 15.893411398185265 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 15.893411398185265 + ], + [ + 68.28516691516322, + 16.088059133113717 + ], + [ + 68.17032423167953, + 15.893411398185265 + ], + [ + 68.40000959864689, + 15.893411398185265 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 15.893411398185265 + ], + [ + 68.17032423167953, + 15.893411398185265 + ], + [ + 68.28516691516322, + 15.69876366325681 + ], + [ + 68.40000959864689, + 15.893411398185265 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 15.893411398185265 + ], + [ + 68.28516691516322, + 15.69876366325681 + ], + [ + 68.51485228213056, + 15.69876366325681 + ], + [ + 68.40000959864689, + 15.893411398185265 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 15.893411398185265 + ], + [ + 68.51485228213056, + 15.69876366325681 + ], + [ + 68.62969496561425, + 15.893411398185265 + ], + [ + 68.40000959864689, + 15.893411398185265 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 16.28270686804217 + ], + [ + 68.62969496561425, + 16.28270686804217 + ], + [ + 68.51485228213056, + 16.47735460297062 + ], + [ + 68.40000959864689, + 16.28270686804217 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 16.28270686804217 + ], + [ + 68.51485228213056, + 16.47735460297062 + ], + [ + 68.28516691516322, + 16.47735460297062 + ], + [ + 68.40000959864689, + 16.28270686804217 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 16.28270686804217 + ], + [ + 68.28516691516322, + 16.47735460297062 + ], + [ + 68.17032423167953, + 16.28270686804217 + ], + [ + 68.40000959864689, + 16.28270686804217 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 16.28270686804217 + ], + [ + 68.17032423167953, + 16.28270686804217 + ], + [ + 68.28516691516322, + 16.088059133113717 + ], + [ + 68.40000959864689, + 16.28270686804217 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 16.28270686804217 + ], + [ + 68.28516691516322, + 16.088059133113717 + ], + [ + 68.51485228213056, + 16.088059133113717 + ], + [ + 68.40000959864689, + 16.28270686804217 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 16.28270686804217 + ], + [ + 68.51485228213056, + 16.088059133113717 + ], + [ + 68.62969496561425, + 16.28270686804217 + ], + [ + 68.40000959864689, + 16.28270686804217 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 16.672002337899077 + ], + [ + 68.62969496561425, + 16.672002337899077 + ], + [ + 68.51485228213056, + 16.86665007282753 + ], + [ + 68.40000959864689, + 16.672002337899077 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 16.672002337899077 + ], + [ + 68.51485228213056, + 16.86665007282753 + ], + [ + 68.28516691516322, + 16.86665007282753 + ], + [ + 68.40000959864689, + 16.672002337899077 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 16.672002337899077 + ], + [ + 68.28516691516322, + 16.86665007282753 + ], + [ + 68.17032423167953, + 16.672002337899077 + ], + [ + 68.40000959864689, + 16.672002337899077 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 16.672002337899077 + ], + [ + 68.17032423167953, + 16.672002337899077 + ], + [ + 68.28516691516322, + 16.477354602970625 + ], + [ + 68.40000959864689, + 16.672002337899077 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 16.672002337899077 + ], + [ + 68.28516691516322, + 16.477354602970625 + ], + [ + 68.51485228213056, + 16.477354602970625 + ], + [ + 68.40000959864689, + 16.672002337899077 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 16.672002337899077 + ], + [ + 68.51485228213056, + 16.477354602970625 + ], + [ + 68.62969496561425, + 16.672002337899077 + ], + [ + 68.40000959864689, + 16.672002337899077 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 17.06129780775598 + ], + [ + 68.62969496561425, + 17.06129780775598 + ], + [ + 68.51485228213056, + 17.255945542684433 + ], + [ + 68.40000959864689, + 17.06129780775598 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 17.06129780775598 + ], + [ + 68.51485228213056, + 17.255945542684433 + ], + [ + 68.28516691516322, + 17.255945542684433 + ], + [ + 68.40000959864689, + 17.06129780775598 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 17.06129780775598 + ], + [ + 68.28516691516322, + 17.255945542684433 + ], + [ + 68.17032423167953, + 17.06129780775598 + ], + [ + 68.40000959864689, + 17.06129780775598 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 17.06129780775598 + ], + [ + 68.17032423167953, + 17.06129780775598 + ], + [ + 68.28516691516322, + 16.86665007282753 + ], + [ + 68.40000959864689, + 17.06129780775598 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 17.06129780775598 + ], + [ + 68.28516691516322, + 16.86665007282753 + ], + [ + 68.51485228213056, + 16.86665007282753 + ], + [ + 68.40000959864689, + 17.06129780775598 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 17.06129780775598 + ], + [ + 68.51485228213056, + 16.86665007282753 + ], + [ + 68.62969496561425, + 17.06129780775598 + ], + [ + 68.40000959864689, + 17.06129780775598 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 17.45059327761289 + ], + [ + 68.62969496561425, + 17.45059327761289 + ], + [ + 68.51485228213056, + 17.64524101254134 + ], + [ + 68.40000959864689, + 17.45059327761289 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 17.45059327761289 + ], + [ + 68.51485228213056, + 17.64524101254134 + ], + [ + 68.28516691516322, + 17.64524101254134 + ], + [ + 68.40000959864689, + 17.45059327761289 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 17.45059327761289 + ], + [ + 68.28516691516322, + 17.64524101254134 + ], + [ + 68.17032423167953, + 17.45059327761289 + ], + [ + 68.40000959864689, + 17.45059327761289 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 17.45059327761289 + ], + [ + 68.17032423167953, + 17.45059327761289 + ], + [ + 68.28516691516322, + 17.255945542684437 + ], + [ + 68.40000959864689, + 17.45059327761289 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 17.45059327761289 + ], + [ + 68.28516691516322, + 17.255945542684437 + ], + [ + 68.51485228213056, + 17.255945542684437 + ], + [ + 68.40000959864689, + 17.45059327761289 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 17.45059327761289 + ], + [ + 68.51485228213056, + 17.255945542684437 + ], + [ + 68.62969496561425, + 17.45059327761289 + ], + [ + 68.40000959864689, + 17.45059327761289 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 17.839888747469793 + ], + [ + 68.62969496561425, + 17.839888747469793 + ], + [ + 68.51485228213056, + 18.034536482398245 + ], + [ + 68.40000959864689, + 17.839888747469793 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 17.839888747469793 + ], + [ + 68.51485228213056, + 18.034536482398245 + ], + [ + 68.28516691516322, + 18.034536482398245 + ], + [ + 68.40000959864689, + 17.839888747469793 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 17.839888747469793 + ], + [ + 68.28516691516322, + 18.034536482398245 + ], + [ + 68.17032423167953, + 17.839888747469793 + ], + [ + 68.40000959864689, + 17.839888747469793 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 17.839888747469793 + ], + [ + 68.17032423167953, + 17.839888747469793 + ], + [ + 68.28516691516322, + 17.64524101254134 + ], + [ + 68.40000959864689, + 17.839888747469793 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 17.839888747469793 + ], + [ + 68.28516691516322, + 17.64524101254134 + ], + [ + 68.51485228213056, + 17.64524101254134 + ], + [ + 68.40000959864689, + 17.839888747469793 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 17.839888747469793 + ], + [ + 68.51485228213056, + 17.64524101254134 + ], + [ + 68.62969496561425, + 17.839888747469793 + ], + [ + 68.40000959864689, + 17.839888747469793 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 18.2291842173267 + ], + [ + 68.62969496561425, + 18.2291842173267 + ], + [ + 68.51485228213056, + 18.423831952255153 + ], + [ + 68.40000959864689, + 18.2291842173267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 18.2291842173267 + ], + [ + 68.51485228213056, + 18.423831952255153 + ], + [ + 68.28516691516322, + 18.423831952255153 + ], + [ + 68.40000959864689, + 18.2291842173267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 18.2291842173267 + ], + [ + 68.28516691516322, + 18.423831952255153 + ], + [ + 68.17032423167953, + 18.2291842173267 + ], + [ + 68.40000959864689, + 18.2291842173267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 18.2291842173267 + ], + [ + 68.17032423167953, + 18.2291842173267 + ], + [ + 68.28516691516322, + 18.03453648239825 + ], + [ + 68.40000959864689, + 18.2291842173267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 18.2291842173267 + ], + [ + 68.28516691516322, + 18.03453648239825 + ], + [ + 68.51485228213056, + 18.03453648239825 + ], + [ + 68.40000959864689, + 18.2291842173267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 18.2291842173267 + ], + [ + 68.51485228213056, + 18.03453648239825 + ], + [ + 68.62969496561425, + 18.2291842173267 + ], + [ + 68.40000959864689, + 18.2291842173267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 18.61847968718361 + ], + [ + 68.62969496561425, + 18.61847968718361 + ], + [ + 68.51485228213056, + 18.81312742211206 + ], + [ + 68.40000959864689, + 18.61847968718361 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 18.61847968718361 + ], + [ + 68.51485228213056, + 18.81312742211206 + ], + [ + 68.28516691516322, + 18.81312742211206 + ], + [ + 68.40000959864689, + 18.61847968718361 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 18.61847968718361 + ], + [ + 68.28516691516322, + 18.81312742211206 + ], + [ + 68.17032423167953, + 18.61847968718361 + ], + [ + 68.40000959864689, + 18.61847968718361 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 18.61847968718361 + ], + [ + 68.17032423167953, + 18.61847968718361 + ], + [ + 68.28516691516322, + 18.423831952255156 + ], + [ + 68.40000959864689, + 18.61847968718361 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 18.61847968718361 + ], + [ + 68.28516691516322, + 18.423831952255156 + ], + [ + 68.51485228213056, + 18.423831952255156 + ], + [ + 68.40000959864689, + 18.61847968718361 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 18.61847968718361 + ], + [ + 68.51485228213056, + 18.423831952255156 + ], + [ + 68.62969496561425, + 18.61847968718361 + ], + [ + 68.40000959864689, + 18.61847968718361 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 19.007775157040513 + ], + [ + 68.62969496561425, + 19.007775157040513 + ], + [ + 68.51485228213056, + 19.202422891968965 + ], + [ + 68.40000959864689, + 19.007775157040513 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 19.007775157040513 + ], + [ + 68.51485228213056, + 19.202422891968965 + ], + [ + 68.28516691516322, + 19.202422891968965 + ], + [ + 68.40000959864689, + 19.007775157040513 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 19.007775157040513 + ], + [ + 68.28516691516322, + 19.202422891968965 + ], + [ + 68.17032423167953, + 19.007775157040513 + ], + [ + 68.40000959864689, + 19.007775157040513 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 19.007775157040513 + ], + [ + 68.17032423167953, + 19.007775157040513 + ], + [ + 68.28516691516322, + 18.81312742211206 + ], + [ + 68.40000959864689, + 19.007775157040513 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 19.007775157040513 + ], + [ + 68.28516691516322, + 18.81312742211206 + ], + [ + 68.51485228213056, + 18.81312742211206 + ], + [ + 68.40000959864689, + 19.007775157040513 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 19.007775157040513 + ], + [ + 68.51485228213056, + 18.81312742211206 + ], + [ + 68.62969496561425, + 19.007775157040513 + ], + [ + 68.40000959864689, + 19.007775157040513 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 19.39707062689742 + ], + [ + 68.62969496561425, + 19.39707062689742 + ], + [ + 68.51485228213056, + 19.591718361825873 + ], + [ + 68.40000959864689, + 19.39707062689742 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 19.39707062689742 + ], + [ + 68.51485228213056, + 19.591718361825873 + ], + [ + 68.28516691516322, + 19.591718361825873 + ], + [ + 68.40000959864689, + 19.39707062689742 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 19.39707062689742 + ], + [ + 68.28516691516322, + 19.591718361825873 + ], + [ + 68.17032423167953, + 19.39707062689742 + ], + [ + 68.40000959864689, + 19.39707062689742 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 19.39707062689742 + ], + [ + 68.17032423167953, + 19.39707062689742 + ], + [ + 68.28516691516322, + 19.20242289196897 + ], + [ + 68.40000959864689, + 19.39707062689742 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 19.39707062689742 + ], + [ + 68.28516691516322, + 19.20242289196897 + ], + [ + 68.51485228213056, + 19.20242289196897 + ], + [ + 68.40000959864689, + 19.39707062689742 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 19.39707062689742 + ], + [ + 68.51485228213056, + 19.20242289196897 + ], + [ + 68.62969496561425, + 19.39707062689742 + ], + [ + 68.40000959864689, + 19.39707062689742 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 19.78636609675433 + ], + [ + 68.62969496561425, + 19.78636609675433 + ], + [ + 68.51485228213056, + 19.98101383168278 + ], + [ + 68.40000959864689, + 19.78636609675433 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 19.78636609675433 + ], + [ + 68.51485228213056, + 19.98101383168278 + ], + [ + 68.28516691516322, + 19.98101383168278 + ], + [ + 68.40000959864689, + 19.78636609675433 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 19.78636609675433 + ], + [ + 68.28516691516322, + 19.98101383168278 + ], + [ + 68.17032423167953, + 19.78636609675433 + ], + [ + 68.40000959864689, + 19.78636609675433 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 19.78636609675433 + ], + [ + 68.17032423167953, + 19.78636609675433 + ], + [ + 68.28516691516322, + 19.591718361825876 + ], + [ + 68.40000959864689, + 19.78636609675433 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 19.78636609675433 + ], + [ + 68.28516691516322, + 19.591718361825876 + ], + [ + 68.51485228213056, + 19.591718361825876 + ], + [ + 68.40000959864689, + 19.78636609675433 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 19.78636609675433 + ], + [ + 68.51485228213056, + 19.591718361825876 + ], + [ + 68.62969496561425, + 19.78636609675433 + ], + [ + 68.40000959864689, + 19.78636609675433 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 20.175661566611232 + ], + [ + 68.62969496561425, + 20.175661566611232 + ], + [ + 68.51485228213056, + 20.370309301539685 + ], + [ + 68.40000959864689, + 20.175661566611232 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 20.175661566611232 + ], + [ + 68.51485228213056, + 20.370309301539685 + ], + [ + 68.28516691516322, + 20.370309301539685 + ], + [ + 68.40000959864689, + 20.175661566611232 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 20.175661566611232 + ], + [ + 68.28516691516322, + 20.370309301539685 + ], + [ + 68.17032423167953, + 20.175661566611232 + ], + [ + 68.40000959864689, + 20.175661566611232 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 20.175661566611232 + ], + [ + 68.17032423167953, + 20.175661566611232 + ], + [ + 68.28516691516322, + 19.98101383168278 + ], + [ + 68.40000959864689, + 20.175661566611232 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 20.175661566611232 + ], + [ + 68.28516691516322, + 19.98101383168278 + ], + [ + 68.51485228213056, + 19.98101383168278 + ], + [ + 68.40000959864689, + 20.175661566611232 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 20.175661566611232 + ], + [ + 68.51485228213056, + 19.98101383168278 + ], + [ + 68.62969496561425, + 20.175661566611232 + ], + [ + 68.40000959864689, + 20.175661566611232 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 20.564957036468137 + ], + [ + 68.62969496561425, + 20.564957036468137 + ], + [ + 68.51485228213056, + 20.75960477139659 + ], + [ + 68.40000959864689, + 20.564957036468137 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 20.564957036468137 + ], + [ + 68.51485228213056, + 20.75960477139659 + ], + [ + 68.28516691516322, + 20.75960477139659 + ], + [ + 68.40000959864689, + 20.564957036468137 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 20.564957036468137 + ], + [ + 68.28516691516322, + 20.75960477139659 + ], + [ + 68.17032423167953, + 20.564957036468137 + ], + [ + 68.40000959864689, + 20.564957036468137 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 20.564957036468137 + ], + [ + 68.17032423167953, + 20.564957036468137 + ], + [ + 68.28516691516322, + 20.370309301539685 + ], + [ + 68.40000959864689, + 20.564957036468137 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 20.564957036468137 + ], + [ + 68.28516691516322, + 20.370309301539685 + ], + [ + 68.51485228213056, + 20.370309301539685 + ], + [ + 68.40000959864689, + 20.564957036468137 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 20.564957036468137 + ], + [ + 68.51485228213056, + 20.370309301539685 + ], + [ + 68.62969496561425, + 20.564957036468137 + ], + [ + 68.40000959864689, + 20.564957036468137 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 20.954252506325044 + ], + [ + 68.62969496561425, + 20.954252506325044 + ], + [ + 68.51485228213056, + 21.148900241253497 + ], + [ + 68.40000959864689, + 20.954252506325044 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 20.954252506325044 + ], + [ + 68.51485228213056, + 21.148900241253497 + ], + [ + 68.28516691516322, + 21.148900241253497 + ], + [ + 68.40000959864689, + 20.954252506325044 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 20.954252506325044 + ], + [ + 68.28516691516322, + 21.148900241253497 + ], + [ + 68.17032423167953, + 20.954252506325044 + ], + [ + 68.40000959864689, + 20.954252506325044 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 20.954252506325044 + ], + [ + 68.17032423167953, + 20.954252506325044 + ], + [ + 68.28516691516322, + 20.759604771396592 + ], + [ + 68.40000959864689, + 20.954252506325044 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 20.954252506325044 + ], + [ + 68.28516691516322, + 20.759604771396592 + ], + [ + 68.51485228213056, + 20.759604771396592 + ], + [ + 68.40000959864689, + 20.954252506325044 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 20.954252506325044 + ], + [ + 68.51485228213056, + 20.759604771396592 + ], + [ + 68.62969496561425, + 20.954252506325044 + ], + [ + 68.40000959864689, + 20.954252506325044 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 21.343547976181952 + ], + [ + 68.62969496561425, + 21.343547976181952 + ], + [ + 68.51485228213056, + 21.538195711110404 + ], + [ + 68.40000959864689, + 21.343547976181952 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 21.343547976181952 + ], + [ + 68.51485228213056, + 21.538195711110404 + ], + [ + 68.28516691516322, + 21.538195711110404 + ], + [ + 68.40000959864689, + 21.343547976181952 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 21.343547976181952 + ], + [ + 68.28516691516322, + 21.538195711110404 + ], + [ + 68.17032423167953, + 21.343547976181952 + ], + [ + 68.40000959864689, + 21.343547976181952 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 21.343547976181952 + ], + [ + 68.17032423167953, + 21.343547976181952 + ], + [ + 68.28516691516322, + 21.1489002412535 + ], + [ + 68.40000959864689, + 21.343547976181952 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 21.343547976181952 + ], + [ + 68.28516691516322, + 21.1489002412535 + ], + [ + 68.51485228213056, + 21.1489002412535 + ], + [ + 68.40000959864689, + 21.343547976181952 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 21.343547976181952 + ], + [ + 68.51485228213056, + 21.1489002412535 + ], + [ + 68.62969496561425, + 21.343547976181952 + ], + [ + 68.40000959864689, + 21.343547976181952 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 21.732843446038856 + ], + [ + 68.62969496561425, + 21.732843446038856 + ], + [ + 68.51485228213056, + 21.92749118096731 + ], + [ + 68.40000959864689, + 21.732843446038856 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 21.732843446038856 + ], + [ + 68.51485228213056, + 21.92749118096731 + ], + [ + 68.28516691516322, + 21.92749118096731 + ], + [ + 68.40000959864689, + 21.732843446038856 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 21.732843446038856 + ], + [ + 68.28516691516322, + 21.92749118096731 + ], + [ + 68.17032423167953, + 21.732843446038856 + ], + [ + 68.40000959864689, + 21.732843446038856 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 21.732843446038856 + ], + [ + 68.17032423167953, + 21.732843446038856 + ], + [ + 68.28516691516322, + 21.538195711110404 + ], + [ + 68.40000959864689, + 21.732843446038856 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 21.732843446038856 + ], + [ + 68.28516691516322, + 21.538195711110404 + ], + [ + 68.51485228213056, + 21.538195711110404 + ], + [ + 68.40000959864689, + 21.732843446038856 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 21.732843446038856 + ], + [ + 68.51485228213056, + 21.538195711110404 + ], + [ + 68.62969496561425, + 21.732843446038856 + ], + [ + 68.40000959864689, + 21.732843446038856 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 22.122138915895764 + ], + [ + 68.62969496561425, + 22.122138915895764 + ], + [ + 68.51485228213056, + 22.316786650824216 + ], + [ + 68.40000959864689, + 22.122138915895764 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 22.122138915895764 + ], + [ + 68.51485228213056, + 22.316786650824216 + ], + [ + 68.28516691516322, + 22.316786650824216 + ], + [ + 68.40000959864689, + 22.122138915895764 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 22.122138915895764 + ], + [ + 68.28516691516322, + 22.316786650824216 + ], + [ + 68.17032423167953, + 22.122138915895764 + ], + [ + 68.40000959864689, + 22.122138915895764 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 22.122138915895764 + ], + [ + 68.17032423167953, + 22.122138915895764 + ], + [ + 68.28516691516322, + 21.927491180967312 + ], + [ + 68.40000959864689, + 22.122138915895764 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 22.122138915895764 + ], + [ + 68.28516691516322, + 21.927491180967312 + ], + [ + 68.51485228213056, + 21.927491180967312 + ], + [ + 68.40000959864689, + 22.122138915895764 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 22.122138915895764 + ], + [ + 68.51485228213056, + 21.927491180967312 + ], + [ + 68.62969496561425, + 22.122138915895764 + ], + [ + 68.40000959864689, + 22.122138915895764 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 22.511434385752672 + ], + [ + 68.62969496561425, + 22.511434385752672 + ], + [ + 68.51485228213056, + 22.706082120681124 + ], + [ + 68.40000959864689, + 22.511434385752672 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 22.511434385752672 + ], + [ + 68.51485228213056, + 22.706082120681124 + ], + [ + 68.28516691516322, + 22.706082120681124 + ], + [ + 68.40000959864689, + 22.511434385752672 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 22.511434385752672 + ], + [ + 68.28516691516322, + 22.706082120681124 + ], + [ + 68.17032423167953, + 22.511434385752672 + ], + [ + 68.40000959864689, + 22.511434385752672 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 22.511434385752672 + ], + [ + 68.17032423167953, + 22.511434385752672 + ], + [ + 68.28516691516322, + 22.31678665082422 + ], + [ + 68.40000959864689, + 22.511434385752672 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 22.511434385752672 + ], + [ + 68.28516691516322, + 22.31678665082422 + ], + [ + 68.51485228213056, + 22.31678665082422 + ], + [ + 68.40000959864689, + 22.511434385752672 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 22.511434385752672 + ], + [ + 68.51485228213056, + 22.31678665082422 + ], + [ + 68.62969496561425, + 22.511434385752672 + ], + [ + 68.40000959864689, + 22.511434385752672 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 22.900729855609576 + ], + [ + 68.62969496561425, + 22.900729855609576 + ], + [ + 68.51485228213056, + 23.09537759053803 + ], + [ + 68.40000959864689, + 22.900729855609576 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 22.900729855609576 + ], + [ + 68.51485228213056, + 23.09537759053803 + ], + [ + 68.28516691516322, + 23.09537759053803 + ], + [ + 68.40000959864689, + 22.900729855609576 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 22.900729855609576 + ], + [ + 68.28516691516322, + 23.09537759053803 + ], + [ + 68.17032423167953, + 22.900729855609576 + ], + [ + 68.40000959864689, + 22.900729855609576 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 22.900729855609576 + ], + [ + 68.17032423167953, + 22.900729855609576 + ], + [ + 68.28516691516322, + 22.706082120681124 + ], + [ + 68.40000959864689, + 22.900729855609576 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 22.900729855609576 + ], + [ + 68.28516691516322, + 22.706082120681124 + ], + [ + 68.51485228213056, + 22.706082120681124 + ], + [ + 68.40000959864689, + 22.900729855609576 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 22.900729855609576 + ], + [ + 68.51485228213056, + 22.706082120681124 + ], + [ + 68.62969496561425, + 22.900729855609576 + ], + [ + 68.40000959864689, + 22.900729855609576 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 23.290025325466484 + ], + [ + 68.62969496561425, + 23.290025325466484 + ], + [ + 68.51485228213056, + 23.484673060394936 + ], + [ + 68.40000959864689, + 23.290025325466484 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 23.290025325466484 + ], + [ + 68.51485228213056, + 23.484673060394936 + ], + [ + 68.28516691516322, + 23.484673060394936 + ], + [ + 68.40000959864689, + 23.290025325466484 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 23.290025325466484 + ], + [ + 68.28516691516322, + 23.484673060394936 + ], + [ + 68.17032423167953, + 23.290025325466484 + ], + [ + 68.40000959864689, + 23.290025325466484 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 23.290025325466484 + ], + [ + 68.17032423167953, + 23.290025325466484 + ], + [ + 68.28516691516322, + 23.095377590538032 + ], + [ + 68.40000959864689, + 23.290025325466484 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 23.290025325466484 + ], + [ + 68.28516691516322, + 23.095377590538032 + ], + [ + 68.51485228213056, + 23.095377590538032 + ], + [ + 68.40000959864689, + 23.290025325466484 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 23.290025325466484 + ], + [ + 68.51485228213056, + 23.095377590538032 + ], + [ + 68.62969496561425, + 23.290025325466484 + ], + [ + 68.40000959864689, + 23.290025325466484 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 23.67932079532339 + ], + [ + 68.62969496561425, + 23.67932079532339 + ], + [ + 68.51485228213056, + 23.873968530251844 + ], + [ + 68.40000959864689, + 23.67932079532339 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 23.67932079532339 + ], + [ + 68.51485228213056, + 23.873968530251844 + ], + [ + 68.28516691516322, + 23.873968530251844 + ], + [ + 68.40000959864689, + 23.67932079532339 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 23.67932079532339 + ], + [ + 68.28516691516322, + 23.873968530251844 + ], + [ + 68.17032423167953, + 23.67932079532339 + ], + [ + 68.40000959864689, + 23.67932079532339 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 23.67932079532339 + ], + [ + 68.17032423167953, + 23.67932079532339 + ], + [ + 68.28516691516322, + 23.48467306039494 + ], + [ + 68.40000959864689, + 23.67932079532339 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 23.67932079532339 + ], + [ + 68.28516691516322, + 23.48467306039494 + ], + [ + 68.51485228213056, + 23.48467306039494 + ], + [ + 68.40000959864689, + 23.67932079532339 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 23.67932079532339 + ], + [ + 68.51485228213056, + 23.48467306039494 + ], + [ + 68.62969496561425, + 23.67932079532339 + ], + [ + 68.40000959864689, + 23.67932079532339 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 24.068616265180296 + ], + [ + 68.62969496561425, + 24.068616265180296 + ], + [ + 68.51485228213056, + 24.263264000108748 + ], + [ + 68.40000959864689, + 24.068616265180296 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 24.068616265180296 + ], + [ + 68.51485228213056, + 24.263264000108748 + ], + [ + 68.28516691516322, + 24.263264000108748 + ], + [ + 68.40000959864689, + 24.068616265180296 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 24.068616265180296 + ], + [ + 68.28516691516322, + 24.263264000108748 + ], + [ + 68.17032423167953, + 24.068616265180296 + ], + [ + 68.40000959864689, + 24.068616265180296 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 24.068616265180296 + ], + [ + 68.17032423167953, + 24.068616265180296 + ], + [ + 68.28516691516322, + 23.873968530251844 + ], + [ + 68.40000959864689, + 24.068616265180296 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 24.068616265180296 + ], + [ + 68.28516691516322, + 23.873968530251844 + ], + [ + 68.51485228213056, + 23.873968530251844 + ], + [ + 68.40000959864689, + 24.068616265180296 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 24.068616265180296 + ], + [ + 68.51485228213056, + 23.873968530251844 + ], + [ + 68.62969496561425, + 24.068616265180296 + ], + [ + 68.40000959864689, + 24.068616265180296 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 24.4579117350372 + ], + [ + 68.62969496561425, + 24.4579117350372 + ], + [ + 68.51485228213056, + 24.652559469965652 + ], + [ + 68.40000959864689, + 24.4579117350372 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 24.4579117350372 + ], + [ + 68.51485228213056, + 24.652559469965652 + ], + [ + 68.28516691516322, + 24.652559469965652 + ], + [ + 68.40000959864689, + 24.4579117350372 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 24.4579117350372 + ], + [ + 68.28516691516322, + 24.652559469965652 + ], + [ + 68.17032423167953, + 24.4579117350372 + ], + [ + 68.40000959864689, + 24.4579117350372 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 24.4579117350372 + ], + [ + 68.17032423167953, + 24.4579117350372 + ], + [ + 68.28516691516322, + 24.263264000108748 + ], + [ + 68.40000959864689, + 24.4579117350372 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 24.4579117350372 + ], + [ + 68.28516691516322, + 24.263264000108748 + ], + [ + 68.51485228213056, + 24.263264000108748 + ], + [ + 68.40000959864689, + 24.4579117350372 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 24.4579117350372 + ], + [ + 68.51485228213056, + 24.263264000108748 + ], + [ + 68.62969496561425, + 24.4579117350372 + ], + [ + 68.40000959864689, + 24.4579117350372 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 24.847207204894108 + ], + [ + 68.62969496561425, + 24.847207204894108 + ], + [ + 68.51485228213056, + 25.04185493982256 + ], + [ + 68.40000959864689, + 24.847207204894108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 24.847207204894108 + ], + [ + 68.51485228213056, + 25.04185493982256 + ], + [ + 68.28516691516322, + 25.04185493982256 + ], + [ + 68.40000959864689, + 24.847207204894108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 24.847207204894108 + ], + [ + 68.28516691516322, + 25.04185493982256 + ], + [ + 68.17032423167953, + 24.847207204894108 + ], + [ + 68.40000959864689, + 24.847207204894108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 24.847207204894108 + ], + [ + 68.17032423167953, + 24.847207204894108 + ], + [ + 68.28516691516322, + 24.652559469965656 + ], + [ + 68.40000959864689, + 24.847207204894108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 24.847207204894108 + ], + [ + 68.28516691516322, + 24.652559469965656 + ], + [ + 68.51485228213056, + 24.652559469965656 + ], + [ + 68.40000959864689, + 24.847207204894108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 24.847207204894108 + ], + [ + 68.51485228213056, + 24.652559469965656 + ], + [ + 68.62969496561425, + 24.847207204894108 + ], + [ + 68.40000959864689, + 24.847207204894108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 25.236502674751016 + ], + [ + 68.62969496561425, + 25.236502674751016 + ], + [ + 68.51485228213056, + 25.431150409679468 + ], + [ + 68.40000959864689, + 25.236502674751016 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 25.236502674751016 + ], + [ + 68.51485228213056, + 25.431150409679468 + ], + [ + 68.28516691516322, + 25.431150409679468 + ], + [ + 68.40000959864689, + 25.236502674751016 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 25.236502674751016 + ], + [ + 68.28516691516322, + 25.431150409679468 + ], + [ + 68.17032423167953, + 25.236502674751016 + ], + [ + 68.40000959864689, + 25.236502674751016 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 25.236502674751016 + ], + [ + 68.17032423167953, + 25.236502674751016 + ], + [ + 68.28516691516322, + 25.041854939822564 + ], + [ + 68.40000959864689, + 25.236502674751016 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 25.236502674751016 + ], + [ + 68.28516691516322, + 25.041854939822564 + ], + [ + 68.51485228213056, + 25.041854939822564 + ], + [ + 68.40000959864689, + 25.236502674751016 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 25.236502674751016 + ], + [ + 68.51485228213056, + 25.041854939822564 + ], + [ + 68.62969496561425, + 25.236502674751016 + ], + [ + 68.40000959864689, + 25.236502674751016 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 25.62579814460792 + ], + [ + 68.62969496561425, + 25.62579814460792 + ], + [ + 68.51485228213056, + 25.820445879536372 + ], + [ + 68.40000959864689, + 25.62579814460792 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 25.62579814460792 + ], + [ + 68.51485228213056, + 25.820445879536372 + ], + [ + 68.28516691516322, + 25.820445879536372 + ], + [ + 68.40000959864689, + 25.62579814460792 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 25.62579814460792 + ], + [ + 68.28516691516322, + 25.820445879536372 + ], + [ + 68.17032423167953, + 25.62579814460792 + ], + [ + 68.40000959864689, + 25.62579814460792 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 25.62579814460792 + ], + [ + 68.17032423167953, + 25.62579814460792 + ], + [ + 68.28516691516322, + 25.431150409679468 + ], + [ + 68.40000959864689, + 25.62579814460792 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 25.62579814460792 + ], + [ + 68.28516691516322, + 25.431150409679468 + ], + [ + 68.51485228213056, + 25.431150409679468 + ], + [ + 68.40000959864689, + 25.62579814460792 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 25.62579814460792 + ], + [ + 68.51485228213056, + 25.431150409679468 + ], + [ + 68.62969496561425, + 25.62579814460792 + ], + [ + 68.40000959864689, + 25.62579814460792 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 26.015093614464828 + ], + [ + 68.62969496561425, + 26.015093614464828 + ], + [ + 68.51485228213056, + 26.20974134939328 + ], + [ + 68.40000959864689, + 26.015093614464828 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 26.015093614464828 + ], + [ + 68.51485228213056, + 26.20974134939328 + ], + [ + 68.28516691516322, + 26.20974134939328 + ], + [ + 68.40000959864689, + 26.015093614464828 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 26.015093614464828 + ], + [ + 68.28516691516322, + 26.20974134939328 + ], + [ + 68.17032423167953, + 26.015093614464828 + ], + [ + 68.40000959864689, + 26.015093614464828 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 26.015093614464828 + ], + [ + 68.17032423167953, + 26.015093614464828 + ], + [ + 68.28516691516322, + 25.820445879536376 + ], + [ + 68.40000959864689, + 26.015093614464828 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 26.015093614464828 + ], + [ + 68.28516691516322, + 25.820445879536376 + ], + [ + 68.51485228213056, + 25.820445879536376 + ], + [ + 68.40000959864689, + 26.015093614464828 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 26.015093614464828 + ], + [ + 68.51485228213056, + 25.820445879536376 + ], + [ + 68.62969496561425, + 26.015093614464828 + ], + [ + 68.40000959864689, + 26.015093614464828 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 26.404389084321735 + ], + [ + 68.62969496561425, + 26.404389084321735 + ], + [ + 68.51485228213056, + 26.599036819250188 + ], + [ + 68.40000959864689, + 26.404389084321735 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 26.404389084321735 + ], + [ + 68.51485228213056, + 26.599036819250188 + ], + [ + 68.28516691516322, + 26.599036819250188 + ], + [ + 68.40000959864689, + 26.404389084321735 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 26.404389084321735 + ], + [ + 68.28516691516322, + 26.599036819250188 + ], + [ + 68.17032423167953, + 26.404389084321735 + ], + [ + 68.40000959864689, + 26.404389084321735 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 26.404389084321735 + ], + [ + 68.17032423167953, + 26.404389084321735 + ], + [ + 68.28516691516322, + 26.209741349393283 + ], + [ + 68.40000959864689, + 26.404389084321735 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 26.404389084321735 + ], + [ + 68.28516691516322, + 26.209741349393283 + ], + [ + 68.51485228213056, + 26.209741349393283 + ], + [ + 68.40000959864689, + 26.404389084321735 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 26.404389084321735 + ], + [ + 68.51485228213056, + 26.209741349393283 + ], + [ + 68.62969496561425, + 26.404389084321735 + ], + [ + 68.40000959864689, + 26.404389084321735 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 26.79368455417864 + ], + [ + 68.62969496561425, + 26.79368455417864 + ], + [ + 68.51485228213056, + 26.988332289107092 + ], + [ + 68.40000959864689, + 26.79368455417864 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 26.79368455417864 + ], + [ + 68.51485228213056, + 26.988332289107092 + ], + [ + 68.28516691516322, + 26.988332289107092 + ], + [ + 68.40000959864689, + 26.79368455417864 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 26.79368455417864 + ], + [ + 68.28516691516322, + 26.988332289107092 + ], + [ + 68.17032423167953, + 26.79368455417864 + ], + [ + 68.40000959864689, + 26.79368455417864 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 26.79368455417864 + ], + [ + 68.17032423167953, + 26.79368455417864 + ], + [ + 68.28516691516322, + 26.599036819250188 + ], + [ + 68.40000959864689, + 26.79368455417864 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 26.79368455417864 + ], + [ + 68.28516691516322, + 26.599036819250188 + ], + [ + 68.51485228213056, + 26.599036819250188 + ], + [ + 68.40000959864689, + 26.79368455417864 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 26.79368455417864 + ], + [ + 68.51485228213056, + 26.599036819250188 + ], + [ + 68.62969496561425, + 26.79368455417864 + ], + [ + 68.40000959864689, + 26.79368455417864 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 27.182980024035547 + ], + [ + 68.62969496561425, + 27.182980024035547 + ], + [ + 68.51485228213056, + 27.377627758964 + ], + [ + 68.40000959864689, + 27.182980024035547 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 27.182980024035547 + ], + [ + 68.51485228213056, + 27.377627758964 + ], + [ + 68.28516691516322, + 27.377627758964 + ], + [ + 68.40000959864689, + 27.182980024035547 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 27.182980024035547 + ], + [ + 68.28516691516322, + 27.377627758964 + ], + [ + 68.17032423167953, + 27.182980024035547 + ], + [ + 68.40000959864689, + 27.182980024035547 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 27.182980024035547 + ], + [ + 68.17032423167953, + 27.182980024035547 + ], + [ + 68.28516691516322, + 26.988332289107095 + ], + [ + 68.40000959864689, + 27.182980024035547 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 27.182980024035547 + ], + [ + 68.28516691516322, + 26.988332289107095 + ], + [ + 68.51485228213056, + 26.988332289107095 + ], + [ + 68.40000959864689, + 27.182980024035547 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 27.182980024035547 + ], + [ + 68.51485228213056, + 26.988332289107095 + ], + [ + 68.62969496561425, + 27.182980024035547 + ], + [ + 68.40000959864689, + 27.182980024035547 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 27.572275493892455 + ], + [ + 68.62969496561425, + 27.572275493892455 + ], + [ + 68.51485228213056, + 27.766923228820907 + ], + [ + 68.40000959864689, + 27.572275493892455 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 27.572275493892455 + ], + [ + 68.51485228213056, + 27.766923228820907 + ], + [ + 68.28516691516322, + 27.766923228820907 + ], + [ + 68.40000959864689, + 27.572275493892455 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 27.572275493892455 + ], + [ + 68.28516691516322, + 27.766923228820907 + ], + [ + 68.17032423167953, + 27.572275493892455 + ], + [ + 68.40000959864689, + 27.572275493892455 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 27.572275493892455 + ], + [ + 68.17032423167953, + 27.572275493892455 + ], + [ + 68.28516691516322, + 27.377627758964003 + ], + [ + 68.40000959864689, + 27.572275493892455 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 27.572275493892455 + ], + [ + 68.28516691516322, + 27.377627758964003 + ], + [ + 68.51485228213056, + 27.377627758964003 + ], + [ + 68.40000959864689, + 27.572275493892455 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 27.572275493892455 + ], + [ + 68.51485228213056, + 27.377627758964003 + ], + [ + 68.62969496561425, + 27.572275493892455 + ], + [ + 68.40000959864689, + 27.572275493892455 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 27.96157096374936 + ], + [ + 68.62969496561425, + 27.96157096374936 + ], + [ + 68.51485228213056, + 28.15621869867781 + ], + [ + 68.40000959864689, + 27.96157096374936 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 27.96157096374936 + ], + [ + 68.51485228213056, + 28.15621869867781 + ], + [ + 68.28516691516322, + 28.15621869867781 + ], + [ + 68.40000959864689, + 27.96157096374936 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 27.96157096374936 + ], + [ + 68.28516691516322, + 28.15621869867781 + ], + [ + 68.17032423167953, + 27.96157096374936 + ], + [ + 68.40000959864689, + 27.96157096374936 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 27.96157096374936 + ], + [ + 68.17032423167953, + 27.96157096374936 + ], + [ + 68.28516691516322, + 27.766923228820907 + ], + [ + 68.40000959864689, + 27.96157096374936 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 27.96157096374936 + ], + [ + 68.28516691516322, + 27.766923228820907 + ], + [ + 68.51485228213056, + 27.766923228820907 + ], + [ + 68.40000959864689, + 27.96157096374936 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 27.96157096374936 + ], + [ + 68.51485228213056, + 27.766923228820907 + ], + [ + 68.62969496561425, + 27.96157096374936 + ], + [ + 68.40000959864689, + 27.96157096374936 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 28.350866433606267 + ], + [ + 68.62969496561425, + 28.350866433606267 + ], + [ + 68.51485228213056, + 28.54551416853472 + ], + [ + 68.40000959864689, + 28.350866433606267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 28.350866433606267 + ], + [ + 68.51485228213056, + 28.54551416853472 + ], + [ + 68.28516691516322, + 28.54551416853472 + ], + [ + 68.40000959864689, + 28.350866433606267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 28.350866433606267 + ], + [ + 68.28516691516322, + 28.54551416853472 + ], + [ + 68.17032423167953, + 28.350866433606267 + ], + [ + 68.40000959864689, + 28.350866433606267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 28.350866433606267 + ], + [ + 68.17032423167953, + 28.350866433606267 + ], + [ + 68.28516691516322, + 28.156218698677815 + ], + [ + 68.40000959864689, + 28.350866433606267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 28.350866433606267 + ], + [ + 68.28516691516322, + 28.156218698677815 + ], + [ + 68.51485228213056, + 28.156218698677815 + ], + [ + 68.40000959864689, + 28.350866433606267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 28.350866433606267 + ], + [ + 68.51485228213056, + 28.156218698677815 + ], + [ + 68.62969496561425, + 28.350866433606267 + ], + [ + 68.40000959864689, + 28.350866433606267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 28.74016190346317 + ], + [ + 68.62969496561425, + 28.74016190346317 + ], + [ + 68.51485228213056, + 28.934809638391624 + ], + [ + 68.40000959864689, + 28.74016190346317 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 28.74016190346317 + ], + [ + 68.51485228213056, + 28.934809638391624 + ], + [ + 68.28516691516322, + 28.934809638391624 + ], + [ + 68.40000959864689, + 28.74016190346317 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 28.74016190346317 + ], + [ + 68.28516691516322, + 28.934809638391624 + ], + [ + 68.17032423167953, + 28.74016190346317 + ], + [ + 68.40000959864689, + 28.74016190346317 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 28.74016190346317 + ], + [ + 68.17032423167953, + 28.74016190346317 + ], + [ + 68.28516691516322, + 28.54551416853472 + ], + [ + 68.40000959864689, + 28.74016190346317 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 28.74016190346317 + ], + [ + 68.28516691516322, + 28.54551416853472 + ], + [ + 68.51485228213056, + 28.54551416853472 + ], + [ + 68.40000959864689, + 28.74016190346317 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 28.74016190346317 + ], + [ + 68.51485228213056, + 28.54551416853472 + ], + [ + 68.62969496561425, + 28.74016190346317 + ], + [ + 68.40000959864689, + 28.74016190346317 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 29.12945737332008 + ], + [ + 68.62969496561425, + 29.12945737332008 + ], + [ + 68.51485228213056, + 29.32410510824853 + ], + [ + 68.40000959864689, + 29.12945737332008 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 29.12945737332008 + ], + [ + 68.51485228213056, + 29.32410510824853 + ], + [ + 68.28516691516322, + 29.32410510824853 + ], + [ + 68.40000959864689, + 29.12945737332008 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 29.12945737332008 + ], + [ + 68.28516691516322, + 29.32410510824853 + ], + [ + 68.17032423167953, + 29.12945737332008 + ], + [ + 68.40000959864689, + 29.12945737332008 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 29.12945737332008 + ], + [ + 68.17032423167953, + 29.12945737332008 + ], + [ + 68.28516691516322, + 28.934809638391627 + ], + [ + 68.40000959864689, + 29.12945737332008 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 29.12945737332008 + ], + [ + 68.28516691516322, + 28.934809638391627 + ], + [ + 68.51485228213056, + 28.934809638391627 + ], + [ + 68.40000959864689, + 29.12945737332008 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 29.12945737332008 + ], + [ + 68.51485228213056, + 28.934809638391627 + ], + [ + 68.62969496561425, + 29.12945737332008 + ], + [ + 68.40000959864689, + 29.12945737332008 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 29.518752843176983 + ], + [ + 68.62969496561425, + 29.518752843176983 + ], + [ + 68.51485228213056, + 29.713400578105436 + ], + [ + 68.40000959864689, + 29.518752843176983 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 29.518752843176983 + ], + [ + 68.51485228213056, + 29.713400578105436 + ], + [ + 68.28516691516322, + 29.713400578105436 + ], + [ + 68.40000959864689, + 29.518752843176983 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 29.518752843176983 + ], + [ + 68.28516691516322, + 29.713400578105436 + ], + [ + 68.17032423167953, + 29.518752843176983 + ], + [ + 68.40000959864689, + 29.518752843176983 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 29.518752843176983 + ], + [ + 68.17032423167953, + 29.518752843176983 + ], + [ + 68.28516691516322, + 29.32410510824853 + ], + [ + 68.40000959864689, + 29.518752843176983 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 29.518752843176983 + ], + [ + 68.28516691516322, + 29.32410510824853 + ], + [ + 68.51485228213056, + 29.32410510824853 + ], + [ + 68.40000959864689, + 29.518752843176983 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 29.518752843176983 + ], + [ + 68.51485228213056, + 29.32410510824853 + ], + [ + 68.62969496561425, + 29.518752843176983 + ], + [ + 68.40000959864689, + 29.518752843176983 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 29.90804831303389 + ], + [ + 68.62969496561425, + 29.90804831303389 + ], + [ + 68.51485228213056, + 30.102696047962343 + ], + [ + 68.40000959864689, + 29.90804831303389 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 29.90804831303389 + ], + [ + 68.51485228213056, + 30.102696047962343 + ], + [ + 68.28516691516322, + 30.102696047962343 + ], + [ + 68.40000959864689, + 29.90804831303389 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 29.90804831303389 + ], + [ + 68.28516691516322, + 30.102696047962343 + ], + [ + 68.17032423167953, + 29.90804831303389 + ], + [ + 68.40000959864689, + 29.90804831303389 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 29.90804831303389 + ], + [ + 68.17032423167953, + 29.90804831303389 + ], + [ + 68.28516691516322, + 29.71340057810544 + ], + [ + 68.40000959864689, + 29.90804831303389 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 29.90804831303389 + ], + [ + 68.28516691516322, + 29.71340057810544 + ], + [ + 68.51485228213056, + 29.71340057810544 + ], + [ + 68.40000959864689, + 29.90804831303389 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 29.90804831303389 + ], + [ + 68.51485228213056, + 29.71340057810544 + ], + [ + 68.62969496561425, + 29.90804831303389 + ], + [ + 68.40000959864689, + 29.90804831303389 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 30.297343782890795 + ], + [ + 68.62969496561425, + 30.297343782890795 + ], + [ + 68.51485228213056, + 30.491991517819248 + ], + [ + 68.40000959864689, + 30.297343782890795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 30.297343782890795 + ], + [ + 68.51485228213056, + 30.491991517819248 + ], + [ + 68.28516691516322, + 30.491991517819248 + ], + [ + 68.40000959864689, + 30.297343782890795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 30.297343782890795 + ], + [ + 68.28516691516322, + 30.491991517819248 + ], + [ + 68.17032423167953, + 30.297343782890795 + ], + [ + 68.40000959864689, + 30.297343782890795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 30.297343782890795 + ], + [ + 68.17032423167953, + 30.297343782890795 + ], + [ + 68.28516691516322, + 30.102696047962343 + ], + [ + 68.40000959864689, + 30.297343782890795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 30.297343782890795 + ], + [ + 68.28516691516322, + 30.102696047962343 + ], + [ + 68.51485228213056, + 30.102696047962343 + ], + [ + 68.40000959864689, + 30.297343782890795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 30.297343782890795 + ], + [ + 68.51485228213056, + 30.102696047962343 + ], + [ + 68.62969496561425, + 30.297343782890795 + ], + [ + 68.40000959864689, + 30.297343782890795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 30.686639252747703 + ], + [ + 68.62969496561425, + 30.686639252747703 + ], + [ + 68.51485228213056, + 30.881286987676155 + ], + [ + 68.40000959864689, + 30.686639252747703 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 30.686639252747703 + ], + [ + 68.51485228213056, + 30.881286987676155 + ], + [ + 68.28516691516322, + 30.881286987676155 + ], + [ + 68.40000959864689, + 30.686639252747703 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 30.686639252747703 + ], + [ + 68.28516691516322, + 30.881286987676155 + ], + [ + 68.17032423167953, + 30.686639252747703 + ], + [ + 68.40000959864689, + 30.686639252747703 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 30.686639252747703 + ], + [ + 68.17032423167953, + 30.686639252747703 + ], + [ + 68.28516691516322, + 30.49199151781925 + ], + [ + 68.40000959864689, + 30.686639252747703 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 30.686639252747703 + ], + [ + 68.28516691516322, + 30.49199151781925 + ], + [ + 68.51485228213056, + 30.49199151781925 + ], + [ + 68.40000959864689, + 30.686639252747703 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 30.686639252747703 + ], + [ + 68.51485228213056, + 30.49199151781925 + ], + [ + 68.62969496561425, + 30.686639252747703 + ], + [ + 68.40000959864689, + 30.686639252747703 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 31.07593472260461 + ], + [ + 68.62969496561425, + 31.07593472260461 + ], + [ + 68.51485228213056, + 31.270582457533063 + ], + [ + 68.40000959864689, + 31.07593472260461 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 31.07593472260461 + ], + [ + 68.51485228213056, + 31.270582457533063 + ], + [ + 68.28516691516322, + 31.270582457533063 + ], + [ + 68.40000959864689, + 31.07593472260461 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 31.07593472260461 + ], + [ + 68.28516691516322, + 31.270582457533063 + ], + [ + 68.17032423167953, + 31.07593472260461 + ], + [ + 68.40000959864689, + 31.07593472260461 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 31.07593472260461 + ], + [ + 68.17032423167953, + 31.07593472260461 + ], + [ + 68.28516691516322, + 30.88128698767616 + ], + [ + 68.40000959864689, + 31.07593472260461 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 31.07593472260461 + ], + [ + 68.28516691516322, + 30.88128698767616 + ], + [ + 68.51485228213056, + 30.88128698767616 + ], + [ + 68.40000959864689, + 31.07593472260461 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 31.07593472260461 + ], + [ + 68.51485228213056, + 30.88128698767616 + ], + [ + 68.62969496561425, + 31.07593472260461 + ], + [ + 68.40000959864689, + 31.07593472260461 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 31.465230192461515 + ], + [ + 68.62969496561425, + 31.465230192461515 + ], + [ + 68.51485228213056, + 31.659877927389967 + ], + [ + 68.40000959864689, + 31.465230192461515 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 31.465230192461515 + ], + [ + 68.51485228213056, + 31.659877927389967 + ], + [ + 68.28516691516322, + 31.659877927389967 + ], + [ + 68.40000959864689, + 31.465230192461515 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 31.465230192461515 + ], + [ + 68.28516691516322, + 31.659877927389967 + ], + [ + 68.17032423167953, + 31.465230192461515 + ], + [ + 68.40000959864689, + 31.465230192461515 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 31.465230192461515 + ], + [ + 68.17032423167953, + 31.465230192461515 + ], + [ + 68.28516691516322, + 31.270582457533063 + ], + [ + 68.40000959864689, + 31.465230192461515 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 31.465230192461515 + ], + [ + 68.28516691516322, + 31.270582457533063 + ], + [ + 68.51485228213056, + 31.270582457533063 + ], + [ + 68.40000959864689, + 31.465230192461515 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 31.465230192461515 + ], + [ + 68.51485228213056, + 31.270582457533063 + ], + [ + 68.62969496561425, + 31.465230192461515 + ], + [ + 68.40000959864689, + 31.465230192461515 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 31.854525662318423 + ], + [ + 68.62969496561425, + 31.854525662318423 + ], + [ + 68.51485228213056, + 32.049173397246875 + ], + [ + 68.40000959864689, + 31.854525662318423 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 31.854525662318423 + ], + [ + 68.51485228213056, + 32.049173397246875 + ], + [ + 68.28516691516322, + 32.049173397246875 + ], + [ + 68.40000959864689, + 31.854525662318423 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 31.854525662318423 + ], + [ + 68.28516691516322, + 32.049173397246875 + ], + [ + 68.17032423167953, + 31.854525662318423 + ], + [ + 68.40000959864689, + 31.854525662318423 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 31.854525662318423 + ], + [ + 68.17032423167953, + 31.854525662318423 + ], + [ + 68.28516691516322, + 31.65987792738997 + ], + [ + 68.40000959864689, + 31.854525662318423 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 31.854525662318423 + ], + [ + 68.28516691516322, + 31.65987792738997 + ], + [ + 68.51485228213056, + 31.65987792738997 + ], + [ + 68.40000959864689, + 31.854525662318423 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 31.854525662318423 + ], + [ + 68.51485228213056, + 31.65987792738997 + ], + [ + 68.62969496561425, + 31.854525662318423 + ], + [ + 68.40000959864689, + 31.854525662318423 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 32.24382113217533 + ], + [ + 68.62969496561425, + 32.24382113217533 + ], + [ + 68.51485228213056, + 32.43846886710378 + ], + [ + 68.40000959864689, + 32.24382113217533 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 32.24382113217533 + ], + [ + 68.51485228213056, + 32.43846886710378 + ], + [ + 68.28516691516322, + 32.43846886710378 + ], + [ + 68.40000959864689, + 32.24382113217533 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 32.24382113217533 + ], + [ + 68.28516691516322, + 32.43846886710378 + ], + [ + 68.17032423167953, + 32.24382113217533 + ], + [ + 68.40000959864689, + 32.24382113217533 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 32.24382113217533 + ], + [ + 68.17032423167953, + 32.24382113217533 + ], + [ + 68.28516691516322, + 32.049173397246875 + ], + [ + 68.40000959864689, + 32.24382113217533 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 32.24382113217533 + ], + [ + 68.28516691516322, + 32.049173397246875 + ], + [ + 68.51485228213056, + 32.049173397246875 + ], + [ + 68.40000959864689, + 32.24382113217533 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 32.24382113217533 + ], + [ + 68.51485228213056, + 32.049173397246875 + ], + [ + 68.62969496561425, + 32.24382113217533 + ], + [ + 68.40000959864689, + 32.24382113217533 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 32.63311660203224 + ], + [ + 68.62969496561425, + 32.63311660203224 + ], + [ + 68.51485228213056, + 32.82776433696069 + ], + [ + 68.40000959864689, + 32.63311660203224 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 32.63311660203224 + ], + [ + 68.51485228213056, + 32.82776433696069 + ], + [ + 68.28516691516322, + 32.82776433696069 + ], + [ + 68.40000959864689, + 32.63311660203224 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 32.63311660203224 + ], + [ + 68.28516691516322, + 32.82776433696069 + ], + [ + 68.17032423167953, + 32.63311660203224 + ], + [ + 68.40000959864689, + 32.63311660203224 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 32.63311660203224 + ], + [ + 68.17032423167953, + 32.63311660203224 + ], + [ + 68.28516691516322, + 32.438468867103786 + ], + [ + 68.40000959864689, + 32.63311660203224 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 32.63311660203224 + ], + [ + 68.28516691516322, + 32.438468867103786 + ], + [ + 68.51485228213056, + 32.438468867103786 + ], + [ + 68.40000959864689, + 32.63311660203224 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 32.63311660203224 + ], + [ + 68.51485228213056, + 32.438468867103786 + ], + [ + 68.62969496561425, + 32.63311660203224 + ], + [ + 68.40000959864689, + 32.63311660203224 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 33.02241207188914 + ], + [ + 68.62969496561425, + 33.02241207188914 + ], + [ + 68.51485228213056, + 33.217059806817595 + ], + [ + 68.40000959864689, + 33.02241207188914 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 33.02241207188914 + ], + [ + 68.51485228213056, + 33.217059806817595 + ], + [ + 68.28516691516322, + 33.217059806817595 + ], + [ + 68.40000959864689, + 33.02241207188914 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 33.02241207188914 + ], + [ + 68.28516691516322, + 33.217059806817595 + ], + [ + 68.17032423167953, + 33.02241207188914 + ], + [ + 68.40000959864689, + 33.02241207188914 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 33.02241207188914 + ], + [ + 68.17032423167953, + 33.02241207188914 + ], + [ + 68.28516691516322, + 32.82776433696069 + ], + [ + 68.40000959864689, + 33.02241207188914 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 33.02241207188914 + ], + [ + 68.28516691516322, + 32.82776433696069 + ], + [ + 68.51485228213056, + 32.82776433696069 + ], + [ + 68.40000959864689, + 33.02241207188914 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 33.02241207188914 + ], + [ + 68.51485228213056, + 32.82776433696069 + ], + [ + 68.62969496561425, + 33.02241207188914 + ], + [ + 68.40000959864689, + 33.02241207188914 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 33.41170754174605 + ], + [ + 68.62969496561425, + 33.41170754174605 + ], + [ + 68.51485228213056, + 33.6063552766745 + ], + [ + 68.40000959864689, + 33.41170754174605 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 33.41170754174605 + ], + [ + 68.51485228213056, + 33.6063552766745 + ], + [ + 68.28516691516322, + 33.6063552766745 + ], + [ + 68.40000959864689, + 33.41170754174605 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 33.41170754174605 + ], + [ + 68.28516691516322, + 33.6063552766745 + ], + [ + 68.17032423167953, + 33.41170754174605 + ], + [ + 68.40000959864689, + 33.41170754174605 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 33.41170754174605 + ], + [ + 68.17032423167953, + 33.41170754174605 + ], + [ + 68.28516691516322, + 33.217059806817595 + ], + [ + 68.40000959864689, + 33.41170754174605 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 33.41170754174605 + ], + [ + 68.28516691516322, + 33.217059806817595 + ], + [ + 68.51485228213056, + 33.217059806817595 + ], + [ + 68.40000959864689, + 33.41170754174605 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 33.41170754174605 + ], + [ + 68.51485228213056, + 33.217059806817595 + ], + [ + 68.62969496561425, + 33.41170754174605 + ], + [ + 68.40000959864689, + 33.41170754174605 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 33.80100301160295 + ], + [ + 68.62969496561425, + 33.80100301160295 + ], + [ + 68.51485228213056, + 33.9956507465314 + ], + [ + 68.40000959864689, + 33.80100301160295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 33.80100301160295 + ], + [ + 68.51485228213056, + 33.9956507465314 + ], + [ + 68.28516691516322, + 33.9956507465314 + ], + [ + 68.40000959864689, + 33.80100301160295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 33.80100301160295 + ], + [ + 68.28516691516322, + 33.9956507465314 + ], + [ + 68.17032423167953, + 33.80100301160295 + ], + [ + 68.40000959864689, + 33.80100301160295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 33.80100301160295 + ], + [ + 68.17032423167953, + 33.80100301160295 + ], + [ + 68.28516691516322, + 33.6063552766745 + ], + [ + 68.40000959864689, + 33.80100301160295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 33.80100301160295 + ], + [ + 68.28516691516322, + 33.6063552766745 + ], + [ + 68.51485228213056, + 33.6063552766745 + ], + [ + 68.40000959864689, + 33.80100301160295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 33.80100301160295 + ], + [ + 68.51485228213056, + 33.6063552766745 + ], + [ + 68.62969496561425, + 33.80100301160295 + ], + [ + 68.40000959864689, + 33.80100301160295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 34.190298481459855 + ], + [ + 68.62969496561425, + 34.190298481459855 + ], + [ + 68.51485228213056, + 34.38494621638831 + ], + [ + 68.40000959864689, + 34.190298481459855 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 34.190298481459855 + ], + [ + 68.51485228213056, + 34.38494621638831 + ], + [ + 68.28516691516322, + 34.38494621638831 + ], + [ + 68.40000959864689, + 34.190298481459855 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 34.190298481459855 + ], + [ + 68.28516691516322, + 34.38494621638831 + ], + [ + 68.17032423167953, + 34.190298481459855 + ], + [ + 68.40000959864689, + 34.190298481459855 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 34.190298481459855 + ], + [ + 68.17032423167953, + 34.190298481459855 + ], + [ + 68.28516691516322, + 33.9956507465314 + ], + [ + 68.40000959864689, + 34.190298481459855 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 34.190298481459855 + ], + [ + 68.28516691516322, + 33.9956507465314 + ], + [ + 68.51485228213056, + 33.9956507465314 + ], + [ + 68.40000959864689, + 34.190298481459855 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 34.190298481459855 + ], + [ + 68.51485228213056, + 33.9956507465314 + ], + [ + 68.62969496561425, + 34.190298481459855 + ], + [ + 68.40000959864689, + 34.190298481459855 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 34.57959395131677 + ], + [ + 68.62969496561425, + 34.57959395131677 + ], + [ + 68.51485228213056, + 34.77424168624522 + ], + [ + 68.40000959864689, + 34.57959395131677 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 34.57959395131677 + ], + [ + 68.51485228213056, + 34.77424168624522 + ], + [ + 68.28516691516322, + 34.77424168624522 + ], + [ + 68.40000959864689, + 34.57959395131677 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 34.57959395131677 + ], + [ + 68.28516691516322, + 34.77424168624522 + ], + [ + 68.17032423167953, + 34.57959395131677 + ], + [ + 68.40000959864689, + 34.57959395131677 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 34.57959395131677 + ], + [ + 68.17032423167953, + 34.57959395131677 + ], + [ + 68.28516691516322, + 34.384946216388315 + ], + [ + 68.40000959864689, + 34.57959395131677 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 34.57959395131677 + ], + [ + 68.28516691516322, + 34.384946216388315 + ], + [ + 68.51485228213056, + 34.384946216388315 + ], + [ + 68.40000959864689, + 34.57959395131677 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 34.57959395131677 + ], + [ + 68.51485228213056, + 34.384946216388315 + ], + [ + 68.62969496561425, + 34.57959395131677 + ], + [ + 68.40000959864689, + 34.57959395131677 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 34.96888942117368 + ], + [ + 68.62969496561425, + 34.96888942117368 + ], + [ + 68.51485228213056, + 35.16353715610213 + ], + [ + 68.40000959864689, + 34.96888942117368 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 34.96888942117368 + ], + [ + 68.51485228213056, + 35.16353715610213 + ], + [ + 68.28516691516322, + 35.16353715610213 + ], + [ + 68.40000959864689, + 34.96888942117368 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 34.96888942117368 + ], + [ + 68.28516691516322, + 35.16353715610213 + ], + [ + 68.17032423167953, + 34.96888942117368 + ], + [ + 68.40000959864689, + 34.96888942117368 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 34.96888942117368 + ], + [ + 68.17032423167953, + 34.96888942117368 + ], + [ + 68.28516691516322, + 34.774241686245226 + ], + [ + 68.40000959864689, + 34.96888942117368 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 34.96888942117368 + ], + [ + 68.28516691516322, + 34.774241686245226 + ], + [ + 68.51485228213056, + 34.774241686245226 + ], + [ + 68.40000959864689, + 34.96888942117368 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 34.96888942117368 + ], + [ + 68.51485228213056, + 34.774241686245226 + ], + [ + 68.62969496561425, + 34.96888942117368 + ], + [ + 68.40000959864689, + 34.96888942117368 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 35.35818489103058 + ], + [ + 68.62969496561425, + 35.35818489103058 + ], + [ + 68.51485228213056, + 35.552832625959034 + ], + [ + 68.40000959864689, + 35.35818489103058 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 35.35818489103058 + ], + [ + 68.51485228213056, + 35.552832625959034 + ], + [ + 68.28516691516322, + 35.552832625959034 + ], + [ + 68.40000959864689, + 35.35818489103058 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 35.35818489103058 + ], + [ + 68.28516691516322, + 35.552832625959034 + ], + [ + 68.17032423167953, + 35.35818489103058 + ], + [ + 68.40000959864689, + 35.35818489103058 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 35.35818489103058 + ], + [ + 68.17032423167953, + 35.35818489103058 + ], + [ + 68.28516691516322, + 35.16353715610213 + ], + [ + 68.40000959864689, + 35.35818489103058 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 35.35818489103058 + ], + [ + 68.28516691516322, + 35.16353715610213 + ], + [ + 68.51485228213056, + 35.16353715610213 + ], + [ + 68.40000959864689, + 35.35818489103058 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 35.35818489103058 + ], + [ + 68.51485228213056, + 35.16353715610213 + ], + [ + 68.62969496561425, + 35.35818489103058 + ], + [ + 68.40000959864689, + 35.35818489103058 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 35.74748036088749 + ], + [ + 68.62969496561425, + 35.74748036088749 + ], + [ + 68.51485228213056, + 35.94212809581594 + ], + [ + 68.40000959864689, + 35.74748036088749 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 35.74748036088749 + ], + [ + 68.51485228213056, + 35.94212809581594 + ], + [ + 68.28516691516322, + 35.94212809581594 + ], + [ + 68.40000959864689, + 35.74748036088749 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 35.74748036088749 + ], + [ + 68.28516691516322, + 35.94212809581594 + ], + [ + 68.17032423167953, + 35.74748036088749 + ], + [ + 68.40000959864689, + 35.74748036088749 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 35.74748036088749 + ], + [ + 68.17032423167953, + 35.74748036088749 + ], + [ + 68.28516691516322, + 35.552832625959034 + ], + [ + 68.40000959864689, + 35.74748036088749 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 35.74748036088749 + ], + [ + 68.28516691516322, + 35.552832625959034 + ], + [ + 68.51485228213056, + 35.552832625959034 + ], + [ + 68.40000959864689, + 35.74748036088749 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 35.74748036088749 + ], + [ + 68.51485228213056, + 35.552832625959034 + ], + [ + 68.62969496561425, + 35.74748036088749 + ], + [ + 68.40000959864689, + 35.74748036088749 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 36.13677583074439 + ], + [ + 68.62969496561425, + 36.13677583074439 + ], + [ + 68.51485228213056, + 36.33142356567284 + ], + [ + 68.40000959864689, + 36.13677583074439 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 36.13677583074439 + ], + [ + 68.51485228213056, + 36.33142356567284 + ], + [ + 68.28516691516322, + 36.33142356567284 + ], + [ + 68.40000959864689, + 36.13677583074439 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 36.13677583074439 + ], + [ + 68.28516691516322, + 36.33142356567284 + ], + [ + 68.17032423167953, + 36.13677583074439 + ], + [ + 68.40000959864689, + 36.13677583074439 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 36.13677583074439 + ], + [ + 68.17032423167953, + 36.13677583074439 + ], + [ + 68.28516691516322, + 35.94212809581594 + ], + [ + 68.40000959864689, + 36.13677583074439 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 36.13677583074439 + ], + [ + 68.28516691516322, + 35.94212809581594 + ], + [ + 68.51485228213056, + 35.94212809581594 + ], + [ + 68.40000959864689, + 36.13677583074439 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 36.13677583074439 + ], + [ + 68.51485228213056, + 35.94212809581594 + ], + [ + 68.62969496561425, + 36.13677583074439 + ], + [ + 68.40000959864689, + 36.13677583074439 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 36.526071300601295 + ], + [ + 68.62969496561425, + 36.526071300601295 + ], + [ + 68.51485228213056, + 36.72071903552975 + ], + [ + 68.40000959864689, + 36.526071300601295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 36.526071300601295 + ], + [ + 68.51485228213056, + 36.72071903552975 + ], + [ + 68.28516691516322, + 36.72071903552975 + ], + [ + 68.40000959864689, + 36.526071300601295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 36.526071300601295 + ], + [ + 68.28516691516322, + 36.72071903552975 + ], + [ + 68.17032423167953, + 36.526071300601295 + ], + [ + 68.40000959864689, + 36.526071300601295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 36.526071300601295 + ], + [ + 68.17032423167953, + 36.526071300601295 + ], + [ + 68.28516691516322, + 36.33142356567284 + ], + [ + 68.40000959864689, + 36.526071300601295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 36.526071300601295 + ], + [ + 68.28516691516322, + 36.33142356567284 + ], + [ + 68.51485228213056, + 36.33142356567284 + ], + [ + 68.40000959864689, + 36.526071300601295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 36.526071300601295 + ], + [ + 68.51485228213056, + 36.33142356567284 + ], + [ + 68.62969496561425, + 36.526071300601295 + ], + [ + 68.40000959864689, + 36.526071300601295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 36.915366770458206 + ], + [ + 68.62969496561425, + 36.915366770458206 + ], + [ + 68.51485228213056, + 37.11001450538666 + ], + [ + 68.40000959864689, + 36.915366770458206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 36.915366770458206 + ], + [ + 68.51485228213056, + 37.11001450538666 + ], + [ + 68.28516691516322, + 37.11001450538666 + ], + [ + 68.40000959864689, + 36.915366770458206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 36.915366770458206 + ], + [ + 68.28516691516322, + 37.11001450538666 + ], + [ + 68.17032423167953, + 36.915366770458206 + ], + [ + 68.40000959864689, + 36.915366770458206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 36.915366770458206 + ], + [ + 68.17032423167953, + 36.915366770458206 + ], + [ + 68.28516691516322, + 36.720719035529754 + ], + [ + 68.40000959864689, + 36.915366770458206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 36.915366770458206 + ], + [ + 68.28516691516322, + 36.720719035529754 + ], + [ + 68.51485228213056, + 36.720719035529754 + ], + [ + 68.40000959864689, + 36.915366770458206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 36.915366770458206 + ], + [ + 68.51485228213056, + 36.720719035529754 + ], + [ + 68.62969496561425, + 36.915366770458206 + ], + [ + 68.40000959864689, + 36.915366770458206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 37.30466224031511 + ], + [ + 68.62969496561425, + 37.30466224031511 + ], + [ + 68.51485228213056, + 37.49930997524356 + ], + [ + 68.40000959864689, + 37.30466224031511 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 37.30466224031511 + ], + [ + 68.51485228213056, + 37.49930997524356 + ], + [ + 68.28516691516322, + 37.49930997524356 + ], + [ + 68.40000959864689, + 37.30466224031511 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 37.30466224031511 + ], + [ + 68.28516691516322, + 37.49930997524356 + ], + [ + 68.17032423167953, + 37.30466224031511 + ], + [ + 68.40000959864689, + 37.30466224031511 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 37.30466224031511 + ], + [ + 68.17032423167953, + 37.30466224031511 + ], + [ + 68.28516691516322, + 37.11001450538666 + ], + [ + 68.40000959864689, + 37.30466224031511 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 37.30466224031511 + ], + [ + 68.28516691516322, + 37.11001450538666 + ], + [ + 68.51485228213056, + 37.11001450538666 + ], + [ + 68.40000959864689, + 37.30466224031511 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 37.30466224031511 + ], + [ + 68.51485228213056, + 37.11001450538666 + ], + [ + 68.62969496561425, + 37.30466224031511 + ], + [ + 68.40000959864689, + 37.30466224031511 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 37.69395771017202 + ], + [ + 68.62969496561425, + 37.69395771017202 + ], + [ + 68.51485228213056, + 37.888605445100474 + ], + [ + 68.40000959864689, + 37.69395771017202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 37.69395771017202 + ], + [ + 68.51485228213056, + 37.888605445100474 + ], + [ + 68.28516691516322, + 37.888605445100474 + ], + [ + 68.40000959864689, + 37.69395771017202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 37.69395771017202 + ], + [ + 68.28516691516322, + 37.888605445100474 + ], + [ + 68.17032423167953, + 37.69395771017202 + ], + [ + 68.40000959864689, + 37.69395771017202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 37.69395771017202 + ], + [ + 68.17032423167953, + 37.69395771017202 + ], + [ + 68.28516691516322, + 37.49930997524357 + ], + [ + 68.40000959864689, + 37.69395771017202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 37.69395771017202 + ], + [ + 68.28516691516322, + 37.49930997524357 + ], + [ + 68.51485228213056, + 37.49930997524357 + ], + [ + 68.40000959864689, + 37.69395771017202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 37.69395771017202 + ], + [ + 68.51485228213056, + 37.49930997524357 + ], + [ + 68.62969496561425, + 37.69395771017202 + ], + [ + 68.40000959864689, + 37.69395771017202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 38.083253180028926 + ], + [ + 68.62969496561425, + 38.083253180028926 + ], + [ + 68.51485228213056, + 38.27790091495738 + ], + [ + 68.40000959864689, + 38.083253180028926 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 38.083253180028926 + ], + [ + 68.51485228213056, + 38.27790091495738 + ], + [ + 68.28516691516322, + 38.27790091495738 + ], + [ + 68.40000959864689, + 38.083253180028926 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 38.083253180028926 + ], + [ + 68.28516691516322, + 38.27790091495738 + ], + [ + 68.17032423167953, + 38.083253180028926 + ], + [ + 68.40000959864689, + 38.083253180028926 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 38.083253180028926 + ], + [ + 68.17032423167953, + 38.083253180028926 + ], + [ + 68.28516691516322, + 37.888605445100474 + ], + [ + 68.40000959864689, + 38.083253180028926 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 38.083253180028926 + ], + [ + 68.28516691516322, + 37.888605445100474 + ], + [ + 68.51485228213056, + 37.888605445100474 + ], + [ + 68.40000959864689, + 38.083253180028926 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 38.083253180028926 + ], + [ + 68.51485228213056, + 37.888605445100474 + ], + [ + 68.62969496561425, + 38.083253180028926 + ], + [ + 68.40000959864689, + 38.083253180028926 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 38.47254864988583 + ], + [ + 68.62969496561425, + 38.47254864988583 + ], + [ + 68.51485228213056, + 38.66719638481428 + ], + [ + 68.40000959864689, + 38.47254864988583 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 38.47254864988583 + ], + [ + 68.51485228213056, + 38.66719638481428 + ], + [ + 68.28516691516322, + 38.66719638481428 + ], + [ + 68.40000959864689, + 38.47254864988583 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 38.47254864988583 + ], + [ + 68.28516691516322, + 38.66719638481428 + ], + [ + 68.17032423167953, + 38.47254864988583 + ], + [ + 68.40000959864689, + 38.47254864988583 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 38.47254864988583 + ], + [ + 68.17032423167953, + 38.47254864988583 + ], + [ + 68.28516691516322, + 38.27790091495738 + ], + [ + 68.40000959864689, + 38.47254864988583 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 38.47254864988583 + ], + [ + 68.28516691516322, + 38.27790091495738 + ], + [ + 68.51485228213056, + 38.27790091495738 + ], + [ + 68.40000959864689, + 38.47254864988583 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 38.47254864988583 + ], + [ + 68.51485228213056, + 38.27790091495738 + ], + [ + 68.62969496561425, + 38.47254864988583 + ], + [ + 68.40000959864689, + 38.47254864988583 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 38.861844119742734 + ], + [ + 68.62969496561425, + 38.861844119742734 + ], + [ + 68.51485228213056, + 39.05649185467119 + ], + [ + 68.40000959864689, + 38.861844119742734 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 38.861844119742734 + ], + [ + 68.51485228213056, + 39.05649185467119 + ], + [ + 68.28516691516322, + 39.05649185467119 + ], + [ + 68.40000959864689, + 38.861844119742734 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 38.861844119742734 + ], + [ + 68.28516691516322, + 39.05649185467119 + ], + [ + 68.17032423167953, + 38.861844119742734 + ], + [ + 68.40000959864689, + 38.861844119742734 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 38.861844119742734 + ], + [ + 68.17032423167953, + 38.861844119742734 + ], + [ + 68.28516691516322, + 38.66719638481428 + ], + [ + 68.40000959864689, + 38.861844119742734 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 38.861844119742734 + ], + [ + 68.28516691516322, + 38.66719638481428 + ], + [ + 68.51485228213056, + 38.66719638481428 + ], + [ + 68.40000959864689, + 38.861844119742734 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 38.861844119742734 + ], + [ + 68.51485228213056, + 38.66719638481428 + ], + [ + 68.62969496561425, + 38.861844119742734 + ], + [ + 68.40000959864689, + 38.861844119742734 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 39.25113958959964 + ], + [ + 68.62969496561425, + 39.25113958959964 + ], + [ + 68.51485228213056, + 39.44578732452809 + ], + [ + 68.40000959864689, + 39.25113958959964 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 39.25113958959964 + ], + [ + 68.51485228213056, + 39.44578732452809 + ], + [ + 68.28516691516322, + 39.44578732452809 + ], + [ + 68.40000959864689, + 39.25113958959964 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 39.25113958959964 + ], + [ + 68.28516691516322, + 39.44578732452809 + ], + [ + 68.17032423167953, + 39.25113958959964 + ], + [ + 68.40000959864689, + 39.25113958959964 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 39.25113958959964 + ], + [ + 68.17032423167953, + 39.25113958959964 + ], + [ + 68.28516691516322, + 39.05649185467119 + ], + [ + 68.40000959864689, + 39.25113958959964 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 39.25113958959964 + ], + [ + 68.28516691516322, + 39.05649185467119 + ], + [ + 68.51485228213056, + 39.05649185467119 + ], + [ + 68.40000959864689, + 39.25113958959964 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 39.25113958959964 + ], + [ + 68.51485228213056, + 39.05649185467119 + ], + [ + 68.62969496561425, + 39.25113958959964 + ], + [ + 68.40000959864689, + 39.25113958959964 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 39.64043505945655 + ], + [ + 68.62969496561425, + 39.64043505945655 + ], + [ + 68.51485228213056, + 39.835082794385 + ], + [ + 68.40000959864689, + 39.64043505945655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 39.64043505945655 + ], + [ + 68.51485228213056, + 39.835082794385 + ], + [ + 68.28516691516322, + 39.835082794385 + ], + [ + 68.40000959864689, + 39.64043505945655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 39.64043505945655 + ], + [ + 68.28516691516322, + 39.835082794385 + ], + [ + 68.17032423167953, + 39.64043505945655 + ], + [ + 68.40000959864689, + 39.64043505945655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 39.64043505945655 + ], + [ + 68.17032423167953, + 39.64043505945655 + ], + [ + 68.28516691516322, + 39.4457873245281 + ], + [ + 68.40000959864689, + 39.64043505945655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 39.64043505945655 + ], + [ + 68.28516691516322, + 39.4457873245281 + ], + [ + 68.51485228213056, + 39.4457873245281 + ], + [ + 68.40000959864689, + 39.64043505945655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 39.64043505945655 + ], + [ + 68.51485228213056, + 39.4457873245281 + ], + [ + 68.62969496561425, + 39.64043505945655 + ], + [ + 68.40000959864689, + 39.64043505945655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 40.029730529313454 + ], + [ + 68.62969496561425, + 40.029730529313454 + ], + [ + 68.51485228213056, + 40.224378264241906 + ], + [ + 68.40000959864689, + 40.029730529313454 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 40.029730529313454 + ], + [ + 68.51485228213056, + 40.224378264241906 + ], + [ + 68.28516691516322, + 40.224378264241906 + ], + [ + 68.40000959864689, + 40.029730529313454 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 40.029730529313454 + ], + [ + 68.28516691516322, + 40.224378264241906 + ], + [ + 68.17032423167953, + 40.029730529313454 + ], + [ + 68.40000959864689, + 40.029730529313454 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 40.029730529313454 + ], + [ + 68.17032423167953, + 40.029730529313454 + ], + [ + 68.28516691516322, + 39.835082794385 + ], + [ + 68.40000959864689, + 40.029730529313454 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 40.029730529313454 + ], + [ + 68.28516691516322, + 39.835082794385 + ], + [ + 68.51485228213056, + 39.835082794385 + ], + [ + 68.40000959864689, + 40.029730529313454 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 40.029730529313454 + ], + [ + 68.51485228213056, + 39.835082794385 + ], + [ + 68.62969496561425, + 40.029730529313454 + ], + [ + 68.40000959864689, + 40.029730529313454 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 40.419025999170366 + ], + [ + 68.62969496561425, + 40.419025999170366 + ], + [ + 68.51485228213056, + 40.61367373409882 + ], + [ + 68.40000959864689, + 40.419025999170366 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 40.419025999170366 + ], + [ + 68.51485228213056, + 40.61367373409882 + ], + [ + 68.28516691516322, + 40.61367373409882 + ], + [ + 68.40000959864689, + 40.419025999170366 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 40.419025999170366 + ], + [ + 68.28516691516322, + 40.61367373409882 + ], + [ + 68.17032423167953, + 40.419025999170366 + ], + [ + 68.40000959864689, + 40.419025999170366 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 40.419025999170366 + ], + [ + 68.17032423167953, + 40.419025999170366 + ], + [ + 68.28516691516322, + 40.22437826424191 + ], + [ + 68.40000959864689, + 40.419025999170366 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 40.419025999170366 + ], + [ + 68.28516691516322, + 40.22437826424191 + ], + [ + 68.51485228213056, + 40.22437826424191 + ], + [ + 68.40000959864689, + 40.419025999170366 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 40.419025999170366 + ], + [ + 68.51485228213056, + 40.22437826424191 + ], + [ + 68.62969496561425, + 40.419025999170366 + ], + [ + 68.40000959864689, + 40.419025999170366 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 40.80832146902727 + ], + [ + 68.62969496561425, + 40.80832146902727 + ], + [ + 68.51485228213056, + 41.00296920395572 + ], + [ + 68.40000959864689, + 40.80832146902727 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 40.80832146902727 + ], + [ + 68.51485228213056, + 41.00296920395572 + ], + [ + 68.28516691516322, + 41.00296920395572 + ], + [ + 68.40000959864689, + 40.80832146902727 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 40.80832146902727 + ], + [ + 68.28516691516322, + 41.00296920395572 + ], + [ + 68.17032423167953, + 40.80832146902727 + ], + [ + 68.40000959864689, + 40.80832146902727 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 40.80832146902727 + ], + [ + 68.17032423167953, + 40.80832146902727 + ], + [ + 68.28516691516322, + 40.61367373409882 + ], + [ + 68.40000959864689, + 40.80832146902727 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 40.80832146902727 + ], + [ + 68.28516691516322, + 40.61367373409882 + ], + [ + 68.51485228213056, + 40.61367373409882 + ], + [ + 68.40000959864689, + 40.80832146902727 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 40.80832146902727 + ], + [ + 68.51485228213056, + 40.61367373409882 + ], + [ + 68.62969496561425, + 40.80832146902727 + ], + [ + 68.40000959864689, + 40.80832146902727 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 41.197616938884174 + ], + [ + 68.62969496561425, + 41.197616938884174 + ], + [ + 68.51485228213056, + 41.392264673812626 + ], + [ + 68.40000959864689, + 41.197616938884174 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 41.197616938884174 + ], + [ + 68.51485228213056, + 41.392264673812626 + ], + [ + 68.28516691516322, + 41.392264673812626 + ], + [ + 68.40000959864689, + 41.197616938884174 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 41.197616938884174 + ], + [ + 68.28516691516322, + 41.392264673812626 + ], + [ + 68.17032423167953, + 41.197616938884174 + ], + [ + 68.40000959864689, + 41.197616938884174 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 41.197616938884174 + ], + [ + 68.17032423167953, + 41.197616938884174 + ], + [ + 68.28516691516322, + 41.00296920395572 + ], + [ + 68.40000959864689, + 41.197616938884174 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 41.197616938884174 + ], + [ + 68.28516691516322, + 41.00296920395572 + ], + [ + 68.51485228213056, + 41.00296920395572 + ], + [ + 68.40000959864689, + 41.197616938884174 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 41.197616938884174 + ], + [ + 68.51485228213056, + 41.00296920395572 + ], + [ + 68.62969496561425, + 41.197616938884174 + ], + [ + 68.40000959864689, + 41.197616938884174 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 41.58691240874108 + ], + [ + 68.62969496561425, + 41.58691240874108 + ], + [ + 68.51485228213056, + 41.78156014366953 + ], + [ + 68.40000959864689, + 41.58691240874108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 41.58691240874108 + ], + [ + 68.51485228213056, + 41.78156014366953 + ], + [ + 68.28516691516322, + 41.78156014366953 + ], + [ + 68.40000959864689, + 41.58691240874108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 41.58691240874108 + ], + [ + 68.28516691516322, + 41.78156014366953 + ], + [ + 68.17032423167953, + 41.58691240874108 + ], + [ + 68.40000959864689, + 41.58691240874108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 41.58691240874108 + ], + [ + 68.17032423167953, + 41.58691240874108 + ], + [ + 68.28516691516322, + 41.392264673812626 + ], + [ + 68.40000959864689, + 41.58691240874108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 41.58691240874108 + ], + [ + 68.28516691516322, + 41.392264673812626 + ], + [ + 68.51485228213056, + 41.392264673812626 + ], + [ + 68.40000959864689, + 41.58691240874108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 41.58691240874108 + ], + [ + 68.51485228213056, + 41.392264673812626 + ], + [ + 68.62969496561425, + 41.58691240874108 + ], + [ + 68.40000959864689, + 41.58691240874108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 41.97620787859798 + ], + [ + 68.62969496561425, + 41.97620787859798 + ], + [ + 68.51485228213056, + 42.170855613526435 + ], + [ + 68.40000959864689, + 41.97620787859798 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 41.97620787859798 + ], + [ + 68.51485228213056, + 42.170855613526435 + ], + [ + 68.28516691516322, + 42.170855613526435 + ], + [ + 68.40000959864689, + 41.97620787859798 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 41.97620787859798 + ], + [ + 68.28516691516322, + 42.170855613526435 + ], + [ + 68.17032423167953, + 41.97620787859798 + ], + [ + 68.40000959864689, + 41.97620787859798 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 41.97620787859798 + ], + [ + 68.17032423167953, + 41.97620787859798 + ], + [ + 68.28516691516322, + 41.78156014366953 + ], + [ + 68.40000959864689, + 41.97620787859798 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 41.97620787859798 + ], + [ + 68.28516691516322, + 41.78156014366953 + ], + [ + 68.51485228213056, + 41.78156014366953 + ], + [ + 68.40000959864689, + 41.97620787859798 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 41.97620787859798 + ], + [ + 68.51485228213056, + 41.78156014366953 + ], + [ + 68.62969496561425, + 41.97620787859798 + ], + [ + 68.40000959864689, + 41.97620787859798 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 42.365503348454894 + ], + [ + 68.62969496561425, + 42.365503348454894 + ], + [ + 68.51485228213056, + 42.560151083383346 + ], + [ + 68.40000959864689, + 42.365503348454894 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 42.365503348454894 + ], + [ + 68.51485228213056, + 42.560151083383346 + ], + [ + 68.28516691516322, + 42.560151083383346 + ], + [ + 68.40000959864689, + 42.365503348454894 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 42.365503348454894 + ], + [ + 68.28516691516322, + 42.560151083383346 + ], + [ + 68.17032423167953, + 42.365503348454894 + ], + [ + 68.40000959864689, + 42.365503348454894 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 42.365503348454894 + ], + [ + 68.17032423167953, + 42.365503348454894 + ], + [ + 68.28516691516322, + 42.17085561352644 + ], + [ + 68.40000959864689, + 42.365503348454894 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 42.365503348454894 + ], + [ + 68.28516691516322, + 42.17085561352644 + ], + [ + 68.51485228213056, + 42.17085561352644 + ], + [ + 68.40000959864689, + 42.365503348454894 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 42.365503348454894 + ], + [ + 68.51485228213056, + 42.17085561352644 + ], + [ + 68.62969496561425, + 42.365503348454894 + ], + [ + 68.40000959864689, + 42.365503348454894 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 42.754798818311805 + ], + [ + 68.62969496561425, + 42.754798818311805 + ], + [ + 68.51485228213056, + 42.94944655324026 + ], + [ + 68.40000959864689, + 42.754798818311805 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 42.754798818311805 + ], + [ + 68.51485228213056, + 42.94944655324026 + ], + [ + 68.28516691516322, + 42.94944655324026 + ], + [ + 68.40000959864689, + 42.754798818311805 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 42.754798818311805 + ], + [ + 68.28516691516322, + 42.94944655324026 + ], + [ + 68.17032423167953, + 42.754798818311805 + ], + [ + 68.40000959864689, + 42.754798818311805 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 42.754798818311805 + ], + [ + 68.17032423167953, + 42.754798818311805 + ], + [ + 68.28516691516322, + 42.56015108338335 + ], + [ + 68.40000959864689, + 42.754798818311805 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 42.754798818311805 + ], + [ + 68.28516691516322, + 42.56015108338335 + ], + [ + 68.51485228213056, + 42.56015108338335 + ], + [ + 68.40000959864689, + 42.754798818311805 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 42.754798818311805 + ], + [ + 68.51485228213056, + 42.56015108338335 + ], + [ + 68.62969496561425, + 42.754798818311805 + ], + [ + 68.40000959864689, + 42.754798818311805 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 43.14409428816871 + ], + [ + 68.62969496561425, + 43.14409428816871 + ], + [ + 68.51485228213056, + 43.33874202309716 + ], + [ + 68.40000959864689, + 43.14409428816871 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 43.14409428816871 + ], + [ + 68.51485228213056, + 43.33874202309716 + ], + [ + 68.28516691516322, + 43.33874202309716 + ], + [ + 68.40000959864689, + 43.14409428816871 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 43.14409428816871 + ], + [ + 68.28516691516322, + 43.33874202309716 + ], + [ + 68.17032423167953, + 43.14409428816871 + ], + [ + 68.40000959864689, + 43.14409428816871 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 43.14409428816871 + ], + [ + 68.17032423167953, + 43.14409428816871 + ], + [ + 68.28516691516322, + 42.94944655324026 + ], + [ + 68.40000959864689, + 43.14409428816871 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 43.14409428816871 + ], + [ + 68.28516691516322, + 42.94944655324026 + ], + [ + 68.51485228213056, + 42.94944655324026 + ], + [ + 68.40000959864689, + 43.14409428816871 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 43.14409428816871 + ], + [ + 68.51485228213056, + 42.94944655324026 + ], + [ + 68.62969496561425, + 43.14409428816871 + ], + [ + 68.40000959864689, + 43.14409428816871 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 43.53338975802561 + ], + [ + 68.62969496561425, + 43.53338975802561 + ], + [ + 68.51485228213056, + 43.728037492954066 + ], + [ + 68.40000959864689, + 43.53338975802561 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 43.53338975802561 + ], + [ + 68.51485228213056, + 43.728037492954066 + ], + [ + 68.28516691516322, + 43.728037492954066 + ], + [ + 68.40000959864689, + 43.53338975802561 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 43.53338975802561 + ], + [ + 68.28516691516322, + 43.728037492954066 + ], + [ + 68.17032423167953, + 43.53338975802561 + ], + [ + 68.40000959864689, + 43.53338975802561 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 43.53338975802561 + ], + [ + 68.17032423167953, + 43.53338975802561 + ], + [ + 68.28516691516322, + 43.33874202309716 + ], + [ + 68.40000959864689, + 43.53338975802561 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 43.53338975802561 + ], + [ + 68.28516691516322, + 43.33874202309716 + ], + [ + 68.51485228213056, + 43.33874202309716 + ], + [ + 68.40000959864689, + 43.53338975802561 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 43.53338975802561 + ], + [ + 68.51485228213056, + 43.33874202309716 + ], + [ + 68.62969496561425, + 43.53338975802561 + ], + [ + 68.40000959864689, + 43.53338975802561 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 43.92268522788252 + ], + [ + 68.62969496561425, + 43.92268522788252 + ], + [ + 68.51485228213056, + 44.11733296281097 + ], + [ + 68.40000959864689, + 43.92268522788252 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 43.92268522788252 + ], + [ + 68.51485228213056, + 44.11733296281097 + ], + [ + 68.28516691516322, + 44.11733296281097 + ], + [ + 68.40000959864689, + 43.92268522788252 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 43.92268522788252 + ], + [ + 68.28516691516322, + 44.11733296281097 + ], + [ + 68.17032423167953, + 43.92268522788252 + ], + [ + 68.40000959864689, + 43.92268522788252 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 43.92268522788252 + ], + [ + 68.17032423167953, + 43.92268522788252 + ], + [ + 68.28516691516322, + 43.728037492954066 + ], + [ + 68.40000959864689, + 43.92268522788252 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 43.92268522788252 + ], + [ + 68.28516691516322, + 43.728037492954066 + ], + [ + 68.51485228213056, + 43.728037492954066 + ], + [ + 68.40000959864689, + 43.92268522788252 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 43.92268522788252 + ], + [ + 68.51485228213056, + 43.728037492954066 + ], + [ + 68.62969496561425, + 43.92268522788252 + ], + [ + 68.40000959864689, + 43.92268522788252 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 44.31198069773942 + ], + [ + 68.62969496561425, + 44.31198069773942 + ], + [ + 68.51485228213056, + 44.506628432667874 + ], + [ + 68.40000959864689, + 44.31198069773942 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 44.31198069773942 + ], + [ + 68.51485228213056, + 44.506628432667874 + ], + [ + 68.28516691516322, + 44.506628432667874 + ], + [ + 68.40000959864689, + 44.31198069773942 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 44.31198069773942 + ], + [ + 68.28516691516322, + 44.506628432667874 + ], + [ + 68.17032423167953, + 44.31198069773942 + ], + [ + 68.40000959864689, + 44.31198069773942 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 44.31198069773942 + ], + [ + 68.17032423167953, + 44.31198069773942 + ], + [ + 68.28516691516322, + 44.11733296281097 + ], + [ + 68.40000959864689, + 44.31198069773942 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 44.31198069773942 + ], + [ + 68.28516691516322, + 44.11733296281097 + ], + [ + 68.51485228213056, + 44.11733296281097 + ], + [ + 68.40000959864689, + 44.31198069773942 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 44.31198069773942 + ], + [ + 68.51485228213056, + 44.11733296281097 + ], + [ + 68.62969496561425, + 44.31198069773942 + ], + [ + 68.40000959864689, + 44.31198069773942 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 44.701276167596326 + ], + [ + 68.62969496561425, + 44.701276167596326 + ], + [ + 68.51485228213056, + 44.89592390252478 + ], + [ + 68.40000959864689, + 44.701276167596326 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 44.701276167596326 + ], + [ + 68.51485228213056, + 44.89592390252478 + ], + [ + 68.28516691516322, + 44.89592390252478 + ], + [ + 68.40000959864689, + 44.701276167596326 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 44.701276167596326 + ], + [ + 68.28516691516322, + 44.89592390252478 + ], + [ + 68.17032423167953, + 44.701276167596326 + ], + [ + 68.40000959864689, + 44.701276167596326 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 44.701276167596326 + ], + [ + 68.17032423167953, + 44.701276167596326 + ], + [ + 68.28516691516322, + 44.506628432667874 + ], + [ + 68.40000959864689, + 44.701276167596326 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 44.701276167596326 + ], + [ + 68.28516691516322, + 44.506628432667874 + ], + [ + 68.51485228213056, + 44.506628432667874 + ], + [ + 68.40000959864689, + 44.701276167596326 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 44.701276167596326 + ], + [ + 68.51485228213056, + 44.506628432667874 + ], + [ + 68.62969496561425, + 44.701276167596326 + ], + [ + 68.40000959864689, + 44.701276167596326 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 45.090571637453245 + ], + [ + 68.62969496561425, + 45.090571637453245 + ], + [ + 68.51485228213056, + 45.2852193723817 + ], + [ + 68.40000959864689, + 45.090571637453245 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 45.090571637453245 + ], + [ + 68.51485228213056, + 45.2852193723817 + ], + [ + 68.28516691516322, + 45.2852193723817 + ], + [ + 68.40000959864689, + 45.090571637453245 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 45.090571637453245 + ], + [ + 68.28516691516322, + 45.2852193723817 + ], + [ + 68.17032423167953, + 45.090571637453245 + ], + [ + 68.40000959864689, + 45.090571637453245 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 45.090571637453245 + ], + [ + 68.17032423167953, + 45.090571637453245 + ], + [ + 68.28516691516322, + 44.89592390252479 + ], + [ + 68.40000959864689, + 45.090571637453245 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 45.090571637453245 + ], + [ + 68.28516691516322, + 44.89592390252479 + ], + [ + 68.51485228213056, + 44.89592390252479 + ], + [ + 68.40000959864689, + 45.090571637453245 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 45.090571637453245 + ], + [ + 68.51485228213056, + 44.89592390252479 + ], + [ + 68.62969496561425, + 45.090571637453245 + ], + [ + 68.40000959864689, + 45.090571637453245 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 45.47986710731015 + ], + [ + 68.62969496561425, + 45.47986710731015 + ], + [ + 68.51485228213056, + 45.6745148422386 + ], + [ + 68.40000959864689, + 45.47986710731015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 45.47986710731015 + ], + [ + 68.51485228213056, + 45.6745148422386 + ], + [ + 68.28516691516322, + 45.6745148422386 + ], + [ + 68.40000959864689, + 45.47986710731015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 45.47986710731015 + ], + [ + 68.28516691516322, + 45.6745148422386 + ], + [ + 68.17032423167953, + 45.47986710731015 + ], + [ + 68.40000959864689, + 45.47986710731015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 45.47986710731015 + ], + [ + 68.17032423167953, + 45.47986710731015 + ], + [ + 68.28516691516322, + 45.2852193723817 + ], + [ + 68.40000959864689, + 45.47986710731015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 45.47986710731015 + ], + [ + 68.28516691516322, + 45.2852193723817 + ], + [ + 68.51485228213056, + 45.2852193723817 + ], + [ + 68.40000959864689, + 45.47986710731015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 45.47986710731015 + ], + [ + 68.51485228213056, + 45.2852193723817 + ], + [ + 68.62969496561425, + 45.47986710731015 + ], + [ + 68.40000959864689, + 45.47986710731015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 45.86916257716705 + ], + [ + 68.62969496561425, + 45.86916257716705 + ], + [ + 68.51485228213056, + 46.063810312095505 + ], + [ + 68.40000959864689, + 45.86916257716705 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 45.86916257716705 + ], + [ + 68.51485228213056, + 46.063810312095505 + ], + [ + 68.28516691516322, + 46.063810312095505 + ], + [ + 68.40000959864689, + 45.86916257716705 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 45.86916257716705 + ], + [ + 68.28516691516322, + 46.063810312095505 + ], + [ + 68.17032423167953, + 45.86916257716705 + ], + [ + 68.40000959864689, + 45.86916257716705 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 45.86916257716705 + ], + [ + 68.17032423167953, + 45.86916257716705 + ], + [ + 68.28516691516322, + 45.6745148422386 + ], + [ + 68.40000959864689, + 45.86916257716705 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 45.86916257716705 + ], + [ + 68.28516691516322, + 45.6745148422386 + ], + [ + 68.51485228213056, + 45.6745148422386 + ], + [ + 68.40000959864689, + 45.86916257716705 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 45.86916257716705 + ], + [ + 68.51485228213056, + 45.6745148422386 + ], + [ + 68.62969496561425, + 45.86916257716705 + ], + [ + 68.40000959864689, + 45.86916257716705 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 46.25845804702396 + ], + [ + 68.62969496561425, + 46.25845804702396 + ], + [ + 68.51485228213056, + 46.45310578195241 + ], + [ + 68.40000959864689, + 46.25845804702396 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 46.25845804702396 + ], + [ + 68.51485228213056, + 46.45310578195241 + ], + [ + 68.28516691516322, + 46.45310578195241 + ], + [ + 68.40000959864689, + 46.25845804702396 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 46.25845804702396 + ], + [ + 68.28516691516322, + 46.45310578195241 + ], + [ + 68.17032423167953, + 46.25845804702396 + ], + [ + 68.40000959864689, + 46.25845804702396 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 46.25845804702396 + ], + [ + 68.17032423167953, + 46.25845804702396 + ], + [ + 68.28516691516322, + 46.063810312095505 + ], + [ + 68.40000959864689, + 46.25845804702396 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 46.25845804702396 + ], + [ + 68.28516691516322, + 46.063810312095505 + ], + [ + 68.51485228213056, + 46.063810312095505 + ], + [ + 68.40000959864689, + 46.25845804702396 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 46.25845804702396 + ], + [ + 68.51485228213056, + 46.063810312095505 + ], + [ + 68.62969496561425, + 46.25845804702396 + ], + [ + 68.40000959864689, + 46.25845804702396 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 46.64775351688086 + ], + [ + 68.62969496561425, + 46.64775351688086 + ], + [ + 68.51485228213056, + 46.842401251809314 + ], + [ + 68.40000959864689, + 46.64775351688086 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 46.64775351688086 + ], + [ + 68.51485228213056, + 46.842401251809314 + ], + [ + 68.28516691516322, + 46.842401251809314 + ], + [ + 68.40000959864689, + 46.64775351688086 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 46.64775351688086 + ], + [ + 68.28516691516322, + 46.842401251809314 + ], + [ + 68.17032423167953, + 46.64775351688086 + ], + [ + 68.40000959864689, + 46.64775351688086 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 46.64775351688086 + ], + [ + 68.17032423167953, + 46.64775351688086 + ], + [ + 68.28516691516322, + 46.45310578195241 + ], + [ + 68.40000959864689, + 46.64775351688086 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 46.64775351688086 + ], + [ + 68.28516691516322, + 46.45310578195241 + ], + [ + 68.51485228213056, + 46.45310578195241 + ], + [ + 68.40000959864689, + 46.64775351688086 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 46.64775351688086 + ], + [ + 68.51485228213056, + 46.45310578195241 + ], + [ + 68.62969496561425, + 46.64775351688086 + ], + [ + 68.40000959864689, + 46.64775351688086 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 47.037048986737766 + ], + [ + 68.62969496561425, + 47.037048986737766 + ], + [ + 68.51485228213056, + 47.23169672166622 + ], + [ + 68.40000959864689, + 47.037048986737766 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 47.037048986737766 + ], + [ + 68.51485228213056, + 47.23169672166622 + ], + [ + 68.28516691516322, + 47.23169672166622 + ], + [ + 68.40000959864689, + 47.037048986737766 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 47.037048986737766 + ], + [ + 68.28516691516322, + 47.23169672166622 + ], + [ + 68.17032423167953, + 47.037048986737766 + ], + [ + 68.40000959864689, + 47.037048986737766 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 47.037048986737766 + ], + [ + 68.17032423167953, + 47.037048986737766 + ], + [ + 68.28516691516322, + 46.842401251809314 + ], + [ + 68.40000959864689, + 47.037048986737766 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 47.037048986737766 + ], + [ + 68.28516691516322, + 46.842401251809314 + ], + [ + 68.51485228213056, + 46.842401251809314 + ], + [ + 68.40000959864689, + 47.037048986737766 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 47.037048986737766 + ], + [ + 68.51485228213056, + 46.842401251809314 + ], + [ + 68.62969496561425, + 47.037048986737766 + ], + [ + 68.40000959864689, + 47.037048986737766 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 47.42634445659467 + ], + [ + 68.62969496561425, + 47.42634445659467 + ], + [ + 68.51485228213056, + 47.62099219152312 + ], + [ + 68.40000959864689, + 47.42634445659467 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 47.42634445659467 + ], + [ + 68.51485228213056, + 47.62099219152312 + ], + [ + 68.28516691516322, + 47.62099219152312 + ], + [ + 68.40000959864689, + 47.42634445659467 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 47.42634445659467 + ], + [ + 68.28516691516322, + 47.62099219152312 + ], + [ + 68.17032423167953, + 47.42634445659467 + ], + [ + 68.40000959864689, + 47.42634445659467 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 47.42634445659467 + ], + [ + 68.17032423167953, + 47.42634445659467 + ], + [ + 68.28516691516322, + 47.23169672166622 + ], + [ + 68.40000959864689, + 47.42634445659467 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 47.42634445659467 + ], + [ + 68.28516691516322, + 47.23169672166622 + ], + [ + 68.51485228213056, + 47.23169672166622 + ], + [ + 68.40000959864689, + 47.42634445659467 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 47.42634445659467 + ], + [ + 68.51485228213056, + 47.23169672166622 + ], + [ + 68.62969496561425, + 47.42634445659467 + ], + [ + 68.40000959864689, + 47.42634445659467 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 47.81563992645159 + ], + [ + 68.62969496561425, + 47.81563992645159 + ], + [ + 68.51485228213056, + 48.01028766138004 + ], + [ + 68.40000959864689, + 47.81563992645159 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 47.81563992645159 + ], + [ + 68.51485228213056, + 48.01028766138004 + ], + [ + 68.28516691516322, + 48.01028766138004 + ], + [ + 68.40000959864689, + 47.81563992645159 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 47.81563992645159 + ], + [ + 68.28516691516322, + 48.01028766138004 + ], + [ + 68.17032423167953, + 47.81563992645159 + ], + [ + 68.40000959864689, + 47.81563992645159 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 47.81563992645159 + ], + [ + 68.17032423167953, + 47.81563992645159 + ], + [ + 68.28516691516322, + 47.620992191523136 + ], + [ + 68.40000959864689, + 47.81563992645159 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 47.81563992645159 + ], + [ + 68.28516691516322, + 47.620992191523136 + ], + [ + 68.51485228213056, + 47.620992191523136 + ], + [ + 68.40000959864689, + 47.81563992645159 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.40000959864689, + 47.81563992645159 + ], + [ + 68.51485228213056, + 47.620992191523136 + ], + [ + 68.62969496561425, + 47.81563992645159 + ], + [ + 68.40000959864689, + 47.81563992645159 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 11.805808964687746 + ], + [ + 68.97422301606528, + 11.805808964687746 + ], + [ + 68.8593803325816, + 12.0004566996162 + ], + [ + 68.74453764909792, + 11.805808964687746 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 11.805808964687746 + ], + [ + 68.8593803325816, + 12.0004566996162 + ], + [ + 68.62969496561425, + 12.0004566996162 + ], + [ + 68.74453764909792, + 11.805808964687746 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 11.805808964687746 + ], + [ + 68.62969496561425, + 12.0004566996162 + ], + [ + 68.51485228213056, + 11.805808964687746 + ], + [ + 68.74453764909792, + 11.805808964687746 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 11.805808964687746 + ], + [ + 68.51485228213056, + 11.805808964687746 + ], + [ + 68.62969496561425, + 11.611161229759292 + ], + [ + 68.74453764909792, + 11.805808964687746 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 11.805808964687746 + ], + [ + 68.62969496561425, + 11.611161229759292 + ], + [ + 68.8593803325816, + 11.611161229759292 + ], + [ + 68.74453764909792, + 11.805808964687746 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 11.805808964687746 + ], + [ + 68.8593803325816, + 11.611161229759292 + ], + [ + 68.97422301606528, + 11.805808964687746 + ], + [ + 68.74453764909792, + 11.805808964687746 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 12.195104434544652 + ], + [ + 68.97422301606528, + 12.195104434544652 + ], + [ + 68.8593803325816, + 12.389752169473105 + ], + [ + 68.74453764909792, + 12.195104434544652 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 12.195104434544652 + ], + [ + 68.8593803325816, + 12.389752169473105 + ], + [ + 68.62969496561425, + 12.389752169473105 + ], + [ + 68.74453764909792, + 12.195104434544652 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 12.195104434544652 + ], + [ + 68.62969496561425, + 12.389752169473105 + ], + [ + 68.51485228213056, + 12.195104434544652 + ], + [ + 68.74453764909792, + 12.195104434544652 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 12.195104434544652 + ], + [ + 68.51485228213056, + 12.195104434544652 + ], + [ + 68.62969496561425, + 12.000456699616198 + ], + [ + 68.74453764909792, + 12.195104434544652 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 12.195104434544652 + ], + [ + 68.62969496561425, + 12.000456699616198 + ], + [ + 68.8593803325816, + 12.000456699616198 + ], + [ + 68.74453764909792, + 12.195104434544652 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 12.195104434544652 + ], + [ + 68.8593803325816, + 12.000456699616198 + ], + [ + 68.97422301606528, + 12.195104434544652 + ], + [ + 68.74453764909792, + 12.195104434544652 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 12.58439990440156 + ], + [ + 68.97422301606528, + 12.58439990440156 + ], + [ + 68.8593803325816, + 12.779047639330013 + ], + [ + 68.74453764909792, + 12.58439990440156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 12.58439990440156 + ], + [ + 68.8593803325816, + 12.779047639330013 + ], + [ + 68.62969496561425, + 12.779047639330013 + ], + [ + 68.74453764909792, + 12.58439990440156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 12.58439990440156 + ], + [ + 68.62969496561425, + 12.779047639330013 + ], + [ + 68.51485228213056, + 12.58439990440156 + ], + [ + 68.74453764909792, + 12.58439990440156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 12.58439990440156 + ], + [ + 68.51485228213056, + 12.58439990440156 + ], + [ + 68.62969496561425, + 12.389752169473105 + ], + [ + 68.74453764909792, + 12.58439990440156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 12.58439990440156 + ], + [ + 68.62969496561425, + 12.389752169473105 + ], + [ + 68.8593803325816, + 12.389752169473105 + ], + [ + 68.74453764909792, + 12.58439990440156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 12.58439990440156 + ], + [ + 68.8593803325816, + 12.389752169473105 + ], + [ + 68.97422301606528, + 12.58439990440156 + ], + [ + 68.74453764909792, + 12.58439990440156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 12.973695374258465 + ], + [ + 68.97422301606528, + 12.973695374258465 + ], + [ + 68.8593803325816, + 13.16834310918692 + ], + [ + 68.74453764909792, + 12.973695374258465 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 12.973695374258465 + ], + [ + 68.8593803325816, + 13.16834310918692 + ], + [ + 68.62969496561425, + 13.16834310918692 + ], + [ + 68.74453764909792, + 12.973695374258465 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 12.973695374258465 + ], + [ + 68.62969496561425, + 13.16834310918692 + ], + [ + 68.51485228213056, + 12.973695374258465 + ], + [ + 68.74453764909792, + 12.973695374258465 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 12.973695374258465 + ], + [ + 68.51485228213056, + 12.973695374258465 + ], + [ + 68.62969496561425, + 12.779047639330011 + ], + [ + 68.74453764909792, + 12.973695374258465 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 12.973695374258465 + ], + [ + 68.62969496561425, + 12.779047639330011 + ], + [ + 68.8593803325816, + 12.779047639330011 + ], + [ + 68.74453764909792, + 12.973695374258465 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 12.973695374258465 + ], + [ + 68.8593803325816, + 12.779047639330011 + ], + [ + 68.97422301606528, + 12.973695374258465 + ], + [ + 68.74453764909792, + 12.973695374258465 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 13.362990844115371 + ], + [ + 68.97422301606528, + 13.362990844115371 + ], + [ + 68.8593803325816, + 13.557638579043825 + ], + [ + 68.74453764909792, + 13.362990844115371 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 13.362990844115371 + ], + [ + 68.8593803325816, + 13.557638579043825 + ], + [ + 68.62969496561425, + 13.557638579043825 + ], + [ + 68.74453764909792, + 13.362990844115371 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 13.362990844115371 + ], + [ + 68.62969496561425, + 13.557638579043825 + ], + [ + 68.51485228213056, + 13.362990844115371 + ], + [ + 68.74453764909792, + 13.362990844115371 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 13.362990844115371 + ], + [ + 68.51485228213056, + 13.362990844115371 + ], + [ + 68.62969496561425, + 13.168343109186917 + ], + [ + 68.74453764909792, + 13.362990844115371 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 13.362990844115371 + ], + [ + 68.62969496561425, + 13.168343109186917 + ], + [ + 68.8593803325816, + 13.168343109186917 + ], + [ + 68.74453764909792, + 13.362990844115371 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 13.362990844115371 + ], + [ + 68.8593803325816, + 13.168343109186917 + ], + [ + 68.97422301606528, + 13.362990844115371 + ], + [ + 68.74453764909792, + 13.362990844115371 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 13.752286313972277 + ], + [ + 68.97422301606528, + 13.752286313972277 + ], + [ + 68.8593803325816, + 13.946934048900731 + ], + [ + 68.74453764909792, + 13.752286313972277 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 13.752286313972277 + ], + [ + 68.8593803325816, + 13.946934048900731 + ], + [ + 68.62969496561425, + 13.946934048900731 + ], + [ + 68.74453764909792, + 13.752286313972277 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 13.752286313972277 + ], + [ + 68.62969496561425, + 13.946934048900731 + ], + [ + 68.51485228213056, + 13.752286313972277 + ], + [ + 68.74453764909792, + 13.752286313972277 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 13.752286313972277 + ], + [ + 68.51485228213056, + 13.752286313972277 + ], + [ + 68.62969496561425, + 13.557638579043823 + ], + [ + 68.74453764909792, + 13.752286313972277 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 13.752286313972277 + ], + [ + 68.62969496561425, + 13.557638579043823 + ], + [ + 68.8593803325816, + 13.557638579043823 + ], + [ + 68.74453764909792, + 13.752286313972277 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 13.752286313972277 + ], + [ + 68.8593803325816, + 13.557638579043823 + ], + [ + 68.97422301606528, + 13.752286313972277 + ], + [ + 68.74453764909792, + 13.752286313972277 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 14.141581783829183 + ], + [ + 68.97422301606528, + 14.141581783829183 + ], + [ + 68.8593803325816, + 14.336229518757637 + ], + [ + 68.74453764909792, + 14.141581783829183 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 14.141581783829183 + ], + [ + 68.8593803325816, + 14.336229518757637 + ], + [ + 68.62969496561425, + 14.336229518757637 + ], + [ + 68.74453764909792, + 14.141581783829183 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 14.141581783829183 + ], + [ + 68.62969496561425, + 14.336229518757637 + ], + [ + 68.51485228213056, + 14.141581783829183 + ], + [ + 68.74453764909792, + 14.141581783829183 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 14.141581783829183 + ], + [ + 68.51485228213056, + 14.141581783829183 + ], + [ + 68.62969496561425, + 13.94693404890073 + ], + [ + 68.74453764909792, + 14.141581783829183 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 14.141581783829183 + ], + [ + 68.62969496561425, + 13.94693404890073 + ], + [ + 68.8593803325816, + 13.94693404890073 + ], + [ + 68.74453764909792, + 14.141581783829183 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 14.141581783829183 + ], + [ + 68.8593803325816, + 13.94693404890073 + ], + [ + 68.97422301606528, + 14.141581783829183 + ], + [ + 68.74453764909792, + 14.141581783829183 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 14.530877253686091 + ], + [ + 68.97422301606528, + 14.530877253686091 + ], + [ + 68.8593803325816, + 14.725524988614545 + ], + [ + 68.74453764909792, + 14.530877253686091 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 14.530877253686091 + ], + [ + 68.8593803325816, + 14.725524988614545 + ], + [ + 68.62969496561425, + 14.725524988614545 + ], + [ + 68.74453764909792, + 14.530877253686091 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 14.530877253686091 + ], + [ + 68.62969496561425, + 14.725524988614545 + ], + [ + 68.51485228213056, + 14.530877253686091 + ], + [ + 68.74453764909792, + 14.530877253686091 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 14.530877253686091 + ], + [ + 68.51485228213056, + 14.530877253686091 + ], + [ + 68.62969496561425, + 14.336229518757637 + ], + [ + 68.74453764909792, + 14.530877253686091 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 14.530877253686091 + ], + [ + 68.62969496561425, + 14.336229518757637 + ], + [ + 68.8593803325816, + 14.336229518757637 + ], + [ + 68.74453764909792, + 14.530877253686091 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 14.530877253686091 + ], + [ + 68.8593803325816, + 14.336229518757637 + ], + [ + 68.97422301606528, + 14.530877253686091 + ], + [ + 68.74453764909792, + 14.530877253686091 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 14.920172723542997 + ], + [ + 68.97422301606528, + 14.920172723542997 + ], + [ + 68.8593803325816, + 15.114820458471451 + ], + [ + 68.74453764909792, + 14.920172723542997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 14.920172723542997 + ], + [ + 68.8593803325816, + 15.114820458471451 + ], + [ + 68.62969496561425, + 15.114820458471451 + ], + [ + 68.74453764909792, + 14.920172723542997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 14.920172723542997 + ], + [ + 68.62969496561425, + 15.114820458471451 + ], + [ + 68.51485228213056, + 14.920172723542997 + ], + [ + 68.74453764909792, + 14.920172723542997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 14.920172723542997 + ], + [ + 68.51485228213056, + 14.920172723542997 + ], + [ + 68.62969496561425, + 14.725524988614543 + ], + [ + 68.74453764909792, + 14.920172723542997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 14.920172723542997 + ], + [ + 68.62969496561425, + 14.725524988614543 + ], + [ + 68.8593803325816, + 14.725524988614543 + ], + [ + 68.74453764909792, + 14.920172723542997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 14.920172723542997 + ], + [ + 68.8593803325816, + 14.725524988614543 + ], + [ + 68.97422301606528, + 14.920172723542997 + ], + [ + 68.74453764909792, + 14.920172723542997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 15.309468193399903 + ], + [ + 68.97422301606528, + 15.309468193399903 + ], + [ + 68.8593803325816, + 15.504115928328357 + ], + [ + 68.74453764909792, + 15.309468193399903 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 15.309468193399903 + ], + [ + 68.8593803325816, + 15.504115928328357 + ], + [ + 68.62969496561425, + 15.504115928328357 + ], + [ + 68.74453764909792, + 15.309468193399903 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 15.309468193399903 + ], + [ + 68.62969496561425, + 15.504115928328357 + ], + [ + 68.51485228213056, + 15.309468193399903 + ], + [ + 68.74453764909792, + 15.309468193399903 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 15.309468193399903 + ], + [ + 68.51485228213056, + 15.309468193399903 + ], + [ + 68.62969496561425, + 15.11482045847145 + ], + [ + 68.74453764909792, + 15.309468193399903 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 15.309468193399903 + ], + [ + 68.62969496561425, + 15.11482045847145 + ], + [ + 68.8593803325816, + 15.11482045847145 + ], + [ + 68.74453764909792, + 15.309468193399903 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 15.309468193399903 + ], + [ + 68.8593803325816, + 15.11482045847145 + ], + [ + 68.97422301606528, + 15.309468193399903 + ], + [ + 68.74453764909792, + 15.309468193399903 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 15.69876366325681 + ], + [ + 68.97422301606528, + 15.69876366325681 + ], + [ + 68.8593803325816, + 15.893411398185265 + ], + [ + 68.74453764909792, + 15.69876366325681 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 15.69876366325681 + ], + [ + 68.8593803325816, + 15.893411398185265 + ], + [ + 68.62969496561425, + 15.893411398185265 + ], + [ + 68.74453764909792, + 15.69876366325681 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 15.69876366325681 + ], + [ + 68.62969496561425, + 15.893411398185265 + ], + [ + 68.51485228213056, + 15.69876366325681 + ], + [ + 68.74453764909792, + 15.69876366325681 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 15.69876366325681 + ], + [ + 68.51485228213056, + 15.69876366325681 + ], + [ + 68.62969496561425, + 15.504115928328357 + ], + [ + 68.74453764909792, + 15.69876366325681 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 15.69876366325681 + ], + [ + 68.62969496561425, + 15.504115928328357 + ], + [ + 68.8593803325816, + 15.504115928328357 + ], + [ + 68.74453764909792, + 15.69876366325681 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 15.69876366325681 + ], + [ + 68.8593803325816, + 15.504115928328357 + ], + [ + 68.97422301606528, + 15.69876366325681 + ], + [ + 68.74453764909792, + 15.69876366325681 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 16.088059133113717 + ], + [ + 68.97422301606528, + 16.088059133113717 + ], + [ + 68.8593803325816, + 16.28270686804217 + ], + [ + 68.74453764909792, + 16.088059133113717 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 16.088059133113717 + ], + [ + 68.8593803325816, + 16.28270686804217 + ], + [ + 68.62969496561425, + 16.28270686804217 + ], + [ + 68.74453764909792, + 16.088059133113717 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 16.088059133113717 + ], + [ + 68.62969496561425, + 16.28270686804217 + ], + [ + 68.51485228213056, + 16.088059133113717 + ], + [ + 68.74453764909792, + 16.088059133113717 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 16.088059133113717 + ], + [ + 68.51485228213056, + 16.088059133113717 + ], + [ + 68.62969496561425, + 15.893411398185263 + ], + [ + 68.74453764909792, + 16.088059133113717 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 16.088059133113717 + ], + [ + 68.62969496561425, + 15.893411398185263 + ], + [ + 68.8593803325816, + 15.893411398185263 + ], + [ + 68.74453764909792, + 16.088059133113717 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 16.088059133113717 + ], + [ + 68.8593803325816, + 15.893411398185263 + ], + [ + 68.97422301606528, + 16.088059133113717 + ], + [ + 68.74453764909792, + 16.088059133113717 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 16.477354602970625 + ], + [ + 68.97422301606528, + 16.477354602970625 + ], + [ + 68.8593803325816, + 16.672002337899077 + ], + [ + 68.74453764909792, + 16.477354602970625 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 16.477354602970625 + ], + [ + 68.8593803325816, + 16.672002337899077 + ], + [ + 68.62969496561425, + 16.672002337899077 + ], + [ + 68.74453764909792, + 16.477354602970625 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 16.477354602970625 + ], + [ + 68.62969496561425, + 16.672002337899077 + ], + [ + 68.51485228213056, + 16.477354602970625 + ], + [ + 68.74453764909792, + 16.477354602970625 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 16.477354602970625 + ], + [ + 68.51485228213056, + 16.477354602970625 + ], + [ + 68.62969496561425, + 16.282706868042172 + ], + [ + 68.74453764909792, + 16.477354602970625 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 16.477354602970625 + ], + [ + 68.62969496561425, + 16.282706868042172 + ], + [ + 68.8593803325816, + 16.282706868042172 + ], + [ + 68.74453764909792, + 16.477354602970625 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 16.477354602970625 + ], + [ + 68.8593803325816, + 16.282706868042172 + ], + [ + 68.97422301606528, + 16.477354602970625 + ], + [ + 68.74453764909792, + 16.477354602970625 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 16.86665007282753 + ], + [ + 68.97422301606528, + 16.86665007282753 + ], + [ + 68.8593803325816, + 17.06129780775598 + ], + [ + 68.74453764909792, + 16.86665007282753 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 16.86665007282753 + ], + [ + 68.8593803325816, + 17.06129780775598 + ], + [ + 68.62969496561425, + 17.06129780775598 + ], + [ + 68.74453764909792, + 16.86665007282753 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 16.86665007282753 + ], + [ + 68.62969496561425, + 17.06129780775598 + ], + [ + 68.51485228213056, + 16.86665007282753 + ], + [ + 68.74453764909792, + 16.86665007282753 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 16.86665007282753 + ], + [ + 68.51485228213056, + 16.86665007282753 + ], + [ + 68.62969496561425, + 16.672002337899077 + ], + [ + 68.74453764909792, + 16.86665007282753 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 16.86665007282753 + ], + [ + 68.62969496561425, + 16.672002337899077 + ], + [ + 68.8593803325816, + 16.672002337899077 + ], + [ + 68.74453764909792, + 16.86665007282753 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 16.86665007282753 + ], + [ + 68.8593803325816, + 16.672002337899077 + ], + [ + 68.97422301606528, + 16.86665007282753 + ], + [ + 68.74453764909792, + 16.86665007282753 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 17.255945542684437 + ], + [ + 68.97422301606528, + 17.255945542684437 + ], + [ + 68.8593803325816, + 17.45059327761289 + ], + [ + 68.74453764909792, + 17.255945542684437 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 17.255945542684437 + ], + [ + 68.8593803325816, + 17.45059327761289 + ], + [ + 68.62969496561425, + 17.45059327761289 + ], + [ + 68.74453764909792, + 17.255945542684437 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 17.255945542684437 + ], + [ + 68.62969496561425, + 17.45059327761289 + ], + [ + 68.51485228213056, + 17.255945542684437 + ], + [ + 68.74453764909792, + 17.255945542684437 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 17.255945542684437 + ], + [ + 68.51485228213056, + 17.255945542684437 + ], + [ + 68.62969496561425, + 17.061297807755984 + ], + [ + 68.74453764909792, + 17.255945542684437 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 17.255945542684437 + ], + [ + 68.62969496561425, + 17.061297807755984 + ], + [ + 68.8593803325816, + 17.061297807755984 + ], + [ + 68.74453764909792, + 17.255945542684437 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 17.255945542684437 + ], + [ + 68.8593803325816, + 17.061297807755984 + ], + [ + 68.97422301606528, + 17.255945542684437 + ], + [ + 68.74453764909792, + 17.255945542684437 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 17.64524101254134 + ], + [ + 68.97422301606528, + 17.64524101254134 + ], + [ + 68.8593803325816, + 17.839888747469793 + ], + [ + 68.74453764909792, + 17.64524101254134 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 17.64524101254134 + ], + [ + 68.8593803325816, + 17.839888747469793 + ], + [ + 68.62969496561425, + 17.839888747469793 + ], + [ + 68.74453764909792, + 17.64524101254134 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 17.64524101254134 + ], + [ + 68.62969496561425, + 17.839888747469793 + ], + [ + 68.51485228213056, + 17.64524101254134 + ], + [ + 68.74453764909792, + 17.64524101254134 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 17.64524101254134 + ], + [ + 68.51485228213056, + 17.64524101254134 + ], + [ + 68.62969496561425, + 17.45059327761289 + ], + [ + 68.74453764909792, + 17.64524101254134 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 17.64524101254134 + ], + [ + 68.62969496561425, + 17.45059327761289 + ], + [ + 68.8593803325816, + 17.45059327761289 + ], + [ + 68.74453764909792, + 17.64524101254134 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 17.64524101254134 + ], + [ + 68.8593803325816, + 17.45059327761289 + ], + [ + 68.97422301606528, + 17.64524101254134 + ], + [ + 68.74453764909792, + 17.64524101254134 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 18.03453648239825 + ], + [ + 68.97422301606528, + 18.03453648239825 + ], + [ + 68.8593803325816, + 18.2291842173267 + ], + [ + 68.74453764909792, + 18.03453648239825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 18.03453648239825 + ], + [ + 68.8593803325816, + 18.2291842173267 + ], + [ + 68.62969496561425, + 18.2291842173267 + ], + [ + 68.74453764909792, + 18.03453648239825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 18.03453648239825 + ], + [ + 68.62969496561425, + 18.2291842173267 + ], + [ + 68.51485228213056, + 18.03453648239825 + ], + [ + 68.74453764909792, + 18.03453648239825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 18.03453648239825 + ], + [ + 68.51485228213056, + 18.03453648239825 + ], + [ + 68.62969496561425, + 17.839888747469796 + ], + [ + 68.74453764909792, + 18.03453648239825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 18.03453648239825 + ], + [ + 68.62969496561425, + 17.839888747469796 + ], + [ + 68.8593803325816, + 17.839888747469796 + ], + [ + 68.74453764909792, + 18.03453648239825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 18.03453648239825 + ], + [ + 68.8593803325816, + 17.839888747469796 + ], + [ + 68.97422301606528, + 18.03453648239825 + ], + [ + 68.74453764909792, + 18.03453648239825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 18.423831952255156 + ], + [ + 68.97422301606528, + 18.423831952255156 + ], + [ + 68.8593803325816, + 18.61847968718361 + ], + [ + 68.74453764909792, + 18.423831952255156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 18.423831952255156 + ], + [ + 68.8593803325816, + 18.61847968718361 + ], + [ + 68.62969496561425, + 18.61847968718361 + ], + [ + 68.74453764909792, + 18.423831952255156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 18.423831952255156 + ], + [ + 68.62969496561425, + 18.61847968718361 + ], + [ + 68.51485228213056, + 18.423831952255156 + ], + [ + 68.74453764909792, + 18.423831952255156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 18.423831952255156 + ], + [ + 68.51485228213056, + 18.423831952255156 + ], + [ + 68.62969496561425, + 18.229184217326704 + ], + [ + 68.74453764909792, + 18.423831952255156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 18.423831952255156 + ], + [ + 68.62969496561425, + 18.229184217326704 + ], + [ + 68.8593803325816, + 18.229184217326704 + ], + [ + 68.74453764909792, + 18.423831952255156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 18.423831952255156 + ], + [ + 68.8593803325816, + 18.229184217326704 + ], + [ + 68.97422301606528, + 18.423831952255156 + ], + [ + 68.74453764909792, + 18.423831952255156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 18.81312742211206 + ], + [ + 68.97422301606528, + 18.81312742211206 + ], + [ + 68.8593803325816, + 19.007775157040513 + ], + [ + 68.74453764909792, + 18.81312742211206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 18.81312742211206 + ], + [ + 68.8593803325816, + 19.007775157040513 + ], + [ + 68.62969496561425, + 19.007775157040513 + ], + [ + 68.74453764909792, + 18.81312742211206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 18.81312742211206 + ], + [ + 68.62969496561425, + 19.007775157040513 + ], + [ + 68.51485228213056, + 18.81312742211206 + ], + [ + 68.74453764909792, + 18.81312742211206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 18.81312742211206 + ], + [ + 68.51485228213056, + 18.81312742211206 + ], + [ + 68.62969496561425, + 18.61847968718361 + ], + [ + 68.74453764909792, + 18.81312742211206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 18.81312742211206 + ], + [ + 68.62969496561425, + 18.61847968718361 + ], + [ + 68.8593803325816, + 18.61847968718361 + ], + [ + 68.74453764909792, + 18.81312742211206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 18.81312742211206 + ], + [ + 68.8593803325816, + 18.61847968718361 + ], + [ + 68.97422301606528, + 18.81312742211206 + ], + [ + 68.74453764909792, + 18.81312742211206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 19.20242289196897 + ], + [ + 68.97422301606528, + 19.20242289196897 + ], + [ + 68.8593803325816, + 19.39707062689742 + ], + [ + 68.74453764909792, + 19.20242289196897 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 19.20242289196897 + ], + [ + 68.8593803325816, + 19.39707062689742 + ], + [ + 68.62969496561425, + 19.39707062689742 + ], + [ + 68.74453764909792, + 19.20242289196897 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 19.20242289196897 + ], + [ + 68.62969496561425, + 19.39707062689742 + ], + [ + 68.51485228213056, + 19.20242289196897 + ], + [ + 68.74453764909792, + 19.20242289196897 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 19.20242289196897 + ], + [ + 68.51485228213056, + 19.20242289196897 + ], + [ + 68.62969496561425, + 19.007775157040516 + ], + [ + 68.74453764909792, + 19.20242289196897 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 19.20242289196897 + ], + [ + 68.62969496561425, + 19.007775157040516 + ], + [ + 68.8593803325816, + 19.007775157040516 + ], + [ + 68.74453764909792, + 19.20242289196897 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 19.20242289196897 + ], + [ + 68.8593803325816, + 19.007775157040516 + ], + [ + 68.97422301606528, + 19.20242289196897 + ], + [ + 68.74453764909792, + 19.20242289196897 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 19.591718361825876 + ], + [ + 68.97422301606528, + 19.591718361825876 + ], + [ + 68.8593803325816, + 19.78636609675433 + ], + [ + 68.74453764909792, + 19.591718361825876 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 19.591718361825876 + ], + [ + 68.8593803325816, + 19.78636609675433 + ], + [ + 68.62969496561425, + 19.78636609675433 + ], + [ + 68.74453764909792, + 19.591718361825876 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 19.591718361825876 + ], + [ + 68.62969496561425, + 19.78636609675433 + ], + [ + 68.51485228213056, + 19.591718361825876 + ], + [ + 68.74453764909792, + 19.591718361825876 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 19.591718361825876 + ], + [ + 68.51485228213056, + 19.591718361825876 + ], + [ + 68.62969496561425, + 19.397070626897424 + ], + [ + 68.74453764909792, + 19.591718361825876 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 19.591718361825876 + ], + [ + 68.62969496561425, + 19.397070626897424 + ], + [ + 68.8593803325816, + 19.397070626897424 + ], + [ + 68.74453764909792, + 19.591718361825876 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 19.591718361825876 + ], + [ + 68.8593803325816, + 19.397070626897424 + ], + [ + 68.97422301606528, + 19.591718361825876 + ], + [ + 68.74453764909792, + 19.591718361825876 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 19.98101383168278 + ], + [ + 68.97422301606528, + 19.98101383168278 + ], + [ + 68.8593803325816, + 20.175661566611232 + ], + [ + 68.74453764909792, + 19.98101383168278 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 19.98101383168278 + ], + [ + 68.8593803325816, + 20.175661566611232 + ], + [ + 68.62969496561425, + 20.175661566611232 + ], + [ + 68.74453764909792, + 19.98101383168278 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 19.98101383168278 + ], + [ + 68.62969496561425, + 20.175661566611232 + ], + [ + 68.51485228213056, + 19.98101383168278 + ], + [ + 68.74453764909792, + 19.98101383168278 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 19.98101383168278 + ], + [ + 68.51485228213056, + 19.98101383168278 + ], + [ + 68.62969496561425, + 19.78636609675433 + ], + [ + 68.74453764909792, + 19.98101383168278 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 19.98101383168278 + ], + [ + 68.62969496561425, + 19.78636609675433 + ], + [ + 68.8593803325816, + 19.78636609675433 + ], + [ + 68.74453764909792, + 19.98101383168278 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 19.98101383168278 + ], + [ + 68.8593803325816, + 19.78636609675433 + ], + [ + 68.97422301606528, + 19.98101383168278 + ], + [ + 68.74453764909792, + 19.98101383168278 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 20.370309301539685 + ], + [ + 68.97422301606528, + 20.370309301539685 + ], + [ + 68.8593803325816, + 20.564957036468137 + ], + [ + 68.74453764909792, + 20.370309301539685 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 20.370309301539685 + ], + [ + 68.8593803325816, + 20.564957036468137 + ], + [ + 68.62969496561425, + 20.564957036468137 + ], + [ + 68.74453764909792, + 20.370309301539685 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 20.370309301539685 + ], + [ + 68.62969496561425, + 20.564957036468137 + ], + [ + 68.51485228213056, + 20.370309301539685 + ], + [ + 68.74453764909792, + 20.370309301539685 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 20.370309301539685 + ], + [ + 68.51485228213056, + 20.370309301539685 + ], + [ + 68.62969496561425, + 20.175661566611232 + ], + [ + 68.74453764909792, + 20.370309301539685 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 20.370309301539685 + ], + [ + 68.62969496561425, + 20.175661566611232 + ], + [ + 68.8593803325816, + 20.175661566611232 + ], + [ + 68.74453764909792, + 20.370309301539685 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 20.370309301539685 + ], + [ + 68.8593803325816, + 20.175661566611232 + ], + [ + 68.97422301606528, + 20.370309301539685 + ], + [ + 68.74453764909792, + 20.370309301539685 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 20.759604771396592 + ], + [ + 68.97422301606528, + 20.759604771396592 + ], + [ + 68.8593803325816, + 20.954252506325044 + ], + [ + 68.74453764909792, + 20.759604771396592 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 20.759604771396592 + ], + [ + 68.8593803325816, + 20.954252506325044 + ], + [ + 68.62969496561425, + 20.954252506325044 + ], + [ + 68.74453764909792, + 20.759604771396592 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 20.759604771396592 + ], + [ + 68.62969496561425, + 20.954252506325044 + ], + [ + 68.51485228213056, + 20.759604771396592 + ], + [ + 68.74453764909792, + 20.759604771396592 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 20.759604771396592 + ], + [ + 68.51485228213056, + 20.759604771396592 + ], + [ + 68.62969496561425, + 20.56495703646814 + ], + [ + 68.74453764909792, + 20.759604771396592 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 20.759604771396592 + ], + [ + 68.62969496561425, + 20.56495703646814 + ], + [ + 68.8593803325816, + 20.56495703646814 + ], + [ + 68.74453764909792, + 20.759604771396592 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 20.759604771396592 + ], + [ + 68.8593803325816, + 20.56495703646814 + ], + [ + 68.97422301606528, + 20.759604771396592 + ], + [ + 68.74453764909792, + 20.759604771396592 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 21.1489002412535 + ], + [ + 68.97422301606528, + 21.1489002412535 + ], + [ + 68.8593803325816, + 21.343547976181952 + ], + [ + 68.74453764909792, + 21.1489002412535 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 21.1489002412535 + ], + [ + 68.8593803325816, + 21.343547976181952 + ], + [ + 68.62969496561425, + 21.343547976181952 + ], + [ + 68.74453764909792, + 21.1489002412535 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 21.1489002412535 + ], + [ + 68.62969496561425, + 21.343547976181952 + ], + [ + 68.51485228213056, + 21.1489002412535 + ], + [ + 68.74453764909792, + 21.1489002412535 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 21.1489002412535 + ], + [ + 68.51485228213056, + 21.1489002412535 + ], + [ + 68.62969496561425, + 20.954252506325048 + ], + [ + 68.74453764909792, + 21.1489002412535 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 21.1489002412535 + ], + [ + 68.62969496561425, + 20.954252506325048 + ], + [ + 68.8593803325816, + 20.954252506325048 + ], + [ + 68.74453764909792, + 21.1489002412535 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 21.1489002412535 + ], + [ + 68.8593803325816, + 20.954252506325048 + ], + [ + 68.97422301606528, + 21.1489002412535 + ], + [ + 68.74453764909792, + 21.1489002412535 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 21.538195711110404 + ], + [ + 68.97422301606528, + 21.538195711110404 + ], + [ + 68.8593803325816, + 21.732843446038856 + ], + [ + 68.74453764909792, + 21.538195711110404 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 21.538195711110404 + ], + [ + 68.8593803325816, + 21.732843446038856 + ], + [ + 68.62969496561425, + 21.732843446038856 + ], + [ + 68.74453764909792, + 21.538195711110404 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 21.538195711110404 + ], + [ + 68.62969496561425, + 21.732843446038856 + ], + [ + 68.51485228213056, + 21.538195711110404 + ], + [ + 68.74453764909792, + 21.538195711110404 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 21.538195711110404 + ], + [ + 68.51485228213056, + 21.538195711110404 + ], + [ + 68.62969496561425, + 21.343547976181952 + ], + [ + 68.74453764909792, + 21.538195711110404 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 21.538195711110404 + ], + [ + 68.62969496561425, + 21.343547976181952 + ], + [ + 68.8593803325816, + 21.343547976181952 + ], + [ + 68.74453764909792, + 21.538195711110404 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 21.538195711110404 + ], + [ + 68.8593803325816, + 21.343547976181952 + ], + [ + 68.97422301606528, + 21.538195711110404 + ], + [ + 68.74453764909792, + 21.538195711110404 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 21.927491180967312 + ], + [ + 68.97422301606528, + 21.927491180967312 + ], + [ + 68.8593803325816, + 22.122138915895764 + ], + [ + 68.74453764909792, + 21.927491180967312 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 21.927491180967312 + ], + [ + 68.8593803325816, + 22.122138915895764 + ], + [ + 68.62969496561425, + 22.122138915895764 + ], + [ + 68.74453764909792, + 21.927491180967312 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 21.927491180967312 + ], + [ + 68.62969496561425, + 22.122138915895764 + ], + [ + 68.51485228213056, + 21.927491180967312 + ], + [ + 68.74453764909792, + 21.927491180967312 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 21.927491180967312 + ], + [ + 68.51485228213056, + 21.927491180967312 + ], + [ + 68.62969496561425, + 21.73284344603886 + ], + [ + 68.74453764909792, + 21.927491180967312 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 21.927491180967312 + ], + [ + 68.62969496561425, + 21.73284344603886 + ], + [ + 68.8593803325816, + 21.73284344603886 + ], + [ + 68.74453764909792, + 21.927491180967312 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 21.927491180967312 + ], + [ + 68.8593803325816, + 21.73284344603886 + ], + [ + 68.97422301606528, + 21.927491180967312 + ], + [ + 68.74453764909792, + 21.927491180967312 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 22.31678665082422 + ], + [ + 68.97422301606528, + 22.31678665082422 + ], + [ + 68.8593803325816, + 22.511434385752672 + ], + [ + 68.74453764909792, + 22.31678665082422 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 22.31678665082422 + ], + [ + 68.8593803325816, + 22.511434385752672 + ], + [ + 68.62969496561425, + 22.511434385752672 + ], + [ + 68.74453764909792, + 22.31678665082422 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 22.31678665082422 + ], + [ + 68.62969496561425, + 22.511434385752672 + ], + [ + 68.51485228213056, + 22.31678665082422 + ], + [ + 68.74453764909792, + 22.31678665082422 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 22.31678665082422 + ], + [ + 68.51485228213056, + 22.31678665082422 + ], + [ + 68.62969496561425, + 22.122138915895768 + ], + [ + 68.74453764909792, + 22.31678665082422 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 22.31678665082422 + ], + [ + 68.62969496561425, + 22.122138915895768 + ], + [ + 68.8593803325816, + 22.122138915895768 + ], + [ + 68.74453764909792, + 22.31678665082422 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 22.31678665082422 + ], + [ + 68.8593803325816, + 22.122138915895768 + ], + [ + 68.97422301606528, + 22.31678665082422 + ], + [ + 68.74453764909792, + 22.31678665082422 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 22.706082120681124 + ], + [ + 68.97422301606528, + 22.706082120681124 + ], + [ + 68.8593803325816, + 22.900729855609576 + ], + [ + 68.74453764909792, + 22.706082120681124 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 22.706082120681124 + ], + [ + 68.8593803325816, + 22.900729855609576 + ], + [ + 68.62969496561425, + 22.900729855609576 + ], + [ + 68.74453764909792, + 22.706082120681124 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 22.706082120681124 + ], + [ + 68.62969496561425, + 22.900729855609576 + ], + [ + 68.51485228213056, + 22.706082120681124 + ], + [ + 68.74453764909792, + 22.706082120681124 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 22.706082120681124 + ], + [ + 68.51485228213056, + 22.706082120681124 + ], + [ + 68.62969496561425, + 22.511434385752672 + ], + [ + 68.74453764909792, + 22.706082120681124 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 22.706082120681124 + ], + [ + 68.62969496561425, + 22.511434385752672 + ], + [ + 68.8593803325816, + 22.511434385752672 + ], + [ + 68.74453764909792, + 22.706082120681124 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 22.706082120681124 + ], + [ + 68.8593803325816, + 22.511434385752672 + ], + [ + 68.97422301606528, + 22.706082120681124 + ], + [ + 68.74453764909792, + 22.706082120681124 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 23.095377590538032 + ], + [ + 68.97422301606528, + 23.095377590538032 + ], + [ + 68.8593803325816, + 23.290025325466484 + ], + [ + 68.74453764909792, + 23.095377590538032 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 23.095377590538032 + ], + [ + 68.8593803325816, + 23.290025325466484 + ], + [ + 68.62969496561425, + 23.290025325466484 + ], + [ + 68.74453764909792, + 23.095377590538032 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 23.095377590538032 + ], + [ + 68.62969496561425, + 23.290025325466484 + ], + [ + 68.51485228213056, + 23.095377590538032 + ], + [ + 68.74453764909792, + 23.095377590538032 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 23.095377590538032 + ], + [ + 68.51485228213056, + 23.095377590538032 + ], + [ + 68.62969496561425, + 22.90072985560958 + ], + [ + 68.74453764909792, + 23.095377590538032 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 23.095377590538032 + ], + [ + 68.62969496561425, + 22.90072985560958 + ], + [ + 68.8593803325816, + 22.90072985560958 + ], + [ + 68.74453764909792, + 23.095377590538032 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 23.095377590538032 + ], + [ + 68.8593803325816, + 22.90072985560958 + ], + [ + 68.97422301606528, + 23.095377590538032 + ], + [ + 68.74453764909792, + 23.095377590538032 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 23.48467306039494 + ], + [ + 68.97422301606528, + 23.48467306039494 + ], + [ + 68.8593803325816, + 23.67932079532339 + ], + [ + 68.74453764909792, + 23.48467306039494 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 23.48467306039494 + ], + [ + 68.8593803325816, + 23.67932079532339 + ], + [ + 68.62969496561425, + 23.67932079532339 + ], + [ + 68.74453764909792, + 23.48467306039494 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 23.48467306039494 + ], + [ + 68.62969496561425, + 23.67932079532339 + ], + [ + 68.51485228213056, + 23.48467306039494 + ], + [ + 68.74453764909792, + 23.48467306039494 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 23.48467306039494 + ], + [ + 68.51485228213056, + 23.48467306039494 + ], + [ + 68.62969496561425, + 23.290025325466488 + ], + [ + 68.74453764909792, + 23.48467306039494 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 23.48467306039494 + ], + [ + 68.62969496561425, + 23.290025325466488 + ], + [ + 68.8593803325816, + 23.290025325466488 + ], + [ + 68.74453764909792, + 23.48467306039494 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 23.48467306039494 + ], + [ + 68.8593803325816, + 23.290025325466488 + ], + [ + 68.97422301606528, + 23.48467306039494 + ], + [ + 68.74453764909792, + 23.48467306039494 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 23.873968530251844 + ], + [ + 68.97422301606528, + 23.873968530251844 + ], + [ + 68.8593803325816, + 24.068616265180296 + ], + [ + 68.74453764909792, + 23.873968530251844 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 23.873968530251844 + ], + [ + 68.8593803325816, + 24.068616265180296 + ], + [ + 68.62969496561425, + 24.068616265180296 + ], + [ + 68.74453764909792, + 23.873968530251844 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 23.873968530251844 + ], + [ + 68.62969496561425, + 24.068616265180296 + ], + [ + 68.51485228213056, + 23.873968530251844 + ], + [ + 68.74453764909792, + 23.873968530251844 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 23.873968530251844 + ], + [ + 68.51485228213056, + 23.873968530251844 + ], + [ + 68.62969496561425, + 23.67932079532339 + ], + [ + 68.74453764909792, + 23.873968530251844 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 23.873968530251844 + ], + [ + 68.62969496561425, + 23.67932079532339 + ], + [ + 68.8593803325816, + 23.67932079532339 + ], + [ + 68.74453764909792, + 23.873968530251844 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 23.873968530251844 + ], + [ + 68.8593803325816, + 23.67932079532339 + ], + [ + 68.97422301606528, + 23.873968530251844 + ], + [ + 68.74453764909792, + 23.873968530251844 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 24.263264000108748 + ], + [ + 68.97422301606528, + 24.263264000108748 + ], + [ + 68.8593803325816, + 24.4579117350372 + ], + [ + 68.74453764909792, + 24.263264000108748 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 24.263264000108748 + ], + [ + 68.8593803325816, + 24.4579117350372 + ], + [ + 68.62969496561425, + 24.4579117350372 + ], + [ + 68.74453764909792, + 24.263264000108748 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 24.263264000108748 + ], + [ + 68.62969496561425, + 24.4579117350372 + ], + [ + 68.51485228213056, + 24.263264000108748 + ], + [ + 68.74453764909792, + 24.263264000108748 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 24.263264000108748 + ], + [ + 68.51485228213056, + 24.263264000108748 + ], + [ + 68.62969496561425, + 24.068616265180296 + ], + [ + 68.74453764909792, + 24.263264000108748 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 24.263264000108748 + ], + [ + 68.62969496561425, + 24.068616265180296 + ], + [ + 68.8593803325816, + 24.068616265180296 + ], + [ + 68.74453764909792, + 24.263264000108748 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 24.263264000108748 + ], + [ + 68.8593803325816, + 24.068616265180296 + ], + [ + 68.97422301606528, + 24.263264000108748 + ], + [ + 68.74453764909792, + 24.263264000108748 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 24.652559469965656 + ], + [ + 68.97422301606528, + 24.652559469965656 + ], + [ + 68.8593803325816, + 24.847207204894108 + ], + [ + 68.74453764909792, + 24.652559469965656 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 24.652559469965656 + ], + [ + 68.8593803325816, + 24.847207204894108 + ], + [ + 68.62969496561425, + 24.847207204894108 + ], + [ + 68.74453764909792, + 24.652559469965656 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 24.652559469965656 + ], + [ + 68.62969496561425, + 24.847207204894108 + ], + [ + 68.51485228213056, + 24.652559469965656 + ], + [ + 68.74453764909792, + 24.652559469965656 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 24.652559469965656 + ], + [ + 68.51485228213056, + 24.652559469965656 + ], + [ + 68.62969496561425, + 24.457911735037204 + ], + [ + 68.74453764909792, + 24.652559469965656 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 24.652559469965656 + ], + [ + 68.62969496561425, + 24.457911735037204 + ], + [ + 68.8593803325816, + 24.457911735037204 + ], + [ + 68.74453764909792, + 24.652559469965656 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 24.652559469965656 + ], + [ + 68.8593803325816, + 24.457911735037204 + ], + [ + 68.97422301606528, + 24.652559469965656 + ], + [ + 68.74453764909792, + 24.652559469965656 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 25.041854939822564 + ], + [ + 68.97422301606528, + 25.041854939822564 + ], + [ + 68.8593803325816, + 25.236502674751016 + ], + [ + 68.74453764909792, + 25.041854939822564 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 25.041854939822564 + ], + [ + 68.8593803325816, + 25.236502674751016 + ], + [ + 68.62969496561425, + 25.236502674751016 + ], + [ + 68.74453764909792, + 25.041854939822564 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 25.041854939822564 + ], + [ + 68.62969496561425, + 25.236502674751016 + ], + [ + 68.51485228213056, + 25.041854939822564 + ], + [ + 68.74453764909792, + 25.041854939822564 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 25.041854939822564 + ], + [ + 68.51485228213056, + 25.041854939822564 + ], + [ + 68.62969496561425, + 24.84720720489411 + ], + [ + 68.74453764909792, + 25.041854939822564 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 25.041854939822564 + ], + [ + 68.62969496561425, + 24.84720720489411 + ], + [ + 68.8593803325816, + 24.84720720489411 + ], + [ + 68.74453764909792, + 25.041854939822564 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 25.041854939822564 + ], + [ + 68.8593803325816, + 24.84720720489411 + ], + [ + 68.97422301606528, + 25.041854939822564 + ], + [ + 68.74453764909792, + 25.041854939822564 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 25.431150409679468 + ], + [ + 68.97422301606528, + 25.431150409679468 + ], + [ + 68.8593803325816, + 25.62579814460792 + ], + [ + 68.74453764909792, + 25.431150409679468 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 25.431150409679468 + ], + [ + 68.8593803325816, + 25.62579814460792 + ], + [ + 68.62969496561425, + 25.62579814460792 + ], + [ + 68.74453764909792, + 25.431150409679468 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 25.431150409679468 + ], + [ + 68.62969496561425, + 25.62579814460792 + ], + [ + 68.51485228213056, + 25.431150409679468 + ], + [ + 68.74453764909792, + 25.431150409679468 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 25.431150409679468 + ], + [ + 68.51485228213056, + 25.431150409679468 + ], + [ + 68.62969496561425, + 25.236502674751016 + ], + [ + 68.74453764909792, + 25.431150409679468 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 25.431150409679468 + ], + [ + 68.62969496561425, + 25.236502674751016 + ], + [ + 68.8593803325816, + 25.236502674751016 + ], + [ + 68.74453764909792, + 25.431150409679468 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 25.431150409679468 + ], + [ + 68.8593803325816, + 25.236502674751016 + ], + [ + 68.97422301606528, + 25.431150409679468 + ], + [ + 68.74453764909792, + 25.431150409679468 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 25.820445879536376 + ], + [ + 68.97422301606528, + 25.820445879536376 + ], + [ + 68.8593803325816, + 26.015093614464828 + ], + [ + 68.74453764909792, + 25.820445879536376 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 25.820445879536376 + ], + [ + 68.8593803325816, + 26.015093614464828 + ], + [ + 68.62969496561425, + 26.015093614464828 + ], + [ + 68.74453764909792, + 25.820445879536376 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 25.820445879536376 + ], + [ + 68.62969496561425, + 26.015093614464828 + ], + [ + 68.51485228213056, + 25.820445879536376 + ], + [ + 68.74453764909792, + 25.820445879536376 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 25.820445879536376 + ], + [ + 68.51485228213056, + 25.820445879536376 + ], + [ + 68.62969496561425, + 25.625798144607923 + ], + [ + 68.74453764909792, + 25.820445879536376 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 25.820445879536376 + ], + [ + 68.62969496561425, + 25.625798144607923 + ], + [ + 68.8593803325816, + 25.625798144607923 + ], + [ + 68.74453764909792, + 25.820445879536376 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 25.820445879536376 + ], + [ + 68.8593803325816, + 25.625798144607923 + ], + [ + 68.97422301606528, + 25.820445879536376 + ], + [ + 68.74453764909792, + 25.820445879536376 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 26.209741349393283 + ], + [ + 68.97422301606528, + 26.209741349393283 + ], + [ + 68.8593803325816, + 26.404389084321735 + ], + [ + 68.74453764909792, + 26.209741349393283 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 26.209741349393283 + ], + [ + 68.8593803325816, + 26.404389084321735 + ], + [ + 68.62969496561425, + 26.404389084321735 + ], + [ + 68.74453764909792, + 26.209741349393283 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 26.209741349393283 + ], + [ + 68.62969496561425, + 26.404389084321735 + ], + [ + 68.51485228213056, + 26.209741349393283 + ], + [ + 68.74453764909792, + 26.209741349393283 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 26.209741349393283 + ], + [ + 68.51485228213056, + 26.209741349393283 + ], + [ + 68.62969496561425, + 26.01509361446483 + ], + [ + 68.74453764909792, + 26.209741349393283 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 26.209741349393283 + ], + [ + 68.62969496561425, + 26.01509361446483 + ], + [ + 68.8593803325816, + 26.01509361446483 + ], + [ + 68.74453764909792, + 26.209741349393283 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 26.209741349393283 + ], + [ + 68.8593803325816, + 26.01509361446483 + ], + [ + 68.97422301606528, + 26.209741349393283 + ], + [ + 68.74453764909792, + 26.209741349393283 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 26.599036819250188 + ], + [ + 68.97422301606528, + 26.599036819250188 + ], + [ + 68.8593803325816, + 26.79368455417864 + ], + [ + 68.74453764909792, + 26.599036819250188 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 26.599036819250188 + ], + [ + 68.8593803325816, + 26.79368455417864 + ], + [ + 68.62969496561425, + 26.79368455417864 + ], + [ + 68.74453764909792, + 26.599036819250188 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 26.599036819250188 + ], + [ + 68.62969496561425, + 26.79368455417864 + ], + [ + 68.51485228213056, + 26.599036819250188 + ], + [ + 68.74453764909792, + 26.599036819250188 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 26.599036819250188 + ], + [ + 68.51485228213056, + 26.599036819250188 + ], + [ + 68.62969496561425, + 26.404389084321735 + ], + [ + 68.74453764909792, + 26.599036819250188 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 26.599036819250188 + ], + [ + 68.62969496561425, + 26.404389084321735 + ], + [ + 68.8593803325816, + 26.404389084321735 + ], + [ + 68.74453764909792, + 26.599036819250188 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 26.599036819250188 + ], + [ + 68.8593803325816, + 26.404389084321735 + ], + [ + 68.97422301606528, + 26.599036819250188 + ], + [ + 68.74453764909792, + 26.599036819250188 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 26.988332289107095 + ], + [ + 68.97422301606528, + 26.988332289107095 + ], + [ + 68.8593803325816, + 27.182980024035547 + ], + [ + 68.74453764909792, + 26.988332289107095 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 26.988332289107095 + ], + [ + 68.8593803325816, + 27.182980024035547 + ], + [ + 68.62969496561425, + 27.182980024035547 + ], + [ + 68.74453764909792, + 26.988332289107095 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 26.988332289107095 + ], + [ + 68.62969496561425, + 27.182980024035547 + ], + [ + 68.51485228213056, + 26.988332289107095 + ], + [ + 68.74453764909792, + 26.988332289107095 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 26.988332289107095 + ], + [ + 68.51485228213056, + 26.988332289107095 + ], + [ + 68.62969496561425, + 26.793684554178643 + ], + [ + 68.74453764909792, + 26.988332289107095 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 26.988332289107095 + ], + [ + 68.62969496561425, + 26.793684554178643 + ], + [ + 68.8593803325816, + 26.793684554178643 + ], + [ + 68.74453764909792, + 26.988332289107095 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 26.988332289107095 + ], + [ + 68.8593803325816, + 26.793684554178643 + ], + [ + 68.97422301606528, + 26.988332289107095 + ], + [ + 68.74453764909792, + 26.988332289107095 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 27.377627758964003 + ], + [ + 68.97422301606528, + 27.377627758964003 + ], + [ + 68.8593803325816, + 27.572275493892455 + ], + [ + 68.74453764909792, + 27.377627758964003 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 27.377627758964003 + ], + [ + 68.8593803325816, + 27.572275493892455 + ], + [ + 68.62969496561425, + 27.572275493892455 + ], + [ + 68.74453764909792, + 27.377627758964003 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 27.377627758964003 + ], + [ + 68.62969496561425, + 27.572275493892455 + ], + [ + 68.51485228213056, + 27.377627758964003 + ], + [ + 68.74453764909792, + 27.377627758964003 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 27.377627758964003 + ], + [ + 68.51485228213056, + 27.377627758964003 + ], + [ + 68.62969496561425, + 27.18298002403555 + ], + [ + 68.74453764909792, + 27.377627758964003 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 27.377627758964003 + ], + [ + 68.62969496561425, + 27.18298002403555 + ], + [ + 68.8593803325816, + 27.18298002403555 + ], + [ + 68.74453764909792, + 27.377627758964003 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 27.377627758964003 + ], + [ + 68.8593803325816, + 27.18298002403555 + ], + [ + 68.97422301606528, + 27.377627758964003 + ], + [ + 68.74453764909792, + 27.377627758964003 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 27.766923228820907 + ], + [ + 68.97422301606528, + 27.766923228820907 + ], + [ + 68.8593803325816, + 27.96157096374936 + ], + [ + 68.74453764909792, + 27.766923228820907 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 27.766923228820907 + ], + [ + 68.8593803325816, + 27.96157096374936 + ], + [ + 68.62969496561425, + 27.96157096374936 + ], + [ + 68.74453764909792, + 27.766923228820907 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 27.766923228820907 + ], + [ + 68.62969496561425, + 27.96157096374936 + ], + [ + 68.51485228213056, + 27.766923228820907 + ], + [ + 68.74453764909792, + 27.766923228820907 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 27.766923228820907 + ], + [ + 68.51485228213056, + 27.766923228820907 + ], + [ + 68.62969496561425, + 27.572275493892455 + ], + [ + 68.74453764909792, + 27.766923228820907 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 27.766923228820907 + ], + [ + 68.62969496561425, + 27.572275493892455 + ], + [ + 68.8593803325816, + 27.572275493892455 + ], + [ + 68.74453764909792, + 27.766923228820907 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 27.766923228820907 + ], + [ + 68.8593803325816, + 27.572275493892455 + ], + [ + 68.97422301606528, + 27.766923228820907 + ], + [ + 68.74453764909792, + 27.766923228820907 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 28.156218698677815 + ], + [ + 68.97422301606528, + 28.156218698677815 + ], + [ + 68.8593803325816, + 28.350866433606267 + ], + [ + 68.74453764909792, + 28.156218698677815 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 28.156218698677815 + ], + [ + 68.8593803325816, + 28.350866433606267 + ], + [ + 68.62969496561425, + 28.350866433606267 + ], + [ + 68.74453764909792, + 28.156218698677815 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 28.156218698677815 + ], + [ + 68.62969496561425, + 28.350866433606267 + ], + [ + 68.51485228213056, + 28.156218698677815 + ], + [ + 68.74453764909792, + 28.156218698677815 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 28.156218698677815 + ], + [ + 68.51485228213056, + 28.156218698677815 + ], + [ + 68.62969496561425, + 27.961570963749363 + ], + [ + 68.74453764909792, + 28.156218698677815 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 28.156218698677815 + ], + [ + 68.62969496561425, + 27.961570963749363 + ], + [ + 68.8593803325816, + 27.961570963749363 + ], + [ + 68.74453764909792, + 28.156218698677815 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 28.156218698677815 + ], + [ + 68.8593803325816, + 27.961570963749363 + ], + [ + 68.97422301606528, + 28.156218698677815 + ], + [ + 68.74453764909792, + 28.156218698677815 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 28.54551416853472 + ], + [ + 68.97422301606528, + 28.54551416853472 + ], + [ + 68.8593803325816, + 28.74016190346317 + ], + [ + 68.74453764909792, + 28.54551416853472 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 28.54551416853472 + ], + [ + 68.8593803325816, + 28.74016190346317 + ], + [ + 68.62969496561425, + 28.74016190346317 + ], + [ + 68.74453764909792, + 28.54551416853472 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 28.54551416853472 + ], + [ + 68.62969496561425, + 28.74016190346317 + ], + [ + 68.51485228213056, + 28.54551416853472 + ], + [ + 68.74453764909792, + 28.54551416853472 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 28.54551416853472 + ], + [ + 68.51485228213056, + 28.54551416853472 + ], + [ + 68.62969496561425, + 28.350866433606267 + ], + [ + 68.74453764909792, + 28.54551416853472 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 28.54551416853472 + ], + [ + 68.62969496561425, + 28.350866433606267 + ], + [ + 68.8593803325816, + 28.350866433606267 + ], + [ + 68.74453764909792, + 28.54551416853472 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 28.54551416853472 + ], + [ + 68.8593803325816, + 28.350866433606267 + ], + [ + 68.97422301606528, + 28.54551416853472 + ], + [ + 68.74453764909792, + 28.54551416853472 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 28.934809638391627 + ], + [ + 68.97422301606528, + 28.934809638391627 + ], + [ + 68.8593803325816, + 29.12945737332008 + ], + [ + 68.74453764909792, + 28.934809638391627 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 28.934809638391627 + ], + [ + 68.8593803325816, + 29.12945737332008 + ], + [ + 68.62969496561425, + 29.12945737332008 + ], + [ + 68.74453764909792, + 28.934809638391627 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 28.934809638391627 + ], + [ + 68.62969496561425, + 29.12945737332008 + ], + [ + 68.51485228213056, + 28.934809638391627 + ], + [ + 68.74453764909792, + 28.934809638391627 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 28.934809638391627 + ], + [ + 68.51485228213056, + 28.934809638391627 + ], + [ + 68.62969496561425, + 28.740161903463175 + ], + [ + 68.74453764909792, + 28.934809638391627 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 28.934809638391627 + ], + [ + 68.62969496561425, + 28.740161903463175 + ], + [ + 68.8593803325816, + 28.740161903463175 + ], + [ + 68.74453764909792, + 28.934809638391627 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 28.934809638391627 + ], + [ + 68.8593803325816, + 28.740161903463175 + ], + [ + 68.97422301606528, + 28.934809638391627 + ], + [ + 68.74453764909792, + 28.934809638391627 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 29.32410510824853 + ], + [ + 68.97422301606528, + 29.32410510824853 + ], + [ + 68.8593803325816, + 29.518752843176983 + ], + [ + 68.74453764909792, + 29.32410510824853 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 29.32410510824853 + ], + [ + 68.8593803325816, + 29.518752843176983 + ], + [ + 68.62969496561425, + 29.518752843176983 + ], + [ + 68.74453764909792, + 29.32410510824853 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 29.32410510824853 + ], + [ + 68.62969496561425, + 29.518752843176983 + ], + [ + 68.51485228213056, + 29.32410510824853 + ], + [ + 68.74453764909792, + 29.32410510824853 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 29.32410510824853 + ], + [ + 68.51485228213056, + 29.32410510824853 + ], + [ + 68.62969496561425, + 29.12945737332008 + ], + [ + 68.74453764909792, + 29.32410510824853 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 29.32410510824853 + ], + [ + 68.62969496561425, + 29.12945737332008 + ], + [ + 68.8593803325816, + 29.12945737332008 + ], + [ + 68.74453764909792, + 29.32410510824853 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 29.32410510824853 + ], + [ + 68.8593803325816, + 29.12945737332008 + ], + [ + 68.97422301606528, + 29.32410510824853 + ], + [ + 68.74453764909792, + 29.32410510824853 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 29.71340057810544 + ], + [ + 68.97422301606528, + 29.71340057810544 + ], + [ + 68.8593803325816, + 29.90804831303389 + ], + [ + 68.74453764909792, + 29.71340057810544 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 29.71340057810544 + ], + [ + 68.8593803325816, + 29.90804831303389 + ], + [ + 68.62969496561425, + 29.90804831303389 + ], + [ + 68.74453764909792, + 29.71340057810544 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 29.71340057810544 + ], + [ + 68.62969496561425, + 29.90804831303389 + ], + [ + 68.51485228213056, + 29.71340057810544 + ], + [ + 68.74453764909792, + 29.71340057810544 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 29.71340057810544 + ], + [ + 68.51485228213056, + 29.71340057810544 + ], + [ + 68.62969496561425, + 29.518752843176987 + ], + [ + 68.74453764909792, + 29.71340057810544 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 29.71340057810544 + ], + [ + 68.62969496561425, + 29.518752843176987 + ], + [ + 68.8593803325816, + 29.518752843176987 + ], + [ + 68.74453764909792, + 29.71340057810544 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 29.71340057810544 + ], + [ + 68.8593803325816, + 29.518752843176987 + ], + [ + 68.97422301606528, + 29.71340057810544 + ], + [ + 68.74453764909792, + 29.71340057810544 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 30.102696047962343 + ], + [ + 68.97422301606528, + 30.102696047962343 + ], + [ + 68.8593803325816, + 30.297343782890795 + ], + [ + 68.74453764909792, + 30.102696047962343 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 30.102696047962343 + ], + [ + 68.8593803325816, + 30.297343782890795 + ], + [ + 68.62969496561425, + 30.297343782890795 + ], + [ + 68.74453764909792, + 30.102696047962343 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 30.102696047962343 + ], + [ + 68.62969496561425, + 30.297343782890795 + ], + [ + 68.51485228213056, + 30.102696047962343 + ], + [ + 68.74453764909792, + 30.102696047962343 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 30.102696047962343 + ], + [ + 68.51485228213056, + 30.102696047962343 + ], + [ + 68.62969496561425, + 29.90804831303389 + ], + [ + 68.74453764909792, + 30.102696047962343 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 30.102696047962343 + ], + [ + 68.62969496561425, + 29.90804831303389 + ], + [ + 68.8593803325816, + 29.90804831303389 + ], + [ + 68.74453764909792, + 30.102696047962343 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 30.102696047962343 + ], + [ + 68.8593803325816, + 29.90804831303389 + ], + [ + 68.97422301606528, + 30.102696047962343 + ], + [ + 68.74453764909792, + 30.102696047962343 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 30.49199151781925 + ], + [ + 68.97422301606528, + 30.49199151781925 + ], + [ + 68.8593803325816, + 30.686639252747703 + ], + [ + 68.74453764909792, + 30.49199151781925 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 30.49199151781925 + ], + [ + 68.8593803325816, + 30.686639252747703 + ], + [ + 68.62969496561425, + 30.686639252747703 + ], + [ + 68.74453764909792, + 30.49199151781925 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 30.49199151781925 + ], + [ + 68.62969496561425, + 30.686639252747703 + ], + [ + 68.51485228213056, + 30.49199151781925 + ], + [ + 68.74453764909792, + 30.49199151781925 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 30.49199151781925 + ], + [ + 68.51485228213056, + 30.49199151781925 + ], + [ + 68.62969496561425, + 30.2973437828908 + ], + [ + 68.74453764909792, + 30.49199151781925 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 30.49199151781925 + ], + [ + 68.62969496561425, + 30.2973437828908 + ], + [ + 68.8593803325816, + 30.2973437828908 + ], + [ + 68.74453764909792, + 30.49199151781925 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 30.49199151781925 + ], + [ + 68.8593803325816, + 30.2973437828908 + ], + [ + 68.97422301606528, + 30.49199151781925 + ], + [ + 68.74453764909792, + 30.49199151781925 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 30.88128698767616 + ], + [ + 68.97422301606528, + 30.88128698767616 + ], + [ + 68.8593803325816, + 31.07593472260461 + ], + [ + 68.74453764909792, + 30.88128698767616 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 30.88128698767616 + ], + [ + 68.8593803325816, + 31.07593472260461 + ], + [ + 68.62969496561425, + 31.07593472260461 + ], + [ + 68.74453764909792, + 30.88128698767616 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 30.88128698767616 + ], + [ + 68.62969496561425, + 31.07593472260461 + ], + [ + 68.51485228213056, + 30.88128698767616 + ], + [ + 68.74453764909792, + 30.88128698767616 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 30.88128698767616 + ], + [ + 68.51485228213056, + 30.88128698767616 + ], + [ + 68.62969496561425, + 30.686639252747707 + ], + [ + 68.74453764909792, + 30.88128698767616 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 30.88128698767616 + ], + [ + 68.62969496561425, + 30.686639252747707 + ], + [ + 68.8593803325816, + 30.686639252747707 + ], + [ + 68.74453764909792, + 30.88128698767616 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 30.88128698767616 + ], + [ + 68.8593803325816, + 30.686639252747707 + ], + [ + 68.97422301606528, + 30.88128698767616 + ], + [ + 68.74453764909792, + 30.88128698767616 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 31.270582457533063 + ], + [ + 68.97422301606528, + 31.270582457533063 + ], + [ + 68.8593803325816, + 31.465230192461515 + ], + [ + 68.74453764909792, + 31.270582457533063 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 31.270582457533063 + ], + [ + 68.8593803325816, + 31.465230192461515 + ], + [ + 68.62969496561425, + 31.465230192461515 + ], + [ + 68.74453764909792, + 31.270582457533063 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 31.270582457533063 + ], + [ + 68.62969496561425, + 31.465230192461515 + ], + [ + 68.51485228213056, + 31.270582457533063 + ], + [ + 68.74453764909792, + 31.270582457533063 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 31.270582457533063 + ], + [ + 68.51485228213056, + 31.270582457533063 + ], + [ + 68.62969496561425, + 31.07593472260461 + ], + [ + 68.74453764909792, + 31.270582457533063 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 31.270582457533063 + ], + [ + 68.62969496561425, + 31.07593472260461 + ], + [ + 68.8593803325816, + 31.07593472260461 + ], + [ + 68.74453764909792, + 31.270582457533063 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 31.270582457533063 + ], + [ + 68.8593803325816, + 31.07593472260461 + ], + [ + 68.97422301606528, + 31.270582457533063 + ], + [ + 68.74453764909792, + 31.270582457533063 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 31.65987792738997 + ], + [ + 68.97422301606528, + 31.65987792738997 + ], + [ + 68.8593803325816, + 31.854525662318423 + ], + [ + 68.74453764909792, + 31.65987792738997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 31.65987792738997 + ], + [ + 68.8593803325816, + 31.854525662318423 + ], + [ + 68.62969496561425, + 31.854525662318423 + ], + [ + 68.74453764909792, + 31.65987792738997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 31.65987792738997 + ], + [ + 68.62969496561425, + 31.854525662318423 + ], + [ + 68.51485228213056, + 31.65987792738997 + ], + [ + 68.74453764909792, + 31.65987792738997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 31.65987792738997 + ], + [ + 68.51485228213056, + 31.65987792738997 + ], + [ + 68.62969496561425, + 31.46523019246152 + ], + [ + 68.74453764909792, + 31.65987792738997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 31.65987792738997 + ], + [ + 68.62969496561425, + 31.46523019246152 + ], + [ + 68.8593803325816, + 31.46523019246152 + ], + [ + 68.74453764909792, + 31.65987792738997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 31.65987792738997 + ], + [ + 68.8593803325816, + 31.46523019246152 + ], + [ + 68.97422301606528, + 31.65987792738997 + ], + [ + 68.74453764909792, + 31.65987792738997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 32.049173397246875 + ], + [ + 68.97422301606528, + 32.049173397246875 + ], + [ + 68.8593803325816, + 32.24382113217533 + ], + [ + 68.74453764909792, + 32.049173397246875 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 32.049173397246875 + ], + [ + 68.8593803325816, + 32.24382113217533 + ], + [ + 68.62969496561425, + 32.24382113217533 + ], + [ + 68.74453764909792, + 32.049173397246875 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 32.049173397246875 + ], + [ + 68.62969496561425, + 32.24382113217533 + ], + [ + 68.51485228213056, + 32.049173397246875 + ], + [ + 68.74453764909792, + 32.049173397246875 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 32.049173397246875 + ], + [ + 68.51485228213056, + 32.049173397246875 + ], + [ + 68.62969496561425, + 31.854525662318423 + ], + [ + 68.74453764909792, + 32.049173397246875 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 32.049173397246875 + ], + [ + 68.62969496561425, + 31.854525662318423 + ], + [ + 68.8593803325816, + 31.854525662318423 + ], + [ + 68.74453764909792, + 32.049173397246875 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 32.049173397246875 + ], + [ + 68.8593803325816, + 31.854525662318423 + ], + [ + 68.97422301606528, + 32.049173397246875 + ], + [ + 68.74453764909792, + 32.049173397246875 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 32.438468867103786 + ], + [ + 68.97422301606528, + 32.438468867103786 + ], + [ + 68.8593803325816, + 32.63311660203224 + ], + [ + 68.74453764909792, + 32.438468867103786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 32.438468867103786 + ], + [ + 68.8593803325816, + 32.63311660203224 + ], + [ + 68.62969496561425, + 32.63311660203224 + ], + [ + 68.74453764909792, + 32.438468867103786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 32.438468867103786 + ], + [ + 68.62969496561425, + 32.63311660203224 + ], + [ + 68.51485228213056, + 32.438468867103786 + ], + [ + 68.74453764909792, + 32.438468867103786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 32.438468867103786 + ], + [ + 68.51485228213056, + 32.438468867103786 + ], + [ + 68.62969496561425, + 32.243821132175334 + ], + [ + 68.74453764909792, + 32.438468867103786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 32.438468867103786 + ], + [ + 68.62969496561425, + 32.243821132175334 + ], + [ + 68.8593803325816, + 32.243821132175334 + ], + [ + 68.74453764909792, + 32.438468867103786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 32.438468867103786 + ], + [ + 68.8593803325816, + 32.243821132175334 + ], + [ + 68.97422301606528, + 32.438468867103786 + ], + [ + 68.74453764909792, + 32.438468867103786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 32.82776433696069 + ], + [ + 68.97422301606528, + 32.82776433696069 + ], + [ + 68.8593803325816, + 33.02241207188914 + ], + [ + 68.74453764909792, + 32.82776433696069 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 32.82776433696069 + ], + [ + 68.8593803325816, + 33.02241207188914 + ], + [ + 68.62969496561425, + 33.02241207188914 + ], + [ + 68.74453764909792, + 32.82776433696069 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 32.82776433696069 + ], + [ + 68.62969496561425, + 33.02241207188914 + ], + [ + 68.51485228213056, + 32.82776433696069 + ], + [ + 68.74453764909792, + 32.82776433696069 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 32.82776433696069 + ], + [ + 68.51485228213056, + 32.82776433696069 + ], + [ + 68.62969496561425, + 32.63311660203224 + ], + [ + 68.74453764909792, + 32.82776433696069 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 32.82776433696069 + ], + [ + 68.62969496561425, + 32.63311660203224 + ], + [ + 68.8593803325816, + 32.63311660203224 + ], + [ + 68.74453764909792, + 32.82776433696069 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 32.82776433696069 + ], + [ + 68.8593803325816, + 32.63311660203224 + ], + [ + 68.97422301606528, + 32.82776433696069 + ], + [ + 68.74453764909792, + 32.82776433696069 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 33.217059806817595 + ], + [ + 68.97422301606528, + 33.217059806817595 + ], + [ + 68.8593803325816, + 33.41170754174605 + ], + [ + 68.74453764909792, + 33.217059806817595 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 33.217059806817595 + ], + [ + 68.8593803325816, + 33.41170754174605 + ], + [ + 68.62969496561425, + 33.41170754174605 + ], + [ + 68.74453764909792, + 33.217059806817595 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 33.217059806817595 + ], + [ + 68.62969496561425, + 33.41170754174605 + ], + [ + 68.51485228213056, + 33.217059806817595 + ], + [ + 68.74453764909792, + 33.217059806817595 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 33.217059806817595 + ], + [ + 68.51485228213056, + 33.217059806817595 + ], + [ + 68.62969496561425, + 33.02241207188914 + ], + [ + 68.74453764909792, + 33.217059806817595 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 33.217059806817595 + ], + [ + 68.62969496561425, + 33.02241207188914 + ], + [ + 68.8593803325816, + 33.02241207188914 + ], + [ + 68.74453764909792, + 33.217059806817595 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 33.217059806817595 + ], + [ + 68.8593803325816, + 33.02241207188914 + ], + [ + 68.97422301606528, + 33.217059806817595 + ], + [ + 68.74453764909792, + 33.217059806817595 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 33.6063552766745 + ], + [ + 68.97422301606528, + 33.6063552766745 + ], + [ + 68.8593803325816, + 33.80100301160295 + ], + [ + 68.74453764909792, + 33.6063552766745 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 33.6063552766745 + ], + [ + 68.8593803325816, + 33.80100301160295 + ], + [ + 68.62969496561425, + 33.80100301160295 + ], + [ + 68.74453764909792, + 33.6063552766745 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 33.6063552766745 + ], + [ + 68.62969496561425, + 33.80100301160295 + ], + [ + 68.51485228213056, + 33.6063552766745 + ], + [ + 68.74453764909792, + 33.6063552766745 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 33.6063552766745 + ], + [ + 68.51485228213056, + 33.6063552766745 + ], + [ + 68.62969496561425, + 33.41170754174605 + ], + [ + 68.74453764909792, + 33.6063552766745 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 33.6063552766745 + ], + [ + 68.62969496561425, + 33.41170754174605 + ], + [ + 68.8593803325816, + 33.41170754174605 + ], + [ + 68.74453764909792, + 33.6063552766745 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 33.6063552766745 + ], + [ + 68.8593803325816, + 33.41170754174605 + ], + [ + 68.97422301606528, + 33.6063552766745 + ], + [ + 68.74453764909792, + 33.6063552766745 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 33.9956507465314 + ], + [ + 68.97422301606528, + 33.9956507465314 + ], + [ + 68.8593803325816, + 34.190298481459855 + ], + [ + 68.74453764909792, + 33.9956507465314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 33.9956507465314 + ], + [ + 68.8593803325816, + 34.190298481459855 + ], + [ + 68.62969496561425, + 34.190298481459855 + ], + [ + 68.74453764909792, + 33.9956507465314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 33.9956507465314 + ], + [ + 68.62969496561425, + 34.190298481459855 + ], + [ + 68.51485228213056, + 33.9956507465314 + ], + [ + 68.74453764909792, + 33.9956507465314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 33.9956507465314 + ], + [ + 68.51485228213056, + 33.9956507465314 + ], + [ + 68.62969496561425, + 33.80100301160295 + ], + [ + 68.74453764909792, + 33.9956507465314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 33.9956507465314 + ], + [ + 68.62969496561425, + 33.80100301160295 + ], + [ + 68.8593803325816, + 33.80100301160295 + ], + [ + 68.74453764909792, + 33.9956507465314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 33.9956507465314 + ], + [ + 68.8593803325816, + 33.80100301160295 + ], + [ + 68.97422301606528, + 33.9956507465314 + ], + [ + 68.74453764909792, + 33.9956507465314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 34.384946216388315 + ], + [ + 68.97422301606528, + 34.384946216388315 + ], + [ + 68.8593803325816, + 34.57959395131677 + ], + [ + 68.74453764909792, + 34.384946216388315 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 34.384946216388315 + ], + [ + 68.8593803325816, + 34.57959395131677 + ], + [ + 68.62969496561425, + 34.57959395131677 + ], + [ + 68.74453764909792, + 34.384946216388315 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 34.384946216388315 + ], + [ + 68.62969496561425, + 34.57959395131677 + ], + [ + 68.51485228213056, + 34.384946216388315 + ], + [ + 68.74453764909792, + 34.384946216388315 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 34.384946216388315 + ], + [ + 68.51485228213056, + 34.384946216388315 + ], + [ + 68.62969496561425, + 34.19029848145986 + ], + [ + 68.74453764909792, + 34.384946216388315 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 34.384946216388315 + ], + [ + 68.62969496561425, + 34.19029848145986 + ], + [ + 68.8593803325816, + 34.19029848145986 + ], + [ + 68.74453764909792, + 34.384946216388315 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 34.384946216388315 + ], + [ + 68.8593803325816, + 34.19029848145986 + ], + [ + 68.97422301606528, + 34.384946216388315 + ], + [ + 68.74453764909792, + 34.384946216388315 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 34.774241686245226 + ], + [ + 68.97422301606528, + 34.774241686245226 + ], + [ + 68.8593803325816, + 34.96888942117368 + ], + [ + 68.74453764909792, + 34.774241686245226 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 34.774241686245226 + ], + [ + 68.8593803325816, + 34.96888942117368 + ], + [ + 68.62969496561425, + 34.96888942117368 + ], + [ + 68.74453764909792, + 34.774241686245226 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 34.774241686245226 + ], + [ + 68.62969496561425, + 34.96888942117368 + ], + [ + 68.51485228213056, + 34.774241686245226 + ], + [ + 68.74453764909792, + 34.774241686245226 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 34.774241686245226 + ], + [ + 68.51485228213056, + 34.774241686245226 + ], + [ + 68.62969496561425, + 34.579593951316774 + ], + [ + 68.74453764909792, + 34.774241686245226 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 34.774241686245226 + ], + [ + 68.62969496561425, + 34.579593951316774 + ], + [ + 68.8593803325816, + 34.579593951316774 + ], + [ + 68.74453764909792, + 34.774241686245226 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 34.774241686245226 + ], + [ + 68.8593803325816, + 34.579593951316774 + ], + [ + 68.97422301606528, + 34.774241686245226 + ], + [ + 68.74453764909792, + 34.774241686245226 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 35.16353715610213 + ], + [ + 68.97422301606528, + 35.16353715610213 + ], + [ + 68.8593803325816, + 35.35818489103058 + ], + [ + 68.74453764909792, + 35.16353715610213 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 35.16353715610213 + ], + [ + 68.8593803325816, + 35.35818489103058 + ], + [ + 68.62969496561425, + 35.35818489103058 + ], + [ + 68.74453764909792, + 35.16353715610213 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 35.16353715610213 + ], + [ + 68.62969496561425, + 35.35818489103058 + ], + [ + 68.51485228213056, + 35.16353715610213 + ], + [ + 68.74453764909792, + 35.16353715610213 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 35.16353715610213 + ], + [ + 68.51485228213056, + 35.16353715610213 + ], + [ + 68.62969496561425, + 34.96888942117368 + ], + [ + 68.74453764909792, + 35.16353715610213 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 35.16353715610213 + ], + [ + 68.62969496561425, + 34.96888942117368 + ], + [ + 68.8593803325816, + 34.96888942117368 + ], + [ + 68.74453764909792, + 35.16353715610213 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 35.16353715610213 + ], + [ + 68.8593803325816, + 34.96888942117368 + ], + [ + 68.97422301606528, + 35.16353715610213 + ], + [ + 68.74453764909792, + 35.16353715610213 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 35.552832625959034 + ], + [ + 68.97422301606528, + 35.552832625959034 + ], + [ + 68.8593803325816, + 35.74748036088749 + ], + [ + 68.74453764909792, + 35.552832625959034 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 35.552832625959034 + ], + [ + 68.8593803325816, + 35.74748036088749 + ], + [ + 68.62969496561425, + 35.74748036088749 + ], + [ + 68.74453764909792, + 35.552832625959034 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 35.552832625959034 + ], + [ + 68.62969496561425, + 35.74748036088749 + ], + [ + 68.51485228213056, + 35.552832625959034 + ], + [ + 68.74453764909792, + 35.552832625959034 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 35.552832625959034 + ], + [ + 68.51485228213056, + 35.552832625959034 + ], + [ + 68.62969496561425, + 35.35818489103058 + ], + [ + 68.74453764909792, + 35.552832625959034 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 35.552832625959034 + ], + [ + 68.62969496561425, + 35.35818489103058 + ], + [ + 68.8593803325816, + 35.35818489103058 + ], + [ + 68.74453764909792, + 35.552832625959034 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 35.552832625959034 + ], + [ + 68.8593803325816, + 35.35818489103058 + ], + [ + 68.97422301606528, + 35.552832625959034 + ], + [ + 68.74453764909792, + 35.552832625959034 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 35.94212809581594 + ], + [ + 68.97422301606528, + 35.94212809581594 + ], + [ + 68.8593803325816, + 36.13677583074439 + ], + [ + 68.74453764909792, + 35.94212809581594 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 35.94212809581594 + ], + [ + 68.8593803325816, + 36.13677583074439 + ], + [ + 68.62969496561425, + 36.13677583074439 + ], + [ + 68.74453764909792, + 35.94212809581594 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 35.94212809581594 + ], + [ + 68.62969496561425, + 36.13677583074439 + ], + [ + 68.51485228213056, + 35.94212809581594 + ], + [ + 68.74453764909792, + 35.94212809581594 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 35.94212809581594 + ], + [ + 68.51485228213056, + 35.94212809581594 + ], + [ + 68.62969496561425, + 35.74748036088749 + ], + [ + 68.74453764909792, + 35.94212809581594 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 35.94212809581594 + ], + [ + 68.62969496561425, + 35.74748036088749 + ], + [ + 68.8593803325816, + 35.74748036088749 + ], + [ + 68.74453764909792, + 35.94212809581594 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 35.94212809581594 + ], + [ + 68.8593803325816, + 35.74748036088749 + ], + [ + 68.97422301606528, + 35.94212809581594 + ], + [ + 68.74453764909792, + 35.94212809581594 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 36.33142356567284 + ], + [ + 68.97422301606528, + 36.33142356567284 + ], + [ + 68.8593803325816, + 36.526071300601295 + ], + [ + 68.74453764909792, + 36.33142356567284 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 36.33142356567284 + ], + [ + 68.8593803325816, + 36.526071300601295 + ], + [ + 68.62969496561425, + 36.526071300601295 + ], + [ + 68.74453764909792, + 36.33142356567284 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 36.33142356567284 + ], + [ + 68.62969496561425, + 36.526071300601295 + ], + [ + 68.51485228213056, + 36.33142356567284 + ], + [ + 68.74453764909792, + 36.33142356567284 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 36.33142356567284 + ], + [ + 68.51485228213056, + 36.33142356567284 + ], + [ + 68.62969496561425, + 36.13677583074439 + ], + [ + 68.74453764909792, + 36.33142356567284 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 36.33142356567284 + ], + [ + 68.62969496561425, + 36.13677583074439 + ], + [ + 68.8593803325816, + 36.13677583074439 + ], + [ + 68.74453764909792, + 36.33142356567284 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 36.33142356567284 + ], + [ + 68.8593803325816, + 36.13677583074439 + ], + [ + 68.97422301606528, + 36.33142356567284 + ], + [ + 68.74453764909792, + 36.33142356567284 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 36.720719035529754 + ], + [ + 68.97422301606528, + 36.720719035529754 + ], + [ + 68.8593803325816, + 36.915366770458206 + ], + [ + 68.74453764909792, + 36.720719035529754 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 36.720719035529754 + ], + [ + 68.8593803325816, + 36.915366770458206 + ], + [ + 68.62969496561425, + 36.915366770458206 + ], + [ + 68.74453764909792, + 36.720719035529754 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 36.720719035529754 + ], + [ + 68.62969496561425, + 36.915366770458206 + ], + [ + 68.51485228213056, + 36.720719035529754 + ], + [ + 68.74453764909792, + 36.720719035529754 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 36.720719035529754 + ], + [ + 68.51485228213056, + 36.720719035529754 + ], + [ + 68.62969496561425, + 36.5260713006013 + ], + [ + 68.74453764909792, + 36.720719035529754 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 36.720719035529754 + ], + [ + 68.62969496561425, + 36.5260713006013 + ], + [ + 68.8593803325816, + 36.5260713006013 + ], + [ + 68.74453764909792, + 36.720719035529754 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 36.720719035529754 + ], + [ + 68.8593803325816, + 36.5260713006013 + ], + [ + 68.97422301606528, + 36.720719035529754 + ], + [ + 68.74453764909792, + 36.720719035529754 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 37.11001450538666 + ], + [ + 68.97422301606528, + 37.11001450538666 + ], + [ + 68.8593803325816, + 37.30466224031511 + ], + [ + 68.74453764909792, + 37.11001450538666 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 37.11001450538666 + ], + [ + 68.8593803325816, + 37.30466224031511 + ], + [ + 68.62969496561425, + 37.30466224031511 + ], + [ + 68.74453764909792, + 37.11001450538666 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 37.11001450538666 + ], + [ + 68.62969496561425, + 37.30466224031511 + ], + [ + 68.51485228213056, + 37.11001450538666 + ], + [ + 68.74453764909792, + 37.11001450538666 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 37.11001450538666 + ], + [ + 68.51485228213056, + 37.11001450538666 + ], + [ + 68.62969496561425, + 36.915366770458206 + ], + [ + 68.74453764909792, + 37.11001450538666 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 37.11001450538666 + ], + [ + 68.62969496561425, + 36.915366770458206 + ], + [ + 68.8593803325816, + 36.915366770458206 + ], + [ + 68.74453764909792, + 37.11001450538666 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 37.11001450538666 + ], + [ + 68.8593803325816, + 36.915366770458206 + ], + [ + 68.97422301606528, + 37.11001450538666 + ], + [ + 68.74453764909792, + 37.11001450538666 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 37.49930997524357 + ], + [ + 68.97422301606528, + 37.49930997524357 + ], + [ + 68.8593803325816, + 37.69395771017202 + ], + [ + 68.74453764909792, + 37.49930997524357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 37.49930997524357 + ], + [ + 68.8593803325816, + 37.69395771017202 + ], + [ + 68.62969496561425, + 37.69395771017202 + ], + [ + 68.74453764909792, + 37.49930997524357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 37.49930997524357 + ], + [ + 68.62969496561425, + 37.69395771017202 + ], + [ + 68.51485228213056, + 37.49930997524357 + ], + [ + 68.74453764909792, + 37.49930997524357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 37.49930997524357 + ], + [ + 68.51485228213056, + 37.49930997524357 + ], + [ + 68.62969496561425, + 37.30466224031512 + ], + [ + 68.74453764909792, + 37.49930997524357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 37.49930997524357 + ], + [ + 68.62969496561425, + 37.30466224031512 + ], + [ + 68.8593803325816, + 37.30466224031512 + ], + [ + 68.74453764909792, + 37.49930997524357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 37.49930997524357 + ], + [ + 68.8593803325816, + 37.30466224031512 + ], + [ + 68.97422301606528, + 37.49930997524357 + ], + [ + 68.74453764909792, + 37.49930997524357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 37.888605445100474 + ], + [ + 68.97422301606528, + 37.888605445100474 + ], + [ + 68.8593803325816, + 38.083253180028926 + ], + [ + 68.74453764909792, + 37.888605445100474 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 37.888605445100474 + ], + [ + 68.8593803325816, + 38.083253180028926 + ], + [ + 68.62969496561425, + 38.083253180028926 + ], + [ + 68.74453764909792, + 37.888605445100474 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 37.888605445100474 + ], + [ + 68.62969496561425, + 38.083253180028926 + ], + [ + 68.51485228213056, + 37.888605445100474 + ], + [ + 68.74453764909792, + 37.888605445100474 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 37.888605445100474 + ], + [ + 68.51485228213056, + 37.888605445100474 + ], + [ + 68.62969496561425, + 37.69395771017202 + ], + [ + 68.74453764909792, + 37.888605445100474 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 37.888605445100474 + ], + [ + 68.62969496561425, + 37.69395771017202 + ], + [ + 68.8593803325816, + 37.69395771017202 + ], + [ + 68.74453764909792, + 37.888605445100474 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 37.888605445100474 + ], + [ + 68.8593803325816, + 37.69395771017202 + ], + [ + 68.97422301606528, + 37.888605445100474 + ], + [ + 68.74453764909792, + 37.888605445100474 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 38.27790091495738 + ], + [ + 68.97422301606528, + 38.27790091495738 + ], + [ + 68.8593803325816, + 38.47254864988583 + ], + [ + 68.74453764909792, + 38.27790091495738 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 38.27790091495738 + ], + [ + 68.8593803325816, + 38.47254864988583 + ], + [ + 68.62969496561425, + 38.47254864988583 + ], + [ + 68.74453764909792, + 38.27790091495738 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 38.27790091495738 + ], + [ + 68.62969496561425, + 38.47254864988583 + ], + [ + 68.51485228213056, + 38.27790091495738 + ], + [ + 68.74453764909792, + 38.27790091495738 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 38.27790091495738 + ], + [ + 68.51485228213056, + 38.27790091495738 + ], + [ + 68.62969496561425, + 38.083253180028926 + ], + [ + 68.74453764909792, + 38.27790091495738 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 38.27790091495738 + ], + [ + 68.62969496561425, + 38.083253180028926 + ], + [ + 68.8593803325816, + 38.083253180028926 + ], + [ + 68.74453764909792, + 38.27790091495738 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 38.27790091495738 + ], + [ + 68.8593803325816, + 38.083253180028926 + ], + [ + 68.97422301606528, + 38.27790091495738 + ], + [ + 68.74453764909792, + 38.27790091495738 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 38.66719638481428 + ], + [ + 68.97422301606528, + 38.66719638481428 + ], + [ + 68.8593803325816, + 38.861844119742734 + ], + [ + 68.74453764909792, + 38.66719638481428 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 38.66719638481428 + ], + [ + 68.8593803325816, + 38.861844119742734 + ], + [ + 68.62969496561425, + 38.861844119742734 + ], + [ + 68.74453764909792, + 38.66719638481428 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 38.66719638481428 + ], + [ + 68.62969496561425, + 38.861844119742734 + ], + [ + 68.51485228213056, + 38.66719638481428 + ], + [ + 68.74453764909792, + 38.66719638481428 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 38.66719638481428 + ], + [ + 68.51485228213056, + 38.66719638481428 + ], + [ + 68.62969496561425, + 38.47254864988583 + ], + [ + 68.74453764909792, + 38.66719638481428 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 38.66719638481428 + ], + [ + 68.62969496561425, + 38.47254864988583 + ], + [ + 68.8593803325816, + 38.47254864988583 + ], + [ + 68.74453764909792, + 38.66719638481428 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 38.66719638481428 + ], + [ + 68.8593803325816, + 38.47254864988583 + ], + [ + 68.97422301606528, + 38.66719638481428 + ], + [ + 68.74453764909792, + 38.66719638481428 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 39.05649185467119 + ], + [ + 68.97422301606528, + 39.05649185467119 + ], + [ + 68.8593803325816, + 39.25113958959964 + ], + [ + 68.74453764909792, + 39.05649185467119 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 39.05649185467119 + ], + [ + 68.8593803325816, + 39.25113958959964 + ], + [ + 68.62969496561425, + 39.25113958959964 + ], + [ + 68.74453764909792, + 39.05649185467119 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 39.05649185467119 + ], + [ + 68.62969496561425, + 39.25113958959964 + ], + [ + 68.51485228213056, + 39.05649185467119 + ], + [ + 68.74453764909792, + 39.05649185467119 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 39.05649185467119 + ], + [ + 68.51485228213056, + 39.05649185467119 + ], + [ + 68.62969496561425, + 38.861844119742734 + ], + [ + 68.74453764909792, + 39.05649185467119 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 39.05649185467119 + ], + [ + 68.62969496561425, + 38.861844119742734 + ], + [ + 68.8593803325816, + 38.861844119742734 + ], + [ + 68.74453764909792, + 39.05649185467119 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 39.05649185467119 + ], + [ + 68.8593803325816, + 38.861844119742734 + ], + [ + 68.97422301606528, + 39.05649185467119 + ], + [ + 68.74453764909792, + 39.05649185467119 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 39.4457873245281 + ], + [ + 68.97422301606528, + 39.4457873245281 + ], + [ + 68.8593803325816, + 39.64043505945655 + ], + [ + 68.74453764909792, + 39.4457873245281 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 39.4457873245281 + ], + [ + 68.8593803325816, + 39.64043505945655 + ], + [ + 68.62969496561425, + 39.64043505945655 + ], + [ + 68.74453764909792, + 39.4457873245281 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 39.4457873245281 + ], + [ + 68.62969496561425, + 39.64043505945655 + ], + [ + 68.51485228213056, + 39.4457873245281 + ], + [ + 68.74453764909792, + 39.4457873245281 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 39.4457873245281 + ], + [ + 68.51485228213056, + 39.4457873245281 + ], + [ + 68.62969496561425, + 39.251139589599646 + ], + [ + 68.74453764909792, + 39.4457873245281 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 39.4457873245281 + ], + [ + 68.62969496561425, + 39.251139589599646 + ], + [ + 68.8593803325816, + 39.251139589599646 + ], + [ + 68.74453764909792, + 39.4457873245281 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 39.4457873245281 + ], + [ + 68.8593803325816, + 39.251139589599646 + ], + [ + 68.97422301606528, + 39.4457873245281 + ], + [ + 68.74453764909792, + 39.4457873245281 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 39.835082794385 + ], + [ + 68.97422301606528, + 39.835082794385 + ], + [ + 68.8593803325816, + 40.029730529313454 + ], + [ + 68.74453764909792, + 39.835082794385 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 39.835082794385 + ], + [ + 68.8593803325816, + 40.029730529313454 + ], + [ + 68.62969496561425, + 40.029730529313454 + ], + [ + 68.74453764909792, + 39.835082794385 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 39.835082794385 + ], + [ + 68.62969496561425, + 40.029730529313454 + ], + [ + 68.51485228213056, + 39.835082794385 + ], + [ + 68.74453764909792, + 39.835082794385 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 39.835082794385 + ], + [ + 68.51485228213056, + 39.835082794385 + ], + [ + 68.62969496561425, + 39.64043505945655 + ], + [ + 68.74453764909792, + 39.835082794385 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 39.835082794385 + ], + [ + 68.62969496561425, + 39.64043505945655 + ], + [ + 68.8593803325816, + 39.64043505945655 + ], + [ + 68.74453764909792, + 39.835082794385 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 39.835082794385 + ], + [ + 68.8593803325816, + 39.64043505945655 + ], + [ + 68.97422301606528, + 39.835082794385 + ], + [ + 68.74453764909792, + 39.835082794385 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 40.22437826424191 + ], + [ + 68.97422301606528, + 40.22437826424191 + ], + [ + 68.8593803325816, + 40.419025999170366 + ], + [ + 68.74453764909792, + 40.22437826424191 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 40.22437826424191 + ], + [ + 68.8593803325816, + 40.419025999170366 + ], + [ + 68.62969496561425, + 40.419025999170366 + ], + [ + 68.74453764909792, + 40.22437826424191 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 40.22437826424191 + ], + [ + 68.62969496561425, + 40.419025999170366 + ], + [ + 68.51485228213056, + 40.22437826424191 + ], + [ + 68.74453764909792, + 40.22437826424191 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 40.22437826424191 + ], + [ + 68.51485228213056, + 40.22437826424191 + ], + [ + 68.62969496561425, + 40.02973052931346 + ], + [ + 68.74453764909792, + 40.22437826424191 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 40.22437826424191 + ], + [ + 68.62969496561425, + 40.02973052931346 + ], + [ + 68.8593803325816, + 40.02973052931346 + ], + [ + 68.74453764909792, + 40.22437826424191 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 40.22437826424191 + ], + [ + 68.8593803325816, + 40.02973052931346 + ], + [ + 68.97422301606528, + 40.22437826424191 + ], + [ + 68.74453764909792, + 40.22437826424191 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 40.61367373409882 + ], + [ + 68.97422301606528, + 40.61367373409882 + ], + [ + 68.8593803325816, + 40.80832146902727 + ], + [ + 68.74453764909792, + 40.61367373409882 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 40.61367373409882 + ], + [ + 68.8593803325816, + 40.80832146902727 + ], + [ + 68.62969496561425, + 40.80832146902727 + ], + [ + 68.74453764909792, + 40.61367373409882 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 40.61367373409882 + ], + [ + 68.62969496561425, + 40.80832146902727 + ], + [ + 68.51485228213056, + 40.61367373409882 + ], + [ + 68.74453764909792, + 40.61367373409882 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 40.61367373409882 + ], + [ + 68.51485228213056, + 40.61367373409882 + ], + [ + 68.62969496561425, + 40.419025999170366 + ], + [ + 68.74453764909792, + 40.61367373409882 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 40.61367373409882 + ], + [ + 68.62969496561425, + 40.419025999170366 + ], + [ + 68.8593803325816, + 40.419025999170366 + ], + [ + 68.74453764909792, + 40.61367373409882 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 40.61367373409882 + ], + [ + 68.8593803325816, + 40.419025999170366 + ], + [ + 68.97422301606528, + 40.61367373409882 + ], + [ + 68.74453764909792, + 40.61367373409882 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 41.00296920395572 + ], + [ + 68.97422301606528, + 41.00296920395572 + ], + [ + 68.8593803325816, + 41.197616938884174 + ], + [ + 68.74453764909792, + 41.00296920395572 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 41.00296920395572 + ], + [ + 68.8593803325816, + 41.197616938884174 + ], + [ + 68.62969496561425, + 41.197616938884174 + ], + [ + 68.74453764909792, + 41.00296920395572 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 41.00296920395572 + ], + [ + 68.62969496561425, + 41.197616938884174 + ], + [ + 68.51485228213056, + 41.00296920395572 + ], + [ + 68.74453764909792, + 41.00296920395572 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 41.00296920395572 + ], + [ + 68.51485228213056, + 41.00296920395572 + ], + [ + 68.62969496561425, + 40.80832146902727 + ], + [ + 68.74453764909792, + 41.00296920395572 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 41.00296920395572 + ], + [ + 68.62969496561425, + 40.80832146902727 + ], + [ + 68.8593803325816, + 40.80832146902727 + ], + [ + 68.74453764909792, + 41.00296920395572 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 41.00296920395572 + ], + [ + 68.8593803325816, + 40.80832146902727 + ], + [ + 68.97422301606528, + 41.00296920395572 + ], + [ + 68.74453764909792, + 41.00296920395572 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 41.392264673812626 + ], + [ + 68.97422301606528, + 41.392264673812626 + ], + [ + 68.8593803325816, + 41.58691240874108 + ], + [ + 68.74453764909792, + 41.392264673812626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 41.392264673812626 + ], + [ + 68.8593803325816, + 41.58691240874108 + ], + [ + 68.62969496561425, + 41.58691240874108 + ], + [ + 68.74453764909792, + 41.392264673812626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 41.392264673812626 + ], + [ + 68.62969496561425, + 41.58691240874108 + ], + [ + 68.51485228213056, + 41.392264673812626 + ], + [ + 68.74453764909792, + 41.392264673812626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 41.392264673812626 + ], + [ + 68.51485228213056, + 41.392264673812626 + ], + [ + 68.62969496561425, + 41.197616938884174 + ], + [ + 68.74453764909792, + 41.392264673812626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 41.392264673812626 + ], + [ + 68.62969496561425, + 41.197616938884174 + ], + [ + 68.8593803325816, + 41.197616938884174 + ], + [ + 68.74453764909792, + 41.392264673812626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 41.392264673812626 + ], + [ + 68.8593803325816, + 41.197616938884174 + ], + [ + 68.97422301606528, + 41.392264673812626 + ], + [ + 68.74453764909792, + 41.392264673812626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 41.78156014366953 + ], + [ + 68.97422301606528, + 41.78156014366953 + ], + [ + 68.8593803325816, + 41.97620787859798 + ], + [ + 68.74453764909792, + 41.78156014366953 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 41.78156014366953 + ], + [ + 68.8593803325816, + 41.97620787859798 + ], + [ + 68.62969496561425, + 41.97620787859798 + ], + [ + 68.74453764909792, + 41.78156014366953 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 41.78156014366953 + ], + [ + 68.62969496561425, + 41.97620787859798 + ], + [ + 68.51485228213056, + 41.78156014366953 + ], + [ + 68.74453764909792, + 41.78156014366953 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 41.78156014366953 + ], + [ + 68.51485228213056, + 41.78156014366953 + ], + [ + 68.62969496561425, + 41.58691240874108 + ], + [ + 68.74453764909792, + 41.78156014366953 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 41.78156014366953 + ], + [ + 68.62969496561425, + 41.58691240874108 + ], + [ + 68.8593803325816, + 41.58691240874108 + ], + [ + 68.74453764909792, + 41.78156014366953 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 41.78156014366953 + ], + [ + 68.8593803325816, + 41.58691240874108 + ], + [ + 68.97422301606528, + 41.78156014366953 + ], + [ + 68.74453764909792, + 41.78156014366953 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 42.17085561352644 + ], + [ + 68.97422301606528, + 42.17085561352644 + ], + [ + 68.8593803325816, + 42.365503348454894 + ], + [ + 68.74453764909792, + 42.17085561352644 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 42.17085561352644 + ], + [ + 68.8593803325816, + 42.365503348454894 + ], + [ + 68.62969496561425, + 42.365503348454894 + ], + [ + 68.74453764909792, + 42.17085561352644 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 42.17085561352644 + ], + [ + 68.62969496561425, + 42.365503348454894 + ], + [ + 68.51485228213056, + 42.17085561352644 + ], + [ + 68.74453764909792, + 42.17085561352644 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 42.17085561352644 + ], + [ + 68.51485228213056, + 42.17085561352644 + ], + [ + 68.62969496561425, + 41.97620787859799 + ], + [ + 68.74453764909792, + 42.17085561352644 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 42.17085561352644 + ], + [ + 68.62969496561425, + 41.97620787859799 + ], + [ + 68.8593803325816, + 41.97620787859799 + ], + [ + 68.74453764909792, + 42.17085561352644 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 42.17085561352644 + ], + [ + 68.8593803325816, + 41.97620787859799 + ], + [ + 68.97422301606528, + 42.17085561352644 + ], + [ + 68.74453764909792, + 42.17085561352644 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 42.56015108338335 + ], + [ + 68.97422301606528, + 42.56015108338335 + ], + [ + 68.8593803325816, + 42.754798818311805 + ], + [ + 68.74453764909792, + 42.56015108338335 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 42.56015108338335 + ], + [ + 68.8593803325816, + 42.754798818311805 + ], + [ + 68.62969496561425, + 42.754798818311805 + ], + [ + 68.74453764909792, + 42.56015108338335 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 42.56015108338335 + ], + [ + 68.62969496561425, + 42.754798818311805 + ], + [ + 68.51485228213056, + 42.56015108338335 + ], + [ + 68.74453764909792, + 42.56015108338335 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 42.56015108338335 + ], + [ + 68.51485228213056, + 42.56015108338335 + ], + [ + 68.62969496561425, + 42.3655033484549 + ], + [ + 68.74453764909792, + 42.56015108338335 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 42.56015108338335 + ], + [ + 68.62969496561425, + 42.3655033484549 + ], + [ + 68.8593803325816, + 42.3655033484549 + ], + [ + 68.74453764909792, + 42.56015108338335 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 42.56015108338335 + ], + [ + 68.8593803325816, + 42.3655033484549 + ], + [ + 68.97422301606528, + 42.56015108338335 + ], + [ + 68.74453764909792, + 42.56015108338335 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 42.94944655324026 + ], + [ + 68.97422301606528, + 42.94944655324026 + ], + [ + 68.8593803325816, + 43.14409428816871 + ], + [ + 68.74453764909792, + 42.94944655324026 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 42.94944655324026 + ], + [ + 68.8593803325816, + 43.14409428816871 + ], + [ + 68.62969496561425, + 43.14409428816871 + ], + [ + 68.74453764909792, + 42.94944655324026 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 42.94944655324026 + ], + [ + 68.62969496561425, + 43.14409428816871 + ], + [ + 68.51485228213056, + 42.94944655324026 + ], + [ + 68.74453764909792, + 42.94944655324026 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 42.94944655324026 + ], + [ + 68.51485228213056, + 42.94944655324026 + ], + [ + 68.62969496561425, + 42.754798818311805 + ], + [ + 68.74453764909792, + 42.94944655324026 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 42.94944655324026 + ], + [ + 68.62969496561425, + 42.754798818311805 + ], + [ + 68.8593803325816, + 42.754798818311805 + ], + [ + 68.74453764909792, + 42.94944655324026 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 42.94944655324026 + ], + [ + 68.8593803325816, + 42.754798818311805 + ], + [ + 68.97422301606528, + 42.94944655324026 + ], + [ + 68.74453764909792, + 42.94944655324026 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 43.33874202309716 + ], + [ + 68.97422301606528, + 43.33874202309716 + ], + [ + 68.8593803325816, + 43.53338975802561 + ], + [ + 68.74453764909792, + 43.33874202309716 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 43.33874202309716 + ], + [ + 68.8593803325816, + 43.53338975802561 + ], + [ + 68.62969496561425, + 43.53338975802561 + ], + [ + 68.74453764909792, + 43.33874202309716 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 43.33874202309716 + ], + [ + 68.62969496561425, + 43.53338975802561 + ], + [ + 68.51485228213056, + 43.33874202309716 + ], + [ + 68.74453764909792, + 43.33874202309716 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 43.33874202309716 + ], + [ + 68.51485228213056, + 43.33874202309716 + ], + [ + 68.62969496561425, + 43.14409428816871 + ], + [ + 68.74453764909792, + 43.33874202309716 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 43.33874202309716 + ], + [ + 68.62969496561425, + 43.14409428816871 + ], + [ + 68.8593803325816, + 43.14409428816871 + ], + [ + 68.74453764909792, + 43.33874202309716 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 43.33874202309716 + ], + [ + 68.8593803325816, + 43.14409428816871 + ], + [ + 68.97422301606528, + 43.33874202309716 + ], + [ + 68.74453764909792, + 43.33874202309716 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 43.728037492954066 + ], + [ + 68.97422301606528, + 43.728037492954066 + ], + [ + 68.8593803325816, + 43.92268522788252 + ], + [ + 68.74453764909792, + 43.728037492954066 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 43.728037492954066 + ], + [ + 68.8593803325816, + 43.92268522788252 + ], + [ + 68.62969496561425, + 43.92268522788252 + ], + [ + 68.74453764909792, + 43.728037492954066 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 43.728037492954066 + ], + [ + 68.62969496561425, + 43.92268522788252 + ], + [ + 68.51485228213056, + 43.728037492954066 + ], + [ + 68.74453764909792, + 43.728037492954066 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 43.728037492954066 + ], + [ + 68.51485228213056, + 43.728037492954066 + ], + [ + 68.62969496561425, + 43.53338975802561 + ], + [ + 68.74453764909792, + 43.728037492954066 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 43.728037492954066 + ], + [ + 68.62969496561425, + 43.53338975802561 + ], + [ + 68.8593803325816, + 43.53338975802561 + ], + [ + 68.74453764909792, + 43.728037492954066 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 43.728037492954066 + ], + [ + 68.8593803325816, + 43.53338975802561 + ], + [ + 68.97422301606528, + 43.728037492954066 + ], + [ + 68.74453764909792, + 43.728037492954066 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 44.11733296281097 + ], + [ + 68.97422301606528, + 44.11733296281097 + ], + [ + 68.8593803325816, + 44.31198069773942 + ], + [ + 68.74453764909792, + 44.11733296281097 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 44.11733296281097 + ], + [ + 68.8593803325816, + 44.31198069773942 + ], + [ + 68.62969496561425, + 44.31198069773942 + ], + [ + 68.74453764909792, + 44.11733296281097 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 44.11733296281097 + ], + [ + 68.62969496561425, + 44.31198069773942 + ], + [ + 68.51485228213056, + 44.11733296281097 + ], + [ + 68.74453764909792, + 44.11733296281097 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 44.11733296281097 + ], + [ + 68.51485228213056, + 44.11733296281097 + ], + [ + 68.62969496561425, + 43.92268522788252 + ], + [ + 68.74453764909792, + 44.11733296281097 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 44.11733296281097 + ], + [ + 68.62969496561425, + 43.92268522788252 + ], + [ + 68.8593803325816, + 43.92268522788252 + ], + [ + 68.74453764909792, + 44.11733296281097 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 44.11733296281097 + ], + [ + 68.8593803325816, + 43.92268522788252 + ], + [ + 68.97422301606528, + 44.11733296281097 + ], + [ + 68.74453764909792, + 44.11733296281097 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 44.506628432667874 + ], + [ + 68.97422301606528, + 44.506628432667874 + ], + [ + 68.8593803325816, + 44.701276167596326 + ], + [ + 68.74453764909792, + 44.506628432667874 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 44.506628432667874 + ], + [ + 68.8593803325816, + 44.701276167596326 + ], + [ + 68.62969496561425, + 44.701276167596326 + ], + [ + 68.74453764909792, + 44.506628432667874 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 44.506628432667874 + ], + [ + 68.62969496561425, + 44.701276167596326 + ], + [ + 68.51485228213056, + 44.506628432667874 + ], + [ + 68.74453764909792, + 44.506628432667874 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 44.506628432667874 + ], + [ + 68.51485228213056, + 44.506628432667874 + ], + [ + 68.62969496561425, + 44.31198069773942 + ], + [ + 68.74453764909792, + 44.506628432667874 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 44.506628432667874 + ], + [ + 68.62969496561425, + 44.31198069773942 + ], + [ + 68.8593803325816, + 44.31198069773942 + ], + [ + 68.74453764909792, + 44.506628432667874 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 44.506628432667874 + ], + [ + 68.8593803325816, + 44.31198069773942 + ], + [ + 68.97422301606528, + 44.506628432667874 + ], + [ + 68.74453764909792, + 44.506628432667874 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 44.89592390252479 + ], + [ + 68.97422301606528, + 44.89592390252479 + ], + [ + 68.8593803325816, + 45.090571637453245 + ], + [ + 68.74453764909792, + 44.89592390252479 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 44.89592390252479 + ], + [ + 68.8593803325816, + 45.090571637453245 + ], + [ + 68.62969496561425, + 45.090571637453245 + ], + [ + 68.74453764909792, + 44.89592390252479 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 44.89592390252479 + ], + [ + 68.62969496561425, + 45.090571637453245 + ], + [ + 68.51485228213056, + 44.89592390252479 + ], + [ + 68.74453764909792, + 44.89592390252479 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 44.89592390252479 + ], + [ + 68.51485228213056, + 44.89592390252479 + ], + [ + 68.62969496561425, + 44.70127616759634 + ], + [ + 68.74453764909792, + 44.89592390252479 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 44.89592390252479 + ], + [ + 68.62969496561425, + 44.70127616759634 + ], + [ + 68.8593803325816, + 44.70127616759634 + ], + [ + 68.74453764909792, + 44.89592390252479 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 44.89592390252479 + ], + [ + 68.8593803325816, + 44.70127616759634 + ], + [ + 68.97422301606528, + 44.89592390252479 + ], + [ + 68.74453764909792, + 44.89592390252479 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 45.2852193723817 + ], + [ + 68.97422301606528, + 45.2852193723817 + ], + [ + 68.8593803325816, + 45.47986710731015 + ], + [ + 68.74453764909792, + 45.2852193723817 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 45.2852193723817 + ], + [ + 68.8593803325816, + 45.47986710731015 + ], + [ + 68.62969496561425, + 45.47986710731015 + ], + [ + 68.74453764909792, + 45.2852193723817 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 45.2852193723817 + ], + [ + 68.62969496561425, + 45.47986710731015 + ], + [ + 68.51485228213056, + 45.2852193723817 + ], + [ + 68.74453764909792, + 45.2852193723817 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 45.2852193723817 + ], + [ + 68.51485228213056, + 45.2852193723817 + ], + [ + 68.62969496561425, + 45.090571637453245 + ], + [ + 68.74453764909792, + 45.2852193723817 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 45.2852193723817 + ], + [ + 68.62969496561425, + 45.090571637453245 + ], + [ + 68.8593803325816, + 45.090571637453245 + ], + [ + 68.74453764909792, + 45.2852193723817 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 45.2852193723817 + ], + [ + 68.8593803325816, + 45.090571637453245 + ], + [ + 68.97422301606528, + 45.2852193723817 + ], + [ + 68.74453764909792, + 45.2852193723817 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 45.6745148422386 + ], + [ + 68.97422301606528, + 45.6745148422386 + ], + [ + 68.8593803325816, + 45.86916257716705 + ], + [ + 68.74453764909792, + 45.6745148422386 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 45.6745148422386 + ], + [ + 68.8593803325816, + 45.86916257716705 + ], + [ + 68.62969496561425, + 45.86916257716705 + ], + [ + 68.74453764909792, + 45.6745148422386 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 45.6745148422386 + ], + [ + 68.62969496561425, + 45.86916257716705 + ], + [ + 68.51485228213056, + 45.6745148422386 + ], + [ + 68.74453764909792, + 45.6745148422386 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 45.6745148422386 + ], + [ + 68.51485228213056, + 45.6745148422386 + ], + [ + 68.62969496561425, + 45.47986710731015 + ], + [ + 68.74453764909792, + 45.6745148422386 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 45.6745148422386 + ], + [ + 68.62969496561425, + 45.47986710731015 + ], + [ + 68.8593803325816, + 45.47986710731015 + ], + [ + 68.74453764909792, + 45.6745148422386 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 45.6745148422386 + ], + [ + 68.8593803325816, + 45.47986710731015 + ], + [ + 68.97422301606528, + 45.6745148422386 + ], + [ + 68.74453764909792, + 45.6745148422386 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 46.063810312095505 + ], + [ + 68.97422301606528, + 46.063810312095505 + ], + [ + 68.8593803325816, + 46.25845804702396 + ], + [ + 68.74453764909792, + 46.063810312095505 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 46.063810312095505 + ], + [ + 68.8593803325816, + 46.25845804702396 + ], + [ + 68.62969496561425, + 46.25845804702396 + ], + [ + 68.74453764909792, + 46.063810312095505 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 46.063810312095505 + ], + [ + 68.62969496561425, + 46.25845804702396 + ], + [ + 68.51485228213056, + 46.063810312095505 + ], + [ + 68.74453764909792, + 46.063810312095505 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 46.063810312095505 + ], + [ + 68.51485228213056, + 46.063810312095505 + ], + [ + 68.62969496561425, + 45.86916257716705 + ], + [ + 68.74453764909792, + 46.063810312095505 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 46.063810312095505 + ], + [ + 68.62969496561425, + 45.86916257716705 + ], + [ + 68.8593803325816, + 45.86916257716705 + ], + [ + 68.74453764909792, + 46.063810312095505 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 46.063810312095505 + ], + [ + 68.8593803325816, + 45.86916257716705 + ], + [ + 68.97422301606528, + 46.063810312095505 + ], + [ + 68.74453764909792, + 46.063810312095505 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 46.45310578195241 + ], + [ + 68.97422301606528, + 46.45310578195241 + ], + [ + 68.8593803325816, + 46.64775351688086 + ], + [ + 68.74453764909792, + 46.45310578195241 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 46.45310578195241 + ], + [ + 68.8593803325816, + 46.64775351688086 + ], + [ + 68.62969496561425, + 46.64775351688086 + ], + [ + 68.74453764909792, + 46.45310578195241 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 46.45310578195241 + ], + [ + 68.62969496561425, + 46.64775351688086 + ], + [ + 68.51485228213056, + 46.45310578195241 + ], + [ + 68.74453764909792, + 46.45310578195241 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 46.45310578195241 + ], + [ + 68.51485228213056, + 46.45310578195241 + ], + [ + 68.62969496561425, + 46.25845804702396 + ], + [ + 68.74453764909792, + 46.45310578195241 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 46.45310578195241 + ], + [ + 68.62969496561425, + 46.25845804702396 + ], + [ + 68.8593803325816, + 46.25845804702396 + ], + [ + 68.74453764909792, + 46.45310578195241 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 46.45310578195241 + ], + [ + 68.8593803325816, + 46.25845804702396 + ], + [ + 68.97422301606528, + 46.45310578195241 + ], + [ + 68.74453764909792, + 46.45310578195241 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 46.842401251809314 + ], + [ + 68.97422301606528, + 46.842401251809314 + ], + [ + 68.8593803325816, + 47.037048986737766 + ], + [ + 68.74453764909792, + 46.842401251809314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 46.842401251809314 + ], + [ + 68.8593803325816, + 47.037048986737766 + ], + [ + 68.62969496561425, + 47.037048986737766 + ], + [ + 68.74453764909792, + 46.842401251809314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 46.842401251809314 + ], + [ + 68.62969496561425, + 47.037048986737766 + ], + [ + 68.51485228213056, + 46.842401251809314 + ], + [ + 68.74453764909792, + 46.842401251809314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 46.842401251809314 + ], + [ + 68.51485228213056, + 46.842401251809314 + ], + [ + 68.62969496561425, + 46.64775351688086 + ], + [ + 68.74453764909792, + 46.842401251809314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 46.842401251809314 + ], + [ + 68.62969496561425, + 46.64775351688086 + ], + [ + 68.8593803325816, + 46.64775351688086 + ], + [ + 68.74453764909792, + 46.842401251809314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 46.842401251809314 + ], + [ + 68.8593803325816, + 46.64775351688086 + ], + [ + 68.97422301606528, + 46.842401251809314 + ], + [ + 68.74453764909792, + 46.842401251809314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 47.23169672166622 + ], + [ + 68.97422301606528, + 47.23169672166622 + ], + [ + 68.8593803325816, + 47.42634445659467 + ], + [ + 68.74453764909792, + 47.23169672166622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 47.23169672166622 + ], + [ + 68.8593803325816, + 47.42634445659467 + ], + [ + 68.62969496561425, + 47.42634445659467 + ], + [ + 68.74453764909792, + 47.23169672166622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 47.23169672166622 + ], + [ + 68.62969496561425, + 47.42634445659467 + ], + [ + 68.51485228213056, + 47.23169672166622 + ], + [ + 68.74453764909792, + 47.23169672166622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 47.23169672166622 + ], + [ + 68.51485228213056, + 47.23169672166622 + ], + [ + 68.62969496561425, + 47.037048986737766 + ], + [ + 68.74453764909792, + 47.23169672166622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 47.23169672166622 + ], + [ + 68.62969496561425, + 47.037048986737766 + ], + [ + 68.8593803325816, + 47.037048986737766 + ], + [ + 68.74453764909792, + 47.23169672166622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 47.23169672166622 + ], + [ + 68.8593803325816, + 47.037048986737766 + ], + [ + 68.97422301606528, + 47.23169672166622 + ], + [ + 68.74453764909792, + 47.23169672166622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 47.620992191523136 + ], + [ + 68.97422301606528, + 47.620992191523136 + ], + [ + 68.8593803325816, + 47.81563992645159 + ], + [ + 68.74453764909792, + 47.620992191523136 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 47.620992191523136 + ], + [ + 68.8593803325816, + 47.81563992645159 + ], + [ + 68.62969496561425, + 47.81563992645159 + ], + [ + 68.74453764909792, + 47.620992191523136 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 47.620992191523136 + ], + [ + 68.62969496561425, + 47.81563992645159 + ], + [ + 68.51485228213056, + 47.620992191523136 + ], + [ + 68.74453764909792, + 47.620992191523136 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 47.620992191523136 + ], + [ + 68.51485228213056, + 47.620992191523136 + ], + [ + 68.62969496561425, + 47.426344456594684 + ], + [ + 68.74453764909792, + 47.620992191523136 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 47.620992191523136 + ], + [ + 68.62969496561425, + 47.426344456594684 + ], + [ + 68.8593803325816, + 47.426344456594684 + ], + [ + 68.74453764909792, + 47.620992191523136 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.74453764909792, + 47.620992191523136 + ], + [ + 68.8593803325816, + 47.426344456594684 + ], + [ + 68.97422301606528, + 47.620992191523136 + ], + [ + 68.74453764909792, + 47.620992191523136 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 12.0004566996162 + ], + [ + 69.31875106651633, + 12.0004566996162 + ], + [ + 69.20390838303264, + 12.195104434544653 + ], + [ + 69.08906569954897, + 12.0004566996162 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 12.0004566996162 + ], + [ + 69.20390838303264, + 12.195104434544653 + ], + [ + 68.9742230160653, + 12.195104434544653 + ], + [ + 69.08906569954897, + 12.0004566996162 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 12.0004566996162 + ], + [ + 68.9742230160653, + 12.195104434544653 + ], + [ + 68.85938033258161, + 12.0004566996162 + ], + [ + 69.08906569954897, + 12.0004566996162 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 12.0004566996162 + ], + [ + 68.85938033258161, + 12.0004566996162 + ], + [ + 68.9742230160653, + 11.805808964687746 + ], + [ + 69.08906569954897, + 12.0004566996162 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 12.0004566996162 + ], + [ + 68.9742230160653, + 11.805808964687746 + ], + [ + 69.20390838303264, + 11.805808964687746 + ], + [ + 69.08906569954897, + 12.0004566996162 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 12.0004566996162 + ], + [ + 69.20390838303264, + 11.805808964687746 + ], + [ + 69.31875106651633, + 12.0004566996162 + ], + [ + 69.08906569954897, + 12.0004566996162 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 12.389752169473105 + ], + [ + 69.31875106651633, + 12.389752169473105 + ], + [ + 69.20390838303264, + 12.58439990440156 + ], + [ + 69.08906569954897, + 12.389752169473105 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 12.389752169473105 + ], + [ + 69.20390838303264, + 12.58439990440156 + ], + [ + 68.9742230160653, + 12.58439990440156 + ], + [ + 69.08906569954897, + 12.389752169473105 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 12.389752169473105 + ], + [ + 68.9742230160653, + 12.58439990440156 + ], + [ + 68.85938033258161, + 12.389752169473105 + ], + [ + 69.08906569954897, + 12.389752169473105 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 12.389752169473105 + ], + [ + 68.85938033258161, + 12.389752169473105 + ], + [ + 68.9742230160653, + 12.195104434544652 + ], + [ + 69.08906569954897, + 12.389752169473105 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 12.389752169473105 + ], + [ + 68.9742230160653, + 12.195104434544652 + ], + [ + 69.20390838303264, + 12.195104434544652 + ], + [ + 69.08906569954897, + 12.389752169473105 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 12.389752169473105 + ], + [ + 69.20390838303264, + 12.195104434544652 + ], + [ + 69.31875106651633, + 12.389752169473105 + ], + [ + 69.08906569954897, + 12.389752169473105 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 12.779047639330013 + ], + [ + 69.31875106651633, + 12.779047639330013 + ], + [ + 69.20390838303264, + 12.973695374258467 + ], + [ + 69.08906569954897, + 12.779047639330013 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 12.779047639330013 + ], + [ + 69.20390838303264, + 12.973695374258467 + ], + [ + 68.9742230160653, + 12.973695374258467 + ], + [ + 69.08906569954897, + 12.779047639330013 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 12.779047639330013 + ], + [ + 68.9742230160653, + 12.973695374258467 + ], + [ + 68.85938033258161, + 12.779047639330013 + ], + [ + 69.08906569954897, + 12.779047639330013 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 12.779047639330013 + ], + [ + 68.85938033258161, + 12.779047639330013 + ], + [ + 68.9742230160653, + 12.58439990440156 + ], + [ + 69.08906569954897, + 12.779047639330013 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 12.779047639330013 + ], + [ + 68.9742230160653, + 12.58439990440156 + ], + [ + 69.20390838303264, + 12.58439990440156 + ], + [ + 69.08906569954897, + 12.779047639330013 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 12.779047639330013 + ], + [ + 69.20390838303264, + 12.58439990440156 + ], + [ + 69.31875106651633, + 12.779047639330013 + ], + [ + 69.08906569954897, + 12.779047639330013 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 13.16834310918692 + ], + [ + 69.31875106651633, + 13.16834310918692 + ], + [ + 69.20390838303264, + 13.362990844115373 + ], + [ + 69.08906569954897, + 13.16834310918692 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 13.16834310918692 + ], + [ + 69.20390838303264, + 13.362990844115373 + ], + [ + 68.9742230160653, + 13.362990844115373 + ], + [ + 69.08906569954897, + 13.16834310918692 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 13.16834310918692 + ], + [ + 68.9742230160653, + 13.362990844115373 + ], + [ + 68.85938033258161, + 13.16834310918692 + ], + [ + 69.08906569954897, + 13.16834310918692 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 13.16834310918692 + ], + [ + 68.85938033258161, + 13.16834310918692 + ], + [ + 68.9742230160653, + 12.973695374258465 + ], + [ + 69.08906569954897, + 13.16834310918692 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 13.16834310918692 + ], + [ + 68.9742230160653, + 12.973695374258465 + ], + [ + 69.20390838303264, + 12.973695374258465 + ], + [ + 69.08906569954897, + 13.16834310918692 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 13.16834310918692 + ], + [ + 69.20390838303264, + 12.973695374258465 + ], + [ + 69.31875106651633, + 13.16834310918692 + ], + [ + 69.08906569954897, + 13.16834310918692 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 13.557638579043825 + ], + [ + 69.31875106651633, + 13.557638579043825 + ], + [ + 69.20390838303264, + 13.752286313972279 + ], + [ + 69.08906569954897, + 13.557638579043825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 13.557638579043825 + ], + [ + 69.20390838303264, + 13.752286313972279 + ], + [ + 68.9742230160653, + 13.752286313972279 + ], + [ + 69.08906569954897, + 13.557638579043825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 13.557638579043825 + ], + [ + 68.9742230160653, + 13.752286313972279 + ], + [ + 68.85938033258161, + 13.557638579043825 + ], + [ + 69.08906569954897, + 13.557638579043825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 13.557638579043825 + ], + [ + 68.85938033258161, + 13.557638579043825 + ], + [ + 68.9742230160653, + 13.362990844115371 + ], + [ + 69.08906569954897, + 13.557638579043825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 13.557638579043825 + ], + [ + 68.9742230160653, + 13.362990844115371 + ], + [ + 69.20390838303264, + 13.362990844115371 + ], + [ + 69.08906569954897, + 13.557638579043825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 13.557638579043825 + ], + [ + 69.20390838303264, + 13.362990844115371 + ], + [ + 69.31875106651633, + 13.557638579043825 + ], + [ + 69.08906569954897, + 13.557638579043825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 13.946934048900731 + ], + [ + 69.31875106651633, + 13.946934048900731 + ], + [ + 69.20390838303264, + 14.141581783829185 + ], + [ + 69.08906569954897, + 13.946934048900731 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 13.946934048900731 + ], + [ + 69.20390838303264, + 14.141581783829185 + ], + [ + 68.9742230160653, + 14.141581783829185 + ], + [ + 69.08906569954897, + 13.946934048900731 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 13.946934048900731 + ], + [ + 68.9742230160653, + 14.141581783829185 + ], + [ + 68.85938033258161, + 13.946934048900731 + ], + [ + 69.08906569954897, + 13.946934048900731 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 13.946934048900731 + ], + [ + 68.85938033258161, + 13.946934048900731 + ], + [ + 68.9742230160653, + 13.752286313972277 + ], + [ + 69.08906569954897, + 13.946934048900731 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 13.946934048900731 + ], + [ + 68.9742230160653, + 13.752286313972277 + ], + [ + 69.20390838303264, + 13.752286313972277 + ], + [ + 69.08906569954897, + 13.946934048900731 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 13.946934048900731 + ], + [ + 69.20390838303264, + 13.752286313972277 + ], + [ + 69.31875106651633, + 13.946934048900731 + ], + [ + 69.08906569954897, + 13.946934048900731 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 14.336229518757637 + ], + [ + 69.31875106651633, + 14.336229518757637 + ], + [ + 69.20390838303264, + 14.530877253686091 + ], + [ + 69.08906569954897, + 14.336229518757637 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 14.336229518757637 + ], + [ + 69.20390838303264, + 14.530877253686091 + ], + [ + 68.9742230160653, + 14.530877253686091 + ], + [ + 69.08906569954897, + 14.336229518757637 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 14.336229518757637 + ], + [ + 68.9742230160653, + 14.530877253686091 + ], + [ + 68.85938033258161, + 14.336229518757637 + ], + [ + 69.08906569954897, + 14.336229518757637 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 14.336229518757637 + ], + [ + 68.85938033258161, + 14.336229518757637 + ], + [ + 68.9742230160653, + 14.141581783829183 + ], + [ + 69.08906569954897, + 14.336229518757637 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 14.336229518757637 + ], + [ + 68.9742230160653, + 14.141581783829183 + ], + [ + 69.20390838303264, + 14.141581783829183 + ], + [ + 69.08906569954897, + 14.336229518757637 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 14.336229518757637 + ], + [ + 69.20390838303264, + 14.141581783829183 + ], + [ + 69.31875106651633, + 14.336229518757637 + ], + [ + 69.08906569954897, + 14.336229518757637 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 14.725524988614545 + ], + [ + 69.31875106651633, + 14.725524988614545 + ], + [ + 69.20390838303264, + 14.920172723542999 + ], + [ + 69.08906569954897, + 14.725524988614545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 14.725524988614545 + ], + [ + 69.20390838303264, + 14.920172723542999 + ], + [ + 68.9742230160653, + 14.920172723542999 + ], + [ + 69.08906569954897, + 14.725524988614545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 14.725524988614545 + ], + [ + 68.9742230160653, + 14.920172723542999 + ], + [ + 68.85938033258161, + 14.725524988614545 + ], + [ + 69.08906569954897, + 14.725524988614545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 14.725524988614545 + ], + [ + 68.85938033258161, + 14.725524988614545 + ], + [ + 68.9742230160653, + 14.530877253686091 + ], + [ + 69.08906569954897, + 14.725524988614545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 14.725524988614545 + ], + [ + 68.9742230160653, + 14.530877253686091 + ], + [ + 69.20390838303264, + 14.530877253686091 + ], + [ + 69.08906569954897, + 14.725524988614545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 14.725524988614545 + ], + [ + 69.20390838303264, + 14.530877253686091 + ], + [ + 69.31875106651633, + 14.725524988614545 + ], + [ + 69.08906569954897, + 14.725524988614545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 15.114820458471451 + ], + [ + 69.31875106651633, + 15.114820458471451 + ], + [ + 69.20390838303264, + 15.309468193399905 + ], + [ + 69.08906569954897, + 15.114820458471451 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 15.114820458471451 + ], + [ + 69.20390838303264, + 15.309468193399905 + ], + [ + 68.9742230160653, + 15.309468193399905 + ], + [ + 69.08906569954897, + 15.114820458471451 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 15.114820458471451 + ], + [ + 68.9742230160653, + 15.309468193399905 + ], + [ + 68.85938033258161, + 15.114820458471451 + ], + [ + 69.08906569954897, + 15.114820458471451 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 15.114820458471451 + ], + [ + 68.85938033258161, + 15.114820458471451 + ], + [ + 68.9742230160653, + 14.920172723542997 + ], + [ + 69.08906569954897, + 15.114820458471451 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 15.114820458471451 + ], + [ + 68.9742230160653, + 14.920172723542997 + ], + [ + 69.20390838303264, + 14.920172723542997 + ], + [ + 69.08906569954897, + 15.114820458471451 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 15.114820458471451 + ], + [ + 69.20390838303264, + 14.920172723542997 + ], + [ + 69.31875106651633, + 15.114820458471451 + ], + [ + 69.08906569954897, + 15.114820458471451 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 15.504115928328357 + ], + [ + 69.31875106651633, + 15.504115928328357 + ], + [ + 69.20390838303264, + 15.69876366325681 + ], + [ + 69.08906569954897, + 15.504115928328357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 15.504115928328357 + ], + [ + 69.20390838303264, + 15.69876366325681 + ], + [ + 68.9742230160653, + 15.69876366325681 + ], + [ + 69.08906569954897, + 15.504115928328357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 15.504115928328357 + ], + [ + 68.9742230160653, + 15.69876366325681 + ], + [ + 68.85938033258161, + 15.504115928328357 + ], + [ + 69.08906569954897, + 15.504115928328357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 15.504115928328357 + ], + [ + 68.85938033258161, + 15.504115928328357 + ], + [ + 68.9742230160653, + 15.309468193399903 + ], + [ + 69.08906569954897, + 15.504115928328357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 15.504115928328357 + ], + [ + 68.9742230160653, + 15.309468193399903 + ], + [ + 69.20390838303264, + 15.309468193399903 + ], + [ + 69.08906569954897, + 15.504115928328357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 15.504115928328357 + ], + [ + 69.20390838303264, + 15.309468193399903 + ], + [ + 69.31875106651633, + 15.504115928328357 + ], + [ + 69.08906569954897, + 15.504115928328357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 15.893411398185265 + ], + [ + 69.31875106651633, + 15.893411398185265 + ], + [ + 69.20390838303264, + 16.088059133113717 + ], + [ + 69.08906569954897, + 15.893411398185265 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 15.893411398185265 + ], + [ + 69.20390838303264, + 16.088059133113717 + ], + [ + 68.9742230160653, + 16.088059133113717 + ], + [ + 69.08906569954897, + 15.893411398185265 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 15.893411398185265 + ], + [ + 68.9742230160653, + 16.088059133113717 + ], + [ + 68.85938033258161, + 15.893411398185265 + ], + [ + 69.08906569954897, + 15.893411398185265 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 15.893411398185265 + ], + [ + 68.85938033258161, + 15.893411398185265 + ], + [ + 68.9742230160653, + 15.69876366325681 + ], + [ + 69.08906569954897, + 15.893411398185265 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 15.893411398185265 + ], + [ + 68.9742230160653, + 15.69876366325681 + ], + [ + 69.20390838303264, + 15.69876366325681 + ], + [ + 69.08906569954897, + 15.893411398185265 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 15.893411398185265 + ], + [ + 69.20390838303264, + 15.69876366325681 + ], + [ + 69.31875106651633, + 15.893411398185265 + ], + [ + 69.08906569954897, + 15.893411398185265 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 16.28270686804217 + ], + [ + 69.31875106651633, + 16.28270686804217 + ], + [ + 69.20390838303264, + 16.47735460297062 + ], + [ + 69.08906569954897, + 16.28270686804217 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 16.28270686804217 + ], + [ + 69.20390838303264, + 16.47735460297062 + ], + [ + 68.9742230160653, + 16.47735460297062 + ], + [ + 69.08906569954897, + 16.28270686804217 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 16.28270686804217 + ], + [ + 68.9742230160653, + 16.47735460297062 + ], + [ + 68.85938033258161, + 16.28270686804217 + ], + [ + 69.08906569954897, + 16.28270686804217 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 16.28270686804217 + ], + [ + 68.85938033258161, + 16.28270686804217 + ], + [ + 68.9742230160653, + 16.088059133113717 + ], + [ + 69.08906569954897, + 16.28270686804217 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 16.28270686804217 + ], + [ + 68.9742230160653, + 16.088059133113717 + ], + [ + 69.20390838303264, + 16.088059133113717 + ], + [ + 69.08906569954897, + 16.28270686804217 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 16.28270686804217 + ], + [ + 69.20390838303264, + 16.088059133113717 + ], + [ + 69.31875106651633, + 16.28270686804217 + ], + [ + 69.08906569954897, + 16.28270686804217 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 16.672002337899077 + ], + [ + 69.31875106651633, + 16.672002337899077 + ], + [ + 69.20390838303264, + 16.86665007282753 + ], + [ + 69.08906569954897, + 16.672002337899077 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 16.672002337899077 + ], + [ + 69.20390838303264, + 16.86665007282753 + ], + [ + 68.9742230160653, + 16.86665007282753 + ], + [ + 69.08906569954897, + 16.672002337899077 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 16.672002337899077 + ], + [ + 68.9742230160653, + 16.86665007282753 + ], + [ + 68.85938033258161, + 16.672002337899077 + ], + [ + 69.08906569954897, + 16.672002337899077 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 16.672002337899077 + ], + [ + 68.85938033258161, + 16.672002337899077 + ], + [ + 68.9742230160653, + 16.477354602970625 + ], + [ + 69.08906569954897, + 16.672002337899077 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 16.672002337899077 + ], + [ + 68.9742230160653, + 16.477354602970625 + ], + [ + 69.20390838303264, + 16.477354602970625 + ], + [ + 69.08906569954897, + 16.672002337899077 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 16.672002337899077 + ], + [ + 69.20390838303264, + 16.477354602970625 + ], + [ + 69.31875106651633, + 16.672002337899077 + ], + [ + 69.08906569954897, + 16.672002337899077 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 17.06129780775598 + ], + [ + 69.31875106651633, + 17.06129780775598 + ], + [ + 69.20390838303264, + 17.255945542684433 + ], + [ + 69.08906569954897, + 17.06129780775598 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 17.06129780775598 + ], + [ + 69.20390838303264, + 17.255945542684433 + ], + [ + 68.9742230160653, + 17.255945542684433 + ], + [ + 69.08906569954897, + 17.06129780775598 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 17.06129780775598 + ], + [ + 68.9742230160653, + 17.255945542684433 + ], + [ + 68.85938033258161, + 17.06129780775598 + ], + [ + 69.08906569954897, + 17.06129780775598 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 17.06129780775598 + ], + [ + 68.85938033258161, + 17.06129780775598 + ], + [ + 68.9742230160653, + 16.86665007282753 + ], + [ + 69.08906569954897, + 17.06129780775598 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 17.06129780775598 + ], + [ + 68.9742230160653, + 16.86665007282753 + ], + [ + 69.20390838303264, + 16.86665007282753 + ], + [ + 69.08906569954897, + 17.06129780775598 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 17.06129780775598 + ], + [ + 69.20390838303264, + 16.86665007282753 + ], + [ + 69.31875106651633, + 17.06129780775598 + ], + [ + 69.08906569954897, + 17.06129780775598 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 17.45059327761289 + ], + [ + 69.31875106651633, + 17.45059327761289 + ], + [ + 69.20390838303264, + 17.64524101254134 + ], + [ + 69.08906569954897, + 17.45059327761289 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 17.45059327761289 + ], + [ + 69.20390838303264, + 17.64524101254134 + ], + [ + 68.9742230160653, + 17.64524101254134 + ], + [ + 69.08906569954897, + 17.45059327761289 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 17.45059327761289 + ], + [ + 68.9742230160653, + 17.64524101254134 + ], + [ + 68.85938033258161, + 17.45059327761289 + ], + [ + 69.08906569954897, + 17.45059327761289 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 17.45059327761289 + ], + [ + 68.85938033258161, + 17.45059327761289 + ], + [ + 68.9742230160653, + 17.255945542684437 + ], + [ + 69.08906569954897, + 17.45059327761289 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 17.45059327761289 + ], + [ + 68.9742230160653, + 17.255945542684437 + ], + [ + 69.20390838303264, + 17.255945542684437 + ], + [ + 69.08906569954897, + 17.45059327761289 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 17.45059327761289 + ], + [ + 69.20390838303264, + 17.255945542684437 + ], + [ + 69.31875106651633, + 17.45059327761289 + ], + [ + 69.08906569954897, + 17.45059327761289 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 17.839888747469793 + ], + [ + 69.31875106651633, + 17.839888747469793 + ], + [ + 69.20390838303264, + 18.034536482398245 + ], + [ + 69.08906569954897, + 17.839888747469793 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 17.839888747469793 + ], + [ + 69.20390838303264, + 18.034536482398245 + ], + [ + 68.9742230160653, + 18.034536482398245 + ], + [ + 69.08906569954897, + 17.839888747469793 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 17.839888747469793 + ], + [ + 68.9742230160653, + 18.034536482398245 + ], + [ + 68.85938033258161, + 17.839888747469793 + ], + [ + 69.08906569954897, + 17.839888747469793 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 17.839888747469793 + ], + [ + 68.85938033258161, + 17.839888747469793 + ], + [ + 68.9742230160653, + 17.64524101254134 + ], + [ + 69.08906569954897, + 17.839888747469793 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 17.839888747469793 + ], + [ + 68.9742230160653, + 17.64524101254134 + ], + [ + 69.20390838303264, + 17.64524101254134 + ], + [ + 69.08906569954897, + 17.839888747469793 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 17.839888747469793 + ], + [ + 69.20390838303264, + 17.64524101254134 + ], + [ + 69.31875106651633, + 17.839888747469793 + ], + [ + 69.08906569954897, + 17.839888747469793 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 18.2291842173267 + ], + [ + 69.31875106651633, + 18.2291842173267 + ], + [ + 69.20390838303264, + 18.423831952255153 + ], + [ + 69.08906569954897, + 18.2291842173267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 18.2291842173267 + ], + [ + 69.20390838303264, + 18.423831952255153 + ], + [ + 68.9742230160653, + 18.423831952255153 + ], + [ + 69.08906569954897, + 18.2291842173267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 18.2291842173267 + ], + [ + 68.9742230160653, + 18.423831952255153 + ], + [ + 68.85938033258161, + 18.2291842173267 + ], + [ + 69.08906569954897, + 18.2291842173267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 18.2291842173267 + ], + [ + 68.85938033258161, + 18.2291842173267 + ], + [ + 68.9742230160653, + 18.03453648239825 + ], + [ + 69.08906569954897, + 18.2291842173267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 18.2291842173267 + ], + [ + 68.9742230160653, + 18.03453648239825 + ], + [ + 69.20390838303264, + 18.03453648239825 + ], + [ + 69.08906569954897, + 18.2291842173267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 18.2291842173267 + ], + [ + 69.20390838303264, + 18.03453648239825 + ], + [ + 69.31875106651633, + 18.2291842173267 + ], + [ + 69.08906569954897, + 18.2291842173267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 18.61847968718361 + ], + [ + 69.31875106651633, + 18.61847968718361 + ], + [ + 69.20390838303264, + 18.81312742211206 + ], + [ + 69.08906569954897, + 18.61847968718361 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 18.61847968718361 + ], + [ + 69.20390838303264, + 18.81312742211206 + ], + [ + 68.9742230160653, + 18.81312742211206 + ], + [ + 69.08906569954897, + 18.61847968718361 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 18.61847968718361 + ], + [ + 68.9742230160653, + 18.81312742211206 + ], + [ + 68.85938033258161, + 18.61847968718361 + ], + [ + 69.08906569954897, + 18.61847968718361 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 18.61847968718361 + ], + [ + 68.85938033258161, + 18.61847968718361 + ], + [ + 68.9742230160653, + 18.423831952255156 + ], + [ + 69.08906569954897, + 18.61847968718361 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 18.61847968718361 + ], + [ + 68.9742230160653, + 18.423831952255156 + ], + [ + 69.20390838303264, + 18.423831952255156 + ], + [ + 69.08906569954897, + 18.61847968718361 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 18.61847968718361 + ], + [ + 69.20390838303264, + 18.423831952255156 + ], + [ + 69.31875106651633, + 18.61847968718361 + ], + [ + 69.08906569954897, + 18.61847968718361 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 19.007775157040513 + ], + [ + 69.31875106651633, + 19.007775157040513 + ], + [ + 69.20390838303264, + 19.202422891968965 + ], + [ + 69.08906569954897, + 19.007775157040513 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 19.007775157040513 + ], + [ + 69.20390838303264, + 19.202422891968965 + ], + [ + 68.9742230160653, + 19.202422891968965 + ], + [ + 69.08906569954897, + 19.007775157040513 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 19.007775157040513 + ], + [ + 68.9742230160653, + 19.202422891968965 + ], + [ + 68.85938033258161, + 19.007775157040513 + ], + [ + 69.08906569954897, + 19.007775157040513 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 19.007775157040513 + ], + [ + 68.85938033258161, + 19.007775157040513 + ], + [ + 68.9742230160653, + 18.81312742211206 + ], + [ + 69.08906569954897, + 19.007775157040513 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 19.007775157040513 + ], + [ + 68.9742230160653, + 18.81312742211206 + ], + [ + 69.20390838303264, + 18.81312742211206 + ], + [ + 69.08906569954897, + 19.007775157040513 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 19.007775157040513 + ], + [ + 69.20390838303264, + 18.81312742211206 + ], + [ + 69.31875106651633, + 19.007775157040513 + ], + [ + 69.08906569954897, + 19.007775157040513 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 19.39707062689742 + ], + [ + 69.31875106651633, + 19.39707062689742 + ], + [ + 69.20390838303264, + 19.591718361825873 + ], + [ + 69.08906569954897, + 19.39707062689742 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 19.39707062689742 + ], + [ + 69.20390838303264, + 19.591718361825873 + ], + [ + 68.9742230160653, + 19.591718361825873 + ], + [ + 69.08906569954897, + 19.39707062689742 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 19.39707062689742 + ], + [ + 68.9742230160653, + 19.591718361825873 + ], + [ + 68.85938033258161, + 19.39707062689742 + ], + [ + 69.08906569954897, + 19.39707062689742 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 19.39707062689742 + ], + [ + 68.85938033258161, + 19.39707062689742 + ], + [ + 68.9742230160653, + 19.20242289196897 + ], + [ + 69.08906569954897, + 19.39707062689742 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 19.39707062689742 + ], + [ + 68.9742230160653, + 19.20242289196897 + ], + [ + 69.20390838303264, + 19.20242289196897 + ], + [ + 69.08906569954897, + 19.39707062689742 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 19.39707062689742 + ], + [ + 69.20390838303264, + 19.20242289196897 + ], + [ + 69.31875106651633, + 19.39707062689742 + ], + [ + 69.08906569954897, + 19.39707062689742 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 19.78636609675433 + ], + [ + 69.31875106651633, + 19.78636609675433 + ], + [ + 69.20390838303264, + 19.98101383168278 + ], + [ + 69.08906569954897, + 19.78636609675433 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 19.78636609675433 + ], + [ + 69.20390838303264, + 19.98101383168278 + ], + [ + 68.9742230160653, + 19.98101383168278 + ], + [ + 69.08906569954897, + 19.78636609675433 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 19.78636609675433 + ], + [ + 68.9742230160653, + 19.98101383168278 + ], + [ + 68.85938033258161, + 19.78636609675433 + ], + [ + 69.08906569954897, + 19.78636609675433 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 19.78636609675433 + ], + [ + 68.85938033258161, + 19.78636609675433 + ], + [ + 68.9742230160653, + 19.591718361825876 + ], + [ + 69.08906569954897, + 19.78636609675433 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 19.78636609675433 + ], + [ + 68.9742230160653, + 19.591718361825876 + ], + [ + 69.20390838303264, + 19.591718361825876 + ], + [ + 69.08906569954897, + 19.78636609675433 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 19.78636609675433 + ], + [ + 69.20390838303264, + 19.591718361825876 + ], + [ + 69.31875106651633, + 19.78636609675433 + ], + [ + 69.08906569954897, + 19.78636609675433 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 20.175661566611232 + ], + [ + 69.31875106651633, + 20.175661566611232 + ], + [ + 69.20390838303264, + 20.370309301539685 + ], + [ + 69.08906569954897, + 20.175661566611232 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 20.175661566611232 + ], + [ + 69.20390838303264, + 20.370309301539685 + ], + [ + 68.9742230160653, + 20.370309301539685 + ], + [ + 69.08906569954897, + 20.175661566611232 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 20.175661566611232 + ], + [ + 68.9742230160653, + 20.370309301539685 + ], + [ + 68.85938033258161, + 20.175661566611232 + ], + [ + 69.08906569954897, + 20.175661566611232 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 20.175661566611232 + ], + [ + 68.85938033258161, + 20.175661566611232 + ], + [ + 68.9742230160653, + 19.98101383168278 + ], + [ + 69.08906569954897, + 20.175661566611232 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 20.175661566611232 + ], + [ + 68.9742230160653, + 19.98101383168278 + ], + [ + 69.20390838303264, + 19.98101383168278 + ], + [ + 69.08906569954897, + 20.175661566611232 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 20.175661566611232 + ], + [ + 69.20390838303264, + 19.98101383168278 + ], + [ + 69.31875106651633, + 20.175661566611232 + ], + [ + 69.08906569954897, + 20.175661566611232 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 20.564957036468137 + ], + [ + 69.31875106651633, + 20.564957036468137 + ], + [ + 69.20390838303264, + 20.75960477139659 + ], + [ + 69.08906569954897, + 20.564957036468137 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 20.564957036468137 + ], + [ + 69.20390838303264, + 20.75960477139659 + ], + [ + 68.9742230160653, + 20.75960477139659 + ], + [ + 69.08906569954897, + 20.564957036468137 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 20.564957036468137 + ], + [ + 68.9742230160653, + 20.75960477139659 + ], + [ + 68.85938033258161, + 20.564957036468137 + ], + [ + 69.08906569954897, + 20.564957036468137 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 20.564957036468137 + ], + [ + 68.85938033258161, + 20.564957036468137 + ], + [ + 68.9742230160653, + 20.370309301539685 + ], + [ + 69.08906569954897, + 20.564957036468137 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 20.564957036468137 + ], + [ + 68.9742230160653, + 20.370309301539685 + ], + [ + 69.20390838303264, + 20.370309301539685 + ], + [ + 69.08906569954897, + 20.564957036468137 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 20.564957036468137 + ], + [ + 69.20390838303264, + 20.370309301539685 + ], + [ + 69.31875106651633, + 20.564957036468137 + ], + [ + 69.08906569954897, + 20.564957036468137 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 20.954252506325044 + ], + [ + 69.31875106651633, + 20.954252506325044 + ], + [ + 69.20390838303264, + 21.148900241253497 + ], + [ + 69.08906569954897, + 20.954252506325044 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 20.954252506325044 + ], + [ + 69.20390838303264, + 21.148900241253497 + ], + [ + 68.9742230160653, + 21.148900241253497 + ], + [ + 69.08906569954897, + 20.954252506325044 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 20.954252506325044 + ], + [ + 68.9742230160653, + 21.148900241253497 + ], + [ + 68.85938033258161, + 20.954252506325044 + ], + [ + 69.08906569954897, + 20.954252506325044 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 20.954252506325044 + ], + [ + 68.85938033258161, + 20.954252506325044 + ], + [ + 68.9742230160653, + 20.759604771396592 + ], + [ + 69.08906569954897, + 20.954252506325044 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 20.954252506325044 + ], + [ + 68.9742230160653, + 20.759604771396592 + ], + [ + 69.20390838303264, + 20.759604771396592 + ], + [ + 69.08906569954897, + 20.954252506325044 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 20.954252506325044 + ], + [ + 69.20390838303264, + 20.759604771396592 + ], + [ + 69.31875106651633, + 20.954252506325044 + ], + [ + 69.08906569954897, + 20.954252506325044 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 21.343547976181952 + ], + [ + 69.31875106651633, + 21.343547976181952 + ], + [ + 69.20390838303264, + 21.538195711110404 + ], + [ + 69.08906569954897, + 21.343547976181952 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 21.343547976181952 + ], + [ + 69.20390838303264, + 21.538195711110404 + ], + [ + 68.9742230160653, + 21.538195711110404 + ], + [ + 69.08906569954897, + 21.343547976181952 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 21.343547976181952 + ], + [ + 68.9742230160653, + 21.538195711110404 + ], + [ + 68.85938033258161, + 21.343547976181952 + ], + [ + 69.08906569954897, + 21.343547976181952 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 21.343547976181952 + ], + [ + 68.85938033258161, + 21.343547976181952 + ], + [ + 68.9742230160653, + 21.1489002412535 + ], + [ + 69.08906569954897, + 21.343547976181952 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 21.343547976181952 + ], + [ + 68.9742230160653, + 21.1489002412535 + ], + [ + 69.20390838303264, + 21.1489002412535 + ], + [ + 69.08906569954897, + 21.343547976181952 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 21.343547976181952 + ], + [ + 69.20390838303264, + 21.1489002412535 + ], + [ + 69.31875106651633, + 21.343547976181952 + ], + [ + 69.08906569954897, + 21.343547976181952 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 21.732843446038856 + ], + [ + 69.31875106651633, + 21.732843446038856 + ], + [ + 69.20390838303264, + 21.92749118096731 + ], + [ + 69.08906569954897, + 21.732843446038856 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 21.732843446038856 + ], + [ + 69.20390838303264, + 21.92749118096731 + ], + [ + 68.9742230160653, + 21.92749118096731 + ], + [ + 69.08906569954897, + 21.732843446038856 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 21.732843446038856 + ], + [ + 68.9742230160653, + 21.92749118096731 + ], + [ + 68.85938033258161, + 21.732843446038856 + ], + [ + 69.08906569954897, + 21.732843446038856 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 21.732843446038856 + ], + [ + 68.85938033258161, + 21.732843446038856 + ], + [ + 68.9742230160653, + 21.538195711110404 + ], + [ + 69.08906569954897, + 21.732843446038856 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 21.732843446038856 + ], + [ + 68.9742230160653, + 21.538195711110404 + ], + [ + 69.20390838303264, + 21.538195711110404 + ], + [ + 69.08906569954897, + 21.732843446038856 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 21.732843446038856 + ], + [ + 69.20390838303264, + 21.538195711110404 + ], + [ + 69.31875106651633, + 21.732843446038856 + ], + [ + 69.08906569954897, + 21.732843446038856 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 22.122138915895764 + ], + [ + 69.31875106651633, + 22.122138915895764 + ], + [ + 69.20390838303264, + 22.316786650824216 + ], + [ + 69.08906569954897, + 22.122138915895764 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 22.122138915895764 + ], + [ + 69.20390838303264, + 22.316786650824216 + ], + [ + 68.9742230160653, + 22.316786650824216 + ], + [ + 69.08906569954897, + 22.122138915895764 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 22.122138915895764 + ], + [ + 68.9742230160653, + 22.316786650824216 + ], + [ + 68.85938033258161, + 22.122138915895764 + ], + [ + 69.08906569954897, + 22.122138915895764 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 22.122138915895764 + ], + [ + 68.85938033258161, + 22.122138915895764 + ], + [ + 68.9742230160653, + 21.927491180967312 + ], + [ + 69.08906569954897, + 22.122138915895764 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 22.122138915895764 + ], + [ + 68.9742230160653, + 21.927491180967312 + ], + [ + 69.20390838303264, + 21.927491180967312 + ], + [ + 69.08906569954897, + 22.122138915895764 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 22.122138915895764 + ], + [ + 69.20390838303264, + 21.927491180967312 + ], + [ + 69.31875106651633, + 22.122138915895764 + ], + [ + 69.08906569954897, + 22.122138915895764 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 22.511434385752672 + ], + [ + 69.31875106651633, + 22.511434385752672 + ], + [ + 69.20390838303264, + 22.706082120681124 + ], + [ + 69.08906569954897, + 22.511434385752672 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 22.511434385752672 + ], + [ + 69.20390838303264, + 22.706082120681124 + ], + [ + 68.9742230160653, + 22.706082120681124 + ], + [ + 69.08906569954897, + 22.511434385752672 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 22.511434385752672 + ], + [ + 68.9742230160653, + 22.706082120681124 + ], + [ + 68.85938033258161, + 22.511434385752672 + ], + [ + 69.08906569954897, + 22.511434385752672 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 22.511434385752672 + ], + [ + 68.85938033258161, + 22.511434385752672 + ], + [ + 68.9742230160653, + 22.31678665082422 + ], + [ + 69.08906569954897, + 22.511434385752672 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 22.511434385752672 + ], + [ + 68.9742230160653, + 22.31678665082422 + ], + [ + 69.20390838303264, + 22.31678665082422 + ], + [ + 69.08906569954897, + 22.511434385752672 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 22.511434385752672 + ], + [ + 69.20390838303264, + 22.31678665082422 + ], + [ + 69.31875106651633, + 22.511434385752672 + ], + [ + 69.08906569954897, + 22.511434385752672 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 22.900729855609576 + ], + [ + 69.31875106651633, + 22.900729855609576 + ], + [ + 69.20390838303264, + 23.09537759053803 + ], + [ + 69.08906569954897, + 22.900729855609576 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 22.900729855609576 + ], + [ + 69.20390838303264, + 23.09537759053803 + ], + [ + 68.9742230160653, + 23.09537759053803 + ], + [ + 69.08906569954897, + 22.900729855609576 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 22.900729855609576 + ], + [ + 68.9742230160653, + 23.09537759053803 + ], + [ + 68.85938033258161, + 22.900729855609576 + ], + [ + 69.08906569954897, + 22.900729855609576 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 22.900729855609576 + ], + [ + 68.85938033258161, + 22.900729855609576 + ], + [ + 68.9742230160653, + 22.706082120681124 + ], + [ + 69.08906569954897, + 22.900729855609576 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 22.900729855609576 + ], + [ + 68.9742230160653, + 22.706082120681124 + ], + [ + 69.20390838303264, + 22.706082120681124 + ], + [ + 69.08906569954897, + 22.900729855609576 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 22.900729855609576 + ], + [ + 69.20390838303264, + 22.706082120681124 + ], + [ + 69.31875106651633, + 22.900729855609576 + ], + [ + 69.08906569954897, + 22.900729855609576 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 23.290025325466484 + ], + [ + 69.31875106651633, + 23.290025325466484 + ], + [ + 69.20390838303264, + 23.484673060394936 + ], + [ + 69.08906569954897, + 23.290025325466484 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 23.290025325466484 + ], + [ + 69.20390838303264, + 23.484673060394936 + ], + [ + 68.9742230160653, + 23.484673060394936 + ], + [ + 69.08906569954897, + 23.290025325466484 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 23.290025325466484 + ], + [ + 68.9742230160653, + 23.484673060394936 + ], + [ + 68.85938033258161, + 23.290025325466484 + ], + [ + 69.08906569954897, + 23.290025325466484 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 23.290025325466484 + ], + [ + 68.85938033258161, + 23.290025325466484 + ], + [ + 68.9742230160653, + 23.095377590538032 + ], + [ + 69.08906569954897, + 23.290025325466484 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 23.290025325466484 + ], + [ + 68.9742230160653, + 23.095377590538032 + ], + [ + 69.20390838303264, + 23.095377590538032 + ], + [ + 69.08906569954897, + 23.290025325466484 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 23.290025325466484 + ], + [ + 69.20390838303264, + 23.095377590538032 + ], + [ + 69.31875106651633, + 23.290025325466484 + ], + [ + 69.08906569954897, + 23.290025325466484 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 23.67932079532339 + ], + [ + 69.31875106651633, + 23.67932079532339 + ], + [ + 69.20390838303264, + 23.873968530251844 + ], + [ + 69.08906569954897, + 23.67932079532339 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 23.67932079532339 + ], + [ + 69.20390838303264, + 23.873968530251844 + ], + [ + 68.9742230160653, + 23.873968530251844 + ], + [ + 69.08906569954897, + 23.67932079532339 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 23.67932079532339 + ], + [ + 68.9742230160653, + 23.873968530251844 + ], + [ + 68.85938033258161, + 23.67932079532339 + ], + [ + 69.08906569954897, + 23.67932079532339 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 23.67932079532339 + ], + [ + 68.85938033258161, + 23.67932079532339 + ], + [ + 68.9742230160653, + 23.48467306039494 + ], + [ + 69.08906569954897, + 23.67932079532339 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 23.67932079532339 + ], + [ + 68.9742230160653, + 23.48467306039494 + ], + [ + 69.20390838303264, + 23.48467306039494 + ], + [ + 69.08906569954897, + 23.67932079532339 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 23.67932079532339 + ], + [ + 69.20390838303264, + 23.48467306039494 + ], + [ + 69.31875106651633, + 23.67932079532339 + ], + [ + 69.08906569954897, + 23.67932079532339 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 24.068616265180296 + ], + [ + 69.31875106651633, + 24.068616265180296 + ], + [ + 69.20390838303264, + 24.263264000108748 + ], + [ + 69.08906569954897, + 24.068616265180296 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 24.068616265180296 + ], + [ + 69.20390838303264, + 24.263264000108748 + ], + [ + 68.9742230160653, + 24.263264000108748 + ], + [ + 69.08906569954897, + 24.068616265180296 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 24.068616265180296 + ], + [ + 68.9742230160653, + 24.263264000108748 + ], + [ + 68.85938033258161, + 24.068616265180296 + ], + [ + 69.08906569954897, + 24.068616265180296 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 24.068616265180296 + ], + [ + 68.85938033258161, + 24.068616265180296 + ], + [ + 68.9742230160653, + 23.873968530251844 + ], + [ + 69.08906569954897, + 24.068616265180296 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 24.068616265180296 + ], + [ + 68.9742230160653, + 23.873968530251844 + ], + [ + 69.20390838303264, + 23.873968530251844 + ], + [ + 69.08906569954897, + 24.068616265180296 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 24.068616265180296 + ], + [ + 69.20390838303264, + 23.873968530251844 + ], + [ + 69.31875106651633, + 24.068616265180296 + ], + [ + 69.08906569954897, + 24.068616265180296 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 24.4579117350372 + ], + [ + 69.31875106651633, + 24.4579117350372 + ], + [ + 69.20390838303264, + 24.652559469965652 + ], + [ + 69.08906569954897, + 24.4579117350372 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 24.4579117350372 + ], + [ + 69.20390838303264, + 24.652559469965652 + ], + [ + 68.9742230160653, + 24.652559469965652 + ], + [ + 69.08906569954897, + 24.4579117350372 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 24.4579117350372 + ], + [ + 68.9742230160653, + 24.652559469965652 + ], + [ + 68.85938033258161, + 24.4579117350372 + ], + [ + 69.08906569954897, + 24.4579117350372 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 24.4579117350372 + ], + [ + 68.85938033258161, + 24.4579117350372 + ], + [ + 68.9742230160653, + 24.263264000108748 + ], + [ + 69.08906569954897, + 24.4579117350372 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 24.4579117350372 + ], + [ + 68.9742230160653, + 24.263264000108748 + ], + [ + 69.20390838303264, + 24.263264000108748 + ], + [ + 69.08906569954897, + 24.4579117350372 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 24.4579117350372 + ], + [ + 69.20390838303264, + 24.263264000108748 + ], + [ + 69.31875106651633, + 24.4579117350372 + ], + [ + 69.08906569954897, + 24.4579117350372 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 24.847207204894108 + ], + [ + 69.31875106651633, + 24.847207204894108 + ], + [ + 69.20390838303264, + 25.04185493982256 + ], + [ + 69.08906569954897, + 24.847207204894108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 24.847207204894108 + ], + [ + 69.20390838303264, + 25.04185493982256 + ], + [ + 68.9742230160653, + 25.04185493982256 + ], + [ + 69.08906569954897, + 24.847207204894108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 24.847207204894108 + ], + [ + 68.9742230160653, + 25.04185493982256 + ], + [ + 68.85938033258161, + 24.847207204894108 + ], + [ + 69.08906569954897, + 24.847207204894108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 24.847207204894108 + ], + [ + 68.85938033258161, + 24.847207204894108 + ], + [ + 68.9742230160653, + 24.652559469965656 + ], + [ + 69.08906569954897, + 24.847207204894108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 24.847207204894108 + ], + [ + 68.9742230160653, + 24.652559469965656 + ], + [ + 69.20390838303264, + 24.652559469965656 + ], + [ + 69.08906569954897, + 24.847207204894108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 24.847207204894108 + ], + [ + 69.20390838303264, + 24.652559469965656 + ], + [ + 69.31875106651633, + 24.847207204894108 + ], + [ + 69.08906569954897, + 24.847207204894108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 25.236502674751016 + ], + [ + 69.31875106651633, + 25.236502674751016 + ], + [ + 69.20390838303264, + 25.431150409679468 + ], + [ + 69.08906569954897, + 25.236502674751016 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 25.236502674751016 + ], + [ + 69.20390838303264, + 25.431150409679468 + ], + [ + 68.9742230160653, + 25.431150409679468 + ], + [ + 69.08906569954897, + 25.236502674751016 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 25.236502674751016 + ], + [ + 68.9742230160653, + 25.431150409679468 + ], + [ + 68.85938033258161, + 25.236502674751016 + ], + [ + 69.08906569954897, + 25.236502674751016 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 25.236502674751016 + ], + [ + 68.85938033258161, + 25.236502674751016 + ], + [ + 68.9742230160653, + 25.041854939822564 + ], + [ + 69.08906569954897, + 25.236502674751016 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 25.236502674751016 + ], + [ + 68.9742230160653, + 25.041854939822564 + ], + [ + 69.20390838303264, + 25.041854939822564 + ], + [ + 69.08906569954897, + 25.236502674751016 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 25.236502674751016 + ], + [ + 69.20390838303264, + 25.041854939822564 + ], + [ + 69.31875106651633, + 25.236502674751016 + ], + [ + 69.08906569954897, + 25.236502674751016 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 25.62579814460792 + ], + [ + 69.31875106651633, + 25.62579814460792 + ], + [ + 69.20390838303264, + 25.820445879536372 + ], + [ + 69.08906569954897, + 25.62579814460792 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 25.62579814460792 + ], + [ + 69.20390838303264, + 25.820445879536372 + ], + [ + 68.9742230160653, + 25.820445879536372 + ], + [ + 69.08906569954897, + 25.62579814460792 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 25.62579814460792 + ], + [ + 68.9742230160653, + 25.820445879536372 + ], + [ + 68.85938033258161, + 25.62579814460792 + ], + [ + 69.08906569954897, + 25.62579814460792 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 25.62579814460792 + ], + [ + 68.85938033258161, + 25.62579814460792 + ], + [ + 68.9742230160653, + 25.431150409679468 + ], + [ + 69.08906569954897, + 25.62579814460792 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 25.62579814460792 + ], + [ + 68.9742230160653, + 25.431150409679468 + ], + [ + 69.20390838303264, + 25.431150409679468 + ], + [ + 69.08906569954897, + 25.62579814460792 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 25.62579814460792 + ], + [ + 69.20390838303264, + 25.431150409679468 + ], + [ + 69.31875106651633, + 25.62579814460792 + ], + [ + 69.08906569954897, + 25.62579814460792 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 26.015093614464828 + ], + [ + 69.31875106651633, + 26.015093614464828 + ], + [ + 69.20390838303264, + 26.20974134939328 + ], + [ + 69.08906569954897, + 26.015093614464828 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 26.015093614464828 + ], + [ + 69.20390838303264, + 26.20974134939328 + ], + [ + 68.9742230160653, + 26.20974134939328 + ], + [ + 69.08906569954897, + 26.015093614464828 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 26.015093614464828 + ], + [ + 68.9742230160653, + 26.20974134939328 + ], + [ + 68.85938033258161, + 26.015093614464828 + ], + [ + 69.08906569954897, + 26.015093614464828 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 26.015093614464828 + ], + [ + 68.85938033258161, + 26.015093614464828 + ], + [ + 68.9742230160653, + 25.820445879536376 + ], + [ + 69.08906569954897, + 26.015093614464828 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 26.015093614464828 + ], + [ + 68.9742230160653, + 25.820445879536376 + ], + [ + 69.20390838303264, + 25.820445879536376 + ], + [ + 69.08906569954897, + 26.015093614464828 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 26.015093614464828 + ], + [ + 69.20390838303264, + 25.820445879536376 + ], + [ + 69.31875106651633, + 26.015093614464828 + ], + [ + 69.08906569954897, + 26.015093614464828 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 26.404389084321735 + ], + [ + 69.31875106651633, + 26.404389084321735 + ], + [ + 69.20390838303264, + 26.599036819250188 + ], + [ + 69.08906569954897, + 26.404389084321735 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 26.404389084321735 + ], + [ + 69.20390838303264, + 26.599036819250188 + ], + [ + 68.9742230160653, + 26.599036819250188 + ], + [ + 69.08906569954897, + 26.404389084321735 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 26.404389084321735 + ], + [ + 68.9742230160653, + 26.599036819250188 + ], + [ + 68.85938033258161, + 26.404389084321735 + ], + [ + 69.08906569954897, + 26.404389084321735 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 26.404389084321735 + ], + [ + 68.85938033258161, + 26.404389084321735 + ], + [ + 68.9742230160653, + 26.209741349393283 + ], + [ + 69.08906569954897, + 26.404389084321735 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 26.404389084321735 + ], + [ + 68.9742230160653, + 26.209741349393283 + ], + [ + 69.20390838303264, + 26.209741349393283 + ], + [ + 69.08906569954897, + 26.404389084321735 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 26.404389084321735 + ], + [ + 69.20390838303264, + 26.209741349393283 + ], + [ + 69.31875106651633, + 26.404389084321735 + ], + [ + 69.08906569954897, + 26.404389084321735 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 26.79368455417864 + ], + [ + 69.31875106651633, + 26.79368455417864 + ], + [ + 69.20390838303264, + 26.988332289107092 + ], + [ + 69.08906569954897, + 26.79368455417864 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 26.79368455417864 + ], + [ + 69.20390838303264, + 26.988332289107092 + ], + [ + 68.9742230160653, + 26.988332289107092 + ], + [ + 69.08906569954897, + 26.79368455417864 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 26.79368455417864 + ], + [ + 68.9742230160653, + 26.988332289107092 + ], + [ + 68.85938033258161, + 26.79368455417864 + ], + [ + 69.08906569954897, + 26.79368455417864 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 26.79368455417864 + ], + [ + 68.85938033258161, + 26.79368455417864 + ], + [ + 68.9742230160653, + 26.599036819250188 + ], + [ + 69.08906569954897, + 26.79368455417864 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 26.79368455417864 + ], + [ + 68.9742230160653, + 26.599036819250188 + ], + [ + 69.20390838303264, + 26.599036819250188 + ], + [ + 69.08906569954897, + 26.79368455417864 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 26.79368455417864 + ], + [ + 69.20390838303264, + 26.599036819250188 + ], + [ + 69.31875106651633, + 26.79368455417864 + ], + [ + 69.08906569954897, + 26.79368455417864 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 27.182980024035547 + ], + [ + 69.31875106651633, + 27.182980024035547 + ], + [ + 69.20390838303264, + 27.377627758964 + ], + [ + 69.08906569954897, + 27.182980024035547 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 27.182980024035547 + ], + [ + 69.20390838303264, + 27.377627758964 + ], + [ + 68.9742230160653, + 27.377627758964 + ], + [ + 69.08906569954897, + 27.182980024035547 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 27.182980024035547 + ], + [ + 68.9742230160653, + 27.377627758964 + ], + [ + 68.85938033258161, + 27.182980024035547 + ], + [ + 69.08906569954897, + 27.182980024035547 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 27.182980024035547 + ], + [ + 68.85938033258161, + 27.182980024035547 + ], + [ + 68.9742230160653, + 26.988332289107095 + ], + [ + 69.08906569954897, + 27.182980024035547 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 27.182980024035547 + ], + [ + 68.9742230160653, + 26.988332289107095 + ], + [ + 69.20390838303264, + 26.988332289107095 + ], + [ + 69.08906569954897, + 27.182980024035547 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 27.182980024035547 + ], + [ + 69.20390838303264, + 26.988332289107095 + ], + [ + 69.31875106651633, + 27.182980024035547 + ], + [ + 69.08906569954897, + 27.182980024035547 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 27.572275493892455 + ], + [ + 69.31875106651633, + 27.572275493892455 + ], + [ + 69.20390838303264, + 27.766923228820907 + ], + [ + 69.08906569954897, + 27.572275493892455 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 27.572275493892455 + ], + [ + 69.20390838303264, + 27.766923228820907 + ], + [ + 68.9742230160653, + 27.766923228820907 + ], + [ + 69.08906569954897, + 27.572275493892455 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 27.572275493892455 + ], + [ + 68.9742230160653, + 27.766923228820907 + ], + [ + 68.85938033258161, + 27.572275493892455 + ], + [ + 69.08906569954897, + 27.572275493892455 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 27.572275493892455 + ], + [ + 68.85938033258161, + 27.572275493892455 + ], + [ + 68.9742230160653, + 27.377627758964003 + ], + [ + 69.08906569954897, + 27.572275493892455 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 27.572275493892455 + ], + [ + 68.9742230160653, + 27.377627758964003 + ], + [ + 69.20390838303264, + 27.377627758964003 + ], + [ + 69.08906569954897, + 27.572275493892455 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 27.572275493892455 + ], + [ + 69.20390838303264, + 27.377627758964003 + ], + [ + 69.31875106651633, + 27.572275493892455 + ], + [ + 69.08906569954897, + 27.572275493892455 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 27.96157096374936 + ], + [ + 69.31875106651633, + 27.96157096374936 + ], + [ + 69.20390838303264, + 28.15621869867781 + ], + [ + 69.08906569954897, + 27.96157096374936 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 27.96157096374936 + ], + [ + 69.20390838303264, + 28.15621869867781 + ], + [ + 68.9742230160653, + 28.15621869867781 + ], + [ + 69.08906569954897, + 27.96157096374936 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 27.96157096374936 + ], + [ + 68.9742230160653, + 28.15621869867781 + ], + [ + 68.85938033258161, + 27.96157096374936 + ], + [ + 69.08906569954897, + 27.96157096374936 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 27.96157096374936 + ], + [ + 68.85938033258161, + 27.96157096374936 + ], + [ + 68.9742230160653, + 27.766923228820907 + ], + [ + 69.08906569954897, + 27.96157096374936 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 27.96157096374936 + ], + [ + 68.9742230160653, + 27.766923228820907 + ], + [ + 69.20390838303264, + 27.766923228820907 + ], + [ + 69.08906569954897, + 27.96157096374936 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 27.96157096374936 + ], + [ + 69.20390838303264, + 27.766923228820907 + ], + [ + 69.31875106651633, + 27.96157096374936 + ], + [ + 69.08906569954897, + 27.96157096374936 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 28.350866433606267 + ], + [ + 69.31875106651633, + 28.350866433606267 + ], + [ + 69.20390838303264, + 28.54551416853472 + ], + [ + 69.08906569954897, + 28.350866433606267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 28.350866433606267 + ], + [ + 69.20390838303264, + 28.54551416853472 + ], + [ + 68.9742230160653, + 28.54551416853472 + ], + [ + 69.08906569954897, + 28.350866433606267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 28.350866433606267 + ], + [ + 68.9742230160653, + 28.54551416853472 + ], + [ + 68.85938033258161, + 28.350866433606267 + ], + [ + 69.08906569954897, + 28.350866433606267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 28.350866433606267 + ], + [ + 68.85938033258161, + 28.350866433606267 + ], + [ + 68.9742230160653, + 28.156218698677815 + ], + [ + 69.08906569954897, + 28.350866433606267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 28.350866433606267 + ], + [ + 68.9742230160653, + 28.156218698677815 + ], + [ + 69.20390838303264, + 28.156218698677815 + ], + [ + 69.08906569954897, + 28.350866433606267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 28.350866433606267 + ], + [ + 69.20390838303264, + 28.156218698677815 + ], + [ + 69.31875106651633, + 28.350866433606267 + ], + [ + 69.08906569954897, + 28.350866433606267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 28.74016190346317 + ], + [ + 69.31875106651633, + 28.74016190346317 + ], + [ + 69.20390838303264, + 28.934809638391624 + ], + [ + 69.08906569954897, + 28.74016190346317 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 28.74016190346317 + ], + [ + 69.20390838303264, + 28.934809638391624 + ], + [ + 68.9742230160653, + 28.934809638391624 + ], + [ + 69.08906569954897, + 28.74016190346317 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 28.74016190346317 + ], + [ + 68.9742230160653, + 28.934809638391624 + ], + [ + 68.85938033258161, + 28.74016190346317 + ], + [ + 69.08906569954897, + 28.74016190346317 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 28.74016190346317 + ], + [ + 68.85938033258161, + 28.74016190346317 + ], + [ + 68.9742230160653, + 28.54551416853472 + ], + [ + 69.08906569954897, + 28.74016190346317 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 28.74016190346317 + ], + [ + 68.9742230160653, + 28.54551416853472 + ], + [ + 69.20390838303264, + 28.54551416853472 + ], + [ + 69.08906569954897, + 28.74016190346317 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 28.74016190346317 + ], + [ + 69.20390838303264, + 28.54551416853472 + ], + [ + 69.31875106651633, + 28.74016190346317 + ], + [ + 69.08906569954897, + 28.74016190346317 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 29.12945737332008 + ], + [ + 69.31875106651633, + 29.12945737332008 + ], + [ + 69.20390838303264, + 29.32410510824853 + ], + [ + 69.08906569954897, + 29.12945737332008 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 29.12945737332008 + ], + [ + 69.20390838303264, + 29.32410510824853 + ], + [ + 68.9742230160653, + 29.32410510824853 + ], + [ + 69.08906569954897, + 29.12945737332008 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 29.12945737332008 + ], + [ + 68.9742230160653, + 29.32410510824853 + ], + [ + 68.85938033258161, + 29.12945737332008 + ], + [ + 69.08906569954897, + 29.12945737332008 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 29.12945737332008 + ], + [ + 68.85938033258161, + 29.12945737332008 + ], + [ + 68.9742230160653, + 28.934809638391627 + ], + [ + 69.08906569954897, + 29.12945737332008 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 29.12945737332008 + ], + [ + 68.9742230160653, + 28.934809638391627 + ], + [ + 69.20390838303264, + 28.934809638391627 + ], + [ + 69.08906569954897, + 29.12945737332008 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 29.12945737332008 + ], + [ + 69.20390838303264, + 28.934809638391627 + ], + [ + 69.31875106651633, + 29.12945737332008 + ], + [ + 69.08906569954897, + 29.12945737332008 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 29.518752843176983 + ], + [ + 69.31875106651633, + 29.518752843176983 + ], + [ + 69.20390838303264, + 29.713400578105436 + ], + [ + 69.08906569954897, + 29.518752843176983 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 29.518752843176983 + ], + [ + 69.20390838303264, + 29.713400578105436 + ], + [ + 68.9742230160653, + 29.713400578105436 + ], + [ + 69.08906569954897, + 29.518752843176983 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 29.518752843176983 + ], + [ + 68.9742230160653, + 29.713400578105436 + ], + [ + 68.85938033258161, + 29.518752843176983 + ], + [ + 69.08906569954897, + 29.518752843176983 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 29.518752843176983 + ], + [ + 68.85938033258161, + 29.518752843176983 + ], + [ + 68.9742230160653, + 29.32410510824853 + ], + [ + 69.08906569954897, + 29.518752843176983 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 29.518752843176983 + ], + [ + 68.9742230160653, + 29.32410510824853 + ], + [ + 69.20390838303264, + 29.32410510824853 + ], + [ + 69.08906569954897, + 29.518752843176983 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 29.518752843176983 + ], + [ + 69.20390838303264, + 29.32410510824853 + ], + [ + 69.31875106651633, + 29.518752843176983 + ], + [ + 69.08906569954897, + 29.518752843176983 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 29.90804831303389 + ], + [ + 69.31875106651633, + 29.90804831303389 + ], + [ + 69.20390838303264, + 30.102696047962343 + ], + [ + 69.08906569954897, + 29.90804831303389 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 29.90804831303389 + ], + [ + 69.20390838303264, + 30.102696047962343 + ], + [ + 68.9742230160653, + 30.102696047962343 + ], + [ + 69.08906569954897, + 29.90804831303389 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 29.90804831303389 + ], + [ + 68.9742230160653, + 30.102696047962343 + ], + [ + 68.85938033258161, + 29.90804831303389 + ], + [ + 69.08906569954897, + 29.90804831303389 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 29.90804831303389 + ], + [ + 68.85938033258161, + 29.90804831303389 + ], + [ + 68.9742230160653, + 29.71340057810544 + ], + [ + 69.08906569954897, + 29.90804831303389 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 29.90804831303389 + ], + [ + 68.9742230160653, + 29.71340057810544 + ], + [ + 69.20390838303264, + 29.71340057810544 + ], + [ + 69.08906569954897, + 29.90804831303389 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 29.90804831303389 + ], + [ + 69.20390838303264, + 29.71340057810544 + ], + [ + 69.31875106651633, + 29.90804831303389 + ], + [ + 69.08906569954897, + 29.90804831303389 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 30.297343782890795 + ], + [ + 69.31875106651633, + 30.297343782890795 + ], + [ + 69.20390838303264, + 30.491991517819248 + ], + [ + 69.08906569954897, + 30.297343782890795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 30.297343782890795 + ], + [ + 69.20390838303264, + 30.491991517819248 + ], + [ + 68.9742230160653, + 30.491991517819248 + ], + [ + 69.08906569954897, + 30.297343782890795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 30.297343782890795 + ], + [ + 68.9742230160653, + 30.491991517819248 + ], + [ + 68.85938033258161, + 30.297343782890795 + ], + [ + 69.08906569954897, + 30.297343782890795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 30.297343782890795 + ], + [ + 68.85938033258161, + 30.297343782890795 + ], + [ + 68.9742230160653, + 30.102696047962343 + ], + [ + 69.08906569954897, + 30.297343782890795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 30.297343782890795 + ], + [ + 68.9742230160653, + 30.102696047962343 + ], + [ + 69.20390838303264, + 30.102696047962343 + ], + [ + 69.08906569954897, + 30.297343782890795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 30.297343782890795 + ], + [ + 69.20390838303264, + 30.102696047962343 + ], + [ + 69.31875106651633, + 30.297343782890795 + ], + [ + 69.08906569954897, + 30.297343782890795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 30.686639252747703 + ], + [ + 69.31875106651633, + 30.686639252747703 + ], + [ + 69.20390838303264, + 30.881286987676155 + ], + [ + 69.08906569954897, + 30.686639252747703 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 30.686639252747703 + ], + [ + 69.20390838303264, + 30.881286987676155 + ], + [ + 68.9742230160653, + 30.881286987676155 + ], + [ + 69.08906569954897, + 30.686639252747703 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 30.686639252747703 + ], + [ + 68.9742230160653, + 30.881286987676155 + ], + [ + 68.85938033258161, + 30.686639252747703 + ], + [ + 69.08906569954897, + 30.686639252747703 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 30.686639252747703 + ], + [ + 68.85938033258161, + 30.686639252747703 + ], + [ + 68.9742230160653, + 30.49199151781925 + ], + [ + 69.08906569954897, + 30.686639252747703 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 30.686639252747703 + ], + [ + 68.9742230160653, + 30.49199151781925 + ], + [ + 69.20390838303264, + 30.49199151781925 + ], + [ + 69.08906569954897, + 30.686639252747703 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 30.686639252747703 + ], + [ + 69.20390838303264, + 30.49199151781925 + ], + [ + 69.31875106651633, + 30.686639252747703 + ], + [ + 69.08906569954897, + 30.686639252747703 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 31.07593472260461 + ], + [ + 69.31875106651633, + 31.07593472260461 + ], + [ + 69.20390838303264, + 31.270582457533063 + ], + [ + 69.08906569954897, + 31.07593472260461 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 31.07593472260461 + ], + [ + 69.20390838303264, + 31.270582457533063 + ], + [ + 68.9742230160653, + 31.270582457533063 + ], + [ + 69.08906569954897, + 31.07593472260461 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 31.07593472260461 + ], + [ + 68.9742230160653, + 31.270582457533063 + ], + [ + 68.85938033258161, + 31.07593472260461 + ], + [ + 69.08906569954897, + 31.07593472260461 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 31.07593472260461 + ], + [ + 68.85938033258161, + 31.07593472260461 + ], + [ + 68.9742230160653, + 30.88128698767616 + ], + [ + 69.08906569954897, + 31.07593472260461 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 31.07593472260461 + ], + [ + 68.9742230160653, + 30.88128698767616 + ], + [ + 69.20390838303264, + 30.88128698767616 + ], + [ + 69.08906569954897, + 31.07593472260461 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 31.07593472260461 + ], + [ + 69.20390838303264, + 30.88128698767616 + ], + [ + 69.31875106651633, + 31.07593472260461 + ], + [ + 69.08906569954897, + 31.07593472260461 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 31.465230192461515 + ], + [ + 69.31875106651633, + 31.465230192461515 + ], + [ + 69.20390838303264, + 31.659877927389967 + ], + [ + 69.08906569954897, + 31.465230192461515 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 31.465230192461515 + ], + [ + 69.20390838303264, + 31.659877927389967 + ], + [ + 68.9742230160653, + 31.659877927389967 + ], + [ + 69.08906569954897, + 31.465230192461515 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 31.465230192461515 + ], + [ + 68.9742230160653, + 31.659877927389967 + ], + [ + 68.85938033258161, + 31.465230192461515 + ], + [ + 69.08906569954897, + 31.465230192461515 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 31.465230192461515 + ], + [ + 68.85938033258161, + 31.465230192461515 + ], + [ + 68.9742230160653, + 31.270582457533063 + ], + [ + 69.08906569954897, + 31.465230192461515 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 31.465230192461515 + ], + [ + 68.9742230160653, + 31.270582457533063 + ], + [ + 69.20390838303264, + 31.270582457533063 + ], + [ + 69.08906569954897, + 31.465230192461515 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 31.465230192461515 + ], + [ + 69.20390838303264, + 31.270582457533063 + ], + [ + 69.31875106651633, + 31.465230192461515 + ], + [ + 69.08906569954897, + 31.465230192461515 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 31.854525662318423 + ], + [ + 69.31875106651633, + 31.854525662318423 + ], + [ + 69.20390838303264, + 32.049173397246875 + ], + [ + 69.08906569954897, + 31.854525662318423 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 31.854525662318423 + ], + [ + 69.20390838303264, + 32.049173397246875 + ], + [ + 68.9742230160653, + 32.049173397246875 + ], + [ + 69.08906569954897, + 31.854525662318423 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 31.854525662318423 + ], + [ + 68.9742230160653, + 32.049173397246875 + ], + [ + 68.85938033258161, + 31.854525662318423 + ], + [ + 69.08906569954897, + 31.854525662318423 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 31.854525662318423 + ], + [ + 68.85938033258161, + 31.854525662318423 + ], + [ + 68.9742230160653, + 31.65987792738997 + ], + [ + 69.08906569954897, + 31.854525662318423 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 31.854525662318423 + ], + [ + 68.9742230160653, + 31.65987792738997 + ], + [ + 69.20390838303264, + 31.65987792738997 + ], + [ + 69.08906569954897, + 31.854525662318423 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 31.854525662318423 + ], + [ + 69.20390838303264, + 31.65987792738997 + ], + [ + 69.31875106651633, + 31.854525662318423 + ], + [ + 69.08906569954897, + 31.854525662318423 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 32.24382113217533 + ], + [ + 69.31875106651633, + 32.24382113217533 + ], + [ + 69.20390838303264, + 32.43846886710378 + ], + [ + 69.08906569954897, + 32.24382113217533 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 32.24382113217533 + ], + [ + 69.20390838303264, + 32.43846886710378 + ], + [ + 68.9742230160653, + 32.43846886710378 + ], + [ + 69.08906569954897, + 32.24382113217533 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 32.24382113217533 + ], + [ + 68.9742230160653, + 32.43846886710378 + ], + [ + 68.85938033258161, + 32.24382113217533 + ], + [ + 69.08906569954897, + 32.24382113217533 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 32.24382113217533 + ], + [ + 68.85938033258161, + 32.24382113217533 + ], + [ + 68.9742230160653, + 32.049173397246875 + ], + [ + 69.08906569954897, + 32.24382113217533 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 32.24382113217533 + ], + [ + 68.9742230160653, + 32.049173397246875 + ], + [ + 69.20390838303264, + 32.049173397246875 + ], + [ + 69.08906569954897, + 32.24382113217533 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 32.24382113217533 + ], + [ + 69.20390838303264, + 32.049173397246875 + ], + [ + 69.31875106651633, + 32.24382113217533 + ], + [ + 69.08906569954897, + 32.24382113217533 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 32.63311660203224 + ], + [ + 69.31875106651633, + 32.63311660203224 + ], + [ + 69.20390838303264, + 32.82776433696069 + ], + [ + 69.08906569954897, + 32.63311660203224 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 32.63311660203224 + ], + [ + 69.20390838303264, + 32.82776433696069 + ], + [ + 68.9742230160653, + 32.82776433696069 + ], + [ + 69.08906569954897, + 32.63311660203224 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 32.63311660203224 + ], + [ + 68.9742230160653, + 32.82776433696069 + ], + [ + 68.85938033258161, + 32.63311660203224 + ], + [ + 69.08906569954897, + 32.63311660203224 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 32.63311660203224 + ], + [ + 68.85938033258161, + 32.63311660203224 + ], + [ + 68.9742230160653, + 32.438468867103786 + ], + [ + 69.08906569954897, + 32.63311660203224 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 32.63311660203224 + ], + [ + 68.9742230160653, + 32.438468867103786 + ], + [ + 69.20390838303264, + 32.438468867103786 + ], + [ + 69.08906569954897, + 32.63311660203224 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 32.63311660203224 + ], + [ + 69.20390838303264, + 32.438468867103786 + ], + [ + 69.31875106651633, + 32.63311660203224 + ], + [ + 69.08906569954897, + 32.63311660203224 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 33.02241207188914 + ], + [ + 69.31875106651633, + 33.02241207188914 + ], + [ + 69.20390838303264, + 33.217059806817595 + ], + [ + 69.08906569954897, + 33.02241207188914 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 33.02241207188914 + ], + [ + 69.20390838303264, + 33.217059806817595 + ], + [ + 68.9742230160653, + 33.217059806817595 + ], + [ + 69.08906569954897, + 33.02241207188914 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 33.02241207188914 + ], + [ + 68.9742230160653, + 33.217059806817595 + ], + [ + 68.85938033258161, + 33.02241207188914 + ], + [ + 69.08906569954897, + 33.02241207188914 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 33.02241207188914 + ], + [ + 68.85938033258161, + 33.02241207188914 + ], + [ + 68.9742230160653, + 32.82776433696069 + ], + [ + 69.08906569954897, + 33.02241207188914 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 33.02241207188914 + ], + [ + 68.9742230160653, + 32.82776433696069 + ], + [ + 69.20390838303264, + 32.82776433696069 + ], + [ + 69.08906569954897, + 33.02241207188914 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 33.02241207188914 + ], + [ + 69.20390838303264, + 32.82776433696069 + ], + [ + 69.31875106651633, + 33.02241207188914 + ], + [ + 69.08906569954897, + 33.02241207188914 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 33.41170754174605 + ], + [ + 69.31875106651633, + 33.41170754174605 + ], + [ + 69.20390838303264, + 33.6063552766745 + ], + [ + 69.08906569954897, + 33.41170754174605 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 33.41170754174605 + ], + [ + 69.20390838303264, + 33.6063552766745 + ], + [ + 68.9742230160653, + 33.6063552766745 + ], + [ + 69.08906569954897, + 33.41170754174605 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 33.41170754174605 + ], + [ + 68.9742230160653, + 33.6063552766745 + ], + [ + 68.85938033258161, + 33.41170754174605 + ], + [ + 69.08906569954897, + 33.41170754174605 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 33.41170754174605 + ], + [ + 68.85938033258161, + 33.41170754174605 + ], + [ + 68.9742230160653, + 33.217059806817595 + ], + [ + 69.08906569954897, + 33.41170754174605 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 33.41170754174605 + ], + [ + 68.9742230160653, + 33.217059806817595 + ], + [ + 69.20390838303264, + 33.217059806817595 + ], + [ + 69.08906569954897, + 33.41170754174605 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 33.41170754174605 + ], + [ + 69.20390838303264, + 33.217059806817595 + ], + [ + 69.31875106651633, + 33.41170754174605 + ], + [ + 69.08906569954897, + 33.41170754174605 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 33.80100301160295 + ], + [ + 69.31875106651633, + 33.80100301160295 + ], + [ + 69.20390838303264, + 33.9956507465314 + ], + [ + 69.08906569954897, + 33.80100301160295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 33.80100301160295 + ], + [ + 69.20390838303264, + 33.9956507465314 + ], + [ + 68.9742230160653, + 33.9956507465314 + ], + [ + 69.08906569954897, + 33.80100301160295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 33.80100301160295 + ], + [ + 68.9742230160653, + 33.9956507465314 + ], + [ + 68.85938033258161, + 33.80100301160295 + ], + [ + 69.08906569954897, + 33.80100301160295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 33.80100301160295 + ], + [ + 68.85938033258161, + 33.80100301160295 + ], + [ + 68.9742230160653, + 33.6063552766745 + ], + [ + 69.08906569954897, + 33.80100301160295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 33.80100301160295 + ], + [ + 68.9742230160653, + 33.6063552766745 + ], + [ + 69.20390838303264, + 33.6063552766745 + ], + [ + 69.08906569954897, + 33.80100301160295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 33.80100301160295 + ], + [ + 69.20390838303264, + 33.6063552766745 + ], + [ + 69.31875106651633, + 33.80100301160295 + ], + [ + 69.08906569954897, + 33.80100301160295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 34.190298481459855 + ], + [ + 69.31875106651633, + 34.190298481459855 + ], + [ + 69.20390838303264, + 34.38494621638831 + ], + [ + 69.08906569954897, + 34.190298481459855 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 34.190298481459855 + ], + [ + 69.20390838303264, + 34.38494621638831 + ], + [ + 68.9742230160653, + 34.38494621638831 + ], + [ + 69.08906569954897, + 34.190298481459855 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 34.190298481459855 + ], + [ + 68.9742230160653, + 34.38494621638831 + ], + [ + 68.85938033258161, + 34.190298481459855 + ], + [ + 69.08906569954897, + 34.190298481459855 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 34.190298481459855 + ], + [ + 68.85938033258161, + 34.190298481459855 + ], + [ + 68.9742230160653, + 33.9956507465314 + ], + [ + 69.08906569954897, + 34.190298481459855 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 34.190298481459855 + ], + [ + 68.9742230160653, + 33.9956507465314 + ], + [ + 69.20390838303264, + 33.9956507465314 + ], + [ + 69.08906569954897, + 34.190298481459855 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 34.190298481459855 + ], + [ + 69.20390838303264, + 33.9956507465314 + ], + [ + 69.31875106651633, + 34.190298481459855 + ], + [ + 69.08906569954897, + 34.190298481459855 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 34.57959395131677 + ], + [ + 69.31875106651633, + 34.57959395131677 + ], + [ + 69.20390838303264, + 34.77424168624522 + ], + [ + 69.08906569954897, + 34.57959395131677 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 34.57959395131677 + ], + [ + 69.20390838303264, + 34.77424168624522 + ], + [ + 68.9742230160653, + 34.77424168624522 + ], + [ + 69.08906569954897, + 34.57959395131677 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 34.57959395131677 + ], + [ + 68.9742230160653, + 34.77424168624522 + ], + [ + 68.85938033258161, + 34.57959395131677 + ], + [ + 69.08906569954897, + 34.57959395131677 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 34.57959395131677 + ], + [ + 68.85938033258161, + 34.57959395131677 + ], + [ + 68.9742230160653, + 34.384946216388315 + ], + [ + 69.08906569954897, + 34.57959395131677 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 34.57959395131677 + ], + [ + 68.9742230160653, + 34.384946216388315 + ], + [ + 69.20390838303264, + 34.384946216388315 + ], + [ + 69.08906569954897, + 34.57959395131677 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 34.57959395131677 + ], + [ + 69.20390838303264, + 34.384946216388315 + ], + [ + 69.31875106651633, + 34.57959395131677 + ], + [ + 69.08906569954897, + 34.57959395131677 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 34.96888942117368 + ], + [ + 69.31875106651633, + 34.96888942117368 + ], + [ + 69.20390838303264, + 35.16353715610213 + ], + [ + 69.08906569954897, + 34.96888942117368 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 34.96888942117368 + ], + [ + 69.20390838303264, + 35.16353715610213 + ], + [ + 68.9742230160653, + 35.16353715610213 + ], + [ + 69.08906569954897, + 34.96888942117368 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 34.96888942117368 + ], + [ + 68.9742230160653, + 35.16353715610213 + ], + [ + 68.85938033258161, + 34.96888942117368 + ], + [ + 69.08906569954897, + 34.96888942117368 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 34.96888942117368 + ], + [ + 68.85938033258161, + 34.96888942117368 + ], + [ + 68.9742230160653, + 34.774241686245226 + ], + [ + 69.08906569954897, + 34.96888942117368 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 34.96888942117368 + ], + [ + 68.9742230160653, + 34.774241686245226 + ], + [ + 69.20390838303264, + 34.774241686245226 + ], + [ + 69.08906569954897, + 34.96888942117368 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 34.96888942117368 + ], + [ + 69.20390838303264, + 34.774241686245226 + ], + [ + 69.31875106651633, + 34.96888942117368 + ], + [ + 69.08906569954897, + 34.96888942117368 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 35.35818489103058 + ], + [ + 69.31875106651633, + 35.35818489103058 + ], + [ + 69.20390838303264, + 35.552832625959034 + ], + [ + 69.08906569954897, + 35.35818489103058 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 35.35818489103058 + ], + [ + 69.20390838303264, + 35.552832625959034 + ], + [ + 68.9742230160653, + 35.552832625959034 + ], + [ + 69.08906569954897, + 35.35818489103058 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 35.35818489103058 + ], + [ + 68.9742230160653, + 35.552832625959034 + ], + [ + 68.85938033258161, + 35.35818489103058 + ], + [ + 69.08906569954897, + 35.35818489103058 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 35.35818489103058 + ], + [ + 68.85938033258161, + 35.35818489103058 + ], + [ + 68.9742230160653, + 35.16353715610213 + ], + [ + 69.08906569954897, + 35.35818489103058 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 35.35818489103058 + ], + [ + 68.9742230160653, + 35.16353715610213 + ], + [ + 69.20390838303264, + 35.16353715610213 + ], + [ + 69.08906569954897, + 35.35818489103058 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 35.35818489103058 + ], + [ + 69.20390838303264, + 35.16353715610213 + ], + [ + 69.31875106651633, + 35.35818489103058 + ], + [ + 69.08906569954897, + 35.35818489103058 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 35.74748036088749 + ], + [ + 69.31875106651633, + 35.74748036088749 + ], + [ + 69.20390838303264, + 35.94212809581594 + ], + [ + 69.08906569954897, + 35.74748036088749 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 35.74748036088749 + ], + [ + 69.20390838303264, + 35.94212809581594 + ], + [ + 68.9742230160653, + 35.94212809581594 + ], + [ + 69.08906569954897, + 35.74748036088749 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 35.74748036088749 + ], + [ + 68.9742230160653, + 35.94212809581594 + ], + [ + 68.85938033258161, + 35.74748036088749 + ], + [ + 69.08906569954897, + 35.74748036088749 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 35.74748036088749 + ], + [ + 68.85938033258161, + 35.74748036088749 + ], + [ + 68.9742230160653, + 35.552832625959034 + ], + [ + 69.08906569954897, + 35.74748036088749 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 35.74748036088749 + ], + [ + 68.9742230160653, + 35.552832625959034 + ], + [ + 69.20390838303264, + 35.552832625959034 + ], + [ + 69.08906569954897, + 35.74748036088749 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 35.74748036088749 + ], + [ + 69.20390838303264, + 35.552832625959034 + ], + [ + 69.31875106651633, + 35.74748036088749 + ], + [ + 69.08906569954897, + 35.74748036088749 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 36.13677583074439 + ], + [ + 69.31875106651633, + 36.13677583074439 + ], + [ + 69.20390838303264, + 36.33142356567284 + ], + [ + 69.08906569954897, + 36.13677583074439 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 36.13677583074439 + ], + [ + 69.20390838303264, + 36.33142356567284 + ], + [ + 68.9742230160653, + 36.33142356567284 + ], + [ + 69.08906569954897, + 36.13677583074439 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 36.13677583074439 + ], + [ + 68.9742230160653, + 36.33142356567284 + ], + [ + 68.85938033258161, + 36.13677583074439 + ], + [ + 69.08906569954897, + 36.13677583074439 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 36.13677583074439 + ], + [ + 68.85938033258161, + 36.13677583074439 + ], + [ + 68.9742230160653, + 35.94212809581594 + ], + [ + 69.08906569954897, + 36.13677583074439 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 36.13677583074439 + ], + [ + 68.9742230160653, + 35.94212809581594 + ], + [ + 69.20390838303264, + 35.94212809581594 + ], + [ + 69.08906569954897, + 36.13677583074439 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 36.13677583074439 + ], + [ + 69.20390838303264, + 35.94212809581594 + ], + [ + 69.31875106651633, + 36.13677583074439 + ], + [ + 69.08906569954897, + 36.13677583074439 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 36.526071300601295 + ], + [ + 69.31875106651633, + 36.526071300601295 + ], + [ + 69.20390838303264, + 36.72071903552975 + ], + [ + 69.08906569954897, + 36.526071300601295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 36.526071300601295 + ], + [ + 69.20390838303264, + 36.72071903552975 + ], + [ + 68.9742230160653, + 36.72071903552975 + ], + [ + 69.08906569954897, + 36.526071300601295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 36.526071300601295 + ], + [ + 68.9742230160653, + 36.72071903552975 + ], + [ + 68.85938033258161, + 36.526071300601295 + ], + [ + 69.08906569954897, + 36.526071300601295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 36.526071300601295 + ], + [ + 68.85938033258161, + 36.526071300601295 + ], + [ + 68.9742230160653, + 36.33142356567284 + ], + [ + 69.08906569954897, + 36.526071300601295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 36.526071300601295 + ], + [ + 68.9742230160653, + 36.33142356567284 + ], + [ + 69.20390838303264, + 36.33142356567284 + ], + [ + 69.08906569954897, + 36.526071300601295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 36.526071300601295 + ], + [ + 69.20390838303264, + 36.33142356567284 + ], + [ + 69.31875106651633, + 36.526071300601295 + ], + [ + 69.08906569954897, + 36.526071300601295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 36.915366770458206 + ], + [ + 69.31875106651633, + 36.915366770458206 + ], + [ + 69.20390838303264, + 37.11001450538666 + ], + [ + 69.08906569954897, + 36.915366770458206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 36.915366770458206 + ], + [ + 69.20390838303264, + 37.11001450538666 + ], + [ + 68.9742230160653, + 37.11001450538666 + ], + [ + 69.08906569954897, + 36.915366770458206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 36.915366770458206 + ], + [ + 68.9742230160653, + 37.11001450538666 + ], + [ + 68.85938033258161, + 36.915366770458206 + ], + [ + 69.08906569954897, + 36.915366770458206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 36.915366770458206 + ], + [ + 68.85938033258161, + 36.915366770458206 + ], + [ + 68.9742230160653, + 36.720719035529754 + ], + [ + 69.08906569954897, + 36.915366770458206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 36.915366770458206 + ], + [ + 68.9742230160653, + 36.720719035529754 + ], + [ + 69.20390838303264, + 36.720719035529754 + ], + [ + 69.08906569954897, + 36.915366770458206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 36.915366770458206 + ], + [ + 69.20390838303264, + 36.720719035529754 + ], + [ + 69.31875106651633, + 36.915366770458206 + ], + [ + 69.08906569954897, + 36.915366770458206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 37.30466224031511 + ], + [ + 69.31875106651633, + 37.30466224031511 + ], + [ + 69.20390838303264, + 37.49930997524356 + ], + [ + 69.08906569954897, + 37.30466224031511 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 37.30466224031511 + ], + [ + 69.20390838303264, + 37.49930997524356 + ], + [ + 68.9742230160653, + 37.49930997524356 + ], + [ + 69.08906569954897, + 37.30466224031511 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 37.30466224031511 + ], + [ + 68.9742230160653, + 37.49930997524356 + ], + [ + 68.85938033258161, + 37.30466224031511 + ], + [ + 69.08906569954897, + 37.30466224031511 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 37.30466224031511 + ], + [ + 68.85938033258161, + 37.30466224031511 + ], + [ + 68.9742230160653, + 37.11001450538666 + ], + [ + 69.08906569954897, + 37.30466224031511 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 37.30466224031511 + ], + [ + 68.9742230160653, + 37.11001450538666 + ], + [ + 69.20390838303264, + 37.11001450538666 + ], + [ + 69.08906569954897, + 37.30466224031511 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 37.30466224031511 + ], + [ + 69.20390838303264, + 37.11001450538666 + ], + [ + 69.31875106651633, + 37.30466224031511 + ], + [ + 69.08906569954897, + 37.30466224031511 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 37.69395771017202 + ], + [ + 69.31875106651633, + 37.69395771017202 + ], + [ + 69.20390838303264, + 37.888605445100474 + ], + [ + 69.08906569954897, + 37.69395771017202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 37.69395771017202 + ], + [ + 69.20390838303264, + 37.888605445100474 + ], + [ + 68.9742230160653, + 37.888605445100474 + ], + [ + 69.08906569954897, + 37.69395771017202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 37.69395771017202 + ], + [ + 68.9742230160653, + 37.888605445100474 + ], + [ + 68.85938033258161, + 37.69395771017202 + ], + [ + 69.08906569954897, + 37.69395771017202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 37.69395771017202 + ], + [ + 68.85938033258161, + 37.69395771017202 + ], + [ + 68.9742230160653, + 37.49930997524357 + ], + [ + 69.08906569954897, + 37.69395771017202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 37.69395771017202 + ], + [ + 68.9742230160653, + 37.49930997524357 + ], + [ + 69.20390838303264, + 37.49930997524357 + ], + [ + 69.08906569954897, + 37.69395771017202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 37.69395771017202 + ], + [ + 69.20390838303264, + 37.49930997524357 + ], + [ + 69.31875106651633, + 37.69395771017202 + ], + [ + 69.08906569954897, + 37.69395771017202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 38.083253180028926 + ], + [ + 69.31875106651633, + 38.083253180028926 + ], + [ + 69.20390838303264, + 38.27790091495738 + ], + [ + 69.08906569954897, + 38.083253180028926 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 38.083253180028926 + ], + [ + 69.20390838303264, + 38.27790091495738 + ], + [ + 68.9742230160653, + 38.27790091495738 + ], + [ + 69.08906569954897, + 38.083253180028926 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 38.083253180028926 + ], + [ + 68.9742230160653, + 38.27790091495738 + ], + [ + 68.85938033258161, + 38.083253180028926 + ], + [ + 69.08906569954897, + 38.083253180028926 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 38.083253180028926 + ], + [ + 68.85938033258161, + 38.083253180028926 + ], + [ + 68.9742230160653, + 37.888605445100474 + ], + [ + 69.08906569954897, + 38.083253180028926 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 38.083253180028926 + ], + [ + 68.9742230160653, + 37.888605445100474 + ], + [ + 69.20390838303264, + 37.888605445100474 + ], + [ + 69.08906569954897, + 38.083253180028926 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 38.083253180028926 + ], + [ + 69.20390838303264, + 37.888605445100474 + ], + [ + 69.31875106651633, + 38.083253180028926 + ], + [ + 69.08906569954897, + 38.083253180028926 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 38.47254864988583 + ], + [ + 69.31875106651633, + 38.47254864988583 + ], + [ + 69.20390838303264, + 38.66719638481428 + ], + [ + 69.08906569954897, + 38.47254864988583 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 38.47254864988583 + ], + [ + 69.20390838303264, + 38.66719638481428 + ], + [ + 68.9742230160653, + 38.66719638481428 + ], + [ + 69.08906569954897, + 38.47254864988583 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 38.47254864988583 + ], + [ + 68.9742230160653, + 38.66719638481428 + ], + [ + 68.85938033258161, + 38.47254864988583 + ], + [ + 69.08906569954897, + 38.47254864988583 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 38.47254864988583 + ], + [ + 68.85938033258161, + 38.47254864988583 + ], + [ + 68.9742230160653, + 38.27790091495738 + ], + [ + 69.08906569954897, + 38.47254864988583 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 38.47254864988583 + ], + [ + 68.9742230160653, + 38.27790091495738 + ], + [ + 69.20390838303264, + 38.27790091495738 + ], + [ + 69.08906569954897, + 38.47254864988583 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 38.47254864988583 + ], + [ + 69.20390838303264, + 38.27790091495738 + ], + [ + 69.31875106651633, + 38.47254864988583 + ], + [ + 69.08906569954897, + 38.47254864988583 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 38.861844119742734 + ], + [ + 69.31875106651633, + 38.861844119742734 + ], + [ + 69.20390838303264, + 39.05649185467119 + ], + [ + 69.08906569954897, + 38.861844119742734 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 38.861844119742734 + ], + [ + 69.20390838303264, + 39.05649185467119 + ], + [ + 68.9742230160653, + 39.05649185467119 + ], + [ + 69.08906569954897, + 38.861844119742734 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 38.861844119742734 + ], + [ + 68.9742230160653, + 39.05649185467119 + ], + [ + 68.85938033258161, + 38.861844119742734 + ], + [ + 69.08906569954897, + 38.861844119742734 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 38.861844119742734 + ], + [ + 68.85938033258161, + 38.861844119742734 + ], + [ + 68.9742230160653, + 38.66719638481428 + ], + [ + 69.08906569954897, + 38.861844119742734 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 38.861844119742734 + ], + [ + 68.9742230160653, + 38.66719638481428 + ], + [ + 69.20390838303264, + 38.66719638481428 + ], + [ + 69.08906569954897, + 38.861844119742734 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 38.861844119742734 + ], + [ + 69.20390838303264, + 38.66719638481428 + ], + [ + 69.31875106651633, + 38.861844119742734 + ], + [ + 69.08906569954897, + 38.861844119742734 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 39.25113958959964 + ], + [ + 69.31875106651633, + 39.25113958959964 + ], + [ + 69.20390838303264, + 39.44578732452809 + ], + [ + 69.08906569954897, + 39.25113958959964 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 39.25113958959964 + ], + [ + 69.20390838303264, + 39.44578732452809 + ], + [ + 68.9742230160653, + 39.44578732452809 + ], + [ + 69.08906569954897, + 39.25113958959964 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 39.25113958959964 + ], + [ + 68.9742230160653, + 39.44578732452809 + ], + [ + 68.85938033258161, + 39.25113958959964 + ], + [ + 69.08906569954897, + 39.25113958959964 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 39.25113958959964 + ], + [ + 68.85938033258161, + 39.25113958959964 + ], + [ + 68.9742230160653, + 39.05649185467119 + ], + [ + 69.08906569954897, + 39.25113958959964 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 39.25113958959964 + ], + [ + 68.9742230160653, + 39.05649185467119 + ], + [ + 69.20390838303264, + 39.05649185467119 + ], + [ + 69.08906569954897, + 39.25113958959964 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 39.25113958959964 + ], + [ + 69.20390838303264, + 39.05649185467119 + ], + [ + 69.31875106651633, + 39.25113958959964 + ], + [ + 69.08906569954897, + 39.25113958959964 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 39.64043505945655 + ], + [ + 69.31875106651633, + 39.64043505945655 + ], + [ + 69.20390838303264, + 39.835082794385 + ], + [ + 69.08906569954897, + 39.64043505945655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 39.64043505945655 + ], + [ + 69.20390838303264, + 39.835082794385 + ], + [ + 68.9742230160653, + 39.835082794385 + ], + [ + 69.08906569954897, + 39.64043505945655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 39.64043505945655 + ], + [ + 68.9742230160653, + 39.835082794385 + ], + [ + 68.85938033258161, + 39.64043505945655 + ], + [ + 69.08906569954897, + 39.64043505945655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 39.64043505945655 + ], + [ + 68.85938033258161, + 39.64043505945655 + ], + [ + 68.9742230160653, + 39.4457873245281 + ], + [ + 69.08906569954897, + 39.64043505945655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 39.64043505945655 + ], + [ + 68.9742230160653, + 39.4457873245281 + ], + [ + 69.20390838303264, + 39.4457873245281 + ], + [ + 69.08906569954897, + 39.64043505945655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 39.64043505945655 + ], + [ + 69.20390838303264, + 39.4457873245281 + ], + [ + 69.31875106651633, + 39.64043505945655 + ], + [ + 69.08906569954897, + 39.64043505945655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 40.029730529313454 + ], + [ + 69.31875106651633, + 40.029730529313454 + ], + [ + 69.20390838303264, + 40.224378264241906 + ], + [ + 69.08906569954897, + 40.029730529313454 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 40.029730529313454 + ], + [ + 69.20390838303264, + 40.224378264241906 + ], + [ + 68.9742230160653, + 40.224378264241906 + ], + [ + 69.08906569954897, + 40.029730529313454 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 40.029730529313454 + ], + [ + 68.9742230160653, + 40.224378264241906 + ], + [ + 68.85938033258161, + 40.029730529313454 + ], + [ + 69.08906569954897, + 40.029730529313454 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 40.029730529313454 + ], + [ + 68.85938033258161, + 40.029730529313454 + ], + [ + 68.9742230160653, + 39.835082794385 + ], + [ + 69.08906569954897, + 40.029730529313454 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 40.029730529313454 + ], + [ + 68.9742230160653, + 39.835082794385 + ], + [ + 69.20390838303264, + 39.835082794385 + ], + [ + 69.08906569954897, + 40.029730529313454 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 40.029730529313454 + ], + [ + 69.20390838303264, + 39.835082794385 + ], + [ + 69.31875106651633, + 40.029730529313454 + ], + [ + 69.08906569954897, + 40.029730529313454 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 40.419025999170366 + ], + [ + 69.31875106651633, + 40.419025999170366 + ], + [ + 69.20390838303264, + 40.61367373409882 + ], + [ + 69.08906569954897, + 40.419025999170366 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 40.419025999170366 + ], + [ + 69.20390838303264, + 40.61367373409882 + ], + [ + 68.9742230160653, + 40.61367373409882 + ], + [ + 69.08906569954897, + 40.419025999170366 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 40.419025999170366 + ], + [ + 68.9742230160653, + 40.61367373409882 + ], + [ + 68.85938033258161, + 40.419025999170366 + ], + [ + 69.08906569954897, + 40.419025999170366 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 40.419025999170366 + ], + [ + 68.85938033258161, + 40.419025999170366 + ], + [ + 68.9742230160653, + 40.22437826424191 + ], + [ + 69.08906569954897, + 40.419025999170366 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 40.419025999170366 + ], + [ + 68.9742230160653, + 40.22437826424191 + ], + [ + 69.20390838303264, + 40.22437826424191 + ], + [ + 69.08906569954897, + 40.419025999170366 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 40.419025999170366 + ], + [ + 69.20390838303264, + 40.22437826424191 + ], + [ + 69.31875106651633, + 40.419025999170366 + ], + [ + 69.08906569954897, + 40.419025999170366 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 40.80832146902727 + ], + [ + 69.31875106651633, + 40.80832146902727 + ], + [ + 69.20390838303264, + 41.00296920395572 + ], + [ + 69.08906569954897, + 40.80832146902727 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 40.80832146902727 + ], + [ + 69.20390838303264, + 41.00296920395572 + ], + [ + 68.9742230160653, + 41.00296920395572 + ], + [ + 69.08906569954897, + 40.80832146902727 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 40.80832146902727 + ], + [ + 68.9742230160653, + 41.00296920395572 + ], + [ + 68.85938033258161, + 40.80832146902727 + ], + [ + 69.08906569954897, + 40.80832146902727 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 40.80832146902727 + ], + [ + 68.85938033258161, + 40.80832146902727 + ], + [ + 68.9742230160653, + 40.61367373409882 + ], + [ + 69.08906569954897, + 40.80832146902727 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 40.80832146902727 + ], + [ + 68.9742230160653, + 40.61367373409882 + ], + [ + 69.20390838303264, + 40.61367373409882 + ], + [ + 69.08906569954897, + 40.80832146902727 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 40.80832146902727 + ], + [ + 69.20390838303264, + 40.61367373409882 + ], + [ + 69.31875106651633, + 40.80832146902727 + ], + [ + 69.08906569954897, + 40.80832146902727 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 41.197616938884174 + ], + [ + 69.31875106651633, + 41.197616938884174 + ], + [ + 69.20390838303264, + 41.392264673812626 + ], + [ + 69.08906569954897, + 41.197616938884174 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 41.197616938884174 + ], + [ + 69.20390838303264, + 41.392264673812626 + ], + [ + 68.9742230160653, + 41.392264673812626 + ], + [ + 69.08906569954897, + 41.197616938884174 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 41.197616938884174 + ], + [ + 68.9742230160653, + 41.392264673812626 + ], + [ + 68.85938033258161, + 41.197616938884174 + ], + [ + 69.08906569954897, + 41.197616938884174 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 41.197616938884174 + ], + [ + 68.85938033258161, + 41.197616938884174 + ], + [ + 68.9742230160653, + 41.00296920395572 + ], + [ + 69.08906569954897, + 41.197616938884174 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 41.197616938884174 + ], + [ + 68.9742230160653, + 41.00296920395572 + ], + [ + 69.20390838303264, + 41.00296920395572 + ], + [ + 69.08906569954897, + 41.197616938884174 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 41.197616938884174 + ], + [ + 69.20390838303264, + 41.00296920395572 + ], + [ + 69.31875106651633, + 41.197616938884174 + ], + [ + 69.08906569954897, + 41.197616938884174 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 41.58691240874108 + ], + [ + 69.31875106651633, + 41.58691240874108 + ], + [ + 69.20390838303264, + 41.78156014366953 + ], + [ + 69.08906569954897, + 41.58691240874108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 41.58691240874108 + ], + [ + 69.20390838303264, + 41.78156014366953 + ], + [ + 68.9742230160653, + 41.78156014366953 + ], + [ + 69.08906569954897, + 41.58691240874108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 41.58691240874108 + ], + [ + 68.9742230160653, + 41.78156014366953 + ], + [ + 68.85938033258161, + 41.58691240874108 + ], + [ + 69.08906569954897, + 41.58691240874108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 41.58691240874108 + ], + [ + 68.85938033258161, + 41.58691240874108 + ], + [ + 68.9742230160653, + 41.392264673812626 + ], + [ + 69.08906569954897, + 41.58691240874108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 41.58691240874108 + ], + [ + 68.9742230160653, + 41.392264673812626 + ], + [ + 69.20390838303264, + 41.392264673812626 + ], + [ + 69.08906569954897, + 41.58691240874108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 41.58691240874108 + ], + [ + 69.20390838303264, + 41.392264673812626 + ], + [ + 69.31875106651633, + 41.58691240874108 + ], + [ + 69.08906569954897, + 41.58691240874108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 41.97620787859798 + ], + [ + 69.31875106651633, + 41.97620787859798 + ], + [ + 69.20390838303264, + 42.170855613526435 + ], + [ + 69.08906569954897, + 41.97620787859798 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 41.97620787859798 + ], + [ + 69.20390838303264, + 42.170855613526435 + ], + [ + 68.9742230160653, + 42.170855613526435 + ], + [ + 69.08906569954897, + 41.97620787859798 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 41.97620787859798 + ], + [ + 68.9742230160653, + 42.170855613526435 + ], + [ + 68.85938033258161, + 41.97620787859798 + ], + [ + 69.08906569954897, + 41.97620787859798 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 41.97620787859798 + ], + [ + 68.85938033258161, + 41.97620787859798 + ], + [ + 68.9742230160653, + 41.78156014366953 + ], + [ + 69.08906569954897, + 41.97620787859798 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 41.97620787859798 + ], + [ + 68.9742230160653, + 41.78156014366953 + ], + [ + 69.20390838303264, + 41.78156014366953 + ], + [ + 69.08906569954897, + 41.97620787859798 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 41.97620787859798 + ], + [ + 69.20390838303264, + 41.78156014366953 + ], + [ + 69.31875106651633, + 41.97620787859798 + ], + [ + 69.08906569954897, + 41.97620787859798 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 42.365503348454894 + ], + [ + 69.31875106651633, + 42.365503348454894 + ], + [ + 69.20390838303264, + 42.560151083383346 + ], + [ + 69.08906569954897, + 42.365503348454894 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 42.365503348454894 + ], + [ + 69.20390838303264, + 42.560151083383346 + ], + [ + 68.9742230160653, + 42.560151083383346 + ], + [ + 69.08906569954897, + 42.365503348454894 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 42.365503348454894 + ], + [ + 68.9742230160653, + 42.560151083383346 + ], + [ + 68.85938033258161, + 42.365503348454894 + ], + [ + 69.08906569954897, + 42.365503348454894 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 42.365503348454894 + ], + [ + 68.85938033258161, + 42.365503348454894 + ], + [ + 68.9742230160653, + 42.17085561352644 + ], + [ + 69.08906569954897, + 42.365503348454894 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 42.365503348454894 + ], + [ + 68.9742230160653, + 42.17085561352644 + ], + [ + 69.20390838303264, + 42.17085561352644 + ], + [ + 69.08906569954897, + 42.365503348454894 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 42.365503348454894 + ], + [ + 69.20390838303264, + 42.17085561352644 + ], + [ + 69.31875106651633, + 42.365503348454894 + ], + [ + 69.08906569954897, + 42.365503348454894 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 42.754798818311805 + ], + [ + 69.31875106651633, + 42.754798818311805 + ], + [ + 69.20390838303264, + 42.94944655324026 + ], + [ + 69.08906569954897, + 42.754798818311805 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 42.754798818311805 + ], + [ + 69.20390838303264, + 42.94944655324026 + ], + [ + 68.9742230160653, + 42.94944655324026 + ], + [ + 69.08906569954897, + 42.754798818311805 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 42.754798818311805 + ], + [ + 68.9742230160653, + 42.94944655324026 + ], + [ + 68.85938033258161, + 42.754798818311805 + ], + [ + 69.08906569954897, + 42.754798818311805 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 42.754798818311805 + ], + [ + 68.85938033258161, + 42.754798818311805 + ], + [ + 68.9742230160653, + 42.56015108338335 + ], + [ + 69.08906569954897, + 42.754798818311805 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 42.754798818311805 + ], + [ + 68.9742230160653, + 42.56015108338335 + ], + [ + 69.20390838303264, + 42.56015108338335 + ], + [ + 69.08906569954897, + 42.754798818311805 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 42.754798818311805 + ], + [ + 69.20390838303264, + 42.56015108338335 + ], + [ + 69.31875106651633, + 42.754798818311805 + ], + [ + 69.08906569954897, + 42.754798818311805 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 43.14409428816871 + ], + [ + 69.31875106651633, + 43.14409428816871 + ], + [ + 69.20390838303264, + 43.33874202309716 + ], + [ + 69.08906569954897, + 43.14409428816871 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 43.14409428816871 + ], + [ + 69.20390838303264, + 43.33874202309716 + ], + [ + 68.9742230160653, + 43.33874202309716 + ], + [ + 69.08906569954897, + 43.14409428816871 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 43.14409428816871 + ], + [ + 68.9742230160653, + 43.33874202309716 + ], + [ + 68.85938033258161, + 43.14409428816871 + ], + [ + 69.08906569954897, + 43.14409428816871 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 43.14409428816871 + ], + [ + 68.85938033258161, + 43.14409428816871 + ], + [ + 68.9742230160653, + 42.94944655324026 + ], + [ + 69.08906569954897, + 43.14409428816871 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 43.14409428816871 + ], + [ + 68.9742230160653, + 42.94944655324026 + ], + [ + 69.20390838303264, + 42.94944655324026 + ], + [ + 69.08906569954897, + 43.14409428816871 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 43.14409428816871 + ], + [ + 69.20390838303264, + 42.94944655324026 + ], + [ + 69.31875106651633, + 43.14409428816871 + ], + [ + 69.08906569954897, + 43.14409428816871 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 43.53338975802561 + ], + [ + 69.31875106651633, + 43.53338975802561 + ], + [ + 69.20390838303264, + 43.728037492954066 + ], + [ + 69.08906569954897, + 43.53338975802561 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 43.53338975802561 + ], + [ + 69.20390838303264, + 43.728037492954066 + ], + [ + 68.9742230160653, + 43.728037492954066 + ], + [ + 69.08906569954897, + 43.53338975802561 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 43.53338975802561 + ], + [ + 68.9742230160653, + 43.728037492954066 + ], + [ + 68.85938033258161, + 43.53338975802561 + ], + [ + 69.08906569954897, + 43.53338975802561 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 43.53338975802561 + ], + [ + 68.85938033258161, + 43.53338975802561 + ], + [ + 68.9742230160653, + 43.33874202309716 + ], + [ + 69.08906569954897, + 43.53338975802561 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 43.53338975802561 + ], + [ + 68.9742230160653, + 43.33874202309716 + ], + [ + 69.20390838303264, + 43.33874202309716 + ], + [ + 69.08906569954897, + 43.53338975802561 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 43.53338975802561 + ], + [ + 69.20390838303264, + 43.33874202309716 + ], + [ + 69.31875106651633, + 43.53338975802561 + ], + [ + 69.08906569954897, + 43.53338975802561 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 43.92268522788252 + ], + [ + 69.31875106651633, + 43.92268522788252 + ], + [ + 69.20390838303264, + 44.11733296281097 + ], + [ + 69.08906569954897, + 43.92268522788252 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 43.92268522788252 + ], + [ + 69.20390838303264, + 44.11733296281097 + ], + [ + 68.9742230160653, + 44.11733296281097 + ], + [ + 69.08906569954897, + 43.92268522788252 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 43.92268522788252 + ], + [ + 68.9742230160653, + 44.11733296281097 + ], + [ + 68.85938033258161, + 43.92268522788252 + ], + [ + 69.08906569954897, + 43.92268522788252 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 43.92268522788252 + ], + [ + 68.85938033258161, + 43.92268522788252 + ], + [ + 68.9742230160653, + 43.728037492954066 + ], + [ + 69.08906569954897, + 43.92268522788252 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 43.92268522788252 + ], + [ + 68.9742230160653, + 43.728037492954066 + ], + [ + 69.20390838303264, + 43.728037492954066 + ], + [ + 69.08906569954897, + 43.92268522788252 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 43.92268522788252 + ], + [ + 69.20390838303264, + 43.728037492954066 + ], + [ + 69.31875106651633, + 43.92268522788252 + ], + [ + 69.08906569954897, + 43.92268522788252 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 44.31198069773942 + ], + [ + 69.31875106651633, + 44.31198069773942 + ], + [ + 69.20390838303264, + 44.506628432667874 + ], + [ + 69.08906569954897, + 44.31198069773942 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 44.31198069773942 + ], + [ + 69.20390838303264, + 44.506628432667874 + ], + [ + 68.9742230160653, + 44.506628432667874 + ], + [ + 69.08906569954897, + 44.31198069773942 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 44.31198069773942 + ], + [ + 68.9742230160653, + 44.506628432667874 + ], + [ + 68.85938033258161, + 44.31198069773942 + ], + [ + 69.08906569954897, + 44.31198069773942 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 44.31198069773942 + ], + [ + 68.85938033258161, + 44.31198069773942 + ], + [ + 68.9742230160653, + 44.11733296281097 + ], + [ + 69.08906569954897, + 44.31198069773942 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 44.31198069773942 + ], + [ + 68.9742230160653, + 44.11733296281097 + ], + [ + 69.20390838303264, + 44.11733296281097 + ], + [ + 69.08906569954897, + 44.31198069773942 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 44.31198069773942 + ], + [ + 69.20390838303264, + 44.11733296281097 + ], + [ + 69.31875106651633, + 44.31198069773942 + ], + [ + 69.08906569954897, + 44.31198069773942 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 44.701276167596326 + ], + [ + 69.31875106651633, + 44.701276167596326 + ], + [ + 69.20390838303264, + 44.89592390252478 + ], + [ + 69.08906569954897, + 44.701276167596326 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 44.701276167596326 + ], + [ + 69.20390838303264, + 44.89592390252478 + ], + [ + 68.9742230160653, + 44.89592390252478 + ], + [ + 69.08906569954897, + 44.701276167596326 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 44.701276167596326 + ], + [ + 68.9742230160653, + 44.89592390252478 + ], + [ + 68.85938033258161, + 44.701276167596326 + ], + [ + 69.08906569954897, + 44.701276167596326 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 44.701276167596326 + ], + [ + 68.85938033258161, + 44.701276167596326 + ], + [ + 68.9742230160653, + 44.506628432667874 + ], + [ + 69.08906569954897, + 44.701276167596326 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 44.701276167596326 + ], + [ + 68.9742230160653, + 44.506628432667874 + ], + [ + 69.20390838303264, + 44.506628432667874 + ], + [ + 69.08906569954897, + 44.701276167596326 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 44.701276167596326 + ], + [ + 69.20390838303264, + 44.506628432667874 + ], + [ + 69.31875106651633, + 44.701276167596326 + ], + [ + 69.08906569954897, + 44.701276167596326 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 45.090571637453245 + ], + [ + 69.31875106651633, + 45.090571637453245 + ], + [ + 69.20390838303264, + 45.2852193723817 + ], + [ + 69.08906569954897, + 45.090571637453245 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 45.090571637453245 + ], + [ + 69.20390838303264, + 45.2852193723817 + ], + [ + 68.9742230160653, + 45.2852193723817 + ], + [ + 69.08906569954897, + 45.090571637453245 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 45.090571637453245 + ], + [ + 68.9742230160653, + 45.2852193723817 + ], + [ + 68.85938033258161, + 45.090571637453245 + ], + [ + 69.08906569954897, + 45.090571637453245 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 45.090571637453245 + ], + [ + 68.85938033258161, + 45.090571637453245 + ], + [ + 68.9742230160653, + 44.89592390252479 + ], + [ + 69.08906569954897, + 45.090571637453245 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 45.090571637453245 + ], + [ + 68.9742230160653, + 44.89592390252479 + ], + [ + 69.20390838303264, + 44.89592390252479 + ], + [ + 69.08906569954897, + 45.090571637453245 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 45.090571637453245 + ], + [ + 69.20390838303264, + 44.89592390252479 + ], + [ + 69.31875106651633, + 45.090571637453245 + ], + [ + 69.08906569954897, + 45.090571637453245 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 45.47986710731015 + ], + [ + 69.31875106651633, + 45.47986710731015 + ], + [ + 69.20390838303264, + 45.6745148422386 + ], + [ + 69.08906569954897, + 45.47986710731015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 45.47986710731015 + ], + [ + 69.20390838303264, + 45.6745148422386 + ], + [ + 68.9742230160653, + 45.6745148422386 + ], + [ + 69.08906569954897, + 45.47986710731015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 45.47986710731015 + ], + [ + 68.9742230160653, + 45.6745148422386 + ], + [ + 68.85938033258161, + 45.47986710731015 + ], + [ + 69.08906569954897, + 45.47986710731015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 45.47986710731015 + ], + [ + 68.85938033258161, + 45.47986710731015 + ], + [ + 68.9742230160653, + 45.2852193723817 + ], + [ + 69.08906569954897, + 45.47986710731015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 45.47986710731015 + ], + [ + 68.9742230160653, + 45.2852193723817 + ], + [ + 69.20390838303264, + 45.2852193723817 + ], + [ + 69.08906569954897, + 45.47986710731015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 45.47986710731015 + ], + [ + 69.20390838303264, + 45.2852193723817 + ], + [ + 69.31875106651633, + 45.47986710731015 + ], + [ + 69.08906569954897, + 45.47986710731015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 45.86916257716705 + ], + [ + 69.31875106651633, + 45.86916257716705 + ], + [ + 69.20390838303264, + 46.063810312095505 + ], + [ + 69.08906569954897, + 45.86916257716705 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 45.86916257716705 + ], + [ + 69.20390838303264, + 46.063810312095505 + ], + [ + 68.9742230160653, + 46.063810312095505 + ], + [ + 69.08906569954897, + 45.86916257716705 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 45.86916257716705 + ], + [ + 68.9742230160653, + 46.063810312095505 + ], + [ + 68.85938033258161, + 45.86916257716705 + ], + [ + 69.08906569954897, + 45.86916257716705 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 45.86916257716705 + ], + [ + 68.85938033258161, + 45.86916257716705 + ], + [ + 68.9742230160653, + 45.6745148422386 + ], + [ + 69.08906569954897, + 45.86916257716705 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 45.86916257716705 + ], + [ + 68.9742230160653, + 45.6745148422386 + ], + [ + 69.20390838303264, + 45.6745148422386 + ], + [ + 69.08906569954897, + 45.86916257716705 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 45.86916257716705 + ], + [ + 69.20390838303264, + 45.6745148422386 + ], + [ + 69.31875106651633, + 45.86916257716705 + ], + [ + 69.08906569954897, + 45.86916257716705 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 46.25845804702396 + ], + [ + 69.31875106651633, + 46.25845804702396 + ], + [ + 69.20390838303264, + 46.45310578195241 + ], + [ + 69.08906569954897, + 46.25845804702396 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 46.25845804702396 + ], + [ + 69.20390838303264, + 46.45310578195241 + ], + [ + 68.9742230160653, + 46.45310578195241 + ], + [ + 69.08906569954897, + 46.25845804702396 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 46.25845804702396 + ], + [ + 68.9742230160653, + 46.45310578195241 + ], + [ + 68.85938033258161, + 46.25845804702396 + ], + [ + 69.08906569954897, + 46.25845804702396 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 46.25845804702396 + ], + [ + 68.85938033258161, + 46.25845804702396 + ], + [ + 68.9742230160653, + 46.063810312095505 + ], + [ + 69.08906569954897, + 46.25845804702396 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 46.25845804702396 + ], + [ + 68.9742230160653, + 46.063810312095505 + ], + [ + 69.20390838303264, + 46.063810312095505 + ], + [ + 69.08906569954897, + 46.25845804702396 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 46.25845804702396 + ], + [ + 69.20390838303264, + 46.063810312095505 + ], + [ + 69.31875106651633, + 46.25845804702396 + ], + [ + 69.08906569954897, + 46.25845804702396 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 46.64775351688086 + ], + [ + 69.31875106651633, + 46.64775351688086 + ], + [ + 69.20390838303264, + 46.842401251809314 + ], + [ + 69.08906569954897, + 46.64775351688086 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 46.64775351688086 + ], + [ + 69.20390838303264, + 46.842401251809314 + ], + [ + 68.9742230160653, + 46.842401251809314 + ], + [ + 69.08906569954897, + 46.64775351688086 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 46.64775351688086 + ], + [ + 68.9742230160653, + 46.842401251809314 + ], + [ + 68.85938033258161, + 46.64775351688086 + ], + [ + 69.08906569954897, + 46.64775351688086 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 46.64775351688086 + ], + [ + 68.85938033258161, + 46.64775351688086 + ], + [ + 68.9742230160653, + 46.45310578195241 + ], + [ + 69.08906569954897, + 46.64775351688086 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 46.64775351688086 + ], + [ + 68.9742230160653, + 46.45310578195241 + ], + [ + 69.20390838303264, + 46.45310578195241 + ], + [ + 69.08906569954897, + 46.64775351688086 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 46.64775351688086 + ], + [ + 69.20390838303264, + 46.45310578195241 + ], + [ + 69.31875106651633, + 46.64775351688086 + ], + [ + 69.08906569954897, + 46.64775351688086 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 47.037048986737766 + ], + [ + 69.31875106651633, + 47.037048986737766 + ], + [ + 69.20390838303264, + 47.23169672166622 + ], + [ + 69.08906569954897, + 47.037048986737766 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 47.037048986737766 + ], + [ + 69.20390838303264, + 47.23169672166622 + ], + [ + 68.9742230160653, + 47.23169672166622 + ], + [ + 69.08906569954897, + 47.037048986737766 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 47.037048986737766 + ], + [ + 68.9742230160653, + 47.23169672166622 + ], + [ + 68.85938033258161, + 47.037048986737766 + ], + [ + 69.08906569954897, + 47.037048986737766 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 47.037048986737766 + ], + [ + 68.85938033258161, + 47.037048986737766 + ], + [ + 68.9742230160653, + 46.842401251809314 + ], + [ + 69.08906569954897, + 47.037048986737766 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 47.037048986737766 + ], + [ + 68.9742230160653, + 46.842401251809314 + ], + [ + 69.20390838303264, + 46.842401251809314 + ], + [ + 69.08906569954897, + 47.037048986737766 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 47.037048986737766 + ], + [ + 69.20390838303264, + 46.842401251809314 + ], + [ + 69.31875106651633, + 47.037048986737766 + ], + [ + 69.08906569954897, + 47.037048986737766 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 47.42634445659467 + ], + [ + 69.31875106651633, + 47.42634445659467 + ], + [ + 69.20390838303264, + 47.62099219152312 + ], + [ + 69.08906569954897, + 47.42634445659467 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 47.42634445659467 + ], + [ + 69.20390838303264, + 47.62099219152312 + ], + [ + 68.9742230160653, + 47.62099219152312 + ], + [ + 69.08906569954897, + 47.42634445659467 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 47.42634445659467 + ], + [ + 68.9742230160653, + 47.62099219152312 + ], + [ + 68.85938033258161, + 47.42634445659467 + ], + [ + 69.08906569954897, + 47.42634445659467 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 47.42634445659467 + ], + [ + 68.85938033258161, + 47.42634445659467 + ], + [ + 68.9742230160653, + 47.23169672166622 + ], + [ + 69.08906569954897, + 47.42634445659467 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 47.42634445659467 + ], + [ + 68.9742230160653, + 47.23169672166622 + ], + [ + 69.20390838303264, + 47.23169672166622 + ], + [ + 69.08906569954897, + 47.42634445659467 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 47.42634445659467 + ], + [ + 69.20390838303264, + 47.23169672166622 + ], + [ + 69.31875106651633, + 47.42634445659467 + ], + [ + 69.08906569954897, + 47.42634445659467 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 47.81563992645159 + ], + [ + 69.31875106651633, + 47.81563992645159 + ], + [ + 69.20390838303264, + 48.01028766138004 + ], + [ + 69.08906569954897, + 47.81563992645159 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 47.81563992645159 + ], + [ + 69.20390838303264, + 48.01028766138004 + ], + [ + 68.9742230160653, + 48.01028766138004 + ], + [ + 69.08906569954897, + 47.81563992645159 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 47.81563992645159 + ], + [ + 68.9742230160653, + 48.01028766138004 + ], + [ + 68.85938033258161, + 47.81563992645159 + ], + [ + 69.08906569954897, + 47.81563992645159 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 47.81563992645159 + ], + [ + 68.85938033258161, + 47.81563992645159 + ], + [ + 68.9742230160653, + 47.620992191523136 + ], + [ + 69.08906569954897, + 47.81563992645159 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 47.81563992645159 + ], + [ + 68.9742230160653, + 47.620992191523136 + ], + [ + 69.20390838303264, + 47.620992191523136 + ], + [ + 69.08906569954897, + 47.81563992645159 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.08906569954897, + 47.81563992645159 + ], + [ + 69.20390838303264, + 47.620992191523136 + ], + [ + 69.31875106651633, + 47.81563992645159 + ], + [ + 69.08906569954897, + 47.81563992645159 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 11.805808964687746 + ], + [ + 69.66327911696736, + 11.805808964687746 + ], + [ + 69.54843643348367, + 12.0004566996162 + ], + [ + 69.43359375, + 11.805808964687746 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 11.805808964687746 + ], + [ + 69.54843643348367, + 12.0004566996162 + ], + [ + 69.31875106651633, + 12.0004566996162 + ], + [ + 69.43359375, + 11.805808964687746 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 11.805808964687746 + ], + [ + 69.31875106651633, + 12.0004566996162 + ], + [ + 69.20390838303264, + 11.805808964687746 + ], + [ + 69.43359375, + 11.805808964687746 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 11.805808964687746 + ], + [ + 69.20390838303264, + 11.805808964687746 + ], + [ + 69.31875106651633, + 11.611161229759292 + ], + [ + 69.43359375, + 11.805808964687746 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 11.805808964687746 + ], + [ + 69.31875106651633, + 11.611161229759292 + ], + [ + 69.54843643348367, + 11.611161229759292 + ], + [ + 69.43359375, + 11.805808964687746 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 11.805808964687746 + ], + [ + 69.54843643348367, + 11.611161229759292 + ], + [ + 69.66327911696736, + 11.805808964687746 + ], + [ + 69.43359375, + 11.805808964687746 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 12.195104434544652 + ], + [ + 69.66327911696736, + 12.195104434544652 + ], + [ + 69.54843643348367, + 12.389752169473105 + ], + [ + 69.43359375, + 12.195104434544652 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 12.195104434544652 + ], + [ + 69.54843643348367, + 12.389752169473105 + ], + [ + 69.31875106651633, + 12.389752169473105 + ], + [ + 69.43359375, + 12.195104434544652 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 12.195104434544652 + ], + [ + 69.31875106651633, + 12.389752169473105 + ], + [ + 69.20390838303264, + 12.195104434544652 + ], + [ + 69.43359375, + 12.195104434544652 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 12.195104434544652 + ], + [ + 69.20390838303264, + 12.195104434544652 + ], + [ + 69.31875106651633, + 12.000456699616198 + ], + [ + 69.43359375, + 12.195104434544652 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 12.195104434544652 + ], + [ + 69.31875106651633, + 12.000456699616198 + ], + [ + 69.54843643348367, + 12.000456699616198 + ], + [ + 69.43359375, + 12.195104434544652 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 12.195104434544652 + ], + [ + 69.54843643348367, + 12.000456699616198 + ], + [ + 69.66327911696736, + 12.195104434544652 + ], + [ + 69.43359375, + 12.195104434544652 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 12.58439990440156 + ], + [ + 69.66327911696736, + 12.58439990440156 + ], + [ + 69.54843643348367, + 12.779047639330013 + ], + [ + 69.43359375, + 12.58439990440156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 12.58439990440156 + ], + [ + 69.54843643348367, + 12.779047639330013 + ], + [ + 69.31875106651633, + 12.779047639330013 + ], + [ + 69.43359375, + 12.58439990440156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 12.58439990440156 + ], + [ + 69.31875106651633, + 12.779047639330013 + ], + [ + 69.20390838303264, + 12.58439990440156 + ], + [ + 69.43359375, + 12.58439990440156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 12.58439990440156 + ], + [ + 69.20390838303264, + 12.58439990440156 + ], + [ + 69.31875106651633, + 12.389752169473105 + ], + [ + 69.43359375, + 12.58439990440156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 12.58439990440156 + ], + [ + 69.31875106651633, + 12.389752169473105 + ], + [ + 69.54843643348367, + 12.389752169473105 + ], + [ + 69.43359375, + 12.58439990440156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 12.58439990440156 + ], + [ + 69.54843643348367, + 12.389752169473105 + ], + [ + 69.66327911696736, + 12.58439990440156 + ], + [ + 69.43359375, + 12.58439990440156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 12.973695374258465 + ], + [ + 69.66327911696736, + 12.973695374258465 + ], + [ + 69.54843643348367, + 13.16834310918692 + ], + [ + 69.43359375, + 12.973695374258465 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 12.973695374258465 + ], + [ + 69.54843643348367, + 13.16834310918692 + ], + [ + 69.31875106651633, + 13.16834310918692 + ], + [ + 69.43359375, + 12.973695374258465 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 12.973695374258465 + ], + [ + 69.31875106651633, + 13.16834310918692 + ], + [ + 69.20390838303264, + 12.973695374258465 + ], + [ + 69.43359375, + 12.973695374258465 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 12.973695374258465 + ], + [ + 69.20390838303264, + 12.973695374258465 + ], + [ + 69.31875106651633, + 12.779047639330011 + ], + [ + 69.43359375, + 12.973695374258465 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 12.973695374258465 + ], + [ + 69.31875106651633, + 12.779047639330011 + ], + [ + 69.54843643348367, + 12.779047639330011 + ], + [ + 69.43359375, + 12.973695374258465 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 12.973695374258465 + ], + [ + 69.54843643348367, + 12.779047639330011 + ], + [ + 69.66327911696736, + 12.973695374258465 + ], + [ + 69.43359375, + 12.973695374258465 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 13.362990844115371 + ], + [ + 69.66327911696736, + 13.362990844115371 + ], + [ + 69.54843643348367, + 13.557638579043825 + ], + [ + 69.43359375, + 13.362990844115371 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 13.362990844115371 + ], + [ + 69.54843643348367, + 13.557638579043825 + ], + [ + 69.31875106651633, + 13.557638579043825 + ], + [ + 69.43359375, + 13.362990844115371 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 13.362990844115371 + ], + [ + 69.31875106651633, + 13.557638579043825 + ], + [ + 69.20390838303264, + 13.362990844115371 + ], + [ + 69.43359375, + 13.362990844115371 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 13.362990844115371 + ], + [ + 69.20390838303264, + 13.362990844115371 + ], + [ + 69.31875106651633, + 13.168343109186917 + ], + [ + 69.43359375, + 13.362990844115371 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 13.362990844115371 + ], + [ + 69.31875106651633, + 13.168343109186917 + ], + [ + 69.54843643348367, + 13.168343109186917 + ], + [ + 69.43359375, + 13.362990844115371 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 13.362990844115371 + ], + [ + 69.54843643348367, + 13.168343109186917 + ], + [ + 69.66327911696736, + 13.362990844115371 + ], + [ + 69.43359375, + 13.362990844115371 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 13.752286313972277 + ], + [ + 69.66327911696736, + 13.752286313972277 + ], + [ + 69.54843643348367, + 13.946934048900731 + ], + [ + 69.43359375, + 13.752286313972277 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 13.752286313972277 + ], + [ + 69.54843643348367, + 13.946934048900731 + ], + [ + 69.31875106651633, + 13.946934048900731 + ], + [ + 69.43359375, + 13.752286313972277 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 13.752286313972277 + ], + [ + 69.31875106651633, + 13.946934048900731 + ], + [ + 69.20390838303264, + 13.752286313972277 + ], + [ + 69.43359375, + 13.752286313972277 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 13.752286313972277 + ], + [ + 69.20390838303264, + 13.752286313972277 + ], + [ + 69.31875106651633, + 13.557638579043823 + ], + [ + 69.43359375, + 13.752286313972277 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 13.752286313972277 + ], + [ + 69.31875106651633, + 13.557638579043823 + ], + [ + 69.54843643348367, + 13.557638579043823 + ], + [ + 69.43359375, + 13.752286313972277 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 13.752286313972277 + ], + [ + 69.54843643348367, + 13.557638579043823 + ], + [ + 69.66327911696736, + 13.752286313972277 + ], + [ + 69.43359375, + 13.752286313972277 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 14.141581783829183 + ], + [ + 69.66327911696736, + 14.141581783829183 + ], + [ + 69.54843643348367, + 14.336229518757637 + ], + [ + 69.43359375, + 14.141581783829183 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 14.141581783829183 + ], + [ + 69.54843643348367, + 14.336229518757637 + ], + [ + 69.31875106651633, + 14.336229518757637 + ], + [ + 69.43359375, + 14.141581783829183 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 14.141581783829183 + ], + [ + 69.31875106651633, + 14.336229518757637 + ], + [ + 69.20390838303264, + 14.141581783829183 + ], + [ + 69.43359375, + 14.141581783829183 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 14.141581783829183 + ], + [ + 69.20390838303264, + 14.141581783829183 + ], + [ + 69.31875106651633, + 13.94693404890073 + ], + [ + 69.43359375, + 14.141581783829183 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 14.141581783829183 + ], + [ + 69.31875106651633, + 13.94693404890073 + ], + [ + 69.54843643348367, + 13.94693404890073 + ], + [ + 69.43359375, + 14.141581783829183 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 14.141581783829183 + ], + [ + 69.54843643348367, + 13.94693404890073 + ], + [ + 69.66327911696736, + 14.141581783829183 + ], + [ + 69.43359375, + 14.141581783829183 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 14.530877253686091 + ], + [ + 69.66327911696736, + 14.530877253686091 + ], + [ + 69.54843643348367, + 14.725524988614545 + ], + [ + 69.43359375, + 14.530877253686091 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 14.530877253686091 + ], + [ + 69.54843643348367, + 14.725524988614545 + ], + [ + 69.31875106651633, + 14.725524988614545 + ], + [ + 69.43359375, + 14.530877253686091 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 14.530877253686091 + ], + [ + 69.31875106651633, + 14.725524988614545 + ], + [ + 69.20390838303264, + 14.530877253686091 + ], + [ + 69.43359375, + 14.530877253686091 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 14.530877253686091 + ], + [ + 69.20390838303264, + 14.530877253686091 + ], + [ + 69.31875106651633, + 14.336229518757637 + ], + [ + 69.43359375, + 14.530877253686091 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 14.530877253686091 + ], + [ + 69.31875106651633, + 14.336229518757637 + ], + [ + 69.54843643348367, + 14.336229518757637 + ], + [ + 69.43359375, + 14.530877253686091 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 14.530877253686091 + ], + [ + 69.54843643348367, + 14.336229518757637 + ], + [ + 69.66327911696736, + 14.530877253686091 + ], + [ + 69.43359375, + 14.530877253686091 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 14.920172723542997 + ], + [ + 69.66327911696736, + 14.920172723542997 + ], + [ + 69.54843643348367, + 15.114820458471451 + ], + [ + 69.43359375, + 14.920172723542997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 14.920172723542997 + ], + [ + 69.54843643348367, + 15.114820458471451 + ], + [ + 69.31875106651633, + 15.114820458471451 + ], + [ + 69.43359375, + 14.920172723542997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 14.920172723542997 + ], + [ + 69.31875106651633, + 15.114820458471451 + ], + [ + 69.20390838303264, + 14.920172723542997 + ], + [ + 69.43359375, + 14.920172723542997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 14.920172723542997 + ], + [ + 69.20390838303264, + 14.920172723542997 + ], + [ + 69.31875106651633, + 14.725524988614543 + ], + [ + 69.43359375, + 14.920172723542997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 14.920172723542997 + ], + [ + 69.31875106651633, + 14.725524988614543 + ], + [ + 69.54843643348367, + 14.725524988614543 + ], + [ + 69.43359375, + 14.920172723542997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 14.920172723542997 + ], + [ + 69.54843643348367, + 14.725524988614543 + ], + [ + 69.66327911696736, + 14.920172723542997 + ], + [ + 69.43359375, + 14.920172723542997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 15.309468193399903 + ], + [ + 69.66327911696736, + 15.309468193399903 + ], + [ + 69.54843643348367, + 15.504115928328357 + ], + [ + 69.43359375, + 15.309468193399903 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 15.309468193399903 + ], + [ + 69.54843643348367, + 15.504115928328357 + ], + [ + 69.31875106651633, + 15.504115928328357 + ], + [ + 69.43359375, + 15.309468193399903 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 15.309468193399903 + ], + [ + 69.31875106651633, + 15.504115928328357 + ], + [ + 69.20390838303264, + 15.309468193399903 + ], + [ + 69.43359375, + 15.309468193399903 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 15.309468193399903 + ], + [ + 69.20390838303264, + 15.309468193399903 + ], + [ + 69.31875106651633, + 15.11482045847145 + ], + [ + 69.43359375, + 15.309468193399903 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 15.309468193399903 + ], + [ + 69.31875106651633, + 15.11482045847145 + ], + [ + 69.54843643348367, + 15.11482045847145 + ], + [ + 69.43359375, + 15.309468193399903 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 15.309468193399903 + ], + [ + 69.54843643348367, + 15.11482045847145 + ], + [ + 69.66327911696736, + 15.309468193399903 + ], + [ + 69.43359375, + 15.309468193399903 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 15.69876366325681 + ], + [ + 69.66327911696736, + 15.69876366325681 + ], + [ + 69.54843643348367, + 15.893411398185265 + ], + [ + 69.43359375, + 15.69876366325681 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 15.69876366325681 + ], + [ + 69.54843643348367, + 15.893411398185265 + ], + [ + 69.31875106651633, + 15.893411398185265 + ], + [ + 69.43359375, + 15.69876366325681 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 15.69876366325681 + ], + [ + 69.31875106651633, + 15.893411398185265 + ], + [ + 69.20390838303264, + 15.69876366325681 + ], + [ + 69.43359375, + 15.69876366325681 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 15.69876366325681 + ], + [ + 69.20390838303264, + 15.69876366325681 + ], + [ + 69.31875106651633, + 15.504115928328357 + ], + [ + 69.43359375, + 15.69876366325681 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 15.69876366325681 + ], + [ + 69.31875106651633, + 15.504115928328357 + ], + [ + 69.54843643348367, + 15.504115928328357 + ], + [ + 69.43359375, + 15.69876366325681 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 15.69876366325681 + ], + [ + 69.54843643348367, + 15.504115928328357 + ], + [ + 69.66327911696736, + 15.69876366325681 + ], + [ + 69.43359375, + 15.69876366325681 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 16.088059133113717 + ], + [ + 69.66327911696736, + 16.088059133113717 + ], + [ + 69.54843643348367, + 16.28270686804217 + ], + [ + 69.43359375, + 16.088059133113717 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 16.088059133113717 + ], + [ + 69.54843643348367, + 16.28270686804217 + ], + [ + 69.31875106651633, + 16.28270686804217 + ], + [ + 69.43359375, + 16.088059133113717 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 16.088059133113717 + ], + [ + 69.31875106651633, + 16.28270686804217 + ], + [ + 69.20390838303264, + 16.088059133113717 + ], + [ + 69.43359375, + 16.088059133113717 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 16.088059133113717 + ], + [ + 69.20390838303264, + 16.088059133113717 + ], + [ + 69.31875106651633, + 15.893411398185263 + ], + [ + 69.43359375, + 16.088059133113717 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 16.088059133113717 + ], + [ + 69.31875106651633, + 15.893411398185263 + ], + [ + 69.54843643348367, + 15.893411398185263 + ], + [ + 69.43359375, + 16.088059133113717 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 16.088059133113717 + ], + [ + 69.54843643348367, + 15.893411398185263 + ], + [ + 69.66327911696736, + 16.088059133113717 + ], + [ + 69.43359375, + 16.088059133113717 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 16.477354602970625 + ], + [ + 69.66327911696736, + 16.477354602970625 + ], + [ + 69.54843643348367, + 16.672002337899077 + ], + [ + 69.43359375, + 16.477354602970625 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 16.477354602970625 + ], + [ + 69.54843643348367, + 16.672002337899077 + ], + [ + 69.31875106651633, + 16.672002337899077 + ], + [ + 69.43359375, + 16.477354602970625 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 16.477354602970625 + ], + [ + 69.31875106651633, + 16.672002337899077 + ], + [ + 69.20390838303264, + 16.477354602970625 + ], + [ + 69.43359375, + 16.477354602970625 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 16.477354602970625 + ], + [ + 69.20390838303264, + 16.477354602970625 + ], + [ + 69.31875106651633, + 16.282706868042172 + ], + [ + 69.43359375, + 16.477354602970625 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 16.477354602970625 + ], + [ + 69.31875106651633, + 16.282706868042172 + ], + [ + 69.54843643348367, + 16.282706868042172 + ], + [ + 69.43359375, + 16.477354602970625 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 16.477354602970625 + ], + [ + 69.54843643348367, + 16.282706868042172 + ], + [ + 69.66327911696736, + 16.477354602970625 + ], + [ + 69.43359375, + 16.477354602970625 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 16.86665007282753 + ], + [ + 69.66327911696736, + 16.86665007282753 + ], + [ + 69.54843643348367, + 17.06129780775598 + ], + [ + 69.43359375, + 16.86665007282753 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 16.86665007282753 + ], + [ + 69.54843643348367, + 17.06129780775598 + ], + [ + 69.31875106651633, + 17.06129780775598 + ], + [ + 69.43359375, + 16.86665007282753 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 16.86665007282753 + ], + [ + 69.31875106651633, + 17.06129780775598 + ], + [ + 69.20390838303264, + 16.86665007282753 + ], + [ + 69.43359375, + 16.86665007282753 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 16.86665007282753 + ], + [ + 69.20390838303264, + 16.86665007282753 + ], + [ + 69.31875106651633, + 16.672002337899077 + ], + [ + 69.43359375, + 16.86665007282753 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 16.86665007282753 + ], + [ + 69.31875106651633, + 16.672002337899077 + ], + [ + 69.54843643348367, + 16.672002337899077 + ], + [ + 69.43359375, + 16.86665007282753 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 16.86665007282753 + ], + [ + 69.54843643348367, + 16.672002337899077 + ], + [ + 69.66327911696736, + 16.86665007282753 + ], + [ + 69.43359375, + 16.86665007282753 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 17.255945542684437 + ], + [ + 69.66327911696736, + 17.255945542684437 + ], + [ + 69.54843643348367, + 17.45059327761289 + ], + [ + 69.43359375, + 17.255945542684437 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 17.255945542684437 + ], + [ + 69.54843643348367, + 17.45059327761289 + ], + [ + 69.31875106651633, + 17.45059327761289 + ], + [ + 69.43359375, + 17.255945542684437 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 17.255945542684437 + ], + [ + 69.31875106651633, + 17.45059327761289 + ], + [ + 69.20390838303264, + 17.255945542684437 + ], + [ + 69.43359375, + 17.255945542684437 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 17.255945542684437 + ], + [ + 69.20390838303264, + 17.255945542684437 + ], + [ + 69.31875106651633, + 17.061297807755984 + ], + [ + 69.43359375, + 17.255945542684437 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 17.255945542684437 + ], + [ + 69.31875106651633, + 17.061297807755984 + ], + [ + 69.54843643348367, + 17.061297807755984 + ], + [ + 69.43359375, + 17.255945542684437 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 17.255945542684437 + ], + [ + 69.54843643348367, + 17.061297807755984 + ], + [ + 69.66327911696736, + 17.255945542684437 + ], + [ + 69.43359375, + 17.255945542684437 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 17.64524101254134 + ], + [ + 69.66327911696736, + 17.64524101254134 + ], + [ + 69.54843643348367, + 17.839888747469793 + ], + [ + 69.43359375, + 17.64524101254134 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 17.64524101254134 + ], + [ + 69.54843643348367, + 17.839888747469793 + ], + [ + 69.31875106651633, + 17.839888747469793 + ], + [ + 69.43359375, + 17.64524101254134 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 17.64524101254134 + ], + [ + 69.31875106651633, + 17.839888747469793 + ], + [ + 69.20390838303264, + 17.64524101254134 + ], + [ + 69.43359375, + 17.64524101254134 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 17.64524101254134 + ], + [ + 69.20390838303264, + 17.64524101254134 + ], + [ + 69.31875106651633, + 17.45059327761289 + ], + [ + 69.43359375, + 17.64524101254134 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 17.64524101254134 + ], + [ + 69.31875106651633, + 17.45059327761289 + ], + [ + 69.54843643348367, + 17.45059327761289 + ], + [ + 69.43359375, + 17.64524101254134 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 17.64524101254134 + ], + [ + 69.54843643348367, + 17.45059327761289 + ], + [ + 69.66327911696736, + 17.64524101254134 + ], + [ + 69.43359375, + 17.64524101254134 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 18.03453648239825 + ], + [ + 69.66327911696736, + 18.03453648239825 + ], + [ + 69.54843643348367, + 18.2291842173267 + ], + [ + 69.43359375, + 18.03453648239825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 18.03453648239825 + ], + [ + 69.54843643348367, + 18.2291842173267 + ], + [ + 69.31875106651633, + 18.2291842173267 + ], + [ + 69.43359375, + 18.03453648239825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 18.03453648239825 + ], + [ + 69.31875106651633, + 18.2291842173267 + ], + [ + 69.20390838303264, + 18.03453648239825 + ], + [ + 69.43359375, + 18.03453648239825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 18.03453648239825 + ], + [ + 69.20390838303264, + 18.03453648239825 + ], + [ + 69.31875106651633, + 17.839888747469796 + ], + [ + 69.43359375, + 18.03453648239825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 18.03453648239825 + ], + [ + 69.31875106651633, + 17.839888747469796 + ], + [ + 69.54843643348367, + 17.839888747469796 + ], + [ + 69.43359375, + 18.03453648239825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 18.03453648239825 + ], + [ + 69.54843643348367, + 17.839888747469796 + ], + [ + 69.66327911696736, + 18.03453648239825 + ], + [ + 69.43359375, + 18.03453648239825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 18.423831952255156 + ], + [ + 69.66327911696736, + 18.423831952255156 + ], + [ + 69.54843643348367, + 18.61847968718361 + ], + [ + 69.43359375, + 18.423831952255156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 18.423831952255156 + ], + [ + 69.54843643348367, + 18.61847968718361 + ], + [ + 69.31875106651633, + 18.61847968718361 + ], + [ + 69.43359375, + 18.423831952255156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 18.423831952255156 + ], + [ + 69.31875106651633, + 18.61847968718361 + ], + [ + 69.20390838303264, + 18.423831952255156 + ], + [ + 69.43359375, + 18.423831952255156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 18.423831952255156 + ], + [ + 69.20390838303264, + 18.423831952255156 + ], + [ + 69.31875106651633, + 18.229184217326704 + ], + [ + 69.43359375, + 18.423831952255156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 18.423831952255156 + ], + [ + 69.31875106651633, + 18.229184217326704 + ], + [ + 69.54843643348367, + 18.229184217326704 + ], + [ + 69.43359375, + 18.423831952255156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 18.423831952255156 + ], + [ + 69.54843643348367, + 18.229184217326704 + ], + [ + 69.66327911696736, + 18.423831952255156 + ], + [ + 69.43359375, + 18.423831952255156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 18.81312742211206 + ], + [ + 69.66327911696736, + 18.81312742211206 + ], + [ + 69.54843643348367, + 19.007775157040513 + ], + [ + 69.43359375, + 18.81312742211206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 18.81312742211206 + ], + [ + 69.54843643348367, + 19.007775157040513 + ], + [ + 69.31875106651633, + 19.007775157040513 + ], + [ + 69.43359375, + 18.81312742211206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 18.81312742211206 + ], + [ + 69.31875106651633, + 19.007775157040513 + ], + [ + 69.20390838303264, + 18.81312742211206 + ], + [ + 69.43359375, + 18.81312742211206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 18.81312742211206 + ], + [ + 69.20390838303264, + 18.81312742211206 + ], + [ + 69.31875106651633, + 18.61847968718361 + ], + [ + 69.43359375, + 18.81312742211206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 18.81312742211206 + ], + [ + 69.31875106651633, + 18.61847968718361 + ], + [ + 69.54843643348367, + 18.61847968718361 + ], + [ + 69.43359375, + 18.81312742211206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 18.81312742211206 + ], + [ + 69.54843643348367, + 18.61847968718361 + ], + [ + 69.66327911696736, + 18.81312742211206 + ], + [ + 69.43359375, + 18.81312742211206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 19.20242289196897 + ], + [ + 69.66327911696736, + 19.20242289196897 + ], + [ + 69.54843643348367, + 19.39707062689742 + ], + [ + 69.43359375, + 19.20242289196897 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 19.20242289196897 + ], + [ + 69.54843643348367, + 19.39707062689742 + ], + [ + 69.31875106651633, + 19.39707062689742 + ], + [ + 69.43359375, + 19.20242289196897 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 19.20242289196897 + ], + [ + 69.31875106651633, + 19.39707062689742 + ], + [ + 69.20390838303264, + 19.20242289196897 + ], + [ + 69.43359375, + 19.20242289196897 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 19.20242289196897 + ], + [ + 69.20390838303264, + 19.20242289196897 + ], + [ + 69.31875106651633, + 19.007775157040516 + ], + [ + 69.43359375, + 19.20242289196897 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 19.20242289196897 + ], + [ + 69.31875106651633, + 19.007775157040516 + ], + [ + 69.54843643348367, + 19.007775157040516 + ], + [ + 69.43359375, + 19.20242289196897 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 19.20242289196897 + ], + [ + 69.54843643348367, + 19.007775157040516 + ], + [ + 69.66327911696736, + 19.20242289196897 + ], + [ + 69.43359375, + 19.20242289196897 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 19.591718361825876 + ], + [ + 69.66327911696736, + 19.591718361825876 + ], + [ + 69.54843643348367, + 19.78636609675433 + ], + [ + 69.43359375, + 19.591718361825876 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 19.591718361825876 + ], + [ + 69.54843643348367, + 19.78636609675433 + ], + [ + 69.31875106651633, + 19.78636609675433 + ], + [ + 69.43359375, + 19.591718361825876 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 19.591718361825876 + ], + [ + 69.31875106651633, + 19.78636609675433 + ], + [ + 69.20390838303264, + 19.591718361825876 + ], + [ + 69.43359375, + 19.591718361825876 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 19.591718361825876 + ], + [ + 69.20390838303264, + 19.591718361825876 + ], + [ + 69.31875106651633, + 19.397070626897424 + ], + [ + 69.43359375, + 19.591718361825876 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 19.591718361825876 + ], + [ + 69.31875106651633, + 19.397070626897424 + ], + [ + 69.54843643348367, + 19.397070626897424 + ], + [ + 69.43359375, + 19.591718361825876 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 19.591718361825876 + ], + [ + 69.54843643348367, + 19.397070626897424 + ], + [ + 69.66327911696736, + 19.591718361825876 + ], + [ + 69.43359375, + 19.591718361825876 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 19.98101383168278 + ], + [ + 69.66327911696736, + 19.98101383168278 + ], + [ + 69.54843643348367, + 20.175661566611232 + ], + [ + 69.43359375, + 19.98101383168278 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 19.98101383168278 + ], + [ + 69.54843643348367, + 20.175661566611232 + ], + [ + 69.31875106651633, + 20.175661566611232 + ], + [ + 69.43359375, + 19.98101383168278 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 19.98101383168278 + ], + [ + 69.31875106651633, + 20.175661566611232 + ], + [ + 69.20390838303264, + 19.98101383168278 + ], + [ + 69.43359375, + 19.98101383168278 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 19.98101383168278 + ], + [ + 69.20390838303264, + 19.98101383168278 + ], + [ + 69.31875106651633, + 19.78636609675433 + ], + [ + 69.43359375, + 19.98101383168278 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 19.98101383168278 + ], + [ + 69.31875106651633, + 19.78636609675433 + ], + [ + 69.54843643348367, + 19.78636609675433 + ], + [ + 69.43359375, + 19.98101383168278 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 19.98101383168278 + ], + [ + 69.54843643348367, + 19.78636609675433 + ], + [ + 69.66327911696736, + 19.98101383168278 + ], + [ + 69.43359375, + 19.98101383168278 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 20.370309301539685 + ], + [ + 69.66327911696736, + 20.370309301539685 + ], + [ + 69.54843643348367, + 20.564957036468137 + ], + [ + 69.43359375, + 20.370309301539685 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 20.370309301539685 + ], + [ + 69.54843643348367, + 20.564957036468137 + ], + [ + 69.31875106651633, + 20.564957036468137 + ], + [ + 69.43359375, + 20.370309301539685 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 20.370309301539685 + ], + [ + 69.31875106651633, + 20.564957036468137 + ], + [ + 69.20390838303264, + 20.370309301539685 + ], + [ + 69.43359375, + 20.370309301539685 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 20.370309301539685 + ], + [ + 69.20390838303264, + 20.370309301539685 + ], + [ + 69.31875106651633, + 20.175661566611232 + ], + [ + 69.43359375, + 20.370309301539685 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 20.370309301539685 + ], + [ + 69.31875106651633, + 20.175661566611232 + ], + [ + 69.54843643348367, + 20.175661566611232 + ], + [ + 69.43359375, + 20.370309301539685 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 20.370309301539685 + ], + [ + 69.54843643348367, + 20.175661566611232 + ], + [ + 69.66327911696736, + 20.370309301539685 + ], + [ + 69.43359375, + 20.370309301539685 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 20.759604771396592 + ], + [ + 69.66327911696736, + 20.759604771396592 + ], + [ + 69.54843643348367, + 20.954252506325044 + ], + [ + 69.43359375, + 20.759604771396592 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 20.759604771396592 + ], + [ + 69.54843643348367, + 20.954252506325044 + ], + [ + 69.31875106651633, + 20.954252506325044 + ], + [ + 69.43359375, + 20.759604771396592 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 20.759604771396592 + ], + [ + 69.31875106651633, + 20.954252506325044 + ], + [ + 69.20390838303264, + 20.759604771396592 + ], + [ + 69.43359375, + 20.759604771396592 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 20.759604771396592 + ], + [ + 69.20390838303264, + 20.759604771396592 + ], + [ + 69.31875106651633, + 20.56495703646814 + ], + [ + 69.43359375, + 20.759604771396592 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 20.759604771396592 + ], + [ + 69.31875106651633, + 20.56495703646814 + ], + [ + 69.54843643348367, + 20.56495703646814 + ], + [ + 69.43359375, + 20.759604771396592 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 20.759604771396592 + ], + [ + 69.54843643348367, + 20.56495703646814 + ], + [ + 69.66327911696736, + 20.759604771396592 + ], + [ + 69.43359375, + 20.759604771396592 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 21.1489002412535 + ], + [ + 69.66327911696736, + 21.1489002412535 + ], + [ + 69.54843643348367, + 21.343547976181952 + ], + [ + 69.43359375, + 21.1489002412535 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 21.1489002412535 + ], + [ + 69.54843643348367, + 21.343547976181952 + ], + [ + 69.31875106651633, + 21.343547976181952 + ], + [ + 69.43359375, + 21.1489002412535 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 21.1489002412535 + ], + [ + 69.31875106651633, + 21.343547976181952 + ], + [ + 69.20390838303264, + 21.1489002412535 + ], + [ + 69.43359375, + 21.1489002412535 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 21.1489002412535 + ], + [ + 69.20390838303264, + 21.1489002412535 + ], + [ + 69.31875106651633, + 20.954252506325048 + ], + [ + 69.43359375, + 21.1489002412535 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 21.1489002412535 + ], + [ + 69.31875106651633, + 20.954252506325048 + ], + [ + 69.54843643348367, + 20.954252506325048 + ], + [ + 69.43359375, + 21.1489002412535 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 21.1489002412535 + ], + [ + 69.54843643348367, + 20.954252506325048 + ], + [ + 69.66327911696736, + 21.1489002412535 + ], + [ + 69.43359375, + 21.1489002412535 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 21.538195711110404 + ], + [ + 69.66327911696736, + 21.538195711110404 + ], + [ + 69.54843643348367, + 21.732843446038856 + ], + [ + 69.43359375, + 21.538195711110404 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 21.538195711110404 + ], + [ + 69.54843643348367, + 21.732843446038856 + ], + [ + 69.31875106651633, + 21.732843446038856 + ], + [ + 69.43359375, + 21.538195711110404 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 21.538195711110404 + ], + [ + 69.31875106651633, + 21.732843446038856 + ], + [ + 69.20390838303264, + 21.538195711110404 + ], + [ + 69.43359375, + 21.538195711110404 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 21.538195711110404 + ], + [ + 69.20390838303264, + 21.538195711110404 + ], + [ + 69.31875106651633, + 21.343547976181952 + ], + [ + 69.43359375, + 21.538195711110404 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 21.538195711110404 + ], + [ + 69.31875106651633, + 21.343547976181952 + ], + [ + 69.54843643348367, + 21.343547976181952 + ], + [ + 69.43359375, + 21.538195711110404 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 21.538195711110404 + ], + [ + 69.54843643348367, + 21.343547976181952 + ], + [ + 69.66327911696736, + 21.538195711110404 + ], + [ + 69.43359375, + 21.538195711110404 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 21.927491180967312 + ], + [ + 69.66327911696736, + 21.927491180967312 + ], + [ + 69.54843643348367, + 22.122138915895764 + ], + [ + 69.43359375, + 21.927491180967312 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 21.927491180967312 + ], + [ + 69.54843643348367, + 22.122138915895764 + ], + [ + 69.31875106651633, + 22.122138915895764 + ], + [ + 69.43359375, + 21.927491180967312 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 21.927491180967312 + ], + [ + 69.31875106651633, + 22.122138915895764 + ], + [ + 69.20390838303264, + 21.927491180967312 + ], + [ + 69.43359375, + 21.927491180967312 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 21.927491180967312 + ], + [ + 69.20390838303264, + 21.927491180967312 + ], + [ + 69.31875106651633, + 21.73284344603886 + ], + [ + 69.43359375, + 21.927491180967312 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 21.927491180967312 + ], + [ + 69.31875106651633, + 21.73284344603886 + ], + [ + 69.54843643348367, + 21.73284344603886 + ], + [ + 69.43359375, + 21.927491180967312 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 21.927491180967312 + ], + [ + 69.54843643348367, + 21.73284344603886 + ], + [ + 69.66327911696736, + 21.927491180967312 + ], + [ + 69.43359375, + 21.927491180967312 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 22.31678665082422 + ], + [ + 69.66327911696736, + 22.31678665082422 + ], + [ + 69.54843643348367, + 22.511434385752672 + ], + [ + 69.43359375, + 22.31678665082422 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 22.31678665082422 + ], + [ + 69.54843643348367, + 22.511434385752672 + ], + [ + 69.31875106651633, + 22.511434385752672 + ], + [ + 69.43359375, + 22.31678665082422 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 22.31678665082422 + ], + [ + 69.31875106651633, + 22.511434385752672 + ], + [ + 69.20390838303264, + 22.31678665082422 + ], + [ + 69.43359375, + 22.31678665082422 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 22.31678665082422 + ], + [ + 69.20390838303264, + 22.31678665082422 + ], + [ + 69.31875106651633, + 22.122138915895768 + ], + [ + 69.43359375, + 22.31678665082422 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 22.31678665082422 + ], + [ + 69.31875106651633, + 22.122138915895768 + ], + [ + 69.54843643348367, + 22.122138915895768 + ], + [ + 69.43359375, + 22.31678665082422 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 22.31678665082422 + ], + [ + 69.54843643348367, + 22.122138915895768 + ], + [ + 69.66327911696736, + 22.31678665082422 + ], + [ + 69.43359375, + 22.31678665082422 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 22.706082120681124 + ], + [ + 69.66327911696736, + 22.706082120681124 + ], + [ + 69.54843643348367, + 22.900729855609576 + ], + [ + 69.43359375, + 22.706082120681124 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 22.706082120681124 + ], + [ + 69.54843643348367, + 22.900729855609576 + ], + [ + 69.31875106651633, + 22.900729855609576 + ], + [ + 69.43359375, + 22.706082120681124 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 22.706082120681124 + ], + [ + 69.31875106651633, + 22.900729855609576 + ], + [ + 69.20390838303264, + 22.706082120681124 + ], + [ + 69.43359375, + 22.706082120681124 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 22.706082120681124 + ], + [ + 69.20390838303264, + 22.706082120681124 + ], + [ + 69.31875106651633, + 22.511434385752672 + ], + [ + 69.43359375, + 22.706082120681124 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 22.706082120681124 + ], + [ + 69.31875106651633, + 22.511434385752672 + ], + [ + 69.54843643348367, + 22.511434385752672 + ], + [ + 69.43359375, + 22.706082120681124 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 22.706082120681124 + ], + [ + 69.54843643348367, + 22.511434385752672 + ], + [ + 69.66327911696736, + 22.706082120681124 + ], + [ + 69.43359375, + 22.706082120681124 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 23.095377590538032 + ], + [ + 69.66327911696736, + 23.095377590538032 + ], + [ + 69.54843643348367, + 23.290025325466484 + ], + [ + 69.43359375, + 23.095377590538032 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 23.095377590538032 + ], + [ + 69.54843643348367, + 23.290025325466484 + ], + [ + 69.31875106651633, + 23.290025325466484 + ], + [ + 69.43359375, + 23.095377590538032 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 23.095377590538032 + ], + [ + 69.31875106651633, + 23.290025325466484 + ], + [ + 69.20390838303264, + 23.095377590538032 + ], + [ + 69.43359375, + 23.095377590538032 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 23.095377590538032 + ], + [ + 69.20390838303264, + 23.095377590538032 + ], + [ + 69.31875106651633, + 22.90072985560958 + ], + [ + 69.43359375, + 23.095377590538032 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 23.095377590538032 + ], + [ + 69.31875106651633, + 22.90072985560958 + ], + [ + 69.54843643348367, + 22.90072985560958 + ], + [ + 69.43359375, + 23.095377590538032 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 23.095377590538032 + ], + [ + 69.54843643348367, + 22.90072985560958 + ], + [ + 69.66327911696736, + 23.095377590538032 + ], + [ + 69.43359375, + 23.095377590538032 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 23.48467306039494 + ], + [ + 69.66327911696736, + 23.48467306039494 + ], + [ + 69.54843643348367, + 23.67932079532339 + ], + [ + 69.43359375, + 23.48467306039494 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 23.48467306039494 + ], + [ + 69.54843643348367, + 23.67932079532339 + ], + [ + 69.31875106651633, + 23.67932079532339 + ], + [ + 69.43359375, + 23.48467306039494 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 23.48467306039494 + ], + [ + 69.31875106651633, + 23.67932079532339 + ], + [ + 69.20390838303264, + 23.48467306039494 + ], + [ + 69.43359375, + 23.48467306039494 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 23.48467306039494 + ], + [ + 69.20390838303264, + 23.48467306039494 + ], + [ + 69.31875106651633, + 23.290025325466488 + ], + [ + 69.43359375, + 23.48467306039494 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 23.48467306039494 + ], + [ + 69.31875106651633, + 23.290025325466488 + ], + [ + 69.54843643348367, + 23.290025325466488 + ], + [ + 69.43359375, + 23.48467306039494 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 23.48467306039494 + ], + [ + 69.54843643348367, + 23.290025325466488 + ], + [ + 69.66327911696736, + 23.48467306039494 + ], + [ + 69.43359375, + 23.48467306039494 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 23.873968530251844 + ], + [ + 69.66327911696736, + 23.873968530251844 + ], + [ + 69.54843643348367, + 24.068616265180296 + ], + [ + 69.43359375, + 23.873968530251844 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 23.873968530251844 + ], + [ + 69.54843643348367, + 24.068616265180296 + ], + [ + 69.31875106651633, + 24.068616265180296 + ], + [ + 69.43359375, + 23.873968530251844 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 23.873968530251844 + ], + [ + 69.31875106651633, + 24.068616265180296 + ], + [ + 69.20390838303264, + 23.873968530251844 + ], + [ + 69.43359375, + 23.873968530251844 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 23.873968530251844 + ], + [ + 69.20390838303264, + 23.873968530251844 + ], + [ + 69.31875106651633, + 23.67932079532339 + ], + [ + 69.43359375, + 23.873968530251844 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 23.873968530251844 + ], + [ + 69.31875106651633, + 23.67932079532339 + ], + [ + 69.54843643348367, + 23.67932079532339 + ], + [ + 69.43359375, + 23.873968530251844 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 23.873968530251844 + ], + [ + 69.54843643348367, + 23.67932079532339 + ], + [ + 69.66327911696736, + 23.873968530251844 + ], + [ + 69.43359375, + 23.873968530251844 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 24.263264000108748 + ], + [ + 69.66327911696736, + 24.263264000108748 + ], + [ + 69.54843643348367, + 24.4579117350372 + ], + [ + 69.43359375, + 24.263264000108748 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 24.263264000108748 + ], + [ + 69.54843643348367, + 24.4579117350372 + ], + [ + 69.31875106651633, + 24.4579117350372 + ], + [ + 69.43359375, + 24.263264000108748 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 24.263264000108748 + ], + [ + 69.31875106651633, + 24.4579117350372 + ], + [ + 69.20390838303264, + 24.263264000108748 + ], + [ + 69.43359375, + 24.263264000108748 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 24.263264000108748 + ], + [ + 69.20390838303264, + 24.263264000108748 + ], + [ + 69.31875106651633, + 24.068616265180296 + ], + [ + 69.43359375, + 24.263264000108748 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 24.263264000108748 + ], + [ + 69.31875106651633, + 24.068616265180296 + ], + [ + 69.54843643348367, + 24.068616265180296 + ], + [ + 69.43359375, + 24.263264000108748 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 24.263264000108748 + ], + [ + 69.54843643348367, + 24.068616265180296 + ], + [ + 69.66327911696736, + 24.263264000108748 + ], + [ + 69.43359375, + 24.263264000108748 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 24.652559469965656 + ], + [ + 69.66327911696736, + 24.652559469965656 + ], + [ + 69.54843643348367, + 24.847207204894108 + ], + [ + 69.43359375, + 24.652559469965656 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 24.652559469965656 + ], + [ + 69.54843643348367, + 24.847207204894108 + ], + [ + 69.31875106651633, + 24.847207204894108 + ], + [ + 69.43359375, + 24.652559469965656 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 24.652559469965656 + ], + [ + 69.31875106651633, + 24.847207204894108 + ], + [ + 69.20390838303264, + 24.652559469965656 + ], + [ + 69.43359375, + 24.652559469965656 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 24.652559469965656 + ], + [ + 69.20390838303264, + 24.652559469965656 + ], + [ + 69.31875106651633, + 24.457911735037204 + ], + [ + 69.43359375, + 24.652559469965656 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 24.652559469965656 + ], + [ + 69.31875106651633, + 24.457911735037204 + ], + [ + 69.54843643348367, + 24.457911735037204 + ], + [ + 69.43359375, + 24.652559469965656 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 24.652559469965656 + ], + [ + 69.54843643348367, + 24.457911735037204 + ], + [ + 69.66327911696736, + 24.652559469965656 + ], + [ + 69.43359375, + 24.652559469965656 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 25.041854939822564 + ], + [ + 69.66327911696736, + 25.041854939822564 + ], + [ + 69.54843643348367, + 25.236502674751016 + ], + [ + 69.43359375, + 25.041854939822564 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 25.041854939822564 + ], + [ + 69.54843643348367, + 25.236502674751016 + ], + [ + 69.31875106651633, + 25.236502674751016 + ], + [ + 69.43359375, + 25.041854939822564 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 25.041854939822564 + ], + [ + 69.31875106651633, + 25.236502674751016 + ], + [ + 69.20390838303264, + 25.041854939822564 + ], + [ + 69.43359375, + 25.041854939822564 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 25.041854939822564 + ], + [ + 69.20390838303264, + 25.041854939822564 + ], + [ + 69.31875106651633, + 24.84720720489411 + ], + [ + 69.43359375, + 25.041854939822564 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 25.041854939822564 + ], + [ + 69.31875106651633, + 24.84720720489411 + ], + [ + 69.54843643348367, + 24.84720720489411 + ], + [ + 69.43359375, + 25.041854939822564 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 25.041854939822564 + ], + [ + 69.54843643348367, + 24.84720720489411 + ], + [ + 69.66327911696736, + 25.041854939822564 + ], + [ + 69.43359375, + 25.041854939822564 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 25.431150409679468 + ], + [ + 69.66327911696736, + 25.431150409679468 + ], + [ + 69.54843643348367, + 25.62579814460792 + ], + [ + 69.43359375, + 25.431150409679468 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 25.431150409679468 + ], + [ + 69.54843643348367, + 25.62579814460792 + ], + [ + 69.31875106651633, + 25.62579814460792 + ], + [ + 69.43359375, + 25.431150409679468 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 25.431150409679468 + ], + [ + 69.31875106651633, + 25.62579814460792 + ], + [ + 69.20390838303264, + 25.431150409679468 + ], + [ + 69.43359375, + 25.431150409679468 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 25.431150409679468 + ], + [ + 69.20390838303264, + 25.431150409679468 + ], + [ + 69.31875106651633, + 25.236502674751016 + ], + [ + 69.43359375, + 25.431150409679468 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 25.431150409679468 + ], + [ + 69.31875106651633, + 25.236502674751016 + ], + [ + 69.54843643348367, + 25.236502674751016 + ], + [ + 69.43359375, + 25.431150409679468 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 25.431150409679468 + ], + [ + 69.54843643348367, + 25.236502674751016 + ], + [ + 69.66327911696736, + 25.431150409679468 + ], + [ + 69.43359375, + 25.431150409679468 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 25.820445879536376 + ], + [ + 69.66327911696736, + 25.820445879536376 + ], + [ + 69.54843643348367, + 26.015093614464828 + ], + [ + 69.43359375, + 25.820445879536376 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 25.820445879536376 + ], + [ + 69.54843643348367, + 26.015093614464828 + ], + [ + 69.31875106651633, + 26.015093614464828 + ], + [ + 69.43359375, + 25.820445879536376 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 25.820445879536376 + ], + [ + 69.31875106651633, + 26.015093614464828 + ], + [ + 69.20390838303264, + 25.820445879536376 + ], + [ + 69.43359375, + 25.820445879536376 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 25.820445879536376 + ], + [ + 69.20390838303264, + 25.820445879536376 + ], + [ + 69.31875106651633, + 25.625798144607923 + ], + [ + 69.43359375, + 25.820445879536376 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 25.820445879536376 + ], + [ + 69.31875106651633, + 25.625798144607923 + ], + [ + 69.54843643348367, + 25.625798144607923 + ], + [ + 69.43359375, + 25.820445879536376 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 25.820445879536376 + ], + [ + 69.54843643348367, + 25.625798144607923 + ], + [ + 69.66327911696736, + 25.820445879536376 + ], + [ + 69.43359375, + 25.820445879536376 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 26.209741349393283 + ], + [ + 69.66327911696736, + 26.209741349393283 + ], + [ + 69.54843643348367, + 26.404389084321735 + ], + [ + 69.43359375, + 26.209741349393283 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 26.209741349393283 + ], + [ + 69.54843643348367, + 26.404389084321735 + ], + [ + 69.31875106651633, + 26.404389084321735 + ], + [ + 69.43359375, + 26.209741349393283 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 26.209741349393283 + ], + [ + 69.31875106651633, + 26.404389084321735 + ], + [ + 69.20390838303264, + 26.209741349393283 + ], + [ + 69.43359375, + 26.209741349393283 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 26.209741349393283 + ], + [ + 69.20390838303264, + 26.209741349393283 + ], + [ + 69.31875106651633, + 26.01509361446483 + ], + [ + 69.43359375, + 26.209741349393283 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 26.209741349393283 + ], + [ + 69.31875106651633, + 26.01509361446483 + ], + [ + 69.54843643348367, + 26.01509361446483 + ], + [ + 69.43359375, + 26.209741349393283 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 26.209741349393283 + ], + [ + 69.54843643348367, + 26.01509361446483 + ], + [ + 69.66327911696736, + 26.209741349393283 + ], + [ + 69.43359375, + 26.209741349393283 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 26.599036819250188 + ], + [ + 69.66327911696736, + 26.599036819250188 + ], + [ + 69.54843643348367, + 26.79368455417864 + ], + [ + 69.43359375, + 26.599036819250188 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 26.599036819250188 + ], + [ + 69.54843643348367, + 26.79368455417864 + ], + [ + 69.31875106651633, + 26.79368455417864 + ], + [ + 69.43359375, + 26.599036819250188 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 26.599036819250188 + ], + [ + 69.31875106651633, + 26.79368455417864 + ], + [ + 69.20390838303264, + 26.599036819250188 + ], + [ + 69.43359375, + 26.599036819250188 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 26.599036819250188 + ], + [ + 69.20390838303264, + 26.599036819250188 + ], + [ + 69.31875106651633, + 26.404389084321735 + ], + [ + 69.43359375, + 26.599036819250188 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 26.599036819250188 + ], + [ + 69.31875106651633, + 26.404389084321735 + ], + [ + 69.54843643348367, + 26.404389084321735 + ], + [ + 69.43359375, + 26.599036819250188 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 26.599036819250188 + ], + [ + 69.54843643348367, + 26.404389084321735 + ], + [ + 69.66327911696736, + 26.599036819250188 + ], + [ + 69.43359375, + 26.599036819250188 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 26.988332289107095 + ], + [ + 69.66327911696736, + 26.988332289107095 + ], + [ + 69.54843643348367, + 27.182980024035547 + ], + [ + 69.43359375, + 26.988332289107095 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 26.988332289107095 + ], + [ + 69.54843643348367, + 27.182980024035547 + ], + [ + 69.31875106651633, + 27.182980024035547 + ], + [ + 69.43359375, + 26.988332289107095 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 26.988332289107095 + ], + [ + 69.31875106651633, + 27.182980024035547 + ], + [ + 69.20390838303264, + 26.988332289107095 + ], + [ + 69.43359375, + 26.988332289107095 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 26.988332289107095 + ], + [ + 69.20390838303264, + 26.988332289107095 + ], + [ + 69.31875106651633, + 26.793684554178643 + ], + [ + 69.43359375, + 26.988332289107095 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 26.988332289107095 + ], + [ + 69.31875106651633, + 26.793684554178643 + ], + [ + 69.54843643348367, + 26.793684554178643 + ], + [ + 69.43359375, + 26.988332289107095 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 26.988332289107095 + ], + [ + 69.54843643348367, + 26.793684554178643 + ], + [ + 69.66327911696736, + 26.988332289107095 + ], + [ + 69.43359375, + 26.988332289107095 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 27.377627758964003 + ], + [ + 69.66327911696736, + 27.377627758964003 + ], + [ + 69.54843643348367, + 27.572275493892455 + ], + [ + 69.43359375, + 27.377627758964003 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 27.377627758964003 + ], + [ + 69.54843643348367, + 27.572275493892455 + ], + [ + 69.31875106651633, + 27.572275493892455 + ], + [ + 69.43359375, + 27.377627758964003 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 27.377627758964003 + ], + [ + 69.31875106651633, + 27.572275493892455 + ], + [ + 69.20390838303264, + 27.377627758964003 + ], + [ + 69.43359375, + 27.377627758964003 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 27.377627758964003 + ], + [ + 69.20390838303264, + 27.377627758964003 + ], + [ + 69.31875106651633, + 27.18298002403555 + ], + [ + 69.43359375, + 27.377627758964003 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 27.377627758964003 + ], + [ + 69.31875106651633, + 27.18298002403555 + ], + [ + 69.54843643348367, + 27.18298002403555 + ], + [ + 69.43359375, + 27.377627758964003 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 27.377627758964003 + ], + [ + 69.54843643348367, + 27.18298002403555 + ], + [ + 69.66327911696736, + 27.377627758964003 + ], + [ + 69.43359375, + 27.377627758964003 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 27.766923228820907 + ], + [ + 69.66327911696736, + 27.766923228820907 + ], + [ + 69.54843643348367, + 27.96157096374936 + ], + [ + 69.43359375, + 27.766923228820907 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 27.766923228820907 + ], + [ + 69.54843643348367, + 27.96157096374936 + ], + [ + 69.31875106651633, + 27.96157096374936 + ], + [ + 69.43359375, + 27.766923228820907 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 27.766923228820907 + ], + [ + 69.31875106651633, + 27.96157096374936 + ], + [ + 69.20390838303264, + 27.766923228820907 + ], + [ + 69.43359375, + 27.766923228820907 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 27.766923228820907 + ], + [ + 69.20390838303264, + 27.766923228820907 + ], + [ + 69.31875106651633, + 27.572275493892455 + ], + [ + 69.43359375, + 27.766923228820907 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 27.766923228820907 + ], + [ + 69.31875106651633, + 27.572275493892455 + ], + [ + 69.54843643348367, + 27.572275493892455 + ], + [ + 69.43359375, + 27.766923228820907 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 27.766923228820907 + ], + [ + 69.54843643348367, + 27.572275493892455 + ], + [ + 69.66327911696736, + 27.766923228820907 + ], + [ + 69.43359375, + 27.766923228820907 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 28.156218698677815 + ], + [ + 69.66327911696736, + 28.156218698677815 + ], + [ + 69.54843643348367, + 28.350866433606267 + ], + [ + 69.43359375, + 28.156218698677815 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 28.156218698677815 + ], + [ + 69.54843643348367, + 28.350866433606267 + ], + [ + 69.31875106651633, + 28.350866433606267 + ], + [ + 69.43359375, + 28.156218698677815 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 28.156218698677815 + ], + [ + 69.31875106651633, + 28.350866433606267 + ], + [ + 69.20390838303264, + 28.156218698677815 + ], + [ + 69.43359375, + 28.156218698677815 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 28.156218698677815 + ], + [ + 69.20390838303264, + 28.156218698677815 + ], + [ + 69.31875106651633, + 27.961570963749363 + ], + [ + 69.43359375, + 28.156218698677815 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 28.156218698677815 + ], + [ + 69.31875106651633, + 27.961570963749363 + ], + [ + 69.54843643348367, + 27.961570963749363 + ], + [ + 69.43359375, + 28.156218698677815 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 28.156218698677815 + ], + [ + 69.54843643348367, + 27.961570963749363 + ], + [ + 69.66327911696736, + 28.156218698677815 + ], + [ + 69.43359375, + 28.156218698677815 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 28.54551416853472 + ], + [ + 69.66327911696736, + 28.54551416853472 + ], + [ + 69.54843643348367, + 28.74016190346317 + ], + [ + 69.43359375, + 28.54551416853472 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 28.54551416853472 + ], + [ + 69.54843643348367, + 28.74016190346317 + ], + [ + 69.31875106651633, + 28.74016190346317 + ], + [ + 69.43359375, + 28.54551416853472 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 28.54551416853472 + ], + [ + 69.31875106651633, + 28.74016190346317 + ], + [ + 69.20390838303264, + 28.54551416853472 + ], + [ + 69.43359375, + 28.54551416853472 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 28.54551416853472 + ], + [ + 69.20390838303264, + 28.54551416853472 + ], + [ + 69.31875106651633, + 28.350866433606267 + ], + [ + 69.43359375, + 28.54551416853472 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 28.54551416853472 + ], + [ + 69.31875106651633, + 28.350866433606267 + ], + [ + 69.54843643348367, + 28.350866433606267 + ], + [ + 69.43359375, + 28.54551416853472 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 28.54551416853472 + ], + [ + 69.54843643348367, + 28.350866433606267 + ], + [ + 69.66327911696736, + 28.54551416853472 + ], + [ + 69.43359375, + 28.54551416853472 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 28.934809638391627 + ], + [ + 69.66327911696736, + 28.934809638391627 + ], + [ + 69.54843643348367, + 29.12945737332008 + ], + [ + 69.43359375, + 28.934809638391627 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 28.934809638391627 + ], + [ + 69.54843643348367, + 29.12945737332008 + ], + [ + 69.31875106651633, + 29.12945737332008 + ], + [ + 69.43359375, + 28.934809638391627 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 28.934809638391627 + ], + [ + 69.31875106651633, + 29.12945737332008 + ], + [ + 69.20390838303264, + 28.934809638391627 + ], + [ + 69.43359375, + 28.934809638391627 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 28.934809638391627 + ], + [ + 69.20390838303264, + 28.934809638391627 + ], + [ + 69.31875106651633, + 28.740161903463175 + ], + [ + 69.43359375, + 28.934809638391627 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 28.934809638391627 + ], + [ + 69.31875106651633, + 28.740161903463175 + ], + [ + 69.54843643348367, + 28.740161903463175 + ], + [ + 69.43359375, + 28.934809638391627 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 28.934809638391627 + ], + [ + 69.54843643348367, + 28.740161903463175 + ], + [ + 69.66327911696736, + 28.934809638391627 + ], + [ + 69.43359375, + 28.934809638391627 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 29.32410510824853 + ], + [ + 69.66327911696736, + 29.32410510824853 + ], + [ + 69.54843643348367, + 29.518752843176983 + ], + [ + 69.43359375, + 29.32410510824853 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 29.32410510824853 + ], + [ + 69.54843643348367, + 29.518752843176983 + ], + [ + 69.31875106651633, + 29.518752843176983 + ], + [ + 69.43359375, + 29.32410510824853 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 29.32410510824853 + ], + [ + 69.31875106651633, + 29.518752843176983 + ], + [ + 69.20390838303264, + 29.32410510824853 + ], + [ + 69.43359375, + 29.32410510824853 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 29.32410510824853 + ], + [ + 69.20390838303264, + 29.32410510824853 + ], + [ + 69.31875106651633, + 29.12945737332008 + ], + [ + 69.43359375, + 29.32410510824853 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 29.32410510824853 + ], + [ + 69.31875106651633, + 29.12945737332008 + ], + [ + 69.54843643348367, + 29.12945737332008 + ], + [ + 69.43359375, + 29.32410510824853 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 29.32410510824853 + ], + [ + 69.54843643348367, + 29.12945737332008 + ], + [ + 69.66327911696736, + 29.32410510824853 + ], + [ + 69.43359375, + 29.32410510824853 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 29.71340057810544 + ], + [ + 69.66327911696736, + 29.71340057810544 + ], + [ + 69.54843643348367, + 29.90804831303389 + ], + [ + 69.43359375, + 29.71340057810544 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 29.71340057810544 + ], + [ + 69.54843643348367, + 29.90804831303389 + ], + [ + 69.31875106651633, + 29.90804831303389 + ], + [ + 69.43359375, + 29.71340057810544 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 29.71340057810544 + ], + [ + 69.31875106651633, + 29.90804831303389 + ], + [ + 69.20390838303264, + 29.71340057810544 + ], + [ + 69.43359375, + 29.71340057810544 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 29.71340057810544 + ], + [ + 69.20390838303264, + 29.71340057810544 + ], + [ + 69.31875106651633, + 29.518752843176987 + ], + [ + 69.43359375, + 29.71340057810544 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 29.71340057810544 + ], + [ + 69.31875106651633, + 29.518752843176987 + ], + [ + 69.54843643348367, + 29.518752843176987 + ], + [ + 69.43359375, + 29.71340057810544 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 29.71340057810544 + ], + [ + 69.54843643348367, + 29.518752843176987 + ], + [ + 69.66327911696736, + 29.71340057810544 + ], + [ + 69.43359375, + 29.71340057810544 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 30.102696047962343 + ], + [ + 69.66327911696736, + 30.102696047962343 + ], + [ + 69.54843643348367, + 30.297343782890795 + ], + [ + 69.43359375, + 30.102696047962343 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 30.102696047962343 + ], + [ + 69.54843643348367, + 30.297343782890795 + ], + [ + 69.31875106651633, + 30.297343782890795 + ], + [ + 69.43359375, + 30.102696047962343 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 30.102696047962343 + ], + [ + 69.31875106651633, + 30.297343782890795 + ], + [ + 69.20390838303264, + 30.102696047962343 + ], + [ + 69.43359375, + 30.102696047962343 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 30.102696047962343 + ], + [ + 69.20390838303264, + 30.102696047962343 + ], + [ + 69.31875106651633, + 29.90804831303389 + ], + [ + 69.43359375, + 30.102696047962343 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 30.102696047962343 + ], + [ + 69.31875106651633, + 29.90804831303389 + ], + [ + 69.54843643348367, + 29.90804831303389 + ], + [ + 69.43359375, + 30.102696047962343 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 30.102696047962343 + ], + [ + 69.54843643348367, + 29.90804831303389 + ], + [ + 69.66327911696736, + 30.102696047962343 + ], + [ + 69.43359375, + 30.102696047962343 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 30.49199151781925 + ], + [ + 69.66327911696736, + 30.49199151781925 + ], + [ + 69.54843643348367, + 30.686639252747703 + ], + [ + 69.43359375, + 30.49199151781925 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 30.49199151781925 + ], + [ + 69.54843643348367, + 30.686639252747703 + ], + [ + 69.31875106651633, + 30.686639252747703 + ], + [ + 69.43359375, + 30.49199151781925 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 30.49199151781925 + ], + [ + 69.31875106651633, + 30.686639252747703 + ], + [ + 69.20390838303264, + 30.49199151781925 + ], + [ + 69.43359375, + 30.49199151781925 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 30.49199151781925 + ], + [ + 69.20390838303264, + 30.49199151781925 + ], + [ + 69.31875106651633, + 30.2973437828908 + ], + [ + 69.43359375, + 30.49199151781925 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 30.49199151781925 + ], + [ + 69.31875106651633, + 30.2973437828908 + ], + [ + 69.54843643348367, + 30.2973437828908 + ], + [ + 69.43359375, + 30.49199151781925 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 30.49199151781925 + ], + [ + 69.54843643348367, + 30.2973437828908 + ], + [ + 69.66327911696736, + 30.49199151781925 + ], + [ + 69.43359375, + 30.49199151781925 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 30.88128698767616 + ], + [ + 69.66327911696736, + 30.88128698767616 + ], + [ + 69.54843643348367, + 31.07593472260461 + ], + [ + 69.43359375, + 30.88128698767616 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 30.88128698767616 + ], + [ + 69.54843643348367, + 31.07593472260461 + ], + [ + 69.31875106651633, + 31.07593472260461 + ], + [ + 69.43359375, + 30.88128698767616 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 30.88128698767616 + ], + [ + 69.31875106651633, + 31.07593472260461 + ], + [ + 69.20390838303264, + 30.88128698767616 + ], + [ + 69.43359375, + 30.88128698767616 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 30.88128698767616 + ], + [ + 69.20390838303264, + 30.88128698767616 + ], + [ + 69.31875106651633, + 30.686639252747707 + ], + [ + 69.43359375, + 30.88128698767616 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 30.88128698767616 + ], + [ + 69.31875106651633, + 30.686639252747707 + ], + [ + 69.54843643348367, + 30.686639252747707 + ], + [ + 69.43359375, + 30.88128698767616 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 30.88128698767616 + ], + [ + 69.54843643348367, + 30.686639252747707 + ], + [ + 69.66327911696736, + 30.88128698767616 + ], + [ + 69.43359375, + 30.88128698767616 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 31.270582457533063 + ], + [ + 69.66327911696736, + 31.270582457533063 + ], + [ + 69.54843643348367, + 31.465230192461515 + ], + [ + 69.43359375, + 31.270582457533063 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 31.270582457533063 + ], + [ + 69.54843643348367, + 31.465230192461515 + ], + [ + 69.31875106651633, + 31.465230192461515 + ], + [ + 69.43359375, + 31.270582457533063 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 31.270582457533063 + ], + [ + 69.31875106651633, + 31.465230192461515 + ], + [ + 69.20390838303264, + 31.270582457533063 + ], + [ + 69.43359375, + 31.270582457533063 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 31.270582457533063 + ], + [ + 69.20390838303264, + 31.270582457533063 + ], + [ + 69.31875106651633, + 31.07593472260461 + ], + [ + 69.43359375, + 31.270582457533063 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 31.270582457533063 + ], + [ + 69.31875106651633, + 31.07593472260461 + ], + [ + 69.54843643348367, + 31.07593472260461 + ], + [ + 69.43359375, + 31.270582457533063 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 31.270582457533063 + ], + [ + 69.54843643348367, + 31.07593472260461 + ], + [ + 69.66327911696736, + 31.270582457533063 + ], + [ + 69.43359375, + 31.270582457533063 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 31.65987792738997 + ], + [ + 69.66327911696736, + 31.65987792738997 + ], + [ + 69.54843643348367, + 31.854525662318423 + ], + [ + 69.43359375, + 31.65987792738997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 31.65987792738997 + ], + [ + 69.54843643348367, + 31.854525662318423 + ], + [ + 69.31875106651633, + 31.854525662318423 + ], + [ + 69.43359375, + 31.65987792738997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 31.65987792738997 + ], + [ + 69.31875106651633, + 31.854525662318423 + ], + [ + 69.20390838303264, + 31.65987792738997 + ], + [ + 69.43359375, + 31.65987792738997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 31.65987792738997 + ], + [ + 69.20390838303264, + 31.65987792738997 + ], + [ + 69.31875106651633, + 31.46523019246152 + ], + [ + 69.43359375, + 31.65987792738997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 31.65987792738997 + ], + [ + 69.31875106651633, + 31.46523019246152 + ], + [ + 69.54843643348367, + 31.46523019246152 + ], + [ + 69.43359375, + 31.65987792738997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 31.65987792738997 + ], + [ + 69.54843643348367, + 31.46523019246152 + ], + [ + 69.66327911696736, + 31.65987792738997 + ], + [ + 69.43359375, + 31.65987792738997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 32.049173397246875 + ], + [ + 69.66327911696736, + 32.049173397246875 + ], + [ + 69.54843643348367, + 32.24382113217533 + ], + [ + 69.43359375, + 32.049173397246875 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 32.049173397246875 + ], + [ + 69.54843643348367, + 32.24382113217533 + ], + [ + 69.31875106651633, + 32.24382113217533 + ], + [ + 69.43359375, + 32.049173397246875 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 32.049173397246875 + ], + [ + 69.31875106651633, + 32.24382113217533 + ], + [ + 69.20390838303264, + 32.049173397246875 + ], + [ + 69.43359375, + 32.049173397246875 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 32.049173397246875 + ], + [ + 69.20390838303264, + 32.049173397246875 + ], + [ + 69.31875106651633, + 31.854525662318423 + ], + [ + 69.43359375, + 32.049173397246875 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 32.049173397246875 + ], + [ + 69.31875106651633, + 31.854525662318423 + ], + [ + 69.54843643348367, + 31.854525662318423 + ], + [ + 69.43359375, + 32.049173397246875 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 32.049173397246875 + ], + [ + 69.54843643348367, + 31.854525662318423 + ], + [ + 69.66327911696736, + 32.049173397246875 + ], + [ + 69.43359375, + 32.049173397246875 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 32.438468867103786 + ], + [ + 69.66327911696736, + 32.438468867103786 + ], + [ + 69.54843643348367, + 32.63311660203224 + ], + [ + 69.43359375, + 32.438468867103786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 32.438468867103786 + ], + [ + 69.54843643348367, + 32.63311660203224 + ], + [ + 69.31875106651633, + 32.63311660203224 + ], + [ + 69.43359375, + 32.438468867103786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 32.438468867103786 + ], + [ + 69.31875106651633, + 32.63311660203224 + ], + [ + 69.20390838303264, + 32.438468867103786 + ], + [ + 69.43359375, + 32.438468867103786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 32.438468867103786 + ], + [ + 69.20390838303264, + 32.438468867103786 + ], + [ + 69.31875106651633, + 32.243821132175334 + ], + [ + 69.43359375, + 32.438468867103786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 32.438468867103786 + ], + [ + 69.31875106651633, + 32.243821132175334 + ], + [ + 69.54843643348367, + 32.243821132175334 + ], + [ + 69.43359375, + 32.438468867103786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 32.438468867103786 + ], + [ + 69.54843643348367, + 32.243821132175334 + ], + [ + 69.66327911696736, + 32.438468867103786 + ], + [ + 69.43359375, + 32.438468867103786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 32.82776433696069 + ], + [ + 69.66327911696736, + 32.82776433696069 + ], + [ + 69.54843643348367, + 33.02241207188914 + ], + [ + 69.43359375, + 32.82776433696069 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 32.82776433696069 + ], + [ + 69.54843643348367, + 33.02241207188914 + ], + [ + 69.31875106651633, + 33.02241207188914 + ], + [ + 69.43359375, + 32.82776433696069 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 32.82776433696069 + ], + [ + 69.31875106651633, + 33.02241207188914 + ], + [ + 69.20390838303264, + 32.82776433696069 + ], + [ + 69.43359375, + 32.82776433696069 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 32.82776433696069 + ], + [ + 69.20390838303264, + 32.82776433696069 + ], + [ + 69.31875106651633, + 32.63311660203224 + ], + [ + 69.43359375, + 32.82776433696069 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 32.82776433696069 + ], + [ + 69.31875106651633, + 32.63311660203224 + ], + [ + 69.54843643348367, + 32.63311660203224 + ], + [ + 69.43359375, + 32.82776433696069 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 32.82776433696069 + ], + [ + 69.54843643348367, + 32.63311660203224 + ], + [ + 69.66327911696736, + 32.82776433696069 + ], + [ + 69.43359375, + 32.82776433696069 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 33.217059806817595 + ], + [ + 69.66327911696736, + 33.217059806817595 + ], + [ + 69.54843643348367, + 33.41170754174605 + ], + [ + 69.43359375, + 33.217059806817595 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 33.217059806817595 + ], + [ + 69.54843643348367, + 33.41170754174605 + ], + [ + 69.31875106651633, + 33.41170754174605 + ], + [ + 69.43359375, + 33.217059806817595 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 33.217059806817595 + ], + [ + 69.31875106651633, + 33.41170754174605 + ], + [ + 69.20390838303264, + 33.217059806817595 + ], + [ + 69.43359375, + 33.217059806817595 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 33.217059806817595 + ], + [ + 69.20390838303264, + 33.217059806817595 + ], + [ + 69.31875106651633, + 33.02241207188914 + ], + [ + 69.43359375, + 33.217059806817595 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 33.217059806817595 + ], + [ + 69.31875106651633, + 33.02241207188914 + ], + [ + 69.54843643348367, + 33.02241207188914 + ], + [ + 69.43359375, + 33.217059806817595 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 33.217059806817595 + ], + [ + 69.54843643348367, + 33.02241207188914 + ], + [ + 69.66327911696736, + 33.217059806817595 + ], + [ + 69.43359375, + 33.217059806817595 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 33.6063552766745 + ], + [ + 69.66327911696736, + 33.6063552766745 + ], + [ + 69.54843643348367, + 33.80100301160295 + ], + [ + 69.43359375, + 33.6063552766745 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 33.6063552766745 + ], + [ + 69.54843643348367, + 33.80100301160295 + ], + [ + 69.31875106651633, + 33.80100301160295 + ], + [ + 69.43359375, + 33.6063552766745 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 33.6063552766745 + ], + [ + 69.31875106651633, + 33.80100301160295 + ], + [ + 69.20390838303264, + 33.6063552766745 + ], + [ + 69.43359375, + 33.6063552766745 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 33.6063552766745 + ], + [ + 69.20390838303264, + 33.6063552766745 + ], + [ + 69.31875106651633, + 33.41170754174605 + ], + [ + 69.43359375, + 33.6063552766745 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 33.6063552766745 + ], + [ + 69.31875106651633, + 33.41170754174605 + ], + [ + 69.54843643348367, + 33.41170754174605 + ], + [ + 69.43359375, + 33.6063552766745 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 33.6063552766745 + ], + [ + 69.54843643348367, + 33.41170754174605 + ], + [ + 69.66327911696736, + 33.6063552766745 + ], + [ + 69.43359375, + 33.6063552766745 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 33.9956507465314 + ], + [ + 69.66327911696736, + 33.9956507465314 + ], + [ + 69.54843643348367, + 34.190298481459855 + ], + [ + 69.43359375, + 33.9956507465314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 33.9956507465314 + ], + [ + 69.54843643348367, + 34.190298481459855 + ], + [ + 69.31875106651633, + 34.190298481459855 + ], + [ + 69.43359375, + 33.9956507465314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 33.9956507465314 + ], + [ + 69.31875106651633, + 34.190298481459855 + ], + [ + 69.20390838303264, + 33.9956507465314 + ], + [ + 69.43359375, + 33.9956507465314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 33.9956507465314 + ], + [ + 69.20390838303264, + 33.9956507465314 + ], + [ + 69.31875106651633, + 33.80100301160295 + ], + [ + 69.43359375, + 33.9956507465314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 33.9956507465314 + ], + [ + 69.31875106651633, + 33.80100301160295 + ], + [ + 69.54843643348367, + 33.80100301160295 + ], + [ + 69.43359375, + 33.9956507465314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 33.9956507465314 + ], + [ + 69.54843643348367, + 33.80100301160295 + ], + [ + 69.66327911696736, + 33.9956507465314 + ], + [ + 69.43359375, + 33.9956507465314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 34.384946216388315 + ], + [ + 69.66327911696736, + 34.384946216388315 + ], + [ + 69.54843643348367, + 34.57959395131677 + ], + [ + 69.43359375, + 34.384946216388315 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 34.384946216388315 + ], + [ + 69.54843643348367, + 34.57959395131677 + ], + [ + 69.31875106651633, + 34.57959395131677 + ], + [ + 69.43359375, + 34.384946216388315 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 34.384946216388315 + ], + [ + 69.31875106651633, + 34.57959395131677 + ], + [ + 69.20390838303264, + 34.384946216388315 + ], + [ + 69.43359375, + 34.384946216388315 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 34.384946216388315 + ], + [ + 69.20390838303264, + 34.384946216388315 + ], + [ + 69.31875106651633, + 34.19029848145986 + ], + [ + 69.43359375, + 34.384946216388315 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 34.384946216388315 + ], + [ + 69.31875106651633, + 34.19029848145986 + ], + [ + 69.54843643348367, + 34.19029848145986 + ], + [ + 69.43359375, + 34.384946216388315 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 34.384946216388315 + ], + [ + 69.54843643348367, + 34.19029848145986 + ], + [ + 69.66327911696736, + 34.384946216388315 + ], + [ + 69.43359375, + 34.384946216388315 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 34.774241686245226 + ], + [ + 69.66327911696736, + 34.774241686245226 + ], + [ + 69.54843643348367, + 34.96888942117368 + ], + [ + 69.43359375, + 34.774241686245226 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 34.774241686245226 + ], + [ + 69.54843643348367, + 34.96888942117368 + ], + [ + 69.31875106651633, + 34.96888942117368 + ], + [ + 69.43359375, + 34.774241686245226 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 34.774241686245226 + ], + [ + 69.31875106651633, + 34.96888942117368 + ], + [ + 69.20390838303264, + 34.774241686245226 + ], + [ + 69.43359375, + 34.774241686245226 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 34.774241686245226 + ], + [ + 69.20390838303264, + 34.774241686245226 + ], + [ + 69.31875106651633, + 34.579593951316774 + ], + [ + 69.43359375, + 34.774241686245226 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 34.774241686245226 + ], + [ + 69.31875106651633, + 34.579593951316774 + ], + [ + 69.54843643348367, + 34.579593951316774 + ], + [ + 69.43359375, + 34.774241686245226 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 34.774241686245226 + ], + [ + 69.54843643348367, + 34.579593951316774 + ], + [ + 69.66327911696736, + 34.774241686245226 + ], + [ + 69.43359375, + 34.774241686245226 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 35.16353715610213 + ], + [ + 69.66327911696736, + 35.16353715610213 + ], + [ + 69.54843643348367, + 35.35818489103058 + ], + [ + 69.43359375, + 35.16353715610213 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 35.16353715610213 + ], + [ + 69.54843643348367, + 35.35818489103058 + ], + [ + 69.31875106651633, + 35.35818489103058 + ], + [ + 69.43359375, + 35.16353715610213 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 35.16353715610213 + ], + [ + 69.31875106651633, + 35.35818489103058 + ], + [ + 69.20390838303264, + 35.16353715610213 + ], + [ + 69.43359375, + 35.16353715610213 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 35.16353715610213 + ], + [ + 69.20390838303264, + 35.16353715610213 + ], + [ + 69.31875106651633, + 34.96888942117368 + ], + [ + 69.43359375, + 35.16353715610213 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 35.16353715610213 + ], + [ + 69.31875106651633, + 34.96888942117368 + ], + [ + 69.54843643348367, + 34.96888942117368 + ], + [ + 69.43359375, + 35.16353715610213 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 35.16353715610213 + ], + [ + 69.54843643348367, + 34.96888942117368 + ], + [ + 69.66327911696736, + 35.16353715610213 + ], + [ + 69.43359375, + 35.16353715610213 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 35.552832625959034 + ], + [ + 69.66327911696736, + 35.552832625959034 + ], + [ + 69.54843643348367, + 35.74748036088749 + ], + [ + 69.43359375, + 35.552832625959034 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 35.552832625959034 + ], + [ + 69.54843643348367, + 35.74748036088749 + ], + [ + 69.31875106651633, + 35.74748036088749 + ], + [ + 69.43359375, + 35.552832625959034 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 35.552832625959034 + ], + [ + 69.31875106651633, + 35.74748036088749 + ], + [ + 69.20390838303264, + 35.552832625959034 + ], + [ + 69.43359375, + 35.552832625959034 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 35.552832625959034 + ], + [ + 69.20390838303264, + 35.552832625959034 + ], + [ + 69.31875106651633, + 35.35818489103058 + ], + [ + 69.43359375, + 35.552832625959034 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 35.552832625959034 + ], + [ + 69.31875106651633, + 35.35818489103058 + ], + [ + 69.54843643348367, + 35.35818489103058 + ], + [ + 69.43359375, + 35.552832625959034 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 35.552832625959034 + ], + [ + 69.54843643348367, + 35.35818489103058 + ], + [ + 69.66327911696736, + 35.552832625959034 + ], + [ + 69.43359375, + 35.552832625959034 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 35.94212809581594 + ], + [ + 69.66327911696736, + 35.94212809581594 + ], + [ + 69.54843643348367, + 36.13677583074439 + ], + [ + 69.43359375, + 35.94212809581594 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 35.94212809581594 + ], + [ + 69.54843643348367, + 36.13677583074439 + ], + [ + 69.31875106651633, + 36.13677583074439 + ], + [ + 69.43359375, + 35.94212809581594 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 35.94212809581594 + ], + [ + 69.31875106651633, + 36.13677583074439 + ], + [ + 69.20390838303264, + 35.94212809581594 + ], + [ + 69.43359375, + 35.94212809581594 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 35.94212809581594 + ], + [ + 69.20390838303264, + 35.94212809581594 + ], + [ + 69.31875106651633, + 35.74748036088749 + ], + [ + 69.43359375, + 35.94212809581594 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 35.94212809581594 + ], + [ + 69.31875106651633, + 35.74748036088749 + ], + [ + 69.54843643348367, + 35.74748036088749 + ], + [ + 69.43359375, + 35.94212809581594 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 35.94212809581594 + ], + [ + 69.54843643348367, + 35.74748036088749 + ], + [ + 69.66327911696736, + 35.94212809581594 + ], + [ + 69.43359375, + 35.94212809581594 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 36.33142356567284 + ], + [ + 69.66327911696736, + 36.33142356567284 + ], + [ + 69.54843643348367, + 36.526071300601295 + ], + [ + 69.43359375, + 36.33142356567284 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 36.33142356567284 + ], + [ + 69.54843643348367, + 36.526071300601295 + ], + [ + 69.31875106651633, + 36.526071300601295 + ], + [ + 69.43359375, + 36.33142356567284 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 36.33142356567284 + ], + [ + 69.31875106651633, + 36.526071300601295 + ], + [ + 69.20390838303264, + 36.33142356567284 + ], + [ + 69.43359375, + 36.33142356567284 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 36.33142356567284 + ], + [ + 69.20390838303264, + 36.33142356567284 + ], + [ + 69.31875106651633, + 36.13677583074439 + ], + [ + 69.43359375, + 36.33142356567284 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 36.33142356567284 + ], + [ + 69.31875106651633, + 36.13677583074439 + ], + [ + 69.54843643348367, + 36.13677583074439 + ], + [ + 69.43359375, + 36.33142356567284 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 36.33142356567284 + ], + [ + 69.54843643348367, + 36.13677583074439 + ], + [ + 69.66327911696736, + 36.33142356567284 + ], + [ + 69.43359375, + 36.33142356567284 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 36.720719035529754 + ], + [ + 69.66327911696736, + 36.720719035529754 + ], + [ + 69.54843643348367, + 36.915366770458206 + ], + [ + 69.43359375, + 36.720719035529754 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 36.720719035529754 + ], + [ + 69.54843643348367, + 36.915366770458206 + ], + [ + 69.31875106651633, + 36.915366770458206 + ], + [ + 69.43359375, + 36.720719035529754 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 36.720719035529754 + ], + [ + 69.31875106651633, + 36.915366770458206 + ], + [ + 69.20390838303264, + 36.720719035529754 + ], + [ + 69.43359375, + 36.720719035529754 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 36.720719035529754 + ], + [ + 69.20390838303264, + 36.720719035529754 + ], + [ + 69.31875106651633, + 36.5260713006013 + ], + [ + 69.43359375, + 36.720719035529754 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 36.720719035529754 + ], + [ + 69.31875106651633, + 36.5260713006013 + ], + [ + 69.54843643348367, + 36.5260713006013 + ], + [ + 69.43359375, + 36.720719035529754 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 36.720719035529754 + ], + [ + 69.54843643348367, + 36.5260713006013 + ], + [ + 69.66327911696736, + 36.720719035529754 + ], + [ + 69.43359375, + 36.720719035529754 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 37.11001450538666 + ], + [ + 69.66327911696736, + 37.11001450538666 + ], + [ + 69.54843643348367, + 37.30466224031511 + ], + [ + 69.43359375, + 37.11001450538666 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 37.11001450538666 + ], + [ + 69.54843643348367, + 37.30466224031511 + ], + [ + 69.31875106651633, + 37.30466224031511 + ], + [ + 69.43359375, + 37.11001450538666 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 37.11001450538666 + ], + [ + 69.31875106651633, + 37.30466224031511 + ], + [ + 69.20390838303264, + 37.11001450538666 + ], + [ + 69.43359375, + 37.11001450538666 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 37.11001450538666 + ], + [ + 69.20390838303264, + 37.11001450538666 + ], + [ + 69.31875106651633, + 36.915366770458206 + ], + [ + 69.43359375, + 37.11001450538666 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 37.11001450538666 + ], + [ + 69.31875106651633, + 36.915366770458206 + ], + [ + 69.54843643348367, + 36.915366770458206 + ], + [ + 69.43359375, + 37.11001450538666 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 37.11001450538666 + ], + [ + 69.54843643348367, + 36.915366770458206 + ], + [ + 69.66327911696736, + 37.11001450538666 + ], + [ + 69.43359375, + 37.11001450538666 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 37.49930997524357 + ], + [ + 69.66327911696736, + 37.49930997524357 + ], + [ + 69.54843643348367, + 37.69395771017202 + ], + [ + 69.43359375, + 37.49930997524357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 37.49930997524357 + ], + [ + 69.54843643348367, + 37.69395771017202 + ], + [ + 69.31875106651633, + 37.69395771017202 + ], + [ + 69.43359375, + 37.49930997524357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 37.49930997524357 + ], + [ + 69.31875106651633, + 37.69395771017202 + ], + [ + 69.20390838303264, + 37.49930997524357 + ], + [ + 69.43359375, + 37.49930997524357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 37.49930997524357 + ], + [ + 69.20390838303264, + 37.49930997524357 + ], + [ + 69.31875106651633, + 37.30466224031512 + ], + [ + 69.43359375, + 37.49930997524357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 37.49930997524357 + ], + [ + 69.31875106651633, + 37.30466224031512 + ], + [ + 69.54843643348367, + 37.30466224031512 + ], + [ + 69.43359375, + 37.49930997524357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 37.49930997524357 + ], + [ + 69.54843643348367, + 37.30466224031512 + ], + [ + 69.66327911696736, + 37.49930997524357 + ], + [ + 69.43359375, + 37.49930997524357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 37.888605445100474 + ], + [ + 69.66327911696736, + 37.888605445100474 + ], + [ + 69.54843643348367, + 38.083253180028926 + ], + [ + 69.43359375, + 37.888605445100474 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 37.888605445100474 + ], + [ + 69.54843643348367, + 38.083253180028926 + ], + [ + 69.31875106651633, + 38.083253180028926 + ], + [ + 69.43359375, + 37.888605445100474 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 37.888605445100474 + ], + [ + 69.31875106651633, + 38.083253180028926 + ], + [ + 69.20390838303264, + 37.888605445100474 + ], + [ + 69.43359375, + 37.888605445100474 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 37.888605445100474 + ], + [ + 69.20390838303264, + 37.888605445100474 + ], + [ + 69.31875106651633, + 37.69395771017202 + ], + [ + 69.43359375, + 37.888605445100474 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 37.888605445100474 + ], + [ + 69.31875106651633, + 37.69395771017202 + ], + [ + 69.54843643348367, + 37.69395771017202 + ], + [ + 69.43359375, + 37.888605445100474 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 37.888605445100474 + ], + [ + 69.54843643348367, + 37.69395771017202 + ], + [ + 69.66327911696736, + 37.888605445100474 + ], + [ + 69.43359375, + 37.888605445100474 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 38.27790091495738 + ], + [ + 69.66327911696736, + 38.27790091495738 + ], + [ + 69.54843643348367, + 38.47254864988583 + ], + [ + 69.43359375, + 38.27790091495738 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 38.27790091495738 + ], + [ + 69.54843643348367, + 38.47254864988583 + ], + [ + 69.31875106651633, + 38.47254864988583 + ], + [ + 69.43359375, + 38.27790091495738 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 38.27790091495738 + ], + [ + 69.31875106651633, + 38.47254864988583 + ], + [ + 69.20390838303264, + 38.27790091495738 + ], + [ + 69.43359375, + 38.27790091495738 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 38.27790091495738 + ], + [ + 69.20390838303264, + 38.27790091495738 + ], + [ + 69.31875106651633, + 38.083253180028926 + ], + [ + 69.43359375, + 38.27790091495738 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 38.27790091495738 + ], + [ + 69.31875106651633, + 38.083253180028926 + ], + [ + 69.54843643348367, + 38.083253180028926 + ], + [ + 69.43359375, + 38.27790091495738 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 38.27790091495738 + ], + [ + 69.54843643348367, + 38.083253180028926 + ], + [ + 69.66327911696736, + 38.27790091495738 + ], + [ + 69.43359375, + 38.27790091495738 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 38.66719638481428 + ], + [ + 69.66327911696736, + 38.66719638481428 + ], + [ + 69.54843643348367, + 38.861844119742734 + ], + [ + 69.43359375, + 38.66719638481428 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 38.66719638481428 + ], + [ + 69.54843643348367, + 38.861844119742734 + ], + [ + 69.31875106651633, + 38.861844119742734 + ], + [ + 69.43359375, + 38.66719638481428 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 38.66719638481428 + ], + [ + 69.31875106651633, + 38.861844119742734 + ], + [ + 69.20390838303264, + 38.66719638481428 + ], + [ + 69.43359375, + 38.66719638481428 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 38.66719638481428 + ], + [ + 69.20390838303264, + 38.66719638481428 + ], + [ + 69.31875106651633, + 38.47254864988583 + ], + [ + 69.43359375, + 38.66719638481428 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 38.66719638481428 + ], + [ + 69.31875106651633, + 38.47254864988583 + ], + [ + 69.54843643348367, + 38.47254864988583 + ], + [ + 69.43359375, + 38.66719638481428 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 38.66719638481428 + ], + [ + 69.54843643348367, + 38.47254864988583 + ], + [ + 69.66327911696736, + 38.66719638481428 + ], + [ + 69.43359375, + 38.66719638481428 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 39.05649185467119 + ], + [ + 69.66327911696736, + 39.05649185467119 + ], + [ + 69.54843643348367, + 39.25113958959964 + ], + [ + 69.43359375, + 39.05649185467119 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 39.05649185467119 + ], + [ + 69.54843643348367, + 39.25113958959964 + ], + [ + 69.31875106651633, + 39.25113958959964 + ], + [ + 69.43359375, + 39.05649185467119 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 39.05649185467119 + ], + [ + 69.31875106651633, + 39.25113958959964 + ], + [ + 69.20390838303264, + 39.05649185467119 + ], + [ + 69.43359375, + 39.05649185467119 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 39.05649185467119 + ], + [ + 69.20390838303264, + 39.05649185467119 + ], + [ + 69.31875106651633, + 38.861844119742734 + ], + [ + 69.43359375, + 39.05649185467119 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 39.05649185467119 + ], + [ + 69.31875106651633, + 38.861844119742734 + ], + [ + 69.54843643348367, + 38.861844119742734 + ], + [ + 69.43359375, + 39.05649185467119 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 39.05649185467119 + ], + [ + 69.54843643348367, + 38.861844119742734 + ], + [ + 69.66327911696736, + 39.05649185467119 + ], + [ + 69.43359375, + 39.05649185467119 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 39.4457873245281 + ], + [ + 69.66327911696736, + 39.4457873245281 + ], + [ + 69.54843643348367, + 39.64043505945655 + ], + [ + 69.43359375, + 39.4457873245281 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 39.4457873245281 + ], + [ + 69.54843643348367, + 39.64043505945655 + ], + [ + 69.31875106651633, + 39.64043505945655 + ], + [ + 69.43359375, + 39.4457873245281 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 39.4457873245281 + ], + [ + 69.31875106651633, + 39.64043505945655 + ], + [ + 69.20390838303264, + 39.4457873245281 + ], + [ + 69.43359375, + 39.4457873245281 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 39.4457873245281 + ], + [ + 69.20390838303264, + 39.4457873245281 + ], + [ + 69.31875106651633, + 39.251139589599646 + ], + [ + 69.43359375, + 39.4457873245281 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 39.4457873245281 + ], + [ + 69.31875106651633, + 39.251139589599646 + ], + [ + 69.54843643348367, + 39.251139589599646 + ], + [ + 69.43359375, + 39.4457873245281 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 39.4457873245281 + ], + [ + 69.54843643348367, + 39.251139589599646 + ], + [ + 69.66327911696736, + 39.4457873245281 + ], + [ + 69.43359375, + 39.4457873245281 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 39.835082794385 + ], + [ + 69.66327911696736, + 39.835082794385 + ], + [ + 69.54843643348367, + 40.029730529313454 + ], + [ + 69.43359375, + 39.835082794385 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 39.835082794385 + ], + [ + 69.54843643348367, + 40.029730529313454 + ], + [ + 69.31875106651633, + 40.029730529313454 + ], + [ + 69.43359375, + 39.835082794385 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 39.835082794385 + ], + [ + 69.31875106651633, + 40.029730529313454 + ], + [ + 69.20390838303264, + 39.835082794385 + ], + [ + 69.43359375, + 39.835082794385 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 39.835082794385 + ], + [ + 69.20390838303264, + 39.835082794385 + ], + [ + 69.31875106651633, + 39.64043505945655 + ], + [ + 69.43359375, + 39.835082794385 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 39.835082794385 + ], + [ + 69.31875106651633, + 39.64043505945655 + ], + [ + 69.54843643348367, + 39.64043505945655 + ], + [ + 69.43359375, + 39.835082794385 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 39.835082794385 + ], + [ + 69.54843643348367, + 39.64043505945655 + ], + [ + 69.66327911696736, + 39.835082794385 + ], + [ + 69.43359375, + 39.835082794385 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 40.22437826424191 + ], + [ + 69.66327911696736, + 40.22437826424191 + ], + [ + 69.54843643348367, + 40.419025999170366 + ], + [ + 69.43359375, + 40.22437826424191 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 40.22437826424191 + ], + [ + 69.54843643348367, + 40.419025999170366 + ], + [ + 69.31875106651633, + 40.419025999170366 + ], + [ + 69.43359375, + 40.22437826424191 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 40.22437826424191 + ], + [ + 69.31875106651633, + 40.419025999170366 + ], + [ + 69.20390838303264, + 40.22437826424191 + ], + [ + 69.43359375, + 40.22437826424191 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 40.22437826424191 + ], + [ + 69.20390838303264, + 40.22437826424191 + ], + [ + 69.31875106651633, + 40.02973052931346 + ], + [ + 69.43359375, + 40.22437826424191 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 40.22437826424191 + ], + [ + 69.31875106651633, + 40.02973052931346 + ], + [ + 69.54843643348367, + 40.02973052931346 + ], + [ + 69.43359375, + 40.22437826424191 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 40.22437826424191 + ], + [ + 69.54843643348367, + 40.02973052931346 + ], + [ + 69.66327911696736, + 40.22437826424191 + ], + [ + 69.43359375, + 40.22437826424191 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 40.61367373409882 + ], + [ + 69.66327911696736, + 40.61367373409882 + ], + [ + 69.54843643348367, + 40.80832146902727 + ], + [ + 69.43359375, + 40.61367373409882 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 40.61367373409882 + ], + [ + 69.54843643348367, + 40.80832146902727 + ], + [ + 69.31875106651633, + 40.80832146902727 + ], + [ + 69.43359375, + 40.61367373409882 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 40.61367373409882 + ], + [ + 69.31875106651633, + 40.80832146902727 + ], + [ + 69.20390838303264, + 40.61367373409882 + ], + [ + 69.43359375, + 40.61367373409882 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 40.61367373409882 + ], + [ + 69.20390838303264, + 40.61367373409882 + ], + [ + 69.31875106651633, + 40.419025999170366 + ], + [ + 69.43359375, + 40.61367373409882 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 40.61367373409882 + ], + [ + 69.31875106651633, + 40.419025999170366 + ], + [ + 69.54843643348367, + 40.419025999170366 + ], + [ + 69.43359375, + 40.61367373409882 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 40.61367373409882 + ], + [ + 69.54843643348367, + 40.419025999170366 + ], + [ + 69.66327911696736, + 40.61367373409882 + ], + [ + 69.43359375, + 40.61367373409882 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 41.00296920395572 + ], + [ + 69.66327911696736, + 41.00296920395572 + ], + [ + 69.54843643348367, + 41.197616938884174 + ], + [ + 69.43359375, + 41.00296920395572 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 41.00296920395572 + ], + [ + 69.54843643348367, + 41.197616938884174 + ], + [ + 69.31875106651633, + 41.197616938884174 + ], + [ + 69.43359375, + 41.00296920395572 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 41.00296920395572 + ], + [ + 69.31875106651633, + 41.197616938884174 + ], + [ + 69.20390838303264, + 41.00296920395572 + ], + [ + 69.43359375, + 41.00296920395572 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 41.00296920395572 + ], + [ + 69.20390838303264, + 41.00296920395572 + ], + [ + 69.31875106651633, + 40.80832146902727 + ], + [ + 69.43359375, + 41.00296920395572 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 41.00296920395572 + ], + [ + 69.31875106651633, + 40.80832146902727 + ], + [ + 69.54843643348367, + 40.80832146902727 + ], + [ + 69.43359375, + 41.00296920395572 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 41.00296920395572 + ], + [ + 69.54843643348367, + 40.80832146902727 + ], + [ + 69.66327911696736, + 41.00296920395572 + ], + [ + 69.43359375, + 41.00296920395572 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 41.392264673812626 + ], + [ + 69.66327911696736, + 41.392264673812626 + ], + [ + 69.54843643348367, + 41.58691240874108 + ], + [ + 69.43359375, + 41.392264673812626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 41.392264673812626 + ], + [ + 69.54843643348367, + 41.58691240874108 + ], + [ + 69.31875106651633, + 41.58691240874108 + ], + [ + 69.43359375, + 41.392264673812626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 41.392264673812626 + ], + [ + 69.31875106651633, + 41.58691240874108 + ], + [ + 69.20390838303264, + 41.392264673812626 + ], + [ + 69.43359375, + 41.392264673812626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 41.392264673812626 + ], + [ + 69.20390838303264, + 41.392264673812626 + ], + [ + 69.31875106651633, + 41.197616938884174 + ], + [ + 69.43359375, + 41.392264673812626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 41.392264673812626 + ], + [ + 69.31875106651633, + 41.197616938884174 + ], + [ + 69.54843643348367, + 41.197616938884174 + ], + [ + 69.43359375, + 41.392264673812626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 41.392264673812626 + ], + [ + 69.54843643348367, + 41.197616938884174 + ], + [ + 69.66327911696736, + 41.392264673812626 + ], + [ + 69.43359375, + 41.392264673812626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 41.78156014366953 + ], + [ + 69.66327911696736, + 41.78156014366953 + ], + [ + 69.54843643348367, + 41.97620787859798 + ], + [ + 69.43359375, + 41.78156014366953 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 41.78156014366953 + ], + [ + 69.54843643348367, + 41.97620787859798 + ], + [ + 69.31875106651633, + 41.97620787859798 + ], + [ + 69.43359375, + 41.78156014366953 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 41.78156014366953 + ], + [ + 69.31875106651633, + 41.97620787859798 + ], + [ + 69.20390838303264, + 41.78156014366953 + ], + [ + 69.43359375, + 41.78156014366953 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 41.78156014366953 + ], + [ + 69.20390838303264, + 41.78156014366953 + ], + [ + 69.31875106651633, + 41.58691240874108 + ], + [ + 69.43359375, + 41.78156014366953 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 41.78156014366953 + ], + [ + 69.31875106651633, + 41.58691240874108 + ], + [ + 69.54843643348367, + 41.58691240874108 + ], + [ + 69.43359375, + 41.78156014366953 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 41.78156014366953 + ], + [ + 69.54843643348367, + 41.58691240874108 + ], + [ + 69.66327911696736, + 41.78156014366953 + ], + [ + 69.43359375, + 41.78156014366953 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 42.17085561352644 + ], + [ + 69.66327911696736, + 42.17085561352644 + ], + [ + 69.54843643348367, + 42.365503348454894 + ], + [ + 69.43359375, + 42.17085561352644 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 42.17085561352644 + ], + [ + 69.54843643348367, + 42.365503348454894 + ], + [ + 69.31875106651633, + 42.365503348454894 + ], + [ + 69.43359375, + 42.17085561352644 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 42.17085561352644 + ], + [ + 69.31875106651633, + 42.365503348454894 + ], + [ + 69.20390838303264, + 42.17085561352644 + ], + [ + 69.43359375, + 42.17085561352644 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 42.17085561352644 + ], + [ + 69.20390838303264, + 42.17085561352644 + ], + [ + 69.31875106651633, + 41.97620787859799 + ], + [ + 69.43359375, + 42.17085561352644 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 42.17085561352644 + ], + [ + 69.31875106651633, + 41.97620787859799 + ], + [ + 69.54843643348367, + 41.97620787859799 + ], + [ + 69.43359375, + 42.17085561352644 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 42.17085561352644 + ], + [ + 69.54843643348367, + 41.97620787859799 + ], + [ + 69.66327911696736, + 42.17085561352644 + ], + [ + 69.43359375, + 42.17085561352644 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 42.56015108338335 + ], + [ + 69.66327911696736, + 42.56015108338335 + ], + [ + 69.54843643348367, + 42.754798818311805 + ], + [ + 69.43359375, + 42.56015108338335 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 42.56015108338335 + ], + [ + 69.54843643348367, + 42.754798818311805 + ], + [ + 69.31875106651633, + 42.754798818311805 + ], + [ + 69.43359375, + 42.56015108338335 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 42.56015108338335 + ], + [ + 69.31875106651633, + 42.754798818311805 + ], + [ + 69.20390838303264, + 42.56015108338335 + ], + [ + 69.43359375, + 42.56015108338335 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 42.56015108338335 + ], + [ + 69.20390838303264, + 42.56015108338335 + ], + [ + 69.31875106651633, + 42.3655033484549 + ], + [ + 69.43359375, + 42.56015108338335 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 42.56015108338335 + ], + [ + 69.31875106651633, + 42.3655033484549 + ], + [ + 69.54843643348367, + 42.3655033484549 + ], + [ + 69.43359375, + 42.56015108338335 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 42.56015108338335 + ], + [ + 69.54843643348367, + 42.3655033484549 + ], + [ + 69.66327911696736, + 42.56015108338335 + ], + [ + 69.43359375, + 42.56015108338335 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 42.94944655324026 + ], + [ + 69.66327911696736, + 42.94944655324026 + ], + [ + 69.54843643348367, + 43.14409428816871 + ], + [ + 69.43359375, + 42.94944655324026 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 42.94944655324026 + ], + [ + 69.54843643348367, + 43.14409428816871 + ], + [ + 69.31875106651633, + 43.14409428816871 + ], + [ + 69.43359375, + 42.94944655324026 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 42.94944655324026 + ], + [ + 69.31875106651633, + 43.14409428816871 + ], + [ + 69.20390838303264, + 42.94944655324026 + ], + [ + 69.43359375, + 42.94944655324026 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 42.94944655324026 + ], + [ + 69.20390838303264, + 42.94944655324026 + ], + [ + 69.31875106651633, + 42.754798818311805 + ], + [ + 69.43359375, + 42.94944655324026 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 42.94944655324026 + ], + [ + 69.31875106651633, + 42.754798818311805 + ], + [ + 69.54843643348367, + 42.754798818311805 + ], + [ + 69.43359375, + 42.94944655324026 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 42.94944655324026 + ], + [ + 69.54843643348367, + 42.754798818311805 + ], + [ + 69.66327911696736, + 42.94944655324026 + ], + [ + 69.43359375, + 42.94944655324026 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 43.33874202309716 + ], + [ + 69.66327911696736, + 43.33874202309716 + ], + [ + 69.54843643348367, + 43.53338975802561 + ], + [ + 69.43359375, + 43.33874202309716 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 43.33874202309716 + ], + [ + 69.54843643348367, + 43.53338975802561 + ], + [ + 69.31875106651633, + 43.53338975802561 + ], + [ + 69.43359375, + 43.33874202309716 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 43.33874202309716 + ], + [ + 69.31875106651633, + 43.53338975802561 + ], + [ + 69.20390838303264, + 43.33874202309716 + ], + [ + 69.43359375, + 43.33874202309716 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 43.33874202309716 + ], + [ + 69.20390838303264, + 43.33874202309716 + ], + [ + 69.31875106651633, + 43.14409428816871 + ], + [ + 69.43359375, + 43.33874202309716 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 43.33874202309716 + ], + [ + 69.31875106651633, + 43.14409428816871 + ], + [ + 69.54843643348367, + 43.14409428816871 + ], + [ + 69.43359375, + 43.33874202309716 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 43.33874202309716 + ], + [ + 69.54843643348367, + 43.14409428816871 + ], + [ + 69.66327911696736, + 43.33874202309716 + ], + [ + 69.43359375, + 43.33874202309716 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 43.728037492954066 + ], + [ + 69.66327911696736, + 43.728037492954066 + ], + [ + 69.54843643348367, + 43.92268522788252 + ], + [ + 69.43359375, + 43.728037492954066 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 43.728037492954066 + ], + [ + 69.54843643348367, + 43.92268522788252 + ], + [ + 69.31875106651633, + 43.92268522788252 + ], + [ + 69.43359375, + 43.728037492954066 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 43.728037492954066 + ], + [ + 69.31875106651633, + 43.92268522788252 + ], + [ + 69.20390838303264, + 43.728037492954066 + ], + [ + 69.43359375, + 43.728037492954066 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 43.728037492954066 + ], + [ + 69.20390838303264, + 43.728037492954066 + ], + [ + 69.31875106651633, + 43.53338975802561 + ], + [ + 69.43359375, + 43.728037492954066 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 43.728037492954066 + ], + [ + 69.31875106651633, + 43.53338975802561 + ], + [ + 69.54843643348367, + 43.53338975802561 + ], + [ + 69.43359375, + 43.728037492954066 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 43.728037492954066 + ], + [ + 69.54843643348367, + 43.53338975802561 + ], + [ + 69.66327911696736, + 43.728037492954066 + ], + [ + 69.43359375, + 43.728037492954066 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 44.11733296281097 + ], + [ + 69.66327911696736, + 44.11733296281097 + ], + [ + 69.54843643348367, + 44.31198069773942 + ], + [ + 69.43359375, + 44.11733296281097 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 44.11733296281097 + ], + [ + 69.54843643348367, + 44.31198069773942 + ], + [ + 69.31875106651633, + 44.31198069773942 + ], + [ + 69.43359375, + 44.11733296281097 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 44.11733296281097 + ], + [ + 69.31875106651633, + 44.31198069773942 + ], + [ + 69.20390838303264, + 44.11733296281097 + ], + [ + 69.43359375, + 44.11733296281097 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 44.11733296281097 + ], + [ + 69.20390838303264, + 44.11733296281097 + ], + [ + 69.31875106651633, + 43.92268522788252 + ], + [ + 69.43359375, + 44.11733296281097 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 44.11733296281097 + ], + [ + 69.31875106651633, + 43.92268522788252 + ], + [ + 69.54843643348367, + 43.92268522788252 + ], + [ + 69.43359375, + 44.11733296281097 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 44.11733296281097 + ], + [ + 69.54843643348367, + 43.92268522788252 + ], + [ + 69.66327911696736, + 44.11733296281097 + ], + [ + 69.43359375, + 44.11733296281097 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 44.506628432667874 + ], + [ + 69.66327911696736, + 44.506628432667874 + ], + [ + 69.54843643348367, + 44.701276167596326 + ], + [ + 69.43359375, + 44.506628432667874 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 44.506628432667874 + ], + [ + 69.54843643348367, + 44.701276167596326 + ], + [ + 69.31875106651633, + 44.701276167596326 + ], + [ + 69.43359375, + 44.506628432667874 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 44.506628432667874 + ], + [ + 69.31875106651633, + 44.701276167596326 + ], + [ + 69.20390838303264, + 44.506628432667874 + ], + [ + 69.43359375, + 44.506628432667874 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 44.506628432667874 + ], + [ + 69.20390838303264, + 44.506628432667874 + ], + [ + 69.31875106651633, + 44.31198069773942 + ], + [ + 69.43359375, + 44.506628432667874 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 44.506628432667874 + ], + [ + 69.31875106651633, + 44.31198069773942 + ], + [ + 69.54843643348367, + 44.31198069773942 + ], + [ + 69.43359375, + 44.506628432667874 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 44.506628432667874 + ], + [ + 69.54843643348367, + 44.31198069773942 + ], + [ + 69.66327911696736, + 44.506628432667874 + ], + [ + 69.43359375, + 44.506628432667874 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 44.89592390252479 + ], + [ + 69.66327911696736, + 44.89592390252479 + ], + [ + 69.54843643348367, + 45.090571637453245 + ], + [ + 69.43359375, + 44.89592390252479 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 44.89592390252479 + ], + [ + 69.54843643348367, + 45.090571637453245 + ], + [ + 69.31875106651633, + 45.090571637453245 + ], + [ + 69.43359375, + 44.89592390252479 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 44.89592390252479 + ], + [ + 69.31875106651633, + 45.090571637453245 + ], + [ + 69.20390838303264, + 44.89592390252479 + ], + [ + 69.43359375, + 44.89592390252479 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 44.89592390252479 + ], + [ + 69.20390838303264, + 44.89592390252479 + ], + [ + 69.31875106651633, + 44.70127616759634 + ], + [ + 69.43359375, + 44.89592390252479 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 44.89592390252479 + ], + [ + 69.31875106651633, + 44.70127616759634 + ], + [ + 69.54843643348367, + 44.70127616759634 + ], + [ + 69.43359375, + 44.89592390252479 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 44.89592390252479 + ], + [ + 69.54843643348367, + 44.70127616759634 + ], + [ + 69.66327911696736, + 44.89592390252479 + ], + [ + 69.43359375, + 44.89592390252479 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 45.2852193723817 + ], + [ + 69.66327911696736, + 45.2852193723817 + ], + [ + 69.54843643348367, + 45.47986710731015 + ], + [ + 69.43359375, + 45.2852193723817 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 45.2852193723817 + ], + [ + 69.54843643348367, + 45.47986710731015 + ], + [ + 69.31875106651633, + 45.47986710731015 + ], + [ + 69.43359375, + 45.2852193723817 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 45.2852193723817 + ], + [ + 69.31875106651633, + 45.47986710731015 + ], + [ + 69.20390838303264, + 45.2852193723817 + ], + [ + 69.43359375, + 45.2852193723817 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 45.2852193723817 + ], + [ + 69.20390838303264, + 45.2852193723817 + ], + [ + 69.31875106651633, + 45.090571637453245 + ], + [ + 69.43359375, + 45.2852193723817 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 45.2852193723817 + ], + [ + 69.31875106651633, + 45.090571637453245 + ], + [ + 69.54843643348367, + 45.090571637453245 + ], + [ + 69.43359375, + 45.2852193723817 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 45.2852193723817 + ], + [ + 69.54843643348367, + 45.090571637453245 + ], + [ + 69.66327911696736, + 45.2852193723817 + ], + [ + 69.43359375, + 45.2852193723817 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 45.6745148422386 + ], + [ + 69.66327911696736, + 45.6745148422386 + ], + [ + 69.54843643348367, + 45.86916257716705 + ], + [ + 69.43359375, + 45.6745148422386 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 45.6745148422386 + ], + [ + 69.54843643348367, + 45.86916257716705 + ], + [ + 69.31875106651633, + 45.86916257716705 + ], + [ + 69.43359375, + 45.6745148422386 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 45.6745148422386 + ], + [ + 69.31875106651633, + 45.86916257716705 + ], + [ + 69.20390838303264, + 45.6745148422386 + ], + [ + 69.43359375, + 45.6745148422386 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 45.6745148422386 + ], + [ + 69.20390838303264, + 45.6745148422386 + ], + [ + 69.31875106651633, + 45.47986710731015 + ], + [ + 69.43359375, + 45.6745148422386 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 45.6745148422386 + ], + [ + 69.31875106651633, + 45.47986710731015 + ], + [ + 69.54843643348367, + 45.47986710731015 + ], + [ + 69.43359375, + 45.6745148422386 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 45.6745148422386 + ], + [ + 69.54843643348367, + 45.47986710731015 + ], + [ + 69.66327911696736, + 45.6745148422386 + ], + [ + 69.43359375, + 45.6745148422386 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 46.063810312095505 + ], + [ + 69.66327911696736, + 46.063810312095505 + ], + [ + 69.54843643348367, + 46.25845804702396 + ], + [ + 69.43359375, + 46.063810312095505 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 46.063810312095505 + ], + [ + 69.54843643348367, + 46.25845804702396 + ], + [ + 69.31875106651633, + 46.25845804702396 + ], + [ + 69.43359375, + 46.063810312095505 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 46.063810312095505 + ], + [ + 69.31875106651633, + 46.25845804702396 + ], + [ + 69.20390838303264, + 46.063810312095505 + ], + [ + 69.43359375, + 46.063810312095505 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 46.063810312095505 + ], + [ + 69.20390838303264, + 46.063810312095505 + ], + [ + 69.31875106651633, + 45.86916257716705 + ], + [ + 69.43359375, + 46.063810312095505 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 46.063810312095505 + ], + [ + 69.31875106651633, + 45.86916257716705 + ], + [ + 69.54843643348367, + 45.86916257716705 + ], + [ + 69.43359375, + 46.063810312095505 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 46.063810312095505 + ], + [ + 69.54843643348367, + 45.86916257716705 + ], + [ + 69.66327911696736, + 46.063810312095505 + ], + [ + 69.43359375, + 46.063810312095505 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 46.45310578195241 + ], + [ + 69.66327911696736, + 46.45310578195241 + ], + [ + 69.54843643348367, + 46.64775351688086 + ], + [ + 69.43359375, + 46.45310578195241 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 46.45310578195241 + ], + [ + 69.54843643348367, + 46.64775351688086 + ], + [ + 69.31875106651633, + 46.64775351688086 + ], + [ + 69.43359375, + 46.45310578195241 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 46.45310578195241 + ], + [ + 69.31875106651633, + 46.64775351688086 + ], + [ + 69.20390838303264, + 46.45310578195241 + ], + [ + 69.43359375, + 46.45310578195241 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 46.45310578195241 + ], + [ + 69.20390838303264, + 46.45310578195241 + ], + [ + 69.31875106651633, + 46.25845804702396 + ], + [ + 69.43359375, + 46.45310578195241 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 46.45310578195241 + ], + [ + 69.31875106651633, + 46.25845804702396 + ], + [ + 69.54843643348367, + 46.25845804702396 + ], + [ + 69.43359375, + 46.45310578195241 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 46.45310578195241 + ], + [ + 69.54843643348367, + 46.25845804702396 + ], + [ + 69.66327911696736, + 46.45310578195241 + ], + [ + 69.43359375, + 46.45310578195241 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 46.842401251809314 + ], + [ + 69.66327911696736, + 46.842401251809314 + ], + [ + 69.54843643348367, + 47.037048986737766 + ], + [ + 69.43359375, + 46.842401251809314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 46.842401251809314 + ], + [ + 69.54843643348367, + 47.037048986737766 + ], + [ + 69.31875106651633, + 47.037048986737766 + ], + [ + 69.43359375, + 46.842401251809314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 46.842401251809314 + ], + [ + 69.31875106651633, + 47.037048986737766 + ], + [ + 69.20390838303264, + 46.842401251809314 + ], + [ + 69.43359375, + 46.842401251809314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 46.842401251809314 + ], + [ + 69.20390838303264, + 46.842401251809314 + ], + [ + 69.31875106651633, + 46.64775351688086 + ], + [ + 69.43359375, + 46.842401251809314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 46.842401251809314 + ], + [ + 69.31875106651633, + 46.64775351688086 + ], + [ + 69.54843643348367, + 46.64775351688086 + ], + [ + 69.43359375, + 46.842401251809314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 46.842401251809314 + ], + [ + 69.54843643348367, + 46.64775351688086 + ], + [ + 69.66327911696736, + 46.842401251809314 + ], + [ + 69.43359375, + 46.842401251809314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 47.23169672166622 + ], + [ + 69.66327911696736, + 47.23169672166622 + ], + [ + 69.54843643348367, + 47.42634445659467 + ], + [ + 69.43359375, + 47.23169672166622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 47.23169672166622 + ], + [ + 69.54843643348367, + 47.42634445659467 + ], + [ + 69.31875106651633, + 47.42634445659467 + ], + [ + 69.43359375, + 47.23169672166622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 47.23169672166622 + ], + [ + 69.31875106651633, + 47.42634445659467 + ], + [ + 69.20390838303264, + 47.23169672166622 + ], + [ + 69.43359375, + 47.23169672166622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 47.23169672166622 + ], + [ + 69.20390838303264, + 47.23169672166622 + ], + [ + 69.31875106651633, + 47.037048986737766 + ], + [ + 69.43359375, + 47.23169672166622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 47.23169672166622 + ], + [ + 69.31875106651633, + 47.037048986737766 + ], + [ + 69.54843643348367, + 47.037048986737766 + ], + [ + 69.43359375, + 47.23169672166622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 47.23169672166622 + ], + [ + 69.54843643348367, + 47.037048986737766 + ], + [ + 69.66327911696736, + 47.23169672166622 + ], + [ + 69.43359375, + 47.23169672166622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 47.620992191523136 + ], + [ + 69.66327911696736, + 47.620992191523136 + ], + [ + 69.54843643348367, + 47.81563992645159 + ], + [ + 69.43359375, + 47.620992191523136 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 47.620992191523136 + ], + [ + 69.54843643348367, + 47.81563992645159 + ], + [ + 69.31875106651633, + 47.81563992645159 + ], + [ + 69.43359375, + 47.620992191523136 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 47.620992191523136 + ], + [ + 69.31875106651633, + 47.81563992645159 + ], + [ + 69.20390838303264, + 47.620992191523136 + ], + [ + 69.43359375, + 47.620992191523136 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 47.620992191523136 + ], + [ + 69.20390838303264, + 47.620992191523136 + ], + [ + 69.31875106651633, + 47.426344456594684 + ], + [ + 69.43359375, + 47.620992191523136 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 47.620992191523136 + ], + [ + 69.31875106651633, + 47.426344456594684 + ], + [ + 69.54843643348367, + 47.426344456594684 + ], + [ + 69.43359375, + 47.620992191523136 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.43359375, + 47.620992191523136 + ], + [ + 69.54843643348367, + 47.426344456594684 + ], + [ + 69.66327911696736, + 47.620992191523136 + ], + [ + 69.43359375, + 47.620992191523136 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 12.0004566996162 + ], + [ + 70.0078071674184, + 12.0004566996162 + ], + [ + 69.89296448393472, + 12.195104434544653 + ], + [ + 69.77812180045105, + 12.0004566996162 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 12.0004566996162 + ], + [ + 69.89296448393472, + 12.195104434544653 + ], + [ + 69.66327911696737, + 12.195104434544653 + ], + [ + 69.77812180045105, + 12.0004566996162 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 12.0004566996162 + ], + [ + 69.66327911696737, + 12.195104434544653 + ], + [ + 69.54843643348369, + 12.0004566996162 + ], + [ + 69.77812180045105, + 12.0004566996162 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 12.0004566996162 + ], + [ + 69.54843643348369, + 12.0004566996162 + ], + [ + 69.66327911696737, + 11.805808964687746 + ], + [ + 69.77812180045105, + 12.0004566996162 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 12.0004566996162 + ], + [ + 69.66327911696737, + 11.805808964687746 + ], + [ + 69.89296448393472, + 11.805808964687746 + ], + [ + 69.77812180045105, + 12.0004566996162 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 12.0004566996162 + ], + [ + 69.89296448393472, + 11.805808964687746 + ], + [ + 70.0078071674184, + 12.0004566996162 + ], + [ + 69.77812180045105, + 12.0004566996162 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 12.389752169473105 + ], + [ + 70.0078071674184, + 12.389752169473105 + ], + [ + 69.89296448393472, + 12.58439990440156 + ], + [ + 69.77812180045105, + 12.389752169473105 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 12.389752169473105 + ], + [ + 69.89296448393472, + 12.58439990440156 + ], + [ + 69.66327911696737, + 12.58439990440156 + ], + [ + 69.77812180045105, + 12.389752169473105 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 12.389752169473105 + ], + [ + 69.66327911696737, + 12.58439990440156 + ], + [ + 69.54843643348369, + 12.389752169473105 + ], + [ + 69.77812180045105, + 12.389752169473105 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 12.389752169473105 + ], + [ + 69.54843643348369, + 12.389752169473105 + ], + [ + 69.66327911696737, + 12.195104434544652 + ], + [ + 69.77812180045105, + 12.389752169473105 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 12.389752169473105 + ], + [ + 69.66327911696737, + 12.195104434544652 + ], + [ + 69.89296448393472, + 12.195104434544652 + ], + [ + 69.77812180045105, + 12.389752169473105 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 12.389752169473105 + ], + [ + 69.89296448393472, + 12.195104434544652 + ], + [ + 70.0078071674184, + 12.389752169473105 + ], + [ + 69.77812180045105, + 12.389752169473105 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 12.779047639330013 + ], + [ + 70.0078071674184, + 12.779047639330013 + ], + [ + 69.89296448393472, + 12.973695374258467 + ], + [ + 69.77812180045105, + 12.779047639330013 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 12.779047639330013 + ], + [ + 69.89296448393472, + 12.973695374258467 + ], + [ + 69.66327911696737, + 12.973695374258467 + ], + [ + 69.77812180045105, + 12.779047639330013 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 12.779047639330013 + ], + [ + 69.66327911696737, + 12.973695374258467 + ], + [ + 69.54843643348369, + 12.779047639330013 + ], + [ + 69.77812180045105, + 12.779047639330013 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 12.779047639330013 + ], + [ + 69.54843643348369, + 12.779047639330013 + ], + [ + 69.66327911696737, + 12.58439990440156 + ], + [ + 69.77812180045105, + 12.779047639330013 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 12.779047639330013 + ], + [ + 69.66327911696737, + 12.58439990440156 + ], + [ + 69.89296448393472, + 12.58439990440156 + ], + [ + 69.77812180045105, + 12.779047639330013 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 12.779047639330013 + ], + [ + 69.89296448393472, + 12.58439990440156 + ], + [ + 70.0078071674184, + 12.779047639330013 + ], + [ + 69.77812180045105, + 12.779047639330013 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 13.16834310918692 + ], + [ + 70.0078071674184, + 13.16834310918692 + ], + [ + 69.89296448393472, + 13.362990844115373 + ], + [ + 69.77812180045105, + 13.16834310918692 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 13.16834310918692 + ], + [ + 69.89296448393472, + 13.362990844115373 + ], + [ + 69.66327911696737, + 13.362990844115373 + ], + [ + 69.77812180045105, + 13.16834310918692 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 13.16834310918692 + ], + [ + 69.66327911696737, + 13.362990844115373 + ], + [ + 69.54843643348369, + 13.16834310918692 + ], + [ + 69.77812180045105, + 13.16834310918692 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 13.16834310918692 + ], + [ + 69.54843643348369, + 13.16834310918692 + ], + [ + 69.66327911696737, + 12.973695374258465 + ], + [ + 69.77812180045105, + 13.16834310918692 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 13.16834310918692 + ], + [ + 69.66327911696737, + 12.973695374258465 + ], + [ + 69.89296448393472, + 12.973695374258465 + ], + [ + 69.77812180045105, + 13.16834310918692 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 13.16834310918692 + ], + [ + 69.89296448393472, + 12.973695374258465 + ], + [ + 70.0078071674184, + 13.16834310918692 + ], + [ + 69.77812180045105, + 13.16834310918692 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 13.557638579043825 + ], + [ + 70.0078071674184, + 13.557638579043825 + ], + [ + 69.89296448393472, + 13.752286313972279 + ], + [ + 69.77812180045105, + 13.557638579043825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 13.557638579043825 + ], + [ + 69.89296448393472, + 13.752286313972279 + ], + [ + 69.66327911696737, + 13.752286313972279 + ], + [ + 69.77812180045105, + 13.557638579043825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 13.557638579043825 + ], + [ + 69.66327911696737, + 13.752286313972279 + ], + [ + 69.54843643348369, + 13.557638579043825 + ], + [ + 69.77812180045105, + 13.557638579043825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 13.557638579043825 + ], + [ + 69.54843643348369, + 13.557638579043825 + ], + [ + 69.66327911696737, + 13.362990844115371 + ], + [ + 69.77812180045105, + 13.557638579043825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 13.557638579043825 + ], + [ + 69.66327911696737, + 13.362990844115371 + ], + [ + 69.89296448393472, + 13.362990844115371 + ], + [ + 69.77812180045105, + 13.557638579043825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 13.557638579043825 + ], + [ + 69.89296448393472, + 13.362990844115371 + ], + [ + 70.0078071674184, + 13.557638579043825 + ], + [ + 69.77812180045105, + 13.557638579043825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 13.946934048900731 + ], + [ + 70.0078071674184, + 13.946934048900731 + ], + [ + 69.89296448393472, + 14.141581783829185 + ], + [ + 69.77812180045105, + 13.946934048900731 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 13.946934048900731 + ], + [ + 69.89296448393472, + 14.141581783829185 + ], + [ + 69.66327911696737, + 14.141581783829185 + ], + [ + 69.77812180045105, + 13.946934048900731 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 13.946934048900731 + ], + [ + 69.66327911696737, + 14.141581783829185 + ], + [ + 69.54843643348369, + 13.946934048900731 + ], + [ + 69.77812180045105, + 13.946934048900731 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 13.946934048900731 + ], + [ + 69.54843643348369, + 13.946934048900731 + ], + [ + 69.66327911696737, + 13.752286313972277 + ], + [ + 69.77812180045105, + 13.946934048900731 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 13.946934048900731 + ], + [ + 69.66327911696737, + 13.752286313972277 + ], + [ + 69.89296448393472, + 13.752286313972277 + ], + [ + 69.77812180045105, + 13.946934048900731 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 13.946934048900731 + ], + [ + 69.89296448393472, + 13.752286313972277 + ], + [ + 70.0078071674184, + 13.946934048900731 + ], + [ + 69.77812180045105, + 13.946934048900731 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 14.336229518757637 + ], + [ + 70.0078071674184, + 14.336229518757637 + ], + [ + 69.89296448393472, + 14.530877253686091 + ], + [ + 69.77812180045105, + 14.336229518757637 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 14.336229518757637 + ], + [ + 69.89296448393472, + 14.530877253686091 + ], + [ + 69.66327911696737, + 14.530877253686091 + ], + [ + 69.77812180045105, + 14.336229518757637 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 14.336229518757637 + ], + [ + 69.66327911696737, + 14.530877253686091 + ], + [ + 69.54843643348369, + 14.336229518757637 + ], + [ + 69.77812180045105, + 14.336229518757637 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 14.336229518757637 + ], + [ + 69.54843643348369, + 14.336229518757637 + ], + [ + 69.66327911696737, + 14.141581783829183 + ], + [ + 69.77812180045105, + 14.336229518757637 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 14.336229518757637 + ], + [ + 69.66327911696737, + 14.141581783829183 + ], + [ + 69.89296448393472, + 14.141581783829183 + ], + [ + 69.77812180045105, + 14.336229518757637 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 14.336229518757637 + ], + [ + 69.89296448393472, + 14.141581783829183 + ], + [ + 70.0078071674184, + 14.336229518757637 + ], + [ + 69.77812180045105, + 14.336229518757637 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 14.725524988614545 + ], + [ + 70.0078071674184, + 14.725524988614545 + ], + [ + 69.89296448393472, + 14.920172723542999 + ], + [ + 69.77812180045105, + 14.725524988614545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 14.725524988614545 + ], + [ + 69.89296448393472, + 14.920172723542999 + ], + [ + 69.66327911696737, + 14.920172723542999 + ], + [ + 69.77812180045105, + 14.725524988614545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 14.725524988614545 + ], + [ + 69.66327911696737, + 14.920172723542999 + ], + [ + 69.54843643348369, + 14.725524988614545 + ], + [ + 69.77812180045105, + 14.725524988614545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 14.725524988614545 + ], + [ + 69.54843643348369, + 14.725524988614545 + ], + [ + 69.66327911696737, + 14.530877253686091 + ], + [ + 69.77812180045105, + 14.725524988614545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 14.725524988614545 + ], + [ + 69.66327911696737, + 14.530877253686091 + ], + [ + 69.89296448393472, + 14.530877253686091 + ], + [ + 69.77812180045105, + 14.725524988614545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 14.725524988614545 + ], + [ + 69.89296448393472, + 14.530877253686091 + ], + [ + 70.0078071674184, + 14.725524988614545 + ], + [ + 69.77812180045105, + 14.725524988614545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 15.114820458471451 + ], + [ + 70.0078071674184, + 15.114820458471451 + ], + [ + 69.89296448393472, + 15.309468193399905 + ], + [ + 69.77812180045105, + 15.114820458471451 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 15.114820458471451 + ], + [ + 69.89296448393472, + 15.309468193399905 + ], + [ + 69.66327911696737, + 15.309468193399905 + ], + [ + 69.77812180045105, + 15.114820458471451 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 15.114820458471451 + ], + [ + 69.66327911696737, + 15.309468193399905 + ], + [ + 69.54843643348369, + 15.114820458471451 + ], + [ + 69.77812180045105, + 15.114820458471451 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 15.114820458471451 + ], + [ + 69.54843643348369, + 15.114820458471451 + ], + [ + 69.66327911696737, + 14.920172723542997 + ], + [ + 69.77812180045105, + 15.114820458471451 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 15.114820458471451 + ], + [ + 69.66327911696737, + 14.920172723542997 + ], + [ + 69.89296448393472, + 14.920172723542997 + ], + [ + 69.77812180045105, + 15.114820458471451 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 15.114820458471451 + ], + [ + 69.89296448393472, + 14.920172723542997 + ], + [ + 70.0078071674184, + 15.114820458471451 + ], + [ + 69.77812180045105, + 15.114820458471451 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 15.504115928328357 + ], + [ + 70.0078071674184, + 15.504115928328357 + ], + [ + 69.89296448393472, + 15.69876366325681 + ], + [ + 69.77812180045105, + 15.504115928328357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 15.504115928328357 + ], + [ + 69.89296448393472, + 15.69876366325681 + ], + [ + 69.66327911696737, + 15.69876366325681 + ], + [ + 69.77812180045105, + 15.504115928328357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 15.504115928328357 + ], + [ + 69.66327911696737, + 15.69876366325681 + ], + [ + 69.54843643348369, + 15.504115928328357 + ], + [ + 69.77812180045105, + 15.504115928328357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 15.504115928328357 + ], + [ + 69.54843643348369, + 15.504115928328357 + ], + [ + 69.66327911696737, + 15.309468193399903 + ], + [ + 69.77812180045105, + 15.504115928328357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 15.504115928328357 + ], + [ + 69.66327911696737, + 15.309468193399903 + ], + [ + 69.89296448393472, + 15.309468193399903 + ], + [ + 69.77812180045105, + 15.504115928328357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 15.504115928328357 + ], + [ + 69.89296448393472, + 15.309468193399903 + ], + [ + 70.0078071674184, + 15.504115928328357 + ], + [ + 69.77812180045105, + 15.504115928328357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 15.893411398185265 + ], + [ + 70.0078071674184, + 15.893411398185265 + ], + [ + 69.89296448393472, + 16.088059133113717 + ], + [ + 69.77812180045105, + 15.893411398185265 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 15.893411398185265 + ], + [ + 69.89296448393472, + 16.088059133113717 + ], + [ + 69.66327911696737, + 16.088059133113717 + ], + [ + 69.77812180045105, + 15.893411398185265 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 15.893411398185265 + ], + [ + 69.66327911696737, + 16.088059133113717 + ], + [ + 69.54843643348369, + 15.893411398185265 + ], + [ + 69.77812180045105, + 15.893411398185265 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 15.893411398185265 + ], + [ + 69.54843643348369, + 15.893411398185265 + ], + [ + 69.66327911696737, + 15.69876366325681 + ], + [ + 69.77812180045105, + 15.893411398185265 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 15.893411398185265 + ], + [ + 69.66327911696737, + 15.69876366325681 + ], + [ + 69.89296448393472, + 15.69876366325681 + ], + [ + 69.77812180045105, + 15.893411398185265 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 15.893411398185265 + ], + [ + 69.89296448393472, + 15.69876366325681 + ], + [ + 70.0078071674184, + 15.893411398185265 + ], + [ + 69.77812180045105, + 15.893411398185265 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 16.28270686804217 + ], + [ + 70.0078071674184, + 16.28270686804217 + ], + [ + 69.89296448393472, + 16.47735460297062 + ], + [ + 69.77812180045105, + 16.28270686804217 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 16.28270686804217 + ], + [ + 69.89296448393472, + 16.47735460297062 + ], + [ + 69.66327911696737, + 16.47735460297062 + ], + [ + 69.77812180045105, + 16.28270686804217 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 16.28270686804217 + ], + [ + 69.66327911696737, + 16.47735460297062 + ], + [ + 69.54843643348369, + 16.28270686804217 + ], + [ + 69.77812180045105, + 16.28270686804217 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 16.28270686804217 + ], + [ + 69.54843643348369, + 16.28270686804217 + ], + [ + 69.66327911696737, + 16.088059133113717 + ], + [ + 69.77812180045105, + 16.28270686804217 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 16.28270686804217 + ], + [ + 69.66327911696737, + 16.088059133113717 + ], + [ + 69.89296448393472, + 16.088059133113717 + ], + [ + 69.77812180045105, + 16.28270686804217 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 16.28270686804217 + ], + [ + 69.89296448393472, + 16.088059133113717 + ], + [ + 70.0078071674184, + 16.28270686804217 + ], + [ + 69.77812180045105, + 16.28270686804217 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 16.672002337899077 + ], + [ + 70.0078071674184, + 16.672002337899077 + ], + [ + 69.89296448393472, + 16.86665007282753 + ], + [ + 69.77812180045105, + 16.672002337899077 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 16.672002337899077 + ], + [ + 69.89296448393472, + 16.86665007282753 + ], + [ + 69.66327911696737, + 16.86665007282753 + ], + [ + 69.77812180045105, + 16.672002337899077 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 16.672002337899077 + ], + [ + 69.66327911696737, + 16.86665007282753 + ], + [ + 69.54843643348369, + 16.672002337899077 + ], + [ + 69.77812180045105, + 16.672002337899077 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 16.672002337899077 + ], + [ + 69.54843643348369, + 16.672002337899077 + ], + [ + 69.66327911696737, + 16.477354602970625 + ], + [ + 69.77812180045105, + 16.672002337899077 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 16.672002337899077 + ], + [ + 69.66327911696737, + 16.477354602970625 + ], + [ + 69.89296448393472, + 16.477354602970625 + ], + [ + 69.77812180045105, + 16.672002337899077 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 16.672002337899077 + ], + [ + 69.89296448393472, + 16.477354602970625 + ], + [ + 70.0078071674184, + 16.672002337899077 + ], + [ + 69.77812180045105, + 16.672002337899077 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 17.06129780775598 + ], + [ + 70.0078071674184, + 17.06129780775598 + ], + [ + 69.89296448393472, + 17.255945542684433 + ], + [ + 69.77812180045105, + 17.06129780775598 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 17.06129780775598 + ], + [ + 69.89296448393472, + 17.255945542684433 + ], + [ + 69.66327911696737, + 17.255945542684433 + ], + [ + 69.77812180045105, + 17.06129780775598 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 17.06129780775598 + ], + [ + 69.66327911696737, + 17.255945542684433 + ], + [ + 69.54843643348369, + 17.06129780775598 + ], + [ + 69.77812180045105, + 17.06129780775598 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 17.06129780775598 + ], + [ + 69.54843643348369, + 17.06129780775598 + ], + [ + 69.66327911696737, + 16.86665007282753 + ], + [ + 69.77812180045105, + 17.06129780775598 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 17.06129780775598 + ], + [ + 69.66327911696737, + 16.86665007282753 + ], + [ + 69.89296448393472, + 16.86665007282753 + ], + [ + 69.77812180045105, + 17.06129780775598 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 17.06129780775598 + ], + [ + 69.89296448393472, + 16.86665007282753 + ], + [ + 70.0078071674184, + 17.06129780775598 + ], + [ + 69.77812180045105, + 17.06129780775598 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 17.45059327761289 + ], + [ + 70.0078071674184, + 17.45059327761289 + ], + [ + 69.89296448393472, + 17.64524101254134 + ], + [ + 69.77812180045105, + 17.45059327761289 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 17.45059327761289 + ], + [ + 69.89296448393472, + 17.64524101254134 + ], + [ + 69.66327911696737, + 17.64524101254134 + ], + [ + 69.77812180045105, + 17.45059327761289 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 17.45059327761289 + ], + [ + 69.66327911696737, + 17.64524101254134 + ], + [ + 69.54843643348369, + 17.45059327761289 + ], + [ + 69.77812180045105, + 17.45059327761289 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 17.45059327761289 + ], + [ + 69.54843643348369, + 17.45059327761289 + ], + [ + 69.66327911696737, + 17.255945542684437 + ], + [ + 69.77812180045105, + 17.45059327761289 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 17.45059327761289 + ], + [ + 69.66327911696737, + 17.255945542684437 + ], + [ + 69.89296448393472, + 17.255945542684437 + ], + [ + 69.77812180045105, + 17.45059327761289 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 17.45059327761289 + ], + [ + 69.89296448393472, + 17.255945542684437 + ], + [ + 70.0078071674184, + 17.45059327761289 + ], + [ + 69.77812180045105, + 17.45059327761289 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 17.839888747469793 + ], + [ + 70.0078071674184, + 17.839888747469793 + ], + [ + 69.89296448393472, + 18.034536482398245 + ], + [ + 69.77812180045105, + 17.839888747469793 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 17.839888747469793 + ], + [ + 69.89296448393472, + 18.034536482398245 + ], + [ + 69.66327911696737, + 18.034536482398245 + ], + [ + 69.77812180045105, + 17.839888747469793 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 17.839888747469793 + ], + [ + 69.66327911696737, + 18.034536482398245 + ], + [ + 69.54843643348369, + 17.839888747469793 + ], + [ + 69.77812180045105, + 17.839888747469793 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 17.839888747469793 + ], + [ + 69.54843643348369, + 17.839888747469793 + ], + [ + 69.66327911696737, + 17.64524101254134 + ], + [ + 69.77812180045105, + 17.839888747469793 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 17.839888747469793 + ], + [ + 69.66327911696737, + 17.64524101254134 + ], + [ + 69.89296448393472, + 17.64524101254134 + ], + [ + 69.77812180045105, + 17.839888747469793 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 17.839888747469793 + ], + [ + 69.89296448393472, + 17.64524101254134 + ], + [ + 70.0078071674184, + 17.839888747469793 + ], + [ + 69.77812180045105, + 17.839888747469793 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 18.2291842173267 + ], + [ + 70.0078071674184, + 18.2291842173267 + ], + [ + 69.89296448393472, + 18.423831952255153 + ], + [ + 69.77812180045105, + 18.2291842173267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 18.2291842173267 + ], + [ + 69.89296448393472, + 18.423831952255153 + ], + [ + 69.66327911696737, + 18.423831952255153 + ], + [ + 69.77812180045105, + 18.2291842173267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 18.2291842173267 + ], + [ + 69.66327911696737, + 18.423831952255153 + ], + [ + 69.54843643348369, + 18.2291842173267 + ], + [ + 69.77812180045105, + 18.2291842173267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 18.2291842173267 + ], + [ + 69.54843643348369, + 18.2291842173267 + ], + [ + 69.66327911696737, + 18.03453648239825 + ], + [ + 69.77812180045105, + 18.2291842173267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 18.2291842173267 + ], + [ + 69.66327911696737, + 18.03453648239825 + ], + [ + 69.89296448393472, + 18.03453648239825 + ], + [ + 69.77812180045105, + 18.2291842173267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 18.2291842173267 + ], + [ + 69.89296448393472, + 18.03453648239825 + ], + [ + 70.0078071674184, + 18.2291842173267 + ], + [ + 69.77812180045105, + 18.2291842173267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 18.61847968718361 + ], + [ + 70.0078071674184, + 18.61847968718361 + ], + [ + 69.89296448393472, + 18.81312742211206 + ], + [ + 69.77812180045105, + 18.61847968718361 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 18.61847968718361 + ], + [ + 69.89296448393472, + 18.81312742211206 + ], + [ + 69.66327911696737, + 18.81312742211206 + ], + [ + 69.77812180045105, + 18.61847968718361 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 18.61847968718361 + ], + [ + 69.66327911696737, + 18.81312742211206 + ], + [ + 69.54843643348369, + 18.61847968718361 + ], + [ + 69.77812180045105, + 18.61847968718361 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 18.61847968718361 + ], + [ + 69.54843643348369, + 18.61847968718361 + ], + [ + 69.66327911696737, + 18.423831952255156 + ], + [ + 69.77812180045105, + 18.61847968718361 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 18.61847968718361 + ], + [ + 69.66327911696737, + 18.423831952255156 + ], + [ + 69.89296448393472, + 18.423831952255156 + ], + [ + 69.77812180045105, + 18.61847968718361 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 18.61847968718361 + ], + [ + 69.89296448393472, + 18.423831952255156 + ], + [ + 70.0078071674184, + 18.61847968718361 + ], + [ + 69.77812180045105, + 18.61847968718361 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 19.007775157040513 + ], + [ + 70.0078071674184, + 19.007775157040513 + ], + [ + 69.89296448393472, + 19.202422891968965 + ], + [ + 69.77812180045105, + 19.007775157040513 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 19.007775157040513 + ], + [ + 69.89296448393472, + 19.202422891968965 + ], + [ + 69.66327911696737, + 19.202422891968965 + ], + [ + 69.77812180045105, + 19.007775157040513 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 19.007775157040513 + ], + [ + 69.66327911696737, + 19.202422891968965 + ], + [ + 69.54843643348369, + 19.007775157040513 + ], + [ + 69.77812180045105, + 19.007775157040513 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 19.007775157040513 + ], + [ + 69.54843643348369, + 19.007775157040513 + ], + [ + 69.66327911696737, + 18.81312742211206 + ], + [ + 69.77812180045105, + 19.007775157040513 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 19.007775157040513 + ], + [ + 69.66327911696737, + 18.81312742211206 + ], + [ + 69.89296448393472, + 18.81312742211206 + ], + [ + 69.77812180045105, + 19.007775157040513 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 19.007775157040513 + ], + [ + 69.89296448393472, + 18.81312742211206 + ], + [ + 70.0078071674184, + 19.007775157040513 + ], + [ + 69.77812180045105, + 19.007775157040513 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 19.39707062689742 + ], + [ + 70.0078071674184, + 19.39707062689742 + ], + [ + 69.89296448393472, + 19.591718361825873 + ], + [ + 69.77812180045105, + 19.39707062689742 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 19.39707062689742 + ], + [ + 69.89296448393472, + 19.591718361825873 + ], + [ + 69.66327911696737, + 19.591718361825873 + ], + [ + 69.77812180045105, + 19.39707062689742 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 19.39707062689742 + ], + [ + 69.66327911696737, + 19.591718361825873 + ], + [ + 69.54843643348369, + 19.39707062689742 + ], + [ + 69.77812180045105, + 19.39707062689742 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 19.39707062689742 + ], + [ + 69.54843643348369, + 19.39707062689742 + ], + [ + 69.66327911696737, + 19.20242289196897 + ], + [ + 69.77812180045105, + 19.39707062689742 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 19.39707062689742 + ], + [ + 69.66327911696737, + 19.20242289196897 + ], + [ + 69.89296448393472, + 19.20242289196897 + ], + [ + 69.77812180045105, + 19.39707062689742 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 19.39707062689742 + ], + [ + 69.89296448393472, + 19.20242289196897 + ], + [ + 70.0078071674184, + 19.39707062689742 + ], + [ + 69.77812180045105, + 19.39707062689742 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 19.78636609675433 + ], + [ + 70.0078071674184, + 19.78636609675433 + ], + [ + 69.89296448393472, + 19.98101383168278 + ], + [ + 69.77812180045105, + 19.78636609675433 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 19.78636609675433 + ], + [ + 69.89296448393472, + 19.98101383168278 + ], + [ + 69.66327911696737, + 19.98101383168278 + ], + [ + 69.77812180045105, + 19.78636609675433 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 19.78636609675433 + ], + [ + 69.66327911696737, + 19.98101383168278 + ], + [ + 69.54843643348369, + 19.78636609675433 + ], + [ + 69.77812180045105, + 19.78636609675433 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 19.78636609675433 + ], + [ + 69.54843643348369, + 19.78636609675433 + ], + [ + 69.66327911696737, + 19.591718361825876 + ], + [ + 69.77812180045105, + 19.78636609675433 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 19.78636609675433 + ], + [ + 69.66327911696737, + 19.591718361825876 + ], + [ + 69.89296448393472, + 19.591718361825876 + ], + [ + 69.77812180045105, + 19.78636609675433 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 19.78636609675433 + ], + [ + 69.89296448393472, + 19.591718361825876 + ], + [ + 70.0078071674184, + 19.78636609675433 + ], + [ + 69.77812180045105, + 19.78636609675433 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 20.175661566611232 + ], + [ + 70.0078071674184, + 20.175661566611232 + ], + [ + 69.89296448393472, + 20.370309301539685 + ], + [ + 69.77812180045105, + 20.175661566611232 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 20.175661566611232 + ], + [ + 69.89296448393472, + 20.370309301539685 + ], + [ + 69.66327911696737, + 20.370309301539685 + ], + [ + 69.77812180045105, + 20.175661566611232 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 20.175661566611232 + ], + [ + 69.66327911696737, + 20.370309301539685 + ], + [ + 69.54843643348369, + 20.175661566611232 + ], + [ + 69.77812180045105, + 20.175661566611232 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 20.175661566611232 + ], + [ + 69.54843643348369, + 20.175661566611232 + ], + [ + 69.66327911696737, + 19.98101383168278 + ], + [ + 69.77812180045105, + 20.175661566611232 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 20.175661566611232 + ], + [ + 69.66327911696737, + 19.98101383168278 + ], + [ + 69.89296448393472, + 19.98101383168278 + ], + [ + 69.77812180045105, + 20.175661566611232 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 20.175661566611232 + ], + [ + 69.89296448393472, + 19.98101383168278 + ], + [ + 70.0078071674184, + 20.175661566611232 + ], + [ + 69.77812180045105, + 20.175661566611232 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 20.564957036468137 + ], + [ + 70.0078071674184, + 20.564957036468137 + ], + [ + 69.89296448393472, + 20.75960477139659 + ], + [ + 69.77812180045105, + 20.564957036468137 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 20.564957036468137 + ], + [ + 69.89296448393472, + 20.75960477139659 + ], + [ + 69.66327911696737, + 20.75960477139659 + ], + [ + 69.77812180045105, + 20.564957036468137 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 20.564957036468137 + ], + [ + 69.66327911696737, + 20.75960477139659 + ], + [ + 69.54843643348369, + 20.564957036468137 + ], + [ + 69.77812180045105, + 20.564957036468137 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 20.564957036468137 + ], + [ + 69.54843643348369, + 20.564957036468137 + ], + [ + 69.66327911696737, + 20.370309301539685 + ], + [ + 69.77812180045105, + 20.564957036468137 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 20.564957036468137 + ], + [ + 69.66327911696737, + 20.370309301539685 + ], + [ + 69.89296448393472, + 20.370309301539685 + ], + [ + 69.77812180045105, + 20.564957036468137 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 20.564957036468137 + ], + [ + 69.89296448393472, + 20.370309301539685 + ], + [ + 70.0078071674184, + 20.564957036468137 + ], + [ + 69.77812180045105, + 20.564957036468137 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 20.954252506325044 + ], + [ + 70.0078071674184, + 20.954252506325044 + ], + [ + 69.89296448393472, + 21.148900241253497 + ], + [ + 69.77812180045105, + 20.954252506325044 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 20.954252506325044 + ], + [ + 69.89296448393472, + 21.148900241253497 + ], + [ + 69.66327911696737, + 21.148900241253497 + ], + [ + 69.77812180045105, + 20.954252506325044 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 20.954252506325044 + ], + [ + 69.66327911696737, + 21.148900241253497 + ], + [ + 69.54843643348369, + 20.954252506325044 + ], + [ + 69.77812180045105, + 20.954252506325044 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 20.954252506325044 + ], + [ + 69.54843643348369, + 20.954252506325044 + ], + [ + 69.66327911696737, + 20.759604771396592 + ], + [ + 69.77812180045105, + 20.954252506325044 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 20.954252506325044 + ], + [ + 69.66327911696737, + 20.759604771396592 + ], + [ + 69.89296448393472, + 20.759604771396592 + ], + [ + 69.77812180045105, + 20.954252506325044 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 20.954252506325044 + ], + [ + 69.89296448393472, + 20.759604771396592 + ], + [ + 70.0078071674184, + 20.954252506325044 + ], + [ + 69.77812180045105, + 20.954252506325044 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 21.343547976181952 + ], + [ + 70.0078071674184, + 21.343547976181952 + ], + [ + 69.89296448393472, + 21.538195711110404 + ], + [ + 69.77812180045105, + 21.343547976181952 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 21.343547976181952 + ], + [ + 69.89296448393472, + 21.538195711110404 + ], + [ + 69.66327911696737, + 21.538195711110404 + ], + [ + 69.77812180045105, + 21.343547976181952 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 21.343547976181952 + ], + [ + 69.66327911696737, + 21.538195711110404 + ], + [ + 69.54843643348369, + 21.343547976181952 + ], + [ + 69.77812180045105, + 21.343547976181952 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 21.343547976181952 + ], + [ + 69.54843643348369, + 21.343547976181952 + ], + [ + 69.66327911696737, + 21.1489002412535 + ], + [ + 69.77812180045105, + 21.343547976181952 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 21.343547976181952 + ], + [ + 69.66327911696737, + 21.1489002412535 + ], + [ + 69.89296448393472, + 21.1489002412535 + ], + [ + 69.77812180045105, + 21.343547976181952 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 21.343547976181952 + ], + [ + 69.89296448393472, + 21.1489002412535 + ], + [ + 70.0078071674184, + 21.343547976181952 + ], + [ + 69.77812180045105, + 21.343547976181952 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 21.732843446038856 + ], + [ + 70.0078071674184, + 21.732843446038856 + ], + [ + 69.89296448393472, + 21.92749118096731 + ], + [ + 69.77812180045105, + 21.732843446038856 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 21.732843446038856 + ], + [ + 69.89296448393472, + 21.92749118096731 + ], + [ + 69.66327911696737, + 21.92749118096731 + ], + [ + 69.77812180045105, + 21.732843446038856 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 21.732843446038856 + ], + [ + 69.66327911696737, + 21.92749118096731 + ], + [ + 69.54843643348369, + 21.732843446038856 + ], + [ + 69.77812180045105, + 21.732843446038856 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 21.732843446038856 + ], + [ + 69.54843643348369, + 21.732843446038856 + ], + [ + 69.66327911696737, + 21.538195711110404 + ], + [ + 69.77812180045105, + 21.732843446038856 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 21.732843446038856 + ], + [ + 69.66327911696737, + 21.538195711110404 + ], + [ + 69.89296448393472, + 21.538195711110404 + ], + [ + 69.77812180045105, + 21.732843446038856 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 21.732843446038856 + ], + [ + 69.89296448393472, + 21.538195711110404 + ], + [ + 70.0078071674184, + 21.732843446038856 + ], + [ + 69.77812180045105, + 21.732843446038856 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 22.122138915895764 + ], + [ + 70.0078071674184, + 22.122138915895764 + ], + [ + 69.89296448393472, + 22.316786650824216 + ], + [ + 69.77812180045105, + 22.122138915895764 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 22.122138915895764 + ], + [ + 69.89296448393472, + 22.316786650824216 + ], + [ + 69.66327911696737, + 22.316786650824216 + ], + [ + 69.77812180045105, + 22.122138915895764 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 22.122138915895764 + ], + [ + 69.66327911696737, + 22.316786650824216 + ], + [ + 69.54843643348369, + 22.122138915895764 + ], + [ + 69.77812180045105, + 22.122138915895764 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 22.122138915895764 + ], + [ + 69.54843643348369, + 22.122138915895764 + ], + [ + 69.66327911696737, + 21.927491180967312 + ], + [ + 69.77812180045105, + 22.122138915895764 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 22.122138915895764 + ], + [ + 69.66327911696737, + 21.927491180967312 + ], + [ + 69.89296448393472, + 21.927491180967312 + ], + [ + 69.77812180045105, + 22.122138915895764 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 22.122138915895764 + ], + [ + 69.89296448393472, + 21.927491180967312 + ], + [ + 70.0078071674184, + 22.122138915895764 + ], + [ + 69.77812180045105, + 22.122138915895764 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 22.511434385752672 + ], + [ + 70.0078071674184, + 22.511434385752672 + ], + [ + 69.89296448393472, + 22.706082120681124 + ], + [ + 69.77812180045105, + 22.511434385752672 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 22.511434385752672 + ], + [ + 69.89296448393472, + 22.706082120681124 + ], + [ + 69.66327911696737, + 22.706082120681124 + ], + [ + 69.77812180045105, + 22.511434385752672 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 22.511434385752672 + ], + [ + 69.66327911696737, + 22.706082120681124 + ], + [ + 69.54843643348369, + 22.511434385752672 + ], + [ + 69.77812180045105, + 22.511434385752672 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 22.511434385752672 + ], + [ + 69.54843643348369, + 22.511434385752672 + ], + [ + 69.66327911696737, + 22.31678665082422 + ], + [ + 69.77812180045105, + 22.511434385752672 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 22.511434385752672 + ], + [ + 69.66327911696737, + 22.31678665082422 + ], + [ + 69.89296448393472, + 22.31678665082422 + ], + [ + 69.77812180045105, + 22.511434385752672 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 22.511434385752672 + ], + [ + 69.89296448393472, + 22.31678665082422 + ], + [ + 70.0078071674184, + 22.511434385752672 + ], + [ + 69.77812180045105, + 22.511434385752672 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 22.900729855609576 + ], + [ + 70.0078071674184, + 22.900729855609576 + ], + [ + 69.89296448393472, + 23.09537759053803 + ], + [ + 69.77812180045105, + 22.900729855609576 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 22.900729855609576 + ], + [ + 69.89296448393472, + 23.09537759053803 + ], + [ + 69.66327911696737, + 23.09537759053803 + ], + [ + 69.77812180045105, + 22.900729855609576 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 22.900729855609576 + ], + [ + 69.66327911696737, + 23.09537759053803 + ], + [ + 69.54843643348369, + 22.900729855609576 + ], + [ + 69.77812180045105, + 22.900729855609576 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 22.900729855609576 + ], + [ + 69.54843643348369, + 22.900729855609576 + ], + [ + 69.66327911696737, + 22.706082120681124 + ], + [ + 69.77812180045105, + 22.900729855609576 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 22.900729855609576 + ], + [ + 69.66327911696737, + 22.706082120681124 + ], + [ + 69.89296448393472, + 22.706082120681124 + ], + [ + 69.77812180045105, + 22.900729855609576 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 22.900729855609576 + ], + [ + 69.89296448393472, + 22.706082120681124 + ], + [ + 70.0078071674184, + 22.900729855609576 + ], + [ + 69.77812180045105, + 22.900729855609576 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 23.290025325466484 + ], + [ + 70.0078071674184, + 23.290025325466484 + ], + [ + 69.89296448393472, + 23.484673060394936 + ], + [ + 69.77812180045105, + 23.290025325466484 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 23.290025325466484 + ], + [ + 69.89296448393472, + 23.484673060394936 + ], + [ + 69.66327911696737, + 23.484673060394936 + ], + [ + 69.77812180045105, + 23.290025325466484 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 23.290025325466484 + ], + [ + 69.66327911696737, + 23.484673060394936 + ], + [ + 69.54843643348369, + 23.290025325466484 + ], + [ + 69.77812180045105, + 23.290025325466484 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 23.290025325466484 + ], + [ + 69.54843643348369, + 23.290025325466484 + ], + [ + 69.66327911696737, + 23.095377590538032 + ], + [ + 69.77812180045105, + 23.290025325466484 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 23.290025325466484 + ], + [ + 69.66327911696737, + 23.095377590538032 + ], + [ + 69.89296448393472, + 23.095377590538032 + ], + [ + 69.77812180045105, + 23.290025325466484 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 23.290025325466484 + ], + [ + 69.89296448393472, + 23.095377590538032 + ], + [ + 70.0078071674184, + 23.290025325466484 + ], + [ + 69.77812180045105, + 23.290025325466484 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 23.67932079532339 + ], + [ + 70.0078071674184, + 23.67932079532339 + ], + [ + 69.89296448393472, + 23.873968530251844 + ], + [ + 69.77812180045105, + 23.67932079532339 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 23.67932079532339 + ], + [ + 69.89296448393472, + 23.873968530251844 + ], + [ + 69.66327911696737, + 23.873968530251844 + ], + [ + 69.77812180045105, + 23.67932079532339 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 23.67932079532339 + ], + [ + 69.66327911696737, + 23.873968530251844 + ], + [ + 69.54843643348369, + 23.67932079532339 + ], + [ + 69.77812180045105, + 23.67932079532339 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 23.67932079532339 + ], + [ + 69.54843643348369, + 23.67932079532339 + ], + [ + 69.66327911696737, + 23.48467306039494 + ], + [ + 69.77812180045105, + 23.67932079532339 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 23.67932079532339 + ], + [ + 69.66327911696737, + 23.48467306039494 + ], + [ + 69.89296448393472, + 23.48467306039494 + ], + [ + 69.77812180045105, + 23.67932079532339 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 23.67932079532339 + ], + [ + 69.89296448393472, + 23.48467306039494 + ], + [ + 70.0078071674184, + 23.67932079532339 + ], + [ + 69.77812180045105, + 23.67932079532339 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 24.068616265180296 + ], + [ + 70.0078071674184, + 24.068616265180296 + ], + [ + 69.89296448393472, + 24.263264000108748 + ], + [ + 69.77812180045105, + 24.068616265180296 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 24.068616265180296 + ], + [ + 69.89296448393472, + 24.263264000108748 + ], + [ + 69.66327911696737, + 24.263264000108748 + ], + [ + 69.77812180045105, + 24.068616265180296 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 24.068616265180296 + ], + [ + 69.66327911696737, + 24.263264000108748 + ], + [ + 69.54843643348369, + 24.068616265180296 + ], + [ + 69.77812180045105, + 24.068616265180296 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 24.068616265180296 + ], + [ + 69.54843643348369, + 24.068616265180296 + ], + [ + 69.66327911696737, + 23.873968530251844 + ], + [ + 69.77812180045105, + 24.068616265180296 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 24.068616265180296 + ], + [ + 69.66327911696737, + 23.873968530251844 + ], + [ + 69.89296448393472, + 23.873968530251844 + ], + [ + 69.77812180045105, + 24.068616265180296 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 24.068616265180296 + ], + [ + 69.89296448393472, + 23.873968530251844 + ], + [ + 70.0078071674184, + 24.068616265180296 + ], + [ + 69.77812180045105, + 24.068616265180296 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 24.4579117350372 + ], + [ + 70.0078071674184, + 24.4579117350372 + ], + [ + 69.89296448393472, + 24.652559469965652 + ], + [ + 69.77812180045105, + 24.4579117350372 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 24.4579117350372 + ], + [ + 69.89296448393472, + 24.652559469965652 + ], + [ + 69.66327911696737, + 24.652559469965652 + ], + [ + 69.77812180045105, + 24.4579117350372 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 24.4579117350372 + ], + [ + 69.66327911696737, + 24.652559469965652 + ], + [ + 69.54843643348369, + 24.4579117350372 + ], + [ + 69.77812180045105, + 24.4579117350372 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 24.4579117350372 + ], + [ + 69.54843643348369, + 24.4579117350372 + ], + [ + 69.66327911696737, + 24.263264000108748 + ], + [ + 69.77812180045105, + 24.4579117350372 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 24.4579117350372 + ], + [ + 69.66327911696737, + 24.263264000108748 + ], + [ + 69.89296448393472, + 24.263264000108748 + ], + [ + 69.77812180045105, + 24.4579117350372 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 24.4579117350372 + ], + [ + 69.89296448393472, + 24.263264000108748 + ], + [ + 70.0078071674184, + 24.4579117350372 + ], + [ + 69.77812180045105, + 24.4579117350372 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 24.847207204894108 + ], + [ + 70.0078071674184, + 24.847207204894108 + ], + [ + 69.89296448393472, + 25.04185493982256 + ], + [ + 69.77812180045105, + 24.847207204894108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 24.847207204894108 + ], + [ + 69.89296448393472, + 25.04185493982256 + ], + [ + 69.66327911696737, + 25.04185493982256 + ], + [ + 69.77812180045105, + 24.847207204894108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 24.847207204894108 + ], + [ + 69.66327911696737, + 25.04185493982256 + ], + [ + 69.54843643348369, + 24.847207204894108 + ], + [ + 69.77812180045105, + 24.847207204894108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 24.847207204894108 + ], + [ + 69.54843643348369, + 24.847207204894108 + ], + [ + 69.66327911696737, + 24.652559469965656 + ], + [ + 69.77812180045105, + 24.847207204894108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 24.847207204894108 + ], + [ + 69.66327911696737, + 24.652559469965656 + ], + [ + 69.89296448393472, + 24.652559469965656 + ], + [ + 69.77812180045105, + 24.847207204894108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 24.847207204894108 + ], + [ + 69.89296448393472, + 24.652559469965656 + ], + [ + 70.0078071674184, + 24.847207204894108 + ], + [ + 69.77812180045105, + 24.847207204894108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 25.236502674751016 + ], + [ + 70.0078071674184, + 25.236502674751016 + ], + [ + 69.89296448393472, + 25.431150409679468 + ], + [ + 69.77812180045105, + 25.236502674751016 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 25.236502674751016 + ], + [ + 69.89296448393472, + 25.431150409679468 + ], + [ + 69.66327911696737, + 25.431150409679468 + ], + [ + 69.77812180045105, + 25.236502674751016 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 25.236502674751016 + ], + [ + 69.66327911696737, + 25.431150409679468 + ], + [ + 69.54843643348369, + 25.236502674751016 + ], + [ + 69.77812180045105, + 25.236502674751016 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 25.236502674751016 + ], + [ + 69.54843643348369, + 25.236502674751016 + ], + [ + 69.66327911696737, + 25.041854939822564 + ], + [ + 69.77812180045105, + 25.236502674751016 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 25.236502674751016 + ], + [ + 69.66327911696737, + 25.041854939822564 + ], + [ + 69.89296448393472, + 25.041854939822564 + ], + [ + 69.77812180045105, + 25.236502674751016 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 25.236502674751016 + ], + [ + 69.89296448393472, + 25.041854939822564 + ], + [ + 70.0078071674184, + 25.236502674751016 + ], + [ + 69.77812180045105, + 25.236502674751016 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 25.62579814460792 + ], + [ + 70.0078071674184, + 25.62579814460792 + ], + [ + 69.89296448393472, + 25.820445879536372 + ], + [ + 69.77812180045105, + 25.62579814460792 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 25.62579814460792 + ], + [ + 69.89296448393472, + 25.820445879536372 + ], + [ + 69.66327911696737, + 25.820445879536372 + ], + [ + 69.77812180045105, + 25.62579814460792 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 25.62579814460792 + ], + [ + 69.66327911696737, + 25.820445879536372 + ], + [ + 69.54843643348369, + 25.62579814460792 + ], + [ + 69.77812180045105, + 25.62579814460792 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 25.62579814460792 + ], + [ + 69.54843643348369, + 25.62579814460792 + ], + [ + 69.66327911696737, + 25.431150409679468 + ], + [ + 69.77812180045105, + 25.62579814460792 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 25.62579814460792 + ], + [ + 69.66327911696737, + 25.431150409679468 + ], + [ + 69.89296448393472, + 25.431150409679468 + ], + [ + 69.77812180045105, + 25.62579814460792 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 25.62579814460792 + ], + [ + 69.89296448393472, + 25.431150409679468 + ], + [ + 70.0078071674184, + 25.62579814460792 + ], + [ + 69.77812180045105, + 25.62579814460792 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 26.015093614464828 + ], + [ + 70.0078071674184, + 26.015093614464828 + ], + [ + 69.89296448393472, + 26.20974134939328 + ], + [ + 69.77812180045105, + 26.015093614464828 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 26.015093614464828 + ], + [ + 69.89296448393472, + 26.20974134939328 + ], + [ + 69.66327911696737, + 26.20974134939328 + ], + [ + 69.77812180045105, + 26.015093614464828 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 26.015093614464828 + ], + [ + 69.66327911696737, + 26.20974134939328 + ], + [ + 69.54843643348369, + 26.015093614464828 + ], + [ + 69.77812180045105, + 26.015093614464828 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 26.015093614464828 + ], + [ + 69.54843643348369, + 26.015093614464828 + ], + [ + 69.66327911696737, + 25.820445879536376 + ], + [ + 69.77812180045105, + 26.015093614464828 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 26.015093614464828 + ], + [ + 69.66327911696737, + 25.820445879536376 + ], + [ + 69.89296448393472, + 25.820445879536376 + ], + [ + 69.77812180045105, + 26.015093614464828 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 26.015093614464828 + ], + [ + 69.89296448393472, + 25.820445879536376 + ], + [ + 70.0078071674184, + 26.015093614464828 + ], + [ + 69.77812180045105, + 26.015093614464828 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 26.404389084321735 + ], + [ + 70.0078071674184, + 26.404389084321735 + ], + [ + 69.89296448393472, + 26.599036819250188 + ], + [ + 69.77812180045105, + 26.404389084321735 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 26.404389084321735 + ], + [ + 69.89296448393472, + 26.599036819250188 + ], + [ + 69.66327911696737, + 26.599036819250188 + ], + [ + 69.77812180045105, + 26.404389084321735 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 26.404389084321735 + ], + [ + 69.66327911696737, + 26.599036819250188 + ], + [ + 69.54843643348369, + 26.404389084321735 + ], + [ + 69.77812180045105, + 26.404389084321735 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 26.404389084321735 + ], + [ + 69.54843643348369, + 26.404389084321735 + ], + [ + 69.66327911696737, + 26.209741349393283 + ], + [ + 69.77812180045105, + 26.404389084321735 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 26.404389084321735 + ], + [ + 69.66327911696737, + 26.209741349393283 + ], + [ + 69.89296448393472, + 26.209741349393283 + ], + [ + 69.77812180045105, + 26.404389084321735 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 26.404389084321735 + ], + [ + 69.89296448393472, + 26.209741349393283 + ], + [ + 70.0078071674184, + 26.404389084321735 + ], + [ + 69.77812180045105, + 26.404389084321735 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 26.79368455417864 + ], + [ + 70.0078071674184, + 26.79368455417864 + ], + [ + 69.89296448393472, + 26.988332289107092 + ], + [ + 69.77812180045105, + 26.79368455417864 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 26.79368455417864 + ], + [ + 69.89296448393472, + 26.988332289107092 + ], + [ + 69.66327911696737, + 26.988332289107092 + ], + [ + 69.77812180045105, + 26.79368455417864 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 26.79368455417864 + ], + [ + 69.66327911696737, + 26.988332289107092 + ], + [ + 69.54843643348369, + 26.79368455417864 + ], + [ + 69.77812180045105, + 26.79368455417864 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 26.79368455417864 + ], + [ + 69.54843643348369, + 26.79368455417864 + ], + [ + 69.66327911696737, + 26.599036819250188 + ], + [ + 69.77812180045105, + 26.79368455417864 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 26.79368455417864 + ], + [ + 69.66327911696737, + 26.599036819250188 + ], + [ + 69.89296448393472, + 26.599036819250188 + ], + [ + 69.77812180045105, + 26.79368455417864 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 26.79368455417864 + ], + [ + 69.89296448393472, + 26.599036819250188 + ], + [ + 70.0078071674184, + 26.79368455417864 + ], + [ + 69.77812180045105, + 26.79368455417864 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 27.182980024035547 + ], + [ + 70.0078071674184, + 27.182980024035547 + ], + [ + 69.89296448393472, + 27.377627758964 + ], + [ + 69.77812180045105, + 27.182980024035547 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 27.182980024035547 + ], + [ + 69.89296448393472, + 27.377627758964 + ], + [ + 69.66327911696737, + 27.377627758964 + ], + [ + 69.77812180045105, + 27.182980024035547 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 27.182980024035547 + ], + [ + 69.66327911696737, + 27.377627758964 + ], + [ + 69.54843643348369, + 27.182980024035547 + ], + [ + 69.77812180045105, + 27.182980024035547 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 27.182980024035547 + ], + [ + 69.54843643348369, + 27.182980024035547 + ], + [ + 69.66327911696737, + 26.988332289107095 + ], + [ + 69.77812180045105, + 27.182980024035547 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 27.182980024035547 + ], + [ + 69.66327911696737, + 26.988332289107095 + ], + [ + 69.89296448393472, + 26.988332289107095 + ], + [ + 69.77812180045105, + 27.182980024035547 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 27.182980024035547 + ], + [ + 69.89296448393472, + 26.988332289107095 + ], + [ + 70.0078071674184, + 27.182980024035547 + ], + [ + 69.77812180045105, + 27.182980024035547 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 27.572275493892455 + ], + [ + 70.0078071674184, + 27.572275493892455 + ], + [ + 69.89296448393472, + 27.766923228820907 + ], + [ + 69.77812180045105, + 27.572275493892455 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 27.572275493892455 + ], + [ + 69.89296448393472, + 27.766923228820907 + ], + [ + 69.66327911696737, + 27.766923228820907 + ], + [ + 69.77812180045105, + 27.572275493892455 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 27.572275493892455 + ], + [ + 69.66327911696737, + 27.766923228820907 + ], + [ + 69.54843643348369, + 27.572275493892455 + ], + [ + 69.77812180045105, + 27.572275493892455 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 27.572275493892455 + ], + [ + 69.54843643348369, + 27.572275493892455 + ], + [ + 69.66327911696737, + 27.377627758964003 + ], + [ + 69.77812180045105, + 27.572275493892455 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 27.572275493892455 + ], + [ + 69.66327911696737, + 27.377627758964003 + ], + [ + 69.89296448393472, + 27.377627758964003 + ], + [ + 69.77812180045105, + 27.572275493892455 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 27.572275493892455 + ], + [ + 69.89296448393472, + 27.377627758964003 + ], + [ + 70.0078071674184, + 27.572275493892455 + ], + [ + 69.77812180045105, + 27.572275493892455 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 27.96157096374936 + ], + [ + 70.0078071674184, + 27.96157096374936 + ], + [ + 69.89296448393472, + 28.15621869867781 + ], + [ + 69.77812180045105, + 27.96157096374936 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 27.96157096374936 + ], + [ + 69.89296448393472, + 28.15621869867781 + ], + [ + 69.66327911696737, + 28.15621869867781 + ], + [ + 69.77812180045105, + 27.96157096374936 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 27.96157096374936 + ], + [ + 69.66327911696737, + 28.15621869867781 + ], + [ + 69.54843643348369, + 27.96157096374936 + ], + [ + 69.77812180045105, + 27.96157096374936 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 27.96157096374936 + ], + [ + 69.54843643348369, + 27.96157096374936 + ], + [ + 69.66327911696737, + 27.766923228820907 + ], + [ + 69.77812180045105, + 27.96157096374936 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 27.96157096374936 + ], + [ + 69.66327911696737, + 27.766923228820907 + ], + [ + 69.89296448393472, + 27.766923228820907 + ], + [ + 69.77812180045105, + 27.96157096374936 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 27.96157096374936 + ], + [ + 69.89296448393472, + 27.766923228820907 + ], + [ + 70.0078071674184, + 27.96157096374936 + ], + [ + 69.77812180045105, + 27.96157096374936 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 28.350866433606267 + ], + [ + 70.0078071674184, + 28.350866433606267 + ], + [ + 69.89296448393472, + 28.54551416853472 + ], + [ + 69.77812180045105, + 28.350866433606267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 28.350866433606267 + ], + [ + 69.89296448393472, + 28.54551416853472 + ], + [ + 69.66327911696737, + 28.54551416853472 + ], + [ + 69.77812180045105, + 28.350866433606267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 28.350866433606267 + ], + [ + 69.66327911696737, + 28.54551416853472 + ], + [ + 69.54843643348369, + 28.350866433606267 + ], + [ + 69.77812180045105, + 28.350866433606267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 28.350866433606267 + ], + [ + 69.54843643348369, + 28.350866433606267 + ], + [ + 69.66327911696737, + 28.156218698677815 + ], + [ + 69.77812180045105, + 28.350866433606267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 28.350866433606267 + ], + [ + 69.66327911696737, + 28.156218698677815 + ], + [ + 69.89296448393472, + 28.156218698677815 + ], + [ + 69.77812180045105, + 28.350866433606267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 28.350866433606267 + ], + [ + 69.89296448393472, + 28.156218698677815 + ], + [ + 70.0078071674184, + 28.350866433606267 + ], + [ + 69.77812180045105, + 28.350866433606267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 28.74016190346317 + ], + [ + 70.0078071674184, + 28.74016190346317 + ], + [ + 69.89296448393472, + 28.934809638391624 + ], + [ + 69.77812180045105, + 28.74016190346317 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 28.74016190346317 + ], + [ + 69.89296448393472, + 28.934809638391624 + ], + [ + 69.66327911696737, + 28.934809638391624 + ], + [ + 69.77812180045105, + 28.74016190346317 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 28.74016190346317 + ], + [ + 69.66327911696737, + 28.934809638391624 + ], + [ + 69.54843643348369, + 28.74016190346317 + ], + [ + 69.77812180045105, + 28.74016190346317 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 28.74016190346317 + ], + [ + 69.54843643348369, + 28.74016190346317 + ], + [ + 69.66327911696737, + 28.54551416853472 + ], + [ + 69.77812180045105, + 28.74016190346317 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 28.74016190346317 + ], + [ + 69.66327911696737, + 28.54551416853472 + ], + [ + 69.89296448393472, + 28.54551416853472 + ], + [ + 69.77812180045105, + 28.74016190346317 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 28.74016190346317 + ], + [ + 69.89296448393472, + 28.54551416853472 + ], + [ + 70.0078071674184, + 28.74016190346317 + ], + [ + 69.77812180045105, + 28.74016190346317 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 29.12945737332008 + ], + [ + 70.0078071674184, + 29.12945737332008 + ], + [ + 69.89296448393472, + 29.32410510824853 + ], + [ + 69.77812180045105, + 29.12945737332008 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 29.12945737332008 + ], + [ + 69.89296448393472, + 29.32410510824853 + ], + [ + 69.66327911696737, + 29.32410510824853 + ], + [ + 69.77812180045105, + 29.12945737332008 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 29.12945737332008 + ], + [ + 69.66327911696737, + 29.32410510824853 + ], + [ + 69.54843643348369, + 29.12945737332008 + ], + [ + 69.77812180045105, + 29.12945737332008 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 29.12945737332008 + ], + [ + 69.54843643348369, + 29.12945737332008 + ], + [ + 69.66327911696737, + 28.934809638391627 + ], + [ + 69.77812180045105, + 29.12945737332008 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 29.12945737332008 + ], + [ + 69.66327911696737, + 28.934809638391627 + ], + [ + 69.89296448393472, + 28.934809638391627 + ], + [ + 69.77812180045105, + 29.12945737332008 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 29.12945737332008 + ], + [ + 69.89296448393472, + 28.934809638391627 + ], + [ + 70.0078071674184, + 29.12945737332008 + ], + [ + 69.77812180045105, + 29.12945737332008 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 29.518752843176983 + ], + [ + 70.0078071674184, + 29.518752843176983 + ], + [ + 69.89296448393472, + 29.713400578105436 + ], + [ + 69.77812180045105, + 29.518752843176983 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 29.518752843176983 + ], + [ + 69.89296448393472, + 29.713400578105436 + ], + [ + 69.66327911696737, + 29.713400578105436 + ], + [ + 69.77812180045105, + 29.518752843176983 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 29.518752843176983 + ], + [ + 69.66327911696737, + 29.713400578105436 + ], + [ + 69.54843643348369, + 29.518752843176983 + ], + [ + 69.77812180045105, + 29.518752843176983 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 29.518752843176983 + ], + [ + 69.54843643348369, + 29.518752843176983 + ], + [ + 69.66327911696737, + 29.32410510824853 + ], + [ + 69.77812180045105, + 29.518752843176983 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 29.518752843176983 + ], + [ + 69.66327911696737, + 29.32410510824853 + ], + [ + 69.89296448393472, + 29.32410510824853 + ], + [ + 69.77812180045105, + 29.518752843176983 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 29.518752843176983 + ], + [ + 69.89296448393472, + 29.32410510824853 + ], + [ + 70.0078071674184, + 29.518752843176983 + ], + [ + 69.77812180045105, + 29.518752843176983 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 29.90804831303389 + ], + [ + 70.0078071674184, + 29.90804831303389 + ], + [ + 69.89296448393472, + 30.102696047962343 + ], + [ + 69.77812180045105, + 29.90804831303389 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 29.90804831303389 + ], + [ + 69.89296448393472, + 30.102696047962343 + ], + [ + 69.66327911696737, + 30.102696047962343 + ], + [ + 69.77812180045105, + 29.90804831303389 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 29.90804831303389 + ], + [ + 69.66327911696737, + 30.102696047962343 + ], + [ + 69.54843643348369, + 29.90804831303389 + ], + [ + 69.77812180045105, + 29.90804831303389 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 29.90804831303389 + ], + [ + 69.54843643348369, + 29.90804831303389 + ], + [ + 69.66327911696737, + 29.71340057810544 + ], + [ + 69.77812180045105, + 29.90804831303389 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 29.90804831303389 + ], + [ + 69.66327911696737, + 29.71340057810544 + ], + [ + 69.89296448393472, + 29.71340057810544 + ], + [ + 69.77812180045105, + 29.90804831303389 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 29.90804831303389 + ], + [ + 69.89296448393472, + 29.71340057810544 + ], + [ + 70.0078071674184, + 29.90804831303389 + ], + [ + 69.77812180045105, + 29.90804831303389 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 30.297343782890795 + ], + [ + 70.0078071674184, + 30.297343782890795 + ], + [ + 69.89296448393472, + 30.491991517819248 + ], + [ + 69.77812180045105, + 30.297343782890795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 30.297343782890795 + ], + [ + 69.89296448393472, + 30.491991517819248 + ], + [ + 69.66327911696737, + 30.491991517819248 + ], + [ + 69.77812180045105, + 30.297343782890795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 30.297343782890795 + ], + [ + 69.66327911696737, + 30.491991517819248 + ], + [ + 69.54843643348369, + 30.297343782890795 + ], + [ + 69.77812180045105, + 30.297343782890795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 30.297343782890795 + ], + [ + 69.54843643348369, + 30.297343782890795 + ], + [ + 69.66327911696737, + 30.102696047962343 + ], + [ + 69.77812180045105, + 30.297343782890795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 30.297343782890795 + ], + [ + 69.66327911696737, + 30.102696047962343 + ], + [ + 69.89296448393472, + 30.102696047962343 + ], + [ + 69.77812180045105, + 30.297343782890795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 30.297343782890795 + ], + [ + 69.89296448393472, + 30.102696047962343 + ], + [ + 70.0078071674184, + 30.297343782890795 + ], + [ + 69.77812180045105, + 30.297343782890795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 30.686639252747703 + ], + [ + 70.0078071674184, + 30.686639252747703 + ], + [ + 69.89296448393472, + 30.881286987676155 + ], + [ + 69.77812180045105, + 30.686639252747703 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 30.686639252747703 + ], + [ + 69.89296448393472, + 30.881286987676155 + ], + [ + 69.66327911696737, + 30.881286987676155 + ], + [ + 69.77812180045105, + 30.686639252747703 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 30.686639252747703 + ], + [ + 69.66327911696737, + 30.881286987676155 + ], + [ + 69.54843643348369, + 30.686639252747703 + ], + [ + 69.77812180045105, + 30.686639252747703 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 30.686639252747703 + ], + [ + 69.54843643348369, + 30.686639252747703 + ], + [ + 69.66327911696737, + 30.49199151781925 + ], + [ + 69.77812180045105, + 30.686639252747703 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 30.686639252747703 + ], + [ + 69.66327911696737, + 30.49199151781925 + ], + [ + 69.89296448393472, + 30.49199151781925 + ], + [ + 69.77812180045105, + 30.686639252747703 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 30.686639252747703 + ], + [ + 69.89296448393472, + 30.49199151781925 + ], + [ + 70.0078071674184, + 30.686639252747703 + ], + [ + 69.77812180045105, + 30.686639252747703 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 31.07593472260461 + ], + [ + 70.0078071674184, + 31.07593472260461 + ], + [ + 69.89296448393472, + 31.270582457533063 + ], + [ + 69.77812180045105, + 31.07593472260461 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 31.07593472260461 + ], + [ + 69.89296448393472, + 31.270582457533063 + ], + [ + 69.66327911696737, + 31.270582457533063 + ], + [ + 69.77812180045105, + 31.07593472260461 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 31.07593472260461 + ], + [ + 69.66327911696737, + 31.270582457533063 + ], + [ + 69.54843643348369, + 31.07593472260461 + ], + [ + 69.77812180045105, + 31.07593472260461 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 31.07593472260461 + ], + [ + 69.54843643348369, + 31.07593472260461 + ], + [ + 69.66327911696737, + 30.88128698767616 + ], + [ + 69.77812180045105, + 31.07593472260461 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 31.07593472260461 + ], + [ + 69.66327911696737, + 30.88128698767616 + ], + [ + 69.89296448393472, + 30.88128698767616 + ], + [ + 69.77812180045105, + 31.07593472260461 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 31.07593472260461 + ], + [ + 69.89296448393472, + 30.88128698767616 + ], + [ + 70.0078071674184, + 31.07593472260461 + ], + [ + 69.77812180045105, + 31.07593472260461 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 31.465230192461515 + ], + [ + 70.0078071674184, + 31.465230192461515 + ], + [ + 69.89296448393472, + 31.659877927389967 + ], + [ + 69.77812180045105, + 31.465230192461515 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 31.465230192461515 + ], + [ + 69.89296448393472, + 31.659877927389967 + ], + [ + 69.66327911696737, + 31.659877927389967 + ], + [ + 69.77812180045105, + 31.465230192461515 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 31.465230192461515 + ], + [ + 69.66327911696737, + 31.659877927389967 + ], + [ + 69.54843643348369, + 31.465230192461515 + ], + [ + 69.77812180045105, + 31.465230192461515 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 31.465230192461515 + ], + [ + 69.54843643348369, + 31.465230192461515 + ], + [ + 69.66327911696737, + 31.270582457533063 + ], + [ + 69.77812180045105, + 31.465230192461515 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 31.465230192461515 + ], + [ + 69.66327911696737, + 31.270582457533063 + ], + [ + 69.89296448393472, + 31.270582457533063 + ], + [ + 69.77812180045105, + 31.465230192461515 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 31.465230192461515 + ], + [ + 69.89296448393472, + 31.270582457533063 + ], + [ + 70.0078071674184, + 31.465230192461515 + ], + [ + 69.77812180045105, + 31.465230192461515 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 31.854525662318423 + ], + [ + 70.0078071674184, + 31.854525662318423 + ], + [ + 69.89296448393472, + 32.049173397246875 + ], + [ + 69.77812180045105, + 31.854525662318423 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 31.854525662318423 + ], + [ + 69.89296448393472, + 32.049173397246875 + ], + [ + 69.66327911696737, + 32.049173397246875 + ], + [ + 69.77812180045105, + 31.854525662318423 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 31.854525662318423 + ], + [ + 69.66327911696737, + 32.049173397246875 + ], + [ + 69.54843643348369, + 31.854525662318423 + ], + [ + 69.77812180045105, + 31.854525662318423 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 31.854525662318423 + ], + [ + 69.54843643348369, + 31.854525662318423 + ], + [ + 69.66327911696737, + 31.65987792738997 + ], + [ + 69.77812180045105, + 31.854525662318423 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 31.854525662318423 + ], + [ + 69.66327911696737, + 31.65987792738997 + ], + [ + 69.89296448393472, + 31.65987792738997 + ], + [ + 69.77812180045105, + 31.854525662318423 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 31.854525662318423 + ], + [ + 69.89296448393472, + 31.65987792738997 + ], + [ + 70.0078071674184, + 31.854525662318423 + ], + [ + 69.77812180045105, + 31.854525662318423 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 32.24382113217533 + ], + [ + 70.0078071674184, + 32.24382113217533 + ], + [ + 69.89296448393472, + 32.43846886710378 + ], + [ + 69.77812180045105, + 32.24382113217533 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 32.24382113217533 + ], + [ + 69.89296448393472, + 32.43846886710378 + ], + [ + 69.66327911696737, + 32.43846886710378 + ], + [ + 69.77812180045105, + 32.24382113217533 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 32.24382113217533 + ], + [ + 69.66327911696737, + 32.43846886710378 + ], + [ + 69.54843643348369, + 32.24382113217533 + ], + [ + 69.77812180045105, + 32.24382113217533 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 32.24382113217533 + ], + [ + 69.54843643348369, + 32.24382113217533 + ], + [ + 69.66327911696737, + 32.049173397246875 + ], + [ + 69.77812180045105, + 32.24382113217533 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 32.24382113217533 + ], + [ + 69.66327911696737, + 32.049173397246875 + ], + [ + 69.89296448393472, + 32.049173397246875 + ], + [ + 69.77812180045105, + 32.24382113217533 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 32.24382113217533 + ], + [ + 69.89296448393472, + 32.049173397246875 + ], + [ + 70.0078071674184, + 32.24382113217533 + ], + [ + 69.77812180045105, + 32.24382113217533 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 32.63311660203224 + ], + [ + 70.0078071674184, + 32.63311660203224 + ], + [ + 69.89296448393472, + 32.82776433696069 + ], + [ + 69.77812180045105, + 32.63311660203224 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 32.63311660203224 + ], + [ + 69.89296448393472, + 32.82776433696069 + ], + [ + 69.66327911696737, + 32.82776433696069 + ], + [ + 69.77812180045105, + 32.63311660203224 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 32.63311660203224 + ], + [ + 69.66327911696737, + 32.82776433696069 + ], + [ + 69.54843643348369, + 32.63311660203224 + ], + [ + 69.77812180045105, + 32.63311660203224 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 32.63311660203224 + ], + [ + 69.54843643348369, + 32.63311660203224 + ], + [ + 69.66327911696737, + 32.438468867103786 + ], + [ + 69.77812180045105, + 32.63311660203224 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 32.63311660203224 + ], + [ + 69.66327911696737, + 32.438468867103786 + ], + [ + 69.89296448393472, + 32.438468867103786 + ], + [ + 69.77812180045105, + 32.63311660203224 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 32.63311660203224 + ], + [ + 69.89296448393472, + 32.438468867103786 + ], + [ + 70.0078071674184, + 32.63311660203224 + ], + [ + 69.77812180045105, + 32.63311660203224 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 33.02241207188914 + ], + [ + 70.0078071674184, + 33.02241207188914 + ], + [ + 69.89296448393472, + 33.217059806817595 + ], + [ + 69.77812180045105, + 33.02241207188914 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 33.02241207188914 + ], + [ + 69.89296448393472, + 33.217059806817595 + ], + [ + 69.66327911696737, + 33.217059806817595 + ], + [ + 69.77812180045105, + 33.02241207188914 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 33.02241207188914 + ], + [ + 69.66327911696737, + 33.217059806817595 + ], + [ + 69.54843643348369, + 33.02241207188914 + ], + [ + 69.77812180045105, + 33.02241207188914 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 33.02241207188914 + ], + [ + 69.54843643348369, + 33.02241207188914 + ], + [ + 69.66327911696737, + 32.82776433696069 + ], + [ + 69.77812180045105, + 33.02241207188914 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 33.02241207188914 + ], + [ + 69.66327911696737, + 32.82776433696069 + ], + [ + 69.89296448393472, + 32.82776433696069 + ], + [ + 69.77812180045105, + 33.02241207188914 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 33.02241207188914 + ], + [ + 69.89296448393472, + 32.82776433696069 + ], + [ + 70.0078071674184, + 33.02241207188914 + ], + [ + 69.77812180045105, + 33.02241207188914 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 33.41170754174605 + ], + [ + 70.0078071674184, + 33.41170754174605 + ], + [ + 69.89296448393472, + 33.6063552766745 + ], + [ + 69.77812180045105, + 33.41170754174605 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 33.41170754174605 + ], + [ + 69.89296448393472, + 33.6063552766745 + ], + [ + 69.66327911696737, + 33.6063552766745 + ], + [ + 69.77812180045105, + 33.41170754174605 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 33.41170754174605 + ], + [ + 69.66327911696737, + 33.6063552766745 + ], + [ + 69.54843643348369, + 33.41170754174605 + ], + [ + 69.77812180045105, + 33.41170754174605 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 33.41170754174605 + ], + [ + 69.54843643348369, + 33.41170754174605 + ], + [ + 69.66327911696737, + 33.217059806817595 + ], + [ + 69.77812180045105, + 33.41170754174605 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 33.41170754174605 + ], + [ + 69.66327911696737, + 33.217059806817595 + ], + [ + 69.89296448393472, + 33.217059806817595 + ], + [ + 69.77812180045105, + 33.41170754174605 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 33.41170754174605 + ], + [ + 69.89296448393472, + 33.217059806817595 + ], + [ + 70.0078071674184, + 33.41170754174605 + ], + [ + 69.77812180045105, + 33.41170754174605 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 33.80100301160295 + ], + [ + 70.0078071674184, + 33.80100301160295 + ], + [ + 69.89296448393472, + 33.9956507465314 + ], + [ + 69.77812180045105, + 33.80100301160295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 33.80100301160295 + ], + [ + 69.89296448393472, + 33.9956507465314 + ], + [ + 69.66327911696737, + 33.9956507465314 + ], + [ + 69.77812180045105, + 33.80100301160295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 33.80100301160295 + ], + [ + 69.66327911696737, + 33.9956507465314 + ], + [ + 69.54843643348369, + 33.80100301160295 + ], + [ + 69.77812180045105, + 33.80100301160295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 33.80100301160295 + ], + [ + 69.54843643348369, + 33.80100301160295 + ], + [ + 69.66327911696737, + 33.6063552766745 + ], + [ + 69.77812180045105, + 33.80100301160295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 33.80100301160295 + ], + [ + 69.66327911696737, + 33.6063552766745 + ], + [ + 69.89296448393472, + 33.6063552766745 + ], + [ + 69.77812180045105, + 33.80100301160295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 33.80100301160295 + ], + [ + 69.89296448393472, + 33.6063552766745 + ], + [ + 70.0078071674184, + 33.80100301160295 + ], + [ + 69.77812180045105, + 33.80100301160295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 34.190298481459855 + ], + [ + 70.0078071674184, + 34.190298481459855 + ], + [ + 69.89296448393472, + 34.38494621638831 + ], + [ + 69.77812180045105, + 34.190298481459855 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 34.190298481459855 + ], + [ + 69.89296448393472, + 34.38494621638831 + ], + [ + 69.66327911696737, + 34.38494621638831 + ], + [ + 69.77812180045105, + 34.190298481459855 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 34.190298481459855 + ], + [ + 69.66327911696737, + 34.38494621638831 + ], + [ + 69.54843643348369, + 34.190298481459855 + ], + [ + 69.77812180045105, + 34.190298481459855 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 34.190298481459855 + ], + [ + 69.54843643348369, + 34.190298481459855 + ], + [ + 69.66327911696737, + 33.9956507465314 + ], + [ + 69.77812180045105, + 34.190298481459855 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 34.190298481459855 + ], + [ + 69.66327911696737, + 33.9956507465314 + ], + [ + 69.89296448393472, + 33.9956507465314 + ], + [ + 69.77812180045105, + 34.190298481459855 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 34.190298481459855 + ], + [ + 69.89296448393472, + 33.9956507465314 + ], + [ + 70.0078071674184, + 34.190298481459855 + ], + [ + 69.77812180045105, + 34.190298481459855 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 34.57959395131677 + ], + [ + 70.0078071674184, + 34.57959395131677 + ], + [ + 69.89296448393472, + 34.77424168624522 + ], + [ + 69.77812180045105, + 34.57959395131677 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 34.57959395131677 + ], + [ + 69.89296448393472, + 34.77424168624522 + ], + [ + 69.66327911696737, + 34.77424168624522 + ], + [ + 69.77812180045105, + 34.57959395131677 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 34.57959395131677 + ], + [ + 69.66327911696737, + 34.77424168624522 + ], + [ + 69.54843643348369, + 34.57959395131677 + ], + [ + 69.77812180045105, + 34.57959395131677 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 34.57959395131677 + ], + [ + 69.54843643348369, + 34.57959395131677 + ], + [ + 69.66327911696737, + 34.384946216388315 + ], + [ + 69.77812180045105, + 34.57959395131677 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 34.57959395131677 + ], + [ + 69.66327911696737, + 34.384946216388315 + ], + [ + 69.89296448393472, + 34.384946216388315 + ], + [ + 69.77812180045105, + 34.57959395131677 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 34.57959395131677 + ], + [ + 69.89296448393472, + 34.384946216388315 + ], + [ + 70.0078071674184, + 34.57959395131677 + ], + [ + 69.77812180045105, + 34.57959395131677 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 34.96888942117368 + ], + [ + 70.0078071674184, + 34.96888942117368 + ], + [ + 69.89296448393472, + 35.16353715610213 + ], + [ + 69.77812180045105, + 34.96888942117368 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 34.96888942117368 + ], + [ + 69.89296448393472, + 35.16353715610213 + ], + [ + 69.66327911696737, + 35.16353715610213 + ], + [ + 69.77812180045105, + 34.96888942117368 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 34.96888942117368 + ], + [ + 69.66327911696737, + 35.16353715610213 + ], + [ + 69.54843643348369, + 34.96888942117368 + ], + [ + 69.77812180045105, + 34.96888942117368 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 34.96888942117368 + ], + [ + 69.54843643348369, + 34.96888942117368 + ], + [ + 69.66327911696737, + 34.774241686245226 + ], + [ + 69.77812180045105, + 34.96888942117368 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 34.96888942117368 + ], + [ + 69.66327911696737, + 34.774241686245226 + ], + [ + 69.89296448393472, + 34.774241686245226 + ], + [ + 69.77812180045105, + 34.96888942117368 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 34.96888942117368 + ], + [ + 69.89296448393472, + 34.774241686245226 + ], + [ + 70.0078071674184, + 34.96888942117368 + ], + [ + 69.77812180045105, + 34.96888942117368 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 35.35818489103058 + ], + [ + 70.0078071674184, + 35.35818489103058 + ], + [ + 69.89296448393472, + 35.552832625959034 + ], + [ + 69.77812180045105, + 35.35818489103058 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 35.35818489103058 + ], + [ + 69.89296448393472, + 35.552832625959034 + ], + [ + 69.66327911696737, + 35.552832625959034 + ], + [ + 69.77812180045105, + 35.35818489103058 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 35.35818489103058 + ], + [ + 69.66327911696737, + 35.552832625959034 + ], + [ + 69.54843643348369, + 35.35818489103058 + ], + [ + 69.77812180045105, + 35.35818489103058 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 35.35818489103058 + ], + [ + 69.54843643348369, + 35.35818489103058 + ], + [ + 69.66327911696737, + 35.16353715610213 + ], + [ + 69.77812180045105, + 35.35818489103058 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 35.35818489103058 + ], + [ + 69.66327911696737, + 35.16353715610213 + ], + [ + 69.89296448393472, + 35.16353715610213 + ], + [ + 69.77812180045105, + 35.35818489103058 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 35.35818489103058 + ], + [ + 69.89296448393472, + 35.16353715610213 + ], + [ + 70.0078071674184, + 35.35818489103058 + ], + [ + 69.77812180045105, + 35.35818489103058 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 35.74748036088749 + ], + [ + 70.0078071674184, + 35.74748036088749 + ], + [ + 69.89296448393472, + 35.94212809581594 + ], + [ + 69.77812180045105, + 35.74748036088749 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 35.74748036088749 + ], + [ + 69.89296448393472, + 35.94212809581594 + ], + [ + 69.66327911696737, + 35.94212809581594 + ], + [ + 69.77812180045105, + 35.74748036088749 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 35.74748036088749 + ], + [ + 69.66327911696737, + 35.94212809581594 + ], + [ + 69.54843643348369, + 35.74748036088749 + ], + [ + 69.77812180045105, + 35.74748036088749 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 35.74748036088749 + ], + [ + 69.54843643348369, + 35.74748036088749 + ], + [ + 69.66327911696737, + 35.552832625959034 + ], + [ + 69.77812180045105, + 35.74748036088749 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 35.74748036088749 + ], + [ + 69.66327911696737, + 35.552832625959034 + ], + [ + 69.89296448393472, + 35.552832625959034 + ], + [ + 69.77812180045105, + 35.74748036088749 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 35.74748036088749 + ], + [ + 69.89296448393472, + 35.552832625959034 + ], + [ + 70.0078071674184, + 35.74748036088749 + ], + [ + 69.77812180045105, + 35.74748036088749 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 36.13677583074439 + ], + [ + 70.0078071674184, + 36.13677583074439 + ], + [ + 69.89296448393472, + 36.33142356567284 + ], + [ + 69.77812180045105, + 36.13677583074439 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 36.13677583074439 + ], + [ + 69.89296448393472, + 36.33142356567284 + ], + [ + 69.66327911696737, + 36.33142356567284 + ], + [ + 69.77812180045105, + 36.13677583074439 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 36.13677583074439 + ], + [ + 69.66327911696737, + 36.33142356567284 + ], + [ + 69.54843643348369, + 36.13677583074439 + ], + [ + 69.77812180045105, + 36.13677583074439 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 36.13677583074439 + ], + [ + 69.54843643348369, + 36.13677583074439 + ], + [ + 69.66327911696737, + 35.94212809581594 + ], + [ + 69.77812180045105, + 36.13677583074439 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 36.13677583074439 + ], + [ + 69.66327911696737, + 35.94212809581594 + ], + [ + 69.89296448393472, + 35.94212809581594 + ], + [ + 69.77812180045105, + 36.13677583074439 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 36.13677583074439 + ], + [ + 69.89296448393472, + 35.94212809581594 + ], + [ + 70.0078071674184, + 36.13677583074439 + ], + [ + 69.77812180045105, + 36.13677583074439 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 36.526071300601295 + ], + [ + 70.0078071674184, + 36.526071300601295 + ], + [ + 69.89296448393472, + 36.72071903552975 + ], + [ + 69.77812180045105, + 36.526071300601295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 36.526071300601295 + ], + [ + 69.89296448393472, + 36.72071903552975 + ], + [ + 69.66327911696737, + 36.72071903552975 + ], + [ + 69.77812180045105, + 36.526071300601295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 36.526071300601295 + ], + [ + 69.66327911696737, + 36.72071903552975 + ], + [ + 69.54843643348369, + 36.526071300601295 + ], + [ + 69.77812180045105, + 36.526071300601295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 36.526071300601295 + ], + [ + 69.54843643348369, + 36.526071300601295 + ], + [ + 69.66327911696737, + 36.33142356567284 + ], + [ + 69.77812180045105, + 36.526071300601295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 36.526071300601295 + ], + [ + 69.66327911696737, + 36.33142356567284 + ], + [ + 69.89296448393472, + 36.33142356567284 + ], + [ + 69.77812180045105, + 36.526071300601295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 36.526071300601295 + ], + [ + 69.89296448393472, + 36.33142356567284 + ], + [ + 70.0078071674184, + 36.526071300601295 + ], + [ + 69.77812180045105, + 36.526071300601295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 36.915366770458206 + ], + [ + 70.0078071674184, + 36.915366770458206 + ], + [ + 69.89296448393472, + 37.11001450538666 + ], + [ + 69.77812180045105, + 36.915366770458206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 36.915366770458206 + ], + [ + 69.89296448393472, + 37.11001450538666 + ], + [ + 69.66327911696737, + 37.11001450538666 + ], + [ + 69.77812180045105, + 36.915366770458206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 36.915366770458206 + ], + [ + 69.66327911696737, + 37.11001450538666 + ], + [ + 69.54843643348369, + 36.915366770458206 + ], + [ + 69.77812180045105, + 36.915366770458206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 36.915366770458206 + ], + [ + 69.54843643348369, + 36.915366770458206 + ], + [ + 69.66327911696737, + 36.720719035529754 + ], + [ + 69.77812180045105, + 36.915366770458206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 36.915366770458206 + ], + [ + 69.66327911696737, + 36.720719035529754 + ], + [ + 69.89296448393472, + 36.720719035529754 + ], + [ + 69.77812180045105, + 36.915366770458206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 36.915366770458206 + ], + [ + 69.89296448393472, + 36.720719035529754 + ], + [ + 70.0078071674184, + 36.915366770458206 + ], + [ + 69.77812180045105, + 36.915366770458206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 37.30466224031511 + ], + [ + 70.0078071674184, + 37.30466224031511 + ], + [ + 69.89296448393472, + 37.49930997524356 + ], + [ + 69.77812180045105, + 37.30466224031511 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 37.30466224031511 + ], + [ + 69.89296448393472, + 37.49930997524356 + ], + [ + 69.66327911696737, + 37.49930997524356 + ], + [ + 69.77812180045105, + 37.30466224031511 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 37.30466224031511 + ], + [ + 69.66327911696737, + 37.49930997524356 + ], + [ + 69.54843643348369, + 37.30466224031511 + ], + [ + 69.77812180045105, + 37.30466224031511 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 37.30466224031511 + ], + [ + 69.54843643348369, + 37.30466224031511 + ], + [ + 69.66327911696737, + 37.11001450538666 + ], + [ + 69.77812180045105, + 37.30466224031511 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 37.30466224031511 + ], + [ + 69.66327911696737, + 37.11001450538666 + ], + [ + 69.89296448393472, + 37.11001450538666 + ], + [ + 69.77812180045105, + 37.30466224031511 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 37.30466224031511 + ], + [ + 69.89296448393472, + 37.11001450538666 + ], + [ + 70.0078071674184, + 37.30466224031511 + ], + [ + 69.77812180045105, + 37.30466224031511 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 37.69395771017202 + ], + [ + 70.0078071674184, + 37.69395771017202 + ], + [ + 69.89296448393472, + 37.888605445100474 + ], + [ + 69.77812180045105, + 37.69395771017202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 37.69395771017202 + ], + [ + 69.89296448393472, + 37.888605445100474 + ], + [ + 69.66327911696737, + 37.888605445100474 + ], + [ + 69.77812180045105, + 37.69395771017202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 37.69395771017202 + ], + [ + 69.66327911696737, + 37.888605445100474 + ], + [ + 69.54843643348369, + 37.69395771017202 + ], + [ + 69.77812180045105, + 37.69395771017202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 37.69395771017202 + ], + [ + 69.54843643348369, + 37.69395771017202 + ], + [ + 69.66327911696737, + 37.49930997524357 + ], + [ + 69.77812180045105, + 37.69395771017202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 37.69395771017202 + ], + [ + 69.66327911696737, + 37.49930997524357 + ], + [ + 69.89296448393472, + 37.49930997524357 + ], + [ + 69.77812180045105, + 37.69395771017202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 37.69395771017202 + ], + [ + 69.89296448393472, + 37.49930997524357 + ], + [ + 70.0078071674184, + 37.69395771017202 + ], + [ + 69.77812180045105, + 37.69395771017202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 38.083253180028926 + ], + [ + 70.0078071674184, + 38.083253180028926 + ], + [ + 69.89296448393472, + 38.27790091495738 + ], + [ + 69.77812180045105, + 38.083253180028926 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 38.083253180028926 + ], + [ + 69.89296448393472, + 38.27790091495738 + ], + [ + 69.66327911696737, + 38.27790091495738 + ], + [ + 69.77812180045105, + 38.083253180028926 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 38.083253180028926 + ], + [ + 69.66327911696737, + 38.27790091495738 + ], + [ + 69.54843643348369, + 38.083253180028926 + ], + [ + 69.77812180045105, + 38.083253180028926 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 38.083253180028926 + ], + [ + 69.54843643348369, + 38.083253180028926 + ], + [ + 69.66327911696737, + 37.888605445100474 + ], + [ + 69.77812180045105, + 38.083253180028926 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 38.083253180028926 + ], + [ + 69.66327911696737, + 37.888605445100474 + ], + [ + 69.89296448393472, + 37.888605445100474 + ], + [ + 69.77812180045105, + 38.083253180028926 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 38.083253180028926 + ], + [ + 69.89296448393472, + 37.888605445100474 + ], + [ + 70.0078071674184, + 38.083253180028926 + ], + [ + 69.77812180045105, + 38.083253180028926 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 38.47254864988583 + ], + [ + 70.0078071674184, + 38.47254864988583 + ], + [ + 69.89296448393472, + 38.66719638481428 + ], + [ + 69.77812180045105, + 38.47254864988583 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 38.47254864988583 + ], + [ + 69.89296448393472, + 38.66719638481428 + ], + [ + 69.66327911696737, + 38.66719638481428 + ], + [ + 69.77812180045105, + 38.47254864988583 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 38.47254864988583 + ], + [ + 69.66327911696737, + 38.66719638481428 + ], + [ + 69.54843643348369, + 38.47254864988583 + ], + [ + 69.77812180045105, + 38.47254864988583 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 38.47254864988583 + ], + [ + 69.54843643348369, + 38.47254864988583 + ], + [ + 69.66327911696737, + 38.27790091495738 + ], + [ + 69.77812180045105, + 38.47254864988583 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 38.47254864988583 + ], + [ + 69.66327911696737, + 38.27790091495738 + ], + [ + 69.89296448393472, + 38.27790091495738 + ], + [ + 69.77812180045105, + 38.47254864988583 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 38.47254864988583 + ], + [ + 69.89296448393472, + 38.27790091495738 + ], + [ + 70.0078071674184, + 38.47254864988583 + ], + [ + 69.77812180045105, + 38.47254864988583 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 38.861844119742734 + ], + [ + 70.0078071674184, + 38.861844119742734 + ], + [ + 69.89296448393472, + 39.05649185467119 + ], + [ + 69.77812180045105, + 38.861844119742734 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 38.861844119742734 + ], + [ + 69.89296448393472, + 39.05649185467119 + ], + [ + 69.66327911696737, + 39.05649185467119 + ], + [ + 69.77812180045105, + 38.861844119742734 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 38.861844119742734 + ], + [ + 69.66327911696737, + 39.05649185467119 + ], + [ + 69.54843643348369, + 38.861844119742734 + ], + [ + 69.77812180045105, + 38.861844119742734 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 38.861844119742734 + ], + [ + 69.54843643348369, + 38.861844119742734 + ], + [ + 69.66327911696737, + 38.66719638481428 + ], + [ + 69.77812180045105, + 38.861844119742734 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 38.861844119742734 + ], + [ + 69.66327911696737, + 38.66719638481428 + ], + [ + 69.89296448393472, + 38.66719638481428 + ], + [ + 69.77812180045105, + 38.861844119742734 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 38.861844119742734 + ], + [ + 69.89296448393472, + 38.66719638481428 + ], + [ + 70.0078071674184, + 38.861844119742734 + ], + [ + 69.77812180045105, + 38.861844119742734 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 39.25113958959964 + ], + [ + 70.0078071674184, + 39.25113958959964 + ], + [ + 69.89296448393472, + 39.44578732452809 + ], + [ + 69.77812180045105, + 39.25113958959964 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 39.25113958959964 + ], + [ + 69.89296448393472, + 39.44578732452809 + ], + [ + 69.66327911696737, + 39.44578732452809 + ], + [ + 69.77812180045105, + 39.25113958959964 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 39.25113958959964 + ], + [ + 69.66327911696737, + 39.44578732452809 + ], + [ + 69.54843643348369, + 39.25113958959964 + ], + [ + 69.77812180045105, + 39.25113958959964 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 39.25113958959964 + ], + [ + 69.54843643348369, + 39.25113958959964 + ], + [ + 69.66327911696737, + 39.05649185467119 + ], + [ + 69.77812180045105, + 39.25113958959964 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 39.25113958959964 + ], + [ + 69.66327911696737, + 39.05649185467119 + ], + [ + 69.89296448393472, + 39.05649185467119 + ], + [ + 69.77812180045105, + 39.25113958959964 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 39.25113958959964 + ], + [ + 69.89296448393472, + 39.05649185467119 + ], + [ + 70.0078071674184, + 39.25113958959964 + ], + [ + 69.77812180045105, + 39.25113958959964 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 39.64043505945655 + ], + [ + 70.0078071674184, + 39.64043505945655 + ], + [ + 69.89296448393472, + 39.835082794385 + ], + [ + 69.77812180045105, + 39.64043505945655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 39.64043505945655 + ], + [ + 69.89296448393472, + 39.835082794385 + ], + [ + 69.66327911696737, + 39.835082794385 + ], + [ + 69.77812180045105, + 39.64043505945655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 39.64043505945655 + ], + [ + 69.66327911696737, + 39.835082794385 + ], + [ + 69.54843643348369, + 39.64043505945655 + ], + [ + 69.77812180045105, + 39.64043505945655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 39.64043505945655 + ], + [ + 69.54843643348369, + 39.64043505945655 + ], + [ + 69.66327911696737, + 39.4457873245281 + ], + [ + 69.77812180045105, + 39.64043505945655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 39.64043505945655 + ], + [ + 69.66327911696737, + 39.4457873245281 + ], + [ + 69.89296448393472, + 39.4457873245281 + ], + [ + 69.77812180045105, + 39.64043505945655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 39.64043505945655 + ], + [ + 69.89296448393472, + 39.4457873245281 + ], + [ + 70.0078071674184, + 39.64043505945655 + ], + [ + 69.77812180045105, + 39.64043505945655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 40.029730529313454 + ], + [ + 70.0078071674184, + 40.029730529313454 + ], + [ + 69.89296448393472, + 40.224378264241906 + ], + [ + 69.77812180045105, + 40.029730529313454 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 40.029730529313454 + ], + [ + 69.89296448393472, + 40.224378264241906 + ], + [ + 69.66327911696737, + 40.224378264241906 + ], + [ + 69.77812180045105, + 40.029730529313454 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 40.029730529313454 + ], + [ + 69.66327911696737, + 40.224378264241906 + ], + [ + 69.54843643348369, + 40.029730529313454 + ], + [ + 69.77812180045105, + 40.029730529313454 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 40.029730529313454 + ], + [ + 69.54843643348369, + 40.029730529313454 + ], + [ + 69.66327911696737, + 39.835082794385 + ], + [ + 69.77812180045105, + 40.029730529313454 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 40.029730529313454 + ], + [ + 69.66327911696737, + 39.835082794385 + ], + [ + 69.89296448393472, + 39.835082794385 + ], + [ + 69.77812180045105, + 40.029730529313454 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 40.029730529313454 + ], + [ + 69.89296448393472, + 39.835082794385 + ], + [ + 70.0078071674184, + 40.029730529313454 + ], + [ + 69.77812180045105, + 40.029730529313454 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 40.419025999170366 + ], + [ + 70.0078071674184, + 40.419025999170366 + ], + [ + 69.89296448393472, + 40.61367373409882 + ], + [ + 69.77812180045105, + 40.419025999170366 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 40.419025999170366 + ], + [ + 69.89296448393472, + 40.61367373409882 + ], + [ + 69.66327911696737, + 40.61367373409882 + ], + [ + 69.77812180045105, + 40.419025999170366 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 40.419025999170366 + ], + [ + 69.66327911696737, + 40.61367373409882 + ], + [ + 69.54843643348369, + 40.419025999170366 + ], + [ + 69.77812180045105, + 40.419025999170366 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 40.419025999170366 + ], + [ + 69.54843643348369, + 40.419025999170366 + ], + [ + 69.66327911696737, + 40.22437826424191 + ], + [ + 69.77812180045105, + 40.419025999170366 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 40.419025999170366 + ], + [ + 69.66327911696737, + 40.22437826424191 + ], + [ + 69.89296448393472, + 40.22437826424191 + ], + [ + 69.77812180045105, + 40.419025999170366 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 40.419025999170366 + ], + [ + 69.89296448393472, + 40.22437826424191 + ], + [ + 70.0078071674184, + 40.419025999170366 + ], + [ + 69.77812180045105, + 40.419025999170366 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 40.80832146902727 + ], + [ + 70.0078071674184, + 40.80832146902727 + ], + [ + 69.89296448393472, + 41.00296920395572 + ], + [ + 69.77812180045105, + 40.80832146902727 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 40.80832146902727 + ], + [ + 69.89296448393472, + 41.00296920395572 + ], + [ + 69.66327911696737, + 41.00296920395572 + ], + [ + 69.77812180045105, + 40.80832146902727 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 40.80832146902727 + ], + [ + 69.66327911696737, + 41.00296920395572 + ], + [ + 69.54843643348369, + 40.80832146902727 + ], + [ + 69.77812180045105, + 40.80832146902727 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 40.80832146902727 + ], + [ + 69.54843643348369, + 40.80832146902727 + ], + [ + 69.66327911696737, + 40.61367373409882 + ], + [ + 69.77812180045105, + 40.80832146902727 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 40.80832146902727 + ], + [ + 69.66327911696737, + 40.61367373409882 + ], + [ + 69.89296448393472, + 40.61367373409882 + ], + [ + 69.77812180045105, + 40.80832146902727 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 40.80832146902727 + ], + [ + 69.89296448393472, + 40.61367373409882 + ], + [ + 70.0078071674184, + 40.80832146902727 + ], + [ + 69.77812180045105, + 40.80832146902727 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 41.197616938884174 + ], + [ + 70.0078071674184, + 41.197616938884174 + ], + [ + 69.89296448393472, + 41.392264673812626 + ], + [ + 69.77812180045105, + 41.197616938884174 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 41.197616938884174 + ], + [ + 69.89296448393472, + 41.392264673812626 + ], + [ + 69.66327911696737, + 41.392264673812626 + ], + [ + 69.77812180045105, + 41.197616938884174 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 41.197616938884174 + ], + [ + 69.66327911696737, + 41.392264673812626 + ], + [ + 69.54843643348369, + 41.197616938884174 + ], + [ + 69.77812180045105, + 41.197616938884174 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 41.197616938884174 + ], + [ + 69.54843643348369, + 41.197616938884174 + ], + [ + 69.66327911696737, + 41.00296920395572 + ], + [ + 69.77812180045105, + 41.197616938884174 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 41.197616938884174 + ], + [ + 69.66327911696737, + 41.00296920395572 + ], + [ + 69.89296448393472, + 41.00296920395572 + ], + [ + 69.77812180045105, + 41.197616938884174 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 41.197616938884174 + ], + [ + 69.89296448393472, + 41.00296920395572 + ], + [ + 70.0078071674184, + 41.197616938884174 + ], + [ + 69.77812180045105, + 41.197616938884174 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 41.58691240874108 + ], + [ + 70.0078071674184, + 41.58691240874108 + ], + [ + 69.89296448393472, + 41.78156014366953 + ], + [ + 69.77812180045105, + 41.58691240874108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 41.58691240874108 + ], + [ + 69.89296448393472, + 41.78156014366953 + ], + [ + 69.66327911696737, + 41.78156014366953 + ], + [ + 69.77812180045105, + 41.58691240874108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 41.58691240874108 + ], + [ + 69.66327911696737, + 41.78156014366953 + ], + [ + 69.54843643348369, + 41.58691240874108 + ], + [ + 69.77812180045105, + 41.58691240874108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 41.58691240874108 + ], + [ + 69.54843643348369, + 41.58691240874108 + ], + [ + 69.66327911696737, + 41.392264673812626 + ], + [ + 69.77812180045105, + 41.58691240874108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 41.58691240874108 + ], + [ + 69.66327911696737, + 41.392264673812626 + ], + [ + 69.89296448393472, + 41.392264673812626 + ], + [ + 69.77812180045105, + 41.58691240874108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 41.58691240874108 + ], + [ + 69.89296448393472, + 41.392264673812626 + ], + [ + 70.0078071674184, + 41.58691240874108 + ], + [ + 69.77812180045105, + 41.58691240874108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 41.97620787859798 + ], + [ + 70.0078071674184, + 41.97620787859798 + ], + [ + 69.89296448393472, + 42.170855613526435 + ], + [ + 69.77812180045105, + 41.97620787859798 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 41.97620787859798 + ], + [ + 69.89296448393472, + 42.170855613526435 + ], + [ + 69.66327911696737, + 42.170855613526435 + ], + [ + 69.77812180045105, + 41.97620787859798 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 41.97620787859798 + ], + [ + 69.66327911696737, + 42.170855613526435 + ], + [ + 69.54843643348369, + 41.97620787859798 + ], + [ + 69.77812180045105, + 41.97620787859798 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 41.97620787859798 + ], + [ + 69.54843643348369, + 41.97620787859798 + ], + [ + 69.66327911696737, + 41.78156014366953 + ], + [ + 69.77812180045105, + 41.97620787859798 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 41.97620787859798 + ], + [ + 69.66327911696737, + 41.78156014366953 + ], + [ + 69.89296448393472, + 41.78156014366953 + ], + [ + 69.77812180045105, + 41.97620787859798 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 41.97620787859798 + ], + [ + 69.89296448393472, + 41.78156014366953 + ], + [ + 70.0078071674184, + 41.97620787859798 + ], + [ + 69.77812180045105, + 41.97620787859798 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 42.365503348454894 + ], + [ + 70.0078071674184, + 42.365503348454894 + ], + [ + 69.89296448393472, + 42.560151083383346 + ], + [ + 69.77812180045105, + 42.365503348454894 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 42.365503348454894 + ], + [ + 69.89296448393472, + 42.560151083383346 + ], + [ + 69.66327911696737, + 42.560151083383346 + ], + [ + 69.77812180045105, + 42.365503348454894 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 42.365503348454894 + ], + [ + 69.66327911696737, + 42.560151083383346 + ], + [ + 69.54843643348369, + 42.365503348454894 + ], + [ + 69.77812180045105, + 42.365503348454894 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 42.365503348454894 + ], + [ + 69.54843643348369, + 42.365503348454894 + ], + [ + 69.66327911696737, + 42.17085561352644 + ], + [ + 69.77812180045105, + 42.365503348454894 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 42.365503348454894 + ], + [ + 69.66327911696737, + 42.17085561352644 + ], + [ + 69.89296448393472, + 42.17085561352644 + ], + [ + 69.77812180045105, + 42.365503348454894 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 42.365503348454894 + ], + [ + 69.89296448393472, + 42.17085561352644 + ], + [ + 70.0078071674184, + 42.365503348454894 + ], + [ + 69.77812180045105, + 42.365503348454894 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 42.754798818311805 + ], + [ + 70.0078071674184, + 42.754798818311805 + ], + [ + 69.89296448393472, + 42.94944655324026 + ], + [ + 69.77812180045105, + 42.754798818311805 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 42.754798818311805 + ], + [ + 69.89296448393472, + 42.94944655324026 + ], + [ + 69.66327911696737, + 42.94944655324026 + ], + [ + 69.77812180045105, + 42.754798818311805 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 42.754798818311805 + ], + [ + 69.66327911696737, + 42.94944655324026 + ], + [ + 69.54843643348369, + 42.754798818311805 + ], + [ + 69.77812180045105, + 42.754798818311805 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 42.754798818311805 + ], + [ + 69.54843643348369, + 42.754798818311805 + ], + [ + 69.66327911696737, + 42.56015108338335 + ], + [ + 69.77812180045105, + 42.754798818311805 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 42.754798818311805 + ], + [ + 69.66327911696737, + 42.56015108338335 + ], + [ + 69.89296448393472, + 42.56015108338335 + ], + [ + 69.77812180045105, + 42.754798818311805 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 42.754798818311805 + ], + [ + 69.89296448393472, + 42.56015108338335 + ], + [ + 70.0078071674184, + 42.754798818311805 + ], + [ + 69.77812180045105, + 42.754798818311805 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 43.14409428816871 + ], + [ + 70.0078071674184, + 43.14409428816871 + ], + [ + 69.89296448393472, + 43.33874202309716 + ], + [ + 69.77812180045105, + 43.14409428816871 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 43.14409428816871 + ], + [ + 69.89296448393472, + 43.33874202309716 + ], + [ + 69.66327911696737, + 43.33874202309716 + ], + [ + 69.77812180045105, + 43.14409428816871 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 43.14409428816871 + ], + [ + 69.66327911696737, + 43.33874202309716 + ], + [ + 69.54843643348369, + 43.14409428816871 + ], + [ + 69.77812180045105, + 43.14409428816871 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 43.14409428816871 + ], + [ + 69.54843643348369, + 43.14409428816871 + ], + [ + 69.66327911696737, + 42.94944655324026 + ], + [ + 69.77812180045105, + 43.14409428816871 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 43.14409428816871 + ], + [ + 69.66327911696737, + 42.94944655324026 + ], + [ + 69.89296448393472, + 42.94944655324026 + ], + [ + 69.77812180045105, + 43.14409428816871 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 43.14409428816871 + ], + [ + 69.89296448393472, + 42.94944655324026 + ], + [ + 70.0078071674184, + 43.14409428816871 + ], + [ + 69.77812180045105, + 43.14409428816871 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 43.53338975802561 + ], + [ + 70.0078071674184, + 43.53338975802561 + ], + [ + 69.89296448393472, + 43.728037492954066 + ], + [ + 69.77812180045105, + 43.53338975802561 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 43.53338975802561 + ], + [ + 69.89296448393472, + 43.728037492954066 + ], + [ + 69.66327911696737, + 43.728037492954066 + ], + [ + 69.77812180045105, + 43.53338975802561 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 43.53338975802561 + ], + [ + 69.66327911696737, + 43.728037492954066 + ], + [ + 69.54843643348369, + 43.53338975802561 + ], + [ + 69.77812180045105, + 43.53338975802561 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 43.53338975802561 + ], + [ + 69.54843643348369, + 43.53338975802561 + ], + [ + 69.66327911696737, + 43.33874202309716 + ], + [ + 69.77812180045105, + 43.53338975802561 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 43.53338975802561 + ], + [ + 69.66327911696737, + 43.33874202309716 + ], + [ + 69.89296448393472, + 43.33874202309716 + ], + [ + 69.77812180045105, + 43.53338975802561 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 43.53338975802561 + ], + [ + 69.89296448393472, + 43.33874202309716 + ], + [ + 70.0078071674184, + 43.53338975802561 + ], + [ + 69.77812180045105, + 43.53338975802561 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 43.92268522788252 + ], + [ + 70.0078071674184, + 43.92268522788252 + ], + [ + 69.89296448393472, + 44.11733296281097 + ], + [ + 69.77812180045105, + 43.92268522788252 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 43.92268522788252 + ], + [ + 69.89296448393472, + 44.11733296281097 + ], + [ + 69.66327911696737, + 44.11733296281097 + ], + [ + 69.77812180045105, + 43.92268522788252 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 43.92268522788252 + ], + [ + 69.66327911696737, + 44.11733296281097 + ], + [ + 69.54843643348369, + 43.92268522788252 + ], + [ + 69.77812180045105, + 43.92268522788252 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 43.92268522788252 + ], + [ + 69.54843643348369, + 43.92268522788252 + ], + [ + 69.66327911696737, + 43.728037492954066 + ], + [ + 69.77812180045105, + 43.92268522788252 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 43.92268522788252 + ], + [ + 69.66327911696737, + 43.728037492954066 + ], + [ + 69.89296448393472, + 43.728037492954066 + ], + [ + 69.77812180045105, + 43.92268522788252 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 43.92268522788252 + ], + [ + 69.89296448393472, + 43.728037492954066 + ], + [ + 70.0078071674184, + 43.92268522788252 + ], + [ + 69.77812180045105, + 43.92268522788252 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 44.31198069773942 + ], + [ + 70.0078071674184, + 44.31198069773942 + ], + [ + 69.89296448393472, + 44.506628432667874 + ], + [ + 69.77812180045105, + 44.31198069773942 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 44.31198069773942 + ], + [ + 69.89296448393472, + 44.506628432667874 + ], + [ + 69.66327911696737, + 44.506628432667874 + ], + [ + 69.77812180045105, + 44.31198069773942 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 44.31198069773942 + ], + [ + 69.66327911696737, + 44.506628432667874 + ], + [ + 69.54843643348369, + 44.31198069773942 + ], + [ + 69.77812180045105, + 44.31198069773942 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 44.31198069773942 + ], + [ + 69.54843643348369, + 44.31198069773942 + ], + [ + 69.66327911696737, + 44.11733296281097 + ], + [ + 69.77812180045105, + 44.31198069773942 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 44.31198069773942 + ], + [ + 69.66327911696737, + 44.11733296281097 + ], + [ + 69.89296448393472, + 44.11733296281097 + ], + [ + 69.77812180045105, + 44.31198069773942 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 44.31198069773942 + ], + [ + 69.89296448393472, + 44.11733296281097 + ], + [ + 70.0078071674184, + 44.31198069773942 + ], + [ + 69.77812180045105, + 44.31198069773942 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 44.701276167596326 + ], + [ + 70.0078071674184, + 44.701276167596326 + ], + [ + 69.89296448393472, + 44.89592390252478 + ], + [ + 69.77812180045105, + 44.701276167596326 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 44.701276167596326 + ], + [ + 69.89296448393472, + 44.89592390252478 + ], + [ + 69.66327911696737, + 44.89592390252478 + ], + [ + 69.77812180045105, + 44.701276167596326 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 44.701276167596326 + ], + [ + 69.66327911696737, + 44.89592390252478 + ], + [ + 69.54843643348369, + 44.701276167596326 + ], + [ + 69.77812180045105, + 44.701276167596326 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 44.701276167596326 + ], + [ + 69.54843643348369, + 44.701276167596326 + ], + [ + 69.66327911696737, + 44.506628432667874 + ], + [ + 69.77812180045105, + 44.701276167596326 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 44.701276167596326 + ], + [ + 69.66327911696737, + 44.506628432667874 + ], + [ + 69.89296448393472, + 44.506628432667874 + ], + [ + 69.77812180045105, + 44.701276167596326 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 44.701276167596326 + ], + [ + 69.89296448393472, + 44.506628432667874 + ], + [ + 70.0078071674184, + 44.701276167596326 + ], + [ + 69.77812180045105, + 44.701276167596326 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 45.090571637453245 + ], + [ + 70.0078071674184, + 45.090571637453245 + ], + [ + 69.89296448393472, + 45.2852193723817 + ], + [ + 69.77812180045105, + 45.090571637453245 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 45.090571637453245 + ], + [ + 69.89296448393472, + 45.2852193723817 + ], + [ + 69.66327911696737, + 45.2852193723817 + ], + [ + 69.77812180045105, + 45.090571637453245 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 45.090571637453245 + ], + [ + 69.66327911696737, + 45.2852193723817 + ], + [ + 69.54843643348369, + 45.090571637453245 + ], + [ + 69.77812180045105, + 45.090571637453245 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 45.090571637453245 + ], + [ + 69.54843643348369, + 45.090571637453245 + ], + [ + 69.66327911696737, + 44.89592390252479 + ], + [ + 69.77812180045105, + 45.090571637453245 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 45.090571637453245 + ], + [ + 69.66327911696737, + 44.89592390252479 + ], + [ + 69.89296448393472, + 44.89592390252479 + ], + [ + 69.77812180045105, + 45.090571637453245 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 45.090571637453245 + ], + [ + 69.89296448393472, + 44.89592390252479 + ], + [ + 70.0078071674184, + 45.090571637453245 + ], + [ + 69.77812180045105, + 45.090571637453245 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 45.47986710731015 + ], + [ + 70.0078071674184, + 45.47986710731015 + ], + [ + 69.89296448393472, + 45.6745148422386 + ], + [ + 69.77812180045105, + 45.47986710731015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 45.47986710731015 + ], + [ + 69.89296448393472, + 45.6745148422386 + ], + [ + 69.66327911696737, + 45.6745148422386 + ], + [ + 69.77812180045105, + 45.47986710731015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 45.47986710731015 + ], + [ + 69.66327911696737, + 45.6745148422386 + ], + [ + 69.54843643348369, + 45.47986710731015 + ], + [ + 69.77812180045105, + 45.47986710731015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 45.47986710731015 + ], + [ + 69.54843643348369, + 45.47986710731015 + ], + [ + 69.66327911696737, + 45.2852193723817 + ], + [ + 69.77812180045105, + 45.47986710731015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 45.47986710731015 + ], + [ + 69.66327911696737, + 45.2852193723817 + ], + [ + 69.89296448393472, + 45.2852193723817 + ], + [ + 69.77812180045105, + 45.47986710731015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 45.47986710731015 + ], + [ + 69.89296448393472, + 45.2852193723817 + ], + [ + 70.0078071674184, + 45.47986710731015 + ], + [ + 69.77812180045105, + 45.47986710731015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 45.86916257716705 + ], + [ + 70.0078071674184, + 45.86916257716705 + ], + [ + 69.89296448393472, + 46.063810312095505 + ], + [ + 69.77812180045105, + 45.86916257716705 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 45.86916257716705 + ], + [ + 69.89296448393472, + 46.063810312095505 + ], + [ + 69.66327911696737, + 46.063810312095505 + ], + [ + 69.77812180045105, + 45.86916257716705 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 45.86916257716705 + ], + [ + 69.66327911696737, + 46.063810312095505 + ], + [ + 69.54843643348369, + 45.86916257716705 + ], + [ + 69.77812180045105, + 45.86916257716705 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 45.86916257716705 + ], + [ + 69.54843643348369, + 45.86916257716705 + ], + [ + 69.66327911696737, + 45.6745148422386 + ], + [ + 69.77812180045105, + 45.86916257716705 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 45.86916257716705 + ], + [ + 69.66327911696737, + 45.6745148422386 + ], + [ + 69.89296448393472, + 45.6745148422386 + ], + [ + 69.77812180045105, + 45.86916257716705 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 45.86916257716705 + ], + [ + 69.89296448393472, + 45.6745148422386 + ], + [ + 70.0078071674184, + 45.86916257716705 + ], + [ + 69.77812180045105, + 45.86916257716705 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 46.25845804702396 + ], + [ + 70.0078071674184, + 46.25845804702396 + ], + [ + 69.89296448393472, + 46.45310578195241 + ], + [ + 69.77812180045105, + 46.25845804702396 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 46.25845804702396 + ], + [ + 69.89296448393472, + 46.45310578195241 + ], + [ + 69.66327911696737, + 46.45310578195241 + ], + [ + 69.77812180045105, + 46.25845804702396 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 46.25845804702396 + ], + [ + 69.66327911696737, + 46.45310578195241 + ], + [ + 69.54843643348369, + 46.25845804702396 + ], + [ + 69.77812180045105, + 46.25845804702396 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 46.25845804702396 + ], + [ + 69.54843643348369, + 46.25845804702396 + ], + [ + 69.66327911696737, + 46.063810312095505 + ], + [ + 69.77812180045105, + 46.25845804702396 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 46.25845804702396 + ], + [ + 69.66327911696737, + 46.063810312095505 + ], + [ + 69.89296448393472, + 46.063810312095505 + ], + [ + 69.77812180045105, + 46.25845804702396 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 46.25845804702396 + ], + [ + 69.89296448393472, + 46.063810312095505 + ], + [ + 70.0078071674184, + 46.25845804702396 + ], + [ + 69.77812180045105, + 46.25845804702396 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 46.64775351688086 + ], + [ + 70.0078071674184, + 46.64775351688086 + ], + [ + 69.89296448393472, + 46.842401251809314 + ], + [ + 69.77812180045105, + 46.64775351688086 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 46.64775351688086 + ], + [ + 69.89296448393472, + 46.842401251809314 + ], + [ + 69.66327911696737, + 46.842401251809314 + ], + [ + 69.77812180045105, + 46.64775351688086 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 46.64775351688086 + ], + [ + 69.66327911696737, + 46.842401251809314 + ], + [ + 69.54843643348369, + 46.64775351688086 + ], + [ + 69.77812180045105, + 46.64775351688086 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 46.64775351688086 + ], + [ + 69.54843643348369, + 46.64775351688086 + ], + [ + 69.66327911696737, + 46.45310578195241 + ], + [ + 69.77812180045105, + 46.64775351688086 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 46.64775351688086 + ], + [ + 69.66327911696737, + 46.45310578195241 + ], + [ + 69.89296448393472, + 46.45310578195241 + ], + [ + 69.77812180045105, + 46.64775351688086 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 46.64775351688086 + ], + [ + 69.89296448393472, + 46.45310578195241 + ], + [ + 70.0078071674184, + 46.64775351688086 + ], + [ + 69.77812180045105, + 46.64775351688086 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 47.037048986737766 + ], + [ + 70.0078071674184, + 47.037048986737766 + ], + [ + 69.89296448393472, + 47.23169672166622 + ], + [ + 69.77812180045105, + 47.037048986737766 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 47.037048986737766 + ], + [ + 69.89296448393472, + 47.23169672166622 + ], + [ + 69.66327911696737, + 47.23169672166622 + ], + [ + 69.77812180045105, + 47.037048986737766 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 47.037048986737766 + ], + [ + 69.66327911696737, + 47.23169672166622 + ], + [ + 69.54843643348369, + 47.037048986737766 + ], + [ + 69.77812180045105, + 47.037048986737766 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 47.037048986737766 + ], + [ + 69.54843643348369, + 47.037048986737766 + ], + [ + 69.66327911696737, + 46.842401251809314 + ], + [ + 69.77812180045105, + 47.037048986737766 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 47.037048986737766 + ], + [ + 69.66327911696737, + 46.842401251809314 + ], + [ + 69.89296448393472, + 46.842401251809314 + ], + [ + 69.77812180045105, + 47.037048986737766 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 47.037048986737766 + ], + [ + 69.89296448393472, + 46.842401251809314 + ], + [ + 70.0078071674184, + 47.037048986737766 + ], + [ + 69.77812180045105, + 47.037048986737766 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 47.42634445659467 + ], + [ + 70.0078071674184, + 47.42634445659467 + ], + [ + 69.89296448393472, + 47.62099219152312 + ], + [ + 69.77812180045105, + 47.42634445659467 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 47.42634445659467 + ], + [ + 69.89296448393472, + 47.62099219152312 + ], + [ + 69.66327911696737, + 47.62099219152312 + ], + [ + 69.77812180045105, + 47.42634445659467 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 47.42634445659467 + ], + [ + 69.66327911696737, + 47.62099219152312 + ], + [ + 69.54843643348369, + 47.42634445659467 + ], + [ + 69.77812180045105, + 47.42634445659467 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 47.42634445659467 + ], + [ + 69.54843643348369, + 47.42634445659467 + ], + [ + 69.66327911696737, + 47.23169672166622 + ], + [ + 69.77812180045105, + 47.42634445659467 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 47.42634445659467 + ], + [ + 69.66327911696737, + 47.23169672166622 + ], + [ + 69.89296448393472, + 47.23169672166622 + ], + [ + 69.77812180045105, + 47.42634445659467 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 47.42634445659467 + ], + [ + 69.89296448393472, + 47.23169672166622 + ], + [ + 70.0078071674184, + 47.42634445659467 + ], + [ + 69.77812180045105, + 47.42634445659467 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 47.81563992645159 + ], + [ + 70.0078071674184, + 47.81563992645159 + ], + [ + 69.89296448393472, + 48.01028766138004 + ], + [ + 69.77812180045105, + 47.81563992645159 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 47.81563992645159 + ], + [ + 69.89296448393472, + 48.01028766138004 + ], + [ + 69.66327911696737, + 48.01028766138004 + ], + [ + 69.77812180045105, + 47.81563992645159 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 47.81563992645159 + ], + [ + 69.66327911696737, + 48.01028766138004 + ], + [ + 69.54843643348369, + 47.81563992645159 + ], + [ + 69.77812180045105, + 47.81563992645159 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 47.81563992645159 + ], + [ + 69.54843643348369, + 47.81563992645159 + ], + [ + 69.66327911696737, + 47.620992191523136 + ], + [ + 69.77812180045105, + 47.81563992645159 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 47.81563992645159 + ], + [ + 69.66327911696737, + 47.620992191523136 + ], + [ + 69.89296448393472, + 47.620992191523136 + ], + [ + 69.77812180045105, + 47.81563992645159 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.77812180045105, + 47.81563992645159 + ], + [ + 69.89296448393472, + 47.620992191523136 + ], + [ + 70.0078071674184, + 47.81563992645159 + ], + [ + 69.77812180045105, + 47.81563992645159 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 11.805808964687746 + ], + [ + 70.35233521786944, + 11.805808964687746 + ], + [ + 70.23749253438575, + 12.0004566996162 + ], + [ + 70.12264985090208, + 11.805808964687746 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 11.805808964687746 + ], + [ + 70.23749253438575, + 12.0004566996162 + ], + [ + 70.0078071674184, + 12.0004566996162 + ], + [ + 70.12264985090208, + 11.805808964687746 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 11.805808964687746 + ], + [ + 70.0078071674184, + 12.0004566996162 + ], + [ + 69.89296448393472, + 11.805808964687746 + ], + [ + 70.12264985090208, + 11.805808964687746 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 11.805808964687746 + ], + [ + 69.89296448393472, + 11.805808964687746 + ], + [ + 70.0078071674184, + 11.611161229759292 + ], + [ + 70.12264985090208, + 11.805808964687746 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 11.805808964687746 + ], + [ + 70.0078071674184, + 11.611161229759292 + ], + [ + 70.23749253438575, + 11.611161229759292 + ], + [ + 70.12264985090208, + 11.805808964687746 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 11.805808964687746 + ], + [ + 70.23749253438575, + 11.611161229759292 + ], + [ + 70.35233521786944, + 11.805808964687746 + ], + [ + 70.12264985090208, + 11.805808964687746 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 12.195104434544652 + ], + [ + 70.35233521786944, + 12.195104434544652 + ], + [ + 70.23749253438575, + 12.389752169473105 + ], + [ + 70.12264985090208, + 12.195104434544652 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 12.195104434544652 + ], + [ + 70.23749253438575, + 12.389752169473105 + ], + [ + 70.0078071674184, + 12.389752169473105 + ], + [ + 70.12264985090208, + 12.195104434544652 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 12.195104434544652 + ], + [ + 70.0078071674184, + 12.389752169473105 + ], + [ + 69.89296448393472, + 12.195104434544652 + ], + [ + 70.12264985090208, + 12.195104434544652 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 12.195104434544652 + ], + [ + 69.89296448393472, + 12.195104434544652 + ], + [ + 70.0078071674184, + 12.000456699616198 + ], + [ + 70.12264985090208, + 12.195104434544652 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 12.195104434544652 + ], + [ + 70.0078071674184, + 12.000456699616198 + ], + [ + 70.23749253438575, + 12.000456699616198 + ], + [ + 70.12264985090208, + 12.195104434544652 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 12.195104434544652 + ], + [ + 70.23749253438575, + 12.000456699616198 + ], + [ + 70.35233521786944, + 12.195104434544652 + ], + [ + 70.12264985090208, + 12.195104434544652 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 12.58439990440156 + ], + [ + 70.35233521786944, + 12.58439990440156 + ], + [ + 70.23749253438575, + 12.779047639330013 + ], + [ + 70.12264985090208, + 12.58439990440156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 12.58439990440156 + ], + [ + 70.23749253438575, + 12.779047639330013 + ], + [ + 70.0078071674184, + 12.779047639330013 + ], + [ + 70.12264985090208, + 12.58439990440156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 12.58439990440156 + ], + [ + 70.0078071674184, + 12.779047639330013 + ], + [ + 69.89296448393472, + 12.58439990440156 + ], + [ + 70.12264985090208, + 12.58439990440156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 12.58439990440156 + ], + [ + 69.89296448393472, + 12.58439990440156 + ], + [ + 70.0078071674184, + 12.389752169473105 + ], + [ + 70.12264985090208, + 12.58439990440156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 12.58439990440156 + ], + [ + 70.0078071674184, + 12.389752169473105 + ], + [ + 70.23749253438575, + 12.389752169473105 + ], + [ + 70.12264985090208, + 12.58439990440156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 12.58439990440156 + ], + [ + 70.23749253438575, + 12.389752169473105 + ], + [ + 70.35233521786944, + 12.58439990440156 + ], + [ + 70.12264985090208, + 12.58439990440156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 12.973695374258465 + ], + [ + 70.35233521786944, + 12.973695374258465 + ], + [ + 70.23749253438575, + 13.16834310918692 + ], + [ + 70.12264985090208, + 12.973695374258465 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 12.973695374258465 + ], + [ + 70.23749253438575, + 13.16834310918692 + ], + [ + 70.0078071674184, + 13.16834310918692 + ], + [ + 70.12264985090208, + 12.973695374258465 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 12.973695374258465 + ], + [ + 70.0078071674184, + 13.16834310918692 + ], + [ + 69.89296448393472, + 12.973695374258465 + ], + [ + 70.12264985090208, + 12.973695374258465 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 12.973695374258465 + ], + [ + 69.89296448393472, + 12.973695374258465 + ], + [ + 70.0078071674184, + 12.779047639330011 + ], + [ + 70.12264985090208, + 12.973695374258465 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 12.973695374258465 + ], + [ + 70.0078071674184, + 12.779047639330011 + ], + [ + 70.23749253438575, + 12.779047639330011 + ], + [ + 70.12264985090208, + 12.973695374258465 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 12.973695374258465 + ], + [ + 70.23749253438575, + 12.779047639330011 + ], + [ + 70.35233521786944, + 12.973695374258465 + ], + [ + 70.12264985090208, + 12.973695374258465 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 13.362990844115371 + ], + [ + 70.35233521786944, + 13.362990844115371 + ], + [ + 70.23749253438575, + 13.557638579043825 + ], + [ + 70.12264985090208, + 13.362990844115371 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 13.362990844115371 + ], + [ + 70.23749253438575, + 13.557638579043825 + ], + [ + 70.0078071674184, + 13.557638579043825 + ], + [ + 70.12264985090208, + 13.362990844115371 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 13.362990844115371 + ], + [ + 70.0078071674184, + 13.557638579043825 + ], + [ + 69.89296448393472, + 13.362990844115371 + ], + [ + 70.12264985090208, + 13.362990844115371 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 13.362990844115371 + ], + [ + 69.89296448393472, + 13.362990844115371 + ], + [ + 70.0078071674184, + 13.168343109186917 + ], + [ + 70.12264985090208, + 13.362990844115371 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 13.362990844115371 + ], + [ + 70.0078071674184, + 13.168343109186917 + ], + [ + 70.23749253438575, + 13.168343109186917 + ], + [ + 70.12264985090208, + 13.362990844115371 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 13.362990844115371 + ], + [ + 70.23749253438575, + 13.168343109186917 + ], + [ + 70.35233521786944, + 13.362990844115371 + ], + [ + 70.12264985090208, + 13.362990844115371 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 13.752286313972277 + ], + [ + 70.35233521786944, + 13.752286313972277 + ], + [ + 70.23749253438575, + 13.946934048900731 + ], + [ + 70.12264985090208, + 13.752286313972277 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 13.752286313972277 + ], + [ + 70.23749253438575, + 13.946934048900731 + ], + [ + 70.0078071674184, + 13.946934048900731 + ], + [ + 70.12264985090208, + 13.752286313972277 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 13.752286313972277 + ], + [ + 70.0078071674184, + 13.946934048900731 + ], + [ + 69.89296448393472, + 13.752286313972277 + ], + [ + 70.12264985090208, + 13.752286313972277 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 13.752286313972277 + ], + [ + 69.89296448393472, + 13.752286313972277 + ], + [ + 70.0078071674184, + 13.557638579043823 + ], + [ + 70.12264985090208, + 13.752286313972277 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 13.752286313972277 + ], + [ + 70.0078071674184, + 13.557638579043823 + ], + [ + 70.23749253438575, + 13.557638579043823 + ], + [ + 70.12264985090208, + 13.752286313972277 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 13.752286313972277 + ], + [ + 70.23749253438575, + 13.557638579043823 + ], + [ + 70.35233521786944, + 13.752286313972277 + ], + [ + 70.12264985090208, + 13.752286313972277 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 14.141581783829183 + ], + [ + 70.35233521786944, + 14.141581783829183 + ], + [ + 70.23749253438575, + 14.336229518757637 + ], + [ + 70.12264985090208, + 14.141581783829183 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 14.141581783829183 + ], + [ + 70.23749253438575, + 14.336229518757637 + ], + [ + 70.0078071674184, + 14.336229518757637 + ], + [ + 70.12264985090208, + 14.141581783829183 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 14.141581783829183 + ], + [ + 70.0078071674184, + 14.336229518757637 + ], + [ + 69.89296448393472, + 14.141581783829183 + ], + [ + 70.12264985090208, + 14.141581783829183 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 14.141581783829183 + ], + [ + 69.89296448393472, + 14.141581783829183 + ], + [ + 70.0078071674184, + 13.94693404890073 + ], + [ + 70.12264985090208, + 14.141581783829183 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 14.141581783829183 + ], + [ + 70.0078071674184, + 13.94693404890073 + ], + [ + 70.23749253438575, + 13.94693404890073 + ], + [ + 70.12264985090208, + 14.141581783829183 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 14.141581783829183 + ], + [ + 70.23749253438575, + 13.94693404890073 + ], + [ + 70.35233521786944, + 14.141581783829183 + ], + [ + 70.12264985090208, + 14.141581783829183 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 14.530877253686091 + ], + [ + 70.35233521786944, + 14.530877253686091 + ], + [ + 70.23749253438575, + 14.725524988614545 + ], + [ + 70.12264985090208, + 14.530877253686091 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 14.530877253686091 + ], + [ + 70.23749253438575, + 14.725524988614545 + ], + [ + 70.0078071674184, + 14.725524988614545 + ], + [ + 70.12264985090208, + 14.530877253686091 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 14.530877253686091 + ], + [ + 70.0078071674184, + 14.725524988614545 + ], + [ + 69.89296448393472, + 14.530877253686091 + ], + [ + 70.12264985090208, + 14.530877253686091 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 14.530877253686091 + ], + [ + 69.89296448393472, + 14.530877253686091 + ], + [ + 70.0078071674184, + 14.336229518757637 + ], + [ + 70.12264985090208, + 14.530877253686091 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 14.530877253686091 + ], + [ + 70.0078071674184, + 14.336229518757637 + ], + [ + 70.23749253438575, + 14.336229518757637 + ], + [ + 70.12264985090208, + 14.530877253686091 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 14.530877253686091 + ], + [ + 70.23749253438575, + 14.336229518757637 + ], + [ + 70.35233521786944, + 14.530877253686091 + ], + [ + 70.12264985090208, + 14.530877253686091 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 14.920172723542997 + ], + [ + 70.35233521786944, + 14.920172723542997 + ], + [ + 70.23749253438575, + 15.114820458471451 + ], + [ + 70.12264985090208, + 14.920172723542997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 14.920172723542997 + ], + [ + 70.23749253438575, + 15.114820458471451 + ], + [ + 70.0078071674184, + 15.114820458471451 + ], + [ + 70.12264985090208, + 14.920172723542997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 14.920172723542997 + ], + [ + 70.0078071674184, + 15.114820458471451 + ], + [ + 69.89296448393472, + 14.920172723542997 + ], + [ + 70.12264985090208, + 14.920172723542997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 14.920172723542997 + ], + [ + 69.89296448393472, + 14.920172723542997 + ], + [ + 70.0078071674184, + 14.725524988614543 + ], + [ + 70.12264985090208, + 14.920172723542997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 14.920172723542997 + ], + [ + 70.0078071674184, + 14.725524988614543 + ], + [ + 70.23749253438575, + 14.725524988614543 + ], + [ + 70.12264985090208, + 14.920172723542997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 14.920172723542997 + ], + [ + 70.23749253438575, + 14.725524988614543 + ], + [ + 70.35233521786944, + 14.920172723542997 + ], + [ + 70.12264985090208, + 14.920172723542997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 15.309468193399903 + ], + [ + 70.35233521786944, + 15.309468193399903 + ], + [ + 70.23749253438575, + 15.504115928328357 + ], + [ + 70.12264985090208, + 15.309468193399903 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 15.309468193399903 + ], + [ + 70.23749253438575, + 15.504115928328357 + ], + [ + 70.0078071674184, + 15.504115928328357 + ], + [ + 70.12264985090208, + 15.309468193399903 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 15.309468193399903 + ], + [ + 70.0078071674184, + 15.504115928328357 + ], + [ + 69.89296448393472, + 15.309468193399903 + ], + [ + 70.12264985090208, + 15.309468193399903 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 15.309468193399903 + ], + [ + 69.89296448393472, + 15.309468193399903 + ], + [ + 70.0078071674184, + 15.11482045847145 + ], + [ + 70.12264985090208, + 15.309468193399903 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 15.309468193399903 + ], + [ + 70.0078071674184, + 15.11482045847145 + ], + [ + 70.23749253438575, + 15.11482045847145 + ], + [ + 70.12264985090208, + 15.309468193399903 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 15.309468193399903 + ], + [ + 70.23749253438575, + 15.11482045847145 + ], + [ + 70.35233521786944, + 15.309468193399903 + ], + [ + 70.12264985090208, + 15.309468193399903 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 15.69876366325681 + ], + [ + 70.35233521786944, + 15.69876366325681 + ], + [ + 70.23749253438575, + 15.893411398185265 + ], + [ + 70.12264985090208, + 15.69876366325681 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 15.69876366325681 + ], + [ + 70.23749253438575, + 15.893411398185265 + ], + [ + 70.0078071674184, + 15.893411398185265 + ], + [ + 70.12264985090208, + 15.69876366325681 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 15.69876366325681 + ], + [ + 70.0078071674184, + 15.893411398185265 + ], + [ + 69.89296448393472, + 15.69876366325681 + ], + [ + 70.12264985090208, + 15.69876366325681 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 15.69876366325681 + ], + [ + 69.89296448393472, + 15.69876366325681 + ], + [ + 70.0078071674184, + 15.504115928328357 + ], + [ + 70.12264985090208, + 15.69876366325681 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 15.69876366325681 + ], + [ + 70.0078071674184, + 15.504115928328357 + ], + [ + 70.23749253438575, + 15.504115928328357 + ], + [ + 70.12264985090208, + 15.69876366325681 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 15.69876366325681 + ], + [ + 70.23749253438575, + 15.504115928328357 + ], + [ + 70.35233521786944, + 15.69876366325681 + ], + [ + 70.12264985090208, + 15.69876366325681 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 16.088059133113717 + ], + [ + 70.35233521786944, + 16.088059133113717 + ], + [ + 70.23749253438575, + 16.28270686804217 + ], + [ + 70.12264985090208, + 16.088059133113717 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 16.088059133113717 + ], + [ + 70.23749253438575, + 16.28270686804217 + ], + [ + 70.0078071674184, + 16.28270686804217 + ], + [ + 70.12264985090208, + 16.088059133113717 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 16.088059133113717 + ], + [ + 70.0078071674184, + 16.28270686804217 + ], + [ + 69.89296448393472, + 16.088059133113717 + ], + [ + 70.12264985090208, + 16.088059133113717 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 16.088059133113717 + ], + [ + 69.89296448393472, + 16.088059133113717 + ], + [ + 70.0078071674184, + 15.893411398185263 + ], + [ + 70.12264985090208, + 16.088059133113717 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 16.088059133113717 + ], + [ + 70.0078071674184, + 15.893411398185263 + ], + [ + 70.23749253438575, + 15.893411398185263 + ], + [ + 70.12264985090208, + 16.088059133113717 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 16.088059133113717 + ], + [ + 70.23749253438575, + 15.893411398185263 + ], + [ + 70.35233521786944, + 16.088059133113717 + ], + [ + 70.12264985090208, + 16.088059133113717 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 16.477354602970625 + ], + [ + 70.35233521786944, + 16.477354602970625 + ], + [ + 70.23749253438575, + 16.672002337899077 + ], + [ + 70.12264985090208, + 16.477354602970625 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 16.477354602970625 + ], + [ + 70.23749253438575, + 16.672002337899077 + ], + [ + 70.0078071674184, + 16.672002337899077 + ], + [ + 70.12264985090208, + 16.477354602970625 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 16.477354602970625 + ], + [ + 70.0078071674184, + 16.672002337899077 + ], + [ + 69.89296448393472, + 16.477354602970625 + ], + [ + 70.12264985090208, + 16.477354602970625 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 16.477354602970625 + ], + [ + 69.89296448393472, + 16.477354602970625 + ], + [ + 70.0078071674184, + 16.282706868042172 + ], + [ + 70.12264985090208, + 16.477354602970625 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 16.477354602970625 + ], + [ + 70.0078071674184, + 16.282706868042172 + ], + [ + 70.23749253438575, + 16.282706868042172 + ], + [ + 70.12264985090208, + 16.477354602970625 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 16.477354602970625 + ], + [ + 70.23749253438575, + 16.282706868042172 + ], + [ + 70.35233521786944, + 16.477354602970625 + ], + [ + 70.12264985090208, + 16.477354602970625 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 16.86665007282753 + ], + [ + 70.35233521786944, + 16.86665007282753 + ], + [ + 70.23749253438575, + 17.06129780775598 + ], + [ + 70.12264985090208, + 16.86665007282753 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 16.86665007282753 + ], + [ + 70.23749253438575, + 17.06129780775598 + ], + [ + 70.0078071674184, + 17.06129780775598 + ], + [ + 70.12264985090208, + 16.86665007282753 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 16.86665007282753 + ], + [ + 70.0078071674184, + 17.06129780775598 + ], + [ + 69.89296448393472, + 16.86665007282753 + ], + [ + 70.12264985090208, + 16.86665007282753 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 16.86665007282753 + ], + [ + 69.89296448393472, + 16.86665007282753 + ], + [ + 70.0078071674184, + 16.672002337899077 + ], + [ + 70.12264985090208, + 16.86665007282753 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 16.86665007282753 + ], + [ + 70.0078071674184, + 16.672002337899077 + ], + [ + 70.23749253438575, + 16.672002337899077 + ], + [ + 70.12264985090208, + 16.86665007282753 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 16.86665007282753 + ], + [ + 70.23749253438575, + 16.672002337899077 + ], + [ + 70.35233521786944, + 16.86665007282753 + ], + [ + 70.12264985090208, + 16.86665007282753 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 17.255945542684437 + ], + [ + 70.35233521786944, + 17.255945542684437 + ], + [ + 70.23749253438575, + 17.45059327761289 + ], + [ + 70.12264985090208, + 17.255945542684437 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 17.255945542684437 + ], + [ + 70.23749253438575, + 17.45059327761289 + ], + [ + 70.0078071674184, + 17.45059327761289 + ], + [ + 70.12264985090208, + 17.255945542684437 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 17.255945542684437 + ], + [ + 70.0078071674184, + 17.45059327761289 + ], + [ + 69.89296448393472, + 17.255945542684437 + ], + [ + 70.12264985090208, + 17.255945542684437 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 17.255945542684437 + ], + [ + 69.89296448393472, + 17.255945542684437 + ], + [ + 70.0078071674184, + 17.061297807755984 + ], + [ + 70.12264985090208, + 17.255945542684437 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 17.255945542684437 + ], + [ + 70.0078071674184, + 17.061297807755984 + ], + [ + 70.23749253438575, + 17.061297807755984 + ], + [ + 70.12264985090208, + 17.255945542684437 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 17.255945542684437 + ], + [ + 70.23749253438575, + 17.061297807755984 + ], + [ + 70.35233521786944, + 17.255945542684437 + ], + [ + 70.12264985090208, + 17.255945542684437 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 17.64524101254134 + ], + [ + 70.35233521786944, + 17.64524101254134 + ], + [ + 70.23749253438575, + 17.839888747469793 + ], + [ + 70.12264985090208, + 17.64524101254134 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 17.64524101254134 + ], + [ + 70.23749253438575, + 17.839888747469793 + ], + [ + 70.0078071674184, + 17.839888747469793 + ], + [ + 70.12264985090208, + 17.64524101254134 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 17.64524101254134 + ], + [ + 70.0078071674184, + 17.839888747469793 + ], + [ + 69.89296448393472, + 17.64524101254134 + ], + [ + 70.12264985090208, + 17.64524101254134 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 17.64524101254134 + ], + [ + 69.89296448393472, + 17.64524101254134 + ], + [ + 70.0078071674184, + 17.45059327761289 + ], + [ + 70.12264985090208, + 17.64524101254134 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 17.64524101254134 + ], + [ + 70.0078071674184, + 17.45059327761289 + ], + [ + 70.23749253438575, + 17.45059327761289 + ], + [ + 70.12264985090208, + 17.64524101254134 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 17.64524101254134 + ], + [ + 70.23749253438575, + 17.45059327761289 + ], + [ + 70.35233521786944, + 17.64524101254134 + ], + [ + 70.12264985090208, + 17.64524101254134 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 18.03453648239825 + ], + [ + 70.35233521786944, + 18.03453648239825 + ], + [ + 70.23749253438575, + 18.2291842173267 + ], + [ + 70.12264985090208, + 18.03453648239825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 18.03453648239825 + ], + [ + 70.23749253438575, + 18.2291842173267 + ], + [ + 70.0078071674184, + 18.2291842173267 + ], + [ + 70.12264985090208, + 18.03453648239825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 18.03453648239825 + ], + [ + 70.0078071674184, + 18.2291842173267 + ], + [ + 69.89296448393472, + 18.03453648239825 + ], + [ + 70.12264985090208, + 18.03453648239825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 18.03453648239825 + ], + [ + 69.89296448393472, + 18.03453648239825 + ], + [ + 70.0078071674184, + 17.839888747469796 + ], + [ + 70.12264985090208, + 18.03453648239825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 18.03453648239825 + ], + [ + 70.0078071674184, + 17.839888747469796 + ], + [ + 70.23749253438575, + 17.839888747469796 + ], + [ + 70.12264985090208, + 18.03453648239825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 18.03453648239825 + ], + [ + 70.23749253438575, + 17.839888747469796 + ], + [ + 70.35233521786944, + 18.03453648239825 + ], + [ + 70.12264985090208, + 18.03453648239825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 18.423831952255156 + ], + [ + 70.35233521786944, + 18.423831952255156 + ], + [ + 70.23749253438575, + 18.61847968718361 + ], + [ + 70.12264985090208, + 18.423831952255156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 18.423831952255156 + ], + [ + 70.23749253438575, + 18.61847968718361 + ], + [ + 70.0078071674184, + 18.61847968718361 + ], + [ + 70.12264985090208, + 18.423831952255156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 18.423831952255156 + ], + [ + 70.0078071674184, + 18.61847968718361 + ], + [ + 69.89296448393472, + 18.423831952255156 + ], + [ + 70.12264985090208, + 18.423831952255156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 18.423831952255156 + ], + [ + 69.89296448393472, + 18.423831952255156 + ], + [ + 70.0078071674184, + 18.229184217326704 + ], + [ + 70.12264985090208, + 18.423831952255156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 18.423831952255156 + ], + [ + 70.0078071674184, + 18.229184217326704 + ], + [ + 70.23749253438575, + 18.229184217326704 + ], + [ + 70.12264985090208, + 18.423831952255156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 18.423831952255156 + ], + [ + 70.23749253438575, + 18.229184217326704 + ], + [ + 70.35233521786944, + 18.423831952255156 + ], + [ + 70.12264985090208, + 18.423831952255156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 18.81312742211206 + ], + [ + 70.35233521786944, + 18.81312742211206 + ], + [ + 70.23749253438575, + 19.007775157040513 + ], + [ + 70.12264985090208, + 18.81312742211206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 18.81312742211206 + ], + [ + 70.23749253438575, + 19.007775157040513 + ], + [ + 70.0078071674184, + 19.007775157040513 + ], + [ + 70.12264985090208, + 18.81312742211206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 18.81312742211206 + ], + [ + 70.0078071674184, + 19.007775157040513 + ], + [ + 69.89296448393472, + 18.81312742211206 + ], + [ + 70.12264985090208, + 18.81312742211206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 18.81312742211206 + ], + [ + 69.89296448393472, + 18.81312742211206 + ], + [ + 70.0078071674184, + 18.61847968718361 + ], + [ + 70.12264985090208, + 18.81312742211206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 18.81312742211206 + ], + [ + 70.0078071674184, + 18.61847968718361 + ], + [ + 70.23749253438575, + 18.61847968718361 + ], + [ + 70.12264985090208, + 18.81312742211206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 18.81312742211206 + ], + [ + 70.23749253438575, + 18.61847968718361 + ], + [ + 70.35233521786944, + 18.81312742211206 + ], + [ + 70.12264985090208, + 18.81312742211206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 19.20242289196897 + ], + [ + 70.35233521786944, + 19.20242289196897 + ], + [ + 70.23749253438575, + 19.39707062689742 + ], + [ + 70.12264985090208, + 19.20242289196897 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 19.20242289196897 + ], + [ + 70.23749253438575, + 19.39707062689742 + ], + [ + 70.0078071674184, + 19.39707062689742 + ], + [ + 70.12264985090208, + 19.20242289196897 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 19.20242289196897 + ], + [ + 70.0078071674184, + 19.39707062689742 + ], + [ + 69.89296448393472, + 19.20242289196897 + ], + [ + 70.12264985090208, + 19.20242289196897 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 19.20242289196897 + ], + [ + 69.89296448393472, + 19.20242289196897 + ], + [ + 70.0078071674184, + 19.007775157040516 + ], + [ + 70.12264985090208, + 19.20242289196897 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 19.20242289196897 + ], + [ + 70.0078071674184, + 19.007775157040516 + ], + [ + 70.23749253438575, + 19.007775157040516 + ], + [ + 70.12264985090208, + 19.20242289196897 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 19.20242289196897 + ], + [ + 70.23749253438575, + 19.007775157040516 + ], + [ + 70.35233521786944, + 19.20242289196897 + ], + [ + 70.12264985090208, + 19.20242289196897 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 19.591718361825876 + ], + [ + 70.35233521786944, + 19.591718361825876 + ], + [ + 70.23749253438575, + 19.78636609675433 + ], + [ + 70.12264985090208, + 19.591718361825876 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 19.591718361825876 + ], + [ + 70.23749253438575, + 19.78636609675433 + ], + [ + 70.0078071674184, + 19.78636609675433 + ], + [ + 70.12264985090208, + 19.591718361825876 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 19.591718361825876 + ], + [ + 70.0078071674184, + 19.78636609675433 + ], + [ + 69.89296448393472, + 19.591718361825876 + ], + [ + 70.12264985090208, + 19.591718361825876 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 19.591718361825876 + ], + [ + 69.89296448393472, + 19.591718361825876 + ], + [ + 70.0078071674184, + 19.397070626897424 + ], + [ + 70.12264985090208, + 19.591718361825876 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 19.591718361825876 + ], + [ + 70.0078071674184, + 19.397070626897424 + ], + [ + 70.23749253438575, + 19.397070626897424 + ], + [ + 70.12264985090208, + 19.591718361825876 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 19.591718361825876 + ], + [ + 70.23749253438575, + 19.397070626897424 + ], + [ + 70.35233521786944, + 19.591718361825876 + ], + [ + 70.12264985090208, + 19.591718361825876 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 19.98101383168278 + ], + [ + 70.35233521786944, + 19.98101383168278 + ], + [ + 70.23749253438575, + 20.175661566611232 + ], + [ + 70.12264985090208, + 19.98101383168278 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 19.98101383168278 + ], + [ + 70.23749253438575, + 20.175661566611232 + ], + [ + 70.0078071674184, + 20.175661566611232 + ], + [ + 70.12264985090208, + 19.98101383168278 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 19.98101383168278 + ], + [ + 70.0078071674184, + 20.175661566611232 + ], + [ + 69.89296448393472, + 19.98101383168278 + ], + [ + 70.12264985090208, + 19.98101383168278 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 19.98101383168278 + ], + [ + 69.89296448393472, + 19.98101383168278 + ], + [ + 70.0078071674184, + 19.78636609675433 + ], + [ + 70.12264985090208, + 19.98101383168278 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 19.98101383168278 + ], + [ + 70.0078071674184, + 19.78636609675433 + ], + [ + 70.23749253438575, + 19.78636609675433 + ], + [ + 70.12264985090208, + 19.98101383168278 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 19.98101383168278 + ], + [ + 70.23749253438575, + 19.78636609675433 + ], + [ + 70.35233521786944, + 19.98101383168278 + ], + [ + 70.12264985090208, + 19.98101383168278 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 20.370309301539685 + ], + [ + 70.35233521786944, + 20.370309301539685 + ], + [ + 70.23749253438575, + 20.564957036468137 + ], + [ + 70.12264985090208, + 20.370309301539685 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 20.370309301539685 + ], + [ + 70.23749253438575, + 20.564957036468137 + ], + [ + 70.0078071674184, + 20.564957036468137 + ], + [ + 70.12264985090208, + 20.370309301539685 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 20.370309301539685 + ], + [ + 70.0078071674184, + 20.564957036468137 + ], + [ + 69.89296448393472, + 20.370309301539685 + ], + [ + 70.12264985090208, + 20.370309301539685 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 20.370309301539685 + ], + [ + 69.89296448393472, + 20.370309301539685 + ], + [ + 70.0078071674184, + 20.175661566611232 + ], + [ + 70.12264985090208, + 20.370309301539685 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 20.370309301539685 + ], + [ + 70.0078071674184, + 20.175661566611232 + ], + [ + 70.23749253438575, + 20.175661566611232 + ], + [ + 70.12264985090208, + 20.370309301539685 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 20.370309301539685 + ], + [ + 70.23749253438575, + 20.175661566611232 + ], + [ + 70.35233521786944, + 20.370309301539685 + ], + [ + 70.12264985090208, + 20.370309301539685 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 20.759604771396592 + ], + [ + 70.35233521786944, + 20.759604771396592 + ], + [ + 70.23749253438575, + 20.954252506325044 + ], + [ + 70.12264985090208, + 20.759604771396592 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 20.759604771396592 + ], + [ + 70.23749253438575, + 20.954252506325044 + ], + [ + 70.0078071674184, + 20.954252506325044 + ], + [ + 70.12264985090208, + 20.759604771396592 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 20.759604771396592 + ], + [ + 70.0078071674184, + 20.954252506325044 + ], + [ + 69.89296448393472, + 20.759604771396592 + ], + [ + 70.12264985090208, + 20.759604771396592 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 20.759604771396592 + ], + [ + 69.89296448393472, + 20.759604771396592 + ], + [ + 70.0078071674184, + 20.56495703646814 + ], + [ + 70.12264985090208, + 20.759604771396592 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 20.759604771396592 + ], + [ + 70.0078071674184, + 20.56495703646814 + ], + [ + 70.23749253438575, + 20.56495703646814 + ], + [ + 70.12264985090208, + 20.759604771396592 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 20.759604771396592 + ], + [ + 70.23749253438575, + 20.56495703646814 + ], + [ + 70.35233521786944, + 20.759604771396592 + ], + [ + 70.12264985090208, + 20.759604771396592 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 21.1489002412535 + ], + [ + 70.35233521786944, + 21.1489002412535 + ], + [ + 70.23749253438575, + 21.343547976181952 + ], + [ + 70.12264985090208, + 21.1489002412535 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 21.1489002412535 + ], + [ + 70.23749253438575, + 21.343547976181952 + ], + [ + 70.0078071674184, + 21.343547976181952 + ], + [ + 70.12264985090208, + 21.1489002412535 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 21.1489002412535 + ], + [ + 70.0078071674184, + 21.343547976181952 + ], + [ + 69.89296448393472, + 21.1489002412535 + ], + [ + 70.12264985090208, + 21.1489002412535 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 21.1489002412535 + ], + [ + 69.89296448393472, + 21.1489002412535 + ], + [ + 70.0078071674184, + 20.954252506325048 + ], + [ + 70.12264985090208, + 21.1489002412535 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 21.1489002412535 + ], + [ + 70.0078071674184, + 20.954252506325048 + ], + [ + 70.23749253438575, + 20.954252506325048 + ], + [ + 70.12264985090208, + 21.1489002412535 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 21.1489002412535 + ], + [ + 70.23749253438575, + 20.954252506325048 + ], + [ + 70.35233521786944, + 21.1489002412535 + ], + [ + 70.12264985090208, + 21.1489002412535 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 21.538195711110404 + ], + [ + 70.35233521786944, + 21.538195711110404 + ], + [ + 70.23749253438575, + 21.732843446038856 + ], + [ + 70.12264985090208, + 21.538195711110404 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 21.538195711110404 + ], + [ + 70.23749253438575, + 21.732843446038856 + ], + [ + 70.0078071674184, + 21.732843446038856 + ], + [ + 70.12264985090208, + 21.538195711110404 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 21.538195711110404 + ], + [ + 70.0078071674184, + 21.732843446038856 + ], + [ + 69.89296448393472, + 21.538195711110404 + ], + [ + 70.12264985090208, + 21.538195711110404 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 21.538195711110404 + ], + [ + 69.89296448393472, + 21.538195711110404 + ], + [ + 70.0078071674184, + 21.343547976181952 + ], + [ + 70.12264985090208, + 21.538195711110404 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 21.538195711110404 + ], + [ + 70.0078071674184, + 21.343547976181952 + ], + [ + 70.23749253438575, + 21.343547976181952 + ], + [ + 70.12264985090208, + 21.538195711110404 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 21.538195711110404 + ], + [ + 70.23749253438575, + 21.343547976181952 + ], + [ + 70.35233521786944, + 21.538195711110404 + ], + [ + 70.12264985090208, + 21.538195711110404 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 21.927491180967312 + ], + [ + 70.35233521786944, + 21.927491180967312 + ], + [ + 70.23749253438575, + 22.122138915895764 + ], + [ + 70.12264985090208, + 21.927491180967312 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 21.927491180967312 + ], + [ + 70.23749253438575, + 22.122138915895764 + ], + [ + 70.0078071674184, + 22.122138915895764 + ], + [ + 70.12264985090208, + 21.927491180967312 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 21.927491180967312 + ], + [ + 70.0078071674184, + 22.122138915895764 + ], + [ + 69.89296448393472, + 21.927491180967312 + ], + [ + 70.12264985090208, + 21.927491180967312 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 21.927491180967312 + ], + [ + 69.89296448393472, + 21.927491180967312 + ], + [ + 70.0078071674184, + 21.73284344603886 + ], + [ + 70.12264985090208, + 21.927491180967312 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 21.927491180967312 + ], + [ + 70.0078071674184, + 21.73284344603886 + ], + [ + 70.23749253438575, + 21.73284344603886 + ], + [ + 70.12264985090208, + 21.927491180967312 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 21.927491180967312 + ], + [ + 70.23749253438575, + 21.73284344603886 + ], + [ + 70.35233521786944, + 21.927491180967312 + ], + [ + 70.12264985090208, + 21.927491180967312 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 22.31678665082422 + ], + [ + 70.35233521786944, + 22.31678665082422 + ], + [ + 70.23749253438575, + 22.511434385752672 + ], + [ + 70.12264985090208, + 22.31678665082422 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 22.31678665082422 + ], + [ + 70.23749253438575, + 22.511434385752672 + ], + [ + 70.0078071674184, + 22.511434385752672 + ], + [ + 70.12264985090208, + 22.31678665082422 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 22.31678665082422 + ], + [ + 70.0078071674184, + 22.511434385752672 + ], + [ + 69.89296448393472, + 22.31678665082422 + ], + [ + 70.12264985090208, + 22.31678665082422 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 22.31678665082422 + ], + [ + 69.89296448393472, + 22.31678665082422 + ], + [ + 70.0078071674184, + 22.122138915895768 + ], + [ + 70.12264985090208, + 22.31678665082422 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 22.31678665082422 + ], + [ + 70.0078071674184, + 22.122138915895768 + ], + [ + 70.23749253438575, + 22.122138915895768 + ], + [ + 70.12264985090208, + 22.31678665082422 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 22.31678665082422 + ], + [ + 70.23749253438575, + 22.122138915895768 + ], + [ + 70.35233521786944, + 22.31678665082422 + ], + [ + 70.12264985090208, + 22.31678665082422 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 22.706082120681124 + ], + [ + 70.35233521786944, + 22.706082120681124 + ], + [ + 70.23749253438575, + 22.900729855609576 + ], + [ + 70.12264985090208, + 22.706082120681124 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 22.706082120681124 + ], + [ + 70.23749253438575, + 22.900729855609576 + ], + [ + 70.0078071674184, + 22.900729855609576 + ], + [ + 70.12264985090208, + 22.706082120681124 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 22.706082120681124 + ], + [ + 70.0078071674184, + 22.900729855609576 + ], + [ + 69.89296448393472, + 22.706082120681124 + ], + [ + 70.12264985090208, + 22.706082120681124 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 22.706082120681124 + ], + [ + 69.89296448393472, + 22.706082120681124 + ], + [ + 70.0078071674184, + 22.511434385752672 + ], + [ + 70.12264985090208, + 22.706082120681124 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 22.706082120681124 + ], + [ + 70.0078071674184, + 22.511434385752672 + ], + [ + 70.23749253438575, + 22.511434385752672 + ], + [ + 70.12264985090208, + 22.706082120681124 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 22.706082120681124 + ], + [ + 70.23749253438575, + 22.511434385752672 + ], + [ + 70.35233521786944, + 22.706082120681124 + ], + [ + 70.12264985090208, + 22.706082120681124 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 23.095377590538032 + ], + [ + 70.35233521786944, + 23.095377590538032 + ], + [ + 70.23749253438575, + 23.290025325466484 + ], + [ + 70.12264985090208, + 23.095377590538032 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 23.095377590538032 + ], + [ + 70.23749253438575, + 23.290025325466484 + ], + [ + 70.0078071674184, + 23.290025325466484 + ], + [ + 70.12264985090208, + 23.095377590538032 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 23.095377590538032 + ], + [ + 70.0078071674184, + 23.290025325466484 + ], + [ + 69.89296448393472, + 23.095377590538032 + ], + [ + 70.12264985090208, + 23.095377590538032 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 23.095377590538032 + ], + [ + 69.89296448393472, + 23.095377590538032 + ], + [ + 70.0078071674184, + 22.90072985560958 + ], + [ + 70.12264985090208, + 23.095377590538032 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 23.095377590538032 + ], + [ + 70.0078071674184, + 22.90072985560958 + ], + [ + 70.23749253438575, + 22.90072985560958 + ], + [ + 70.12264985090208, + 23.095377590538032 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 23.095377590538032 + ], + [ + 70.23749253438575, + 22.90072985560958 + ], + [ + 70.35233521786944, + 23.095377590538032 + ], + [ + 70.12264985090208, + 23.095377590538032 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 23.48467306039494 + ], + [ + 70.35233521786944, + 23.48467306039494 + ], + [ + 70.23749253438575, + 23.67932079532339 + ], + [ + 70.12264985090208, + 23.48467306039494 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 23.48467306039494 + ], + [ + 70.23749253438575, + 23.67932079532339 + ], + [ + 70.0078071674184, + 23.67932079532339 + ], + [ + 70.12264985090208, + 23.48467306039494 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 23.48467306039494 + ], + [ + 70.0078071674184, + 23.67932079532339 + ], + [ + 69.89296448393472, + 23.48467306039494 + ], + [ + 70.12264985090208, + 23.48467306039494 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 23.48467306039494 + ], + [ + 69.89296448393472, + 23.48467306039494 + ], + [ + 70.0078071674184, + 23.290025325466488 + ], + [ + 70.12264985090208, + 23.48467306039494 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 23.48467306039494 + ], + [ + 70.0078071674184, + 23.290025325466488 + ], + [ + 70.23749253438575, + 23.290025325466488 + ], + [ + 70.12264985090208, + 23.48467306039494 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 23.48467306039494 + ], + [ + 70.23749253438575, + 23.290025325466488 + ], + [ + 70.35233521786944, + 23.48467306039494 + ], + [ + 70.12264985090208, + 23.48467306039494 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 23.873968530251844 + ], + [ + 70.35233521786944, + 23.873968530251844 + ], + [ + 70.23749253438575, + 24.068616265180296 + ], + [ + 70.12264985090208, + 23.873968530251844 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 23.873968530251844 + ], + [ + 70.23749253438575, + 24.068616265180296 + ], + [ + 70.0078071674184, + 24.068616265180296 + ], + [ + 70.12264985090208, + 23.873968530251844 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 23.873968530251844 + ], + [ + 70.0078071674184, + 24.068616265180296 + ], + [ + 69.89296448393472, + 23.873968530251844 + ], + [ + 70.12264985090208, + 23.873968530251844 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 23.873968530251844 + ], + [ + 69.89296448393472, + 23.873968530251844 + ], + [ + 70.0078071674184, + 23.67932079532339 + ], + [ + 70.12264985090208, + 23.873968530251844 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 23.873968530251844 + ], + [ + 70.0078071674184, + 23.67932079532339 + ], + [ + 70.23749253438575, + 23.67932079532339 + ], + [ + 70.12264985090208, + 23.873968530251844 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 23.873968530251844 + ], + [ + 70.23749253438575, + 23.67932079532339 + ], + [ + 70.35233521786944, + 23.873968530251844 + ], + [ + 70.12264985090208, + 23.873968530251844 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 24.263264000108748 + ], + [ + 70.35233521786944, + 24.263264000108748 + ], + [ + 70.23749253438575, + 24.4579117350372 + ], + [ + 70.12264985090208, + 24.263264000108748 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 24.263264000108748 + ], + [ + 70.23749253438575, + 24.4579117350372 + ], + [ + 70.0078071674184, + 24.4579117350372 + ], + [ + 70.12264985090208, + 24.263264000108748 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 24.263264000108748 + ], + [ + 70.0078071674184, + 24.4579117350372 + ], + [ + 69.89296448393472, + 24.263264000108748 + ], + [ + 70.12264985090208, + 24.263264000108748 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 24.263264000108748 + ], + [ + 69.89296448393472, + 24.263264000108748 + ], + [ + 70.0078071674184, + 24.068616265180296 + ], + [ + 70.12264985090208, + 24.263264000108748 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 24.263264000108748 + ], + [ + 70.0078071674184, + 24.068616265180296 + ], + [ + 70.23749253438575, + 24.068616265180296 + ], + [ + 70.12264985090208, + 24.263264000108748 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 24.263264000108748 + ], + [ + 70.23749253438575, + 24.068616265180296 + ], + [ + 70.35233521786944, + 24.263264000108748 + ], + [ + 70.12264985090208, + 24.263264000108748 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 24.652559469965656 + ], + [ + 70.35233521786944, + 24.652559469965656 + ], + [ + 70.23749253438575, + 24.847207204894108 + ], + [ + 70.12264985090208, + 24.652559469965656 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 24.652559469965656 + ], + [ + 70.23749253438575, + 24.847207204894108 + ], + [ + 70.0078071674184, + 24.847207204894108 + ], + [ + 70.12264985090208, + 24.652559469965656 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 24.652559469965656 + ], + [ + 70.0078071674184, + 24.847207204894108 + ], + [ + 69.89296448393472, + 24.652559469965656 + ], + [ + 70.12264985090208, + 24.652559469965656 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 24.652559469965656 + ], + [ + 69.89296448393472, + 24.652559469965656 + ], + [ + 70.0078071674184, + 24.457911735037204 + ], + [ + 70.12264985090208, + 24.652559469965656 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 24.652559469965656 + ], + [ + 70.0078071674184, + 24.457911735037204 + ], + [ + 70.23749253438575, + 24.457911735037204 + ], + [ + 70.12264985090208, + 24.652559469965656 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 24.652559469965656 + ], + [ + 70.23749253438575, + 24.457911735037204 + ], + [ + 70.35233521786944, + 24.652559469965656 + ], + [ + 70.12264985090208, + 24.652559469965656 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 25.041854939822564 + ], + [ + 70.35233521786944, + 25.041854939822564 + ], + [ + 70.23749253438575, + 25.236502674751016 + ], + [ + 70.12264985090208, + 25.041854939822564 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 25.041854939822564 + ], + [ + 70.23749253438575, + 25.236502674751016 + ], + [ + 70.0078071674184, + 25.236502674751016 + ], + [ + 70.12264985090208, + 25.041854939822564 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 25.041854939822564 + ], + [ + 70.0078071674184, + 25.236502674751016 + ], + [ + 69.89296448393472, + 25.041854939822564 + ], + [ + 70.12264985090208, + 25.041854939822564 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 25.041854939822564 + ], + [ + 69.89296448393472, + 25.041854939822564 + ], + [ + 70.0078071674184, + 24.84720720489411 + ], + [ + 70.12264985090208, + 25.041854939822564 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 25.041854939822564 + ], + [ + 70.0078071674184, + 24.84720720489411 + ], + [ + 70.23749253438575, + 24.84720720489411 + ], + [ + 70.12264985090208, + 25.041854939822564 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 25.041854939822564 + ], + [ + 70.23749253438575, + 24.84720720489411 + ], + [ + 70.35233521786944, + 25.041854939822564 + ], + [ + 70.12264985090208, + 25.041854939822564 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 25.431150409679468 + ], + [ + 70.35233521786944, + 25.431150409679468 + ], + [ + 70.23749253438575, + 25.62579814460792 + ], + [ + 70.12264985090208, + 25.431150409679468 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 25.431150409679468 + ], + [ + 70.23749253438575, + 25.62579814460792 + ], + [ + 70.0078071674184, + 25.62579814460792 + ], + [ + 70.12264985090208, + 25.431150409679468 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 25.431150409679468 + ], + [ + 70.0078071674184, + 25.62579814460792 + ], + [ + 69.89296448393472, + 25.431150409679468 + ], + [ + 70.12264985090208, + 25.431150409679468 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 25.431150409679468 + ], + [ + 69.89296448393472, + 25.431150409679468 + ], + [ + 70.0078071674184, + 25.236502674751016 + ], + [ + 70.12264985090208, + 25.431150409679468 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 25.431150409679468 + ], + [ + 70.0078071674184, + 25.236502674751016 + ], + [ + 70.23749253438575, + 25.236502674751016 + ], + [ + 70.12264985090208, + 25.431150409679468 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 25.431150409679468 + ], + [ + 70.23749253438575, + 25.236502674751016 + ], + [ + 70.35233521786944, + 25.431150409679468 + ], + [ + 70.12264985090208, + 25.431150409679468 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 25.820445879536376 + ], + [ + 70.35233521786944, + 25.820445879536376 + ], + [ + 70.23749253438575, + 26.015093614464828 + ], + [ + 70.12264985090208, + 25.820445879536376 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 25.820445879536376 + ], + [ + 70.23749253438575, + 26.015093614464828 + ], + [ + 70.0078071674184, + 26.015093614464828 + ], + [ + 70.12264985090208, + 25.820445879536376 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 25.820445879536376 + ], + [ + 70.0078071674184, + 26.015093614464828 + ], + [ + 69.89296448393472, + 25.820445879536376 + ], + [ + 70.12264985090208, + 25.820445879536376 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 25.820445879536376 + ], + [ + 69.89296448393472, + 25.820445879536376 + ], + [ + 70.0078071674184, + 25.625798144607923 + ], + [ + 70.12264985090208, + 25.820445879536376 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 25.820445879536376 + ], + [ + 70.0078071674184, + 25.625798144607923 + ], + [ + 70.23749253438575, + 25.625798144607923 + ], + [ + 70.12264985090208, + 25.820445879536376 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 25.820445879536376 + ], + [ + 70.23749253438575, + 25.625798144607923 + ], + [ + 70.35233521786944, + 25.820445879536376 + ], + [ + 70.12264985090208, + 25.820445879536376 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 26.209741349393283 + ], + [ + 70.35233521786944, + 26.209741349393283 + ], + [ + 70.23749253438575, + 26.404389084321735 + ], + [ + 70.12264985090208, + 26.209741349393283 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 26.209741349393283 + ], + [ + 70.23749253438575, + 26.404389084321735 + ], + [ + 70.0078071674184, + 26.404389084321735 + ], + [ + 70.12264985090208, + 26.209741349393283 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 26.209741349393283 + ], + [ + 70.0078071674184, + 26.404389084321735 + ], + [ + 69.89296448393472, + 26.209741349393283 + ], + [ + 70.12264985090208, + 26.209741349393283 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 26.209741349393283 + ], + [ + 69.89296448393472, + 26.209741349393283 + ], + [ + 70.0078071674184, + 26.01509361446483 + ], + [ + 70.12264985090208, + 26.209741349393283 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 26.209741349393283 + ], + [ + 70.0078071674184, + 26.01509361446483 + ], + [ + 70.23749253438575, + 26.01509361446483 + ], + [ + 70.12264985090208, + 26.209741349393283 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 26.209741349393283 + ], + [ + 70.23749253438575, + 26.01509361446483 + ], + [ + 70.35233521786944, + 26.209741349393283 + ], + [ + 70.12264985090208, + 26.209741349393283 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 26.599036819250188 + ], + [ + 70.35233521786944, + 26.599036819250188 + ], + [ + 70.23749253438575, + 26.79368455417864 + ], + [ + 70.12264985090208, + 26.599036819250188 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 26.599036819250188 + ], + [ + 70.23749253438575, + 26.79368455417864 + ], + [ + 70.0078071674184, + 26.79368455417864 + ], + [ + 70.12264985090208, + 26.599036819250188 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 26.599036819250188 + ], + [ + 70.0078071674184, + 26.79368455417864 + ], + [ + 69.89296448393472, + 26.599036819250188 + ], + [ + 70.12264985090208, + 26.599036819250188 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 26.599036819250188 + ], + [ + 69.89296448393472, + 26.599036819250188 + ], + [ + 70.0078071674184, + 26.404389084321735 + ], + [ + 70.12264985090208, + 26.599036819250188 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 26.599036819250188 + ], + [ + 70.0078071674184, + 26.404389084321735 + ], + [ + 70.23749253438575, + 26.404389084321735 + ], + [ + 70.12264985090208, + 26.599036819250188 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 26.599036819250188 + ], + [ + 70.23749253438575, + 26.404389084321735 + ], + [ + 70.35233521786944, + 26.599036819250188 + ], + [ + 70.12264985090208, + 26.599036819250188 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 26.988332289107095 + ], + [ + 70.35233521786944, + 26.988332289107095 + ], + [ + 70.23749253438575, + 27.182980024035547 + ], + [ + 70.12264985090208, + 26.988332289107095 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 26.988332289107095 + ], + [ + 70.23749253438575, + 27.182980024035547 + ], + [ + 70.0078071674184, + 27.182980024035547 + ], + [ + 70.12264985090208, + 26.988332289107095 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 26.988332289107095 + ], + [ + 70.0078071674184, + 27.182980024035547 + ], + [ + 69.89296448393472, + 26.988332289107095 + ], + [ + 70.12264985090208, + 26.988332289107095 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 26.988332289107095 + ], + [ + 69.89296448393472, + 26.988332289107095 + ], + [ + 70.0078071674184, + 26.793684554178643 + ], + [ + 70.12264985090208, + 26.988332289107095 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 26.988332289107095 + ], + [ + 70.0078071674184, + 26.793684554178643 + ], + [ + 70.23749253438575, + 26.793684554178643 + ], + [ + 70.12264985090208, + 26.988332289107095 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 26.988332289107095 + ], + [ + 70.23749253438575, + 26.793684554178643 + ], + [ + 70.35233521786944, + 26.988332289107095 + ], + [ + 70.12264985090208, + 26.988332289107095 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 27.377627758964003 + ], + [ + 70.35233521786944, + 27.377627758964003 + ], + [ + 70.23749253438575, + 27.572275493892455 + ], + [ + 70.12264985090208, + 27.377627758964003 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 27.377627758964003 + ], + [ + 70.23749253438575, + 27.572275493892455 + ], + [ + 70.0078071674184, + 27.572275493892455 + ], + [ + 70.12264985090208, + 27.377627758964003 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 27.377627758964003 + ], + [ + 70.0078071674184, + 27.572275493892455 + ], + [ + 69.89296448393472, + 27.377627758964003 + ], + [ + 70.12264985090208, + 27.377627758964003 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 27.377627758964003 + ], + [ + 69.89296448393472, + 27.377627758964003 + ], + [ + 70.0078071674184, + 27.18298002403555 + ], + [ + 70.12264985090208, + 27.377627758964003 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 27.377627758964003 + ], + [ + 70.0078071674184, + 27.18298002403555 + ], + [ + 70.23749253438575, + 27.18298002403555 + ], + [ + 70.12264985090208, + 27.377627758964003 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 27.377627758964003 + ], + [ + 70.23749253438575, + 27.18298002403555 + ], + [ + 70.35233521786944, + 27.377627758964003 + ], + [ + 70.12264985090208, + 27.377627758964003 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 27.766923228820907 + ], + [ + 70.35233521786944, + 27.766923228820907 + ], + [ + 70.23749253438575, + 27.96157096374936 + ], + [ + 70.12264985090208, + 27.766923228820907 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 27.766923228820907 + ], + [ + 70.23749253438575, + 27.96157096374936 + ], + [ + 70.0078071674184, + 27.96157096374936 + ], + [ + 70.12264985090208, + 27.766923228820907 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 27.766923228820907 + ], + [ + 70.0078071674184, + 27.96157096374936 + ], + [ + 69.89296448393472, + 27.766923228820907 + ], + [ + 70.12264985090208, + 27.766923228820907 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 27.766923228820907 + ], + [ + 69.89296448393472, + 27.766923228820907 + ], + [ + 70.0078071674184, + 27.572275493892455 + ], + [ + 70.12264985090208, + 27.766923228820907 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 27.766923228820907 + ], + [ + 70.0078071674184, + 27.572275493892455 + ], + [ + 70.23749253438575, + 27.572275493892455 + ], + [ + 70.12264985090208, + 27.766923228820907 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 27.766923228820907 + ], + [ + 70.23749253438575, + 27.572275493892455 + ], + [ + 70.35233521786944, + 27.766923228820907 + ], + [ + 70.12264985090208, + 27.766923228820907 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 28.156218698677815 + ], + [ + 70.35233521786944, + 28.156218698677815 + ], + [ + 70.23749253438575, + 28.350866433606267 + ], + [ + 70.12264985090208, + 28.156218698677815 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 28.156218698677815 + ], + [ + 70.23749253438575, + 28.350866433606267 + ], + [ + 70.0078071674184, + 28.350866433606267 + ], + [ + 70.12264985090208, + 28.156218698677815 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 28.156218698677815 + ], + [ + 70.0078071674184, + 28.350866433606267 + ], + [ + 69.89296448393472, + 28.156218698677815 + ], + [ + 70.12264985090208, + 28.156218698677815 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 28.156218698677815 + ], + [ + 69.89296448393472, + 28.156218698677815 + ], + [ + 70.0078071674184, + 27.961570963749363 + ], + [ + 70.12264985090208, + 28.156218698677815 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 28.156218698677815 + ], + [ + 70.0078071674184, + 27.961570963749363 + ], + [ + 70.23749253438575, + 27.961570963749363 + ], + [ + 70.12264985090208, + 28.156218698677815 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 28.156218698677815 + ], + [ + 70.23749253438575, + 27.961570963749363 + ], + [ + 70.35233521786944, + 28.156218698677815 + ], + [ + 70.12264985090208, + 28.156218698677815 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 28.54551416853472 + ], + [ + 70.35233521786944, + 28.54551416853472 + ], + [ + 70.23749253438575, + 28.74016190346317 + ], + [ + 70.12264985090208, + 28.54551416853472 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 28.54551416853472 + ], + [ + 70.23749253438575, + 28.74016190346317 + ], + [ + 70.0078071674184, + 28.74016190346317 + ], + [ + 70.12264985090208, + 28.54551416853472 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 28.54551416853472 + ], + [ + 70.0078071674184, + 28.74016190346317 + ], + [ + 69.89296448393472, + 28.54551416853472 + ], + [ + 70.12264985090208, + 28.54551416853472 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 28.54551416853472 + ], + [ + 69.89296448393472, + 28.54551416853472 + ], + [ + 70.0078071674184, + 28.350866433606267 + ], + [ + 70.12264985090208, + 28.54551416853472 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 28.54551416853472 + ], + [ + 70.0078071674184, + 28.350866433606267 + ], + [ + 70.23749253438575, + 28.350866433606267 + ], + [ + 70.12264985090208, + 28.54551416853472 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 28.54551416853472 + ], + [ + 70.23749253438575, + 28.350866433606267 + ], + [ + 70.35233521786944, + 28.54551416853472 + ], + [ + 70.12264985090208, + 28.54551416853472 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 28.934809638391627 + ], + [ + 70.35233521786944, + 28.934809638391627 + ], + [ + 70.23749253438575, + 29.12945737332008 + ], + [ + 70.12264985090208, + 28.934809638391627 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 28.934809638391627 + ], + [ + 70.23749253438575, + 29.12945737332008 + ], + [ + 70.0078071674184, + 29.12945737332008 + ], + [ + 70.12264985090208, + 28.934809638391627 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 28.934809638391627 + ], + [ + 70.0078071674184, + 29.12945737332008 + ], + [ + 69.89296448393472, + 28.934809638391627 + ], + [ + 70.12264985090208, + 28.934809638391627 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 28.934809638391627 + ], + [ + 69.89296448393472, + 28.934809638391627 + ], + [ + 70.0078071674184, + 28.740161903463175 + ], + [ + 70.12264985090208, + 28.934809638391627 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 28.934809638391627 + ], + [ + 70.0078071674184, + 28.740161903463175 + ], + [ + 70.23749253438575, + 28.740161903463175 + ], + [ + 70.12264985090208, + 28.934809638391627 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 28.934809638391627 + ], + [ + 70.23749253438575, + 28.740161903463175 + ], + [ + 70.35233521786944, + 28.934809638391627 + ], + [ + 70.12264985090208, + 28.934809638391627 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 29.32410510824853 + ], + [ + 70.35233521786944, + 29.32410510824853 + ], + [ + 70.23749253438575, + 29.518752843176983 + ], + [ + 70.12264985090208, + 29.32410510824853 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 29.32410510824853 + ], + [ + 70.23749253438575, + 29.518752843176983 + ], + [ + 70.0078071674184, + 29.518752843176983 + ], + [ + 70.12264985090208, + 29.32410510824853 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 29.32410510824853 + ], + [ + 70.0078071674184, + 29.518752843176983 + ], + [ + 69.89296448393472, + 29.32410510824853 + ], + [ + 70.12264985090208, + 29.32410510824853 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 29.32410510824853 + ], + [ + 69.89296448393472, + 29.32410510824853 + ], + [ + 70.0078071674184, + 29.12945737332008 + ], + [ + 70.12264985090208, + 29.32410510824853 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 29.32410510824853 + ], + [ + 70.0078071674184, + 29.12945737332008 + ], + [ + 70.23749253438575, + 29.12945737332008 + ], + [ + 70.12264985090208, + 29.32410510824853 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 29.32410510824853 + ], + [ + 70.23749253438575, + 29.12945737332008 + ], + [ + 70.35233521786944, + 29.32410510824853 + ], + [ + 70.12264985090208, + 29.32410510824853 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 29.71340057810544 + ], + [ + 70.35233521786944, + 29.71340057810544 + ], + [ + 70.23749253438575, + 29.90804831303389 + ], + [ + 70.12264985090208, + 29.71340057810544 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 29.71340057810544 + ], + [ + 70.23749253438575, + 29.90804831303389 + ], + [ + 70.0078071674184, + 29.90804831303389 + ], + [ + 70.12264985090208, + 29.71340057810544 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 29.71340057810544 + ], + [ + 70.0078071674184, + 29.90804831303389 + ], + [ + 69.89296448393472, + 29.71340057810544 + ], + [ + 70.12264985090208, + 29.71340057810544 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 29.71340057810544 + ], + [ + 69.89296448393472, + 29.71340057810544 + ], + [ + 70.0078071674184, + 29.518752843176987 + ], + [ + 70.12264985090208, + 29.71340057810544 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 29.71340057810544 + ], + [ + 70.0078071674184, + 29.518752843176987 + ], + [ + 70.23749253438575, + 29.518752843176987 + ], + [ + 70.12264985090208, + 29.71340057810544 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 29.71340057810544 + ], + [ + 70.23749253438575, + 29.518752843176987 + ], + [ + 70.35233521786944, + 29.71340057810544 + ], + [ + 70.12264985090208, + 29.71340057810544 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 30.102696047962343 + ], + [ + 70.35233521786944, + 30.102696047962343 + ], + [ + 70.23749253438575, + 30.297343782890795 + ], + [ + 70.12264985090208, + 30.102696047962343 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 30.102696047962343 + ], + [ + 70.23749253438575, + 30.297343782890795 + ], + [ + 70.0078071674184, + 30.297343782890795 + ], + [ + 70.12264985090208, + 30.102696047962343 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 30.102696047962343 + ], + [ + 70.0078071674184, + 30.297343782890795 + ], + [ + 69.89296448393472, + 30.102696047962343 + ], + [ + 70.12264985090208, + 30.102696047962343 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 30.102696047962343 + ], + [ + 69.89296448393472, + 30.102696047962343 + ], + [ + 70.0078071674184, + 29.90804831303389 + ], + [ + 70.12264985090208, + 30.102696047962343 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 30.102696047962343 + ], + [ + 70.0078071674184, + 29.90804831303389 + ], + [ + 70.23749253438575, + 29.90804831303389 + ], + [ + 70.12264985090208, + 30.102696047962343 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 30.102696047962343 + ], + [ + 70.23749253438575, + 29.90804831303389 + ], + [ + 70.35233521786944, + 30.102696047962343 + ], + [ + 70.12264985090208, + 30.102696047962343 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 30.49199151781925 + ], + [ + 70.35233521786944, + 30.49199151781925 + ], + [ + 70.23749253438575, + 30.686639252747703 + ], + [ + 70.12264985090208, + 30.49199151781925 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 30.49199151781925 + ], + [ + 70.23749253438575, + 30.686639252747703 + ], + [ + 70.0078071674184, + 30.686639252747703 + ], + [ + 70.12264985090208, + 30.49199151781925 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 30.49199151781925 + ], + [ + 70.0078071674184, + 30.686639252747703 + ], + [ + 69.89296448393472, + 30.49199151781925 + ], + [ + 70.12264985090208, + 30.49199151781925 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 30.49199151781925 + ], + [ + 69.89296448393472, + 30.49199151781925 + ], + [ + 70.0078071674184, + 30.2973437828908 + ], + [ + 70.12264985090208, + 30.49199151781925 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 30.49199151781925 + ], + [ + 70.0078071674184, + 30.2973437828908 + ], + [ + 70.23749253438575, + 30.2973437828908 + ], + [ + 70.12264985090208, + 30.49199151781925 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 30.49199151781925 + ], + [ + 70.23749253438575, + 30.2973437828908 + ], + [ + 70.35233521786944, + 30.49199151781925 + ], + [ + 70.12264985090208, + 30.49199151781925 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 30.88128698767616 + ], + [ + 70.35233521786944, + 30.88128698767616 + ], + [ + 70.23749253438575, + 31.07593472260461 + ], + [ + 70.12264985090208, + 30.88128698767616 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 30.88128698767616 + ], + [ + 70.23749253438575, + 31.07593472260461 + ], + [ + 70.0078071674184, + 31.07593472260461 + ], + [ + 70.12264985090208, + 30.88128698767616 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 30.88128698767616 + ], + [ + 70.0078071674184, + 31.07593472260461 + ], + [ + 69.89296448393472, + 30.88128698767616 + ], + [ + 70.12264985090208, + 30.88128698767616 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 30.88128698767616 + ], + [ + 69.89296448393472, + 30.88128698767616 + ], + [ + 70.0078071674184, + 30.686639252747707 + ], + [ + 70.12264985090208, + 30.88128698767616 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 30.88128698767616 + ], + [ + 70.0078071674184, + 30.686639252747707 + ], + [ + 70.23749253438575, + 30.686639252747707 + ], + [ + 70.12264985090208, + 30.88128698767616 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 30.88128698767616 + ], + [ + 70.23749253438575, + 30.686639252747707 + ], + [ + 70.35233521786944, + 30.88128698767616 + ], + [ + 70.12264985090208, + 30.88128698767616 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 31.270582457533063 + ], + [ + 70.35233521786944, + 31.270582457533063 + ], + [ + 70.23749253438575, + 31.465230192461515 + ], + [ + 70.12264985090208, + 31.270582457533063 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 31.270582457533063 + ], + [ + 70.23749253438575, + 31.465230192461515 + ], + [ + 70.0078071674184, + 31.465230192461515 + ], + [ + 70.12264985090208, + 31.270582457533063 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 31.270582457533063 + ], + [ + 70.0078071674184, + 31.465230192461515 + ], + [ + 69.89296448393472, + 31.270582457533063 + ], + [ + 70.12264985090208, + 31.270582457533063 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 31.270582457533063 + ], + [ + 69.89296448393472, + 31.270582457533063 + ], + [ + 70.0078071674184, + 31.07593472260461 + ], + [ + 70.12264985090208, + 31.270582457533063 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 31.270582457533063 + ], + [ + 70.0078071674184, + 31.07593472260461 + ], + [ + 70.23749253438575, + 31.07593472260461 + ], + [ + 70.12264985090208, + 31.270582457533063 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 31.270582457533063 + ], + [ + 70.23749253438575, + 31.07593472260461 + ], + [ + 70.35233521786944, + 31.270582457533063 + ], + [ + 70.12264985090208, + 31.270582457533063 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 31.65987792738997 + ], + [ + 70.35233521786944, + 31.65987792738997 + ], + [ + 70.23749253438575, + 31.854525662318423 + ], + [ + 70.12264985090208, + 31.65987792738997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 31.65987792738997 + ], + [ + 70.23749253438575, + 31.854525662318423 + ], + [ + 70.0078071674184, + 31.854525662318423 + ], + [ + 70.12264985090208, + 31.65987792738997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 31.65987792738997 + ], + [ + 70.0078071674184, + 31.854525662318423 + ], + [ + 69.89296448393472, + 31.65987792738997 + ], + [ + 70.12264985090208, + 31.65987792738997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 31.65987792738997 + ], + [ + 69.89296448393472, + 31.65987792738997 + ], + [ + 70.0078071674184, + 31.46523019246152 + ], + [ + 70.12264985090208, + 31.65987792738997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 31.65987792738997 + ], + [ + 70.0078071674184, + 31.46523019246152 + ], + [ + 70.23749253438575, + 31.46523019246152 + ], + [ + 70.12264985090208, + 31.65987792738997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 31.65987792738997 + ], + [ + 70.23749253438575, + 31.46523019246152 + ], + [ + 70.35233521786944, + 31.65987792738997 + ], + [ + 70.12264985090208, + 31.65987792738997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 32.049173397246875 + ], + [ + 70.35233521786944, + 32.049173397246875 + ], + [ + 70.23749253438575, + 32.24382113217533 + ], + [ + 70.12264985090208, + 32.049173397246875 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 32.049173397246875 + ], + [ + 70.23749253438575, + 32.24382113217533 + ], + [ + 70.0078071674184, + 32.24382113217533 + ], + [ + 70.12264985090208, + 32.049173397246875 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 32.049173397246875 + ], + [ + 70.0078071674184, + 32.24382113217533 + ], + [ + 69.89296448393472, + 32.049173397246875 + ], + [ + 70.12264985090208, + 32.049173397246875 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 32.049173397246875 + ], + [ + 69.89296448393472, + 32.049173397246875 + ], + [ + 70.0078071674184, + 31.854525662318423 + ], + [ + 70.12264985090208, + 32.049173397246875 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 32.049173397246875 + ], + [ + 70.0078071674184, + 31.854525662318423 + ], + [ + 70.23749253438575, + 31.854525662318423 + ], + [ + 70.12264985090208, + 32.049173397246875 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 32.049173397246875 + ], + [ + 70.23749253438575, + 31.854525662318423 + ], + [ + 70.35233521786944, + 32.049173397246875 + ], + [ + 70.12264985090208, + 32.049173397246875 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 32.438468867103786 + ], + [ + 70.35233521786944, + 32.438468867103786 + ], + [ + 70.23749253438575, + 32.63311660203224 + ], + [ + 70.12264985090208, + 32.438468867103786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 32.438468867103786 + ], + [ + 70.23749253438575, + 32.63311660203224 + ], + [ + 70.0078071674184, + 32.63311660203224 + ], + [ + 70.12264985090208, + 32.438468867103786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 32.438468867103786 + ], + [ + 70.0078071674184, + 32.63311660203224 + ], + [ + 69.89296448393472, + 32.438468867103786 + ], + [ + 70.12264985090208, + 32.438468867103786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 32.438468867103786 + ], + [ + 69.89296448393472, + 32.438468867103786 + ], + [ + 70.0078071674184, + 32.243821132175334 + ], + [ + 70.12264985090208, + 32.438468867103786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 32.438468867103786 + ], + [ + 70.0078071674184, + 32.243821132175334 + ], + [ + 70.23749253438575, + 32.243821132175334 + ], + [ + 70.12264985090208, + 32.438468867103786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 32.438468867103786 + ], + [ + 70.23749253438575, + 32.243821132175334 + ], + [ + 70.35233521786944, + 32.438468867103786 + ], + [ + 70.12264985090208, + 32.438468867103786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 32.82776433696069 + ], + [ + 70.35233521786944, + 32.82776433696069 + ], + [ + 70.23749253438575, + 33.02241207188914 + ], + [ + 70.12264985090208, + 32.82776433696069 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 32.82776433696069 + ], + [ + 70.23749253438575, + 33.02241207188914 + ], + [ + 70.0078071674184, + 33.02241207188914 + ], + [ + 70.12264985090208, + 32.82776433696069 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 32.82776433696069 + ], + [ + 70.0078071674184, + 33.02241207188914 + ], + [ + 69.89296448393472, + 32.82776433696069 + ], + [ + 70.12264985090208, + 32.82776433696069 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 32.82776433696069 + ], + [ + 69.89296448393472, + 32.82776433696069 + ], + [ + 70.0078071674184, + 32.63311660203224 + ], + [ + 70.12264985090208, + 32.82776433696069 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 32.82776433696069 + ], + [ + 70.0078071674184, + 32.63311660203224 + ], + [ + 70.23749253438575, + 32.63311660203224 + ], + [ + 70.12264985090208, + 32.82776433696069 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 32.82776433696069 + ], + [ + 70.23749253438575, + 32.63311660203224 + ], + [ + 70.35233521786944, + 32.82776433696069 + ], + [ + 70.12264985090208, + 32.82776433696069 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 33.217059806817595 + ], + [ + 70.35233521786944, + 33.217059806817595 + ], + [ + 70.23749253438575, + 33.41170754174605 + ], + [ + 70.12264985090208, + 33.217059806817595 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 33.217059806817595 + ], + [ + 70.23749253438575, + 33.41170754174605 + ], + [ + 70.0078071674184, + 33.41170754174605 + ], + [ + 70.12264985090208, + 33.217059806817595 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 33.217059806817595 + ], + [ + 70.0078071674184, + 33.41170754174605 + ], + [ + 69.89296448393472, + 33.217059806817595 + ], + [ + 70.12264985090208, + 33.217059806817595 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 33.217059806817595 + ], + [ + 69.89296448393472, + 33.217059806817595 + ], + [ + 70.0078071674184, + 33.02241207188914 + ], + [ + 70.12264985090208, + 33.217059806817595 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 33.217059806817595 + ], + [ + 70.0078071674184, + 33.02241207188914 + ], + [ + 70.23749253438575, + 33.02241207188914 + ], + [ + 70.12264985090208, + 33.217059806817595 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 33.217059806817595 + ], + [ + 70.23749253438575, + 33.02241207188914 + ], + [ + 70.35233521786944, + 33.217059806817595 + ], + [ + 70.12264985090208, + 33.217059806817595 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 33.6063552766745 + ], + [ + 70.35233521786944, + 33.6063552766745 + ], + [ + 70.23749253438575, + 33.80100301160295 + ], + [ + 70.12264985090208, + 33.6063552766745 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 33.6063552766745 + ], + [ + 70.23749253438575, + 33.80100301160295 + ], + [ + 70.0078071674184, + 33.80100301160295 + ], + [ + 70.12264985090208, + 33.6063552766745 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 33.6063552766745 + ], + [ + 70.0078071674184, + 33.80100301160295 + ], + [ + 69.89296448393472, + 33.6063552766745 + ], + [ + 70.12264985090208, + 33.6063552766745 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 33.6063552766745 + ], + [ + 69.89296448393472, + 33.6063552766745 + ], + [ + 70.0078071674184, + 33.41170754174605 + ], + [ + 70.12264985090208, + 33.6063552766745 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 33.6063552766745 + ], + [ + 70.0078071674184, + 33.41170754174605 + ], + [ + 70.23749253438575, + 33.41170754174605 + ], + [ + 70.12264985090208, + 33.6063552766745 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 33.6063552766745 + ], + [ + 70.23749253438575, + 33.41170754174605 + ], + [ + 70.35233521786944, + 33.6063552766745 + ], + [ + 70.12264985090208, + 33.6063552766745 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 33.9956507465314 + ], + [ + 70.35233521786944, + 33.9956507465314 + ], + [ + 70.23749253438575, + 34.190298481459855 + ], + [ + 70.12264985090208, + 33.9956507465314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 33.9956507465314 + ], + [ + 70.23749253438575, + 34.190298481459855 + ], + [ + 70.0078071674184, + 34.190298481459855 + ], + [ + 70.12264985090208, + 33.9956507465314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 33.9956507465314 + ], + [ + 70.0078071674184, + 34.190298481459855 + ], + [ + 69.89296448393472, + 33.9956507465314 + ], + [ + 70.12264985090208, + 33.9956507465314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 33.9956507465314 + ], + [ + 69.89296448393472, + 33.9956507465314 + ], + [ + 70.0078071674184, + 33.80100301160295 + ], + [ + 70.12264985090208, + 33.9956507465314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 33.9956507465314 + ], + [ + 70.0078071674184, + 33.80100301160295 + ], + [ + 70.23749253438575, + 33.80100301160295 + ], + [ + 70.12264985090208, + 33.9956507465314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 33.9956507465314 + ], + [ + 70.23749253438575, + 33.80100301160295 + ], + [ + 70.35233521786944, + 33.9956507465314 + ], + [ + 70.12264985090208, + 33.9956507465314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 34.384946216388315 + ], + [ + 70.35233521786944, + 34.384946216388315 + ], + [ + 70.23749253438575, + 34.57959395131677 + ], + [ + 70.12264985090208, + 34.384946216388315 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 34.384946216388315 + ], + [ + 70.23749253438575, + 34.57959395131677 + ], + [ + 70.0078071674184, + 34.57959395131677 + ], + [ + 70.12264985090208, + 34.384946216388315 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 34.384946216388315 + ], + [ + 70.0078071674184, + 34.57959395131677 + ], + [ + 69.89296448393472, + 34.384946216388315 + ], + [ + 70.12264985090208, + 34.384946216388315 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 34.384946216388315 + ], + [ + 69.89296448393472, + 34.384946216388315 + ], + [ + 70.0078071674184, + 34.19029848145986 + ], + [ + 70.12264985090208, + 34.384946216388315 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 34.384946216388315 + ], + [ + 70.0078071674184, + 34.19029848145986 + ], + [ + 70.23749253438575, + 34.19029848145986 + ], + [ + 70.12264985090208, + 34.384946216388315 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 34.384946216388315 + ], + [ + 70.23749253438575, + 34.19029848145986 + ], + [ + 70.35233521786944, + 34.384946216388315 + ], + [ + 70.12264985090208, + 34.384946216388315 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 34.774241686245226 + ], + [ + 70.35233521786944, + 34.774241686245226 + ], + [ + 70.23749253438575, + 34.96888942117368 + ], + [ + 70.12264985090208, + 34.774241686245226 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 34.774241686245226 + ], + [ + 70.23749253438575, + 34.96888942117368 + ], + [ + 70.0078071674184, + 34.96888942117368 + ], + [ + 70.12264985090208, + 34.774241686245226 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 34.774241686245226 + ], + [ + 70.0078071674184, + 34.96888942117368 + ], + [ + 69.89296448393472, + 34.774241686245226 + ], + [ + 70.12264985090208, + 34.774241686245226 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 34.774241686245226 + ], + [ + 69.89296448393472, + 34.774241686245226 + ], + [ + 70.0078071674184, + 34.579593951316774 + ], + [ + 70.12264985090208, + 34.774241686245226 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 34.774241686245226 + ], + [ + 70.0078071674184, + 34.579593951316774 + ], + [ + 70.23749253438575, + 34.579593951316774 + ], + [ + 70.12264985090208, + 34.774241686245226 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 34.774241686245226 + ], + [ + 70.23749253438575, + 34.579593951316774 + ], + [ + 70.35233521786944, + 34.774241686245226 + ], + [ + 70.12264985090208, + 34.774241686245226 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 35.16353715610213 + ], + [ + 70.35233521786944, + 35.16353715610213 + ], + [ + 70.23749253438575, + 35.35818489103058 + ], + [ + 70.12264985090208, + 35.16353715610213 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 35.16353715610213 + ], + [ + 70.23749253438575, + 35.35818489103058 + ], + [ + 70.0078071674184, + 35.35818489103058 + ], + [ + 70.12264985090208, + 35.16353715610213 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 35.16353715610213 + ], + [ + 70.0078071674184, + 35.35818489103058 + ], + [ + 69.89296448393472, + 35.16353715610213 + ], + [ + 70.12264985090208, + 35.16353715610213 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 35.16353715610213 + ], + [ + 69.89296448393472, + 35.16353715610213 + ], + [ + 70.0078071674184, + 34.96888942117368 + ], + [ + 70.12264985090208, + 35.16353715610213 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 35.16353715610213 + ], + [ + 70.0078071674184, + 34.96888942117368 + ], + [ + 70.23749253438575, + 34.96888942117368 + ], + [ + 70.12264985090208, + 35.16353715610213 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 35.16353715610213 + ], + [ + 70.23749253438575, + 34.96888942117368 + ], + [ + 70.35233521786944, + 35.16353715610213 + ], + [ + 70.12264985090208, + 35.16353715610213 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 35.552832625959034 + ], + [ + 70.35233521786944, + 35.552832625959034 + ], + [ + 70.23749253438575, + 35.74748036088749 + ], + [ + 70.12264985090208, + 35.552832625959034 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 35.552832625959034 + ], + [ + 70.23749253438575, + 35.74748036088749 + ], + [ + 70.0078071674184, + 35.74748036088749 + ], + [ + 70.12264985090208, + 35.552832625959034 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 35.552832625959034 + ], + [ + 70.0078071674184, + 35.74748036088749 + ], + [ + 69.89296448393472, + 35.552832625959034 + ], + [ + 70.12264985090208, + 35.552832625959034 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 35.552832625959034 + ], + [ + 69.89296448393472, + 35.552832625959034 + ], + [ + 70.0078071674184, + 35.35818489103058 + ], + [ + 70.12264985090208, + 35.552832625959034 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 35.552832625959034 + ], + [ + 70.0078071674184, + 35.35818489103058 + ], + [ + 70.23749253438575, + 35.35818489103058 + ], + [ + 70.12264985090208, + 35.552832625959034 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 35.552832625959034 + ], + [ + 70.23749253438575, + 35.35818489103058 + ], + [ + 70.35233521786944, + 35.552832625959034 + ], + [ + 70.12264985090208, + 35.552832625959034 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 35.94212809581594 + ], + [ + 70.35233521786944, + 35.94212809581594 + ], + [ + 70.23749253438575, + 36.13677583074439 + ], + [ + 70.12264985090208, + 35.94212809581594 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 35.94212809581594 + ], + [ + 70.23749253438575, + 36.13677583074439 + ], + [ + 70.0078071674184, + 36.13677583074439 + ], + [ + 70.12264985090208, + 35.94212809581594 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 35.94212809581594 + ], + [ + 70.0078071674184, + 36.13677583074439 + ], + [ + 69.89296448393472, + 35.94212809581594 + ], + [ + 70.12264985090208, + 35.94212809581594 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 35.94212809581594 + ], + [ + 69.89296448393472, + 35.94212809581594 + ], + [ + 70.0078071674184, + 35.74748036088749 + ], + [ + 70.12264985090208, + 35.94212809581594 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 35.94212809581594 + ], + [ + 70.0078071674184, + 35.74748036088749 + ], + [ + 70.23749253438575, + 35.74748036088749 + ], + [ + 70.12264985090208, + 35.94212809581594 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 35.94212809581594 + ], + [ + 70.23749253438575, + 35.74748036088749 + ], + [ + 70.35233521786944, + 35.94212809581594 + ], + [ + 70.12264985090208, + 35.94212809581594 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 36.33142356567284 + ], + [ + 70.35233521786944, + 36.33142356567284 + ], + [ + 70.23749253438575, + 36.526071300601295 + ], + [ + 70.12264985090208, + 36.33142356567284 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 36.33142356567284 + ], + [ + 70.23749253438575, + 36.526071300601295 + ], + [ + 70.0078071674184, + 36.526071300601295 + ], + [ + 70.12264985090208, + 36.33142356567284 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 36.33142356567284 + ], + [ + 70.0078071674184, + 36.526071300601295 + ], + [ + 69.89296448393472, + 36.33142356567284 + ], + [ + 70.12264985090208, + 36.33142356567284 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 36.33142356567284 + ], + [ + 69.89296448393472, + 36.33142356567284 + ], + [ + 70.0078071674184, + 36.13677583074439 + ], + [ + 70.12264985090208, + 36.33142356567284 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 36.33142356567284 + ], + [ + 70.0078071674184, + 36.13677583074439 + ], + [ + 70.23749253438575, + 36.13677583074439 + ], + [ + 70.12264985090208, + 36.33142356567284 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 36.33142356567284 + ], + [ + 70.23749253438575, + 36.13677583074439 + ], + [ + 70.35233521786944, + 36.33142356567284 + ], + [ + 70.12264985090208, + 36.33142356567284 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 36.720719035529754 + ], + [ + 70.35233521786944, + 36.720719035529754 + ], + [ + 70.23749253438575, + 36.915366770458206 + ], + [ + 70.12264985090208, + 36.720719035529754 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 36.720719035529754 + ], + [ + 70.23749253438575, + 36.915366770458206 + ], + [ + 70.0078071674184, + 36.915366770458206 + ], + [ + 70.12264985090208, + 36.720719035529754 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 36.720719035529754 + ], + [ + 70.0078071674184, + 36.915366770458206 + ], + [ + 69.89296448393472, + 36.720719035529754 + ], + [ + 70.12264985090208, + 36.720719035529754 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 36.720719035529754 + ], + [ + 69.89296448393472, + 36.720719035529754 + ], + [ + 70.0078071674184, + 36.5260713006013 + ], + [ + 70.12264985090208, + 36.720719035529754 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 36.720719035529754 + ], + [ + 70.0078071674184, + 36.5260713006013 + ], + [ + 70.23749253438575, + 36.5260713006013 + ], + [ + 70.12264985090208, + 36.720719035529754 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 36.720719035529754 + ], + [ + 70.23749253438575, + 36.5260713006013 + ], + [ + 70.35233521786944, + 36.720719035529754 + ], + [ + 70.12264985090208, + 36.720719035529754 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 37.11001450538666 + ], + [ + 70.35233521786944, + 37.11001450538666 + ], + [ + 70.23749253438575, + 37.30466224031511 + ], + [ + 70.12264985090208, + 37.11001450538666 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 37.11001450538666 + ], + [ + 70.23749253438575, + 37.30466224031511 + ], + [ + 70.0078071674184, + 37.30466224031511 + ], + [ + 70.12264985090208, + 37.11001450538666 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 37.11001450538666 + ], + [ + 70.0078071674184, + 37.30466224031511 + ], + [ + 69.89296448393472, + 37.11001450538666 + ], + [ + 70.12264985090208, + 37.11001450538666 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 37.11001450538666 + ], + [ + 69.89296448393472, + 37.11001450538666 + ], + [ + 70.0078071674184, + 36.915366770458206 + ], + [ + 70.12264985090208, + 37.11001450538666 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 37.11001450538666 + ], + [ + 70.0078071674184, + 36.915366770458206 + ], + [ + 70.23749253438575, + 36.915366770458206 + ], + [ + 70.12264985090208, + 37.11001450538666 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 37.11001450538666 + ], + [ + 70.23749253438575, + 36.915366770458206 + ], + [ + 70.35233521786944, + 37.11001450538666 + ], + [ + 70.12264985090208, + 37.11001450538666 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 37.49930997524357 + ], + [ + 70.35233521786944, + 37.49930997524357 + ], + [ + 70.23749253438575, + 37.69395771017202 + ], + [ + 70.12264985090208, + 37.49930997524357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 37.49930997524357 + ], + [ + 70.23749253438575, + 37.69395771017202 + ], + [ + 70.0078071674184, + 37.69395771017202 + ], + [ + 70.12264985090208, + 37.49930997524357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 37.49930997524357 + ], + [ + 70.0078071674184, + 37.69395771017202 + ], + [ + 69.89296448393472, + 37.49930997524357 + ], + [ + 70.12264985090208, + 37.49930997524357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 37.49930997524357 + ], + [ + 69.89296448393472, + 37.49930997524357 + ], + [ + 70.0078071674184, + 37.30466224031512 + ], + [ + 70.12264985090208, + 37.49930997524357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 37.49930997524357 + ], + [ + 70.0078071674184, + 37.30466224031512 + ], + [ + 70.23749253438575, + 37.30466224031512 + ], + [ + 70.12264985090208, + 37.49930997524357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 37.49930997524357 + ], + [ + 70.23749253438575, + 37.30466224031512 + ], + [ + 70.35233521786944, + 37.49930997524357 + ], + [ + 70.12264985090208, + 37.49930997524357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 37.888605445100474 + ], + [ + 70.35233521786944, + 37.888605445100474 + ], + [ + 70.23749253438575, + 38.083253180028926 + ], + [ + 70.12264985090208, + 37.888605445100474 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 37.888605445100474 + ], + [ + 70.23749253438575, + 38.083253180028926 + ], + [ + 70.0078071674184, + 38.083253180028926 + ], + [ + 70.12264985090208, + 37.888605445100474 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 37.888605445100474 + ], + [ + 70.0078071674184, + 38.083253180028926 + ], + [ + 69.89296448393472, + 37.888605445100474 + ], + [ + 70.12264985090208, + 37.888605445100474 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 37.888605445100474 + ], + [ + 69.89296448393472, + 37.888605445100474 + ], + [ + 70.0078071674184, + 37.69395771017202 + ], + [ + 70.12264985090208, + 37.888605445100474 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 37.888605445100474 + ], + [ + 70.0078071674184, + 37.69395771017202 + ], + [ + 70.23749253438575, + 37.69395771017202 + ], + [ + 70.12264985090208, + 37.888605445100474 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 37.888605445100474 + ], + [ + 70.23749253438575, + 37.69395771017202 + ], + [ + 70.35233521786944, + 37.888605445100474 + ], + [ + 70.12264985090208, + 37.888605445100474 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 38.27790091495738 + ], + [ + 70.35233521786944, + 38.27790091495738 + ], + [ + 70.23749253438575, + 38.47254864988583 + ], + [ + 70.12264985090208, + 38.27790091495738 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 38.27790091495738 + ], + [ + 70.23749253438575, + 38.47254864988583 + ], + [ + 70.0078071674184, + 38.47254864988583 + ], + [ + 70.12264985090208, + 38.27790091495738 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 38.27790091495738 + ], + [ + 70.0078071674184, + 38.47254864988583 + ], + [ + 69.89296448393472, + 38.27790091495738 + ], + [ + 70.12264985090208, + 38.27790091495738 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 38.27790091495738 + ], + [ + 69.89296448393472, + 38.27790091495738 + ], + [ + 70.0078071674184, + 38.083253180028926 + ], + [ + 70.12264985090208, + 38.27790091495738 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 38.27790091495738 + ], + [ + 70.0078071674184, + 38.083253180028926 + ], + [ + 70.23749253438575, + 38.083253180028926 + ], + [ + 70.12264985090208, + 38.27790091495738 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 38.27790091495738 + ], + [ + 70.23749253438575, + 38.083253180028926 + ], + [ + 70.35233521786944, + 38.27790091495738 + ], + [ + 70.12264985090208, + 38.27790091495738 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 38.66719638481428 + ], + [ + 70.35233521786944, + 38.66719638481428 + ], + [ + 70.23749253438575, + 38.861844119742734 + ], + [ + 70.12264985090208, + 38.66719638481428 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 38.66719638481428 + ], + [ + 70.23749253438575, + 38.861844119742734 + ], + [ + 70.0078071674184, + 38.861844119742734 + ], + [ + 70.12264985090208, + 38.66719638481428 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 38.66719638481428 + ], + [ + 70.0078071674184, + 38.861844119742734 + ], + [ + 69.89296448393472, + 38.66719638481428 + ], + [ + 70.12264985090208, + 38.66719638481428 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 38.66719638481428 + ], + [ + 69.89296448393472, + 38.66719638481428 + ], + [ + 70.0078071674184, + 38.47254864988583 + ], + [ + 70.12264985090208, + 38.66719638481428 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 38.66719638481428 + ], + [ + 70.0078071674184, + 38.47254864988583 + ], + [ + 70.23749253438575, + 38.47254864988583 + ], + [ + 70.12264985090208, + 38.66719638481428 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 38.66719638481428 + ], + [ + 70.23749253438575, + 38.47254864988583 + ], + [ + 70.35233521786944, + 38.66719638481428 + ], + [ + 70.12264985090208, + 38.66719638481428 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 39.05649185467119 + ], + [ + 70.35233521786944, + 39.05649185467119 + ], + [ + 70.23749253438575, + 39.25113958959964 + ], + [ + 70.12264985090208, + 39.05649185467119 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 39.05649185467119 + ], + [ + 70.23749253438575, + 39.25113958959964 + ], + [ + 70.0078071674184, + 39.25113958959964 + ], + [ + 70.12264985090208, + 39.05649185467119 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 39.05649185467119 + ], + [ + 70.0078071674184, + 39.25113958959964 + ], + [ + 69.89296448393472, + 39.05649185467119 + ], + [ + 70.12264985090208, + 39.05649185467119 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 39.05649185467119 + ], + [ + 69.89296448393472, + 39.05649185467119 + ], + [ + 70.0078071674184, + 38.861844119742734 + ], + [ + 70.12264985090208, + 39.05649185467119 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 39.05649185467119 + ], + [ + 70.0078071674184, + 38.861844119742734 + ], + [ + 70.23749253438575, + 38.861844119742734 + ], + [ + 70.12264985090208, + 39.05649185467119 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 39.05649185467119 + ], + [ + 70.23749253438575, + 38.861844119742734 + ], + [ + 70.35233521786944, + 39.05649185467119 + ], + [ + 70.12264985090208, + 39.05649185467119 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 39.4457873245281 + ], + [ + 70.35233521786944, + 39.4457873245281 + ], + [ + 70.23749253438575, + 39.64043505945655 + ], + [ + 70.12264985090208, + 39.4457873245281 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 39.4457873245281 + ], + [ + 70.23749253438575, + 39.64043505945655 + ], + [ + 70.0078071674184, + 39.64043505945655 + ], + [ + 70.12264985090208, + 39.4457873245281 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 39.4457873245281 + ], + [ + 70.0078071674184, + 39.64043505945655 + ], + [ + 69.89296448393472, + 39.4457873245281 + ], + [ + 70.12264985090208, + 39.4457873245281 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 39.4457873245281 + ], + [ + 69.89296448393472, + 39.4457873245281 + ], + [ + 70.0078071674184, + 39.251139589599646 + ], + [ + 70.12264985090208, + 39.4457873245281 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 39.4457873245281 + ], + [ + 70.0078071674184, + 39.251139589599646 + ], + [ + 70.23749253438575, + 39.251139589599646 + ], + [ + 70.12264985090208, + 39.4457873245281 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 39.4457873245281 + ], + [ + 70.23749253438575, + 39.251139589599646 + ], + [ + 70.35233521786944, + 39.4457873245281 + ], + [ + 70.12264985090208, + 39.4457873245281 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 39.835082794385 + ], + [ + 70.35233521786944, + 39.835082794385 + ], + [ + 70.23749253438575, + 40.029730529313454 + ], + [ + 70.12264985090208, + 39.835082794385 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 39.835082794385 + ], + [ + 70.23749253438575, + 40.029730529313454 + ], + [ + 70.0078071674184, + 40.029730529313454 + ], + [ + 70.12264985090208, + 39.835082794385 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 39.835082794385 + ], + [ + 70.0078071674184, + 40.029730529313454 + ], + [ + 69.89296448393472, + 39.835082794385 + ], + [ + 70.12264985090208, + 39.835082794385 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 39.835082794385 + ], + [ + 69.89296448393472, + 39.835082794385 + ], + [ + 70.0078071674184, + 39.64043505945655 + ], + [ + 70.12264985090208, + 39.835082794385 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 39.835082794385 + ], + [ + 70.0078071674184, + 39.64043505945655 + ], + [ + 70.23749253438575, + 39.64043505945655 + ], + [ + 70.12264985090208, + 39.835082794385 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 39.835082794385 + ], + [ + 70.23749253438575, + 39.64043505945655 + ], + [ + 70.35233521786944, + 39.835082794385 + ], + [ + 70.12264985090208, + 39.835082794385 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 40.22437826424191 + ], + [ + 70.35233521786944, + 40.22437826424191 + ], + [ + 70.23749253438575, + 40.419025999170366 + ], + [ + 70.12264985090208, + 40.22437826424191 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 40.22437826424191 + ], + [ + 70.23749253438575, + 40.419025999170366 + ], + [ + 70.0078071674184, + 40.419025999170366 + ], + [ + 70.12264985090208, + 40.22437826424191 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 40.22437826424191 + ], + [ + 70.0078071674184, + 40.419025999170366 + ], + [ + 69.89296448393472, + 40.22437826424191 + ], + [ + 70.12264985090208, + 40.22437826424191 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 40.22437826424191 + ], + [ + 69.89296448393472, + 40.22437826424191 + ], + [ + 70.0078071674184, + 40.02973052931346 + ], + [ + 70.12264985090208, + 40.22437826424191 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 40.22437826424191 + ], + [ + 70.0078071674184, + 40.02973052931346 + ], + [ + 70.23749253438575, + 40.02973052931346 + ], + [ + 70.12264985090208, + 40.22437826424191 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 40.22437826424191 + ], + [ + 70.23749253438575, + 40.02973052931346 + ], + [ + 70.35233521786944, + 40.22437826424191 + ], + [ + 70.12264985090208, + 40.22437826424191 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 40.61367373409882 + ], + [ + 70.35233521786944, + 40.61367373409882 + ], + [ + 70.23749253438575, + 40.80832146902727 + ], + [ + 70.12264985090208, + 40.61367373409882 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 40.61367373409882 + ], + [ + 70.23749253438575, + 40.80832146902727 + ], + [ + 70.0078071674184, + 40.80832146902727 + ], + [ + 70.12264985090208, + 40.61367373409882 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 40.61367373409882 + ], + [ + 70.0078071674184, + 40.80832146902727 + ], + [ + 69.89296448393472, + 40.61367373409882 + ], + [ + 70.12264985090208, + 40.61367373409882 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 40.61367373409882 + ], + [ + 69.89296448393472, + 40.61367373409882 + ], + [ + 70.0078071674184, + 40.419025999170366 + ], + [ + 70.12264985090208, + 40.61367373409882 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 40.61367373409882 + ], + [ + 70.0078071674184, + 40.419025999170366 + ], + [ + 70.23749253438575, + 40.419025999170366 + ], + [ + 70.12264985090208, + 40.61367373409882 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 40.61367373409882 + ], + [ + 70.23749253438575, + 40.419025999170366 + ], + [ + 70.35233521786944, + 40.61367373409882 + ], + [ + 70.12264985090208, + 40.61367373409882 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 41.00296920395572 + ], + [ + 70.35233521786944, + 41.00296920395572 + ], + [ + 70.23749253438575, + 41.197616938884174 + ], + [ + 70.12264985090208, + 41.00296920395572 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 41.00296920395572 + ], + [ + 70.23749253438575, + 41.197616938884174 + ], + [ + 70.0078071674184, + 41.197616938884174 + ], + [ + 70.12264985090208, + 41.00296920395572 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 41.00296920395572 + ], + [ + 70.0078071674184, + 41.197616938884174 + ], + [ + 69.89296448393472, + 41.00296920395572 + ], + [ + 70.12264985090208, + 41.00296920395572 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 41.00296920395572 + ], + [ + 69.89296448393472, + 41.00296920395572 + ], + [ + 70.0078071674184, + 40.80832146902727 + ], + [ + 70.12264985090208, + 41.00296920395572 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 41.00296920395572 + ], + [ + 70.0078071674184, + 40.80832146902727 + ], + [ + 70.23749253438575, + 40.80832146902727 + ], + [ + 70.12264985090208, + 41.00296920395572 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 41.00296920395572 + ], + [ + 70.23749253438575, + 40.80832146902727 + ], + [ + 70.35233521786944, + 41.00296920395572 + ], + [ + 70.12264985090208, + 41.00296920395572 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 41.392264673812626 + ], + [ + 70.35233521786944, + 41.392264673812626 + ], + [ + 70.23749253438575, + 41.58691240874108 + ], + [ + 70.12264985090208, + 41.392264673812626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 41.392264673812626 + ], + [ + 70.23749253438575, + 41.58691240874108 + ], + [ + 70.0078071674184, + 41.58691240874108 + ], + [ + 70.12264985090208, + 41.392264673812626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 41.392264673812626 + ], + [ + 70.0078071674184, + 41.58691240874108 + ], + [ + 69.89296448393472, + 41.392264673812626 + ], + [ + 70.12264985090208, + 41.392264673812626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 41.392264673812626 + ], + [ + 69.89296448393472, + 41.392264673812626 + ], + [ + 70.0078071674184, + 41.197616938884174 + ], + [ + 70.12264985090208, + 41.392264673812626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 41.392264673812626 + ], + [ + 70.0078071674184, + 41.197616938884174 + ], + [ + 70.23749253438575, + 41.197616938884174 + ], + [ + 70.12264985090208, + 41.392264673812626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 41.392264673812626 + ], + [ + 70.23749253438575, + 41.197616938884174 + ], + [ + 70.35233521786944, + 41.392264673812626 + ], + [ + 70.12264985090208, + 41.392264673812626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 41.78156014366953 + ], + [ + 70.35233521786944, + 41.78156014366953 + ], + [ + 70.23749253438575, + 41.97620787859798 + ], + [ + 70.12264985090208, + 41.78156014366953 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 41.78156014366953 + ], + [ + 70.23749253438575, + 41.97620787859798 + ], + [ + 70.0078071674184, + 41.97620787859798 + ], + [ + 70.12264985090208, + 41.78156014366953 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 41.78156014366953 + ], + [ + 70.0078071674184, + 41.97620787859798 + ], + [ + 69.89296448393472, + 41.78156014366953 + ], + [ + 70.12264985090208, + 41.78156014366953 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 41.78156014366953 + ], + [ + 69.89296448393472, + 41.78156014366953 + ], + [ + 70.0078071674184, + 41.58691240874108 + ], + [ + 70.12264985090208, + 41.78156014366953 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 41.78156014366953 + ], + [ + 70.0078071674184, + 41.58691240874108 + ], + [ + 70.23749253438575, + 41.58691240874108 + ], + [ + 70.12264985090208, + 41.78156014366953 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 41.78156014366953 + ], + [ + 70.23749253438575, + 41.58691240874108 + ], + [ + 70.35233521786944, + 41.78156014366953 + ], + [ + 70.12264985090208, + 41.78156014366953 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 42.17085561352644 + ], + [ + 70.35233521786944, + 42.17085561352644 + ], + [ + 70.23749253438575, + 42.365503348454894 + ], + [ + 70.12264985090208, + 42.17085561352644 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 42.17085561352644 + ], + [ + 70.23749253438575, + 42.365503348454894 + ], + [ + 70.0078071674184, + 42.365503348454894 + ], + [ + 70.12264985090208, + 42.17085561352644 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 42.17085561352644 + ], + [ + 70.0078071674184, + 42.365503348454894 + ], + [ + 69.89296448393472, + 42.17085561352644 + ], + [ + 70.12264985090208, + 42.17085561352644 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 42.17085561352644 + ], + [ + 69.89296448393472, + 42.17085561352644 + ], + [ + 70.0078071674184, + 41.97620787859799 + ], + [ + 70.12264985090208, + 42.17085561352644 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 42.17085561352644 + ], + [ + 70.0078071674184, + 41.97620787859799 + ], + [ + 70.23749253438575, + 41.97620787859799 + ], + [ + 70.12264985090208, + 42.17085561352644 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 42.17085561352644 + ], + [ + 70.23749253438575, + 41.97620787859799 + ], + [ + 70.35233521786944, + 42.17085561352644 + ], + [ + 70.12264985090208, + 42.17085561352644 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 42.56015108338335 + ], + [ + 70.35233521786944, + 42.56015108338335 + ], + [ + 70.23749253438575, + 42.754798818311805 + ], + [ + 70.12264985090208, + 42.56015108338335 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 42.56015108338335 + ], + [ + 70.23749253438575, + 42.754798818311805 + ], + [ + 70.0078071674184, + 42.754798818311805 + ], + [ + 70.12264985090208, + 42.56015108338335 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 42.56015108338335 + ], + [ + 70.0078071674184, + 42.754798818311805 + ], + [ + 69.89296448393472, + 42.56015108338335 + ], + [ + 70.12264985090208, + 42.56015108338335 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 42.56015108338335 + ], + [ + 69.89296448393472, + 42.56015108338335 + ], + [ + 70.0078071674184, + 42.3655033484549 + ], + [ + 70.12264985090208, + 42.56015108338335 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 42.56015108338335 + ], + [ + 70.0078071674184, + 42.3655033484549 + ], + [ + 70.23749253438575, + 42.3655033484549 + ], + [ + 70.12264985090208, + 42.56015108338335 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 42.56015108338335 + ], + [ + 70.23749253438575, + 42.3655033484549 + ], + [ + 70.35233521786944, + 42.56015108338335 + ], + [ + 70.12264985090208, + 42.56015108338335 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 42.94944655324026 + ], + [ + 70.35233521786944, + 42.94944655324026 + ], + [ + 70.23749253438575, + 43.14409428816871 + ], + [ + 70.12264985090208, + 42.94944655324026 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 42.94944655324026 + ], + [ + 70.23749253438575, + 43.14409428816871 + ], + [ + 70.0078071674184, + 43.14409428816871 + ], + [ + 70.12264985090208, + 42.94944655324026 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 42.94944655324026 + ], + [ + 70.0078071674184, + 43.14409428816871 + ], + [ + 69.89296448393472, + 42.94944655324026 + ], + [ + 70.12264985090208, + 42.94944655324026 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 42.94944655324026 + ], + [ + 69.89296448393472, + 42.94944655324026 + ], + [ + 70.0078071674184, + 42.754798818311805 + ], + [ + 70.12264985090208, + 42.94944655324026 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 42.94944655324026 + ], + [ + 70.0078071674184, + 42.754798818311805 + ], + [ + 70.23749253438575, + 42.754798818311805 + ], + [ + 70.12264985090208, + 42.94944655324026 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 42.94944655324026 + ], + [ + 70.23749253438575, + 42.754798818311805 + ], + [ + 70.35233521786944, + 42.94944655324026 + ], + [ + 70.12264985090208, + 42.94944655324026 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 43.33874202309716 + ], + [ + 70.35233521786944, + 43.33874202309716 + ], + [ + 70.23749253438575, + 43.53338975802561 + ], + [ + 70.12264985090208, + 43.33874202309716 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 43.33874202309716 + ], + [ + 70.23749253438575, + 43.53338975802561 + ], + [ + 70.0078071674184, + 43.53338975802561 + ], + [ + 70.12264985090208, + 43.33874202309716 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 43.33874202309716 + ], + [ + 70.0078071674184, + 43.53338975802561 + ], + [ + 69.89296448393472, + 43.33874202309716 + ], + [ + 70.12264985090208, + 43.33874202309716 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 43.33874202309716 + ], + [ + 69.89296448393472, + 43.33874202309716 + ], + [ + 70.0078071674184, + 43.14409428816871 + ], + [ + 70.12264985090208, + 43.33874202309716 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 43.33874202309716 + ], + [ + 70.0078071674184, + 43.14409428816871 + ], + [ + 70.23749253438575, + 43.14409428816871 + ], + [ + 70.12264985090208, + 43.33874202309716 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 43.33874202309716 + ], + [ + 70.23749253438575, + 43.14409428816871 + ], + [ + 70.35233521786944, + 43.33874202309716 + ], + [ + 70.12264985090208, + 43.33874202309716 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 43.728037492954066 + ], + [ + 70.35233521786944, + 43.728037492954066 + ], + [ + 70.23749253438575, + 43.92268522788252 + ], + [ + 70.12264985090208, + 43.728037492954066 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 43.728037492954066 + ], + [ + 70.23749253438575, + 43.92268522788252 + ], + [ + 70.0078071674184, + 43.92268522788252 + ], + [ + 70.12264985090208, + 43.728037492954066 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 43.728037492954066 + ], + [ + 70.0078071674184, + 43.92268522788252 + ], + [ + 69.89296448393472, + 43.728037492954066 + ], + [ + 70.12264985090208, + 43.728037492954066 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 43.728037492954066 + ], + [ + 69.89296448393472, + 43.728037492954066 + ], + [ + 70.0078071674184, + 43.53338975802561 + ], + [ + 70.12264985090208, + 43.728037492954066 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 43.728037492954066 + ], + [ + 70.0078071674184, + 43.53338975802561 + ], + [ + 70.23749253438575, + 43.53338975802561 + ], + [ + 70.12264985090208, + 43.728037492954066 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 43.728037492954066 + ], + [ + 70.23749253438575, + 43.53338975802561 + ], + [ + 70.35233521786944, + 43.728037492954066 + ], + [ + 70.12264985090208, + 43.728037492954066 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 44.11733296281097 + ], + [ + 70.35233521786944, + 44.11733296281097 + ], + [ + 70.23749253438575, + 44.31198069773942 + ], + [ + 70.12264985090208, + 44.11733296281097 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 44.11733296281097 + ], + [ + 70.23749253438575, + 44.31198069773942 + ], + [ + 70.0078071674184, + 44.31198069773942 + ], + [ + 70.12264985090208, + 44.11733296281097 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 44.11733296281097 + ], + [ + 70.0078071674184, + 44.31198069773942 + ], + [ + 69.89296448393472, + 44.11733296281097 + ], + [ + 70.12264985090208, + 44.11733296281097 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 44.11733296281097 + ], + [ + 69.89296448393472, + 44.11733296281097 + ], + [ + 70.0078071674184, + 43.92268522788252 + ], + [ + 70.12264985090208, + 44.11733296281097 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 44.11733296281097 + ], + [ + 70.0078071674184, + 43.92268522788252 + ], + [ + 70.23749253438575, + 43.92268522788252 + ], + [ + 70.12264985090208, + 44.11733296281097 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 44.11733296281097 + ], + [ + 70.23749253438575, + 43.92268522788252 + ], + [ + 70.35233521786944, + 44.11733296281097 + ], + [ + 70.12264985090208, + 44.11733296281097 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 44.506628432667874 + ], + [ + 70.35233521786944, + 44.506628432667874 + ], + [ + 70.23749253438575, + 44.701276167596326 + ], + [ + 70.12264985090208, + 44.506628432667874 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 44.506628432667874 + ], + [ + 70.23749253438575, + 44.701276167596326 + ], + [ + 70.0078071674184, + 44.701276167596326 + ], + [ + 70.12264985090208, + 44.506628432667874 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 44.506628432667874 + ], + [ + 70.0078071674184, + 44.701276167596326 + ], + [ + 69.89296448393472, + 44.506628432667874 + ], + [ + 70.12264985090208, + 44.506628432667874 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 44.506628432667874 + ], + [ + 69.89296448393472, + 44.506628432667874 + ], + [ + 70.0078071674184, + 44.31198069773942 + ], + [ + 70.12264985090208, + 44.506628432667874 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 44.506628432667874 + ], + [ + 70.0078071674184, + 44.31198069773942 + ], + [ + 70.23749253438575, + 44.31198069773942 + ], + [ + 70.12264985090208, + 44.506628432667874 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 44.506628432667874 + ], + [ + 70.23749253438575, + 44.31198069773942 + ], + [ + 70.35233521786944, + 44.506628432667874 + ], + [ + 70.12264985090208, + 44.506628432667874 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 44.89592390252479 + ], + [ + 70.35233521786944, + 44.89592390252479 + ], + [ + 70.23749253438575, + 45.090571637453245 + ], + [ + 70.12264985090208, + 44.89592390252479 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 44.89592390252479 + ], + [ + 70.23749253438575, + 45.090571637453245 + ], + [ + 70.0078071674184, + 45.090571637453245 + ], + [ + 70.12264985090208, + 44.89592390252479 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 44.89592390252479 + ], + [ + 70.0078071674184, + 45.090571637453245 + ], + [ + 69.89296448393472, + 44.89592390252479 + ], + [ + 70.12264985090208, + 44.89592390252479 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 44.89592390252479 + ], + [ + 69.89296448393472, + 44.89592390252479 + ], + [ + 70.0078071674184, + 44.70127616759634 + ], + [ + 70.12264985090208, + 44.89592390252479 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 44.89592390252479 + ], + [ + 70.0078071674184, + 44.70127616759634 + ], + [ + 70.23749253438575, + 44.70127616759634 + ], + [ + 70.12264985090208, + 44.89592390252479 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 44.89592390252479 + ], + [ + 70.23749253438575, + 44.70127616759634 + ], + [ + 70.35233521786944, + 44.89592390252479 + ], + [ + 70.12264985090208, + 44.89592390252479 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 45.2852193723817 + ], + [ + 70.35233521786944, + 45.2852193723817 + ], + [ + 70.23749253438575, + 45.47986710731015 + ], + [ + 70.12264985090208, + 45.2852193723817 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 45.2852193723817 + ], + [ + 70.23749253438575, + 45.47986710731015 + ], + [ + 70.0078071674184, + 45.47986710731015 + ], + [ + 70.12264985090208, + 45.2852193723817 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 45.2852193723817 + ], + [ + 70.0078071674184, + 45.47986710731015 + ], + [ + 69.89296448393472, + 45.2852193723817 + ], + [ + 70.12264985090208, + 45.2852193723817 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 45.2852193723817 + ], + [ + 69.89296448393472, + 45.2852193723817 + ], + [ + 70.0078071674184, + 45.090571637453245 + ], + [ + 70.12264985090208, + 45.2852193723817 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 45.2852193723817 + ], + [ + 70.0078071674184, + 45.090571637453245 + ], + [ + 70.23749253438575, + 45.090571637453245 + ], + [ + 70.12264985090208, + 45.2852193723817 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 45.2852193723817 + ], + [ + 70.23749253438575, + 45.090571637453245 + ], + [ + 70.35233521786944, + 45.2852193723817 + ], + [ + 70.12264985090208, + 45.2852193723817 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 45.6745148422386 + ], + [ + 70.35233521786944, + 45.6745148422386 + ], + [ + 70.23749253438575, + 45.86916257716705 + ], + [ + 70.12264985090208, + 45.6745148422386 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 45.6745148422386 + ], + [ + 70.23749253438575, + 45.86916257716705 + ], + [ + 70.0078071674184, + 45.86916257716705 + ], + [ + 70.12264985090208, + 45.6745148422386 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 45.6745148422386 + ], + [ + 70.0078071674184, + 45.86916257716705 + ], + [ + 69.89296448393472, + 45.6745148422386 + ], + [ + 70.12264985090208, + 45.6745148422386 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 45.6745148422386 + ], + [ + 69.89296448393472, + 45.6745148422386 + ], + [ + 70.0078071674184, + 45.47986710731015 + ], + [ + 70.12264985090208, + 45.6745148422386 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 45.6745148422386 + ], + [ + 70.0078071674184, + 45.47986710731015 + ], + [ + 70.23749253438575, + 45.47986710731015 + ], + [ + 70.12264985090208, + 45.6745148422386 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 45.6745148422386 + ], + [ + 70.23749253438575, + 45.47986710731015 + ], + [ + 70.35233521786944, + 45.6745148422386 + ], + [ + 70.12264985090208, + 45.6745148422386 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 46.063810312095505 + ], + [ + 70.35233521786944, + 46.063810312095505 + ], + [ + 70.23749253438575, + 46.25845804702396 + ], + [ + 70.12264985090208, + 46.063810312095505 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 46.063810312095505 + ], + [ + 70.23749253438575, + 46.25845804702396 + ], + [ + 70.0078071674184, + 46.25845804702396 + ], + [ + 70.12264985090208, + 46.063810312095505 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 46.063810312095505 + ], + [ + 70.0078071674184, + 46.25845804702396 + ], + [ + 69.89296448393472, + 46.063810312095505 + ], + [ + 70.12264985090208, + 46.063810312095505 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 46.063810312095505 + ], + [ + 69.89296448393472, + 46.063810312095505 + ], + [ + 70.0078071674184, + 45.86916257716705 + ], + [ + 70.12264985090208, + 46.063810312095505 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 46.063810312095505 + ], + [ + 70.0078071674184, + 45.86916257716705 + ], + [ + 70.23749253438575, + 45.86916257716705 + ], + [ + 70.12264985090208, + 46.063810312095505 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 46.063810312095505 + ], + [ + 70.23749253438575, + 45.86916257716705 + ], + [ + 70.35233521786944, + 46.063810312095505 + ], + [ + 70.12264985090208, + 46.063810312095505 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 46.45310578195241 + ], + [ + 70.35233521786944, + 46.45310578195241 + ], + [ + 70.23749253438575, + 46.64775351688086 + ], + [ + 70.12264985090208, + 46.45310578195241 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 46.45310578195241 + ], + [ + 70.23749253438575, + 46.64775351688086 + ], + [ + 70.0078071674184, + 46.64775351688086 + ], + [ + 70.12264985090208, + 46.45310578195241 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 46.45310578195241 + ], + [ + 70.0078071674184, + 46.64775351688086 + ], + [ + 69.89296448393472, + 46.45310578195241 + ], + [ + 70.12264985090208, + 46.45310578195241 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 46.45310578195241 + ], + [ + 69.89296448393472, + 46.45310578195241 + ], + [ + 70.0078071674184, + 46.25845804702396 + ], + [ + 70.12264985090208, + 46.45310578195241 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 46.45310578195241 + ], + [ + 70.0078071674184, + 46.25845804702396 + ], + [ + 70.23749253438575, + 46.25845804702396 + ], + [ + 70.12264985090208, + 46.45310578195241 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 46.45310578195241 + ], + [ + 70.23749253438575, + 46.25845804702396 + ], + [ + 70.35233521786944, + 46.45310578195241 + ], + [ + 70.12264985090208, + 46.45310578195241 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 46.842401251809314 + ], + [ + 70.35233521786944, + 46.842401251809314 + ], + [ + 70.23749253438575, + 47.037048986737766 + ], + [ + 70.12264985090208, + 46.842401251809314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 46.842401251809314 + ], + [ + 70.23749253438575, + 47.037048986737766 + ], + [ + 70.0078071674184, + 47.037048986737766 + ], + [ + 70.12264985090208, + 46.842401251809314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 46.842401251809314 + ], + [ + 70.0078071674184, + 47.037048986737766 + ], + [ + 69.89296448393472, + 46.842401251809314 + ], + [ + 70.12264985090208, + 46.842401251809314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 46.842401251809314 + ], + [ + 69.89296448393472, + 46.842401251809314 + ], + [ + 70.0078071674184, + 46.64775351688086 + ], + [ + 70.12264985090208, + 46.842401251809314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 46.842401251809314 + ], + [ + 70.0078071674184, + 46.64775351688086 + ], + [ + 70.23749253438575, + 46.64775351688086 + ], + [ + 70.12264985090208, + 46.842401251809314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 46.842401251809314 + ], + [ + 70.23749253438575, + 46.64775351688086 + ], + [ + 70.35233521786944, + 46.842401251809314 + ], + [ + 70.12264985090208, + 46.842401251809314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 47.23169672166622 + ], + [ + 70.35233521786944, + 47.23169672166622 + ], + [ + 70.23749253438575, + 47.42634445659467 + ], + [ + 70.12264985090208, + 47.23169672166622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 47.23169672166622 + ], + [ + 70.23749253438575, + 47.42634445659467 + ], + [ + 70.0078071674184, + 47.42634445659467 + ], + [ + 70.12264985090208, + 47.23169672166622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 47.23169672166622 + ], + [ + 70.0078071674184, + 47.42634445659467 + ], + [ + 69.89296448393472, + 47.23169672166622 + ], + [ + 70.12264985090208, + 47.23169672166622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 47.23169672166622 + ], + [ + 69.89296448393472, + 47.23169672166622 + ], + [ + 70.0078071674184, + 47.037048986737766 + ], + [ + 70.12264985090208, + 47.23169672166622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 47.23169672166622 + ], + [ + 70.0078071674184, + 47.037048986737766 + ], + [ + 70.23749253438575, + 47.037048986737766 + ], + [ + 70.12264985090208, + 47.23169672166622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 47.23169672166622 + ], + [ + 70.23749253438575, + 47.037048986737766 + ], + [ + 70.35233521786944, + 47.23169672166622 + ], + [ + 70.12264985090208, + 47.23169672166622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 47.620992191523136 + ], + [ + 70.35233521786944, + 47.620992191523136 + ], + [ + 70.23749253438575, + 47.81563992645159 + ], + [ + 70.12264985090208, + 47.620992191523136 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 47.620992191523136 + ], + [ + 70.23749253438575, + 47.81563992645159 + ], + [ + 70.0078071674184, + 47.81563992645159 + ], + [ + 70.12264985090208, + 47.620992191523136 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 47.620992191523136 + ], + [ + 70.0078071674184, + 47.81563992645159 + ], + [ + 69.89296448393472, + 47.620992191523136 + ], + [ + 70.12264985090208, + 47.620992191523136 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 47.620992191523136 + ], + [ + 69.89296448393472, + 47.620992191523136 + ], + [ + 70.0078071674184, + 47.426344456594684 + ], + [ + 70.12264985090208, + 47.620992191523136 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 47.620992191523136 + ], + [ + 70.0078071674184, + 47.426344456594684 + ], + [ + 70.23749253438575, + 47.426344456594684 + ], + [ + 70.12264985090208, + 47.620992191523136 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.12264985090208, + 47.620992191523136 + ], + [ + 70.23749253438575, + 47.426344456594684 + ], + [ + 70.35233521786944, + 47.620992191523136 + ], + [ + 70.12264985090208, + 47.620992191523136 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 12.0004566996162 + ], + [ + 70.69686326832047, + 12.0004566996162 + ], + [ + 70.58202058483678, + 12.195104434544653 + ], + [ + 70.46717790135311, + 12.0004566996162 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 12.0004566996162 + ], + [ + 70.58202058483678, + 12.195104434544653 + ], + [ + 70.35233521786944, + 12.195104434544653 + ], + [ + 70.46717790135311, + 12.0004566996162 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 12.0004566996162 + ], + [ + 70.35233521786944, + 12.195104434544653 + ], + [ + 70.23749253438575, + 12.0004566996162 + ], + [ + 70.46717790135311, + 12.0004566996162 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 12.0004566996162 + ], + [ + 70.23749253438575, + 12.0004566996162 + ], + [ + 70.35233521786944, + 11.805808964687746 + ], + [ + 70.46717790135311, + 12.0004566996162 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 12.0004566996162 + ], + [ + 70.35233521786944, + 11.805808964687746 + ], + [ + 70.58202058483678, + 11.805808964687746 + ], + [ + 70.46717790135311, + 12.0004566996162 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 12.0004566996162 + ], + [ + 70.58202058483678, + 11.805808964687746 + ], + [ + 70.69686326832047, + 12.0004566996162 + ], + [ + 70.46717790135311, + 12.0004566996162 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 12.389752169473105 + ], + [ + 70.69686326832047, + 12.389752169473105 + ], + [ + 70.58202058483678, + 12.58439990440156 + ], + [ + 70.46717790135311, + 12.389752169473105 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 12.389752169473105 + ], + [ + 70.58202058483678, + 12.58439990440156 + ], + [ + 70.35233521786944, + 12.58439990440156 + ], + [ + 70.46717790135311, + 12.389752169473105 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 12.389752169473105 + ], + [ + 70.35233521786944, + 12.58439990440156 + ], + [ + 70.23749253438575, + 12.389752169473105 + ], + [ + 70.46717790135311, + 12.389752169473105 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 12.389752169473105 + ], + [ + 70.23749253438575, + 12.389752169473105 + ], + [ + 70.35233521786944, + 12.195104434544652 + ], + [ + 70.46717790135311, + 12.389752169473105 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 12.389752169473105 + ], + [ + 70.35233521786944, + 12.195104434544652 + ], + [ + 70.58202058483678, + 12.195104434544652 + ], + [ + 70.46717790135311, + 12.389752169473105 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 12.389752169473105 + ], + [ + 70.58202058483678, + 12.195104434544652 + ], + [ + 70.69686326832047, + 12.389752169473105 + ], + [ + 70.46717790135311, + 12.389752169473105 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 12.779047639330013 + ], + [ + 70.69686326832047, + 12.779047639330013 + ], + [ + 70.58202058483678, + 12.973695374258467 + ], + [ + 70.46717790135311, + 12.779047639330013 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 12.779047639330013 + ], + [ + 70.58202058483678, + 12.973695374258467 + ], + [ + 70.35233521786944, + 12.973695374258467 + ], + [ + 70.46717790135311, + 12.779047639330013 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 12.779047639330013 + ], + [ + 70.35233521786944, + 12.973695374258467 + ], + [ + 70.23749253438575, + 12.779047639330013 + ], + [ + 70.46717790135311, + 12.779047639330013 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 12.779047639330013 + ], + [ + 70.23749253438575, + 12.779047639330013 + ], + [ + 70.35233521786944, + 12.58439990440156 + ], + [ + 70.46717790135311, + 12.779047639330013 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 12.779047639330013 + ], + [ + 70.35233521786944, + 12.58439990440156 + ], + [ + 70.58202058483678, + 12.58439990440156 + ], + [ + 70.46717790135311, + 12.779047639330013 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 12.779047639330013 + ], + [ + 70.58202058483678, + 12.58439990440156 + ], + [ + 70.69686326832047, + 12.779047639330013 + ], + [ + 70.46717790135311, + 12.779047639330013 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 13.16834310918692 + ], + [ + 70.69686326832047, + 13.16834310918692 + ], + [ + 70.58202058483678, + 13.362990844115373 + ], + [ + 70.46717790135311, + 13.16834310918692 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 13.16834310918692 + ], + [ + 70.58202058483678, + 13.362990844115373 + ], + [ + 70.35233521786944, + 13.362990844115373 + ], + [ + 70.46717790135311, + 13.16834310918692 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 13.16834310918692 + ], + [ + 70.35233521786944, + 13.362990844115373 + ], + [ + 70.23749253438575, + 13.16834310918692 + ], + [ + 70.46717790135311, + 13.16834310918692 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 13.16834310918692 + ], + [ + 70.23749253438575, + 13.16834310918692 + ], + [ + 70.35233521786944, + 12.973695374258465 + ], + [ + 70.46717790135311, + 13.16834310918692 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 13.16834310918692 + ], + [ + 70.35233521786944, + 12.973695374258465 + ], + [ + 70.58202058483678, + 12.973695374258465 + ], + [ + 70.46717790135311, + 13.16834310918692 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 13.16834310918692 + ], + [ + 70.58202058483678, + 12.973695374258465 + ], + [ + 70.69686326832047, + 13.16834310918692 + ], + [ + 70.46717790135311, + 13.16834310918692 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 13.557638579043825 + ], + [ + 70.69686326832047, + 13.557638579043825 + ], + [ + 70.58202058483678, + 13.752286313972279 + ], + [ + 70.46717790135311, + 13.557638579043825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 13.557638579043825 + ], + [ + 70.58202058483678, + 13.752286313972279 + ], + [ + 70.35233521786944, + 13.752286313972279 + ], + [ + 70.46717790135311, + 13.557638579043825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 13.557638579043825 + ], + [ + 70.35233521786944, + 13.752286313972279 + ], + [ + 70.23749253438575, + 13.557638579043825 + ], + [ + 70.46717790135311, + 13.557638579043825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 13.557638579043825 + ], + [ + 70.23749253438575, + 13.557638579043825 + ], + [ + 70.35233521786944, + 13.362990844115371 + ], + [ + 70.46717790135311, + 13.557638579043825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 13.557638579043825 + ], + [ + 70.35233521786944, + 13.362990844115371 + ], + [ + 70.58202058483678, + 13.362990844115371 + ], + [ + 70.46717790135311, + 13.557638579043825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 13.557638579043825 + ], + [ + 70.58202058483678, + 13.362990844115371 + ], + [ + 70.69686326832047, + 13.557638579043825 + ], + [ + 70.46717790135311, + 13.557638579043825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 13.946934048900731 + ], + [ + 70.69686326832047, + 13.946934048900731 + ], + [ + 70.58202058483678, + 14.141581783829185 + ], + [ + 70.46717790135311, + 13.946934048900731 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 13.946934048900731 + ], + [ + 70.58202058483678, + 14.141581783829185 + ], + [ + 70.35233521786944, + 14.141581783829185 + ], + [ + 70.46717790135311, + 13.946934048900731 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 13.946934048900731 + ], + [ + 70.35233521786944, + 14.141581783829185 + ], + [ + 70.23749253438575, + 13.946934048900731 + ], + [ + 70.46717790135311, + 13.946934048900731 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 13.946934048900731 + ], + [ + 70.23749253438575, + 13.946934048900731 + ], + [ + 70.35233521786944, + 13.752286313972277 + ], + [ + 70.46717790135311, + 13.946934048900731 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 13.946934048900731 + ], + [ + 70.35233521786944, + 13.752286313972277 + ], + [ + 70.58202058483678, + 13.752286313972277 + ], + [ + 70.46717790135311, + 13.946934048900731 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 13.946934048900731 + ], + [ + 70.58202058483678, + 13.752286313972277 + ], + [ + 70.69686326832047, + 13.946934048900731 + ], + [ + 70.46717790135311, + 13.946934048900731 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 14.336229518757637 + ], + [ + 70.69686326832047, + 14.336229518757637 + ], + [ + 70.58202058483678, + 14.530877253686091 + ], + [ + 70.46717790135311, + 14.336229518757637 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 14.336229518757637 + ], + [ + 70.58202058483678, + 14.530877253686091 + ], + [ + 70.35233521786944, + 14.530877253686091 + ], + [ + 70.46717790135311, + 14.336229518757637 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 14.336229518757637 + ], + [ + 70.35233521786944, + 14.530877253686091 + ], + [ + 70.23749253438575, + 14.336229518757637 + ], + [ + 70.46717790135311, + 14.336229518757637 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 14.336229518757637 + ], + [ + 70.23749253438575, + 14.336229518757637 + ], + [ + 70.35233521786944, + 14.141581783829183 + ], + [ + 70.46717790135311, + 14.336229518757637 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 14.336229518757637 + ], + [ + 70.35233521786944, + 14.141581783829183 + ], + [ + 70.58202058483678, + 14.141581783829183 + ], + [ + 70.46717790135311, + 14.336229518757637 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 14.336229518757637 + ], + [ + 70.58202058483678, + 14.141581783829183 + ], + [ + 70.69686326832047, + 14.336229518757637 + ], + [ + 70.46717790135311, + 14.336229518757637 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 14.725524988614545 + ], + [ + 70.69686326832047, + 14.725524988614545 + ], + [ + 70.58202058483678, + 14.920172723542999 + ], + [ + 70.46717790135311, + 14.725524988614545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 14.725524988614545 + ], + [ + 70.58202058483678, + 14.920172723542999 + ], + [ + 70.35233521786944, + 14.920172723542999 + ], + [ + 70.46717790135311, + 14.725524988614545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 14.725524988614545 + ], + [ + 70.35233521786944, + 14.920172723542999 + ], + [ + 70.23749253438575, + 14.725524988614545 + ], + [ + 70.46717790135311, + 14.725524988614545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 14.725524988614545 + ], + [ + 70.23749253438575, + 14.725524988614545 + ], + [ + 70.35233521786944, + 14.530877253686091 + ], + [ + 70.46717790135311, + 14.725524988614545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 14.725524988614545 + ], + [ + 70.35233521786944, + 14.530877253686091 + ], + [ + 70.58202058483678, + 14.530877253686091 + ], + [ + 70.46717790135311, + 14.725524988614545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 14.725524988614545 + ], + [ + 70.58202058483678, + 14.530877253686091 + ], + [ + 70.69686326832047, + 14.725524988614545 + ], + [ + 70.46717790135311, + 14.725524988614545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 15.114820458471451 + ], + [ + 70.69686326832047, + 15.114820458471451 + ], + [ + 70.58202058483678, + 15.309468193399905 + ], + [ + 70.46717790135311, + 15.114820458471451 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 15.114820458471451 + ], + [ + 70.58202058483678, + 15.309468193399905 + ], + [ + 70.35233521786944, + 15.309468193399905 + ], + [ + 70.46717790135311, + 15.114820458471451 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 15.114820458471451 + ], + [ + 70.35233521786944, + 15.309468193399905 + ], + [ + 70.23749253438575, + 15.114820458471451 + ], + [ + 70.46717790135311, + 15.114820458471451 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 15.114820458471451 + ], + [ + 70.23749253438575, + 15.114820458471451 + ], + [ + 70.35233521786944, + 14.920172723542997 + ], + [ + 70.46717790135311, + 15.114820458471451 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 15.114820458471451 + ], + [ + 70.35233521786944, + 14.920172723542997 + ], + [ + 70.58202058483678, + 14.920172723542997 + ], + [ + 70.46717790135311, + 15.114820458471451 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 15.114820458471451 + ], + [ + 70.58202058483678, + 14.920172723542997 + ], + [ + 70.69686326832047, + 15.114820458471451 + ], + [ + 70.46717790135311, + 15.114820458471451 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 15.504115928328357 + ], + [ + 70.69686326832047, + 15.504115928328357 + ], + [ + 70.58202058483678, + 15.69876366325681 + ], + [ + 70.46717790135311, + 15.504115928328357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 15.504115928328357 + ], + [ + 70.58202058483678, + 15.69876366325681 + ], + [ + 70.35233521786944, + 15.69876366325681 + ], + [ + 70.46717790135311, + 15.504115928328357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 15.504115928328357 + ], + [ + 70.35233521786944, + 15.69876366325681 + ], + [ + 70.23749253438575, + 15.504115928328357 + ], + [ + 70.46717790135311, + 15.504115928328357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 15.504115928328357 + ], + [ + 70.23749253438575, + 15.504115928328357 + ], + [ + 70.35233521786944, + 15.309468193399903 + ], + [ + 70.46717790135311, + 15.504115928328357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 15.504115928328357 + ], + [ + 70.35233521786944, + 15.309468193399903 + ], + [ + 70.58202058483678, + 15.309468193399903 + ], + [ + 70.46717790135311, + 15.504115928328357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 15.504115928328357 + ], + [ + 70.58202058483678, + 15.309468193399903 + ], + [ + 70.69686326832047, + 15.504115928328357 + ], + [ + 70.46717790135311, + 15.504115928328357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 15.893411398185265 + ], + [ + 70.69686326832047, + 15.893411398185265 + ], + [ + 70.58202058483678, + 16.088059133113717 + ], + [ + 70.46717790135311, + 15.893411398185265 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 15.893411398185265 + ], + [ + 70.58202058483678, + 16.088059133113717 + ], + [ + 70.35233521786944, + 16.088059133113717 + ], + [ + 70.46717790135311, + 15.893411398185265 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 15.893411398185265 + ], + [ + 70.35233521786944, + 16.088059133113717 + ], + [ + 70.23749253438575, + 15.893411398185265 + ], + [ + 70.46717790135311, + 15.893411398185265 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 15.893411398185265 + ], + [ + 70.23749253438575, + 15.893411398185265 + ], + [ + 70.35233521786944, + 15.69876366325681 + ], + [ + 70.46717790135311, + 15.893411398185265 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 15.893411398185265 + ], + [ + 70.35233521786944, + 15.69876366325681 + ], + [ + 70.58202058483678, + 15.69876366325681 + ], + [ + 70.46717790135311, + 15.893411398185265 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 15.893411398185265 + ], + [ + 70.58202058483678, + 15.69876366325681 + ], + [ + 70.69686326832047, + 15.893411398185265 + ], + [ + 70.46717790135311, + 15.893411398185265 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 16.28270686804217 + ], + [ + 70.69686326832047, + 16.28270686804217 + ], + [ + 70.58202058483678, + 16.47735460297062 + ], + [ + 70.46717790135311, + 16.28270686804217 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 16.28270686804217 + ], + [ + 70.58202058483678, + 16.47735460297062 + ], + [ + 70.35233521786944, + 16.47735460297062 + ], + [ + 70.46717790135311, + 16.28270686804217 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 16.28270686804217 + ], + [ + 70.35233521786944, + 16.47735460297062 + ], + [ + 70.23749253438575, + 16.28270686804217 + ], + [ + 70.46717790135311, + 16.28270686804217 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 16.28270686804217 + ], + [ + 70.23749253438575, + 16.28270686804217 + ], + [ + 70.35233521786944, + 16.088059133113717 + ], + [ + 70.46717790135311, + 16.28270686804217 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 16.28270686804217 + ], + [ + 70.35233521786944, + 16.088059133113717 + ], + [ + 70.58202058483678, + 16.088059133113717 + ], + [ + 70.46717790135311, + 16.28270686804217 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 16.28270686804217 + ], + [ + 70.58202058483678, + 16.088059133113717 + ], + [ + 70.69686326832047, + 16.28270686804217 + ], + [ + 70.46717790135311, + 16.28270686804217 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 16.672002337899077 + ], + [ + 70.69686326832047, + 16.672002337899077 + ], + [ + 70.58202058483678, + 16.86665007282753 + ], + [ + 70.46717790135311, + 16.672002337899077 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 16.672002337899077 + ], + [ + 70.58202058483678, + 16.86665007282753 + ], + [ + 70.35233521786944, + 16.86665007282753 + ], + [ + 70.46717790135311, + 16.672002337899077 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 16.672002337899077 + ], + [ + 70.35233521786944, + 16.86665007282753 + ], + [ + 70.23749253438575, + 16.672002337899077 + ], + [ + 70.46717790135311, + 16.672002337899077 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 16.672002337899077 + ], + [ + 70.23749253438575, + 16.672002337899077 + ], + [ + 70.35233521786944, + 16.477354602970625 + ], + [ + 70.46717790135311, + 16.672002337899077 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 16.672002337899077 + ], + [ + 70.35233521786944, + 16.477354602970625 + ], + [ + 70.58202058483678, + 16.477354602970625 + ], + [ + 70.46717790135311, + 16.672002337899077 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 16.672002337899077 + ], + [ + 70.58202058483678, + 16.477354602970625 + ], + [ + 70.69686326832047, + 16.672002337899077 + ], + [ + 70.46717790135311, + 16.672002337899077 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 17.06129780775598 + ], + [ + 70.69686326832047, + 17.06129780775598 + ], + [ + 70.58202058483678, + 17.255945542684433 + ], + [ + 70.46717790135311, + 17.06129780775598 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 17.06129780775598 + ], + [ + 70.58202058483678, + 17.255945542684433 + ], + [ + 70.35233521786944, + 17.255945542684433 + ], + [ + 70.46717790135311, + 17.06129780775598 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 17.06129780775598 + ], + [ + 70.35233521786944, + 17.255945542684433 + ], + [ + 70.23749253438575, + 17.06129780775598 + ], + [ + 70.46717790135311, + 17.06129780775598 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 17.06129780775598 + ], + [ + 70.23749253438575, + 17.06129780775598 + ], + [ + 70.35233521786944, + 16.86665007282753 + ], + [ + 70.46717790135311, + 17.06129780775598 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 17.06129780775598 + ], + [ + 70.35233521786944, + 16.86665007282753 + ], + [ + 70.58202058483678, + 16.86665007282753 + ], + [ + 70.46717790135311, + 17.06129780775598 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 17.06129780775598 + ], + [ + 70.58202058483678, + 16.86665007282753 + ], + [ + 70.69686326832047, + 17.06129780775598 + ], + [ + 70.46717790135311, + 17.06129780775598 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 17.45059327761289 + ], + [ + 70.69686326832047, + 17.45059327761289 + ], + [ + 70.58202058483678, + 17.64524101254134 + ], + [ + 70.46717790135311, + 17.45059327761289 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 17.45059327761289 + ], + [ + 70.58202058483678, + 17.64524101254134 + ], + [ + 70.35233521786944, + 17.64524101254134 + ], + [ + 70.46717790135311, + 17.45059327761289 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 17.45059327761289 + ], + [ + 70.35233521786944, + 17.64524101254134 + ], + [ + 70.23749253438575, + 17.45059327761289 + ], + [ + 70.46717790135311, + 17.45059327761289 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 17.45059327761289 + ], + [ + 70.23749253438575, + 17.45059327761289 + ], + [ + 70.35233521786944, + 17.255945542684437 + ], + [ + 70.46717790135311, + 17.45059327761289 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 17.45059327761289 + ], + [ + 70.35233521786944, + 17.255945542684437 + ], + [ + 70.58202058483678, + 17.255945542684437 + ], + [ + 70.46717790135311, + 17.45059327761289 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 17.45059327761289 + ], + [ + 70.58202058483678, + 17.255945542684437 + ], + [ + 70.69686326832047, + 17.45059327761289 + ], + [ + 70.46717790135311, + 17.45059327761289 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 17.839888747469793 + ], + [ + 70.69686326832047, + 17.839888747469793 + ], + [ + 70.58202058483678, + 18.034536482398245 + ], + [ + 70.46717790135311, + 17.839888747469793 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 17.839888747469793 + ], + [ + 70.58202058483678, + 18.034536482398245 + ], + [ + 70.35233521786944, + 18.034536482398245 + ], + [ + 70.46717790135311, + 17.839888747469793 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 17.839888747469793 + ], + [ + 70.35233521786944, + 18.034536482398245 + ], + [ + 70.23749253438575, + 17.839888747469793 + ], + [ + 70.46717790135311, + 17.839888747469793 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 17.839888747469793 + ], + [ + 70.23749253438575, + 17.839888747469793 + ], + [ + 70.35233521786944, + 17.64524101254134 + ], + [ + 70.46717790135311, + 17.839888747469793 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 17.839888747469793 + ], + [ + 70.35233521786944, + 17.64524101254134 + ], + [ + 70.58202058483678, + 17.64524101254134 + ], + [ + 70.46717790135311, + 17.839888747469793 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 17.839888747469793 + ], + [ + 70.58202058483678, + 17.64524101254134 + ], + [ + 70.69686326832047, + 17.839888747469793 + ], + [ + 70.46717790135311, + 17.839888747469793 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 18.2291842173267 + ], + [ + 70.69686326832047, + 18.2291842173267 + ], + [ + 70.58202058483678, + 18.423831952255153 + ], + [ + 70.46717790135311, + 18.2291842173267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 18.2291842173267 + ], + [ + 70.58202058483678, + 18.423831952255153 + ], + [ + 70.35233521786944, + 18.423831952255153 + ], + [ + 70.46717790135311, + 18.2291842173267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 18.2291842173267 + ], + [ + 70.35233521786944, + 18.423831952255153 + ], + [ + 70.23749253438575, + 18.2291842173267 + ], + [ + 70.46717790135311, + 18.2291842173267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 18.2291842173267 + ], + [ + 70.23749253438575, + 18.2291842173267 + ], + [ + 70.35233521786944, + 18.03453648239825 + ], + [ + 70.46717790135311, + 18.2291842173267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 18.2291842173267 + ], + [ + 70.35233521786944, + 18.03453648239825 + ], + [ + 70.58202058483678, + 18.03453648239825 + ], + [ + 70.46717790135311, + 18.2291842173267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 18.2291842173267 + ], + [ + 70.58202058483678, + 18.03453648239825 + ], + [ + 70.69686326832047, + 18.2291842173267 + ], + [ + 70.46717790135311, + 18.2291842173267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 18.61847968718361 + ], + [ + 70.69686326832047, + 18.61847968718361 + ], + [ + 70.58202058483678, + 18.81312742211206 + ], + [ + 70.46717790135311, + 18.61847968718361 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 18.61847968718361 + ], + [ + 70.58202058483678, + 18.81312742211206 + ], + [ + 70.35233521786944, + 18.81312742211206 + ], + [ + 70.46717790135311, + 18.61847968718361 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 18.61847968718361 + ], + [ + 70.35233521786944, + 18.81312742211206 + ], + [ + 70.23749253438575, + 18.61847968718361 + ], + [ + 70.46717790135311, + 18.61847968718361 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 18.61847968718361 + ], + [ + 70.23749253438575, + 18.61847968718361 + ], + [ + 70.35233521786944, + 18.423831952255156 + ], + [ + 70.46717790135311, + 18.61847968718361 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 18.61847968718361 + ], + [ + 70.35233521786944, + 18.423831952255156 + ], + [ + 70.58202058483678, + 18.423831952255156 + ], + [ + 70.46717790135311, + 18.61847968718361 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 18.61847968718361 + ], + [ + 70.58202058483678, + 18.423831952255156 + ], + [ + 70.69686326832047, + 18.61847968718361 + ], + [ + 70.46717790135311, + 18.61847968718361 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 19.007775157040513 + ], + [ + 70.69686326832047, + 19.007775157040513 + ], + [ + 70.58202058483678, + 19.202422891968965 + ], + [ + 70.46717790135311, + 19.007775157040513 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 19.007775157040513 + ], + [ + 70.58202058483678, + 19.202422891968965 + ], + [ + 70.35233521786944, + 19.202422891968965 + ], + [ + 70.46717790135311, + 19.007775157040513 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 19.007775157040513 + ], + [ + 70.35233521786944, + 19.202422891968965 + ], + [ + 70.23749253438575, + 19.007775157040513 + ], + [ + 70.46717790135311, + 19.007775157040513 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 19.007775157040513 + ], + [ + 70.23749253438575, + 19.007775157040513 + ], + [ + 70.35233521786944, + 18.81312742211206 + ], + [ + 70.46717790135311, + 19.007775157040513 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 19.007775157040513 + ], + [ + 70.35233521786944, + 18.81312742211206 + ], + [ + 70.58202058483678, + 18.81312742211206 + ], + [ + 70.46717790135311, + 19.007775157040513 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 19.007775157040513 + ], + [ + 70.58202058483678, + 18.81312742211206 + ], + [ + 70.69686326832047, + 19.007775157040513 + ], + [ + 70.46717790135311, + 19.007775157040513 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 19.39707062689742 + ], + [ + 70.69686326832047, + 19.39707062689742 + ], + [ + 70.58202058483678, + 19.591718361825873 + ], + [ + 70.46717790135311, + 19.39707062689742 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 19.39707062689742 + ], + [ + 70.58202058483678, + 19.591718361825873 + ], + [ + 70.35233521786944, + 19.591718361825873 + ], + [ + 70.46717790135311, + 19.39707062689742 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 19.39707062689742 + ], + [ + 70.35233521786944, + 19.591718361825873 + ], + [ + 70.23749253438575, + 19.39707062689742 + ], + [ + 70.46717790135311, + 19.39707062689742 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 19.39707062689742 + ], + [ + 70.23749253438575, + 19.39707062689742 + ], + [ + 70.35233521786944, + 19.20242289196897 + ], + [ + 70.46717790135311, + 19.39707062689742 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 19.39707062689742 + ], + [ + 70.35233521786944, + 19.20242289196897 + ], + [ + 70.58202058483678, + 19.20242289196897 + ], + [ + 70.46717790135311, + 19.39707062689742 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 19.39707062689742 + ], + [ + 70.58202058483678, + 19.20242289196897 + ], + [ + 70.69686326832047, + 19.39707062689742 + ], + [ + 70.46717790135311, + 19.39707062689742 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 19.78636609675433 + ], + [ + 70.69686326832047, + 19.78636609675433 + ], + [ + 70.58202058483678, + 19.98101383168278 + ], + [ + 70.46717790135311, + 19.78636609675433 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 19.78636609675433 + ], + [ + 70.58202058483678, + 19.98101383168278 + ], + [ + 70.35233521786944, + 19.98101383168278 + ], + [ + 70.46717790135311, + 19.78636609675433 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 19.78636609675433 + ], + [ + 70.35233521786944, + 19.98101383168278 + ], + [ + 70.23749253438575, + 19.78636609675433 + ], + [ + 70.46717790135311, + 19.78636609675433 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 19.78636609675433 + ], + [ + 70.23749253438575, + 19.78636609675433 + ], + [ + 70.35233521786944, + 19.591718361825876 + ], + [ + 70.46717790135311, + 19.78636609675433 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 19.78636609675433 + ], + [ + 70.35233521786944, + 19.591718361825876 + ], + [ + 70.58202058483678, + 19.591718361825876 + ], + [ + 70.46717790135311, + 19.78636609675433 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 19.78636609675433 + ], + [ + 70.58202058483678, + 19.591718361825876 + ], + [ + 70.69686326832047, + 19.78636609675433 + ], + [ + 70.46717790135311, + 19.78636609675433 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 20.175661566611232 + ], + [ + 70.69686326832047, + 20.175661566611232 + ], + [ + 70.58202058483678, + 20.370309301539685 + ], + [ + 70.46717790135311, + 20.175661566611232 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 20.175661566611232 + ], + [ + 70.58202058483678, + 20.370309301539685 + ], + [ + 70.35233521786944, + 20.370309301539685 + ], + [ + 70.46717790135311, + 20.175661566611232 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 20.175661566611232 + ], + [ + 70.35233521786944, + 20.370309301539685 + ], + [ + 70.23749253438575, + 20.175661566611232 + ], + [ + 70.46717790135311, + 20.175661566611232 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 20.175661566611232 + ], + [ + 70.23749253438575, + 20.175661566611232 + ], + [ + 70.35233521786944, + 19.98101383168278 + ], + [ + 70.46717790135311, + 20.175661566611232 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 20.175661566611232 + ], + [ + 70.35233521786944, + 19.98101383168278 + ], + [ + 70.58202058483678, + 19.98101383168278 + ], + [ + 70.46717790135311, + 20.175661566611232 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 20.175661566611232 + ], + [ + 70.58202058483678, + 19.98101383168278 + ], + [ + 70.69686326832047, + 20.175661566611232 + ], + [ + 70.46717790135311, + 20.175661566611232 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 20.564957036468137 + ], + [ + 70.69686326832047, + 20.564957036468137 + ], + [ + 70.58202058483678, + 20.75960477139659 + ], + [ + 70.46717790135311, + 20.564957036468137 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 20.564957036468137 + ], + [ + 70.58202058483678, + 20.75960477139659 + ], + [ + 70.35233521786944, + 20.75960477139659 + ], + [ + 70.46717790135311, + 20.564957036468137 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 20.564957036468137 + ], + [ + 70.35233521786944, + 20.75960477139659 + ], + [ + 70.23749253438575, + 20.564957036468137 + ], + [ + 70.46717790135311, + 20.564957036468137 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 20.564957036468137 + ], + [ + 70.23749253438575, + 20.564957036468137 + ], + [ + 70.35233521786944, + 20.370309301539685 + ], + [ + 70.46717790135311, + 20.564957036468137 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 20.564957036468137 + ], + [ + 70.35233521786944, + 20.370309301539685 + ], + [ + 70.58202058483678, + 20.370309301539685 + ], + [ + 70.46717790135311, + 20.564957036468137 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 20.564957036468137 + ], + [ + 70.58202058483678, + 20.370309301539685 + ], + [ + 70.69686326832047, + 20.564957036468137 + ], + [ + 70.46717790135311, + 20.564957036468137 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 20.954252506325044 + ], + [ + 70.69686326832047, + 20.954252506325044 + ], + [ + 70.58202058483678, + 21.148900241253497 + ], + [ + 70.46717790135311, + 20.954252506325044 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 20.954252506325044 + ], + [ + 70.58202058483678, + 21.148900241253497 + ], + [ + 70.35233521786944, + 21.148900241253497 + ], + [ + 70.46717790135311, + 20.954252506325044 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 20.954252506325044 + ], + [ + 70.35233521786944, + 21.148900241253497 + ], + [ + 70.23749253438575, + 20.954252506325044 + ], + [ + 70.46717790135311, + 20.954252506325044 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 20.954252506325044 + ], + [ + 70.23749253438575, + 20.954252506325044 + ], + [ + 70.35233521786944, + 20.759604771396592 + ], + [ + 70.46717790135311, + 20.954252506325044 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 20.954252506325044 + ], + [ + 70.35233521786944, + 20.759604771396592 + ], + [ + 70.58202058483678, + 20.759604771396592 + ], + [ + 70.46717790135311, + 20.954252506325044 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 20.954252506325044 + ], + [ + 70.58202058483678, + 20.759604771396592 + ], + [ + 70.69686326832047, + 20.954252506325044 + ], + [ + 70.46717790135311, + 20.954252506325044 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 21.343547976181952 + ], + [ + 70.69686326832047, + 21.343547976181952 + ], + [ + 70.58202058483678, + 21.538195711110404 + ], + [ + 70.46717790135311, + 21.343547976181952 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 21.343547976181952 + ], + [ + 70.58202058483678, + 21.538195711110404 + ], + [ + 70.35233521786944, + 21.538195711110404 + ], + [ + 70.46717790135311, + 21.343547976181952 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 21.343547976181952 + ], + [ + 70.35233521786944, + 21.538195711110404 + ], + [ + 70.23749253438575, + 21.343547976181952 + ], + [ + 70.46717790135311, + 21.343547976181952 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 21.343547976181952 + ], + [ + 70.23749253438575, + 21.343547976181952 + ], + [ + 70.35233521786944, + 21.1489002412535 + ], + [ + 70.46717790135311, + 21.343547976181952 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 21.343547976181952 + ], + [ + 70.35233521786944, + 21.1489002412535 + ], + [ + 70.58202058483678, + 21.1489002412535 + ], + [ + 70.46717790135311, + 21.343547976181952 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 21.343547976181952 + ], + [ + 70.58202058483678, + 21.1489002412535 + ], + [ + 70.69686326832047, + 21.343547976181952 + ], + [ + 70.46717790135311, + 21.343547976181952 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 21.732843446038856 + ], + [ + 70.69686326832047, + 21.732843446038856 + ], + [ + 70.58202058483678, + 21.92749118096731 + ], + [ + 70.46717790135311, + 21.732843446038856 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 21.732843446038856 + ], + [ + 70.58202058483678, + 21.92749118096731 + ], + [ + 70.35233521786944, + 21.92749118096731 + ], + [ + 70.46717790135311, + 21.732843446038856 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 21.732843446038856 + ], + [ + 70.35233521786944, + 21.92749118096731 + ], + [ + 70.23749253438575, + 21.732843446038856 + ], + [ + 70.46717790135311, + 21.732843446038856 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 21.732843446038856 + ], + [ + 70.23749253438575, + 21.732843446038856 + ], + [ + 70.35233521786944, + 21.538195711110404 + ], + [ + 70.46717790135311, + 21.732843446038856 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 21.732843446038856 + ], + [ + 70.35233521786944, + 21.538195711110404 + ], + [ + 70.58202058483678, + 21.538195711110404 + ], + [ + 70.46717790135311, + 21.732843446038856 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 21.732843446038856 + ], + [ + 70.58202058483678, + 21.538195711110404 + ], + [ + 70.69686326832047, + 21.732843446038856 + ], + [ + 70.46717790135311, + 21.732843446038856 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 22.122138915895764 + ], + [ + 70.69686326832047, + 22.122138915895764 + ], + [ + 70.58202058483678, + 22.316786650824216 + ], + [ + 70.46717790135311, + 22.122138915895764 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 22.122138915895764 + ], + [ + 70.58202058483678, + 22.316786650824216 + ], + [ + 70.35233521786944, + 22.316786650824216 + ], + [ + 70.46717790135311, + 22.122138915895764 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 22.122138915895764 + ], + [ + 70.35233521786944, + 22.316786650824216 + ], + [ + 70.23749253438575, + 22.122138915895764 + ], + [ + 70.46717790135311, + 22.122138915895764 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 22.122138915895764 + ], + [ + 70.23749253438575, + 22.122138915895764 + ], + [ + 70.35233521786944, + 21.927491180967312 + ], + [ + 70.46717790135311, + 22.122138915895764 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 22.122138915895764 + ], + [ + 70.35233521786944, + 21.927491180967312 + ], + [ + 70.58202058483678, + 21.927491180967312 + ], + [ + 70.46717790135311, + 22.122138915895764 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 22.122138915895764 + ], + [ + 70.58202058483678, + 21.927491180967312 + ], + [ + 70.69686326832047, + 22.122138915895764 + ], + [ + 70.46717790135311, + 22.122138915895764 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 22.511434385752672 + ], + [ + 70.69686326832047, + 22.511434385752672 + ], + [ + 70.58202058483678, + 22.706082120681124 + ], + [ + 70.46717790135311, + 22.511434385752672 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 22.511434385752672 + ], + [ + 70.58202058483678, + 22.706082120681124 + ], + [ + 70.35233521786944, + 22.706082120681124 + ], + [ + 70.46717790135311, + 22.511434385752672 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 22.511434385752672 + ], + [ + 70.35233521786944, + 22.706082120681124 + ], + [ + 70.23749253438575, + 22.511434385752672 + ], + [ + 70.46717790135311, + 22.511434385752672 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 22.511434385752672 + ], + [ + 70.23749253438575, + 22.511434385752672 + ], + [ + 70.35233521786944, + 22.31678665082422 + ], + [ + 70.46717790135311, + 22.511434385752672 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 22.511434385752672 + ], + [ + 70.35233521786944, + 22.31678665082422 + ], + [ + 70.58202058483678, + 22.31678665082422 + ], + [ + 70.46717790135311, + 22.511434385752672 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 22.511434385752672 + ], + [ + 70.58202058483678, + 22.31678665082422 + ], + [ + 70.69686326832047, + 22.511434385752672 + ], + [ + 70.46717790135311, + 22.511434385752672 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 22.900729855609576 + ], + [ + 70.69686326832047, + 22.900729855609576 + ], + [ + 70.58202058483678, + 23.09537759053803 + ], + [ + 70.46717790135311, + 22.900729855609576 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 22.900729855609576 + ], + [ + 70.58202058483678, + 23.09537759053803 + ], + [ + 70.35233521786944, + 23.09537759053803 + ], + [ + 70.46717790135311, + 22.900729855609576 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 22.900729855609576 + ], + [ + 70.35233521786944, + 23.09537759053803 + ], + [ + 70.23749253438575, + 22.900729855609576 + ], + [ + 70.46717790135311, + 22.900729855609576 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 22.900729855609576 + ], + [ + 70.23749253438575, + 22.900729855609576 + ], + [ + 70.35233521786944, + 22.706082120681124 + ], + [ + 70.46717790135311, + 22.900729855609576 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 22.900729855609576 + ], + [ + 70.35233521786944, + 22.706082120681124 + ], + [ + 70.58202058483678, + 22.706082120681124 + ], + [ + 70.46717790135311, + 22.900729855609576 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 22.900729855609576 + ], + [ + 70.58202058483678, + 22.706082120681124 + ], + [ + 70.69686326832047, + 22.900729855609576 + ], + [ + 70.46717790135311, + 22.900729855609576 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 23.290025325466484 + ], + [ + 70.69686326832047, + 23.290025325466484 + ], + [ + 70.58202058483678, + 23.484673060394936 + ], + [ + 70.46717790135311, + 23.290025325466484 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 23.290025325466484 + ], + [ + 70.58202058483678, + 23.484673060394936 + ], + [ + 70.35233521786944, + 23.484673060394936 + ], + [ + 70.46717790135311, + 23.290025325466484 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 23.290025325466484 + ], + [ + 70.35233521786944, + 23.484673060394936 + ], + [ + 70.23749253438575, + 23.290025325466484 + ], + [ + 70.46717790135311, + 23.290025325466484 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 23.290025325466484 + ], + [ + 70.23749253438575, + 23.290025325466484 + ], + [ + 70.35233521786944, + 23.095377590538032 + ], + [ + 70.46717790135311, + 23.290025325466484 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 23.290025325466484 + ], + [ + 70.35233521786944, + 23.095377590538032 + ], + [ + 70.58202058483678, + 23.095377590538032 + ], + [ + 70.46717790135311, + 23.290025325466484 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 23.290025325466484 + ], + [ + 70.58202058483678, + 23.095377590538032 + ], + [ + 70.69686326832047, + 23.290025325466484 + ], + [ + 70.46717790135311, + 23.290025325466484 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 23.67932079532339 + ], + [ + 70.69686326832047, + 23.67932079532339 + ], + [ + 70.58202058483678, + 23.873968530251844 + ], + [ + 70.46717790135311, + 23.67932079532339 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 23.67932079532339 + ], + [ + 70.58202058483678, + 23.873968530251844 + ], + [ + 70.35233521786944, + 23.873968530251844 + ], + [ + 70.46717790135311, + 23.67932079532339 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 23.67932079532339 + ], + [ + 70.35233521786944, + 23.873968530251844 + ], + [ + 70.23749253438575, + 23.67932079532339 + ], + [ + 70.46717790135311, + 23.67932079532339 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 23.67932079532339 + ], + [ + 70.23749253438575, + 23.67932079532339 + ], + [ + 70.35233521786944, + 23.48467306039494 + ], + [ + 70.46717790135311, + 23.67932079532339 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 23.67932079532339 + ], + [ + 70.35233521786944, + 23.48467306039494 + ], + [ + 70.58202058483678, + 23.48467306039494 + ], + [ + 70.46717790135311, + 23.67932079532339 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 23.67932079532339 + ], + [ + 70.58202058483678, + 23.48467306039494 + ], + [ + 70.69686326832047, + 23.67932079532339 + ], + [ + 70.46717790135311, + 23.67932079532339 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 24.068616265180296 + ], + [ + 70.69686326832047, + 24.068616265180296 + ], + [ + 70.58202058483678, + 24.263264000108748 + ], + [ + 70.46717790135311, + 24.068616265180296 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 24.068616265180296 + ], + [ + 70.58202058483678, + 24.263264000108748 + ], + [ + 70.35233521786944, + 24.263264000108748 + ], + [ + 70.46717790135311, + 24.068616265180296 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 24.068616265180296 + ], + [ + 70.35233521786944, + 24.263264000108748 + ], + [ + 70.23749253438575, + 24.068616265180296 + ], + [ + 70.46717790135311, + 24.068616265180296 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 24.068616265180296 + ], + [ + 70.23749253438575, + 24.068616265180296 + ], + [ + 70.35233521786944, + 23.873968530251844 + ], + [ + 70.46717790135311, + 24.068616265180296 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 24.068616265180296 + ], + [ + 70.35233521786944, + 23.873968530251844 + ], + [ + 70.58202058483678, + 23.873968530251844 + ], + [ + 70.46717790135311, + 24.068616265180296 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 24.068616265180296 + ], + [ + 70.58202058483678, + 23.873968530251844 + ], + [ + 70.69686326832047, + 24.068616265180296 + ], + [ + 70.46717790135311, + 24.068616265180296 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 24.4579117350372 + ], + [ + 70.69686326832047, + 24.4579117350372 + ], + [ + 70.58202058483678, + 24.652559469965652 + ], + [ + 70.46717790135311, + 24.4579117350372 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 24.4579117350372 + ], + [ + 70.58202058483678, + 24.652559469965652 + ], + [ + 70.35233521786944, + 24.652559469965652 + ], + [ + 70.46717790135311, + 24.4579117350372 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 24.4579117350372 + ], + [ + 70.35233521786944, + 24.652559469965652 + ], + [ + 70.23749253438575, + 24.4579117350372 + ], + [ + 70.46717790135311, + 24.4579117350372 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 24.4579117350372 + ], + [ + 70.23749253438575, + 24.4579117350372 + ], + [ + 70.35233521786944, + 24.263264000108748 + ], + [ + 70.46717790135311, + 24.4579117350372 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 24.4579117350372 + ], + [ + 70.35233521786944, + 24.263264000108748 + ], + [ + 70.58202058483678, + 24.263264000108748 + ], + [ + 70.46717790135311, + 24.4579117350372 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 24.4579117350372 + ], + [ + 70.58202058483678, + 24.263264000108748 + ], + [ + 70.69686326832047, + 24.4579117350372 + ], + [ + 70.46717790135311, + 24.4579117350372 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 24.847207204894108 + ], + [ + 70.69686326832047, + 24.847207204894108 + ], + [ + 70.58202058483678, + 25.04185493982256 + ], + [ + 70.46717790135311, + 24.847207204894108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 24.847207204894108 + ], + [ + 70.58202058483678, + 25.04185493982256 + ], + [ + 70.35233521786944, + 25.04185493982256 + ], + [ + 70.46717790135311, + 24.847207204894108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 24.847207204894108 + ], + [ + 70.35233521786944, + 25.04185493982256 + ], + [ + 70.23749253438575, + 24.847207204894108 + ], + [ + 70.46717790135311, + 24.847207204894108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 24.847207204894108 + ], + [ + 70.23749253438575, + 24.847207204894108 + ], + [ + 70.35233521786944, + 24.652559469965656 + ], + [ + 70.46717790135311, + 24.847207204894108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 24.847207204894108 + ], + [ + 70.35233521786944, + 24.652559469965656 + ], + [ + 70.58202058483678, + 24.652559469965656 + ], + [ + 70.46717790135311, + 24.847207204894108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 24.847207204894108 + ], + [ + 70.58202058483678, + 24.652559469965656 + ], + [ + 70.69686326832047, + 24.847207204894108 + ], + [ + 70.46717790135311, + 24.847207204894108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 25.236502674751016 + ], + [ + 70.69686326832047, + 25.236502674751016 + ], + [ + 70.58202058483678, + 25.431150409679468 + ], + [ + 70.46717790135311, + 25.236502674751016 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 25.236502674751016 + ], + [ + 70.58202058483678, + 25.431150409679468 + ], + [ + 70.35233521786944, + 25.431150409679468 + ], + [ + 70.46717790135311, + 25.236502674751016 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 25.236502674751016 + ], + [ + 70.35233521786944, + 25.431150409679468 + ], + [ + 70.23749253438575, + 25.236502674751016 + ], + [ + 70.46717790135311, + 25.236502674751016 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 25.236502674751016 + ], + [ + 70.23749253438575, + 25.236502674751016 + ], + [ + 70.35233521786944, + 25.041854939822564 + ], + [ + 70.46717790135311, + 25.236502674751016 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 25.236502674751016 + ], + [ + 70.35233521786944, + 25.041854939822564 + ], + [ + 70.58202058483678, + 25.041854939822564 + ], + [ + 70.46717790135311, + 25.236502674751016 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 25.236502674751016 + ], + [ + 70.58202058483678, + 25.041854939822564 + ], + [ + 70.69686326832047, + 25.236502674751016 + ], + [ + 70.46717790135311, + 25.236502674751016 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 25.62579814460792 + ], + [ + 70.69686326832047, + 25.62579814460792 + ], + [ + 70.58202058483678, + 25.820445879536372 + ], + [ + 70.46717790135311, + 25.62579814460792 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 25.62579814460792 + ], + [ + 70.58202058483678, + 25.820445879536372 + ], + [ + 70.35233521786944, + 25.820445879536372 + ], + [ + 70.46717790135311, + 25.62579814460792 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 25.62579814460792 + ], + [ + 70.35233521786944, + 25.820445879536372 + ], + [ + 70.23749253438575, + 25.62579814460792 + ], + [ + 70.46717790135311, + 25.62579814460792 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 25.62579814460792 + ], + [ + 70.23749253438575, + 25.62579814460792 + ], + [ + 70.35233521786944, + 25.431150409679468 + ], + [ + 70.46717790135311, + 25.62579814460792 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 25.62579814460792 + ], + [ + 70.35233521786944, + 25.431150409679468 + ], + [ + 70.58202058483678, + 25.431150409679468 + ], + [ + 70.46717790135311, + 25.62579814460792 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 25.62579814460792 + ], + [ + 70.58202058483678, + 25.431150409679468 + ], + [ + 70.69686326832047, + 25.62579814460792 + ], + [ + 70.46717790135311, + 25.62579814460792 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 26.015093614464828 + ], + [ + 70.69686326832047, + 26.015093614464828 + ], + [ + 70.58202058483678, + 26.20974134939328 + ], + [ + 70.46717790135311, + 26.015093614464828 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 26.015093614464828 + ], + [ + 70.58202058483678, + 26.20974134939328 + ], + [ + 70.35233521786944, + 26.20974134939328 + ], + [ + 70.46717790135311, + 26.015093614464828 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 26.015093614464828 + ], + [ + 70.35233521786944, + 26.20974134939328 + ], + [ + 70.23749253438575, + 26.015093614464828 + ], + [ + 70.46717790135311, + 26.015093614464828 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 26.015093614464828 + ], + [ + 70.23749253438575, + 26.015093614464828 + ], + [ + 70.35233521786944, + 25.820445879536376 + ], + [ + 70.46717790135311, + 26.015093614464828 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 26.015093614464828 + ], + [ + 70.35233521786944, + 25.820445879536376 + ], + [ + 70.58202058483678, + 25.820445879536376 + ], + [ + 70.46717790135311, + 26.015093614464828 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 26.015093614464828 + ], + [ + 70.58202058483678, + 25.820445879536376 + ], + [ + 70.69686326832047, + 26.015093614464828 + ], + [ + 70.46717790135311, + 26.015093614464828 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 26.404389084321735 + ], + [ + 70.69686326832047, + 26.404389084321735 + ], + [ + 70.58202058483678, + 26.599036819250188 + ], + [ + 70.46717790135311, + 26.404389084321735 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 26.404389084321735 + ], + [ + 70.58202058483678, + 26.599036819250188 + ], + [ + 70.35233521786944, + 26.599036819250188 + ], + [ + 70.46717790135311, + 26.404389084321735 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 26.404389084321735 + ], + [ + 70.35233521786944, + 26.599036819250188 + ], + [ + 70.23749253438575, + 26.404389084321735 + ], + [ + 70.46717790135311, + 26.404389084321735 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 26.404389084321735 + ], + [ + 70.23749253438575, + 26.404389084321735 + ], + [ + 70.35233521786944, + 26.209741349393283 + ], + [ + 70.46717790135311, + 26.404389084321735 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 26.404389084321735 + ], + [ + 70.35233521786944, + 26.209741349393283 + ], + [ + 70.58202058483678, + 26.209741349393283 + ], + [ + 70.46717790135311, + 26.404389084321735 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 26.404389084321735 + ], + [ + 70.58202058483678, + 26.209741349393283 + ], + [ + 70.69686326832047, + 26.404389084321735 + ], + [ + 70.46717790135311, + 26.404389084321735 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 26.79368455417864 + ], + [ + 70.69686326832047, + 26.79368455417864 + ], + [ + 70.58202058483678, + 26.988332289107092 + ], + [ + 70.46717790135311, + 26.79368455417864 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 26.79368455417864 + ], + [ + 70.58202058483678, + 26.988332289107092 + ], + [ + 70.35233521786944, + 26.988332289107092 + ], + [ + 70.46717790135311, + 26.79368455417864 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 26.79368455417864 + ], + [ + 70.35233521786944, + 26.988332289107092 + ], + [ + 70.23749253438575, + 26.79368455417864 + ], + [ + 70.46717790135311, + 26.79368455417864 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 26.79368455417864 + ], + [ + 70.23749253438575, + 26.79368455417864 + ], + [ + 70.35233521786944, + 26.599036819250188 + ], + [ + 70.46717790135311, + 26.79368455417864 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 26.79368455417864 + ], + [ + 70.35233521786944, + 26.599036819250188 + ], + [ + 70.58202058483678, + 26.599036819250188 + ], + [ + 70.46717790135311, + 26.79368455417864 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 26.79368455417864 + ], + [ + 70.58202058483678, + 26.599036819250188 + ], + [ + 70.69686326832047, + 26.79368455417864 + ], + [ + 70.46717790135311, + 26.79368455417864 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 27.182980024035547 + ], + [ + 70.69686326832047, + 27.182980024035547 + ], + [ + 70.58202058483678, + 27.377627758964 + ], + [ + 70.46717790135311, + 27.182980024035547 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 27.182980024035547 + ], + [ + 70.58202058483678, + 27.377627758964 + ], + [ + 70.35233521786944, + 27.377627758964 + ], + [ + 70.46717790135311, + 27.182980024035547 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 27.182980024035547 + ], + [ + 70.35233521786944, + 27.377627758964 + ], + [ + 70.23749253438575, + 27.182980024035547 + ], + [ + 70.46717790135311, + 27.182980024035547 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 27.182980024035547 + ], + [ + 70.23749253438575, + 27.182980024035547 + ], + [ + 70.35233521786944, + 26.988332289107095 + ], + [ + 70.46717790135311, + 27.182980024035547 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 27.182980024035547 + ], + [ + 70.35233521786944, + 26.988332289107095 + ], + [ + 70.58202058483678, + 26.988332289107095 + ], + [ + 70.46717790135311, + 27.182980024035547 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 27.182980024035547 + ], + [ + 70.58202058483678, + 26.988332289107095 + ], + [ + 70.69686326832047, + 27.182980024035547 + ], + [ + 70.46717790135311, + 27.182980024035547 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 27.572275493892455 + ], + [ + 70.69686326832047, + 27.572275493892455 + ], + [ + 70.58202058483678, + 27.766923228820907 + ], + [ + 70.46717790135311, + 27.572275493892455 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 27.572275493892455 + ], + [ + 70.58202058483678, + 27.766923228820907 + ], + [ + 70.35233521786944, + 27.766923228820907 + ], + [ + 70.46717790135311, + 27.572275493892455 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 27.572275493892455 + ], + [ + 70.35233521786944, + 27.766923228820907 + ], + [ + 70.23749253438575, + 27.572275493892455 + ], + [ + 70.46717790135311, + 27.572275493892455 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 27.572275493892455 + ], + [ + 70.23749253438575, + 27.572275493892455 + ], + [ + 70.35233521786944, + 27.377627758964003 + ], + [ + 70.46717790135311, + 27.572275493892455 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 27.572275493892455 + ], + [ + 70.35233521786944, + 27.377627758964003 + ], + [ + 70.58202058483678, + 27.377627758964003 + ], + [ + 70.46717790135311, + 27.572275493892455 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 27.572275493892455 + ], + [ + 70.58202058483678, + 27.377627758964003 + ], + [ + 70.69686326832047, + 27.572275493892455 + ], + [ + 70.46717790135311, + 27.572275493892455 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 27.96157096374936 + ], + [ + 70.69686326832047, + 27.96157096374936 + ], + [ + 70.58202058483678, + 28.15621869867781 + ], + [ + 70.46717790135311, + 27.96157096374936 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 27.96157096374936 + ], + [ + 70.58202058483678, + 28.15621869867781 + ], + [ + 70.35233521786944, + 28.15621869867781 + ], + [ + 70.46717790135311, + 27.96157096374936 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 27.96157096374936 + ], + [ + 70.35233521786944, + 28.15621869867781 + ], + [ + 70.23749253438575, + 27.96157096374936 + ], + [ + 70.46717790135311, + 27.96157096374936 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 27.96157096374936 + ], + [ + 70.23749253438575, + 27.96157096374936 + ], + [ + 70.35233521786944, + 27.766923228820907 + ], + [ + 70.46717790135311, + 27.96157096374936 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 27.96157096374936 + ], + [ + 70.35233521786944, + 27.766923228820907 + ], + [ + 70.58202058483678, + 27.766923228820907 + ], + [ + 70.46717790135311, + 27.96157096374936 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 27.96157096374936 + ], + [ + 70.58202058483678, + 27.766923228820907 + ], + [ + 70.69686326832047, + 27.96157096374936 + ], + [ + 70.46717790135311, + 27.96157096374936 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 28.350866433606267 + ], + [ + 70.69686326832047, + 28.350866433606267 + ], + [ + 70.58202058483678, + 28.54551416853472 + ], + [ + 70.46717790135311, + 28.350866433606267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 28.350866433606267 + ], + [ + 70.58202058483678, + 28.54551416853472 + ], + [ + 70.35233521786944, + 28.54551416853472 + ], + [ + 70.46717790135311, + 28.350866433606267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 28.350866433606267 + ], + [ + 70.35233521786944, + 28.54551416853472 + ], + [ + 70.23749253438575, + 28.350866433606267 + ], + [ + 70.46717790135311, + 28.350866433606267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 28.350866433606267 + ], + [ + 70.23749253438575, + 28.350866433606267 + ], + [ + 70.35233521786944, + 28.156218698677815 + ], + [ + 70.46717790135311, + 28.350866433606267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 28.350866433606267 + ], + [ + 70.35233521786944, + 28.156218698677815 + ], + [ + 70.58202058483678, + 28.156218698677815 + ], + [ + 70.46717790135311, + 28.350866433606267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 28.350866433606267 + ], + [ + 70.58202058483678, + 28.156218698677815 + ], + [ + 70.69686326832047, + 28.350866433606267 + ], + [ + 70.46717790135311, + 28.350866433606267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 28.74016190346317 + ], + [ + 70.69686326832047, + 28.74016190346317 + ], + [ + 70.58202058483678, + 28.934809638391624 + ], + [ + 70.46717790135311, + 28.74016190346317 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 28.74016190346317 + ], + [ + 70.58202058483678, + 28.934809638391624 + ], + [ + 70.35233521786944, + 28.934809638391624 + ], + [ + 70.46717790135311, + 28.74016190346317 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 28.74016190346317 + ], + [ + 70.35233521786944, + 28.934809638391624 + ], + [ + 70.23749253438575, + 28.74016190346317 + ], + [ + 70.46717790135311, + 28.74016190346317 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 28.74016190346317 + ], + [ + 70.23749253438575, + 28.74016190346317 + ], + [ + 70.35233521786944, + 28.54551416853472 + ], + [ + 70.46717790135311, + 28.74016190346317 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 28.74016190346317 + ], + [ + 70.35233521786944, + 28.54551416853472 + ], + [ + 70.58202058483678, + 28.54551416853472 + ], + [ + 70.46717790135311, + 28.74016190346317 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 28.74016190346317 + ], + [ + 70.58202058483678, + 28.54551416853472 + ], + [ + 70.69686326832047, + 28.74016190346317 + ], + [ + 70.46717790135311, + 28.74016190346317 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 29.12945737332008 + ], + [ + 70.69686326832047, + 29.12945737332008 + ], + [ + 70.58202058483678, + 29.32410510824853 + ], + [ + 70.46717790135311, + 29.12945737332008 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 29.12945737332008 + ], + [ + 70.58202058483678, + 29.32410510824853 + ], + [ + 70.35233521786944, + 29.32410510824853 + ], + [ + 70.46717790135311, + 29.12945737332008 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 29.12945737332008 + ], + [ + 70.35233521786944, + 29.32410510824853 + ], + [ + 70.23749253438575, + 29.12945737332008 + ], + [ + 70.46717790135311, + 29.12945737332008 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 29.12945737332008 + ], + [ + 70.23749253438575, + 29.12945737332008 + ], + [ + 70.35233521786944, + 28.934809638391627 + ], + [ + 70.46717790135311, + 29.12945737332008 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 29.12945737332008 + ], + [ + 70.35233521786944, + 28.934809638391627 + ], + [ + 70.58202058483678, + 28.934809638391627 + ], + [ + 70.46717790135311, + 29.12945737332008 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 29.12945737332008 + ], + [ + 70.58202058483678, + 28.934809638391627 + ], + [ + 70.69686326832047, + 29.12945737332008 + ], + [ + 70.46717790135311, + 29.12945737332008 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 29.518752843176983 + ], + [ + 70.69686326832047, + 29.518752843176983 + ], + [ + 70.58202058483678, + 29.713400578105436 + ], + [ + 70.46717790135311, + 29.518752843176983 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 29.518752843176983 + ], + [ + 70.58202058483678, + 29.713400578105436 + ], + [ + 70.35233521786944, + 29.713400578105436 + ], + [ + 70.46717790135311, + 29.518752843176983 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 29.518752843176983 + ], + [ + 70.35233521786944, + 29.713400578105436 + ], + [ + 70.23749253438575, + 29.518752843176983 + ], + [ + 70.46717790135311, + 29.518752843176983 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 29.518752843176983 + ], + [ + 70.23749253438575, + 29.518752843176983 + ], + [ + 70.35233521786944, + 29.32410510824853 + ], + [ + 70.46717790135311, + 29.518752843176983 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 29.518752843176983 + ], + [ + 70.35233521786944, + 29.32410510824853 + ], + [ + 70.58202058483678, + 29.32410510824853 + ], + [ + 70.46717790135311, + 29.518752843176983 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 29.518752843176983 + ], + [ + 70.58202058483678, + 29.32410510824853 + ], + [ + 70.69686326832047, + 29.518752843176983 + ], + [ + 70.46717790135311, + 29.518752843176983 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 29.90804831303389 + ], + [ + 70.69686326832047, + 29.90804831303389 + ], + [ + 70.58202058483678, + 30.102696047962343 + ], + [ + 70.46717790135311, + 29.90804831303389 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 29.90804831303389 + ], + [ + 70.58202058483678, + 30.102696047962343 + ], + [ + 70.35233521786944, + 30.102696047962343 + ], + [ + 70.46717790135311, + 29.90804831303389 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 29.90804831303389 + ], + [ + 70.35233521786944, + 30.102696047962343 + ], + [ + 70.23749253438575, + 29.90804831303389 + ], + [ + 70.46717790135311, + 29.90804831303389 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 29.90804831303389 + ], + [ + 70.23749253438575, + 29.90804831303389 + ], + [ + 70.35233521786944, + 29.71340057810544 + ], + [ + 70.46717790135311, + 29.90804831303389 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 29.90804831303389 + ], + [ + 70.35233521786944, + 29.71340057810544 + ], + [ + 70.58202058483678, + 29.71340057810544 + ], + [ + 70.46717790135311, + 29.90804831303389 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 29.90804831303389 + ], + [ + 70.58202058483678, + 29.71340057810544 + ], + [ + 70.69686326832047, + 29.90804831303389 + ], + [ + 70.46717790135311, + 29.90804831303389 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 30.297343782890795 + ], + [ + 70.69686326832047, + 30.297343782890795 + ], + [ + 70.58202058483678, + 30.491991517819248 + ], + [ + 70.46717790135311, + 30.297343782890795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 30.297343782890795 + ], + [ + 70.58202058483678, + 30.491991517819248 + ], + [ + 70.35233521786944, + 30.491991517819248 + ], + [ + 70.46717790135311, + 30.297343782890795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 30.297343782890795 + ], + [ + 70.35233521786944, + 30.491991517819248 + ], + [ + 70.23749253438575, + 30.297343782890795 + ], + [ + 70.46717790135311, + 30.297343782890795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 30.297343782890795 + ], + [ + 70.23749253438575, + 30.297343782890795 + ], + [ + 70.35233521786944, + 30.102696047962343 + ], + [ + 70.46717790135311, + 30.297343782890795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 30.297343782890795 + ], + [ + 70.35233521786944, + 30.102696047962343 + ], + [ + 70.58202058483678, + 30.102696047962343 + ], + [ + 70.46717790135311, + 30.297343782890795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 30.297343782890795 + ], + [ + 70.58202058483678, + 30.102696047962343 + ], + [ + 70.69686326832047, + 30.297343782890795 + ], + [ + 70.46717790135311, + 30.297343782890795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 30.686639252747703 + ], + [ + 70.69686326832047, + 30.686639252747703 + ], + [ + 70.58202058483678, + 30.881286987676155 + ], + [ + 70.46717790135311, + 30.686639252747703 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 30.686639252747703 + ], + [ + 70.58202058483678, + 30.881286987676155 + ], + [ + 70.35233521786944, + 30.881286987676155 + ], + [ + 70.46717790135311, + 30.686639252747703 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 30.686639252747703 + ], + [ + 70.35233521786944, + 30.881286987676155 + ], + [ + 70.23749253438575, + 30.686639252747703 + ], + [ + 70.46717790135311, + 30.686639252747703 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 30.686639252747703 + ], + [ + 70.23749253438575, + 30.686639252747703 + ], + [ + 70.35233521786944, + 30.49199151781925 + ], + [ + 70.46717790135311, + 30.686639252747703 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 30.686639252747703 + ], + [ + 70.35233521786944, + 30.49199151781925 + ], + [ + 70.58202058483678, + 30.49199151781925 + ], + [ + 70.46717790135311, + 30.686639252747703 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 30.686639252747703 + ], + [ + 70.58202058483678, + 30.49199151781925 + ], + [ + 70.69686326832047, + 30.686639252747703 + ], + [ + 70.46717790135311, + 30.686639252747703 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 31.07593472260461 + ], + [ + 70.69686326832047, + 31.07593472260461 + ], + [ + 70.58202058483678, + 31.270582457533063 + ], + [ + 70.46717790135311, + 31.07593472260461 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 31.07593472260461 + ], + [ + 70.58202058483678, + 31.270582457533063 + ], + [ + 70.35233521786944, + 31.270582457533063 + ], + [ + 70.46717790135311, + 31.07593472260461 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 31.07593472260461 + ], + [ + 70.35233521786944, + 31.270582457533063 + ], + [ + 70.23749253438575, + 31.07593472260461 + ], + [ + 70.46717790135311, + 31.07593472260461 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 31.07593472260461 + ], + [ + 70.23749253438575, + 31.07593472260461 + ], + [ + 70.35233521786944, + 30.88128698767616 + ], + [ + 70.46717790135311, + 31.07593472260461 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 31.07593472260461 + ], + [ + 70.35233521786944, + 30.88128698767616 + ], + [ + 70.58202058483678, + 30.88128698767616 + ], + [ + 70.46717790135311, + 31.07593472260461 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 31.07593472260461 + ], + [ + 70.58202058483678, + 30.88128698767616 + ], + [ + 70.69686326832047, + 31.07593472260461 + ], + [ + 70.46717790135311, + 31.07593472260461 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 31.465230192461515 + ], + [ + 70.69686326832047, + 31.465230192461515 + ], + [ + 70.58202058483678, + 31.659877927389967 + ], + [ + 70.46717790135311, + 31.465230192461515 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 31.465230192461515 + ], + [ + 70.58202058483678, + 31.659877927389967 + ], + [ + 70.35233521786944, + 31.659877927389967 + ], + [ + 70.46717790135311, + 31.465230192461515 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 31.465230192461515 + ], + [ + 70.35233521786944, + 31.659877927389967 + ], + [ + 70.23749253438575, + 31.465230192461515 + ], + [ + 70.46717790135311, + 31.465230192461515 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 31.465230192461515 + ], + [ + 70.23749253438575, + 31.465230192461515 + ], + [ + 70.35233521786944, + 31.270582457533063 + ], + [ + 70.46717790135311, + 31.465230192461515 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 31.465230192461515 + ], + [ + 70.35233521786944, + 31.270582457533063 + ], + [ + 70.58202058483678, + 31.270582457533063 + ], + [ + 70.46717790135311, + 31.465230192461515 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 31.465230192461515 + ], + [ + 70.58202058483678, + 31.270582457533063 + ], + [ + 70.69686326832047, + 31.465230192461515 + ], + [ + 70.46717790135311, + 31.465230192461515 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 31.854525662318423 + ], + [ + 70.69686326832047, + 31.854525662318423 + ], + [ + 70.58202058483678, + 32.049173397246875 + ], + [ + 70.46717790135311, + 31.854525662318423 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 31.854525662318423 + ], + [ + 70.58202058483678, + 32.049173397246875 + ], + [ + 70.35233521786944, + 32.049173397246875 + ], + [ + 70.46717790135311, + 31.854525662318423 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 31.854525662318423 + ], + [ + 70.35233521786944, + 32.049173397246875 + ], + [ + 70.23749253438575, + 31.854525662318423 + ], + [ + 70.46717790135311, + 31.854525662318423 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 31.854525662318423 + ], + [ + 70.23749253438575, + 31.854525662318423 + ], + [ + 70.35233521786944, + 31.65987792738997 + ], + [ + 70.46717790135311, + 31.854525662318423 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 31.854525662318423 + ], + [ + 70.35233521786944, + 31.65987792738997 + ], + [ + 70.58202058483678, + 31.65987792738997 + ], + [ + 70.46717790135311, + 31.854525662318423 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 31.854525662318423 + ], + [ + 70.58202058483678, + 31.65987792738997 + ], + [ + 70.69686326832047, + 31.854525662318423 + ], + [ + 70.46717790135311, + 31.854525662318423 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 32.24382113217533 + ], + [ + 70.69686326832047, + 32.24382113217533 + ], + [ + 70.58202058483678, + 32.43846886710378 + ], + [ + 70.46717790135311, + 32.24382113217533 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 32.24382113217533 + ], + [ + 70.58202058483678, + 32.43846886710378 + ], + [ + 70.35233521786944, + 32.43846886710378 + ], + [ + 70.46717790135311, + 32.24382113217533 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 32.24382113217533 + ], + [ + 70.35233521786944, + 32.43846886710378 + ], + [ + 70.23749253438575, + 32.24382113217533 + ], + [ + 70.46717790135311, + 32.24382113217533 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 32.24382113217533 + ], + [ + 70.23749253438575, + 32.24382113217533 + ], + [ + 70.35233521786944, + 32.049173397246875 + ], + [ + 70.46717790135311, + 32.24382113217533 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 32.24382113217533 + ], + [ + 70.35233521786944, + 32.049173397246875 + ], + [ + 70.58202058483678, + 32.049173397246875 + ], + [ + 70.46717790135311, + 32.24382113217533 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 32.24382113217533 + ], + [ + 70.58202058483678, + 32.049173397246875 + ], + [ + 70.69686326832047, + 32.24382113217533 + ], + [ + 70.46717790135311, + 32.24382113217533 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 32.63311660203224 + ], + [ + 70.69686326832047, + 32.63311660203224 + ], + [ + 70.58202058483678, + 32.82776433696069 + ], + [ + 70.46717790135311, + 32.63311660203224 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 32.63311660203224 + ], + [ + 70.58202058483678, + 32.82776433696069 + ], + [ + 70.35233521786944, + 32.82776433696069 + ], + [ + 70.46717790135311, + 32.63311660203224 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 32.63311660203224 + ], + [ + 70.35233521786944, + 32.82776433696069 + ], + [ + 70.23749253438575, + 32.63311660203224 + ], + [ + 70.46717790135311, + 32.63311660203224 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 32.63311660203224 + ], + [ + 70.23749253438575, + 32.63311660203224 + ], + [ + 70.35233521786944, + 32.438468867103786 + ], + [ + 70.46717790135311, + 32.63311660203224 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 32.63311660203224 + ], + [ + 70.35233521786944, + 32.438468867103786 + ], + [ + 70.58202058483678, + 32.438468867103786 + ], + [ + 70.46717790135311, + 32.63311660203224 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 32.63311660203224 + ], + [ + 70.58202058483678, + 32.438468867103786 + ], + [ + 70.69686326832047, + 32.63311660203224 + ], + [ + 70.46717790135311, + 32.63311660203224 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 33.02241207188914 + ], + [ + 70.69686326832047, + 33.02241207188914 + ], + [ + 70.58202058483678, + 33.217059806817595 + ], + [ + 70.46717790135311, + 33.02241207188914 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 33.02241207188914 + ], + [ + 70.58202058483678, + 33.217059806817595 + ], + [ + 70.35233521786944, + 33.217059806817595 + ], + [ + 70.46717790135311, + 33.02241207188914 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 33.02241207188914 + ], + [ + 70.35233521786944, + 33.217059806817595 + ], + [ + 70.23749253438575, + 33.02241207188914 + ], + [ + 70.46717790135311, + 33.02241207188914 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 33.02241207188914 + ], + [ + 70.23749253438575, + 33.02241207188914 + ], + [ + 70.35233521786944, + 32.82776433696069 + ], + [ + 70.46717790135311, + 33.02241207188914 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 33.02241207188914 + ], + [ + 70.35233521786944, + 32.82776433696069 + ], + [ + 70.58202058483678, + 32.82776433696069 + ], + [ + 70.46717790135311, + 33.02241207188914 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 33.02241207188914 + ], + [ + 70.58202058483678, + 32.82776433696069 + ], + [ + 70.69686326832047, + 33.02241207188914 + ], + [ + 70.46717790135311, + 33.02241207188914 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 33.41170754174605 + ], + [ + 70.69686326832047, + 33.41170754174605 + ], + [ + 70.58202058483678, + 33.6063552766745 + ], + [ + 70.46717790135311, + 33.41170754174605 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 33.41170754174605 + ], + [ + 70.58202058483678, + 33.6063552766745 + ], + [ + 70.35233521786944, + 33.6063552766745 + ], + [ + 70.46717790135311, + 33.41170754174605 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 33.41170754174605 + ], + [ + 70.35233521786944, + 33.6063552766745 + ], + [ + 70.23749253438575, + 33.41170754174605 + ], + [ + 70.46717790135311, + 33.41170754174605 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 33.41170754174605 + ], + [ + 70.23749253438575, + 33.41170754174605 + ], + [ + 70.35233521786944, + 33.217059806817595 + ], + [ + 70.46717790135311, + 33.41170754174605 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 33.41170754174605 + ], + [ + 70.35233521786944, + 33.217059806817595 + ], + [ + 70.58202058483678, + 33.217059806817595 + ], + [ + 70.46717790135311, + 33.41170754174605 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 33.41170754174605 + ], + [ + 70.58202058483678, + 33.217059806817595 + ], + [ + 70.69686326832047, + 33.41170754174605 + ], + [ + 70.46717790135311, + 33.41170754174605 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 33.80100301160295 + ], + [ + 70.69686326832047, + 33.80100301160295 + ], + [ + 70.58202058483678, + 33.9956507465314 + ], + [ + 70.46717790135311, + 33.80100301160295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 33.80100301160295 + ], + [ + 70.58202058483678, + 33.9956507465314 + ], + [ + 70.35233521786944, + 33.9956507465314 + ], + [ + 70.46717790135311, + 33.80100301160295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 33.80100301160295 + ], + [ + 70.35233521786944, + 33.9956507465314 + ], + [ + 70.23749253438575, + 33.80100301160295 + ], + [ + 70.46717790135311, + 33.80100301160295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 33.80100301160295 + ], + [ + 70.23749253438575, + 33.80100301160295 + ], + [ + 70.35233521786944, + 33.6063552766745 + ], + [ + 70.46717790135311, + 33.80100301160295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 33.80100301160295 + ], + [ + 70.35233521786944, + 33.6063552766745 + ], + [ + 70.58202058483678, + 33.6063552766745 + ], + [ + 70.46717790135311, + 33.80100301160295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 33.80100301160295 + ], + [ + 70.58202058483678, + 33.6063552766745 + ], + [ + 70.69686326832047, + 33.80100301160295 + ], + [ + 70.46717790135311, + 33.80100301160295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 34.190298481459855 + ], + [ + 70.69686326832047, + 34.190298481459855 + ], + [ + 70.58202058483678, + 34.38494621638831 + ], + [ + 70.46717790135311, + 34.190298481459855 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 34.190298481459855 + ], + [ + 70.58202058483678, + 34.38494621638831 + ], + [ + 70.35233521786944, + 34.38494621638831 + ], + [ + 70.46717790135311, + 34.190298481459855 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 34.190298481459855 + ], + [ + 70.35233521786944, + 34.38494621638831 + ], + [ + 70.23749253438575, + 34.190298481459855 + ], + [ + 70.46717790135311, + 34.190298481459855 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 34.190298481459855 + ], + [ + 70.23749253438575, + 34.190298481459855 + ], + [ + 70.35233521786944, + 33.9956507465314 + ], + [ + 70.46717790135311, + 34.190298481459855 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 34.190298481459855 + ], + [ + 70.35233521786944, + 33.9956507465314 + ], + [ + 70.58202058483678, + 33.9956507465314 + ], + [ + 70.46717790135311, + 34.190298481459855 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 34.190298481459855 + ], + [ + 70.58202058483678, + 33.9956507465314 + ], + [ + 70.69686326832047, + 34.190298481459855 + ], + [ + 70.46717790135311, + 34.190298481459855 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 34.57959395131677 + ], + [ + 70.69686326832047, + 34.57959395131677 + ], + [ + 70.58202058483678, + 34.77424168624522 + ], + [ + 70.46717790135311, + 34.57959395131677 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 34.57959395131677 + ], + [ + 70.58202058483678, + 34.77424168624522 + ], + [ + 70.35233521786944, + 34.77424168624522 + ], + [ + 70.46717790135311, + 34.57959395131677 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 34.57959395131677 + ], + [ + 70.35233521786944, + 34.77424168624522 + ], + [ + 70.23749253438575, + 34.57959395131677 + ], + [ + 70.46717790135311, + 34.57959395131677 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 34.57959395131677 + ], + [ + 70.23749253438575, + 34.57959395131677 + ], + [ + 70.35233521786944, + 34.384946216388315 + ], + [ + 70.46717790135311, + 34.57959395131677 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 34.57959395131677 + ], + [ + 70.35233521786944, + 34.384946216388315 + ], + [ + 70.58202058483678, + 34.384946216388315 + ], + [ + 70.46717790135311, + 34.57959395131677 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 34.57959395131677 + ], + [ + 70.58202058483678, + 34.384946216388315 + ], + [ + 70.69686326832047, + 34.57959395131677 + ], + [ + 70.46717790135311, + 34.57959395131677 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 34.96888942117368 + ], + [ + 70.69686326832047, + 34.96888942117368 + ], + [ + 70.58202058483678, + 35.16353715610213 + ], + [ + 70.46717790135311, + 34.96888942117368 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 34.96888942117368 + ], + [ + 70.58202058483678, + 35.16353715610213 + ], + [ + 70.35233521786944, + 35.16353715610213 + ], + [ + 70.46717790135311, + 34.96888942117368 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 34.96888942117368 + ], + [ + 70.35233521786944, + 35.16353715610213 + ], + [ + 70.23749253438575, + 34.96888942117368 + ], + [ + 70.46717790135311, + 34.96888942117368 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 34.96888942117368 + ], + [ + 70.23749253438575, + 34.96888942117368 + ], + [ + 70.35233521786944, + 34.774241686245226 + ], + [ + 70.46717790135311, + 34.96888942117368 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 34.96888942117368 + ], + [ + 70.35233521786944, + 34.774241686245226 + ], + [ + 70.58202058483678, + 34.774241686245226 + ], + [ + 70.46717790135311, + 34.96888942117368 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 34.96888942117368 + ], + [ + 70.58202058483678, + 34.774241686245226 + ], + [ + 70.69686326832047, + 34.96888942117368 + ], + [ + 70.46717790135311, + 34.96888942117368 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 35.35818489103058 + ], + [ + 70.69686326832047, + 35.35818489103058 + ], + [ + 70.58202058483678, + 35.552832625959034 + ], + [ + 70.46717790135311, + 35.35818489103058 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 35.35818489103058 + ], + [ + 70.58202058483678, + 35.552832625959034 + ], + [ + 70.35233521786944, + 35.552832625959034 + ], + [ + 70.46717790135311, + 35.35818489103058 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 35.35818489103058 + ], + [ + 70.35233521786944, + 35.552832625959034 + ], + [ + 70.23749253438575, + 35.35818489103058 + ], + [ + 70.46717790135311, + 35.35818489103058 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 35.35818489103058 + ], + [ + 70.23749253438575, + 35.35818489103058 + ], + [ + 70.35233521786944, + 35.16353715610213 + ], + [ + 70.46717790135311, + 35.35818489103058 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 35.35818489103058 + ], + [ + 70.35233521786944, + 35.16353715610213 + ], + [ + 70.58202058483678, + 35.16353715610213 + ], + [ + 70.46717790135311, + 35.35818489103058 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 35.35818489103058 + ], + [ + 70.58202058483678, + 35.16353715610213 + ], + [ + 70.69686326832047, + 35.35818489103058 + ], + [ + 70.46717790135311, + 35.35818489103058 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 35.74748036088749 + ], + [ + 70.69686326832047, + 35.74748036088749 + ], + [ + 70.58202058483678, + 35.94212809581594 + ], + [ + 70.46717790135311, + 35.74748036088749 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 35.74748036088749 + ], + [ + 70.58202058483678, + 35.94212809581594 + ], + [ + 70.35233521786944, + 35.94212809581594 + ], + [ + 70.46717790135311, + 35.74748036088749 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 35.74748036088749 + ], + [ + 70.35233521786944, + 35.94212809581594 + ], + [ + 70.23749253438575, + 35.74748036088749 + ], + [ + 70.46717790135311, + 35.74748036088749 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 35.74748036088749 + ], + [ + 70.23749253438575, + 35.74748036088749 + ], + [ + 70.35233521786944, + 35.552832625959034 + ], + [ + 70.46717790135311, + 35.74748036088749 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 35.74748036088749 + ], + [ + 70.35233521786944, + 35.552832625959034 + ], + [ + 70.58202058483678, + 35.552832625959034 + ], + [ + 70.46717790135311, + 35.74748036088749 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 35.74748036088749 + ], + [ + 70.58202058483678, + 35.552832625959034 + ], + [ + 70.69686326832047, + 35.74748036088749 + ], + [ + 70.46717790135311, + 35.74748036088749 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 36.13677583074439 + ], + [ + 70.69686326832047, + 36.13677583074439 + ], + [ + 70.58202058483678, + 36.33142356567284 + ], + [ + 70.46717790135311, + 36.13677583074439 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 36.13677583074439 + ], + [ + 70.58202058483678, + 36.33142356567284 + ], + [ + 70.35233521786944, + 36.33142356567284 + ], + [ + 70.46717790135311, + 36.13677583074439 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 36.13677583074439 + ], + [ + 70.35233521786944, + 36.33142356567284 + ], + [ + 70.23749253438575, + 36.13677583074439 + ], + [ + 70.46717790135311, + 36.13677583074439 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 36.13677583074439 + ], + [ + 70.23749253438575, + 36.13677583074439 + ], + [ + 70.35233521786944, + 35.94212809581594 + ], + [ + 70.46717790135311, + 36.13677583074439 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 36.13677583074439 + ], + [ + 70.35233521786944, + 35.94212809581594 + ], + [ + 70.58202058483678, + 35.94212809581594 + ], + [ + 70.46717790135311, + 36.13677583074439 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 36.13677583074439 + ], + [ + 70.58202058483678, + 35.94212809581594 + ], + [ + 70.69686326832047, + 36.13677583074439 + ], + [ + 70.46717790135311, + 36.13677583074439 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 36.526071300601295 + ], + [ + 70.69686326832047, + 36.526071300601295 + ], + [ + 70.58202058483678, + 36.72071903552975 + ], + [ + 70.46717790135311, + 36.526071300601295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 36.526071300601295 + ], + [ + 70.58202058483678, + 36.72071903552975 + ], + [ + 70.35233521786944, + 36.72071903552975 + ], + [ + 70.46717790135311, + 36.526071300601295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 36.526071300601295 + ], + [ + 70.35233521786944, + 36.72071903552975 + ], + [ + 70.23749253438575, + 36.526071300601295 + ], + [ + 70.46717790135311, + 36.526071300601295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 36.526071300601295 + ], + [ + 70.23749253438575, + 36.526071300601295 + ], + [ + 70.35233521786944, + 36.33142356567284 + ], + [ + 70.46717790135311, + 36.526071300601295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 36.526071300601295 + ], + [ + 70.35233521786944, + 36.33142356567284 + ], + [ + 70.58202058483678, + 36.33142356567284 + ], + [ + 70.46717790135311, + 36.526071300601295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 36.526071300601295 + ], + [ + 70.58202058483678, + 36.33142356567284 + ], + [ + 70.69686326832047, + 36.526071300601295 + ], + [ + 70.46717790135311, + 36.526071300601295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 36.915366770458206 + ], + [ + 70.69686326832047, + 36.915366770458206 + ], + [ + 70.58202058483678, + 37.11001450538666 + ], + [ + 70.46717790135311, + 36.915366770458206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 36.915366770458206 + ], + [ + 70.58202058483678, + 37.11001450538666 + ], + [ + 70.35233521786944, + 37.11001450538666 + ], + [ + 70.46717790135311, + 36.915366770458206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 36.915366770458206 + ], + [ + 70.35233521786944, + 37.11001450538666 + ], + [ + 70.23749253438575, + 36.915366770458206 + ], + [ + 70.46717790135311, + 36.915366770458206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 36.915366770458206 + ], + [ + 70.23749253438575, + 36.915366770458206 + ], + [ + 70.35233521786944, + 36.720719035529754 + ], + [ + 70.46717790135311, + 36.915366770458206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 36.915366770458206 + ], + [ + 70.35233521786944, + 36.720719035529754 + ], + [ + 70.58202058483678, + 36.720719035529754 + ], + [ + 70.46717790135311, + 36.915366770458206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 36.915366770458206 + ], + [ + 70.58202058483678, + 36.720719035529754 + ], + [ + 70.69686326832047, + 36.915366770458206 + ], + [ + 70.46717790135311, + 36.915366770458206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 37.30466224031511 + ], + [ + 70.69686326832047, + 37.30466224031511 + ], + [ + 70.58202058483678, + 37.49930997524356 + ], + [ + 70.46717790135311, + 37.30466224031511 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 37.30466224031511 + ], + [ + 70.58202058483678, + 37.49930997524356 + ], + [ + 70.35233521786944, + 37.49930997524356 + ], + [ + 70.46717790135311, + 37.30466224031511 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 37.30466224031511 + ], + [ + 70.35233521786944, + 37.49930997524356 + ], + [ + 70.23749253438575, + 37.30466224031511 + ], + [ + 70.46717790135311, + 37.30466224031511 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 37.30466224031511 + ], + [ + 70.23749253438575, + 37.30466224031511 + ], + [ + 70.35233521786944, + 37.11001450538666 + ], + [ + 70.46717790135311, + 37.30466224031511 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 37.30466224031511 + ], + [ + 70.35233521786944, + 37.11001450538666 + ], + [ + 70.58202058483678, + 37.11001450538666 + ], + [ + 70.46717790135311, + 37.30466224031511 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 37.30466224031511 + ], + [ + 70.58202058483678, + 37.11001450538666 + ], + [ + 70.69686326832047, + 37.30466224031511 + ], + [ + 70.46717790135311, + 37.30466224031511 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 37.69395771017202 + ], + [ + 70.69686326832047, + 37.69395771017202 + ], + [ + 70.58202058483678, + 37.888605445100474 + ], + [ + 70.46717790135311, + 37.69395771017202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 37.69395771017202 + ], + [ + 70.58202058483678, + 37.888605445100474 + ], + [ + 70.35233521786944, + 37.888605445100474 + ], + [ + 70.46717790135311, + 37.69395771017202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 37.69395771017202 + ], + [ + 70.35233521786944, + 37.888605445100474 + ], + [ + 70.23749253438575, + 37.69395771017202 + ], + [ + 70.46717790135311, + 37.69395771017202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 37.69395771017202 + ], + [ + 70.23749253438575, + 37.69395771017202 + ], + [ + 70.35233521786944, + 37.49930997524357 + ], + [ + 70.46717790135311, + 37.69395771017202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 37.69395771017202 + ], + [ + 70.35233521786944, + 37.49930997524357 + ], + [ + 70.58202058483678, + 37.49930997524357 + ], + [ + 70.46717790135311, + 37.69395771017202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 37.69395771017202 + ], + [ + 70.58202058483678, + 37.49930997524357 + ], + [ + 70.69686326832047, + 37.69395771017202 + ], + [ + 70.46717790135311, + 37.69395771017202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 38.083253180028926 + ], + [ + 70.69686326832047, + 38.083253180028926 + ], + [ + 70.58202058483678, + 38.27790091495738 + ], + [ + 70.46717790135311, + 38.083253180028926 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 38.083253180028926 + ], + [ + 70.58202058483678, + 38.27790091495738 + ], + [ + 70.35233521786944, + 38.27790091495738 + ], + [ + 70.46717790135311, + 38.083253180028926 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 38.083253180028926 + ], + [ + 70.35233521786944, + 38.27790091495738 + ], + [ + 70.23749253438575, + 38.083253180028926 + ], + [ + 70.46717790135311, + 38.083253180028926 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 38.083253180028926 + ], + [ + 70.23749253438575, + 38.083253180028926 + ], + [ + 70.35233521786944, + 37.888605445100474 + ], + [ + 70.46717790135311, + 38.083253180028926 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 38.083253180028926 + ], + [ + 70.35233521786944, + 37.888605445100474 + ], + [ + 70.58202058483678, + 37.888605445100474 + ], + [ + 70.46717790135311, + 38.083253180028926 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 38.083253180028926 + ], + [ + 70.58202058483678, + 37.888605445100474 + ], + [ + 70.69686326832047, + 38.083253180028926 + ], + [ + 70.46717790135311, + 38.083253180028926 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 38.47254864988583 + ], + [ + 70.69686326832047, + 38.47254864988583 + ], + [ + 70.58202058483678, + 38.66719638481428 + ], + [ + 70.46717790135311, + 38.47254864988583 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 38.47254864988583 + ], + [ + 70.58202058483678, + 38.66719638481428 + ], + [ + 70.35233521786944, + 38.66719638481428 + ], + [ + 70.46717790135311, + 38.47254864988583 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 38.47254864988583 + ], + [ + 70.35233521786944, + 38.66719638481428 + ], + [ + 70.23749253438575, + 38.47254864988583 + ], + [ + 70.46717790135311, + 38.47254864988583 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 38.47254864988583 + ], + [ + 70.23749253438575, + 38.47254864988583 + ], + [ + 70.35233521786944, + 38.27790091495738 + ], + [ + 70.46717790135311, + 38.47254864988583 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 38.47254864988583 + ], + [ + 70.35233521786944, + 38.27790091495738 + ], + [ + 70.58202058483678, + 38.27790091495738 + ], + [ + 70.46717790135311, + 38.47254864988583 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 38.47254864988583 + ], + [ + 70.58202058483678, + 38.27790091495738 + ], + [ + 70.69686326832047, + 38.47254864988583 + ], + [ + 70.46717790135311, + 38.47254864988583 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 38.861844119742734 + ], + [ + 70.69686326832047, + 38.861844119742734 + ], + [ + 70.58202058483678, + 39.05649185467119 + ], + [ + 70.46717790135311, + 38.861844119742734 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 38.861844119742734 + ], + [ + 70.58202058483678, + 39.05649185467119 + ], + [ + 70.35233521786944, + 39.05649185467119 + ], + [ + 70.46717790135311, + 38.861844119742734 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 38.861844119742734 + ], + [ + 70.35233521786944, + 39.05649185467119 + ], + [ + 70.23749253438575, + 38.861844119742734 + ], + [ + 70.46717790135311, + 38.861844119742734 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 38.861844119742734 + ], + [ + 70.23749253438575, + 38.861844119742734 + ], + [ + 70.35233521786944, + 38.66719638481428 + ], + [ + 70.46717790135311, + 38.861844119742734 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 38.861844119742734 + ], + [ + 70.35233521786944, + 38.66719638481428 + ], + [ + 70.58202058483678, + 38.66719638481428 + ], + [ + 70.46717790135311, + 38.861844119742734 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 38.861844119742734 + ], + [ + 70.58202058483678, + 38.66719638481428 + ], + [ + 70.69686326832047, + 38.861844119742734 + ], + [ + 70.46717790135311, + 38.861844119742734 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 39.25113958959964 + ], + [ + 70.69686326832047, + 39.25113958959964 + ], + [ + 70.58202058483678, + 39.44578732452809 + ], + [ + 70.46717790135311, + 39.25113958959964 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 39.25113958959964 + ], + [ + 70.58202058483678, + 39.44578732452809 + ], + [ + 70.35233521786944, + 39.44578732452809 + ], + [ + 70.46717790135311, + 39.25113958959964 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 39.25113958959964 + ], + [ + 70.35233521786944, + 39.44578732452809 + ], + [ + 70.23749253438575, + 39.25113958959964 + ], + [ + 70.46717790135311, + 39.25113958959964 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 39.25113958959964 + ], + [ + 70.23749253438575, + 39.25113958959964 + ], + [ + 70.35233521786944, + 39.05649185467119 + ], + [ + 70.46717790135311, + 39.25113958959964 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 39.25113958959964 + ], + [ + 70.35233521786944, + 39.05649185467119 + ], + [ + 70.58202058483678, + 39.05649185467119 + ], + [ + 70.46717790135311, + 39.25113958959964 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 39.25113958959964 + ], + [ + 70.58202058483678, + 39.05649185467119 + ], + [ + 70.69686326832047, + 39.25113958959964 + ], + [ + 70.46717790135311, + 39.25113958959964 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 39.64043505945655 + ], + [ + 70.69686326832047, + 39.64043505945655 + ], + [ + 70.58202058483678, + 39.835082794385 + ], + [ + 70.46717790135311, + 39.64043505945655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 39.64043505945655 + ], + [ + 70.58202058483678, + 39.835082794385 + ], + [ + 70.35233521786944, + 39.835082794385 + ], + [ + 70.46717790135311, + 39.64043505945655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 39.64043505945655 + ], + [ + 70.35233521786944, + 39.835082794385 + ], + [ + 70.23749253438575, + 39.64043505945655 + ], + [ + 70.46717790135311, + 39.64043505945655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 39.64043505945655 + ], + [ + 70.23749253438575, + 39.64043505945655 + ], + [ + 70.35233521786944, + 39.4457873245281 + ], + [ + 70.46717790135311, + 39.64043505945655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 39.64043505945655 + ], + [ + 70.35233521786944, + 39.4457873245281 + ], + [ + 70.58202058483678, + 39.4457873245281 + ], + [ + 70.46717790135311, + 39.64043505945655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 39.64043505945655 + ], + [ + 70.58202058483678, + 39.4457873245281 + ], + [ + 70.69686326832047, + 39.64043505945655 + ], + [ + 70.46717790135311, + 39.64043505945655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 40.029730529313454 + ], + [ + 70.69686326832047, + 40.029730529313454 + ], + [ + 70.58202058483678, + 40.224378264241906 + ], + [ + 70.46717790135311, + 40.029730529313454 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 40.029730529313454 + ], + [ + 70.58202058483678, + 40.224378264241906 + ], + [ + 70.35233521786944, + 40.224378264241906 + ], + [ + 70.46717790135311, + 40.029730529313454 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 40.029730529313454 + ], + [ + 70.35233521786944, + 40.224378264241906 + ], + [ + 70.23749253438575, + 40.029730529313454 + ], + [ + 70.46717790135311, + 40.029730529313454 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 40.029730529313454 + ], + [ + 70.23749253438575, + 40.029730529313454 + ], + [ + 70.35233521786944, + 39.835082794385 + ], + [ + 70.46717790135311, + 40.029730529313454 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 40.029730529313454 + ], + [ + 70.35233521786944, + 39.835082794385 + ], + [ + 70.58202058483678, + 39.835082794385 + ], + [ + 70.46717790135311, + 40.029730529313454 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 40.029730529313454 + ], + [ + 70.58202058483678, + 39.835082794385 + ], + [ + 70.69686326832047, + 40.029730529313454 + ], + [ + 70.46717790135311, + 40.029730529313454 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 40.419025999170366 + ], + [ + 70.69686326832047, + 40.419025999170366 + ], + [ + 70.58202058483678, + 40.61367373409882 + ], + [ + 70.46717790135311, + 40.419025999170366 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 40.419025999170366 + ], + [ + 70.58202058483678, + 40.61367373409882 + ], + [ + 70.35233521786944, + 40.61367373409882 + ], + [ + 70.46717790135311, + 40.419025999170366 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 40.419025999170366 + ], + [ + 70.35233521786944, + 40.61367373409882 + ], + [ + 70.23749253438575, + 40.419025999170366 + ], + [ + 70.46717790135311, + 40.419025999170366 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 40.419025999170366 + ], + [ + 70.23749253438575, + 40.419025999170366 + ], + [ + 70.35233521786944, + 40.22437826424191 + ], + [ + 70.46717790135311, + 40.419025999170366 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 40.419025999170366 + ], + [ + 70.35233521786944, + 40.22437826424191 + ], + [ + 70.58202058483678, + 40.22437826424191 + ], + [ + 70.46717790135311, + 40.419025999170366 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 40.419025999170366 + ], + [ + 70.58202058483678, + 40.22437826424191 + ], + [ + 70.69686326832047, + 40.419025999170366 + ], + [ + 70.46717790135311, + 40.419025999170366 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 40.80832146902727 + ], + [ + 70.69686326832047, + 40.80832146902727 + ], + [ + 70.58202058483678, + 41.00296920395572 + ], + [ + 70.46717790135311, + 40.80832146902727 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 40.80832146902727 + ], + [ + 70.58202058483678, + 41.00296920395572 + ], + [ + 70.35233521786944, + 41.00296920395572 + ], + [ + 70.46717790135311, + 40.80832146902727 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 40.80832146902727 + ], + [ + 70.35233521786944, + 41.00296920395572 + ], + [ + 70.23749253438575, + 40.80832146902727 + ], + [ + 70.46717790135311, + 40.80832146902727 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 40.80832146902727 + ], + [ + 70.23749253438575, + 40.80832146902727 + ], + [ + 70.35233521786944, + 40.61367373409882 + ], + [ + 70.46717790135311, + 40.80832146902727 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 40.80832146902727 + ], + [ + 70.35233521786944, + 40.61367373409882 + ], + [ + 70.58202058483678, + 40.61367373409882 + ], + [ + 70.46717790135311, + 40.80832146902727 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 40.80832146902727 + ], + [ + 70.58202058483678, + 40.61367373409882 + ], + [ + 70.69686326832047, + 40.80832146902727 + ], + [ + 70.46717790135311, + 40.80832146902727 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 41.197616938884174 + ], + [ + 70.69686326832047, + 41.197616938884174 + ], + [ + 70.58202058483678, + 41.392264673812626 + ], + [ + 70.46717790135311, + 41.197616938884174 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 41.197616938884174 + ], + [ + 70.58202058483678, + 41.392264673812626 + ], + [ + 70.35233521786944, + 41.392264673812626 + ], + [ + 70.46717790135311, + 41.197616938884174 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 41.197616938884174 + ], + [ + 70.35233521786944, + 41.392264673812626 + ], + [ + 70.23749253438575, + 41.197616938884174 + ], + [ + 70.46717790135311, + 41.197616938884174 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 41.197616938884174 + ], + [ + 70.23749253438575, + 41.197616938884174 + ], + [ + 70.35233521786944, + 41.00296920395572 + ], + [ + 70.46717790135311, + 41.197616938884174 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 41.197616938884174 + ], + [ + 70.35233521786944, + 41.00296920395572 + ], + [ + 70.58202058483678, + 41.00296920395572 + ], + [ + 70.46717790135311, + 41.197616938884174 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 41.197616938884174 + ], + [ + 70.58202058483678, + 41.00296920395572 + ], + [ + 70.69686326832047, + 41.197616938884174 + ], + [ + 70.46717790135311, + 41.197616938884174 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 41.58691240874108 + ], + [ + 70.69686326832047, + 41.58691240874108 + ], + [ + 70.58202058483678, + 41.78156014366953 + ], + [ + 70.46717790135311, + 41.58691240874108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 41.58691240874108 + ], + [ + 70.58202058483678, + 41.78156014366953 + ], + [ + 70.35233521786944, + 41.78156014366953 + ], + [ + 70.46717790135311, + 41.58691240874108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 41.58691240874108 + ], + [ + 70.35233521786944, + 41.78156014366953 + ], + [ + 70.23749253438575, + 41.58691240874108 + ], + [ + 70.46717790135311, + 41.58691240874108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 41.58691240874108 + ], + [ + 70.23749253438575, + 41.58691240874108 + ], + [ + 70.35233521786944, + 41.392264673812626 + ], + [ + 70.46717790135311, + 41.58691240874108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 41.58691240874108 + ], + [ + 70.35233521786944, + 41.392264673812626 + ], + [ + 70.58202058483678, + 41.392264673812626 + ], + [ + 70.46717790135311, + 41.58691240874108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 41.58691240874108 + ], + [ + 70.58202058483678, + 41.392264673812626 + ], + [ + 70.69686326832047, + 41.58691240874108 + ], + [ + 70.46717790135311, + 41.58691240874108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 41.97620787859798 + ], + [ + 70.69686326832047, + 41.97620787859798 + ], + [ + 70.58202058483678, + 42.170855613526435 + ], + [ + 70.46717790135311, + 41.97620787859798 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 41.97620787859798 + ], + [ + 70.58202058483678, + 42.170855613526435 + ], + [ + 70.35233521786944, + 42.170855613526435 + ], + [ + 70.46717790135311, + 41.97620787859798 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 41.97620787859798 + ], + [ + 70.35233521786944, + 42.170855613526435 + ], + [ + 70.23749253438575, + 41.97620787859798 + ], + [ + 70.46717790135311, + 41.97620787859798 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 41.97620787859798 + ], + [ + 70.23749253438575, + 41.97620787859798 + ], + [ + 70.35233521786944, + 41.78156014366953 + ], + [ + 70.46717790135311, + 41.97620787859798 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 41.97620787859798 + ], + [ + 70.35233521786944, + 41.78156014366953 + ], + [ + 70.58202058483678, + 41.78156014366953 + ], + [ + 70.46717790135311, + 41.97620787859798 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 41.97620787859798 + ], + [ + 70.58202058483678, + 41.78156014366953 + ], + [ + 70.69686326832047, + 41.97620787859798 + ], + [ + 70.46717790135311, + 41.97620787859798 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 42.365503348454894 + ], + [ + 70.69686326832047, + 42.365503348454894 + ], + [ + 70.58202058483678, + 42.560151083383346 + ], + [ + 70.46717790135311, + 42.365503348454894 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 42.365503348454894 + ], + [ + 70.58202058483678, + 42.560151083383346 + ], + [ + 70.35233521786944, + 42.560151083383346 + ], + [ + 70.46717790135311, + 42.365503348454894 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 42.365503348454894 + ], + [ + 70.35233521786944, + 42.560151083383346 + ], + [ + 70.23749253438575, + 42.365503348454894 + ], + [ + 70.46717790135311, + 42.365503348454894 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 42.365503348454894 + ], + [ + 70.23749253438575, + 42.365503348454894 + ], + [ + 70.35233521786944, + 42.17085561352644 + ], + [ + 70.46717790135311, + 42.365503348454894 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 42.365503348454894 + ], + [ + 70.35233521786944, + 42.17085561352644 + ], + [ + 70.58202058483678, + 42.17085561352644 + ], + [ + 70.46717790135311, + 42.365503348454894 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 42.365503348454894 + ], + [ + 70.58202058483678, + 42.17085561352644 + ], + [ + 70.69686326832047, + 42.365503348454894 + ], + [ + 70.46717790135311, + 42.365503348454894 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 42.754798818311805 + ], + [ + 70.69686326832047, + 42.754798818311805 + ], + [ + 70.58202058483678, + 42.94944655324026 + ], + [ + 70.46717790135311, + 42.754798818311805 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 42.754798818311805 + ], + [ + 70.58202058483678, + 42.94944655324026 + ], + [ + 70.35233521786944, + 42.94944655324026 + ], + [ + 70.46717790135311, + 42.754798818311805 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 42.754798818311805 + ], + [ + 70.35233521786944, + 42.94944655324026 + ], + [ + 70.23749253438575, + 42.754798818311805 + ], + [ + 70.46717790135311, + 42.754798818311805 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 42.754798818311805 + ], + [ + 70.23749253438575, + 42.754798818311805 + ], + [ + 70.35233521786944, + 42.56015108338335 + ], + [ + 70.46717790135311, + 42.754798818311805 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 42.754798818311805 + ], + [ + 70.35233521786944, + 42.56015108338335 + ], + [ + 70.58202058483678, + 42.56015108338335 + ], + [ + 70.46717790135311, + 42.754798818311805 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 42.754798818311805 + ], + [ + 70.58202058483678, + 42.56015108338335 + ], + [ + 70.69686326832047, + 42.754798818311805 + ], + [ + 70.46717790135311, + 42.754798818311805 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 43.14409428816871 + ], + [ + 70.69686326832047, + 43.14409428816871 + ], + [ + 70.58202058483678, + 43.33874202309716 + ], + [ + 70.46717790135311, + 43.14409428816871 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 43.14409428816871 + ], + [ + 70.58202058483678, + 43.33874202309716 + ], + [ + 70.35233521786944, + 43.33874202309716 + ], + [ + 70.46717790135311, + 43.14409428816871 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 43.14409428816871 + ], + [ + 70.35233521786944, + 43.33874202309716 + ], + [ + 70.23749253438575, + 43.14409428816871 + ], + [ + 70.46717790135311, + 43.14409428816871 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 43.14409428816871 + ], + [ + 70.23749253438575, + 43.14409428816871 + ], + [ + 70.35233521786944, + 42.94944655324026 + ], + [ + 70.46717790135311, + 43.14409428816871 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 43.14409428816871 + ], + [ + 70.35233521786944, + 42.94944655324026 + ], + [ + 70.58202058483678, + 42.94944655324026 + ], + [ + 70.46717790135311, + 43.14409428816871 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 43.14409428816871 + ], + [ + 70.58202058483678, + 42.94944655324026 + ], + [ + 70.69686326832047, + 43.14409428816871 + ], + [ + 70.46717790135311, + 43.14409428816871 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 43.53338975802561 + ], + [ + 70.69686326832047, + 43.53338975802561 + ], + [ + 70.58202058483678, + 43.728037492954066 + ], + [ + 70.46717790135311, + 43.53338975802561 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 43.53338975802561 + ], + [ + 70.58202058483678, + 43.728037492954066 + ], + [ + 70.35233521786944, + 43.728037492954066 + ], + [ + 70.46717790135311, + 43.53338975802561 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 43.53338975802561 + ], + [ + 70.35233521786944, + 43.728037492954066 + ], + [ + 70.23749253438575, + 43.53338975802561 + ], + [ + 70.46717790135311, + 43.53338975802561 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 43.53338975802561 + ], + [ + 70.23749253438575, + 43.53338975802561 + ], + [ + 70.35233521786944, + 43.33874202309716 + ], + [ + 70.46717790135311, + 43.53338975802561 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 43.53338975802561 + ], + [ + 70.35233521786944, + 43.33874202309716 + ], + [ + 70.58202058483678, + 43.33874202309716 + ], + [ + 70.46717790135311, + 43.53338975802561 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 43.53338975802561 + ], + [ + 70.58202058483678, + 43.33874202309716 + ], + [ + 70.69686326832047, + 43.53338975802561 + ], + [ + 70.46717790135311, + 43.53338975802561 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 43.92268522788252 + ], + [ + 70.69686326832047, + 43.92268522788252 + ], + [ + 70.58202058483678, + 44.11733296281097 + ], + [ + 70.46717790135311, + 43.92268522788252 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 43.92268522788252 + ], + [ + 70.58202058483678, + 44.11733296281097 + ], + [ + 70.35233521786944, + 44.11733296281097 + ], + [ + 70.46717790135311, + 43.92268522788252 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 43.92268522788252 + ], + [ + 70.35233521786944, + 44.11733296281097 + ], + [ + 70.23749253438575, + 43.92268522788252 + ], + [ + 70.46717790135311, + 43.92268522788252 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 43.92268522788252 + ], + [ + 70.23749253438575, + 43.92268522788252 + ], + [ + 70.35233521786944, + 43.728037492954066 + ], + [ + 70.46717790135311, + 43.92268522788252 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 43.92268522788252 + ], + [ + 70.35233521786944, + 43.728037492954066 + ], + [ + 70.58202058483678, + 43.728037492954066 + ], + [ + 70.46717790135311, + 43.92268522788252 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 43.92268522788252 + ], + [ + 70.58202058483678, + 43.728037492954066 + ], + [ + 70.69686326832047, + 43.92268522788252 + ], + [ + 70.46717790135311, + 43.92268522788252 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 44.31198069773942 + ], + [ + 70.69686326832047, + 44.31198069773942 + ], + [ + 70.58202058483678, + 44.506628432667874 + ], + [ + 70.46717790135311, + 44.31198069773942 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 44.31198069773942 + ], + [ + 70.58202058483678, + 44.506628432667874 + ], + [ + 70.35233521786944, + 44.506628432667874 + ], + [ + 70.46717790135311, + 44.31198069773942 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 44.31198069773942 + ], + [ + 70.35233521786944, + 44.506628432667874 + ], + [ + 70.23749253438575, + 44.31198069773942 + ], + [ + 70.46717790135311, + 44.31198069773942 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 44.31198069773942 + ], + [ + 70.23749253438575, + 44.31198069773942 + ], + [ + 70.35233521786944, + 44.11733296281097 + ], + [ + 70.46717790135311, + 44.31198069773942 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 44.31198069773942 + ], + [ + 70.35233521786944, + 44.11733296281097 + ], + [ + 70.58202058483678, + 44.11733296281097 + ], + [ + 70.46717790135311, + 44.31198069773942 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 44.31198069773942 + ], + [ + 70.58202058483678, + 44.11733296281097 + ], + [ + 70.69686326832047, + 44.31198069773942 + ], + [ + 70.46717790135311, + 44.31198069773942 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 44.701276167596326 + ], + [ + 70.69686326832047, + 44.701276167596326 + ], + [ + 70.58202058483678, + 44.89592390252478 + ], + [ + 70.46717790135311, + 44.701276167596326 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 44.701276167596326 + ], + [ + 70.58202058483678, + 44.89592390252478 + ], + [ + 70.35233521786944, + 44.89592390252478 + ], + [ + 70.46717790135311, + 44.701276167596326 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 44.701276167596326 + ], + [ + 70.35233521786944, + 44.89592390252478 + ], + [ + 70.23749253438575, + 44.701276167596326 + ], + [ + 70.46717790135311, + 44.701276167596326 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 44.701276167596326 + ], + [ + 70.23749253438575, + 44.701276167596326 + ], + [ + 70.35233521786944, + 44.506628432667874 + ], + [ + 70.46717790135311, + 44.701276167596326 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 44.701276167596326 + ], + [ + 70.35233521786944, + 44.506628432667874 + ], + [ + 70.58202058483678, + 44.506628432667874 + ], + [ + 70.46717790135311, + 44.701276167596326 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 44.701276167596326 + ], + [ + 70.58202058483678, + 44.506628432667874 + ], + [ + 70.69686326832047, + 44.701276167596326 + ], + [ + 70.46717790135311, + 44.701276167596326 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 45.090571637453245 + ], + [ + 70.69686326832047, + 45.090571637453245 + ], + [ + 70.58202058483678, + 45.2852193723817 + ], + [ + 70.46717790135311, + 45.090571637453245 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 45.090571637453245 + ], + [ + 70.58202058483678, + 45.2852193723817 + ], + [ + 70.35233521786944, + 45.2852193723817 + ], + [ + 70.46717790135311, + 45.090571637453245 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 45.090571637453245 + ], + [ + 70.35233521786944, + 45.2852193723817 + ], + [ + 70.23749253438575, + 45.090571637453245 + ], + [ + 70.46717790135311, + 45.090571637453245 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 45.090571637453245 + ], + [ + 70.23749253438575, + 45.090571637453245 + ], + [ + 70.35233521786944, + 44.89592390252479 + ], + [ + 70.46717790135311, + 45.090571637453245 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 45.090571637453245 + ], + [ + 70.35233521786944, + 44.89592390252479 + ], + [ + 70.58202058483678, + 44.89592390252479 + ], + [ + 70.46717790135311, + 45.090571637453245 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 45.090571637453245 + ], + [ + 70.58202058483678, + 44.89592390252479 + ], + [ + 70.69686326832047, + 45.090571637453245 + ], + [ + 70.46717790135311, + 45.090571637453245 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 45.47986710731015 + ], + [ + 70.69686326832047, + 45.47986710731015 + ], + [ + 70.58202058483678, + 45.6745148422386 + ], + [ + 70.46717790135311, + 45.47986710731015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 45.47986710731015 + ], + [ + 70.58202058483678, + 45.6745148422386 + ], + [ + 70.35233521786944, + 45.6745148422386 + ], + [ + 70.46717790135311, + 45.47986710731015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 45.47986710731015 + ], + [ + 70.35233521786944, + 45.6745148422386 + ], + [ + 70.23749253438575, + 45.47986710731015 + ], + [ + 70.46717790135311, + 45.47986710731015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 45.47986710731015 + ], + [ + 70.23749253438575, + 45.47986710731015 + ], + [ + 70.35233521786944, + 45.2852193723817 + ], + [ + 70.46717790135311, + 45.47986710731015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 45.47986710731015 + ], + [ + 70.35233521786944, + 45.2852193723817 + ], + [ + 70.58202058483678, + 45.2852193723817 + ], + [ + 70.46717790135311, + 45.47986710731015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 45.47986710731015 + ], + [ + 70.58202058483678, + 45.2852193723817 + ], + [ + 70.69686326832047, + 45.47986710731015 + ], + [ + 70.46717790135311, + 45.47986710731015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 45.86916257716705 + ], + [ + 70.69686326832047, + 45.86916257716705 + ], + [ + 70.58202058483678, + 46.063810312095505 + ], + [ + 70.46717790135311, + 45.86916257716705 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 45.86916257716705 + ], + [ + 70.58202058483678, + 46.063810312095505 + ], + [ + 70.35233521786944, + 46.063810312095505 + ], + [ + 70.46717790135311, + 45.86916257716705 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 45.86916257716705 + ], + [ + 70.35233521786944, + 46.063810312095505 + ], + [ + 70.23749253438575, + 45.86916257716705 + ], + [ + 70.46717790135311, + 45.86916257716705 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 45.86916257716705 + ], + [ + 70.23749253438575, + 45.86916257716705 + ], + [ + 70.35233521786944, + 45.6745148422386 + ], + [ + 70.46717790135311, + 45.86916257716705 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 45.86916257716705 + ], + [ + 70.35233521786944, + 45.6745148422386 + ], + [ + 70.58202058483678, + 45.6745148422386 + ], + [ + 70.46717790135311, + 45.86916257716705 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 45.86916257716705 + ], + [ + 70.58202058483678, + 45.6745148422386 + ], + [ + 70.69686326832047, + 45.86916257716705 + ], + [ + 70.46717790135311, + 45.86916257716705 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 46.25845804702396 + ], + [ + 70.69686326832047, + 46.25845804702396 + ], + [ + 70.58202058483678, + 46.45310578195241 + ], + [ + 70.46717790135311, + 46.25845804702396 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 46.25845804702396 + ], + [ + 70.58202058483678, + 46.45310578195241 + ], + [ + 70.35233521786944, + 46.45310578195241 + ], + [ + 70.46717790135311, + 46.25845804702396 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 46.25845804702396 + ], + [ + 70.35233521786944, + 46.45310578195241 + ], + [ + 70.23749253438575, + 46.25845804702396 + ], + [ + 70.46717790135311, + 46.25845804702396 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 46.25845804702396 + ], + [ + 70.23749253438575, + 46.25845804702396 + ], + [ + 70.35233521786944, + 46.063810312095505 + ], + [ + 70.46717790135311, + 46.25845804702396 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 46.25845804702396 + ], + [ + 70.35233521786944, + 46.063810312095505 + ], + [ + 70.58202058483678, + 46.063810312095505 + ], + [ + 70.46717790135311, + 46.25845804702396 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 46.25845804702396 + ], + [ + 70.58202058483678, + 46.063810312095505 + ], + [ + 70.69686326832047, + 46.25845804702396 + ], + [ + 70.46717790135311, + 46.25845804702396 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 46.64775351688086 + ], + [ + 70.69686326832047, + 46.64775351688086 + ], + [ + 70.58202058483678, + 46.842401251809314 + ], + [ + 70.46717790135311, + 46.64775351688086 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 46.64775351688086 + ], + [ + 70.58202058483678, + 46.842401251809314 + ], + [ + 70.35233521786944, + 46.842401251809314 + ], + [ + 70.46717790135311, + 46.64775351688086 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 46.64775351688086 + ], + [ + 70.35233521786944, + 46.842401251809314 + ], + [ + 70.23749253438575, + 46.64775351688086 + ], + [ + 70.46717790135311, + 46.64775351688086 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 46.64775351688086 + ], + [ + 70.23749253438575, + 46.64775351688086 + ], + [ + 70.35233521786944, + 46.45310578195241 + ], + [ + 70.46717790135311, + 46.64775351688086 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 46.64775351688086 + ], + [ + 70.35233521786944, + 46.45310578195241 + ], + [ + 70.58202058483678, + 46.45310578195241 + ], + [ + 70.46717790135311, + 46.64775351688086 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 46.64775351688086 + ], + [ + 70.58202058483678, + 46.45310578195241 + ], + [ + 70.69686326832047, + 46.64775351688086 + ], + [ + 70.46717790135311, + 46.64775351688086 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 47.037048986737766 + ], + [ + 70.69686326832047, + 47.037048986737766 + ], + [ + 70.58202058483678, + 47.23169672166622 + ], + [ + 70.46717790135311, + 47.037048986737766 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 47.037048986737766 + ], + [ + 70.58202058483678, + 47.23169672166622 + ], + [ + 70.35233521786944, + 47.23169672166622 + ], + [ + 70.46717790135311, + 47.037048986737766 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 47.037048986737766 + ], + [ + 70.35233521786944, + 47.23169672166622 + ], + [ + 70.23749253438575, + 47.037048986737766 + ], + [ + 70.46717790135311, + 47.037048986737766 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 47.037048986737766 + ], + [ + 70.23749253438575, + 47.037048986737766 + ], + [ + 70.35233521786944, + 46.842401251809314 + ], + [ + 70.46717790135311, + 47.037048986737766 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 47.037048986737766 + ], + [ + 70.35233521786944, + 46.842401251809314 + ], + [ + 70.58202058483678, + 46.842401251809314 + ], + [ + 70.46717790135311, + 47.037048986737766 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 47.037048986737766 + ], + [ + 70.58202058483678, + 46.842401251809314 + ], + [ + 70.69686326832047, + 47.037048986737766 + ], + [ + 70.46717790135311, + 47.037048986737766 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 47.42634445659467 + ], + [ + 70.69686326832047, + 47.42634445659467 + ], + [ + 70.58202058483678, + 47.62099219152312 + ], + [ + 70.46717790135311, + 47.42634445659467 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 47.42634445659467 + ], + [ + 70.58202058483678, + 47.62099219152312 + ], + [ + 70.35233521786944, + 47.62099219152312 + ], + [ + 70.46717790135311, + 47.42634445659467 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 47.42634445659467 + ], + [ + 70.35233521786944, + 47.62099219152312 + ], + [ + 70.23749253438575, + 47.42634445659467 + ], + [ + 70.46717790135311, + 47.42634445659467 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 47.42634445659467 + ], + [ + 70.23749253438575, + 47.42634445659467 + ], + [ + 70.35233521786944, + 47.23169672166622 + ], + [ + 70.46717790135311, + 47.42634445659467 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 47.42634445659467 + ], + [ + 70.35233521786944, + 47.23169672166622 + ], + [ + 70.58202058483678, + 47.23169672166622 + ], + [ + 70.46717790135311, + 47.42634445659467 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 47.42634445659467 + ], + [ + 70.58202058483678, + 47.23169672166622 + ], + [ + 70.69686326832047, + 47.42634445659467 + ], + [ + 70.46717790135311, + 47.42634445659467 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 47.81563992645159 + ], + [ + 70.69686326832047, + 47.81563992645159 + ], + [ + 70.58202058483678, + 48.01028766138004 + ], + [ + 70.46717790135311, + 47.81563992645159 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 47.81563992645159 + ], + [ + 70.58202058483678, + 48.01028766138004 + ], + [ + 70.35233521786944, + 48.01028766138004 + ], + [ + 70.46717790135311, + 47.81563992645159 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 47.81563992645159 + ], + [ + 70.35233521786944, + 48.01028766138004 + ], + [ + 70.23749253438575, + 47.81563992645159 + ], + [ + 70.46717790135311, + 47.81563992645159 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 47.81563992645159 + ], + [ + 70.23749253438575, + 47.81563992645159 + ], + [ + 70.35233521786944, + 47.620992191523136 + ], + [ + 70.46717790135311, + 47.81563992645159 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 47.81563992645159 + ], + [ + 70.35233521786944, + 47.620992191523136 + ], + [ + 70.58202058483678, + 47.620992191523136 + ], + [ + 70.46717790135311, + 47.81563992645159 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.46717790135311, + 47.81563992645159 + ], + [ + 70.58202058483678, + 47.620992191523136 + ], + [ + 70.69686326832047, + 47.81563992645159 + ], + [ + 70.46717790135311, + 47.81563992645159 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 11.805808964687746 + ], + [ + 71.04139131877152, + 11.805808964687746 + ], + [ + 70.92654863528783, + 12.0004566996162 + ], + [ + 70.81170595180416, + 11.805808964687746 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 11.805808964687746 + ], + [ + 70.92654863528783, + 12.0004566996162 + ], + [ + 70.69686326832048, + 12.0004566996162 + ], + [ + 70.81170595180416, + 11.805808964687746 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 11.805808964687746 + ], + [ + 70.69686326832048, + 12.0004566996162 + ], + [ + 70.5820205848368, + 11.805808964687746 + ], + [ + 70.81170595180416, + 11.805808964687746 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 11.805808964687746 + ], + [ + 70.5820205848368, + 11.805808964687746 + ], + [ + 70.69686326832048, + 11.611161229759292 + ], + [ + 70.81170595180416, + 11.805808964687746 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 11.805808964687746 + ], + [ + 70.69686326832048, + 11.611161229759292 + ], + [ + 70.92654863528783, + 11.611161229759292 + ], + [ + 70.81170595180416, + 11.805808964687746 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 11.805808964687746 + ], + [ + 70.92654863528783, + 11.611161229759292 + ], + [ + 71.04139131877152, + 11.805808964687746 + ], + [ + 70.81170595180416, + 11.805808964687746 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 12.195104434544652 + ], + [ + 71.04139131877152, + 12.195104434544652 + ], + [ + 70.92654863528783, + 12.389752169473105 + ], + [ + 70.81170595180416, + 12.195104434544652 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 12.195104434544652 + ], + [ + 70.92654863528783, + 12.389752169473105 + ], + [ + 70.69686326832048, + 12.389752169473105 + ], + [ + 70.81170595180416, + 12.195104434544652 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 12.195104434544652 + ], + [ + 70.69686326832048, + 12.389752169473105 + ], + [ + 70.5820205848368, + 12.195104434544652 + ], + [ + 70.81170595180416, + 12.195104434544652 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 12.195104434544652 + ], + [ + 70.5820205848368, + 12.195104434544652 + ], + [ + 70.69686326832048, + 12.000456699616198 + ], + [ + 70.81170595180416, + 12.195104434544652 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 12.195104434544652 + ], + [ + 70.69686326832048, + 12.000456699616198 + ], + [ + 70.92654863528783, + 12.000456699616198 + ], + [ + 70.81170595180416, + 12.195104434544652 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 12.195104434544652 + ], + [ + 70.92654863528783, + 12.000456699616198 + ], + [ + 71.04139131877152, + 12.195104434544652 + ], + [ + 70.81170595180416, + 12.195104434544652 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 12.58439990440156 + ], + [ + 71.04139131877152, + 12.58439990440156 + ], + [ + 70.92654863528783, + 12.779047639330013 + ], + [ + 70.81170595180416, + 12.58439990440156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 12.58439990440156 + ], + [ + 70.92654863528783, + 12.779047639330013 + ], + [ + 70.69686326832048, + 12.779047639330013 + ], + [ + 70.81170595180416, + 12.58439990440156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 12.58439990440156 + ], + [ + 70.69686326832048, + 12.779047639330013 + ], + [ + 70.5820205848368, + 12.58439990440156 + ], + [ + 70.81170595180416, + 12.58439990440156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 12.58439990440156 + ], + [ + 70.5820205848368, + 12.58439990440156 + ], + [ + 70.69686326832048, + 12.389752169473105 + ], + [ + 70.81170595180416, + 12.58439990440156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 12.58439990440156 + ], + [ + 70.69686326832048, + 12.389752169473105 + ], + [ + 70.92654863528783, + 12.389752169473105 + ], + [ + 70.81170595180416, + 12.58439990440156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 12.58439990440156 + ], + [ + 70.92654863528783, + 12.389752169473105 + ], + [ + 71.04139131877152, + 12.58439990440156 + ], + [ + 70.81170595180416, + 12.58439990440156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 12.973695374258465 + ], + [ + 71.04139131877152, + 12.973695374258465 + ], + [ + 70.92654863528783, + 13.16834310918692 + ], + [ + 70.81170595180416, + 12.973695374258465 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 12.973695374258465 + ], + [ + 70.92654863528783, + 13.16834310918692 + ], + [ + 70.69686326832048, + 13.16834310918692 + ], + [ + 70.81170595180416, + 12.973695374258465 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 12.973695374258465 + ], + [ + 70.69686326832048, + 13.16834310918692 + ], + [ + 70.5820205848368, + 12.973695374258465 + ], + [ + 70.81170595180416, + 12.973695374258465 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 12.973695374258465 + ], + [ + 70.5820205848368, + 12.973695374258465 + ], + [ + 70.69686326832048, + 12.779047639330011 + ], + [ + 70.81170595180416, + 12.973695374258465 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 12.973695374258465 + ], + [ + 70.69686326832048, + 12.779047639330011 + ], + [ + 70.92654863528783, + 12.779047639330011 + ], + [ + 70.81170595180416, + 12.973695374258465 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 12.973695374258465 + ], + [ + 70.92654863528783, + 12.779047639330011 + ], + [ + 71.04139131877152, + 12.973695374258465 + ], + [ + 70.81170595180416, + 12.973695374258465 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 13.362990844115371 + ], + [ + 71.04139131877152, + 13.362990844115371 + ], + [ + 70.92654863528783, + 13.557638579043825 + ], + [ + 70.81170595180416, + 13.362990844115371 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 13.362990844115371 + ], + [ + 70.92654863528783, + 13.557638579043825 + ], + [ + 70.69686326832048, + 13.557638579043825 + ], + [ + 70.81170595180416, + 13.362990844115371 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 13.362990844115371 + ], + [ + 70.69686326832048, + 13.557638579043825 + ], + [ + 70.5820205848368, + 13.362990844115371 + ], + [ + 70.81170595180416, + 13.362990844115371 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 13.362990844115371 + ], + [ + 70.5820205848368, + 13.362990844115371 + ], + [ + 70.69686326832048, + 13.168343109186917 + ], + [ + 70.81170595180416, + 13.362990844115371 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 13.362990844115371 + ], + [ + 70.69686326832048, + 13.168343109186917 + ], + [ + 70.92654863528783, + 13.168343109186917 + ], + [ + 70.81170595180416, + 13.362990844115371 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 13.362990844115371 + ], + [ + 70.92654863528783, + 13.168343109186917 + ], + [ + 71.04139131877152, + 13.362990844115371 + ], + [ + 70.81170595180416, + 13.362990844115371 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 13.752286313972277 + ], + [ + 71.04139131877152, + 13.752286313972277 + ], + [ + 70.92654863528783, + 13.946934048900731 + ], + [ + 70.81170595180416, + 13.752286313972277 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 13.752286313972277 + ], + [ + 70.92654863528783, + 13.946934048900731 + ], + [ + 70.69686326832048, + 13.946934048900731 + ], + [ + 70.81170595180416, + 13.752286313972277 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 13.752286313972277 + ], + [ + 70.69686326832048, + 13.946934048900731 + ], + [ + 70.5820205848368, + 13.752286313972277 + ], + [ + 70.81170595180416, + 13.752286313972277 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 13.752286313972277 + ], + [ + 70.5820205848368, + 13.752286313972277 + ], + [ + 70.69686326832048, + 13.557638579043823 + ], + [ + 70.81170595180416, + 13.752286313972277 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 13.752286313972277 + ], + [ + 70.69686326832048, + 13.557638579043823 + ], + [ + 70.92654863528783, + 13.557638579043823 + ], + [ + 70.81170595180416, + 13.752286313972277 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 13.752286313972277 + ], + [ + 70.92654863528783, + 13.557638579043823 + ], + [ + 71.04139131877152, + 13.752286313972277 + ], + [ + 70.81170595180416, + 13.752286313972277 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 14.141581783829183 + ], + [ + 71.04139131877152, + 14.141581783829183 + ], + [ + 70.92654863528783, + 14.336229518757637 + ], + [ + 70.81170595180416, + 14.141581783829183 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 14.141581783829183 + ], + [ + 70.92654863528783, + 14.336229518757637 + ], + [ + 70.69686326832048, + 14.336229518757637 + ], + [ + 70.81170595180416, + 14.141581783829183 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 14.141581783829183 + ], + [ + 70.69686326832048, + 14.336229518757637 + ], + [ + 70.5820205848368, + 14.141581783829183 + ], + [ + 70.81170595180416, + 14.141581783829183 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 14.141581783829183 + ], + [ + 70.5820205848368, + 14.141581783829183 + ], + [ + 70.69686326832048, + 13.94693404890073 + ], + [ + 70.81170595180416, + 14.141581783829183 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 14.141581783829183 + ], + [ + 70.69686326832048, + 13.94693404890073 + ], + [ + 70.92654863528783, + 13.94693404890073 + ], + [ + 70.81170595180416, + 14.141581783829183 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 14.141581783829183 + ], + [ + 70.92654863528783, + 13.94693404890073 + ], + [ + 71.04139131877152, + 14.141581783829183 + ], + [ + 70.81170595180416, + 14.141581783829183 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 14.530877253686091 + ], + [ + 71.04139131877152, + 14.530877253686091 + ], + [ + 70.92654863528783, + 14.725524988614545 + ], + [ + 70.81170595180416, + 14.530877253686091 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 14.530877253686091 + ], + [ + 70.92654863528783, + 14.725524988614545 + ], + [ + 70.69686326832048, + 14.725524988614545 + ], + [ + 70.81170595180416, + 14.530877253686091 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 14.530877253686091 + ], + [ + 70.69686326832048, + 14.725524988614545 + ], + [ + 70.5820205848368, + 14.530877253686091 + ], + [ + 70.81170595180416, + 14.530877253686091 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 14.530877253686091 + ], + [ + 70.5820205848368, + 14.530877253686091 + ], + [ + 70.69686326832048, + 14.336229518757637 + ], + [ + 70.81170595180416, + 14.530877253686091 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 14.530877253686091 + ], + [ + 70.69686326832048, + 14.336229518757637 + ], + [ + 70.92654863528783, + 14.336229518757637 + ], + [ + 70.81170595180416, + 14.530877253686091 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 14.530877253686091 + ], + [ + 70.92654863528783, + 14.336229518757637 + ], + [ + 71.04139131877152, + 14.530877253686091 + ], + [ + 70.81170595180416, + 14.530877253686091 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 14.920172723542997 + ], + [ + 71.04139131877152, + 14.920172723542997 + ], + [ + 70.92654863528783, + 15.114820458471451 + ], + [ + 70.81170595180416, + 14.920172723542997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 14.920172723542997 + ], + [ + 70.92654863528783, + 15.114820458471451 + ], + [ + 70.69686326832048, + 15.114820458471451 + ], + [ + 70.81170595180416, + 14.920172723542997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 14.920172723542997 + ], + [ + 70.69686326832048, + 15.114820458471451 + ], + [ + 70.5820205848368, + 14.920172723542997 + ], + [ + 70.81170595180416, + 14.920172723542997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 14.920172723542997 + ], + [ + 70.5820205848368, + 14.920172723542997 + ], + [ + 70.69686326832048, + 14.725524988614543 + ], + [ + 70.81170595180416, + 14.920172723542997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 14.920172723542997 + ], + [ + 70.69686326832048, + 14.725524988614543 + ], + [ + 70.92654863528783, + 14.725524988614543 + ], + [ + 70.81170595180416, + 14.920172723542997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 14.920172723542997 + ], + [ + 70.92654863528783, + 14.725524988614543 + ], + [ + 71.04139131877152, + 14.920172723542997 + ], + [ + 70.81170595180416, + 14.920172723542997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 15.309468193399903 + ], + [ + 71.04139131877152, + 15.309468193399903 + ], + [ + 70.92654863528783, + 15.504115928328357 + ], + [ + 70.81170595180416, + 15.309468193399903 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 15.309468193399903 + ], + [ + 70.92654863528783, + 15.504115928328357 + ], + [ + 70.69686326832048, + 15.504115928328357 + ], + [ + 70.81170595180416, + 15.309468193399903 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 15.309468193399903 + ], + [ + 70.69686326832048, + 15.504115928328357 + ], + [ + 70.5820205848368, + 15.309468193399903 + ], + [ + 70.81170595180416, + 15.309468193399903 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 15.309468193399903 + ], + [ + 70.5820205848368, + 15.309468193399903 + ], + [ + 70.69686326832048, + 15.11482045847145 + ], + [ + 70.81170595180416, + 15.309468193399903 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 15.309468193399903 + ], + [ + 70.69686326832048, + 15.11482045847145 + ], + [ + 70.92654863528783, + 15.11482045847145 + ], + [ + 70.81170595180416, + 15.309468193399903 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 15.309468193399903 + ], + [ + 70.92654863528783, + 15.11482045847145 + ], + [ + 71.04139131877152, + 15.309468193399903 + ], + [ + 70.81170595180416, + 15.309468193399903 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 15.69876366325681 + ], + [ + 71.04139131877152, + 15.69876366325681 + ], + [ + 70.92654863528783, + 15.893411398185265 + ], + [ + 70.81170595180416, + 15.69876366325681 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 15.69876366325681 + ], + [ + 70.92654863528783, + 15.893411398185265 + ], + [ + 70.69686326832048, + 15.893411398185265 + ], + [ + 70.81170595180416, + 15.69876366325681 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 15.69876366325681 + ], + [ + 70.69686326832048, + 15.893411398185265 + ], + [ + 70.5820205848368, + 15.69876366325681 + ], + [ + 70.81170595180416, + 15.69876366325681 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 15.69876366325681 + ], + [ + 70.5820205848368, + 15.69876366325681 + ], + [ + 70.69686326832048, + 15.504115928328357 + ], + [ + 70.81170595180416, + 15.69876366325681 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 15.69876366325681 + ], + [ + 70.69686326832048, + 15.504115928328357 + ], + [ + 70.92654863528783, + 15.504115928328357 + ], + [ + 70.81170595180416, + 15.69876366325681 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 15.69876366325681 + ], + [ + 70.92654863528783, + 15.504115928328357 + ], + [ + 71.04139131877152, + 15.69876366325681 + ], + [ + 70.81170595180416, + 15.69876366325681 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 16.088059133113717 + ], + [ + 71.04139131877152, + 16.088059133113717 + ], + [ + 70.92654863528783, + 16.28270686804217 + ], + [ + 70.81170595180416, + 16.088059133113717 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 16.088059133113717 + ], + [ + 70.92654863528783, + 16.28270686804217 + ], + [ + 70.69686326832048, + 16.28270686804217 + ], + [ + 70.81170595180416, + 16.088059133113717 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 16.088059133113717 + ], + [ + 70.69686326832048, + 16.28270686804217 + ], + [ + 70.5820205848368, + 16.088059133113717 + ], + [ + 70.81170595180416, + 16.088059133113717 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 16.088059133113717 + ], + [ + 70.5820205848368, + 16.088059133113717 + ], + [ + 70.69686326832048, + 15.893411398185263 + ], + [ + 70.81170595180416, + 16.088059133113717 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 16.088059133113717 + ], + [ + 70.69686326832048, + 15.893411398185263 + ], + [ + 70.92654863528783, + 15.893411398185263 + ], + [ + 70.81170595180416, + 16.088059133113717 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 16.088059133113717 + ], + [ + 70.92654863528783, + 15.893411398185263 + ], + [ + 71.04139131877152, + 16.088059133113717 + ], + [ + 70.81170595180416, + 16.088059133113717 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 16.477354602970625 + ], + [ + 71.04139131877152, + 16.477354602970625 + ], + [ + 70.92654863528783, + 16.672002337899077 + ], + [ + 70.81170595180416, + 16.477354602970625 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 16.477354602970625 + ], + [ + 70.92654863528783, + 16.672002337899077 + ], + [ + 70.69686326832048, + 16.672002337899077 + ], + [ + 70.81170595180416, + 16.477354602970625 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 16.477354602970625 + ], + [ + 70.69686326832048, + 16.672002337899077 + ], + [ + 70.5820205848368, + 16.477354602970625 + ], + [ + 70.81170595180416, + 16.477354602970625 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 16.477354602970625 + ], + [ + 70.5820205848368, + 16.477354602970625 + ], + [ + 70.69686326832048, + 16.282706868042172 + ], + [ + 70.81170595180416, + 16.477354602970625 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 16.477354602970625 + ], + [ + 70.69686326832048, + 16.282706868042172 + ], + [ + 70.92654863528783, + 16.282706868042172 + ], + [ + 70.81170595180416, + 16.477354602970625 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 16.477354602970625 + ], + [ + 70.92654863528783, + 16.282706868042172 + ], + [ + 71.04139131877152, + 16.477354602970625 + ], + [ + 70.81170595180416, + 16.477354602970625 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 16.86665007282753 + ], + [ + 71.04139131877152, + 16.86665007282753 + ], + [ + 70.92654863528783, + 17.06129780775598 + ], + [ + 70.81170595180416, + 16.86665007282753 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 16.86665007282753 + ], + [ + 70.92654863528783, + 17.06129780775598 + ], + [ + 70.69686326832048, + 17.06129780775598 + ], + [ + 70.81170595180416, + 16.86665007282753 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 16.86665007282753 + ], + [ + 70.69686326832048, + 17.06129780775598 + ], + [ + 70.5820205848368, + 16.86665007282753 + ], + [ + 70.81170595180416, + 16.86665007282753 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 16.86665007282753 + ], + [ + 70.5820205848368, + 16.86665007282753 + ], + [ + 70.69686326832048, + 16.672002337899077 + ], + [ + 70.81170595180416, + 16.86665007282753 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 16.86665007282753 + ], + [ + 70.69686326832048, + 16.672002337899077 + ], + [ + 70.92654863528783, + 16.672002337899077 + ], + [ + 70.81170595180416, + 16.86665007282753 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 16.86665007282753 + ], + [ + 70.92654863528783, + 16.672002337899077 + ], + [ + 71.04139131877152, + 16.86665007282753 + ], + [ + 70.81170595180416, + 16.86665007282753 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 17.255945542684437 + ], + [ + 71.04139131877152, + 17.255945542684437 + ], + [ + 70.92654863528783, + 17.45059327761289 + ], + [ + 70.81170595180416, + 17.255945542684437 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 17.255945542684437 + ], + [ + 70.92654863528783, + 17.45059327761289 + ], + [ + 70.69686326832048, + 17.45059327761289 + ], + [ + 70.81170595180416, + 17.255945542684437 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 17.255945542684437 + ], + [ + 70.69686326832048, + 17.45059327761289 + ], + [ + 70.5820205848368, + 17.255945542684437 + ], + [ + 70.81170595180416, + 17.255945542684437 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 17.255945542684437 + ], + [ + 70.5820205848368, + 17.255945542684437 + ], + [ + 70.69686326832048, + 17.061297807755984 + ], + [ + 70.81170595180416, + 17.255945542684437 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 17.255945542684437 + ], + [ + 70.69686326832048, + 17.061297807755984 + ], + [ + 70.92654863528783, + 17.061297807755984 + ], + [ + 70.81170595180416, + 17.255945542684437 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 17.255945542684437 + ], + [ + 70.92654863528783, + 17.061297807755984 + ], + [ + 71.04139131877152, + 17.255945542684437 + ], + [ + 70.81170595180416, + 17.255945542684437 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 17.64524101254134 + ], + [ + 71.04139131877152, + 17.64524101254134 + ], + [ + 70.92654863528783, + 17.839888747469793 + ], + [ + 70.81170595180416, + 17.64524101254134 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 17.64524101254134 + ], + [ + 70.92654863528783, + 17.839888747469793 + ], + [ + 70.69686326832048, + 17.839888747469793 + ], + [ + 70.81170595180416, + 17.64524101254134 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 17.64524101254134 + ], + [ + 70.69686326832048, + 17.839888747469793 + ], + [ + 70.5820205848368, + 17.64524101254134 + ], + [ + 70.81170595180416, + 17.64524101254134 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 17.64524101254134 + ], + [ + 70.5820205848368, + 17.64524101254134 + ], + [ + 70.69686326832048, + 17.45059327761289 + ], + [ + 70.81170595180416, + 17.64524101254134 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 17.64524101254134 + ], + [ + 70.69686326832048, + 17.45059327761289 + ], + [ + 70.92654863528783, + 17.45059327761289 + ], + [ + 70.81170595180416, + 17.64524101254134 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 17.64524101254134 + ], + [ + 70.92654863528783, + 17.45059327761289 + ], + [ + 71.04139131877152, + 17.64524101254134 + ], + [ + 70.81170595180416, + 17.64524101254134 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 18.03453648239825 + ], + [ + 71.04139131877152, + 18.03453648239825 + ], + [ + 70.92654863528783, + 18.2291842173267 + ], + [ + 70.81170595180416, + 18.03453648239825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 18.03453648239825 + ], + [ + 70.92654863528783, + 18.2291842173267 + ], + [ + 70.69686326832048, + 18.2291842173267 + ], + [ + 70.81170595180416, + 18.03453648239825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 18.03453648239825 + ], + [ + 70.69686326832048, + 18.2291842173267 + ], + [ + 70.5820205848368, + 18.03453648239825 + ], + [ + 70.81170595180416, + 18.03453648239825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 18.03453648239825 + ], + [ + 70.5820205848368, + 18.03453648239825 + ], + [ + 70.69686326832048, + 17.839888747469796 + ], + [ + 70.81170595180416, + 18.03453648239825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 18.03453648239825 + ], + [ + 70.69686326832048, + 17.839888747469796 + ], + [ + 70.92654863528783, + 17.839888747469796 + ], + [ + 70.81170595180416, + 18.03453648239825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 18.03453648239825 + ], + [ + 70.92654863528783, + 17.839888747469796 + ], + [ + 71.04139131877152, + 18.03453648239825 + ], + [ + 70.81170595180416, + 18.03453648239825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 18.423831952255156 + ], + [ + 71.04139131877152, + 18.423831952255156 + ], + [ + 70.92654863528783, + 18.61847968718361 + ], + [ + 70.81170595180416, + 18.423831952255156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 18.423831952255156 + ], + [ + 70.92654863528783, + 18.61847968718361 + ], + [ + 70.69686326832048, + 18.61847968718361 + ], + [ + 70.81170595180416, + 18.423831952255156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 18.423831952255156 + ], + [ + 70.69686326832048, + 18.61847968718361 + ], + [ + 70.5820205848368, + 18.423831952255156 + ], + [ + 70.81170595180416, + 18.423831952255156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 18.423831952255156 + ], + [ + 70.5820205848368, + 18.423831952255156 + ], + [ + 70.69686326832048, + 18.229184217326704 + ], + [ + 70.81170595180416, + 18.423831952255156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 18.423831952255156 + ], + [ + 70.69686326832048, + 18.229184217326704 + ], + [ + 70.92654863528783, + 18.229184217326704 + ], + [ + 70.81170595180416, + 18.423831952255156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 18.423831952255156 + ], + [ + 70.92654863528783, + 18.229184217326704 + ], + [ + 71.04139131877152, + 18.423831952255156 + ], + [ + 70.81170595180416, + 18.423831952255156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 18.81312742211206 + ], + [ + 71.04139131877152, + 18.81312742211206 + ], + [ + 70.92654863528783, + 19.007775157040513 + ], + [ + 70.81170595180416, + 18.81312742211206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 18.81312742211206 + ], + [ + 70.92654863528783, + 19.007775157040513 + ], + [ + 70.69686326832048, + 19.007775157040513 + ], + [ + 70.81170595180416, + 18.81312742211206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 18.81312742211206 + ], + [ + 70.69686326832048, + 19.007775157040513 + ], + [ + 70.5820205848368, + 18.81312742211206 + ], + [ + 70.81170595180416, + 18.81312742211206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 18.81312742211206 + ], + [ + 70.5820205848368, + 18.81312742211206 + ], + [ + 70.69686326832048, + 18.61847968718361 + ], + [ + 70.81170595180416, + 18.81312742211206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 18.81312742211206 + ], + [ + 70.69686326832048, + 18.61847968718361 + ], + [ + 70.92654863528783, + 18.61847968718361 + ], + [ + 70.81170595180416, + 18.81312742211206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 18.81312742211206 + ], + [ + 70.92654863528783, + 18.61847968718361 + ], + [ + 71.04139131877152, + 18.81312742211206 + ], + [ + 70.81170595180416, + 18.81312742211206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 19.20242289196897 + ], + [ + 71.04139131877152, + 19.20242289196897 + ], + [ + 70.92654863528783, + 19.39707062689742 + ], + [ + 70.81170595180416, + 19.20242289196897 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 19.20242289196897 + ], + [ + 70.92654863528783, + 19.39707062689742 + ], + [ + 70.69686326832048, + 19.39707062689742 + ], + [ + 70.81170595180416, + 19.20242289196897 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 19.20242289196897 + ], + [ + 70.69686326832048, + 19.39707062689742 + ], + [ + 70.5820205848368, + 19.20242289196897 + ], + [ + 70.81170595180416, + 19.20242289196897 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 19.20242289196897 + ], + [ + 70.5820205848368, + 19.20242289196897 + ], + [ + 70.69686326832048, + 19.007775157040516 + ], + [ + 70.81170595180416, + 19.20242289196897 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 19.20242289196897 + ], + [ + 70.69686326832048, + 19.007775157040516 + ], + [ + 70.92654863528783, + 19.007775157040516 + ], + [ + 70.81170595180416, + 19.20242289196897 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 19.20242289196897 + ], + [ + 70.92654863528783, + 19.007775157040516 + ], + [ + 71.04139131877152, + 19.20242289196897 + ], + [ + 70.81170595180416, + 19.20242289196897 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 19.591718361825876 + ], + [ + 71.04139131877152, + 19.591718361825876 + ], + [ + 70.92654863528783, + 19.78636609675433 + ], + [ + 70.81170595180416, + 19.591718361825876 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 19.591718361825876 + ], + [ + 70.92654863528783, + 19.78636609675433 + ], + [ + 70.69686326832048, + 19.78636609675433 + ], + [ + 70.81170595180416, + 19.591718361825876 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 19.591718361825876 + ], + [ + 70.69686326832048, + 19.78636609675433 + ], + [ + 70.5820205848368, + 19.591718361825876 + ], + [ + 70.81170595180416, + 19.591718361825876 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 19.591718361825876 + ], + [ + 70.5820205848368, + 19.591718361825876 + ], + [ + 70.69686326832048, + 19.397070626897424 + ], + [ + 70.81170595180416, + 19.591718361825876 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 19.591718361825876 + ], + [ + 70.69686326832048, + 19.397070626897424 + ], + [ + 70.92654863528783, + 19.397070626897424 + ], + [ + 70.81170595180416, + 19.591718361825876 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 19.591718361825876 + ], + [ + 70.92654863528783, + 19.397070626897424 + ], + [ + 71.04139131877152, + 19.591718361825876 + ], + [ + 70.81170595180416, + 19.591718361825876 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 19.98101383168278 + ], + [ + 71.04139131877152, + 19.98101383168278 + ], + [ + 70.92654863528783, + 20.175661566611232 + ], + [ + 70.81170595180416, + 19.98101383168278 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 19.98101383168278 + ], + [ + 70.92654863528783, + 20.175661566611232 + ], + [ + 70.69686326832048, + 20.175661566611232 + ], + [ + 70.81170595180416, + 19.98101383168278 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 19.98101383168278 + ], + [ + 70.69686326832048, + 20.175661566611232 + ], + [ + 70.5820205848368, + 19.98101383168278 + ], + [ + 70.81170595180416, + 19.98101383168278 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 19.98101383168278 + ], + [ + 70.5820205848368, + 19.98101383168278 + ], + [ + 70.69686326832048, + 19.78636609675433 + ], + [ + 70.81170595180416, + 19.98101383168278 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 19.98101383168278 + ], + [ + 70.69686326832048, + 19.78636609675433 + ], + [ + 70.92654863528783, + 19.78636609675433 + ], + [ + 70.81170595180416, + 19.98101383168278 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 19.98101383168278 + ], + [ + 70.92654863528783, + 19.78636609675433 + ], + [ + 71.04139131877152, + 19.98101383168278 + ], + [ + 70.81170595180416, + 19.98101383168278 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 20.370309301539685 + ], + [ + 71.04139131877152, + 20.370309301539685 + ], + [ + 70.92654863528783, + 20.564957036468137 + ], + [ + 70.81170595180416, + 20.370309301539685 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 20.370309301539685 + ], + [ + 70.92654863528783, + 20.564957036468137 + ], + [ + 70.69686326832048, + 20.564957036468137 + ], + [ + 70.81170595180416, + 20.370309301539685 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 20.370309301539685 + ], + [ + 70.69686326832048, + 20.564957036468137 + ], + [ + 70.5820205848368, + 20.370309301539685 + ], + [ + 70.81170595180416, + 20.370309301539685 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 20.370309301539685 + ], + [ + 70.5820205848368, + 20.370309301539685 + ], + [ + 70.69686326832048, + 20.175661566611232 + ], + [ + 70.81170595180416, + 20.370309301539685 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 20.370309301539685 + ], + [ + 70.69686326832048, + 20.175661566611232 + ], + [ + 70.92654863528783, + 20.175661566611232 + ], + [ + 70.81170595180416, + 20.370309301539685 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 20.370309301539685 + ], + [ + 70.92654863528783, + 20.175661566611232 + ], + [ + 71.04139131877152, + 20.370309301539685 + ], + [ + 70.81170595180416, + 20.370309301539685 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 20.759604771396592 + ], + [ + 71.04139131877152, + 20.759604771396592 + ], + [ + 70.92654863528783, + 20.954252506325044 + ], + [ + 70.81170595180416, + 20.759604771396592 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 20.759604771396592 + ], + [ + 70.92654863528783, + 20.954252506325044 + ], + [ + 70.69686326832048, + 20.954252506325044 + ], + [ + 70.81170595180416, + 20.759604771396592 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 20.759604771396592 + ], + [ + 70.69686326832048, + 20.954252506325044 + ], + [ + 70.5820205848368, + 20.759604771396592 + ], + [ + 70.81170595180416, + 20.759604771396592 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 20.759604771396592 + ], + [ + 70.5820205848368, + 20.759604771396592 + ], + [ + 70.69686326832048, + 20.56495703646814 + ], + [ + 70.81170595180416, + 20.759604771396592 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 20.759604771396592 + ], + [ + 70.69686326832048, + 20.56495703646814 + ], + [ + 70.92654863528783, + 20.56495703646814 + ], + [ + 70.81170595180416, + 20.759604771396592 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 20.759604771396592 + ], + [ + 70.92654863528783, + 20.56495703646814 + ], + [ + 71.04139131877152, + 20.759604771396592 + ], + [ + 70.81170595180416, + 20.759604771396592 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 21.1489002412535 + ], + [ + 71.04139131877152, + 21.1489002412535 + ], + [ + 70.92654863528783, + 21.343547976181952 + ], + [ + 70.81170595180416, + 21.1489002412535 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 21.1489002412535 + ], + [ + 70.92654863528783, + 21.343547976181952 + ], + [ + 70.69686326832048, + 21.343547976181952 + ], + [ + 70.81170595180416, + 21.1489002412535 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 21.1489002412535 + ], + [ + 70.69686326832048, + 21.343547976181952 + ], + [ + 70.5820205848368, + 21.1489002412535 + ], + [ + 70.81170595180416, + 21.1489002412535 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 21.1489002412535 + ], + [ + 70.5820205848368, + 21.1489002412535 + ], + [ + 70.69686326832048, + 20.954252506325048 + ], + [ + 70.81170595180416, + 21.1489002412535 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 21.1489002412535 + ], + [ + 70.69686326832048, + 20.954252506325048 + ], + [ + 70.92654863528783, + 20.954252506325048 + ], + [ + 70.81170595180416, + 21.1489002412535 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 21.1489002412535 + ], + [ + 70.92654863528783, + 20.954252506325048 + ], + [ + 71.04139131877152, + 21.1489002412535 + ], + [ + 70.81170595180416, + 21.1489002412535 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 21.538195711110404 + ], + [ + 71.04139131877152, + 21.538195711110404 + ], + [ + 70.92654863528783, + 21.732843446038856 + ], + [ + 70.81170595180416, + 21.538195711110404 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 21.538195711110404 + ], + [ + 70.92654863528783, + 21.732843446038856 + ], + [ + 70.69686326832048, + 21.732843446038856 + ], + [ + 70.81170595180416, + 21.538195711110404 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 21.538195711110404 + ], + [ + 70.69686326832048, + 21.732843446038856 + ], + [ + 70.5820205848368, + 21.538195711110404 + ], + [ + 70.81170595180416, + 21.538195711110404 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 21.538195711110404 + ], + [ + 70.5820205848368, + 21.538195711110404 + ], + [ + 70.69686326832048, + 21.343547976181952 + ], + [ + 70.81170595180416, + 21.538195711110404 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 21.538195711110404 + ], + [ + 70.69686326832048, + 21.343547976181952 + ], + [ + 70.92654863528783, + 21.343547976181952 + ], + [ + 70.81170595180416, + 21.538195711110404 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 21.538195711110404 + ], + [ + 70.92654863528783, + 21.343547976181952 + ], + [ + 71.04139131877152, + 21.538195711110404 + ], + [ + 70.81170595180416, + 21.538195711110404 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 21.927491180967312 + ], + [ + 71.04139131877152, + 21.927491180967312 + ], + [ + 70.92654863528783, + 22.122138915895764 + ], + [ + 70.81170595180416, + 21.927491180967312 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 21.927491180967312 + ], + [ + 70.92654863528783, + 22.122138915895764 + ], + [ + 70.69686326832048, + 22.122138915895764 + ], + [ + 70.81170595180416, + 21.927491180967312 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 21.927491180967312 + ], + [ + 70.69686326832048, + 22.122138915895764 + ], + [ + 70.5820205848368, + 21.927491180967312 + ], + [ + 70.81170595180416, + 21.927491180967312 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 21.927491180967312 + ], + [ + 70.5820205848368, + 21.927491180967312 + ], + [ + 70.69686326832048, + 21.73284344603886 + ], + [ + 70.81170595180416, + 21.927491180967312 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 21.927491180967312 + ], + [ + 70.69686326832048, + 21.73284344603886 + ], + [ + 70.92654863528783, + 21.73284344603886 + ], + [ + 70.81170595180416, + 21.927491180967312 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 21.927491180967312 + ], + [ + 70.92654863528783, + 21.73284344603886 + ], + [ + 71.04139131877152, + 21.927491180967312 + ], + [ + 70.81170595180416, + 21.927491180967312 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 22.31678665082422 + ], + [ + 71.04139131877152, + 22.31678665082422 + ], + [ + 70.92654863528783, + 22.511434385752672 + ], + [ + 70.81170595180416, + 22.31678665082422 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 22.31678665082422 + ], + [ + 70.92654863528783, + 22.511434385752672 + ], + [ + 70.69686326832048, + 22.511434385752672 + ], + [ + 70.81170595180416, + 22.31678665082422 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 22.31678665082422 + ], + [ + 70.69686326832048, + 22.511434385752672 + ], + [ + 70.5820205848368, + 22.31678665082422 + ], + [ + 70.81170595180416, + 22.31678665082422 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 22.31678665082422 + ], + [ + 70.5820205848368, + 22.31678665082422 + ], + [ + 70.69686326832048, + 22.122138915895768 + ], + [ + 70.81170595180416, + 22.31678665082422 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 22.31678665082422 + ], + [ + 70.69686326832048, + 22.122138915895768 + ], + [ + 70.92654863528783, + 22.122138915895768 + ], + [ + 70.81170595180416, + 22.31678665082422 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 22.31678665082422 + ], + [ + 70.92654863528783, + 22.122138915895768 + ], + [ + 71.04139131877152, + 22.31678665082422 + ], + [ + 70.81170595180416, + 22.31678665082422 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 22.706082120681124 + ], + [ + 71.04139131877152, + 22.706082120681124 + ], + [ + 70.92654863528783, + 22.900729855609576 + ], + [ + 70.81170595180416, + 22.706082120681124 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 22.706082120681124 + ], + [ + 70.92654863528783, + 22.900729855609576 + ], + [ + 70.69686326832048, + 22.900729855609576 + ], + [ + 70.81170595180416, + 22.706082120681124 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 22.706082120681124 + ], + [ + 70.69686326832048, + 22.900729855609576 + ], + [ + 70.5820205848368, + 22.706082120681124 + ], + [ + 70.81170595180416, + 22.706082120681124 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 22.706082120681124 + ], + [ + 70.5820205848368, + 22.706082120681124 + ], + [ + 70.69686326832048, + 22.511434385752672 + ], + [ + 70.81170595180416, + 22.706082120681124 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 22.706082120681124 + ], + [ + 70.69686326832048, + 22.511434385752672 + ], + [ + 70.92654863528783, + 22.511434385752672 + ], + [ + 70.81170595180416, + 22.706082120681124 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 22.706082120681124 + ], + [ + 70.92654863528783, + 22.511434385752672 + ], + [ + 71.04139131877152, + 22.706082120681124 + ], + [ + 70.81170595180416, + 22.706082120681124 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 23.095377590538032 + ], + [ + 71.04139131877152, + 23.095377590538032 + ], + [ + 70.92654863528783, + 23.290025325466484 + ], + [ + 70.81170595180416, + 23.095377590538032 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 23.095377590538032 + ], + [ + 70.92654863528783, + 23.290025325466484 + ], + [ + 70.69686326832048, + 23.290025325466484 + ], + [ + 70.81170595180416, + 23.095377590538032 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 23.095377590538032 + ], + [ + 70.69686326832048, + 23.290025325466484 + ], + [ + 70.5820205848368, + 23.095377590538032 + ], + [ + 70.81170595180416, + 23.095377590538032 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 23.095377590538032 + ], + [ + 70.5820205848368, + 23.095377590538032 + ], + [ + 70.69686326832048, + 22.90072985560958 + ], + [ + 70.81170595180416, + 23.095377590538032 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 23.095377590538032 + ], + [ + 70.69686326832048, + 22.90072985560958 + ], + [ + 70.92654863528783, + 22.90072985560958 + ], + [ + 70.81170595180416, + 23.095377590538032 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 23.095377590538032 + ], + [ + 70.92654863528783, + 22.90072985560958 + ], + [ + 71.04139131877152, + 23.095377590538032 + ], + [ + 70.81170595180416, + 23.095377590538032 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 23.48467306039494 + ], + [ + 71.04139131877152, + 23.48467306039494 + ], + [ + 70.92654863528783, + 23.67932079532339 + ], + [ + 70.81170595180416, + 23.48467306039494 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 23.48467306039494 + ], + [ + 70.92654863528783, + 23.67932079532339 + ], + [ + 70.69686326832048, + 23.67932079532339 + ], + [ + 70.81170595180416, + 23.48467306039494 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 23.48467306039494 + ], + [ + 70.69686326832048, + 23.67932079532339 + ], + [ + 70.5820205848368, + 23.48467306039494 + ], + [ + 70.81170595180416, + 23.48467306039494 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 23.48467306039494 + ], + [ + 70.5820205848368, + 23.48467306039494 + ], + [ + 70.69686326832048, + 23.290025325466488 + ], + [ + 70.81170595180416, + 23.48467306039494 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 23.48467306039494 + ], + [ + 70.69686326832048, + 23.290025325466488 + ], + [ + 70.92654863528783, + 23.290025325466488 + ], + [ + 70.81170595180416, + 23.48467306039494 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 23.48467306039494 + ], + [ + 70.92654863528783, + 23.290025325466488 + ], + [ + 71.04139131877152, + 23.48467306039494 + ], + [ + 70.81170595180416, + 23.48467306039494 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 23.873968530251844 + ], + [ + 71.04139131877152, + 23.873968530251844 + ], + [ + 70.92654863528783, + 24.068616265180296 + ], + [ + 70.81170595180416, + 23.873968530251844 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 23.873968530251844 + ], + [ + 70.92654863528783, + 24.068616265180296 + ], + [ + 70.69686326832048, + 24.068616265180296 + ], + [ + 70.81170595180416, + 23.873968530251844 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 23.873968530251844 + ], + [ + 70.69686326832048, + 24.068616265180296 + ], + [ + 70.5820205848368, + 23.873968530251844 + ], + [ + 70.81170595180416, + 23.873968530251844 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 23.873968530251844 + ], + [ + 70.5820205848368, + 23.873968530251844 + ], + [ + 70.69686326832048, + 23.67932079532339 + ], + [ + 70.81170595180416, + 23.873968530251844 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 23.873968530251844 + ], + [ + 70.69686326832048, + 23.67932079532339 + ], + [ + 70.92654863528783, + 23.67932079532339 + ], + [ + 70.81170595180416, + 23.873968530251844 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 23.873968530251844 + ], + [ + 70.92654863528783, + 23.67932079532339 + ], + [ + 71.04139131877152, + 23.873968530251844 + ], + [ + 70.81170595180416, + 23.873968530251844 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 24.263264000108748 + ], + [ + 71.04139131877152, + 24.263264000108748 + ], + [ + 70.92654863528783, + 24.4579117350372 + ], + [ + 70.81170595180416, + 24.263264000108748 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 24.263264000108748 + ], + [ + 70.92654863528783, + 24.4579117350372 + ], + [ + 70.69686326832048, + 24.4579117350372 + ], + [ + 70.81170595180416, + 24.263264000108748 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 24.263264000108748 + ], + [ + 70.69686326832048, + 24.4579117350372 + ], + [ + 70.5820205848368, + 24.263264000108748 + ], + [ + 70.81170595180416, + 24.263264000108748 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 24.263264000108748 + ], + [ + 70.5820205848368, + 24.263264000108748 + ], + [ + 70.69686326832048, + 24.068616265180296 + ], + [ + 70.81170595180416, + 24.263264000108748 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 24.263264000108748 + ], + [ + 70.69686326832048, + 24.068616265180296 + ], + [ + 70.92654863528783, + 24.068616265180296 + ], + [ + 70.81170595180416, + 24.263264000108748 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 24.263264000108748 + ], + [ + 70.92654863528783, + 24.068616265180296 + ], + [ + 71.04139131877152, + 24.263264000108748 + ], + [ + 70.81170595180416, + 24.263264000108748 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 24.652559469965656 + ], + [ + 71.04139131877152, + 24.652559469965656 + ], + [ + 70.92654863528783, + 24.847207204894108 + ], + [ + 70.81170595180416, + 24.652559469965656 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 24.652559469965656 + ], + [ + 70.92654863528783, + 24.847207204894108 + ], + [ + 70.69686326832048, + 24.847207204894108 + ], + [ + 70.81170595180416, + 24.652559469965656 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 24.652559469965656 + ], + [ + 70.69686326832048, + 24.847207204894108 + ], + [ + 70.5820205848368, + 24.652559469965656 + ], + [ + 70.81170595180416, + 24.652559469965656 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 24.652559469965656 + ], + [ + 70.5820205848368, + 24.652559469965656 + ], + [ + 70.69686326832048, + 24.457911735037204 + ], + [ + 70.81170595180416, + 24.652559469965656 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 24.652559469965656 + ], + [ + 70.69686326832048, + 24.457911735037204 + ], + [ + 70.92654863528783, + 24.457911735037204 + ], + [ + 70.81170595180416, + 24.652559469965656 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 24.652559469965656 + ], + [ + 70.92654863528783, + 24.457911735037204 + ], + [ + 71.04139131877152, + 24.652559469965656 + ], + [ + 70.81170595180416, + 24.652559469965656 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 25.041854939822564 + ], + [ + 71.04139131877152, + 25.041854939822564 + ], + [ + 70.92654863528783, + 25.236502674751016 + ], + [ + 70.81170595180416, + 25.041854939822564 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 25.041854939822564 + ], + [ + 70.92654863528783, + 25.236502674751016 + ], + [ + 70.69686326832048, + 25.236502674751016 + ], + [ + 70.81170595180416, + 25.041854939822564 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 25.041854939822564 + ], + [ + 70.69686326832048, + 25.236502674751016 + ], + [ + 70.5820205848368, + 25.041854939822564 + ], + [ + 70.81170595180416, + 25.041854939822564 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 25.041854939822564 + ], + [ + 70.5820205848368, + 25.041854939822564 + ], + [ + 70.69686326832048, + 24.84720720489411 + ], + [ + 70.81170595180416, + 25.041854939822564 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 25.041854939822564 + ], + [ + 70.69686326832048, + 24.84720720489411 + ], + [ + 70.92654863528783, + 24.84720720489411 + ], + [ + 70.81170595180416, + 25.041854939822564 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 25.041854939822564 + ], + [ + 70.92654863528783, + 24.84720720489411 + ], + [ + 71.04139131877152, + 25.041854939822564 + ], + [ + 70.81170595180416, + 25.041854939822564 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 25.431150409679468 + ], + [ + 71.04139131877152, + 25.431150409679468 + ], + [ + 70.92654863528783, + 25.62579814460792 + ], + [ + 70.81170595180416, + 25.431150409679468 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 25.431150409679468 + ], + [ + 70.92654863528783, + 25.62579814460792 + ], + [ + 70.69686326832048, + 25.62579814460792 + ], + [ + 70.81170595180416, + 25.431150409679468 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 25.431150409679468 + ], + [ + 70.69686326832048, + 25.62579814460792 + ], + [ + 70.5820205848368, + 25.431150409679468 + ], + [ + 70.81170595180416, + 25.431150409679468 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 25.431150409679468 + ], + [ + 70.5820205848368, + 25.431150409679468 + ], + [ + 70.69686326832048, + 25.236502674751016 + ], + [ + 70.81170595180416, + 25.431150409679468 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 25.431150409679468 + ], + [ + 70.69686326832048, + 25.236502674751016 + ], + [ + 70.92654863528783, + 25.236502674751016 + ], + [ + 70.81170595180416, + 25.431150409679468 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 25.431150409679468 + ], + [ + 70.92654863528783, + 25.236502674751016 + ], + [ + 71.04139131877152, + 25.431150409679468 + ], + [ + 70.81170595180416, + 25.431150409679468 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 25.820445879536376 + ], + [ + 71.04139131877152, + 25.820445879536376 + ], + [ + 70.92654863528783, + 26.015093614464828 + ], + [ + 70.81170595180416, + 25.820445879536376 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 25.820445879536376 + ], + [ + 70.92654863528783, + 26.015093614464828 + ], + [ + 70.69686326832048, + 26.015093614464828 + ], + [ + 70.81170595180416, + 25.820445879536376 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 25.820445879536376 + ], + [ + 70.69686326832048, + 26.015093614464828 + ], + [ + 70.5820205848368, + 25.820445879536376 + ], + [ + 70.81170595180416, + 25.820445879536376 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 25.820445879536376 + ], + [ + 70.5820205848368, + 25.820445879536376 + ], + [ + 70.69686326832048, + 25.625798144607923 + ], + [ + 70.81170595180416, + 25.820445879536376 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 25.820445879536376 + ], + [ + 70.69686326832048, + 25.625798144607923 + ], + [ + 70.92654863528783, + 25.625798144607923 + ], + [ + 70.81170595180416, + 25.820445879536376 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 25.820445879536376 + ], + [ + 70.92654863528783, + 25.625798144607923 + ], + [ + 71.04139131877152, + 25.820445879536376 + ], + [ + 70.81170595180416, + 25.820445879536376 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 26.209741349393283 + ], + [ + 71.04139131877152, + 26.209741349393283 + ], + [ + 70.92654863528783, + 26.404389084321735 + ], + [ + 70.81170595180416, + 26.209741349393283 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 26.209741349393283 + ], + [ + 70.92654863528783, + 26.404389084321735 + ], + [ + 70.69686326832048, + 26.404389084321735 + ], + [ + 70.81170595180416, + 26.209741349393283 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 26.209741349393283 + ], + [ + 70.69686326832048, + 26.404389084321735 + ], + [ + 70.5820205848368, + 26.209741349393283 + ], + [ + 70.81170595180416, + 26.209741349393283 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 26.209741349393283 + ], + [ + 70.5820205848368, + 26.209741349393283 + ], + [ + 70.69686326832048, + 26.01509361446483 + ], + [ + 70.81170595180416, + 26.209741349393283 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 26.209741349393283 + ], + [ + 70.69686326832048, + 26.01509361446483 + ], + [ + 70.92654863528783, + 26.01509361446483 + ], + [ + 70.81170595180416, + 26.209741349393283 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 26.209741349393283 + ], + [ + 70.92654863528783, + 26.01509361446483 + ], + [ + 71.04139131877152, + 26.209741349393283 + ], + [ + 70.81170595180416, + 26.209741349393283 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 26.599036819250188 + ], + [ + 71.04139131877152, + 26.599036819250188 + ], + [ + 70.92654863528783, + 26.79368455417864 + ], + [ + 70.81170595180416, + 26.599036819250188 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 26.599036819250188 + ], + [ + 70.92654863528783, + 26.79368455417864 + ], + [ + 70.69686326832048, + 26.79368455417864 + ], + [ + 70.81170595180416, + 26.599036819250188 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 26.599036819250188 + ], + [ + 70.69686326832048, + 26.79368455417864 + ], + [ + 70.5820205848368, + 26.599036819250188 + ], + [ + 70.81170595180416, + 26.599036819250188 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 26.599036819250188 + ], + [ + 70.5820205848368, + 26.599036819250188 + ], + [ + 70.69686326832048, + 26.404389084321735 + ], + [ + 70.81170595180416, + 26.599036819250188 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 26.599036819250188 + ], + [ + 70.69686326832048, + 26.404389084321735 + ], + [ + 70.92654863528783, + 26.404389084321735 + ], + [ + 70.81170595180416, + 26.599036819250188 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 26.599036819250188 + ], + [ + 70.92654863528783, + 26.404389084321735 + ], + [ + 71.04139131877152, + 26.599036819250188 + ], + [ + 70.81170595180416, + 26.599036819250188 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 26.988332289107095 + ], + [ + 71.04139131877152, + 26.988332289107095 + ], + [ + 70.92654863528783, + 27.182980024035547 + ], + [ + 70.81170595180416, + 26.988332289107095 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 26.988332289107095 + ], + [ + 70.92654863528783, + 27.182980024035547 + ], + [ + 70.69686326832048, + 27.182980024035547 + ], + [ + 70.81170595180416, + 26.988332289107095 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 26.988332289107095 + ], + [ + 70.69686326832048, + 27.182980024035547 + ], + [ + 70.5820205848368, + 26.988332289107095 + ], + [ + 70.81170595180416, + 26.988332289107095 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 26.988332289107095 + ], + [ + 70.5820205848368, + 26.988332289107095 + ], + [ + 70.69686326832048, + 26.793684554178643 + ], + [ + 70.81170595180416, + 26.988332289107095 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 26.988332289107095 + ], + [ + 70.69686326832048, + 26.793684554178643 + ], + [ + 70.92654863528783, + 26.793684554178643 + ], + [ + 70.81170595180416, + 26.988332289107095 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 26.988332289107095 + ], + [ + 70.92654863528783, + 26.793684554178643 + ], + [ + 71.04139131877152, + 26.988332289107095 + ], + [ + 70.81170595180416, + 26.988332289107095 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 27.377627758964003 + ], + [ + 71.04139131877152, + 27.377627758964003 + ], + [ + 70.92654863528783, + 27.572275493892455 + ], + [ + 70.81170595180416, + 27.377627758964003 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 27.377627758964003 + ], + [ + 70.92654863528783, + 27.572275493892455 + ], + [ + 70.69686326832048, + 27.572275493892455 + ], + [ + 70.81170595180416, + 27.377627758964003 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 27.377627758964003 + ], + [ + 70.69686326832048, + 27.572275493892455 + ], + [ + 70.5820205848368, + 27.377627758964003 + ], + [ + 70.81170595180416, + 27.377627758964003 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 27.377627758964003 + ], + [ + 70.5820205848368, + 27.377627758964003 + ], + [ + 70.69686326832048, + 27.18298002403555 + ], + [ + 70.81170595180416, + 27.377627758964003 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 27.377627758964003 + ], + [ + 70.69686326832048, + 27.18298002403555 + ], + [ + 70.92654863528783, + 27.18298002403555 + ], + [ + 70.81170595180416, + 27.377627758964003 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 27.377627758964003 + ], + [ + 70.92654863528783, + 27.18298002403555 + ], + [ + 71.04139131877152, + 27.377627758964003 + ], + [ + 70.81170595180416, + 27.377627758964003 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 27.766923228820907 + ], + [ + 71.04139131877152, + 27.766923228820907 + ], + [ + 70.92654863528783, + 27.96157096374936 + ], + [ + 70.81170595180416, + 27.766923228820907 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 27.766923228820907 + ], + [ + 70.92654863528783, + 27.96157096374936 + ], + [ + 70.69686326832048, + 27.96157096374936 + ], + [ + 70.81170595180416, + 27.766923228820907 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 27.766923228820907 + ], + [ + 70.69686326832048, + 27.96157096374936 + ], + [ + 70.5820205848368, + 27.766923228820907 + ], + [ + 70.81170595180416, + 27.766923228820907 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 27.766923228820907 + ], + [ + 70.5820205848368, + 27.766923228820907 + ], + [ + 70.69686326832048, + 27.572275493892455 + ], + [ + 70.81170595180416, + 27.766923228820907 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 27.766923228820907 + ], + [ + 70.69686326832048, + 27.572275493892455 + ], + [ + 70.92654863528783, + 27.572275493892455 + ], + [ + 70.81170595180416, + 27.766923228820907 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 27.766923228820907 + ], + [ + 70.92654863528783, + 27.572275493892455 + ], + [ + 71.04139131877152, + 27.766923228820907 + ], + [ + 70.81170595180416, + 27.766923228820907 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 28.156218698677815 + ], + [ + 71.04139131877152, + 28.156218698677815 + ], + [ + 70.92654863528783, + 28.350866433606267 + ], + [ + 70.81170595180416, + 28.156218698677815 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 28.156218698677815 + ], + [ + 70.92654863528783, + 28.350866433606267 + ], + [ + 70.69686326832048, + 28.350866433606267 + ], + [ + 70.81170595180416, + 28.156218698677815 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 28.156218698677815 + ], + [ + 70.69686326832048, + 28.350866433606267 + ], + [ + 70.5820205848368, + 28.156218698677815 + ], + [ + 70.81170595180416, + 28.156218698677815 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 28.156218698677815 + ], + [ + 70.5820205848368, + 28.156218698677815 + ], + [ + 70.69686326832048, + 27.961570963749363 + ], + [ + 70.81170595180416, + 28.156218698677815 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 28.156218698677815 + ], + [ + 70.69686326832048, + 27.961570963749363 + ], + [ + 70.92654863528783, + 27.961570963749363 + ], + [ + 70.81170595180416, + 28.156218698677815 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 28.156218698677815 + ], + [ + 70.92654863528783, + 27.961570963749363 + ], + [ + 71.04139131877152, + 28.156218698677815 + ], + [ + 70.81170595180416, + 28.156218698677815 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 28.54551416853472 + ], + [ + 71.04139131877152, + 28.54551416853472 + ], + [ + 70.92654863528783, + 28.74016190346317 + ], + [ + 70.81170595180416, + 28.54551416853472 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 28.54551416853472 + ], + [ + 70.92654863528783, + 28.74016190346317 + ], + [ + 70.69686326832048, + 28.74016190346317 + ], + [ + 70.81170595180416, + 28.54551416853472 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 28.54551416853472 + ], + [ + 70.69686326832048, + 28.74016190346317 + ], + [ + 70.5820205848368, + 28.54551416853472 + ], + [ + 70.81170595180416, + 28.54551416853472 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 28.54551416853472 + ], + [ + 70.5820205848368, + 28.54551416853472 + ], + [ + 70.69686326832048, + 28.350866433606267 + ], + [ + 70.81170595180416, + 28.54551416853472 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 28.54551416853472 + ], + [ + 70.69686326832048, + 28.350866433606267 + ], + [ + 70.92654863528783, + 28.350866433606267 + ], + [ + 70.81170595180416, + 28.54551416853472 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 28.54551416853472 + ], + [ + 70.92654863528783, + 28.350866433606267 + ], + [ + 71.04139131877152, + 28.54551416853472 + ], + [ + 70.81170595180416, + 28.54551416853472 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 28.934809638391627 + ], + [ + 71.04139131877152, + 28.934809638391627 + ], + [ + 70.92654863528783, + 29.12945737332008 + ], + [ + 70.81170595180416, + 28.934809638391627 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 28.934809638391627 + ], + [ + 70.92654863528783, + 29.12945737332008 + ], + [ + 70.69686326832048, + 29.12945737332008 + ], + [ + 70.81170595180416, + 28.934809638391627 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 28.934809638391627 + ], + [ + 70.69686326832048, + 29.12945737332008 + ], + [ + 70.5820205848368, + 28.934809638391627 + ], + [ + 70.81170595180416, + 28.934809638391627 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 28.934809638391627 + ], + [ + 70.5820205848368, + 28.934809638391627 + ], + [ + 70.69686326832048, + 28.740161903463175 + ], + [ + 70.81170595180416, + 28.934809638391627 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 28.934809638391627 + ], + [ + 70.69686326832048, + 28.740161903463175 + ], + [ + 70.92654863528783, + 28.740161903463175 + ], + [ + 70.81170595180416, + 28.934809638391627 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 28.934809638391627 + ], + [ + 70.92654863528783, + 28.740161903463175 + ], + [ + 71.04139131877152, + 28.934809638391627 + ], + [ + 70.81170595180416, + 28.934809638391627 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 29.32410510824853 + ], + [ + 71.04139131877152, + 29.32410510824853 + ], + [ + 70.92654863528783, + 29.518752843176983 + ], + [ + 70.81170595180416, + 29.32410510824853 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 29.32410510824853 + ], + [ + 70.92654863528783, + 29.518752843176983 + ], + [ + 70.69686326832048, + 29.518752843176983 + ], + [ + 70.81170595180416, + 29.32410510824853 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 29.32410510824853 + ], + [ + 70.69686326832048, + 29.518752843176983 + ], + [ + 70.5820205848368, + 29.32410510824853 + ], + [ + 70.81170595180416, + 29.32410510824853 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 29.32410510824853 + ], + [ + 70.5820205848368, + 29.32410510824853 + ], + [ + 70.69686326832048, + 29.12945737332008 + ], + [ + 70.81170595180416, + 29.32410510824853 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 29.32410510824853 + ], + [ + 70.69686326832048, + 29.12945737332008 + ], + [ + 70.92654863528783, + 29.12945737332008 + ], + [ + 70.81170595180416, + 29.32410510824853 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 29.32410510824853 + ], + [ + 70.92654863528783, + 29.12945737332008 + ], + [ + 71.04139131877152, + 29.32410510824853 + ], + [ + 70.81170595180416, + 29.32410510824853 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 29.71340057810544 + ], + [ + 71.04139131877152, + 29.71340057810544 + ], + [ + 70.92654863528783, + 29.90804831303389 + ], + [ + 70.81170595180416, + 29.71340057810544 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 29.71340057810544 + ], + [ + 70.92654863528783, + 29.90804831303389 + ], + [ + 70.69686326832048, + 29.90804831303389 + ], + [ + 70.81170595180416, + 29.71340057810544 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 29.71340057810544 + ], + [ + 70.69686326832048, + 29.90804831303389 + ], + [ + 70.5820205848368, + 29.71340057810544 + ], + [ + 70.81170595180416, + 29.71340057810544 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 29.71340057810544 + ], + [ + 70.5820205848368, + 29.71340057810544 + ], + [ + 70.69686326832048, + 29.518752843176987 + ], + [ + 70.81170595180416, + 29.71340057810544 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 29.71340057810544 + ], + [ + 70.69686326832048, + 29.518752843176987 + ], + [ + 70.92654863528783, + 29.518752843176987 + ], + [ + 70.81170595180416, + 29.71340057810544 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 29.71340057810544 + ], + [ + 70.92654863528783, + 29.518752843176987 + ], + [ + 71.04139131877152, + 29.71340057810544 + ], + [ + 70.81170595180416, + 29.71340057810544 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 30.102696047962343 + ], + [ + 71.04139131877152, + 30.102696047962343 + ], + [ + 70.92654863528783, + 30.297343782890795 + ], + [ + 70.81170595180416, + 30.102696047962343 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 30.102696047962343 + ], + [ + 70.92654863528783, + 30.297343782890795 + ], + [ + 70.69686326832048, + 30.297343782890795 + ], + [ + 70.81170595180416, + 30.102696047962343 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 30.102696047962343 + ], + [ + 70.69686326832048, + 30.297343782890795 + ], + [ + 70.5820205848368, + 30.102696047962343 + ], + [ + 70.81170595180416, + 30.102696047962343 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 30.102696047962343 + ], + [ + 70.5820205848368, + 30.102696047962343 + ], + [ + 70.69686326832048, + 29.90804831303389 + ], + [ + 70.81170595180416, + 30.102696047962343 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 30.102696047962343 + ], + [ + 70.69686326832048, + 29.90804831303389 + ], + [ + 70.92654863528783, + 29.90804831303389 + ], + [ + 70.81170595180416, + 30.102696047962343 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 30.102696047962343 + ], + [ + 70.92654863528783, + 29.90804831303389 + ], + [ + 71.04139131877152, + 30.102696047962343 + ], + [ + 70.81170595180416, + 30.102696047962343 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 30.49199151781925 + ], + [ + 71.04139131877152, + 30.49199151781925 + ], + [ + 70.92654863528783, + 30.686639252747703 + ], + [ + 70.81170595180416, + 30.49199151781925 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 30.49199151781925 + ], + [ + 70.92654863528783, + 30.686639252747703 + ], + [ + 70.69686326832048, + 30.686639252747703 + ], + [ + 70.81170595180416, + 30.49199151781925 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 30.49199151781925 + ], + [ + 70.69686326832048, + 30.686639252747703 + ], + [ + 70.5820205848368, + 30.49199151781925 + ], + [ + 70.81170595180416, + 30.49199151781925 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 30.49199151781925 + ], + [ + 70.5820205848368, + 30.49199151781925 + ], + [ + 70.69686326832048, + 30.2973437828908 + ], + [ + 70.81170595180416, + 30.49199151781925 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 30.49199151781925 + ], + [ + 70.69686326832048, + 30.2973437828908 + ], + [ + 70.92654863528783, + 30.2973437828908 + ], + [ + 70.81170595180416, + 30.49199151781925 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 30.49199151781925 + ], + [ + 70.92654863528783, + 30.2973437828908 + ], + [ + 71.04139131877152, + 30.49199151781925 + ], + [ + 70.81170595180416, + 30.49199151781925 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 30.88128698767616 + ], + [ + 71.04139131877152, + 30.88128698767616 + ], + [ + 70.92654863528783, + 31.07593472260461 + ], + [ + 70.81170595180416, + 30.88128698767616 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 30.88128698767616 + ], + [ + 70.92654863528783, + 31.07593472260461 + ], + [ + 70.69686326832048, + 31.07593472260461 + ], + [ + 70.81170595180416, + 30.88128698767616 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 30.88128698767616 + ], + [ + 70.69686326832048, + 31.07593472260461 + ], + [ + 70.5820205848368, + 30.88128698767616 + ], + [ + 70.81170595180416, + 30.88128698767616 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 30.88128698767616 + ], + [ + 70.5820205848368, + 30.88128698767616 + ], + [ + 70.69686326832048, + 30.686639252747707 + ], + [ + 70.81170595180416, + 30.88128698767616 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 30.88128698767616 + ], + [ + 70.69686326832048, + 30.686639252747707 + ], + [ + 70.92654863528783, + 30.686639252747707 + ], + [ + 70.81170595180416, + 30.88128698767616 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 30.88128698767616 + ], + [ + 70.92654863528783, + 30.686639252747707 + ], + [ + 71.04139131877152, + 30.88128698767616 + ], + [ + 70.81170595180416, + 30.88128698767616 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 31.270582457533063 + ], + [ + 71.04139131877152, + 31.270582457533063 + ], + [ + 70.92654863528783, + 31.465230192461515 + ], + [ + 70.81170595180416, + 31.270582457533063 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 31.270582457533063 + ], + [ + 70.92654863528783, + 31.465230192461515 + ], + [ + 70.69686326832048, + 31.465230192461515 + ], + [ + 70.81170595180416, + 31.270582457533063 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 31.270582457533063 + ], + [ + 70.69686326832048, + 31.465230192461515 + ], + [ + 70.5820205848368, + 31.270582457533063 + ], + [ + 70.81170595180416, + 31.270582457533063 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 31.270582457533063 + ], + [ + 70.5820205848368, + 31.270582457533063 + ], + [ + 70.69686326832048, + 31.07593472260461 + ], + [ + 70.81170595180416, + 31.270582457533063 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 31.270582457533063 + ], + [ + 70.69686326832048, + 31.07593472260461 + ], + [ + 70.92654863528783, + 31.07593472260461 + ], + [ + 70.81170595180416, + 31.270582457533063 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 31.270582457533063 + ], + [ + 70.92654863528783, + 31.07593472260461 + ], + [ + 71.04139131877152, + 31.270582457533063 + ], + [ + 70.81170595180416, + 31.270582457533063 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 31.65987792738997 + ], + [ + 71.04139131877152, + 31.65987792738997 + ], + [ + 70.92654863528783, + 31.854525662318423 + ], + [ + 70.81170595180416, + 31.65987792738997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 31.65987792738997 + ], + [ + 70.92654863528783, + 31.854525662318423 + ], + [ + 70.69686326832048, + 31.854525662318423 + ], + [ + 70.81170595180416, + 31.65987792738997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 31.65987792738997 + ], + [ + 70.69686326832048, + 31.854525662318423 + ], + [ + 70.5820205848368, + 31.65987792738997 + ], + [ + 70.81170595180416, + 31.65987792738997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 31.65987792738997 + ], + [ + 70.5820205848368, + 31.65987792738997 + ], + [ + 70.69686326832048, + 31.46523019246152 + ], + [ + 70.81170595180416, + 31.65987792738997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 31.65987792738997 + ], + [ + 70.69686326832048, + 31.46523019246152 + ], + [ + 70.92654863528783, + 31.46523019246152 + ], + [ + 70.81170595180416, + 31.65987792738997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 31.65987792738997 + ], + [ + 70.92654863528783, + 31.46523019246152 + ], + [ + 71.04139131877152, + 31.65987792738997 + ], + [ + 70.81170595180416, + 31.65987792738997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 32.049173397246875 + ], + [ + 71.04139131877152, + 32.049173397246875 + ], + [ + 70.92654863528783, + 32.24382113217533 + ], + [ + 70.81170595180416, + 32.049173397246875 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 32.049173397246875 + ], + [ + 70.92654863528783, + 32.24382113217533 + ], + [ + 70.69686326832048, + 32.24382113217533 + ], + [ + 70.81170595180416, + 32.049173397246875 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 32.049173397246875 + ], + [ + 70.69686326832048, + 32.24382113217533 + ], + [ + 70.5820205848368, + 32.049173397246875 + ], + [ + 70.81170595180416, + 32.049173397246875 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 32.049173397246875 + ], + [ + 70.5820205848368, + 32.049173397246875 + ], + [ + 70.69686326832048, + 31.854525662318423 + ], + [ + 70.81170595180416, + 32.049173397246875 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 32.049173397246875 + ], + [ + 70.69686326832048, + 31.854525662318423 + ], + [ + 70.92654863528783, + 31.854525662318423 + ], + [ + 70.81170595180416, + 32.049173397246875 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 32.049173397246875 + ], + [ + 70.92654863528783, + 31.854525662318423 + ], + [ + 71.04139131877152, + 32.049173397246875 + ], + [ + 70.81170595180416, + 32.049173397246875 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 32.438468867103786 + ], + [ + 71.04139131877152, + 32.438468867103786 + ], + [ + 70.92654863528783, + 32.63311660203224 + ], + [ + 70.81170595180416, + 32.438468867103786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 32.438468867103786 + ], + [ + 70.92654863528783, + 32.63311660203224 + ], + [ + 70.69686326832048, + 32.63311660203224 + ], + [ + 70.81170595180416, + 32.438468867103786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 32.438468867103786 + ], + [ + 70.69686326832048, + 32.63311660203224 + ], + [ + 70.5820205848368, + 32.438468867103786 + ], + [ + 70.81170595180416, + 32.438468867103786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 32.438468867103786 + ], + [ + 70.5820205848368, + 32.438468867103786 + ], + [ + 70.69686326832048, + 32.243821132175334 + ], + [ + 70.81170595180416, + 32.438468867103786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 32.438468867103786 + ], + [ + 70.69686326832048, + 32.243821132175334 + ], + [ + 70.92654863528783, + 32.243821132175334 + ], + [ + 70.81170595180416, + 32.438468867103786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 32.438468867103786 + ], + [ + 70.92654863528783, + 32.243821132175334 + ], + [ + 71.04139131877152, + 32.438468867103786 + ], + [ + 70.81170595180416, + 32.438468867103786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 32.82776433696069 + ], + [ + 71.04139131877152, + 32.82776433696069 + ], + [ + 70.92654863528783, + 33.02241207188914 + ], + [ + 70.81170595180416, + 32.82776433696069 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 32.82776433696069 + ], + [ + 70.92654863528783, + 33.02241207188914 + ], + [ + 70.69686326832048, + 33.02241207188914 + ], + [ + 70.81170595180416, + 32.82776433696069 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 32.82776433696069 + ], + [ + 70.69686326832048, + 33.02241207188914 + ], + [ + 70.5820205848368, + 32.82776433696069 + ], + [ + 70.81170595180416, + 32.82776433696069 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 32.82776433696069 + ], + [ + 70.5820205848368, + 32.82776433696069 + ], + [ + 70.69686326832048, + 32.63311660203224 + ], + [ + 70.81170595180416, + 32.82776433696069 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 32.82776433696069 + ], + [ + 70.69686326832048, + 32.63311660203224 + ], + [ + 70.92654863528783, + 32.63311660203224 + ], + [ + 70.81170595180416, + 32.82776433696069 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 32.82776433696069 + ], + [ + 70.92654863528783, + 32.63311660203224 + ], + [ + 71.04139131877152, + 32.82776433696069 + ], + [ + 70.81170595180416, + 32.82776433696069 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 33.217059806817595 + ], + [ + 71.04139131877152, + 33.217059806817595 + ], + [ + 70.92654863528783, + 33.41170754174605 + ], + [ + 70.81170595180416, + 33.217059806817595 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 33.217059806817595 + ], + [ + 70.92654863528783, + 33.41170754174605 + ], + [ + 70.69686326832048, + 33.41170754174605 + ], + [ + 70.81170595180416, + 33.217059806817595 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 33.217059806817595 + ], + [ + 70.69686326832048, + 33.41170754174605 + ], + [ + 70.5820205848368, + 33.217059806817595 + ], + [ + 70.81170595180416, + 33.217059806817595 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 33.217059806817595 + ], + [ + 70.5820205848368, + 33.217059806817595 + ], + [ + 70.69686326832048, + 33.02241207188914 + ], + [ + 70.81170595180416, + 33.217059806817595 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 33.217059806817595 + ], + [ + 70.69686326832048, + 33.02241207188914 + ], + [ + 70.92654863528783, + 33.02241207188914 + ], + [ + 70.81170595180416, + 33.217059806817595 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 33.217059806817595 + ], + [ + 70.92654863528783, + 33.02241207188914 + ], + [ + 71.04139131877152, + 33.217059806817595 + ], + [ + 70.81170595180416, + 33.217059806817595 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 33.6063552766745 + ], + [ + 71.04139131877152, + 33.6063552766745 + ], + [ + 70.92654863528783, + 33.80100301160295 + ], + [ + 70.81170595180416, + 33.6063552766745 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 33.6063552766745 + ], + [ + 70.92654863528783, + 33.80100301160295 + ], + [ + 70.69686326832048, + 33.80100301160295 + ], + [ + 70.81170595180416, + 33.6063552766745 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 33.6063552766745 + ], + [ + 70.69686326832048, + 33.80100301160295 + ], + [ + 70.5820205848368, + 33.6063552766745 + ], + [ + 70.81170595180416, + 33.6063552766745 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 33.6063552766745 + ], + [ + 70.5820205848368, + 33.6063552766745 + ], + [ + 70.69686326832048, + 33.41170754174605 + ], + [ + 70.81170595180416, + 33.6063552766745 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 33.6063552766745 + ], + [ + 70.69686326832048, + 33.41170754174605 + ], + [ + 70.92654863528783, + 33.41170754174605 + ], + [ + 70.81170595180416, + 33.6063552766745 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 33.6063552766745 + ], + [ + 70.92654863528783, + 33.41170754174605 + ], + [ + 71.04139131877152, + 33.6063552766745 + ], + [ + 70.81170595180416, + 33.6063552766745 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 33.9956507465314 + ], + [ + 71.04139131877152, + 33.9956507465314 + ], + [ + 70.92654863528783, + 34.190298481459855 + ], + [ + 70.81170595180416, + 33.9956507465314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 33.9956507465314 + ], + [ + 70.92654863528783, + 34.190298481459855 + ], + [ + 70.69686326832048, + 34.190298481459855 + ], + [ + 70.81170595180416, + 33.9956507465314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 33.9956507465314 + ], + [ + 70.69686326832048, + 34.190298481459855 + ], + [ + 70.5820205848368, + 33.9956507465314 + ], + [ + 70.81170595180416, + 33.9956507465314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 33.9956507465314 + ], + [ + 70.5820205848368, + 33.9956507465314 + ], + [ + 70.69686326832048, + 33.80100301160295 + ], + [ + 70.81170595180416, + 33.9956507465314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 33.9956507465314 + ], + [ + 70.69686326832048, + 33.80100301160295 + ], + [ + 70.92654863528783, + 33.80100301160295 + ], + [ + 70.81170595180416, + 33.9956507465314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 33.9956507465314 + ], + [ + 70.92654863528783, + 33.80100301160295 + ], + [ + 71.04139131877152, + 33.9956507465314 + ], + [ + 70.81170595180416, + 33.9956507465314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 34.384946216388315 + ], + [ + 71.04139131877152, + 34.384946216388315 + ], + [ + 70.92654863528783, + 34.57959395131677 + ], + [ + 70.81170595180416, + 34.384946216388315 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 34.384946216388315 + ], + [ + 70.92654863528783, + 34.57959395131677 + ], + [ + 70.69686326832048, + 34.57959395131677 + ], + [ + 70.81170595180416, + 34.384946216388315 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 34.384946216388315 + ], + [ + 70.69686326832048, + 34.57959395131677 + ], + [ + 70.5820205848368, + 34.384946216388315 + ], + [ + 70.81170595180416, + 34.384946216388315 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 34.384946216388315 + ], + [ + 70.5820205848368, + 34.384946216388315 + ], + [ + 70.69686326832048, + 34.19029848145986 + ], + [ + 70.81170595180416, + 34.384946216388315 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 34.384946216388315 + ], + [ + 70.69686326832048, + 34.19029848145986 + ], + [ + 70.92654863528783, + 34.19029848145986 + ], + [ + 70.81170595180416, + 34.384946216388315 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 34.384946216388315 + ], + [ + 70.92654863528783, + 34.19029848145986 + ], + [ + 71.04139131877152, + 34.384946216388315 + ], + [ + 70.81170595180416, + 34.384946216388315 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 34.774241686245226 + ], + [ + 71.04139131877152, + 34.774241686245226 + ], + [ + 70.92654863528783, + 34.96888942117368 + ], + [ + 70.81170595180416, + 34.774241686245226 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 34.774241686245226 + ], + [ + 70.92654863528783, + 34.96888942117368 + ], + [ + 70.69686326832048, + 34.96888942117368 + ], + [ + 70.81170595180416, + 34.774241686245226 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 34.774241686245226 + ], + [ + 70.69686326832048, + 34.96888942117368 + ], + [ + 70.5820205848368, + 34.774241686245226 + ], + [ + 70.81170595180416, + 34.774241686245226 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 34.774241686245226 + ], + [ + 70.5820205848368, + 34.774241686245226 + ], + [ + 70.69686326832048, + 34.579593951316774 + ], + [ + 70.81170595180416, + 34.774241686245226 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 34.774241686245226 + ], + [ + 70.69686326832048, + 34.579593951316774 + ], + [ + 70.92654863528783, + 34.579593951316774 + ], + [ + 70.81170595180416, + 34.774241686245226 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 34.774241686245226 + ], + [ + 70.92654863528783, + 34.579593951316774 + ], + [ + 71.04139131877152, + 34.774241686245226 + ], + [ + 70.81170595180416, + 34.774241686245226 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 35.16353715610213 + ], + [ + 71.04139131877152, + 35.16353715610213 + ], + [ + 70.92654863528783, + 35.35818489103058 + ], + [ + 70.81170595180416, + 35.16353715610213 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 35.16353715610213 + ], + [ + 70.92654863528783, + 35.35818489103058 + ], + [ + 70.69686326832048, + 35.35818489103058 + ], + [ + 70.81170595180416, + 35.16353715610213 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 35.16353715610213 + ], + [ + 70.69686326832048, + 35.35818489103058 + ], + [ + 70.5820205848368, + 35.16353715610213 + ], + [ + 70.81170595180416, + 35.16353715610213 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 35.16353715610213 + ], + [ + 70.5820205848368, + 35.16353715610213 + ], + [ + 70.69686326832048, + 34.96888942117368 + ], + [ + 70.81170595180416, + 35.16353715610213 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 35.16353715610213 + ], + [ + 70.69686326832048, + 34.96888942117368 + ], + [ + 70.92654863528783, + 34.96888942117368 + ], + [ + 70.81170595180416, + 35.16353715610213 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 35.16353715610213 + ], + [ + 70.92654863528783, + 34.96888942117368 + ], + [ + 71.04139131877152, + 35.16353715610213 + ], + [ + 70.81170595180416, + 35.16353715610213 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 35.552832625959034 + ], + [ + 71.04139131877152, + 35.552832625959034 + ], + [ + 70.92654863528783, + 35.74748036088749 + ], + [ + 70.81170595180416, + 35.552832625959034 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 35.552832625959034 + ], + [ + 70.92654863528783, + 35.74748036088749 + ], + [ + 70.69686326832048, + 35.74748036088749 + ], + [ + 70.81170595180416, + 35.552832625959034 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 35.552832625959034 + ], + [ + 70.69686326832048, + 35.74748036088749 + ], + [ + 70.5820205848368, + 35.552832625959034 + ], + [ + 70.81170595180416, + 35.552832625959034 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 35.552832625959034 + ], + [ + 70.5820205848368, + 35.552832625959034 + ], + [ + 70.69686326832048, + 35.35818489103058 + ], + [ + 70.81170595180416, + 35.552832625959034 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 35.552832625959034 + ], + [ + 70.69686326832048, + 35.35818489103058 + ], + [ + 70.92654863528783, + 35.35818489103058 + ], + [ + 70.81170595180416, + 35.552832625959034 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 35.552832625959034 + ], + [ + 70.92654863528783, + 35.35818489103058 + ], + [ + 71.04139131877152, + 35.552832625959034 + ], + [ + 70.81170595180416, + 35.552832625959034 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 35.94212809581594 + ], + [ + 71.04139131877152, + 35.94212809581594 + ], + [ + 70.92654863528783, + 36.13677583074439 + ], + [ + 70.81170595180416, + 35.94212809581594 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 35.94212809581594 + ], + [ + 70.92654863528783, + 36.13677583074439 + ], + [ + 70.69686326832048, + 36.13677583074439 + ], + [ + 70.81170595180416, + 35.94212809581594 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 35.94212809581594 + ], + [ + 70.69686326832048, + 36.13677583074439 + ], + [ + 70.5820205848368, + 35.94212809581594 + ], + [ + 70.81170595180416, + 35.94212809581594 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 35.94212809581594 + ], + [ + 70.5820205848368, + 35.94212809581594 + ], + [ + 70.69686326832048, + 35.74748036088749 + ], + [ + 70.81170595180416, + 35.94212809581594 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 35.94212809581594 + ], + [ + 70.69686326832048, + 35.74748036088749 + ], + [ + 70.92654863528783, + 35.74748036088749 + ], + [ + 70.81170595180416, + 35.94212809581594 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 35.94212809581594 + ], + [ + 70.92654863528783, + 35.74748036088749 + ], + [ + 71.04139131877152, + 35.94212809581594 + ], + [ + 70.81170595180416, + 35.94212809581594 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 36.33142356567284 + ], + [ + 71.04139131877152, + 36.33142356567284 + ], + [ + 70.92654863528783, + 36.526071300601295 + ], + [ + 70.81170595180416, + 36.33142356567284 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 36.33142356567284 + ], + [ + 70.92654863528783, + 36.526071300601295 + ], + [ + 70.69686326832048, + 36.526071300601295 + ], + [ + 70.81170595180416, + 36.33142356567284 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 36.33142356567284 + ], + [ + 70.69686326832048, + 36.526071300601295 + ], + [ + 70.5820205848368, + 36.33142356567284 + ], + [ + 70.81170595180416, + 36.33142356567284 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 36.33142356567284 + ], + [ + 70.5820205848368, + 36.33142356567284 + ], + [ + 70.69686326832048, + 36.13677583074439 + ], + [ + 70.81170595180416, + 36.33142356567284 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 36.33142356567284 + ], + [ + 70.69686326832048, + 36.13677583074439 + ], + [ + 70.92654863528783, + 36.13677583074439 + ], + [ + 70.81170595180416, + 36.33142356567284 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 36.33142356567284 + ], + [ + 70.92654863528783, + 36.13677583074439 + ], + [ + 71.04139131877152, + 36.33142356567284 + ], + [ + 70.81170595180416, + 36.33142356567284 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 36.720719035529754 + ], + [ + 71.04139131877152, + 36.720719035529754 + ], + [ + 70.92654863528783, + 36.915366770458206 + ], + [ + 70.81170595180416, + 36.720719035529754 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 36.720719035529754 + ], + [ + 70.92654863528783, + 36.915366770458206 + ], + [ + 70.69686326832048, + 36.915366770458206 + ], + [ + 70.81170595180416, + 36.720719035529754 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 36.720719035529754 + ], + [ + 70.69686326832048, + 36.915366770458206 + ], + [ + 70.5820205848368, + 36.720719035529754 + ], + [ + 70.81170595180416, + 36.720719035529754 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 36.720719035529754 + ], + [ + 70.5820205848368, + 36.720719035529754 + ], + [ + 70.69686326832048, + 36.5260713006013 + ], + [ + 70.81170595180416, + 36.720719035529754 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 36.720719035529754 + ], + [ + 70.69686326832048, + 36.5260713006013 + ], + [ + 70.92654863528783, + 36.5260713006013 + ], + [ + 70.81170595180416, + 36.720719035529754 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 36.720719035529754 + ], + [ + 70.92654863528783, + 36.5260713006013 + ], + [ + 71.04139131877152, + 36.720719035529754 + ], + [ + 70.81170595180416, + 36.720719035529754 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 37.11001450538666 + ], + [ + 71.04139131877152, + 37.11001450538666 + ], + [ + 70.92654863528783, + 37.30466224031511 + ], + [ + 70.81170595180416, + 37.11001450538666 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 37.11001450538666 + ], + [ + 70.92654863528783, + 37.30466224031511 + ], + [ + 70.69686326832048, + 37.30466224031511 + ], + [ + 70.81170595180416, + 37.11001450538666 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 37.11001450538666 + ], + [ + 70.69686326832048, + 37.30466224031511 + ], + [ + 70.5820205848368, + 37.11001450538666 + ], + [ + 70.81170595180416, + 37.11001450538666 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 37.11001450538666 + ], + [ + 70.5820205848368, + 37.11001450538666 + ], + [ + 70.69686326832048, + 36.915366770458206 + ], + [ + 70.81170595180416, + 37.11001450538666 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 37.11001450538666 + ], + [ + 70.69686326832048, + 36.915366770458206 + ], + [ + 70.92654863528783, + 36.915366770458206 + ], + [ + 70.81170595180416, + 37.11001450538666 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 37.11001450538666 + ], + [ + 70.92654863528783, + 36.915366770458206 + ], + [ + 71.04139131877152, + 37.11001450538666 + ], + [ + 70.81170595180416, + 37.11001450538666 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 37.49930997524357 + ], + [ + 71.04139131877152, + 37.49930997524357 + ], + [ + 70.92654863528783, + 37.69395771017202 + ], + [ + 70.81170595180416, + 37.49930997524357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 37.49930997524357 + ], + [ + 70.92654863528783, + 37.69395771017202 + ], + [ + 70.69686326832048, + 37.69395771017202 + ], + [ + 70.81170595180416, + 37.49930997524357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 37.49930997524357 + ], + [ + 70.69686326832048, + 37.69395771017202 + ], + [ + 70.5820205848368, + 37.49930997524357 + ], + [ + 70.81170595180416, + 37.49930997524357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 37.49930997524357 + ], + [ + 70.5820205848368, + 37.49930997524357 + ], + [ + 70.69686326832048, + 37.30466224031512 + ], + [ + 70.81170595180416, + 37.49930997524357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 37.49930997524357 + ], + [ + 70.69686326832048, + 37.30466224031512 + ], + [ + 70.92654863528783, + 37.30466224031512 + ], + [ + 70.81170595180416, + 37.49930997524357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 37.49930997524357 + ], + [ + 70.92654863528783, + 37.30466224031512 + ], + [ + 71.04139131877152, + 37.49930997524357 + ], + [ + 70.81170595180416, + 37.49930997524357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 37.888605445100474 + ], + [ + 71.04139131877152, + 37.888605445100474 + ], + [ + 70.92654863528783, + 38.083253180028926 + ], + [ + 70.81170595180416, + 37.888605445100474 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 37.888605445100474 + ], + [ + 70.92654863528783, + 38.083253180028926 + ], + [ + 70.69686326832048, + 38.083253180028926 + ], + [ + 70.81170595180416, + 37.888605445100474 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 37.888605445100474 + ], + [ + 70.69686326832048, + 38.083253180028926 + ], + [ + 70.5820205848368, + 37.888605445100474 + ], + [ + 70.81170595180416, + 37.888605445100474 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 37.888605445100474 + ], + [ + 70.5820205848368, + 37.888605445100474 + ], + [ + 70.69686326832048, + 37.69395771017202 + ], + [ + 70.81170595180416, + 37.888605445100474 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 37.888605445100474 + ], + [ + 70.69686326832048, + 37.69395771017202 + ], + [ + 70.92654863528783, + 37.69395771017202 + ], + [ + 70.81170595180416, + 37.888605445100474 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 37.888605445100474 + ], + [ + 70.92654863528783, + 37.69395771017202 + ], + [ + 71.04139131877152, + 37.888605445100474 + ], + [ + 70.81170595180416, + 37.888605445100474 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 38.27790091495738 + ], + [ + 71.04139131877152, + 38.27790091495738 + ], + [ + 70.92654863528783, + 38.47254864988583 + ], + [ + 70.81170595180416, + 38.27790091495738 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 38.27790091495738 + ], + [ + 70.92654863528783, + 38.47254864988583 + ], + [ + 70.69686326832048, + 38.47254864988583 + ], + [ + 70.81170595180416, + 38.27790091495738 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 38.27790091495738 + ], + [ + 70.69686326832048, + 38.47254864988583 + ], + [ + 70.5820205848368, + 38.27790091495738 + ], + [ + 70.81170595180416, + 38.27790091495738 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 38.27790091495738 + ], + [ + 70.5820205848368, + 38.27790091495738 + ], + [ + 70.69686326832048, + 38.083253180028926 + ], + [ + 70.81170595180416, + 38.27790091495738 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 38.27790091495738 + ], + [ + 70.69686326832048, + 38.083253180028926 + ], + [ + 70.92654863528783, + 38.083253180028926 + ], + [ + 70.81170595180416, + 38.27790091495738 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 38.27790091495738 + ], + [ + 70.92654863528783, + 38.083253180028926 + ], + [ + 71.04139131877152, + 38.27790091495738 + ], + [ + 70.81170595180416, + 38.27790091495738 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 38.66719638481428 + ], + [ + 71.04139131877152, + 38.66719638481428 + ], + [ + 70.92654863528783, + 38.861844119742734 + ], + [ + 70.81170595180416, + 38.66719638481428 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 38.66719638481428 + ], + [ + 70.92654863528783, + 38.861844119742734 + ], + [ + 70.69686326832048, + 38.861844119742734 + ], + [ + 70.81170595180416, + 38.66719638481428 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 38.66719638481428 + ], + [ + 70.69686326832048, + 38.861844119742734 + ], + [ + 70.5820205848368, + 38.66719638481428 + ], + [ + 70.81170595180416, + 38.66719638481428 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 38.66719638481428 + ], + [ + 70.5820205848368, + 38.66719638481428 + ], + [ + 70.69686326832048, + 38.47254864988583 + ], + [ + 70.81170595180416, + 38.66719638481428 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 38.66719638481428 + ], + [ + 70.69686326832048, + 38.47254864988583 + ], + [ + 70.92654863528783, + 38.47254864988583 + ], + [ + 70.81170595180416, + 38.66719638481428 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 38.66719638481428 + ], + [ + 70.92654863528783, + 38.47254864988583 + ], + [ + 71.04139131877152, + 38.66719638481428 + ], + [ + 70.81170595180416, + 38.66719638481428 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 39.05649185467119 + ], + [ + 71.04139131877152, + 39.05649185467119 + ], + [ + 70.92654863528783, + 39.25113958959964 + ], + [ + 70.81170595180416, + 39.05649185467119 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 39.05649185467119 + ], + [ + 70.92654863528783, + 39.25113958959964 + ], + [ + 70.69686326832048, + 39.25113958959964 + ], + [ + 70.81170595180416, + 39.05649185467119 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 39.05649185467119 + ], + [ + 70.69686326832048, + 39.25113958959964 + ], + [ + 70.5820205848368, + 39.05649185467119 + ], + [ + 70.81170595180416, + 39.05649185467119 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 39.05649185467119 + ], + [ + 70.5820205848368, + 39.05649185467119 + ], + [ + 70.69686326832048, + 38.861844119742734 + ], + [ + 70.81170595180416, + 39.05649185467119 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 39.05649185467119 + ], + [ + 70.69686326832048, + 38.861844119742734 + ], + [ + 70.92654863528783, + 38.861844119742734 + ], + [ + 70.81170595180416, + 39.05649185467119 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 39.05649185467119 + ], + [ + 70.92654863528783, + 38.861844119742734 + ], + [ + 71.04139131877152, + 39.05649185467119 + ], + [ + 70.81170595180416, + 39.05649185467119 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 39.4457873245281 + ], + [ + 71.04139131877152, + 39.4457873245281 + ], + [ + 70.92654863528783, + 39.64043505945655 + ], + [ + 70.81170595180416, + 39.4457873245281 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 39.4457873245281 + ], + [ + 70.92654863528783, + 39.64043505945655 + ], + [ + 70.69686326832048, + 39.64043505945655 + ], + [ + 70.81170595180416, + 39.4457873245281 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 39.4457873245281 + ], + [ + 70.69686326832048, + 39.64043505945655 + ], + [ + 70.5820205848368, + 39.4457873245281 + ], + [ + 70.81170595180416, + 39.4457873245281 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 39.4457873245281 + ], + [ + 70.5820205848368, + 39.4457873245281 + ], + [ + 70.69686326832048, + 39.251139589599646 + ], + [ + 70.81170595180416, + 39.4457873245281 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 39.4457873245281 + ], + [ + 70.69686326832048, + 39.251139589599646 + ], + [ + 70.92654863528783, + 39.251139589599646 + ], + [ + 70.81170595180416, + 39.4457873245281 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 39.4457873245281 + ], + [ + 70.92654863528783, + 39.251139589599646 + ], + [ + 71.04139131877152, + 39.4457873245281 + ], + [ + 70.81170595180416, + 39.4457873245281 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 39.835082794385 + ], + [ + 71.04139131877152, + 39.835082794385 + ], + [ + 70.92654863528783, + 40.029730529313454 + ], + [ + 70.81170595180416, + 39.835082794385 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 39.835082794385 + ], + [ + 70.92654863528783, + 40.029730529313454 + ], + [ + 70.69686326832048, + 40.029730529313454 + ], + [ + 70.81170595180416, + 39.835082794385 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 39.835082794385 + ], + [ + 70.69686326832048, + 40.029730529313454 + ], + [ + 70.5820205848368, + 39.835082794385 + ], + [ + 70.81170595180416, + 39.835082794385 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 39.835082794385 + ], + [ + 70.5820205848368, + 39.835082794385 + ], + [ + 70.69686326832048, + 39.64043505945655 + ], + [ + 70.81170595180416, + 39.835082794385 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 39.835082794385 + ], + [ + 70.69686326832048, + 39.64043505945655 + ], + [ + 70.92654863528783, + 39.64043505945655 + ], + [ + 70.81170595180416, + 39.835082794385 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 39.835082794385 + ], + [ + 70.92654863528783, + 39.64043505945655 + ], + [ + 71.04139131877152, + 39.835082794385 + ], + [ + 70.81170595180416, + 39.835082794385 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 40.22437826424191 + ], + [ + 71.04139131877152, + 40.22437826424191 + ], + [ + 70.92654863528783, + 40.419025999170366 + ], + [ + 70.81170595180416, + 40.22437826424191 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 40.22437826424191 + ], + [ + 70.92654863528783, + 40.419025999170366 + ], + [ + 70.69686326832048, + 40.419025999170366 + ], + [ + 70.81170595180416, + 40.22437826424191 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 40.22437826424191 + ], + [ + 70.69686326832048, + 40.419025999170366 + ], + [ + 70.5820205848368, + 40.22437826424191 + ], + [ + 70.81170595180416, + 40.22437826424191 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 40.22437826424191 + ], + [ + 70.5820205848368, + 40.22437826424191 + ], + [ + 70.69686326832048, + 40.02973052931346 + ], + [ + 70.81170595180416, + 40.22437826424191 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 40.22437826424191 + ], + [ + 70.69686326832048, + 40.02973052931346 + ], + [ + 70.92654863528783, + 40.02973052931346 + ], + [ + 70.81170595180416, + 40.22437826424191 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 40.22437826424191 + ], + [ + 70.92654863528783, + 40.02973052931346 + ], + [ + 71.04139131877152, + 40.22437826424191 + ], + [ + 70.81170595180416, + 40.22437826424191 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 40.61367373409882 + ], + [ + 71.04139131877152, + 40.61367373409882 + ], + [ + 70.92654863528783, + 40.80832146902727 + ], + [ + 70.81170595180416, + 40.61367373409882 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 40.61367373409882 + ], + [ + 70.92654863528783, + 40.80832146902727 + ], + [ + 70.69686326832048, + 40.80832146902727 + ], + [ + 70.81170595180416, + 40.61367373409882 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 40.61367373409882 + ], + [ + 70.69686326832048, + 40.80832146902727 + ], + [ + 70.5820205848368, + 40.61367373409882 + ], + [ + 70.81170595180416, + 40.61367373409882 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 40.61367373409882 + ], + [ + 70.5820205848368, + 40.61367373409882 + ], + [ + 70.69686326832048, + 40.419025999170366 + ], + [ + 70.81170595180416, + 40.61367373409882 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 40.61367373409882 + ], + [ + 70.69686326832048, + 40.419025999170366 + ], + [ + 70.92654863528783, + 40.419025999170366 + ], + [ + 70.81170595180416, + 40.61367373409882 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 40.61367373409882 + ], + [ + 70.92654863528783, + 40.419025999170366 + ], + [ + 71.04139131877152, + 40.61367373409882 + ], + [ + 70.81170595180416, + 40.61367373409882 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 41.00296920395572 + ], + [ + 71.04139131877152, + 41.00296920395572 + ], + [ + 70.92654863528783, + 41.197616938884174 + ], + [ + 70.81170595180416, + 41.00296920395572 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 41.00296920395572 + ], + [ + 70.92654863528783, + 41.197616938884174 + ], + [ + 70.69686326832048, + 41.197616938884174 + ], + [ + 70.81170595180416, + 41.00296920395572 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 41.00296920395572 + ], + [ + 70.69686326832048, + 41.197616938884174 + ], + [ + 70.5820205848368, + 41.00296920395572 + ], + [ + 70.81170595180416, + 41.00296920395572 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 41.00296920395572 + ], + [ + 70.5820205848368, + 41.00296920395572 + ], + [ + 70.69686326832048, + 40.80832146902727 + ], + [ + 70.81170595180416, + 41.00296920395572 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 41.00296920395572 + ], + [ + 70.69686326832048, + 40.80832146902727 + ], + [ + 70.92654863528783, + 40.80832146902727 + ], + [ + 70.81170595180416, + 41.00296920395572 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 41.00296920395572 + ], + [ + 70.92654863528783, + 40.80832146902727 + ], + [ + 71.04139131877152, + 41.00296920395572 + ], + [ + 70.81170595180416, + 41.00296920395572 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 41.392264673812626 + ], + [ + 71.04139131877152, + 41.392264673812626 + ], + [ + 70.92654863528783, + 41.58691240874108 + ], + [ + 70.81170595180416, + 41.392264673812626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 41.392264673812626 + ], + [ + 70.92654863528783, + 41.58691240874108 + ], + [ + 70.69686326832048, + 41.58691240874108 + ], + [ + 70.81170595180416, + 41.392264673812626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 41.392264673812626 + ], + [ + 70.69686326832048, + 41.58691240874108 + ], + [ + 70.5820205848368, + 41.392264673812626 + ], + [ + 70.81170595180416, + 41.392264673812626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 41.392264673812626 + ], + [ + 70.5820205848368, + 41.392264673812626 + ], + [ + 70.69686326832048, + 41.197616938884174 + ], + [ + 70.81170595180416, + 41.392264673812626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 41.392264673812626 + ], + [ + 70.69686326832048, + 41.197616938884174 + ], + [ + 70.92654863528783, + 41.197616938884174 + ], + [ + 70.81170595180416, + 41.392264673812626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 41.392264673812626 + ], + [ + 70.92654863528783, + 41.197616938884174 + ], + [ + 71.04139131877152, + 41.392264673812626 + ], + [ + 70.81170595180416, + 41.392264673812626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 41.78156014366953 + ], + [ + 71.04139131877152, + 41.78156014366953 + ], + [ + 70.92654863528783, + 41.97620787859798 + ], + [ + 70.81170595180416, + 41.78156014366953 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 41.78156014366953 + ], + [ + 70.92654863528783, + 41.97620787859798 + ], + [ + 70.69686326832048, + 41.97620787859798 + ], + [ + 70.81170595180416, + 41.78156014366953 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 41.78156014366953 + ], + [ + 70.69686326832048, + 41.97620787859798 + ], + [ + 70.5820205848368, + 41.78156014366953 + ], + [ + 70.81170595180416, + 41.78156014366953 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 41.78156014366953 + ], + [ + 70.5820205848368, + 41.78156014366953 + ], + [ + 70.69686326832048, + 41.58691240874108 + ], + [ + 70.81170595180416, + 41.78156014366953 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 41.78156014366953 + ], + [ + 70.69686326832048, + 41.58691240874108 + ], + [ + 70.92654863528783, + 41.58691240874108 + ], + [ + 70.81170595180416, + 41.78156014366953 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 41.78156014366953 + ], + [ + 70.92654863528783, + 41.58691240874108 + ], + [ + 71.04139131877152, + 41.78156014366953 + ], + [ + 70.81170595180416, + 41.78156014366953 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 42.17085561352644 + ], + [ + 71.04139131877152, + 42.17085561352644 + ], + [ + 70.92654863528783, + 42.365503348454894 + ], + [ + 70.81170595180416, + 42.17085561352644 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 42.17085561352644 + ], + [ + 70.92654863528783, + 42.365503348454894 + ], + [ + 70.69686326832048, + 42.365503348454894 + ], + [ + 70.81170595180416, + 42.17085561352644 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 42.17085561352644 + ], + [ + 70.69686326832048, + 42.365503348454894 + ], + [ + 70.5820205848368, + 42.17085561352644 + ], + [ + 70.81170595180416, + 42.17085561352644 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 42.17085561352644 + ], + [ + 70.5820205848368, + 42.17085561352644 + ], + [ + 70.69686326832048, + 41.97620787859799 + ], + [ + 70.81170595180416, + 42.17085561352644 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 42.17085561352644 + ], + [ + 70.69686326832048, + 41.97620787859799 + ], + [ + 70.92654863528783, + 41.97620787859799 + ], + [ + 70.81170595180416, + 42.17085561352644 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 42.17085561352644 + ], + [ + 70.92654863528783, + 41.97620787859799 + ], + [ + 71.04139131877152, + 42.17085561352644 + ], + [ + 70.81170595180416, + 42.17085561352644 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 42.56015108338335 + ], + [ + 71.04139131877152, + 42.56015108338335 + ], + [ + 70.92654863528783, + 42.754798818311805 + ], + [ + 70.81170595180416, + 42.56015108338335 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 42.56015108338335 + ], + [ + 70.92654863528783, + 42.754798818311805 + ], + [ + 70.69686326832048, + 42.754798818311805 + ], + [ + 70.81170595180416, + 42.56015108338335 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 42.56015108338335 + ], + [ + 70.69686326832048, + 42.754798818311805 + ], + [ + 70.5820205848368, + 42.56015108338335 + ], + [ + 70.81170595180416, + 42.56015108338335 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 42.56015108338335 + ], + [ + 70.5820205848368, + 42.56015108338335 + ], + [ + 70.69686326832048, + 42.3655033484549 + ], + [ + 70.81170595180416, + 42.56015108338335 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 42.56015108338335 + ], + [ + 70.69686326832048, + 42.3655033484549 + ], + [ + 70.92654863528783, + 42.3655033484549 + ], + [ + 70.81170595180416, + 42.56015108338335 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 42.56015108338335 + ], + [ + 70.92654863528783, + 42.3655033484549 + ], + [ + 71.04139131877152, + 42.56015108338335 + ], + [ + 70.81170595180416, + 42.56015108338335 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 42.94944655324026 + ], + [ + 71.04139131877152, + 42.94944655324026 + ], + [ + 70.92654863528783, + 43.14409428816871 + ], + [ + 70.81170595180416, + 42.94944655324026 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 42.94944655324026 + ], + [ + 70.92654863528783, + 43.14409428816871 + ], + [ + 70.69686326832048, + 43.14409428816871 + ], + [ + 70.81170595180416, + 42.94944655324026 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 42.94944655324026 + ], + [ + 70.69686326832048, + 43.14409428816871 + ], + [ + 70.5820205848368, + 42.94944655324026 + ], + [ + 70.81170595180416, + 42.94944655324026 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 42.94944655324026 + ], + [ + 70.5820205848368, + 42.94944655324026 + ], + [ + 70.69686326832048, + 42.754798818311805 + ], + [ + 70.81170595180416, + 42.94944655324026 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 42.94944655324026 + ], + [ + 70.69686326832048, + 42.754798818311805 + ], + [ + 70.92654863528783, + 42.754798818311805 + ], + [ + 70.81170595180416, + 42.94944655324026 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 42.94944655324026 + ], + [ + 70.92654863528783, + 42.754798818311805 + ], + [ + 71.04139131877152, + 42.94944655324026 + ], + [ + 70.81170595180416, + 42.94944655324026 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 43.33874202309716 + ], + [ + 71.04139131877152, + 43.33874202309716 + ], + [ + 70.92654863528783, + 43.53338975802561 + ], + [ + 70.81170595180416, + 43.33874202309716 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 43.33874202309716 + ], + [ + 70.92654863528783, + 43.53338975802561 + ], + [ + 70.69686326832048, + 43.53338975802561 + ], + [ + 70.81170595180416, + 43.33874202309716 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 43.33874202309716 + ], + [ + 70.69686326832048, + 43.53338975802561 + ], + [ + 70.5820205848368, + 43.33874202309716 + ], + [ + 70.81170595180416, + 43.33874202309716 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 43.33874202309716 + ], + [ + 70.5820205848368, + 43.33874202309716 + ], + [ + 70.69686326832048, + 43.14409428816871 + ], + [ + 70.81170595180416, + 43.33874202309716 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 43.33874202309716 + ], + [ + 70.69686326832048, + 43.14409428816871 + ], + [ + 70.92654863528783, + 43.14409428816871 + ], + [ + 70.81170595180416, + 43.33874202309716 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 43.33874202309716 + ], + [ + 70.92654863528783, + 43.14409428816871 + ], + [ + 71.04139131877152, + 43.33874202309716 + ], + [ + 70.81170595180416, + 43.33874202309716 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 43.728037492954066 + ], + [ + 71.04139131877152, + 43.728037492954066 + ], + [ + 70.92654863528783, + 43.92268522788252 + ], + [ + 70.81170595180416, + 43.728037492954066 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 43.728037492954066 + ], + [ + 70.92654863528783, + 43.92268522788252 + ], + [ + 70.69686326832048, + 43.92268522788252 + ], + [ + 70.81170595180416, + 43.728037492954066 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 43.728037492954066 + ], + [ + 70.69686326832048, + 43.92268522788252 + ], + [ + 70.5820205848368, + 43.728037492954066 + ], + [ + 70.81170595180416, + 43.728037492954066 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 43.728037492954066 + ], + [ + 70.5820205848368, + 43.728037492954066 + ], + [ + 70.69686326832048, + 43.53338975802561 + ], + [ + 70.81170595180416, + 43.728037492954066 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 43.728037492954066 + ], + [ + 70.69686326832048, + 43.53338975802561 + ], + [ + 70.92654863528783, + 43.53338975802561 + ], + [ + 70.81170595180416, + 43.728037492954066 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 43.728037492954066 + ], + [ + 70.92654863528783, + 43.53338975802561 + ], + [ + 71.04139131877152, + 43.728037492954066 + ], + [ + 70.81170595180416, + 43.728037492954066 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 44.11733296281097 + ], + [ + 71.04139131877152, + 44.11733296281097 + ], + [ + 70.92654863528783, + 44.31198069773942 + ], + [ + 70.81170595180416, + 44.11733296281097 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 44.11733296281097 + ], + [ + 70.92654863528783, + 44.31198069773942 + ], + [ + 70.69686326832048, + 44.31198069773942 + ], + [ + 70.81170595180416, + 44.11733296281097 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 44.11733296281097 + ], + [ + 70.69686326832048, + 44.31198069773942 + ], + [ + 70.5820205848368, + 44.11733296281097 + ], + [ + 70.81170595180416, + 44.11733296281097 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 44.11733296281097 + ], + [ + 70.5820205848368, + 44.11733296281097 + ], + [ + 70.69686326832048, + 43.92268522788252 + ], + [ + 70.81170595180416, + 44.11733296281097 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 44.11733296281097 + ], + [ + 70.69686326832048, + 43.92268522788252 + ], + [ + 70.92654863528783, + 43.92268522788252 + ], + [ + 70.81170595180416, + 44.11733296281097 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 44.11733296281097 + ], + [ + 70.92654863528783, + 43.92268522788252 + ], + [ + 71.04139131877152, + 44.11733296281097 + ], + [ + 70.81170595180416, + 44.11733296281097 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 44.506628432667874 + ], + [ + 71.04139131877152, + 44.506628432667874 + ], + [ + 70.92654863528783, + 44.701276167596326 + ], + [ + 70.81170595180416, + 44.506628432667874 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 44.506628432667874 + ], + [ + 70.92654863528783, + 44.701276167596326 + ], + [ + 70.69686326832048, + 44.701276167596326 + ], + [ + 70.81170595180416, + 44.506628432667874 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 44.506628432667874 + ], + [ + 70.69686326832048, + 44.701276167596326 + ], + [ + 70.5820205848368, + 44.506628432667874 + ], + [ + 70.81170595180416, + 44.506628432667874 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 44.506628432667874 + ], + [ + 70.5820205848368, + 44.506628432667874 + ], + [ + 70.69686326832048, + 44.31198069773942 + ], + [ + 70.81170595180416, + 44.506628432667874 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 44.506628432667874 + ], + [ + 70.69686326832048, + 44.31198069773942 + ], + [ + 70.92654863528783, + 44.31198069773942 + ], + [ + 70.81170595180416, + 44.506628432667874 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 44.506628432667874 + ], + [ + 70.92654863528783, + 44.31198069773942 + ], + [ + 71.04139131877152, + 44.506628432667874 + ], + [ + 70.81170595180416, + 44.506628432667874 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 44.89592390252479 + ], + [ + 71.04139131877152, + 44.89592390252479 + ], + [ + 70.92654863528783, + 45.090571637453245 + ], + [ + 70.81170595180416, + 44.89592390252479 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 44.89592390252479 + ], + [ + 70.92654863528783, + 45.090571637453245 + ], + [ + 70.69686326832048, + 45.090571637453245 + ], + [ + 70.81170595180416, + 44.89592390252479 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 44.89592390252479 + ], + [ + 70.69686326832048, + 45.090571637453245 + ], + [ + 70.5820205848368, + 44.89592390252479 + ], + [ + 70.81170595180416, + 44.89592390252479 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 44.89592390252479 + ], + [ + 70.5820205848368, + 44.89592390252479 + ], + [ + 70.69686326832048, + 44.70127616759634 + ], + [ + 70.81170595180416, + 44.89592390252479 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 44.89592390252479 + ], + [ + 70.69686326832048, + 44.70127616759634 + ], + [ + 70.92654863528783, + 44.70127616759634 + ], + [ + 70.81170595180416, + 44.89592390252479 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 44.89592390252479 + ], + [ + 70.92654863528783, + 44.70127616759634 + ], + [ + 71.04139131877152, + 44.89592390252479 + ], + [ + 70.81170595180416, + 44.89592390252479 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 45.2852193723817 + ], + [ + 71.04139131877152, + 45.2852193723817 + ], + [ + 70.92654863528783, + 45.47986710731015 + ], + [ + 70.81170595180416, + 45.2852193723817 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 45.2852193723817 + ], + [ + 70.92654863528783, + 45.47986710731015 + ], + [ + 70.69686326832048, + 45.47986710731015 + ], + [ + 70.81170595180416, + 45.2852193723817 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 45.2852193723817 + ], + [ + 70.69686326832048, + 45.47986710731015 + ], + [ + 70.5820205848368, + 45.2852193723817 + ], + [ + 70.81170595180416, + 45.2852193723817 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 45.2852193723817 + ], + [ + 70.5820205848368, + 45.2852193723817 + ], + [ + 70.69686326832048, + 45.090571637453245 + ], + [ + 70.81170595180416, + 45.2852193723817 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 45.2852193723817 + ], + [ + 70.69686326832048, + 45.090571637453245 + ], + [ + 70.92654863528783, + 45.090571637453245 + ], + [ + 70.81170595180416, + 45.2852193723817 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 45.2852193723817 + ], + [ + 70.92654863528783, + 45.090571637453245 + ], + [ + 71.04139131877152, + 45.2852193723817 + ], + [ + 70.81170595180416, + 45.2852193723817 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 45.6745148422386 + ], + [ + 71.04139131877152, + 45.6745148422386 + ], + [ + 70.92654863528783, + 45.86916257716705 + ], + [ + 70.81170595180416, + 45.6745148422386 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 45.6745148422386 + ], + [ + 70.92654863528783, + 45.86916257716705 + ], + [ + 70.69686326832048, + 45.86916257716705 + ], + [ + 70.81170595180416, + 45.6745148422386 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 45.6745148422386 + ], + [ + 70.69686326832048, + 45.86916257716705 + ], + [ + 70.5820205848368, + 45.6745148422386 + ], + [ + 70.81170595180416, + 45.6745148422386 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 45.6745148422386 + ], + [ + 70.5820205848368, + 45.6745148422386 + ], + [ + 70.69686326832048, + 45.47986710731015 + ], + [ + 70.81170595180416, + 45.6745148422386 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 45.6745148422386 + ], + [ + 70.69686326832048, + 45.47986710731015 + ], + [ + 70.92654863528783, + 45.47986710731015 + ], + [ + 70.81170595180416, + 45.6745148422386 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 45.6745148422386 + ], + [ + 70.92654863528783, + 45.47986710731015 + ], + [ + 71.04139131877152, + 45.6745148422386 + ], + [ + 70.81170595180416, + 45.6745148422386 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 46.063810312095505 + ], + [ + 71.04139131877152, + 46.063810312095505 + ], + [ + 70.92654863528783, + 46.25845804702396 + ], + [ + 70.81170595180416, + 46.063810312095505 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 46.063810312095505 + ], + [ + 70.92654863528783, + 46.25845804702396 + ], + [ + 70.69686326832048, + 46.25845804702396 + ], + [ + 70.81170595180416, + 46.063810312095505 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 46.063810312095505 + ], + [ + 70.69686326832048, + 46.25845804702396 + ], + [ + 70.5820205848368, + 46.063810312095505 + ], + [ + 70.81170595180416, + 46.063810312095505 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 46.063810312095505 + ], + [ + 70.5820205848368, + 46.063810312095505 + ], + [ + 70.69686326832048, + 45.86916257716705 + ], + [ + 70.81170595180416, + 46.063810312095505 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 46.063810312095505 + ], + [ + 70.69686326832048, + 45.86916257716705 + ], + [ + 70.92654863528783, + 45.86916257716705 + ], + [ + 70.81170595180416, + 46.063810312095505 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 46.063810312095505 + ], + [ + 70.92654863528783, + 45.86916257716705 + ], + [ + 71.04139131877152, + 46.063810312095505 + ], + [ + 70.81170595180416, + 46.063810312095505 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 46.45310578195241 + ], + [ + 71.04139131877152, + 46.45310578195241 + ], + [ + 70.92654863528783, + 46.64775351688086 + ], + [ + 70.81170595180416, + 46.45310578195241 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 46.45310578195241 + ], + [ + 70.92654863528783, + 46.64775351688086 + ], + [ + 70.69686326832048, + 46.64775351688086 + ], + [ + 70.81170595180416, + 46.45310578195241 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 46.45310578195241 + ], + [ + 70.69686326832048, + 46.64775351688086 + ], + [ + 70.5820205848368, + 46.45310578195241 + ], + [ + 70.81170595180416, + 46.45310578195241 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 46.45310578195241 + ], + [ + 70.5820205848368, + 46.45310578195241 + ], + [ + 70.69686326832048, + 46.25845804702396 + ], + [ + 70.81170595180416, + 46.45310578195241 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 46.45310578195241 + ], + [ + 70.69686326832048, + 46.25845804702396 + ], + [ + 70.92654863528783, + 46.25845804702396 + ], + [ + 70.81170595180416, + 46.45310578195241 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 46.45310578195241 + ], + [ + 70.92654863528783, + 46.25845804702396 + ], + [ + 71.04139131877152, + 46.45310578195241 + ], + [ + 70.81170595180416, + 46.45310578195241 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 46.842401251809314 + ], + [ + 71.04139131877152, + 46.842401251809314 + ], + [ + 70.92654863528783, + 47.037048986737766 + ], + [ + 70.81170595180416, + 46.842401251809314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 46.842401251809314 + ], + [ + 70.92654863528783, + 47.037048986737766 + ], + [ + 70.69686326832048, + 47.037048986737766 + ], + [ + 70.81170595180416, + 46.842401251809314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 46.842401251809314 + ], + [ + 70.69686326832048, + 47.037048986737766 + ], + [ + 70.5820205848368, + 46.842401251809314 + ], + [ + 70.81170595180416, + 46.842401251809314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 46.842401251809314 + ], + [ + 70.5820205848368, + 46.842401251809314 + ], + [ + 70.69686326832048, + 46.64775351688086 + ], + [ + 70.81170595180416, + 46.842401251809314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 46.842401251809314 + ], + [ + 70.69686326832048, + 46.64775351688086 + ], + [ + 70.92654863528783, + 46.64775351688086 + ], + [ + 70.81170595180416, + 46.842401251809314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 46.842401251809314 + ], + [ + 70.92654863528783, + 46.64775351688086 + ], + [ + 71.04139131877152, + 46.842401251809314 + ], + [ + 70.81170595180416, + 46.842401251809314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 47.23169672166622 + ], + [ + 71.04139131877152, + 47.23169672166622 + ], + [ + 70.92654863528783, + 47.42634445659467 + ], + [ + 70.81170595180416, + 47.23169672166622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 47.23169672166622 + ], + [ + 70.92654863528783, + 47.42634445659467 + ], + [ + 70.69686326832048, + 47.42634445659467 + ], + [ + 70.81170595180416, + 47.23169672166622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 47.23169672166622 + ], + [ + 70.69686326832048, + 47.42634445659467 + ], + [ + 70.5820205848368, + 47.23169672166622 + ], + [ + 70.81170595180416, + 47.23169672166622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 47.23169672166622 + ], + [ + 70.5820205848368, + 47.23169672166622 + ], + [ + 70.69686326832048, + 47.037048986737766 + ], + [ + 70.81170595180416, + 47.23169672166622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 47.23169672166622 + ], + [ + 70.69686326832048, + 47.037048986737766 + ], + [ + 70.92654863528783, + 47.037048986737766 + ], + [ + 70.81170595180416, + 47.23169672166622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 47.23169672166622 + ], + [ + 70.92654863528783, + 47.037048986737766 + ], + [ + 71.04139131877152, + 47.23169672166622 + ], + [ + 70.81170595180416, + 47.23169672166622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 47.620992191523136 + ], + [ + 71.04139131877152, + 47.620992191523136 + ], + [ + 70.92654863528783, + 47.81563992645159 + ], + [ + 70.81170595180416, + 47.620992191523136 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 47.620992191523136 + ], + [ + 70.92654863528783, + 47.81563992645159 + ], + [ + 70.69686326832048, + 47.81563992645159 + ], + [ + 70.81170595180416, + 47.620992191523136 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 47.620992191523136 + ], + [ + 70.69686326832048, + 47.81563992645159 + ], + [ + 70.5820205848368, + 47.620992191523136 + ], + [ + 70.81170595180416, + 47.620992191523136 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 47.620992191523136 + ], + [ + 70.5820205848368, + 47.620992191523136 + ], + [ + 70.69686326832048, + 47.426344456594684 + ], + [ + 70.81170595180416, + 47.620992191523136 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 47.620992191523136 + ], + [ + 70.69686326832048, + 47.426344456594684 + ], + [ + 70.92654863528783, + 47.426344456594684 + ], + [ + 70.81170595180416, + 47.620992191523136 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.81170595180416, + 47.620992191523136 + ], + [ + 70.92654863528783, + 47.426344456594684 + ], + [ + 71.04139131877152, + 47.620992191523136 + ], + [ + 70.81170595180416, + 47.620992191523136 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 12.0004566996162 + ], + [ + 71.38591936922255, + 12.0004566996162 + ], + [ + 71.27107668573886, + 12.195104434544653 + ], + [ + 71.15623400225519, + 12.0004566996162 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 12.0004566996162 + ], + [ + 71.27107668573886, + 12.195104434544653 + ], + [ + 71.04139131877152, + 12.195104434544653 + ], + [ + 71.15623400225519, + 12.0004566996162 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 12.0004566996162 + ], + [ + 71.04139131877152, + 12.195104434544653 + ], + [ + 70.92654863528783, + 12.0004566996162 + ], + [ + 71.15623400225519, + 12.0004566996162 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 12.0004566996162 + ], + [ + 70.92654863528783, + 12.0004566996162 + ], + [ + 71.04139131877152, + 11.805808964687746 + ], + [ + 71.15623400225519, + 12.0004566996162 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 12.0004566996162 + ], + [ + 71.04139131877152, + 11.805808964687746 + ], + [ + 71.27107668573886, + 11.805808964687746 + ], + [ + 71.15623400225519, + 12.0004566996162 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 12.0004566996162 + ], + [ + 71.27107668573886, + 11.805808964687746 + ], + [ + 71.38591936922255, + 12.0004566996162 + ], + [ + 71.15623400225519, + 12.0004566996162 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 12.389752169473105 + ], + [ + 71.38591936922255, + 12.389752169473105 + ], + [ + 71.27107668573886, + 12.58439990440156 + ], + [ + 71.15623400225519, + 12.389752169473105 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 12.389752169473105 + ], + [ + 71.27107668573886, + 12.58439990440156 + ], + [ + 71.04139131877152, + 12.58439990440156 + ], + [ + 71.15623400225519, + 12.389752169473105 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 12.389752169473105 + ], + [ + 71.04139131877152, + 12.58439990440156 + ], + [ + 70.92654863528783, + 12.389752169473105 + ], + [ + 71.15623400225519, + 12.389752169473105 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 12.389752169473105 + ], + [ + 70.92654863528783, + 12.389752169473105 + ], + [ + 71.04139131877152, + 12.195104434544652 + ], + [ + 71.15623400225519, + 12.389752169473105 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 12.389752169473105 + ], + [ + 71.04139131877152, + 12.195104434544652 + ], + [ + 71.27107668573886, + 12.195104434544652 + ], + [ + 71.15623400225519, + 12.389752169473105 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 12.389752169473105 + ], + [ + 71.27107668573886, + 12.195104434544652 + ], + [ + 71.38591936922255, + 12.389752169473105 + ], + [ + 71.15623400225519, + 12.389752169473105 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 12.779047639330013 + ], + [ + 71.38591936922255, + 12.779047639330013 + ], + [ + 71.27107668573886, + 12.973695374258467 + ], + [ + 71.15623400225519, + 12.779047639330013 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 12.779047639330013 + ], + [ + 71.27107668573886, + 12.973695374258467 + ], + [ + 71.04139131877152, + 12.973695374258467 + ], + [ + 71.15623400225519, + 12.779047639330013 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 12.779047639330013 + ], + [ + 71.04139131877152, + 12.973695374258467 + ], + [ + 70.92654863528783, + 12.779047639330013 + ], + [ + 71.15623400225519, + 12.779047639330013 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 12.779047639330013 + ], + [ + 70.92654863528783, + 12.779047639330013 + ], + [ + 71.04139131877152, + 12.58439990440156 + ], + [ + 71.15623400225519, + 12.779047639330013 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 12.779047639330013 + ], + [ + 71.04139131877152, + 12.58439990440156 + ], + [ + 71.27107668573886, + 12.58439990440156 + ], + [ + 71.15623400225519, + 12.779047639330013 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 12.779047639330013 + ], + [ + 71.27107668573886, + 12.58439990440156 + ], + [ + 71.38591936922255, + 12.779047639330013 + ], + [ + 71.15623400225519, + 12.779047639330013 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 13.16834310918692 + ], + [ + 71.38591936922255, + 13.16834310918692 + ], + [ + 71.27107668573886, + 13.362990844115373 + ], + [ + 71.15623400225519, + 13.16834310918692 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 13.16834310918692 + ], + [ + 71.27107668573886, + 13.362990844115373 + ], + [ + 71.04139131877152, + 13.362990844115373 + ], + [ + 71.15623400225519, + 13.16834310918692 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 13.16834310918692 + ], + [ + 71.04139131877152, + 13.362990844115373 + ], + [ + 70.92654863528783, + 13.16834310918692 + ], + [ + 71.15623400225519, + 13.16834310918692 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 13.16834310918692 + ], + [ + 70.92654863528783, + 13.16834310918692 + ], + [ + 71.04139131877152, + 12.973695374258465 + ], + [ + 71.15623400225519, + 13.16834310918692 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 13.16834310918692 + ], + [ + 71.04139131877152, + 12.973695374258465 + ], + [ + 71.27107668573886, + 12.973695374258465 + ], + [ + 71.15623400225519, + 13.16834310918692 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 13.16834310918692 + ], + [ + 71.27107668573886, + 12.973695374258465 + ], + [ + 71.38591936922255, + 13.16834310918692 + ], + [ + 71.15623400225519, + 13.16834310918692 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 13.557638579043825 + ], + [ + 71.38591936922255, + 13.557638579043825 + ], + [ + 71.27107668573886, + 13.752286313972279 + ], + [ + 71.15623400225519, + 13.557638579043825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 13.557638579043825 + ], + [ + 71.27107668573886, + 13.752286313972279 + ], + [ + 71.04139131877152, + 13.752286313972279 + ], + [ + 71.15623400225519, + 13.557638579043825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 13.557638579043825 + ], + [ + 71.04139131877152, + 13.752286313972279 + ], + [ + 70.92654863528783, + 13.557638579043825 + ], + [ + 71.15623400225519, + 13.557638579043825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 13.557638579043825 + ], + [ + 70.92654863528783, + 13.557638579043825 + ], + [ + 71.04139131877152, + 13.362990844115371 + ], + [ + 71.15623400225519, + 13.557638579043825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 13.557638579043825 + ], + [ + 71.04139131877152, + 13.362990844115371 + ], + [ + 71.27107668573886, + 13.362990844115371 + ], + [ + 71.15623400225519, + 13.557638579043825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 13.557638579043825 + ], + [ + 71.27107668573886, + 13.362990844115371 + ], + [ + 71.38591936922255, + 13.557638579043825 + ], + [ + 71.15623400225519, + 13.557638579043825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 13.946934048900731 + ], + [ + 71.38591936922255, + 13.946934048900731 + ], + [ + 71.27107668573886, + 14.141581783829185 + ], + [ + 71.15623400225519, + 13.946934048900731 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 13.946934048900731 + ], + [ + 71.27107668573886, + 14.141581783829185 + ], + [ + 71.04139131877152, + 14.141581783829185 + ], + [ + 71.15623400225519, + 13.946934048900731 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 13.946934048900731 + ], + [ + 71.04139131877152, + 14.141581783829185 + ], + [ + 70.92654863528783, + 13.946934048900731 + ], + [ + 71.15623400225519, + 13.946934048900731 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 13.946934048900731 + ], + [ + 70.92654863528783, + 13.946934048900731 + ], + [ + 71.04139131877152, + 13.752286313972277 + ], + [ + 71.15623400225519, + 13.946934048900731 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 13.946934048900731 + ], + [ + 71.04139131877152, + 13.752286313972277 + ], + [ + 71.27107668573886, + 13.752286313972277 + ], + [ + 71.15623400225519, + 13.946934048900731 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 13.946934048900731 + ], + [ + 71.27107668573886, + 13.752286313972277 + ], + [ + 71.38591936922255, + 13.946934048900731 + ], + [ + 71.15623400225519, + 13.946934048900731 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 14.336229518757637 + ], + [ + 71.38591936922255, + 14.336229518757637 + ], + [ + 71.27107668573886, + 14.530877253686091 + ], + [ + 71.15623400225519, + 14.336229518757637 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 14.336229518757637 + ], + [ + 71.27107668573886, + 14.530877253686091 + ], + [ + 71.04139131877152, + 14.530877253686091 + ], + [ + 71.15623400225519, + 14.336229518757637 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 14.336229518757637 + ], + [ + 71.04139131877152, + 14.530877253686091 + ], + [ + 70.92654863528783, + 14.336229518757637 + ], + [ + 71.15623400225519, + 14.336229518757637 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 14.336229518757637 + ], + [ + 70.92654863528783, + 14.336229518757637 + ], + [ + 71.04139131877152, + 14.141581783829183 + ], + [ + 71.15623400225519, + 14.336229518757637 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 14.336229518757637 + ], + [ + 71.04139131877152, + 14.141581783829183 + ], + [ + 71.27107668573886, + 14.141581783829183 + ], + [ + 71.15623400225519, + 14.336229518757637 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 14.336229518757637 + ], + [ + 71.27107668573886, + 14.141581783829183 + ], + [ + 71.38591936922255, + 14.336229518757637 + ], + [ + 71.15623400225519, + 14.336229518757637 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 14.725524988614545 + ], + [ + 71.38591936922255, + 14.725524988614545 + ], + [ + 71.27107668573886, + 14.920172723542999 + ], + [ + 71.15623400225519, + 14.725524988614545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 14.725524988614545 + ], + [ + 71.27107668573886, + 14.920172723542999 + ], + [ + 71.04139131877152, + 14.920172723542999 + ], + [ + 71.15623400225519, + 14.725524988614545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 14.725524988614545 + ], + [ + 71.04139131877152, + 14.920172723542999 + ], + [ + 70.92654863528783, + 14.725524988614545 + ], + [ + 71.15623400225519, + 14.725524988614545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 14.725524988614545 + ], + [ + 70.92654863528783, + 14.725524988614545 + ], + [ + 71.04139131877152, + 14.530877253686091 + ], + [ + 71.15623400225519, + 14.725524988614545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 14.725524988614545 + ], + [ + 71.04139131877152, + 14.530877253686091 + ], + [ + 71.27107668573886, + 14.530877253686091 + ], + [ + 71.15623400225519, + 14.725524988614545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 14.725524988614545 + ], + [ + 71.27107668573886, + 14.530877253686091 + ], + [ + 71.38591936922255, + 14.725524988614545 + ], + [ + 71.15623400225519, + 14.725524988614545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 15.114820458471451 + ], + [ + 71.38591936922255, + 15.114820458471451 + ], + [ + 71.27107668573886, + 15.309468193399905 + ], + [ + 71.15623400225519, + 15.114820458471451 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 15.114820458471451 + ], + [ + 71.27107668573886, + 15.309468193399905 + ], + [ + 71.04139131877152, + 15.309468193399905 + ], + [ + 71.15623400225519, + 15.114820458471451 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 15.114820458471451 + ], + [ + 71.04139131877152, + 15.309468193399905 + ], + [ + 70.92654863528783, + 15.114820458471451 + ], + [ + 71.15623400225519, + 15.114820458471451 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 15.114820458471451 + ], + [ + 70.92654863528783, + 15.114820458471451 + ], + [ + 71.04139131877152, + 14.920172723542997 + ], + [ + 71.15623400225519, + 15.114820458471451 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 15.114820458471451 + ], + [ + 71.04139131877152, + 14.920172723542997 + ], + [ + 71.27107668573886, + 14.920172723542997 + ], + [ + 71.15623400225519, + 15.114820458471451 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 15.114820458471451 + ], + [ + 71.27107668573886, + 14.920172723542997 + ], + [ + 71.38591936922255, + 15.114820458471451 + ], + [ + 71.15623400225519, + 15.114820458471451 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 15.504115928328357 + ], + [ + 71.38591936922255, + 15.504115928328357 + ], + [ + 71.27107668573886, + 15.69876366325681 + ], + [ + 71.15623400225519, + 15.504115928328357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 15.504115928328357 + ], + [ + 71.27107668573886, + 15.69876366325681 + ], + [ + 71.04139131877152, + 15.69876366325681 + ], + [ + 71.15623400225519, + 15.504115928328357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 15.504115928328357 + ], + [ + 71.04139131877152, + 15.69876366325681 + ], + [ + 70.92654863528783, + 15.504115928328357 + ], + [ + 71.15623400225519, + 15.504115928328357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 15.504115928328357 + ], + [ + 70.92654863528783, + 15.504115928328357 + ], + [ + 71.04139131877152, + 15.309468193399903 + ], + [ + 71.15623400225519, + 15.504115928328357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 15.504115928328357 + ], + [ + 71.04139131877152, + 15.309468193399903 + ], + [ + 71.27107668573886, + 15.309468193399903 + ], + [ + 71.15623400225519, + 15.504115928328357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 15.504115928328357 + ], + [ + 71.27107668573886, + 15.309468193399903 + ], + [ + 71.38591936922255, + 15.504115928328357 + ], + [ + 71.15623400225519, + 15.504115928328357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 15.893411398185265 + ], + [ + 71.38591936922255, + 15.893411398185265 + ], + [ + 71.27107668573886, + 16.088059133113717 + ], + [ + 71.15623400225519, + 15.893411398185265 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 15.893411398185265 + ], + [ + 71.27107668573886, + 16.088059133113717 + ], + [ + 71.04139131877152, + 16.088059133113717 + ], + [ + 71.15623400225519, + 15.893411398185265 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 15.893411398185265 + ], + [ + 71.04139131877152, + 16.088059133113717 + ], + [ + 70.92654863528783, + 15.893411398185265 + ], + [ + 71.15623400225519, + 15.893411398185265 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 15.893411398185265 + ], + [ + 70.92654863528783, + 15.893411398185265 + ], + [ + 71.04139131877152, + 15.69876366325681 + ], + [ + 71.15623400225519, + 15.893411398185265 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 15.893411398185265 + ], + [ + 71.04139131877152, + 15.69876366325681 + ], + [ + 71.27107668573886, + 15.69876366325681 + ], + [ + 71.15623400225519, + 15.893411398185265 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 15.893411398185265 + ], + [ + 71.27107668573886, + 15.69876366325681 + ], + [ + 71.38591936922255, + 15.893411398185265 + ], + [ + 71.15623400225519, + 15.893411398185265 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 16.28270686804217 + ], + [ + 71.38591936922255, + 16.28270686804217 + ], + [ + 71.27107668573886, + 16.47735460297062 + ], + [ + 71.15623400225519, + 16.28270686804217 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 16.28270686804217 + ], + [ + 71.27107668573886, + 16.47735460297062 + ], + [ + 71.04139131877152, + 16.47735460297062 + ], + [ + 71.15623400225519, + 16.28270686804217 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 16.28270686804217 + ], + [ + 71.04139131877152, + 16.47735460297062 + ], + [ + 70.92654863528783, + 16.28270686804217 + ], + [ + 71.15623400225519, + 16.28270686804217 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 16.28270686804217 + ], + [ + 70.92654863528783, + 16.28270686804217 + ], + [ + 71.04139131877152, + 16.088059133113717 + ], + [ + 71.15623400225519, + 16.28270686804217 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 16.28270686804217 + ], + [ + 71.04139131877152, + 16.088059133113717 + ], + [ + 71.27107668573886, + 16.088059133113717 + ], + [ + 71.15623400225519, + 16.28270686804217 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 16.28270686804217 + ], + [ + 71.27107668573886, + 16.088059133113717 + ], + [ + 71.38591936922255, + 16.28270686804217 + ], + [ + 71.15623400225519, + 16.28270686804217 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 16.672002337899077 + ], + [ + 71.38591936922255, + 16.672002337899077 + ], + [ + 71.27107668573886, + 16.86665007282753 + ], + [ + 71.15623400225519, + 16.672002337899077 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 16.672002337899077 + ], + [ + 71.27107668573886, + 16.86665007282753 + ], + [ + 71.04139131877152, + 16.86665007282753 + ], + [ + 71.15623400225519, + 16.672002337899077 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 16.672002337899077 + ], + [ + 71.04139131877152, + 16.86665007282753 + ], + [ + 70.92654863528783, + 16.672002337899077 + ], + [ + 71.15623400225519, + 16.672002337899077 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 16.672002337899077 + ], + [ + 70.92654863528783, + 16.672002337899077 + ], + [ + 71.04139131877152, + 16.477354602970625 + ], + [ + 71.15623400225519, + 16.672002337899077 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 16.672002337899077 + ], + [ + 71.04139131877152, + 16.477354602970625 + ], + [ + 71.27107668573886, + 16.477354602970625 + ], + [ + 71.15623400225519, + 16.672002337899077 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 16.672002337899077 + ], + [ + 71.27107668573886, + 16.477354602970625 + ], + [ + 71.38591936922255, + 16.672002337899077 + ], + [ + 71.15623400225519, + 16.672002337899077 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 17.06129780775598 + ], + [ + 71.38591936922255, + 17.06129780775598 + ], + [ + 71.27107668573886, + 17.255945542684433 + ], + [ + 71.15623400225519, + 17.06129780775598 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 17.06129780775598 + ], + [ + 71.27107668573886, + 17.255945542684433 + ], + [ + 71.04139131877152, + 17.255945542684433 + ], + [ + 71.15623400225519, + 17.06129780775598 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 17.06129780775598 + ], + [ + 71.04139131877152, + 17.255945542684433 + ], + [ + 70.92654863528783, + 17.06129780775598 + ], + [ + 71.15623400225519, + 17.06129780775598 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 17.06129780775598 + ], + [ + 70.92654863528783, + 17.06129780775598 + ], + [ + 71.04139131877152, + 16.86665007282753 + ], + [ + 71.15623400225519, + 17.06129780775598 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 17.06129780775598 + ], + [ + 71.04139131877152, + 16.86665007282753 + ], + [ + 71.27107668573886, + 16.86665007282753 + ], + [ + 71.15623400225519, + 17.06129780775598 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 17.06129780775598 + ], + [ + 71.27107668573886, + 16.86665007282753 + ], + [ + 71.38591936922255, + 17.06129780775598 + ], + [ + 71.15623400225519, + 17.06129780775598 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 17.45059327761289 + ], + [ + 71.38591936922255, + 17.45059327761289 + ], + [ + 71.27107668573886, + 17.64524101254134 + ], + [ + 71.15623400225519, + 17.45059327761289 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 17.45059327761289 + ], + [ + 71.27107668573886, + 17.64524101254134 + ], + [ + 71.04139131877152, + 17.64524101254134 + ], + [ + 71.15623400225519, + 17.45059327761289 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 17.45059327761289 + ], + [ + 71.04139131877152, + 17.64524101254134 + ], + [ + 70.92654863528783, + 17.45059327761289 + ], + [ + 71.15623400225519, + 17.45059327761289 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 17.45059327761289 + ], + [ + 70.92654863528783, + 17.45059327761289 + ], + [ + 71.04139131877152, + 17.255945542684437 + ], + [ + 71.15623400225519, + 17.45059327761289 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 17.45059327761289 + ], + [ + 71.04139131877152, + 17.255945542684437 + ], + [ + 71.27107668573886, + 17.255945542684437 + ], + [ + 71.15623400225519, + 17.45059327761289 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 17.45059327761289 + ], + [ + 71.27107668573886, + 17.255945542684437 + ], + [ + 71.38591936922255, + 17.45059327761289 + ], + [ + 71.15623400225519, + 17.45059327761289 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 17.839888747469793 + ], + [ + 71.38591936922255, + 17.839888747469793 + ], + [ + 71.27107668573886, + 18.034536482398245 + ], + [ + 71.15623400225519, + 17.839888747469793 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 17.839888747469793 + ], + [ + 71.27107668573886, + 18.034536482398245 + ], + [ + 71.04139131877152, + 18.034536482398245 + ], + [ + 71.15623400225519, + 17.839888747469793 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 17.839888747469793 + ], + [ + 71.04139131877152, + 18.034536482398245 + ], + [ + 70.92654863528783, + 17.839888747469793 + ], + [ + 71.15623400225519, + 17.839888747469793 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 17.839888747469793 + ], + [ + 70.92654863528783, + 17.839888747469793 + ], + [ + 71.04139131877152, + 17.64524101254134 + ], + [ + 71.15623400225519, + 17.839888747469793 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 17.839888747469793 + ], + [ + 71.04139131877152, + 17.64524101254134 + ], + [ + 71.27107668573886, + 17.64524101254134 + ], + [ + 71.15623400225519, + 17.839888747469793 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 17.839888747469793 + ], + [ + 71.27107668573886, + 17.64524101254134 + ], + [ + 71.38591936922255, + 17.839888747469793 + ], + [ + 71.15623400225519, + 17.839888747469793 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 18.2291842173267 + ], + [ + 71.38591936922255, + 18.2291842173267 + ], + [ + 71.27107668573886, + 18.423831952255153 + ], + [ + 71.15623400225519, + 18.2291842173267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 18.2291842173267 + ], + [ + 71.27107668573886, + 18.423831952255153 + ], + [ + 71.04139131877152, + 18.423831952255153 + ], + [ + 71.15623400225519, + 18.2291842173267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 18.2291842173267 + ], + [ + 71.04139131877152, + 18.423831952255153 + ], + [ + 70.92654863528783, + 18.2291842173267 + ], + [ + 71.15623400225519, + 18.2291842173267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 18.2291842173267 + ], + [ + 70.92654863528783, + 18.2291842173267 + ], + [ + 71.04139131877152, + 18.03453648239825 + ], + [ + 71.15623400225519, + 18.2291842173267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 18.2291842173267 + ], + [ + 71.04139131877152, + 18.03453648239825 + ], + [ + 71.27107668573886, + 18.03453648239825 + ], + [ + 71.15623400225519, + 18.2291842173267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 18.2291842173267 + ], + [ + 71.27107668573886, + 18.03453648239825 + ], + [ + 71.38591936922255, + 18.2291842173267 + ], + [ + 71.15623400225519, + 18.2291842173267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 18.61847968718361 + ], + [ + 71.38591936922255, + 18.61847968718361 + ], + [ + 71.27107668573886, + 18.81312742211206 + ], + [ + 71.15623400225519, + 18.61847968718361 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 18.61847968718361 + ], + [ + 71.27107668573886, + 18.81312742211206 + ], + [ + 71.04139131877152, + 18.81312742211206 + ], + [ + 71.15623400225519, + 18.61847968718361 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 18.61847968718361 + ], + [ + 71.04139131877152, + 18.81312742211206 + ], + [ + 70.92654863528783, + 18.61847968718361 + ], + [ + 71.15623400225519, + 18.61847968718361 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 18.61847968718361 + ], + [ + 70.92654863528783, + 18.61847968718361 + ], + [ + 71.04139131877152, + 18.423831952255156 + ], + [ + 71.15623400225519, + 18.61847968718361 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 18.61847968718361 + ], + [ + 71.04139131877152, + 18.423831952255156 + ], + [ + 71.27107668573886, + 18.423831952255156 + ], + [ + 71.15623400225519, + 18.61847968718361 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 18.61847968718361 + ], + [ + 71.27107668573886, + 18.423831952255156 + ], + [ + 71.38591936922255, + 18.61847968718361 + ], + [ + 71.15623400225519, + 18.61847968718361 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 19.007775157040513 + ], + [ + 71.38591936922255, + 19.007775157040513 + ], + [ + 71.27107668573886, + 19.202422891968965 + ], + [ + 71.15623400225519, + 19.007775157040513 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 19.007775157040513 + ], + [ + 71.27107668573886, + 19.202422891968965 + ], + [ + 71.04139131877152, + 19.202422891968965 + ], + [ + 71.15623400225519, + 19.007775157040513 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 19.007775157040513 + ], + [ + 71.04139131877152, + 19.202422891968965 + ], + [ + 70.92654863528783, + 19.007775157040513 + ], + [ + 71.15623400225519, + 19.007775157040513 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 19.007775157040513 + ], + [ + 70.92654863528783, + 19.007775157040513 + ], + [ + 71.04139131877152, + 18.81312742211206 + ], + [ + 71.15623400225519, + 19.007775157040513 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 19.007775157040513 + ], + [ + 71.04139131877152, + 18.81312742211206 + ], + [ + 71.27107668573886, + 18.81312742211206 + ], + [ + 71.15623400225519, + 19.007775157040513 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 19.007775157040513 + ], + [ + 71.27107668573886, + 18.81312742211206 + ], + [ + 71.38591936922255, + 19.007775157040513 + ], + [ + 71.15623400225519, + 19.007775157040513 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 19.39707062689742 + ], + [ + 71.38591936922255, + 19.39707062689742 + ], + [ + 71.27107668573886, + 19.591718361825873 + ], + [ + 71.15623400225519, + 19.39707062689742 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 19.39707062689742 + ], + [ + 71.27107668573886, + 19.591718361825873 + ], + [ + 71.04139131877152, + 19.591718361825873 + ], + [ + 71.15623400225519, + 19.39707062689742 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 19.39707062689742 + ], + [ + 71.04139131877152, + 19.591718361825873 + ], + [ + 70.92654863528783, + 19.39707062689742 + ], + [ + 71.15623400225519, + 19.39707062689742 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 19.39707062689742 + ], + [ + 70.92654863528783, + 19.39707062689742 + ], + [ + 71.04139131877152, + 19.20242289196897 + ], + [ + 71.15623400225519, + 19.39707062689742 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 19.39707062689742 + ], + [ + 71.04139131877152, + 19.20242289196897 + ], + [ + 71.27107668573886, + 19.20242289196897 + ], + [ + 71.15623400225519, + 19.39707062689742 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 19.39707062689742 + ], + [ + 71.27107668573886, + 19.20242289196897 + ], + [ + 71.38591936922255, + 19.39707062689742 + ], + [ + 71.15623400225519, + 19.39707062689742 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 19.78636609675433 + ], + [ + 71.38591936922255, + 19.78636609675433 + ], + [ + 71.27107668573886, + 19.98101383168278 + ], + [ + 71.15623400225519, + 19.78636609675433 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 19.78636609675433 + ], + [ + 71.27107668573886, + 19.98101383168278 + ], + [ + 71.04139131877152, + 19.98101383168278 + ], + [ + 71.15623400225519, + 19.78636609675433 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 19.78636609675433 + ], + [ + 71.04139131877152, + 19.98101383168278 + ], + [ + 70.92654863528783, + 19.78636609675433 + ], + [ + 71.15623400225519, + 19.78636609675433 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 19.78636609675433 + ], + [ + 70.92654863528783, + 19.78636609675433 + ], + [ + 71.04139131877152, + 19.591718361825876 + ], + [ + 71.15623400225519, + 19.78636609675433 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 19.78636609675433 + ], + [ + 71.04139131877152, + 19.591718361825876 + ], + [ + 71.27107668573886, + 19.591718361825876 + ], + [ + 71.15623400225519, + 19.78636609675433 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 19.78636609675433 + ], + [ + 71.27107668573886, + 19.591718361825876 + ], + [ + 71.38591936922255, + 19.78636609675433 + ], + [ + 71.15623400225519, + 19.78636609675433 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 20.175661566611232 + ], + [ + 71.38591936922255, + 20.175661566611232 + ], + [ + 71.27107668573886, + 20.370309301539685 + ], + [ + 71.15623400225519, + 20.175661566611232 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 20.175661566611232 + ], + [ + 71.27107668573886, + 20.370309301539685 + ], + [ + 71.04139131877152, + 20.370309301539685 + ], + [ + 71.15623400225519, + 20.175661566611232 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 20.175661566611232 + ], + [ + 71.04139131877152, + 20.370309301539685 + ], + [ + 70.92654863528783, + 20.175661566611232 + ], + [ + 71.15623400225519, + 20.175661566611232 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 20.175661566611232 + ], + [ + 70.92654863528783, + 20.175661566611232 + ], + [ + 71.04139131877152, + 19.98101383168278 + ], + [ + 71.15623400225519, + 20.175661566611232 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 20.175661566611232 + ], + [ + 71.04139131877152, + 19.98101383168278 + ], + [ + 71.27107668573886, + 19.98101383168278 + ], + [ + 71.15623400225519, + 20.175661566611232 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 20.175661566611232 + ], + [ + 71.27107668573886, + 19.98101383168278 + ], + [ + 71.38591936922255, + 20.175661566611232 + ], + [ + 71.15623400225519, + 20.175661566611232 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 20.564957036468137 + ], + [ + 71.38591936922255, + 20.564957036468137 + ], + [ + 71.27107668573886, + 20.75960477139659 + ], + [ + 71.15623400225519, + 20.564957036468137 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 20.564957036468137 + ], + [ + 71.27107668573886, + 20.75960477139659 + ], + [ + 71.04139131877152, + 20.75960477139659 + ], + [ + 71.15623400225519, + 20.564957036468137 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 20.564957036468137 + ], + [ + 71.04139131877152, + 20.75960477139659 + ], + [ + 70.92654863528783, + 20.564957036468137 + ], + [ + 71.15623400225519, + 20.564957036468137 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 20.564957036468137 + ], + [ + 70.92654863528783, + 20.564957036468137 + ], + [ + 71.04139131877152, + 20.370309301539685 + ], + [ + 71.15623400225519, + 20.564957036468137 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 20.564957036468137 + ], + [ + 71.04139131877152, + 20.370309301539685 + ], + [ + 71.27107668573886, + 20.370309301539685 + ], + [ + 71.15623400225519, + 20.564957036468137 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 20.564957036468137 + ], + [ + 71.27107668573886, + 20.370309301539685 + ], + [ + 71.38591936922255, + 20.564957036468137 + ], + [ + 71.15623400225519, + 20.564957036468137 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 20.954252506325044 + ], + [ + 71.38591936922255, + 20.954252506325044 + ], + [ + 71.27107668573886, + 21.148900241253497 + ], + [ + 71.15623400225519, + 20.954252506325044 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 20.954252506325044 + ], + [ + 71.27107668573886, + 21.148900241253497 + ], + [ + 71.04139131877152, + 21.148900241253497 + ], + [ + 71.15623400225519, + 20.954252506325044 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 20.954252506325044 + ], + [ + 71.04139131877152, + 21.148900241253497 + ], + [ + 70.92654863528783, + 20.954252506325044 + ], + [ + 71.15623400225519, + 20.954252506325044 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 20.954252506325044 + ], + [ + 70.92654863528783, + 20.954252506325044 + ], + [ + 71.04139131877152, + 20.759604771396592 + ], + [ + 71.15623400225519, + 20.954252506325044 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 20.954252506325044 + ], + [ + 71.04139131877152, + 20.759604771396592 + ], + [ + 71.27107668573886, + 20.759604771396592 + ], + [ + 71.15623400225519, + 20.954252506325044 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 20.954252506325044 + ], + [ + 71.27107668573886, + 20.759604771396592 + ], + [ + 71.38591936922255, + 20.954252506325044 + ], + [ + 71.15623400225519, + 20.954252506325044 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 21.343547976181952 + ], + [ + 71.38591936922255, + 21.343547976181952 + ], + [ + 71.27107668573886, + 21.538195711110404 + ], + [ + 71.15623400225519, + 21.343547976181952 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 21.343547976181952 + ], + [ + 71.27107668573886, + 21.538195711110404 + ], + [ + 71.04139131877152, + 21.538195711110404 + ], + [ + 71.15623400225519, + 21.343547976181952 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 21.343547976181952 + ], + [ + 71.04139131877152, + 21.538195711110404 + ], + [ + 70.92654863528783, + 21.343547976181952 + ], + [ + 71.15623400225519, + 21.343547976181952 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 21.343547976181952 + ], + [ + 70.92654863528783, + 21.343547976181952 + ], + [ + 71.04139131877152, + 21.1489002412535 + ], + [ + 71.15623400225519, + 21.343547976181952 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 21.343547976181952 + ], + [ + 71.04139131877152, + 21.1489002412535 + ], + [ + 71.27107668573886, + 21.1489002412535 + ], + [ + 71.15623400225519, + 21.343547976181952 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 21.343547976181952 + ], + [ + 71.27107668573886, + 21.1489002412535 + ], + [ + 71.38591936922255, + 21.343547976181952 + ], + [ + 71.15623400225519, + 21.343547976181952 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 21.732843446038856 + ], + [ + 71.38591936922255, + 21.732843446038856 + ], + [ + 71.27107668573886, + 21.92749118096731 + ], + [ + 71.15623400225519, + 21.732843446038856 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 21.732843446038856 + ], + [ + 71.27107668573886, + 21.92749118096731 + ], + [ + 71.04139131877152, + 21.92749118096731 + ], + [ + 71.15623400225519, + 21.732843446038856 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 21.732843446038856 + ], + [ + 71.04139131877152, + 21.92749118096731 + ], + [ + 70.92654863528783, + 21.732843446038856 + ], + [ + 71.15623400225519, + 21.732843446038856 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 21.732843446038856 + ], + [ + 70.92654863528783, + 21.732843446038856 + ], + [ + 71.04139131877152, + 21.538195711110404 + ], + [ + 71.15623400225519, + 21.732843446038856 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 21.732843446038856 + ], + [ + 71.04139131877152, + 21.538195711110404 + ], + [ + 71.27107668573886, + 21.538195711110404 + ], + [ + 71.15623400225519, + 21.732843446038856 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 21.732843446038856 + ], + [ + 71.27107668573886, + 21.538195711110404 + ], + [ + 71.38591936922255, + 21.732843446038856 + ], + [ + 71.15623400225519, + 21.732843446038856 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 22.122138915895764 + ], + [ + 71.38591936922255, + 22.122138915895764 + ], + [ + 71.27107668573886, + 22.316786650824216 + ], + [ + 71.15623400225519, + 22.122138915895764 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 22.122138915895764 + ], + [ + 71.27107668573886, + 22.316786650824216 + ], + [ + 71.04139131877152, + 22.316786650824216 + ], + [ + 71.15623400225519, + 22.122138915895764 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 22.122138915895764 + ], + [ + 71.04139131877152, + 22.316786650824216 + ], + [ + 70.92654863528783, + 22.122138915895764 + ], + [ + 71.15623400225519, + 22.122138915895764 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 22.122138915895764 + ], + [ + 70.92654863528783, + 22.122138915895764 + ], + [ + 71.04139131877152, + 21.927491180967312 + ], + [ + 71.15623400225519, + 22.122138915895764 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 22.122138915895764 + ], + [ + 71.04139131877152, + 21.927491180967312 + ], + [ + 71.27107668573886, + 21.927491180967312 + ], + [ + 71.15623400225519, + 22.122138915895764 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 22.122138915895764 + ], + [ + 71.27107668573886, + 21.927491180967312 + ], + [ + 71.38591936922255, + 22.122138915895764 + ], + [ + 71.15623400225519, + 22.122138915895764 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 22.511434385752672 + ], + [ + 71.38591936922255, + 22.511434385752672 + ], + [ + 71.27107668573886, + 22.706082120681124 + ], + [ + 71.15623400225519, + 22.511434385752672 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 22.511434385752672 + ], + [ + 71.27107668573886, + 22.706082120681124 + ], + [ + 71.04139131877152, + 22.706082120681124 + ], + [ + 71.15623400225519, + 22.511434385752672 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 22.511434385752672 + ], + [ + 71.04139131877152, + 22.706082120681124 + ], + [ + 70.92654863528783, + 22.511434385752672 + ], + [ + 71.15623400225519, + 22.511434385752672 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 22.511434385752672 + ], + [ + 70.92654863528783, + 22.511434385752672 + ], + [ + 71.04139131877152, + 22.31678665082422 + ], + [ + 71.15623400225519, + 22.511434385752672 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 22.511434385752672 + ], + [ + 71.04139131877152, + 22.31678665082422 + ], + [ + 71.27107668573886, + 22.31678665082422 + ], + [ + 71.15623400225519, + 22.511434385752672 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 22.511434385752672 + ], + [ + 71.27107668573886, + 22.31678665082422 + ], + [ + 71.38591936922255, + 22.511434385752672 + ], + [ + 71.15623400225519, + 22.511434385752672 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 22.900729855609576 + ], + [ + 71.38591936922255, + 22.900729855609576 + ], + [ + 71.27107668573886, + 23.09537759053803 + ], + [ + 71.15623400225519, + 22.900729855609576 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 22.900729855609576 + ], + [ + 71.27107668573886, + 23.09537759053803 + ], + [ + 71.04139131877152, + 23.09537759053803 + ], + [ + 71.15623400225519, + 22.900729855609576 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 22.900729855609576 + ], + [ + 71.04139131877152, + 23.09537759053803 + ], + [ + 70.92654863528783, + 22.900729855609576 + ], + [ + 71.15623400225519, + 22.900729855609576 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 22.900729855609576 + ], + [ + 70.92654863528783, + 22.900729855609576 + ], + [ + 71.04139131877152, + 22.706082120681124 + ], + [ + 71.15623400225519, + 22.900729855609576 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 22.900729855609576 + ], + [ + 71.04139131877152, + 22.706082120681124 + ], + [ + 71.27107668573886, + 22.706082120681124 + ], + [ + 71.15623400225519, + 22.900729855609576 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 22.900729855609576 + ], + [ + 71.27107668573886, + 22.706082120681124 + ], + [ + 71.38591936922255, + 22.900729855609576 + ], + [ + 71.15623400225519, + 22.900729855609576 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 23.290025325466484 + ], + [ + 71.38591936922255, + 23.290025325466484 + ], + [ + 71.27107668573886, + 23.484673060394936 + ], + [ + 71.15623400225519, + 23.290025325466484 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 23.290025325466484 + ], + [ + 71.27107668573886, + 23.484673060394936 + ], + [ + 71.04139131877152, + 23.484673060394936 + ], + [ + 71.15623400225519, + 23.290025325466484 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 23.290025325466484 + ], + [ + 71.04139131877152, + 23.484673060394936 + ], + [ + 70.92654863528783, + 23.290025325466484 + ], + [ + 71.15623400225519, + 23.290025325466484 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 23.290025325466484 + ], + [ + 70.92654863528783, + 23.290025325466484 + ], + [ + 71.04139131877152, + 23.095377590538032 + ], + [ + 71.15623400225519, + 23.290025325466484 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 23.290025325466484 + ], + [ + 71.04139131877152, + 23.095377590538032 + ], + [ + 71.27107668573886, + 23.095377590538032 + ], + [ + 71.15623400225519, + 23.290025325466484 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 23.290025325466484 + ], + [ + 71.27107668573886, + 23.095377590538032 + ], + [ + 71.38591936922255, + 23.290025325466484 + ], + [ + 71.15623400225519, + 23.290025325466484 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 23.67932079532339 + ], + [ + 71.38591936922255, + 23.67932079532339 + ], + [ + 71.27107668573886, + 23.873968530251844 + ], + [ + 71.15623400225519, + 23.67932079532339 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 23.67932079532339 + ], + [ + 71.27107668573886, + 23.873968530251844 + ], + [ + 71.04139131877152, + 23.873968530251844 + ], + [ + 71.15623400225519, + 23.67932079532339 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 23.67932079532339 + ], + [ + 71.04139131877152, + 23.873968530251844 + ], + [ + 70.92654863528783, + 23.67932079532339 + ], + [ + 71.15623400225519, + 23.67932079532339 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 23.67932079532339 + ], + [ + 70.92654863528783, + 23.67932079532339 + ], + [ + 71.04139131877152, + 23.48467306039494 + ], + [ + 71.15623400225519, + 23.67932079532339 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 23.67932079532339 + ], + [ + 71.04139131877152, + 23.48467306039494 + ], + [ + 71.27107668573886, + 23.48467306039494 + ], + [ + 71.15623400225519, + 23.67932079532339 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 23.67932079532339 + ], + [ + 71.27107668573886, + 23.48467306039494 + ], + [ + 71.38591936922255, + 23.67932079532339 + ], + [ + 71.15623400225519, + 23.67932079532339 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 24.068616265180296 + ], + [ + 71.38591936922255, + 24.068616265180296 + ], + [ + 71.27107668573886, + 24.263264000108748 + ], + [ + 71.15623400225519, + 24.068616265180296 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 24.068616265180296 + ], + [ + 71.27107668573886, + 24.263264000108748 + ], + [ + 71.04139131877152, + 24.263264000108748 + ], + [ + 71.15623400225519, + 24.068616265180296 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 24.068616265180296 + ], + [ + 71.04139131877152, + 24.263264000108748 + ], + [ + 70.92654863528783, + 24.068616265180296 + ], + [ + 71.15623400225519, + 24.068616265180296 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 24.068616265180296 + ], + [ + 70.92654863528783, + 24.068616265180296 + ], + [ + 71.04139131877152, + 23.873968530251844 + ], + [ + 71.15623400225519, + 24.068616265180296 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 24.068616265180296 + ], + [ + 71.04139131877152, + 23.873968530251844 + ], + [ + 71.27107668573886, + 23.873968530251844 + ], + [ + 71.15623400225519, + 24.068616265180296 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 24.068616265180296 + ], + [ + 71.27107668573886, + 23.873968530251844 + ], + [ + 71.38591936922255, + 24.068616265180296 + ], + [ + 71.15623400225519, + 24.068616265180296 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 24.4579117350372 + ], + [ + 71.38591936922255, + 24.4579117350372 + ], + [ + 71.27107668573886, + 24.652559469965652 + ], + [ + 71.15623400225519, + 24.4579117350372 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 24.4579117350372 + ], + [ + 71.27107668573886, + 24.652559469965652 + ], + [ + 71.04139131877152, + 24.652559469965652 + ], + [ + 71.15623400225519, + 24.4579117350372 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 24.4579117350372 + ], + [ + 71.04139131877152, + 24.652559469965652 + ], + [ + 70.92654863528783, + 24.4579117350372 + ], + [ + 71.15623400225519, + 24.4579117350372 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 24.4579117350372 + ], + [ + 70.92654863528783, + 24.4579117350372 + ], + [ + 71.04139131877152, + 24.263264000108748 + ], + [ + 71.15623400225519, + 24.4579117350372 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 24.4579117350372 + ], + [ + 71.04139131877152, + 24.263264000108748 + ], + [ + 71.27107668573886, + 24.263264000108748 + ], + [ + 71.15623400225519, + 24.4579117350372 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 24.4579117350372 + ], + [ + 71.27107668573886, + 24.263264000108748 + ], + [ + 71.38591936922255, + 24.4579117350372 + ], + [ + 71.15623400225519, + 24.4579117350372 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 24.847207204894108 + ], + [ + 71.38591936922255, + 24.847207204894108 + ], + [ + 71.27107668573886, + 25.04185493982256 + ], + [ + 71.15623400225519, + 24.847207204894108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 24.847207204894108 + ], + [ + 71.27107668573886, + 25.04185493982256 + ], + [ + 71.04139131877152, + 25.04185493982256 + ], + [ + 71.15623400225519, + 24.847207204894108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 24.847207204894108 + ], + [ + 71.04139131877152, + 25.04185493982256 + ], + [ + 70.92654863528783, + 24.847207204894108 + ], + [ + 71.15623400225519, + 24.847207204894108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 24.847207204894108 + ], + [ + 70.92654863528783, + 24.847207204894108 + ], + [ + 71.04139131877152, + 24.652559469965656 + ], + [ + 71.15623400225519, + 24.847207204894108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 24.847207204894108 + ], + [ + 71.04139131877152, + 24.652559469965656 + ], + [ + 71.27107668573886, + 24.652559469965656 + ], + [ + 71.15623400225519, + 24.847207204894108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 24.847207204894108 + ], + [ + 71.27107668573886, + 24.652559469965656 + ], + [ + 71.38591936922255, + 24.847207204894108 + ], + [ + 71.15623400225519, + 24.847207204894108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 25.236502674751016 + ], + [ + 71.38591936922255, + 25.236502674751016 + ], + [ + 71.27107668573886, + 25.431150409679468 + ], + [ + 71.15623400225519, + 25.236502674751016 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 25.236502674751016 + ], + [ + 71.27107668573886, + 25.431150409679468 + ], + [ + 71.04139131877152, + 25.431150409679468 + ], + [ + 71.15623400225519, + 25.236502674751016 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 25.236502674751016 + ], + [ + 71.04139131877152, + 25.431150409679468 + ], + [ + 70.92654863528783, + 25.236502674751016 + ], + [ + 71.15623400225519, + 25.236502674751016 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 25.236502674751016 + ], + [ + 70.92654863528783, + 25.236502674751016 + ], + [ + 71.04139131877152, + 25.041854939822564 + ], + [ + 71.15623400225519, + 25.236502674751016 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 25.236502674751016 + ], + [ + 71.04139131877152, + 25.041854939822564 + ], + [ + 71.27107668573886, + 25.041854939822564 + ], + [ + 71.15623400225519, + 25.236502674751016 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 25.236502674751016 + ], + [ + 71.27107668573886, + 25.041854939822564 + ], + [ + 71.38591936922255, + 25.236502674751016 + ], + [ + 71.15623400225519, + 25.236502674751016 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 25.62579814460792 + ], + [ + 71.38591936922255, + 25.62579814460792 + ], + [ + 71.27107668573886, + 25.820445879536372 + ], + [ + 71.15623400225519, + 25.62579814460792 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 25.62579814460792 + ], + [ + 71.27107668573886, + 25.820445879536372 + ], + [ + 71.04139131877152, + 25.820445879536372 + ], + [ + 71.15623400225519, + 25.62579814460792 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 25.62579814460792 + ], + [ + 71.04139131877152, + 25.820445879536372 + ], + [ + 70.92654863528783, + 25.62579814460792 + ], + [ + 71.15623400225519, + 25.62579814460792 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 25.62579814460792 + ], + [ + 70.92654863528783, + 25.62579814460792 + ], + [ + 71.04139131877152, + 25.431150409679468 + ], + [ + 71.15623400225519, + 25.62579814460792 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 25.62579814460792 + ], + [ + 71.04139131877152, + 25.431150409679468 + ], + [ + 71.27107668573886, + 25.431150409679468 + ], + [ + 71.15623400225519, + 25.62579814460792 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 25.62579814460792 + ], + [ + 71.27107668573886, + 25.431150409679468 + ], + [ + 71.38591936922255, + 25.62579814460792 + ], + [ + 71.15623400225519, + 25.62579814460792 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 26.015093614464828 + ], + [ + 71.38591936922255, + 26.015093614464828 + ], + [ + 71.27107668573886, + 26.20974134939328 + ], + [ + 71.15623400225519, + 26.015093614464828 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 26.015093614464828 + ], + [ + 71.27107668573886, + 26.20974134939328 + ], + [ + 71.04139131877152, + 26.20974134939328 + ], + [ + 71.15623400225519, + 26.015093614464828 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 26.015093614464828 + ], + [ + 71.04139131877152, + 26.20974134939328 + ], + [ + 70.92654863528783, + 26.015093614464828 + ], + [ + 71.15623400225519, + 26.015093614464828 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 26.015093614464828 + ], + [ + 70.92654863528783, + 26.015093614464828 + ], + [ + 71.04139131877152, + 25.820445879536376 + ], + [ + 71.15623400225519, + 26.015093614464828 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 26.015093614464828 + ], + [ + 71.04139131877152, + 25.820445879536376 + ], + [ + 71.27107668573886, + 25.820445879536376 + ], + [ + 71.15623400225519, + 26.015093614464828 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 26.015093614464828 + ], + [ + 71.27107668573886, + 25.820445879536376 + ], + [ + 71.38591936922255, + 26.015093614464828 + ], + [ + 71.15623400225519, + 26.015093614464828 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 26.404389084321735 + ], + [ + 71.38591936922255, + 26.404389084321735 + ], + [ + 71.27107668573886, + 26.599036819250188 + ], + [ + 71.15623400225519, + 26.404389084321735 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 26.404389084321735 + ], + [ + 71.27107668573886, + 26.599036819250188 + ], + [ + 71.04139131877152, + 26.599036819250188 + ], + [ + 71.15623400225519, + 26.404389084321735 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 26.404389084321735 + ], + [ + 71.04139131877152, + 26.599036819250188 + ], + [ + 70.92654863528783, + 26.404389084321735 + ], + [ + 71.15623400225519, + 26.404389084321735 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 26.404389084321735 + ], + [ + 70.92654863528783, + 26.404389084321735 + ], + [ + 71.04139131877152, + 26.209741349393283 + ], + [ + 71.15623400225519, + 26.404389084321735 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 26.404389084321735 + ], + [ + 71.04139131877152, + 26.209741349393283 + ], + [ + 71.27107668573886, + 26.209741349393283 + ], + [ + 71.15623400225519, + 26.404389084321735 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 26.404389084321735 + ], + [ + 71.27107668573886, + 26.209741349393283 + ], + [ + 71.38591936922255, + 26.404389084321735 + ], + [ + 71.15623400225519, + 26.404389084321735 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 26.79368455417864 + ], + [ + 71.38591936922255, + 26.79368455417864 + ], + [ + 71.27107668573886, + 26.988332289107092 + ], + [ + 71.15623400225519, + 26.79368455417864 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 26.79368455417864 + ], + [ + 71.27107668573886, + 26.988332289107092 + ], + [ + 71.04139131877152, + 26.988332289107092 + ], + [ + 71.15623400225519, + 26.79368455417864 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 26.79368455417864 + ], + [ + 71.04139131877152, + 26.988332289107092 + ], + [ + 70.92654863528783, + 26.79368455417864 + ], + [ + 71.15623400225519, + 26.79368455417864 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 26.79368455417864 + ], + [ + 70.92654863528783, + 26.79368455417864 + ], + [ + 71.04139131877152, + 26.599036819250188 + ], + [ + 71.15623400225519, + 26.79368455417864 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 26.79368455417864 + ], + [ + 71.04139131877152, + 26.599036819250188 + ], + [ + 71.27107668573886, + 26.599036819250188 + ], + [ + 71.15623400225519, + 26.79368455417864 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 26.79368455417864 + ], + [ + 71.27107668573886, + 26.599036819250188 + ], + [ + 71.38591936922255, + 26.79368455417864 + ], + [ + 71.15623400225519, + 26.79368455417864 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 27.182980024035547 + ], + [ + 71.38591936922255, + 27.182980024035547 + ], + [ + 71.27107668573886, + 27.377627758964 + ], + [ + 71.15623400225519, + 27.182980024035547 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 27.182980024035547 + ], + [ + 71.27107668573886, + 27.377627758964 + ], + [ + 71.04139131877152, + 27.377627758964 + ], + [ + 71.15623400225519, + 27.182980024035547 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 27.182980024035547 + ], + [ + 71.04139131877152, + 27.377627758964 + ], + [ + 70.92654863528783, + 27.182980024035547 + ], + [ + 71.15623400225519, + 27.182980024035547 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 27.182980024035547 + ], + [ + 70.92654863528783, + 27.182980024035547 + ], + [ + 71.04139131877152, + 26.988332289107095 + ], + [ + 71.15623400225519, + 27.182980024035547 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 27.182980024035547 + ], + [ + 71.04139131877152, + 26.988332289107095 + ], + [ + 71.27107668573886, + 26.988332289107095 + ], + [ + 71.15623400225519, + 27.182980024035547 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 27.182980024035547 + ], + [ + 71.27107668573886, + 26.988332289107095 + ], + [ + 71.38591936922255, + 27.182980024035547 + ], + [ + 71.15623400225519, + 27.182980024035547 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 27.572275493892455 + ], + [ + 71.38591936922255, + 27.572275493892455 + ], + [ + 71.27107668573886, + 27.766923228820907 + ], + [ + 71.15623400225519, + 27.572275493892455 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 27.572275493892455 + ], + [ + 71.27107668573886, + 27.766923228820907 + ], + [ + 71.04139131877152, + 27.766923228820907 + ], + [ + 71.15623400225519, + 27.572275493892455 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 27.572275493892455 + ], + [ + 71.04139131877152, + 27.766923228820907 + ], + [ + 70.92654863528783, + 27.572275493892455 + ], + [ + 71.15623400225519, + 27.572275493892455 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 27.572275493892455 + ], + [ + 70.92654863528783, + 27.572275493892455 + ], + [ + 71.04139131877152, + 27.377627758964003 + ], + [ + 71.15623400225519, + 27.572275493892455 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 27.572275493892455 + ], + [ + 71.04139131877152, + 27.377627758964003 + ], + [ + 71.27107668573886, + 27.377627758964003 + ], + [ + 71.15623400225519, + 27.572275493892455 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 27.572275493892455 + ], + [ + 71.27107668573886, + 27.377627758964003 + ], + [ + 71.38591936922255, + 27.572275493892455 + ], + [ + 71.15623400225519, + 27.572275493892455 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 27.96157096374936 + ], + [ + 71.38591936922255, + 27.96157096374936 + ], + [ + 71.27107668573886, + 28.15621869867781 + ], + [ + 71.15623400225519, + 27.96157096374936 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 27.96157096374936 + ], + [ + 71.27107668573886, + 28.15621869867781 + ], + [ + 71.04139131877152, + 28.15621869867781 + ], + [ + 71.15623400225519, + 27.96157096374936 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 27.96157096374936 + ], + [ + 71.04139131877152, + 28.15621869867781 + ], + [ + 70.92654863528783, + 27.96157096374936 + ], + [ + 71.15623400225519, + 27.96157096374936 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 27.96157096374936 + ], + [ + 70.92654863528783, + 27.96157096374936 + ], + [ + 71.04139131877152, + 27.766923228820907 + ], + [ + 71.15623400225519, + 27.96157096374936 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 27.96157096374936 + ], + [ + 71.04139131877152, + 27.766923228820907 + ], + [ + 71.27107668573886, + 27.766923228820907 + ], + [ + 71.15623400225519, + 27.96157096374936 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 27.96157096374936 + ], + [ + 71.27107668573886, + 27.766923228820907 + ], + [ + 71.38591936922255, + 27.96157096374936 + ], + [ + 71.15623400225519, + 27.96157096374936 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 28.350866433606267 + ], + [ + 71.38591936922255, + 28.350866433606267 + ], + [ + 71.27107668573886, + 28.54551416853472 + ], + [ + 71.15623400225519, + 28.350866433606267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 28.350866433606267 + ], + [ + 71.27107668573886, + 28.54551416853472 + ], + [ + 71.04139131877152, + 28.54551416853472 + ], + [ + 71.15623400225519, + 28.350866433606267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 28.350866433606267 + ], + [ + 71.04139131877152, + 28.54551416853472 + ], + [ + 70.92654863528783, + 28.350866433606267 + ], + [ + 71.15623400225519, + 28.350866433606267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 28.350866433606267 + ], + [ + 70.92654863528783, + 28.350866433606267 + ], + [ + 71.04139131877152, + 28.156218698677815 + ], + [ + 71.15623400225519, + 28.350866433606267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 28.350866433606267 + ], + [ + 71.04139131877152, + 28.156218698677815 + ], + [ + 71.27107668573886, + 28.156218698677815 + ], + [ + 71.15623400225519, + 28.350866433606267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 28.350866433606267 + ], + [ + 71.27107668573886, + 28.156218698677815 + ], + [ + 71.38591936922255, + 28.350866433606267 + ], + [ + 71.15623400225519, + 28.350866433606267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 28.74016190346317 + ], + [ + 71.38591936922255, + 28.74016190346317 + ], + [ + 71.27107668573886, + 28.934809638391624 + ], + [ + 71.15623400225519, + 28.74016190346317 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 28.74016190346317 + ], + [ + 71.27107668573886, + 28.934809638391624 + ], + [ + 71.04139131877152, + 28.934809638391624 + ], + [ + 71.15623400225519, + 28.74016190346317 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 28.74016190346317 + ], + [ + 71.04139131877152, + 28.934809638391624 + ], + [ + 70.92654863528783, + 28.74016190346317 + ], + [ + 71.15623400225519, + 28.74016190346317 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 28.74016190346317 + ], + [ + 70.92654863528783, + 28.74016190346317 + ], + [ + 71.04139131877152, + 28.54551416853472 + ], + [ + 71.15623400225519, + 28.74016190346317 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 28.74016190346317 + ], + [ + 71.04139131877152, + 28.54551416853472 + ], + [ + 71.27107668573886, + 28.54551416853472 + ], + [ + 71.15623400225519, + 28.74016190346317 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 28.74016190346317 + ], + [ + 71.27107668573886, + 28.54551416853472 + ], + [ + 71.38591936922255, + 28.74016190346317 + ], + [ + 71.15623400225519, + 28.74016190346317 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 29.12945737332008 + ], + [ + 71.38591936922255, + 29.12945737332008 + ], + [ + 71.27107668573886, + 29.32410510824853 + ], + [ + 71.15623400225519, + 29.12945737332008 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 29.12945737332008 + ], + [ + 71.27107668573886, + 29.32410510824853 + ], + [ + 71.04139131877152, + 29.32410510824853 + ], + [ + 71.15623400225519, + 29.12945737332008 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 29.12945737332008 + ], + [ + 71.04139131877152, + 29.32410510824853 + ], + [ + 70.92654863528783, + 29.12945737332008 + ], + [ + 71.15623400225519, + 29.12945737332008 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 29.12945737332008 + ], + [ + 70.92654863528783, + 29.12945737332008 + ], + [ + 71.04139131877152, + 28.934809638391627 + ], + [ + 71.15623400225519, + 29.12945737332008 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 29.12945737332008 + ], + [ + 71.04139131877152, + 28.934809638391627 + ], + [ + 71.27107668573886, + 28.934809638391627 + ], + [ + 71.15623400225519, + 29.12945737332008 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 29.12945737332008 + ], + [ + 71.27107668573886, + 28.934809638391627 + ], + [ + 71.38591936922255, + 29.12945737332008 + ], + [ + 71.15623400225519, + 29.12945737332008 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 29.518752843176983 + ], + [ + 71.38591936922255, + 29.518752843176983 + ], + [ + 71.27107668573886, + 29.713400578105436 + ], + [ + 71.15623400225519, + 29.518752843176983 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 29.518752843176983 + ], + [ + 71.27107668573886, + 29.713400578105436 + ], + [ + 71.04139131877152, + 29.713400578105436 + ], + [ + 71.15623400225519, + 29.518752843176983 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 29.518752843176983 + ], + [ + 71.04139131877152, + 29.713400578105436 + ], + [ + 70.92654863528783, + 29.518752843176983 + ], + [ + 71.15623400225519, + 29.518752843176983 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 29.518752843176983 + ], + [ + 70.92654863528783, + 29.518752843176983 + ], + [ + 71.04139131877152, + 29.32410510824853 + ], + [ + 71.15623400225519, + 29.518752843176983 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 29.518752843176983 + ], + [ + 71.04139131877152, + 29.32410510824853 + ], + [ + 71.27107668573886, + 29.32410510824853 + ], + [ + 71.15623400225519, + 29.518752843176983 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 29.518752843176983 + ], + [ + 71.27107668573886, + 29.32410510824853 + ], + [ + 71.38591936922255, + 29.518752843176983 + ], + [ + 71.15623400225519, + 29.518752843176983 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 29.90804831303389 + ], + [ + 71.38591936922255, + 29.90804831303389 + ], + [ + 71.27107668573886, + 30.102696047962343 + ], + [ + 71.15623400225519, + 29.90804831303389 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 29.90804831303389 + ], + [ + 71.27107668573886, + 30.102696047962343 + ], + [ + 71.04139131877152, + 30.102696047962343 + ], + [ + 71.15623400225519, + 29.90804831303389 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 29.90804831303389 + ], + [ + 71.04139131877152, + 30.102696047962343 + ], + [ + 70.92654863528783, + 29.90804831303389 + ], + [ + 71.15623400225519, + 29.90804831303389 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 29.90804831303389 + ], + [ + 70.92654863528783, + 29.90804831303389 + ], + [ + 71.04139131877152, + 29.71340057810544 + ], + [ + 71.15623400225519, + 29.90804831303389 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 29.90804831303389 + ], + [ + 71.04139131877152, + 29.71340057810544 + ], + [ + 71.27107668573886, + 29.71340057810544 + ], + [ + 71.15623400225519, + 29.90804831303389 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 29.90804831303389 + ], + [ + 71.27107668573886, + 29.71340057810544 + ], + [ + 71.38591936922255, + 29.90804831303389 + ], + [ + 71.15623400225519, + 29.90804831303389 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 30.297343782890795 + ], + [ + 71.38591936922255, + 30.297343782890795 + ], + [ + 71.27107668573886, + 30.491991517819248 + ], + [ + 71.15623400225519, + 30.297343782890795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 30.297343782890795 + ], + [ + 71.27107668573886, + 30.491991517819248 + ], + [ + 71.04139131877152, + 30.491991517819248 + ], + [ + 71.15623400225519, + 30.297343782890795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 30.297343782890795 + ], + [ + 71.04139131877152, + 30.491991517819248 + ], + [ + 70.92654863528783, + 30.297343782890795 + ], + [ + 71.15623400225519, + 30.297343782890795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 30.297343782890795 + ], + [ + 70.92654863528783, + 30.297343782890795 + ], + [ + 71.04139131877152, + 30.102696047962343 + ], + [ + 71.15623400225519, + 30.297343782890795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 30.297343782890795 + ], + [ + 71.04139131877152, + 30.102696047962343 + ], + [ + 71.27107668573886, + 30.102696047962343 + ], + [ + 71.15623400225519, + 30.297343782890795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 30.297343782890795 + ], + [ + 71.27107668573886, + 30.102696047962343 + ], + [ + 71.38591936922255, + 30.297343782890795 + ], + [ + 71.15623400225519, + 30.297343782890795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 30.686639252747703 + ], + [ + 71.38591936922255, + 30.686639252747703 + ], + [ + 71.27107668573886, + 30.881286987676155 + ], + [ + 71.15623400225519, + 30.686639252747703 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 30.686639252747703 + ], + [ + 71.27107668573886, + 30.881286987676155 + ], + [ + 71.04139131877152, + 30.881286987676155 + ], + [ + 71.15623400225519, + 30.686639252747703 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 30.686639252747703 + ], + [ + 71.04139131877152, + 30.881286987676155 + ], + [ + 70.92654863528783, + 30.686639252747703 + ], + [ + 71.15623400225519, + 30.686639252747703 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 30.686639252747703 + ], + [ + 70.92654863528783, + 30.686639252747703 + ], + [ + 71.04139131877152, + 30.49199151781925 + ], + [ + 71.15623400225519, + 30.686639252747703 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 30.686639252747703 + ], + [ + 71.04139131877152, + 30.49199151781925 + ], + [ + 71.27107668573886, + 30.49199151781925 + ], + [ + 71.15623400225519, + 30.686639252747703 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 30.686639252747703 + ], + [ + 71.27107668573886, + 30.49199151781925 + ], + [ + 71.38591936922255, + 30.686639252747703 + ], + [ + 71.15623400225519, + 30.686639252747703 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 31.07593472260461 + ], + [ + 71.38591936922255, + 31.07593472260461 + ], + [ + 71.27107668573886, + 31.270582457533063 + ], + [ + 71.15623400225519, + 31.07593472260461 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 31.07593472260461 + ], + [ + 71.27107668573886, + 31.270582457533063 + ], + [ + 71.04139131877152, + 31.270582457533063 + ], + [ + 71.15623400225519, + 31.07593472260461 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 31.07593472260461 + ], + [ + 71.04139131877152, + 31.270582457533063 + ], + [ + 70.92654863528783, + 31.07593472260461 + ], + [ + 71.15623400225519, + 31.07593472260461 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 31.07593472260461 + ], + [ + 70.92654863528783, + 31.07593472260461 + ], + [ + 71.04139131877152, + 30.88128698767616 + ], + [ + 71.15623400225519, + 31.07593472260461 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 31.07593472260461 + ], + [ + 71.04139131877152, + 30.88128698767616 + ], + [ + 71.27107668573886, + 30.88128698767616 + ], + [ + 71.15623400225519, + 31.07593472260461 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 31.07593472260461 + ], + [ + 71.27107668573886, + 30.88128698767616 + ], + [ + 71.38591936922255, + 31.07593472260461 + ], + [ + 71.15623400225519, + 31.07593472260461 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 31.465230192461515 + ], + [ + 71.38591936922255, + 31.465230192461515 + ], + [ + 71.27107668573886, + 31.659877927389967 + ], + [ + 71.15623400225519, + 31.465230192461515 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 31.465230192461515 + ], + [ + 71.27107668573886, + 31.659877927389967 + ], + [ + 71.04139131877152, + 31.659877927389967 + ], + [ + 71.15623400225519, + 31.465230192461515 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 31.465230192461515 + ], + [ + 71.04139131877152, + 31.659877927389967 + ], + [ + 70.92654863528783, + 31.465230192461515 + ], + [ + 71.15623400225519, + 31.465230192461515 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 31.465230192461515 + ], + [ + 70.92654863528783, + 31.465230192461515 + ], + [ + 71.04139131877152, + 31.270582457533063 + ], + [ + 71.15623400225519, + 31.465230192461515 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 31.465230192461515 + ], + [ + 71.04139131877152, + 31.270582457533063 + ], + [ + 71.27107668573886, + 31.270582457533063 + ], + [ + 71.15623400225519, + 31.465230192461515 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 31.465230192461515 + ], + [ + 71.27107668573886, + 31.270582457533063 + ], + [ + 71.38591936922255, + 31.465230192461515 + ], + [ + 71.15623400225519, + 31.465230192461515 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 31.854525662318423 + ], + [ + 71.38591936922255, + 31.854525662318423 + ], + [ + 71.27107668573886, + 32.049173397246875 + ], + [ + 71.15623400225519, + 31.854525662318423 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 31.854525662318423 + ], + [ + 71.27107668573886, + 32.049173397246875 + ], + [ + 71.04139131877152, + 32.049173397246875 + ], + [ + 71.15623400225519, + 31.854525662318423 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 31.854525662318423 + ], + [ + 71.04139131877152, + 32.049173397246875 + ], + [ + 70.92654863528783, + 31.854525662318423 + ], + [ + 71.15623400225519, + 31.854525662318423 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 31.854525662318423 + ], + [ + 70.92654863528783, + 31.854525662318423 + ], + [ + 71.04139131877152, + 31.65987792738997 + ], + [ + 71.15623400225519, + 31.854525662318423 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 31.854525662318423 + ], + [ + 71.04139131877152, + 31.65987792738997 + ], + [ + 71.27107668573886, + 31.65987792738997 + ], + [ + 71.15623400225519, + 31.854525662318423 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 31.854525662318423 + ], + [ + 71.27107668573886, + 31.65987792738997 + ], + [ + 71.38591936922255, + 31.854525662318423 + ], + [ + 71.15623400225519, + 31.854525662318423 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 32.24382113217533 + ], + [ + 71.38591936922255, + 32.24382113217533 + ], + [ + 71.27107668573886, + 32.43846886710378 + ], + [ + 71.15623400225519, + 32.24382113217533 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 32.24382113217533 + ], + [ + 71.27107668573886, + 32.43846886710378 + ], + [ + 71.04139131877152, + 32.43846886710378 + ], + [ + 71.15623400225519, + 32.24382113217533 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 32.24382113217533 + ], + [ + 71.04139131877152, + 32.43846886710378 + ], + [ + 70.92654863528783, + 32.24382113217533 + ], + [ + 71.15623400225519, + 32.24382113217533 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 32.24382113217533 + ], + [ + 70.92654863528783, + 32.24382113217533 + ], + [ + 71.04139131877152, + 32.049173397246875 + ], + [ + 71.15623400225519, + 32.24382113217533 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 32.24382113217533 + ], + [ + 71.04139131877152, + 32.049173397246875 + ], + [ + 71.27107668573886, + 32.049173397246875 + ], + [ + 71.15623400225519, + 32.24382113217533 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 32.24382113217533 + ], + [ + 71.27107668573886, + 32.049173397246875 + ], + [ + 71.38591936922255, + 32.24382113217533 + ], + [ + 71.15623400225519, + 32.24382113217533 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 32.63311660203224 + ], + [ + 71.38591936922255, + 32.63311660203224 + ], + [ + 71.27107668573886, + 32.82776433696069 + ], + [ + 71.15623400225519, + 32.63311660203224 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 32.63311660203224 + ], + [ + 71.27107668573886, + 32.82776433696069 + ], + [ + 71.04139131877152, + 32.82776433696069 + ], + [ + 71.15623400225519, + 32.63311660203224 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 32.63311660203224 + ], + [ + 71.04139131877152, + 32.82776433696069 + ], + [ + 70.92654863528783, + 32.63311660203224 + ], + [ + 71.15623400225519, + 32.63311660203224 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 32.63311660203224 + ], + [ + 70.92654863528783, + 32.63311660203224 + ], + [ + 71.04139131877152, + 32.438468867103786 + ], + [ + 71.15623400225519, + 32.63311660203224 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 32.63311660203224 + ], + [ + 71.04139131877152, + 32.438468867103786 + ], + [ + 71.27107668573886, + 32.438468867103786 + ], + [ + 71.15623400225519, + 32.63311660203224 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 32.63311660203224 + ], + [ + 71.27107668573886, + 32.438468867103786 + ], + [ + 71.38591936922255, + 32.63311660203224 + ], + [ + 71.15623400225519, + 32.63311660203224 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 33.02241207188914 + ], + [ + 71.38591936922255, + 33.02241207188914 + ], + [ + 71.27107668573886, + 33.217059806817595 + ], + [ + 71.15623400225519, + 33.02241207188914 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 33.02241207188914 + ], + [ + 71.27107668573886, + 33.217059806817595 + ], + [ + 71.04139131877152, + 33.217059806817595 + ], + [ + 71.15623400225519, + 33.02241207188914 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 33.02241207188914 + ], + [ + 71.04139131877152, + 33.217059806817595 + ], + [ + 70.92654863528783, + 33.02241207188914 + ], + [ + 71.15623400225519, + 33.02241207188914 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 33.02241207188914 + ], + [ + 70.92654863528783, + 33.02241207188914 + ], + [ + 71.04139131877152, + 32.82776433696069 + ], + [ + 71.15623400225519, + 33.02241207188914 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 33.02241207188914 + ], + [ + 71.04139131877152, + 32.82776433696069 + ], + [ + 71.27107668573886, + 32.82776433696069 + ], + [ + 71.15623400225519, + 33.02241207188914 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 33.02241207188914 + ], + [ + 71.27107668573886, + 32.82776433696069 + ], + [ + 71.38591936922255, + 33.02241207188914 + ], + [ + 71.15623400225519, + 33.02241207188914 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 33.41170754174605 + ], + [ + 71.38591936922255, + 33.41170754174605 + ], + [ + 71.27107668573886, + 33.6063552766745 + ], + [ + 71.15623400225519, + 33.41170754174605 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 33.41170754174605 + ], + [ + 71.27107668573886, + 33.6063552766745 + ], + [ + 71.04139131877152, + 33.6063552766745 + ], + [ + 71.15623400225519, + 33.41170754174605 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 33.41170754174605 + ], + [ + 71.04139131877152, + 33.6063552766745 + ], + [ + 70.92654863528783, + 33.41170754174605 + ], + [ + 71.15623400225519, + 33.41170754174605 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 33.41170754174605 + ], + [ + 70.92654863528783, + 33.41170754174605 + ], + [ + 71.04139131877152, + 33.217059806817595 + ], + [ + 71.15623400225519, + 33.41170754174605 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 33.41170754174605 + ], + [ + 71.04139131877152, + 33.217059806817595 + ], + [ + 71.27107668573886, + 33.217059806817595 + ], + [ + 71.15623400225519, + 33.41170754174605 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 33.41170754174605 + ], + [ + 71.27107668573886, + 33.217059806817595 + ], + [ + 71.38591936922255, + 33.41170754174605 + ], + [ + 71.15623400225519, + 33.41170754174605 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 33.80100301160295 + ], + [ + 71.38591936922255, + 33.80100301160295 + ], + [ + 71.27107668573886, + 33.9956507465314 + ], + [ + 71.15623400225519, + 33.80100301160295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 33.80100301160295 + ], + [ + 71.27107668573886, + 33.9956507465314 + ], + [ + 71.04139131877152, + 33.9956507465314 + ], + [ + 71.15623400225519, + 33.80100301160295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 33.80100301160295 + ], + [ + 71.04139131877152, + 33.9956507465314 + ], + [ + 70.92654863528783, + 33.80100301160295 + ], + [ + 71.15623400225519, + 33.80100301160295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 33.80100301160295 + ], + [ + 70.92654863528783, + 33.80100301160295 + ], + [ + 71.04139131877152, + 33.6063552766745 + ], + [ + 71.15623400225519, + 33.80100301160295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 33.80100301160295 + ], + [ + 71.04139131877152, + 33.6063552766745 + ], + [ + 71.27107668573886, + 33.6063552766745 + ], + [ + 71.15623400225519, + 33.80100301160295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 33.80100301160295 + ], + [ + 71.27107668573886, + 33.6063552766745 + ], + [ + 71.38591936922255, + 33.80100301160295 + ], + [ + 71.15623400225519, + 33.80100301160295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 34.190298481459855 + ], + [ + 71.38591936922255, + 34.190298481459855 + ], + [ + 71.27107668573886, + 34.38494621638831 + ], + [ + 71.15623400225519, + 34.190298481459855 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 34.190298481459855 + ], + [ + 71.27107668573886, + 34.38494621638831 + ], + [ + 71.04139131877152, + 34.38494621638831 + ], + [ + 71.15623400225519, + 34.190298481459855 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 34.190298481459855 + ], + [ + 71.04139131877152, + 34.38494621638831 + ], + [ + 70.92654863528783, + 34.190298481459855 + ], + [ + 71.15623400225519, + 34.190298481459855 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 34.190298481459855 + ], + [ + 70.92654863528783, + 34.190298481459855 + ], + [ + 71.04139131877152, + 33.9956507465314 + ], + [ + 71.15623400225519, + 34.190298481459855 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 34.190298481459855 + ], + [ + 71.04139131877152, + 33.9956507465314 + ], + [ + 71.27107668573886, + 33.9956507465314 + ], + [ + 71.15623400225519, + 34.190298481459855 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 34.190298481459855 + ], + [ + 71.27107668573886, + 33.9956507465314 + ], + [ + 71.38591936922255, + 34.190298481459855 + ], + [ + 71.15623400225519, + 34.190298481459855 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 34.57959395131677 + ], + [ + 71.38591936922255, + 34.57959395131677 + ], + [ + 71.27107668573886, + 34.77424168624522 + ], + [ + 71.15623400225519, + 34.57959395131677 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 34.57959395131677 + ], + [ + 71.27107668573886, + 34.77424168624522 + ], + [ + 71.04139131877152, + 34.77424168624522 + ], + [ + 71.15623400225519, + 34.57959395131677 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 34.57959395131677 + ], + [ + 71.04139131877152, + 34.77424168624522 + ], + [ + 70.92654863528783, + 34.57959395131677 + ], + [ + 71.15623400225519, + 34.57959395131677 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 34.57959395131677 + ], + [ + 70.92654863528783, + 34.57959395131677 + ], + [ + 71.04139131877152, + 34.384946216388315 + ], + [ + 71.15623400225519, + 34.57959395131677 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 34.57959395131677 + ], + [ + 71.04139131877152, + 34.384946216388315 + ], + [ + 71.27107668573886, + 34.384946216388315 + ], + [ + 71.15623400225519, + 34.57959395131677 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 34.57959395131677 + ], + [ + 71.27107668573886, + 34.384946216388315 + ], + [ + 71.38591936922255, + 34.57959395131677 + ], + [ + 71.15623400225519, + 34.57959395131677 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 34.96888942117368 + ], + [ + 71.38591936922255, + 34.96888942117368 + ], + [ + 71.27107668573886, + 35.16353715610213 + ], + [ + 71.15623400225519, + 34.96888942117368 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 34.96888942117368 + ], + [ + 71.27107668573886, + 35.16353715610213 + ], + [ + 71.04139131877152, + 35.16353715610213 + ], + [ + 71.15623400225519, + 34.96888942117368 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 34.96888942117368 + ], + [ + 71.04139131877152, + 35.16353715610213 + ], + [ + 70.92654863528783, + 34.96888942117368 + ], + [ + 71.15623400225519, + 34.96888942117368 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 34.96888942117368 + ], + [ + 70.92654863528783, + 34.96888942117368 + ], + [ + 71.04139131877152, + 34.774241686245226 + ], + [ + 71.15623400225519, + 34.96888942117368 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 34.96888942117368 + ], + [ + 71.04139131877152, + 34.774241686245226 + ], + [ + 71.27107668573886, + 34.774241686245226 + ], + [ + 71.15623400225519, + 34.96888942117368 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 34.96888942117368 + ], + [ + 71.27107668573886, + 34.774241686245226 + ], + [ + 71.38591936922255, + 34.96888942117368 + ], + [ + 71.15623400225519, + 34.96888942117368 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 35.35818489103058 + ], + [ + 71.38591936922255, + 35.35818489103058 + ], + [ + 71.27107668573886, + 35.552832625959034 + ], + [ + 71.15623400225519, + 35.35818489103058 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 35.35818489103058 + ], + [ + 71.27107668573886, + 35.552832625959034 + ], + [ + 71.04139131877152, + 35.552832625959034 + ], + [ + 71.15623400225519, + 35.35818489103058 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 35.35818489103058 + ], + [ + 71.04139131877152, + 35.552832625959034 + ], + [ + 70.92654863528783, + 35.35818489103058 + ], + [ + 71.15623400225519, + 35.35818489103058 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 35.35818489103058 + ], + [ + 70.92654863528783, + 35.35818489103058 + ], + [ + 71.04139131877152, + 35.16353715610213 + ], + [ + 71.15623400225519, + 35.35818489103058 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 35.35818489103058 + ], + [ + 71.04139131877152, + 35.16353715610213 + ], + [ + 71.27107668573886, + 35.16353715610213 + ], + [ + 71.15623400225519, + 35.35818489103058 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 35.35818489103058 + ], + [ + 71.27107668573886, + 35.16353715610213 + ], + [ + 71.38591936922255, + 35.35818489103058 + ], + [ + 71.15623400225519, + 35.35818489103058 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 35.74748036088749 + ], + [ + 71.38591936922255, + 35.74748036088749 + ], + [ + 71.27107668573886, + 35.94212809581594 + ], + [ + 71.15623400225519, + 35.74748036088749 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 35.74748036088749 + ], + [ + 71.27107668573886, + 35.94212809581594 + ], + [ + 71.04139131877152, + 35.94212809581594 + ], + [ + 71.15623400225519, + 35.74748036088749 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 35.74748036088749 + ], + [ + 71.04139131877152, + 35.94212809581594 + ], + [ + 70.92654863528783, + 35.74748036088749 + ], + [ + 71.15623400225519, + 35.74748036088749 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 35.74748036088749 + ], + [ + 70.92654863528783, + 35.74748036088749 + ], + [ + 71.04139131877152, + 35.552832625959034 + ], + [ + 71.15623400225519, + 35.74748036088749 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 35.74748036088749 + ], + [ + 71.04139131877152, + 35.552832625959034 + ], + [ + 71.27107668573886, + 35.552832625959034 + ], + [ + 71.15623400225519, + 35.74748036088749 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 35.74748036088749 + ], + [ + 71.27107668573886, + 35.552832625959034 + ], + [ + 71.38591936922255, + 35.74748036088749 + ], + [ + 71.15623400225519, + 35.74748036088749 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 36.13677583074439 + ], + [ + 71.38591936922255, + 36.13677583074439 + ], + [ + 71.27107668573886, + 36.33142356567284 + ], + [ + 71.15623400225519, + 36.13677583074439 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 36.13677583074439 + ], + [ + 71.27107668573886, + 36.33142356567284 + ], + [ + 71.04139131877152, + 36.33142356567284 + ], + [ + 71.15623400225519, + 36.13677583074439 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 36.13677583074439 + ], + [ + 71.04139131877152, + 36.33142356567284 + ], + [ + 70.92654863528783, + 36.13677583074439 + ], + [ + 71.15623400225519, + 36.13677583074439 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 36.13677583074439 + ], + [ + 70.92654863528783, + 36.13677583074439 + ], + [ + 71.04139131877152, + 35.94212809581594 + ], + [ + 71.15623400225519, + 36.13677583074439 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 36.13677583074439 + ], + [ + 71.04139131877152, + 35.94212809581594 + ], + [ + 71.27107668573886, + 35.94212809581594 + ], + [ + 71.15623400225519, + 36.13677583074439 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 36.13677583074439 + ], + [ + 71.27107668573886, + 35.94212809581594 + ], + [ + 71.38591936922255, + 36.13677583074439 + ], + [ + 71.15623400225519, + 36.13677583074439 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 36.526071300601295 + ], + [ + 71.38591936922255, + 36.526071300601295 + ], + [ + 71.27107668573886, + 36.72071903552975 + ], + [ + 71.15623400225519, + 36.526071300601295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 36.526071300601295 + ], + [ + 71.27107668573886, + 36.72071903552975 + ], + [ + 71.04139131877152, + 36.72071903552975 + ], + [ + 71.15623400225519, + 36.526071300601295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 36.526071300601295 + ], + [ + 71.04139131877152, + 36.72071903552975 + ], + [ + 70.92654863528783, + 36.526071300601295 + ], + [ + 71.15623400225519, + 36.526071300601295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 36.526071300601295 + ], + [ + 70.92654863528783, + 36.526071300601295 + ], + [ + 71.04139131877152, + 36.33142356567284 + ], + [ + 71.15623400225519, + 36.526071300601295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 36.526071300601295 + ], + [ + 71.04139131877152, + 36.33142356567284 + ], + [ + 71.27107668573886, + 36.33142356567284 + ], + [ + 71.15623400225519, + 36.526071300601295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 36.526071300601295 + ], + [ + 71.27107668573886, + 36.33142356567284 + ], + [ + 71.38591936922255, + 36.526071300601295 + ], + [ + 71.15623400225519, + 36.526071300601295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 36.915366770458206 + ], + [ + 71.38591936922255, + 36.915366770458206 + ], + [ + 71.27107668573886, + 37.11001450538666 + ], + [ + 71.15623400225519, + 36.915366770458206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 36.915366770458206 + ], + [ + 71.27107668573886, + 37.11001450538666 + ], + [ + 71.04139131877152, + 37.11001450538666 + ], + [ + 71.15623400225519, + 36.915366770458206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 36.915366770458206 + ], + [ + 71.04139131877152, + 37.11001450538666 + ], + [ + 70.92654863528783, + 36.915366770458206 + ], + [ + 71.15623400225519, + 36.915366770458206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 36.915366770458206 + ], + [ + 70.92654863528783, + 36.915366770458206 + ], + [ + 71.04139131877152, + 36.720719035529754 + ], + [ + 71.15623400225519, + 36.915366770458206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 36.915366770458206 + ], + [ + 71.04139131877152, + 36.720719035529754 + ], + [ + 71.27107668573886, + 36.720719035529754 + ], + [ + 71.15623400225519, + 36.915366770458206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 36.915366770458206 + ], + [ + 71.27107668573886, + 36.720719035529754 + ], + [ + 71.38591936922255, + 36.915366770458206 + ], + [ + 71.15623400225519, + 36.915366770458206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 37.30466224031511 + ], + [ + 71.38591936922255, + 37.30466224031511 + ], + [ + 71.27107668573886, + 37.49930997524356 + ], + [ + 71.15623400225519, + 37.30466224031511 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 37.30466224031511 + ], + [ + 71.27107668573886, + 37.49930997524356 + ], + [ + 71.04139131877152, + 37.49930997524356 + ], + [ + 71.15623400225519, + 37.30466224031511 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 37.30466224031511 + ], + [ + 71.04139131877152, + 37.49930997524356 + ], + [ + 70.92654863528783, + 37.30466224031511 + ], + [ + 71.15623400225519, + 37.30466224031511 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 37.30466224031511 + ], + [ + 70.92654863528783, + 37.30466224031511 + ], + [ + 71.04139131877152, + 37.11001450538666 + ], + [ + 71.15623400225519, + 37.30466224031511 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 37.30466224031511 + ], + [ + 71.04139131877152, + 37.11001450538666 + ], + [ + 71.27107668573886, + 37.11001450538666 + ], + [ + 71.15623400225519, + 37.30466224031511 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 37.30466224031511 + ], + [ + 71.27107668573886, + 37.11001450538666 + ], + [ + 71.38591936922255, + 37.30466224031511 + ], + [ + 71.15623400225519, + 37.30466224031511 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 37.69395771017202 + ], + [ + 71.38591936922255, + 37.69395771017202 + ], + [ + 71.27107668573886, + 37.888605445100474 + ], + [ + 71.15623400225519, + 37.69395771017202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 37.69395771017202 + ], + [ + 71.27107668573886, + 37.888605445100474 + ], + [ + 71.04139131877152, + 37.888605445100474 + ], + [ + 71.15623400225519, + 37.69395771017202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 37.69395771017202 + ], + [ + 71.04139131877152, + 37.888605445100474 + ], + [ + 70.92654863528783, + 37.69395771017202 + ], + [ + 71.15623400225519, + 37.69395771017202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 37.69395771017202 + ], + [ + 70.92654863528783, + 37.69395771017202 + ], + [ + 71.04139131877152, + 37.49930997524357 + ], + [ + 71.15623400225519, + 37.69395771017202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 37.69395771017202 + ], + [ + 71.04139131877152, + 37.49930997524357 + ], + [ + 71.27107668573886, + 37.49930997524357 + ], + [ + 71.15623400225519, + 37.69395771017202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 37.69395771017202 + ], + [ + 71.27107668573886, + 37.49930997524357 + ], + [ + 71.38591936922255, + 37.69395771017202 + ], + [ + 71.15623400225519, + 37.69395771017202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 38.083253180028926 + ], + [ + 71.38591936922255, + 38.083253180028926 + ], + [ + 71.27107668573886, + 38.27790091495738 + ], + [ + 71.15623400225519, + 38.083253180028926 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 38.083253180028926 + ], + [ + 71.27107668573886, + 38.27790091495738 + ], + [ + 71.04139131877152, + 38.27790091495738 + ], + [ + 71.15623400225519, + 38.083253180028926 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 38.083253180028926 + ], + [ + 71.04139131877152, + 38.27790091495738 + ], + [ + 70.92654863528783, + 38.083253180028926 + ], + [ + 71.15623400225519, + 38.083253180028926 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 38.083253180028926 + ], + [ + 70.92654863528783, + 38.083253180028926 + ], + [ + 71.04139131877152, + 37.888605445100474 + ], + [ + 71.15623400225519, + 38.083253180028926 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 38.083253180028926 + ], + [ + 71.04139131877152, + 37.888605445100474 + ], + [ + 71.27107668573886, + 37.888605445100474 + ], + [ + 71.15623400225519, + 38.083253180028926 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 38.083253180028926 + ], + [ + 71.27107668573886, + 37.888605445100474 + ], + [ + 71.38591936922255, + 38.083253180028926 + ], + [ + 71.15623400225519, + 38.083253180028926 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 38.47254864988583 + ], + [ + 71.38591936922255, + 38.47254864988583 + ], + [ + 71.27107668573886, + 38.66719638481428 + ], + [ + 71.15623400225519, + 38.47254864988583 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 38.47254864988583 + ], + [ + 71.27107668573886, + 38.66719638481428 + ], + [ + 71.04139131877152, + 38.66719638481428 + ], + [ + 71.15623400225519, + 38.47254864988583 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 38.47254864988583 + ], + [ + 71.04139131877152, + 38.66719638481428 + ], + [ + 70.92654863528783, + 38.47254864988583 + ], + [ + 71.15623400225519, + 38.47254864988583 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 38.47254864988583 + ], + [ + 70.92654863528783, + 38.47254864988583 + ], + [ + 71.04139131877152, + 38.27790091495738 + ], + [ + 71.15623400225519, + 38.47254864988583 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 38.47254864988583 + ], + [ + 71.04139131877152, + 38.27790091495738 + ], + [ + 71.27107668573886, + 38.27790091495738 + ], + [ + 71.15623400225519, + 38.47254864988583 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 38.47254864988583 + ], + [ + 71.27107668573886, + 38.27790091495738 + ], + [ + 71.38591936922255, + 38.47254864988583 + ], + [ + 71.15623400225519, + 38.47254864988583 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 38.861844119742734 + ], + [ + 71.38591936922255, + 38.861844119742734 + ], + [ + 71.27107668573886, + 39.05649185467119 + ], + [ + 71.15623400225519, + 38.861844119742734 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 38.861844119742734 + ], + [ + 71.27107668573886, + 39.05649185467119 + ], + [ + 71.04139131877152, + 39.05649185467119 + ], + [ + 71.15623400225519, + 38.861844119742734 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 38.861844119742734 + ], + [ + 71.04139131877152, + 39.05649185467119 + ], + [ + 70.92654863528783, + 38.861844119742734 + ], + [ + 71.15623400225519, + 38.861844119742734 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 38.861844119742734 + ], + [ + 70.92654863528783, + 38.861844119742734 + ], + [ + 71.04139131877152, + 38.66719638481428 + ], + [ + 71.15623400225519, + 38.861844119742734 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 38.861844119742734 + ], + [ + 71.04139131877152, + 38.66719638481428 + ], + [ + 71.27107668573886, + 38.66719638481428 + ], + [ + 71.15623400225519, + 38.861844119742734 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 38.861844119742734 + ], + [ + 71.27107668573886, + 38.66719638481428 + ], + [ + 71.38591936922255, + 38.861844119742734 + ], + [ + 71.15623400225519, + 38.861844119742734 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 39.25113958959964 + ], + [ + 71.38591936922255, + 39.25113958959964 + ], + [ + 71.27107668573886, + 39.44578732452809 + ], + [ + 71.15623400225519, + 39.25113958959964 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 39.25113958959964 + ], + [ + 71.27107668573886, + 39.44578732452809 + ], + [ + 71.04139131877152, + 39.44578732452809 + ], + [ + 71.15623400225519, + 39.25113958959964 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 39.25113958959964 + ], + [ + 71.04139131877152, + 39.44578732452809 + ], + [ + 70.92654863528783, + 39.25113958959964 + ], + [ + 71.15623400225519, + 39.25113958959964 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 39.25113958959964 + ], + [ + 70.92654863528783, + 39.25113958959964 + ], + [ + 71.04139131877152, + 39.05649185467119 + ], + [ + 71.15623400225519, + 39.25113958959964 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 39.25113958959964 + ], + [ + 71.04139131877152, + 39.05649185467119 + ], + [ + 71.27107668573886, + 39.05649185467119 + ], + [ + 71.15623400225519, + 39.25113958959964 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 39.25113958959964 + ], + [ + 71.27107668573886, + 39.05649185467119 + ], + [ + 71.38591936922255, + 39.25113958959964 + ], + [ + 71.15623400225519, + 39.25113958959964 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 39.64043505945655 + ], + [ + 71.38591936922255, + 39.64043505945655 + ], + [ + 71.27107668573886, + 39.835082794385 + ], + [ + 71.15623400225519, + 39.64043505945655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 39.64043505945655 + ], + [ + 71.27107668573886, + 39.835082794385 + ], + [ + 71.04139131877152, + 39.835082794385 + ], + [ + 71.15623400225519, + 39.64043505945655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 39.64043505945655 + ], + [ + 71.04139131877152, + 39.835082794385 + ], + [ + 70.92654863528783, + 39.64043505945655 + ], + [ + 71.15623400225519, + 39.64043505945655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 39.64043505945655 + ], + [ + 70.92654863528783, + 39.64043505945655 + ], + [ + 71.04139131877152, + 39.4457873245281 + ], + [ + 71.15623400225519, + 39.64043505945655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 39.64043505945655 + ], + [ + 71.04139131877152, + 39.4457873245281 + ], + [ + 71.27107668573886, + 39.4457873245281 + ], + [ + 71.15623400225519, + 39.64043505945655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 39.64043505945655 + ], + [ + 71.27107668573886, + 39.4457873245281 + ], + [ + 71.38591936922255, + 39.64043505945655 + ], + [ + 71.15623400225519, + 39.64043505945655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 40.029730529313454 + ], + [ + 71.38591936922255, + 40.029730529313454 + ], + [ + 71.27107668573886, + 40.224378264241906 + ], + [ + 71.15623400225519, + 40.029730529313454 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 40.029730529313454 + ], + [ + 71.27107668573886, + 40.224378264241906 + ], + [ + 71.04139131877152, + 40.224378264241906 + ], + [ + 71.15623400225519, + 40.029730529313454 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 40.029730529313454 + ], + [ + 71.04139131877152, + 40.224378264241906 + ], + [ + 70.92654863528783, + 40.029730529313454 + ], + [ + 71.15623400225519, + 40.029730529313454 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 40.029730529313454 + ], + [ + 70.92654863528783, + 40.029730529313454 + ], + [ + 71.04139131877152, + 39.835082794385 + ], + [ + 71.15623400225519, + 40.029730529313454 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 40.029730529313454 + ], + [ + 71.04139131877152, + 39.835082794385 + ], + [ + 71.27107668573886, + 39.835082794385 + ], + [ + 71.15623400225519, + 40.029730529313454 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 40.029730529313454 + ], + [ + 71.27107668573886, + 39.835082794385 + ], + [ + 71.38591936922255, + 40.029730529313454 + ], + [ + 71.15623400225519, + 40.029730529313454 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 40.419025999170366 + ], + [ + 71.38591936922255, + 40.419025999170366 + ], + [ + 71.27107668573886, + 40.61367373409882 + ], + [ + 71.15623400225519, + 40.419025999170366 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 40.419025999170366 + ], + [ + 71.27107668573886, + 40.61367373409882 + ], + [ + 71.04139131877152, + 40.61367373409882 + ], + [ + 71.15623400225519, + 40.419025999170366 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 40.419025999170366 + ], + [ + 71.04139131877152, + 40.61367373409882 + ], + [ + 70.92654863528783, + 40.419025999170366 + ], + [ + 71.15623400225519, + 40.419025999170366 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 40.419025999170366 + ], + [ + 70.92654863528783, + 40.419025999170366 + ], + [ + 71.04139131877152, + 40.22437826424191 + ], + [ + 71.15623400225519, + 40.419025999170366 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 40.419025999170366 + ], + [ + 71.04139131877152, + 40.22437826424191 + ], + [ + 71.27107668573886, + 40.22437826424191 + ], + [ + 71.15623400225519, + 40.419025999170366 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 40.419025999170366 + ], + [ + 71.27107668573886, + 40.22437826424191 + ], + [ + 71.38591936922255, + 40.419025999170366 + ], + [ + 71.15623400225519, + 40.419025999170366 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 40.80832146902727 + ], + [ + 71.38591936922255, + 40.80832146902727 + ], + [ + 71.27107668573886, + 41.00296920395572 + ], + [ + 71.15623400225519, + 40.80832146902727 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 40.80832146902727 + ], + [ + 71.27107668573886, + 41.00296920395572 + ], + [ + 71.04139131877152, + 41.00296920395572 + ], + [ + 71.15623400225519, + 40.80832146902727 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 40.80832146902727 + ], + [ + 71.04139131877152, + 41.00296920395572 + ], + [ + 70.92654863528783, + 40.80832146902727 + ], + [ + 71.15623400225519, + 40.80832146902727 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 40.80832146902727 + ], + [ + 70.92654863528783, + 40.80832146902727 + ], + [ + 71.04139131877152, + 40.61367373409882 + ], + [ + 71.15623400225519, + 40.80832146902727 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 40.80832146902727 + ], + [ + 71.04139131877152, + 40.61367373409882 + ], + [ + 71.27107668573886, + 40.61367373409882 + ], + [ + 71.15623400225519, + 40.80832146902727 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 40.80832146902727 + ], + [ + 71.27107668573886, + 40.61367373409882 + ], + [ + 71.38591936922255, + 40.80832146902727 + ], + [ + 71.15623400225519, + 40.80832146902727 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 41.197616938884174 + ], + [ + 71.38591936922255, + 41.197616938884174 + ], + [ + 71.27107668573886, + 41.392264673812626 + ], + [ + 71.15623400225519, + 41.197616938884174 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 41.197616938884174 + ], + [ + 71.27107668573886, + 41.392264673812626 + ], + [ + 71.04139131877152, + 41.392264673812626 + ], + [ + 71.15623400225519, + 41.197616938884174 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 41.197616938884174 + ], + [ + 71.04139131877152, + 41.392264673812626 + ], + [ + 70.92654863528783, + 41.197616938884174 + ], + [ + 71.15623400225519, + 41.197616938884174 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 41.197616938884174 + ], + [ + 70.92654863528783, + 41.197616938884174 + ], + [ + 71.04139131877152, + 41.00296920395572 + ], + [ + 71.15623400225519, + 41.197616938884174 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 41.197616938884174 + ], + [ + 71.04139131877152, + 41.00296920395572 + ], + [ + 71.27107668573886, + 41.00296920395572 + ], + [ + 71.15623400225519, + 41.197616938884174 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 41.197616938884174 + ], + [ + 71.27107668573886, + 41.00296920395572 + ], + [ + 71.38591936922255, + 41.197616938884174 + ], + [ + 71.15623400225519, + 41.197616938884174 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 41.58691240874108 + ], + [ + 71.38591936922255, + 41.58691240874108 + ], + [ + 71.27107668573886, + 41.78156014366953 + ], + [ + 71.15623400225519, + 41.58691240874108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 41.58691240874108 + ], + [ + 71.27107668573886, + 41.78156014366953 + ], + [ + 71.04139131877152, + 41.78156014366953 + ], + [ + 71.15623400225519, + 41.58691240874108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 41.58691240874108 + ], + [ + 71.04139131877152, + 41.78156014366953 + ], + [ + 70.92654863528783, + 41.58691240874108 + ], + [ + 71.15623400225519, + 41.58691240874108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 41.58691240874108 + ], + [ + 70.92654863528783, + 41.58691240874108 + ], + [ + 71.04139131877152, + 41.392264673812626 + ], + [ + 71.15623400225519, + 41.58691240874108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 41.58691240874108 + ], + [ + 71.04139131877152, + 41.392264673812626 + ], + [ + 71.27107668573886, + 41.392264673812626 + ], + [ + 71.15623400225519, + 41.58691240874108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 41.58691240874108 + ], + [ + 71.27107668573886, + 41.392264673812626 + ], + [ + 71.38591936922255, + 41.58691240874108 + ], + [ + 71.15623400225519, + 41.58691240874108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 41.97620787859798 + ], + [ + 71.38591936922255, + 41.97620787859798 + ], + [ + 71.27107668573886, + 42.170855613526435 + ], + [ + 71.15623400225519, + 41.97620787859798 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 41.97620787859798 + ], + [ + 71.27107668573886, + 42.170855613526435 + ], + [ + 71.04139131877152, + 42.170855613526435 + ], + [ + 71.15623400225519, + 41.97620787859798 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 41.97620787859798 + ], + [ + 71.04139131877152, + 42.170855613526435 + ], + [ + 70.92654863528783, + 41.97620787859798 + ], + [ + 71.15623400225519, + 41.97620787859798 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 41.97620787859798 + ], + [ + 70.92654863528783, + 41.97620787859798 + ], + [ + 71.04139131877152, + 41.78156014366953 + ], + [ + 71.15623400225519, + 41.97620787859798 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 41.97620787859798 + ], + [ + 71.04139131877152, + 41.78156014366953 + ], + [ + 71.27107668573886, + 41.78156014366953 + ], + [ + 71.15623400225519, + 41.97620787859798 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 41.97620787859798 + ], + [ + 71.27107668573886, + 41.78156014366953 + ], + [ + 71.38591936922255, + 41.97620787859798 + ], + [ + 71.15623400225519, + 41.97620787859798 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 42.365503348454894 + ], + [ + 71.38591936922255, + 42.365503348454894 + ], + [ + 71.27107668573886, + 42.560151083383346 + ], + [ + 71.15623400225519, + 42.365503348454894 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 42.365503348454894 + ], + [ + 71.27107668573886, + 42.560151083383346 + ], + [ + 71.04139131877152, + 42.560151083383346 + ], + [ + 71.15623400225519, + 42.365503348454894 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 42.365503348454894 + ], + [ + 71.04139131877152, + 42.560151083383346 + ], + [ + 70.92654863528783, + 42.365503348454894 + ], + [ + 71.15623400225519, + 42.365503348454894 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 42.365503348454894 + ], + [ + 70.92654863528783, + 42.365503348454894 + ], + [ + 71.04139131877152, + 42.17085561352644 + ], + [ + 71.15623400225519, + 42.365503348454894 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 42.365503348454894 + ], + [ + 71.04139131877152, + 42.17085561352644 + ], + [ + 71.27107668573886, + 42.17085561352644 + ], + [ + 71.15623400225519, + 42.365503348454894 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 42.365503348454894 + ], + [ + 71.27107668573886, + 42.17085561352644 + ], + [ + 71.38591936922255, + 42.365503348454894 + ], + [ + 71.15623400225519, + 42.365503348454894 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 42.754798818311805 + ], + [ + 71.38591936922255, + 42.754798818311805 + ], + [ + 71.27107668573886, + 42.94944655324026 + ], + [ + 71.15623400225519, + 42.754798818311805 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 42.754798818311805 + ], + [ + 71.27107668573886, + 42.94944655324026 + ], + [ + 71.04139131877152, + 42.94944655324026 + ], + [ + 71.15623400225519, + 42.754798818311805 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 42.754798818311805 + ], + [ + 71.04139131877152, + 42.94944655324026 + ], + [ + 70.92654863528783, + 42.754798818311805 + ], + [ + 71.15623400225519, + 42.754798818311805 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 42.754798818311805 + ], + [ + 70.92654863528783, + 42.754798818311805 + ], + [ + 71.04139131877152, + 42.56015108338335 + ], + [ + 71.15623400225519, + 42.754798818311805 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 42.754798818311805 + ], + [ + 71.04139131877152, + 42.56015108338335 + ], + [ + 71.27107668573886, + 42.56015108338335 + ], + [ + 71.15623400225519, + 42.754798818311805 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 42.754798818311805 + ], + [ + 71.27107668573886, + 42.56015108338335 + ], + [ + 71.38591936922255, + 42.754798818311805 + ], + [ + 71.15623400225519, + 42.754798818311805 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 43.14409428816871 + ], + [ + 71.38591936922255, + 43.14409428816871 + ], + [ + 71.27107668573886, + 43.33874202309716 + ], + [ + 71.15623400225519, + 43.14409428816871 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 43.14409428816871 + ], + [ + 71.27107668573886, + 43.33874202309716 + ], + [ + 71.04139131877152, + 43.33874202309716 + ], + [ + 71.15623400225519, + 43.14409428816871 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 43.14409428816871 + ], + [ + 71.04139131877152, + 43.33874202309716 + ], + [ + 70.92654863528783, + 43.14409428816871 + ], + [ + 71.15623400225519, + 43.14409428816871 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 43.14409428816871 + ], + [ + 70.92654863528783, + 43.14409428816871 + ], + [ + 71.04139131877152, + 42.94944655324026 + ], + [ + 71.15623400225519, + 43.14409428816871 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 43.14409428816871 + ], + [ + 71.04139131877152, + 42.94944655324026 + ], + [ + 71.27107668573886, + 42.94944655324026 + ], + [ + 71.15623400225519, + 43.14409428816871 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 43.14409428816871 + ], + [ + 71.27107668573886, + 42.94944655324026 + ], + [ + 71.38591936922255, + 43.14409428816871 + ], + [ + 71.15623400225519, + 43.14409428816871 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 43.53338975802561 + ], + [ + 71.38591936922255, + 43.53338975802561 + ], + [ + 71.27107668573886, + 43.728037492954066 + ], + [ + 71.15623400225519, + 43.53338975802561 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 43.53338975802561 + ], + [ + 71.27107668573886, + 43.728037492954066 + ], + [ + 71.04139131877152, + 43.728037492954066 + ], + [ + 71.15623400225519, + 43.53338975802561 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 43.53338975802561 + ], + [ + 71.04139131877152, + 43.728037492954066 + ], + [ + 70.92654863528783, + 43.53338975802561 + ], + [ + 71.15623400225519, + 43.53338975802561 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 43.53338975802561 + ], + [ + 70.92654863528783, + 43.53338975802561 + ], + [ + 71.04139131877152, + 43.33874202309716 + ], + [ + 71.15623400225519, + 43.53338975802561 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 43.53338975802561 + ], + [ + 71.04139131877152, + 43.33874202309716 + ], + [ + 71.27107668573886, + 43.33874202309716 + ], + [ + 71.15623400225519, + 43.53338975802561 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 43.53338975802561 + ], + [ + 71.27107668573886, + 43.33874202309716 + ], + [ + 71.38591936922255, + 43.53338975802561 + ], + [ + 71.15623400225519, + 43.53338975802561 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 43.92268522788252 + ], + [ + 71.38591936922255, + 43.92268522788252 + ], + [ + 71.27107668573886, + 44.11733296281097 + ], + [ + 71.15623400225519, + 43.92268522788252 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 43.92268522788252 + ], + [ + 71.27107668573886, + 44.11733296281097 + ], + [ + 71.04139131877152, + 44.11733296281097 + ], + [ + 71.15623400225519, + 43.92268522788252 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 43.92268522788252 + ], + [ + 71.04139131877152, + 44.11733296281097 + ], + [ + 70.92654863528783, + 43.92268522788252 + ], + [ + 71.15623400225519, + 43.92268522788252 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 43.92268522788252 + ], + [ + 70.92654863528783, + 43.92268522788252 + ], + [ + 71.04139131877152, + 43.728037492954066 + ], + [ + 71.15623400225519, + 43.92268522788252 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 43.92268522788252 + ], + [ + 71.04139131877152, + 43.728037492954066 + ], + [ + 71.27107668573886, + 43.728037492954066 + ], + [ + 71.15623400225519, + 43.92268522788252 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 43.92268522788252 + ], + [ + 71.27107668573886, + 43.728037492954066 + ], + [ + 71.38591936922255, + 43.92268522788252 + ], + [ + 71.15623400225519, + 43.92268522788252 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 44.31198069773942 + ], + [ + 71.38591936922255, + 44.31198069773942 + ], + [ + 71.27107668573886, + 44.506628432667874 + ], + [ + 71.15623400225519, + 44.31198069773942 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 44.31198069773942 + ], + [ + 71.27107668573886, + 44.506628432667874 + ], + [ + 71.04139131877152, + 44.506628432667874 + ], + [ + 71.15623400225519, + 44.31198069773942 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 44.31198069773942 + ], + [ + 71.04139131877152, + 44.506628432667874 + ], + [ + 70.92654863528783, + 44.31198069773942 + ], + [ + 71.15623400225519, + 44.31198069773942 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 44.31198069773942 + ], + [ + 70.92654863528783, + 44.31198069773942 + ], + [ + 71.04139131877152, + 44.11733296281097 + ], + [ + 71.15623400225519, + 44.31198069773942 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 44.31198069773942 + ], + [ + 71.04139131877152, + 44.11733296281097 + ], + [ + 71.27107668573886, + 44.11733296281097 + ], + [ + 71.15623400225519, + 44.31198069773942 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 44.31198069773942 + ], + [ + 71.27107668573886, + 44.11733296281097 + ], + [ + 71.38591936922255, + 44.31198069773942 + ], + [ + 71.15623400225519, + 44.31198069773942 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 44.701276167596326 + ], + [ + 71.38591936922255, + 44.701276167596326 + ], + [ + 71.27107668573886, + 44.89592390252478 + ], + [ + 71.15623400225519, + 44.701276167596326 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 44.701276167596326 + ], + [ + 71.27107668573886, + 44.89592390252478 + ], + [ + 71.04139131877152, + 44.89592390252478 + ], + [ + 71.15623400225519, + 44.701276167596326 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 44.701276167596326 + ], + [ + 71.04139131877152, + 44.89592390252478 + ], + [ + 70.92654863528783, + 44.701276167596326 + ], + [ + 71.15623400225519, + 44.701276167596326 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 44.701276167596326 + ], + [ + 70.92654863528783, + 44.701276167596326 + ], + [ + 71.04139131877152, + 44.506628432667874 + ], + [ + 71.15623400225519, + 44.701276167596326 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 44.701276167596326 + ], + [ + 71.04139131877152, + 44.506628432667874 + ], + [ + 71.27107668573886, + 44.506628432667874 + ], + [ + 71.15623400225519, + 44.701276167596326 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 44.701276167596326 + ], + [ + 71.27107668573886, + 44.506628432667874 + ], + [ + 71.38591936922255, + 44.701276167596326 + ], + [ + 71.15623400225519, + 44.701276167596326 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 45.090571637453245 + ], + [ + 71.38591936922255, + 45.090571637453245 + ], + [ + 71.27107668573886, + 45.2852193723817 + ], + [ + 71.15623400225519, + 45.090571637453245 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 45.090571637453245 + ], + [ + 71.27107668573886, + 45.2852193723817 + ], + [ + 71.04139131877152, + 45.2852193723817 + ], + [ + 71.15623400225519, + 45.090571637453245 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 45.090571637453245 + ], + [ + 71.04139131877152, + 45.2852193723817 + ], + [ + 70.92654863528783, + 45.090571637453245 + ], + [ + 71.15623400225519, + 45.090571637453245 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 45.090571637453245 + ], + [ + 70.92654863528783, + 45.090571637453245 + ], + [ + 71.04139131877152, + 44.89592390252479 + ], + [ + 71.15623400225519, + 45.090571637453245 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 45.090571637453245 + ], + [ + 71.04139131877152, + 44.89592390252479 + ], + [ + 71.27107668573886, + 44.89592390252479 + ], + [ + 71.15623400225519, + 45.090571637453245 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 45.090571637453245 + ], + [ + 71.27107668573886, + 44.89592390252479 + ], + [ + 71.38591936922255, + 45.090571637453245 + ], + [ + 71.15623400225519, + 45.090571637453245 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 45.47986710731015 + ], + [ + 71.38591936922255, + 45.47986710731015 + ], + [ + 71.27107668573886, + 45.6745148422386 + ], + [ + 71.15623400225519, + 45.47986710731015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 45.47986710731015 + ], + [ + 71.27107668573886, + 45.6745148422386 + ], + [ + 71.04139131877152, + 45.6745148422386 + ], + [ + 71.15623400225519, + 45.47986710731015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 45.47986710731015 + ], + [ + 71.04139131877152, + 45.6745148422386 + ], + [ + 70.92654863528783, + 45.47986710731015 + ], + [ + 71.15623400225519, + 45.47986710731015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 45.47986710731015 + ], + [ + 70.92654863528783, + 45.47986710731015 + ], + [ + 71.04139131877152, + 45.2852193723817 + ], + [ + 71.15623400225519, + 45.47986710731015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 45.47986710731015 + ], + [ + 71.04139131877152, + 45.2852193723817 + ], + [ + 71.27107668573886, + 45.2852193723817 + ], + [ + 71.15623400225519, + 45.47986710731015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 45.47986710731015 + ], + [ + 71.27107668573886, + 45.2852193723817 + ], + [ + 71.38591936922255, + 45.47986710731015 + ], + [ + 71.15623400225519, + 45.47986710731015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 45.86916257716705 + ], + [ + 71.38591936922255, + 45.86916257716705 + ], + [ + 71.27107668573886, + 46.063810312095505 + ], + [ + 71.15623400225519, + 45.86916257716705 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 45.86916257716705 + ], + [ + 71.27107668573886, + 46.063810312095505 + ], + [ + 71.04139131877152, + 46.063810312095505 + ], + [ + 71.15623400225519, + 45.86916257716705 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 45.86916257716705 + ], + [ + 71.04139131877152, + 46.063810312095505 + ], + [ + 70.92654863528783, + 45.86916257716705 + ], + [ + 71.15623400225519, + 45.86916257716705 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 45.86916257716705 + ], + [ + 70.92654863528783, + 45.86916257716705 + ], + [ + 71.04139131877152, + 45.6745148422386 + ], + [ + 71.15623400225519, + 45.86916257716705 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 45.86916257716705 + ], + [ + 71.04139131877152, + 45.6745148422386 + ], + [ + 71.27107668573886, + 45.6745148422386 + ], + [ + 71.15623400225519, + 45.86916257716705 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 45.86916257716705 + ], + [ + 71.27107668573886, + 45.6745148422386 + ], + [ + 71.38591936922255, + 45.86916257716705 + ], + [ + 71.15623400225519, + 45.86916257716705 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 46.25845804702396 + ], + [ + 71.38591936922255, + 46.25845804702396 + ], + [ + 71.27107668573886, + 46.45310578195241 + ], + [ + 71.15623400225519, + 46.25845804702396 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 46.25845804702396 + ], + [ + 71.27107668573886, + 46.45310578195241 + ], + [ + 71.04139131877152, + 46.45310578195241 + ], + [ + 71.15623400225519, + 46.25845804702396 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 46.25845804702396 + ], + [ + 71.04139131877152, + 46.45310578195241 + ], + [ + 70.92654863528783, + 46.25845804702396 + ], + [ + 71.15623400225519, + 46.25845804702396 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 46.25845804702396 + ], + [ + 70.92654863528783, + 46.25845804702396 + ], + [ + 71.04139131877152, + 46.063810312095505 + ], + [ + 71.15623400225519, + 46.25845804702396 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 46.25845804702396 + ], + [ + 71.04139131877152, + 46.063810312095505 + ], + [ + 71.27107668573886, + 46.063810312095505 + ], + [ + 71.15623400225519, + 46.25845804702396 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 46.25845804702396 + ], + [ + 71.27107668573886, + 46.063810312095505 + ], + [ + 71.38591936922255, + 46.25845804702396 + ], + [ + 71.15623400225519, + 46.25845804702396 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 46.64775351688086 + ], + [ + 71.38591936922255, + 46.64775351688086 + ], + [ + 71.27107668573886, + 46.842401251809314 + ], + [ + 71.15623400225519, + 46.64775351688086 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 46.64775351688086 + ], + [ + 71.27107668573886, + 46.842401251809314 + ], + [ + 71.04139131877152, + 46.842401251809314 + ], + [ + 71.15623400225519, + 46.64775351688086 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 46.64775351688086 + ], + [ + 71.04139131877152, + 46.842401251809314 + ], + [ + 70.92654863528783, + 46.64775351688086 + ], + [ + 71.15623400225519, + 46.64775351688086 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 46.64775351688086 + ], + [ + 70.92654863528783, + 46.64775351688086 + ], + [ + 71.04139131877152, + 46.45310578195241 + ], + [ + 71.15623400225519, + 46.64775351688086 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 46.64775351688086 + ], + [ + 71.04139131877152, + 46.45310578195241 + ], + [ + 71.27107668573886, + 46.45310578195241 + ], + [ + 71.15623400225519, + 46.64775351688086 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 46.64775351688086 + ], + [ + 71.27107668573886, + 46.45310578195241 + ], + [ + 71.38591936922255, + 46.64775351688086 + ], + [ + 71.15623400225519, + 46.64775351688086 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 47.037048986737766 + ], + [ + 71.38591936922255, + 47.037048986737766 + ], + [ + 71.27107668573886, + 47.23169672166622 + ], + [ + 71.15623400225519, + 47.037048986737766 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 47.037048986737766 + ], + [ + 71.27107668573886, + 47.23169672166622 + ], + [ + 71.04139131877152, + 47.23169672166622 + ], + [ + 71.15623400225519, + 47.037048986737766 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 47.037048986737766 + ], + [ + 71.04139131877152, + 47.23169672166622 + ], + [ + 70.92654863528783, + 47.037048986737766 + ], + [ + 71.15623400225519, + 47.037048986737766 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 47.037048986737766 + ], + [ + 70.92654863528783, + 47.037048986737766 + ], + [ + 71.04139131877152, + 46.842401251809314 + ], + [ + 71.15623400225519, + 47.037048986737766 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 47.037048986737766 + ], + [ + 71.04139131877152, + 46.842401251809314 + ], + [ + 71.27107668573886, + 46.842401251809314 + ], + [ + 71.15623400225519, + 47.037048986737766 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 47.037048986737766 + ], + [ + 71.27107668573886, + 46.842401251809314 + ], + [ + 71.38591936922255, + 47.037048986737766 + ], + [ + 71.15623400225519, + 47.037048986737766 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 47.42634445659467 + ], + [ + 71.38591936922255, + 47.42634445659467 + ], + [ + 71.27107668573886, + 47.62099219152312 + ], + [ + 71.15623400225519, + 47.42634445659467 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 47.42634445659467 + ], + [ + 71.27107668573886, + 47.62099219152312 + ], + [ + 71.04139131877152, + 47.62099219152312 + ], + [ + 71.15623400225519, + 47.42634445659467 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 47.42634445659467 + ], + [ + 71.04139131877152, + 47.62099219152312 + ], + [ + 70.92654863528783, + 47.42634445659467 + ], + [ + 71.15623400225519, + 47.42634445659467 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 47.42634445659467 + ], + [ + 70.92654863528783, + 47.42634445659467 + ], + [ + 71.04139131877152, + 47.23169672166622 + ], + [ + 71.15623400225519, + 47.42634445659467 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 47.42634445659467 + ], + [ + 71.04139131877152, + 47.23169672166622 + ], + [ + 71.27107668573886, + 47.23169672166622 + ], + [ + 71.15623400225519, + 47.42634445659467 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 47.42634445659467 + ], + [ + 71.27107668573886, + 47.23169672166622 + ], + [ + 71.38591936922255, + 47.42634445659467 + ], + [ + 71.15623400225519, + 47.42634445659467 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 47.81563992645159 + ], + [ + 71.38591936922255, + 47.81563992645159 + ], + [ + 71.27107668573886, + 48.01028766138004 + ], + [ + 71.15623400225519, + 47.81563992645159 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 47.81563992645159 + ], + [ + 71.27107668573886, + 48.01028766138004 + ], + [ + 71.04139131877152, + 48.01028766138004 + ], + [ + 71.15623400225519, + 47.81563992645159 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 47.81563992645159 + ], + [ + 71.04139131877152, + 48.01028766138004 + ], + [ + 70.92654863528783, + 47.81563992645159 + ], + [ + 71.15623400225519, + 47.81563992645159 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 47.81563992645159 + ], + [ + 70.92654863528783, + 47.81563992645159 + ], + [ + 71.04139131877152, + 47.620992191523136 + ], + [ + 71.15623400225519, + 47.81563992645159 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 47.81563992645159 + ], + [ + 71.04139131877152, + 47.620992191523136 + ], + [ + 71.27107668573886, + 47.620992191523136 + ], + [ + 71.15623400225519, + 47.81563992645159 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.15623400225519, + 47.81563992645159 + ], + [ + 71.27107668573886, + 47.620992191523136 + ], + [ + 71.38591936922255, + 47.81563992645159 + ], + [ + 71.15623400225519, + 47.81563992645159 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 11.805808964687746 + ], + [ + 71.73044741967358, + 11.805808964687746 + ], + [ + 71.6156047361899, + 12.0004566996162 + ], + [ + 71.50076205270622, + 11.805808964687746 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 11.805808964687746 + ], + [ + 71.6156047361899, + 12.0004566996162 + ], + [ + 71.38591936922255, + 12.0004566996162 + ], + [ + 71.50076205270622, + 11.805808964687746 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 11.805808964687746 + ], + [ + 71.38591936922255, + 12.0004566996162 + ], + [ + 71.27107668573886, + 11.805808964687746 + ], + [ + 71.50076205270622, + 11.805808964687746 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 11.805808964687746 + ], + [ + 71.27107668573886, + 11.805808964687746 + ], + [ + 71.38591936922255, + 11.611161229759292 + ], + [ + 71.50076205270622, + 11.805808964687746 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 11.805808964687746 + ], + [ + 71.38591936922255, + 11.611161229759292 + ], + [ + 71.6156047361899, + 11.611161229759292 + ], + [ + 71.50076205270622, + 11.805808964687746 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 11.805808964687746 + ], + [ + 71.6156047361899, + 11.611161229759292 + ], + [ + 71.73044741967358, + 11.805808964687746 + ], + [ + 71.50076205270622, + 11.805808964687746 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 12.195104434544652 + ], + [ + 71.73044741967358, + 12.195104434544652 + ], + [ + 71.6156047361899, + 12.389752169473105 + ], + [ + 71.50076205270622, + 12.195104434544652 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 12.195104434544652 + ], + [ + 71.6156047361899, + 12.389752169473105 + ], + [ + 71.38591936922255, + 12.389752169473105 + ], + [ + 71.50076205270622, + 12.195104434544652 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 12.195104434544652 + ], + [ + 71.38591936922255, + 12.389752169473105 + ], + [ + 71.27107668573886, + 12.195104434544652 + ], + [ + 71.50076205270622, + 12.195104434544652 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 12.195104434544652 + ], + [ + 71.27107668573886, + 12.195104434544652 + ], + [ + 71.38591936922255, + 12.000456699616198 + ], + [ + 71.50076205270622, + 12.195104434544652 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 12.195104434544652 + ], + [ + 71.38591936922255, + 12.000456699616198 + ], + [ + 71.6156047361899, + 12.000456699616198 + ], + [ + 71.50076205270622, + 12.195104434544652 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 12.195104434544652 + ], + [ + 71.6156047361899, + 12.000456699616198 + ], + [ + 71.73044741967358, + 12.195104434544652 + ], + [ + 71.50076205270622, + 12.195104434544652 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 12.58439990440156 + ], + [ + 71.73044741967358, + 12.58439990440156 + ], + [ + 71.6156047361899, + 12.779047639330013 + ], + [ + 71.50076205270622, + 12.58439990440156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 12.58439990440156 + ], + [ + 71.6156047361899, + 12.779047639330013 + ], + [ + 71.38591936922255, + 12.779047639330013 + ], + [ + 71.50076205270622, + 12.58439990440156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 12.58439990440156 + ], + [ + 71.38591936922255, + 12.779047639330013 + ], + [ + 71.27107668573886, + 12.58439990440156 + ], + [ + 71.50076205270622, + 12.58439990440156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 12.58439990440156 + ], + [ + 71.27107668573886, + 12.58439990440156 + ], + [ + 71.38591936922255, + 12.389752169473105 + ], + [ + 71.50076205270622, + 12.58439990440156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 12.58439990440156 + ], + [ + 71.38591936922255, + 12.389752169473105 + ], + [ + 71.6156047361899, + 12.389752169473105 + ], + [ + 71.50076205270622, + 12.58439990440156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 12.58439990440156 + ], + [ + 71.6156047361899, + 12.389752169473105 + ], + [ + 71.73044741967358, + 12.58439990440156 + ], + [ + 71.50076205270622, + 12.58439990440156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 12.973695374258465 + ], + [ + 71.73044741967358, + 12.973695374258465 + ], + [ + 71.6156047361899, + 13.16834310918692 + ], + [ + 71.50076205270622, + 12.973695374258465 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 12.973695374258465 + ], + [ + 71.6156047361899, + 13.16834310918692 + ], + [ + 71.38591936922255, + 13.16834310918692 + ], + [ + 71.50076205270622, + 12.973695374258465 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 12.973695374258465 + ], + [ + 71.38591936922255, + 13.16834310918692 + ], + [ + 71.27107668573886, + 12.973695374258465 + ], + [ + 71.50076205270622, + 12.973695374258465 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 12.973695374258465 + ], + [ + 71.27107668573886, + 12.973695374258465 + ], + [ + 71.38591936922255, + 12.779047639330011 + ], + [ + 71.50076205270622, + 12.973695374258465 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 12.973695374258465 + ], + [ + 71.38591936922255, + 12.779047639330011 + ], + [ + 71.6156047361899, + 12.779047639330011 + ], + [ + 71.50076205270622, + 12.973695374258465 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 12.973695374258465 + ], + [ + 71.6156047361899, + 12.779047639330011 + ], + [ + 71.73044741967358, + 12.973695374258465 + ], + [ + 71.50076205270622, + 12.973695374258465 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 13.362990844115371 + ], + [ + 71.73044741967358, + 13.362990844115371 + ], + [ + 71.6156047361899, + 13.557638579043825 + ], + [ + 71.50076205270622, + 13.362990844115371 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 13.362990844115371 + ], + [ + 71.6156047361899, + 13.557638579043825 + ], + [ + 71.38591936922255, + 13.557638579043825 + ], + [ + 71.50076205270622, + 13.362990844115371 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 13.362990844115371 + ], + [ + 71.38591936922255, + 13.557638579043825 + ], + [ + 71.27107668573886, + 13.362990844115371 + ], + [ + 71.50076205270622, + 13.362990844115371 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 13.362990844115371 + ], + [ + 71.27107668573886, + 13.362990844115371 + ], + [ + 71.38591936922255, + 13.168343109186917 + ], + [ + 71.50076205270622, + 13.362990844115371 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 13.362990844115371 + ], + [ + 71.38591936922255, + 13.168343109186917 + ], + [ + 71.6156047361899, + 13.168343109186917 + ], + [ + 71.50076205270622, + 13.362990844115371 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 13.362990844115371 + ], + [ + 71.6156047361899, + 13.168343109186917 + ], + [ + 71.73044741967358, + 13.362990844115371 + ], + [ + 71.50076205270622, + 13.362990844115371 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 13.752286313972277 + ], + [ + 71.73044741967358, + 13.752286313972277 + ], + [ + 71.6156047361899, + 13.946934048900731 + ], + [ + 71.50076205270622, + 13.752286313972277 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 13.752286313972277 + ], + [ + 71.6156047361899, + 13.946934048900731 + ], + [ + 71.38591936922255, + 13.946934048900731 + ], + [ + 71.50076205270622, + 13.752286313972277 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 13.752286313972277 + ], + [ + 71.38591936922255, + 13.946934048900731 + ], + [ + 71.27107668573886, + 13.752286313972277 + ], + [ + 71.50076205270622, + 13.752286313972277 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 13.752286313972277 + ], + [ + 71.27107668573886, + 13.752286313972277 + ], + [ + 71.38591936922255, + 13.557638579043823 + ], + [ + 71.50076205270622, + 13.752286313972277 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 13.752286313972277 + ], + [ + 71.38591936922255, + 13.557638579043823 + ], + [ + 71.6156047361899, + 13.557638579043823 + ], + [ + 71.50076205270622, + 13.752286313972277 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 13.752286313972277 + ], + [ + 71.6156047361899, + 13.557638579043823 + ], + [ + 71.73044741967358, + 13.752286313972277 + ], + [ + 71.50076205270622, + 13.752286313972277 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 14.141581783829183 + ], + [ + 71.73044741967358, + 14.141581783829183 + ], + [ + 71.6156047361899, + 14.336229518757637 + ], + [ + 71.50076205270622, + 14.141581783829183 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 14.141581783829183 + ], + [ + 71.6156047361899, + 14.336229518757637 + ], + [ + 71.38591936922255, + 14.336229518757637 + ], + [ + 71.50076205270622, + 14.141581783829183 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 14.141581783829183 + ], + [ + 71.38591936922255, + 14.336229518757637 + ], + [ + 71.27107668573886, + 14.141581783829183 + ], + [ + 71.50076205270622, + 14.141581783829183 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 14.141581783829183 + ], + [ + 71.27107668573886, + 14.141581783829183 + ], + [ + 71.38591936922255, + 13.94693404890073 + ], + [ + 71.50076205270622, + 14.141581783829183 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 14.141581783829183 + ], + [ + 71.38591936922255, + 13.94693404890073 + ], + [ + 71.6156047361899, + 13.94693404890073 + ], + [ + 71.50076205270622, + 14.141581783829183 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 14.141581783829183 + ], + [ + 71.6156047361899, + 13.94693404890073 + ], + [ + 71.73044741967358, + 14.141581783829183 + ], + [ + 71.50076205270622, + 14.141581783829183 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 14.530877253686091 + ], + [ + 71.73044741967358, + 14.530877253686091 + ], + [ + 71.6156047361899, + 14.725524988614545 + ], + [ + 71.50076205270622, + 14.530877253686091 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 14.530877253686091 + ], + [ + 71.6156047361899, + 14.725524988614545 + ], + [ + 71.38591936922255, + 14.725524988614545 + ], + [ + 71.50076205270622, + 14.530877253686091 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 14.530877253686091 + ], + [ + 71.38591936922255, + 14.725524988614545 + ], + [ + 71.27107668573886, + 14.530877253686091 + ], + [ + 71.50076205270622, + 14.530877253686091 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 14.530877253686091 + ], + [ + 71.27107668573886, + 14.530877253686091 + ], + [ + 71.38591936922255, + 14.336229518757637 + ], + [ + 71.50076205270622, + 14.530877253686091 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 14.530877253686091 + ], + [ + 71.38591936922255, + 14.336229518757637 + ], + [ + 71.6156047361899, + 14.336229518757637 + ], + [ + 71.50076205270622, + 14.530877253686091 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 14.530877253686091 + ], + [ + 71.6156047361899, + 14.336229518757637 + ], + [ + 71.73044741967358, + 14.530877253686091 + ], + [ + 71.50076205270622, + 14.530877253686091 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 14.920172723542997 + ], + [ + 71.73044741967358, + 14.920172723542997 + ], + [ + 71.6156047361899, + 15.114820458471451 + ], + [ + 71.50076205270622, + 14.920172723542997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 14.920172723542997 + ], + [ + 71.6156047361899, + 15.114820458471451 + ], + [ + 71.38591936922255, + 15.114820458471451 + ], + [ + 71.50076205270622, + 14.920172723542997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 14.920172723542997 + ], + [ + 71.38591936922255, + 15.114820458471451 + ], + [ + 71.27107668573886, + 14.920172723542997 + ], + [ + 71.50076205270622, + 14.920172723542997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 14.920172723542997 + ], + [ + 71.27107668573886, + 14.920172723542997 + ], + [ + 71.38591936922255, + 14.725524988614543 + ], + [ + 71.50076205270622, + 14.920172723542997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 14.920172723542997 + ], + [ + 71.38591936922255, + 14.725524988614543 + ], + [ + 71.6156047361899, + 14.725524988614543 + ], + [ + 71.50076205270622, + 14.920172723542997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 14.920172723542997 + ], + [ + 71.6156047361899, + 14.725524988614543 + ], + [ + 71.73044741967358, + 14.920172723542997 + ], + [ + 71.50076205270622, + 14.920172723542997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 15.309468193399903 + ], + [ + 71.73044741967358, + 15.309468193399903 + ], + [ + 71.6156047361899, + 15.504115928328357 + ], + [ + 71.50076205270622, + 15.309468193399903 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 15.309468193399903 + ], + [ + 71.6156047361899, + 15.504115928328357 + ], + [ + 71.38591936922255, + 15.504115928328357 + ], + [ + 71.50076205270622, + 15.309468193399903 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 15.309468193399903 + ], + [ + 71.38591936922255, + 15.504115928328357 + ], + [ + 71.27107668573886, + 15.309468193399903 + ], + [ + 71.50076205270622, + 15.309468193399903 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 15.309468193399903 + ], + [ + 71.27107668573886, + 15.309468193399903 + ], + [ + 71.38591936922255, + 15.11482045847145 + ], + [ + 71.50076205270622, + 15.309468193399903 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 15.309468193399903 + ], + [ + 71.38591936922255, + 15.11482045847145 + ], + [ + 71.6156047361899, + 15.11482045847145 + ], + [ + 71.50076205270622, + 15.309468193399903 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 15.309468193399903 + ], + [ + 71.6156047361899, + 15.11482045847145 + ], + [ + 71.73044741967358, + 15.309468193399903 + ], + [ + 71.50076205270622, + 15.309468193399903 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 15.69876366325681 + ], + [ + 71.73044741967358, + 15.69876366325681 + ], + [ + 71.6156047361899, + 15.893411398185265 + ], + [ + 71.50076205270622, + 15.69876366325681 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 15.69876366325681 + ], + [ + 71.6156047361899, + 15.893411398185265 + ], + [ + 71.38591936922255, + 15.893411398185265 + ], + [ + 71.50076205270622, + 15.69876366325681 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 15.69876366325681 + ], + [ + 71.38591936922255, + 15.893411398185265 + ], + [ + 71.27107668573886, + 15.69876366325681 + ], + [ + 71.50076205270622, + 15.69876366325681 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 15.69876366325681 + ], + [ + 71.27107668573886, + 15.69876366325681 + ], + [ + 71.38591936922255, + 15.504115928328357 + ], + [ + 71.50076205270622, + 15.69876366325681 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 15.69876366325681 + ], + [ + 71.38591936922255, + 15.504115928328357 + ], + [ + 71.6156047361899, + 15.504115928328357 + ], + [ + 71.50076205270622, + 15.69876366325681 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 15.69876366325681 + ], + [ + 71.6156047361899, + 15.504115928328357 + ], + [ + 71.73044741967358, + 15.69876366325681 + ], + [ + 71.50076205270622, + 15.69876366325681 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 16.088059133113717 + ], + [ + 71.73044741967358, + 16.088059133113717 + ], + [ + 71.6156047361899, + 16.28270686804217 + ], + [ + 71.50076205270622, + 16.088059133113717 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 16.088059133113717 + ], + [ + 71.6156047361899, + 16.28270686804217 + ], + [ + 71.38591936922255, + 16.28270686804217 + ], + [ + 71.50076205270622, + 16.088059133113717 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 16.088059133113717 + ], + [ + 71.38591936922255, + 16.28270686804217 + ], + [ + 71.27107668573886, + 16.088059133113717 + ], + [ + 71.50076205270622, + 16.088059133113717 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 16.088059133113717 + ], + [ + 71.27107668573886, + 16.088059133113717 + ], + [ + 71.38591936922255, + 15.893411398185263 + ], + [ + 71.50076205270622, + 16.088059133113717 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 16.088059133113717 + ], + [ + 71.38591936922255, + 15.893411398185263 + ], + [ + 71.6156047361899, + 15.893411398185263 + ], + [ + 71.50076205270622, + 16.088059133113717 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 16.088059133113717 + ], + [ + 71.6156047361899, + 15.893411398185263 + ], + [ + 71.73044741967358, + 16.088059133113717 + ], + [ + 71.50076205270622, + 16.088059133113717 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 16.477354602970625 + ], + [ + 71.73044741967358, + 16.477354602970625 + ], + [ + 71.6156047361899, + 16.672002337899077 + ], + [ + 71.50076205270622, + 16.477354602970625 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 16.477354602970625 + ], + [ + 71.6156047361899, + 16.672002337899077 + ], + [ + 71.38591936922255, + 16.672002337899077 + ], + [ + 71.50076205270622, + 16.477354602970625 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 16.477354602970625 + ], + [ + 71.38591936922255, + 16.672002337899077 + ], + [ + 71.27107668573886, + 16.477354602970625 + ], + [ + 71.50076205270622, + 16.477354602970625 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 16.477354602970625 + ], + [ + 71.27107668573886, + 16.477354602970625 + ], + [ + 71.38591936922255, + 16.282706868042172 + ], + [ + 71.50076205270622, + 16.477354602970625 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 16.477354602970625 + ], + [ + 71.38591936922255, + 16.282706868042172 + ], + [ + 71.6156047361899, + 16.282706868042172 + ], + [ + 71.50076205270622, + 16.477354602970625 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 16.477354602970625 + ], + [ + 71.6156047361899, + 16.282706868042172 + ], + [ + 71.73044741967358, + 16.477354602970625 + ], + [ + 71.50076205270622, + 16.477354602970625 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 16.86665007282753 + ], + [ + 71.73044741967358, + 16.86665007282753 + ], + [ + 71.6156047361899, + 17.06129780775598 + ], + [ + 71.50076205270622, + 16.86665007282753 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 16.86665007282753 + ], + [ + 71.6156047361899, + 17.06129780775598 + ], + [ + 71.38591936922255, + 17.06129780775598 + ], + [ + 71.50076205270622, + 16.86665007282753 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 16.86665007282753 + ], + [ + 71.38591936922255, + 17.06129780775598 + ], + [ + 71.27107668573886, + 16.86665007282753 + ], + [ + 71.50076205270622, + 16.86665007282753 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 16.86665007282753 + ], + [ + 71.27107668573886, + 16.86665007282753 + ], + [ + 71.38591936922255, + 16.672002337899077 + ], + [ + 71.50076205270622, + 16.86665007282753 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 16.86665007282753 + ], + [ + 71.38591936922255, + 16.672002337899077 + ], + [ + 71.6156047361899, + 16.672002337899077 + ], + [ + 71.50076205270622, + 16.86665007282753 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 16.86665007282753 + ], + [ + 71.6156047361899, + 16.672002337899077 + ], + [ + 71.73044741967358, + 16.86665007282753 + ], + [ + 71.50076205270622, + 16.86665007282753 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 17.255945542684437 + ], + [ + 71.73044741967358, + 17.255945542684437 + ], + [ + 71.6156047361899, + 17.45059327761289 + ], + [ + 71.50076205270622, + 17.255945542684437 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 17.255945542684437 + ], + [ + 71.6156047361899, + 17.45059327761289 + ], + [ + 71.38591936922255, + 17.45059327761289 + ], + [ + 71.50076205270622, + 17.255945542684437 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 17.255945542684437 + ], + [ + 71.38591936922255, + 17.45059327761289 + ], + [ + 71.27107668573886, + 17.255945542684437 + ], + [ + 71.50076205270622, + 17.255945542684437 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 17.255945542684437 + ], + [ + 71.27107668573886, + 17.255945542684437 + ], + [ + 71.38591936922255, + 17.061297807755984 + ], + [ + 71.50076205270622, + 17.255945542684437 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 17.255945542684437 + ], + [ + 71.38591936922255, + 17.061297807755984 + ], + [ + 71.6156047361899, + 17.061297807755984 + ], + [ + 71.50076205270622, + 17.255945542684437 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 17.255945542684437 + ], + [ + 71.6156047361899, + 17.061297807755984 + ], + [ + 71.73044741967358, + 17.255945542684437 + ], + [ + 71.50076205270622, + 17.255945542684437 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 17.64524101254134 + ], + [ + 71.73044741967358, + 17.64524101254134 + ], + [ + 71.6156047361899, + 17.839888747469793 + ], + [ + 71.50076205270622, + 17.64524101254134 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 17.64524101254134 + ], + [ + 71.6156047361899, + 17.839888747469793 + ], + [ + 71.38591936922255, + 17.839888747469793 + ], + [ + 71.50076205270622, + 17.64524101254134 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 17.64524101254134 + ], + [ + 71.38591936922255, + 17.839888747469793 + ], + [ + 71.27107668573886, + 17.64524101254134 + ], + [ + 71.50076205270622, + 17.64524101254134 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 17.64524101254134 + ], + [ + 71.27107668573886, + 17.64524101254134 + ], + [ + 71.38591936922255, + 17.45059327761289 + ], + [ + 71.50076205270622, + 17.64524101254134 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 17.64524101254134 + ], + [ + 71.38591936922255, + 17.45059327761289 + ], + [ + 71.6156047361899, + 17.45059327761289 + ], + [ + 71.50076205270622, + 17.64524101254134 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 17.64524101254134 + ], + [ + 71.6156047361899, + 17.45059327761289 + ], + [ + 71.73044741967358, + 17.64524101254134 + ], + [ + 71.50076205270622, + 17.64524101254134 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 18.03453648239825 + ], + [ + 71.73044741967358, + 18.03453648239825 + ], + [ + 71.6156047361899, + 18.2291842173267 + ], + [ + 71.50076205270622, + 18.03453648239825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 18.03453648239825 + ], + [ + 71.6156047361899, + 18.2291842173267 + ], + [ + 71.38591936922255, + 18.2291842173267 + ], + [ + 71.50076205270622, + 18.03453648239825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 18.03453648239825 + ], + [ + 71.38591936922255, + 18.2291842173267 + ], + [ + 71.27107668573886, + 18.03453648239825 + ], + [ + 71.50076205270622, + 18.03453648239825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 18.03453648239825 + ], + [ + 71.27107668573886, + 18.03453648239825 + ], + [ + 71.38591936922255, + 17.839888747469796 + ], + [ + 71.50076205270622, + 18.03453648239825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 18.03453648239825 + ], + [ + 71.38591936922255, + 17.839888747469796 + ], + [ + 71.6156047361899, + 17.839888747469796 + ], + [ + 71.50076205270622, + 18.03453648239825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 18.03453648239825 + ], + [ + 71.6156047361899, + 17.839888747469796 + ], + [ + 71.73044741967358, + 18.03453648239825 + ], + [ + 71.50076205270622, + 18.03453648239825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 18.423831952255156 + ], + [ + 71.73044741967358, + 18.423831952255156 + ], + [ + 71.6156047361899, + 18.61847968718361 + ], + [ + 71.50076205270622, + 18.423831952255156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 18.423831952255156 + ], + [ + 71.6156047361899, + 18.61847968718361 + ], + [ + 71.38591936922255, + 18.61847968718361 + ], + [ + 71.50076205270622, + 18.423831952255156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 18.423831952255156 + ], + [ + 71.38591936922255, + 18.61847968718361 + ], + [ + 71.27107668573886, + 18.423831952255156 + ], + [ + 71.50076205270622, + 18.423831952255156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 18.423831952255156 + ], + [ + 71.27107668573886, + 18.423831952255156 + ], + [ + 71.38591936922255, + 18.229184217326704 + ], + [ + 71.50076205270622, + 18.423831952255156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 18.423831952255156 + ], + [ + 71.38591936922255, + 18.229184217326704 + ], + [ + 71.6156047361899, + 18.229184217326704 + ], + [ + 71.50076205270622, + 18.423831952255156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 18.423831952255156 + ], + [ + 71.6156047361899, + 18.229184217326704 + ], + [ + 71.73044741967358, + 18.423831952255156 + ], + [ + 71.50076205270622, + 18.423831952255156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 18.81312742211206 + ], + [ + 71.73044741967358, + 18.81312742211206 + ], + [ + 71.6156047361899, + 19.007775157040513 + ], + [ + 71.50076205270622, + 18.81312742211206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 18.81312742211206 + ], + [ + 71.6156047361899, + 19.007775157040513 + ], + [ + 71.38591936922255, + 19.007775157040513 + ], + [ + 71.50076205270622, + 18.81312742211206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 18.81312742211206 + ], + [ + 71.38591936922255, + 19.007775157040513 + ], + [ + 71.27107668573886, + 18.81312742211206 + ], + [ + 71.50076205270622, + 18.81312742211206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 18.81312742211206 + ], + [ + 71.27107668573886, + 18.81312742211206 + ], + [ + 71.38591936922255, + 18.61847968718361 + ], + [ + 71.50076205270622, + 18.81312742211206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 18.81312742211206 + ], + [ + 71.38591936922255, + 18.61847968718361 + ], + [ + 71.6156047361899, + 18.61847968718361 + ], + [ + 71.50076205270622, + 18.81312742211206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 18.81312742211206 + ], + [ + 71.6156047361899, + 18.61847968718361 + ], + [ + 71.73044741967358, + 18.81312742211206 + ], + [ + 71.50076205270622, + 18.81312742211206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 19.20242289196897 + ], + [ + 71.73044741967358, + 19.20242289196897 + ], + [ + 71.6156047361899, + 19.39707062689742 + ], + [ + 71.50076205270622, + 19.20242289196897 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 19.20242289196897 + ], + [ + 71.6156047361899, + 19.39707062689742 + ], + [ + 71.38591936922255, + 19.39707062689742 + ], + [ + 71.50076205270622, + 19.20242289196897 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 19.20242289196897 + ], + [ + 71.38591936922255, + 19.39707062689742 + ], + [ + 71.27107668573886, + 19.20242289196897 + ], + [ + 71.50076205270622, + 19.20242289196897 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 19.20242289196897 + ], + [ + 71.27107668573886, + 19.20242289196897 + ], + [ + 71.38591936922255, + 19.007775157040516 + ], + [ + 71.50076205270622, + 19.20242289196897 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 19.20242289196897 + ], + [ + 71.38591936922255, + 19.007775157040516 + ], + [ + 71.6156047361899, + 19.007775157040516 + ], + [ + 71.50076205270622, + 19.20242289196897 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 19.20242289196897 + ], + [ + 71.6156047361899, + 19.007775157040516 + ], + [ + 71.73044741967358, + 19.20242289196897 + ], + [ + 71.50076205270622, + 19.20242289196897 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 19.591718361825876 + ], + [ + 71.73044741967358, + 19.591718361825876 + ], + [ + 71.6156047361899, + 19.78636609675433 + ], + [ + 71.50076205270622, + 19.591718361825876 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 19.591718361825876 + ], + [ + 71.6156047361899, + 19.78636609675433 + ], + [ + 71.38591936922255, + 19.78636609675433 + ], + [ + 71.50076205270622, + 19.591718361825876 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 19.591718361825876 + ], + [ + 71.38591936922255, + 19.78636609675433 + ], + [ + 71.27107668573886, + 19.591718361825876 + ], + [ + 71.50076205270622, + 19.591718361825876 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 19.591718361825876 + ], + [ + 71.27107668573886, + 19.591718361825876 + ], + [ + 71.38591936922255, + 19.397070626897424 + ], + [ + 71.50076205270622, + 19.591718361825876 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 19.591718361825876 + ], + [ + 71.38591936922255, + 19.397070626897424 + ], + [ + 71.6156047361899, + 19.397070626897424 + ], + [ + 71.50076205270622, + 19.591718361825876 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 19.591718361825876 + ], + [ + 71.6156047361899, + 19.397070626897424 + ], + [ + 71.73044741967358, + 19.591718361825876 + ], + [ + 71.50076205270622, + 19.591718361825876 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 19.98101383168278 + ], + [ + 71.73044741967358, + 19.98101383168278 + ], + [ + 71.6156047361899, + 20.175661566611232 + ], + [ + 71.50076205270622, + 19.98101383168278 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 19.98101383168278 + ], + [ + 71.6156047361899, + 20.175661566611232 + ], + [ + 71.38591936922255, + 20.175661566611232 + ], + [ + 71.50076205270622, + 19.98101383168278 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 19.98101383168278 + ], + [ + 71.38591936922255, + 20.175661566611232 + ], + [ + 71.27107668573886, + 19.98101383168278 + ], + [ + 71.50076205270622, + 19.98101383168278 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 19.98101383168278 + ], + [ + 71.27107668573886, + 19.98101383168278 + ], + [ + 71.38591936922255, + 19.78636609675433 + ], + [ + 71.50076205270622, + 19.98101383168278 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 19.98101383168278 + ], + [ + 71.38591936922255, + 19.78636609675433 + ], + [ + 71.6156047361899, + 19.78636609675433 + ], + [ + 71.50076205270622, + 19.98101383168278 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 19.98101383168278 + ], + [ + 71.6156047361899, + 19.78636609675433 + ], + [ + 71.73044741967358, + 19.98101383168278 + ], + [ + 71.50076205270622, + 19.98101383168278 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 20.370309301539685 + ], + [ + 71.73044741967358, + 20.370309301539685 + ], + [ + 71.6156047361899, + 20.564957036468137 + ], + [ + 71.50076205270622, + 20.370309301539685 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 20.370309301539685 + ], + [ + 71.6156047361899, + 20.564957036468137 + ], + [ + 71.38591936922255, + 20.564957036468137 + ], + [ + 71.50076205270622, + 20.370309301539685 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 20.370309301539685 + ], + [ + 71.38591936922255, + 20.564957036468137 + ], + [ + 71.27107668573886, + 20.370309301539685 + ], + [ + 71.50076205270622, + 20.370309301539685 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 20.370309301539685 + ], + [ + 71.27107668573886, + 20.370309301539685 + ], + [ + 71.38591936922255, + 20.175661566611232 + ], + [ + 71.50076205270622, + 20.370309301539685 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 20.370309301539685 + ], + [ + 71.38591936922255, + 20.175661566611232 + ], + [ + 71.6156047361899, + 20.175661566611232 + ], + [ + 71.50076205270622, + 20.370309301539685 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 20.370309301539685 + ], + [ + 71.6156047361899, + 20.175661566611232 + ], + [ + 71.73044741967358, + 20.370309301539685 + ], + [ + 71.50076205270622, + 20.370309301539685 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 20.759604771396592 + ], + [ + 71.73044741967358, + 20.759604771396592 + ], + [ + 71.6156047361899, + 20.954252506325044 + ], + [ + 71.50076205270622, + 20.759604771396592 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 20.759604771396592 + ], + [ + 71.6156047361899, + 20.954252506325044 + ], + [ + 71.38591936922255, + 20.954252506325044 + ], + [ + 71.50076205270622, + 20.759604771396592 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 20.759604771396592 + ], + [ + 71.38591936922255, + 20.954252506325044 + ], + [ + 71.27107668573886, + 20.759604771396592 + ], + [ + 71.50076205270622, + 20.759604771396592 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 20.759604771396592 + ], + [ + 71.27107668573886, + 20.759604771396592 + ], + [ + 71.38591936922255, + 20.56495703646814 + ], + [ + 71.50076205270622, + 20.759604771396592 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 20.759604771396592 + ], + [ + 71.38591936922255, + 20.56495703646814 + ], + [ + 71.6156047361899, + 20.56495703646814 + ], + [ + 71.50076205270622, + 20.759604771396592 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 20.759604771396592 + ], + [ + 71.6156047361899, + 20.56495703646814 + ], + [ + 71.73044741967358, + 20.759604771396592 + ], + [ + 71.50076205270622, + 20.759604771396592 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 21.1489002412535 + ], + [ + 71.73044741967358, + 21.1489002412535 + ], + [ + 71.6156047361899, + 21.343547976181952 + ], + [ + 71.50076205270622, + 21.1489002412535 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 21.1489002412535 + ], + [ + 71.6156047361899, + 21.343547976181952 + ], + [ + 71.38591936922255, + 21.343547976181952 + ], + [ + 71.50076205270622, + 21.1489002412535 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 21.1489002412535 + ], + [ + 71.38591936922255, + 21.343547976181952 + ], + [ + 71.27107668573886, + 21.1489002412535 + ], + [ + 71.50076205270622, + 21.1489002412535 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 21.1489002412535 + ], + [ + 71.27107668573886, + 21.1489002412535 + ], + [ + 71.38591936922255, + 20.954252506325048 + ], + [ + 71.50076205270622, + 21.1489002412535 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 21.1489002412535 + ], + [ + 71.38591936922255, + 20.954252506325048 + ], + [ + 71.6156047361899, + 20.954252506325048 + ], + [ + 71.50076205270622, + 21.1489002412535 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 21.1489002412535 + ], + [ + 71.6156047361899, + 20.954252506325048 + ], + [ + 71.73044741967358, + 21.1489002412535 + ], + [ + 71.50076205270622, + 21.1489002412535 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 21.538195711110404 + ], + [ + 71.73044741967358, + 21.538195711110404 + ], + [ + 71.6156047361899, + 21.732843446038856 + ], + [ + 71.50076205270622, + 21.538195711110404 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 21.538195711110404 + ], + [ + 71.6156047361899, + 21.732843446038856 + ], + [ + 71.38591936922255, + 21.732843446038856 + ], + [ + 71.50076205270622, + 21.538195711110404 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 21.538195711110404 + ], + [ + 71.38591936922255, + 21.732843446038856 + ], + [ + 71.27107668573886, + 21.538195711110404 + ], + [ + 71.50076205270622, + 21.538195711110404 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 21.538195711110404 + ], + [ + 71.27107668573886, + 21.538195711110404 + ], + [ + 71.38591936922255, + 21.343547976181952 + ], + [ + 71.50076205270622, + 21.538195711110404 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 21.538195711110404 + ], + [ + 71.38591936922255, + 21.343547976181952 + ], + [ + 71.6156047361899, + 21.343547976181952 + ], + [ + 71.50076205270622, + 21.538195711110404 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 21.538195711110404 + ], + [ + 71.6156047361899, + 21.343547976181952 + ], + [ + 71.73044741967358, + 21.538195711110404 + ], + [ + 71.50076205270622, + 21.538195711110404 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 21.927491180967312 + ], + [ + 71.73044741967358, + 21.927491180967312 + ], + [ + 71.6156047361899, + 22.122138915895764 + ], + [ + 71.50076205270622, + 21.927491180967312 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 21.927491180967312 + ], + [ + 71.6156047361899, + 22.122138915895764 + ], + [ + 71.38591936922255, + 22.122138915895764 + ], + [ + 71.50076205270622, + 21.927491180967312 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 21.927491180967312 + ], + [ + 71.38591936922255, + 22.122138915895764 + ], + [ + 71.27107668573886, + 21.927491180967312 + ], + [ + 71.50076205270622, + 21.927491180967312 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 21.927491180967312 + ], + [ + 71.27107668573886, + 21.927491180967312 + ], + [ + 71.38591936922255, + 21.73284344603886 + ], + [ + 71.50076205270622, + 21.927491180967312 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 21.927491180967312 + ], + [ + 71.38591936922255, + 21.73284344603886 + ], + [ + 71.6156047361899, + 21.73284344603886 + ], + [ + 71.50076205270622, + 21.927491180967312 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 21.927491180967312 + ], + [ + 71.6156047361899, + 21.73284344603886 + ], + [ + 71.73044741967358, + 21.927491180967312 + ], + [ + 71.50076205270622, + 21.927491180967312 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 22.31678665082422 + ], + [ + 71.73044741967358, + 22.31678665082422 + ], + [ + 71.6156047361899, + 22.511434385752672 + ], + [ + 71.50076205270622, + 22.31678665082422 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 22.31678665082422 + ], + [ + 71.6156047361899, + 22.511434385752672 + ], + [ + 71.38591936922255, + 22.511434385752672 + ], + [ + 71.50076205270622, + 22.31678665082422 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 22.31678665082422 + ], + [ + 71.38591936922255, + 22.511434385752672 + ], + [ + 71.27107668573886, + 22.31678665082422 + ], + [ + 71.50076205270622, + 22.31678665082422 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 22.31678665082422 + ], + [ + 71.27107668573886, + 22.31678665082422 + ], + [ + 71.38591936922255, + 22.122138915895768 + ], + [ + 71.50076205270622, + 22.31678665082422 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 22.31678665082422 + ], + [ + 71.38591936922255, + 22.122138915895768 + ], + [ + 71.6156047361899, + 22.122138915895768 + ], + [ + 71.50076205270622, + 22.31678665082422 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 22.31678665082422 + ], + [ + 71.6156047361899, + 22.122138915895768 + ], + [ + 71.73044741967358, + 22.31678665082422 + ], + [ + 71.50076205270622, + 22.31678665082422 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 22.706082120681124 + ], + [ + 71.73044741967358, + 22.706082120681124 + ], + [ + 71.6156047361899, + 22.900729855609576 + ], + [ + 71.50076205270622, + 22.706082120681124 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 22.706082120681124 + ], + [ + 71.6156047361899, + 22.900729855609576 + ], + [ + 71.38591936922255, + 22.900729855609576 + ], + [ + 71.50076205270622, + 22.706082120681124 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 22.706082120681124 + ], + [ + 71.38591936922255, + 22.900729855609576 + ], + [ + 71.27107668573886, + 22.706082120681124 + ], + [ + 71.50076205270622, + 22.706082120681124 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 22.706082120681124 + ], + [ + 71.27107668573886, + 22.706082120681124 + ], + [ + 71.38591936922255, + 22.511434385752672 + ], + [ + 71.50076205270622, + 22.706082120681124 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 22.706082120681124 + ], + [ + 71.38591936922255, + 22.511434385752672 + ], + [ + 71.6156047361899, + 22.511434385752672 + ], + [ + 71.50076205270622, + 22.706082120681124 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 22.706082120681124 + ], + [ + 71.6156047361899, + 22.511434385752672 + ], + [ + 71.73044741967358, + 22.706082120681124 + ], + [ + 71.50076205270622, + 22.706082120681124 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 23.095377590538032 + ], + [ + 71.73044741967358, + 23.095377590538032 + ], + [ + 71.6156047361899, + 23.290025325466484 + ], + [ + 71.50076205270622, + 23.095377590538032 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 23.095377590538032 + ], + [ + 71.6156047361899, + 23.290025325466484 + ], + [ + 71.38591936922255, + 23.290025325466484 + ], + [ + 71.50076205270622, + 23.095377590538032 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 23.095377590538032 + ], + [ + 71.38591936922255, + 23.290025325466484 + ], + [ + 71.27107668573886, + 23.095377590538032 + ], + [ + 71.50076205270622, + 23.095377590538032 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 23.095377590538032 + ], + [ + 71.27107668573886, + 23.095377590538032 + ], + [ + 71.38591936922255, + 22.90072985560958 + ], + [ + 71.50076205270622, + 23.095377590538032 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 23.095377590538032 + ], + [ + 71.38591936922255, + 22.90072985560958 + ], + [ + 71.6156047361899, + 22.90072985560958 + ], + [ + 71.50076205270622, + 23.095377590538032 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 23.095377590538032 + ], + [ + 71.6156047361899, + 22.90072985560958 + ], + [ + 71.73044741967358, + 23.095377590538032 + ], + [ + 71.50076205270622, + 23.095377590538032 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 23.48467306039494 + ], + [ + 71.73044741967358, + 23.48467306039494 + ], + [ + 71.6156047361899, + 23.67932079532339 + ], + [ + 71.50076205270622, + 23.48467306039494 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 23.48467306039494 + ], + [ + 71.6156047361899, + 23.67932079532339 + ], + [ + 71.38591936922255, + 23.67932079532339 + ], + [ + 71.50076205270622, + 23.48467306039494 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 23.48467306039494 + ], + [ + 71.38591936922255, + 23.67932079532339 + ], + [ + 71.27107668573886, + 23.48467306039494 + ], + [ + 71.50076205270622, + 23.48467306039494 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 23.48467306039494 + ], + [ + 71.27107668573886, + 23.48467306039494 + ], + [ + 71.38591936922255, + 23.290025325466488 + ], + [ + 71.50076205270622, + 23.48467306039494 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 23.48467306039494 + ], + [ + 71.38591936922255, + 23.290025325466488 + ], + [ + 71.6156047361899, + 23.290025325466488 + ], + [ + 71.50076205270622, + 23.48467306039494 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 23.48467306039494 + ], + [ + 71.6156047361899, + 23.290025325466488 + ], + [ + 71.73044741967358, + 23.48467306039494 + ], + [ + 71.50076205270622, + 23.48467306039494 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 23.873968530251844 + ], + [ + 71.73044741967358, + 23.873968530251844 + ], + [ + 71.6156047361899, + 24.068616265180296 + ], + [ + 71.50076205270622, + 23.873968530251844 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 23.873968530251844 + ], + [ + 71.6156047361899, + 24.068616265180296 + ], + [ + 71.38591936922255, + 24.068616265180296 + ], + [ + 71.50076205270622, + 23.873968530251844 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 23.873968530251844 + ], + [ + 71.38591936922255, + 24.068616265180296 + ], + [ + 71.27107668573886, + 23.873968530251844 + ], + [ + 71.50076205270622, + 23.873968530251844 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 23.873968530251844 + ], + [ + 71.27107668573886, + 23.873968530251844 + ], + [ + 71.38591936922255, + 23.67932079532339 + ], + [ + 71.50076205270622, + 23.873968530251844 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 23.873968530251844 + ], + [ + 71.38591936922255, + 23.67932079532339 + ], + [ + 71.6156047361899, + 23.67932079532339 + ], + [ + 71.50076205270622, + 23.873968530251844 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 23.873968530251844 + ], + [ + 71.6156047361899, + 23.67932079532339 + ], + [ + 71.73044741967358, + 23.873968530251844 + ], + [ + 71.50076205270622, + 23.873968530251844 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 24.263264000108748 + ], + [ + 71.73044741967358, + 24.263264000108748 + ], + [ + 71.6156047361899, + 24.4579117350372 + ], + [ + 71.50076205270622, + 24.263264000108748 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 24.263264000108748 + ], + [ + 71.6156047361899, + 24.4579117350372 + ], + [ + 71.38591936922255, + 24.4579117350372 + ], + [ + 71.50076205270622, + 24.263264000108748 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 24.263264000108748 + ], + [ + 71.38591936922255, + 24.4579117350372 + ], + [ + 71.27107668573886, + 24.263264000108748 + ], + [ + 71.50076205270622, + 24.263264000108748 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 24.263264000108748 + ], + [ + 71.27107668573886, + 24.263264000108748 + ], + [ + 71.38591936922255, + 24.068616265180296 + ], + [ + 71.50076205270622, + 24.263264000108748 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 24.263264000108748 + ], + [ + 71.38591936922255, + 24.068616265180296 + ], + [ + 71.6156047361899, + 24.068616265180296 + ], + [ + 71.50076205270622, + 24.263264000108748 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 24.263264000108748 + ], + [ + 71.6156047361899, + 24.068616265180296 + ], + [ + 71.73044741967358, + 24.263264000108748 + ], + [ + 71.50076205270622, + 24.263264000108748 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 24.652559469965656 + ], + [ + 71.73044741967358, + 24.652559469965656 + ], + [ + 71.6156047361899, + 24.847207204894108 + ], + [ + 71.50076205270622, + 24.652559469965656 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 24.652559469965656 + ], + [ + 71.6156047361899, + 24.847207204894108 + ], + [ + 71.38591936922255, + 24.847207204894108 + ], + [ + 71.50076205270622, + 24.652559469965656 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 24.652559469965656 + ], + [ + 71.38591936922255, + 24.847207204894108 + ], + [ + 71.27107668573886, + 24.652559469965656 + ], + [ + 71.50076205270622, + 24.652559469965656 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 24.652559469965656 + ], + [ + 71.27107668573886, + 24.652559469965656 + ], + [ + 71.38591936922255, + 24.457911735037204 + ], + [ + 71.50076205270622, + 24.652559469965656 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 24.652559469965656 + ], + [ + 71.38591936922255, + 24.457911735037204 + ], + [ + 71.6156047361899, + 24.457911735037204 + ], + [ + 71.50076205270622, + 24.652559469965656 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 24.652559469965656 + ], + [ + 71.6156047361899, + 24.457911735037204 + ], + [ + 71.73044741967358, + 24.652559469965656 + ], + [ + 71.50076205270622, + 24.652559469965656 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 25.041854939822564 + ], + [ + 71.73044741967358, + 25.041854939822564 + ], + [ + 71.6156047361899, + 25.236502674751016 + ], + [ + 71.50076205270622, + 25.041854939822564 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 25.041854939822564 + ], + [ + 71.6156047361899, + 25.236502674751016 + ], + [ + 71.38591936922255, + 25.236502674751016 + ], + [ + 71.50076205270622, + 25.041854939822564 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 25.041854939822564 + ], + [ + 71.38591936922255, + 25.236502674751016 + ], + [ + 71.27107668573886, + 25.041854939822564 + ], + [ + 71.50076205270622, + 25.041854939822564 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 25.041854939822564 + ], + [ + 71.27107668573886, + 25.041854939822564 + ], + [ + 71.38591936922255, + 24.84720720489411 + ], + [ + 71.50076205270622, + 25.041854939822564 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 25.041854939822564 + ], + [ + 71.38591936922255, + 24.84720720489411 + ], + [ + 71.6156047361899, + 24.84720720489411 + ], + [ + 71.50076205270622, + 25.041854939822564 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 25.041854939822564 + ], + [ + 71.6156047361899, + 24.84720720489411 + ], + [ + 71.73044741967358, + 25.041854939822564 + ], + [ + 71.50076205270622, + 25.041854939822564 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 25.431150409679468 + ], + [ + 71.73044741967358, + 25.431150409679468 + ], + [ + 71.6156047361899, + 25.62579814460792 + ], + [ + 71.50076205270622, + 25.431150409679468 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 25.431150409679468 + ], + [ + 71.6156047361899, + 25.62579814460792 + ], + [ + 71.38591936922255, + 25.62579814460792 + ], + [ + 71.50076205270622, + 25.431150409679468 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 25.431150409679468 + ], + [ + 71.38591936922255, + 25.62579814460792 + ], + [ + 71.27107668573886, + 25.431150409679468 + ], + [ + 71.50076205270622, + 25.431150409679468 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 25.431150409679468 + ], + [ + 71.27107668573886, + 25.431150409679468 + ], + [ + 71.38591936922255, + 25.236502674751016 + ], + [ + 71.50076205270622, + 25.431150409679468 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 25.431150409679468 + ], + [ + 71.38591936922255, + 25.236502674751016 + ], + [ + 71.6156047361899, + 25.236502674751016 + ], + [ + 71.50076205270622, + 25.431150409679468 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 25.431150409679468 + ], + [ + 71.6156047361899, + 25.236502674751016 + ], + [ + 71.73044741967358, + 25.431150409679468 + ], + [ + 71.50076205270622, + 25.431150409679468 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 25.820445879536376 + ], + [ + 71.73044741967358, + 25.820445879536376 + ], + [ + 71.6156047361899, + 26.015093614464828 + ], + [ + 71.50076205270622, + 25.820445879536376 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 25.820445879536376 + ], + [ + 71.6156047361899, + 26.015093614464828 + ], + [ + 71.38591936922255, + 26.015093614464828 + ], + [ + 71.50076205270622, + 25.820445879536376 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 25.820445879536376 + ], + [ + 71.38591936922255, + 26.015093614464828 + ], + [ + 71.27107668573886, + 25.820445879536376 + ], + [ + 71.50076205270622, + 25.820445879536376 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 25.820445879536376 + ], + [ + 71.27107668573886, + 25.820445879536376 + ], + [ + 71.38591936922255, + 25.625798144607923 + ], + [ + 71.50076205270622, + 25.820445879536376 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 25.820445879536376 + ], + [ + 71.38591936922255, + 25.625798144607923 + ], + [ + 71.6156047361899, + 25.625798144607923 + ], + [ + 71.50076205270622, + 25.820445879536376 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 25.820445879536376 + ], + [ + 71.6156047361899, + 25.625798144607923 + ], + [ + 71.73044741967358, + 25.820445879536376 + ], + [ + 71.50076205270622, + 25.820445879536376 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 26.209741349393283 + ], + [ + 71.73044741967358, + 26.209741349393283 + ], + [ + 71.6156047361899, + 26.404389084321735 + ], + [ + 71.50076205270622, + 26.209741349393283 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 26.209741349393283 + ], + [ + 71.6156047361899, + 26.404389084321735 + ], + [ + 71.38591936922255, + 26.404389084321735 + ], + [ + 71.50076205270622, + 26.209741349393283 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 26.209741349393283 + ], + [ + 71.38591936922255, + 26.404389084321735 + ], + [ + 71.27107668573886, + 26.209741349393283 + ], + [ + 71.50076205270622, + 26.209741349393283 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 26.209741349393283 + ], + [ + 71.27107668573886, + 26.209741349393283 + ], + [ + 71.38591936922255, + 26.01509361446483 + ], + [ + 71.50076205270622, + 26.209741349393283 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 26.209741349393283 + ], + [ + 71.38591936922255, + 26.01509361446483 + ], + [ + 71.6156047361899, + 26.01509361446483 + ], + [ + 71.50076205270622, + 26.209741349393283 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 26.209741349393283 + ], + [ + 71.6156047361899, + 26.01509361446483 + ], + [ + 71.73044741967358, + 26.209741349393283 + ], + [ + 71.50076205270622, + 26.209741349393283 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 26.599036819250188 + ], + [ + 71.73044741967358, + 26.599036819250188 + ], + [ + 71.6156047361899, + 26.79368455417864 + ], + [ + 71.50076205270622, + 26.599036819250188 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 26.599036819250188 + ], + [ + 71.6156047361899, + 26.79368455417864 + ], + [ + 71.38591936922255, + 26.79368455417864 + ], + [ + 71.50076205270622, + 26.599036819250188 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 26.599036819250188 + ], + [ + 71.38591936922255, + 26.79368455417864 + ], + [ + 71.27107668573886, + 26.599036819250188 + ], + [ + 71.50076205270622, + 26.599036819250188 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 26.599036819250188 + ], + [ + 71.27107668573886, + 26.599036819250188 + ], + [ + 71.38591936922255, + 26.404389084321735 + ], + [ + 71.50076205270622, + 26.599036819250188 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 26.599036819250188 + ], + [ + 71.38591936922255, + 26.404389084321735 + ], + [ + 71.6156047361899, + 26.404389084321735 + ], + [ + 71.50076205270622, + 26.599036819250188 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 26.599036819250188 + ], + [ + 71.6156047361899, + 26.404389084321735 + ], + [ + 71.73044741967358, + 26.599036819250188 + ], + [ + 71.50076205270622, + 26.599036819250188 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 26.988332289107095 + ], + [ + 71.73044741967358, + 26.988332289107095 + ], + [ + 71.6156047361899, + 27.182980024035547 + ], + [ + 71.50076205270622, + 26.988332289107095 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 26.988332289107095 + ], + [ + 71.6156047361899, + 27.182980024035547 + ], + [ + 71.38591936922255, + 27.182980024035547 + ], + [ + 71.50076205270622, + 26.988332289107095 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 26.988332289107095 + ], + [ + 71.38591936922255, + 27.182980024035547 + ], + [ + 71.27107668573886, + 26.988332289107095 + ], + [ + 71.50076205270622, + 26.988332289107095 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 26.988332289107095 + ], + [ + 71.27107668573886, + 26.988332289107095 + ], + [ + 71.38591936922255, + 26.793684554178643 + ], + [ + 71.50076205270622, + 26.988332289107095 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 26.988332289107095 + ], + [ + 71.38591936922255, + 26.793684554178643 + ], + [ + 71.6156047361899, + 26.793684554178643 + ], + [ + 71.50076205270622, + 26.988332289107095 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 26.988332289107095 + ], + [ + 71.6156047361899, + 26.793684554178643 + ], + [ + 71.73044741967358, + 26.988332289107095 + ], + [ + 71.50076205270622, + 26.988332289107095 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 27.377627758964003 + ], + [ + 71.73044741967358, + 27.377627758964003 + ], + [ + 71.6156047361899, + 27.572275493892455 + ], + [ + 71.50076205270622, + 27.377627758964003 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 27.377627758964003 + ], + [ + 71.6156047361899, + 27.572275493892455 + ], + [ + 71.38591936922255, + 27.572275493892455 + ], + [ + 71.50076205270622, + 27.377627758964003 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 27.377627758964003 + ], + [ + 71.38591936922255, + 27.572275493892455 + ], + [ + 71.27107668573886, + 27.377627758964003 + ], + [ + 71.50076205270622, + 27.377627758964003 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 27.377627758964003 + ], + [ + 71.27107668573886, + 27.377627758964003 + ], + [ + 71.38591936922255, + 27.18298002403555 + ], + [ + 71.50076205270622, + 27.377627758964003 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 27.377627758964003 + ], + [ + 71.38591936922255, + 27.18298002403555 + ], + [ + 71.6156047361899, + 27.18298002403555 + ], + [ + 71.50076205270622, + 27.377627758964003 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 27.377627758964003 + ], + [ + 71.6156047361899, + 27.18298002403555 + ], + [ + 71.73044741967358, + 27.377627758964003 + ], + [ + 71.50076205270622, + 27.377627758964003 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 27.766923228820907 + ], + [ + 71.73044741967358, + 27.766923228820907 + ], + [ + 71.6156047361899, + 27.96157096374936 + ], + [ + 71.50076205270622, + 27.766923228820907 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 27.766923228820907 + ], + [ + 71.6156047361899, + 27.96157096374936 + ], + [ + 71.38591936922255, + 27.96157096374936 + ], + [ + 71.50076205270622, + 27.766923228820907 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 27.766923228820907 + ], + [ + 71.38591936922255, + 27.96157096374936 + ], + [ + 71.27107668573886, + 27.766923228820907 + ], + [ + 71.50076205270622, + 27.766923228820907 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 27.766923228820907 + ], + [ + 71.27107668573886, + 27.766923228820907 + ], + [ + 71.38591936922255, + 27.572275493892455 + ], + [ + 71.50076205270622, + 27.766923228820907 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 27.766923228820907 + ], + [ + 71.38591936922255, + 27.572275493892455 + ], + [ + 71.6156047361899, + 27.572275493892455 + ], + [ + 71.50076205270622, + 27.766923228820907 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 27.766923228820907 + ], + [ + 71.6156047361899, + 27.572275493892455 + ], + [ + 71.73044741967358, + 27.766923228820907 + ], + [ + 71.50076205270622, + 27.766923228820907 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 28.156218698677815 + ], + [ + 71.73044741967358, + 28.156218698677815 + ], + [ + 71.6156047361899, + 28.350866433606267 + ], + [ + 71.50076205270622, + 28.156218698677815 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 28.156218698677815 + ], + [ + 71.6156047361899, + 28.350866433606267 + ], + [ + 71.38591936922255, + 28.350866433606267 + ], + [ + 71.50076205270622, + 28.156218698677815 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 28.156218698677815 + ], + [ + 71.38591936922255, + 28.350866433606267 + ], + [ + 71.27107668573886, + 28.156218698677815 + ], + [ + 71.50076205270622, + 28.156218698677815 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 28.156218698677815 + ], + [ + 71.27107668573886, + 28.156218698677815 + ], + [ + 71.38591936922255, + 27.961570963749363 + ], + [ + 71.50076205270622, + 28.156218698677815 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 28.156218698677815 + ], + [ + 71.38591936922255, + 27.961570963749363 + ], + [ + 71.6156047361899, + 27.961570963749363 + ], + [ + 71.50076205270622, + 28.156218698677815 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 28.156218698677815 + ], + [ + 71.6156047361899, + 27.961570963749363 + ], + [ + 71.73044741967358, + 28.156218698677815 + ], + [ + 71.50076205270622, + 28.156218698677815 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 28.54551416853472 + ], + [ + 71.73044741967358, + 28.54551416853472 + ], + [ + 71.6156047361899, + 28.74016190346317 + ], + [ + 71.50076205270622, + 28.54551416853472 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 28.54551416853472 + ], + [ + 71.6156047361899, + 28.74016190346317 + ], + [ + 71.38591936922255, + 28.74016190346317 + ], + [ + 71.50076205270622, + 28.54551416853472 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 28.54551416853472 + ], + [ + 71.38591936922255, + 28.74016190346317 + ], + [ + 71.27107668573886, + 28.54551416853472 + ], + [ + 71.50076205270622, + 28.54551416853472 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 28.54551416853472 + ], + [ + 71.27107668573886, + 28.54551416853472 + ], + [ + 71.38591936922255, + 28.350866433606267 + ], + [ + 71.50076205270622, + 28.54551416853472 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 28.54551416853472 + ], + [ + 71.38591936922255, + 28.350866433606267 + ], + [ + 71.6156047361899, + 28.350866433606267 + ], + [ + 71.50076205270622, + 28.54551416853472 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 28.54551416853472 + ], + [ + 71.6156047361899, + 28.350866433606267 + ], + [ + 71.73044741967358, + 28.54551416853472 + ], + [ + 71.50076205270622, + 28.54551416853472 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 28.934809638391627 + ], + [ + 71.73044741967358, + 28.934809638391627 + ], + [ + 71.6156047361899, + 29.12945737332008 + ], + [ + 71.50076205270622, + 28.934809638391627 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 28.934809638391627 + ], + [ + 71.6156047361899, + 29.12945737332008 + ], + [ + 71.38591936922255, + 29.12945737332008 + ], + [ + 71.50076205270622, + 28.934809638391627 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 28.934809638391627 + ], + [ + 71.38591936922255, + 29.12945737332008 + ], + [ + 71.27107668573886, + 28.934809638391627 + ], + [ + 71.50076205270622, + 28.934809638391627 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 28.934809638391627 + ], + [ + 71.27107668573886, + 28.934809638391627 + ], + [ + 71.38591936922255, + 28.740161903463175 + ], + [ + 71.50076205270622, + 28.934809638391627 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 28.934809638391627 + ], + [ + 71.38591936922255, + 28.740161903463175 + ], + [ + 71.6156047361899, + 28.740161903463175 + ], + [ + 71.50076205270622, + 28.934809638391627 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 28.934809638391627 + ], + [ + 71.6156047361899, + 28.740161903463175 + ], + [ + 71.73044741967358, + 28.934809638391627 + ], + [ + 71.50076205270622, + 28.934809638391627 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 29.32410510824853 + ], + [ + 71.73044741967358, + 29.32410510824853 + ], + [ + 71.6156047361899, + 29.518752843176983 + ], + [ + 71.50076205270622, + 29.32410510824853 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 29.32410510824853 + ], + [ + 71.6156047361899, + 29.518752843176983 + ], + [ + 71.38591936922255, + 29.518752843176983 + ], + [ + 71.50076205270622, + 29.32410510824853 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 29.32410510824853 + ], + [ + 71.38591936922255, + 29.518752843176983 + ], + [ + 71.27107668573886, + 29.32410510824853 + ], + [ + 71.50076205270622, + 29.32410510824853 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 29.32410510824853 + ], + [ + 71.27107668573886, + 29.32410510824853 + ], + [ + 71.38591936922255, + 29.12945737332008 + ], + [ + 71.50076205270622, + 29.32410510824853 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 29.32410510824853 + ], + [ + 71.38591936922255, + 29.12945737332008 + ], + [ + 71.6156047361899, + 29.12945737332008 + ], + [ + 71.50076205270622, + 29.32410510824853 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 29.32410510824853 + ], + [ + 71.6156047361899, + 29.12945737332008 + ], + [ + 71.73044741967358, + 29.32410510824853 + ], + [ + 71.50076205270622, + 29.32410510824853 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 29.71340057810544 + ], + [ + 71.73044741967358, + 29.71340057810544 + ], + [ + 71.6156047361899, + 29.90804831303389 + ], + [ + 71.50076205270622, + 29.71340057810544 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 29.71340057810544 + ], + [ + 71.6156047361899, + 29.90804831303389 + ], + [ + 71.38591936922255, + 29.90804831303389 + ], + [ + 71.50076205270622, + 29.71340057810544 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 29.71340057810544 + ], + [ + 71.38591936922255, + 29.90804831303389 + ], + [ + 71.27107668573886, + 29.71340057810544 + ], + [ + 71.50076205270622, + 29.71340057810544 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 29.71340057810544 + ], + [ + 71.27107668573886, + 29.71340057810544 + ], + [ + 71.38591936922255, + 29.518752843176987 + ], + [ + 71.50076205270622, + 29.71340057810544 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 29.71340057810544 + ], + [ + 71.38591936922255, + 29.518752843176987 + ], + [ + 71.6156047361899, + 29.518752843176987 + ], + [ + 71.50076205270622, + 29.71340057810544 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 29.71340057810544 + ], + [ + 71.6156047361899, + 29.518752843176987 + ], + [ + 71.73044741967358, + 29.71340057810544 + ], + [ + 71.50076205270622, + 29.71340057810544 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 30.102696047962343 + ], + [ + 71.73044741967358, + 30.102696047962343 + ], + [ + 71.6156047361899, + 30.297343782890795 + ], + [ + 71.50076205270622, + 30.102696047962343 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 30.102696047962343 + ], + [ + 71.6156047361899, + 30.297343782890795 + ], + [ + 71.38591936922255, + 30.297343782890795 + ], + [ + 71.50076205270622, + 30.102696047962343 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 30.102696047962343 + ], + [ + 71.38591936922255, + 30.297343782890795 + ], + [ + 71.27107668573886, + 30.102696047962343 + ], + [ + 71.50076205270622, + 30.102696047962343 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 30.102696047962343 + ], + [ + 71.27107668573886, + 30.102696047962343 + ], + [ + 71.38591936922255, + 29.90804831303389 + ], + [ + 71.50076205270622, + 30.102696047962343 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 30.102696047962343 + ], + [ + 71.38591936922255, + 29.90804831303389 + ], + [ + 71.6156047361899, + 29.90804831303389 + ], + [ + 71.50076205270622, + 30.102696047962343 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 30.102696047962343 + ], + [ + 71.6156047361899, + 29.90804831303389 + ], + [ + 71.73044741967358, + 30.102696047962343 + ], + [ + 71.50076205270622, + 30.102696047962343 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 30.49199151781925 + ], + [ + 71.73044741967358, + 30.49199151781925 + ], + [ + 71.6156047361899, + 30.686639252747703 + ], + [ + 71.50076205270622, + 30.49199151781925 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 30.49199151781925 + ], + [ + 71.6156047361899, + 30.686639252747703 + ], + [ + 71.38591936922255, + 30.686639252747703 + ], + [ + 71.50076205270622, + 30.49199151781925 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 30.49199151781925 + ], + [ + 71.38591936922255, + 30.686639252747703 + ], + [ + 71.27107668573886, + 30.49199151781925 + ], + [ + 71.50076205270622, + 30.49199151781925 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 30.49199151781925 + ], + [ + 71.27107668573886, + 30.49199151781925 + ], + [ + 71.38591936922255, + 30.2973437828908 + ], + [ + 71.50076205270622, + 30.49199151781925 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 30.49199151781925 + ], + [ + 71.38591936922255, + 30.2973437828908 + ], + [ + 71.6156047361899, + 30.2973437828908 + ], + [ + 71.50076205270622, + 30.49199151781925 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 30.49199151781925 + ], + [ + 71.6156047361899, + 30.2973437828908 + ], + [ + 71.73044741967358, + 30.49199151781925 + ], + [ + 71.50076205270622, + 30.49199151781925 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 30.88128698767616 + ], + [ + 71.73044741967358, + 30.88128698767616 + ], + [ + 71.6156047361899, + 31.07593472260461 + ], + [ + 71.50076205270622, + 30.88128698767616 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 30.88128698767616 + ], + [ + 71.6156047361899, + 31.07593472260461 + ], + [ + 71.38591936922255, + 31.07593472260461 + ], + [ + 71.50076205270622, + 30.88128698767616 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 30.88128698767616 + ], + [ + 71.38591936922255, + 31.07593472260461 + ], + [ + 71.27107668573886, + 30.88128698767616 + ], + [ + 71.50076205270622, + 30.88128698767616 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 30.88128698767616 + ], + [ + 71.27107668573886, + 30.88128698767616 + ], + [ + 71.38591936922255, + 30.686639252747707 + ], + [ + 71.50076205270622, + 30.88128698767616 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 30.88128698767616 + ], + [ + 71.38591936922255, + 30.686639252747707 + ], + [ + 71.6156047361899, + 30.686639252747707 + ], + [ + 71.50076205270622, + 30.88128698767616 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 30.88128698767616 + ], + [ + 71.6156047361899, + 30.686639252747707 + ], + [ + 71.73044741967358, + 30.88128698767616 + ], + [ + 71.50076205270622, + 30.88128698767616 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 31.270582457533063 + ], + [ + 71.73044741967358, + 31.270582457533063 + ], + [ + 71.6156047361899, + 31.465230192461515 + ], + [ + 71.50076205270622, + 31.270582457533063 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 31.270582457533063 + ], + [ + 71.6156047361899, + 31.465230192461515 + ], + [ + 71.38591936922255, + 31.465230192461515 + ], + [ + 71.50076205270622, + 31.270582457533063 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 31.270582457533063 + ], + [ + 71.38591936922255, + 31.465230192461515 + ], + [ + 71.27107668573886, + 31.270582457533063 + ], + [ + 71.50076205270622, + 31.270582457533063 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 31.270582457533063 + ], + [ + 71.27107668573886, + 31.270582457533063 + ], + [ + 71.38591936922255, + 31.07593472260461 + ], + [ + 71.50076205270622, + 31.270582457533063 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 31.270582457533063 + ], + [ + 71.38591936922255, + 31.07593472260461 + ], + [ + 71.6156047361899, + 31.07593472260461 + ], + [ + 71.50076205270622, + 31.270582457533063 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 31.270582457533063 + ], + [ + 71.6156047361899, + 31.07593472260461 + ], + [ + 71.73044741967358, + 31.270582457533063 + ], + [ + 71.50076205270622, + 31.270582457533063 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 31.65987792738997 + ], + [ + 71.73044741967358, + 31.65987792738997 + ], + [ + 71.6156047361899, + 31.854525662318423 + ], + [ + 71.50076205270622, + 31.65987792738997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 31.65987792738997 + ], + [ + 71.6156047361899, + 31.854525662318423 + ], + [ + 71.38591936922255, + 31.854525662318423 + ], + [ + 71.50076205270622, + 31.65987792738997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 31.65987792738997 + ], + [ + 71.38591936922255, + 31.854525662318423 + ], + [ + 71.27107668573886, + 31.65987792738997 + ], + [ + 71.50076205270622, + 31.65987792738997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 31.65987792738997 + ], + [ + 71.27107668573886, + 31.65987792738997 + ], + [ + 71.38591936922255, + 31.46523019246152 + ], + [ + 71.50076205270622, + 31.65987792738997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 31.65987792738997 + ], + [ + 71.38591936922255, + 31.46523019246152 + ], + [ + 71.6156047361899, + 31.46523019246152 + ], + [ + 71.50076205270622, + 31.65987792738997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 31.65987792738997 + ], + [ + 71.6156047361899, + 31.46523019246152 + ], + [ + 71.73044741967358, + 31.65987792738997 + ], + [ + 71.50076205270622, + 31.65987792738997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 32.049173397246875 + ], + [ + 71.73044741967358, + 32.049173397246875 + ], + [ + 71.6156047361899, + 32.24382113217533 + ], + [ + 71.50076205270622, + 32.049173397246875 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 32.049173397246875 + ], + [ + 71.6156047361899, + 32.24382113217533 + ], + [ + 71.38591936922255, + 32.24382113217533 + ], + [ + 71.50076205270622, + 32.049173397246875 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 32.049173397246875 + ], + [ + 71.38591936922255, + 32.24382113217533 + ], + [ + 71.27107668573886, + 32.049173397246875 + ], + [ + 71.50076205270622, + 32.049173397246875 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 32.049173397246875 + ], + [ + 71.27107668573886, + 32.049173397246875 + ], + [ + 71.38591936922255, + 31.854525662318423 + ], + [ + 71.50076205270622, + 32.049173397246875 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 32.049173397246875 + ], + [ + 71.38591936922255, + 31.854525662318423 + ], + [ + 71.6156047361899, + 31.854525662318423 + ], + [ + 71.50076205270622, + 32.049173397246875 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 32.049173397246875 + ], + [ + 71.6156047361899, + 31.854525662318423 + ], + [ + 71.73044741967358, + 32.049173397246875 + ], + [ + 71.50076205270622, + 32.049173397246875 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 32.438468867103786 + ], + [ + 71.73044741967358, + 32.438468867103786 + ], + [ + 71.6156047361899, + 32.63311660203224 + ], + [ + 71.50076205270622, + 32.438468867103786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 32.438468867103786 + ], + [ + 71.6156047361899, + 32.63311660203224 + ], + [ + 71.38591936922255, + 32.63311660203224 + ], + [ + 71.50076205270622, + 32.438468867103786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 32.438468867103786 + ], + [ + 71.38591936922255, + 32.63311660203224 + ], + [ + 71.27107668573886, + 32.438468867103786 + ], + [ + 71.50076205270622, + 32.438468867103786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 32.438468867103786 + ], + [ + 71.27107668573886, + 32.438468867103786 + ], + [ + 71.38591936922255, + 32.243821132175334 + ], + [ + 71.50076205270622, + 32.438468867103786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 32.438468867103786 + ], + [ + 71.38591936922255, + 32.243821132175334 + ], + [ + 71.6156047361899, + 32.243821132175334 + ], + [ + 71.50076205270622, + 32.438468867103786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 32.438468867103786 + ], + [ + 71.6156047361899, + 32.243821132175334 + ], + [ + 71.73044741967358, + 32.438468867103786 + ], + [ + 71.50076205270622, + 32.438468867103786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 32.82776433696069 + ], + [ + 71.73044741967358, + 32.82776433696069 + ], + [ + 71.6156047361899, + 33.02241207188914 + ], + [ + 71.50076205270622, + 32.82776433696069 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 32.82776433696069 + ], + [ + 71.6156047361899, + 33.02241207188914 + ], + [ + 71.38591936922255, + 33.02241207188914 + ], + [ + 71.50076205270622, + 32.82776433696069 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 32.82776433696069 + ], + [ + 71.38591936922255, + 33.02241207188914 + ], + [ + 71.27107668573886, + 32.82776433696069 + ], + [ + 71.50076205270622, + 32.82776433696069 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 32.82776433696069 + ], + [ + 71.27107668573886, + 32.82776433696069 + ], + [ + 71.38591936922255, + 32.63311660203224 + ], + [ + 71.50076205270622, + 32.82776433696069 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 32.82776433696069 + ], + [ + 71.38591936922255, + 32.63311660203224 + ], + [ + 71.6156047361899, + 32.63311660203224 + ], + [ + 71.50076205270622, + 32.82776433696069 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 32.82776433696069 + ], + [ + 71.6156047361899, + 32.63311660203224 + ], + [ + 71.73044741967358, + 32.82776433696069 + ], + [ + 71.50076205270622, + 32.82776433696069 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 33.217059806817595 + ], + [ + 71.73044741967358, + 33.217059806817595 + ], + [ + 71.6156047361899, + 33.41170754174605 + ], + [ + 71.50076205270622, + 33.217059806817595 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 33.217059806817595 + ], + [ + 71.6156047361899, + 33.41170754174605 + ], + [ + 71.38591936922255, + 33.41170754174605 + ], + [ + 71.50076205270622, + 33.217059806817595 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 33.217059806817595 + ], + [ + 71.38591936922255, + 33.41170754174605 + ], + [ + 71.27107668573886, + 33.217059806817595 + ], + [ + 71.50076205270622, + 33.217059806817595 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 33.217059806817595 + ], + [ + 71.27107668573886, + 33.217059806817595 + ], + [ + 71.38591936922255, + 33.02241207188914 + ], + [ + 71.50076205270622, + 33.217059806817595 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 33.217059806817595 + ], + [ + 71.38591936922255, + 33.02241207188914 + ], + [ + 71.6156047361899, + 33.02241207188914 + ], + [ + 71.50076205270622, + 33.217059806817595 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 33.217059806817595 + ], + [ + 71.6156047361899, + 33.02241207188914 + ], + [ + 71.73044741967358, + 33.217059806817595 + ], + [ + 71.50076205270622, + 33.217059806817595 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 33.6063552766745 + ], + [ + 71.73044741967358, + 33.6063552766745 + ], + [ + 71.6156047361899, + 33.80100301160295 + ], + [ + 71.50076205270622, + 33.6063552766745 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 33.6063552766745 + ], + [ + 71.6156047361899, + 33.80100301160295 + ], + [ + 71.38591936922255, + 33.80100301160295 + ], + [ + 71.50076205270622, + 33.6063552766745 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 33.6063552766745 + ], + [ + 71.38591936922255, + 33.80100301160295 + ], + [ + 71.27107668573886, + 33.6063552766745 + ], + [ + 71.50076205270622, + 33.6063552766745 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 33.6063552766745 + ], + [ + 71.27107668573886, + 33.6063552766745 + ], + [ + 71.38591936922255, + 33.41170754174605 + ], + [ + 71.50076205270622, + 33.6063552766745 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 33.6063552766745 + ], + [ + 71.38591936922255, + 33.41170754174605 + ], + [ + 71.6156047361899, + 33.41170754174605 + ], + [ + 71.50076205270622, + 33.6063552766745 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 33.6063552766745 + ], + [ + 71.6156047361899, + 33.41170754174605 + ], + [ + 71.73044741967358, + 33.6063552766745 + ], + [ + 71.50076205270622, + 33.6063552766745 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 33.9956507465314 + ], + [ + 71.73044741967358, + 33.9956507465314 + ], + [ + 71.6156047361899, + 34.190298481459855 + ], + [ + 71.50076205270622, + 33.9956507465314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 33.9956507465314 + ], + [ + 71.6156047361899, + 34.190298481459855 + ], + [ + 71.38591936922255, + 34.190298481459855 + ], + [ + 71.50076205270622, + 33.9956507465314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 33.9956507465314 + ], + [ + 71.38591936922255, + 34.190298481459855 + ], + [ + 71.27107668573886, + 33.9956507465314 + ], + [ + 71.50076205270622, + 33.9956507465314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 33.9956507465314 + ], + [ + 71.27107668573886, + 33.9956507465314 + ], + [ + 71.38591936922255, + 33.80100301160295 + ], + [ + 71.50076205270622, + 33.9956507465314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 33.9956507465314 + ], + [ + 71.38591936922255, + 33.80100301160295 + ], + [ + 71.6156047361899, + 33.80100301160295 + ], + [ + 71.50076205270622, + 33.9956507465314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 33.9956507465314 + ], + [ + 71.6156047361899, + 33.80100301160295 + ], + [ + 71.73044741967358, + 33.9956507465314 + ], + [ + 71.50076205270622, + 33.9956507465314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 34.384946216388315 + ], + [ + 71.73044741967358, + 34.384946216388315 + ], + [ + 71.6156047361899, + 34.57959395131677 + ], + [ + 71.50076205270622, + 34.384946216388315 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 34.384946216388315 + ], + [ + 71.6156047361899, + 34.57959395131677 + ], + [ + 71.38591936922255, + 34.57959395131677 + ], + [ + 71.50076205270622, + 34.384946216388315 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 34.384946216388315 + ], + [ + 71.38591936922255, + 34.57959395131677 + ], + [ + 71.27107668573886, + 34.384946216388315 + ], + [ + 71.50076205270622, + 34.384946216388315 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 34.384946216388315 + ], + [ + 71.27107668573886, + 34.384946216388315 + ], + [ + 71.38591936922255, + 34.19029848145986 + ], + [ + 71.50076205270622, + 34.384946216388315 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 34.384946216388315 + ], + [ + 71.38591936922255, + 34.19029848145986 + ], + [ + 71.6156047361899, + 34.19029848145986 + ], + [ + 71.50076205270622, + 34.384946216388315 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 34.384946216388315 + ], + [ + 71.6156047361899, + 34.19029848145986 + ], + [ + 71.73044741967358, + 34.384946216388315 + ], + [ + 71.50076205270622, + 34.384946216388315 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 34.774241686245226 + ], + [ + 71.73044741967358, + 34.774241686245226 + ], + [ + 71.6156047361899, + 34.96888942117368 + ], + [ + 71.50076205270622, + 34.774241686245226 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 34.774241686245226 + ], + [ + 71.6156047361899, + 34.96888942117368 + ], + [ + 71.38591936922255, + 34.96888942117368 + ], + [ + 71.50076205270622, + 34.774241686245226 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 34.774241686245226 + ], + [ + 71.38591936922255, + 34.96888942117368 + ], + [ + 71.27107668573886, + 34.774241686245226 + ], + [ + 71.50076205270622, + 34.774241686245226 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 34.774241686245226 + ], + [ + 71.27107668573886, + 34.774241686245226 + ], + [ + 71.38591936922255, + 34.579593951316774 + ], + [ + 71.50076205270622, + 34.774241686245226 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 34.774241686245226 + ], + [ + 71.38591936922255, + 34.579593951316774 + ], + [ + 71.6156047361899, + 34.579593951316774 + ], + [ + 71.50076205270622, + 34.774241686245226 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 34.774241686245226 + ], + [ + 71.6156047361899, + 34.579593951316774 + ], + [ + 71.73044741967358, + 34.774241686245226 + ], + [ + 71.50076205270622, + 34.774241686245226 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 35.16353715610213 + ], + [ + 71.73044741967358, + 35.16353715610213 + ], + [ + 71.6156047361899, + 35.35818489103058 + ], + [ + 71.50076205270622, + 35.16353715610213 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 35.16353715610213 + ], + [ + 71.6156047361899, + 35.35818489103058 + ], + [ + 71.38591936922255, + 35.35818489103058 + ], + [ + 71.50076205270622, + 35.16353715610213 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 35.16353715610213 + ], + [ + 71.38591936922255, + 35.35818489103058 + ], + [ + 71.27107668573886, + 35.16353715610213 + ], + [ + 71.50076205270622, + 35.16353715610213 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 35.16353715610213 + ], + [ + 71.27107668573886, + 35.16353715610213 + ], + [ + 71.38591936922255, + 34.96888942117368 + ], + [ + 71.50076205270622, + 35.16353715610213 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 35.16353715610213 + ], + [ + 71.38591936922255, + 34.96888942117368 + ], + [ + 71.6156047361899, + 34.96888942117368 + ], + [ + 71.50076205270622, + 35.16353715610213 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 35.16353715610213 + ], + [ + 71.6156047361899, + 34.96888942117368 + ], + [ + 71.73044741967358, + 35.16353715610213 + ], + [ + 71.50076205270622, + 35.16353715610213 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 35.552832625959034 + ], + [ + 71.73044741967358, + 35.552832625959034 + ], + [ + 71.6156047361899, + 35.74748036088749 + ], + [ + 71.50076205270622, + 35.552832625959034 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 35.552832625959034 + ], + [ + 71.6156047361899, + 35.74748036088749 + ], + [ + 71.38591936922255, + 35.74748036088749 + ], + [ + 71.50076205270622, + 35.552832625959034 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 35.552832625959034 + ], + [ + 71.38591936922255, + 35.74748036088749 + ], + [ + 71.27107668573886, + 35.552832625959034 + ], + [ + 71.50076205270622, + 35.552832625959034 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 35.552832625959034 + ], + [ + 71.27107668573886, + 35.552832625959034 + ], + [ + 71.38591936922255, + 35.35818489103058 + ], + [ + 71.50076205270622, + 35.552832625959034 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 35.552832625959034 + ], + [ + 71.38591936922255, + 35.35818489103058 + ], + [ + 71.6156047361899, + 35.35818489103058 + ], + [ + 71.50076205270622, + 35.552832625959034 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 35.552832625959034 + ], + [ + 71.6156047361899, + 35.35818489103058 + ], + [ + 71.73044741967358, + 35.552832625959034 + ], + [ + 71.50076205270622, + 35.552832625959034 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 35.94212809581594 + ], + [ + 71.73044741967358, + 35.94212809581594 + ], + [ + 71.6156047361899, + 36.13677583074439 + ], + [ + 71.50076205270622, + 35.94212809581594 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 35.94212809581594 + ], + [ + 71.6156047361899, + 36.13677583074439 + ], + [ + 71.38591936922255, + 36.13677583074439 + ], + [ + 71.50076205270622, + 35.94212809581594 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 35.94212809581594 + ], + [ + 71.38591936922255, + 36.13677583074439 + ], + [ + 71.27107668573886, + 35.94212809581594 + ], + [ + 71.50076205270622, + 35.94212809581594 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 35.94212809581594 + ], + [ + 71.27107668573886, + 35.94212809581594 + ], + [ + 71.38591936922255, + 35.74748036088749 + ], + [ + 71.50076205270622, + 35.94212809581594 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 35.94212809581594 + ], + [ + 71.38591936922255, + 35.74748036088749 + ], + [ + 71.6156047361899, + 35.74748036088749 + ], + [ + 71.50076205270622, + 35.94212809581594 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 35.94212809581594 + ], + [ + 71.6156047361899, + 35.74748036088749 + ], + [ + 71.73044741967358, + 35.94212809581594 + ], + [ + 71.50076205270622, + 35.94212809581594 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 36.33142356567284 + ], + [ + 71.73044741967358, + 36.33142356567284 + ], + [ + 71.6156047361899, + 36.526071300601295 + ], + [ + 71.50076205270622, + 36.33142356567284 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 36.33142356567284 + ], + [ + 71.6156047361899, + 36.526071300601295 + ], + [ + 71.38591936922255, + 36.526071300601295 + ], + [ + 71.50076205270622, + 36.33142356567284 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 36.33142356567284 + ], + [ + 71.38591936922255, + 36.526071300601295 + ], + [ + 71.27107668573886, + 36.33142356567284 + ], + [ + 71.50076205270622, + 36.33142356567284 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 36.33142356567284 + ], + [ + 71.27107668573886, + 36.33142356567284 + ], + [ + 71.38591936922255, + 36.13677583074439 + ], + [ + 71.50076205270622, + 36.33142356567284 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 36.33142356567284 + ], + [ + 71.38591936922255, + 36.13677583074439 + ], + [ + 71.6156047361899, + 36.13677583074439 + ], + [ + 71.50076205270622, + 36.33142356567284 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 36.33142356567284 + ], + [ + 71.6156047361899, + 36.13677583074439 + ], + [ + 71.73044741967358, + 36.33142356567284 + ], + [ + 71.50076205270622, + 36.33142356567284 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 36.720719035529754 + ], + [ + 71.73044741967358, + 36.720719035529754 + ], + [ + 71.6156047361899, + 36.915366770458206 + ], + [ + 71.50076205270622, + 36.720719035529754 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 36.720719035529754 + ], + [ + 71.6156047361899, + 36.915366770458206 + ], + [ + 71.38591936922255, + 36.915366770458206 + ], + [ + 71.50076205270622, + 36.720719035529754 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 36.720719035529754 + ], + [ + 71.38591936922255, + 36.915366770458206 + ], + [ + 71.27107668573886, + 36.720719035529754 + ], + [ + 71.50076205270622, + 36.720719035529754 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 36.720719035529754 + ], + [ + 71.27107668573886, + 36.720719035529754 + ], + [ + 71.38591936922255, + 36.5260713006013 + ], + [ + 71.50076205270622, + 36.720719035529754 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 36.720719035529754 + ], + [ + 71.38591936922255, + 36.5260713006013 + ], + [ + 71.6156047361899, + 36.5260713006013 + ], + [ + 71.50076205270622, + 36.720719035529754 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 36.720719035529754 + ], + [ + 71.6156047361899, + 36.5260713006013 + ], + [ + 71.73044741967358, + 36.720719035529754 + ], + [ + 71.50076205270622, + 36.720719035529754 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 37.11001450538666 + ], + [ + 71.73044741967358, + 37.11001450538666 + ], + [ + 71.6156047361899, + 37.30466224031511 + ], + [ + 71.50076205270622, + 37.11001450538666 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 37.11001450538666 + ], + [ + 71.6156047361899, + 37.30466224031511 + ], + [ + 71.38591936922255, + 37.30466224031511 + ], + [ + 71.50076205270622, + 37.11001450538666 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 37.11001450538666 + ], + [ + 71.38591936922255, + 37.30466224031511 + ], + [ + 71.27107668573886, + 37.11001450538666 + ], + [ + 71.50076205270622, + 37.11001450538666 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 37.11001450538666 + ], + [ + 71.27107668573886, + 37.11001450538666 + ], + [ + 71.38591936922255, + 36.915366770458206 + ], + [ + 71.50076205270622, + 37.11001450538666 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 37.11001450538666 + ], + [ + 71.38591936922255, + 36.915366770458206 + ], + [ + 71.6156047361899, + 36.915366770458206 + ], + [ + 71.50076205270622, + 37.11001450538666 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 37.11001450538666 + ], + [ + 71.6156047361899, + 36.915366770458206 + ], + [ + 71.73044741967358, + 37.11001450538666 + ], + [ + 71.50076205270622, + 37.11001450538666 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 37.49930997524357 + ], + [ + 71.73044741967358, + 37.49930997524357 + ], + [ + 71.6156047361899, + 37.69395771017202 + ], + [ + 71.50076205270622, + 37.49930997524357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 37.49930997524357 + ], + [ + 71.6156047361899, + 37.69395771017202 + ], + [ + 71.38591936922255, + 37.69395771017202 + ], + [ + 71.50076205270622, + 37.49930997524357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 37.49930997524357 + ], + [ + 71.38591936922255, + 37.69395771017202 + ], + [ + 71.27107668573886, + 37.49930997524357 + ], + [ + 71.50076205270622, + 37.49930997524357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 37.49930997524357 + ], + [ + 71.27107668573886, + 37.49930997524357 + ], + [ + 71.38591936922255, + 37.30466224031512 + ], + [ + 71.50076205270622, + 37.49930997524357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 37.49930997524357 + ], + [ + 71.38591936922255, + 37.30466224031512 + ], + [ + 71.6156047361899, + 37.30466224031512 + ], + [ + 71.50076205270622, + 37.49930997524357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 37.49930997524357 + ], + [ + 71.6156047361899, + 37.30466224031512 + ], + [ + 71.73044741967358, + 37.49930997524357 + ], + [ + 71.50076205270622, + 37.49930997524357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 37.888605445100474 + ], + [ + 71.73044741967358, + 37.888605445100474 + ], + [ + 71.6156047361899, + 38.083253180028926 + ], + [ + 71.50076205270622, + 37.888605445100474 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 37.888605445100474 + ], + [ + 71.6156047361899, + 38.083253180028926 + ], + [ + 71.38591936922255, + 38.083253180028926 + ], + [ + 71.50076205270622, + 37.888605445100474 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 37.888605445100474 + ], + [ + 71.38591936922255, + 38.083253180028926 + ], + [ + 71.27107668573886, + 37.888605445100474 + ], + [ + 71.50076205270622, + 37.888605445100474 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 37.888605445100474 + ], + [ + 71.27107668573886, + 37.888605445100474 + ], + [ + 71.38591936922255, + 37.69395771017202 + ], + [ + 71.50076205270622, + 37.888605445100474 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 37.888605445100474 + ], + [ + 71.38591936922255, + 37.69395771017202 + ], + [ + 71.6156047361899, + 37.69395771017202 + ], + [ + 71.50076205270622, + 37.888605445100474 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 37.888605445100474 + ], + [ + 71.6156047361899, + 37.69395771017202 + ], + [ + 71.73044741967358, + 37.888605445100474 + ], + [ + 71.50076205270622, + 37.888605445100474 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 38.27790091495738 + ], + [ + 71.73044741967358, + 38.27790091495738 + ], + [ + 71.6156047361899, + 38.47254864988583 + ], + [ + 71.50076205270622, + 38.27790091495738 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 38.27790091495738 + ], + [ + 71.6156047361899, + 38.47254864988583 + ], + [ + 71.38591936922255, + 38.47254864988583 + ], + [ + 71.50076205270622, + 38.27790091495738 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 38.27790091495738 + ], + [ + 71.38591936922255, + 38.47254864988583 + ], + [ + 71.27107668573886, + 38.27790091495738 + ], + [ + 71.50076205270622, + 38.27790091495738 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 38.27790091495738 + ], + [ + 71.27107668573886, + 38.27790091495738 + ], + [ + 71.38591936922255, + 38.083253180028926 + ], + [ + 71.50076205270622, + 38.27790091495738 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 38.27790091495738 + ], + [ + 71.38591936922255, + 38.083253180028926 + ], + [ + 71.6156047361899, + 38.083253180028926 + ], + [ + 71.50076205270622, + 38.27790091495738 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 38.27790091495738 + ], + [ + 71.6156047361899, + 38.083253180028926 + ], + [ + 71.73044741967358, + 38.27790091495738 + ], + [ + 71.50076205270622, + 38.27790091495738 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 38.66719638481428 + ], + [ + 71.73044741967358, + 38.66719638481428 + ], + [ + 71.6156047361899, + 38.861844119742734 + ], + [ + 71.50076205270622, + 38.66719638481428 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 38.66719638481428 + ], + [ + 71.6156047361899, + 38.861844119742734 + ], + [ + 71.38591936922255, + 38.861844119742734 + ], + [ + 71.50076205270622, + 38.66719638481428 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 38.66719638481428 + ], + [ + 71.38591936922255, + 38.861844119742734 + ], + [ + 71.27107668573886, + 38.66719638481428 + ], + [ + 71.50076205270622, + 38.66719638481428 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 38.66719638481428 + ], + [ + 71.27107668573886, + 38.66719638481428 + ], + [ + 71.38591936922255, + 38.47254864988583 + ], + [ + 71.50076205270622, + 38.66719638481428 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 38.66719638481428 + ], + [ + 71.38591936922255, + 38.47254864988583 + ], + [ + 71.6156047361899, + 38.47254864988583 + ], + [ + 71.50076205270622, + 38.66719638481428 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 38.66719638481428 + ], + [ + 71.6156047361899, + 38.47254864988583 + ], + [ + 71.73044741967358, + 38.66719638481428 + ], + [ + 71.50076205270622, + 38.66719638481428 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 39.05649185467119 + ], + [ + 71.73044741967358, + 39.05649185467119 + ], + [ + 71.6156047361899, + 39.25113958959964 + ], + [ + 71.50076205270622, + 39.05649185467119 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 39.05649185467119 + ], + [ + 71.6156047361899, + 39.25113958959964 + ], + [ + 71.38591936922255, + 39.25113958959964 + ], + [ + 71.50076205270622, + 39.05649185467119 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 39.05649185467119 + ], + [ + 71.38591936922255, + 39.25113958959964 + ], + [ + 71.27107668573886, + 39.05649185467119 + ], + [ + 71.50076205270622, + 39.05649185467119 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 39.05649185467119 + ], + [ + 71.27107668573886, + 39.05649185467119 + ], + [ + 71.38591936922255, + 38.861844119742734 + ], + [ + 71.50076205270622, + 39.05649185467119 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 39.05649185467119 + ], + [ + 71.38591936922255, + 38.861844119742734 + ], + [ + 71.6156047361899, + 38.861844119742734 + ], + [ + 71.50076205270622, + 39.05649185467119 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 39.05649185467119 + ], + [ + 71.6156047361899, + 38.861844119742734 + ], + [ + 71.73044741967358, + 39.05649185467119 + ], + [ + 71.50076205270622, + 39.05649185467119 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 39.4457873245281 + ], + [ + 71.73044741967358, + 39.4457873245281 + ], + [ + 71.6156047361899, + 39.64043505945655 + ], + [ + 71.50076205270622, + 39.4457873245281 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 39.4457873245281 + ], + [ + 71.6156047361899, + 39.64043505945655 + ], + [ + 71.38591936922255, + 39.64043505945655 + ], + [ + 71.50076205270622, + 39.4457873245281 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 39.4457873245281 + ], + [ + 71.38591936922255, + 39.64043505945655 + ], + [ + 71.27107668573886, + 39.4457873245281 + ], + [ + 71.50076205270622, + 39.4457873245281 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 39.4457873245281 + ], + [ + 71.27107668573886, + 39.4457873245281 + ], + [ + 71.38591936922255, + 39.251139589599646 + ], + [ + 71.50076205270622, + 39.4457873245281 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 39.4457873245281 + ], + [ + 71.38591936922255, + 39.251139589599646 + ], + [ + 71.6156047361899, + 39.251139589599646 + ], + [ + 71.50076205270622, + 39.4457873245281 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 39.4457873245281 + ], + [ + 71.6156047361899, + 39.251139589599646 + ], + [ + 71.73044741967358, + 39.4457873245281 + ], + [ + 71.50076205270622, + 39.4457873245281 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 39.835082794385 + ], + [ + 71.73044741967358, + 39.835082794385 + ], + [ + 71.6156047361899, + 40.029730529313454 + ], + [ + 71.50076205270622, + 39.835082794385 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 39.835082794385 + ], + [ + 71.6156047361899, + 40.029730529313454 + ], + [ + 71.38591936922255, + 40.029730529313454 + ], + [ + 71.50076205270622, + 39.835082794385 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 39.835082794385 + ], + [ + 71.38591936922255, + 40.029730529313454 + ], + [ + 71.27107668573886, + 39.835082794385 + ], + [ + 71.50076205270622, + 39.835082794385 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 39.835082794385 + ], + [ + 71.27107668573886, + 39.835082794385 + ], + [ + 71.38591936922255, + 39.64043505945655 + ], + [ + 71.50076205270622, + 39.835082794385 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 39.835082794385 + ], + [ + 71.38591936922255, + 39.64043505945655 + ], + [ + 71.6156047361899, + 39.64043505945655 + ], + [ + 71.50076205270622, + 39.835082794385 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 39.835082794385 + ], + [ + 71.6156047361899, + 39.64043505945655 + ], + [ + 71.73044741967358, + 39.835082794385 + ], + [ + 71.50076205270622, + 39.835082794385 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 40.22437826424191 + ], + [ + 71.73044741967358, + 40.22437826424191 + ], + [ + 71.6156047361899, + 40.419025999170366 + ], + [ + 71.50076205270622, + 40.22437826424191 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 40.22437826424191 + ], + [ + 71.6156047361899, + 40.419025999170366 + ], + [ + 71.38591936922255, + 40.419025999170366 + ], + [ + 71.50076205270622, + 40.22437826424191 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 40.22437826424191 + ], + [ + 71.38591936922255, + 40.419025999170366 + ], + [ + 71.27107668573886, + 40.22437826424191 + ], + [ + 71.50076205270622, + 40.22437826424191 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 40.22437826424191 + ], + [ + 71.27107668573886, + 40.22437826424191 + ], + [ + 71.38591936922255, + 40.02973052931346 + ], + [ + 71.50076205270622, + 40.22437826424191 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 40.22437826424191 + ], + [ + 71.38591936922255, + 40.02973052931346 + ], + [ + 71.6156047361899, + 40.02973052931346 + ], + [ + 71.50076205270622, + 40.22437826424191 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 40.22437826424191 + ], + [ + 71.6156047361899, + 40.02973052931346 + ], + [ + 71.73044741967358, + 40.22437826424191 + ], + [ + 71.50076205270622, + 40.22437826424191 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 40.61367373409882 + ], + [ + 71.73044741967358, + 40.61367373409882 + ], + [ + 71.6156047361899, + 40.80832146902727 + ], + [ + 71.50076205270622, + 40.61367373409882 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 40.61367373409882 + ], + [ + 71.6156047361899, + 40.80832146902727 + ], + [ + 71.38591936922255, + 40.80832146902727 + ], + [ + 71.50076205270622, + 40.61367373409882 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 40.61367373409882 + ], + [ + 71.38591936922255, + 40.80832146902727 + ], + [ + 71.27107668573886, + 40.61367373409882 + ], + [ + 71.50076205270622, + 40.61367373409882 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 40.61367373409882 + ], + [ + 71.27107668573886, + 40.61367373409882 + ], + [ + 71.38591936922255, + 40.419025999170366 + ], + [ + 71.50076205270622, + 40.61367373409882 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 40.61367373409882 + ], + [ + 71.38591936922255, + 40.419025999170366 + ], + [ + 71.6156047361899, + 40.419025999170366 + ], + [ + 71.50076205270622, + 40.61367373409882 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 40.61367373409882 + ], + [ + 71.6156047361899, + 40.419025999170366 + ], + [ + 71.73044741967358, + 40.61367373409882 + ], + [ + 71.50076205270622, + 40.61367373409882 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 41.00296920395572 + ], + [ + 71.73044741967358, + 41.00296920395572 + ], + [ + 71.6156047361899, + 41.197616938884174 + ], + [ + 71.50076205270622, + 41.00296920395572 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 41.00296920395572 + ], + [ + 71.6156047361899, + 41.197616938884174 + ], + [ + 71.38591936922255, + 41.197616938884174 + ], + [ + 71.50076205270622, + 41.00296920395572 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 41.00296920395572 + ], + [ + 71.38591936922255, + 41.197616938884174 + ], + [ + 71.27107668573886, + 41.00296920395572 + ], + [ + 71.50076205270622, + 41.00296920395572 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 41.00296920395572 + ], + [ + 71.27107668573886, + 41.00296920395572 + ], + [ + 71.38591936922255, + 40.80832146902727 + ], + [ + 71.50076205270622, + 41.00296920395572 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 41.00296920395572 + ], + [ + 71.38591936922255, + 40.80832146902727 + ], + [ + 71.6156047361899, + 40.80832146902727 + ], + [ + 71.50076205270622, + 41.00296920395572 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 41.00296920395572 + ], + [ + 71.6156047361899, + 40.80832146902727 + ], + [ + 71.73044741967358, + 41.00296920395572 + ], + [ + 71.50076205270622, + 41.00296920395572 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 41.392264673812626 + ], + [ + 71.73044741967358, + 41.392264673812626 + ], + [ + 71.6156047361899, + 41.58691240874108 + ], + [ + 71.50076205270622, + 41.392264673812626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 41.392264673812626 + ], + [ + 71.6156047361899, + 41.58691240874108 + ], + [ + 71.38591936922255, + 41.58691240874108 + ], + [ + 71.50076205270622, + 41.392264673812626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 41.392264673812626 + ], + [ + 71.38591936922255, + 41.58691240874108 + ], + [ + 71.27107668573886, + 41.392264673812626 + ], + [ + 71.50076205270622, + 41.392264673812626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 41.392264673812626 + ], + [ + 71.27107668573886, + 41.392264673812626 + ], + [ + 71.38591936922255, + 41.197616938884174 + ], + [ + 71.50076205270622, + 41.392264673812626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 41.392264673812626 + ], + [ + 71.38591936922255, + 41.197616938884174 + ], + [ + 71.6156047361899, + 41.197616938884174 + ], + [ + 71.50076205270622, + 41.392264673812626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 41.392264673812626 + ], + [ + 71.6156047361899, + 41.197616938884174 + ], + [ + 71.73044741967358, + 41.392264673812626 + ], + [ + 71.50076205270622, + 41.392264673812626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 41.78156014366953 + ], + [ + 71.73044741967358, + 41.78156014366953 + ], + [ + 71.6156047361899, + 41.97620787859798 + ], + [ + 71.50076205270622, + 41.78156014366953 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 41.78156014366953 + ], + [ + 71.6156047361899, + 41.97620787859798 + ], + [ + 71.38591936922255, + 41.97620787859798 + ], + [ + 71.50076205270622, + 41.78156014366953 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 41.78156014366953 + ], + [ + 71.38591936922255, + 41.97620787859798 + ], + [ + 71.27107668573886, + 41.78156014366953 + ], + [ + 71.50076205270622, + 41.78156014366953 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 41.78156014366953 + ], + [ + 71.27107668573886, + 41.78156014366953 + ], + [ + 71.38591936922255, + 41.58691240874108 + ], + [ + 71.50076205270622, + 41.78156014366953 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 41.78156014366953 + ], + [ + 71.38591936922255, + 41.58691240874108 + ], + [ + 71.6156047361899, + 41.58691240874108 + ], + [ + 71.50076205270622, + 41.78156014366953 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 41.78156014366953 + ], + [ + 71.6156047361899, + 41.58691240874108 + ], + [ + 71.73044741967358, + 41.78156014366953 + ], + [ + 71.50076205270622, + 41.78156014366953 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 42.17085561352644 + ], + [ + 71.73044741967358, + 42.17085561352644 + ], + [ + 71.6156047361899, + 42.365503348454894 + ], + [ + 71.50076205270622, + 42.17085561352644 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 42.17085561352644 + ], + [ + 71.6156047361899, + 42.365503348454894 + ], + [ + 71.38591936922255, + 42.365503348454894 + ], + [ + 71.50076205270622, + 42.17085561352644 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 42.17085561352644 + ], + [ + 71.38591936922255, + 42.365503348454894 + ], + [ + 71.27107668573886, + 42.17085561352644 + ], + [ + 71.50076205270622, + 42.17085561352644 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 42.17085561352644 + ], + [ + 71.27107668573886, + 42.17085561352644 + ], + [ + 71.38591936922255, + 41.97620787859799 + ], + [ + 71.50076205270622, + 42.17085561352644 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 42.17085561352644 + ], + [ + 71.38591936922255, + 41.97620787859799 + ], + [ + 71.6156047361899, + 41.97620787859799 + ], + [ + 71.50076205270622, + 42.17085561352644 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 42.17085561352644 + ], + [ + 71.6156047361899, + 41.97620787859799 + ], + [ + 71.73044741967358, + 42.17085561352644 + ], + [ + 71.50076205270622, + 42.17085561352644 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 42.56015108338335 + ], + [ + 71.73044741967358, + 42.56015108338335 + ], + [ + 71.6156047361899, + 42.754798818311805 + ], + [ + 71.50076205270622, + 42.56015108338335 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 42.56015108338335 + ], + [ + 71.6156047361899, + 42.754798818311805 + ], + [ + 71.38591936922255, + 42.754798818311805 + ], + [ + 71.50076205270622, + 42.56015108338335 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 42.56015108338335 + ], + [ + 71.38591936922255, + 42.754798818311805 + ], + [ + 71.27107668573886, + 42.56015108338335 + ], + [ + 71.50076205270622, + 42.56015108338335 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 42.56015108338335 + ], + [ + 71.27107668573886, + 42.56015108338335 + ], + [ + 71.38591936922255, + 42.3655033484549 + ], + [ + 71.50076205270622, + 42.56015108338335 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 42.56015108338335 + ], + [ + 71.38591936922255, + 42.3655033484549 + ], + [ + 71.6156047361899, + 42.3655033484549 + ], + [ + 71.50076205270622, + 42.56015108338335 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 42.56015108338335 + ], + [ + 71.6156047361899, + 42.3655033484549 + ], + [ + 71.73044741967358, + 42.56015108338335 + ], + [ + 71.50076205270622, + 42.56015108338335 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 42.94944655324026 + ], + [ + 71.73044741967358, + 42.94944655324026 + ], + [ + 71.6156047361899, + 43.14409428816871 + ], + [ + 71.50076205270622, + 42.94944655324026 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 42.94944655324026 + ], + [ + 71.6156047361899, + 43.14409428816871 + ], + [ + 71.38591936922255, + 43.14409428816871 + ], + [ + 71.50076205270622, + 42.94944655324026 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 42.94944655324026 + ], + [ + 71.38591936922255, + 43.14409428816871 + ], + [ + 71.27107668573886, + 42.94944655324026 + ], + [ + 71.50076205270622, + 42.94944655324026 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 42.94944655324026 + ], + [ + 71.27107668573886, + 42.94944655324026 + ], + [ + 71.38591936922255, + 42.754798818311805 + ], + [ + 71.50076205270622, + 42.94944655324026 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 42.94944655324026 + ], + [ + 71.38591936922255, + 42.754798818311805 + ], + [ + 71.6156047361899, + 42.754798818311805 + ], + [ + 71.50076205270622, + 42.94944655324026 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 42.94944655324026 + ], + [ + 71.6156047361899, + 42.754798818311805 + ], + [ + 71.73044741967358, + 42.94944655324026 + ], + [ + 71.50076205270622, + 42.94944655324026 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 43.33874202309716 + ], + [ + 71.73044741967358, + 43.33874202309716 + ], + [ + 71.6156047361899, + 43.53338975802561 + ], + [ + 71.50076205270622, + 43.33874202309716 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 43.33874202309716 + ], + [ + 71.6156047361899, + 43.53338975802561 + ], + [ + 71.38591936922255, + 43.53338975802561 + ], + [ + 71.50076205270622, + 43.33874202309716 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 43.33874202309716 + ], + [ + 71.38591936922255, + 43.53338975802561 + ], + [ + 71.27107668573886, + 43.33874202309716 + ], + [ + 71.50076205270622, + 43.33874202309716 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 43.33874202309716 + ], + [ + 71.27107668573886, + 43.33874202309716 + ], + [ + 71.38591936922255, + 43.14409428816871 + ], + [ + 71.50076205270622, + 43.33874202309716 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 43.33874202309716 + ], + [ + 71.38591936922255, + 43.14409428816871 + ], + [ + 71.6156047361899, + 43.14409428816871 + ], + [ + 71.50076205270622, + 43.33874202309716 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 43.33874202309716 + ], + [ + 71.6156047361899, + 43.14409428816871 + ], + [ + 71.73044741967358, + 43.33874202309716 + ], + [ + 71.50076205270622, + 43.33874202309716 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 43.728037492954066 + ], + [ + 71.73044741967358, + 43.728037492954066 + ], + [ + 71.6156047361899, + 43.92268522788252 + ], + [ + 71.50076205270622, + 43.728037492954066 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 43.728037492954066 + ], + [ + 71.6156047361899, + 43.92268522788252 + ], + [ + 71.38591936922255, + 43.92268522788252 + ], + [ + 71.50076205270622, + 43.728037492954066 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 43.728037492954066 + ], + [ + 71.38591936922255, + 43.92268522788252 + ], + [ + 71.27107668573886, + 43.728037492954066 + ], + [ + 71.50076205270622, + 43.728037492954066 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 43.728037492954066 + ], + [ + 71.27107668573886, + 43.728037492954066 + ], + [ + 71.38591936922255, + 43.53338975802561 + ], + [ + 71.50076205270622, + 43.728037492954066 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 43.728037492954066 + ], + [ + 71.38591936922255, + 43.53338975802561 + ], + [ + 71.6156047361899, + 43.53338975802561 + ], + [ + 71.50076205270622, + 43.728037492954066 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 43.728037492954066 + ], + [ + 71.6156047361899, + 43.53338975802561 + ], + [ + 71.73044741967358, + 43.728037492954066 + ], + [ + 71.50076205270622, + 43.728037492954066 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 44.11733296281097 + ], + [ + 71.73044741967358, + 44.11733296281097 + ], + [ + 71.6156047361899, + 44.31198069773942 + ], + [ + 71.50076205270622, + 44.11733296281097 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 44.11733296281097 + ], + [ + 71.6156047361899, + 44.31198069773942 + ], + [ + 71.38591936922255, + 44.31198069773942 + ], + [ + 71.50076205270622, + 44.11733296281097 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 44.11733296281097 + ], + [ + 71.38591936922255, + 44.31198069773942 + ], + [ + 71.27107668573886, + 44.11733296281097 + ], + [ + 71.50076205270622, + 44.11733296281097 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 44.11733296281097 + ], + [ + 71.27107668573886, + 44.11733296281097 + ], + [ + 71.38591936922255, + 43.92268522788252 + ], + [ + 71.50076205270622, + 44.11733296281097 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 44.11733296281097 + ], + [ + 71.38591936922255, + 43.92268522788252 + ], + [ + 71.6156047361899, + 43.92268522788252 + ], + [ + 71.50076205270622, + 44.11733296281097 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 44.11733296281097 + ], + [ + 71.6156047361899, + 43.92268522788252 + ], + [ + 71.73044741967358, + 44.11733296281097 + ], + [ + 71.50076205270622, + 44.11733296281097 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 44.506628432667874 + ], + [ + 71.73044741967358, + 44.506628432667874 + ], + [ + 71.6156047361899, + 44.701276167596326 + ], + [ + 71.50076205270622, + 44.506628432667874 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 44.506628432667874 + ], + [ + 71.6156047361899, + 44.701276167596326 + ], + [ + 71.38591936922255, + 44.701276167596326 + ], + [ + 71.50076205270622, + 44.506628432667874 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 44.506628432667874 + ], + [ + 71.38591936922255, + 44.701276167596326 + ], + [ + 71.27107668573886, + 44.506628432667874 + ], + [ + 71.50076205270622, + 44.506628432667874 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 44.506628432667874 + ], + [ + 71.27107668573886, + 44.506628432667874 + ], + [ + 71.38591936922255, + 44.31198069773942 + ], + [ + 71.50076205270622, + 44.506628432667874 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 44.506628432667874 + ], + [ + 71.38591936922255, + 44.31198069773942 + ], + [ + 71.6156047361899, + 44.31198069773942 + ], + [ + 71.50076205270622, + 44.506628432667874 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 44.506628432667874 + ], + [ + 71.6156047361899, + 44.31198069773942 + ], + [ + 71.73044741967358, + 44.506628432667874 + ], + [ + 71.50076205270622, + 44.506628432667874 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 44.89592390252479 + ], + [ + 71.73044741967358, + 44.89592390252479 + ], + [ + 71.6156047361899, + 45.090571637453245 + ], + [ + 71.50076205270622, + 44.89592390252479 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 44.89592390252479 + ], + [ + 71.6156047361899, + 45.090571637453245 + ], + [ + 71.38591936922255, + 45.090571637453245 + ], + [ + 71.50076205270622, + 44.89592390252479 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 44.89592390252479 + ], + [ + 71.38591936922255, + 45.090571637453245 + ], + [ + 71.27107668573886, + 44.89592390252479 + ], + [ + 71.50076205270622, + 44.89592390252479 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 44.89592390252479 + ], + [ + 71.27107668573886, + 44.89592390252479 + ], + [ + 71.38591936922255, + 44.70127616759634 + ], + [ + 71.50076205270622, + 44.89592390252479 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 44.89592390252479 + ], + [ + 71.38591936922255, + 44.70127616759634 + ], + [ + 71.6156047361899, + 44.70127616759634 + ], + [ + 71.50076205270622, + 44.89592390252479 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 44.89592390252479 + ], + [ + 71.6156047361899, + 44.70127616759634 + ], + [ + 71.73044741967358, + 44.89592390252479 + ], + [ + 71.50076205270622, + 44.89592390252479 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 45.2852193723817 + ], + [ + 71.73044741967358, + 45.2852193723817 + ], + [ + 71.6156047361899, + 45.47986710731015 + ], + [ + 71.50076205270622, + 45.2852193723817 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 45.2852193723817 + ], + [ + 71.6156047361899, + 45.47986710731015 + ], + [ + 71.38591936922255, + 45.47986710731015 + ], + [ + 71.50076205270622, + 45.2852193723817 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 45.2852193723817 + ], + [ + 71.38591936922255, + 45.47986710731015 + ], + [ + 71.27107668573886, + 45.2852193723817 + ], + [ + 71.50076205270622, + 45.2852193723817 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 45.2852193723817 + ], + [ + 71.27107668573886, + 45.2852193723817 + ], + [ + 71.38591936922255, + 45.090571637453245 + ], + [ + 71.50076205270622, + 45.2852193723817 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 45.2852193723817 + ], + [ + 71.38591936922255, + 45.090571637453245 + ], + [ + 71.6156047361899, + 45.090571637453245 + ], + [ + 71.50076205270622, + 45.2852193723817 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 45.2852193723817 + ], + [ + 71.6156047361899, + 45.090571637453245 + ], + [ + 71.73044741967358, + 45.2852193723817 + ], + [ + 71.50076205270622, + 45.2852193723817 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 45.6745148422386 + ], + [ + 71.73044741967358, + 45.6745148422386 + ], + [ + 71.6156047361899, + 45.86916257716705 + ], + [ + 71.50076205270622, + 45.6745148422386 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 45.6745148422386 + ], + [ + 71.6156047361899, + 45.86916257716705 + ], + [ + 71.38591936922255, + 45.86916257716705 + ], + [ + 71.50076205270622, + 45.6745148422386 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 45.6745148422386 + ], + [ + 71.38591936922255, + 45.86916257716705 + ], + [ + 71.27107668573886, + 45.6745148422386 + ], + [ + 71.50076205270622, + 45.6745148422386 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 45.6745148422386 + ], + [ + 71.27107668573886, + 45.6745148422386 + ], + [ + 71.38591936922255, + 45.47986710731015 + ], + [ + 71.50076205270622, + 45.6745148422386 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 45.6745148422386 + ], + [ + 71.38591936922255, + 45.47986710731015 + ], + [ + 71.6156047361899, + 45.47986710731015 + ], + [ + 71.50076205270622, + 45.6745148422386 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 45.6745148422386 + ], + [ + 71.6156047361899, + 45.47986710731015 + ], + [ + 71.73044741967358, + 45.6745148422386 + ], + [ + 71.50076205270622, + 45.6745148422386 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 46.063810312095505 + ], + [ + 71.73044741967358, + 46.063810312095505 + ], + [ + 71.6156047361899, + 46.25845804702396 + ], + [ + 71.50076205270622, + 46.063810312095505 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 46.063810312095505 + ], + [ + 71.6156047361899, + 46.25845804702396 + ], + [ + 71.38591936922255, + 46.25845804702396 + ], + [ + 71.50076205270622, + 46.063810312095505 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 46.063810312095505 + ], + [ + 71.38591936922255, + 46.25845804702396 + ], + [ + 71.27107668573886, + 46.063810312095505 + ], + [ + 71.50076205270622, + 46.063810312095505 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 46.063810312095505 + ], + [ + 71.27107668573886, + 46.063810312095505 + ], + [ + 71.38591936922255, + 45.86916257716705 + ], + [ + 71.50076205270622, + 46.063810312095505 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 46.063810312095505 + ], + [ + 71.38591936922255, + 45.86916257716705 + ], + [ + 71.6156047361899, + 45.86916257716705 + ], + [ + 71.50076205270622, + 46.063810312095505 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 46.063810312095505 + ], + [ + 71.6156047361899, + 45.86916257716705 + ], + [ + 71.73044741967358, + 46.063810312095505 + ], + [ + 71.50076205270622, + 46.063810312095505 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 46.45310578195241 + ], + [ + 71.73044741967358, + 46.45310578195241 + ], + [ + 71.6156047361899, + 46.64775351688086 + ], + [ + 71.50076205270622, + 46.45310578195241 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 46.45310578195241 + ], + [ + 71.6156047361899, + 46.64775351688086 + ], + [ + 71.38591936922255, + 46.64775351688086 + ], + [ + 71.50076205270622, + 46.45310578195241 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 46.45310578195241 + ], + [ + 71.38591936922255, + 46.64775351688086 + ], + [ + 71.27107668573886, + 46.45310578195241 + ], + [ + 71.50076205270622, + 46.45310578195241 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 46.45310578195241 + ], + [ + 71.27107668573886, + 46.45310578195241 + ], + [ + 71.38591936922255, + 46.25845804702396 + ], + [ + 71.50076205270622, + 46.45310578195241 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 46.45310578195241 + ], + [ + 71.38591936922255, + 46.25845804702396 + ], + [ + 71.6156047361899, + 46.25845804702396 + ], + [ + 71.50076205270622, + 46.45310578195241 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 46.45310578195241 + ], + [ + 71.6156047361899, + 46.25845804702396 + ], + [ + 71.73044741967358, + 46.45310578195241 + ], + [ + 71.50076205270622, + 46.45310578195241 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 46.842401251809314 + ], + [ + 71.73044741967358, + 46.842401251809314 + ], + [ + 71.6156047361899, + 47.037048986737766 + ], + [ + 71.50076205270622, + 46.842401251809314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 46.842401251809314 + ], + [ + 71.6156047361899, + 47.037048986737766 + ], + [ + 71.38591936922255, + 47.037048986737766 + ], + [ + 71.50076205270622, + 46.842401251809314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 46.842401251809314 + ], + [ + 71.38591936922255, + 47.037048986737766 + ], + [ + 71.27107668573886, + 46.842401251809314 + ], + [ + 71.50076205270622, + 46.842401251809314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 46.842401251809314 + ], + [ + 71.27107668573886, + 46.842401251809314 + ], + [ + 71.38591936922255, + 46.64775351688086 + ], + [ + 71.50076205270622, + 46.842401251809314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 46.842401251809314 + ], + [ + 71.38591936922255, + 46.64775351688086 + ], + [ + 71.6156047361899, + 46.64775351688086 + ], + [ + 71.50076205270622, + 46.842401251809314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 46.842401251809314 + ], + [ + 71.6156047361899, + 46.64775351688086 + ], + [ + 71.73044741967358, + 46.842401251809314 + ], + [ + 71.50076205270622, + 46.842401251809314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 47.23169672166622 + ], + [ + 71.73044741967358, + 47.23169672166622 + ], + [ + 71.6156047361899, + 47.42634445659467 + ], + [ + 71.50076205270622, + 47.23169672166622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 47.23169672166622 + ], + [ + 71.6156047361899, + 47.42634445659467 + ], + [ + 71.38591936922255, + 47.42634445659467 + ], + [ + 71.50076205270622, + 47.23169672166622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 47.23169672166622 + ], + [ + 71.38591936922255, + 47.42634445659467 + ], + [ + 71.27107668573886, + 47.23169672166622 + ], + [ + 71.50076205270622, + 47.23169672166622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 47.23169672166622 + ], + [ + 71.27107668573886, + 47.23169672166622 + ], + [ + 71.38591936922255, + 47.037048986737766 + ], + [ + 71.50076205270622, + 47.23169672166622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 47.23169672166622 + ], + [ + 71.38591936922255, + 47.037048986737766 + ], + [ + 71.6156047361899, + 47.037048986737766 + ], + [ + 71.50076205270622, + 47.23169672166622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 47.23169672166622 + ], + [ + 71.6156047361899, + 47.037048986737766 + ], + [ + 71.73044741967358, + 47.23169672166622 + ], + [ + 71.50076205270622, + 47.23169672166622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 47.620992191523136 + ], + [ + 71.73044741967358, + 47.620992191523136 + ], + [ + 71.6156047361899, + 47.81563992645159 + ], + [ + 71.50076205270622, + 47.620992191523136 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 47.620992191523136 + ], + [ + 71.6156047361899, + 47.81563992645159 + ], + [ + 71.38591936922255, + 47.81563992645159 + ], + [ + 71.50076205270622, + 47.620992191523136 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 47.620992191523136 + ], + [ + 71.38591936922255, + 47.81563992645159 + ], + [ + 71.27107668573886, + 47.620992191523136 + ], + [ + 71.50076205270622, + 47.620992191523136 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 47.620992191523136 + ], + [ + 71.27107668573886, + 47.620992191523136 + ], + [ + 71.38591936922255, + 47.426344456594684 + ], + [ + 71.50076205270622, + 47.620992191523136 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 47.620992191523136 + ], + [ + 71.38591936922255, + 47.426344456594684 + ], + [ + 71.6156047361899, + 47.426344456594684 + ], + [ + 71.50076205270622, + 47.620992191523136 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.50076205270622, + 47.620992191523136 + ], + [ + 71.6156047361899, + 47.426344456594684 + ], + [ + 71.73044741967358, + 47.620992191523136 + ], + [ + 71.50076205270622, + 47.620992191523136 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 12.0004566996162 + ], + [ + 72.07497547012463, + 12.0004566996162 + ], + [ + 71.96013278664094, + 12.195104434544653 + ], + [ + 71.84529010315727, + 12.0004566996162 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 12.0004566996162 + ], + [ + 71.96013278664094, + 12.195104434544653 + ], + [ + 71.7304474196736, + 12.195104434544653 + ], + [ + 71.84529010315727, + 12.0004566996162 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 12.0004566996162 + ], + [ + 71.7304474196736, + 12.195104434544653 + ], + [ + 71.61560473618991, + 12.0004566996162 + ], + [ + 71.84529010315727, + 12.0004566996162 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 12.0004566996162 + ], + [ + 71.61560473618991, + 12.0004566996162 + ], + [ + 71.7304474196736, + 11.805808964687746 + ], + [ + 71.84529010315727, + 12.0004566996162 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 12.0004566996162 + ], + [ + 71.7304474196736, + 11.805808964687746 + ], + [ + 71.96013278664094, + 11.805808964687746 + ], + [ + 71.84529010315727, + 12.0004566996162 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 12.0004566996162 + ], + [ + 71.96013278664094, + 11.805808964687746 + ], + [ + 72.07497547012463, + 12.0004566996162 + ], + [ + 71.84529010315727, + 12.0004566996162 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 12.389752169473105 + ], + [ + 72.07497547012463, + 12.389752169473105 + ], + [ + 71.96013278664094, + 12.58439990440156 + ], + [ + 71.84529010315727, + 12.389752169473105 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 12.389752169473105 + ], + [ + 71.96013278664094, + 12.58439990440156 + ], + [ + 71.7304474196736, + 12.58439990440156 + ], + [ + 71.84529010315727, + 12.389752169473105 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 12.389752169473105 + ], + [ + 71.7304474196736, + 12.58439990440156 + ], + [ + 71.61560473618991, + 12.389752169473105 + ], + [ + 71.84529010315727, + 12.389752169473105 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 12.389752169473105 + ], + [ + 71.61560473618991, + 12.389752169473105 + ], + [ + 71.7304474196736, + 12.195104434544652 + ], + [ + 71.84529010315727, + 12.389752169473105 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 12.389752169473105 + ], + [ + 71.7304474196736, + 12.195104434544652 + ], + [ + 71.96013278664094, + 12.195104434544652 + ], + [ + 71.84529010315727, + 12.389752169473105 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 12.389752169473105 + ], + [ + 71.96013278664094, + 12.195104434544652 + ], + [ + 72.07497547012463, + 12.389752169473105 + ], + [ + 71.84529010315727, + 12.389752169473105 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 12.779047639330013 + ], + [ + 72.07497547012463, + 12.779047639330013 + ], + [ + 71.96013278664094, + 12.973695374258467 + ], + [ + 71.84529010315727, + 12.779047639330013 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 12.779047639330013 + ], + [ + 71.96013278664094, + 12.973695374258467 + ], + [ + 71.7304474196736, + 12.973695374258467 + ], + [ + 71.84529010315727, + 12.779047639330013 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 12.779047639330013 + ], + [ + 71.7304474196736, + 12.973695374258467 + ], + [ + 71.61560473618991, + 12.779047639330013 + ], + [ + 71.84529010315727, + 12.779047639330013 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 12.779047639330013 + ], + [ + 71.61560473618991, + 12.779047639330013 + ], + [ + 71.7304474196736, + 12.58439990440156 + ], + [ + 71.84529010315727, + 12.779047639330013 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 12.779047639330013 + ], + [ + 71.7304474196736, + 12.58439990440156 + ], + [ + 71.96013278664094, + 12.58439990440156 + ], + [ + 71.84529010315727, + 12.779047639330013 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 12.779047639330013 + ], + [ + 71.96013278664094, + 12.58439990440156 + ], + [ + 72.07497547012463, + 12.779047639330013 + ], + [ + 71.84529010315727, + 12.779047639330013 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 13.16834310918692 + ], + [ + 72.07497547012463, + 13.16834310918692 + ], + [ + 71.96013278664094, + 13.362990844115373 + ], + [ + 71.84529010315727, + 13.16834310918692 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 13.16834310918692 + ], + [ + 71.96013278664094, + 13.362990844115373 + ], + [ + 71.7304474196736, + 13.362990844115373 + ], + [ + 71.84529010315727, + 13.16834310918692 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 13.16834310918692 + ], + [ + 71.7304474196736, + 13.362990844115373 + ], + [ + 71.61560473618991, + 13.16834310918692 + ], + [ + 71.84529010315727, + 13.16834310918692 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 13.16834310918692 + ], + [ + 71.61560473618991, + 13.16834310918692 + ], + [ + 71.7304474196736, + 12.973695374258465 + ], + [ + 71.84529010315727, + 13.16834310918692 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 13.16834310918692 + ], + [ + 71.7304474196736, + 12.973695374258465 + ], + [ + 71.96013278664094, + 12.973695374258465 + ], + [ + 71.84529010315727, + 13.16834310918692 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 13.16834310918692 + ], + [ + 71.96013278664094, + 12.973695374258465 + ], + [ + 72.07497547012463, + 13.16834310918692 + ], + [ + 71.84529010315727, + 13.16834310918692 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 13.557638579043825 + ], + [ + 72.07497547012463, + 13.557638579043825 + ], + [ + 71.96013278664094, + 13.752286313972279 + ], + [ + 71.84529010315727, + 13.557638579043825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 13.557638579043825 + ], + [ + 71.96013278664094, + 13.752286313972279 + ], + [ + 71.7304474196736, + 13.752286313972279 + ], + [ + 71.84529010315727, + 13.557638579043825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 13.557638579043825 + ], + [ + 71.7304474196736, + 13.752286313972279 + ], + [ + 71.61560473618991, + 13.557638579043825 + ], + [ + 71.84529010315727, + 13.557638579043825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 13.557638579043825 + ], + [ + 71.61560473618991, + 13.557638579043825 + ], + [ + 71.7304474196736, + 13.362990844115371 + ], + [ + 71.84529010315727, + 13.557638579043825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 13.557638579043825 + ], + [ + 71.7304474196736, + 13.362990844115371 + ], + [ + 71.96013278664094, + 13.362990844115371 + ], + [ + 71.84529010315727, + 13.557638579043825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 13.557638579043825 + ], + [ + 71.96013278664094, + 13.362990844115371 + ], + [ + 72.07497547012463, + 13.557638579043825 + ], + [ + 71.84529010315727, + 13.557638579043825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 13.946934048900731 + ], + [ + 72.07497547012463, + 13.946934048900731 + ], + [ + 71.96013278664094, + 14.141581783829185 + ], + [ + 71.84529010315727, + 13.946934048900731 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 13.946934048900731 + ], + [ + 71.96013278664094, + 14.141581783829185 + ], + [ + 71.7304474196736, + 14.141581783829185 + ], + [ + 71.84529010315727, + 13.946934048900731 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 13.946934048900731 + ], + [ + 71.7304474196736, + 14.141581783829185 + ], + [ + 71.61560473618991, + 13.946934048900731 + ], + [ + 71.84529010315727, + 13.946934048900731 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 13.946934048900731 + ], + [ + 71.61560473618991, + 13.946934048900731 + ], + [ + 71.7304474196736, + 13.752286313972277 + ], + [ + 71.84529010315727, + 13.946934048900731 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 13.946934048900731 + ], + [ + 71.7304474196736, + 13.752286313972277 + ], + [ + 71.96013278664094, + 13.752286313972277 + ], + [ + 71.84529010315727, + 13.946934048900731 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 13.946934048900731 + ], + [ + 71.96013278664094, + 13.752286313972277 + ], + [ + 72.07497547012463, + 13.946934048900731 + ], + [ + 71.84529010315727, + 13.946934048900731 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 14.336229518757637 + ], + [ + 72.07497547012463, + 14.336229518757637 + ], + [ + 71.96013278664094, + 14.530877253686091 + ], + [ + 71.84529010315727, + 14.336229518757637 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 14.336229518757637 + ], + [ + 71.96013278664094, + 14.530877253686091 + ], + [ + 71.7304474196736, + 14.530877253686091 + ], + [ + 71.84529010315727, + 14.336229518757637 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 14.336229518757637 + ], + [ + 71.7304474196736, + 14.530877253686091 + ], + [ + 71.61560473618991, + 14.336229518757637 + ], + [ + 71.84529010315727, + 14.336229518757637 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 14.336229518757637 + ], + [ + 71.61560473618991, + 14.336229518757637 + ], + [ + 71.7304474196736, + 14.141581783829183 + ], + [ + 71.84529010315727, + 14.336229518757637 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 14.336229518757637 + ], + [ + 71.7304474196736, + 14.141581783829183 + ], + [ + 71.96013278664094, + 14.141581783829183 + ], + [ + 71.84529010315727, + 14.336229518757637 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 14.336229518757637 + ], + [ + 71.96013278664094, + 14.141581783829183 + ], + [ + 72.07497547012463, + 14.336229518757637 + ], + [ + 71.84529010315727, + 14.336229518757637 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 14.725524988614545 + ], + [ + 72.07497547012463, + 14.725524988614545 + ], + [ + 71.96013278664094, + 14.920172723542999 + ], + [ + 71.84529010315727, + 14.725524988614545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 14.725524988614545 + ], + [ + 71.96013278664094, + 14.920172723542999 + ], + [ + 71.7304474196736, + 14.920172723542999 + ], + [ + 71.84529010315727, + 14.725524988614545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 14.725524988614545 + ], + [ + 71.7304474196736, + 14.920172723542999 + ], + [ + 71.61560473618991, + 14.725524988614545 + ], + [ + 71.84529010315727, + 14.725524988614545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 14.725524988614545 + ], + [ + 71.61560473618991, + 14.725524988614545 + ], + [ + 71.7304474196736, + 14.530877253686091 + ], + [ + 71.84529010315727, + 14.725524988614545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 14.725524988614545 + ], + [ + 71.7304474196736, + 14.530877253686091 + ], + [ + 71.96013278664094, + 14.530877253686091 + ], + [ + 71.84529010315727, + 14.725524988614545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 14.725524988614545 + ], + [ + 71.96013278664094, + 14.530877253686091 + ], + [ + 72.07497547012463, + 14.725524988614545 + ], + [ + 71.84529010315727, + 14.725524988614545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 15.114820458471451 + ], + [ + 72.07497547012463, + 15.114820458471451 + ], + [ + 71.96013278664094, + 15.309468193399905 + ], + [ + 71.84529010315727, + 15.114820458471451 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 15.114820458471451 + ], + [ + 71.96013278664094, + 15.309468193399905 + ], + [ + 71.7304474196736, + 15.309468193399905 + ], + [ + 71.84529010315727, + 15.114820458471451 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 15.114820458471451 + ], + [ + 71.7304474196736, + 15.309468193399905 + ], + [ + 71.61560473618991, + 15.114820458471451 + ], + [ + 71.84529010315727, + 15.114820458471451 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 15.114820458471451 + ], + [ + 71.61560473618991, + 15.114820458471451 + ], + [ + 71.7304474196736, + 14.920172723542997 + ], + [ + 71.84529010315727, + 15.114820458471451 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 15.114820458471451 + ], + [ + 71.7304474196736, + 14.920172723542997 + ], + [ + 71.96013278664094, + 14.920172723542997 + ], + [ + 71.84529010315727, + 15.114820458471451 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 15.114820458471451 + ], + [ + 71.96013278664094, + 14.920172723542997 + ], + [ + 72.07497547012463, + 15.114820458471451 + ], + [ + 71.84529010315727, + 15.114820458471451 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 15.504115928328357 + ], + [ + 72.07497547012463, + 15.504115928328357 + ], + [ + 71.96013278664094, + 15.69876366325681 + ], + [ + 71.84529010315727, + 15.504115928328357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 15.504115928328357 + ], + [ + 71.96013278664094, + 15.69876366325681 + ], + [ + 71.7304474196736, + 15.69876366325681 + ], + [ + 71.84529010315727, + 15.504115928328357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 15.504115928328357 + ], + [ + 71.7304474196736, + 15.69876366325681 + ], + [ + 71.61560473618991, + 15.504115928328357 + ], + [ + 71.84529010315727, + 15.504115928328357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 15.504115928328357 + ], + [ + 71.61560473618991, + 15.504115928328357 + ], + [ + 71.7304474196736, + 15.309468193399903 + ], + [ + 71.84529010315727, + 15.504115928328357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 15.504115928328357 + ], + [ + 71.7304474196736, + 15.309468193399903 + ], + [ + 71.96013278664094, + 15.309468193399903 + ], + [ + 71.84529010315727, + 15.504115928328357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 15.504115928328357 + ], + [ + 71.96013278664094, + 15.309468193399903 + ], + [ + 72.07497547012463, + 15.504115928328357 + ], + [ + 71.84529010315727, + 15.504115928328357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 15.893411398185265 + ], + [ + 72.07497547012463, + 15.893411398185265 + ], + [ + 71.96013278664094, + 16.088059133113717 + ], + [ + 71.84529010315727, + 15.893411398185265 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 15.893411398185265 + ], + [ + 71.96013278664094, + 16.088059133113717 + ], + [ + 71.7304474196736, + 16.088059133113717 + ], + [ + 71.84529010315727, + 15.893411398185265 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 15.893411398185265 + ], + [ + 71.7304474196736, + 16.088059133113717 + ], + [ + 71.61560473618991, + 15.893411398185265 + ], + [ + 71.84529010315727, + 15.893411398185265 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 15.893411398185265 + ], + [ + 71.61560473618991, + 15.893411398185265 + ], + [ + 71.7304474196736, + 15.69876366325681 + ], + [ + 71.84529010315727, + 15.893411398185265 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 15.893411398185265 + ], + [ + 71.7304474196736, + 15.69876366325681 + ], + [ + 71.96013278664094, + 15.69876366325681 + ], + [ + 71.84529010315727, + 15.893411398185265 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 15.893411398185265 + ], + [ + 71.96013278664094, + 15.69876366325681 + ], + [ + 72.07497547012463, + 15.893411398185265 + ], + [ + 71.84529010315727, + 15.893411398185265 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 16.28270686804217 + ], + [ + 72.07497547012463, + 16.28270686804217 + ], + [ + 71.96013278664094, + 16.47735460297062 + ], + [ + 71.84529010315727, + 16.28270686804217 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 16.28270686804217 + ], + [ + 71.96013278664094, + 16.47735460297062 + ], + [ + 71.7304474196736, + 16.47735460297062 + ], + [ + 71.84529010315727, + 16.28270686804217 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 16.28270686804217 + ], + [ + 71.7304474196736, + 16.47735460297062 + ], + [ + 71.61560473618991, + 16.28270686804217 + ], + [ + 71.84529010315727, + 16.28270686804217 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 16.28270686804217 + ], + [ + 71.61560473618991, + 16.28270686804217 + ], + [ + 71.7304474196736, + 16.088059133113717 + ], + [ + 71.84529010315727, + 16.28270686804217 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 16.28270686804217 + ], + [ + 71.7304474196736, + 16.088059133113717 + ], + [ + 71.96013278664094, + 16.088059133113717 + ], + [ + 71.84529010315727, + 16.28270686804217 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 16.28270686804217 + ], + [ + 71.96013278664094, + 16.088059133113717 + ], + [ + 72.07497547012463, + 16.28270686804217 + ], + [ + 71.84529010315727, + 16.28270686804217 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 16.672002337899077 + ], + [ + 72.07497547012463, + 16.672002337899077 + ], + [ + 71.96013278664094, + 16.86665007282753 + ], + [ + 71.84529010315727, + 16.672002337899077 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 16.672002337899077 + ], + [ + 71.96013278664094, + 16.86665007282753 + ], + [ + 71.7304474196736, + 16.86665007282753 + ], + [ + 71.84529010315727, + 16.672002337899077 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 16.672002337899077 + ], + [ + 71.7304474196736, + 16.86665007282753 + ], + [ + 71.61560473618991, + 16.672002337899077 + ], + [ + 71.84529010315727, + 16.672002337899077 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 16.672002337899077 + ], + [ + 71.61560473618991, + 16.672002337899077 + ], + [ + 71.7304474196736, + 16.477354602970625 + ], + [ + 71.84529010315727, + 16.672002337899077 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 16.672002337899077 + ], + [ + 71.7304474196736, + 16.477354602970625 + ], + [ + 71.96013278664094, + 16.477354602970625 + ], + [ + 71.84529010315727, + 16.672002337899077 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 16.672002337899077 + ], + [ + 71.96013278664094, + 16.477354602970625 + ], + [ + 72.07497547012463, + 16.672002337899077 + ], + [ + 71.84529010315727, + 16.672002337899077 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 17.06129780775598 + ], + [ + 72.07497547012463, + 17.06129780775598 + ], + [ + 71.96013278664094, + 17.255945542684433 + ], + [ + 71.84529010315727, + 17.06129780775598 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 17.06129780775598 + ], + [ + 71.96013278664094, + 17.255945542684433 + ], + [ + 71.7304474196736, + 17.255945542684433 + ], + [ + 71.84529010315727, + 17.06129780775598 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 17.06129780775598 + ], + [ + 71.7304474196736, + 17.255945542684433 + ], + [ + 71.61560473618991, + 17.06129780775598 + ], + [ + 71.84529010315727, + 17.06129780775598 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 17.06129780775598 + ], + [ + 71.61560473618991, + 17.06129780775598 + ], + [ + 71.7304474196736, + 16.86665007282753 + ], + [ + 71.84529010315727, + 17.06129780775598 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 17.06129780775598 + ], + [ + 71.7304474196736, + 16.86665007282753 + ], + [ + 71.96013278664094, + 16.86665007282753 + ], + [ + 71.84529010315727, + 17.06129780775598 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 17.06129780775598 + ], + [ + 71.96013278664094, + 16.86665007282753 + ], + [ + 72.07497547012463, + 17.06129780775598 + ], + [ + 71.84529010315727, + 17.06129780775598 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 17.45059327761289 + ], + [ + 72.07497547012463, + 17.45059327761289 + ], + [ + 71.96013278664094, + 17.64524101254134 + ], + [ + 71.84529010315727, + 17.45059327761289 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 17.45059327761289 + ], + [ + 71.96013278664094, + 17.64524101254134 + ], + [ + 71.7304474196736, + 17.64524101254134 + ], + [ + 71.84529010315727, + 17.45059327761289 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 17.45059327761289 + ], + [ + 71.7304474196736, + 17.64524101254134 + ], + [ + 71.61560473618991, + 17.45059327761289 + ], + [ + 71.84529010315727, + 17.45059327761289 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 17.45059327761289 + ], + [ + 71.61560473618991, + 17.45059327761289 + ], + [ + 71.7304474196736, + 17.255945542684437 + ], + [ + 71.84529010315727, + 17.45059327761289 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 17.45059327761289 + ], + [ + 71.7304474196736, + 17.255945542684437 + ], + [ + 71.96013278664094, + 17.255945542684437 + ], + [ + 71.84529010315727, + 17.45059327761289 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 17.45059327761289 + ], + [ + 71.96013278664094, + 17.255945542684437 + ], + [ + 72.07497547012463, + 17.45059327761289 + ], + [ + 71.84529010315727, + 17.45059327761289 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 17.839888747469793 + ], + [ + 72.07497547012463, + 17.839888747469793 + ], + [ + 71.96013278664094, + 18.034536482398245 + ], + [ + 71.84529010315727, + 17.839888747469793 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 17.839888747469793 + ], + [ + 71.96013278664094, + 18.034536482398245 + ], + [ + 71.7304474196736, + 18.034536482398245 + ], + [ + 71.84529010315727, + 17.839888747469793 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 17.839888747469793 + ], + [ + 71.7304474196736, + 18.034536482398245 + ], + [ + 71.61560473618991, + 17.839888747469793 + ], + [ + 71.84529010315727, + 17.839888747469793 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 17.839888747469793 + ], + [ + 71.61560473618991, + 17.839888747469793 + ], + [ + 71.7304474196736, + 17.64524101254134 + ], + [ + 71.84529010315727, + 17.839888747469793 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 17.839888747469793 + ], + [ + 71.7304474196736, + 17.64524101254134 + ], + [ + 71.96013278664094, + 17.64524101254134 + ], + [ + 71.84529010315727, + 17.839888747469793 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 17.839888747469793 + ], + [ + 71.96013278664094, + 17.64524101254134 + ], + [ + 72.07497547012463, + 17.839888747469793 + ], + [ + 71.84529010315727, + 17.839888747469793 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 18.2291842173267 + ], + [ + 72.07497547012463, + 18.2291842173267 + ], + [ + 71.96013278664094, + 18.423831952255153 + ], + [ + 71.84529010315727, + 18.2291842173267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 18.2291842173267 + ], + [ + 71.96013278664094, + 18.423831952255153 + ], + [ + 71.7304474196736, + 18.423831952255153 + ], + [ + 71.84529010315727, + 18.2291842173267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 18.2291842173267 + ], + [ + 71.7304474196736, + 18.423831952255153 + ], + [ + 71.61560473618991, + 18.2291842173267 + ], + [ + 71.84529010315727, + 18.2291842173267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 18.2291842173267 + ], + [ + 71.61560473618991, + 18.2291842173267 + ], + [ + 71.7304474196736, + 18.03453648239825 + ], + [ + 71.84529010315727, + 18.2291842173267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 18.2291842173267 + ], + [ + 71.7304474196736, + 18.03453648239825 + ], + [ + 71.96013278664094, + 18.03453648239825 + ], + [ + 71.84529010315727, + 18.2291842173267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 18.2291842173267 + ], + [ + 71.96013278664094, + 18.03453648239825 + ], + [ + 72.07497547012463, + 18.2291842173267 + ], + [ + 71.84529010315727, + 18.2291842173267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 18.61847968718361 + ], + [ + 72.07497547012463, + 18.61847968718361 + ], + [ + 71.96013278664094, + 18.81312742211206 + ], + [ + 71.84529010315727, + 18.61847968718361 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 18.61847968718361 + ], + [ + 71.96013278664094, + 18.81312742211206 + ], + [ + 71.7304474196736, + 18.81312742211206 + ], + [ + 71.84529010315727, + 18.61847968718361 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 18.61847968718361 + ], + [ + 71.7304474196736, + 18.81312742211206 + ], + [ + 71.61560473618991, + 18.61847968718361 + ], + [ + 71.84529010315727, + 18.61847968718361 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 18.61847968718361 + ], + [ + 71.61560473618991, + 18.61847968718361 + ], + [ + 71.7304474196736, + 18.423831952255156 + ], + [ + 71.84529010315727, + 18.61847968718361 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 18.61847968718361 + ], + [ + 71.7304474196736, + 18.423831952255156 + ], + [ + 71.96013278664094, + 18.423831952255156 + ], + [ + 71.84529010315727, + 18.61847968718361 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 18.61847968718361 + ], + [ + 71.96013278664094, + 18.423831952255156 + ], + [ + 72.07497547012463, + 18.61847968718361 + ], + [ + 71.84529010315727, + 18.61847968718361 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 19.007775157040513 + ], + [ + 72.07497547012463, + 19.007775157040513 + ], + [ + 71.96013278664094, + 19.202422891968965 + ], + [ + 71.84529010315727, + 19.007775157040513 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 19.007775157040513 + ], + [ + 71.96013278664094, + 19.202422891968965 + ], + [ + 71.7304474196736, + 19.202422891968965 + ], + [ + 71.84529010315727, + 19.007775157040513 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 19.007775157040513 + ], + [ + 71.7304474196736, + 19.202422891968965 + ], + [ + 71.61560473618991, + 19.007775157040513 + ], + [ + 71.84529010315727, + 19.007775157040513 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 19.007775157040513 + ], + [ + 71.61560473618991, + 19.007775157040513 + ], + [ + 71.7304474196736, + 18.81312742211206 + ], + [ + 71.84529010315727, + 19.007775157040513 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 19.007775157040513 + ], + [ + 71.7304474196736, + 18.81312742211206 + ], + [ + 71.96013278664094, + 18.81312742211206 + ], + [ + 71.84529010315727, + 19.007775157040513 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 19.007775157040513 + ], + [ + 71.96013278664094, + 18.81312742211206 + ], + [ + 72.07497547012463, + 19.007775157040513 + ], + [ + 71.84529010315727, + 19.007775157040513 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 19.39707062689742 + ], + [ + 72.07497547012463, + 19.39707062689742 + ], + [ + 71.96013278664094, + 19.591718361825873 + ], + [ + 71.84529010315727, + 19.39707062689742 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 19.39707062689742 + ], + [ + 71.96013278664094, + 19.591718361825873 + ], + [ + 71.7304474196736, + 19.591718361825873 + ], + [ + 71.84529010315727, + 19.39707062689742 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 19.39707062689742 + ], + [ + 71.7304474196736, + 19.591718361825873 + ], + [ + 71.61560473618991, + 19.39707062689742 + ], + [ + 71.84529010315727, + 19.39707062689742 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 19.39707062689742 + ], + [ + 71.61560473618991, + 19.39707062689742 + ], + [ + 71.7304474196736, + 19.20242289196897 + ], + [ + 71.84529010315727, + 19.39707062689742 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 19.39707062689742 + ], + [ + 71.7304474196736, + 19.20242289196897 + ], + [ + 71.96013278664094, + 19.20242289196897 + ], + [ + 71.84529010315727, + 19.39707062689742 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 19.39707062689742 + ], + [ + 71.96013278664094, + 19.20242289196897 + ], + [ + 72.07497547012463, + 19.39707062689742 + ], + [ + 71.84529010315727, + 19.39707062689742 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 19.78636609675433 + ], + [ + 72.07497547012463, + 19.78636609675433 + ], + [ + 71.96013278664094, + 19.98101383168278 + ], + [ + 71.84529010315727, + 19.78636609675433 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 19.78636609675433 + ], + [ + 71.96013278664094, + 19.98101383168278 + ], + [ + 71.7304474196736, + 19.98101383168278 + ], + [ + 71.84529010315727, + 19.78636609675433 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 19.78636609675433 + ], + [ + 71.7304474196736, + 19.98101383168278 + ], + [ + 71.61560473618991, + 19.78636609675433 + ], + [ + 71.84529010315727, + 19.78636609675433 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 19.78636609675433 + ], + [ + 71.61560473618991, + 19.78636609675433 + ], + [ + 71.7304474196736, + 19.591718361825876 + ], + [ + 71.84529010315727, + 19.78636609675433 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 19.78636609675433 + ], + [ + 71.7304474196736, + 19.591718361825876 + ], + [ + 71.96013278664094, + 19.591718361825876 + ], + [ + 71.84529010315727, + 19.78636609675433 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 19.78636609675433 + ], + [ + 71.96013278664094, + 19.591718361825876 + ], + [ + 72.07497547012463, + 19.78636609675433 + ], + [ + 71.84529010315727, + 19.78636609675433 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 20.175661566611232 + ], + [ + 72.07497547012463, + 20.175661566611232 + ], + [ + 71.96013278664094, + 20.370309301539685 + ], + [ + 71.84529010315727, + 20.175661566611232 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 20.175661566611232 + ], + [ + 71.96013278664094, + 20.370309301539685 + ], + [ + 71.7304474196736, + 20.370309301539685 + ], + [ + 71.84529010315727, + 20.175661566611232 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 20.175661566611232 + ], + [ + 71.7304474196736, + 20.370309301539685 + ], + [ + 71.61560473618991, + 20.175661566611232 + ], + [ + 71.84529010315727, + 20.175661566611232 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 20.175661566611232 + ], + [ + 71.61560473618991, + 20.175661566611232 + ], + [ + 71.7304474196736, + 19.98101383168278 + ], + [ + 71.84529010315727, + 20.175661566611232 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 20.175661566611232 + ], + [ + 71.7304474196736, + 19.98101383168278 + ], + [ + 71.96013278664094, + 19.98101383168278 + ], + [ + 71.84529010315727, + 20.175661566611232 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 20.175661566611232 + ], + [ + 71.96013278664094, + 19.98101383168278 + ], + [ + 72.07497547012463, + 20.175661566611232 + ], + [ + 71.84529010315727, + 20.175661566611232 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 20.564957036468137 + ], + [ + 72.07497547012463, + 20.564957036468137 + ], + [ + 71.96013278664094, + 20.75960477139659 + ], + [ + 71.84529010315727, + 20.564957036468137 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 20.564957036468137 + ], + [ + 71.96013278664094, + 20.75960477139659 + ], + [ + 71.7304474196736, + 20.75960477139659 + ], + [ + 71.84529010315727, + 20.564957036468137 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 20.564957036468137 + ], + [ + 71.7304474196736, + 20.75960477139659 + ], + [ + 71.61560473618991, + 20.564957036468137 + ], + [ + 71.84529010315727, + 20.564957036468137 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 20.564957036468137 + ], + [ + 71.61560473618991, + 20.564957036468137 + ], + [ + 71.7304474196736, + 20.370309301539685 + ], + [ + 71.84529010315727, + 20.564957036468137 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 20.564957036468137 + ], + [ + 71.7304474196736, + 20.370309301539685 + ], + [ + 71.96013278664094, + 20.370309301539685 + ], + [ + 71.84529010315727, + 20.564957036468137 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 20.564957036468137 + ], + [ + 71.96013278664094, + 20.370309301539685 + ], + [ + 72.07497547012463, + 20.564957036468137 + ], + [ + 71.84529010315727, + 20.564957036468137 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 20.954252506325044 + ], + [ + 72.07497547012463, + 20.954252506325044 + ], + [ + 71.96013278664094, + 21.148900241253497 + ], + [ + 71.84529010315727, + 20.954252506325044 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 20.954252506325044 + ], + [ + 71.96013278664094, + 21.148900241253497 + ], + [ + 71.7304474196736, + 21.148900241253497 + ], + [ + 71.84529010315727, + 20.954252506325044 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 20.954252506325044 + ], + [ + 71.7304474196736, + 21.148900241253497 + ], + [ + 71.61560473618991, + 20.954252506325044 + ], + [ + 71.84529010315727, + 20.954252506325044 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 20.954252506325044 + ], + [ + 71.61560473618991, + 20.954252506325044 + ], + [ + 71.7304474196736, + 20.759604771396592 + ], + [ + 71.84529010315727, + 20.954252506325044 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 20.954252506325044 + ], + [ + 71.7304474196736, + 20.759604771396592 + ], + [ + 71.96013278664094, + 20.759604771396592 + ], + [ + 71.84529010315727, + 20.954252506325044 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 20.954252506325044 + ], + [ + 71.96013278664094, + 20.759604771396592 + ], + [ + 72.07497547012463, + 20.954252506325044 + ], + [ + 71.84529010315727, + 20.954252506325044 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 21.343547976181952 + ], + [ + 72.07497547012463, + 21.343547976181952 + ], + [ + 71.96013278664094, + 21.538195711110404 + ], + [ + 71.84529010315727, + 21.343547976181952 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 21.343547976181952 + ], + [ + 71.96013278664094, + 21.538195711110404 + ], + [ + 71.7304474196736, + 21.538195711110404 + ], + [ + 71.84529010315727, + 21.343547976181952 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 21.343547976181952 + ], + [ + 71.7304474196736, + 21.538195711110404 + ], + [ + 71.61560473618991, + 21.343547976181952 + ], + [ + 71.84529010315727, + 21.343547976181952 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 21.343547976181952 + ], + [ + 71.61560473618991, + 21.343547976181952 + ], + [ + 71.7304474196736, + 21.1489002412535 + ], + [ + 71.84529010315727, + 21.343547976181952 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 21.343547976181952 + ], + [ + 71.7304474196736, + 21.1489002412535 + ], + [ + 71.96013278664094, + 21.1489002412535 + ], + [ + 71.84529010315727, + 21.343547976181952 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 21.343547976181952 + ], + [ + 71.96013278664094, + 21.1489002412535 + ], + [ + 72.07497547012463, + 21.343547976181952 + ], + [ + 71.84529010315727, + 21.343547976181952 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 21.732843446038856 + ], + [ + 72.07497547012463, + 21.732843446038856 + ], + [ + 71.96013278664094, + 21.92749118096731 + ], + [ + 71.84529010315727, + 21.732843446038856 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 21.732843446038856 + ], + [ + 71.96013278664094, + 21.92749118096731 + ], + [ + 71.7304474196736, + 21.92749118096731 + ], + [ + 71.84529010315727, + 21.732843446038856 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 21.732843446038856 + ], + [ + 71.7304474196736, + 21.92749118096731 + ], + [ + 71.61560473618991, + 21.732843446038856 + ], + [ + 71.84529010315727, + 21.732843446038856 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 21.732843446038856 + ], + [ + 71.61560473618991, + 21.732843446038856 + ], + [ + 71.7304474196736, + 21.538195711110404 + ], + [ + 71.84529010315727, + 21.732843446038856 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 21.732843446038856 + ], + [ + 71.7304474196736, + 21.538195711110404 + ], + [ + 71.96013278664094, + 21.538195711110404 + ], + [ + 71.84529010315727, + 21.732843446038856 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 21.732843446038856 + ], + [ + 71.96013278664094, + 21.538195711110404 + ], + [ + 72.07497547012463, + 21.732843446038856 + ], + [ + 71.84529010315727, + 21.732843446038856 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 22.122138915895764 + ], + [ + 72.07497547012463, + 22.122138915895764 + ], + [ + 71.96013278664094, + 22.316786650824216 + ], + [ + 71.84529010315727, + 22.122138915895764 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 22.122138915895764 + ], + [ + 71.96013278664094, + 22.316786650824216 + ], + [ + 71.7304474196736, + 22.316786650824216 + ], + [ + 71.84529010315727, + 22.122138915895764 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 22.122138915895764 + ], + [ + 71.7304474196736, + 22.316786650824216 + ], + [ + 71.61560473618991, + 22.122138915895764 + ], + [ + 71.84529010315727, + 22.122138915895764 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 22.122138915895764 + ], + [ + 71.61560473618991, + 22.122138915895764 + ], + [ + 71.7304474196736, + 21.927491180967312 + ], + [ + 71.84529010315727, + 22.122138915895764 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 22.122138915895764 + ], + [ + 71.7304474196736, + 21.927491180967312 + ], + [ + 71.96013278664094, + 21.927491180967312 + ], + [ + 71.84529010315727, + 22.122138915895764 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 22.122138915895764 + ], + [ + 71.96013278664094, + 21.927491180967312 + ], + [ + 72.07497547012463, + 22.122138915895764 + ], + [ + 71.84529010315727, + 22.122138915895764 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 22.511434385752672 + ], + [ + 72.07497547012463, + 22.511434385752672 + ], + [ + 71.96013278664094, + 22.706082120681124 + ], + [ + 71.84529010315727, + 22.511434385752672 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 22.511434385752672 + ], + [ + 71.96013278664094, + 22.706082120681124 + ], + [ + 71.7304474196736, + 22.706082120681124 + ], + [ + 71.84529010315727, + 22.511434385752672 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 22.511434385752672 + ], + [ + 71.7304474196736, + 22.706082120681124 + ], + [ + 71.61560473618991, + 22.511434385752672 + ], + [ + 71.84529010315727, + 22.511434385752672 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 22.511434385752672 + ], + [ + 71.61560473618991, + 22.511434385752672 + ], + [ + 71.7304474196736, + 22.31678665082422 + ], + [ + 71.84529010315727, + 22.511434385752672 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 22.511434385752672 + ], + [ + 71.7304474196736, + 22.31678665082422 + ], + [ + 71.96013278664094, + 22.31678665082422 + ], + [ + 71.84529010315727, + 22.511434385752672 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 22.511434385752672 + ], + [ + 71.96013278664094, + 22.31678665082422 + ], + [ + 72.07497547012463, + 22.511434385752672 + ], + [ + 71.84529010315727, + 22.511434385752672 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 22.900729855609576 + ], + [ + 72.07497547012463, + 22.900729855609576 + ], + [ + 71.96013278664094, + 23.09537759053803 + ], + [ + 71.84529010315727, + 22.900729855609576 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 22.900729855609576 + ], + [ + 71.96013278664094, + 23.09537759053803 + ], + [ + 71.7304474196736, + 23.09537759053803 + ], + [ + 71.84529010315727, + 22.900729855609576 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 22.900729855609576 + ], + [ + 71.7304474196736, + 23.09537759053803 + ], + [ + 71.61560473618991, + 22.900729855609576 + ], + [ + 71.84529010315727, + 22.900729855609576 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 22.900729855609576 + ], + [ + 71.61560473618991, + 22.900729855609576 + ], + [ + 71.7304474196736, + 22.706082120681124 + ], + [ + 71.84529010315727, + 22.900729855609576 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 22.900729855609576 + ], + [ + 71.7304474196736, + 22.706082120681124 + ], + [ + 71.96013278664094, + 22.706082120681124 + ], + [ + 71.84529010315727, + 22.900729855609576 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 22.900729855609576 + ], + [ + 71.96013278664094, + 22.706082120681124 + ], + [ + 72.07497547012463, + 22.900729855609576 + ], + [ + 71.84529010315727, + 22.900729855609576 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 23.290025325466484 + ], + [ + 72.07497547012463, + 23.290025325466484 + ], + [ + 71.96013278664094, + 23.484673060394936 + ], + [ + 71.84529010315727, + 23.290025325466484 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 23.290025325466484 + ], + [ + 71.96013278664094, + 23.484673060394936 + ], + [ + 71.7304474196736, + 23.484673060394936 + ], + [ + 71.84529010315727, + 23.290025325466484 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 23.290025325466484 + ], + [ + 71.7304474196736, + 23.484673060394936 + ], + [ + 71.61560473618991, + 23.290025325466484 + ], + [ + 71.84529010315727, + 23.290025325466484 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 23.290025325466484 + ], + [ + 71.61560473618991, + 23.290025325466484 + ], + [ + 71.7304474196736, + 23.095377590538032 + ], + [ + 71.84529010315727, + 23.290025325466484 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 23.290025325466484 + ], + [ + 71.7304474196736, + 23.095377590538032 + ], + [ + 71.96013278664094, + 23.095377590538032 + ], + [ + 71.84529010315727, + 23.290025325466484 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 23.290025325466484 + ], + [ + 71.96013278664094, + 23.095377590538032 + ], + [ + 72.07497547012463, + 23.290025325466484 + ], + [ + 71.84529010315727, + 23.290025325466484 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 23.67932079532339 + ], + [ + 72.07497547012463, + 23.67932079532339 + ], + [ + 71.96013278664094, + 23.873968530251844 + ], + [ + 71.84529010315727, + 23.67932079532339 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 23.67932079532339 + ], + [ + 71.96013278664094, + 23.873968530251844 + ], + [ + 71.7304474196736, + 23.873968530251844 + ], + [ + 71.84529010315727, + 23.67932079532339 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 23.67932079532339 + ], + [ + 71.7304474196736, + 23.873968530251844 + ], + [ + 71.61560473618991, + 23.67932079532339 + ], + [ + 71.84529010315727, + 23.67932079532339 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 23.67932079532339 + ], + [ + 71.61560473618991, + 23.67932079532339 + ], + [ + 71.7304474196736, + 23.48467306039494 + ], + [ + 71.84529010315727, + 23.67932079532339 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 23.67932079532339 + ], + [ + 71.7304474196736, + 23.48467306039494 + ], + [ + 71.96013278664094, + 23.48467306039494 + ], + [ + 71.84529010315727, + 23.67932079532339 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 23.67932079532339 + ], + [ + 71.96013278664094, + 23.48467306039494 + ], + [ + 72.07497547012463, + 23.67932079532339 + ], + [ + 71.84529010315727, + 23.67932079532339 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 24.068616265180296 + ], + [ + 72.07497547012463, + 24.068616265180296 + ], + [ + 71.96013278664094, + 24.263264000108748 + ], + [ + 71.84529010315727, + 24.068616265180296 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 24.068616265180296 + ], + [ + 71.96013278664094, + 24.263264000108748 + ], + [ + 71.7304474196736, + 24.263264000108748 + ], + [ + 71.84529010315727, + 24.068616265180296 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 24.068616265180296 + ], + [ + 71.7304474196736, + 24.263264000108748 + ], + [ + 71.61560473618991, + 24.068616265180296 + ], + [ + 71.84529010315727, + 24.068616265180296 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 24.068616265180296 + ], + [ + 71.61560473618991, + 24.068616265180296 + ], + [ + 71.7304474196736, + 23.873968530251844 + ], + [ + 71.84529010315727, + 24.068616265180296 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 24.068616265180296 + ], + [ + 71.7304474196736, + 23.873968530251844 + ], + [ + 71.96013278664094, + 23.873968530251844 + ], + [ + 71.84529010315727, + 24.068616265180296 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 24.068616265180296 + ], + [ + 71.96013278664094, + 23.873968530251844 + ], + [ + 72.07497547012463, + 24.068616265180296 + ], + [ + 71.84529010315727, + 24.068616265180296 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 24.4579117350372 + ], + [ + 72.07497547012463, + 24.4579117350372 + ], + [ + 71.96013278664094, + 24.652559469965652 + ], + [ + 71.84529010315727, + 24.4579117350372 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 24.4579117350372 + ], + [ + 71.96013278664094, + 24.652559469965652 + ], + [ + 71.7304474196736, + 24.652559469965652 + ], + [ + 71.84529010315727, + 24.4579117350372 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 24.4579117350372 + ], + [ + 71.7304474196736, + 24.652559469965652 + ], + [ + 71.61560473618991, + 24.4579117350372 + ], + [ + 71.84529010315727, + 24.4579117350372 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 24.4579117350372 + ], + [ + 71.61560473618991, + 24.4579117350372 + ], + [ + 71.7304474196736, + 24.263264000108748 + ], + [ + 71.84529010315727, + 24.4579117350372 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 24.4579117350372 + ], + [ + 71.7304474196736, + 24.263264000108748 + ], + [ + 71.96013278664094, + 24.263264000108748 + ], + [ + 71.84529010315727, + 24.4579117350372 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 24.4579117350372 + ], + [ + 71.96013278664094, + 24.263264000108748 + ], + [ + 72.07497547012463, + 24.4579117350372 + ], + [ + 71.84529010315727, + 24.4579117350372 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 24.847207204894108 + ], + [ + 72.07497547012463, + 24.847207204894108 + ], + [ + 71.96013278664094, + 25.04185493982256 + ], + [ + 71.84529010315727, + 24.847207204894108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 24.847207204894108 + ], + [ + 71.96013278664094, + 25.04185493982256 + ], + [ + 71.7304474196736, + 25.04185493982256 + ], + [ + 71.84529010315727, + 24.847207204894108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 24.847207204894108 + ], + [ + 71.7304474196736, + 25.04185493982256 + ], + [ + 71.61560473618991, + 24.847207204894108 + ], + [ + 71.84529010315727, + 24.847207204894108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 24.847207204894108 + ], + [ + 71.61560473618991, + 24.847207204894108 + ], + [ + 71.7304474196736, + 24.652559469965656 + ], + [ + 71.84529010315727, + 24.847207204894108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 24.847207204894108 + ], + [ + 71.7304474196736, + 24.652559469965656 + ], + [ + 71.96013278664094, + 24.652559469965656 + ], + [ + 71.84529010315727, + 24.847207204894108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 24.847207204894108 + ], + [ + 71.96013278664094, + 24.652559469965656 + ], + [ + 72.07497547012463, + 24.847207204894108 + ], + [ + 71.84529010315727, + 24.847207204894108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 25.236502674751016 + ], + [ + 72.07497547012463, + 25.236502674751016 + ], + [ + 71.96013278664094, + 25.431150409679468 + ], + [ + 71.84529010315727, + 25.236502674751016 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 25.236502674751016 + ], + [ + 71.96013278664094, + 25.431150409679468 + ], + [ + 71.7304474196736, + 25.431150409679468 + ], + [ + 71.84529010315727, + 25.236502674751016 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 25.236502674751016 + ], + [ + 71.7304474196736, + 25.431150409679468 + ], + [ + 71.61560473618991, + 25.236502674751016 + ], + [ + 71.84529010315727, + 25.236502674751016 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 25.236502674751016 + ], + [ + 71.61560473618991, + 25.236502674751016 + ], + [ + 71.7304474196736, + 25.041854939822564 + ], + [ + 71.84529010315727, + 25.236502674751016 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 25.236502674751016 + ], + [ + 71.7304474196736, + 25.041854939822564 + ], + [ + 71.96013278664094, + 25.041854939822564 + ], + [ + 71.84529010315727, + 25.236502674751016 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 25.236502674751016 + ], + [ + 71.96013278664094, + 25.041854939822564 + ], + [ + 72.07497547012463, + 25.236502674751016 + ], + [ + 71.84529010315727, + 25.236502674751016 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 25.62579814460792 + ], + [ + 72.07497547012463, + 25.62579814460792 + ], + [ + 71.96013278664094, + 25.820445879536372 + ], + [ + 71.84529010315727, + 25.62579814460792 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 25.62579814460792 + ], + [ + 71.96013278664094, + 25.820445879536372 + ], + [ + 71.7304474196736, + 25.820445879536372 + ], + [ + 71.84529010315727, + 25.62579814460792 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 25.62579814460792 + ], + [ + 71.7304474196736, + 25.820445879536372 + ], + [ + 71.61560473618991, + 25.62579814460792 + ], + [ + 71.84529010315727, + 25.62579814460792 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 25.62579814460792 + ], + [ + 71.61560473618991, + 25.62579814460792 + ], + [ + 71.7304474196736, + 25.431150409679468 + ], + [ + 71.84529010315727, + 25.62579814460792 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 25.62579814460792 + ], + [ + 71.7304474196736, + 25.431150409679468 + ], + [ + 71.96013278664094, + 25.431150409679468 + ], + [ + 71.84529010315727, + 25.62579814460792 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 25.62579814460792 + ], + [ + 71.96013278664094, + 25.431150409679468 + ], + [ + 72.07497547012463, + 25.62579814460792 + ], + [ + 71.84529010315727, + 25.62579814460792 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 26.015093614464828 + ], + [ + 72.07497547012463, + 26.015093614464828 + ], + [ + 71.96013278664094, + 26.20974134939328 + ], + [ + 71.84529010315727, + 26.015093614464828 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 26.015093614464828 + ], + [ + 71.96013278664094, + 26.20974134939328 + ], + [ + 71.7304474196736, + 26.20974134939328 + ], + [ + 71.84529010315727, + 26.015093614464828 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 26.015093614464828 + ], + [ + 71.7304474196736, + 26.20974134939328 + ], + [ + 71.61560473618991, + 26.015093614464828 + ], + [ + 71.84529010315727, + 26.015093614464828 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 26.015093614464828 + ], + [ + 71.61560473618991, + 26.015093614464828 + ], + [ + 71.7304474196736, + 25.820445879536376 + ], + [ + 71.84529010315727, + 26.015093614464828 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 26.015093614464828 + ], + [ + 71.7304474196736, + 25.820445879536376 + ], + [ + 71.96013278664094, + 25.820445879536376 + ], + [ + 71.84529010315727, + 26.015093614464828 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 26.015093614464828 + ], + [ + 71.96013278664094, + 25.820445879536376 + ], + [ + 72.07497547012463, + 26.015093614464828 + ], + [ + 71.84529010315727, + 26.015093614464828 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 26.404389084321735 + ], + [ + 72.07497547012463, + 26.404389084321735 + ], + [ + 71.96013278664094, + 26.599036819250188 + ], + [ + 71.84529010315727, + 26.404389084321735 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 26.404389084321735 + ], + [ + 71.96013278664094, + 26.599036819250188 + ], + [ + 71.7304474196736, + 26.599036819250188 + ], + [ + 71.84529010315727, + 26.404389084321735 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 26.404389084321735 + ], + [ + 71.7304474196736, + 26.599036819250188 + ], + [ + 71.61560473618991, + 26.404389084321735 + ], + [ + 71.84529010315727, + 26.404389084321735 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 26.404389084321735 + ], + [ + 71.61560473618991, + 26.404389084321735 + ], + [ + 71.7304474196736, + 26.209741349393283 + ], + [ + 71.84529010315727, + 26.404389084321735 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 26.404389084321735 + ], + [ + 71.7304474196736, + 26.209741349393283 + ], + [ + 71.96013278664094, + 26.209741349393283 + ], + [ + 71.84529010315727, + 26.404389084321735 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 26.404389084321735 + ], + [ + 71.96013278664094, + 26.209741349393283 + ], + [ + 72.07497547012463, + 26.404389084321735 + ], + [ + 71.84529010315727, + 26.404389084321735 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 26.79368455417864 + ], + [ + 72.07497547012463, + 26.79368455417864 + ], + [ + 71.96013278664094, + 26.988332289107092 + ], + [ + 71.84529010315727, + 26.79368455417864 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 26.79368455417864 + ], + [ + 71.96013278664094, + 26.988332289107092 + ], + [ + 71.7304474196736, + 26.988332289107092 + ], + [ + 71.84529010315727, + 26.79368455417864 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 26.79368455417864 + ], + [ + 71.7304474196736, + 26.988332289107092 + ], + [ + 71.61560473618991, + 26.79368455417864 + ], + [ + 71.84529010315727, + 26.79368455417864 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 26.79368455417864 + ], + [ + 71.61560473618991, + 26.79368455417864 + ], + [ + 71.7304474196736, + 26.599036819250188 + ], + [ + 71.84529010315727, + 26.79368455417864 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 26.79368455417864 + ], + [ + 71.7304474196736, + 26.599036819250188 + ], + [ + 71.96013278664094, + 26.599036819250188 + ], + [ + 71.84529010315727, + 26.79368455417864 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 26.79368455417864 + ], + [ + 71.96013278664094, + 26.599036819250188 + ], + [ + 72.07497547012463, + 26.79368455417864 + ], + [ + 71.84529010315727, + 26.79368455417864 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 27.182980024035547 + ], + [ + 72.07497547012463, + 27.182980024035547 + ], + [ + 71.96013278664094, + 27.377627758964 + ], + [ + 71.84529010315727, + 27.182980024035547 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 27.182980024035547 + ], + [ + 71.96013278664094, + 27.377627758964 + ], + [ + 71.7304474196736, + 27.377627758964 + ], + [ + 71.84529010315727, + 27.182980024035547 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 27.182980024035547 + ], + [ + 71.7304474196736, + 27.377627758964 + ], + [ + 71.61560473618991, + 27.182980024035547 + ], + [ + 71.84529010315727, + 27.182980024035547 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 27.182980024035547 + ], + [ + 71.61560473618991, + 27.182980024035547 + ], + [ + 71.7304474196736, + 26.988332289107095 + ], + [ + 71.84529010315727, + 27.182980024035547 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 27.182980024035547 + ], + [ + 71.7304474196736, + 26.988332289107095 + ], + [ + 71.96013278664094, + 26.988332289107095 + ], + [ + 71.84529010315727, + 27.182980024035547 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 27.182980024035547 + ], + [ + 71.96013278664094, + 26.988332289107095 + ], + [ + 72.07497547012463, + 27.182980024035547 + ], + [ + 71.84529010315727, + 27.182980024035547 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 27.572275493892455 + ], + [ + 72.07497547012463, + 27.572275493892455 + ], + [ + 71.96013278664094, + 27.766923228820907 + ], + [ + 71.84529010315727, + 27.572275493892455 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 27.572275493892455 + ], + [ + 71.96013278664094, + 27.766923228820907 + ], + [ + 71.7304474196736, + 27.766923228820907 + ], + [ + 71.84529010315727, + 27.572275493892455 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 27.572275493892455 + ], + [ + 71.7304474196736, + 27.766923228820907 + ], + [ + 71.61560473618991, + 27.572275493892455 + ], + [ + 71.84529010315727, + 27.572275493892455 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 27.572275493892455 + ], + [ + 71.61560473618991, + 27.572275493892455 + ], + [ + 71.7304474196736, + 27.377627758964003 + ], + [ + 71.84529010315727, + 27.572275493892455 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 27.572275493892455 + ], + [ + 71.7304474196736, + 27.377627758964003 + ], + [ + 71.96013278664094, + 27.377627758964003 + ], + [ + 71.84529010315727, + 27.572275493892455 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 27.572275493892455 + ], + [ + 71.96013278664094, + 27.377627758964003 + ], + [ + 72.07497547012463, + 27.572275493892455 + ], + [ + 71.84529010315727, + 27.572275493892455 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 27.96157096374936 + ], + [ + 72.07497547012463, + 27.96157096374936 + ], + [ + 71.96013278664094, + 28.15621869867781 + ], + [ + 71.84529010315727, + 27.96157096374936 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 27.96157096374936 + ], + [ + 71.96013278664094, + 28.15621869867781 + ], + [ + 71.7304474196736, + 28.15621869867781 + ], + [ + 71.84529010315727, + 27.96157096374936 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 27.96157096374936 + ], + [ + 71.7304474196736, + 28.15621869867781 + ], + [ + 71.61560473618991, + 27.96157096374936 + ], + [ + 71.84529010315727, + 27.96157096374936 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 27.96157096374936 + ], + [ + 71.61560473618991, + 27.96157096374936 + ], + [ + 71.7304474196736, + 27.766923228820907 + ], + [ + 71.84529010315727, + 27.96157096374936 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 27.96157096374936 + ], + [ + 71.7304474196736, + 27.766923228820907 + ], + [ + 71.96013278664094, + 27.766923228820907 + ], + [ + 71.84529010315727, + 27.96157096374936 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 27.96157096374936 + ], + [ + 71.96013278664094, + 27.766923228820907 + ], + [ + 72.07497547012463, + 27.96157096374936 + ], + [ + 71.84529010315727, + 27.96157096374936 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 28.350866433606267 + ], + [ + 72.07497547012463, + 28.350866433606267 + ], + [ + 71.96013278664094, + 28.54551416853472 + ], + [ + 71.84529010315727, + 28.350866433606267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 28.350866433606267 + ], + [ + 71.96013278664094, + 28.54551416853472 + ], + [ + 71.7304474196736, + 28.54551416853472 + ], + [ + 71.84529010315727, + 28.350866433606267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 28.350866433606267 + ], + [ + 71.7304474196736, + 28.54551416853472 + ], + [ + 71.61560473618991, + 28.350866433606267 + ], + [ + 71.84529010315727, + 28.350866433606267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 28.350866433606267 + ], + [ + 71.61560473618991, + 28.350866433606267 + ], + [ + 71.7304474196736, + 28.156218698677815 + ], + [ + 71.84529010315727, + 28.350866433606267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 28.350866433606267 + ], + [ + 71.7304474196736, + 28.156218698677815 + ], + [ + 71.96013278664094, + 28.156218698677815 + ], + [ + 71.84529010315727, + 28.350866433606267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 28.350866433606267 + ], + [ + 71.96013278664094, + 28.156218698677815 + ], + [ + 72.07497547012463, + 28.350866433606267 + ], + [ + 71.84529010315727, + 28.350866433606267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 28.74016190346317 + ], + [ + 72.07497547012463, + 28.74016190346317 + ], + [ + 71.96013278664094, + 28.934809638391624 + ], + [ + 71.84529010315727, + 28.74016190346317 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 28.74016190346317 + ], + [ + 71.96013278664094, + 28.934809638391624 + ], + [ + 71.7304474196736, + 28.934809638391624 + ], + [ + 71.84529010315727, + 28.74016190346317 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 28.74016190346317 + ], + [ + 71.7304474196736, + 28.934809638391624 + ], + [ + 71.61560473618991, + 28.74016190346317 + ], + [ + 71.84529010315727, + 28.74016190346317 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 28.74016190346317 + ], + [ + 71.61560473618991, + 28.74016190346317 + ], + [ + 71.7304474196736, + 28.54551416853472 + ], + [ + 71.84529010315727, + 28.74016190346317 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 28.74016190346317 + ], + [ + 71.7304474196736, + 28.54551416853472 + ], + [ + 71.96013278664094, + 28.54551416853472 + ], + [ + 71.84529010315727, + 28.74016190346317 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 28.74016190346317 + ], + [ + 71.96013278664094, + 28.54551416853472 + ], + [ + 72.07497547012463, + 28.74016190346317 + ], + [ + 71.84529010315727, + 28.74016190346317 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 29.12945737332008 + ], + [ + 72.07497547012463, + 29.12945737332008 + ], + [ + 71.96013278664094, + 29.32410510824853 + ], + [ + 71.84529010315727, + 29.12945737332008 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 29.12945737332008 + ], + [ + 71.96013278664094, + 29.32410510824853 + ], + [ + 71.7304474196736, + 29.32410510824853 + ], + [ + 71.84529010315727, + 29.12945737332008 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 29.12945737332008 + ], + [ + 71.7304474196736, + 29.32410510824853 + ], + [ + 71.61560473618991, + 29.12945737332008 + ], + [ + 71.84529010315727, + 29.12945737332008 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 29.12945737332008 + ], + [ + 71.61560473618991, + 29.12945737332008 + ], + [ + 71.7304474196736, + 28.934809638391627 + ], + [ + 71.84529010315727, + 29.12945737332008 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 29.12945737332008 + ], + [ + 71.7304474196736, + 28.934809638391627 + ], + [ + 71.96013278664094, + 28.934809638391627 + ], + [ + 71.84529010315727, + 29.12945737332008 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 29.12945737332008 + ], + [ + 71.96013278664094, + 28.934809638391627 + ], + [ + 72.07497547012463, + 29.12945737332008 + ], + [ + 71.84529010315727, + 29.12945737332008 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 29.518752843176983 + ], + [ + 72.07497547012463, + 29.518752843176983 + ], + [ + 71.96013278664094, + 29.713400578105436 + ], + [ + 71.84529010315727, + 29.518752843176983 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 29.518752843176983 + ], + [ + 71.96013278664094, + 29.713400578105436 + ], + [ + 71.7304474196736, + 29.713400578105436 + ], + [ + 71.84529010315727, + 29.518752843176983 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 29.518752843176983 + ], + [ + 71.7304474196736, + 29.713400578105436 + ], + [ + 71.61560473618991, + 29.518752843176983 + ], + [ + 71.84529010315727, + 29.518752843176983 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 29.518752843176983 + ], + [ + 71.61560473618991, + 29.518752843176983 + ], + [ + 71.7304474196736, + 29.32410510824853 + ], + [ + 71.84529010315727, + 29.518752843176983 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 29.518752843176983 + ], + [ + 71.7304474196736, + 29.32410510824853 + ], + [ + 71.96013278664094, + 29.32410510824853 + ], + [ + 71.84529010315727, + 29.518752843176983 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 29.518752843176983 + ], + [ + 71.96013278664094, + 29.32410510824853 + ], + [ + 72.07497547012463, + 29.518752843176983 + ], + [ + 71.84529010315727, + 29.518752843176983 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 29.90804831303389 + ], + [ + 72.07497547012463, + 29.90804831303389 + ], + [ + 71.96013278664094, + 30.102696047962343 + ], + [ + 71.84529010315727, + 29.90804831303389 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 29.90804831303389 + ], + [ + 71.96013278664094, + 30.102696047962343 + ], + [ + 71.7304474196736, + 30.102696047962343 + ], + [ + 71.84529010315727, + 29.90804831303389 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 29.90804831303389 + ], + [ + 71.7304474196736, + 30.102696047962343 + ], + [ + 71.61560473618991, + 29.90804831303389 + ], + [ + 71.84529010315727, + 29.90804831303389 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 29.90804831303389 + ], + [ + 71.61560473618991, + 29.90804831303389 + ], + [ + 71.7304474196736, + 29.71340057810544 + ], + [ + 71.84529010315727, + 29.90804831303389 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 29.90804831303389 + ], + [ + 71.7304474196736, + 29.71340057810544 + ], + [ + 71.96013278664094, + 29.71340057810544 + ], + [ + 71.84529010315727, + 29.90804831303389 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 29.90804831303389 + ], + [ + 71.96013278664094, + 29.71340057810544 + ], + [ + 72.07497547012463, + 29.90804831303389 + ], + [ + 71.84529010315727, + 29.90804831303389 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 30.297343782890795 + ], + [ + 72.07497547012463, + 30.297343782890795 + ], + [ + 71.96013278664094, + 30.491991517819248 + ], + [ + 71.84529010315727, + 30.297343782890795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 30.297343782890795 + ], + [ + 71.96013278664094, + 30.491991517819248 + ], + [ + 71.7304474196736, + 30.491991517819248 + ], + [ + 71.84529010315727, + 30.297343782890795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 30.297343782890795 + ], + [ + 71.7304474196736, + 30.491991517819248 + ], + [ + 71.61560473618991, + 30.297343782890795 + ], + [ + 71.84529010315727, + 30.297343782890795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 30.297343782890795 + ], + [ + 71.61560473618991, + 30.297343782890795 + ], + [ + 71.7304474196736, + 30.102696047962343 + ], + [ + 71.84529010315727, + 30.297343782890795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 30.297343782890795 + ], + [ + 71.7304474196736, + 30.102696047962343 + ], + [ + 71.96013278664094, + 30.102696047962343 + ], + [ + 71.84529010315727, + 30.297343782890795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 30.297343782890795 + ], + [ + 71.96013278664094, + 30.102696047962343 + ], + [ + 72.07497547012463, + 30.297343782890795 + ], + [ + 71.84529010315727, + 30.297343782890795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 30.686639252747703 + ], + [ + 72.07497547012463, + 30.686639252747703 + ], + [ + 71.96013278664094, + 30.881286987676155 + ], + [ + 71.84529010315727, + 30.686639252747703 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 30.686639252747703 + ], + [ + 71.96013278664094, + 30.881286987676155 + ], + [ + 71.7304474196736, + 30.881286987676155 + ], + [ + 71.84529010315727, + 30.686639252747703 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 30.686639252747703 + ], + [ + 71.7304474196736, + 30.881286987676155 + ], + [ + 71.61560473618991, + 30.686639252747703 + ], + [ + 71.84529010315727, + 30.686639252747703 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 30.686639252747703 + ], + [ + 71.61560473618991, + 30.686639252747703 + ], + [ + 71.7304474196736, + 30.49199151781925 + ], + [ + 71.84529010315727, + 30.686639252747703 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 30.686639252747703 + ], + [ + 71.7304474196736, + 30.49199151781925 + ], + [ + 71.96013278664094, + 30.49199151781925 + ], + [ + 71.84529010315727, + 30.686639252747703 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 30.686639252747703 + ], + [ + 71.96013278664094, + 30.49199151781925 + ], + [ + 72.07497547012463, + 30.686639252747703 + ], + [ + 71.84529010315727, + 30.686639252747703 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 31.07593472260461 + ], + [ + 72.07497547012463, + 31.07593472260461 + ], + [ + 71.96013278664094, + 31.270582457533063 + ], + [ + 71.84529010315727, + 31.07593472260461 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 31.07593472260461 + ], + [ + 71.96013278664094, + 31.270582457533063 + ], + [ + 71.7304474196736, + 31.270582457533063 + ], + [ + 71.84529010315727, + 31.07593472260461 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 31.07593472260461 + ], + [ + 71.7304474196736, + 31.270582457533063 + ], + [ + 71.61560473618991, + 31.07593472260461 + ], + [ + 71.84529010315727, + 31.07593472260461 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 31.07593472260461 + ], + [ + 71.61560473618991, + 31.07593472260461 + ], + [ + 71.7304474196736, + 30.88128698767616 + ], + [ + 71.84529010315727, + 31.07593472260461 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 31.07593472260461 + ], + [ + 71.7304474196736, + 30.88128698767616 + ], + [ + 71.96013278664094, + 30.88128698767616 + ], + [ + 71.84529010315727, + 31.07593472260461 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 31.07593472260461 + ], + [ + 71.96013278664094, + 30.88128698767616 + ], + [ + 72.07497547012463, + 31.07593472260461 + ], + [ + 71.84529010315727, + 31.07593472260461 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 31.465230192461515 + ], + [ + 72.07497547012463, + 31.465230192461515 + ], + [ + 71.96013278664094, + 31.659877927389967 + ], + [ + 71.84529010315727, + 31.465230192461515 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 31.465230192461515 + ], + [ + 71.96013278664094, + 31.659877927389967 + ], + [ + 71.7304474196736, + 31.659877927389967 + ], + [ + 71.84529010315727, + 31.465230192461515 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 31.465230192461515 + ], + [ + 71.7304474196736, + 31.659877927389967 + ], + [ + 71.61560473618991, + 31.465230192461515 + ], + [ + 71.84529010315727, + 31.465230192461515 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 31.465230192461515 + ], + [ + 71.61560473618991, + 31.465230192461515 + ], + [ + 71.7304474196736, + 31.270582457533063 + ], + [ + 71.84529010315727, + 31.465230192461515 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 31.465230192461515 + ], + [ + 71.7304474196736, + 31.270582457533063 + ], + [ + 71.96013278664094, + 31.270582457533063 + ], + [ + 71.84529010315727, + 31.465230192461515 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 31.465230192461515 + ], + [ + 71.96013278664094, + 31.270582457533063 + ], + [ + 72.07497547012463, + 31.465230192461515 + ], + [ + 71.84529010315727, + 31.465230192461515 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 31.854525662318423 + ], + [ + 72.07497547012463, + 31.854525662318423 + ], + [ + 71.96013278664094, + 32.049173397246875 + ], + [ + 71.84529010315727, + 31.854525662318423 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 31.854525662318423 + ], + [ + 71.96013278664094, + 32.049173397246875 + ], + [ + 71.7304474196736, + 32.049173397246875 + ], + [ + 71.84529010315727, + 31.854525662318423 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 31.854525662318423 + ], + [ + 71.7304474196736, + 32.049173397246875 + ], + [ + 71.61560473618991, + 31.854525662318423 + ], + [ + 71.84529010315727, + 31.854525662318423 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 31.854525662318423 + ], + [ + 71.61560473618991, + 31.854525662318423 + ], + [ + 71.7304474196736, + 31.65987792738997 + ], + [ + 71.84529010315727, + 31.854525662318423 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 31.854525662318423 + ], + [ + 71.7304474196736, + 31.65987792738997 + ], + [ + 71.96013278664094, + 31.65987792738997 + ], + [ + 71.84529010315727, + 31.854525662318423 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 31.854525662318423 + ], + [ + 71.96013278664094, + 31.65987792738997 + ], + [ + 72.07497547012463, + 31.854525662318423 + ], + [ + 71.84529010315727, + 31.854525662318423 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 32.24382113217533 + ], + [ + 72.07497547012463, + 32.24382113217533 + ], + [ + 71.96013278664094, + 32.43846886710378 + ], + [ + 71.84529010315727, + 32.24382113217533 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 32.24382113217533 + ], + [ + 71.96013278664094, + 32.43846886710378 + ], + [ + 71.7304474196736, + 32.43846886710378 + ], + [ + 71.84529010315727, + 32.24382113217533 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 32.24382113217533 + ], + [ + 71.7304474196736, + 32.43846886710378 + ], + [ + 71.61560473618991, + 32.24382113217533 + ], + [ + 71.84529010315727, + 32.24382113217533 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 32.24382113217533 + ], + [ + 71.61560473618991, + 32.24382113217533 + ], + [ + 71.7304474196736, + 32.049173397246875 + ], + [ + 71.84529010315727, + 32.24382113217533 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 32.24382113217533 + ], + [ + 71.7304474196736, + 32.049173397246875 + ], + [ + 71.96013278664094, + 32.049173397246875 + ], + [ + 71.84529010315727, + 32.24382113217533 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 32.24382113217533 + ], + [ + 71.96013278664094, + 32.049173397246875 + ], + [ + 72.07497547012463, + 32.24382113217533 + ], + [ + 71.84529010315727, + 32.24382113217533 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 32.63311660203224 + ], + [ + 72.07497547012463, + 32.63311660203224 + ], + [ + 71.96013278664094, + 32.82776433696069 + ], + [ + 71.84529010315727, + 32.63311660203224 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 32.63311660203224 + ], + [ + 71.96013278664094, + 32.82776433696069 + ], + [ + 71.7304474196736, + 32.82776433696069 + ], + [ + 71.84529010315727, + 32.63311660203224 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 32.63311660203224 + ], + [ + 71.7304474196736, + 32.82776433696069 + ], + [ + 71.61560473618991, + 32.63311660203224 + ], + [ + 71.84529010315727, + 32.63311660203224 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 32.63311660203224 + ], + [ + 71.61560473618991, + 32.63311660203224 + ], + [ + 71.7304474196736, + 32.438468867103786 + ], + [ + 71.84529010315727, + 32.63311660203224 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 32.63311660203224 + ], + [ + 71.7304474196736, + 32.438468867103786 + ], + [ + 71.96013278664094, + 32.438468867103786 + ], + [ + 71.84529010315727, + 32.63311660203224 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 32.63311660203224 + ], + [ + 71.96013278664094, + 32.438468867103786 + ], + [ + 72.07497547012463, + 32.63311660203224 + ], + [ + 71.84529010315727, + 32.63311660203224 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 33.02241207188914 + ], + [ + 72.07497547012463, + 33.02241207188914 + ], + [ + 71.96013278664094, + 33.217059806817595 + ], + [ + 71.84529010315727, + 33.02241207188914 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 33.02241207188914 + ], + [ + 71.96013278664094, + 33.217059806817595 + ], + [ + 71.7304474196736, + 33.217059806817595 + ], + [ + 71.84529010315727, + 33.02241207188914 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 33.02241207188914 + ], + [ + 71.7304474196736, + 33.217059806817595 + ], + [ + 71.61560473618991, + 33.02241207188914 + ], + [ + 71.84529010315727, + 33.02241207188914 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 33.02241207188914 + ], + [ + 71.61560473618991, + 33.02241207188914 + ], + [ + 71.7304474196736, + 32.82776433696069 + ], + [ + 71.84529010315727, + 33.02241207188914 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 33.02241207188914 + ], + [ + 71.7304474196736, + 32.82776433696069 + ], + [ + 71.96013278664094, + 32.82776433696069 + ], + [ + 71.84529010315727, + 33.02241207188914 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 33.02241207188914 + ], + [ + 71.96013278664094, + 32.82776433696069 + ], + [ + 72.07497547012463, + 33.02241207188914 + ], + [ + 71.84529010315727, + 33.02241207188914 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 33.41170754174605 + ], + [ + 72.07497547012463, + 33.41170754174605 + ], + [ + 71.96013278664094, + 33.6063552766745 + ], + [ + 71.84529010315727, + 33.41170754174605 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 33.41170754174605 + ], + [ + 71.96013278664094, + 33.6063552766745 + ], + [ + 71.7304474196736, + 33.6063552766745 + ], + [ + 71.84529010315727, + 33.41170754174605 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 33.41170754174605 + ], + [ + 71.7304474196736, + 33.6063552766745 + ], + [ + 71.61560473618991, + 33.41170754174605 + ], + [ + 71.84529010315727, + 33.41170754174605 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 33.41170754174605 + ], + [ + 71.61560473618991, + 33.41170754174605 + ], + [ + 71.7304474196736, + 33.217059806817595 + ], + [ + 71.84529010315727, + 33.41170754174605 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 33.41170754174605 + ], + [ + 71.7304474196736, + 33.217059806817595 + ], + [ + 71.96013278664094, + 33.217059806817595 + ], + [ + 71.84529010315727, + 33.41170754174605 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 33.41170754174605 + ], + [ + 71.96013278664094, + 33.217059806817595 + ], + [ + 72.07497547012463, + 33.41170754174605 + ], + [ + 71.84529010315727, + 33.41170754174605 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 33.80100301160295 + ], + [ + 72.07497547012463, + 33.80100301160295 + ], + [ + 71.96013278664094, + 33.9956507465314 + ], + [ + 71.84529010315727, + 33.80100301160295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 33.80100301160295 + ], + [ + 71.96013278664094, + 33.9956507465314 + ], + [ + 71.7304474196736, + 33.9956507465314 + ], + [ + 71.84529010315727, + 33.80100301160295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 33.80100301160295 + ], + [ + 71.7304474196736, + 33.9956507465314 + ], + [ + 71.61560473618991, + 33.80100301160295 + ], + [ + 71.84529010315727, + 33.80100301160295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 33.80100301160295 + ], + [ + 71.61560473618991, + 33.80100301160295 + ], + [ + 71.7304474196736, + 33.6063552766745 + ], + [ + 71.84529010315727, + 33.80100301160295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 33.80100301160295 + ], + [ + 71.7304474196736, + 33.6063552766745 + ], + [ + 71.96013278664094, + 33.6063552766745 + ], + [ + 71.84529010315727, + 33.80100301160295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 33.80100301160295 + ], + [ + 71.96013278664094, + 33.6063552766745 + ], + [ + 72.07497547012463, + 33.80100301160295 + ], + [ + 71.84529010315727, + 33.80100301160295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 34.190298481459855 + ], + [ + 72.07497547012463, + 34.190298481459855 + ], + [ + 71.96013278664094, + 34.38494621638831 + ], + [ + 71.84529010315727, + 34.190298481459855 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 34.190298481459855 + ], + [ + 71.96013278664094, + 34.38494621638831 + ], + [ + 71.7304474196736, + 34.38494621638831 + ], + [ + 71.84529010315727, + 34.190298481459855 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 34.190298481459855 + ], + [ + 71.7304474196736, + 34.38494621638831 + ], + [ + 71.61560473618991, + 34.190298481459855 + ], + [ + 71.84529010315727, + 34.190298481459855 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 34.190298481459855 + ], + [ + 71.61560473618991, + 34.190298481459855 + ], + [ + 71.7304474196736, + 33.9956507465314 + ], + [ + 71.84529010315727, + 34.190298481459855 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 34.190298481459855 + ], + [ + 71.7304474196736, + 33.9956507465314 + ], + [ + 71.96013278664094, + 33.9956507465314 + ], + [ + 71.84529010315727, + 34.190298481459855 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 34.190298481459855 + ], + [ + 71.96013278664094, + 33.9956507465314 + ], + [ + 72.07497547012463, + 34.190298481459855 + ], + [ + 71.84529010315727, + 34.190298481459855 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 34.57959395131677 + ], + [ + 72.07497547012463, + 34.57959395131677 + ], + [ + 71.96013278664094, + 34.77424168624522 + ], + [ + 71.84529010315727, + 34.57959395131677 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 34.57959395131677 + ], + [ + 71.96013278664094, + 34.77424168624522 + ], + [ + 71.7304474196736, + 34.77424168624522 + ], + [ + 71.84529010315727, + 34.57959395131677 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 34.57959395131677 + ], + [ + 71.7304474196736, + 34.77424168624522 + ], + [ + 71.61560473618991, + 34.57959395131677 + ], + [ + 71.84529010315727, + 34.57959395131677 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 34.57959395131677 + ], + [ + 71.61560473618991, + 34.57959395131677 + ], + [ + 71.7304474196736, + 34.384946216388315 + ], + [ + 71.84529010315727, + 34.57959395131677 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 34.57959395131677 + ], + [ + 71.7304474196736, + 34.384946216388315 + ], + [ + 71.96013278664094, + 34.384946216388315 + ], + [ + 71.84529010315727, + 34.57959395131677 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 34.57959395131677 + ], + [ + 71.96013278664094, + 34.384946216388315 + ], + [ + 72.07497547012463, + 34.57959395131677 + ], + [ + 71.84529010315727, + 34.57959395131677 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 34.96888942117368 + ], + [ + 72.07497547012463, + 34.96888942117368 + ], + [ + 71.96013278664094, + 35.16353715610213 + ], + [ + 71.84529010315727, + 34.96888942117368 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 34.96888942117368 + ], + [ + 71.96013278664094, + 35.16353715610213 + ], + [ + 71.7304474196736, + 35.16353715610213 + ], + [ + 71.84529010315727, + 34.96888942117368 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 34.96888942117368 + ], + [ + 71.7304474196736, + 35.16353715610213 + ], + [ + 71.61560473618991, + 34.96888942117368 + ], + [ + 71.84529010315727, + 34.96888942117368 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 34.96888942117368 + ], + [ + 71.61560473618991, + 34.96888942117368 + ], + [ + 71.7304474196736, + 34.774241686245226 + ], + [ + 71.84529010315727, + 34.96888942117368 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 34.96888942117368 + ], + [ + 71.7304474196736, + 34.774241686245226 + ], + [ + 71.96013278664094, + 34.774241686245226 + ], + [ + 71.84529010315727, + 34.96888942117368 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 34.96888942117368 + ], + [ + 71.96013278664094, + 34.774241686245226 + ], + [ + 72.07497547012463, + 34.96888942117368 + ], + [ + 71.84529010315727, + 34.96888942117368 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 35.35818489103058 + ], + [ + 72.07497547012463, + 35.35818489103058 + ], + [ + 71.96013278664094, + 35.552832625959034 + ], + [ + 71.84529010315727, + 35.35818489103058 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 35.35818489103058 + ], + [ + 71.96013278664094, + 35.552832625959034 + ], + [ + 71.7304474196736, + 35.552832625959034 + ], + [ + 71.84529010315727, + 35.35818489103058 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 35.35818489103058 + ], + [ + 71.7304474196736, + 35.552832625959034 + ], + [ + 71.61560473618991, + 35.35818489103058 + ], + [ + 71.84529010315727, + 35.35818489103058 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 35.35818489103058 + ], + [ + 71.61560473618991, + 35.35818489103058 + ], + [ + 71.7304474196736, + 35.16353715610213 + ], + [ + 71.84529010315727, + 35.35818489103058 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 35.35818489103058 + ], + [ + 71.7304474196736, + 35.16353715610213 + ], + [ + 71.96013278664094, + 35.16353715610213 + ], + [ + 71.84529010315727, + 35.35818489103058 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 35.35818489103058 + ], + [ + 71.96013278664094, + 35.16353715610213 + ], + [ + 72.07497547012463, + 35.35818489103058 + ], + [ + 71.84529010315727, + 35.35818489103058 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 35.74748036088749 + ], + [ + 72.07497547012463, + 35.74748036088749 + ], + [ + 71.96013278664094, + 35.94212809581594 + ], + [ + 71.84529010315727, + 35.74748036088749 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 35.74748036088749 + ], + [ + 71.96013278664094, + 35.94212809581594 + ], + [ + 71.7304474196736, + 35.94212809581594 + ], + [ + 71.84529010315727, + 35.74748036088749 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 35.74748036088749 + ], + [ + 71.7304474196736, + 35.94212809581594 + ], + [ + 71.61560473618991, + 35.74748036088749 + ], + [ + 71.84529010315727, + 35.74748036088749 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 35.74748036088749 + ], + [ + 71.61560473618991, + 35.74748036088749 + ], + [ + 71.7304474196736, + 35.552832625959034 + ], + [ + 71.84529010315727, + 35.74748036088749 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 35.74748036088749 + ], + [ + 71.7304474196736, + 35.552832625959034 + ], + [ + 71.96013278664094, + 35.552832625959034 + ], + [ + 71.84529010315727, + 35.74748036088749 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 35.74748036088749 + ], + [ + 71.96013278664094, + 35.552832625959034 + ], + [ + 72.07497547012463, + 35.74748036088749 + ], + [ + 71.84529010315727, + 35.74748036088749 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 36.13677583074439 + ], + [ + 72.07497547012463, + 36.13677583074439 + ], + [ + 71.96013278664094, + 36.33142356567284 + ], + [ + 71.84529010315727, + 36.13677583074439 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 36.13677583074439 + ], + [ + 71.96013278664094, + 36.33142356567284 + ], + [ + 71.7304474196736, + 36.33142356567284 + ], + [ + 71.84529010315727, + 36.13677583074439 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 36.13677583074439 + ], + [ + 71.7304474196736, + 36.33142356567284 + ], + [ + 71.61560473618991, + 36.13677583074439 + ], + [ + 71.84529010315727, + 36.13677583074439 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 36.13677583074439 + ], + [ + 71.61560473618991, + 36.13677583074439 + ], + [ + 71.7304474196736, + 35.94212809581594 + ], + [ + 71.84529010315727, + 36.13677583074439 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 36.13677583074439 + ], + [ + 71.7304474196736, + 35.94212809581594 + ], + [ + 71.96013278664094, + 35.94212809581594 + ], + [ + 71.84529010315727, + 36.13677583074439 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 36.13677583074439 + ], + [ + 71.96013278664094, + 35.94212809581594 + ], + [ + 72.07497547012463, + 36.13677583074439 + ], + [ + 71.84529010315727, + 36.13677583074439 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 36.526071300601295 + ], + [ + 72.07497547012463, + 36.526071300601295 + ], + [ + 71.96013278664094, + 36.72071903552975 + ], + [ + 71.84529010315727, + 36.526071300601295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 36.526071300601295 + ], + [ + 71.96013278664094, + 36.72071903552975 + ], + [ + 71.7304474196736, + 36.72071903552975 + ], + [ + 71.84529010315727, + 36.526071300601295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 36.526071300601295 + ], + [ + 71.7304474196736, + 36.72071903552975 + ], + [ + 71.61560473618991, + 36.526071300601295 + ], + [ + 71.84529010315727, + 36.526071300601295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 36.526071300601295 + ], + [ + 71.61560473618991, + 36.526071300601295 + ], + [ + 71.7304474196736, + 36.33142356567284 + ], + [ + 71.84529010315727, + 36.526071300601295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 36.526071300601295 + ], + [ + 71.7304474196736, + 36.33142356567284 + ], + [ + 71.96013278664094, + 36.33142356567284 + ], + [ + 71.84529010315727, + 36.526071300601295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 36.526071300601295 + ], + [ + 71.96013278664094, + 36.33142356567284 + ], + [ + 72.07497547012463, + 36.526071300601295 + ], + [ + 71.84529010315727, + 36.526071300601295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 36.915366770458206 + ], + [ + 72.07497547012463, + 36.915366770458206 + ], + [ + 71.96013278664094, + 37.11001450538666 + ], + [ + 71.84529010315727, + 36.915366770458206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 36.915366770458206 + ], + [ + 71.96013278664094, + 37.11001450538666 + ], + [ + 71.7304474196736, + 37.11001450538666 + ], + [ + 71.84529010315727, + 36.915366770458206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 36.915366770458206 + ], + [ + 71.7304474196736, + 37.11001450538666 + ], + [ + 71.61560473618991, + 36.915366770458206 + ], + [ + 71.84529010315727, + 36.915366770458206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 36.915366770458206 + ], + [ + 71.61560473618991, + 36.915366770458206 + ], + [ + 71.7304474196736, + 36.720719035529754 + ], + [ + 71.84529010315727, + 36.915366770458206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 36.915366770458206 + ], + [ + 71.7304474196736, + 36.720719035529754 + ], + [ + 71.96013278664094, + 36.720719035529754 + ], + [ + 71.84529010315727, + 36.915366770458206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 36.915366770458206 + ], + [ + 71.96013278664094, + 36.720719035529754 + ], + [ + 72.07497547012463, + 36.915366770458206 + ], + [ + 71.84529010315727, + 36.915366770458206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 37.30466224031511 + ], + [ + 72.07497547012463, + 37.30466224031511 + ], + [ + 71.96013278664094, + 37.49930997524356 + ], + [ + 71.84529010315727, + 37.30466224031511 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 37.30466224031511 + ], + [ + 71.96013278664094, + 37.49930997524356 + ], + [ + 71.7304474196736, + 37.49930997524356 + ], + [ + 71.84529010315727, + 37.30466224031511 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 37.30466224031511 + ], + [ + 71.7304474196736, + 37.49930997524356 + ], + [ + 71.61560473618991, + 37.30466224031511 + ], + [ + 71.84529010315727, + 37.30466224031511 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 37.30466224031511 + ], + [ + 71.61560473618991, + 37.30466224031511 + ], + [ + 71.7304474196736, + 37.11001450538666 + ], + [ + 71.84529010315727, + 37.30466224031511 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 37.30466224031511 + ], + [ + 71.7304474196736, + 37.11001450538666 + ], + [ + 71.96013278664094, + 37.11001450538666 + ], + [ + 71.84529010315727, + 37.30466224031511 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 37.30466224031511 + ], + [ + 71.96013278664094, + 37.11001450538666 + ], + [ + 72.07497547012463, + 37.30466224031511 + ], + [ + 71.84529010315727, + 37.30466224031511 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 37.69395771017202 + ], + [ + 72.07497547012463, + 37.69395771017202 + ], + [ + 71.96013278664094, + 37.888605445100474 + ], + [ + 71.84529010315727, + 37.69395771017202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 37.69395771017202 + ], + [ + 71.96013278664094, + 37.888605445100474 + ], + [ + 71.7304474196736, + 37.888605445100474 + ], + [ + 71.84529010315727, + 37.69395771017202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 37.69395771017202 + ], + [ + 71.7304474196736, + 37.888605445100474 + ], + [ + 71.61560473618991, + 37.69395771017202 + ], + [ + 71.84529010315727, + 37.69395771017202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 37.69395771017202 + ], + [ + 71.61560473618991, + 37.69395771017202 + ], + [ + 71.7304474196736, + 37.49930997524357 + ], + [ + 71.84529010315727, + 37.69395771017202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 37.69395771017202 + ], + [ + 71.7304474196736, + 37.49930997524357 + ], + [ + 71.96013278664094, + 37.49930997524357 + ], + [ + 71.84529010315727, + 37.69395771017202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 37.69395771017202 + ], + [ + 71.96013278664094, + 37.49930997524357 + ], + [ + 72.07497547012463, + 37.69395771017202 + ], + [ + 71.84529010315727, + 37.69395771017202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 38.083253180028926 + ], + [ + 72.07497547012463, + 38.083253180028926 + ], + [ + 71.96013278664094, + 38.27790091495738 + ], + [ + 71.84529010315727, + 38.083253180028926 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 38.083253180028926 + ], + [ + 71.96013278664094, + 38.27790091495738 + ], + [ + 71.7304474196736, + 38.27790091495738 + ], + [ + 71.84529010315727, + 38.083253180028926 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 38.083253180028926 + ], + [ + 71.7304474196736, + 38.27790091495738 + ], + [ + 71.61560473618991, + 38.083253180028926 + ], + [ + 71.84529010315727, + 38.083253180028926 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 38.083253180028926 + ], + [ + 71.61560473618991, + 38.083253180028926 + ], + [ + 71.7304474196736, + 37.888605445100474 + ], + [ + 71.84529010315727, + 38.083253180028926 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 38.083253180028926 + ], + [ + 71.7304474196736, + 37.888605445100474 + ], + [ + 71.96013278664094, + 37.888605445100474 + ], + [ + 71.84529010315727, + 38.083253180028926 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 38.083253180028926 + ], + [ + 71.96013278664094, + 37.888605445100474 + ], + [ + 72.07497547012463, + 38.083253180028926 + ], + [ + 71.84529010315727, + 38.083253180028926 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 38.47254864988583 + ], + [ + 72.07497547012463, + 38.47254864988583 + ], + [ + 71.96013278664094, + 38.66719638481428 + ], + [ + 71.84529010315727, + 38.47254864988583 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 38.47254864988583 + ], + [ + 71.96013278664094, + 38.66719638481428 + ], + [ + 71.7304474196736, + 38.66719638481428 + ], + [ + 71.84529010315727, + 38.47254864988583 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 38.47254864988583 + ], + [ + 71.7304474196736, + 38.66719638481428 + ], + [ + 71.61560473618991, + 38.47254864988583 + ], + [ + 71.84529010315727, + 38.47254864988583 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 38.47254864988583 + ], + [ + 71.61560473618991, + 38.47254864988583 + ], + [ + 71.7304474196736, + 38.27790091495738 + ], + [ + 71.84529010315727, + 38.47254864988583 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 38.47254864988583 + ], + [ + 71.7304474196736, + 38.27790091495738 + ], + [ + 71.96013278664094, + 38.27790091495738 + ], + [ + 71.84529010315727, + 38.47254864988583 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 38.47254864988583 + ], + [ + 71.96013278664094, + 38.27790091495738 + ], + [ + 72.07497547012463, + 38.47254864988583 + ], + [ + 71.84529010315727, + 38.47254864988583 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 38.861844119742734 + ], + [ + 72.07497547012463, + 38.861844119742734 + ], + [ + 71.96013278664094, + 39.05649185467119 + ], + [ + 71.84529010315727, + 38.861844119742734 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 38.861844119742734 + ], + [ + 71.96013278664094, + 39.05649185467119 + ], + [ + 71.7304474196736, + 39.05649185467119 + ], + [ + 71.84529010315727, + 38.861844119742734 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 38.861844119742734 + ], + [ + 71.7304474196736, + 39.05649185467119 + ], + [ + 71.61560473618991, + 38.861844119742734 + ], + [ + 71.84529010315727, + 38.861844119742734 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 38.861844119742734 + ], + [ + 71.61560473618991, + 38.861844119742734 + ], + [ + 71.7304474196736, + 38.66719638481428 + ], + [ + 71.84529010315727, + 38.861844119742734 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 38.861844119742734 + ], + [ + 71.7304474196736, + 38.66719638481428 + ], + [ + 71.96013278664094, + 38.66719638481428 + ], + [ + 71.84529010315727, + 38.861844119742734 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 38.861844119742734 + ], + [ + 71.96013278664094, + 38.66719638481428 + ], + [ + 72.07497547012463, + 38.861844119742734 + ], + [ + 71.84529010315727, + 38.861844119742734 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 39.25113958959964 + ], + [ + 72.07497547012463, + 39.25113958959964 + ], + [ + 71.96013278664094, + 39.44578732452809 + ], + [ + 71.84529010315727, + 39.25113958959964 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 39.25113958959964 + ], + [ + 71.96013278664094, + 39.44578732452809 + ], + [ + 71.7304474196736, + 39.44578732452809 + ], + [ + 71.84529010315727, + 39.25113958959964 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 39.25113958959964 + ], + [ + 71.7304474196736, + 39.44578732452809 + ], + [ + 71.61560473618991, + 39.25113958959964 + ], + [ + 71.84529010315727, + 39.25113958959964 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 39.25113958959964 + ], + [ + 71.61560473618991, + 39.25113958959964 + ], + [ + 71.7304474196736, + 39.05649185467119 + ], + [ + 71.84529010315727, + 39.25113958959964 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 39.25113958959964 + ], + [ + 71.7304474196736, + 39.05649185467119 + ], + [ + 71.96013278664094, + 39.05649185467119 + ], + [ + 71.84529010315727, + 39.25113958959964 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 39.25113958959964 + ], + [ + 71.96013278664094, + 39.05649185467119 + ], + [ + 72.07497547012463, + 39.25113958959964 + ], + [ + 71.84529010315727, + 39.25113958959964 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 39.64043505945655 + ], + [ + 72.07497547012463, + 39.64043505945655 + ], + [ + 71.96013278664094, + 39.835082794385 + ], + [ + 71.84529010315727, + 39.64043505945655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 39.64043505945655 + ], + [ + 71.96013278664094, + 39.835082794385 + ], + [ + 71.7304474196736, + 39.835082794385 + ], + [ + 71.84529010315727, + 39.64043505945655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 39.64043505945655 + ], + [ + 71.7304474196736, + 39.835082794385 + ], + [ + 71.61560473618991, + 39.64043505945655 + ], + [ + 71.84529010315727, + 39.64043505945655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 39.64043505945655 + ], + [ + 71.61560473618991, + 39.64043505945655 + ], + [ + 71.7304474196736, + 39.4457873245281 + ], + [ + 71.84529010315727, + 39.64043505945655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 39.64043505945655 + ], + [ + 71.7304474196736, + 39.4457873245281 + ], + [ + 71.96013278664094, + 39.4457873245281 + ], + [ + 71.84529010315727, + 39.64043505945655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 39.64043505945655 + ], + [ + 71.96013278664094, + 39.4457873245281 + ], + [ + 72.07497547012463, + 39.64043505945655 + ], + [ + 71.84529010315727, + 39.64043505945655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 40.029730529313454 + ], + [ + 72.07497547012463, + 40.029730529313454 + ], + [ + 71.96013278664094, + 40.224378264241906 + ], + [ + 71.84529010315727, + 40.029730529313454 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 40.029730529313454 + ], + [ + 71.96013278664094, + 40.224378264241906 + ], + [ + 71.7304474196736, + 40.224378264241906 + ], + [ + 71.84529010315727, + 40.029730529313454 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 40.029730529313454 + ], + [ + 71.7304474196736, + 40.224378264241906 + ], + [ + 71.61560473618991, + 40.029730529313454 + ], + [ + 71.84529010315727, + 40.029730529313454 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 40.029730529313454 + ], + [ + 71.61560473618991, + 40.029730529313454 + ], + [ + 71.7304474196736, + 39.835082794385 + ], + [ + 71.84529010315727, + 40.029730529313454 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 40.029730529313454 + ], + [ + 71.7304474196736, + 39.835082794385 + ], + [ + 71.96013278664094, + 39.835082794385 + ], + [ + 71.84529010315727, + 40.029730529313454 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 40.029730529313454 + ], + [ + 71.96013278664094, + 39.835082794385 + ], + [ + 72.07497547012463, + 40.029730529313454 + ], + [ + 71.84529010315727, + 40.029730529313454 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 40.419025999170366 + ], + [ + 72.07497547012463, + 40.419025999170366 + ], + [ + 71.96013278664094, + 40.61367373409882 + ], + [ + 71.84529010315727, + 40.419025999170366 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 40.419025999170366 + ], + [ + 71.96013278664094, + 40.61367373409882 + ], + [ + 71.7304474196736, + 40.61367373409882 + ], + [ + 71.84529010315727, + 40.419025999170366 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 40.419025999170366 + ], + [ + 71.7304474196736, + 40.61367373409882 + ], + [ + 71.61560473618991, + 40.419025999170366 + ], + [ + 71.84529010315727, + 40.419025999170366 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 40.419025999170366 + ], + [ + 71.61560473618991, + 40.419025999170366 + ], + [ + 71.7304474196736, + 40.22437826424191 + ], + [ + 71.84529010315727, + 40.419025999170366 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 40.419025999170366 + ], + [ + 71.7304474196736, + 40.22437826424191 + ], + [ + 71.96013278664094, + 40.22437826424191 + ], + [ + 71.84529010315727, + 40.419025999170366 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 40.419025999170366 + ], + [ + 71.96013278664094, + 40.22437826424191 + ], + [ + 72.07497547012463, + 40.419025999170366 + ], + [ + 71.84529010315727, + 40.419025999170366 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 40.80832146902727 + ], + [ + 72.07497547012463, + 40.80832146902727 + ], + [ + 71.96013278664094, + 41.00296920395572 + ], + [ + 71.84529010315727, + 40.80832146902727 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 40.80832146902727 + ], + [ + 71.96013278664094, + 41.00296920395572 + ], + [ + 71.7304474196736, + 41.00296920395572 + ], + [ + 71.84529010315727, + 40.80832146902727 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 40.80832146902727 + ], + [ + 71.7304474196736, + 41.00296920395572 + ], + [ + 71.61560473618991, + 40.80832146902727 + ], + [ + 71.84529010315727, + 40.80832146902727 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 40.80832146902727 + ], + [ + 71.61560473618991, + 40.80832146902727 + ], + [ + 71.7304474196736, + 40.61367373409882 + ], + [ + 71.84529010315727, + 40.80832146902727 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 40.80832146902727 + ], + [ + 71.7304474196736, + 40.61367373409882 + ], + [ + 71.96013278664094, + 40.61367373409882 + ], + [ + 71.84529010315727, + 40.80832146902727 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 40.80832146902727 + ], + [ + 71.96013278664094, + 40.61367373409882 + ], + [ + 72.07497547012463, + 40.80832146902727 + ], + [ + 71.84529010315727, + 40.80832146902727 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 41.197616938884174 + ], + [ + 72.07497547012463, + 41.197616938884174 + ], + [ + 71.96013278664094, + 41.392264673812626 + ], + [ + 71.84529010315727, + 41.197616938884174 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 41.197616938884174 + ], + [ + 71.96013278664094, + 41.392264673812626 + ], + [ + 71.7304474196736, + 41.392264673812626 + ], + [ + 71.84529010315727, + 41.197616938884174 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 41.197616938884174 + ], + [ + 71.7304474196736, + 41.392264673812626 + ], + [ + 71.61560473618991, + 41.197616938884174 + ], + [ + 71.84529010315727, + 41.197616938884174 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 41.197616938884174 + ], + [ + 71.61560473618991, + 41.197616938884174 + ], + [ + 71.7304474196736, + 41.00296920395572 + ], + [ + 71.84529010315727, + 41.197616938884174 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 41.197616938884174 + ], + [ + 71.7304474196736, + 41.00296920395572 + ], + [ + 71.96013278664094, + 41.00296920395572 + ], + [ + 71.84529010315727, + 41.197616938884174 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 41.197616938884174 + ], + [ + 71.96013278664094, + 41.00296920395572 + ], + [ + 72.07497547012463, + 41.197616938884174 + ], + [ + 71.84529010315727, + 41.197616938884174 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 41.58691240874108 + ], + [ + 72.07497547012463, + 41.58691240874108 + ], + [ + 71.96013278664094, + 41.78156014366953 + ], + [ + 71.84529010315727, + 41.58691240874108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 41.58691240874108 + ], + [ + 71.96013278664094, + 41.78156014366953 + ], + [ + 71.7304474196736, + 41.78156014366953 + ], + [ + 71.84529010315727, + 41.58691240874108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 41.58691240874108 + ], + [ + 71.7304474196736, + 41.78156014366953 + ], + [ + 71.61560473618991, + 41.58691240874108 + ], + [ + 71.84529010315727, + 41.58691240874108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 41.58691240874108 + ], + [ + 71.61560473618991, + 41.58691240874108 + ], + [ + 71.7304474196736, + 41.392264673812626 + ], + [ + 71.84529010315727, + 41.58691240874108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 41.58691240874108 + ], + [ + 71.7304474196736, + 41.392264673812626 + ], + [ + 71.96013278664094, + 41.392264673812626 + ], + [ + 71.84529010315727, + 41.58691240874108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 41.58691240874108 + ], + [ + 71.96013278664094, + 41.392264673812626 + ], + [ + 72.07497547012463, + 41.58691240874108 + ], + [ + 71.84529010315727, + 41.58691240874108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 41.97620787859798 + ], + [ + 72.07497547012463, + 41.97620787859798 + ], + [ + 71.96013278664094, + 42.170855613526435 + ], + [ + 71.84529010315727, + 41.97620787859798 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 41.97620787859798 + ], + [ + 71.96013278664094, + 42.170855613526435 + ], + [ + 71.7304474196736, + 42.170855613526435 + ], + [ + 71.84529010315727, + 41.97620787859798 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 41.97620787859798 + ], + [ + 71.7304474196736, + 42.170855613526435 + ], + [ + 71.61560473618991, + 41.97620787859798 + ], + [ + 71.84529010315727, + 41.97620787859798 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 41.97620787859798 + ], + [ + 71.61560473618991, + 41.97620787859798 + ], + [ + 71.7304474196736, + 41.78156014366953 + ], + [ + 71.84529010315727, + 41.97620787859798 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 41.97620787859798 + ], + [ + 71.7304474196736, + 41.78156014366953 + ], + [ + 71.96013278664094, + 41.78156014366953 + ], + [ + 71.84529010315727, + 41.97620787859798 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 41.97620787859798 + ], + [ + 71.96013278664094, + 41.78156014366953 + ], + [ + 72.07497547012463, + 41.97620787859798 + ], + [ + 71.84529010315727, + 41.97620787859798 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 42.365503348454894 + ], + [ + 72.07497547012463, + 42.365503348454894 + ], + [ + 71.96013278664094, + 42.560151083383346 + ], + [ + 71.84529010315727, + 42.365503348454894 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 42.365503348454894 + ], + [ + 71.96013278664094, + 42.560151083383346 + ], + [ + 71.7304474196736, + 42.560151083383346 + ], + [ + 71.84529010315727, + 42.365503348454894 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 42.365503348454894 + ], + [ + 71.7304474196736, + 42.560151083383346 + ], + [ + 71.61560473618991, + 42.365503348454894 + ], + [ + 71.84529010315727, + 42.365503348454894 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 42.365503348454894 + ], + [ + 71.61560473618991, + 42.365503348454894 + ], + [ + 71.7304474196736, + 42.17085561352644 + ], + [ + 71.84529010315727, + 42.365503348454894 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 42.365503348454894 + ], + [ + 71.7304474196736, + 42.17085561352644 + ], + [ + 71.96013278664094, + 42.17085561352644 + ], + [ + 71.84529010315727, + 42.365503348454894 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 42.365503348454894 + ], + [ + 71.96013278664094, + 42.17085561352644 + ], + [ + 72.07497547012463, + 42.365503348454894 + ], + [ + 71.84529010315727, + 42.365503348454894 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 42.754798818311805 + ], + [ + 72.07497547012463, + 42.754798818311805 + ], + [ + 71.96013278664094, + 42.94944655324026 + ], + [ + 71.84529010315727, + 42.754798818311805 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 42.754798818311805 + ], + [ + 71.96013278664094, + 42.94944655324026 + ], + [ + 71.7304474196736, + 42.94944655324026 + ], + [ + 71.84529010315727, + 42.754798818311805 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 42.754798818311805 + ], + [ + 71.7304474196736, + 42.94944655324026 + ], + [ + 71.61560473618991, + 42.754798818311805 + ], + [ + 71.84529010315727, + 42.754798818311805 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 42.754798818311805 + ], + [ + 71.61560473618991, + 42.754798818311805 + ], + [ + 71.7304474196736, + 42.56015108338335 + ], + [ + 71.84529010315727, + 42.754798818311805 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 42.754798818311805 + ], + [ + 71.7304474196736, + 42.56015108338335 + ], + [ + 71.96013278664094, + 42.56015108338335 + ], + [ + 71.84529010315727, + 42.754798818311805 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 42.754798818311805 + ], + [ + 71.96013278664094, + 42.56015108338335 + ], + [ + 72.07497547012463, + 42.754798818311805 + ], + [ + 71.84529010315727, + 42.754798818311805 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 43.14409428816871 + ], + [ + 72.07497547012463, + 43.14409428816871 + ], + [ + 71.96013278664094, + 43.33874202309716 + ], + [ + 71.84529010315727, + 43.14409428816871 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 43.14409428816871 + ], + [ + 71.96013278664094, + 43.33874202309716 + ], + [ + 71.7304474196736, + 43.33874202309716 + ], + [ + 71.84529010315727, + 43.14409428816871 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 43.14409428816871 + ], + [ + 71.7304474196736, + 43.33874202309716 + ], + [ + 71.61560473618991, + 43.14409428816871 + ], + [ + 71.84529010315727, + 43.14409428816871 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 43.14409428816871 + ], + [ + 71.61560473618991, + 43.14409428816871 + ], + [ + 71.7304474196736, + 42.94944655324026 + ], + [ + 71.84529010315727, + 43.14409428816871 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 43.14409428816871 + ], + [ + 71.7304474196736, + 42.94944655324026 + ], + [ + 71.96013278664094, + 42.94944655324026 + ], + [ + 71.84529010315727, + 43.14409428816871 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 43.14409428816871 + ], + [ + 71.96013278664094, + 42.94944655324026 + ], + [ + 72.07497547012463, + 43.14409428816871 + ], + [ + 71.84529010315727, + 43.14409428816871 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 43.53338975802561 + ], + [ + 72.07497547012463, + 43.53338975802561 + ], + [ + 71.96013278664094, + 43.728037492954066 + ], + [ + 71.84529010315727, + 43.53338975802561 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 43.53338975802561 + ], + [ + 71.96013278664094, + 43.728037492954066 + ], + [ + 71.7304474196736, + 43.728037492954066 + ], + [ + 71.84529010315727, + 43.53338975802561 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 43.53338975802561 + ], + [ + 71.7304474196736, + 43.728037492954066 + ], + [ + 71.61560473618991, + 43.53338975802561 + ], + [ + 71.84529010315727, + 43.53338975802561 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 43.53338975802561 + ], + [ + 71.61560473618991, + 43.53338975802561 + ], + [ + 71.7304474196736, + 43.33874202309716 + ], + [ + 71.84529010315727, + 43.53338975802561 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 43.53338975802561 + ], + [ + 71.7304474196736, + 43.33874202309716 + ], + [ + 71.96013278664094, + 43.33874202309716 + ], + [ + 71.84529010315727, + 43.53338975802561 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 43.53338975802561 + ], + [ + 71.96013278664094, + 43.33874202309716 + ], + [ + 72.07497547012463, + 43.53338975802561 + ], + [ + 71.84529010315727, + 43.53338975802561 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 43.92268522788252 + ], + [ + 72.07497547012463, + 43.92268522788252 + ], + [ + 71.96013278664094, + 44.11733296281097 + ], + [ + 71.84529010315727, + 43.92268522788252 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 43.92268522788252 + ], + [ + 71.96013278664094, + 44.11733296281097 + ], + [ + 71.7304474196736, + 44.11733296281097 + ], + [ + 71.84529010315727, + 43.92268522788252 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 43.92268522788252 + ], + [ + 71.7304474196736, + 44.11733296281097 + ], + [ + 71.61560473618991, + 43.92268522788252 + ], + [ + 71.84529010315727, + 43.92268522788252 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 43.92268522788252 + ], + [ + 71.61560473618991, + 43.92268522788252 + ], + [ + 71.7304474196736, + 43.728037492954066 + ], + [ + 71.84529010315727, + 43.92268522788252 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 43.92268522788252 + ], + [ + 71.7304474196736, + 43.728037492954066 + ], + [ + 71.96013278664094, + 43.728037492954066 + ], + [ + 71.84529010315727, + 43.92268522788252 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 43.92268522788252 + ], + [ + 71.96013278664094, + 43.728037492954066 + ], + [ + 72.07497547012463, + 43.92268522788252 + ], + [ + 71.84529010315727, + 43.92268522788252 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 44.31198069773942 + ], + [ + 72.07497547012463, + 44.31198069773942 + ], + [ + 71.96013278664094, + 44.506628432667874 + ], + [ + 71.84529010315727, + 44.31198069773942 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 44.31198069773942 + ], + [ + 71.96013278664094, + 44.506628432667874 + ], + [ + 71.7304474196736, + 44.506628432667874 + ], + [ + 71.84529010315727, + 44.31198069773942 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 44.31198069773942 + ], + [ + 71.7304474196736, + 44.506628432667874 + ], + [ + 71.61560473618991, + 44.31198069773942 + ], + [ + 71.84529010315727, + 44.31198069773942 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 44.31198069773942 + ], + [ + 71.61560473618991, + 44.31198069773942 + ], + [ + 71.7304474196736, + 44.11733296281097 + ], + [ + 71.84529010315727, + 44.31198069773942 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 44.31198069773942 + ], + [ + 71.7304474196736, + 44.11733296281097 + ], + [ + 71.96013278664094, + 44.11733296281097 + ], + [ + 71.84529010315727, + 44.31198069773942 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 44.31198069773942 + ], + [ + 71.96013278664094, + 44.11733296281097 + ], + [ + 72.07497547012463, + 44.31198069773942 + ], + [ + 71.84529010315727, + 44.31198069773942 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 44.701276167596326 + ], + [ + 72.07497547012463, + 44.701276167596326 + ], + [ + 71.96013278664094, + 44.89592390252478 + ], + [ + 71.84529010315727, + 44.701276167596326 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 44.701276167596326 + ], + [ + 71.96013278664094, + 44.89592390252478 + ], + [ + 71.7304474196736, + 44.89592390252478 + ], + [ + 71.84529010315727, + 44.701276167596326 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 44.701276167596326 + ], + [ + 71.7304474196736, + 44.89592390252478 + ], + [ + 71.61560473618991, + 44.701276167596326 + ], + [ + 71.84529010315727, + 44.701276167596326 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 44.701276167596326 + ], + [ + 71.61560473618991, + 44.701276167596326 + ], + [ + 71.7304474196736, + 44.506628432667874 + ], + [ + 71.84529010315727, + 44.701276167596326 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 44.701276167596326 + ], + [ + 71.7304474196736, + 44.506628432667874 + ], + [ + 71.96013278664094, + 44.506628432667874 + ], + [ + 71.84529010315727, + 44.701276167596326 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 44.701276167596326 + ], + [ + 71.96013278664094, + 44.506628432667874 + ], + [ + 72.07497547012463, + 44.701276167596326 + ], + [ + 71.84529010315727, + 44.701276167596326 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 45.090571637453245 + ], + [ + 72.07497547012463, + 45.090571637453245 + ], + [ + 71.96013278664094, + 45.2852193723817 + ], + [ + 71.84529010315727, + 45.090571637453245 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 45.090571637453245 + ], + [ + 71.96013278664094, + 45.2852193723817 + ], + [ + 71.7304474196736, + 45.2852193723817 + ], + [ + 71.84529010315727, + 45.090571637453245 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 45.090571637453245 + ], + [ + 71.7304474196736, + 45.2852193723817 + ], + [ + 71.61560473618991, + 45.090571637453245 + ], + [ + 71.84529010315727, + 45.090571637453245 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 45.090571637453245 + ], + [ + 71.61560473618991, + 45.090571637453245 + ], + [ + 71.7304474196736, + 44.89592390252479 + ], + [ + 71.84529010315727, + 45.090571637453245 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 45.090571637453245 + ], + [ + 71.7304474196736, + 44.89592390252479 + ], + [ + 71.96013278664094, + 44.89592390252479 + ], + [ + 71.84529010315727, + 45.090571637453245 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 45.090571637453245 + ], + [ + 71.96013278664094, + 44.89592390252479 + ], + [ + 72.07497547012463, + 45.090571637453245 + ], + [ + 71.84529010315727, + 45.090571637453245 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 45.47986710731015 + ], + [ + 72.07497547012463, + 45.47986710731015 + ], + [ + 71.96013278664094, + 45.6745148422386 + ], + [ + 71.84529010315727, + 45.47986710731015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 45.47986710731015 + ], + [ + 71.96013278664094, + 45.6745148422386 + ], + [ + 71.7304474196736, + 45.6745148422386 + ], + [ + 71.84529010315727, + 45.47986710731015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 45.47986710731015 + ], + [ + 71.7304474196736, + 45.6745148422386 + ], + [ + 71.61560473618991, + 45.47986710731015 + ], + [ + 71.84529010315727, + 45.47986710731015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 45.47986710731015 + ], + [ + 71.61560473618991, + 45.47986710731015 + ], + [ + 71.7304474196736, + 45.2852193723817 + ], + [ + 71.84529010315727, + 45.47986710731015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 45.47986710731015 + ], + [ + 71.7304474196736, + 45.2852193723817 + ], + [ + 71.96013278664094, + 45.2852193723817 + ], + [ + 71.84529010315727, + 45.47986710731015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 45.47986710731015 + ], + [ + 71.96013278664094, + 45.2852193723817 + ], + [ + 72.07497547012463, + 45.47986710731015 + ], + [ + 71.84529010315727, + 45.47986710731015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 45.86916257716705 + ], + [ + 72.07497547012463, + 45.86916257716705 + ], + [ + 71.96013278664094, + 46.063810312095505 + ], + [ + 71.84529010315727, + 45.86916257716705 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 45.86916257716705 + ], + [ + 71.96013278664094, + 46.063810312095505 + ], + [ + 71.7304474196736, + 46.063810312095505 + ], + [ + 71.84529010315727, + 45.86916257716705 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 45.86916257716705 + ], + [ + 71.7304474196736, + 46.063810312095505 + ], + [ + 71.61560473618991, + 45.86916257716705 + ], + [ + 71.84529010315727, + 45.86916257716705 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 45.86916257716705 + ], + [ + 71.61560473618991, + 45.86916257716705 + ], + [ + 71.7304474196736, + 45.6745148422386 + ], + [ + 71.84529010315727, + 45.86916257716705 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 45.86916257716705 + ], + [ + 71.7304474196736, + 45.6745148422386 + ], + [ + 71.96013278664094, + 45.6745148422386 + ], + [ + 71.84529010315727, + 45.86916257716705 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 45.86916257716705 + ], + [ + 71.96013278664094, + 45.6745148422386 + ], + [ + 72.07497547012463, + 45.86916257716705 + ], + [ + 71.84529010315727, + 45.86916257716705 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 46.25845804702396 + ], + [ + 72.07497547012463, + 46.25845804702396 + ], + [ + 71.96013278664094, + 46.45310578195241 + ], + [ + 71.84529010315727, + 46.25845804702396 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 46.25845804702396 + ], + [ + 71.96013278664094, + 46.45310578195241 + ], + [ + 71.7304474196736, + 46.45310578195241 + ], + [ + 71.84529010315727, + 46.25845804702396 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 46.25845804702396 + ], + [ + 71.7304474196736, + 46.45310578195241 + ], + [ + 71.61560473618991, + 46.25845804702396 + ], + [ + 71.84529010315727, + 46.25845804702396 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 46.25845804702396 + ], + [ + 71.61560473618991, + 46.25845804702396 + ], + [ + 71.7304474196736, + 46.063810312095505 + ], + [ + 71.84529010315727, + 46.25845804702396 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 46.25845804702396 + ], + [ + 71.7304474196736, + 46.063810312095505 + ], + [ + 71.96013278664094, + 46.063810312095505 + ], + [ + 71.84529010315727, + 46.25845804702396 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 46.25845804702396 + ], + [ + 71.96013278664094, + 46.063810312095505 + ], + [ + 72.07497547012463, + 46.25845804702396 + ], + [ + 71.84529010315727, + 46.25845804702396 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 46.64775351688086 + ], + [ + 72.07497547012463, + 46.64775351688086 + ], + [ + 71.96013278664094, + 46.842401251809314 + ], + [ + 71.84529010315727, + 46.64775351688086 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 46.64775351688086 + ], + [ + 71.96013278664094, + 46.842401251809314 + ], + [ + 71.7304474196736, + 46.842401251809314 + ], + [ + 71.84529010315727, + 46.64775351688086 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 46.64775351688086 + ], + [ + 71.7304474196736, + 46.842401251809314 + ], + [ + 71.61560473618991, + 46.64775351688086 + ], + [ + 71.84529010315727, + 46.64775351688086 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 46.64775351688086 + ], + [ + 71.61560473618991, + 46.64775351688086 + ], + [ + 71.7304474196736, + 46.45310578195241 + ], + [ + 71.84529010315727, + 46.64775351688086 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 46.64775351688086 + ], + [ + 71.7304474196736, + 46.45310578195241 + ], + [ + 71.96013278664094, + 46.45310578195241 + ], + [ + 71.84529010315727, + 46.64775351688086 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 46.64775351688086 + ], + [ + 71.96013278664094, + 46.45310578195241 + ], + [ + 72.07497547012463, + 46.64775351688086 + ], + [ + 71.84529010315727, + 46.64775351688086 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 47.037048986737766 + ], + [ + 72.07497547012463, + 47.037048986737766 + ], + [ + 71.96013278664094, + 47.23169672166622 + ], + [ + 71.84529010315727, + 47.037048986737766 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 47.037048986737766 + ], + [ + 71.96013278664094, + 47.23169672166622 + ], + [ + 71.7304474196736, + 47.23169672166622 + ], + [ + 71.84529010315727, + 47.037048986737766 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 47.037048986737766 + ], + [ + 71.7304474196736, + 47.23169672166622 + ], + [ + 71.61560473618991, + 47.037048986737766 + ], + [ + 71.84529010315727, + 47.037048986737766 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 47.037048986737766 + ], + [ + 71.61560473618991, + 47.037048986737766 + ], + [ + 71.7304474196736, + 46.842401251809314 + ], + [ + 71.84529010315727, + 47.037048986737766 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 47.037048986737766 + ], + [ + 71.7304474196736, + 46.842401251809314 + ], + [ + 71.96013278664094, + 46.842401251809314 + ], + [ + 71.84529010315727, + 47.037048986737766 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 47.037048986737766 + ], + [ + 71.96013278664094, + 46.842401251809314 + ], + [ + 72.07497547012463, + 47.037048986737766 + ], + [ + 71.84529010315727, + 47.037048986737766 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 47.42634445659467 + ], + [ + 72.07497547012463, + 47.42634445659467 + ], + [ + 71.96013278664094, + 47.62099219152312 + ], + [ + 71.84529010315727, + 47.42634445659467 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 47.42634445659467 + ], + [ + 71.96013278664094, + 47.62099219152312 + ], + [ + 71.7304474196736, + 47.62099219152312 + ], + [ + 71.84529010315727, + 47.42634445659467 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 47.42634445659467 + ], + [ + 71.7304474196736, + 47.62099219152312 + ], + [ + 71.61560473618991, + 47.42634445659467 + ], + [ + 71.84529010315727, + 47.42634445659467 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 47.42634445659467 + ], + [ + 71.61560473618991, + 47.42634445659467 + ], + [ + 71.7304474196736, + 47.23169672166622 + ], + [ + 71.84529010315727, + 47.42634445659467 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 47.42634445659467 + ], + [ + 71.7304474196736, + 47.23169672166622 + ], + [ + 71.96013278664094, + 47.23169672166622 + ], + [ + 71.84529010315727, + 47.42634445659467 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 47.42634445659467 + ], + [ + 71.96013278664094, + 47.23169672166622 + ], + [ + 72.07497547012463, + 47.42634445659467 + ], + [ + 71.84529010315727, + 47.42634445659467 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 47.81563992645159 + ], + [ + 72.07497547012463, + 47.81563992645159 + ], + [ + 71.96013278664094, + 48.01028766138004 + ], + [ + 71.84529010315727, + 47.81563992645159 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 47.81563992645159 + ], + [ + 71.96013278664094, + 48.01028766138004 + ], + [ + 71.7304474196736, + 48.01028766138004 + ], + [ + 71.84529010315727, + 47.81563992645159 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 47.81563992645159 + ], + [ + 71.7304474196736, + 48.01028766138004 + ], + [ + 71.61560473618991, + 47.81563992645159 + ], + [ + 71.84529010315727, + 47.81563992645159 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 47.81563992645159 + ], + [ + 71.61560473618991, + 47.81563992645159 + ], + [ + 71.7304474196736, + 47.620992191523136 + ], + [ + 71.84529010315727, + 47.81563992645159 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 47.81563992645159 + ], + [ + 71.7304474196736, + 47.620992191523136 + ], + [ + 71.96013278664094, + 47.620992191523136 + ], + [ + 71.84529010315727, + 47.81563992645159 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.84529010315727, + 47.81563992645159 + ], + [ + 71.96013278664094, + 47.620992191523136 + ], + [ + 72.07497547012463, + 47.81563992645159 + ], + [ + 71.84529010315727, + 47.81563992645159 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 11.805808964687746 + ], + [ + 72.41950352057566, + 11.805808964687746 + ], + [ + 72.30466083709197, + 12.0004566996162 + ], + [ + 72.1898181536083, + 11.805808964687746 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 11.805808964687746 + ], + [ + 72.30466083709197, + 12.0004566996162 + ], + [ + 72.07497547012463, + 12.0004566996162 + ], + [ + 72.1898181536083, + 11.805808964687746 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 11.805808964687746 + ], + [ + 72.07497547012463, + 12.0004566996162 + ], + [ + 71.96013278664094, + 11.805808964687746 + ], + [ + 72.1898181536083, + 11.805808964687746 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 11.805808964687746 + ], + [ + 71.96013278664094, + 11.805808964687746 + ], + [ + 72.07497547012463, + 11.611161229759292 + ], + [ + 72.1898181536083, + 11.805808964687746 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 11.805808964687746 + ], + [ + 72.07497547012463, + 11.611161229759292 + ], + [ + 72.30466083709197, + 11.611161229759292 + ], + [ + 72.1898181536083, + 11.805808964687746 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 11.805808964687746 + ], + [ + 72.30466083709197, + 11.611161229759292 + ], + [ + 72.41950352057566, + 11.805808964687746 + ], + [ + 72.1898181536083, + 11.805808964687746 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 12.195104434544652 + ], + [ + 72.41950352057566, + 12.195104434544652 + ], + [ + 72.30466083709197, + 12.389752169473105 + ], + [ + 72.1898181536083, + 12.195104434544652 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 12.195104434544652 + ], + [ + 72.30466083709197, + 12.389752169473105 + ], + [ + 72.07497547012463, + 12.389752169473105 + ], + [ + 72.1898181536083, + 12.195104434544652 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 12.195104434544652 + ], + [ + 72.07497547012463, + 12.389752169473105 + ], + [ + 71.96013278664094, + 12.195104434544652 + ], + [ + 72.1898181536083, + 12.195104434544652 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 12.195104434544652 + ], + [ + 71.96013278664094, + 12.195104434544652 + ], + [ + 72.07497547012463, + 12.000456699616198 + ], + [ + 72.1898181536083, + 12.195104434544652 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 12.195104434544652 + ], + [ + 72.07497547012463, + 12.000456699616198 + ], + [ + 72.30466083709197, + 12.000456699616198 + ], + [ + 72.1898181536083, + 12.195104434544652 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 12.195104434544652 + ], + [ + 72.30466083709197, + 12.000456699616198 + ], + [ + 72.41950352057566, + 12.195104434544652 + ], + [ + 72.1898181536083, + 12.195104434544652 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 12.58439990440156 + ], + [ + 72.41950352057566, + 12.58439990440156 + ], + [ + 72.30466083709197, + 12.779047639330013 + ], + [ + 72.1898181536083, + 12.58439990440156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 12.58439990440156 + ], + [ + 72.30466083709197, + 12.779047639330013 + ], + [ + 72.07497547012463, + 12.779047639330013 + ], + [ + 72.1898181536083, + 12.58439990440156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 12.58439990440156 + ], + [ + 72.07497547012463, + 12.779047639330013 + ], + [ + 71.96013278664094, + 12.58439990440156 + ], + [ + 72.1898181536083, + 12.58439990440156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 12.58439990440156 + ], + [ + 71.96013278664094, + 12.58439990440156 + ], + [ + 72.07497547012463, + 12.389752169473105 + ], + [ + 72.1898181536083, + 12.58439990440156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 12.58439990440156 + ], + [ + 72.07497547012463, + 12.389752169473105 + ], + [ + 72.30466083709197, + 12.389752169473105 + ], + [ + 72.1898181536083, + 12.58439990440156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 12.58439990440156 + ], + [ + 72.30466083709197, + 12.389752169473105 + ], + [ + 72.41950352057566, + 12.58439990440156 + ], + [ + 72.1898181536083, + 12.58439990440156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 12.973695374258465 + ], + [ + 72.41950352057566, + 12.973695374258465 + ], + [ + 72.30466083709197, + 13.16834310918692 + ], + [ + 72.1898181536083, + 12.973695374258465 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 12.973695374258465 + ], + [ + 72.30466083709197, + 13.16834310918692 + ], + [ + 72.07497547012463, + 13.16834310918692 + ], + [ + 72.1898181536083, + 12.973695374258465 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 12.973695374258465 + ], + [ + 72.07497547012463, + 13.16834310918692 + ], + [ + 71.96013278664094, + 12.973695374258465 + ], + [ + 72.1898181536083, + 12.973695374258465 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 12.973695374258465 + ], + [ + 71.96013278664094, + 12.973695374258465 + ], + [ + 72.07497547012463, + 12.779047639330011 + ], + [ + 72.1898181536083, + 12.973695374258465 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 12.973695374258465 + ], + [ + 72.07497547012463, + 12.779047639330011 + ], + [ + 72.30466083709197, + 12.779047639330011 + ], + [ + 72.1898181536083, + 12.973695374258465 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 12.973695374258465 + ], + [ + 72.30466083709197, + 12.779047639330011 + ], + [ + 72.41950352057566, + 12.973695374258465 + ], + [ + 72.1898181536083, + 12.973695374258465 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 13.362990844115371 + ], + [ + 72.41950352057566, + 13.362990844115371 + ], + [ + 72.30466083709197, + 13.557638579043825 + ], + [ + 72.1898181536083, + 13.362990844115371 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 13.362990844115371 + ], + [ + 72.30466083709197, + 13.557638579043825 + ], + [ + 72.07497547012463, + 13.557638579043825 + ], + [ + 72.1898181536083, + 13.362990844115371 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 13.362990844115371 + ], + [ + 72.07497547012463, + 13.557638579043825 + ], + [ + 71.96013278664094, + 13.362990844115371 + ], + [ + 72.1898181536083, + 13.362990844115371 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 13.362990844115371 + ], + [ + 71.96013278664094, + 13.362990844115371 + ], + [ + 72.07497547012463, + 13.168343109186917 + ], + [ + 72.1898181536083, + 13.362990844115371 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 13.362990844115371 + ], + [ + 72.07497547012463, + 13.168343109186917 + ], + [ + 72.30466083709197, + 13.168343109186917 + ], + [ + 72.1898181536083, + 13.362990844115371 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 13.362990844115371 + ], + [ + 72.30466083709197, + 13.168343109186917 + ], + [ + 72.41950352057566, + 13.362990844115371 + ], + [ + 72.1898181536083, + 13.362990844115371 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 13.752286313972277 + ], + [ + 72.41950352057566, + 13.752286313972277 + ], + [ + 72.30466083709197, + 13.946934048900731 + ], + [ + 72.1898181536083, + 13.752286313972277 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 13.752286313972277 + ], + [ + 72.30466083709197, + 13.946934048900731 + ], + [ + 72.07497547012463, + 13.946934048900731 + ], + [ + 72.1898181536083, + 13.752286313972277 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 13.752286313972277 + ], + [ + 72.07497547012463, + 13.946934048900731 + ], + [ + 71.96013278664094, + 13.752286313972277 + ], + [ + 72.1898181536083, + 13.752286313972277 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 13.752286313972277 + ], + [ + 71.96013278664094, + 13.752286313972277 + ], + [ + 72.07497547012463, + 13.557638579043823 + ], + [ + 72.1898181536083, + 13.752286313972277 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 13.752286313972277 + ], + [ + 72.07497547012463, + 13.557638579043823 + ], + [ + 72.30466083709197, + 13.557638579043823 + ], + [ + 72.1898181536083, + 13.752286313972277 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 13.752286313972277 + ], + [ + 72.30466083709197, + 13.557638579043823 + ], + [ + 72.41950352057566, + 13.752286313972277 + ], + [ + 72.1898181536083, + 13.752286313972277 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 14.141581783829183 + ], + [ + 72.41950352057566, + 14.141581783829183 + ], + [ + 72.30466083709197, + 14.336229518757637 + ], + [ + 72.1898181536083, + 14.141581783829183 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 14.141581783829183 + ], + [ + 72.30466083709197, + 14.336229518757637 + ], + [ + 72.07497547012463, + 14.336229518757637 + ], + [ + 72.1898181536083, + 14.141581783829183 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 14.141581783829183 + ], + [ + 72.07497547012463, + 14.336229518757637 + ], + [ + 71.96013278664094, + 14.141581783829183 + ], + [ + 72.1898181536083, + 14.141581783829183 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 14.141581783829183 + ], + [ + 71.96013278664094, + 14.141581783829183 + ], + [ + 72.07497547012463, + 13.94693404890073 + ], + [ + 72.1898181536083, + 14.141581783829183 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 14.141581783829183 + ], + [ + 72.07497547012463, + 13.94693404890073 + ], + [ + 72.30466083709197, + 13.94693404890073 + ], + [ + 72.1898181536083, + 14.141581783829183 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 14.141581783829183 + ], + [ + 72.30466083709197, + 13.94693404890073 + ], + [ + 72.41950352057566, + 14.141581783829183 + ], + [ + 72.1898181536083, + 14.141581783829183 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 14.530877253686091 + ], + [ + 72.41950352057566, + 14.530877253686091 + ], + [ + 72.30466083709197, + 14.725524988614545 + ], + [ + 72.1898181536083, + 14.530877253686091 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 14.530877253686091 + ], + [ + 72.30466083709197, + 14.725524988614545 + ], + [ + 72.07497547012463, + 14.725524988614545 + ], + [ + 72.1898181536083, + 14.530877253686091 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 14.530877253686091 + ], + [ + 72.07497547012463, + 14.725524988614545 + ], + [ + 71.96013278664094, + 14.530877253686091 + ], + [ + 72.1898181536083, + 14.530877253686091 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 14.530877253686091 + ], + [ + 71.96013278664094, + 14.530877253686091 + ], + [ + 72.07497547012463, + 14.336229518757637 + ], + [ + 72.1898181536083, + 14.530877253686091 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 14.530877253686091 + ], + [ + 72.07497547012463, + 14.336229518757637 + ], + [ + 72.30466083709197, + 14.336229518757637 + ], + [ + 72.1898181536083, + 14.530877253686091 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 14.530877253686091 + ], + [ + 72.30466083709197, + 14.336229518757637 + ], + [ + 72.41950352057566, + 14.530877253686091 + ], + [ + 72.1898181536083, + 14.530877253686091 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 14.920172723542997 + ], + [ + 72.41950352057566, + 14.920172723542997 + ], + [ + 72.30466083709197, + 15.114820458471451 + ], + [ + 72.1898181536083, + 14.920172723542997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 14.920172723542997 + ], + [ + 72.30466083709197, + 15.114820458471451 + ], + [ + 72.07497547012463, + 15.114820458471451 + ], + [ + 72.1898181536083, + 14.920172723542997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 14.920172723542997 + ], + [ + 72.07497547012463, + 15.114820458471451 + ], + [ + 71.96013278664094, + 14.920172723542997 + ], + [ + 72.1898181536083, + 14.920172723542997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 14.920172723542997 + ], + [ + 71.96013278664094, + 14.920172723542997 + ], + [ + 72.07497547012463, + 14.725524988614543 + ], + [ + 72.1898181536083, + 14.920172723542997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 14.920172723542997 + ], + [ + 72.07497547012463, + 14.725524988614543 + ], + [ + 72.30466083709197, + 14.725524988614543 + ], + [ + 72.1898181536083, + 14.920172723542997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 14.920172723542997 + ], + [ + 72.30466083709197, + 14.725524988614543 + ], + [ + 72.41950352057566, + 14.920172723542997 + ], + [ + 72.1898181536083, + 14.920172723542997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 15.309468193399903 + ], + [ + 72.41950352057566, + 15.309468193399903 + ], + [ + 72.30466083709197, + 15.504115928328357 + ], + [ + 72.1898181536083, + 15.309468193399903 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 15.309468193399903 + ], + [ + 72.30466083709197, + 15.504115928328357 + ], + [ + 72.07497547012463, + 15.504115928328357 + ], + [ + 72.1898181536083, + 15.309468193399903 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 15.309468193399903 + ], + [ + 72.07497547012463, + 15.504115928328357 + ], + [ + 71.96013278664094, + 15.309468193399903 + ], + [ + 72.1898181536083, + 15.309468193399903 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 15.309468193399903 + ], + [ + 71.96013278664094, + 15.309468193399903 + ], + [ + 72.07497547012463, + 15.11482045847145 + ], + [ + 72.1898181536083, + 15.309468193399903 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 15.309468193399903 + ], + [ + 72.07497547012463, + 15.11482045847145 + ], + [ + 72.30466083709197, + 15.11482045847145 + ], + [ + 72.1898181536083, + 15.309468193399903 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 15.309468193399903 + ], + [ + 72.30466083709197, + 15.11482045847145 + ], + [ + 72.41950352057566, + 15.309468193399903 + ], + [ + 72.1898181536083, + 15.309468193399903 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 15.69876366325681 + ], + [ + 72.41950352057566, + 15.69876366325681 + ], + [ + 72.30466083709197, + 15.893411398185265 + ], + [ + 72.1898181536083, + 15.69876366325681 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 15.69876366325681 + ], + [ + 72.30466083709197, + 15.893411398185265 + ], + [ + 72.07497547012463, + 15.893411398185265 + ], + [ + 72.1898181536083, + 15.69876366325681 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 15.69876366325681 + ], + [ + 72.07497547012463, + 15.893411398185265 + ], + [ + 71.96013278664094, + 15.69876366325681 + ], + [ + 72.1898181536083, + 15.69876366325681 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 15.69876366325681 + ], + [ + 71.96013278664094, + 15.69876366325681 + ], + [ + 72.07497547012463, + 15.504115928328357 + ], + [ + 72.1898181536083, + 15.69876366325681 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 15.69876366325681 + ], + [ + 72.07497547012463, + 15.504115928328357 + ], + [ + 72.30466083709197, + 15.504115928328357 + ], + [ + 72.1898181536083, + 15.69876366325681 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 15.69876366325681 + ], + [ + 72.30466083709197, + 15.504115928328357 + ], + [ + 72.41950352057566, + 15.69876366325681 + ], + [ + 72.1898181536083, + 15.69876366325681 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 16.088059133113717 + ], + [ + 72.41950352057566, + 16.088059133113717 + ], + [ + 72.30466083709197, + 16.28270686804217 + ], + [ + 72.1898181536083, + 16.088059133113717 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 16.088059133113717 + ], + [ + 72.30466083709197, + 16.28270686804217 + ], + [ + 72.07497547012463, + 16.28270686804217 + ], + [ + 72.1898181536083, + 16.088059133113717 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 16.088059133113717 + ], + [ + 72.07497547012463, + 16.28270686804217 + ], + [ + 71.96013278664094, + 16.088059133113717 + ], + [ + 72.1898181536083, + 16.088059133113717 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 16.088059133113717 + ], + [ + 71.96013278664094, + 16.088059133113717 + ], + [ + 72.07497547012463, + 15.893411398185263 + ], + [ + 72.1898181536083, + 16.088059133113717 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 16.088059133113717 + ], + [ + 72.07497547012463, + 15.893411398185263 + ], + [ + 72.30466083709197, + 15.893411398185263 + ], + [ + 72.1898181536083, + 16.088059133113717 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 16.088059133113717 + ], + [ + 72.30466083709197, + 15.893411398185263 + ], + [ + 72.41950352057566, + 16.088059133113717 + ], + [ + 72.1898181536083, + 16.088059133113717 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 16.477354602970625 + ], + [ + 72.41950352057566, + 16.477354602970625 + ], + [ + 72.30466083709197, + 16.672002337899077 + ], + [ + 72.1898181536083, + 16.477354602970625 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 16.477354602970625 + ], + [ + 72.30466083709197, + 16.672002337899077 + ], + [ + 72.07497547012463, + 16.672002337899077 + ], + [ + 72.1898181536083, + 16.477354602970625 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 16.477354602970625 + ], + [ + 72.07497547012463, + 16.672002337899077 + ], + [ + 71.96013278664094, + 16.477354602970625 + ], + [ + 72.1898181536083, + 16.477354602970625 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 16.477354602970625 + ], + [ + 71.96013278664094, + 16.477354602970625 + ], + [ + 72.07497547012463, + 16.282706868042172 + ], + [ + 72.1898181536083, + 16.477354602970625 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 16.477354602970625 + ], + [ + 72.07497547012463, + 16.282706868042172 + ], + [ + 72.30466083709197, + 16.282706868042172 + ], + [ + 72.1898181536083, + 16.477354602970625 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 16.477354602970625 + ], + [ + 72.30466083709197, + 16.282706868042172 + ], + [ + 72.41950352057566, + 16.477354602970625 + ], + [ + 72.1898181536083, + 16.477354602970625 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 16.86665007282753 + ], + [ + 72.41950352057566, + 16.86665007282753 + ], + [ + 72.30466083709197, + 17.06129780775598 + ], + [ + 72.1898181536083, + 16.86665007282753 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 16.86665007282753 + ], + [ + 72.30466083709197, + 17.06129780775598 + ], + [ + 72.07497547012463, + 17.06129780775598 + ], + [ + 72.1898181536083, + 16.86665007282753 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 16.86665007282753 + ], + [ + 72.07497547012463, + 17.06129780775598 + ], + [ + 71.96013278664094, + 16.86665007282753 + ], + [ + 72.1898181536083, + 16.86665007282753 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 16.86665007282753 + ], + [ + 71.96013278664094, + 16.86665007282753 + ], + [ + 72.07497547012463, + 16.672002337899077 + ], + [ + 72.1898181536083, + 16.86665007282753 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 16.86665007282753 + ], + [ + 72.07497547012463, + 16.672002337899077 + ], + [ + 72.30466083709197, + 16.672002337899077 + ], + [ + 72.1898181536083, + 16.86665007282753 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 16.86665007282753 + ], + [ + 72.30466083709197, + 16.672002337899077 + ], + [ + 72.41950352057566, + 16.86665007282753 + ], + [ + 72.1898181536083, + 16.86665007282753 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 17.255945542684437 + ], + [ + 72.41950352057566, + 17.255945542684437 + ], + [ + 72.30466083709197, + 17.45059327761289 + ], + [ + 72.1898181536083, + 17.255945542684437 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 17.255945542684437 + ], + [ + 72.30466083709197, + 17.45059327761289 + ], + [ + 72.07497547012463, + 17.45059327761289 + ], + [ + 72.1898181536083, + 17.255945542684437 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 17.255945542684437 + ], + [ + 72.07497547012463, + 17.45059327761289 + ], + [ + 71.96013278664094, + 17.255945542684437 + ], + [ + 72.1898181536083, + 17.255945542684437 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 17.255945542684437 + ], + [ + 71.96013278664094, + 17.255945542684437 + ], + [ + 72.07497547012463, + 17.061297807755984 + ], + [ + 72.1898181536083, + 17.255945542684437 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 17.255945542684437 + ], + [ + 72.07497547012463, + 17.061297807755984 + ], + [ + 72.30466083709197, + 17.061297807755984 + ], + [ + 72.1898181536083, + 17.255945542684437 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 17.255945542684437 + ], + [ + 72.30466083709197, + 17.061297807755984 + ], + [ + 72.41950352057566, + 17.255945542684437 + ], + [ + 72.1898181536083, + 17.255945542684437 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 17.64524101254134 + ], + [ + 72.41950352057566, + 17.64524101254134 + ], + [ + 72.30466083709197, + 17.839888747469793 + ], + [ + 72.1898181536083, + 17.64524101254134 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 17.64524101254134 + ], + [ + 72.30466083709197, + 17.839888747469793 + ], + [ + 72.07497547012463, + 17.839888747469793 + ], + [ + 72.1898181536083, + 17.64524101254134 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 17.64524101254134 + ], + [ + 72.07497547012463, + 17.839888747469793 + ], + [ + 71.96013278664094, + 17.64524101254134 + ], + [ + 72.1898181536083, + 17.64524101254134 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 17.64524101254134 + ], + [ + 71.96013278664094, + 17.64524101254134 + ], + [ + 72.07497547012463, + 17.45059327761289 + ], + [ + 72.1898181536083, + 17.64524101254134 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 17.64524101254134 + ], + [ + 72.07497547012463, + 17.45059327761289 + ], + [ + 72.30466083709197, + 17.45059327761289 + ], + [ + 72.1898181536083, + 17.64524101254134 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 17.64524101254134 + ], + [ + 72.30466083709197, + 17.45059327761289 + ], + [ + 72.41950352057566, + 17.64524101254134 + ], + [ + 72.1898181536083, + 17.64524101254134 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 18.03453648239825 + ], + [ + 72.41950352057566, + 18.03453648239825 + ], + [ + 72.30466083709197, + 18.2291842173267 + ], + [ + 72.1898181536083, + 18.03453648239825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 18.03453648239825 + ], + [ + 72.30466083709197, + 18.2291842173267 + ], + [ + 72.07497547012463, + 18.2291842173267 + ], + [ + 72.1898181536083, + 18.03453648239825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 18.03453648239825 + ], + [ + 72.07497547012463, + 18.2291842173267 + ], + [ + 71.96013278664094, + 18.03453648239825 + ], + [ + 72.1898181536083, + 18.03453648239825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 18.03453648239825 + ], + [ + 71.96013278664094, + 18.03453648239825 + ], + [ + 72.07497547012463, + 17.839888747469796 + ], + [ + 72.1898181536083, + 18.03453648239825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 18.03453648239825 + ], + [ + 72.07497547012463, + 17.839888747469796 + ], + [ + 72.30466083709197, + 17.839888747469796 + ], + [ + 72.1898181536083, + 18.03453648239825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 18.03453648239825 + ], + [ + 72.30466083709197, + 17.839888747469796 + ], + [ + 72.41950352057566, + 18.03453648239825 + ], + [ + 72.1898181536083, + 18.03453648239825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 18.423831952255156 + ], + [ + 72.41950352057566, + 18.423831952255156 + ], + [ + 72.30466083709197, + 18.61847968718361 + ], + [ + 72.1898181536083, + 18.423831952255156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 18.423831952255156 + ], + [ + 72.30466083709197, + 18.61847968718361 + ], + [ + 72.07497547012463, + 18.61847968718361 + ], + [ + 72.1898181536083, + 18.423831952255156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 18.423831952255156 + ], + [ + 72.07497547012463, + 18.61847968718361 + ], + [ + 71.96013278664094, + 18.423831952255156 + ], + [ + 72.1898181536083, + 18.423831952255156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 18.423831952255156 + ], + [ + 71.96013278664094, + 18.423831952255156 + ], + [ + 72.07497547012463, + 18.229184217326704 + ], + [ + 72.1898181536083, + 18.423831952255156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 18.423831952255156 + ], + [ + 72.07497547012463, + 18.229184217326704 + ], + [ + 72.30466083709197, + 18.229184217326704 + ], + [ + 72.1898181536083, + 18.423831952255156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 18.423831952255156 + ], + [ + 72.30466083709197, + 18.229184217326704 + ], + [ + 72.41950352057566, + 18.423831952255156 + ], + [ + 72.1898181536083, + 18.423831952255156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 18.81312742211206 + ], + [ + 72.41950352057566, + 18.81312742211206 + ], + [ + 72.30466083709197, + 19.007775157040513 + ], + [ + 72.1898181536083, + 18.81312742211206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 18.81312742211206 + ], + [ + 72.30466083709197, + 19.007775157040513 + ], + [ + 72.07497547012463, + 19.007775157040513 + ], + [ + 72.1898181536083, + 18.81312742211206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 18.81312742211206 + ], + [ + 72.07497547012463, + 19.007775157040513 + ], + [ + 71.96013278664094, + 18.81312742211206 + ], + [ + 72.1898181536083, + 18.81312742211206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 18.81312742211206 + ], + [ + 71.96013278664094, + 18.81312742211206 + ], + [ + 72.07497547012463, + 18.61847968718361 + ], + [ + 72.1898181536083, + 18.81312742211206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 18.81312742211206 + ], + [ + 72.07497547012463, + 18.61847968718361 + ], + [ + 72.30466083709197, + 18.61847968718361 + ], + [ + 72.1898181536083, + 18.81312742211206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 18.81312742211206 + ], + [ + 72.30466083709197, + 18.61847968718361 + ], + [ + 72.41950352057566, + 18.81312742211206 + ], + [ + 72.1898181536083, + 18.81312742211206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 19.20242289196897 + ], + [ + 72.41950352057566, + 19.20242289196897 + ], + [ + 72.30466083709197, + 19.39707062689742 + ], + [ + 72.1898181536083, + 19.20242289196897 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 19.20242289196897 + ], + [ + 72.30466083709197, + 19.39707062689742 + ], + [ + 72.07497547012463, + 19.39707062689742 + ], + [ + 72.1898181536083, + 19.20242289196897 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 19.20242289196897 + ], + [ + 72.07497547012463, + 19.39707062689742 + ], + [ + 71.96013278664094, + 19.20242289196897 + ], + [ + 72.1898181536083, + 19.20242289196897 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 19.20242289196897 + ], + [ + 71.96013278664094, + 19.20242289196897 + ], + [ + 72.07497547012463, + 19.007775157040516 + ], + [ + 72.1898181536083, + 19.20242289196897 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 19.20242289196897 + ], + [ + 72.07497547012463, + 19.007775157040516 + ], + [ + 72.30466083709197, + 19.007775157040516 + ], + [ + 72.1898181536083, + 19.20242289196897 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 19.20242289196897 + ], + [ + 72.30466083709197, + 19.007775157040516 + ], + [ + 72.41950352057566, + 19.20242289196897 + ], + [ + 72.1898181536083, + 19.20242289196897 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 19.591718361825876 + ], + [ + 72.41950352057566, + 19.591718361825876 + ], + [ + 72.30466083709197, + 19.78636609675433 + ], + [ + 72.1898181536083, + 19.591718361825876 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 19.591718361825876 + ], + [ + 72.30466083709197, + 19.78636609675433 + ], + [ + 72.07497547012463, + 19.78636609675433 + ], + [ + 72.1898181536083, + 19.591718361825876 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 19.591718361825876 + ], + [ + 72.07497547012463, + 19.78636609675433 + ], + [ + 71.96013278664094, + 19.591718361825876 + ], + [ + 72.1898181536083, + 19.591718361825876 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 19.591718361825876 + ], + [ + 71.96013278664094, + 19.591718361825876 + ], + [ + 72.07497547012463, + 19.397070626897424 + ], + [ + 72.1898181536083, + 19.591718361825876 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 19.591718361825876 + ], + [ + 72.07497547012463, + 19.397070626897424 + ], + [ + 72.30466083709197, + 19.397070626897424 + ], + [ + 72.1898181536083, + 19.591718361825876 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 19.591718361825876 + ], + [ + 72.30466083709197, + 19.397070626897424 + ], + [ + 72.41950352057566, + 19.591718361825876 + ], + [ + 72.1898181536083, + 19.591718361825876 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 19.98101383168278 + ], + [ + 72.41950352057566, + 19.98101383168278 + ], + [ + 72.30466083709197, + 20.175661566611232 + ], + [ + 72.1898181536083, + 19.98101383168278 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 19.98101383168278 + ], + [ + 72.30466083709197, + 20.175661566611232 + ], + [ + 72.07497547012463, + 20.175661566611232 + ], + [ + 72.1898181536083, + 19.98101383168278 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 19.98101383168278 + ], + [ + 72.07497547012463, + 20.175661566611232 + ], + [ + 71.96013278664094, + 19.98101383168278 + ], + [ + 72.1898181536083, + 19.98101383168278 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 19.98101383168278 + ], + [ + 71.96013278664094, + 19.98101383168278 + ], + [ + 72.07497547012463, + 19.78636609675433 + ], + [ + 72.1898181536083, + 19.98101383168278 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 19.98101383168278 + ], + [ + 72.07497547012463, + 19.78636609675433 + ], + [ + 72.30466083709197, + 19.78636609675433 + ], + [ + 72.1898181536083, + 19.98101383168278 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 19.98101383168278 + ], + [ + 72.30466083709197, + 19.78636609675433 + ], + [ + 72.41950352057566, + 19.98101383168278 + ], + [ + 72.1898181536083, + 19.98101383168278 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 20.370309301539685 + ], + [ + 72.41950352057566, + 20.370309301539685 + ], + [ + 72.30466083709197, + 20.564957036468137 + ], + [ + 72.1898181536083, + 20.370309301539685 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 20.370309301539685 + ], + [ + 72.30466083709197, + 20.564957036468137 + ], + [ + 72.07497547012463, + 20.564957036468137 + ], + [ + 72.1898181536083, + 20.370309301539685 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 20.370309301539685 + ], + [ + 72.07497547012463, + 20.564957036468137 + ], + [ + 71.96013278664094, + 20.370309301539685 + ], + [ + 72.1898181536083, + 20.370309301539685 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 20.370309301539685 + ], + [ + 71.96013278664094, + 20.370309301539685 + ], + [ + 72.07497547012463, + 20.175661566611232 + ], + [ + 72.1898181536083, + 20.370309301539685 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 20.370309301539685 + ], + [ + 72.07497547012463, + 20.175661566611232 + ], + [ + 72.30466083709197, + 20.175661566611232 + ], + [ + 72.1898181536083, + 20.370309301539685 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 20.370309301539685 + ], + [ + 72.30466083709197, + 20.175661566611232 + ], + [ + 72.41950352057566, + 20.370309301539685 + ], + [ + 72.1898181536083, + 20.370309301539685 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 20.759604771396592 + ], + [ + 72.41950352057566, + 20.759604771396592 + ], + [ + 72.30466083709197, + 20.954252506325044 + ], + [ + 72.1898181536083, + 20.759604771396592 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 20.759604771396592 + ], + [ + 72.30466083709197, + 20.954252506325044 + ], + [ + 72.07497547012463, + 20.954252506325044 + ], + [ + 72.1898181536083, + 20.759604771396592 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 20.759604771396592 + ], + [ + 72.07497547012463, + 20.954252506325044 + ], + [ + 71.96013278664094, + 20.759604771396592 + ], + [ + 72.1898181536083, + 20.759604771396592 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 20.759604771396592 + ], + [ + 71.96013278664094, + 20.759604771396592 + ], + [ + 72.07497547012463, + 20.56495703646814 + ], + [ + 72.1898181536083, + 20.759604771396592 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 20.759604771396592 + ], + [ + 72.07497547012463, + 20.56495703646814 + ], + [ + 72.30466083709197, + 20.56495703646814 + ], + [ + 72.1898181536083, + 20.759604771396592 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 20.759604771396592 + ], + [ + 72.30466083709197, + 20.56495703646814 + ], + [ + 72.41950352057566, + 20.759604771396592 + ], + [ + 72.1898181536083, + 20.759604771396592 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 21.1489002412535 + ], + [ + 72.41950352057566, + 21.1489002412535 + ], + [ + 72.30466083709197, + 21.343547976181952 + ], + [ + 72.1898181536083, + 21.1489002412535 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 21.1489002412535 + ], + [ + 72.30466083709197, + 21.343547976181952 + ], + [ + 72.07497547012463, + 21.343547976181952 + ], + [ + 72.1898181536083, + 21.1489002412535 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 21.1489002412535 + ], + [ + 72.07497547012463, + 21.343547976181952 + ], + [ + 71.96013278664094, + 21.1489002412535 + ], + [ + 72.1898181536083, + 21.1489002412535 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 21.1489002412535 + ], + [ + 71.96013278664094, + 21.1489002412535 + ], + [ + 72.07497547012463, + 20.954252506325048 + ], + [ + 72.1898181536083, + 21.1489002412535 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 21.1489002412535 + ], + [ + 72.07497547012463, + 20.954252506325048 + ], + [ + 72.30466083709197, + 20.954252506325048 + ], + [ + 72.1898181536083, + 21.1489002412535 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 21.1489002412535 + ], + [ + 72.30466083709197, + 20.954252506325048 + ], + [ + 72.41950352057566, + 21.1489002412535 + ], + [ + 72.1898181536083, + 21.1489002412535 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 21.538195711110404 + ], + [ + 72.41950352057566, + 21.538195711110404 + ], + [ + 72.30466083709197, + 21.732843446038856 + ], + [ + 72.1898181536083, + 21.538195711110404 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 21.538195711110404 + ], + [ + 72.30466083709197, + 21.732843446038856 + ], + [ + 72.07497547012463, + 21.732843446038856 + ], + [ + 72.1898181536083, + 21.538195711110404 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 21.538195711110404 + ], + [ + 72.07497547012463, + 21.732843446038856 + ], + [ + 71.96013278664094, + 21.538195711110404 + ], + [ + 72.1898181536083, + 21.538195711110404 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 21.538195711110404 + ], + [ + 71.96013278664094, + 21.538195711110404 + ], + [ + 72.07497547012463, + 21.343547976181952 + ], + [ + 72.1898181536083, + 21.538195711110404 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 21.538195711110404 + ], + [ + 72.07497547012463, + 21.343547976181952 + ], + [ + 72.30466083709197, + 21.343547976181952 + ], + [ + 72.1898181536083, + 21.538195711110404 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 21.538195711110404 + ], + [ + 72.30466083709197, + 21.343547976181952 + ], + [ + 72.41950352057566, + 21.538195711110404 + ], + [ + 72.1898181536083, + 21.538195711110404 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 21.927491180967312 + ], + [ + 72.41950352057566, + 21.927491180967312 + ], + [ + 72.30466083709197, + 22.122138915895764 + ], + [ + 72.1898181536083, + 21.927491180967312 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 21.927491180967312 + ], + [ + 72.30466083709197, + 22.122138915895764 + ], + [ + 72.07497547012463, + 22.122138915895764 + ], + [ + 72.1898181536083, + 21.927491180967312 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 21.927491180967312 + ], + [ + 72.07497547012463, + 22.122138915895764 + ], + [ + 71.96013278664094, + 21.927491180967312 + ], + [ + 72.1898181536083, + 21.927491180967312 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 21.927491180967312 + ], + [ + 71.96013278664094, + 21.927491180967312 + ], + [ + 72.07497547012463, + 21.73284344603886 + ], + [ + 72.1898181536083, + 21.927491180967312 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 21.927491180967312 + ], + [ + 72.07497547012463, + 21.73284344603886 + ], + [ + 72.30466083709197, + 21.73284344603886 + ], + [ + 72.1898181536083, + 21.927491180967312 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 21.927491180967312 + ], + [ + 72.30466083709197, + 21.73284344603886 + ], + [ + 72.41950352057566, + 21.927491180967312 + ], + [ + 72.1898181536083, + 21.927491180967312 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 22.31678665082422 + ], + [ + 72.41950352057566, + 22.31678665082422 + ], + [ + 72.30466083709197, + 22.511434385752672 + ], + [ + 72.1898181536083, + 22.31678665082422 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 22.31678665082422 + ], + [ + 72.30466083709197, + 22.511434385752672 + ], + [ + 72.07497547012463, + 22.511434385752672 + ], + [ + 72.1898181536083, + 22.31678665082422 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 22.31678665082422 + ], + [ + 72.07497547012463, + 22.511434385752672 + ], + [ + 71.96013278664094, + 22.31678665082422 + ], + [ + 72.1898181536083, + 22.31678665082422 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 22.31678665082422 + ], + [ + 71.96013278664094, + 22.31678665082422 + ], + [ + 72.07497547012463, + 22.122138915895768 + ], + [ + 72.1898181536083, + 22.31678665082422 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 22.31678665082422 + ], + [ + 72.07497547012463, + 22.122138915895768 + ], + [ + 72.30466083709197, + 22.122138915895768 + ], + [ + 72.1898181536083, + 22.31678665082422 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 22.31678665082422 + ], + [ + 72.30466083709197, + 22.122138915895768 + ], + [ + 72.41950352057566, + 22.31678665082422 + ], + [ + 72.1898181536083, + 22.31678665082422 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 22.706082120681124 + ], + [ + 72.41950352057566, + 22.706082120681124 + ], + [ + 72.30466083709197, + 22.900729855609576 + ], + [ + 72.1898181536083, + 22.706082120681124 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 22.706082120681124 + ], + [ + 72.30466083709197, + 22.900729855609576 + ], + [ + 72.07497547012463, + 22.900729855609576 + ], + [ + 72.1898181536083, + 22.706082120681124 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 22.706082120681124 + ], + [ + 72.07497547012463, + 22.900729855609576 + ], + [ + 71.96013278664094, + 22.706082120681124 + ], + [ + 72.1898181536083, + 22.706082120681124 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 22.706082120681124 + ], + [ + 71.96013278664094, + 22.706082120681124 + ], + [ + 72.07497547012463, + 22.511434385752672 + ], + [ + 72.1898181536083, + 22.706082120681124 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 22.706082120681124 + ], + [ + 72.07497547012463, + 22.511434385752672 + ], + [ + 72.30466083709197, + 22.511434385752672 + ], + [ + 72.1898181536083, + 22.706082120681124 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 22.706082120681124 + ], + [ + 72.30466083709197, + 22.511434385752672 + ], + [ + 72.41950352057566, + 22.706082120681124 + ], + [ + 72.1898181536083, + 22.706082120681124 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 23.095377590538032 + ], + [ + 72.41950352057566, + 23.095377590538032 + ], + [ + 72.30466083709197, + 23.290025325466484 + ], + [ + 72.1898181536083, + 23.095377590538032 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 23.095377590538032 + ], + [ + 72.30466083709197, + 23.290025325466484 + ], + [ + 72.07497547012463, + 23.290025325466484 + ], + [ + 72.1898181536083, + 23.095377590538032 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 23.095377590538032 + ], + [ + 72.07497547012463, + 23.290025325466484 + ], + [ + 71.96013278664094, + 23.095377590538032 + ], + [ + 72.1898181536083, + 23.095377590538032 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 23.095377590538032 + ], + [ + 71.96013278664094, + 23.095377590538032 + ], + [ + 72.07497547012463, + 22.90072985560958 + ], + [ + 72.1898181536083, + 23.095377590538032 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 23.095377590538032 + ], + [ + 72.07497547012463, + 22.90072985560958 + ], + [ + 72.30466083709197, + 22.90072985560958 + ], + [ + 72.1898181536083, + 23.095377590538032 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 23.095377590538032 + ], + [ + 72.30466083709197, + 22.90072985560958 + ], + [ + 72.41950352057566, + 23.095377590538032 + ], + [ + 72.1898181536083, + 23.095377590538032 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 23.48467306039494 + ], + [ + 72.41950352057566, + 23.48467306039494 + ], + [ + 72.30466083709197, + 23.67932079532339 + ], + [ + 72.1898181536083, + 23.48467306039494 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 23.48467306039494 + ], + [ + 72.30466083709197, + 23.67932079532339 + ], + [ + 72.07497547012463, + 23.67932079532339 + ], + [ + 72.1898181536083, + 23.48467306039494 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 23.48467306039494 + ], + [ + 72.07497547012463, + 23.67932079532339 + ], + [ + 71.96013278664094, + 23.48467306039494 + ], + [ + 72.1898181536083, + 23.48467306039494 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 23.48467306039494 + ], + [ + 71.96013278664094, + 23.48467306039494 + ], + [ + 72.07497547012463, + 23.290025325466488 + ], + [ + 72.1898181536083, + 23.48467306039494 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 23.48467306039494 + ], + [ + 72.07497547012463, + 23.290025325466488 + ], + [ + 72.30466083709197, + 23.290025325466488 + ], + [ + 72.1898181536083, + 23.48467306039494 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 23.48467306039494 + ], + [ + 72.30466083709197, + 23.290025325466488 + ], + [ + 72.41950352057566, + 23.48467306039494 + ], + [ + 72.1898181536083, + 23.48467306039494 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 23.873968530251844 + ], + [ + 72.41950352057566, + 23.873968530251844 + ], + [ + 72.30466083709197, + 24.068616265180296 + ], + [ + 72.1898181536083, + 23.873968530251844 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 23.873968530251844 + ], + [ + 72.30466083709197, + 24.068616265180296 + ], + [ + 72.07497547012463, + 24.068616265180296 + ], + [ + 72.1898181536083, + 23.873968530251844 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 23.873968530251844 + ], + [ + 72.07497547012463, + 24.068616265180296 + ], + [ + 71.96013278664094, + 23.873968530251844 + ], + [ + 72.1898181536083, + 23.873968530251844 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 23.873968530251844 + ], + [ + 71.96013278664094, + 23.873968530251844 + ], + [ + 72.07497547012463, + 23.67932079532339 + ], + [ + 72.1898181536083, + 23.873968530251844 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 23.873968530251844 + ], + [ + 72.07497547012463, + 23.67932079532339 + ], + [ + 72.30466083709197, + 23.67932079532339 + ], + [ + 72.1898181536083, + 23.873968530251844 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 23.873968530251844 + ], + [ + 72.30466083709197, + 23.67932079532339 + ], + [ + 72.41950352057566, + 23.873968530251844 + ], + [ + 72.1898181536083, + 23.873968530251844 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 24.263264000108748 + ], + [ + 72.41950352057566, + 24.263264000108748 + ], + [ + 72.30466083709197, + 24.4579117350372 + ], + [ + 72.1898181536083, + 24.263264000108748 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 24.263264000108748 + ], + [ + 72.30466083709197, + 24.4579117350372 + ], + [ + 72.07497547012463, + 24.4579117350372 + ], + [ + 72.1898181536083, + 24.263264000108748 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 24.263264000108748 + ], + [ + 72.07497547012463, + 24.4579117350372 + ], + [ + 71.96013278664094, + 24.263264000108748 + ], + [ + 72.1898181536083, + 24.263264000108748 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 24.263264000108748 + ], + [ + 71.96013278664094, + 24.263264000108748 + ], + [ + 72.07497547012463, + 24.068616265180296 + ], + [ + 72.1898181536083, + 24.263264000108748 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 24.263264000108748 + ], + [ + 72.07497547012463, + 24.068616265180296 + ], + [ + 72.30466083709197, + 24.068616265180296 + ], + [ + 72.1898181536083, + 24.263264000108748 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 24.263264000108748 + ], + [ + 72.30466083709197, + 24.068616265180296 + ], + [ + 72.41950352057566, + 24.263264000108748 + ], + [ + 72.1898181536083, + 24.263264000108748 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 24.652559469965656 + ], + [ + 72.41950352057566, + 24.652559469965656 + ], + [ + 72.30466083709197, + 24.847207204894108 + ], + [ + 72.1898181536083, + 24.652559469965656 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 24.652559469965656 + ], + [ + 72.30466083709197, + 24.847207204894108 + ], + [ + 72.07497547012463, + 24.847207204894108 + ], + [ + 72.1898181536083, + 24.652559469965656 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 24.652559469965656 + ], + [ + 72.07497547012463, + 24.847207204894108 + ], + [ + 71.96013278664094, + 24.652559469965656 + ], + [ + 72.1898181536083, + 24.652559469965656 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 24.652559469965656 + ], + [ + 71.96013278664094, + 24.652559469965656 + ], + [ + 72.07497547012463, + 24.457911735037204 + ], + [ + 72.1898181536083, + 24.652559469965656 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 24.652559469965656 + ], + [ + 72.07497547012463, + 24.457911735037204 + ], + [ + 72.30466083709197, + 24.457911735037204 + ], + [ + 72.1898181536083, + 24.652559469965656 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 24.652559469965656 + ], + [ + 72.30466083709197, + 24.457911735037204 + ], + [ + 72.41950352057566, + 24.652559469965656 + ], + [ + 72.1898181536083, + 24.652559469965656 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 25.041854939822564 + ], + [ + 72.41950352057566, + 25.041854939822564 + ], + [ + 72.30466083709197, + 25.236502674751016 + ], + [ + 72.1898181536083, + 25.041854939822564 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 25.041854939822564 + ], + [ + 72.30466083709197, + 25.236502674751016 + ], + [ + 72.07497547012463, + 25.236502674751016 + ], + [ + 72.1898181536083, + 25.041854939822564 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 25.041854939822564 + ], + [ + 72.07497547012463, + 25.236502674751016 + ], + [ + 71.96013278664094, + 25.041854939822564 + ], + [ + 72.1898181536083, + 25.041854939822564 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 25.041854939822564 + ], + [ + 71.96013278664094, + 25.041854939822564 + ], + [ + 72.07497547012463, + 24.84720720489411 + ], + [ + 72.1898181536083, + 25.041854939822564 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 25.041854939822564 + ], + [ + 72.07497547012463, + 24.84720720489411 + ], + [ + 72.30466083709197, + 24.84720720489411 + ], + [ + 72.1898181536083, + 25.041854939822564 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 25.041854939822564 + ], + [ + 72.30466083709197, + 24.84720720489411 + ], + [ + 72.41950352057566, + 25.041854939822564 + ], + [ + 72.1898181536083, + 25.041854939822564 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 25.431150409679468 + ], + [ + 72.41950352057566, + 25.431150409679468 + ], + [ + 72.30466083709197, + 25.62579814460792 + ], + [ + 72.1898181536083, + 25.431150409679468 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 25.431150409679468 + ], + [ + 72.30466083709197, + 25.62579814460792 + ], + [ + 72.07497547012463, + 25.62579814460792 + ], + [ + 72.1898181536083, + 25.431150409679468 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 25.431150409679468 + ], + [ + 72.07497547012463, + 25.62579814460792 + ], + [ + 71.96013278664094, + 25.431150409679468 + ], + [ + 72.1898181536083, + 25.431150409679468 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 25.431150409679468 + ], + [ + 71.96013278664094, + 25.431150409679468 + ], + [ + 72.07497547012463, + 25.236502674751016 + ], + [ + 72.1898181536083, + 25.431150409679468 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 25.431150409679468 + ], + [ + 72.07497547012463, + 25.236502674751016 + ], + [ + 72.30466083709197, + 25.236502674751016 + ], + [ + 72.1898181536083, + 25.431150409679468 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 25.431150409679468 + ], + [ + 72.30466083709197, + 25.236502674751016 + ], + [ + 72.41950352057566, + 25.431150409679468 + ], + [ + 72.1898181536083, + 25.431150409679468 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 25.820445879536376 + ], + [ + 72.41950352057566, + 25.820445879536376 + ], + [ + 72.30466083709197, + 26.015093614464828 + ], + [ + 72.1898181536083, + 25.820445879536376 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 25.820445879536376 + ], + [ + 72.30466083709197, + 26.015093614464828 + ], + [ + 72.07497547012463, + 26.015093614464828 + ], + [ + 72.1898181536083, + 25.820445879536376 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 25.820445879536376 + ], + [ + 72.07497547012463, + 26.015093614464828 + ], + [ + 71.96013278664094, + 25.820445879536376 + ], + [ + 72.1898181536083, + 25.820445879536376 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 25.820445879536376 + ], + [ + 71.96013278664094, + 25.820445879536376 + ], + [ + 72.07497547012463, + 25.625798144607923 + ], + [ + 72.1898181536083, + 25.820445879536376 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 25.820445879536376 + ], + [ + 72.07497547012463, + 25.625798144607923 + ], + [ + 72.30466083709197, + 25.625798144607923 + ], + [ + 72.1898181536083, + 25.820445879536376 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 25.820445879536376 + ], + [ + 72.30466083709197, + 25.625798144607923 + ], + [ + 72.41950352057566, + 25.820445879536376 + ], + [ + 72.1898181536083, + 25.820445879536376 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 26.209741349393283 + ], + [ + 72.41950352057566, + 26.209741349393283 + ], + [ + 72.30466083709197, + 26.404389084321735 + ], + [ + 72.1898181536083, + 26.209741349393283 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 26.209741349393283 + ], + [ + 72.30466083709197, + 26.404389084321735 + ], + [ + 72.07497547012463, + 26.404389084321735 + ], + [ + 72.1898181536083, + 26.209741349393283 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 26.209741349393283 + ], + [ + 72.07497547012463, + 26.404389084321735 + ], + [ + 71.96013278664094, + 26.209741349393283 + ], + [ + 72.1898181536083, + 26.209741349393283 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 26.209741349393283 + ], + [ + 71.96013278664094, + 26.209741349393283 + ], + [ + 72.07497547012463, + 26.01509361446483 + ], + [ + 72.1898181536083, + 26.209741349393283 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 26.209741349393283 + ], + [ + 72.07497547012463, + 26.01509361446483 + ], + [ + 72.30466083709197, + 26.01509361446483 + ], + [ + 72.1898181536083, + 26.209741349393283 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 26.209741349393283 + ], + [ + 72.30466083709197, + 26.01509361446483 + ], + [ + 72.41950352057566, + 26.209741349393283 + ], + [ + 72.1898181536083, + 26.209741349393283 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 26.599036819250188 + ], + [ + 72.41950352057566, + 26.599036819250188 + ], + [ + 72.30466083709197, + 26.79368455417864 + ], + [ + 72.1898181536083, + 26.599036819250188 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 26.599036819250188 + ], + [ + 72.30466083709197, + 26.79368455417864 + ], + [ + 72.07497547012463, + 26.79368455417864 + ], + [ + 72.1898181536083, + 26.599036819250188 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 26.599036819250188 + ], + [ + 72.07497547012463, + 26.79368455417864 + ], + [ + 71.96013278664094, + 26.599036819250188 + ], + [ + 72.1898181536083, + 26.599036819250188 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 26.599036819250188 + ], + [ + 71.96013278664094, + 26.599036819250188 + ], + [ + 72.07497547012463, + 26.404389084321735 + ], + [ + 72.1898181536083, + 26.599036819250188 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 26.599036819250188 + ], + [ + 72.07497547012463, + 26.404389084321735 + ], + [ + 72.30466083709197, + 26.404389084321735 + ], + [ + 72.1898181536083, + 26.599036819250188 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 26.599036819250188 + ], + [ + 72.30466083709197, + 26.404389084321735 + ], + [ + 72.41950352057566, + 26.599036819250188 + ], + [ + 72.1898181536083, + 26.599036819250188 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 26.988332289107095 + ], + [ + 72.41950352057566, + 26.988332289107095 + ], + [ + 72.30466083709197, + 27.182980024035547 + ], + [ + 72.1898181536083, + 26.988332289107095 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 26.988332289107095 + ], + [ + 72.30466083709197, + 27.182980024035547 + ], + [ + 72.07497547012463, + 27.182980024035547 + ], + [ + 72.1898181536083, + 26.988332289107095 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 26.988332289107095 + ], + [ + 72.07497547012463, + 27.182980024035547 + ], + [ + 71.96013278664094, + 26.988332289107095 + ], + [ + 72.1898181536083, + 26.988332289107095 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 26.988332289107095 + ], + [ + 71.96013278664094, + 26.988332289107095 + ], + [ + 72.07497547012463, + 26.793684554178643 + ], + [ + 72.1898181536083, + 26.988332289107095 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 26.988332289107095 + ], + [ + 72.07497547012463, + 26.793684554178643 + ], + [ + 72.30466083709197, + 26.793684554178643 + ], + [ + 72.1898181536083, + 26.988332289107095 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 26.988332289107095 + ], + [ + 72.30466083709197, + 26.793684554178643 + ], + [ + 72.41950352057566, + 26.988332289107095 + ], + [ + 72.1898181536083, + 26.988332289107095 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 27.377627758964003 + ], + [ + 72.41950352057566, + 27.377627758964003 + ], + [ + 72.30466083709197, + 27.572275493892455 + ], + [ + 72.1898181536083, + 27.377627758964003 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 27.377627758964003 + ], + [ + 72.30466083709197, + 27.572275493892455 + ], + [ + 72.07497547012463, + 27.572275493892455 + ], + [ + 72.1898181536083, + 27.377627758964003 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 27.377627758964003 + ], + [ + 72.07497547012463, + 27.572275493892455 + ], + [ + 71.96013278664094, + 27.377627758964003 + ], + [ + 72.1898181536083, + 27.377627758964003 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 27.377627758964003 + ], + [ + 71.96013278664094, + 27.377627758964003 + ], + [ + 72.07497547012463, + 27.18298002403555 + ], + [ + 72.1898181536083, + 27.377627758964003 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 27.377627758964003 + ], + [ + 72.07497547012463, + 27.18298002403555 + ], + [ + 72.30466083709197, + 27.18298002403555 + ], + [ + 72.1898181536083, + 27.377627758964003 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 27.377627758964003 + ], + [ + 72.30466083709197, + 27.18298002403555 + ], + [ + 72.41950352057566, + 27.377627758964003 + ], + [ + 72.1898181536083, + 27.377627758964003 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 27.766923228820907 + ], + [ + 72.41950352057566, + 27.766923228820907 + ], + [ + 72.30466083709197, + 27.96157096374936 + ], + [ + 72.1898181536083, + 27.766923228820907 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 27.766923228820907 + ], + [ + 72.30466083709197, + 27.96157096374936 + ], + [ + 72.07497547012463, + 27.96157096374936 + ], + [ + 72.1898181536083, + 27.766923228820907 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 27.766923228820907 + ], + [ + 72.07497547012463, + 27.96157096374936 + ], + [ + 71.96013278664094, + 27.766923228820907 + ], + [ + 72.1898181536083, + 27.766923228820907 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 27.766923228820907 + ], + [ + 71.96013278664094, + 27.766923228820907 + ], + [ + 72.07497547012463, + 27.572275493892455 + ], + [ + 72.1898181536083, + 27.766923228820907 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 27.766923228820907 + ], + [ + 72.07497547012463, + 27.572275493892455 + ], + [ + 72.30466083709197, + 27.572275493892455 + ], + [ + 72.1898181536083, + 27.766923228820907 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 27.766923228820907 + ], + [ + 72.30466083709197, + 27.572275493892455 + ], + [ + 72.41950352057566, + 27.766923228820907 + ], + [ + 72.1898181536083, + 27.766923228820907 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 28.156218698677815 + ], + [ + 72.41950352057566, + 28.156218698677815 + ], + [ + 72.30466083709197, + 28.350866433606267 + ], + [ + 72.1898181536083, + 28.156218698677815 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 28.156218698677815 + ], + [ + 72.30466083709197, + 28.350866433606267 + ], + [ + 72.07497547012463, + 28.350866433606267 + ], + [ + 72.1898181536083, + 28.156218698677815 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 28.156218698677815 + ], + [ + 72.07497547012463, + 28.350866433606267 + ], + [ + 71.96013278664094, + 28.156218698677815 + ], + [ + 72.1898181536083, + 28.156218698677815 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 28.156218698677815 + ], + [ + 71.96013278664094, + 28.156218698677815 + ], + [ + 72.07497547012463, + 27.961570963749363 + ], + [ + 72.1898181536083, + 28.156218698677815 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 28.156218698677815 + ], + [ + 72.07497547012463, + 27.961570963749363 + ], + [ + 72.30466083709197, + 27.961570963749363 + ], + [ + 72.1898181536083, + 28.156218698677815 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 28.156218698677815 + ], + [ + 72.30466083709197, + 27.961570963749363 + ], + [ + 72.41950352057566, + 28.156218698677815 + ], + [ + 72.1898181536083, + 28.156218698677815 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 28.54551416853472 + ], + [ + 72.41950352057566, + 28.54551416853472 + ], + [ + 72.30466083709197, + 28.74016190346317 + ], + [ + 72.1898181536083, + 28.54551416853472 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 28.54551416853472 + ], + [ + 72.30466083709197, + 28.74016190346317 + ], + [ + 72.07497547012463, + 28.74016190346317 + ], + [ + 72.1898181536083, + 28.54551416853472 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 28.54551416853472 + ], + [ + 72.07497547012463, + 28.74016190346317 + ], + [ + 71.96013278664094, + 28.54551416853472 + ], + [ + 72.1898181536083, + 28.54551416853472 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 28.54551416853472 + ], + [ + 71.96013278664094, + 28.54551416853472 + ], + [ + 72.07497547012463, + 28.350866433606267 + ], + [ + 72.1898181536083, + 28.54551416853472 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 28.54551416853472 + ], + [ + 72.07497547012463, + 28.350866433606267 + ], + [ + 72.30466083709197, + 28.350866433606267 + ], + [ + 72.1898181536083, + 28.54551416853472 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 28.54551416853472 + ], + [ + 72.30466083709197, + 28.350866433606267 + ], + [ + 72.41950352057566, + 28.54551416853472 + ], + [ + 72.1898181536083, + 28.54551416853472 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 28.934809638391627 + ], + [ + 72.41950352057566, + 28.934809638391627 + ], + [ + 72.30466083709197, + 29.12945737332008 + ], + [ + 72.1898181536083, + 28.934809638391627 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 28.934809638391627 + ], + [ + 72.30466083709197, + 29.12945737332008 + ], + [ + 72.07497547012463, + 29.12945737332008 + ], + [ + 72.1898181536083, + 28.934809638391627 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 28.934809638391627 + ], + [ + 72.07497547012463, + 29.12945737332008 + ], + [ + 71.96013278664094, + 28.934809638391627 + ], + [ + 72.1898181536083, + 28.934809638391627 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 28.934809638391627 + ], + [ + 71.96013278664094, + 28.934809638391627 + ], + [ + 72.07497547012463, + 28.740161903463175 + ], + [ + 72.1898181536083, + 28.934809638391627 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 28.934809638391627 + ], + [ + 72.07497547012463, + 28.740161903463175 + ], + [ + 72.30466083709197, + 28.740161903463175 + ], + [ + 72.1898181536083, + 28.934809638391627 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 28.934809638391627 + ], + [ + 72.30466083709197, + 28.740161903463175 + ], + [ + 72.41950352057566, + 28.934809638391627 + ], + [ + 72.1898181536083, + 28.934809638391627 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 29.32410510824853 + ], + [ + 72.41950352057566, + 29.32410510824853 + ], + [ + 72.30466083709197, + 29.518752843176983 + ], + [ + 72.1898181536083, + 29.32410510824853 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 29.32410510824853 + ], + [ + 72.30466083709197, + 29.518752843176983 + ], + [ + 72.07497547012463, + 29.518752843176983 + ], + [ + 72.1898181536083, + 29.32410510824853 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 29.32410510824853 + ], + [ + 72.07497547012463, + 29.518752843176983 + ], + [ + 71.96013278664094, + 29.32410510824853 + ], + [ + 72.1898181536083, + 29.32410510824853 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 29.32410510824853 + ], + [ + 71.96013278664094, + 29.32410510824853 + ], + [ + 72.07497547012463, + 29.12945737332008 + ], + [ + 72.1898181536083, + 29.32410510824853 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 29.32410510824853 + ], + [ + 72.07497547012463, + 29.12945737332008 + ], + [ + 72.30466083709197, + 29.12945737332008 + ], + [ + 72.1898181536083, + 29.32410510824853 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 29.32410510824853 + ], + [ + 72.30466083709197, + 29.12945737332008 + ], + [ + 72.41950352057566, + 29.32410510824853 + ], + [ + 72.1898181536083, + 29.32410510824853 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 29.71340057810544 + ], + [ + 72.41950352057566, + 29.71340057810544 + ], + [ + 72.30466083709197, + 29.90804831303389 + ], + [ + 72.1898181536083, + 29.71340057810544 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 29.71340057810544 + ], + [ + 72.30466083709197, + 29.90804831303389 + ], + [ + 72.07497547012463, + 29.90804831303389 + ], + [ + 72.1898181536083, + 29.71340057810544 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 29.71340057810544 + ], + [ + 72.07497547012463, + 29.90804831303389 + ], + [ + 71.96013278664094, + 29.71340057810544 + ], + [ + 72.1898181536083, + 29.71340057810544 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 29.71340057810544 + ], + [ + 71.96013278664094, + 29.71340057810544 + ], + [ + 72.07497547012463, + 29.518752843176987 + ], + [ + 72.1898181536083, + 29.71340057810544 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 29.71340057810544 + ], + [ + 72.07497547012463, + 29.518752843176987 + ], + [ + 72.30466083709197, + 29.518752843176987 + ], + [ + 72.1898181536083, + 29.71340057810544 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 29.71340057810544 + ], + [ + 72.30466083709197, + 29.518752843176987 + ], + [ + 72.41950352057566, + 29.71340057810544 + ], + [ + 72.1898181536083, + 29.71340057810544 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 30.102696047962343 + ], + [ + 72.41950352057566, + 30.102696047962343 + ], + [ + 72.30466083709197, + 30.297343782890795 + ], + [ + 72.1898181536083, + 30.102696047962343 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 30.102696047962343 + ], + [ + 72.30466083709197, + 30.297343782890795 + ], + [ + 72.07497547012463, + 30.297343782890795 + ], + [ + 72.1898181536083, + 30.102696047962343 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 30.102696047962343 + ], + [ + 72.07497547012463, + 30.297343782890795 + ], + [ + 71.96013278664094, + 30.102696047962343 + ], + [ + 72.1898181536083, + 30.102696047962343 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 30.102696047962343 + ], + [ + 71.96013278664094, + 30.102696047962343 + ], + [ + 72.07497547012463, + 29.90804831303389 + ], + [ + 72.1898181536083, + 30.102696047962343 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 30.102696047962343 + ], + [ + 72.07497547012463, + 29.90804831303389 + ], + [ + 72.30466083709197, + 29.90804831303389 + ], + [ + 72.1898181536083, + 30.102696047962343 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 30.102696047962343 + ], + [ + 72.30466083709197, + 29.90804831303389 + ], + [ + 72.41950352057566, + 30.102696047962343 + ], + [ + 72.1898181536083, + 30.102696047962343 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 30.49199151781925 + ], + [ + 72.41950352057566, + 30.49199151781925 + ], + [ + 72.30466083709197, + 30.686639252747703 + ], + [ + 72.1898181536083, + 30.49199151781925 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 30.49199151781925 + ], + [ + 72.30466083709197, + 30.686639252747703 + ], + [ + 72.07497547012463, + 30.686639252747703 + ], + [ + 72.1898181536083, + 30.49199151781925 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 30.49199151781925 + ], + [ + 72.07497547012463, + 30.686639252747703 + ], + [ + 71.96013278664094, + 30.49199151781925 + ], + [ + 72.1898181536083, + 30.49199151781925 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 30.49199151781925 + ], + [ + 71.96013278664094, + 30.49199151781925 + ], + [ + 72.07497547012463, + 30.2973437828908 + ], + [ + 72.1898181536083, + 30.49199151781925 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 30.49199151781925 + ], + [ + 72.07497547012463, + 30.2973437828908 + ], + [ + 72.30466083709197, + 30.2973437828908 + ], + [ + 72.1898181536083, + 30.49199151781925 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 30.49199151781925 + ], + [ + 72.30466083709197, + 30.2973437828908 + ], + [ + 72.41950352057566, + 30.49199151781925 + ], + [ + 72.1898181536083, + 30.49199151781925 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 30.88128698767616 + ], + [ + 72.41950352057566, + 30.88128698767616 + ], + [ + 72.30466083709197, + 31.07593472260461 + ], + [ + 72.1898181536083, + 30.88128698767616 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 30.88128698767616 + ], + [ + 72.30466083709197, + 31.07593472260461 + ], + [ + 72.07497547012463, + 31.07593472260461 + ], + [ + 72.1898181536083, + 30.88128698767616 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 30.88128698767616 + ], + [ + 72.07497547012463, + 31.07593472260461 + ], + [ + 71.96013278664094, + 30.88128698767616 + ], + [ + 72.1898181536083, + 30.88128698767616 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 30.88128698767616 + ], + [ + 71.96013278664094, + 30.88128698767616 + ], + [ + 72.07497547012463, + 30.686639252747707 + ], + [ + 72.1898181536083, + 30.88128698767616 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 30.88128698767616 + ], + [ + 72.07497547012463, + 30.686639252747707 + ], + [ + 72.30466083709197, + 30.686639252747707 + ], + [ + 72.1898181536083, + 30.88128698767616 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 30.88128698767616 + ], + [ + 72.30466083709197, + 30.686639252747707 + ], + [ + 72.41950352057566, + 30.88128698767616 + ], + [ + 72.1898181536083, + 30.88128698767616 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 31.270582457533063 + ], + [ + 72.41950352057566, + 31.270582457533063 + ], + [ + 72.30466083709197, + 31.465230192461515 + ], + [ + 72.1898181536083, + 31.270582457533063 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 31.270582457533063 + ], + [ + 72.30466083709197, + 31.465230192461515 + ], + [ + 72.07497547012463, + 31.465230192461515 + ], + [ + 72.1898181536083, + 31.270582457533063 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 31.270582457533063 + ], + [ + 72.07497547012463, + 31.465230192461515 + ], + [ + 71.96013278664094, + 31.270582457533063 + ], + [ + 72.1898181536083, + 31.270582457533063 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 31.270582457533063 + ], + [ + 71.96013278664094, + 31.270582457533063 + ], + [ + 72.07497547012463, + 31.07593472260461 + ], + [ + 72.1898181536083, + 31.270582457533063 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 31.270582457533063 + ], + [ + 72.07497547012463, + 31.07593472260461 + ], + [ + 72.30466083709197, + 31.07593472260461 + ], + [ + 72.1898181536083, + 31.270582457533063 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 31.270582457533063 + ], + [ + 72.30466083709197, + 31.07593472260461 + ], + [ + 72.41950352057566, + 31.270582457533063 + ], + [ + 72.1898181536083, + 31.270582457533063 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 31.65987792738997 + ], + [ + 72.41950352057566, + 31.65987792738997 + ], + [ + 72.30466083709197, + 31.854525662318423 + ], + [ + 72.1898181536083, + 31.65987792738997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 31.65987792738997 + ], + [ + 72.30466083709197, + 31.854525662318423 + ], + [ + 72.07497547012463, + 31.854525662318423 + ], + [ + 72.1898181536083, + 31.65987792738997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 31.65987792738997 + ], + [ + 72.07497547012463, + 31.854525662318423 + ], + [ + 71.96013278664094, + 31.65987792738997 + ], + [ + 72.1898181536083, + 31.65987792738997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 31.65987792738997 + ], + [ + 71.96013278664094, + 31.65987792738997 + ], + [ + 72.07497547012463, + 31.46523019246152 + ], + [ + 72.1898181536083, + 31.65987792738997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 31.65987792738997 + ], + [ + 72.07497547012463, + 31.46523019246152 + ], + [ + 72.30466083709197, + 31.46523019246152 + ], + [ + 72.1898181536083, + 31.65987792738997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 31.65987792738997 + ], + [ + 72.30466083709197, + 31.46523019246152 + ], + [ + 72.41950352057566, + 31.65987792738997 + ], + [ + 72.1898181536083, + 31.65987792738997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 32.049173397246875 + ], + [ + 72.41950352057566, + 32.049173397246875 + ], + [ + 72.30466083709197, + 32.24382113217533 + ], + [ + 72.1898181536083, + 32.049173397246875 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 32.049173397246875 + ], + [ + 72.30466083709197, + 32.24382113217533 + ], + [ + 72.07497547012463, + 32.24382113217533 + ], + [ + 72.1898181536083, + 32.049173397246875 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 32.049173397246875 + ], + [ + 72.07497547012463, + 32.24382113217533 + ], + [ + 71.96013278664094, + 32.049173397246875 + ], + [ + 72.1898181536083, + 32.049173397246875 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 32.049173397246875 + ], + [ + 71.96013278664094, + 32.049173397246875 + ], + [ + 72.07497547012463, + 31.854525662318423 + ], + [ + 72.1898181536083, + 32.049173397246875 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 32.049173397246875 + ], + [ + 72.07497547012463, + 31.854525662318423 + ], + [ + 72.30466083709197, + 31.854525662318423 + ], + [ + 72.1898181536083, + 32.049173397246875 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 32.049173397246875 + ], + [ + 72.30466083709197, + 31.854525662318423 + ], + [ + 72.41950352057566, + 32.049173397246875 + ], + [ + 72.1898181536083, + 32.049173397246875 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 32.438468867103786 + ], + [ + 72.41950352057566, + 32.438468867103786 + ], + [ + 72.30466083709197, + 32.63311660203224 + ], + [ + 72.1898181536083, + 32.438468867103786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 32.438468867103786 + ], + [ + 72.30466083709197, + 32.63311660203224 + ], + [ + 72.07497547012463, + 32.63311660203224 + ], + [ + 72.1898181536083, + 32.438468867103786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 32.438468867103786 + ], + [ + 72.07497547012463, + 32.63311660203224 + ], + [ + 71.96013278664094, + 32.438468867103786 + ], + [ + 72.1898181536083, + 32.438468867103786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 32.438468867103786 + ], + [ + 71.96013278664094, + 32.438468867103786 + ], + [ + 72.07497547012463, + 32.243821132175334 + ], + [ + 72.1898181536083, + 32.438468867103786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 32.438468867103786 + ], + [ + 72.07497547012463, + 32.243821132175334 + ], + [ + 72.30466083709197, + 32.243821132175334 + ], + [ + 72.1898181536083, + 32.438468867103786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 32.438468867103786 + ], + [ + 72.30466083709197, + 32.243821132175334 + ], + [ + 72.41950352057566, + 32.438468867103786 + ], + [ + 72.1898181536083, + 32.438468867103786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 32.82776433696069 + ], + [ + 72.41950352057566, + 32.82776433696069 + ], + [ + 72.30466083709197, + 33.02241207188914 + ], + [ + 72.1898181536083, + 32.82776433696069 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 32.82776433696069 + ], + [ + 72.30466083709197, + 33.02241207188914 + ], + [ + 72.07497547012463, + 33.02241207188914 + ], + [ + 72.1898181536083, + 32.82776433696069 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 32.82776433696069 + ], + [ + 72.07497547012463, + 33.02241207188914 + ], + [ + 71.96013278664094, + 32.82776433696069 + ], + [ + 72.1898181536083, + 32.82776433696069 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 32.82776433696069 + ], + [ + 71.96013278664094, + 32.82776433696069 + ], + [ + 72.07497547012463, + 32.63311660203224 + ], + [ + 72.1898181536083, + 32.82776433696069 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 32.82776433696069 + ], + [ + 72.07497547012463, + 32.63311660203224 + ], + [ + 72.30466083709197, + 32.63311660203224 + ], + [ + 72.1898181536083, + 32.82776433696069 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 32.82776433696069 + ], + [ + 72.30466083709197, + 32.63311660203224 + ], + [ + 72.41950352057566, + 32.82776433696069 + ], + [ + 72.1898181536083, + 32.82776433696069 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 33.217059806817595 + ], + [ + 72.41950352057566, + 33.217059806817595 + ], + [ + 72.30466083709197, + 33.41170754174605 + ], + [ + 72.1898181536083, + 33.217059806817595 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 33.217059806817595 + ], + [ + 72.30466083709197, + 33.41170754174605 + ], + [ + 72.07497547012463, + 33.41170754174605 + ], + [ + 72.1898181536083, + 33.217059806817595 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 33.217059806817595 + ], + [ + 72.07497547012463, + 33.41170754174605 + ], + [ + 71.96013278664094, + 33.217059806817595 + ], + [ + 72.1898181536083, + 33.217059806817595 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 33.217059806817595 + ], + [ + 71.96013278664094, + 33.217059806817595 + ], + [ + 72.07497547012463, + 33.02241207188914 + ], + [ + 72.1898181536083, + 33.217059806817595 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 33.217059806817595 + ], + [ + 72.07497547012463, + 33.02241207188914 + ], + [ + 72.30466083709197, + 33.02241207188914 + ], + [ + 72.1898181536083, + 33.217059806817595 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 33.217059806817595 + ], + [ + 72.30466083709197, + 33.02241207188914 + ], + [ + 72.41950352057566, + 33.217059806817595 + ], + [ + 72.1898181536083, + 33.217059806817595 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 33.6063552766745 + ], + [ + 72.41950352057566, + 33.6063552766745 + ], + [ + 72.30466083709197, + 33.80100301160295 + ], + [ + 72.1898181536083, + 33.6063552766745 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 33.6063552766745 + ], + [ + 72.30466083709197, + 33.80100301160295 + ], + [ + 72.07497547012463, + 33.80100301160295 + ], + [ + 72.1898181536083, + 33.6063552766745 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 33.6063552766745 + ], + [ + 72.07497547012463, + 33.80100301160295 + ], + [ + 71.96013278664094, + 33.6063552766745 + ], + [ + 72.1898181536083, + 33.6063552766745 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 33.6063552766745 + ], + [ + 71.96013278664094, + 33.6063552766745 + ], + [ + 72.07497547012463, + 33.41170754174605 + ], + [ + 72.1898181536083, + 33.6063552766745 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 33.6063552766745 + ], + [ + 72.07497547012463, + 33.41170754174605 + ], + [ + 72.30466083709197, + 33.41170754174605 + ], + [ + 72.1898181536083, + 33.6063552766745 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 33.6063552766745 + ], + [ + 72.30466083709197, + 33.41170754174605 + ], + [ + 72.41950352057566, + 33.6063552766745 + ], + [ + 72.1898181536083, + 33.6063552766745 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 33.9956507465314 + ], + [ + 72.41950352057566, + 33.9956507465314 + ], + [ + 72.30466083709197, + 34.190298481459855 + ], + [ + 72.1898181536083, + 33.9956507465314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 33.9956507465314 + ], + [ + 72.30466083709197, + 34.190298481459855 + ], + [ + 72.07497547012463, + 34.190298481459855 + ], + [ + 72.1898181536083, + 33.9956507465314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 33.9956507465314 + ], + [ + 72.07497547012463, + 34.190298481459855 + ], + [ + 71.96013278664094, + 33.9956507465314 + ], + [ + 72.1898181536083, + 33.9956507465314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 33.9956507465314 + ], + [ + 71.96013278664094, + 33.9956507465314 + ], + [ + 72.07497547012463, + 33.80100301160295 + ], + [ + 72.1898181536083, + 33.9956507465314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 33.9956507465314 + ], + [ + 72.07497547012463, + 33.80100301160295 + ], + [ + 72.30466083709197, + 33.80100301160295 + ], + [ + 72.1898181536083, + 33.9956507465314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 33.9956507465314 + ], + [ + 72.30466083709197, + 33.80100301160295 + ], + [ + 72.41950352057566, + 33.9956507465314 + ], + [ + 72.1898181536083, + 33.9956507465314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 34.384946216388315 + ], + [ + 72.41950352057566, + 34.384946216388315 + ], + [ + 72.30466083709197, + 34.57959395131677 + ], + [ + 72.1898181536083, + 34.384946216388315 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 34.384946216388315 + ], + [ + 72.30466083709197, + 34.57959395131677 + ], + [ + 72.07497547012463, + 34.57959395131677 + ], + [ + 72.1898181536083, + 34.384946216388315 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 34.384946216388315 + ], + [ + 72.07497547012463, + 34.57959395131677 + ], + [ + 71.96013278664094, + 34.384946216388315 + ], + [ + 72.1898181536083, + 34.384946216388315 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 34.384946216388315 + ], + [ + 71.96013278664094, + 34.384946216388315 + ], + [ + 72.07497547012463, + 34.19029848145986 + ], + [ + 72.1898181536083, + 34.384946216388315 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 34.384946216388315 + ], + [ + 72.07497547012463, + 34.19029848145986 + ], + [ + 72.30466083709197, + 34.19029848145986 + ], + [ + 72.1898181536083, + 34.384946216388315 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 34.384946216388315 + ], + [ + 72.30466083709197, + 34.19029848145986 + ], + [ + 72.41950352057566, + 34.384946216388315 + ], + [ + 72.1898181536083, + 34.384946216388315 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 34.774241686245226 + ], + [ + 72.41950352057566, + 34.774241686245226 + ], + [ + 72.30466083709197, + 34.96888942117368 + ], + [ + 72.1898181536083, + 34.774241686245226 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 34.774241686245226 + ], + [ + 72.30466083709197, + 34.96888942117368 + ], + [ + 72.07497547012463, + 34.96888942117368 + ], + [ + 72.1898181536083, + 34.774241686245226 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 34.774241686245226 + ], + [ + 72.07497547012463, + 34.96888942117368 + ], + [ + 71.96013278664094, + 34.774241686245226 + ], + [ + 72.1898181536083, + 34.774241686245226 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 34.774241686245226 + ], + [ + 71.96013278664094, + 34.774241686245226 + ], + [ + 72.07497547012463, + 34.579593951316774 + ], + [ + 72.1898181536083, + 34.774241686245226 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 34.774241686245226 + ], + [ + 72.07497547012463, + 34.579593951316774 + ], + [ + 72.30466083709197, + 34.579593951316774 + ], + [ + 72.1898181536083, + 34.774241686245226 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 34.774241686245226 + ], + [ + 72.30466083709197, + 34.579593951316774 + ], + [ + 72.41950352057566, + 34.774241686245226 + ], + [ + 72.1898181536083, + 34.774241686245226 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 35.16353715610213 + ], + [ + 72.41950352057566, + 35.16353715610213 + ], + [ + 72.30466083709197, + 35.35818489103058 + ], + [ + 72.1898181536083, + 35.16353715610213 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 35.16353715610213 + ], + [ + 72.30466083709197, + 35.35818489103058 + ], + [ + 72.07497547012463, + 35.35818489103058 + ], + [ + 72.1898181536083, + 35.16353715610213 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 35.16353715610213 + ], + [ + 72.07497547012463, + 35.35818489103058 + ], + [ + 71.96013278664094, + 35.16353715610213 + ], + [ + 72.1898181536083, + 35.16353715610213 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 35.16353715610213 + ], + [ + 71.96013278664094, + 35.16353715610213 + ], + [ + 72.07497547012463, + 34.96888942117368 + ], + [ + 72.1898181536083, + 35.16353715610213 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 35.16353715610213 + ], + [ + 72.07497547012463, + 34.96888942117368 + ], + [ + 72.30466083709197, + 34.96888942117368 + ], + [ + 72.1898181536083, + 35.16353715610213 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 35.16353715610213 + ], + [ + 72.30466083709197, + 34.96888942117368 + ], + [ + 72.41950352057566, + 35.16353715610213 + ], + [ + 72.1898181536083, + 35.16353715610213 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 35.552832625959034 + ], + [ + 72.41950352057566, + 35.552832625959034 + ], + [ + 72.30466083709197, + 35.74748036088749 + ], + [ + 72.1898181536083, + 35.552832625959034 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 35.552832625959034 + ], + [ + 72.30466083709197, + 35.74748036088749 + ], + [ + 72.07497547012463, + 35.74748036088749 + ], + [ + 72.1898181536083, + 35.552832625959034 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 35.552832625959034 + ], + [ + 72.07497547012463, + 35.74748036088749 + ], + [ + 71.96013278664094, + 35.552832625959034 + ], + [ + 72.1898181536083, + 35.552832625959034 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 35.552832625959034 + ], + [ + 71.96013278664094, + 35.552832625959034 + ], + [ + 72.07497547012463, + 35.35818489103058 + ], + [ + 72.1898181536083, + 35.552832625959034 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 35.552832625959034 + ], + [ + 72.07497547012463, + 35.35818489103058 + ], + [ + 72.30466083709197, + 35.35818489103058 + ], + [ + 72.1898181536083, + 35.552832625959034 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 35.552832625959034 + ], + [ + 72.30466083709197, + 35.35818489103058 + ], + [ + 72.41950352057566, + 35.552832625959034 + ], + [ + 72.1898181536083, + 35.552832625959034 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 35.94212809581594 + ], + [ + 72.41950352057566, + 35.94212809581594 + ], + [ + 72.30466083709197, + 36.13677583074439 + ], + [ + 72.1898181536083, + 35.94212809581594 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 35.94212809581594 + ], + [ + 72.30466083709197, + 36.13677583074439 + ], + [ + 72.07497547012463, + 36.13677583074439 + ], + [ + 72.1898181536083, + 35.94212809581594 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 35.94212809581594 + ], + [ + 72.07497547012463, + 36.13677583074439 + ], + [ + 71.96013278664094, + 35.94212809581594 + ], + [ + 72.1898181536083, + 35.94212809581594 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 35.94212809581594 + ], + [ + 71.96013278664094, + 35.94212809581594 + ], + [ + 72.07497547012463, + 35.74748036088749 + ], + [ + 72.1898181536083, + 35.94212809581594 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 35.94212809581594 + ], + [ + 72.07497547012463, + 35.74748036088749 + ], + [ + 72.30466083709197, + 35.74748036088749 + ], + [ + 72.1898181536083, + 35.94212809581594 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 35.94212809581594 + ], + [ + 72.30466083709197, + 35.74748036088749 + ], + [ + 72.41950352057566, + 35.94212809581594 + ], + [ + 72.1898181536083, + 35.94212809581594 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 36.33142356567284 + ], + [ + 72.41950352057566, + 36.33142356567284 + ], + [ + 72.30466083709197, + 36.526071300601295 + ], + [ + 72.1898181536083, + 36.33142356567284 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 36.33142356567284 + ], + [ + 72.30466083709197, + 36.526071300601295 + ], + [ + 72.07497547012463, + 36.526071300601295 + ], + [ + 72.1898181536083, + 36.33142356567284 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 36.33142356567284 + ], + [ + 72.07497547012463, + 36.526071300601295 + ], + [ + 71.96013278664094, + 36.33142356567284 + ], + [ + 72.1898181536083, + 36.33142356567284 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 36.33142356567284 + ], + [ + 71.96013278664094, + 36.33142356567284 + ], + [ + 72.07497547012463, + 36.13677583074439 + ], + [ + 72.1898181536083, + 36.33142356567284 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 36.33142356567284 + ], + [ + 72.07497547012463, + 36.13677583074439 + ], + [ + 72.30466083709197, + 36.13677583074439 + ], + [ + 72.1898181536083, + 36.33142356567284 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 36.33142356567284 + ], + [ + 72.30466083709197, + 36.13677583074439 + ], + [ + 72.41950352057566, + 36.33142356567284 + ], + [ + 72.1898181536083, + 36.33142356567284 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 36.720719035529754 + ], + [ + 72.41950352057566, + 36.720719035529754 + ], + [ + 72.30466083709197, + 36.915366770458206 + ], + [ + 72.1898181536083, + 36.720719035529754 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 36.720719035529754 + ], + [ + 72.30466083709197, + 36.915366770458206 + ], + [ + 72.07497547012463, + 36.915366770458206 + ], + [ + 72.1898181536083, + 36.720719035529754 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 36.720719035529754 + ], + [ + 72.07497547012463, + 36.915366770458206 + ], + [ + 71.96013278664094, + 36.720719035529754 + ], + [ + 72.1898181536083, + 36.720719035529754 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 36.720719035529754 + ], + [ + 71.96013278664094, + 36.720719035529754 + ], + [ + 72.07497547012463, + 36.5260713006013 + ], + [ + 72.1898181536083, + 36.720719035529754 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 36.720719035529754 + ], + [ + 72.07497547012463, + 36.5260713006013 + ], + [ + 72.30466083709197, + 36.5260713006013 + ], + [ + 72.1898181536083, + 36.720719035529754 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 36.720719035529754 + ], + [ + 72.30466083709197, + 36.5260713006013 + ], + [ + 72.41950352057566, + 36.720719035529754 + ], + [ + 72.1898181536083, + 36.720719035529754 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 37.11001450538666 + ], + [ + 72.41950352057566, + 37.11001450538666 + ], + [ + 72.30466083709197, + 37.30466224031511 + ], + [ + 72.1898181536083, + 37.11001450538666 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 37.11001450538666 + ], + [ + 72.30466083709197, + 37.30466224031511 + ], + [ + 72.07497547012463, + 37.30466224031511 + ], + [ + 72.1898181536083, + 37.11001450538666 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 37.11001450538666 + ], + [ + 72.07497547012463, + 37.30466224031511 + ], + [ + 71.96013278664094, + 37.11001450538666 + ], + [ + 72.1898181536083, + 37.11001450538666 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 37.11001450538666 + ], + [ + 71.96013278664094, + 37.11001450538666 + ], + [ + 72.07497547012463, + 36.915366770458206 + ], + [ + 72.1898181536083, + 37.11001450538666 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 37.11001450538666 + ], + [ + 72.07497547012463, + 36.915366770458206 + ], + [ + 72.30466083709197, + 36.915366770458206 + ], + [ + 72.1898181536083, + 37.11001450538666 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 37.11001450538666 + ], + [ + 72.30466083709197, + 36.915366770458206 + ], + [ + 72.41950352057566, + 37.11001450538666 + ], + [ + 72.1898181536083, + 37.11001450538666 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 37.49930997524357 + ], + [ + 72.41950352057566, + 37.49930997524357 + ], + [ + 72.30466083709197, + 37.69395771017202 + ], + [ + 72.1898181536083, + 37.49930997524357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 37.49930997524357 + ], + [ + 72.30466083709197, + 37.69395771017202 + ], + [ + 72.07497547012463, + 37.69395771017202 + ], + [ + 72.1898181536083, + 37.49930997524357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 37.49930997524357 + ], + [ + 72.07497547012463, + 37.69395771017202 + ], + [ + 71.96013278664094, + 37.49930997524357 + ], + [ + 72.1898181536083, + 37.49930997524357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 37.49930997524357 + ], + [ + 71.96013278664094, + 37.49930997524357 + ], + [ + 72.07497547012463, + 37.30466224031512 + ], + [ + 72.1898181536083, + 37.49930997524357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 37.49930997524357 + ], + [ + 72.07497547012463, + 37.30466224031512 + ], + [ + 72.30466083709197, + 37.30466224031512 + ], + [ + 72.1898181536083, + 37.49930997524357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 37.49930997524357 + ], + [ + 72.30466083709197, + 37.30466224031512 + ], + [ + 72.41950352057566, + 37.49930997524357 + ], + [ + 72.1898181536083, + 37.49930997524357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 37.888605445100474 + ], + [ + 72.41950352057566, + 37.888605445100474 + ], + [ + 72.30466083709197, + 38.083253180028926 + ], + [ + 72.1898181536083, + 37.888605445100474 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 37.888605445100474 + ], + [ + 72.30466083709197, + 38.083253180028926 + ], + [ + 72.07497547012463, + 38.083253180028926 + ], + [ + 72.1898181536083, + 37.888605445100474 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 37.888605445100474 + ], + [ + 72.07497547012463, + 38.083253180028926 + ], + [ + 71.96013278664094, + 37.888605445100474 + ], + [ + 72.1898181536083, + 37.888605445100474 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 37.888605445100474 + ], + [ + 71.96013278664094, + 37.888605445100474 + ], + [ + 72.07497547012463, + 37.69395771017202 + ], + [ + 72.1898181536083, + 37.888605445100474 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 37.888605445100474 + ], + [ + 72.07497547012463, + 37.69395771017202 + ], + [ + 72.30466083709197, + 37.69395771017202 + ], + [ + 72.1898181536083, + 37.888605445100474 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 37.888605445100474 + ], + [ + 72.30466083709197, + 37.69395771017202 + ], + [ + 72.41950352057566, + 37.888605445100474 + ], + [ + 72.1898181536083, + 37.888605445100474 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 38.27790091495738 + ], + [ + 72.41950352057566, + 38.27790091495738 + ], + [ + 72.30466083709197, + 38.47254864988583 + ], + [ + 72.1898181536083, + 38.27790091495738 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 38.27790091495738 + ], + [ + 72.30466083709197, + 38.47254864988583 + ], + [ + 72.07497547012463, + 38.47254864988583 + ], + [ + 72.1898181536083, + 38.27790091495738 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 38.27790091495738 + ], + [ + 72.07497547012463, + 38.47254864988583 + ], + [ + 71.96013278664094, + 38.27790091495738 + ], + [ + 72.1898181536083, + 38.27790091495738 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 38.27790091495738 + ], + [ + 71.96013278664094, + 38.27790091495738 + ], + [ + 72.07497547012463, + 38.083253180028926 + ], + [ + 72.1898181536083, + 38.27790091495738 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 38.27790091495738 + ], + [ + 72.07497547012463, + 38.083253180028926 + ], + [ + 72.30466083709197, + 38.083253180028926 + ], + [ + 72.1898181536083, + 38.27790091495738 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 38.27790091495738 + ], + [ + 72.30466083709197, + 38.083253180028926 + ], + [ + 72.41950352057566, + 38.27790091495738 + ], + [ + 72.1898181536083, + 38.27790091495738 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 38.66719638481428 + ], + [ + 72.41950352057566, + 38.66719638481428 + ], + [ + 72.30466083709197, + 38.861844119742734 + ], + [ + 72.1898181536083, + 38.66719638481428 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 38.66719638481428 + ], + [ + 72.30466083709197, + 38.861844119742734 + ], + [ + 72.07497547012463, + 38.861844119742734 + ], + [ + 72.1898181536083, + 38.66719638481428 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 38.66719638481428 + ], + [ + 72.07497547012463, + 38.861844119742734 + ], + [ + 71.96013278664094, + 38.66719638481428 + ], + [ + 72.1898181536083, + 38.66719638481428 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 38.66719638481428 + ], + [ + 71.96013278664094, + 38.66719638481428 + ], + [ + 72.07497547012463, + 38.47254864988583 + ], + [ + 72.1898181536083, + 38.66719638481428 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 38.66719638481428 + ], + [ + 72.07497547012463, + 38.47254864988583 + ], + [ + 72.30466083709197, + 38.47254864988583 + ], + [ + 72.1898181536083, + 38.66719638481428 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 38.66719638481428 + ], + [ + 72.30466083709197, + 38.47254864988583 + ], + [ + 72.41950352057566, + 38.66719638481428 + ], + [ + 72.1898181536083, + 38.66719638481428 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 39.05649185467119 + ], + [ + 72.41950352057566, + 39.05649185467119 + ], + [ + 72.30466083709197, + 39.25113958959964 + ], + [ + 72.1898181536083, + 39.05649185467119 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 39.05649185467119 + ], + [ + 72.30466083709197, + 39.25113958959964 + ], + [ + 72.07497547012463, + 39.25113958959964 + ], + [ + 72.1898181536083, + 39.05649185467119 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 39.05649185467119 + ], + [ + 72.07497547012463, + 39.25113958959964 + ], + [ + 71.96013278664094, + 39.05649185467119 + ], + [ + 72.1898181536083, + 39.05649185467119 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 39.05649185467119 + ], + [ + 71.96013278664094, + 39.05649185467119 + ], + [ + 72.07497547012463, + 38.861844119742734 + ], + [ + 72.1898181536083, + 39.05649185467119 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 39.05649185467119 + ], + [ + 72.07497547012463, + 38.861844119742734 + ], + [ + 72.30466083709197, + 38.861844119742734 + ], + [ + 72.1898181536083, + 39.05649185467119 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 39.05649185467119 + ], + [ + 72.30466083709197, + 38.861844119742734 + ], + [ + 72.41950352057566, + 39.05649185467119 + ], + [ + 72.1898181536083, + 39.05649185467119 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 39.4457873245281 + ], + [ + 72.41950352057566, + 39.4457873245281 + ], + [ + 72.30466083709197, + 39.64043505945655 + ], + [ + 72.1898181536083, + 39.4457873245281 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 39.4457873245281 + ], + [ + 72.30466083709197, + 39.64043505945655 + ], + [ + 72.07497547012463, + 39.64043505945655 + ], + [ + 72.1898181536083, + 39.4457873245281 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 39.4457873245281 + ], + [ + 72.07497547012463, + 39.64043505945655 + ], + [ + 71.96013278664094, + 39.4457873245281 + ], + [ + 72.1898181536083, + 39.4457873245281 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 39.4457873245281 + ], + [ + 71.96013278664094, + 39.4457873245281 + ], + [ + 72.07497547012463, + 39.251139589599646 + ], + [ + 72.1898181536083, + 39.4457873245281 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 39.4457873245281 + ], + [ + 72.07497547012463, + 39.251139589599646 + ], + [ + 72.30466083709197, + 39.251139589599646 + ], + [ + 72.1898181536083, + 39.4457873245281 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 39.4457873245281 + ], + [ + 72.30466083709197, + 39.251139589599646 + ], + [ + 72.41950352057566, + 39.4457873245281 + ], + [ + 72.1898181536083, + 39.4457873245281 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 39.835082794385 + ], + [ + 72.41950352057566, + 39.835082794385 + ], + [ + 72.30466083709197, + 40.029730529313454 + ], + [ + 72.1898181536083, + 39.835082794385 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 39.835082794385 + ], + [ + 72.30466083709197, + 40.029730529313454 + ], + [ + 72.07497547012463, + 40.029730529313454 + ], + [ + 72.1898181536083, + 39.835082794385 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 39.835082794385 + ], + [ + 72.07497547012463, + 40.029730529313454 + ], + [ + 71.96013278664094, + 39.835082794385 + ], + [ + 72.1898181536083, + 39.835082794385 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 39.835082794385 + ], + [ + 71.96013278664094, + 39.835082794385 + ], + [ + 72.07497547012463, + 39.64043505945655 + ], + [ + 72.1898181536083, + 39.835082794385 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 39.835082794385 + ], + [ + 72.07497547012463, + 39.64043505945655 + ], + [ + 72.30466083709197, + 39.64043505945655 + ], + [ + 72.1898181536083, + 39.835082794385 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 39.835082794385 + ], + [ + 72.30466083709197, + 39.64043505945655 + ], + [ + 72.41950352057566, + 39.835082794385 + ], + [ + 72.1898181536083, + 39.835082794385 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 40.22437826424191 + ], + [ + 72.41950352057566, + 40.22437826424191 + ], + [ + 72.30466083709197, + 40.419025999170366 + ], + [ + 72.1898181536083, + 40.22437826424191 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 40.22437826424191 + ], + [ + 72.30466083709197, + 40.419025999170366 + ], + [ + 72.07497547012463, + 40.419025999170366 + ], + [ + 72.1898181536083, + 40.22437826424191 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 40.22437826424191 + ], + [ + 72.07497547012463, + 40.419025999170366 + ], + [ + 71.96013278664094, + 40.22437826424191 + ], + [ + 72.1898181536083, + 40.22437826424191 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 40.22437826424191 + ], + [ + 71.96013278664094, + 40.22437826424191 + ], + [ + 72.07497547012463, + 40.02973052931346 + ], + [ + 72.1898181536083, + 40.22437826424191 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 40.22437826424191 + ], + [ + 72.07497547012463, + 40.02973052931346 + ], + [ + 72.30466083709197, + 40.02973052931346 + ], + [ + 72.1898181536083, + 40.22437826424191 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 40.22437826424191 + ], + [ + 72.30466083709197, + 40.02973052931346 + ], + [ + 72.41950352057566, + 40.22437826424191 + ], + [ + 72.1898181536083, + 40.22437826424191 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 40.61367373409882 + ], + [ + 72.41950352057566, + 40.61367373409882 + ], + [ + 72.30466083709197, + 40.80832146902727 + ], + [ + 72.1898181536083, + 40.61367373409882 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 40.61367373409882 + ], + [ + 72.30466083709197, + 40.80832146902727 + ], + [ + 72.07497547012463, + 40.80832146902727 + ], + [ + 72.1898181536083, + 40.61367373409882 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 40.61367373409882 + ], + [ + 72.07497547012463, + 40.80832146902727 + ], + [ + 71.96013278664094, + 40.61367373409882 + ], + [ + 72.1898181536083, + 40.61367373409882 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 40.61367373409882 + ], + [ + 71.96013278664094, + 40.61367373409882 + ], + [ + 72.07497547012463, + 40.419025999170366 + ], + [ + 72.1898181536083, + 40.61367373409882 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 40.61367373409882 + ], + [ + 72.07497547012463, + 40.419025999170366 + ], + [ + 72.30466083709197, + 40.419025999170366 + ], + [ + 72.1898181536083, + 40.61367373409882 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 40.61367373409882 + ], + [ + 72.30466083709197, + 40.419025999170366 + ], + [ + 72.41950352057566, + 40.61367373409882 + ], + [ + 72.1898181536083, + 40.61367373409882 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 41.00296920395572 + ], + [ + 72.41950352057566, + 41.00296920395572 + ], + [ + 72.30466083709197, + 41.197616938884174 + ], + [ + 72.1898181536083, + 41.00296920395572 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 41.00296920395572 + ], + [ + 72.30466083709197, + 41.197616938884174 + ], + [ + 72.07497547012463, + 41.197616938884174 + ], + [ + 72.1898181536083, + 41.00296920395572 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 41.00296920395572 + ], + [ + 72.07497547012463, + 41.197616938884174 + ], + [ + 71.96013278664094, + 41.00296920395572 + ], + [ + 72.1898181536083, + 41.00296920395572 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 41.00296920395572 + ], + [ + 71.96013278664094, + 41.00296920395572 + ], + [ + 72.07497547012463, + 40.80832146902727 + ], + [ + 72.1898181536083, + 41.00296920395572 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 41.00296920395572 + ], + [ + 72.07497547012463, + 40.80832146902727 + ], + [ + 72.30466083709197, + 40.80832146902727 + ], + [ + 72.1898181536083, + 41.00296920395572 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 41.00296920395572 + ], + [ + 72.30466083709197, + 40.80832146902727 + ], + [ + 72.41950352057566, + 41.00296920395572 + ], + [ + 72.1898181536083, + 41.00296920395572 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 41.392264673812626 + ], + [ + 72.41950352057566, + 41.392264673812626 + ], + [ + 72.30466083709197, + 41.58691240874108 + ], + [ + 72.1898181536083, + 41.392264673812626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 41.392264673812626 + ], + [ + 72.30466083709197, + 41.58691240874108 + ], + [ + 72.07497547012463, + 41.58691240874108 + ], + [ + 72.1898181536083, + 41.392264673812626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 41.392264673812626 + ], + [ + 72.07497547012463, + 41.58691240874108 + ], + [ + 71.96013278664094, + 41.392264673812626 + ], + [ + 72.1898181536083, + 41.392264673812626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 41.392264673812626 + ], + [ + 71.96013278664094, + 41.392264673812626 + ], + [ + 72.07497547012463, + 41.197616938884174 + ], + [ + 72.1898181536083, + 41.392264673812626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 41.392264673812626 + ], + [ + 72.07497547012463, + 41.197616938884174 + ], + [ + 72.30466083709197, + 41.197616938884174 + ], + [ + 72.1898181536083, + 41.392264673812626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 41.392264673812626 + ], + [ + 72.30466083709197, + 41.197616938884174 + ], + [ + 72.41950352057566, + 41.392264673812626 + ], + [ + 72.1898181536083, + 41.392264673812626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 41.78156014366953 + ], + [ + 72.41950352057566, + 41.78156014366953 + ], + [ + 72.30466083709197, + 41.97620787859798 + ], + [ + 72.1898181536083, + 41.78156014366953 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 41.78156014366953 + ], + [ + 72.30466083709197, + 41.97620787859798 + ], + [ + 72.07497547012463, + 41.97620787859798 + ], + [ + 72.1898181536083, + 41.78156014366953 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 41.78156014366953 + ], + [ + 72.07497547012463, + 41.97620787859798 + ], + [ + 71.96013278664094, + 41.78156014366953 + ], + [ + 72.1898181536083, + 41.78156014366953 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 41.78156014366953 + ], + [ + 71.96013278664094, + 41.78156014366953 + ], + [ + 72.07497547012463, + 41.58691240874108 + ], + [ + 72.1898181536083, + 41.78156014366953 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 41.78156014366953 + ], + [ + 72.07497547012463, + 41.58691240874108 + ], + [ + 72.30466083709197, + 41.58691240874108 + ], + [ + 72.1898181536083, + 41.78156014366953 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 41.78156014366953 + ], + [ + 72.30466083709197, + 41.58691240874108 + ], + [ + 72.41950352057566, + 41.78156014366953 + ], + [ + 72.1898181536083, + 41.78156014366953 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 42.17085561352644 + ], + [ + 72.41950352057566, + 42.17085561352644 + ], + [ + 72.30466083709197, + 42.365503348454894 + ], + [ + 72.1898181536083, + 42.17085561352644 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 42.17085561352644 + ], + [ + 72.30466083709197, + 42.365503348454894 + ], + [ + 72.07497547012463, + 42.365503348454894 + ], + [ + 72.1898181536083, + 42.17085561352644 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 42.17085561352644 + ], + [ + 72.07497547012463, + 42.365503348454894 + ], + [ + 71.96013278664094, + 42.17085561352644 + ], + [ + 72.1898181536083, + 42.17085561352644 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 42.17085561352644 + ], + [ + 71.96013278664094, + 42.17085561352644 + ], + [ + 72.07497547012463, + 41.97620787859799 + ], + [ + 72.1898181536083, + 42.17085561352644 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 42.17085561352644 + ], + [ + 72.07497547012463, + 41.97620787859799 + ], + [ + 72.30466083709197, + 41.97620787859799 + ], + [ + 72.1898181536083, + 42.17085561352644 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 42.17085561352644 + ], + [ + 72.30466083709197, + 41.97620787859799 + ], + [ + 72.41950352057566, + 42.17085561352644 + ], + [ + 72.1898181536083, + 42.17085561352644 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 42.56015108338335 + ], + [ + 72.41950352057566, + 42.56015108338335 + ], + [ + 72.30466083709197, + 42.754798818311805 + ], + [ + 72.1898181536083, + 42.56015108338335 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 42.56015108338335 + ], + [ + 72.30466083709197, + 42.754798818311805 + ], + [ + 72.07497547012463, + 42.754798818311805 + ], + [ + 72.1898181536083, + 42.56015108338335 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 42.56015108338335 + ], + [ + 72.07497547012463, + 42.754798818311805 + ], + [ + 71.96013278664094, + 42.56015108338335 + ], + [ + 72.1898181536083, + 42.56015108338335 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 42.56015108338335 + ], + [ + 71.96013278664094, + 42.56015108338335 + ], + [ + 72.07497547012463, + 42.3655033484549 + ], + [ + 72.1898181536083, + 42.56015108338335 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 42.56015108338335 + ], + [ + 72.07497547012463, + 42.3655033484549 + ], + [ + 72.30466083709197, + 42.3655033484549 + ], + [ + 72.1898181536083, + 42.56015108338335 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 42.56015108338335 + ], + [ + 72.30466083709197, + 42.3655033484549 + ], + [ + 72.41950352057566, + 42.56015108338335 + ], + [ + 72.1898181536083, + 42.56015108338335 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 42.94944655324026 + ], + [ + 72.41950352057566, + 42.94944655324026 + ], + [ + 72.30466083709197, + 43.14409428816871 + ], + [ + 72.1898181536083, + 42.94944655324026 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 42.94944655324026 + ], + [ + 72.30466083709197, + 43.14409428816871 + ], + [ + 72.07497547012463, + 43.14409428816871 + ], + [ + 72.1898181536083, + 42.94944655324026 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 42.94944655324026 + ], + [ + 72.07497547012463, + 43.14409428816871 + ], + [ + 71.96013278664094, + 42.94944655324026 + ], + [ + 72.1898181536083, + 42.94944655324026 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 42.94944655324026 + ], + [ + 71.96013278664094, + 42.94944655324026 + ], + [ + 72.07497547012463, + 42.754798818311805 + ], + [ + 72.1898181536083, + 42.94944655324026 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 42.94944655324026 + ], + [ + 72.07497547012463, + 42.754798818311805 + ], + [ + 72.30466083709197, + 42.754798818311805 + ], + [ + 72.1898181536083, + 42.94944655324026 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 42.94944655324026 + ], + [ + 72.30466083709197, + 42.754798818311805 + ], + [ + 72.41950352057566, + 42.94944655324026 + ], + [ + 72.1898181536083, + 42.94944655324026 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 43.33874202309716 + ], + [ + 72.41950352057566, + 43.33874202309716 + ], + [ + 72.30466083709197, + 43.53338975802561 + ], + [ + 72.1898181536083, + 43.33874202309716 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 43.33874202309716 + ], + [ + 72.30466083709197, + 43.53338975802561 + ], + [ + 72.07497547012463, + 43.53338975802561 + ], + [ + 72.1898181536083, + 43.33874202309716 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 43.33874202309716 + ], + [ + 72.07497547012463, + 43.53338975802561 + ], + [ + 71.96013278664094, + 43.33874202309716 + ], + [ + 72.1898181536083, + 43.33874202309716 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 43.33874202309716 + ], + [ + 71.96013278664094, + 43.33874202309716 + ], + [ + 72.07497547012463, + 43.14409428816871 + ], + [ + 72.1898181536083, + 43.33874202309716 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 43.33874202309716 + ], + [ + 72.07497547012463, + 43.14409428816871 + ], + [ + 72.30466083709197, + 43.14409428816871 + ], + [ + 72.1898181536083, + 43.33874202309716 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 43.33874202309716 + ], + [ + 72.30466083709197, + 43.14409428816871 + ], + [ + 72.41950352057566, + 43.33874202309716 + ], + [ + 72.1898181536083, + 43.33874202309716 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 43.728037492954066 + ], + [ + 72.41950352057566, + 43.728037492954066 + ], + [ + 72.30466083709197, + 43.92268522788252 + ], + [ + 72.1898181536083, + 43.728037492954066 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 43.728037492954066 + ], + [ + 72.30466083709197, + 43.92268522788252 + ], + [ + 72.07497547012463, + 43.92268522788252 + ], + [ + 72.1898181536083, + 43.728037492954066 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 43.728037492954066 + ], + [ + 72.07497547012463, + 43.92268522788252 + ], + [ + 71.96013278664094, + 43.728037492954066 + ], + [ + 72.1898181536083, + 43.728037492954066 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 43.728037492954066 + ], + [ + 71.96013278664094, + 43.728037492954066 + ], + [ + 72.07497547012463, + 43.53338975802561 + ], + [ + 72.1898181536083, + 43.728037492954066 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 43.728037492954066 + ], + [ + 72.07497547012463, + 43.53338975802561 + ], + [ + 72.30466083709197, + 43.53338975802561 + ], + [ + 72.1898181536083, + 43.728037492954066 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 43.728037492954066 + ], + [ + 72.30466083709197, + 43.53338975802561 + ], + [ + 72.41950352057566, + 43.728037492954066 + ], + [ + 72.1898181536083, + 43.728037492954066 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 44.11733296281097 + ], + [ + 72.41950352057566, + 44.11733296281097 + ], + [ + 72.30466083709197, + 44.31198069773942 + ], + [ + 72.1898181536083, + 44.11733296281097 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 44.11733296281097 + ], + [ + 72.30466083709197, + 44.31198069773942 + ], + [ + 72.07497547012463, + 44.31198069773942 + ], + [ + 72.1898181536083, + 44.11733296281097 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 44.11733296281097 + ], + [ + 72.07497547012463, + 44.31198069773942 + ], + [ + 71.96013278664094, + 44.11733296281097 + ], + [ + 72.1898181536083, + 44.11733296281097 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 44.11733296281097 + ], + [ + 71.96013278664094, + 44.11733296281097 + ], + [ + 72.07497547012463, + 43.92268522788252 + ], + [ + 72.1898181536083, + 44.11733296281097 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 44.11733296281097 + ], + [ + 72.07497547012463, + 43.92268522788252 + ], + [ + 72.30466083709197, + 43.92268522788252 + ], + [ + 72.1898181536083, + 44.11733296281097 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 44.11733296281097 + ], + [ + 72.30466083709197, + 43.92268522788252 + ], + [ + 72.41950352057566, + 44.11733296281097 + ], + [ + 72.1898181536083, + 44.11733296281097 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 44.506628432667874 + ], + [ + 72.41950352057566, + 44.506628432667874 + ], + [ + 72.30466083709197, + 44.701276167596326 + ], + [ + 72.1898181536083, + 44.506628432667874 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 44.506628432667874 + ], + [ + 72.30466083709197, + 44.701276167596326 + ], + [ + 72.07497547012463, + 44.701276167596326 + ], + [ + 72.1898181536083, + 44.506628432667874 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 44.506628432667874 + ], + [ + 72.07497547012463, + 44.701276167596326 + ], + [ + 71.96013278664094, + 44.506628432667874 + ], + [ + 72.1898181536083, + 44.506628432667874 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 44.506628432667874 + ], + [ + 71.96013278664094, + 44.506628432667874 + ], + [ + 72.07497547012463, + 44.31198069773942 + ], + [ + 72.1898181536083, + 44.506628432667874 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 44.506628432667874 + ], + [ + 72.07497547012463, + 44.31198069773942 + ], + [ + 72.30466083709197, + 44.31198069773942 + ], + [ + 72.1898181536083, + 44.506628432667874 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 44.506628432667874 + ], + [ + 72.30466083709197, + 44.31198069773942 + ], + [ + 72.41950352057566, + 44.506628432667874 + ], + [ + 72.1898181536083, + 44.506628432667874 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 44.89592390252479 + ], + [ + 72.41950352057566, + 44.89592390252479 + ], + [ + 72.30466083709197, + 45.090571637453245 + ], + [ + 72.1898181536083, + 44.89592390252479 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 44.89592390252479 + ], + [ + 72.30466083709197, + 45.090571637453245 + ], + [ + 72.07497547012463, + 45.090571637453245 + ], + [ + 72.1898181536083, + 44.89592390252479 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 44.89592390252479 + ], + [ + 72.07497547012463, + 45.090571637453245 + ], + [ + 71.96013278664094, + 44.89592390252479 + ], + [ + 72.1898181536083, + 44.89592390252479 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 44.89592390252479 + ], + [ + 71.96013278664094, + 44.89592390252479 + ], + [ + 72.07497547012463, + 44.70127616759634 + ], + [ + 72.1898181536083, + 44.89592390252479 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 44.89592390252479 + ], + [ + 72.07497547012463, + 44.70127616759634 + ], + [ + 72.30466083709197, + 44.70127616759634 + ], + [ + 72.1898181536083, + 44.89592390252479 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 44.89592390252479 + ], + [ + 72.30466083709197, + 44.70127616759634 + ], + [ + 72.41950352057566, + 44.89592390252479 + ], + [ + 72.1898181536083, + 44.89592390252479 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 45.2852193723817 + ], + [ + 72.41950352057566, + 45.2852193723817 + ], + [ + 72.30466083709197, + 45.47986710731015 + ], + [ + 72.1898181536083, + 45.2852193723817 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 45.2852193723817 + ], + [ + 72.30466083709197, + 45.47986710731015 + ], + [ + 72.07497547012463, + 45.47986710731015 + ], + [ + 72.1898181536083, + 45.2852193723817 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 45.2852193723817 + ], + [ + 72.07497547012463, + 45.47986710731015 + ], + [ + 71.96013278664094, + 45.2852193723817 + ], + [ + 72.1898181536083, + 45.2852193723817 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 45.2852193723817 + ], + [ + 71.96013278664094, + 45.2852193723817 + ], + [ + 72.07497547012463, + 45.090571637453245 + ], + [ + 72.1898181536083, + 45.2852193723817 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 45.2852193723817 + ], + [ + 72.07497547012463, + 45.090571637453245 + ], + [ + 72.30466083709197, + 45.090571637453245 + ], + [ + 72.1898181536083, + 45.2852193723817 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 45.2852193723817 + ], + [ + 72.30466083709197, + 45.090571637453245 + ], + [ + 72.41950352057566, + 45.2852193723817 + ], + [ + 72.1898181536083, + 45.2852193723817 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 45.6745148422386 + ], + [ + 72.41950352057566, + 45.6745148422386 + ], + [ + 72.30466083709197, + 45.86916257716705 + ], + [ + 72.1898181536083, + 45.6745148422386 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 45.6745148422386 + ], + [ + 72.30466083709197, + 45.86916257716705 + ], + [ + 72.07497547012463, + 45.86916257716705 + ], + [ + 72.1898181536083, + 45.6745148422386 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 45.6745148422386 + ], + [ + 72.07497547012463, + 45.86916257716705 + ], + [ + 71.96013278664094, + 45.6745148422386 + ], + [ + 72.1898181536083, + 45.6745148422386 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 45.6745148422386 + ], + [ + 71.96013278664094, + 45.6745148422386 + ], + [ + 72.07497547012463, + 45.47986710731015 + ], + [ + 72.1898181536083, + 45.6745148422386 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 45.6745148422386 + ], + [ + 72.07497547012463, + 45.47986710731015 + ], + [ + 72.30466083709197, + 45.47986710731015 + ], + [ + 72.1898181536083, + 45.6745148422386 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 45.6745148422386 + ], + [ + 72.30466083709197, + 45.47986710731015 + ], + [ + 72.41950352057566, + 45.6745148422386 + ], + [ + 72.1898181536083, + 45.6745148422386 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 46.063810312095505 + ], + [ + 72.41950352057566, + 46.063810312095505 + ], + [ + 72.30466083709197, + 46.25845804702396 + ], + [ + 72.1898181536083, + 46.063810312095505 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 46.063810312095505 + ], + [ + 72.30466083709197, + 46.25845804702396 + ], + [ + 72.07497547012463, + 46.25845804702396 + ], + [ + 72.1898181536083, + 46.063810312095505 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 46.063810312095505 + ], + [ + 72.07497547012463, + 46.25845804702396 + ], + [ + 71.96013278664094, + 46.063810312095505 + ], + [ + 72.1898181536083, + 46.063810312095505 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 46.063810312095505 + ], + [ + 71.96013278664094, + 46.063810312095505 + ], + [ + 72.07497547012463, + 45.86916257716705 + ], + [ + 72.1898181536083, + 46.063810312095505 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 46.063810312095505 + ], + [ + 72.07497547012463, + 45.86916257716705 + ], + [ + 72.30466083709197, + 45.86916257716705 + ], + [ + 72.1898181536083, + 46.063810312095505 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 46.063810312095505 + ], + [ + 72.30466083709197, + 45.86916257716705 + ], + [ + 72.41950352057566, + 46.063810312095505 + ], + [ + 72.1898181536083, + 46.063810312095505 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 46.45310578195241 + ], + [ + 72.41950352057566, + 46.45310578195241 + ], + [ + 72.30466083709197, + 46.64775351688086 + ], + [ + 72.1898181536083, + 46.45310578195241 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 46.45310578195241 + ], + [ + 72.30466083709197, + 46.64775351688086 + ], + [ + 72.07497547012463, + 46.64775351688086 + ], + [ + 72.1898181536083, + 46.45310578195241 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 46.45310578195241 + ], + [ + 72.07497547012463, + 46.64775351688086 + ], + [ + 71.96013278664094, + 46.45310578195241 + ], + [ + 72.1898181536083, + 46.45310578195241 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 46.45310578195241 + ], + [ + 71.96013278664094, + 46.45310578195241 + ], + [ + 72.07497547012463, + 46.25845804702396 + ], + [ + 72.1898181536083, + 46.45310578195241 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 46.45310578195241 + ], + [ + 72.07497547012463, + 46.25845804702396 + ], + [ + 72.30466083709197, + 46.25845804702396 + ], + [ + 72.1898181536083, + 46.45310578195241 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 46.45310578195241 + ], + [ + 72.30466083709197, + 46.25845804702396 + ], + [ + 72.41950352057566, + 46.45310578195241 + ], + [ + 72.1898181536083, + 46.45310578195241 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 46.842401251809314 + ], + [ + 72.41950352057566, + 46.842401251809314 + ], + [ + 72.30466083709197, + 47.037048986737766 + ], + [ + 72.1898181536083, + 46.842401251809314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 46.842401251809314 + ], + [ + 72.30466083709197, + 47.037048986737766 + ], + [ + 72.07497547012463, + 47.037048986737766 + ], + [ + 72.1898181536083, + 46.842401251809314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 46.842401251809314 + ], + [ + 72.07497547012463, + 47.037048986737766 + ], + [ + 71.96013278664094, + 46.842401251809314 + ], + [ + 72.1898181536083, + 46.842401251809314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 46.842401251809314 + ], + [ + 71.96013278664094, + 46.842401251809314 + ], + [ + 72.07497547012463, + 46.64775351688086 + ], + [ + 72.1898181536083, + 46.842401251809314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 46.842401251809314 + ], + [ + 72.07497547012463, + 46.64775351688086 + ], + [ + 72.30466083709197, + 46.64775351688086 + ], + [ + 72.1898181536083, + 46.842401251809314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 46.842401251809314 + ], + [ + 72.30466083709197, + 46.64775351688086 + ], + [ + 72.41950352057566, + 46.842401251809314 + ], + [ + 72.1898181536083, + 46.842401251809314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 47.23169672166622 + ], + [ + 72.41950352057566, + 47.23169672166622 + ], + [ + 72.30466083709197, + 47.42634445659467 + ], + [ + 72.1898181536083, + 47.23169672166622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 47.23169672166622 + ], + [ + 72.30466083709197, + 47.42634445659467 + ], + [ + 72.07497547012463, + 47.42634445659467 + ], + [ + 72.1898181536083, + 47.23169672166622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 47.23169672166622 + ], + [ + 72.07497547012463, + 47.42634445659467 + ], + [ + 71.96013278664094, + 47.23169672166622 + ], + [ + 72.1898181536083, + 47.23169672166622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 47.23169672166622 + ], + [ + 71.96013278664094, + 47.23169672166622 + ], + [ + 72.07497547012463, + 47.037048986737766 + ], + [ + 72.1898181536083, + 47.23169672166622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 47.23169672166622 + ], + [ + 72.07497547012463, + 47.037048986737766 + ], + [ + 72.30466083709197, + 47.037048986737766 + ], + [ + 72.1898181536083, + 47.23169672166622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 47.23169672166622 + ], + [ + 72.30466083709197, + 47.037048986737766 + ], + [ + 72.41950352057566, + 47.23169672166622 + ], + [ + 72.1898181536083, + 47.23169672166622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 47.620992191523136 + ], + [ + 72.41950352057566, + 47.620992191523136 + ], + [ + 72.30466083709197, + 47.81563992645159 + ], + [ + 72.1898181536083, + 47.620992191523136 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 47.620992191523136 + ], + [ + 72.30466083709197, + 47.81563992645159 + ], + [ + 72.07497547012463, + 47.81563992645159 + ], + [ + 72.1898181536083, + 47.620992191523136 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 47.620992191523136 + ], + [ + 72.07497547012463, + 47.81563992645159 + ], + [ + 71.96013278664094, + 47.620992191523136 + ], + [ + 72.1898181536083, + 47.620992191523136 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 47.620992191523136 + ], + [ + 71.96013278664094, + 47.620992191523136 + ], + [ + 72.07497547012463, + 47.426344456594684 + ], + [ + 72.1898181536083, + 47.620992191523136 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 47.620992191523136 + ], + [ + 72.07497547012463, + 47.426344456594684 + ], + [ + 72.30466083709197, + 47.426344456594684 + ], + [ + 72.1898181536083, + 47.620992191523136 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.1898181536083, + 47.620992191523136 + ], + [ + 72.30466083709197, + 47.426344456594684 + ], + [ + 72.41950352057566, + 47.620992191523136 + ], + [ + 72.1898181536083, + 47.620992191523136 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 12.0004566996162 + ], + [ + 72.7640315710267, + 12.0004566996162 + ], + [ + 72.64918888754302, + 12.195104434544653 + ], + [ + 72.53434620405935, + 12.0004566996162 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 12.0004566996162 + ], + [ + 72.64918888754302, + 12.195104434544653 + ], + [ + 72.41950352057567, + 12.195104434544653 + ], + [ + 72.53434620405935, + 12.0004566996162 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 12.0004566996162 + ], + [ + 72.41950352057567, + 12.195104434544653 + ], + [ + 72.30466083709199, + 12.0004566996162 + ], + [ + 72.53434620405935, + 12.0004566996162 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 12.0004566996162 + ], + [ + 72.30466083709199, + 12.0004566996162 + ], + [ + 72.41950352057567, + 11.805808964687746 + ], + [ + 72.53434620405935, + 12.0004566996162 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 12.0004566996162 + ], + [ + 72.41950352057567, + 11.805808964687746 + ], + [ + 72.64918888754302, + 11.805808964687746 + ], + [ + 72.53434620405935, + 12.0004566996162 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 12.0004566996162 + ], + [ + 72.64918888754302, + 11.805808964687746 + ], + [ + 72.7640315710267, + 12.0004566996162 + ], + [ + 72.53434620405935, + 12.0004566996162 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 12.389752169473105 + ], + [ + 72.7640315710267, + 12.389752169473105 + ], + [ + 72.64918888754302, + 12.58439990440156 + ], + [ + 72.53434620405935, + 12.389752169473105 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 12.389752169473105 + ], + [ + 72.64918888754302, + 12.58439990440156 + ], + [ + 72.41950352057567, + 12.58439990440156 + ], + [ + 72.53434620405935, + 12.389752169473105 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 12.389752169473105 + ], + [ + 72.41950352057567, + 12.58439990440156 + ], + [ + 72.30466083709199, + 12.389752169473105 + ], + [ + 72.53434620405935, + 12.389752169473105 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 12.389752169473105 + ], + [ + 72.30466083709199, + 12.389752169473105 + ], + [ + 72.41950352057567, + 12.195104434544652 + ], + [ + 72.53434620405935, + 12.389752169473105 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 12.389752169473105 + ], + [ + 72.41950352057567, + 12.195104434544652 + ], + [ + 72.64918888754302, + 12.195104434544652 + ], + [ + 72.53434620405935, + 12.389752169473105 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 12.389752169473105 + ], + [ + 72.64918888754302, + 12.195104434544652 + ], + [ + 72.7640315710267, + 12.389752169473105 + ], + [ + 72.53434620405935, + 12.389752169473105 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 12.779047639330013 + ], + [ + 72.7640315710267, + 12.779047639330013 + ], + [ + 72.64918888754302, + 12.973695374258467 + ], + [ + 72.53434620405935, + 12.779047639330013 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 12.779047639330013 + ], + [ + 72.64918888754302, + 12.973695374258467 + ], + [ + 72.41950352057567, + 12.973695374258467 + ], + [ + 72.53434620405935, + 12.779047639330013 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 12.779047639330013 + ], + [ + 72.41950352057567, + 12.973695374258467 + ], + [ + 72.30466083709199, + 12.779047639330013 + ], + [ + 72.53434620405935, + 12.779047639330013 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 12.779047639330013 + ], + [ + 72.30466083709199, + 12.779047639330013 + ], + [ + 72.41950352057567, + 12.58439990440156 + ], + [ + 72.53434620405935, + 12.779047639330013 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 12.779047639330013 + ], + [ + 72.41950352057567, + 12.58439990440156 + ], + [ + 72.64918888754302, + 12.58439990440156 + ], + [ + 72.53434620405935, + 12.779047639330013 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 12.779047639330013 + ], + [ + 72.64918888754302, + 12.58439990440156 + ], + [ + 72.7640315710267, + 12.779047639330013 + ], + [ + 72.53434620405935, + 12.779047639330013 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 13.16834310918692 + ], + [ + 72.7640315710267, + 13.16834310918692 + ], + [ + 72.64918888754302, + 13.362990844115373 + ], + [ + 72.53434620405935, + 13.16834310918692 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 13.16834310918692 + ], + [ + 72.64918888754302, + 13.362990844115373 + ], + [ + 72.41950352057567, + 13.362990844115373 + ], + [ + 72.53434620405935, + 13.16834310918692 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 13.16834310918692 + ], + [ + 72.41950352057567, + 13.362990844115373 + ], + [ + 72.30466083709199, + 13.16834310918692 + ], + [ + 72.53434620405935, + 13.16834310918692 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 13.16834310918692 + ], + [ + 72.30466083709199, + 13.16834310918692 + ], + [ + 72.41950352057567, + 12.973695374258465 + ], + [ + 72.53434620405935, + 13.16834310918692 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 13.16834310918692 + ], + [ + 72.41950352057567, + 12.973695374258465 + ], + [ + 72.64918888754302, + 12.973695374258465 + ], + [ + 72.53434620405935, + 13.16834310918692 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 13.16834310918692 + ], + [ + 72.64918888754302, + 12.973695374258465 + ], + [ + 72.7640315710267, + 13.16834310918692 + ], + [ + 72.53434620405935, + 13.16834310918692 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 13.557638579043825 + ], + [ + 72.7640315710267, + 13.557638579043825 + ], + [ + 72.64918888754302, + 13.752286313972279 + ], + [ + 72.53434620405935, + 13.557638579043825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 13.557638579043825 + ], + [ + 72.64918888754302, + 13.752286313972279 + ], + [ + 72.41950352057567, + 13.752286313972279 + ], + [ + 72.53434620405935, + 13.557638579043825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 13.557638579043825 + ], + [ + 72.41950352057567, + 13.752286313972279 + ], + [ + 72.30466083709199, + 13.557638579043825 + ], + [ + 72.53434620405935, + 13.557638579043825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 13.557638579043825 + ], + [ + 72.30466083709199, + 13.557638579043825 + ], + [ + 72.41950352057567, + 13.362990844115371 + ], + [ + 72.53434620405935, + 13.557638579043825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 13.557638579043825 + ], + [ + 72.41950352057567, + 13.362990844115371 + ], + [ + 72.64918888754302, + 13.362990844115371 + ], + [ + 72.53434620405935, + 13.557638579043825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 13.557638579043825 + ], + [ + 72.64918888754302, + 13.362990844115371 + ], + [ + 72.7640315710267, + 13.557638579043825 + ], + [ + 72.53434620405935, + 13.557638579043825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 13.946934048900731 + ], + [ + 72.7640315710267, + 13.946934048900731 + ], + [ + 72.64918888754302, + 14.141581783829185 + ], + [ + 72.53434620405935, + 13.946934048900731 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 13.946934048900731 + ], + [ + 72.64918888754302, + 14.141581783829185 + ], + [ + 72.41950352057567, + 14.141581783829185 + ], + [ + 72.53434620405935, + 13.946934048900731 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 13.946934048900731 + ], + [ + 72.41950352057567, + 14.141581783829185 + ], + [ + 72.30466083709199, + 13.946934048900731 + ], + [ + 72.53434620405935, + 13.946934048900731 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 13.946934048900731 + ], + [ + 72.30466083709199, + 13.946934048900731 + ], + [ + 72.41950352057567, + 13.752286313972277 + ], + [ + 72.53434620405935, + 13.946934048900731 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 13.946934048900731 + ], + [ + 72.41950352057567, + 13.752286313972277 + ], + [ + 72.64918888754302, + 13.752286313972277 + ], + [ + 72.53434620405935, + 13.946934048900731 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 13.946934048900731 + ], + [ + 72.64918888754302, + 13.752286313972277 + ], + [ + 72.7640315710267, + 13.946934048900731 + ], + [ + 72.53434620405935, + 13.946934048900731 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 14.336229518757637 + ], + [ + 72.7640315710267, + 14.336229518757637 + ], + [ + 72.64918888754302, + 14.530877253686091 + ], + [ + 72.53434620405935, + 14.336229518757637 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 14.336229518757637 + ], + [ + 72.64918888754302, + 14.530877253686091 + ], + [ + 72.41950352057567, + 14.530877253686091 + ], + [ + 72.53434620405935, + 14.336229518757637 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 14.336229518757637 + ], + [ + 72.41950352057567, + 14.530877253686091 + ], + [ + 72.30466083709199, + 14.336229518757637 + ], + [ + 72.53434620405935, + 14.336229518757637 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 14.336229518757637 + ], + [ + 72.30466083709199, + 14.336229518757637 + ], + [ + 72.41950352057567, + 14.141581783829183 + ], + [ + 72.53434620405935, + 14.336229518757637 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 14.336229518757637 + ], + [ + 72.41950352057567, + 14.141581783829183 + ], + [ + 72.64918888754302, + 14.141581783829183 + ], + [ + 72.53434620405935, + 14.336229518757637 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 14.336229518757637 + ], + [ + 72.64918888754302, + 14.141581783829183 + ], + [ + 72.7640315710267, + 14.336229518757637 + ], + [ + 72.53434620405935, + 14.336229518757637 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 14.725524988614545 + ], + [ + 72.7640315710267, + 14.725524988614545 + ], + [ + 72.64918888754302, + 14.920172723542999 + ], + [ + 72.53434620405935, + 14.725524988614545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 14.725524988614545 + ], + [ + 72.64918888754302, + 14.920172723542999 + ], + [ + 72.41950352057567, + 14.920172723542999 + ], + [ + 72.53434620405935, + 14.725524988614545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 14.725524988614545 + ], + [ + 72.41950352057567, + 14.920172723542999 + ], + [ + 72.30466083709199, + 14.725524988614545 + ], + [ + 72.53434620405935, + 14.725524988614545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 14.725524988614545 + ], + [ + 72.30466083709199, + 14.725524988614545 + ], + [ + 72.41950352057567, + 14.530877253686091 + ], + [ + 72.53434620405935, + 14.725524988614545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 14.725524988614545 + ], + [ + 72.41950352057567, + 14.530877253686091 + ], + [ + 72.64918888754302, + 14.530877253686091 + ], + [ + 72.53434620405935, + 14.725524988614545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 14.725524988614545 + ], + [ + 72.64918888754302, + 14.530877253686091 + ], + [ + 72.7640315710267, + 14.725524988614545 + ], + [ + 72.53434620405935, + 14.725524988614545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 15.114820458471451 + ], + [ + 72.7640315710267, + 15.114820458471451 + ], + [ + 72.64918888754302, + 15.309468193399905 + ], + [ + 72.53434620405935, + 15.114820458471451 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 15.114820458471451 + ], + [ + 72.64918888754302, + 15.309468193399905 + ], + [ + 72.41950352057567, + 15.309468193399905 + ], + [ + 72.53434620405935, + 15.114820458471451 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 15.114820458471451 + ], + [ + 72.41950352057567, + 15.309468193399905 + ], + [ + 72.30466083709199, + 15.114820458471451 + ], + [ + 72.53434620405935, + 15.114820458471451 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 15.114820458471451 + ], + [ + 72.30466083709199, + 15.114820458471451 + ], + [ + 72.41950352057567, + 14.920172723542997 + ], + [ + 72.53434620405935, + 15.114820458471451 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 15.114820458471451 + ], + [ + 72.41950352057567, + 14.920172723542997 + ], + [ + 72.64918888754302, + 14.920172723542997 + ], + [ + 72.53434620405935, + 15.114820458471451 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 15.114820458471451 + ], + [ + 72.64918888754302, + 14.920172723542997 + ], + [ + 72.7640315710267, + 15.114820458471451 + ], + [ + 72.53434620405935, + 15.114820458471451 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 15.504115928328357 + ], + [ + 72.7640315710267, + 15.504115928328357 + ], + [ + 72.64918888754302, + 15.69876366325681 + ], + [ + 72.53434620405935, + 15.504115928328357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 15.504115928328357 + ], + [ + 72.64918888754302, + 15.69876366325681 + ], + [ + 72.41950352057567, + 15.69876366325681 + ], + [ + 72.53434620405935, + 15.504115928328357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 15.504115928328357 + ], + [ + 72.41950352057567, + 15.69876366325681 + ], + [ + 72.30466083709199, + 15.504115928328357 + ], + [ + 72.53434620405935, + 15.504115928328357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 15.504115928328357 + ], + [ + 72.30466083709199, + 15.504115928328357 + ], + [ + 72.41950352057567, + 15.309468193399903 + ], + [ + 72.53434620405935, + 15.504115928328357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 15.504115928328357 + ], + [ + 72.41950352057567, + 15.309468193399903 + ], + [ + 72.64918888754302, + 15.309468193399903 + ], + [ + 72.53434620405935, + 15.504115928328357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 15.504115928328357 + ], + [ + 72.64918888754302, + 15.309468193399903 + ], + [ + 72.7640315710267, + 15.504115928328357 + ], + [ + 72.53434620405935, + 15.504115928328357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 15.893411398185265 + ], + [ + 72.7640315710267, + 15.893411398185265 + ], + [ + 72.64918888754302, + 16.088059133113717 + ], + [ + 72.53434620405935, + 15.893411398185265 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 15.893411398185265 + ], + [ + 72.64918888754302, + 16.088059133113717 + ], + [ + 72.41950352057567, + 16.088059133113717 + ], + [ + 72.53434620405935, + 15.893411398185265 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 15.893411398185265 + ], + [ + 72.41950352057567, + 16.088059133113717 + ], + [ + 72.30466083709199, + 15.893411398185265 + ], + [ + 72.53434620405935, + 15.893411398185265 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 15.893411398185265 + ], + [ + 72.30466083709199, + 15.893411398185265 + ], + [ + 72.41950352057567, + 15.69876366325681 + ], + [ + 72.53434620405935, + 15.893411398185265 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 15.893411398185265 + ], + [ + 72.41950352057567, + 15.69876366325681 + ], + [ + 72.64918888754302, + 15.69876366325681 + ], + [ + 72.53434620405935, + 15.893411398185265 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 15.893411398185265 + ], + [ + 72.64918888754302, + 15.69876366325681 + ], + [ + 72.7640315710267, + 15.893411398185265 + ], + [ + 72.53434620405935, + 15.893411398185265 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 16.28270686804217 + ], + [ + 72.7640315710267, + 16.28270686804217 + ], + [ + 72.64918888754302, + 16.47735460297062 + ], + [ + 72.53434620405935, + 16.28270686804217 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 16.28270686804217 + ], + [ + 72.64918888754302, + 16.47735460297062 + ], + [ + 72.41950352057567, + 16.47735460297062 + ], + [ + 72.53434620405935, + 16.28270686804217 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 16.28270686804217 + ], + [ + 72.41950352057567, + 16.47735460297062 + ], + [ + 72.30466083709199, + 16.28270686804217 + ], + [ + 72.53434620405935, + 16.28270686804217 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 16.28270686804217 + ], + [ + 72.30466083709199, + 16.28270686804217 + ], + [ + 72.41950352057567, + 16.088059133113717 + ], + [ + 72.53434620405935, + 16.28270686804217 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 16.28270686804217 + ], + [ + 72.41950352057567, + 16.088059133113717 + ], + [ + 72.64918888754302, + 16.088059133113717 + ], + [ + 72.53434620405935, + 16.28270686804217 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 16.28270686804217 + ], + [ + 72.64918888754302, + 16.088059133113717 + ], + [ + 72.7640315710267, + 16.28270686804217 + ], + [ + 72.53434620405935, + 16.28270686804217 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 16.672002337899077 + ], + [ + 72.7640315710267, + 16.672002337899077 + ], + [ + 72.64918888754302, + 16.86665007282753 + ], + [ + 72.53434620405935, + 16.672002337899077 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 16.672002337899077 + ], + [ + 72.64918888754302, + 16.86665007282753 + ], + [ + 72.41950352057567, + 16.86665007282753 + ], + [ + 72.53434620405935, + 16.672002337899077 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 16.672002337899077 + ], + [ + 72.41950352057567, + 16.86665007282753 + ], + [ + 72.30466083709199, + 16.672002337899077 + ], + [ + 72.53434620405935, + 16.672002337899077 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 16.672002337899077 + ], + [ + 72.30466083709199, + 16.672002337899077 + ], + [ + 72.41950352057567, + 16.477354602970625 + ], + [ + 72.53434620405935, + 16.672002337899077 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 16.672002337899077 + ], + [ + 72.41950352057567, + 16.477354602970625 + ], + [ + 72.64918888754302, + 16.477354602970625 + ], + [ + 72.53434620405935, + 16.672002337899077 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 16.672002337899077 + ], + [ + 72.64918888754302, + 16.477354602970625 + ], + [ + 72.7640315710267, + 16.672002337899077 + ], + [ + 72.53434620405935, + 16.672002337899077 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 17.06129780775598 + ], + [ + 72.7640315710267, + 17.06129780775598 + ], + [ + 72.64918888754302, + 17.255945542684433 + ], + [ + 72.53434620405935, + 17.06129780775598 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 17.06129780775598 + ], + [ + 72.64918888754302, + 17.255945542684433 + ], + [ + 72.41950352057567, + 17.255945542684433 + ], + [ + 72.53434620405935, + 17.06129780775598 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 17.06129780775598 + ], + [ + 72.41950352057567, + 17.255945542684433 + ], + [ + 72.30466083709199, + 17.06129780775598 + ], + [ + 72.53434620405935, + 17.06129780775598 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 17.06129780775598 + ], + [ + 72.30466083709199, + 17.06129780775598 + ], + [ + 72.41950352057567, + 16.86665007282753 + ], + [ + 72.53434620405935, + 17.06129780775598 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 17.06129780775598 + ], + [ + 72.41950352057567, + 16.86665007282753 + ], + [ + 72.64918888754302, + 16.86665007282753 + ], + [ + 72.53434620405935, + 17.06129780775598 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 17.06129780775598 + ], + [ + 72.64918888754302, + 16.86665007282753 + ], + [ + 72.7640315710267, + 17.06129780775598 + ], + [ + 72.53434620405935, + 17.06129780775598 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 17.45059327761289 + ], + [ + 72.7640315710267, + 17.45059327761289 + ], + [ + 72.64918888754302, + 17.64524101254134 + ], + [ + 72.53434620405935, + 17.45059327761289 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 17.45059327761289 + ], + [ + 72.64918888754302, + 17.64524101254134 + ], + [ + 72.41950352057567, + 17.64524101254134 + ], + [ + 72.53434620405935, + 17.45059327761289 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 17.45059327761289 + ], + [ + 72.41950352057567, + 17.64524101254134 + ], + [ + 72.30466083709199, + 17.45059327761289 + ], + [ + 72.53434620405935, + 17.45059327761289 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 17.45059327761289 + ], + [ + 72.30466083709199, + 17.45059327761289 + ], + [ + 72.41950352057567, + 17.255945542684437 + ], + [ + 72.53434620405935, + 17.45059327761289 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 17.45059327761289 + ], + [ + 72.41950352057567, + 17.255945542684437 + ], + [ + 72.64918888754302, + 17.255945542684437 + ], + [ + 72.53434620405935, + 17.45059327761289 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 17.45059327761289 + ], + [ + 72.64918888754302, + 17.255945542684437 + ], + [ + 72.7640315710267, + 17.45059327761289 + ], + [ + 72.53434620405935, + 17.45059327761289 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 17.839888747469793 + ], + [ + 72.7640315710267, + 17.839888747469793 + ], + [ + 72.64918888754302, + 18.034536482398245 + ], + [ + 72.53434620405935, + 17.839888747469793 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 17.839888747469793 + ], + [ + 72.64918888754302, + 18.034536482398245 + ], + [ + 72.41950352057567, + 18.034536482398245 + ], + [ + 72.53434620405935, + 17.839888747469793 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 17.839888747469793 + ], + [ + 72.41950352057567, + 18.034536482398245 + ], + [ + 72.30466083709199, + 17.839888747469793 + ], + [ + 72.53434620405935, + 17.839888747469793 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 17.839888747469793 + ], + [ + 72.30466083709199, + 17.839888747469793 + ], + [ + 72.41950352057567, + 17.64524101254134 + ], + [ + 72.53434620405935, + 17.839888747469793 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 17.839888747469793 + ], + [ + 72.41950352057567, + 17.64524101254134 + ], + [ + 72.64918888754302, + 17.64524101254134 + ], + [ + 72.53434620405935, + 17.839888747469793 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 17.839888747469793 + ], + [ + 72.64918888754302, + 17.64524101254134 + ], + [ + 72.7640315710267, + 17.839888747469793 + ], + [ + 72.53434620405935, + 17.839888747469793 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 18.2291842173267 + ], + [ + 72.7640315710267, + 18.2291842173267 + ], + [ + 72.64918888754302, + 18.423831952255153 + ], + [ + 72.53434620405935, + 18.2291842173267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 18.2291842173267 + ], + [ + 72.64918888754302, + 18.423831952255153 + ], + [ + 72.41950352057567, + 18.423831952255153 + ], + [ + 72.53434620405935, + 18.2291842173267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 18.2291842173267 + ], + [ + 72.41950352057567, + 18.423831952255153 + ], + [ + 72.30466083709199, + 18.2291842173267 + ], + [ + 72.53434620405935, + 18.2291842173267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 18.2291842173267 + ], + [ + 72.30466083709199, + 18.2291842173267 + ], + [ + 72.41950352057567, + 18.03453648239825 + ], + [ + 72.53434620405935, + 18.2291842173267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 18.2291842173267 + ], + [ + 72.41950352057567, + 18.03453648239825 + ], + [ + 72.64918888754302, + 18.03453648239825 + ], + [ + 72.53434620405935, + 18.2291842173267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 18.2291842173267 + ], + [ + 72.64918888754302, + 18.03453648239825 + ], + [ + 72.7640315710267, + 18.2291842173267 + ], + [ + 72.53434620405935, + 18.2291842173267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 18.61847968718361 + ], + [ + 72.7640315710267, + 18.61847968718361 + ], + [ + 72.64918888754302, + 18.81312742211206 + ], + [ + 72.53434620405935, + 18.61847968718361 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 18.61847968718361 + ], + [ + 72.64918888754302, + 18.81312742211206 + ], + [ + 72.41950352057567, + 18.81312742211206 + ], + [ + 72.53434620405935, + 18.61847968718361 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 18.61847968718361 + ], + [ + 72.41950352057567, + 18.81312742211206 + ], + [ + 72.30466083709199, + 18.61847968718361 + ], + [ + 72.53434620405935, + 18.61847968718361 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 18.61847968718361 + ], + [ + 72.30466083709199, + 18.61847968718361 + ], + [ + 72.41950352057567, + 18.423831952255156 + ], + [ + 72.53434620405935, + 18.61847968718361 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 18.61847968718361 + ], + [ + 72.41950352057567, + 18.423831952255156 + ], + [ + 72.64918888754302, + 18.423831952255156 + ], + [ + 72.53434620405935, + 18.61847968718361 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 18.61847968718361 + ], + [ + 72.64918888754302, + 18.423831952255156 + ], + [ + 72.7640315710267, + 18.61847968718361 + ], + [ + 72.53434620405935, + 18.61847968718361 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 19.007775157040513 + ], + [ + 72.7640315710267, + 19.007775157040513 + ], + [ + 72.64918888754302, + 19.202422891968965 + ], + [ + 72.53434620405935, + 19.007775157040513 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 19.007775157040513 + ], + [ + 72.64918888754302, + 19.202422891968965 + ], + [ + 72.41950352057567, + 19.202422891968965 + ], + [ + 72.53434620405935, + 19.007775157040513 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 19.007775157040513 + ], + [ + 72.41950352057567, + 19.202422891968965 + ], + [ + 72.30466083709199, + 19.007775157040513 + ], + [ + 72.53434620405935, + 19.007775157040513 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 19.007775157040513 + ], + [ + 72.30466083709199, + 19.007775157040513 + ], + [ + 72.41950352057567, + 18.81312742211206 + ], + [ + 72.53434620405935, + 19.007775157040513 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 19.007775157040513 + ], + [ + 72.41950352057567, + 18.81312742211206 + ], + [ + 72.64918888754302, + 18.81312742211206 + ], + [ + 72.53434620405935, + 19.007775157040513 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 19.007775157040513 + ], + [ + 72.64918888754302, + 18.81312742211206 + ], + [ + 72.7640315710267, + 19.007775157040513 + ], + [ + 72.53434620405935, + 19.007775157040513 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 19.39707062689742 + ], + [ + 72.7640315710267, + 19.39707062689742 + ], + [ + 72.64918888754302, + 19.591718361825873 + ], + [ + 72.53434620405935, + 19.39707062689742 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 19.39707062689742 + ], + [ + 72.64918888754302, + 19.591718361825873 + ], + [ + 72.41950352057567, + 19.591718361825873 + ], + [ + 72.53434620405935, + 19.39707062689742 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 19.39707062689742 + ], + [ + 72.41950352057567, + 19.591718361825873 + ], + [ + 72.30466083709199, + 19.39707062689742 + ], + [ + 72.53434620405935, + 19.39707062689742 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 19.39707062689742 + ], + [ + 72.30466083709199, + 19.39707062689742 + ], + [ + 72.41950352057567, + 19.20242289196897 + ], + [ + 72.53434620405935, + 19.39707062689742 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 19.39707062689742 + ], + [ + 72.41950352057567, + 19.20242289196897 + ], + [ + 72.64918888754302, + 19.20242289196897 + ], + [ + 72.53434620405935, + 19.39707062689742 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 19.39707062689742 + ], + [ + 72.64918888754302, + 19.20242289196897 + ], + [ + 72.7640315710267, + 19.39707062689742 + ], + [ + 72.53434620405935, + 19.39707062689742 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 19.78636609675433 + ], + [ + 72.7640315710267, + 19.78636609675433 + ], + [ + 72.64918888754302, + 19.98101383168278 + ], + [ + 72.53434620405935, + 19.78636609675433 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 19.78636609675433 + ], + [ + 72.64918888754302, + 19.98101383168278 + ], + [ + 72.41950352057567, + 19.98101383168278 + ], + [ + 72.53434620405935, + 19.78636609675433 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 19.78636609675433 + ], + [ + 72.41950352057567, + 19.98101383168278 + ], + [ + 72.30466083709199, + 19.78636609675433 + ], + [ + 72.53434620405935, + 19.78636609675433 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 19.78636609675433 + ], + [ + 72.30466083709199, + 19.78636609675433 + ], + [ + 72.41950352057567, + 19.591718361825876 + ], + [ + 72.53434620405935, + 19.78636609675433 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 19.78636609675433 + ], + [ + 72.41950352057567, + 19.591718361825876 + ], + [ + 72.64918888754302, + 19.591718361825876 + ], + [ + 72.53434620405935, + 19.78636609675433 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 19.78636609675433 + ], + [ + 72.64918888754302, + 19.591718361825876 + ], + [ + 72.7640315710267, + 19.78636609675433 + ], + [ + 72.53434620405935, + 19.78636609675433 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 20.175661566611232 + ], + [ + 72.7640315710267, + 20.175661566611232 + ], + [ + 72.64918888754302, + 20.370309301539685 + ], + [ + 72.53434620405935, + 20.175661566611232 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 20.175661566611232 + ], + [ + 72.64918888754302, + 20.370309301539685 + ], + [ + 72.41950352057567, + 20.370309301539685 + ], + [ + 72.53434620405935, + 20.175661566611232 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 20.175661566611232 + ], + [ + 72.41950352057567, + 20.370309301539685 + ], + [ + 72.30466083709199, + 20.175661566611232 + ], + [ + 72.53434620405935, + 20.175661566611232 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 20.175661566611232 + ], + [ + 72.30466083709199, + 20.175661566611232 + ], + [ + 72.41950352057567, + 19.98101383168278 + ], + [ + 72.53434620405935, + 20.175661566611232 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 20.175661566611232 + ], + [ + 72.41950352057567, + 19.98101383168278 + ], + [ + 72.64918888754302, + 19.98101383168278 + ], + [ + 72.53434620405935, + 20.175661566611232 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 20.175661566611232 + ], + [ + 72.64918888754302, + 19.98101383168278 + ], + [ + 72.7640315710267, + 20.175661566611232 + ], + [ + 72.53434620405935, + 20.175661566611232 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 20.564957036468137 + ], + [ + 72.7640315710267, + 20.564957036468137 + ], + [ + 72.64918888754302, + 20.75960477139659 + ], + [ + 72.53434620405935, + 20.564957036468137 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 20.564957036468137 + ], + [ + 72.64918888754302, + 20.75960477139659 + ], + [ + 72.41950352057567, + 20.75960477139659 + ], + [ + 72.53434620405935, + 20.564957036468137 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 20.564957036468137 + ], + [ + 72.41950352057567, + 20.75960477139659 + ], + [ + 72.30466083709199, + 20.564957036468137 + ], + [ + 72.53434620405935, + 20.564957036468137 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 20.564957036468137 + ], + [ + 72.30466083709199, + 20.564957036468137 + ], + [ + 72.41950352057567, + 20.370309301539685 + ], + [ + 72.53434620405935, + 20.564957036468137 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 20.564957036468137 + ], + [ + 72.41950352057567, + 20.370309301539685 + ], + [ + 72.64918888754302, + 20.370309301539685 + ], + [ + 72.53434620405935, + 20.564957036468137 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 20.564957036468137 + ], + [ + 72.64918888754302, + 20.370309301539685 + ], + [ + 72.7640315710267, + 20.564957036468137 + ], + [ + 72.53434620405935, + 20.564957036468137 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 20.954252506325044 + ], + [ + 72.7640315710267, + 20.954252506325044 + ], + [ + 72.64918888754302, + 21.148900241253497 + ], + [ + 72.53434620405935, + 20.954252506325044 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 20.954252506325044 + ], + [ + 72.64918888754302, + 21.148900241253497 + ], + [ + 72.41950352057567, + 21.148900241253497 + ], + [ + 72.53434620405935, + 20.954252506325044 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 20.954252506325044 + ], + [ + 72.41950352057567, + 21.148900241253497 + ], + [ + 72.30466083709199, + 20.954252506325044 + ], + [ + 72.53434620405935, + 20.954252506325044 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 20.954252506325044 + ], + [ + 72.30466083709199, + 20.954252506325044 + ], + [ + 72.41950352057567, + 20.759604771396592 + ], + [ + 72.53434620405935, + 20.954252506325044 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 20.954252506325044 + ], + [ + 72.41950352057567, + 20.759604771396592 + ], + [ + 72.64918888754302, + 20.759604771396592 + ], + [ + 72.53434620405935, + 20.954252506325044 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 20.954252506325044 + ], + [ + 72.64918888754302, + 20.759604771396592 + ], + [ + 72.7640315710267, + 20.954252506325044 + ], + [ + 72.53434620405935, + 20.954252506325044 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 21.343547976181952 + ], + [ + 72.7640315710267, + 21.343547976181952 + ], + [ + 72.64918888754302, + 21.538195711110404 + ], + [ + 72.53434620405935, + 21.343547976181952 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 21.343547976181952 + ], + [ + 72.64918888754302, + 21.538195711110404 + ], + [ + 72.41950352057567, + 21.538195711110404 + ], + [ + 72.53434620405935, + 21.343547976181952 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 21.343547976181952 + ], + [ + 72.41950352057567, + 21.538195711110404 + ], + [ + 72.30466083709199, + 21.343547976181952 + ], + [ + 72.53434620405935, + 21.343547976181952 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 21.343547976181952 + ], + [ + 72.30466083709199, + 21.343547976181952 + ], + [ + 72.41950352057567, + 21.1489002412535 + ], + [ + 72.53434620405935, + 21.343547976181952 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 21.343547976181952 + ], + [ + 72.41950352057567, + 21.1489002412535 + ], + [ + 72.64918888754302, + 21.1489002412535 + ], + [ + 72.53434620405935, + 21.343547976181952 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 21.343547976181952 + ], + [ + 72.64918888754302, + 21.1489002412535 + ], + [ + 72.7640315710267, + 21.343547976181952 + ], + [ + 72.53434620405935, + 21.343547976181952 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 21.732843446038856 + ], + [ + 72.7640315710267, + 21.732843446038856 + ], + [ + 72.64918888754302, + 21.92749118096731 + ], + [ + 72.53434620405935, + 21.732843446038856 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 21.732843446038856 + ], + [ + 72.64918888754302, + 21.92749118096731 + ], + [ + 72.41950352057567, + 21.92749118096731 + ], + [ + 72.53434620405935, + 21.732843446038856 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 21.732843446038856 + ], + [ + 72.41950352057567, + 21.92749118096731 + ], + [ + 72.30466083709199, + 21.732843446038856 + ], + [ + 72.53434620405935, + 21.732843446038856 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 21.732843446038856 + ], + [ + 72.30466083709199, + 21.732843446038856 + ], + [ + 72.41950352057567, + 21.538195711110404 + ], + [ + 72.53434620405935, + 21.732843446038856 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 21.732843446038856 + ], + [ + 72.41950352057567, + 21.538195711110404 + ], + [ + 72.64918888754302, + 21.538195711110404 + ], + [ + 72.53434620405935, + 21.732843446038856 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 21.732843446038856 + ], + [ + 72.64918888754302, + 21.538195711110404 + ], + [ + 72.7640315710267, + 21.732843446038856 + ], + [ + 72.53434620405935, + 21.732843446038856 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 22.122138915895764 + ], + [ + 72.7640315710267, + 22.122138915895764 + ], + [ + 72.64918888754302, + 22.316786650824216 + ], + [ + 72.53434620405935, + 22.122138915895764 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 22.122138915895764 + ], + [ + 72.64918888754302, + 22.316786650824216 + ], + [ + 72.41950352057567, + 22.316786650824216 + ], + [ + 72.53434620405935, + 22.122138915895764 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 22.122138915895764 + ], + [ + 72.41950352057567, + 22.316786650824216 + ], + [ + 72.30466083709199, + 22.122138915895764 + ], + [ + 72.53434620405935, + 22.122138915895764 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 22.122138915895764 + ], + [ + 72.30466083709199, + 22.122138915895764 + ], + [ + 72.41950352057567, + 21.927491180967312 + ], + [ + 72.53434620405935, + 22.122138915895764 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 22.122138915895764 + ], + [ + 72.41950352057567, + 21.927491180967312 + ], + [ + 72.64918888754302, + 21.927491180967312 + ], + [ + 72.53434620405935, + 22.122138915895764 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 22.122138915895764 + ], + [ + 72.64918888754302, + 21.927491180967312 + ], + [ + 72.7640315710267, + 22.122138915895764 + ], + [ + 72.53434620405935, + 22.122138915895764 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 22.511434385752672 + ], + [ + 72.7640315710267, + 22.511434385752672 + ], + [ + 72.64918888754302, + 22.706082120681124 + ], + [ + 72.53434620405935, + 22.511434385752672 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 22.511434385752672 + ], + [ + 72.64918888754302, + 22.706082120681124 + ], + [ + 72.41950352057567, + 22.706082120681124 + ], + [ + 72.53434620405935, + 22.511434385752672 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 22.511434385752672 + ], + [ + 72.41950352057567, + 22.706082120681124 + ], + [ + 72.30466083709199, + 22.511434385752672 + ], + [ + 72.53434620405935, + 22.511434385752672 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 22.511434385752672 + ], + [ + 72.30466083709199, + 22.511434385752672 + ], + [ + 72.41950352057567, + 22.31678665082422 + ], + [ + 72.53434620405935, + 22.511434385752672 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 22.511434385752672 + ], + [ + 72.41950352057567, + 22.31678665082422 + ], + [ + 72.64918888754302, + 22.31678665082422 + ], + [ + 72.53434620405935, + 22.511434385752672 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 22.511434385752672 + ], + [ + 72.64918888754302, + 22.31678665082422 + ], + [ + 72.7640315710267, + 22.511434385752672 + ], + [ + 72.53434620405935, + 22.511434385752672 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 22.900729855609576 + ], + [ + 72.7640315710267, + 22.900729855609576 + ], + [ + 72.64918888754302, + 23.09537759053803 + ], + [ + 72.53434620405935, + 22.900729855609576 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 22.900729855609576 + ], + [ + 72.64918888754302, + 23.09537759053803 + ], + [ + 72.41950352057567, + 23.09537759053803 + ], + [ + 72.53434620405935, + 22.900729855609576 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 22.900729855609576 + ], + [ + 72.41950352057567, + 23.09537759053803 + ], + [ + 72.30466083709199, + 22.900729855609576 + ], + [ + 72.53434620405935, + 22.900729855609576 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 22.900729855609576 + ], + [ + 72.30466083709199, + 22.900729855609576 + ], + [ + 72.41950352057567, + 22.706082120681124 + ], + [ + 72.53434620405935, + 22.900729855609576 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 22.900729855609576 + ], + [ + 72.41950352057567, + 22.706082120681124 + ], + [ + 72.64918888754302, + 22.706082120681124 + ], + [ + 72.53434620405935, + 22.900729855609576 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 22.900729855609576 + ], + [ + 72.64918888754302, + 22.706082120681124 + ], + [ + 72.7640315710267, + 22.900729855609576 + ], + [ + 72.53434620405935, + 22.900729855609576 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 23.290025325466484 + ], + [ + 72.7640315710267, + 23.290025325466484 + ], + [ + 72.64918888754302, + 23.484673060394936 + ], + [ + 72.53434620405935, + 23.290025325466484 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 23.290025325466484 + ], + [ + 72.64918888754302, + 23.484673060394936 + ], + [ + 72.41950352057567, + 23.484673060394936 + ], + [ + 72.53434620405935, + 23.290025325466484 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 23.290025325466484 + ], + [ + 72.41950352057567, + 23.484673060394936 + ], + [ + 72.30466083709199, + 23.290025325466484 + ], + [ + 72.53434620405935, + 23.290025325466484 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 23.290025325466484 + ], + [ + 72.30466083709199, + 23.290025325466484 + ], + [ + 72.41950352057567, + 23.095377590538032 + ], + [ + 72.53434620405935, + 23.290025325466484 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 23.290025325466484 + ], + [ + 72.41950352057567, + 23.095377590538032 + ], + [ + 72.64918888754302, + 23.095377590538032 + ], + [ + 72.53434620405935, + 23.290025325466484 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 23.290025325466484 + ], + [ + 72.64918888754302, + 23.095377590538032 + ], + [ + 72.7640315710267, + 23.290025325466484 + ], + [ + 72.53434620405935, + 23.290025325466484 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 23.67932079532339 + ], + [ + 72.7640315710267, + 23.67932079532339 + ], + [ + 72.64918888754302, + 23.873968530251844 + ], + [ + 72.53434620405935, + 23.67932079532339 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 23.67932079532339 + ], + [ + 72.64918888754302, + 23.873968530251844 + ], + [ + 72.41950352057567, + 23.873968530251844 + ], + [ + 72.53434620405935, + 23.67932079532339 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 23.67932079532339 + ], + [ + 72.41950352057567, + 23.873968530251844 + ], + [ + 72.30466083709199, + 23.67932079532339 + ], + [ + 72.53434620405935, + 23.67932079532339 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 23.67932079532339 + ], + [ + 72.30466083709199, + 23.67932079532339 + ], + [ + 72.41950352057567, + 23.48467306039494 + ], + [ + 72.53434620405935, + 23.67932079532339 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 23.67932079532339 + ], + [ + 72.41950352057567, + 23.48467306039494 + ], + [ + 72.64918888754302, + 23.48467306039494 + ], + [ + 72.53434620405935, + 23.67932079532339 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 23.67932079532339 + ], + [ + 72.64918888754302, + 23.48467306039494 + ], + [ + 72.7640315710267, + 23.67932079532339 + ], + [ + 72.53434620405935, + 23.67932079532339 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 24.068616265180296 + ], + [ + 72.7640315710267, + 24.068616265180296 + ], + [ + 72.64918888754302, + 24.263264000108748 + ], + [ + 72.53434620405935, + 24.068616265180296 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 24.068616265180296 + ], + [ + 72.64918888754302, + 24.263264000108748 + ], + [ + 72.41950352057567, + 24.263264000108748 + ], + [ + 72.53434620405935, + 24.068616265180296 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 24.068616265180296 + ], + [ + 72.41950352057567, + 24.263264000108748 + ], + [ + 72.30466083709199, + 24.068616265180296 + ], + [ + 72.53434620405935, + 24.068616265180296 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 24.068616265180296 + ], + [ + 72.30466083709199, + 24.068616265180296 + ], + [ + 72.41950352057567, + 23.873968530251844 + ], + [ + 72.53434620405935, + 24.068616265180296 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 24.068616265180296 + ], + [ + 72.41950352057567, + 23.873968530251844 + ], + [ + 72.64918888754302, + 23.873968530251844 + ], + [ + 72.53434620405935, + 24.068616265180296 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 24.068616265180296 + ], + [ + 72.64918888754302, + 23.873968530251844 + ], + [ + 72.7640315710267, + 24.068616265180296 + ], + [ + 72.53434620405935, + 24.068616265180296 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 24.4579117350372 + ], + [ + 72.7640315710267, + 24.4579117350372 + ], + [ + 72.64918888754302, + 24.652559469965652 + ], + [ + 72.53434620405935, + 24.4579117350372 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 24.4579117350372 + ], + [ + 72.64918888754302, + 24.652559469965652 + ], + [ + 72.41950352057567, + 24.652559469965652 + ], + [ + 72.53434620405935, + 24.4579117350372 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 24.4579117350372 + ], + [ + 72.41950352057567, + 24.652559469965652 + ], + [ + 72.30466083709199, + 24.4579117350372 + ], + [ + 72.53434620405935, + 24.4579117350372 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 24.4579117350372 + ], + [ + 72.30466083709199, + 24.4579117350372 + ], + [ + 72.41950352057567, + 24.263264000108748 + ], + [ + 72.53434620405935, + 24.4579117350372 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 24.4579117350372 + ], + [ + 72.41950352057567, + 24.263264000108748 + ], + [ + 72.64918888754302, + 24.263264000108748 + ], + [ + 72.53434620405935, + 24.4579117350372 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 24.4579117350372 + ], + [ + 72.64918888754302, + 24.263264000108748 + ], + [ + 72.7640315710267, + 24.4579117350372 + ], + [ + 72.53434620405935, + 24.4579117350372 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 24.847207204894108 + ], + [ + 72.7640315710267, + 24.847207204894108 + ], + [ + 72.64918888754302, + 25.04185493982256 + ], + [ + 72.53434620405935, + 24.847207204894108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 24.847207204894108 + ], + [ + 72.64918888754302, + 25.04185493982256 + ], + [ + 72.41950352057567, + 25.04185493982256 + ], + [ + 72.53434620405935, + 24.847207204894108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 24.847207204894108 + ], + [ + 72.41950352057567, + 25.04185493982256 + ], + [ + 72.30466083709199, + 24.847207204894108 + ], + [ + 72.53434620405935, + 24.847207204894108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 24.847207204894108 + ], + [ + 72.30466083709199, + 24.847207204894108 + ], + [ + 72.41950352057567, + 24.652559469965656 + ], + [ + 72.53434620405935, + 24.847207204894108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 24.847207204894108 + ], + [ + 72.41950352057567, + 24.652559469965656 + ], + [ + 72.64918888754302, + 24.652559469965656 + ], + [ + 72.53434620405935, + 24.847207204894108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 24.847207204894108 + ], + [ + 72.64918888754302, + 24.652559469965656 + ], + [ + 72.7640315710267, + 24.847207204894108 + ], + [ + 72.53434620405935, + 24.847207204894108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 25.236502674751016 + ], + [ + 72.7640315710267, + 25.236502674751016 + ], + [ + 72.64918888754302, + 25.431150409679468 + ], + [ + 72.53434620405935, + 25.236502674751016 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 25.236502674751016 + ], + [ + 72.64918888754302, + 25.431150409679468 + ], + [ + 72.41950352057567, + 25.431150409679468 + ], + [ + 72.53434620405935, + 25.236502674751016 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 25.236502674751016 + ], + [ + 72.41950352057567, + 25.431150409679468 + ], + [ + 72.30466083709199, + 25.236502674751016 + ], + [ + 72.53434620405935, + 25.236502674751016 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 25.236502674751016 + ], + [ + 72.30466083709199, + 25.236502674751016 + ], + [ + 72.41950352057567, + 25.041854939822564 + ], + [ + 72.53434620405935, + 25.236502674751016 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 25.236502674751016 + ], + [ + 72.41950352057567, + 25.041854939822564 + ], + [ + 72.64918888754302, + 25.041854939822564 + ], + [ + 72.53434620405935, + 25.236502674751016 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 25.236502674751016 + ], + [ + 72.64918888754302, + 25.041854939822564 + ], + [ + 72.7640315710267, + 25.236502674751016 + ], + [ + 72.53434620405935, + 25.236502674751016 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 25.62579814460792 + ], + [ + 72.7640315710267, + 25.62579814460792 + ], + [ + 72.64918888754302, + 25.820445879536372 + ], + [ + 72.53434620405935, + 25.62579814460792 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 25.62579814460792 + ], + [ + 72.64918888754302, + 25.820445879536372 + ], + [ + 72.41950352057567, + 25.820445879536372 + ], + [ + 72.53434620405935, + 25.62579814460792 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 25.62579814460792 + ], + [ + 72.41950352057567, + 25.820445879536372 + ], + [ + 72.30466083709199, + 25.62579814460792 + ], + [ + 72.53434620405935, + 25.62579814460792 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 25.62579814460792 + ], + [ + 72.30466083709199, + 25.62579814460792 + ], + [ + 72.41950352057567, + 25.431150409679468 + ], + [ + 72.53434620405935, + 25.62579814460792 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 25.62579814460792 + ], + [ + 72.41950352057567, + 25.431150409679468 + ], + [ + 72.64918888754302, + 25.431150409679468 + ], + [ + 72.53434620405935, + 25.62579814460792 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 25.62579814460792 + ], + [ + 72.64918888754302, + 25.431150409679468 + ], + [ + 72.7640315710267, + 25.62579814460792 + ], + [ + 72.53434620405935, + 25.62579814460792 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 26.015093614464828 + ], + [ + 72.7640315710267, + 26.015093614464828 + ], + [ + 72.64918888754302, + 26.20974134939328 + ], + [ + 72.53434620405935, + 26.015093614464828 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 26.015093614464828 + ], + [ + 72.64918888754302, + 26.20974134939328 + ], + [ + 72.41950352057567, + 26.20974134939328 + ], + [ + 72.53434620405935, + 26.015093614464828 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 26.015093614464828 + ], + [ + 72.41950352057567, + 26.20974134939328 + ], + [ + 72.30466083709199, + 26.015093614464828 + ], + [ + 72.53434620405935, + 26.015093614464828 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 26.015093614464828 + ], + [ + 72.30466083709199, + 26.015093614464828 + ], + [ + 72.41950352057567, + 25.820445879536376 + ], + [ + 72.53434620405935, + 26.015093614464828 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 26.015093614464828 + ], + [ + 72.41950352057567, + 25.820445879536376 + ], + [ + 72.64918888754302, + 25.820445879536376 + ], + [ + 72.53434620405935, + 26.015093614464828 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 26.015093614464828 + ], + [ + 72.64918888754302, + 25.820445879536376 + ], + [ + 72.7640315710267, + 26.015093614464828 + ], + [ + 72.53434620405935, + 26.015093614464828 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 26.404389084321735 + ], + [ + 72.7640315710267, + 26.404389084321735 + ], + [ + 72.64918888754302, + 26.599036819250188 + ], + [ + 72.53434620405935, + 26.404389084321735 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 26.404389084321735 + ], + [ + 72.64918888754302, + 26.599036819250188 + ], + [ + 72.41950352057567, + 26.599036819250188 + ], + [ + 72.53434620405935, + 26.404389084321735 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 26.404389084321735 + ], + [ + 72.41950352057567, + 26.599036819250188 + ], + [ + 72.30466083709199, + 26.404389084321735 + ], + [ + 72.53434620405935, + 26.404389084321735 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 26.404389084321735 + ], + [ + 72.30466083709199, + 26.404389084321735 + ], + [ + 72.41950352057567, + 26.209741349393283 + ], + [ + 72.53434620405935, + 26.404389084321735 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 26.404389084321735 + ], + [ + 72.41950352057567, + 26.209741349393283 + ], + [ + 72.64918888754302, + 26.209741349393283 + ], + [ + 72.53434620405935, + 26.404389084321735 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 26.404389084321735 + ], + [ + 72.64918888754302, + 26.209741349393283 + ], + [ + 72.7640315710267, + 26.404389084321735 + ], + [ + 72.53434620405935, + 26.404389084321735 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 26.79368455417864 + ], + [ + 72.7640315710267, + 26.79368455417864 + ], + [ + 72.64918888754302, + 26.988332289107092 + ], + [ + 72.53434620405935, + 26.79368455417864 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 26.79368455417864 + ], + [ + 72.64918888754302, + 26.988332289107092 + ], + [ + 72.41950352057567, + 26.988332289107092 + ], + [ + 72.53434620405935, + 26.79368455417864 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 26.79368455417864 + ], + [ + 72.41950352057567, + 26.988332289107092 + ], + [ + 72.30466083709199, + 26.79368455417864 + ], + [ + 72.53434620405935, + 26.79368455417864 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 26.79368455417864 + ], + [ + 72.30466083709199, + 26.79368455417864 + ], + [ + 72.41950352057567, + 26.599036819250188 + ], + [ + 72.53434620405935, + 26.79368455417864 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 26.79368455417864 + ], + [ + 72.41950352057567, + 26.599036819250188 + ], + [ + 72.64918888754302, + 26.599036819250188 + ], + [ + 72.53434620405935, + 26.79368455417864 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 26.79368455417864 + ], + [ + 72.64918888754302, + 26.599036819250188 + ], + [ + 72.7640315710267, + 26.79368455417864 + ], + [ + 72.53434620405935, + 26.79368455417864 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 27.182980024035547 + ], + [ + 72.7640315710267, + 27.182980024035547 + ], + [ + 72.64918888754302, + 27.377627758964 + ], + [ + 72.53434620405935, + 27.182980024035547 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 27.182980024035547 + ], + [ + 72.64918888754302, + 27.377627758964 + ], + [ + 72.41950352057567, + 27.377627758964 + ], + [ + 72.53434620405935, + 27.182980024035547 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 27.182980024035547 + ], + [ + 72.41950352057567, + 27.377627758964 + ], + [ + 72.30466083709199, + 27.182980024035547 + ], + [ + 72.53434620405935, + 27.182980024035547 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 27.182980024035547 + ], + [ + 72.30466083709199, + 27.182980024035547 + ], + [ + 72.41950352057567, + 26.988332289107095 + ], + [ + 72.53434620405935, + 27.182980024035547 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 27.182980024035547 + ], + [ + 72.41950352057567, + 26.988332289107095 + ], + [ + 72.64918888754302, + 26.988332289107095 + ], + [ + 72.53434620405935, + 27.182980024035547 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 27.182980024035547 + ], + [ + 72.64918888754302, + 26.988332289107095 + ], + [ + 72.7640315710267, + 27.182980024035547 + ], + [ + 72.53434620405935, + 27.182980024035547 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 27.572275493892455 + ], + [ + 72.7640315710267, + 27.572275493892455 + ], + [ + 72.64918888754302, + 27.766923228820907 + ], + [ + 72.53434620405935, + 27.572275493892455 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 27.572275493892455 + ], + [ + 72.64918888754302, + 27.766923228820907 + ], + [ + 72.41950352057567, + 27.766923228820907 + ], + [ + 72.53434620405935, + 27.572275493892455 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 27.572275493892455 + ], + [ + 72.41950352057567, + 27.766923228820907 + ], + [ + 72.30466083709199, + 27.572275493892455 + ], + [ + 72.53434620405935, + 27.572275493892455 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 27.572275493892455 + ], + [ + 72.30466083709199, + 27.572275493892455 + ], + [ + 72.41950352057567, + 27.377627758964003 + ], + [ + 72.53434620405935, + 27.572275493892455 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 27.572275493892455 + ], + [ + 72.41950352057567, + 27.377627758964003 + ], + [ + 72.64918888754302, + 27.377627758964003 + ], + [ + 72.53434620405935, + 27.572275493892455 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 27.572275493892455 + ], + [ + 72.64918888754302, + 27.377627758964003 + ], + [ + 72.7640315710267, + 27.572275493892455 + ], + [ + 72.53434620405935, + 27.572275493892455 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 27.96157096374936 + ], + [ + 72.7640315710267, + 27.96157096374936 + ], + [ + 72.64918888754302, + 28.15621869867781 + ], + [ + 72.53434620405935, + 27.96157096374936 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 27.96157096374936 + ], + [ + 72.64918888754302, + 28.15621869867781 + ], + [ + 72.41950352057567, + 28.15621869867781 + ], + [ + 72.53434620405935, + 27.96157096374936 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 27.96157096374936 + ], + [ + 72.41950352057567, + 28.15621869867781 + ], + [ + 72.30466083709199, + 27.96157096374936 + ], + [ + 72.53434620405935, + 27.96157096374936 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 27.96157096374936 + ], + [ + 72.30466083709199, + 27.96157096374936 + ], + [ + 72.41950352057567, + 27.766923228820907 + ], + [ + 72.53434620405935, + 27.96157096374936 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 27.96157096374936 + ], + [ + 72.41950352057567, + 27.766923228820907 + ], + [ + 72.64918888754302, + 27.766923228820907 + ], + [ + 72.53434620405935, + 27.96157096374936 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 27.96157096374936 + ], + [ + 72.64918888754302, + 27.766923228820907 + ], + [ + 72.7640315710267, + 27.96157096374936 + ], + [ + 72.53434620405935, + 27.96157096374936 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 28.350866433606267 + ], + [ + 72.7640315710267, + 28.350866433606267 + ], + [ + 72.64918888754302, + 28.54551416853472 + ], + [ + 72.53434620405935, + 28.350866433606267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 28.350866433606267 + ], + [ + 72.64918888754302, + 28.54551416853472 + ], + [ + 72.41950352057567, + 28.54551416853472 + ], + [ + 72.53434620405935, + 28.350866433606267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 28.350866433606267 + ], + [ + 72.41950352057567, + 28.54551416853472 + ], + [ + 72.30466083709199, + 28.350866433606267 + ], + [ + 72.53434620405935, + 28.350866433606267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 28.350866433606267 + ], + [ + 72.30466083709199, + 28.350866433606267 + ], + [ + 72.41950352057567, + 28.156218698677815 + ], + [ + 72.53434620405935, + 28.350866433606267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 28.350866433606267 + ], + [ + 72.41950352057567, + 28.156218698677815 + ], + [ + 72.64918888754302, + 28.156218698677815 + ], + [ + 72.53434620405935, + 28.350866433606267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 28.350866433606267 + ], + [ + 72.64918888754302, + 28.156218698677815 + ], + [ + 72.7640315710267, + 28.350866433606267 + ], + [ + 72.53434620405935, + 28.350866433606267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 28.74016190346317 + ], + [ + 72.7640315710267, + 28.74016190346317 + ], + [ + 72.64918888754302, + 28.934809638391624 + ], + [ + 72.53434620405935, + 28.74016190346317 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 28.74016190346317 + ], + [ + 72.64918888754302, + 28.934809638391624 + ], + [ + 72.41950352057567, + 28.934809638391624 + ], + [ + 72.53434620405935, + 28.74016190346317 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 28.74016190346317 + ], + [ + 72.41950352057567, + 28.934809638391624 + ], + [ + 72.30466083709199, + 28.74016190346317 + ], + [ + 72.53434620405935, + 28.74016190346317 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 28.74016190346317 + ], + [ + 72.30466083709199, + 28.74016190346317 + ], + [ + 72.41950352057567, + 28.54551416853472 + ], + [ + 72.53434620405935, + 28.74016190346317 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 28.74016190346317 + ], + [ + 72.41950352057567, + 28.54551416853472 + ], + [ + 72.64918888754302, + 28.54551416853472 + ], + [ + 72.53434620405935, + 28.74016190346317 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 28.74016190346317 + ], + [ + 72.64918888754302, + 28.54551416853472 + ], + [ + 72.7640315710267, + 28.74016190346317 + ], + [ + 72.53434620405935, + 28.74016190346317 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 29.12945737332008 + ], + [ + 72.7640315710267, + 29.12945737332008 + ], + [ + 72.64918888754302, + 29.32410510824853 + ], + [ + 72.53434620405935, + 29.12945737332008 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 29.12945737332008 + ], + [ + 72.64918888754302, + 29.32410510824853 + ], + [ + 72.41950352057567, + 29.32410510824853 + ], + [ + 72.53434620405935, + 29.12945737332008 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 29.12945737332008 + ], + [ + 72.41950352057567, + 29.32410510824853 + ], + [ + 72.30466083709199, + 29.12945737332008 + ], + [ + 72.53434620405935, + 29.12945737332008 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 29.12945737332008 + ], + [ + 72.30466083709199, + 29.12945737332008 + ], + [ + 72.41950352057567, + 28.934809638391627 + ], + [ + 72.53434620405935, + 29.12945737332008 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 29.12945737332008 + ], + [ + 72.41950352057567, + 28.934809638391627 + ], + [ + 72.64918888754302, + 28.934809638391627 + ], + [ + 72.53434620405935, + 29.12945737332008 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 29.12945737332008 + ], + [ + 72.64918888754302, + 28.934809638391627 + ], + [ + 72.7640315710267, + 29.12945737332008 + ], + [ + 72.53434620405935, + 29.12945737332008 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 29.518752843176983 + ], + [ + 72.7640315710267, + 29.518752843176983 + ], + [ + 72.64918888754302, + 29.713400578105436 + ], + [ + 72.53434620405935, + 29.518752843176983 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 29.518752843176983 + ], + [ + 72.64918888754302, + 29.713400578105436 + ], + [ + 72.41950352057567, + 29.713400578105436 + ], + [ + 72.53434620405935, + 29.518752843176983 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 29.518752843176983 + ], + [ + 72.41950352057567, + 29.713400578105436 + ], + [ + 72.30466083709199, + 29.518752843176983 + ], + [ + 72.53434620405935, + 29.518752843176983 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 29.518752843176983 + ], + [ + 72.30466083709199, + 29.518752843176983 + ], + [ + 72.41950352057567, + 29.32410510824853 + ], + [ + 72.53434620405935, + 29.518752843176983 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 29.518752843176983 + ], + [ + 72.41950352057567, + 29.32410510824853 + ], + [ + 72.64918888754302, + 29.32410510824853 + ], + [ + 72.53434620405935, + 29.518752843176983 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 29.518752843176983 + ], + [ + 72.64918888754302, + 29.32410510824853 + ], + [ + 72.7640315710267, + 29.518752843176983 + ], + [ + 72.53434620405935, + 29.518752843176983 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 29.90804831303389 + ], + [ + 72.7640315710267, + 29.90804831303389 + ], + [ + 72.64918888754302, + 30.102696047962343 + ], + [ + 72.53434620405935, + 29.90804831303389 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 29.90804831303389 + ], + [ + 72.64918888754302, + 30.102696047962343 + ], + [ + 72.41950352057567, + 30.102696047962343 + ], + [ + 72.53434620405935, + 29.90804831303389 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 29.90804831303389 + ], + [ + 72.41950352057567, + 30.102696047962343 + ], + [ + 72.30466083709199, + 29.90804831303389 + ], + [ + 72.53434620405935, + 29.90804831303389 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 29.90804831303389 + ], + [ + 72.30466083709199, + 29.90804831303389 + ], + [ + 72.41950352057567, + 29.71340057810544 + ], + [ + 72.53434620405935, + 29.90804831303389 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 29.90804831303389 + ], + [ + 72.41950352057567, + 29.71340057810544 + ], + [ + 72.64918888754302, + 29.71340057810544 + ], + [ + 72.53434620405935, + 29.90804831303389 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 29.90804831303389 + ], + [ + 72.64918888754302, + 29.71340057810544 + ], + [ + 72.7640315710267, + 29.90804831303389 + ], + [ + 72.53434620405935, + 29.90804831303389 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 30.297343782890795 + ], + [ + 72.7640315710267, + 30.297343782890795 + ], + [ + 72.64918888754302, + 30.491991517819248 + ], + [ + 72.53434620405935, + 30.297343782890795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 30.297343782890795 + ], + [ + 72.64918888754302, + 30.491991517819248 + ], + [ + 72.41950352057567, + 30.491991517819248 + ], + [ + 72.53434620405935, + 30.297343782890795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 30.297343782890795 + ], + [ + 72.41950352057567, + 30.491991517819248 + ], + [ + 72.30466083709199, + 30.297343782890795 + ], + [ + 72.53434620405935, + 30.297343782890795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 30.297343782890795 + ], + [ + 72.30466083709199, + 30.297343782890795 + ], + [ + 72.41950352057567, + 30.102696047962343 + ], + [ + 72.53434620405935, + 30.297343782890795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 30.297343782890795 + ], + [ + 72.41950352057567, + 30.102696047962343 + ], + [ + 72.64918888754302, + 30.102696047962343 + ], + [ + 72.53434620405935, + 30.297343782890795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 30.297343782890795 + ], + [ + 72.64918888754302, + 30.102696047962343 + ], + [ + 72.7640315710267, + 30.297343782890795 + ], + [ + 72.53434620405935, + 30.297343782890795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 30.686639252747703 + ], + [ + 72.7640315710267, + 30.686639252747703 + ], + [ + 72.64918888754302, + 30.881286987676155 + ], + [ + 72.53434620405935, + 30.686639252747703 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 30.686639252747703 + ], + [ + 72.64918888754302, + 30.881286987676155 + ], + [ + 72.41950352057567, + 30.881286987676155 + ], + [ + 72.53434620405935, + 30.686639252747703 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 30.686639252747703 + ], + [ + 72.41950352057567, + 30.881286987676155 + ], + [ + 72.30466083709199, + 30.686639252747703 + ], + [ + 72.53434620405935, + 30.686639252747703 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 30.686639252747703 + ], + [ + 72.30466083709199, + 30.686639252747703 + ], + [ + 72.41950352057567, + 30.49199151781925 + ], + [ + 72.53434620405935, + 30.686639252747703 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 30.686639252747703 + ], + [ + 72.41950352057567, + 30.49199151781925 + ], + [ + 72.64918888754302, + 30.49199151781925 + ], + [ + 72.53434620405935, + 30.686639252747703 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 30.686639252747703 + ], + [ + 72.64918888754302, + 30.49199151781925 + ], + [ + 72.7640315710267, + 30.686639252747703 + ], + [ + 72.53434620405935, + 30.686639252747703 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 31.07593472260461 + ], + [ + 72.7640315710267, + 31.07593472260461 + ], + [ + 72.64918888754302, + 31.270582457533063 + ], + [ + 72.53434620405935, + 31.07593472260461 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 31.07593472260461 + ], + [ + 72.64918888754302, + 31.270582457533063 + ], + [ + 72.41950352057567, + 31.270582457533063 + ], + [ + 72.53434620405935, + 31.07593472260461 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 31.07593472260461 + ], + [ + 72.41950352057567, + 31.270582457533063 + ], + [ + 72.30466083709199, + 31.07593472260461 + ], + [ + 72.53434620405935, + 31.07593472260461 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 31.07593472260461 + ], + [ + 72.30466083709199, + 31.07593472260461 + ], + [ + 72.41950352057567, + 30.88128698767616 + ], + [ + 72.53434620405935, + 31.07593472260461 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 31.07593472260461 + ], + [ + 72.41950352057567, + 30.88128698767616 + ], + [ + 72.64918888754302, + 30.88128698767616 + ], + [ + 72.53434620405935, + 31.07593472260461 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 31.07593472260461 + ], + [ + 72.64918888754302, + 30.88128698767616 + ], + [ + 72.7640315710267, + 31.07593472260461 + ], + [ + 72.53434620405935, + 31.07593472260461 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 31.465230192461515 + ], + [ + 72.7640315710267, + 31.465230192461515 + ], + [ + 72.64918888754302, + 31.659877927389967 + ], + [ + 72.53434620405935, + 31.465230192461515 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 31.465230192461515 + ], + [ + 72.64918888754302, + 31.659877927389967 + ], + [ + 72.41950352057567, + 31.659877927389967 + ], + [ + 72.53434620405935, + 31.465230192461515 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 31.465230192461515 + ], + [ + 72.41950352057567, + 31.659877927389967 + ], + [ + 72.30466083709199, + 31.465230192461515 + ], + [ + 72.53434620405935, + 31.465230192461515 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 31.465230192461515 + ], + [ + 72.30466083709199, + 31.465230192461515 + ], + [ + 72.41950352057567, + 31.270582457533063 + ], + [ + 72.53434620405935, + 31.465230192461515 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 31.465230192461515 + ], + [ + 72.41950352057567, + 31.270582457533063 + ], + [ + 72.64918888754302, + 31.270582457533063 + ], + [ + 72.53434620405935, + 31.465230192461515 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 31.465230192461515 + ], + [ + 72.64918888754302, + 31.270582457533063 + ], + [ + 72.7640315710267, + 31.465230192461515 + ], + [ + 72.53434620405935, + 31.465230192461515 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 31.854525662318423 + ], + [ + 72.7640315710267, + 31.854525662318423 + ], + [ + 72.64918888754302, + 32.049173397246875 + ], + [ + 72.53434620405935, + 31.854525662318423 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 31.854525662318423 + ], + [ + 72.64918888754302, + 32.049173397246875 + ], + [ + 72.41950352057567, + 32.049173397246875 + ], + [ + 72.53434620405935, + 31.854525662318423 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 31.854525662318423 + ], + [ + 72.41950352057567, + 32.049173397246875 + ], + [ + 72.30466083709199, + 31.854525662318423 + ], + [ + 72.53434620405935, + 31.854525662318423 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 31.854525662318423 + ], + [ + 72.30466083709199, + 31.854525662318423 + ], + [ + 72.41950352057567, + 31.65987792738997 + ], + [ + 72.53434620405935, + 31.854525662318423 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 31.854525662318423 + ], + [ + 72.41950352057567, + 31.65987792738997 + ], + [ + 72.64918888754302, + 31.65987792738997 + ], + [ + 72.53434620405935, + 31.854525662318423 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 31.854525662318423 + ], + [ + 72.64918888754302, + 31.65987792738997 + ], + [ + 72.7640315710267, + 31.854525662318423 + ], + [ + 72.53434620405935, + 31.854525662318423 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 32.24382113217533 + ], + [ + 72.7640315710267, + 32.24382113217533 + ], + [ + 72.64918888754302, + 32.43846886710378 + ], + [ + 72.53434620405935, + 32.24382113217533 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 32.24382113217533 + ], + [ + 72.64918888754302, + 32.43846886710378 + ], + [ + 72.41950352057567, + 32.43846886710378 + ], + [ + 72.53434620405935, + 32.24382113217533 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 32.24382113217533 + ], + [ + 72.41950352057567, + 32.43846886710378 + ], + [ + 72.30466083709199, + 32.24382113217533 + ], + [ + 72.53434620405935, + 32.24382113217533 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 32.24382113217533 + ], + [ + 72.30466083709199, + 32.24382113217533 + ], + [ + 72.41950352057567, + 32.049173397246875 + ], + [ + 72.53434620405935, + 32.24382113217533 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 32.24382113217533 + ], + [ + 72.41950352057567, + 32.049173397246875 + ], + [ + 72.64918888754302, + 32.049173397246875 + ], + [ + 72.53434620405935, + 32.24382113217533 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 32.24382113217533 + ], + [ + 72.64918888754302, + 32.049173397246875 + ], + [ + 72.7640315710267, + 32.24382113217533 + ], + [ + 72.53434620405935, + 32.24382113217533 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 32.63311660203224 + ], + [ + 72.7640315710267, + 32.63311660203224 + ], + [ + 72.64918888754302, + 32.82776433696069 + ], + [ + 72.53434620405935, + 32.63311660203224 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 32.63311660203224 + ], + [ + 72.64918888754302, + 32.82776433696069 + ], + [ + 72.41950352057567, + 32.82776433696069 + ], + [ + 72.53434620405935, + 32.63311660203224 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 32.63311660203224 + ], + [ + 72.41950352057567, + 32.82776433696069 + ], + [ + 72.30466083709199, + 32.63311660203224 + ], + [ + 72.53434620405935, + 32.63311660203224 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 32.63311660203224 + ], + [ + 72.30466083709199, + 32.63311660203224 + ], + [ + 72.41950352057567, + 32.438468867103786 + ], + [ + 72.53434620405935, + 32.63311660203224 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 32.63311660203224 + ], + [ + 72.41950352057567, + 32.438468867103786 + ], + [ + 72.64918888754302, + 32.438468867103786 + ], + [ + 72.53434620405935, + 32.63311660203224 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 32.63311660203224 + ], + [ + 72.64918888754302, + 32.438468867103786 + ], + [ + 72.7640315710267, + 32.63311660203224 + ], + [ + 72.53434620405935, + 32.63311660203224 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 33.02241207188914 + ], + [ + 72.7640315710267, + 33.02241207188914 + ], + [ + 72.64918888754302, + 33.217059806817595 + ], + [ + 72.53434620405935, + 33.02241207188914 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 33.02241207188914 + ], + [ + 72.64918888754302, + 33.217059806817595 + ], + [ + 72.41950352057567, + 33.217059806817595 + ], + [ + 72.53434620405935, + 33.02241207188914 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 33.02241207188914 + ], + [ + 72.41950352057567, + 33.217059806817595 + ], + [ + 72.30466083709199, + 33.02241207188914 + ], + [ + 72.53434620405935, + 33.02241207188914 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 33.02241207188914 + ], + [ + 72.30466083709199, + 33.02241207188914 + ], + [ + 72.41950352057567, + 32.82776433696069 + ], + [ + 72.53434620405935, + 33.02241207188914 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 33.02241207188914 + ], + [ + 72.41950352057567, + 32.82776433696069 + ], + [ + 72.64918888754302, + 32.82776433696069 + ], + [ + 72.53434620405935, + 33.02241207188914 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 33.02241207188914 + ], + [ + 72.64918888754302, + 32.82776433696069 + ], + [ + 72.7640315710267, + 33.02241207188914 + ], + [ + 72.53434620405935, + 33.02241207188914 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 33.41170754174605 + ], + [ + 72.7640315710267, + 33.41170754174605 + ], + [ + 72.64918888754302, + 33.6063552766745 + ], + [ + 72.53434620405935, + 33.41170754174605 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 33.41170754174605 + ], + [ + 72.64918888754302, + 33.6063552766745 + ], + [ + 72.41950352057567, + 33.6063552766745 + ], + [ + 72.53434620405935, + 33.41170754174605 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 33.41170754174605 + ], + [ + 72.41950352057567, + 33.6063552766745 + ], + [ + 72.30466083709199, + 33.41170754174605 + ], + [ + 72.53434620405935, + 33.41170754174605 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 33.41170754174605 + ], + [ + 72.30466083709199, + 33.41170754174605 + ], + [ + 72.41950352057567, + 33.217059806817595 + ], + [ + 72.53434620405935, + 33.41170754174605 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 33.41170754174605 + ], + [ + 72.41950352057567, + 33.217059806817595 + ], + [ + 72.64918888754302, + 33.217059806817595 + ], + [ + 72.53434620405935, + 33.41170754174605 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 33.41170754174605 + ], + [ + 72.64918888754302, + 33.217059806817595 + ], + [ + 72.7640315710267, + 33.41170754174605 + ], + [ + 72.53434620405935, + 33.41170754174605 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 33.80100301160295 + ], + [ + 72.7640315710267, + 33.80100301160295 + ], + [ + 72.64918888754302, + 33.9956507465314 + ], + [ + 72.53434620405935, + 33.80100301160295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 33.80100301160295 + ], + [ + 72.64918888754302, + 33.9956507465314 + ], + [ + 72.41950352057567, + 33.9956507465314 + ], + [ + 72.53434620405935, + 33.80100301160295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 33.80100301160295 + ], + [ + 72.41950352057567, + 33.9956507465314 + ], + [ + 72.30466083709199, + 33.80100301160295 + ], + [ + 72.53434620405935, + 33.80100301160295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 33.80100301160295 + ], + [ + 72.30466083709199, + 33.80100301160295 + ], + [ + 72.41950352057567, + 33.6063552766745 + ], + [ + 72.53434620405935, + 33.80100301160295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 33.80100301160295 + ], + [ + 72.41950352057567, + 33.6063552766745 + ], + [ + 72.64918888754302, + 33.6063552766745 + ], + [ + 72.53434620405935, + 33.80100301160295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 33.80100301160295 + ], + [ + 72.64918888754302, + 33.6063552766745 + ], + [ + 72.7640315710267, + 33.80100301160295 + ], + [ + 72.53434620405935, + 33.80100301160295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 34.190298481459855 + ], + [ + 72.7640315710267, + 34.190298481459855 + ], + [ + 72.64918888754302, + 34.38494621638831 + ], + [ + 72.53434620405935, + 34.190298481459855 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 34.190298481459855 + ], + [ + 72.64918888754302, + 34.38494621638831 + ], + [ + 72.41950352057567, + 34.38494621638831 + ], + [ + 72.53434620405935, + 34.190298481459855 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 34.190298481459855 + ], + [ + 72.41950352057567, + 34.38494621638831 + ], + [ + 72.30466083709199, + 34.190298481459855 + ], + [ + 72.53434620405935, + 34.190298481459855 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 34.190298481459855 + ], + [ + 72.30466083709199, + 34.190298481459855 + ], + [ + 72.41950352057567, + 33.9956507465314 + ], + [ + 72.53434620405935, + 34.190298481459855 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 34.190298481459855 + ], + [ + 72.41950352057567, + 33.9956507465314 + ], + [ + 72.64918888754302, + 33.9956507465314 + ], + [ + 72.53434620405935, + 34.190298481459855 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 34.190298481459855 + ], + [ + 72.64918888754302, + 33.9956507465314 + ], + [ + 72.7640315710267, + 34.190298481459855 + ], + [ + 72.53434620405935, + 34.190298481459855 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 34.57959395131677 + ], + [ + 72.7640315710267, + 34.57959395131677 + ], + [ + 72.64918888754302, + 34.77424168624522 + ], + [ + 72.53434620405935, + 34.57959395131677 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 34.57959395131677 + ], + [ + 72.64918888754302, + 34.77424168624522 + ], + [ + 72.41950352057567, + 34.77424168624522 + ], + [ + 72.53434620405935, + 34.57959395131677 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 34.57959395131677 + ], + [ + 72.41950352057567, + 34.77424168624522 + ], + [ + 72.30466083709199, + 34.57959395131677 + ], + [ + 72.53434620405935, + 34.57959395131677 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 34.57959395131677 + ], + [ + 72.30466083709199, + 34.57959395131677 + ], + [ + 72.41950352057567, + 34.384946216388315 + ], + [ + 72.53434620405935, + 34.57959395131677 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 34.57959395131677 + ], + [ + 72.41950352057567, + 34.384946216388315 + ], + [ + 72.64918888754302, + 34.384946216388315 + ], + [ + 72.53434620405935, + 34.57959395131677 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 34.57959395131677 + ], + [ + 72.64918888754302, + 34.384946216388315 + ], + [ + 72.7640315710267, + 34.57959395131677 + ], + [ + 72.53434620405935, + 34.57959395131677 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 34.96888942117368 + ], + [ + 72.7640315710267, + 34.96888942117368 + ], + [ + 72.64918888754302, + 35.16353715610213 + ], + [ + 72.53434620405935, + 34.96888942117368 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 34.96888942117368 + ], + [ + 72.64918888754302, + 35.16353715610213 + ], + [ + 72.41950352057567, + 35.16353715610213 + ], + [ + 72.53434620405935, + 34.96888942117368 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 34.96888942117368 + ], + [ + 72.41950352057567, + 35.16353715610213 + ], + [ + 72.30466083709199, + 34.96888942117368 + ], + [ + 72.53434620405935, + 34.96888942117368 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 34.96888942117368 + ], + [ + 72.30466083709199, + 34.96888942117368 + ], + [ + 72.41950352057567, + 34.774241686245226 + ], + [ + 72.53434620405935, + 34.96888942117368 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 34.96888942117368 + ], + [ + 72.41950352057567, + 34.774241686245226 + ], + [ + 72.64918888754302, + 34.774241686245226 + ], + [ + 72.53434620405935, + 34.96888942117368 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 34.96888942117368 + ], + [ + 72.64918888754302, + 34.774241686245226 + ], + [ + 72.7640315710267, + 34.96888942117368 + ], + [ + 72.53434620405935, + 34.96888942117368 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 35.35818489103058 + ], + [ + 72.7640315710267, + 35.35818489103058 + ], + [ + 72.64918888754302, + 35.552832625959034 + ], + [ + 72.53434620405935, + 35.35818489103058 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 35.35818489103058 + ], + [ + 72.64918888754302, + 35.552832625959034 + ], + [ + 72.41950352057567, + 35.552832625959034 + ], + [ + 72.53434620405935, + 35.35818489103058 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 35.35818489103058 + ], + [ + 72.41950352057567, + 35.552832625959034 + ], + [ + 72.30466083709199, + 35.35818489103058 + ], + [ + 72.53434620405935, + 35.35818489103058 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 35.35818489103058 + ], + [ + 72.30466083709199, + 35.35818489103058 + ], + [ + 72.41950352057567, + 35.16353715610213 + ], + [ + 72.53434620405935, + 35.35818489103058 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 35.35818489103058 + ], + [ + 72.41950352057567, + 35.16353715610213 + ], + [ + 72.64918888754302, + 35.16353715610213 + ], + [ + 72.53434620405935, + 35.35818489103058 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 35.35818489103058 + ], + [ + 72.64918888754302, + 35.16353715610213 + ], + [ + 72.7640315710267, + 35.35818489103058 + ], + [ + 72.53434620405935, + 35.35818489103058 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 35.74748036088749 + ], + [ + 72.7640315710267, + 35.74748036088749 + ], + [ + 72.64918888754302, + 35.94212809581594 + ], + [ + 72.53434620405935, + 35.74748036088749 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 35.74748036088749 + ], + [ + 72.64918888754302, + 35.94212809581594 + ], + [ + 72.41950352057567, + 35.94212809581594 + ], + [ + 72.53434620405935, + 35.74748036088749 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 35.74748036088749 + ], + [ + 72.41950352057567, + 35.94212809581594 + ], + [ + 72.30466083709199, + 35.74748036088749 + ], + [ + 72.53434620405935, + 35.74748036088749 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 35.74748036088749 + ], + [ + 72.30466083709199, + 35.74748036088749 + ], + [ + 72.41950352057567, + 35.552832625959034 + ], + [ + 72.53434620405935, + 35.74748036088749 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 35.74748036088749 + ], + [ + 72.41950352057567, + 35.552832625959034 + ], + [ + 72.64918888754302, + 35.552832625959034 + ], + [ + 72.53434620405935, + 35.74748036088749 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 35.74748036088749 + ], + [ + 72.64918888754302, + 35.552832625959034 + ], + [ + 72.7640315710267, + 35.74748036088749 + ], + [ + 72.53434620405935, + 35.74748036088749 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 36.13677583074439 + ], + [ + 72.7640315710267, + 36.13677583074439 + ], + [ + 72.64918888754302, + 36.33142356567284 + ], + [ + 72.53434620405935, + 36.13677583074439 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 36.13677583074439 + ], + [ + 72.64918888754302, + 36.33142356567284 + ], + [ + 72.41950352057567, + 36.33142356567284 + ], + [ + 72.53434620405935, + 36.13677583074439 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 36.13677583074439 + ], + [ + 72.41950352057567, + 36.33142356567284 + ], + [ + 72.30466083709199, + 36.13677583074439 + ], + [ + 72.53434620405935, + 36.13677583074439 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 36.13677583074439 + ], + [ + 72.30466083709199, + 36.13677583074439 + ], + [ + 72.41950352057567, + 35.94212809581594 + ], + [ + 72.53434620405935, + 36.13677583074439 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 36.13677583074439 + ], + [ + 72.41950352057567, + 35.94212809581594 + ], + [ + 72.64918888754302, + 35.94212809581594 + ], + [ + 72.53434620405935, + 36.13677583074439 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 36.13677583074439 + ], + [ + 72.64918888754302, + 35.94212809581594 + ], + [ + 72.7640315710267, + 36.13677583074439 + ], + [ + 72.53434620405935, + 36.13677583074439 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 36.526071300601295 + ], + [ + 72.7640315710267, + 36.526071300601295 + ], + [ + 72.64918888754302, + 36.72071903552975 + ], + [ + 72.53434620405935, + 36.526071300601295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 36.526071300601295 + ], + [ + 72.64918888754302, + 36.72071903552975 + ], + [ + 72.41950352057567, + 36.72071903552975 + ], + [ + 72.53434620405935, + 36.526071300601295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 36.526071300601295 + ], + [ + 72.41950352057567, + 36.72071903552975 + ], + [ + 72.30466083709199, + 36.526071300601295 + ], + [ + 72.53434620405935, + 36.526071300601295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 36.526071300601295 + ], + [ + 72.30466083709199, + 36.526071300601295 + ], + [ + 72.41950352057567, + 36.33142356567284 + ], + [ + 72.53434620405935, + 36.526071300601295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 36.526071300601295 + ], + [ + 72.41950352057567, + 36.33142356567284 + ], + [ + 72.64918888754302, + 36.33142356567284 + ], + [ + 72.53434620405935, + 36.526071300601295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 36.526071300601295 + ], + [ + 72.64918888754302, + 36.33142356567284 + ], + [ + 72.7640315710267, + 36.526071300601295 + ], + [ + 72.53434620405935, + 36.526071300601295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 36.915366770458206 + ], + [ + 72.7640315710267, + 36.915366770458206 + ], + [ + 72.64918888754302, + 37.11001450538666 + ], + [ + 72.53434620405935, + 36.915366770458206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 36.915366770458206 + ], + [ + 72.64918888754302, + 37.11001450538666 + ], + [ + 72.41950352057567, + 37.11001450538666 + ], + [ + 72.53434620405935, + 36.915366770458206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 36.915366770458206 + ], + [ + 72.41950352057567, + 37.11001450538666 + ], + [ + 72.30466083709199, + 36.915366770458206 + ], + [ + 72.53434620405935, + 36.915366770458206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 36.915366770458206 + ], + [ + 72.30466083709199, + 36.915366770458206 + ], + [ + 72.41950352057567, + 36.720719035529754 + ], + [ + 72.53434620405935, + 36.915366770458206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 36.915366770458206 + ], + [ + 72.41950352057567, + 36.720719035529754 + ], + [ + 72.64918888754302, + 36.720719035529754 + ], + [ + 72.53434620405935, + 36.915366770458206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 36.915366770458206 + ], + [ + 72.64918888754302, + 36.720719035529754 + ], + [ + 72.7640315710267, + 36.915366770458206 + ], + [ + 72.53434620405935, + 36.915366770458206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 37.30466224031511 + ], + [ + 72.7640315710267, + 37.30466224031511 + ], + [ + 72.64918888754302, + 37.49930997524356 + ], + [ + 72.53434620405935, + 37.30466224031511 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 37.30466224031511 + ], + [ + 72.64918888754302, + 37.49930997524356 + ], + [ + 72.41950352057567, + 37.49930997524356 + ], + [ + 72.53434620405935, + 37.30466224031511 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 37.30466224031511 + ], + [ + 72.41950352057567, + 37.49930997524356 + ], + [ + 72.30466083709199, + 37.30466224031511 + ], + [ + 72.53434620405935, + 37.30466224031511 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 37.30466224031511 + ], + [ + 72.30466083709199, + 37.30466224031511 + ], + [ + 72.41950352057567, + 37.11001450538666 + ], + [ + 72.53434620405935, + 37.30466224031511 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 37.30466224031511 + ], + [ + 72.41950352057567, + 37.11001450538666 + ], + [ + 72.64918888754302, + 37.11001450538666 + ], + [ + 72.53434620405935, + 37.30466224031511 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 37.30466224031511 + ], + [ + 72.64918888754302, + 37.11001450538666 + ], + [ + 72.7640315710267, + 37.30466224031511 + ], + [ + 72.53434620405935, + 37.30466224031511 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 37.69395771017202 + ], + [ + 72.7640315710267, + 37.69395771017202 + ], + [ + 72.64918888754302, + 37.888605445100474 + ], + [ + 72.53434620405935, + 37.69395771017202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 37.69395771017202 + ], + [ + 72.64918888754302, + 37.888605445100474 + ], + [ + 72.41950352057567, + 37.888605445100474 + ], + [ + 72.53434620405935, + 37.69395771017202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 37.69395771017202 + ], + [ + 72.41950352057567, + 37.888605445100474 + ], + [ + 72.30466083709199, + 37.69395771017202 + ], + [ + 72.53434620405935, + 37.69395771017202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 37.69395771017202 + ], + [ + 72.30466083709199, + 37.69395771017202 + ], + [ + 72.41950352057567, + 37.49930997524357 + ], + [ + 72.53434620405935, + 37.69395771017202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 37.69395771017202 + ], + [ + 72.41950352057567, + 37.49930997524357 + ], + [ + 72.64918888754302, + 37.49930997524357 + ], + [ + 72.53434620405935, + 37.69395771017202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 37.69395771017202 + ], + [ + 72.64918888754302, + 37.49930997524357 + ], + [ + 72.7640315710267, + 37.69395771017202 + ], + [ + 72.53434620405935, + 37.69395771017202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 38.083253180028926 + ], + [ + 72.7640315710267, + 38.083253180028926 + ], + [ + 72.64918888754302, + 38.27790091495738 + ], + [ + 72.53434620405935, + 38.083253180028926 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 38.083253180028926 + ], + [ + 72.64918888754302, + 38.27790091495738 + ], + [ + 72.41950352057567, + 38.27790091495738 + ], + [ + 72.53434620405935, + 38.083253180028926 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 38.083253180028926 + ], + [ + 72.41950352057567, + 38.27790091495738 + ], + [ + 72.30466083709199, + 38.083253180028926 + ], + [ + 72.53434620405935, + 38.083253180028926 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 38.083253180028926 + ], + [ + 72.30466083709199, + 38.083253180028926 + ], + [ + 72.41950352057567, + 37.888605445100474 + ], + [ + 72.53434620405935, + 38.083253180028926 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 38.083253180028926 + ], + [ + 72.41950352057567, + 37.888605445100474 + ], + [ + 72.64918888754302, + 37.888605445100474 + ], + [ + 72.53434620405935, + 38.083253180028926 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 38.083253180028926 + ], + [ + 72.64918888754302, + 37.888605445100474 + ], + [ + 72.7640315710267, + 38.083253180028926 + ], + [ + 72.53434620405935, + 38.083253180028926 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 38.47254864988583 + ], + [ + 72.7640315710267, + 38.47254864988583 + ], + [ + 72.64918888754302, + 38.66719638481428 + ], + [ + 72.53434620405935, + 38.47254864988583 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 38.47254864988583 + ], + [ + 72.64918888754302, + 38.66719638481428 + ], + [ + 72.41950352057567, + 38.66719638481428 + ], + [ + 72.53434620405935, + 38.47254864988583 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 38.47254864988583 + ], + [ + 72.41950352057567, + 38.66719638481428 + ], + [ + 72.30466083709199, + 38.47254864988583 + ], + [ + 72.53434620405935, + 38.47254864988583 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 38.47254864988583 + ], + [ + 72.30466083709199, + 38.47254864988583 + ], + [ + 72.41950352057567, + 38.27790091495738 + ], + [ + 72.53434620405935, + 38.47254864988583 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 38.47254864988583 + ], + [ + 72.41950352057567, + 38.27790091495738 + ], + [ + 72.64918888754302, + 38.27790091495738 + ], + [ + 72.53434620405935, + 38.47254864988583 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 38.47254864988583 + ], + [ + 72.64918888754302, + 38.27790091495738 + ], + [ + 72.7640315710267, + 38.47254864988583 + ], + [ + 72.53434620405935, + 38.47254864988583 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 38.861844119742734 + ], + [ + 72.7640315710267, + 38.861844119742734 + ], + [ + 72.64918888754302, + 39.05649185467119 + ], + [ + 72.53434620405935, + 38.861844119742734 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 38.861844119742734 + ], + [ + 72.64918888754302, + 39.05649185467119 + ], + [ + 72.41950352057567, + 39.05649185467119 + ], + [ + 72.53434620405935, + 38.861844119742734 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 38.861844119742734 + ], + [ + 72.41950352057567, + 39.05649185467119 + ], + [ + 72.30466083709199, + 38.861844119742734 + ], + [ + 72.53434620405935, + 38.861844119742734 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 38.861844119742734 + ], + [ + 72.30466083709199, + 38.861844119742734 + ], + [ + 72.41950352057567, + 38.66719638481428 + ], + [ + 72.53434620405935, + 38.861844119742734 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 38.861844119742734 + ], + [ + 72.41950352057567, + 38.66719638481428 + ], + [ + 72.64918888754302, + 38.66719638481428 + ], + [ + 72.53434620405935, + 38.861844119742734 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 38.861844119742734 + ], + [ + 72.64918888754302, + 38.66719638481428 + ], + [ + 72.7640315710267, + 38.861844119742734 + ], + [ + 72.53434620405935, + 38.861844119742734 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 39.25113958959964 + ], + [ + 72.7640315710267, + 39.25113958959964 + ], + [ + 72.64918888754302, + 39.44578732452809 + ], + [ + 72.53434620405935, + 39.25113958959964 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 39.25113958959964 + ], + [ + 72.64918888754302, + 39.44578732452809 + ], + [ + 72.41950352057567, + 39.44578732452809 + ], + [ + 72.53434620405935, + 39.25113958959964 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 39.25113958959964 + ], + [ + 72.41950352057567, + 39.44578732452809 + ], + [ + 72.30466083709199, + 39.25113958959964 + ], + [ + 72.53434620405935, + 39.25113958959964 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 39.25113958959964 + ], + [ + 72.30466083709199, + 39.25113958959964 + ], + [ + 72.41950352057567, + 39.05649185467119 + ], + [ + 72.53434620405935, + 39.25113958959964 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 39.25113958959964 + ], + [ + 72.41950352057567, + 39.05649185467119 + ], + [ + 72.64918888754302, + 39.05649185467119 + ], + [ + 72.53434620405935, + 39.25113958959964 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 39.25113958959964 + ], + [ + 72.64918888754302, + 39.05649185467119 + ], + [ + 72.7640315710267, + 39.25113958959964 + ], + [ + 72.53434620405935, + 39.25113958959964 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 39.64043505945655 + ], + [ + 72.7640315710267, + 39.64043505945655 + ], + [ + 72.64918888754302, + 39.835082794385 + ], + [ + 72.53434620405935, + 39.64043505945655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 39.64043505945655 + ], + [ + 72.64918888754302, + 39.835082794385 + ], + [ + 72.41950352057567, + 39.835082794385 + ], + [ + 72.53434620405935, + 39.64043505945655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 39.64043505945655 + ], + [ + 72.41950352057567, + 39.835082794385 + ], + [ + 72.30466083709199, + 39.64043505945655 + ], + [ + 72.53434620405935, + 39.64043505945655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 39.64043505945655 + ], + [ + 72.30466083709199, + 39.64043505945655 + ], + [ + 72.41950352057567, + 39.4457873245281 + ], + [ + 72.53434620405935, + 39.64043505945655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 39.64043505945655 + ], + [ + 72.41950352057567, + 39.4457873245281 + ], + [ + 72.64918888754302, + 39.4457873245281 + ], + [ + 72.53434620405935, + 39.64043505945655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 39.64043505945655 + ], + [ + 72.64918888754302, + 39.4457873245281 + ], + [ + 72.7640315710267, + 39.64043505945655 + ], + [ + 72.53434620405935, + 39.64043505945655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 40.029730529313454 + ], + [ + 72.7640315710267, + 40.029730529313454 + ], + [ + 72.64918888754302, + 40.224378264241906 + ], + [ + 72.53434620405935, + 40.029730529313454 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 40.029730529313454 + ], + [ + 72.64918888754302, + 40.224378264241906 + ], + [ + 72.41950352057567, + 40.224378264241906 + ], + [ + 72.53434620405935, + 40.029730529313454 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 40.029730529313454 + ], + [ + 72.41950352057567, + 40.224378264241906 + ], + [ + 72.30466083709199, + 40.029730529313454 + ], + [ + 72.53434620405935, + 40.029730529313454 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 40.029730529313454 + ], + [ + 72.30466083709199, + 40.029730529313454 + ], + [ + 72.41950352057567, + 39.835082794385 + ], + [ + 72.53434620405935, + 40.029730529313454 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 40.029730529313454 + ], + [ + 72.41950352057567, + 39.835082794385 + ], + [ + 72.64918888754302, + 39.835082794385 + ], + [ + 72.53434620405935, + 40.029730529313454 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 40.029730529313454 + ], + [ + 72.64918888754302, + 39.835082794385 + ], + [ + 72.7640315710267, + 40.029730529313454 + ], + [ + 72.53434620405935, + 40.029730529313454 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 40.419025999170366 + ], + [ + 72.7640315710267, + 40.419025999170366 + ], + [ + 72.64918888754302, + 40.61367373409882 + ], + [ + 72.53434620405935, + 40.419025999170366 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 40.419025999170366 + ], + [ + 72.64918888754302, + 40.61367373409882 + ], + [ + 72.41950352057567, + 40.61367373409882 + ], + [ + 72.53434620405935, + 40.419025999170366 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 40.419025999170366 + ], + [ + 72.41950352057567, + 40.61367373409882 + ], + [ + 72.30466083709199, + 40.419025999170366 + ], + [ + 72.53434620405935, + 40.419025999170366 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 40.419025999170366 + ], + [ + 72.30466083709199, + 40.419025999170366 + ], + [ + 72.41950352057567, + 40.22437826424191 + ], + [ + 72.53434620405935, + 40.419025999170366 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 40.419025999170366 + ], + [ + 72.41950352057567, + 40.22437826424191 + ], + [ + 72.64918888754302, + 40.22437826424191 + ], + [ + 72.53434620405935, + 40.419025999170366 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 40.419025999170366 + ], + [ + 72.64918888754302, + 40.22437826424191 + ], + [ + 72.7640315710267, + 40.419025999170366 + ], + [ + 72.53434620405935, + 40.419025999170366 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 40.80832146902727 + ], + [ + 72.7640315710267, + 40.80832146902727 + ], + [ + 72.64918888754302, + 41.00296920395572 + ], + [ + 72.53434620405935, + 40.80832146902727 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 40.80832146902727 + ], + [ + 72.64918888754302, + 41.00296920395572 + ], + [ + 72.41950352057567, + 41.00296920395572 + ], + [ + 72.53434620405935, + 40.80832146902727 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 40.80832146902727 + ], + [ + 72.41950352057567, + 41.00296920395572 + ], + [ + 72.30466083709199, + 40.80832146902727 + ], + [ + 72.53434620405935, + 40.80832146902727 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 40.80832146902727 + ], + [ + 72.30466083709199, + 40.80832146902727 + ], + [ + 72.41950352057567, + 40.61367373409882 + ], + [ + 72.53434620405935, + 40.80832146902727 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 40.80832146902727 + ], + [ + 72.41950352057567, + 40.61367373409882 + ], + [ + 72.64918888754302, + 40.61367373409882 + ], + [ + 72.53434620405935, + 40.80832146902727 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 40.80832146902727 + ], + [ + 72.64918888754302, + 40.61367373409882 + ], + [ + 72.7640315710267, + 40.80832146902727 + ], + [ + 72.53434620405935, + 40.80832146902727 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 41.197616938884174 + ], + [ + 72.7640315710267, + 41.197616938884174 + ], + [ + 72.64918888754302, + 41.392264673812626 + ], + [ + 72.53434620405935, + 41.197616938884174 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 41.197616938884174 + ], + [ + 72.64918888754302, + 41.392264673812626 + ], + [ + 72.41950352057567, + 41.392264673812626 + ], + [ + 72.53434620405935, + 41.197616938884174 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 41.197616938884174 + ], + [ + 72.41950352057567, + 41.392264673812626 + ], + [ + 72.30466083709199, + 41.197616938884174 + ], + [ + 72.53434620405935, + 41.197616938884174 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 41.197616938884174 + ], + [ + 72.30466083709199, + 41.197616938884174 + ], + [ + 72.41950352057567, + 41.00296920395572 + ], + [ + 72.53434620405935, + 41.197616938884174 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 41.197616938884174 + ], + [ + 72.41950352057567, + 41.00296920395572 + ], + [ + 72.64918888754302, + 41.00296920395572 + ], + [ + 72.53434620405935, + 41.197616938884174 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 41.197616938884174 + ], + [ + 72.64918888754302, + 41.00296920395572 + ], + [ + 72.7640315710267, + 41.197616938884174 + ], + [ + 72.53434620405935, + 41.197616938884174 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 41.58691240874108 + ], + [ + 72.7640315710267, + 41.58691240874108 + ], + [ + 72.64918888754302, + 41.78156014366953 + ], + [ + 72.53434620405935, + 41.58691240874108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 41.58691240874108 + ], + [ + 72.64918888754302, + 41.78156014366953 + ], + [ + 72.41950352057567, + 41.78156014366953 + ], + [ + 72.53434620405935, + 41.58691240874108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 41.58691240874108 + ], + [ + 72.41950352057567, + 41.78156014366953 + ], + [ + 72.30466083709199, + 41.58691240874108 + ], + [ + 72.53434620405935, + 41.58691240874108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 41.58691240874108 + ], + [ + 72.30466083709199, + 41.58691240874108 + ], + [ + 72.41950352057567, + 41.392264673812626 + ], + [ + 72.53434620405935, + 41.58691240874108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 41.58691240874108 + ], + [ + 72.41950352057567, + 41.392264673812626 + ], + [ + 72.64918888754302, + 41.392264673812626 + ], + [ + 72.53434620405935, + 41.58691240874108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 41.58691240874108 + ], + [ + 72.64918888754302, + 41.392264673812626 + ], + [ + 72.7640315710267, + 41.58691240874108 + ], + [ + 72.53434620405935, + 41.58691240874108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 41.97620787859798 + ], + [ + 72.7640315710267, + 41.97620787859798 + ], + [ + 72.64918888754302, + 42.170855613526435 + ], + [ + 72.53434620405935, + 41.97620787859798 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 41.97620787859798 + ], + [ + 72.64918888754302, + 42.170855613526435 + ], + [ + 72.41950352057567, + 42.170855613526435 + ], + [ + 72.53434620405935, + 41.97620787859798 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 41.97620787859798 + ], + [ + 72.41950352057567, + 42.170855613526435 + ], + [ + 72.30466083709199, + 41.97620787859798 + ], + [ + 72.53434620405935, + 41.97620787859798 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 41.97620787859798 + ], + [ + 72.30466083709199, + 41.97620787859798 + ], + [ + 72.41950352057567, + 41.78156014366953 + ], + [ + 72.53434620405935, + 41.97620787859798 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 41.97620787859798 + ], + [ + 72.41950352057567, + 41.78156014366953 + ], + [ + 72.64918888754302, + 41.78156014366953 + ], + [ + 72.53434620405935, + 41.97620787859798 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 41.97620787859798 + ], + [ + 72.64918888754302, + 41.78156014366953 + ], + [ + 72.7640315710267, + 41.97620787859798 + ], + [ + 72.53434620405935, + 41.97620787859798 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 42.365503348454894 + ], + [ + 72.7640315710267, + 42.365503348454894 + ], + [ + 72.64918888754302, + 42.560151083383346 + ], + [ + 72.53434620405935, + 42.365503348454894 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 42.365503348454894 + ], + [ + 72.64918888754302, + 42.560151083383346 + ], + [ + 72.41950352057567, + 42.560151083383346 + ], + [ + 72.53434620405935, + 42.365503348454894 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 42.365503348454894 + ], + [ + 72.41950352057567, + 42.560151083383346 + ], + [ + 72.30466083709199, + 42.365503348454894 + ], + [ + 72.53434620405935, + 42.365503348454894 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 42.365503348454894 + ], + [ + 72.30466083709199, + 42.365503348454894 + ], + [ + 72.41950352057567, + 42.17085561352644 + ], + [ + 72.53434620405935, + 42.365503348454894 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 42.365503348454894 + ], + [ + 72.41950352057567, + 42.17085561352644 + ], + [ + 72.64918888754302, + 42.17085561352644 + ], + [ + 72.53434620405935, + 42.365503348454894 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 42.365503348454894 + ], + [ + 72.64918888754302, + 42.17085561352644 + ], + [ + 72.7640315710267, + 42.365503348454894 + ], + [ + 72.53434620405935, + 42.365503348454894 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 42.754798818311805 + ], + [ + 72.7640315710267, + 42.754798818311805 + ], + [ + 72.64918888754302, + 42.94944655324026 + ], + [ + 72.53434620405935, + 42.754798818311805 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 42.754798818311805 + ], + [ + 72.64918888754302, + 42.94944655324026 + ], + [ + 72.41950352057567, + 42.94944655324026 + ], + [ + 72.53434620405935, + 42.754798818311805 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 42.754798818311805 + ], + [ + 72.41950352057567, + 42.94944655324026 + ], + [ + 72.30466083709199, + 42.754798818311805 + ], + [ + 72.53434620405935, + 42.754798818311805 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 42.754798818311805 + ], + [ + 72.30466083709199, + 42.754798818311805 + ], + [ + 72.41950352057567, + 42.56015108338335 + ], + [ + 72.53434620405935, + 42.754798818311805 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 42.754798818311805 + ], + [ + 72.41950352057567, + 42.56015108338335 + ], + [ + 72.64918888754302, + 42.56015108338335 + ], + [ + 72.53434620405935, + 42.754798818311805 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 42.754798818311805 + ], + [ + 72.64918888754302, + 42.56015108338335 + ], + [ + 72.7640315710267, + 42.754798818311805 + ], + [ + 72.53434620405935, + 42.754798818311805 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 43.14409428816871 + ], + [ + 72.7640315710267, + 43.14409428816871 + ], + [ + 72.64918888754302, + 43.33874202309716 + ], + [ + 72.53434620405935, + 43.14409428816871 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 43.14409428816871 + ], + [ + 72.64918888754302, + 43.33874202309716 + ], + [ + 72.41950352057567, + 43.33874202309716 + ], + [ + 72.53434620405935, + 43.14409428816871 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 43.14409428816871 + ], + [ + 72.41950352057567, + 43.33874202309716 + ], + [ + 72.30466083709199, + 43.14409428816871 + ], + [ + 72.53434620405935, + 43.14409428816871 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 43.14409428816871 + ], + [ + 72.30466083709199, + 43.14409428816871 + ], + [ + 72.41950352057567, + 42.94944655324026 + ], + [ + 72.53434620405935, + 43.14409428816871 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 43.14409428816871 + ], + [ + 72.41950352057567, + 42.94944655324026 + ], + [ + 72.64918888754302, + 42.94944655324026 + ], + [ + 72.53434620405935, + 43.14409428816871 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 43.14409428816871 + ], + [ + 72.64918888754302, + 42.94944655324026 + ], + [ + 72.7640315710267, + 43.14409428816871 + ], + [ + 72.53434620405935, + 43.14409428816871 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 43.53338975802561 + ], + [ + 72.7640315710267, + 43.53338975802561 + ], + [ + 72.64918888754302, + 43.728037492954066 + ], + [ + 72.53434620405935, + 43.53338975802561 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 43.53338975802561 + ], + [ + 72.64918888754302, + 43.728037492954066 + ], + [ + 72.41950352057567, + 43.728037492954066 + ], + [ + 72.53434620405935, + 43.53338975802561 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 43.53338975802561 + ], + [ + 72.41950352057567, + 43.728037492954066 + ], + [ + 72.30466083709199, + 43.53338975802561 + ], + [ + 72.53434620405935, + 43.53338975802561 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 43.53338975802561 + ], + [ + 72.30466083709199, + 43.53338975802561 + ], + [ + 72.41950352057567, + 43.33874202309716 + ], + [ + 72.53434620405935, + 43.53338975802561 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 43.53338975802561 + ], + [ + 72.41950352057567, + 43.33874202309716 + ], + [ + 72.64918888754302, + 43.33874202309716 + ], + [ + 72.53434620405935, + 43.53338975802561 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 43.53338975802561 + ], + [ + 72.64918888754302, + 43.33874202309716 + ], + [ + 72.7640315710267, + 43.53338975802561 + ], + [ + 72.53434620405935, + 43.53338975802561 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 43.92268522788252 + ], + [ + 72.7640315710267, + 43.92268522788252 + ], + [ + 72.64918888754302, + 44.11733296281097 + ], + [ + 72.53434620405935, + 43.92268522788252 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 43.92268522788252 + ], + [ + 72.64918888754302, + 44.11733296281097 + ], + [ + 72.41950352057567, + 44.11733296281097 + ], + [ + 72.53434620405935, + 43.92268522788252 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 43.92268522788252 + ], + [ + 72.41950352057567, + 44.11733296281097 + ], + [ + 72.30466083709199, + 43.92268522788252 + ], + [ + 72.53434620405935, + 43.92268522788252 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 43.92268522788252 + ], + [ + 72.30466083709199, + 43.92268522788252 + ], + [ + 72.41950352057567, + 43.728037492954066 + ], + [ + 72.53434620405935, + 43.92268522788252 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 43.92268522788252 + ], + [ + 72.41950352057567, + 43.728037492954066 + ], + [ + 72.64918888754302, + 43.728037492954066 + ], + [ + 72.53434620405935, + 43.92268522788252 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 43.92268522788252 + ], + [ + 72.64918888754302, + 43.728037492954066 + ], + [ + 72.7640315710267, + 43.92268522788252 + ], + [ + 72.53434620405935, + 43.92268522788252 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 44.31198069773942 + ], + [ + 72.7640315710267, + 44.31198069773942 + ], + [ + 72.64918888754302, + 44.506628432667874 + ], + [ + 72.53434620405935, + 44.31198069773942 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 44.31198069773942 + ], + [ + 72.64918888754302, + 44.506628432667874 + ], + [ + 72.41950352057567, + 44.506628432667874 + ], + [ + 72.53434620405935, + 44.31198069773942 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 44.31198069773942 + ], + [ + 72.41950352057567, + 44.506628432667874 + ], + [ + 72.30466083709199, + 44.31198069773942 + ], + [ + 72.53434620405935, + 44.31198069773942 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 44.31198069773942 + ], + [ + 72.30466083709199, + 44.31198069773942 + ], + [ + 72.41950352057567, + 44.11733296281097 + ], + [ + 72.53434620405935, + 44.31198069773942 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 44.31198069773942 + ], + [ + 72.41950352057567, + 44.11733296281097 + ], + [ + 72.64918888754302, + 44.11733296281097 + ], + [ + 72.53434620405935, + 44.31198069773942 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 44.31198069773942 + ], + [ + 72.64918888754302, + 44.11733296281097 + ], + [ + 72.7640315710267, + 44.31198069773942 + ], + [ + 72.53434620405935, + 44.31198069773942 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 44.701276167596326 + ], + [ + 72.7640315710267, + 44.701276167596326 + ], + [ + 72.64918888754302, + 44.89592390252478 + ], + [ + 72.53434620405935, + 44.701276167596326 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 44.701276167596326 + ], + [ + 72.64918888754302, + 44.89592390252478 + ], + [ + 72.41950352057567, + 44.89592390252478 + ], + [ + 72.53434620405935, + 44.701276167596326 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 44.701276167596326 + ], + [ + 72.41950352057567, + 44.89592390252478 + ], + [ + 72.30466083709199, + 44.701276167596326 + ], + [ + 72.53434620405935, + 44.701276167596326 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 44.701276167596326 + ], + [ + 72.30466083709199, + 44.701276167596326 + ], + [ + 72.41950352057567, + 44.506628432667874 + ], + [ + 72.53434620405935, + 44.701276167596326 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 44.701276167596326 + ], + [ + 72.41950352057567, + 44.506628432667874 + ], + [ + 72.64918888754302, + 44.506628432667874 + ], + [ + 72.53434620405935, + 44.701276167596326 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 44.701276167596326 + ], + [ + 72.64918888754302, + 44.506628432667874 + ], + [ + 72.7640315710267, + 44.701276167596326 + ], + [ + 72.53434620405935, + 44.701276167596326 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 45.090571637453245 + ], + [ + 72.7640315710267, + 45.090571637453245 + ], + [ + 72.64918888754302, + 45.2852193723817 + ], + [ + 72.53434620405935, + 45.090571637453245 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 45.090571637453245 + ], + [ + 72.64918888754302, + 45.2852193723817 + ], + [ + 72.41950352057567, + 45.2852193723817 + ], + [ + 72.53434620405935, + 45.090571637453245 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 45.090571637453245 + ], + [ + 72.41950352057567, + 45.2852193723817 + ], + [ + 72.30466083709199, + 45.090571637453245 + ], + [ + 72.53434620405935, + 45.090571637453245 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 45.090571637453245 + ], + [ + 72.30466083709199, + 45.090571637453245 + ], + [ + 72.41950352057567, + 44.89592390252479 + ], + [ + 72.53434620405935, + 45.090571637453245 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 45.090571637453245 + ], + [ + 72.41950352057567, + 44.89592390252479 + ], + [ + 72.64918888754302, + 44.89592390252479 + ], + [ + 72.53434620405935, + 45.090571637453245 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 45.090571637453245 + ], + [ + 72.64918888754302, + 44.89592390252479 + ], + [ + 72.7640315710267, + 45.090571637453245 + ], + [ + 72.53434620405935, + 45.090571637453245 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 45.47986710731015 + ], + [ + 72.7640315710267, + 45.47986710731015 + ], + [ + 72.64918888754302, + 45.6745148422386 + ], + [ + 72.53434620405935, + 45.47986710731015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 45.47986710731015 + ], + [ + 72.64918888754302, + 45.6745148422386 + ], + [ + 72.41950352057567, + 45.6745148422386 + ], + [ + 72.53434620405935, + 45.47986710731015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 45.47986710731015 + ], + [ + 72.41950352057567, + 45.6745148422386 + ], + [ + 72.30466083709199, + 45.47986710731015 + ], + [ + 72.53434620405935, + 45.47986710731015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 45.47986710731015 + ], + [ + 72.30466083709199, + 45.47986710731015 + ], + [ + 72.41950352057567, + 45.2852193723817 + ], + [ + 72.53434620405935, + 45.47986710731015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 45.47986710731015 + ], + [ + 72.41950352057567, + 45.2852193723817 + ], + [ + 72.64918888754302, + 45.2852193723817 + ], + [ + 72.53434620405935, + 45.47986710731015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 45.47986710731015 + ], + [ + 72.64918888754302, + 45.2852193723817 + ], + [ + 72.7640315710267, + 45.47986710731015 + ], + [ + 72.53434620405935, + 45.47986710731015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 45.86916257716705 + ], + [ + 72.7640315710267, + 45.86916257716705 + ], + [ + 72.64918888754302, + 46.063810312095505 + ], + [ + 72.53434620405935, + 45.86916257716705 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 45.86916257716705 + ], + [ + 72.64918888754302, + 46.063810312095505 + ], + [ + 72.41950352057567, + 46.063810312095505 + ], + [ + 72.53434620405935, + 45.86916257716705 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 45.86916257716705 + ], + [ + 72.41950352057567, + 46.063810312095505 + ], + [ + 72.30466083709199, + 45.86916257716705 + ], + [ + 72.53434620405935, + 45.86916257716705 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 45.86916257716705 + ], + [ + 72.30466083709199, + 45.86916257716705 + ], + [ + 72.41950352057567, + 45.6745148422386 + ], + [ + 72.53434620405935, + 45.86916257716705 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 45.86916257716705 + ], + [ + 72.41950352057567, + 45.6745148422386 + ], + [ + 72.64918888754302, + 45.6745148422386 + ], + [ + 72.53434620405935, + 45.86916257716705 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 45.86916257716705 + ], + [ + 72.64918888754302, + 45.6745148422386 + ], + [ + 72.7640315710267, + 45.86916257716705 + ], + [ + 72.53434620405935, + 45.86916257716705 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 46.25845804702396 + ], + [ + 72.7640315710267, + 46.25845804702396 + ], + [ + 72.64918888754302, + 46.45310578195241 + ], + [ + 72.53434620405935, + 46.25845804702396 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 46.25845804702396 + ], + [ + 72.64918888754302, + 46.45310578195241 + ], + [ + 72.41950352057567, + 46.45310578195241 + ], + [ + 72.53434620405935, + 46.25845804702396 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 46.25845804702396 + ], + [ + 72.41950352057567, + 46.45310578195241 + ], + [ + 72.30466083709199, + 46.25845804702396 + ], + [ + 72.53434620405935, + 46.25845804702396 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 46.25845804702396 + ], + [ + 72.30466083709199, + 46.25845804702396 + ], + [ + 72.41950352057567, + 46.063810312095505 + ], + [ + 72.53434620405935, + 46.25845804702396 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 46.25845804702396 + ], + [ + 72.41950352057567, + 46.063810312095505 + ], + [ + 72.64918888754302, + 46.063810312095505 + ], + [ + 72.53434620405935, + 46.25845804702396 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 46.25845804702396 + ], + [ + 72.64918888754302, + 46.063810312095505 + ], + [ + 72.7640315710267, + 46.25845804702396 + ], + [ + 72.53434620405935, + 46.25845804702396 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 46.64775351688086 + ], + [ + 72.7640315710267, + 46.64775351688086 + ], + [ + 72.64918888754302, + 46.842401251809314 + ], + [ + 72.53434620405935, + 46.64775351688086 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 46.64775351688086 + ], + [ + 72.64918888754302, + 46.842401251809314 + ], + [ + 72.41950352057567, + 46.842401251809314 + ], + [ + 72.53434620405935, + 46.64775351688086 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 46.64775351688086 + ], + [ + 72.41950352057567, + 46.842401251809314 + ], + [ + 72.30466083709199, + 46.64775351688086 + ], + [ + 72.53434620405935, + 46.64775351688086 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 46.64775351688086 + ], + [ + 72.30466083709199, + 46.64775351688086 + ], + [ + 72.41950352057567, + 46.45310578195241 + ], + [ + 72.53434620405935, + 46.64775351688086 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 46.64775351688086 + ], + [ + 72.41950352057567, + 46.45310578195241 + ], + [ + 72.64918888754302, + 46.45310578195241 + ], + [ + 72.53434620405935, + 46.64775351688086 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 46.64775351688086 + ], + [ + 72.64918888754302, + 46.45310578195241 + ], + [ + 72.7640315710267, + 46.64775351688086 + ], + [ + 72.53434620405935, + 46.64775351688086 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 47.037048986737766 + ], + [ + 72.7640315710267, + 47.037048986737766 + ], + [ + 72.64918888754302, + 47.23169672166622 + ], + [ + 72.53434620405935, + 47.037048986737766 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 47.037048986737766 + ], + [ + 72.64918888754302, + 47.23169672166622 + ], + [ + 72.41950352057567, + 47.23169672166622 + ], + [ + 72.53434620405935, + 47.037048986737766 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 47.037048986737766 + ], + [ + 72.41950352057567, + 47.23169672166622 + ], + [ + 72.30466083709199, + 47.037048986737766 + ], + [ + 72.53434620405935, + 47.037048986737766 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 47.037048986737766 + ], + [ + 72.30466083709199, + 47.037048986737766 + ], + [ + 72.41950352057567, + 46.842401251809314 + ], + [ + 72.53434620405935, + 47.037048986737766 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 47.037048986737766 + ], + [ + 72.41950352057567, + 46.842401251809314 + ], + [ + 72.64918888754302, + 46.842401251809314 + ], + [ + 72.53434620405935, + 47.037048986737766 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 47.037048986737766 + ], + [ + 72.64918888754302, + 46.842401251809314 + ], + [ + 72.7640315710267, + 47.037048986737766 + ], + [ + 72.53434620405935, + 47.037048986737766 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 47.42634445659467 + ], + [ + 72.7640315710267, + 47.42634445659467 + ], + [ + 72.64918888754302, + 47.62099219152312 + ], + [ + 72.53434620405935, + 47.42634445659467 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 47.42634445659467 + ], + [ + 72.64918888754302, + 47.62099219152312 + ], + [ + 72.41950352057567, + 47.62099219152312 + ], + [ + 72.53434620405935, + 47.42634445659467 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 47.42634445659467 + ], + [ + 72.41950352057567, + 47.62099219152312 + ], + [ + 72.30466083709199, + 47.42634445659467 + ], + [ + 72.53434620405935, + 47.42634445659467 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 47.42634445659467 + ], + [ + 72.30466083709199, + 47.42634445659467 + ], + [ + 72.41950352057567, + 47.23169672166622 + ], + [ + 72.53434620405935, + 47.42634445659467 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 47.42634445659467 + ], + [ + 72.41950352057567, + 47.23169672166622 + ], + [ + 72.64918888754302, + 47.23169672166622 + ], + [ + 72.53434620405935, + 47.42634445659467 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 47.42634445659467 + ], + [ + 72.64918888754302, + 47.23169672166622 + ], + [ + 72.7640315710267, + 47.42634445659467 + ], + [ + 72.53434620405935, + 47.42634445659467 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 47.81563992645159 + ], + [ + 72.7640315710267, + 47.81563992645159 + ], + [ + 72.64918888754302, + 48.01028766138004 + ], + [ + 72.53434620405935, + 47.81563992645159 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 47.81563992645159 + ], + [ + 72.64918888754302, + 48.01028766138004 + ], + [ + 72.41950352057567, + 48.01028766138004 + ], + [ + 72.53434620405935, + 47.81563992645159 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 47.81563992645159 + ], + [ + 72.41950352057567, + 48.01028766138004 + ], + [ + 72.30466083709199, + 47.81563992645159 + ], + [ + 72.53434620405935, + 47.81563992645159 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 47.81563992645159 + ], + [ + 72.30466083709199, + 47.81563992645159 + ], + [ + 72.41950352057567, + 47.620992191523136 + ], + [ + 72.53434620405935, + 47.81563992645159 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 47.81563992645159 + ], + [ + 72.41950352057567, + 47.620992191523136 + ], + [ + 72.64918888754302, + 47.620992191523136 + ], + [ + 72.53434620405935, + 47.81563992645159 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.53434620405935, + 47.81563992645159 + ], + [ + 72.64918888754302, + 47.620992191523136 + ], + [ + 72.7640315710267, + 47.81563992645159 + ], + [ + 72.53434620405935, + 47.81563992645159 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 11.805808964687746 + ], + [ + 73.10855962147774, + 11.805808964687746 + ], + [ + 72.99371693799405, + 12.0004566996162 + ], + [ + 72.87887425451038, + 11.805808964687746 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 11.805808964687746 + ], + [ + 72.99371693799405, + 12.0004566996162 + ], + [ + 72.7640315710267, + 12.0004566996162 + ], + [ + 72.87887425451038, + 11.805808964687746 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 11.805808964687746 + ], + [ + 72.7640315710267, + 12.0004566996162 + ], + [ + 72.64918888754302, + 11.805808964687746 + ], + [ + 72.87887425451038, + 11.805808964687746 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 11.805808964687746 + ], + [ + 72.64918888754302, + 11.805808964687746 + ], + [ + 72.7640315710267, + 11.611161229759292 + ], + [ + 72.87887425451038, + 11.805808964687746 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 11.805808964687746 + ], + [ + 72.7640315710267, + 11.611161229759292 + ], + [ + 72.99371693799405, + 11.611161229759292 + ], + [ + 72.87887425451038, + 11.805808964687746 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 11.805808964687746 + ], + [ + 72.99371693799405, + 11.611161229759292 + ], + [ + 73.10855962147774, + 11.805808964687746 + ], + [ + 72.87887425451038, + 11.805808964687746 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 12.195104434544652 + ], + [ + 73.10855962147774, + 12.195104434544652 + ], + [ + 72.99371693799405, + 12.389752169473105 + ], + [ + 72.87887425451038, + 12.195104434544652 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 12.195104434544652 + ], + [ + 72.99371693799405, + 12.389752169473105 + ], + [ + 72.7640315710267, + 12.389752169473105 + ], + [ + 72.87887425451038, + 12.195104434544652 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 12.195104434544652 + ], + [ + 72.7640315710267, + 12.389752169473105 + ], + [ + 72.64918888754302, + 12.195104434544652 + ], + [ + 72.87887425451038, + 12.195104434544652 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 12.195104434544652 + ], + [ + 72.64918888754302, + 12.195104434544652 + ], + [ + 72.7640315710267, + 12.000456699616198 + ], + [ + 72.87887425451038, + 12.195104434544652 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 12.195104434544652 + ], + [ + 72.7640315710267, + 12.000456699616198 + ], + [ + 72.99371693799405, + 12.000456699616198 + ], + [ + 72.87887425451038, + 12.195104434544652 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 12.195104434544652 + ], + [ + 72.99371693799405, + 12.000456699616198 + ], + [ + 73.10855962147774, + 12.195104434544652 + ], + [ + 72.87887425451038, + 12.195104434544652 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 12.58439990440156 + ], + [ + 73.10855962147774, + 12.58439990440156 + ], + [ + 72.99371693799405, + 12.779047639330013 + ], + [ + 72.87887425451038, + 12.58439990440156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 12.58439990440156 + ], + [ + 72.99371693799405, + 12.779047639330013 + ], + [ + 72.7640315710267, + 12.779047639330013 + ], + [ + 72.87887425451038, + 12.58439990440156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 12.58439990440156 + ], + [ + 72.7640315710267, + 12.779047639330013 + ], + [ + 72.64918888754302, + 12.58439990440156 + ], + [ + 72.87887425451038, + 12.58439990440156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 12.58439990440156 + ], + [ + 72.64918888754302, + 12.58439990440156 + ], + [ + 72.7640315710267, + 12.389752169473105 + ], + [ + 72.87887425451038, + 12.58439990440156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 12.58439990440156 + ], + [ + 72.7640315710267, + 12.389752169473105 + ], + [ + 72.99371693799405, + 12.389752169473105 + ], + [ + 72.87887425451038, + 12.58439990440156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 12.58439990440156 + ], + [ + 72.99371693799405, + 12.389752169473105 + ], + [ + 73.10855962147774, + 12.58439990440156 + ], + [ + 72.87887425451038, + 12.58439990440156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 12.973695374258465 + ], + [ + 73.10855962147774, + 12.973695374258465 + ], + [ + 72.99371693799405, + 13.16834310918692 + ], + [ + 72.87887425451038, + 12.973695374258465 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 12.973695374258465 + ], + [ + 72.99371693799405, + 13.16834310918692 + ], + [ + 72.7640315710267, + 13.16834310918692 + ], + [ + 72.87887425451038, + 12.973695374258465 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 12.973695374258465 + ], + [ + 72.7640315710267, + 13.16834310918692 + ], + [ + 72.64918888754302, + 12.973695374258465 + ], + [ + 72.87887425451038, + 12.973695374258465 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 12.973695374258465 + ], + [ + 72.64918888754302, + 12.973695374258465 + ], + [ + 72.7640315710267, + 12.779047639330011 + ], + [ + 72.87887425451038, + 12.973695374258465 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 12.973695374258465 + ], + [ + 72.7640315710267, + 12.779047639330011 + ], + [ + 72.99371693799405, + 12.779047639330011 + ], + [ + 72.87887425451038, + 12.973695374258465 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 12.973695374258465 + ], + [ + 72.99371693799405, + 12.779047639330011 + ], + [ + 73.10855962147774, + 12.973695374258465 + ], + [ + 72.87887425451038, + 12.973695374258465 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 13.362990844115371 + ], + [ + 73.10855962147774, + 13.362990844115371 + ], + [ + 72.99371693799405, + 13.557638579043825 + ], + [ + 72.87887425451038, + 13.362990844115371 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 13.362990844115371 + ], + [ + 72.99371693799405, + 13.557638579043825 + ], + [ + 72.7640315710267, + 13.557638579043825 + ], + [ + 72.87887425451038, + 13.362990844115371 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 13.362990844115371 + ], + [ + 72.7640315710267, + 13.557638579043825 + ], + [ + 72.64918888754302, + 13.362990844115371 + ], + [ + 72.87887425451038, + 13.362990844115371 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 13.362990844115371 + ], + [ + 72.64918888754302, + 13.362990844115371 + ], + [ + 72.7640315710267, + 13.168343109186917 + ], + [ + 72.87887425451038, + 13.362990844115371 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 13.362990844115371 + ], + [ + 72.7640315710267, + 13.168343109186917 + ], + [ + 72.99371693799405, + 13.168343109186917 + ], + [ + 72.87887425451038, + 13.362990844115371 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 13.362990844115371 + ], + [ + 72.99371693799405, + 13.168343109186917 + ], + [ + 73.10855962147774, + 13.362990844115371 + ], + [ + 72.87887425451038, + 13.362990844115371 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 13.752286313972277 + ], + [ + 73.10855962147774, + 13.752286313972277 + ], + [ + 72.99371693799405, + 13.946934048900731 + ], + [ + 72.87887425451038, + 13.752286313972277 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 13.752286313972277 + ], + [ + 72.99371693799405, + 13.946934048900731 + ], + [ + 72.7640315710267, + 13.946934048900731 + ], + [ + 72.87887425451038, + 13.752286313972277 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 13.752286313972277 + ], + [ + 72.7640315710267, + 13.946934048900731 + ], + [ + 72.64918888754302, + 13.752286313972277 + ], + [ + 72.87887425451038, + 13.752286313972277 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 13.752286313972277 + ], + [ + 72.64918888754302, + 13.752286313972277 + ], + [ + 72.7640315710267, + 13.557638579043823 + ], + [ + 72.87887425451038, + 13.752286313972277 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 13.752286313972277 + ], + [ + 72.7640315710267, + 13.557638579043823 + ], + [ + 72.99371693799405, + 13.557638579043823 + ], + [ + 72.87887425451038, + 13.752286313972277 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 13.752286313972277 + ], + [ + 72.99371693799405, + 13.557638579043823 + ], + [ + 73.10855962147774, + 13.752286313972277 + ], + [ + 72.87887425451038, + 13.752286313972277 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 14.141581783829183 + ], + [ + 73.10855962147774, + 14.141581783829183 + ], + [ + 72.99371693799405, + 14.336229518757637 + ], + [ + 72.87887425451038, + 14.141581783829183 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 14.141581783829183 + ], + [ + 72.99371693799405, + 14.336229518757637 + ], + [ + 72.7640315710267, + 14.336229518757637 + ], + [ + 72.87887425451038, + 14.141581783829183 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 14.141581783829183 + ], + [ + 72.7640315710267, + 14.336229518757637 + ], + [ + 72.64918888754302, + 14.141581783829183 + ], + [ + 72.87887425451038, + 14.141581783829183 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 14.141581783829183 + ], + [ + 72.64918888754302, + 14.141581783829183 + ], + [ + 72.7640315710267, + 13.94693404890073 + ], + [ + 72.87887425451038, + 14.141581783829183 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 14.141581783829183 + ], + [ + 72.7640315710267, + 13.94693404890073 + ], + [ + 72.99371693799405, + 13.94693404890073 + ], + [ + 72.87887425451038, + 14.141581783829183 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 14.141581783829183 + ], + [ + 72.99371693799405, + 13.94693404890073 + ], + [ + 73.10855962147774, + 14.141581783829183 + ], + [ + 72.87887425451038, + 14.141581783829183 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 14.530877253686091 + ], + [ + 73.10855962147774, + 14.530877253686091 + ], + [ + 72.99371693799405, + 14.725524988614545 + ], + [ + 72.87887425451038, + 14.530877253686091 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 14.530877253686091 + ], + [ + 72.99371693799405, + 14.725524988614545 + ], + [ + 72.7640315710267, + 14.725524988614545 + ], + [ + 72.87887425451038, + 14.530877253686091 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 14.530877253686091 + ], + [ + 72.7640315710267, + 14.725524988614545 + ], + [ + 72.64918888754302, + 14.530877253686091 + ], + [ + 72.87887425451038, + 14.530877253686091 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 14.530877253686091 + ], + [ + 72.64918888754302, + 14.530877253686091 + ], + [ + 72.7640315710267, + 14.336229518757637 + ], + [ + 72.87887425451038, + 14.530877253686091 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 14.530877253686091 + ], + [ + 72.7640315710267, + 14.336229518757637 + ], + [ + 72.99371693799405, + 14.336229518757637 + ], + [ + 72.87887425451038, + 14.530877253686091 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 14.530877253686091 + ], + [ + 72.99371693799405, + 14.336229518757637 + ], + [ + 73.10855962147774, + 14.530877253686091 + ], + [ + 72.87887425451038, + 14.530877253686091 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 14.920172723542997 + ], + [ + 73.10855962147774, + 14.920172723542997 + ], + [ + 72.99371693799405, + 15.114820458471451 + ], + [ + 72.87887425451038, + 14.920172723542997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 14.920172723542997 + ], + [ + 72.99371693799405, + 15.114820458471451 + ], + [ + 72.7640315710267, + 15.114820458471451 + ], + [ + 72.87887425451038, + 14.920172723542997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 14.920172723542997 + ], + [ + 72.7640315710267, + 15.114820458471451 + ], + [ + 72.64918888754302, + 14.920172723542997 + ], + [ + 72.87887425451038, + 14.920172723542997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 14.920172723542997 + ], + [ + 72.64918888754302, + 14.920172723542997 + ], + [ + 72.7640315710267, + 14.725524988614543 + ], + [ + 72.87887425451038, + 14.920172723542997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 14.920172723542997 + ], + [ + 72.7640315710267, + 14.725524988614543 + ], + [ + 72.99371693799405, + 14.725524988614543 + ], + [ + 72.87887425451038, + 14.920172723542997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 14.920172723542997 + ], + [ + 72.99371693799405, + 14.725524988614543 + ], + [ + 73.10855962147774, + 14.920172723542997 + ], + [ + 72.87887425451038, + 14.920172723542997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 15.309468193399903 + ], + [ + 73.10855962147774, + 15.309468193399903 + ], + [ + 72.99371693799405, + 15.504115928328357 + ], + [ + 72.87887425451038, + 15.309468193399903 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 15.309468193399903 + ], + [ + 72.99371693799405, + 15.504115928328357 + ], + [ + 72.7640315710267, + 15.504115928328357 + ], + [ + 72.87887425451038, + 15.309468193399903 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 15.309468193399903 + ], + [ + 72.7640315710267, + 15.504115928328357 + ], + [ + 72.64918888754302, + 15.309468193399903 + ], + [ + 72.87887425451038, + 15.309468193399903 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 15.309468193399903 + ], + [ + 72.64918888754302, + 15.309468193399903 + ], + [ + 72.7640315710267, + 15.11482045847145 + ], + [ + 72.87887425451038, + 15.309468193399903 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 15.309468193399903 + ], + [ + 72.7640315710267, + 15.11482045847145 + ], + [ + 72.99371693799405, + 15.11482045847145 + ], + [ + 72.87887425451038, + 15.309468193399903 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 15.309468193399903 + ], + [ + 72.99371693799405, + 15.11482045847145 + ], + [ + 73.10855962147774, + 15.309468193399903 + ], + [ + 72.87887425451038, + 15.309468193399903 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 15.69876366325681 + ], + [ + 73.10855962147774, + 15.69876366325681 + ], + [ + 72.99371693799405, + 15.893411398185265 + ], + [ + 72.87887425451038, + 15.69876366325681 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 15.69876366325681 + ], + [ + 72.99371693799405, + 15.893411398185265 + ], + [ + 72.7640315710267, + 15.893411398185265 + ], + [ + 72.87887425451038, + 15.69876366325681 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 15.69876366325681 + ], + [ + 72.7640315710267, + 15.893411398185265 + ], + [ + 72.64918888754302, + 15.69876366325681 + ], + [ + 72.87887425451038, + 15.69876366325681 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 15.69876366325681 + ], + [ + 72.64918888754302, + 15.69876366325681 + ], + [ + 72.7640315710267, + 15.504115928328357 + ], + [ + 72.87887425451038, + 15.69876366325681 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 15.69876366325681 + ], + [ + 72.7640315710267, + 15.504115928328357 + ], + [ + 72.99371693799405, + 15.504115928328357 + ], + [ + 72.87887425451038, + 15.69876366325681 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 15.69876366325681 + ], + [ + 72.99371693799405, + 15.504115928328357 + ], + [ + 73.10855962147774, + 15.69876366325681 + ], + [ + 72.87887425451038, + 15.69876366325681 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 16.088059133113717 + ], + [ + 73.10855962147774, + 16.088059133113717 + ], + [ + 72.99371693799405, + 16.28270686804217 + ], + [ + 72.87887425451038, + 16.088059133113717 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 16.088059133113717 + ], + [ + 72.99371693799405, + 16.28270686804217 + ], + [ + 72.7640315710267, + 16.28270686804217 + ], + [ + 72.87887425451038, + 16.088059133113717 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 16.088059133113717 + ], + [ + 72.7640315710267, + 16.28270686804217 + ], + [ + 72.64918888754302, + 16.088059133113717 + ], + [ + 72.87887425451038, + 16.088059133113717 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 16.088059133113717 + ], + [ + 72.64918888754302, + 16.088059133113717 + ], + [ + 72.7640315710267, + 15.893411398185263 + ], + [ + 72.87887425451038, + 16.088059133113717 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 16.088059133113717 + ], + [ + 72.7640315710267, + 15.893411398185263 + ], + [ + 72.99371693799405, + 15.893411398185263 + ], + [ + 72.87887425451038, + 16.088059133113717 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 16.088059133113717 + ], + [ + 72.99371693799405, + 15.893411398185263 + ], + [ + 73.10855962147774, + 16.088059133113717 + ], + [ + 72.87887425451038, + 16.088059133113717 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 16.477354602970625 + ], + [ + 73.10855962147774, + 16.477354602970625 + ], + [ + 72.99371693799405, + 16.672002337899077 + ], + [ + 72.87887425451038, + 16.477354602970625 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 16.477354602970625 + ], + [ + 72.99371693799405, + 16.672002337899077 + ], + [ + 72.7640315710267, + 16.672002337899077 + ], + [ + 72.87887425451038, + 16.477354602970625 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 16.477354602970625 + ], + [ + 72.7640315710267, + 16.672002337899077 + ], + [ + 72.64918888754302, + 16.477354602970625 + ], + [ + 72.87887425451038, + 16.477354602970625 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 16.477354602970625 + ], + [ + 72.64918888754302, + 16.477354602970625 + ], + [ + 72.7640315710267, + 16.282706868042172 + ], + [ + 72.87887425451038, + 16.477354602970625 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 16.477354602970625 + ], + [ + 72.7640315710267, + 16.282706868042172 + ], + [ + 72.99371693799405, + 16.282706868042172 + ], + [ + 72.87887425451038, + 16.477354602970625 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 16.477354602970625 + ], + [ + 72.99371693799405, + 16.282706868042172 + ], + [ + 73.10855962147774, + 16.477354602970625 + ], + [ + 72.87887425451038, + 16.477354602970625 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 16.86665007282753 + ], + [ + 73.10855962147774, + 16.86665007282753 + ], + [ + 72.99371693799405, + 17.06129780775598 + ], + [ + 72.87887425451038, + 16.86665007282753 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 16.86665007282753 + ], + [ + 72.99371693799405, + 17.06129780775598 + ], + [ + 72.7640315710267, + 17.06129780775598 + ], + [ + 72.87887425451038, + 16.86665007282753 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 16.86665007282753 + ], + [ + 72.7640315710267, + 17.06129780775598 + ], + [ + 72.64918888754302, + 16.86665007282753 + ], + [ + 72.87887425451038, + 16.86665007282753 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 16.86665007282753 + ], + [ + 72.64918888754302, + 16.86665007282753 + ], + [ + 72.7640315710267, + 16.672002337899077 + ], + [ + 72.87887425451038, + 16.86665007282753 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 16.86665007282753 + ], + [ + 72.7640315710267, + 16.672002337899077 + ], + [ + 72.99371693799405, + 16.672002337899077 + ], + [ + 72.87887425451038, + 16.86665007282753 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 16.86665007282753 + ], + [ + 72.99371693799405, + 16.672002337899077 + ], + [ + 73.10855962147774, + 16.86665007282753 + ], + [ + 72.87887425451038, + 16.86665007282753 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 17.255945542684437 + ], + [ + 73.10855962147774, + 17.255945542684437 + ], + [ + 72.99371693799405, + 17.45059327761289 + ], + [ + 72.87887425451038, + 17.255945542684437 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 17.255945542684437 + ], + [ + 72.99371693799405, + 17.45059327761289 + ], + [ + 72.7640315710267, + 17.45059327761289 + ], + [ + 72.87887425451038, + 17.255945542684437 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 17.255945542684437 + ], + [ + 72.7640315710267, + 17.45059327761289 + ], + [ + 72.64918888754302, + 17.255945542684437 + ], + [ + 72.87887425451038, + 17.255945542684437 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 17.255945542684437 + ], + [ + 72.64918888754302, + 17.255945542684437 + ], + [ + 72.7640315710267, + 17.061297807755984 + ], + [ + 72.87887425451038, + 17.255945542684437 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 17.255945542684437 + ], + [ + 72.7640315710267, + 17.061297807755984 + ], + [ + 72.99371693799405, + 17.061297807755984 + ], + [ + 72.87887425451038, + 17.255945542684437 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 17.255945542684437 + ], + [ + 72.99371693799405, + 17.061297807755984 + ], + [ + 73.10855962147774, + 17.255945542684437 + ], + [ + 72.87887425451038, + 17.255945542684437 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 17.64524101254134 + ], + [ + 73.10855962147774, + 17.64524101254134 + ], + [ + 72.99371693799405, + 17.839888747469793 + ], + [ + 72.87887425451038, + 17.64524101254134 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 17.64524101254134 + ], + [ + 72.99371693799405, + 17.839888747469793 + ], + [ + 72.7640315710267, + 17.839888747469793 + ], + [ + 72.87887425451038, + 17.64524101254134 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 17.64524101254134 + ], + [ + 72.7640315710267, + 17.839888747469793 + ], + [ + 72.64918888754302, + 17.64524101254134 + ], + [ + 72.87887425451038, + 17.64524101254134 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 17.64524101254134 + ], + [ + 72.64918888754302, + 17.64524101254134 + ], + [ + 72.7640315710267, + 17.45059327761289 + ], + [ + 72.87887425451038, + 17.64524101254134 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 17.64524101254134 + ], + [ + 72.7640315710267, + 17.45059327761289 + ], + [ + 72.99371693799405, + 17.45059327761289 + ], + [ + 72.87887425451038, + 17.64524101254134 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 17.64524101254134 + ], + [ + 72.99371693799405, + 17.45059327761289 + ], + [ + 73.10855962147774, + 17.64524101254134 + ], + [ + 72.87887425451038, + 17.64524101254134 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 18.03453648239825 + ], + [ + 73.10855962147774, + 18.03453648239825 + ], + [ + 72.99371693799405, + 18.2291842173267 + ], + [ + 72.87887425451038, + 18.03453648239825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 18.03453648239825 + ], + [ + 72.99371693799405, + 18.2291842173267 + ], + [ + 72.7640315710267, + 18.2291842173267 + ], + [ + 72.87887425451038, + 18.03453648239825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 18.03453648239825 + ], + [ + 72.7640315710267, + 18.2291842173267 + ], + [ + 72.64918888754302, + 18.03453648239825 + ], + [ + 72.87887425451038, + 18.03453648239825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 18.03453648239825 + ], + [ + 72.64918888754302, + 18.03453648239825 + ], + [ + 72.7640315710267, + 17.839888747469796 + ], + [ + 72.87887425451038, + 18.03453648239825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 18.03453648239825 + ], + [ + 72.7640315710267, + 17.839888747469796 + ], + [ + 72.99371693799405, + 17.839888747469796 + ], + [ + 72.87887425451038, + 18.03453648239825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 18.03453648239825 + ], + [ + 72.99371693799405, + 17.839888747469796 + ], + [ + 73.10855962147774, + 18.03453648239825 + ], + [ + 72.87887425451038, + 18.03453648239825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 18.423831952255156 + ], + [ + 73.10855962147774, + 18.423831952255156 + ], + [ + 72.99371693799405, + 18.61847968718361 + ], + [ + 72.87887425451038, + 18.423831952255156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 18.423831952255156 + ], + [ + 72.99371693799405, + 18.61847968718361 + ], + [ + 72.7640315710267, + 18.61847968718361 + ], + [ + 72.87887425451038, + 18.423831952255156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 18.423831952255156 + ], + [ + 72.7640315710267, + 18.61847968718361 + ], + [ + 72.64918888754302, + 18.423831952255156 + ], + [ + 72.87887425451038, + 18.423831952255156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 18.423831952255156 + ], + [ + 72.64918888754302, + 18.423831952255156 + ], + [ + 72.7640315710267, + 18.229184217326704 + ], + [ + 72.87887425451038, + 18.423831952255156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 18.423831952255156 + ], + [ + 72.7640315710267, + 18.229184217326704 + ], + [ + 72.99371693799405, + 18.229184217326704 + ], + [ + 72.87887425451038, + 18.423831952255156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 18.423831952255156 + ], + [ + 72.99371693799405, + 18.229184217326704 + ], + [ + 73.10855962147774, + 18.423831952255156 + ], + [ + 72.87887425451038, + 18.423831952255156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 18.81312742211206 + ], + [ + 73.10855962147774, + 18.81312742211206 + ], + [ + 72.99371693799405, + 19.007775157040513 + ], + [ + 72.87887425451038, + 18.81312742211206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 18.81312742211206 + ], + [ + 72.99371693799405, + 19.007775157040513 + ], + [ + 72.7640315710267, + 19.007775157040513 + ], + [ + 72.87887425451038, + 18.81312742211206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 18.81312742211206 + ], + [ + 72.7640315710267, + 19.007775157040513 + ], + [ + 72.64918888754302, + 18.81312742211206 + ], + [ + 72.87887425451038, + 18.81312742211206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 18.81312742211206 + ], + [ + 72.64918888754302, + 18.81312742211206 + ], + [ + 72.7640315710267, + 18.61847968718361 + ], + [ + 72.87887425451038, + 18.81312742211206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 18.81312742211206 + ], + [ + 72.7640315710267, + 18.61847968718361 + ], + [ + 72.99371693799405, + 18.61847968718361 + ], + [ + 72.87887425451038, + 18.81312742211206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 18.81312742211206 + ], + [ + 72.99371693799405, + 18.61847968718361 + ], + [ + 73.10855962147774, + 18.81312742211206 + ], + [ + 72.87887425451038, + 18.81312742211206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 19.20242289196897 + ], + [ + 73.10855962147774, + 19.20242289196897 + ], + [ + 72.99371693799405, + 19.39707062689742 + ], + [ + 72.87887425451038, + 19.20242289196897 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 19.20242289196897 + ], + [ + 72.99371693799405, + 19.39707062689742 + ], + [ + 72.7640315710267, + 19.39707062689742 + ], + [ + 72.87887425451038, + 19.20242289196897 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 19.20242289196897 + ], + [ + 72.7640315710267, + 19.39707062689742 + ], + [ + 72.64918888754302, + 19.20242289196897 + ], + [ + 72.87887425451038, + 19.20242289196897 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 19.20242289196897 + ], + [ + 72.64918888754302, + 19.20242289196897 + ], + [ + 72.7640315710267, + 19.007775157040516 + ], + [ + 72.87887425451038, + 19.20242289196897 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 19.20242289196897 + ], + [ + 72.7640315710267, + 19.007775157040516 + ], + [ + 72.99371693799405, + 19.007775157040516 + ], + [ + 72.87887425451038, + 19.20242289196897 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 19.20242289196897 + ], + [ + 72.99371693799405, + 19.007775157040516 + ], + [ + 73.10855962147774, + 19.20242289196897 + ], + [ + 72.87887425451038, + 19.20242289196897 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 19.591718361825876 + ], + [ + 73.10855962147774, + 19.591718361825876 + ], + [ + 72.99371693799405, + 19.78636609675433 + ], + [ + 72.87887425451038, + 19.591718361825876 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 19.591718361825876 + ], + [ + 72.99371693799405, + 19.78636609675433 + ], + [ + 72.7640315710267, + 19.78636609675433 + ], + [ + 72.87887425451038, + 19.591718361825876 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 19.591718361825876 + ], + [ + 72.7640315710267, + 19.78636609675433 + ], + [ + 72.64918888754302, + 19.591718361825876 + ], + [ + 72.87887425451038, + 19.591718361825876 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 19.591718361825876 + ], + [ + 72.64918888754302, + 19.591718361825876 + ], + [ + 72.7640315710267, + 19.397070626897424 + ], + [ + 72.87887425451038, + 19.591718361825876 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 19.591718361825876 + ], + [ + 72.7640315710267, + 19.397070626897424 + ], + [ + 72.99371693799405, + 19.397070626897424 + ], + [ + 72.87887425451038, + 19.591718361825876 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 19.591718361825876 + ], + [ + 72.99371693799405, + 19.397070626897424 + ], + [ + 73.10855962147774, + 19.591718361825876 + ], + [ + 72.87887425451038, + 19.591718361825876 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 19.98101383168278 + ], + [ + 73.10855962147774, + 19.98101383168278 + ], + [ + 72.99371693799405, + 20.175661566611232 + ], + [ + 72.87887425451038, + 19.98101383168278 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 19.98101383168278 + ], + [ + 72.99371693799405, + 20.175661566611232 + ], + [ + 72.7640315710267, + 20.175661566611232 + ], + [ + 72.87887425451038, + 19.98101383168278 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 19.98101383168278 + ], + [ + 72.7640315710267, + 20.175661566611232 + ], + [ + 72.64918888754302, + 19.98101383168278 + ], + [ + 72.87887425451038, + 19.98101383168278 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 19.98101383168278 + ], + [ + 72.64918888754302, + 19.98101383168278 + ], + [ + 72.7640315710267, + 19.78636609675433 + ], + [ + 72.87887425451038, + 19.98101383168278 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 19.98101383168278 + ], + [ + 72.7640315710267, + 19.78636609675433 + ], + [ + 72.99371693799405, + 19.78636609675433 + ], + [ + 72.87887425451038, + 19.98101383168278 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 19.98101383168278 + ], + [ + 72.99371693799405, + 19.78636609675433 + ], + [ + 73.10855962147774, + 19.98101383168278 + ], + [ + 72.87887425451038, + 19.98101383168278 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 20.370309301539685 + ], + [ + 73.10855962147774, + 20.370309301539685 + ], + [ + 72.99371693799405, + 20.564957036468137 + ], + [ + 72.87887425451038, + 20.370309301539685 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 20.370309301539685 + ], + [ + 72.99371693799405, + 20.564957036468137 + ], + [ + 72.7640315710267, + 20.564957036468137 + ], + [ + 72.87887425451038, + 20.370309301539685 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 20.370309301539685 + ], + [ + 72.7640315710267, + 20.564957036468137 + ], + [ + 72.64918888754302, + 20.370309301539685 + ], + [ + 72.87887425451038, + 20.370309301539685 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 20.370309301539685 + ], + [ + 72.64918888754302, + 20.370309301539685 + ], + [ + 72.7640315710267, + 20.175661566611232 + ], + [ + 72.87887425451038, + 20.370309301539685 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 20.370309301539685 + ], + [ + 72.7640315710267, + 20.175661566611232 + ], + [ + 72.99371693799405, + 20.175661566611232 + ], + [ + 72.87887425451038, + 20.370309301539685 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 20.370309301539685 + ], + [ + 72.99371693799405, + 20.175661566611232 + ], + [ + 73.10855962147774, + 20.370309301539685 + ], + [ + 72.87887425451038, + 20.370309301539685 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 20.759604771396592 + ], + [ + 73.10855962147774, + 20.759604771396592 + ], + [ + 72.99371693799405, + 20.954252506325044 + ], + [ + 72.87887425451038, + 20.759604771396592 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 20.759604771396592 + ], + [ + 72.99371693799405, + 20.954252506325044 + ], + [ + 72.7640315710267, + 20.954252506325044 + ], + [ + 72.87887425451038, + 20.759604771396592 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 20.759604771396592 + ], + [ + 72.7640315710267, + 20.954252506325044 + ], + [ + 72.64918888754302, + 20.759604771396592 + ], + [ + 72.87887425451038, + 20.759604771396592 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 20.759604771396592 + ], + [ + 72.64918888754302, + 20.759604771396592 + ], + [ + 72.7640315710267, + 20.56495703646814 + ], + [ + 72.87887425451038, + 20.759604771396592 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 20.759604771396592 + ], + [ + 72.7640315710267, + 20.56495703646814 + ], + [ + 72.99371693799405, + 20.56495703646814 + ], + [ + 72.87887425451038, + 20.759604771396592 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 20.759604771396592 + ], + [ + 72.99371693799405, + 20.56495703646814 + ], + [ + 73.10855962147774, + 20.759604771396592 + ], + [ + 72.87887425451038, + 20.759604771396592 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 21.1489002412535 + ], + [ + 73.10855962147774, + 21.1489002412535 + ], + [ + 72.99371693799405, + 21.343547976181952 + ], + [ + 72.87887425451038, + 21.1489002412535 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 21.1489002412535 + ], + [ + 72.99371693799405, + 21.343547976181952 + ], + [ + 72.7640315710267, + 21.343547976181952 + ], + [ + 72.87887425451038, + 21.1489002412535 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 21.1489002412535 + ], + [ + 72.7640315710267, + 21.343547976181952 + ], + [ + 72.64918888754302, + 21.1489002412535 + ], + [ + 72.87887425451038, + 21.1489002412535 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 21.1489002412535 + ], + [ + 72.64918888754302, + 21.1489002412535 + ], + [ + 72.7640315710267, + 20.954252506325048 + ], + [ + 72.87887425451038, + 21.1489002412535 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 21.1489002412535 + ], + [ + 72.7640315710267, + 20.954252506325048 + ], + [ + 72.99371693799405, + 20.954252506325048 + ], + [ + 72.87887425451038, + 21.1489002412535 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 21.1489002412535 + ], + [ + 72.99371693799405, + 20.954252506325048 + ], + [ + 73.10855962147774, + 21.1489002412535 + ], + [ + 72.87887425451038, + 21.1489002412535 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 21.538195711110404 + ], + [ + 73.10855962147774, + 21.538195711110404 + ], + [ + 72.99371693799405, + 21.732843446038856 + ], + [ + 72.87887425451038, + 21.538195711110404 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 21.538195711110404 + ], + [ + 72.99371693799405, + 21.732843446038856 + ], + [ + 72.7640315710267, + 21.732843446038856 + ], + [ + 72.87887425451038, + 21.538195711110404 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 21.538195711110404 + ], + [ + 72.7640315710267, + 21.732843446038856 + ], + [ + 72.64918888754302, + 21.538195711110404 + ], + [ + 72.87887425451038, + 21.538195711110404 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 21.538195711110404 + ], + [ + 72.64918888754302, + 21.538195711110404 + ], + [ + 72.7640315710267, + 21.343547976181952 + ], + [ + 72.87887425451038, + 21.538195711110404 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 21.538195711110404 + ], + [ + 72.7640315710267, + 21.343547976181952 + ], + [ + 72.99371693799405, + 21.343547976181952 + ], + [ + 72.87887425451038, + 21.538195711110404 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 21.538195711110404 + ], + [ + 72.99371693799405, + 21.343547976181952 + ], + [ + 73.10855962147774, + 21.538195711110404 + ], + [ + 72.87887425451038, + 21.538195711110404 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 21.927491180967312 + ], + [ + 73.10855962147774, + 21.927491180967312 + ], + [ + 72.99371693799405, + 22.122138915895764 + ], + [ + 72.87887425451038, + 21.927491180967312 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 21.927491180967312 + ], + [ + 72.99371693799405, + 22.122138915895764 + ], + [ + 72.7640315710267, + 22.122138915895764 + ], + [ + 72.87887425451038, + 21.927491180967312 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 21.927491180967312 + ], + [ + 72.7640315710267, + 22.122138915895764 + ], + [ + 72.64918888754302, + 21.927491180967312 + ], + [ + 72.87887425451038, + 21.927491180967312 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 21.927491180967312 + ], + [ + 72.64918888754302, + 21.927491180967312 + ], + [ + 72.7640315710267, + 21.73284344603886 + ], + [ + 72.87887425451038, + 21.927491180967312 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 21.927491180967312 + ], + [ + 72.7640315710267, + 21.73284344603886 + ], + [ + 72.99371693799405, + 21.73284344603886 + ], + [ + 72.87887425451038, + 21.927491180967312 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 21.927491180967312 + ], + [ + 72.99371693799405, + 21.73284344603886 + ], + [ + 73.10855962147774, + 21.927491180967312 + ], + [ + 72.87887425451038, + 21.927491180967312 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 22.31678665082422 + ], + [ + 73.10855962147774, + 22.31678665082422 + ], + [ + 72.99371693799405, + 22.511434385752672 + ], + [ + 72.87887425451038, + 22.31678665082422 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 22.31678665082422 + ], + [ + 72.99371693799405, + 22.511434385752672 + ], + [ + 72.7640315710267, + 22.511434385752672 + ], + [ + 72.87887425451038, + 22.31678665082422 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 22.31678665082422 + ], + [ + 72.7640315710267, + 22.511434385752672 + ], + [ + 72.64918888754302, + 22.31678665082422 + ], + [ + 72.87887425451038, + 22.31678665082422 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 22.31678665082422 + ], + [ + 72.64918888754302, + 22.31678665082422 + ], + [ + 72.7640315710267, + 22.122138915895768 + ], + [ + 72.87887425451038, + 22.31678665082422 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 22.31678665082422 + ], + [ + 72.7640315710267, + 22.122138915895768 + ], + [ + 72.99371693799405, + 22.122138915895768 + ], + [ + 72.87887425451038, + 22.31678665082422 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 22.31678665082422 + ], + [ + 72.99371693799405, + 22.122138915895768 + ], + [ + 73.10855962147774, + 22.31678665082422 + ], + [ + 72.87887425451038, + 22.31678665082422 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 22.706082120681124 + ], + [ + 73.10855962147774, + 22.706082120681124 + ], + [ + 72.99371693799405, + 22.900729855609576 + ], + [ + 72.87887425451038, + 22.706082120681124 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 22.706082120681124 + ], + [ + 72.99371693799405, + 22.900729855609576 + ], + [ + 72.7640315710267, + 22.900729855609576 + ], + [ + 72.87887425451038, + 22.706082120681124 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 22.706082120681124 + ], + [ + 72.7640315710267, + 22.900729855609576 + ], + [ + 72.64918888754302, + 22.706082120681124 + ], + [ + 72.87887425451038, + 22.706082120681124 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 22.706082120681124 + ], + [ + 72.64918888754302, + 22.706082120681124 + ], + [ + 72.7640315710267, + 22.511434385752672 + ], + [ + 72.87887425451038, + 22.706082120681124 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 22.706082120681124 + ], + [ + 72.7640315710267, + 22.511434385752672 + ], + [ + 72.99371693799405, + 22.511434385752672 + ], + [ + 72.87887425451038, + 22.706082120681124 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 22.706082120681124 + ], + [ + 72.99371693799405, + 22.511434385752672 + ], + [ + 73.10855962147774, + 22.706082120681124 + ], + [ + 72.87887425451038, + 22.706082120681124 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 23.095377590538032 + ], + [ + 73.10855962147774, + 23.095377590538032 + ], + [ + 72.99371693799405, + 23.290025325466484 + ], + [ + 72.87887425451038, + 23.095377590538032 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 23.095377590538032 + ], + [ + 72.99371693799405, + 23.290025325466484 + ], + [ + 72.7640315710267, + 23.290025325466484 + ], + [ + 72.87887425451038, + 23.095377590538032 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 23.095377590538032 + ], + [ + 72.7640315710267, + 23.290025325466484 + ], + [ + 72.64918888754302, + 23.095377590538032 + ], + [ + 72.87887425451038, + 23.095377590538032 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 23.095377590538032 + ], + [ + 72.64918888754302, + 23.095377590538032 + ], + [ + 72.7640315710267, + 22.90072985560958 + ], + [ + 72.87887425451038, + 23.095377590538032 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 23.095377590538032 + ], + [ + 72.7640315710267, + 22.90072985560958 + ], + [ + 72.99371693799405, + 22.90072985560958 + ], + [ + 72.87887425451038, + 23.095377590538032 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 23.095377590538032 + ], + [ + 72.99371693799405, + 22.90072985560958 + ], + [ + 73.10855962147774, + 23.095377590538032 + ], + [ + 72.87887425451038, + 23.095377590538032 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 23.48467306039494 + ], + [ + 73.10855962147774, + 23.48467306039494 + ], + [ + 72.99371693799405, + 23.67932079532339 + ], + [ + 72.87887425451038, + 23.48467306039494 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 23.48467306039494 + ], + [ + 72.99371693799405, + 23.67932079532339 + ], + [ + 72.7640315710267, + 23.67932079532339 + ], + [ + 72.87887425451038, + 23.48467306039494 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 23.48467306039494 + ], + [ + 72.7640315710267, + 23.67932079532339 + ], + [ + 72.64918888754302, + 23.48467306039494 + ], + [ + 72.87887425451038, + 23.48467306039494 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 23.48467306039494 + ], + [ + 72.64918888754302, + 23.48467306039494 + ], + [ + 72.7640315710267, + 23.290025325466488 + ], + [ + 72.87887425451038, + 23.48467306039494 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 23.48467306039494 + ], + [ + 72.7640315710267, + 23.290025325466488 + ], + [ + 72.99371693799405, + 23.290025325466488 + ], + [ + 72.87887425451038, + 23.48467306039494 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 23.48467306039494 + ], + [ + 72.99371693799405, + 23.290025325466488 + ], + [ + 73.10855962147774, + 23.48467306039494 + ], + [ + 72.87887425451038, + 23.48467306039494 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 23.873968530251844 + ], + [ + 73.10855962147774, + 23.873968530251844 + ], + [ + 72.99371693799405, + 24.068616265180296 + ], + [ + 72.87887425451038, + 23.873968530251844 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 23.873968530251844 + ], + [ + 72.99371693799405, + 24.068616265180296 + ], + [ + 72.7640315710267, + 24.068616265180296 + ], + [ + 72.87887425451038, + 23.873968530251844 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 23.873968530251844 + ], + [ + 72.7640315710267, + 24.068616265180296 + ], + [ + 72.64918888754302, + 23.873968530251844 + ], + [ + 72.87887425451038, + 23.873968530251844 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 23.873968530251844 + ], + [ + 72.64918888754302, + 23.873968530251844 + ], + [ + 72.7640315710267, + 23.67932079532339 + ], + [ + 72.87887425451038, + 23.873968530251844 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 23.873968530251844 + ], + [ + 72.7640315710267, + 23.67932079532339 + ], + [ + 72.99371693799405, + 23.67932079532339 + ], + [ + 72.87887425451038, + 23.873968530251844 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 23.873968530251844 + ], + [ + 72.99371693799405, + 23.67932079532339 + ], + [ + 73.10855962147774, + 23.873968530251844 + ], + [ + 72.87887425451038, + 23.873968530251844 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 24.263264000108748 + ], + [ + 73.10855962147774, + 24.263264000108748 + ], + [ + 72.99371693799405, + 24.4579117350372 + ], + [ + 72.87887425451038, + 24.263264000108748 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 24.263264000108748 + ], + [ + 72.99371693799405, + 24.4579117350372 + ], + [ + 72.7640315710267, + 24.4579117350372 + ], + [ + 72.87887425451038, + 24.263264000108748 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 24.263264000108748 + ], + [ + 72.7640315710267, + 24.4579117350372 + ], + [ + 72.64918888754302, + 24.263264000108748 + ], + [ + 72.87887425451038, + 24.263264000108748 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 24.263264000108748 + ], + [ + 72.64918888754302, + 24.263264000108748 + ], + [ + 72.7640315710267, + 24.068616265180296 + ], + [ + 72.87887425451038, + 24.263264000108748 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 24.263264000108748 + ], + [ + 72.7640315710267, + 24.068616265180296 + ], + [ + 72.99371693799405, + 24.068616265180296 + ], + [ + 72.87887425451038, + 24.263264000108748 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 24.263264000108748 + ], + [ + 72.99371693799405, + 24.068616265180296 + ], + [ + 73.10855962147774, + 24.263264000108748 + ], + [ + 72.87887425451038, + 24.263264000108748 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 24.652559469965656 + ], + [ + 73.10855962147774, + 24.652559469965656 + ], + [ + 72.99371693799405, + 24.847207204894108 + ], + [ + 72.87887425451038, + 24.652559469965656 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 24.652559469965656 + ], + [ + 72.99371693799405, + 24.847207204894108 + ], + [ + 72.7640315710267, + 24.847207204894108 + ], + [ + 72.87887425451038, + 24.652559469965656 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 24.652559469965656 + ], + [ + 72.7640315710267, + 24.847207204894108 + ], + [ + 72.64918888754302, + 24.652559469965656 + ], + [ + 72.87887425451038, + 24.652559469965656 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 24.652559469965656 + ], + [ + 72.64918888754302, + 24.652559469965656 + ], + [ + 72.7640315710267, + 24.457911735037204 + ], + [ + 72.87887425451038, + 24.652559469965656 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 24.652559469965656 + ], + [ + 72.7640315710267, + 24.457911735037204 + ], + [ + 72.99371693799405, + 24.457911735037204 + ], + [ + 72.87887425451038, + 24.652559469965656 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 24.652559469965656 + ], + [ + 72.99371693799405, + 24.457911735037204 + ], + [ + 73.10855962147774, + 24.652559469965656 + ], + [ + 72.87887425451038, + 24.652559469965656 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 25.041854939822564 + ], + [ + 73.10855962147774, + 25.041854939822564 + ], + [ + 72.99371693799405, + 25.236502674751016 + ], + [ + 72.87887425451038, + 25.041854939822564 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 25.041854939822564 + ], + [ + 72.99371693799405, + 25.236502674751016 + ], + [ + 72.7640315710267, + 25.236502674751016 + ], + [ + 72.87887425451038, + 25.041854939822564 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 25.041854939822564 + ], + [ + 72.7640315710267, + 25.236502674751016 + ], + [ + 72.64918888754302, + 25.041854939822564 + ], + [ + 72.87887425451038, + 25.041854939822564 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 25.041854939822564 + ], + [ + 72.64918888754302, + 25.041854939822564 + ], + [ + 72.7640315710267, + 24.84720720489411 + ], + [ + 72.87887425451038, + 25.041854939822564 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 25.041854939822564 + ], + [ + 72.7640315710267, + 24.84720720489411 + ], + [ + 72.99371693799405, + 24.84720720489411 + ], + [ + 72.87887425451038, + 25.041854939822564 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 25.041854939822564 + ], + [ + 72.99371693799405, + 24.84720720489411 + ], + [ + 73.10855962147774, + 25.041854939822564 + ], + [ + 72.87887425451038, + 25.041854939822564 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 25.431150409679468 + ], + [ + 73.10855962147774, + 25.431150409679468 + ], + [ + 72.99371693799405, + 25.62579814460792 + ], + [ + 72.87887425451038, + 25.431150409679468 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 25.431150409679468 + ], + [ + 72.99371693799405, + 25.62579814460792 + ], + [ + 72.7640315710267, + 25.62579814460792 + ], + [ + 72.87887425451038, + 25.431150409679468 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 25.431150409679468 + ], + [ + 72.7640315710267, + 25.62579814460792 + ], + [ + 72.64918888754302, + 25.431150409679468 + ], + [ + 72.87887425451038, + 25.431150409679468 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 25.431150409679468 + ], + [ + 72.64918888754302, + 25.431150409679468 + ], + [ + 72.7640315710267, + 25.236502674751016 + ], + [ + 72.87887425451038, + 25.431150409679468 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 25.431150409679468 + ], + [ + 72.7640315710267, + 25.236502674751016 + ], + [ + 72.99371693799405, + 25.236502674751016 + ], + [ + 72.87887425451038, + 25.431150409679468 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 25.431150409679468 + ], + [ + 72.99371693799405, + 25.236502674751016 + ], + [ + 73.10855962147774, + 25.431150409679468 + ], + [ + 72.87887425451038, + 25.431150409679468 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 25.820445879536376 + ], + [ + 73.10855962147774, + 25.820445879536376 + ], + [ + 72.99371693799405, + 26.015093614464828 + ], + [ + 72.87887425451038, + 25.820445879536376 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 25.820445879536376 + ], + [ + 72.99371693799405, + 26.015093614464828 + ], + [ + 72.7640315710267, + 26.015093614464828 + ], + [ + 72.87887425451038, + 25.820445879536376 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 25.820445879536376 + ], + [ + 72.7640315710267, + 26.015093614464828 + ], + [ + 72.64918888754302, + 25.820445879536376 + ], + [ + 72.87887425451038, + 25.820445879536376 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 25.820445879536376 + ], + [ + 72.64918888754302, + 25.820445879536376 + ], + [ + 72.7640315710267, + 25.625798144607923 + ], + [ + 72.87887425451038, + 25.820445879536376 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 25.820445879536376 + ], + [ + 72.7640315710267, + 25.625798144607923 + ], + [ + 72.99371693799405, + 25.625798144607923 + ], + [ + 72.87887425451038, + 25.820445879536376 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 25.820445879536376 + ], + [ + 72.99371693799405, + 25.625798144607923 + ], + [ + 73.10855962147774, + 25.820445879536376 + ], + [ + 72.87887425451038, + 25.820445879536376 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 26.209741349393283 + ], + [ + 73.10855962147774, + 26.209741349393283 + ], + [ + 72.99371693799405, + 26.404389084321735 + ], + [ + 72.87887425451038, + 26.209741349393283 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 26.209741349393283 + ], + [ + 72.99371693799405, + 26.404389084321735 + ], + [ + 72.7640315710267, + 26.404389084321735 + ], + [ + 72.87887425451038, + 26.209741349393283 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 26.209741349393283 + ], + [ + 72.7640315710267, + 26.404389084321735 + ], + [ + 72.64918888754302, + 26.209741349393283 + ], + [ + 72.87887425451038, + 26.209741349393283 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 26.209741349393283 + ], + [ + 72.64918888754302, + 26.209741349393283 + ], + [ + 72.7640315710267, + 26.01509361446483 + ], + [ + 72.87887425451038, + 26.209741349393283 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 26.209741349393283 + ], + [ + 72.7640315710267, + 26.01509361446483 + ], + [ + 72.99371693799405, + 26.01509361446483 + ], + [ + 72.87887425451038, + 26.209741349393283 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 26.209741349393283 + ], + [ + 72.99371693799405, + 26.01509361446483 + ], + [ + 73.10855962147774, + 26.209741349393283 + ], + [ + 72.87887425451038, + 26.209741349393283 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 26.599036819250188 + ], + [ + 73.10855962147774, + 26.599036819250188 + ], + [ + 72.99371693799405, + 26.79368455417864 + ], + [ + 72.87887425451038, + 26.599036819250188 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 26.599036819250188 + ], + [ + 72.99371693799405, + 26.79368455417864 + ], + [ + 72.7640315710267, + 26.79368455417864 + ], + [ + 72.87887425451038, + 26.599036819250188 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 26.599036819250188 + ], + [ + 72.7640315710267, + 26.79368455417864 + ], + [ + 72.64918888754302, + 26.599036819250188 + ], + [ + 72.87887425451038, + 26.599036819250188 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 26.599036819250188 + ], + [ + 72.64918888754302, + 26.599036819250188 + ], + [ + 72.7640315710267, + 26.404389084321735 + ], + [ + 72.87887425451038, + 26.599036819250188 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 26.599036819250188 + ], + [ + 72.7640315710267, + 26.404389084321735 + ], + [ + 72.99371693799405, + 26.404389084321735 + ], + [ + 72.87887425451038, + 26.599036819250188 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 26.599036819250188 + ], + [ + 72.99371693799405, + 26.404389084321735 + ], + [ + 73.10855962147774, + 26.599036819250188 + ], + [ + 72.87887425451038, + 26.599036819250188 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 26.988332289107095 + ], + [ + 73.10855962147774, + 26.988332289107095 + ], + [ + 72.99371693799405, + 27.182980024035547 + ], + [ + 72.87887425451038, + 26.988332289107095 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 26.988332289107095 + ], + [ + 72.99371693799405, + 27.182980024035547 + ], + [ + 72.7640315710267, + 27.182980024035547 + ], + [ + 72.87887425451038, + 26.988332289107095 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 26.988332289107095 + ], + [ + 72.7640315710267, + 27.182980024035547 + ], + [ + 72.64918888754302, + 26.988332289107095 + ], + [ + 72.87887425451038, + 26.988332289107095 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 26.988332289107095 + ], + [ + 72.64918888754302, + 26.988332289107095 + ], + [ + 72.7640315710267, + 26.793684554178643 + ], + [ + 72.87887425451038, + 26.988332289107095 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 26.988332289107095 + ], + [ + 72.7640315710267, + 26.793684554178643 + ], + [ + 72.99371693799405, + 26.793684554178643 + ], + [ + 72.87887425451038, + 26.988332289107095 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 26.988332289107095 + ], + [ + 72.99371693799405, + 26.793684554178643 + ], + [ + 73.10855962147774, + 26.988332289107095 + ], + [ + 72.87887425451038, + 26.988332289107095 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 27.377627758964003 + ], + [ + 73.10855962147774, + 27.377627758964003 + ], + [ + 72.99371693799405, + 27.572275493892455 + ], + [ + 72.87887425451038, + 27.377627758964003 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 27.377627758964003 + ], + [ + 72.99371693799405, + 27.572275493892455 + ], + [ + 72.7640315710267, + 27.572275493892455 + ], + [ + 72.87887425451038, + 27.377627758964003 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 27.377627758964003 + ], + [ + 72.7640315710267, + 27.572275493892455 + ], + [ + 72.64918888754302, + 27.377627758964003 + ], + [ + 72.87887425451038, + 27.377627758964003 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 27.377627758964003 + ], + [ + 72.64918888754302, + 27.377627758964003 + ], + [ + 72.7640315710267, + 27.18298002403555 + ], + [ + 72.87887425451038, + 27.377627758964003 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 27.377627758964003 + ], + [ + 72.7640315710267, + 27.18298002403555 + ], + [ + 72.99371693799405, + 27.18298002403555 + ], + [ + 72.87887425451038, + 27.377627758964003 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 27.377627758964003 + ], + [ + 72.99371693799405, + 27.18298002403555 + ], + [ + 73.10855962147774, + 27.377627758964003 + ], + [ + 72.87887425451038, + 27.377627758964003 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 27.766923228820907 + ], + [ + 73.10855962147774, + 27.766923228820907 + ], + [ + 72.99371693799405, + 27.96157096374936 + ], + [ + 72.87887425451038, + 27.766923228820907 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 27.766923228820907 + ], + [ + 72.99371693799405, + 27.96157096374936 + ], + [ + 72.7640315710267, + 27.96157096374936 + ], + [ + 72.87887425451038, + 27.766923228820907 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 27.766923228820907 + ], + [ + 72.7640315710267, + 27.96157096374936 + ], + [ + 72.64918888754302, + 27.766923228820907 + ], + [ + 72.87887425451038, + 27.766923228820907 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 27.766923228820907 + ], + [ + 72.64918888754302, + 27.766923228820907 + ], + [ + 72.7640315710267, + 27.572275493892455 + ], + [ + 72.87887425451038, + 27.766923228820907 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 27.766923228820907 + ], + [ + 72.7640315710267, + 27.572275493892455 + ], + [ + 72.99371693799405, + 27.572275493892455 + ], + [ + 72.87887425451038, + 27.766923228820907 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 27.766923228820907 + ], + [ + 72.99371693799405, + 27.572275493892455 + ], + [ + 73.10855962147774, + 27.766923228820907 + ], + [ + 72.87887425451038, + 27.766923228820907 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 28.156218698677815 + ], + [ + 73.10855962147774, + 28.156218698677815 + ], + [ + 72.99371693799405, + 28.350866433606267 + ], + [ + 72.87887425451038, + 28.156218698677815 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 28.156218698677815 + ], + [ + 72.99371693799405, + 28.350866433606267 + ], + [ + 72.7640315710267, + 28.350866433606267 + ], + [ + 72.87887425451038, + 28.156218698677815 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 28.156218698677815 + ], + [ + 72.7640315710267, + 28.350866433606267 + ], + [ + 72.64918888754302, + 28.156218698677815 + ], + [ + 72.87887425451038, + 28.156218698677815 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 28.156218698677815 + ], + [ + 72.64918888754302, + 28.156218698677815 + ], + [ + 72.7640315710267, + 27.961570963749363 + ], + [ + 72.87887425451038, + 28.156218698677815 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 28.156218698677815 + ], + [ + 72.7640315710267, + 27.961570963749363 + ], + [ + 72.99371693799405, + 27.961570963749363 + ], + [ + 72.87887425451038, + 28.156218698677815 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 28.156218698677815 + ], + [ + 72.99371693799405, + 27.961570963749363 + ], + [ + 73.10855962147774, + 28.156218698677815 + ], + [ + 72.87887425451038, + 28.156218698677815 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 28.54551416853472 + ], + [ + 73.10855962147774, + 28.54551416853472 + ], + [ + 72.99371693799405, + 28.74016190346317 + ], + [ + 72.87887425451038, + 28.54551416853472 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 28.54551416853472 + ], + [ + 72.99371693799405, + 28.74016190346317 + ], + [ + 72.7640315710267, + 28.74016190346317 + ], + [ + 72.87887425451038, + 28.54551416853472 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 28.54551416853472 + ], + [ + 72.7640315710267, + 28.74016190346317 + ], + [ + 72.64918888754302, + 28.54551416853472 + ], + [ + 72.87887425451038, + 28.54551416853472 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 28.54551416853472 + ], + [ + 72.64918888754302, + 28.54551416853472 + ], + [ + 72.7640315710267, + 28.350866433606267 + ], + [ + 72.87887425451038, + 28.54551416853472 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 28.54551416853472 + ], + [ + 72.7640315710267, + 28.350866433606267 + ], + [ + 72.99371693799405, + 28.350866433606267 + ], + [ + 72.87887425451038, + 28.54551416853472 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 28.54551416853472 + ], + [ + 72.99371693799405, + 28.350866433606267 + ], + [ + 73.10855962147774, + 28.54551416853472 + ], + [ + 72.87887425451038, + 28.54551416853472 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 28.934809638391627 + ], + [ + 73.10855962147774, + 28.934809638391627 + ], + [ + 72.99371693799405, + 29.12945737332008 + ], + [ + 72.87887425451038, + 28.934809638391627 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 28.934809638391627 + ], + [ + 72.99371693799405, + 29.12945737332008 + ], + [ + 72.7640315710267, + 29.12945737332008 + ], + [ + 72.87887425451038, + 28.934809638391627 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 28.934809638391627 + ], + [ + 72.7640315710267, + 29.12945737332008 + ], + [ + 72.64918888754302, + 28.934809638391627 + ], + [ + 72.87887425451038, + 28.934809638391627 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 28.934809638391627 + ], + [ + 72.64918888754302, + 28.934809638391627 + ], + [ + 72.7640315710267, + 28.740161903463175 + ], + [ + 72.87887425451038, + 28.934809638391627 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 28.934809638391627 + ], + [ + 72.7640315710267, + 28.740161903463175 + ], + [ + 72.99371693799405, + 28.740161903463175 + ], + [ + 72.87887425451038, + 28.934809638391627 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 28.934809638391627 + ], + [ + 72.99371693799405, + 28.740161903463175 + ], + [ + 73.10855962147774, + 28.934809638391627 + ], + [ + 72.87887425451038, + 28.934809638391627 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 29.32410510824853 + ], + [ + 73.10855962147774, + 29.32410510824853 + ], + [ + 72.99371693799405, + 29.518752843176983 + ], + [ + 72.87887425451038, + 29.32410510824853 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 29.32410510824853 + ], + [ + 72.99371693799405, + 29.518752843176983 + ], + [ + 72.7640315710267, + 29.518752843176983 + ], + [ + 72.87887425451038, + 29.32410510824853 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 29.32410510824853 + ], + [ + 72.7640315710267, + 29.518752843176983 + ], + [ + 72.64918888754302, + 29.32410510824853 + ], + [ + 72.87887425451038, + 29.32410510824853 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 29.32410510824853 + ], + [ + 72.64918888754302, + 29.32410510824853 + ], + [ + 72.7640315710267, + 29.12945737332008 + ], + [ + 72.87887425451038, + 29.32410510824853 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 29.32410510824853 + ], + [ + 72.7640315710267, + 29.12945737332008 + ], + [ + 72.99371693799405, + 29.12945737332008 + ], + [ + 72.87887425451038, + 29.32410510824853 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 29.32410510824853 + ], + [ + 72.99371693799405, + 29.12945737332008 + ], + [ + 73.10855962147774, + 29.32410510824853 + ], + [ + 72.87887425451038, + 29.32410510824853 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 29.71340057810544 + ], + [ + 73.10855962147774, + 29.71340057810544 + ], + [ + 72.99371693799405, + 29.90804831303389 + ], + [ + 72.87887425451038, + 29.71340057810544 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 29.71340057810544 + ], + [ + 72.99371693799405, + 29.90804831303389 + ], + [ + 72.7640315710267, + 29.90804831303389 + ], + [ + 72.87887425451038, + 29.71340057810544 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 29.71340057810544 + ], + [ + 72.7640315710267, + 29.90804831303389 + ], + [ + 72.64918888754302, + 29.71340057810544 + ], + [ + 72.87887425451038, + 29.71340057810544 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 29.71340057810544 + ], + [ + 72.64918888754302, + 29.71340057810544 + ], + [ + 72.7640315710267, + 29.518752843176987 + ], + [ + 72.87887425451038, + 29.71340057810544 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 29.71340057810544 + ], + [ + 72.7640315710267, + 29.518752843176987 + ], + [ + 72.99371693799405, + 29.518752843176987 + ], + [ + 72.87887425451038, + 29.71340057810544 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 29.71340057810544 + ], + [ + 72.99371693799405, + 29.518752843176987 + ], + [ + 73.10855962147774, + 29.71340057810544 + ], + [ + 72.87887425451038, + 29.71340057810544 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 30.102696047962343 + ], + [ + 73.10855962147774, + 30.102696047962343 + ], + [ + 72.99371693799405, + 30.297343782890795 + ], + [ + 72.87887425451038, + 30.102696047962343 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 30.102696047962343 + ], + [ + 72.99371693799405, + 30.297343782890795 + ], + [ + 72.7640315710267, + 30.297343782890795 + ], + [ + 72.87887425451038, + 30.102696047962343 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 30.102696047962343 + ], + [ + 72.7640315710267, + 30.297343782890795 + ], + [ + 72.64918888754302, + 30.102696047962343 + ], + [ + 72.87887425451038, + 30.102696047962343 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 30.102696047962343 + ], + [ + 72.64918888754302, + 30.102696047962343 + ], + [ + 72.7640315710267, + 29.90804831303389 + ], + [ + 72.87887425451038, + 30.102696047962343 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 30.102696047962343 + ], + [ + 72.7640315710267, + 29.90804831303389 + ], + [ + 72.99371693799405, + 29.90804831303389 + ], + [ + 72.87887425451038, + 30.102696047962343 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 30.102696047962343 + ], + [ + 72.99371693799405, + 29.90804831303389 + ], + [ + 73.10855962147774, + 30.102696047962343 + ], + [ + 72.87887425451038, + 30.102696047962343 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 30.49199151781925 + ], + [ + 73.10855962147774, + 30.49199151781925 + ], + [ + 72.99371693799405, + 30.686639252747703 + ], + [ + 72.87887425451038, + 30.49199151781925 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 30.49199151781925 + ], + [ + 72.99371693799405, + 30.686639252747703 + ], + [ + 72.7640315710267, + 30.686639252747703 + ], + [ + 72.87887425451038, + 30.49199151781925 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 30.49199151781925 + ], + [ + 72.7640315710267, + 30.686639252747703 + ], + [ + 72.64918888754302, + 30.49199151781925 + ], + [ + 72.87887425451038, + 30.49199151781925 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 30.49199151781925 + ], + [ + 72.64918888754302, + 30.49199151781925 + ], + [ + 72.7640315710267, + 30.2973437828908 + ], + [ + 72.87887425451038, + 30.49199151781925 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 30.49199151781925 + ], + [ + 72.7640315710267, + 30.2973437828908 + ], + [ + 72.99371693799405, + 30.2973437828908 + ], + [ + 72.87887425451038, + 30.49199151781925 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 30.49199151781925 + ], + [ + 72.99371693799405, + 30.2973437828908 + ], + [ + 73.10855962147774, + 30.49199151781925 + ], + [ + 72.87887425451038, + 30.49199151781925 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 30.88128698767616 + ], + [ + 73.10855962147774, + 30.88128698767616 + ], + [ + 72.99371693799405, + 31.07593472260461 + ], + [ + 72.87887425451038, + 30.88128698767616 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 30.88128698767616 + ], + [ + 72.99371693799405, + 31.07593472260461 + ], + [ + 72.7640315710267, + 31.07593472260461 + ], + [ + 72.87887425451038, + 30.88128698767616 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 30.88128698767616 + ], + [ + 72.7640315710267, + 31.07593472260461 + ], + [ + 72.64918888754302, + 30.88128698767616 + ], + [ + 72.87887425451038, + 30.88128698767616 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 30.88128698767616 + ], + [ + 72.64918888754302, + 30.88128698767616 + ], + [ + 72.7640315710267, + 30.686639252747707 + ], + [ + 72.87887425451038, + 30.88128698767616 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 30.88128698767616 + ], + [ + 72.7640315710267, + 30.686639252747707 + ], + [ + 72.99371693799405, + 30.686639252747707 + ], + [ + 72.87887425451038, + 30.88128698767616 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 30.88128698767616 + ], + [ + 72.99371693799405, + 30.686639252747707 + ], + [ + 73.10855962147774, + 30.88128698767616 + ], + [ + 72.87887425451038, + 30.88128698767616 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 31.270582457533063 + ], + [ + 73.10855962147774, + 31.270582457533063 + ], + [ + 72.99371693799405, + 31.465230192461515 + ], + [ + 72.87887425451038, + 31.270582457533063 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 31.270582457533063 + ], + [ + 72.99371693799405, + 31.465230192461515 + ], + [ + 72.7640315710267, + 31.465230192461515 + ], + [ + 72.87887425451038, + 31.270582457533063 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 31.270582457533063 + ], + [ + 72.7640315710267, + 31.465230192461515 + ], + [ + 72.64918888754302, + 31.270582457533063 + ], + [ + 72.87887425451038, + 31.270582457533063 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 31.270582457533063 + ], + [ + 72.64918888754302, + 31.270582457533063 + ], + [ + 72.7640315710267, + 31.07593472260461 + ], + [ + 72.87887425451038, + 31.270582457533063 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 31.270582457533063 + ], + [ + 72.7640315710267, + 31.07593472260461 + ], + [ + 72.99371693799405, + 31.07593472260461 + ], + [ + 72.87887425451038, + 31.270582457533063 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 31.270582457533063 + ], + [ + 72.99371693799405, + 31.07593472260461 + ], + [ + 73.10855962147774, + 31.270582457533063 + ], + [ + 72.87887425451038, + 31.270582457533063 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 31.65987792738997 + ], + [ + 73.10855962147774, + 31.65987792738997 + ], + [ + 72.99371693799405, + 31.854525662318423 + ], + [ + 72.87887425451038, + 31.65987792738997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 31.65987792738997 + ], + [ + 72.99371693799405, + 31.854525662318423 + ], + [ + 72.7640315710267, + 31.854525662318423 + ], + [ + 72.87887425451038, + 31.65987792738997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 31.65987792738997 + ], + [ + 72.7640315710267, + 31.854525662318423 + ], + [ + 72.64918888754302, + 31.65987792738997 + ], + [ + 72.87887425451038, + 31.65987792738997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 31.65987792738997 + ], + [ + 72.64918888754302, + 31.65987792738997 + ], + [ + 72.7640315710267, + 31.46523019246152 + ], + [ + 72.87887425451038, + 31.65987792738997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 31.65987792738997 + ], + [ + 72.7640315710267, + 31.46523019246152 + ], + [ + 72.99371693799405, + 31.46523019246152 + ], + [ + 72.87887425451038, + 31.65987792738997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 31.65987792738997 + ], + [ + 72.99371693799405, + 31.46523019246152 + ], + [ + 73.10855962147774, + 31.65987792738997 + ], + [ + 72.87887425451038, + 31.65987792738997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 32.049173397246875 + ], + [ + 73.10855962147774, + 32.049173397246875 + ], + [ + 72.99371693799405, + 32.24382113217533 + ], + [ + 72.87887425451038, + 32.049173397246875 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 32.049173397246875 + ], + [ + 72.99371693799405, + 32.24382113217533 + ], + [ + 72.7640315710267, + 32.24382113217533 + ], + [ + 72.87887425451038, + 32.049173397246875 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 32.049173397246875 + ], + [ + 72.7640315710267, + 32.24382113217533 + ], + [ + 72.64918888754302, + 32.049173397246875 + ], + [ + 72.87887425451038, + 32.049173397246875 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 32.049173397246875 + ], + [ + 72.64918888754302, + 32.049173397246875 + ], + [ + 72.7640315710267, + 31.854525662318423 + ], + [ + 72.87887425451038, + 32.049173397246875 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 32.049173397246875 + ], + [ + 72.7640315710267, + 31.854525662318423 + ], + [ + 72.99371693799405, + 31.854525662318423 + ], + [ + 72.87887425451038, + 32.049173397246875 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 32.049173397246875 + ], + [ + 72.99371693799405, + 31.854525662318423 + ], + [ + 73.10855962147774, + 32.049173397246875 + ], + [ + 72.87887425451038, + 32.049173397246875 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 32.438468867103786 + ], + [ + 73.10855962147774, + 32.438468867103786 + ], + [ + 72.99371693799405, + 32.63311660203224 + ], + [ + 72.87887425451038, + 32.438468867103786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 32.438468867103786 + ], + [ + 72.99371693799405, + 32.63311660203224 + ], + [ + 72.7640315710267, + 32.63311660203224 + ], + [ + 72.87887425451038, + 32.438468867103786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 32.438468867103786 + ], + [ + 72.7640315710267, + 32.63311660203224 + ], + [ + 72.64918888754302, + 32.438468867103786 + ], + [ + 72.87887425451038, + 32.438468867103786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 32.438468867103786 + ], + [ + 72.64918888754302, + 32.438468867103786 + ], + [ + 72.7640315710267, + 32.243821132175334 + ], + [ + 72.87887425451038, + 32.438468867103786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 32.438468867103786 + ], + [ + 72.7640315710267, + 32.243821132175334 + ], + [ + 72.99371693799405, + 32.243821132175334 + ], + [ + 72.87887425451038, + 32.438468867103786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 32.438468867103786 + ], + [ + 72.99371693799405, + 32.243821132175334 + ], + [ + 73.10855962147774, + 32.438468867103786 + ], + [ + 72.87887425451038, + 32.438468867103786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 32.82776433696069 + ], + [ + 73.10855962147774, + 32.82776433696069 + ], + [ + 72.99371693799405, + 33.02241207188914 + ], + [ + 72.87887425451038, + 32.82776433696069 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 32.82776433696069 + ], + [ + 72.99371693799405, + 33.02241207188914 + ], + [ + 72.7640315710267, + 33.02241207188914 + ], + [ + 72.87887425451038, + 32.82776433696069 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 32.82776433696069 + ], + [ + 72.7640315710267, + 33.02241207188914 + ], + [ + 72.64918888754302, + 32.82776433696069 + ], + [ + 72.87887425451038, + 32.82776433696069 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 32.82776433696069 + ], + [ + 72.64918888754302, + 32.82776433696069 + ], + [ + 72.7640315710267, + 32.63311660203224 + ], + [ + 72.87887425451038, + 32.82776433696069 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 32.82776433696069 + ], + [ + 72.7640315710267, + 32.63311660203224 + ], + [ + 72.99371693799405, + 32.63311660203224 + ], + [ + 72.87887425451038, + 32.82776433696069 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 32.82776433696069 + ], + [ + 72.99371693799405, + 32.63311660203224 + ], + [ + 73.10855962147774, + 32.82776433696069 + ], + [ + 72.87887425451038, + 32.82776433696069 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 33.217059806817595 + ], + [ + 73.10855962147774, + 33.217059806817595 + ], + [ + 72.99371693799405, + 33.41170754174605 + ], + [ + 72.87887425451038, + 33.217059806817595 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 33.217059806817595 + ], + [ + 72.99371693799405, + 33.41170754174605 + ], + [ + 72.7640315710267, + 33.41170754174605 + ], + [ + 72.87887425451038, + 33.217059806817595 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 33.217059806817595 + ], + [ + 72.7640315710267, + 33.41170754174605 + ], + [ + 72.64918888754302, + 33.217059806817595 + ], + [ + 72.87887425451038, + 33.217059806817595 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 33.217059806817595 + ], + [ + 72.64918888754302, + 33.217059806817595 + ], + [ + 72.7640315710267, + 33.02241207188914 + ], + [ + 72.87887425451038, + 33.217059806817595 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 33.217059806817595 + ], + [ + 72.7640315710267, + 33.02241207188914 + ], + [ + 72.99371693799405, + 33.02241207188914 + ], + [ + 72.87887425451038, + 33.217059806817595 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 33.217059806817595 + ], + [ + 72.99371693799405, + 33.02241207188914 + ], + [ + 73.10855962147774, + 33.217059806817595 + ], + [ + 72.87887425451038, + 33.217059806817595 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 33.6063552766745 + ], + [ + 73.10855962147774, + 33.6063552766745 + ], + [ + 72.99371693799405, + 33.80100301160295 + ], + [ + 72.87887425451038, + 33.6063552766745 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 33.6063552766745 + ], + [ + 72.99371693799405, + 33.80100301160295 + ], + [ + 72.7640315710267, + 33.80100301160295 + ], + [ + 72.87887425451038, + 33.6063552766745 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 33.6063552766745 + ], + [ + 72.7640315710267, + 33.80100301160295 + ], + [ + 72.64918888754302, + 33.6063552766745 + ], + [ + 72.87887425451038, + 33.6063552766745 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 33.6063552766745 + ], + [ + 72.64918888754302, + 33.6063552766745 + ], + [ + 72.7640315710267, + 33.41170754174605 + ], + [ + 72.87887425451038, + 33.6063552766745 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 33.6063552766745 + ], + [ + 72.7640315710267, + 33.41170754174605 + ], + [ + 72.99371693799405, + 33.41170754174605 + ], + [ + 72.87887425451038, + 33.6063552766745 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 33.6063552766745 + ], + [ + 72.99371693799405, + 33.41170754174605 + ], + [ + 73.10855962147774, + 33.6063552766745 + ], + [ + 72.87887425451038, + 33.6063552766745 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 33.9956507465314 + ], + [ + 73.10855962147774, + 33.9956507465314 + ], + [ + 72.99371693799405, + 34.190298481459855 + ], + [ + 72.87887425451038, + 33.9956507465314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 33.9956507465314 + ], + [ + 72.99371693799405, + 34.190298481459855 + ], + [ + 72.7640315710267, + 34.190298481459855 + ], + [ + 72.87887425451038, + 33.9956507465314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 33.9956507465314 + ], + [ + 72.7640315710267, + 34.190298481459855 + ], + [ + 72.64918888754302, + 33.9956507465314 + ], + [ + 72.87887425451038, + 33.9956507465314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 33.9956507465314 + ], + [ + 72.64918888754302, + 33.9956507465314 + ], + [ + 72.7640315710267, + 33.80100301160295 + ], + [ + 72.87887425451038, + 33.9956507465314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 33.9956507465314 + ], + [ + 72.7640315710267, + 33.80100301160295 + ], + [ + 72.99371693799405, + 33.80100301160295 + ], + [ + 72.87887425451038, + 33.9956507465314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 33.9956507465314 + ], + [ + 72.99371693799405, + 33.80100301160295 + ], + [ + 73.10855962147774, + 33.9956507465314 + ], + [ + 72.87887425451038, + 33.9956507465314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 34.384946216388315 + ], + [ + 73.10855962147774, + 34.384946216388315 + ], + [ + 72.99371693799405, + 34.57959395131677 + ], + [ + 72.87887425451038, + 34.384946216388315 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 34.384946216388315 + ], + [ + 72.99371693799405, + 34.57959395131677 + ], + [ + 72.7640315710267, + 34.57959395131677 + ], + [ + 72.87887425451038, + 34.384946216388315 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 34.384946216388315 + ], + [ + 72.7640315710267, + 34.57959395131677 + ], + [ + 72.64918888754302, + 34.384946216388315 + ], + [ + 72.87887425451038, + 34.384946216388315 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 34.384946216388315 + ], + [ + 72.64918888754302, + 34.384946216388315 + ], + [ + 72.7640315710267, + 34.19029848145986 + ], + [ + 72.87887425451038, + 34.384946216388315 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 34.384946216388315 + ], + [ + 72.7640315710267, + 34.19029848145986 + ], + [ + 72.99371693799405, + 34.19029848145986 + ], + [ + 72.87887425451038, + 34.384946216388315 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 34.384946216388315 + ], + [ + 72.99371693799405, + 34.19029848145986 + ], + [ + 73.10855962147774, + 34.384946216388315 + ], + [ + 72.87887425451038, + 34.384946216388315 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 34.774241686245226 + ], + [ + 73.10855962147774, + 34.774241686245226 + ], + [ + 72.99371693799405, + 34.96888942117368 + ], + [ + 72.87887425451038, + 34.774241686245226 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 34.774241686245226 + ], + [ + 72.99371693799405, + 34.96888942117368 + ], + [ + 72.7640315710267, + 34.96888942117368 + ], + [ + 72.87887425451038, + 34.774241686245226 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 34.774241686245226 + ], + [ + 72.7640315710267, + 34.96888942117368 + ], + [ + 72.64918888754302, + 34.774241686245226 + ], + [ + 72.87887425451038, + 34.774241686245226 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 34.774241686245226 + ], + [ + 72.64918888754302, + 34.774241686245226 + ], + [ + 72.7640315710267, + 34.579593951316774 + ], + [ + 72.87887425451038, + 34.774241686245226 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 34.774241686245226 + ], + [ + 72.7640315710267, + 34.579593951316774 + ], + [ + 72.99371693799405, + 34.579593951316774 + ], + [ + 72.87887425451038, + 34.774241686245226 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 34.774241686245226 + ], + [ + 72.99371693799405, + 34.579593951316774 + ], + [ + 73.10855962147774, + 34.774241686245226 + ], + [ + 72.87887425451038, + 34.774241686245226 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 35.16353715610213 + ], + [ + 73.10855962147774, + 35.16353715610213 + ], + [ + 72.99371693799405, + 35.35818489103058 + ], + [ + 72.87887425451038, + 35.16353715610213 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 35.16353715610213 + ], + [ + 72.99371693799405, + 35.35818489103058 + ], + [ + 72.7640315710267, + 35.35818489103058 + ], + [ + 72.87887425451038, + 35.16353715610213 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 35.16353715610213 + ], + [ + 72.7640315710267, + 35.35818489103058 + ], + [ + 72.64918888754302, + 35.16353715610213 + ], + [ + 72.87887425451038, + 35.16353715610213 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 35.16353715610213 + ], + [ + 72.64918888754302, + 35.16353715610213 + ], + [ + 72.7640315710267, + 34.96888942117368 + ], + [ + 72.87887425451038, + 35.16353715610213 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 35.16353715610213 + ], + [ + 72.7640315710267, + 34.96888942117368 + ], + [ + 72.99371693799405, + 34.96888942117368 + ], + [ + 72.87887425451038, + 35.16353715610213 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 35.16353715610213 + ], + [ + 72.99371693799405, + 34.96888942117368 + ], + [ + 73.10855962147774, + 35.16353715610213 + ], + [ + 72.87887425451038, + 35.16353715610213 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 35.552832625959034 + ], + [ + 73.10855962147774, + 35.552832625959034 + ], + [ + 72.99371693799405, + 35.74748036088749 + ], + [ + 72.87887425451038, + 35.552832625959034 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 35.552832625959034 + ], + [ + 72.99371693799405, + 35.74748036088749 + ], + [ + 72.7640315710267, + 35.74748036088749 + ], + [ + 72.87887425451038, + 35.552832625959034 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 35.552832625959034 + ], + [ + 72.7640315710267, + 35.74748036088749 + ], + [ + 72.64918888754302, + 35.552832625959034 + ], + [ + 72.87887425451038, + 35.552832625959034 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 35.552832625959034 + ], + [ + 72.64918888754302, + 35.552832625959034 + ], + [ + 72.7640315710267, + 35.35818489103058 + ], + [ + 72.87887425451038, + 35.552832625959034 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 35.552832625959034 + ], + [ + 72.7640315710267, + 35.35818489103058 + ], + [ + 72.99371693799405, + 35.35818489103058 + ], + [ + 72.87887425451038, + 35.552832625959034 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 35.552832625959034 + ], + [ + 72.99371693799405, + 35.35818489103058 + ], + [ + 73.10855962147774, + 35.552832625959034 + ], + [ + 72.87887425451038, + 35.552832625959034 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 35.94212809581594 + ], + [ + 73.10855962147774, + 35.94212809581594 + ], + [ + 72.99371693799405, + 36.13677583074439 + ], + [ + 72.87887425451038, + 35.94212809581594 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 35.94212809581594 + ], + [ + 72.99371693799405, + 36.13677583074439 + ], + [ + 72.7640315710267, + 36.13677583074439 + ], + [ + 72.87887425451038, + 35.94212809581594 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 35.94212809581594 + ], + [ + 72.7640315710267, + 36.13677583074439 + ], + [ + 72.64918888754302, + 35.94212809581594 + ], + [ + 72.87887425451038, + 35.94212809581594 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 35.94212809581594 + ], + [ + 72.64918888754302, + 35.94212809581594 + ], + [ + 72.7640315710267, + 35.74748036088749 + ], + [ + 72.87887425451038, + 35.94212809581594 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 35.94212809581594 + ], + [ + 72.7640315710267, + 35.74748036088749 + ], + [ + 72.99371693799405, + 35.74748036088749 + ], + [ + 72.87887425451038, + 35.94212809581594 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 35.94212809581594 + ], + [ + 72.99371693799405, + 35.74748036088749 + ], + [ + 73.10855962147774, + 35.94212809581594 + ], + [ + 72.87887425451038, + 35.94212809581594 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 36.33142356567284 + ], + [ + 73.10855962147774, + 36.33142356567284 + ], + [ + 72.99371693799405, + 36.526071300601295 + ], + [ + 72.87887425451038, + 36.33142356567284 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 36.33142356567284 + ], + [ + 72.99371693799405, + 36.526071300601295 + ], + [ + 72.7640315710267, + 36.526071300601295 + ], + [ + 72.87887425451038, + 36.33142356567284 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 36.33142356567284 + ], + [ + 72.7640315710267, + 36.526071300601295 + ], + [ + 72.64918888754302, + 36.33142356567284 + ], + [ + 72.87887425451038, + 36.33142356567284 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 36.33142356567284 + ], + [ + 72.64918888754302, + 36.33142356567284 + ], + [ + 72.7640315710267, + 36.13677583074439 + ], + [ + 72.87887425451038, + 36.33142356567284 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 36.33142356567284 + ], + [ + 72.7640315710267, + 36.13677583074439 + ], + [ + 72.99371693799405, + 36.13677583074439 + ], + [ + 72.87887425451038, + 36.33142356567284 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 36.33142356567284 + ], + [ + 72.99371693799405, + 36.13677583074439 + ], + [ + 73.10855962147774, + 36.33142356567284 + ], + [ + 72.87887425451038, + 36.33142356567284 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 36.720719035529754 + ], + [ + 73.10855962147774, + 36.720719035529754 + ], + [ + 72.99371693799405, + 36.915366770458206 + ], + [ + 72.87887425451038, + 36.720719035529754 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 36.720719035529754 + ], + [ + 72.99371693799405, + 36.915366770458206 + ], + [ + 72.7640315710267, + 36.915366770458206 + ], + [ + 72.87887425451038, + 36.720719035529754 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 36.720719035529754 + ], + [ + 72.7640315710267, + 36.915366770458206 + ], + [ + 72.64918888754302, + 36.720719035529754 + ], + [ + 72.87887425451038, + 36.720719035529754 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 36.720719035529754 + ], + [ + 72.64918888754302, + 36.720719035529754 + ], + [ + 72.7640315710267, + 36.5260713006013 + ], + [ + 72.87887425451038, + 36.720719035529754 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 36.720719035529754 + ], + [ + 72.7640315710267, + 36.5260713006013 + ], + [ + 72.99371693799405, + 36.5260713006013 + ], + [ + 72.87887425451038, + 36.720719035529754 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 36.720719035529754 + ], + [ + 72.99371693799405, + 36.5260713006013 + ], + [ + 73.10855962147774, + 36.720719035529754 + ], + [ + 72.87887425451038, + 36.720719035529754 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 37.11001450538666 + ], + [ + 73.10855962147774, + 37.11001450538666 + ], + [ + 72.99371693799405, + 37.30466224031511 + ], + [ + 72.87887425451038, + 37.11001450538666 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 37.11001450538666 + ], + [ + 72.99371693799405, + 37.30466224031511 + ], + [ + 72.7640315710267, + 37.30466224031511 + ], + [ + 72.87887425451038, + 37.11001450538666 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 37.11001450538666 + ], + [ + 72.7640315710267, + 37.30466224031511 + ], + [ + 72.64918888754302, + 37.11001450538666 + ], + [ + 72.87887425451038, + 37.11001450538666 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 37.11001450538666 + ], + [ + 72.64918888754302, + 37.11001450538666 + ], + [ + 72.7640315710267, + 36.915366770458206 + ], + [ + 72.87887425451038, + 37.11001450538666 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 37.11001450538666 + ], + [ + 72.7640315710267, + 36.915366770458206 + ], + [ + 72.99371693799405, + 36.915366770458206 + ], + [ + 72.87887425451038, + 37.11001450538666 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 37.11001450538666 + ], + [ + 72.99371693799405, + 36.915366770458206 + ], + [ + 73.10855962147774, + 37.11001450538666 + ], + [ + 72.87887425451038, + 37.11001450538666 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 37.49930997524357 + ], + [ + 73.10855962147774, + 37.49930997524357 + ], + [ + 72.99371693799405, + 37.69395771017202 + ], + [ + 72.87887425451038, + 37.49930997524357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 37.49930997524357 + ], + [ + 72.99371693799405, + 37.69395771017202 + ], + [ + 72.7640315710267, + 37.69395771017202 + ], + [ + 72.87887425451038, + 37.49930997524357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 37.49930997524357 + ], + [ + 72.7640315710267, + 37.69395771017202 + ], + [ + 72.64918888754302, + 37.49930997524357 + ], + [ + 72.87887425451038, + 37.49930997524357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 37.49930997524357 + ], + [ + 72.64918888754302, + 37.49930997524357 + ], + [ + 72.7640315710267, + 37.30466224031512 + ], + [ + 72.87887425451038, + 37.49930997524357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 37.49930997524357 + ], + [ + 72.7640315710267, + 37.30466224031512 + ], + [ + 72.99371693799405, + 37.30466224031512 + ], + [ + 72.87887425451038, + 37.49930997524357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 37.49930997524357 + ], + [ + 72.99371693799405, + 37.30466224031512 + ], + [ + 73.10855962147774, + 37.49930997524357 + ], + [ + 72.87887425451038, + 37.49930997524357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 37.888605445100474 + ], + [ + 73.10855962147774, + 37.888605445100474 + ], + [ + 72.99371693799405, + 38.083253180028926 + ], + [ + 72.87887425451038, + 37.888605445100474 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 37.888605445100474 + ], + [ + 72.99371693799405, + 38.083253180028926 + ], + [ + 72.7640315710267, + 38.083253180028926 + ], + [ + 72.87887425451038, + 37.888605445100474 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 37.888605445100474 + ], + [ + 72.7640315710267, + 38.083253180028926 + ], + [ + 72.64918888754302, + 37.888605445100474 + ], + [ + 72.87887425451038, + 37.888605445100474 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 37.888605445100474 + ], + [ + 72.64918888754302, + 37.888605445100474 + ], + [ + 72.7640315710267, + 37.69395771017202 + ], + [ + 72.87887425451038, + 37.888605445100474 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 37.888605445100474 + ], + [ + 72.7640315710267, + 37.69395771017202 + ], + [ + 72.99371693799405, + 37.69395771017202 + ], + [ + 72.87887425451038, + 37.888605445100474 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 37.888605445100474 + ], + [ + 72.99371693799405, + 37.69395771017202 + ], + [ + 73.10855962147774, + 37.888605445100474 + ], + [ + 72.87887425451038, + 37.888605445100474 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 38.27790091495738 + ], + [ + 73.10855962147774, + 38.27790091495738 + ], + [ + 72.99371693799405, + 38.47254864988583 + ], + [ + 72.87887425451038, + 38.27790091495738 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 38.27790091495738 + ], + [ + 72.99371693799405, + 38.47254864988583 + ], + [ + 72.7640315710267, + 38.47254864988583 + ], + [ + 72.87887425451038, + 38.27790091495738 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 38.27790091495738 + ], + [ + 72.7640315710267, + 38.47254864988583 + ], + [ + 72.64918888754302, + 38.27790091495738 + ], + [ + 72.87887425451038, + 38.27790091495738 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 38.27790091495738 + ], + [ + 72.64918888754302, + 38.27790091495738 + ], + [ + 72.7640315710267, + 38.083253180028926 + ], + [ + 72.87887425451038, + 38.27790091495738 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 38.27790091495738 + ], + [ + 72.7640315710267, + 38.083253180028926 + ], + [ + 72.99371693799405, + 38.083253180028926 + ], + [ + 72.87887425451038, + 38.27790091495738 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 38.27790091495738 + ], + [ + 72.99371693799405, + 38.083253180028926 + ], + [ + 73.10855962147774, + 38.27790091495738 + ], + [ + 72.87887425451038, + 38.27790091495738 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 38.66719638481428 + ], + [ + 73.10855962147774, + 38.66719638481428 + ], + [ + 72.99371693799405, + 38.861844119742734 + ], + [ + 72.87887425451038, + 38.66719638481428 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 38.66719638481428 + ], + [ + 72.99371693799405, + 38.861844119742734 + ], + [ + 72.7640315710267, + 38.861844119742734 + ], + [ + 72.87887425451038, + 38.66719638481428 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 38.66719638481428 + ], + [ + 72.7640315710267, + 38.861844119742734 + ], + [ + 72.64918888754302, + 38.66719638481428 + ], + [ + 72.87887425451038, + 38.66719638481428 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 38.66719638481428 + ], + [ + 72.64918888754302, + 38.66719638481428 + ], + [ + 72.7640315710267, + 38.47254864988583 + ], + [ + 72.87887425451038, + 38.66719638481428 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 38.66719638481428 + ], + [ + 72.7640315710267, + 38.47254864988583 + ], + [ + 72.99371693799405, + 38.47254864988583 + ], + [ + 72.87887425451038, + 38.66719638481428 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 38.66719638481428 + ], + [ + 72.99371693799405, + 38.47254864988583 + ], + [ + 73.10855962147774, + 38.66719638481428 + ], + [ + 72.87887425451038, + 38.66719638481428 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 39.05649185467119 + ], + [ + 73.10855962147774, + 39.05649185467119 + ], + [ + 72.99371693799405, + 39.25113958959964 + ], + [ + 72.87887425451038, + 39.05649185467119 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 39.05649185467119 + ], + [ + 72.99371693799405, + 39.25113958959964 + ], + [ + 72.7640315710267, + 39.25113958959964 + ], + [ + 72.87887425451038, + 39.05649185467119 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 39.05649185467119 + ], + [ + 72.7640315710267, + 39.25113958959964 + ], + [ + 72.64918888754302, + 39.05649185467119 + ], + [ + 72.87887425451038, + 39.05649185467119 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 39.05649185467119 + ], + [ + 72.64918888754302, + 39.05649185467119 + ], + [ + 72.7640315710267, + 38.861844119742734 + ], + [ + 72.87887425451038, + 39.05649185467119 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 39.05649185467119 + ], + [ + 72.7640315710267, + 38.861844119742734 + ], + [ + 72.99371693799405, + 38.861844119742734 + ], + [ + 72.87887425451038, + 39.05649185467119 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 39.05649185467119 + ], + [ + 72.99371693799405, + 38.861844119742734 + ], + [ + 73.10855962147774, + 39.05649185467119 + ], + [ + 72.87887425451038, + 39.05649185467119 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 39.4457873245281 + ], + [ + 73.10855962147774, + 39.4457873245281 + ], + [ + 72.99371693799405, + 39.64043505945655 + ], + [ + 72.87887425451038, + 39.4457873245281 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 39.4457873245281 + ], + [ + 72.99371693799405, + 39.64043505945655 + ], + [ + 72.7640315710267, + 39.64043505945655 + ], + [ + 72.87887425451038, + 39.4457873245281 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 39.4457873245281 + ], + [ + 72.7640315710267, + 39.64043505945655 + ], + [ + 72.64918888754302, + 39.4457873245281 + ], + [ + 72.87887425451038, + 39.4457873245281 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 39.4457873245281 + ], + [ + 72.64918888754302, + 39.4457873245281 + ], + [ + 72.7640315710267, + 39.251139589599646 + ], + [ + 72.87887425451038, + 39.4457873245281 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 39.4457873245281 + ], + [ + 72.7640315710267, + 39.251139589599646 + ], + [ + 72.99371693799405, + 39.251139589599646 + ], + [ + 72.87887425451038, + 39.4457873245281 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 39.4457873245281 + ], + [ + 72.99371693799405, + 39.251139589599646 + ], + [ + 73.10855962147774, + 39.4457873245281 + ], + [ + 72.87887425451038, + 39.4457873245281 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 39.835082794385 + ], + [ + 73.10855962147774, + 39.835082794385 + ], + [ + 72.99371693799405, + 40.029730529313454 + ], + [ + 72.87887425451038, + 39.835082794385 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 39.835082794385 + ], + [ + 72.99371693799405, + 40.029730529313454 + ], + [ + 72.7640315710267, + 40.029730529313454 + ], + [ + 72.87887425451038, + 39.835082794385 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 39.835082794385 + ], + [ + 72.7640315710267, + 40.029730529313454 + ], + [ + 72.64918888754302, + 39.835082794385 + ], + [ + 72.87887425451038, + 39.835082794385 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 39.835082794385 + ], + [ + 72.64918888754302, + 39.835082794385 + ], + [ + 72.7640315710267, + 39.64043505945655 + ], + [ + 72.87887425451038, + 39.835082794385 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 39.835082794385 + ], + [ + 72.7640315710267, + 39.64043505945655 + ], + [ + 72.99371693799405, + 39.64043505945655 + ], + [ + 72.87887425451038, + 39.835082794385 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 39.835082794385 + ], + [ + 72.99371693799405, + 39.64043505945655 + ], + [ + 73.10855962147774, + 39.835082794385 + ], + [ + 72.87887425451038, + 39.835082794385 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 40.22437826424191 + ], + [ + 73.10855962147774, + 40.22437826424191 + ], + [ + 72.99371693799405, + 40.419025999170366 + ], + [ + 72.87887425451038, + 40.22437826424191 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 40.22437826424191 + ], + [ + 72.99371693799405, + 40.419025999170366 + ], + [ + 72.7640315710267, + 40.419025999170366 + ], + [ + 72.87887425451038, + 40.22437826424191 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 40.22437826424191 + ], + [ + 72.7640315710267, + 40.419025999170366 + ], + [ + 72.64918888754302, + 40.22437826424191 + ], + [ + 72.87887425451038, + 40.22437826424191 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 40.22437826424191 + ], + [ + 72.64918888754302, + 40.22437826424191 + ], + [ + 72.7640315710267, + 40.02973052931346 + ], + [ + 72.87887425451038, + 40.22437826424191 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 40.22437826424191 + ], + [ + 72.7640315710267, + 40.02973052931346 + ], + [ + 72.99371693799405, + 40.02973052931346 + ], + [ + 72.87887425451038, + 40.22437826424191 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 40.22437826424191 + ], + [ + 72.99371693799405, + 40.02973052931346 + ], + [ + 73.10855962147774, + 40.22437826424191 + ], + [ + 72.87887425451038, + 40.22437826424191 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 40.61367373409882 + ], + [ + 73.10855962147774, + 40.61367373409882 + ], + [ + 72.99371693799405, + 40.80832146902727 + ], + [ + 72.87887425451038, + 40.61367373409882 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 40.61367373409882 + ], + [ + 72.99371693799405, + 40.80832146902727 + ], + [ + 72.7640315710267, + 40.80832146902727 + ], + [ + 72.87887425451038, + 40.61367373409882 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 40.61367373409882 + ], + [ + 72.7640315710267, + 40.80832146902727 + ], + [ + 72.64918888754302, + 40.61367373409882 + ], + [ + 72.87887425451038, + 40.61367373409882 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 40.61367373409882 + ], + [ + 72.64918888754302, + 40.61367373409882 + ], + [ + 72.7640315710267, + 40.419025999170366 + ], + [ + 72.87887425451038, + 40.61367373409882 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 40.61367373409882 + ], + [ + 72.7640315710267, + 40.419025999170366 + ], + [ + 72.99371693799405, + 40.419025999170366 + ], + [ + 72.87887425451038, + 40.61367373409882 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 40.61367373409882 + ], + [ + 72.99371693799405, + 40.419025999170366 + ], + [ + 73.10855962147774, + 40.61367373409882 + ], + [ + 72.87887425451038, + 40.61367373409882 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 41.00296920395572 + ], + [ + 73.10855962147774, + 41.00296920395572 + ], + [ + 72.99371693799405, + 41.197616938884174 + ], + [ + 72.87887425451038, + 41.00296920395572 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 41.00296920395572 + ], + [ + 72.99371693799405, + 41.197616938884174 + ], + [ + 72.7640315710267, + 41.197616938884174 + ], + [ + 72.87887425451038, + 41.00296920395572 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 41.00296920395572 + ], + [ + 72.7640315710267, + 41.197616938884174 + ], + [ + 72.64918888754302, + 41.00296920395572 + ], + [ + 72.87887425451038, + 41.00296920395572 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 41.00296920395572 + ], + [ + 72.64918888754302, + 41.00296920395572 + ], + [ + 72.7640315710267, + 40.80832146902727 + ], + [ + 72.87887425451038, + 41.00296920395572 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 41.00296920395572 + ], + [ + 72.7640315710267, + 40.80832146902727 + ], + [ + 72.99371693799405, + 40.80832146902727 + ], + [ + 72.87887425451038, + 41.00296920395572 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 41.00296920395572 + ], + [ + 72.99371693799405, + 40.80832146902727 + ], + [ + 73.10855962147774, + 41.00296920395572 + ], + [ + 72.87887425451038, + 41.00296920395572 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 41.392264673812626 + ], + [ + 73.10855962147774, + 41.392264673812626 + ], + [ + 72.99371693799405, + 41.58691240874108 + ], + [ + 72.87887425451038, + 41.392264673812626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 41.392264673812626 + ], + [ + 72.99371693799405, + 41.58691240874108 + ], + [ + 72.7640315710267, + 41.58691240874108 + ], + [ + 72.87887425451038, + 41.392264673812626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 41.392264673812626 + ], + [ + 72.7640315710267, + 41.58691240874108 + ], + [ + 72.64918888754302, + 41.392264673812626 + ], + [ + 72.87887425451038, + 41.392264673812626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 41.392264673812626 + ], + [ + 72.64918888754302, + 41.392264673812626 + ], + [ + 72.7640315710267, + 41.197616938884174 + ], + [ + 72.87887425451038, + 41.392264673812626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 41.392264673812626 + ], + [ + 72.7640315710267, + 41.197616938884174 + ], + [ + 72.99371693799405, + 41.197616938884174 + ], + [ + 72.87887425451038, + 41.392264673812626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 41.392264673812626 + ], + [ + 72.99371693799405, + 41.197616938884174 + ], + [ + 73.10855962147774, + 41.392264673812626 + ], + [ + 72.87887425451038, + 41.392264673812626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 41.78156014366953 + ], + [ + 73.10855962147774, + 41.78156014366953 + ], + [ + 72.99371693799405, + 41.97620787859798 + ], + [ + 72.87887425451038, + 41.78156014366953 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 41.78156014366953 + ], + [ + 72.99371693799405, + 41.97620787859798 + ], + [ + 72.7640315710267, + 41.97620787859798 + ], + [ + 72.87887425451038, + 41.78156014366953 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 41.78156014366953 + ], + [ + 72.7640315710267, + 41.97620787859798 + ], + [ + 72.64918888754302, + 41.78156014366953 + ], + [ + 72.87887425451038, + 41.78156014366953 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 41.78156014366953 + ], + [ + 72.64918888754302, + 41.78156014366953 + ], + [ + 72.7640315710267, + 41.58691240874108 + ], + [ + 72.87887425451038, + 41.78156014366953 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 41.78156014366953 + ], + [ + 72.7640315710267, + 41.58691240874108 + ], + [ + 72.99371693799405, + 41.58691240874108 + ], + [ + 72.87887425451038, + 41.78156014366953 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 41.78156014366953 + ], + [ + 72.99371693799405, + 41.58691240874108 + ], + [ + 73.10855962147774, + 41.78156014366953 + ], + [ + 72.87887425451038, + 41.78156014366953 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 42.17085561352644 + ], + [ + 73.10855962147774, + 42.17085561352644 + ], + [ + 72.99371693799405, + 42.365503348454894 + ], + [ + 72.87887425451038, + 42.17085561352644 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 42.17085561352644 + ], + [ + 72.99371693799405, + 42.365503348454894 + ], + [ + 72.7640315710267, + 42.365503348454894 + ], + [ + 72.87887425451038, + 42.17085561352644 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 42.17085561352644 + ], + [ + 72.7640315710267, + 42.365503348454894 + ], + [ + 72.64918888754302, + 42.17085561352644 + ], + [ + 72.87887425451038, + 42.17085561352644 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 42.17085561352644 + ], + [ + 72.64918888754302, + 42.17085561352644 + ], + [ + 72.7640315710267, + 41.97620787859799 + ], + [ + 72.87887425451038, + 42.17085561352644 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 42.17085561352644 + ], + [ + 72.7640315710267, + 41.97620787859799 + ], + [ + 72.99371693799405, + 41.97620787859799 + ], + [ + 72.87887425451038, + 42.17085561352644 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 42.17085561352644 + ], + [ + 72.99371693799405, + 41.97620787859799 + ], + [ + 73.10855962147774, + 42.17085561352644 + ], + [ + 72.87887425451038, + 42.17085561352644 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 42.56015108338335 + ], + [ + 73.10855962147774, + 42.56015108338335 + ], + [ + 72.99371693799405, + 42.754798818311805 + ], + [ + 72.87887425451038, + 42.56015108338335 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 42.56015108338335 + ], + [ + 72.99371693799405, + 42.754798818311805 + ], + [ + 72.7640315710267, + 42.754798818311805 + ], + [ + 72.87887425451038, + 42.56015108338335 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 42.56015108338335 + ], + [ + 72.7640315710267, + 42.754798818311805 + ], + [ + 72.64918888754302, + 42.56015108338335 + ], + [ + 72.87887425451038, + 42.56015108338335 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 42.56015108338335 + ], + [ + 72.64918888754302, + 42.56015108338335 + ], + [ + 72.7640315710267, + 42.3655033484549 + ], + [ + 72.87887425451038, + 42.56015108338335 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 42.56015108338335 + ], + [ + 72.7640315710267, + 42.3655033484549 + ], + [ + 72.99371693799405, + 42.3655033484549 + ], + [ + 72.87887425451038, + 42.56015108338335 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 42.56015108338335 + ], + [ + 72.99371693799405, + 42.3655033484549 + ], + [ + 73.10855962147774, + 42.56015108338335 + ], + [ + 72.87887425451038, + 42.56015108338335 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 42.94944655324026 + ], + [ + 73.10855962147774, + 42.94944655324026 + ], + [ + 72.99371693799405, + 43.14409428816871 + ], + [ + 72.87887425451038, + 42.94944655324026 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 42.94944655324026 + ], + [ + 72.99371693799405, + 43.14409428816871 + ], + [ + 72.7640315710267, + 43.14409428816871 + ], + [ + 72.87887425451038, + 42.94944655324026 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 42.94944655324026 + ], + [ + 72.7640315710267, + 43.14409428816871 + ], + [ + 72.64918888754302, + 42.94944655324026 + ], + [ + 72.87887425451038, + 42.94944655324026 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 42.94944655324026 + ], + [ + 72.64918888754302, + 42.94944655324026 + ], + [ + 72.7640315710267, + 42.754798818311805 + ], + [ + 72.87887425451038, + 42.94944655324026 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 42.94944655324026 + ], + [ + 72.7640315710267, + 42.754798818311805 + ], + [ + 72.99371693799405, + 42.754798818311805 + ], + [ + 72.87887425451038, + 42.94944655324026 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 42.94944655324026 + ], + [ + 72.99371693799405, + 42.754798818311805 + ], + [ + 73.10855962147774, + 42.94944655324026 + ], + [ + 72.87887425451038, + 42.94944655324026 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 43.33874202309716 + ], + [ + 73.10855962147774, + 43.33874202309716 + ], + [ + 72.99371693799405, + 43.53338975802561 + ], + [ + 72.87887425451038, + 43.33874202309716 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 43.33874202309716 + ], + [ + 72.99371693799405, + 43.53338975802561 + ], + [ + 72.7640315710267, + 43.53338975802561 + ], + [ + 72.87887425451038, + 43.33874202309716 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 43.33874202309716 + ], + [ + 72.7640315710267, + 43.53338975802561 + ], + [ + 72.64918888754302, + 43.33874202309716 + ], + [ + 72.87887425451038, + 43.33874202309716 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 43.33874202309716 + ], + [ + 72.64918888754302, + 43.33874202309716 + ], + [ + 72.7640315710267, + 43.14409428816871 + ], + [ + 72.87887425451038, + 43.33874202309716 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 43.33874202309716 + ], + [ + 72.7640315710267, + 43.14409428816871 + ], + [ + 72.99371693799405, + 43.14409428816871 + ], + [ + 72.87887425451038, + 43.33874202309716 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 43.33874202309716 + ], + [ + 72.99371693799405, + 43.14409428816871 + ], + [ + 73.10855962147774, + 43.33874202309716 + ], + [ + 72.87887425451038, + 43.33874202309716 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 43.728037492954066 + ], + [ + 73.10855962147774, + 43.728037492954066 + ], + [ + 72.99371693799405, + 43.92268522788252 + ], + [ + 72.87887425451038, + 43.728037492954066 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 43.728037492954066 + ], + [ + 72.99371693799405, + 43.92268522788252 + ], + [ + 72.7640315710267, + 43.92268522788252 + ], + [ + 72.87887425451038, + 43.728037492954066 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 43.728037492954066 + ], + [ + 72.7640315710267, + 43.92268522788252 + ], + [ + 72.64918888754302, + 43.728037492954066 + ], + [ + 72.87887425451038, + 43.728037492954066 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 43.728037492954066 + ], + [ + 72.64918888754302, + 43.728037492954066 + ], + [ + 72.7640315710267, + 43.53338975802561 + ], + [ + 72.87887425451038, + 43.728037492954066 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 43.728037492954066 + ], + [ + 72.7640315710267, + 43.53338975802561 + ], + [ + 72.99371693799405, + 43.53338975802561 + ], + [ + 72.87887425451038, + 43.728037492954066 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 43.728037492954066 + ], + [ + 72.99371693799405, + 43.53338975802561 + ], + [ + 73.10855962147774, + 43.728037492954066 + ], + [ + 72.87887425451038, + 43.728037492954066 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 44.11733296281097 + ], + [ + 73.10855962147774, + 44.11733296281097 + ], + [ + 72.99371693799405, + 44.31198069773942 + ], + [ + 72.87887425451038, + 44.11733296281097 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 44.11733296281097 + ], + [ + 72.99371693799405, + 44.31198069773942 + ], + [ + 72.7640315710267, + 44.31198069773942 + ], + [ + 72.87887425451038, + 44.11733296281097 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 44.11733296281097 + ], + [ + 72.7640315710267, + 44.31198069773942 + ], + [ + 72.64918888754302, + 44.11733296281097 + ], + [ + 72.87887425451038, + 44.11733296281097 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 44.11733296281097 + ], + [ + 72.64918888754302, + 44.11733296281097 + ], + [ + 72.7640315710267, + 43.92268522788252 + ], + [ + 72.87887425451038, + 44.11733296281097 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 44.11733296281097 + ], + [ + 72.7640315710267, + 43.92268522788252 + ], + [ + 72.99371693799405, + 43.92268522788252 + ], + [ + 72.87887425451038, + 44.11733296281097 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 44.11733296281097 + ], + [ + 72.99371693799405, + 43.92268522788252 + ], + [ + 73.10855962147774, + 44.11733296281097 + ], + [ + 72.87887425451038, + 44.11733296281097 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 44.506628432667874 + ], + [ + 73.10855962147774, + 44.506628432667874 + ], + [ + 72.99371693799405, + 44.701276167596326 + ], + [ + 72.87887425451038, + 44.506628432667874 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 44.506628432667874 + ], + [ + 72.99371693799405, + 44.701276167596326 + ], + [ + 72.7640315710267, + 44.701276167596326 + ], + [ + 72.87887425451038, + 44.506628432667874 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 44.506628432667874 + ], + [ + 72.7640315710267, + 44.701276167596326 + ], + [ + 72.64918888754302, + 44.506628432667874 + ], + [ + 72.87887425451038, + 44.506628432667874 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 44.506628432667874 + ], + [ + 72.64918888754302, + 44.506628432667874 + ], + [ + 72.7640315710267, + 44.31198069773942 + ], + [ + 72.87887425451038, + 44.506628432667874 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 44.506628432667874 + ], + [ + 72.7640315710267, + 44.31198069773942 + ], + [ + 72.99371693799405, + 44.31198069773942 + ], + [ + 72.87887425451038, + 44.506628432667874 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 44.506628432667874 + ], + [ + 72.99371693799405, + 44.31198069773942 + ], + [ + 73.10855962147774, + 44.506628432667874 + ], + [ + 72.87887425451038, + 44.506628432667874 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 44.89592390252479 + ], + [ + 73.10855962147774, + 44.89592390252479 + ], + [ + 72.99371693799405, + 45.090571637453245 + ], + [ + 72.87887425451038, + 44.89592390252479 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 44.89592390252479 + ], + [ + 72.99371693799405, + 45.090571637453245 + ], + [ + 72.7640315710267, + 45.090571637453245 + ], + [ + 72.87887425451038, + 44.89592390252479 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 44.89592390252479 + ], + [ + 72.7640315710267, + 45.090571637453245 + ], + [ + 72.64918888754302, + 44.89592390252479 + ], + [ + 72.87887425451038, + 44.89592390252479 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 44.89592390252479 + ], + [ + 72.64918888754302, + 44.89592390252479 + ], + [ + 72.7640315710267, + 44.70127616759634 + ], + [ + 72.87887425451038, + 44.89592390252479 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 44.89592390252479 + ], + [ + 72.7640315710267, + 44.70127616759634 + ], + [ + 72.99371693799405, + 44.70127616759634 + ], + [ + 72.87887425451038, + 44.89592390252479 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 44.89592390252479 + ], + [ + 72.99371693799405, + 44.70127616759634 + ], + [ + 73.10855962147774, + 44.89592390252479 + ], + [ + 72.87887425451038, + 44.89592390252479 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 45.2852193723817 + ], + [ + 73.10855962147774, + 45.2852193723817 + ], + [ + 72.99371693799405, + 45.47986710731015 + ], + [ + 72.87887425451038, + 45.2852193723817 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 45.2852193723817 + ], + [ + 72.99371693799405, + 45.47986710731015 + ], + [ + 72.7640315710267, + 45.47986710731015 + ], + [ + 72.87887425451038, + 45.2852193723817 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 45.2852193723817 + ], + [ + 72.7640315710267, + 45.47986710731015 + ], + [ + 72.64918888754302, + 45.2852193723817 + ], + [ + 72.87887425451038, + 45.2852193723817 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 45.2852193723817 + ], + [ + 72.64918888754302, + 45.2852193723817 + ], + [ + 72.7640315710267, + 45.090571637453245 + ], + [ + 72.87887425451038, + 45.2852193723817 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 45.2852193723817 + ], + [ + 72.7640315710267, + 45.090571637453245 + ], + [ + 72.99371693799405, + 45.090571637453245 + ], + [ + 72.87887425451038, + 45.2852193723817 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 45.2852193723817 + ], + [ + 72.99371693799405, + 45.090571637453245 + ], + [ + 73.10855962147774, + 45.2852193723817 + ], + [ + 72.87887425451038, + 45.2852193723817 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 45.6745148422386 + ], + [ + 73.10855962147774, + 45.6745148422386 + ], + [ + 72.99371693799405, + 45.86916257716705 + ], + [ + 72.87887425451038, + 45.6745148422386 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 45.6745148422386 + ], + [ + 72.99371693799405, + 45.86916257716705 + ], + [ + 72.7640315710267, + 45.86916257716705 + ], + [ + 72.87887425451038, + 45.6745148422386 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 45.6745148422386 + ], + [ + 72.7640315710267, + 45.86916257716705 + ], + [ + 72.64918888754302, + 45.6745148422386 + ], + [ + 72.87887425451038, + 45.6745148422386 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 45.6745148422386 + ], + [ + 72.64918888754302, + 45.6745148422386 + ], + [ + 72.7640315710267, + 45.47986710731015 + ], + [ + 72.87887425451038, + 45.6745148422386 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 45.6745148422386 + ], + [ + 72.7640315710267, + 45.47986710731015 + ], + [ + 72.99371693799405, + 45.47986710731015 + ], + [ + 72.87887425451038, + 45.6745148422386 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 45.6745148422386 + ], + [ + 72.99371693799405, + 45.47986710731015 + ], + [ + 73.10855962147774, + 45.6745148422386 + ], + [ + 72.87887425451038, + 45.6745148422386 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 46.063810312095505 + ], + [ + 73.10855962147774, + 46.063810312095505 + ], + [ + 72.99371693799405, + 46.25845804702396 + ], + [ + 72.87887425451038, + 46.063810312095505 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 46.063810312095505 + ], + [ + 72.99371693799405, + 46.25845804702396 + ], + [ + 72.7640315710267, + 46.25845804702396 + ], + [ + 72.87887425451038, + 46.063810312095505 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 46.063810312095505 + ], + [ + 72.7640315710267, + 46.25845804702396 + ], + [ + 72.64918888754302, + 46.063810312095505 + ], + [ + 72.87887425451038, + 46.063810312095505 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 46.063810312095505 + ], + [ + 72.64918888754302, + 46.063810312095505 + ], + [ + 72.7640315710267, + 45.86916257716705 + ], + [ + 72.87887425451038, + 46.063810312095505 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 46.063810312095505 + ], + [ + 72.7640315710267, + 45.86916257716705 + ], + [ + 72.99371693799405, + 45.86916257716705 + ], + [ + 72.87887425451038, + 46.063810312095505 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 46.063810312095505 + ], + [ + 72.99371693799405, + 45.86916257716705 + ], + [ + 73.10855962147774, + 46.063810312095505 + ], + [ + 72.87887425451038, + 46.063810312095505 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 46.45310578195241 + ], + [ + 73.10855962147774, + 46.45310578195241 + ], + [ + 72.99371693799405, + 46.64775351688086 + ], + [ + 72.87887425451038, + 46.45310578195241 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 46.45310578195241 + ], + [ + 72.99371693799405, + 46.64775351688086 + ], + [ + 72.7640315710267, + 46.64775351688086 + ], + [ + 72.87887425451038, + 46.45310578195241 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 46.45310578195241 + ], + [ + 72.7640315710267, + 46.64775351688086 + ], + [ + 72.64918888754302, + 46.45310578195241 + ], + [ + 72.87887425451038, + 46.45310578195241 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 46.45310578195241 + ], + [ + 72.64918888754302, + 46.45310578195241 + ], + [ + 72.7640315710267, + 46.25845804702396 + ], + [ + 72.87887425451038, + 46.45310578195241 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 46.45310578195241 + ], + [ + 72.7640315710267, + 46.25845804702396 + ], + [ + 72.99371693799405, + 46.25845804702396 + ], + [ + 72.87887425451038, + 46.45310578195241 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 46.45310578195241 + ], + [ + 72.99371693799405, + 46.25845804702396 + ], + [ + 73.10855962147774, + 46.45310578195241 + ], + [ + 72.87887425451038, + 46.45310578195241 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 46.842401251809314 + ], + [ + 73.10855962147774, + 46.842401251809314 + ], + [ + 72.99371693799405, + 47.037048986737766 + ], + [ + 72.87887425451038, + 46.842401251809314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 46.842401251809314 + ], + [ + 72.99371693799405, + 47.037048986737766 + ], + [ + 72.7640315710267, + 47.037048986737766 + ], + [ + 72.87887425451038, + 46.842401251809314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 46.842401251809314 + ], + [ + 72.7640315710267, + 47.037048986737766 + ], + [ + 72.64918888754302, + 46.842401251809314 + ], + [ + 72.87887425451038, + 46.842401251809314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 46.842401251809314 + ], + [ + 72.64918888754302, + 46.842401251809314 + ], + [ + 72.7640315710267, + 46.64775351688086 + ], + [ + 72.87887425451038, + 46.842401251809314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 46.842401251809314 + ], + [ + 72.7640315710267, + 46.64775351688086 + ], + [ + 72.99371693799405, + 46.64775351688086 + ], + [ + 72.87887425451038, + 46.842401251809314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 46.842401251809314 + ], + [ + 72.99371693799405, + 46.64775351688086 + ], + [ + 73.10855962147774, + 46.842401251809314 + ], + [ + 72.87887425451038, + 46.842401251809314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 47.23169672166622 + ], + [ + 73.10855962147774, + 47.23169672166622 + ], + [ + 72.99371693799405, + 47.42634445659467 + ], + [ + 72.87887425451038, + 47.23169672166622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 47.23169672166622 + ], + [ + 72.99371693799405, + 47.42634445659467 + ], + [ + 72.7640315710267, + 47.42634445659467 + ], + [ + 72.87887425451038, + 47.23169672166622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 47.23169672166622 + ], + [ + 72.7640315710267, + 47.42634445659467 + ], + [ + 72.64918888754302, + 47.23169672166622 + ], + [ + 72.87887425451038, + 47.23169672166622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 47.23169672166622 + ], + [ + 72.64918888754302, + 47.23169672166622 + ], + [ + 72.7640315710267, + 47.037048986737766 + ], + [ + 72.87887425451038, + 47.23169672166622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 47.23169672166622 + ], + [ + 72.7640315710267, + 47.037048986737766 + ], + [ + 72.99371693799405, + 47.037048986737766 + ], + [ + 72.87887425451038, + 47.23169672166622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 47.23169672166622 + ], + [ + 72.99371693799405, + 47.037048986737766 + ], + [ + 73.10855962147774, + 47.23169672166622 + ], + [ + 72.87887425451038, + 47.23169672166622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 47.620992191523136 + ], + [ + 73.10855962147774, + 47.620992191523136 + ], + [ + 72.99371693799405, + 47.81563992645159 + ], + [ + 72.87887425451038, + 47.620992191523136 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 47.620992191523136 + ], + [ + 72.99371693799405, + 47.81563992645159 + ], + [ + 72.7640315710267, + 47.81563992645159 + ], + [ + 72.87887425451038, + 47.620992191523136 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 47.620992191523136 + ], + [ + 72.7640315710267, + 47.81563992645159 + ], + [ + 72.64918888754302, + 47.620992191523136 + ], + [ + 72.87887425451038, + 47.620992191523136 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 47.620992191523136 + ], + [ + 72.64918888754302, + 47.620992191523136 + ], + [ + 72.7640315710267, + 47.426344456594684 + ], + [ + 72.87887425451038, + 47.620992191523136 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 47.620992191523136 + ], + [ + 72.7640315710267, + 47.426344456594684 + ], + [ + 72.99371693799405, + 47.426344456594684 + ], + [ + 72.87887425451038, + 47.620992191523136 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.87887425451038, + 47.620992191523136 + ], + [ + 72.99371693799405, + 47.426344456594684 + ], + [ + 73.10855962147774, + 47.620992191523136 + ], + [ + 72.87887425451038, + 47.620992191523136 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 12.0004566996162 + ], + [ + 73.45308767192877, + 12.0004566996162 + ], + [ + 73.33824498844508, + 12.195104434544653 + ], + [ + 73.22340230496141, + 12.0004566996162 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 12.0004566996162 + ], + [ + 73.33824498844508, + 12.195104434544653 + ], + [ + 73.10855962147774, + 12.195104434544653 + ], + [ + 73.22340230496141, + 12.0004566996162 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 12.0004566996162 + ], + [ + 73.10855962147774, + 12.195104434544653 + ], + [ + 72.99371693799405, + 12.0004566996162 + ], + [ + 73.22340230496141, + 12.0004566996162 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 12.0004566996162 + ], + [ + 72.99371693799405, + 12.0004566996162 + ], + [ + 73.10855962147774, + 11.805808964687746 + ], + [ + 73.22340230496141, + 12.0004566996162 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 12.0004566996162 + ], + [ + 73.10855962147774, + 11.805808964687746 + ], + [ + 73.33824498844508, + 11.805808964687746 + ], + [ + 73.22340230496141, + 12.0004566996162 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 12.0004566996162 + ], + [ + 73.33824498844508, + 11.805808964687746 + ], + [ + 73.45308767192877, + 12.0004566996162 + ], + [ + 73.22340230496141, + 12.0004566996162 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 12.389752169473105 + ], + [ + 73.45308767192877, + 12.389752169473105 + ], + [ + 73.33824498844508, + 12.58439990440156 + ], + [ + 73.22340230496141, + 12.389752169473105 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 12.389752169473105 + ], + [ + 73.33824498844508, + 12.58439990440156 + ], + [ + 73.10855962147774, + 12.58439990440156 + ], + [ + 73.22340230496141, + 12.389752169473105 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 12.389752169473105 + ], + [ + 73.10855962147774, + 12.58439990440156 + ], + [ + 72.99371693799405, + 12.389752169473105 + ], + [ + 73.22340230496141, + 12.389752169473105 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 12.389752169473105 + ], + [ + 72.99371693799405, + 12.389752169473105 + ], + [ + 73.10855962147774, + 12.195104434544652 + ], + [ + 73.22340230496141, + 12.389752169473105 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 12.389752169473105 + ], + [ + 73.10855962147774, + 12.195104434544652 + ], + [ + 73.33824498844508, + 12.195104434544652 + ], + [ + 73.22340230496141, + 12.389752169473105 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 12.389752169473105 + ], + [ + 73.33824498844508, + 12.195104434544652 + ], + [ + 73.45308767192877, + 12.389752169473105 + ], + [ + 73.22340230496141, + 12.389752169473105 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 12.779047639330013 + ], + [ + 73.45308767192877, + 12.779047639330013 + ], + [ + 73.33824498844508, + 12.973695374258467 + ], + [ + 73.22340230496141, + 12.779047639330013 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 12.779047639330013 + ], + [ + 73.33824498844508, + 12.973695374258467 + ], + [ + 73.10855962147774, + 12.973695374258467 + ], + [ + 73.22340230496141, + 12.779047639330013 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 12.779047639330013 + ], + [ + 73.10855962147774, + 12.973695374258467 + ], + [ + 72.99371693799405, + 12.779047639330013 + ], + [ + 73.22340230496141, + 12.779047639330013 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 12.779047639330013 + ], + [ + 72.99371693799405, + 12.779047639330013 + ], + [ + 73.10855962147774, + 12.58439990440156 + ], + [ + 73.22340230496141, + 12.779047639330013 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 12.779047639330013 + ], + [ + 73.10855962147774, + 12.58439990440156 + ], + [ + 73.33824498844508, + 12.58439990440156 + ], + [ + 73.22340230496141, + 12.779047639330013 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 12.779047639330013 + ], + [ + 73.33824498844508, + 12.58439990440156 + ], + [ + 73.45308767192877, + 12.779047639330013 + ], + [ + 73.22340230496141, + 12.779047639330013 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 13.16834310918692 + ], + [ + 73.45308767192877, + 13.16834310918692 + ], + [ + 73.33824498844508, + 13.362990844115373 + ], + [ + 73.22340230496141, + 13.16834310918692 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 13.16834310918692 + ], + [ + 73.33824498844508, + 13.362990844115373 + ], + [ + 73.10855962147774, + 13.362990844115373 + ], + [ + 73.22340230496141, + 13.16834310918692 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 13.16834310918692 + ], + [ + 73.10855962147774, + 13.362990844115373 + ], + [ + 72.99371693799405, + 13.16834310918692 + ], + [ + 73.22340230496141, + 13.16834310918692 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 13.16834310918692 + ], + [ + 72.99371693799405, + 13.16834310918692 + ], + [ + 73.10855962147774, + 12.973695374258465 + ], + [ + 73.22340230496141, + 13.16834310918692 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 13.16834310918692 + ], + [ + 73.10855962147774, + 12.973695374258465 + ], + [ + 73.33824498844508, + 12.973695374258465 + ], + [ + 73.22340230496141, + 13.16834310918692 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 13.16834310918692 + ], + [ + 73.33824498844508, + 12.973695374258465 + ], + [ + 73.45308767192877, + 13.16834310918692 + ], + [ + 73.22340230496141, + 13.16834310918692 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 13.557638579043825 + ], + [ + 73.45308767192877, + 13.557638579043825 + ], + [ + 73.33824498844508, + 13.752286313972279 + ], + [ + 73.22340230496141, + 13.557638579043825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 13.557638579043825 + ], + [ + 73.33824498844508, + 13.752286313972279 + ], + [ + 73.10855962147774, + 13.752286313972279 + ], + [ + 73.22340230496141, + 13.557638579043825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 13.557638579043825 + ], + [ + 73.10855962147774, + 13.752286313972279 + ], + [ + 72.99371693799405, + 13.557638579043825 + ], + [ + 73.22340230496141, + 13.557638579043825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 13.557638579043825 + ], + [ + 72.99371693799405, + 13.557638579043825 + ], + [ + 73.10855962147774, + 13.362990844115371 + ], + [ + 73.22340230496141, + 13.557638579043825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 13.557638579043825 + ], + [ + 73.10855962147774, + 13.362990844115371 + ], + [ + 73.33824498844508, + 13.362990844115371 + ], + [ + 73.22340230496141, + 13.557638579043825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 13.557638579043825 + ], + [ + 73.33824498844508, + 13.362990844115371 + ], + [ + 73.45308767192877, + 13.557638579043825 + ], + [ + 73.22340230496141, + 13.557638579043825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 13.946934048900731 + ], + [ + 73.45308767192877, + 13.946934048900731 + ], + [ + 73.33824498844508, + 14.141581783829185 + ], + [ + 73.22340230496141, + 13.946934048900731 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 13.946934048900731 + ], + [ + 73.33824498844508, + 14.141581783829185 + ], + [ + 73.10855962147774, + 14.141581783829185 + ], + [ + 73.22340230496141, + 13.946934048900731 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 13.946934048900731 + ], + [ + 73.10855962147774, + 14.141581783829185 + ], + [ + 72.99371693799405, + 13.946934048900731 + ], + [ + 73.22340230496141, + 13.946934048900731 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 13.946934048900731 + ], + [ + 72.99371693799405, + 13.946934048900731 + ], + [ + 73.10855962147774, + 13.752286313972277 + ], + [ + 73.22340230496141, + 13.946934048900731 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 13.946934048900731 + ], + [ + 73.10855962147774, + 13.752286313972277 + ], + [ + 73.33824498844508, + 13.752286313972277 + ], + [ + 73.22340230496141, + 13.946934048900731 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 13.946934048900731 + ], + [ + 73.33824498844508, + 13.752286313972277 + ], + [ + 73.45308767192877, + 13.946934048900731 + ], + [ + 73.22340230496141, + 13.946934048900731 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 14.336229518757637 + ], + [ + 73.45308767192877, + 14.336229518757637 + ], + [ + 73.33824498844508, + 14.530877253686091 + ], + [ + 73.22340230496141, + 14.336229518757637 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 14.336229518757637 + ], + [ + 73.33824498844508, + 14.530877253686091 + ], + [ + 73.10855962147774, + 14.530877253686091 + ], + [ + 73.22340230496141, + 14.336229518757637 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 14.336229518757637 + ], + [ + 73.10855962147774, + 14.530877253686091 + ], + [ + 72.99371693799405, + 14.336229518757637 + ], + [ + 73.22340230496141, + 14.336229518757637 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 14.336229518757637 + ], + [ + 72.99371693799405, + 14.336229518757637 + ], + [ + 73.10855962147774, + 14.141581783829183 + ], + [ + 73.22340230496141, + 14.336229518757637 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 14.336229518757637 + ], + [ + 73.10855962147774, + 14.141581783829183 + ], + [ + 73.33824498844508, + 14.141581783829183 + ], + [ + 73.22340230496141, + 14.336229518757637 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 14.336229518757637 + ], + [ + 73.33824498844508, + 14.141581783829183 + ], + [ + 73.45308767192877, + 14.336229518757637 + ], + [ + 73.22340230496141, + 14.336229518757637 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 14.725524988614545 + ], + [ + 73.45308767192877, + 14.725524988614545 + ], + [ + 73.33824498844508, + 14.920172723542999 + ], + [ + 73.22340230496141, + 14.725524988614545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 14.725524988614545 + ], + [ + 73.33824498844508, + 14.920172723542999 + ], + [ + 73.10855962147774, + 14.920172723542999 + ], + [ + 73.22340230496141, + 14.725524988614545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 14.725524988614545 + ], + [ + 73.10855962147774, + 14.920172723542999 + ], + [ + 72.99371693799405, + 14.725524988614545 + ], + [ + 73.22340230496141, + 14.725524988614545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 14.725524988614545 + ], + [ + 72.99371693799405, + 14.725524988614545 + ], + [ + 73.10855962147774, + 14.530877253686091 + ], + [ + 73.22340230496141, + 14.725524988614545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 14.725524988614545 + ], + [ + 73.10855962147774, + 14.530877253686091 + ], + [ + 73.33824498844508, + 14.530877253686091 + ], + [ + 73.22340230496141, + 14.725524988614545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 14.725524988614545 + ], + [ + 73.33824498844508, + 14.530877253686091 + ], + [ + 73.45308767192877, + 14.725524988614545 + ], + [ + 73.22340230496141, + 14.725524988614545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 15.114820458471451 + ], + [ + 73.45308767192877, + 15.114820458471451 + ], + [ + 73.33824498844508, + 15.309468193399905 + ], + [ + 73.22340230496141, + 15.114820458471451 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 15.114820458471451 + ], + [ + 73.33824498844508, + 15.309468193399905 + ], + [ + 73.10855962147774, + 15.309468193399905 + ], + [ + 73.22340230496141, + 15.114820458471451 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 15.114820458471451 + ], + [ + 73.10855962147774, + 15.309468193399905 + ], + [ + 72.99371693799405, + 15.114820458471451 + ], + [ + 73.22340230496141, + 15.114820458471451 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 15.114820458471451 + ], + [ + 72.99371693799405, + 15.114820458471451 + ], + [ + 73.10855962147774, + 14.920172723542997 + ], + [ + 73.22340230496141, + 15.114820458471451 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 15.114820458471451 + ], + [ + 73.10855962147774, + 14.920172723542997 + ], + [ + 73.33824498844508, + 14.920172723542997 + ], + [ + 73.22340230496141, + 15.114820458471451 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 15.114820458471451 + ], + [ + 73.33824498844508, + 14.920172723542997 + ], + [ + 73.45308767192877, + 15.114820458471451 + ], + [ + 73.22340230496141, + 15.114820458471451 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 15.504115928328357 + ], + [ + 73.45308767192877, + 15.504115928328357 + ], + [ + 73.33824498844508, + 15.69876366325681 + ], + [ + 73.22340230496141, + 15.504115928328357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 15.504115928328357 + ], + [ + 73.33824498844508, + 15.69876366325681 + ], + [ + 73.10855962147774, + 15.69876366325681 + ], + [ + 73.22340230496141, + 15.504115928328357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 15.504115928328357 + ], + [ + 73.10855962147774, + 15.69876366325681 + ], + [ + 72.99371693799405, + 15.504115928328357 + ], + [ + 73.22340230496141, + 15.504115928328357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 15.504115928328357 + ], + [ + 72.99371693799405, + 15.504115928328357 + ], + [ + 73.10855962147774, + 15.309468193399903 + ], + [ + 73.22340230496141, + 15.504115928328357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 15.504115928328357 + ], + [ + 73.10855962147774, + 15.309468193399903 + ], + [ + 73.33824498844508, + 15.309468193399903 + ], + [ + 73.22340230496141, + 15.504115928328357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 15.504115928328357 + ], + [ + 73.33824498844508, + 15.309468193399903 + ], + [ + 73.45308767192877, + 15.504115928328357 + ], + [ + 73.22340230496141, + 15.504115928328357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 15.893411398185265 + ], + [ + 73.45308767192877, + 15.893411398185265 + ], + [ + 73.33824498844508, + 16.088059133113717 + ], + [ + 73.22340230496141, + 15.893411398185265 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 15.893411398185265 + ], + [ + 73.33824498844508, + 16.088059133113717 + ], + [ + 73.10855962147774, + 16.088059133113717 + ], + [ + 73.22340230496141, + 15.893411398185265 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 15.893411398185265 + ], + [ + 73.10855962147774, + 16.088059133113717 + ], + [ + 72.99371693799405, + 15.893411398185265 + ], + [ + 73.22340230496141, + 15.893411398185265 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 15.893411398185265 + ], + [ + 72.99371693799405, + 15.893411398185265 + ], + [ + 73.10855962147774, + 15.69876366325681 + ], + [ + 73.22340230496141, + 15.893411398185265 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 15.893411398185265 + ], + [ + 73.10855962147774, + 15.69876366325681 + ], + [ + 73.33824498844508, + 15.69876366325681 + ], + [ + 73.22340230496141, + 15.893411398185265 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 15.893411398185265 + ], + [ + 73.33824498844508, + 15.69876366325681 + ], + [ + 73.45308767192877, + 15.893411398185265 + ], + [ + 73.22340230496141, + 15.893411398185265 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 16.28270686804217 + ], + [ + 73.45308767192877, + 16.28270686804217 + ], + [ + 73.33824498844508, + 16.47735460297062 + ], + [ + 73.22340230496141, + 16.28270686804217 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 16.28270686804217 + ], + [ + 73.33824498844508, + 16.47735460297062 + ], + [ + 73.10855962147774, + 16.47735460297062 + ], + [ + 73.22340230496141, + 16.28270686804217 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 16.28270686804217 + ], + [ + 73.10855962147774, + 16.47735460297062 + ], + [ + 72.99371693799405, + 16.28270686804217 + ], + [ + 73.22340230496141, + 16.28270686804217 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 16.28270686804217 + ], + [ + 72.99371693799405, + 16.28270686804217 + ], + [ + 73.10855962147774, + 16.088059133113717 + ], + [ + 73.22340230496141, + 16.28270686804217 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 16.28270686804217 + ], + [ + 73.10855962147774, + 16.088059133113717 + ], + [ + 73.33824498844508, + 16.088059133113717 + ], + [ + 73.22340230496141, + 16.28270686804217 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 16.28270686804217 + ], + [ + 73.33824498844508, + 16.088059133113717 + ], + [ + 73.45308767192877, + 16.28270686804217 + ], + [ + 73.22340230496141, + 16.28270686804217 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 16.672002337899077 + ], + [ + 73.45308767192877, + 16.672002337899077 + ], + [ + 73.33824498844508, + 16.86665007282753 + ], + [ + 73.22340230496141, + 16.672002337899077 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 16.672002337899077 + ], + [ + 73.33824498844508, + 16.86665007282753 + ], + [ + 73.10855962147774, + 16.86665007282753 + ], + [ + 73.22340230496141, + 16.672002337899077 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 16.672002337899077 + ], + [ + 73.10855962147774, + 16.86665007282753 + ], + [ + 72.99371693799405, + 16.672002337899077 + ], + [ + 73.22340230496141, + 16.672002337899077 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 16.672002337899077 + ], + [ + 72.99371693799405, + 16.672002337899077 + ], + [ + 73.10855962147774, + 16.477354602970625 + ], + [ + 73.22340230496141, + 16.672002337899077 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 16.672002337899077 + ], + [ + 73.10855962147774, + 16.477354602970625 + ], + [ + 73.33824498844508, + 16.477354602970625 + ], + [ + 73.22340230496141, + 16.672002337899077 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 16.672002337899077 + ], + [ + 73.33824498844508, + 16.477354602970625 + ], + [ + 73.45308767192877, + 16.672002337899077 + ], + [ + 73.22340230496141, + 16.672002337899077 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 17.06129780775598 + ], + [ + 73.45308767192877, + 17.06129780775598 + ], + [ + 73.33824498844508, + 17.255945542684433 + ], + [ + 73.22340230496141, + 17.06129780775598 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 17.06129780775598 + ], + [ + 73.33824498844508, + 17.255945542684433 + ], + [ + 73.10855962147774, + 17.255945542684433 + ], + [ + 73.22340230496141, + 17.06129780775598 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 17.06129780775598 + ], + [ + 73.10855962147774, + 17.255945542684433 + ], + [ + 72.99371693799405, + 17.06129780775598 + ], + [ + 73.22340230496141, + 17.06129780775598 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 17.06129780775598 + ], + [ + 72.99371693799405, + 17.06129780775598 + ], + [ + 73.10855962147774, + 16.86665007282753 + ], + [ + 73.22340230496141, + 17.06129780775598 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 17.06129780775598 + ], + [ + 73.10855962147774, + 16.86665007282753 + ], + [ + 73.33824498844508, + 16.86665007282753 + ], + [ + 73.22340230496141, + 17.06129780775598 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 17.06129780775598 + ], + [ + 73.33824498844508, + 16.86665007282753 + ], + [ + 73.45308767192877, + 17.06129780775598 + ], + [ + 73.22340230496141, + 17.06129780775598 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 17.45059327761289 + ], + [ + 73.45308767192877, + 17.45059327761289 + ], + [ + 73.33824498844508, + 17.64524101254134 + ], + [ + 73.22340230496141, + 17.45059327761289 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 17.45059327761289 + ], + [ + 73.33824498844508, + 17.64524101254134 + ], + [ + 73.10855962147774, + 17.64524101254134 + ], + [ + 73.22340230496141, + 17.45059327761289 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 17.45059327761289 + ], + [ + 73.10855962147774, + 17.64524101254134 + ], + [ + 72.99371693799405, + 17.45059327761289 + ], + [ + 73.22340230496141, + 17.45059327761289 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 17.45059327761289 + ], + [ + 72.99371693799405, + 17.45059327761289 + ], + [ + 73.10855962147774, + 17.255945542684437 + ], + [ + 73.22340230496141, + 17.45059327761289 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 17.45059327761289 + ], + [ + 73.10855962147774, + 17.255945542684437 + ], + [ + 73.33824498844508, + 17.255945542684437 + ], + [ + 73.22340230496141, + 17.45059327761289 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 17.45059327761289 + ], + [ + 73.33824498844508, + 17.255945542684437 + ], + [ + 73.45308767192877, + 17.45059327761289 + ], + [ + 73.22340230496141, + 17.45059327761289 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 17.839888747469793 + ], + [ + 73.45308767192877, + 17.839888747469793 + ], + [ + 73.33824498844508, + 18.034536482398245 + ], + [ + 73.22340230496141, + 17.839888747469793 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 17.839888747469793 + ], + [ + 73.33824498844508, + 18.034536482398245 + ], + [ + 73.10855962147774, + 18.034536482398245 + ], + [ + 73.22340230496141, + 17.839888747469793 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 17.839888747469793 + ], + [ + 73.10855962147774, + 18.034536482398245 + ], + [ + 72.99371693799405, + 17.839888747469793 + ], + [ + 73.22340230496141, + 17.839888747469793 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 17.839888747469793 + ], + [ + 72.99371693799405, + 17.839888747469793 + ], + [ + 73.10855962147774, + 17.64524101254134 + ], + [ + 73.22340230496141, + 17.839888747469793 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 17.839888747469793 + ], + [ + 73.10855962147774, + 17.64524101254134 + ], + [ + 73.33824498844508, + 17.64524101254134 + ], + [ + 73.22340230496141, + 17.839888747469793 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 17.839888747469793 + ], + [ + 73.33824498844508, + 17.64524101254134 + ], + [ + 73.45308767192877, + 17.839888747469793 + ], + [ + 73.22340230496141, + 17.839888747469793 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 18.2291842173267 + ], + [ + 73.45308767192877, + 18.2291842173267 + ], + [ + 73.33824498844508, + 18.423831952255153 + ], + [ + 73.22340230496141, + 18.2291842173267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 18.2291842173267 + ], + [ + 73.33824498844508, + 18.423831952255153 + ], + [ + 73.10855962147774, + 18.423831952255153 + ], + [ + 73.22340230496141, + 18.2291842173267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 18.2291842173267 + ], + [ + 73.10855962147774, + 18.423831952255153 + ], + [ + 72.99371693799405, + 18.2291842173267 + ], + [ + 73.22340230496141, + 18.2291842173267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 18.2291842173267 + ], + [ + 72.99371693799405, + 18.2291842173267 + ], + [ + 73.10855962147774, + 18.03453648239825 + ], + [ + 73.22340230496141, + 18.2291842173267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 18.2291842173267 + ], + [ + 73.10855962147774, + 18.03453648239825 + ], + [ + 73.33824498844508, + 18.03453648239825 + ], + [ + 73.22340230496141, + 18.2291842173267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 18.2291842173267 + ], + [ + 73.33824498844508, + 18.03453648239825 + ], + [ + 73.45308767192877, + 18.2291842173267 + ], + [ + 73.22340230496141, + 18.2291842173267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 18.61847968718361 + ], + [ + 73.45308767192877, + 18.61847968718361 + ], + [ + 73.33824498844508, + 18.81312742211206 + ], + [ + 73.22340230496141, + 18.61847968718361 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 18.61847968718361 + ], + [ + 73.33824498844508, + 18.81312742211206 + ], + [ + 73.10855962147774, + 18.81312742211206 + ], + [ + 73.22340230496141, + 18.61847968718361 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 18.61847968718361 + ], + [ + 73.10855962147774, + 18.81312742211206 + ], + [ + 72.99371693799405, + 18.61847968718361 + ], + [ + 73.22340230496141, + 18.61847968718361 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 18.61847968718361 + ], + [ + 72.99371693799405, + 18.61847968718361 + ], + [ + 73.10855962147774, + 18.423831952255156 + ], + [ + 73.22340230496141, + 18.61847968718361 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 18.61847968718361 + ], + [ + 73.10855962147774, + 18.423831952255156 + ], + [ + 73.33824498844508, + 18.423831952255156 + ], + [ + 73.22340230496141, + 18.61847968718361 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 18.61847968718361 + ], + [ + 73.33824498844508, + 18.423831952255156 + ], + [ + 73.45308767192877, + 18.61847968718361 + ], + [ + 73.22340230496141, + 18.61847968718361 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 19.007775157040513 + ], + [ + 73.45308767192877, + 19.007775157040513 + ], + [ + 73.33824498844508, + 19.202422891968965 + ], + [ + 73.22340230496141, + 19.007775157040513 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 19.007775157040513 + ], + [ + 73.33824498844508, + 19.202422891968965 + ], + [ + 73.10855962147774, + 19.202422891968965 + ], + [ + 73.22340230496141, + 19.007775157040513 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 19.007775157040513 + ], + [ + 73.10855962147774, + 19.202422891968965 + ], + [ + 72.99371693799405, + 19.007775157040513 + ], + [ + 73.22340230496141, + 19.007775157040513 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 19.007775157040513 + ], + [ + 72.99371693799405, + 19.007775157040513 + ], + [ + 73.10855962147774, + 18.81312742211206 + ], + [ + 73.22340230496141, + 19.007775157040513 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 19.007775157040513 + ], + [ + 73.10855962147774, + 18.81312742211206 + ], + [ + 73.33824498844508, + 18.81312742211206 + ], + [ + 73.22340230496141, + 19.007775157040513 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 19.007775157040513 + ], + [ + 73.33824498844508, + 18.81312742211206 + ], + [ + 73.45308767192877, + 19.007775157040513 + ], + [ + 73.22340230496141, + 19.007775157040513 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 19.39707062689742 + ], + [ + 73.45308767192877, + 19.39707062689742 + ], + [ + 73.33824498844508, + 19.591718361825873 + ], + [ + 73.22340230496141, + 19.39707062689742 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 19.39707062689742 + ], + [ + 73.33824498844508, + 19.591718361825873 + ], + [ + 73.10855962147774, + 19.591718361825873 + ], + [ + 73.22340230496141, + 19.39707062689742 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 19.39707062689742 + ], + [ + 73.10855962147774, + 19.591718361825873 + ], + [ + 72.99371693799405, + 19.39707062689742 + ], + [ + 73.22340230496141, + 19.39707062689742 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 19.39707062689742 + ], + [ + 72.99371693799405, + 19.39707062689742 + ], + [ + 73.10855962147774, + 19.20242289196897 + ], + [ + 73.22340230496141, + 19.39707062689742 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 19.39707062689742 + ], + [ + 73.10855962147774, + 19.20242289196897 + ], + [ + 73.33824498844508, + 19.20242289196897 + ], + [ + 73.22340230496141, + 19.39707062689742 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 19.39707062689742 + ], + [ + 73.33824498844508, + 19.20242289196897 + ], + [ + 73.45308767192877, + 19.39707062689742 + ], + [ + 73.22340230496141, + 19.39707062689742 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 19.78636609675433 + ], + [ + 73.45308767192877, + 19.78636609675433 + ], + [ + 73.33824498844508, + 19.98101383168278 + ], + [ + 73.22340230496141, + 19.78636609675433 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 19.78636609675433 + ], + [ + 73.33824498844508, + 19.98101383168278 + ], + [ + 73.10855962147774, + 19.98101383168278 + ], + [ + 73.22340230496141, + 19.78636609675433 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 19.78636609675433 + ], + [ + 73.10855962147774, + 19.98101383168278 + ], + [ + 72.99371693799405, + 19.78636609675433 + ], + [ + 73.22340230496141, + 19.78636609675433 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 19.78636609675433 + ], + [ + 72.99371693799405, + 19.78636609675433 + ], + [ + 73.10855962147774, + 19.591718361825876 + ], + [ + 73.22340230496141, + 19.78636609675433 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 19.78636609675433 + ], + [ + 73.10855962147774, + 19.591718361825876 + ], + [ + 73.33824498844508, + 19.591718361825876 + ], + [ + 73.22340230496141, + 19.78636609675433 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 19.78636609675433 + ], + [ + 73.33824498844508, + 19.591718361825876 + ], + [ + 73.45308767192877, + 19.78636609675433 + ], + [ + 73.22340230496141, + 19.78636609675433 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 20.175661566611232 + ], + [ + 73.45308767192877, + 20.175661566611232 + ], + [ + 73.33824498844508, + 20.370309301539685 + ], + [ + 73.22340230496141, + 20.175661566611232 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 20.175661566611232 + ], + [ + 73.33824498844508, + 20.370309301539685 + ], + [ + 73.10855962147774, + 20.370309301539685 + ], + [ + 73.22340230496141, + 20.175661566611232 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 20.175661566611232 + ], + [ + 73.10855962147774, + 20.370309301539685 + ], + [ + 72.99371693799405, + 20.175661566611232 + ], + [ + 73.22340230496141, + 20.175661566611232 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 20.175661566611232 + ], + [ + 72.99371693799405, + 20.175661566611232 + ], + [ + 73.10855962147774, + 19.98101383168278 + ], + [ + 73.22340230496141, + 20.175661566611232 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 20.175661566611232 + ], + [ + 73.10855962147774, + 19.98101383168278 + ], + [ + 73.33824498844508, + 19.98101383168278 + ], + [ + 73.22340230496141, + 20.175661566611232 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 20.175661566611232 + ], + [ + 73.33824498844508, + 19.98101383168278 + ], + [ + 73.45308767192877, + 20.175661566611232 + ], + [ + 73.22340230496141, + 20.175661566611232 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 20.564957036468137 + ], + [ + 73.45308767192877, + 20.564957036468137 + ], + [ + 73.33824498844508, + 20.75960477139659 + ], + [ + 73.22340230496141, + 20.564957036468137 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 20.564957036468137 + ], + [ + 73.33824498844508, + 20.75960477139659 + ], + [ + 73.10855962147774, + 20.75960477139659 + ], + [ + 73.22340230496141, + 20.564957036468137 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 20.564957036468137 + ], + [ + 73.10855962147774, + 20.75960477139659 + ], + [ + 72.99371693799405, + 20.564957036468137 + ], + [ + 73.22340230496141, + 20.564957036468137 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 20.564957036468137 + ], + [ + 72.99371693799405, + 20.564957036468137 + ], + [ + 73.10855962147774, + 20.370309301539685 + ], + [ + 73.22340230496141, + 20.564957036468137 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 20.564957036468137 + ], + [ + 73.10855962147774, + 20.370309301539685 + ], + [ + 73.33824498844508, + 20.370309301539685 + ], + [ + 73.22340230496141, + 20.564957036468137 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 20.564957036468137 + ], + [ + 73.33824498844508, + 20.370309301539685 + ], + [ + 73.45308767192877, + 20.564957036468137 + ], + [ + 73.22340230496141, + 20.564957036468137 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 20.954252506325044 + ], + [ + 73.45308767192877, + 20.954252506325044 + ], + [ + 73.33824498844508, + 21.148900241253497 + ], + [ + 73.22340230496141, + 20.954252506325044 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 20.954252506325044 + ], + [ + 73.33824498844508, + 21.148900241253497 + ], + [ + 73.10855962147774, + 21.148900241253497 + ], + [ + 73.22340230496141, + 20.954252506325044 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 20.954252506325044 + ], + [ + 73.10855962147774, + 21.148900241253497 + ], + [ + 72.99371693799405, + 20.954252506325044 + ], + [ + 73.22340230496141, + 20.954252506325044 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 20.954252506325044 + ], + [ + 72.99371693799405, + 20.954252506325044 + ], + [ + 73.10855962147774, + 20.759604771396592 + ], + [ + 73.22340230496141, + 20.954252506325044 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 20.954252506325044 + ], + [ + 73.10855962147774, + 20.759604771396592 + ], + [ + 73.33824498844508, + 20.759604771396592 + ], + [ + 73.22340230496141, + 20.954252506325044 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 20.954252506325044 + ], + [ + 73.33824498844508, + 20.759604771396592 + ], + [ + 73.45308767192877, + 20.954252506325044 + ], + [ + 73.22340230496141, + 20.954252506325044 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 21.343547976181952 + ], + [ + 73.45308767192877, + 21.343547976181952 + ], + [ + 73.33824498844508, + 21.538195711110404 + ], + [ + 73.22340230496141, + 21.343547976181952 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 21.343547976181952 + ], + [ + 73.33824498844508, + 21.538195711110404 + ], + [ + 73.10855962147774, + 21.538195711110404 + ], + [ + 73.22340230496141, + 21.343547976181952 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 21.343547976181952 + ], + [ + 73.10855962147774, + 21.538195711110404 + ], + [ + 72.99371693799405, + 21.343547976181952 + ], + [ + 73.22340230496141, + 21.343547976181952 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 21.343547976181952 + ], + [ + 72.99371693799405, + 21.343547976181952 + ], + [ + 73.10855962147774, + 21.1489002412535 + ], + [ + 73.22340230496141, + 21.343547976181952 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 21.343547976181952 + ], + [ + 73.10855962147774, + 21.1489002412535 + ], + [ + 73.33824498844508, + 21.1489002412535 + ], + [ + 73.22340230496141, + 21.343547976181952 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 21.343547976181952 + ], + [ + 73.33824498844508, + 21.1489002412535 + ], + [ + 73.45308767192877, + 21.343547976181952 + ], + [ + 73.22340230496141, + 21.343547976181952 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 21.732843446038856 + ], + [ + 73.45308767192877, + 21.732843446038856 + ], + [ + 73.33824498844508, + 21.92749118096731 + ], + [ + 73.22340230496141, + 21.732843446038856 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 21.732843446038856 + ], + [ + 73.33824498844508, + 21.92749118096731 + ], + [ + 73.10855962147774, + 21.92749118096731 + ], + [ + 73.22340230496141, + 21.732843446038856 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 21.732843446038856 + ], + [ + 73.10855962147774, + 21.92749118096731 + ], + [ + 72.99371693799405, + 21.732843446038856 + ], + [ + 73.22340230496141, + 21.732843446038856 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 21.732843446038856 + ], + [ + 72.99371693799405, + 21.732843446038856 + ], + [ + 73.10855962147774, + 21.538195711110404 + ], + [ + 73.22340230496141, + 21.732843446038856 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 21.732843446038856 + ], + [ + 73.10855962147774, + 21.538195711110404 + ], + [ + 73.33824498844508, + 21.538195711110404 + ], + [ + 73.22340230496141, + 21.732843446038856 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 21.732843446038856 + ], + [ + 73.33824498844508, + 21.538195711110404 + ], + [ + 73.45308767192877, + 21.732843446038856 + ], + [ + 73.22340230496141, + 21.732843446038856 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 22.122138915895764 + ], + [ + 73.45308767192877, + 22.122138915895764 + ], + [ + 73.33824498844508, + 22.316786650824216 + ], + [ + 73.22340230496141, + 22.122138915895764 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 22.122138915895764 + ], + [ + 73.33824498844508, + 22.316786650824216 + ], + [ + 73.10855962147774, + 22.316786650824216 + ], + [ + 73.22340230496141, + 22.122138915895764 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 22.122138915895764 + ], + [ + 73.10855962147774, + 22.316786650824216 + ], + [ + 72.99371693799405, + 22.122138915895764 + ], + [ + 73.22340230496141, + 22.122138915895764 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 22.122138915895764 + ], + [ + 72.99371693799405, + 22.122138915895764 + ], + [ + 73.10855962147774, + 21.927491180967312 + ], + [ + 73.22340230496141, + 22.122138915895764 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 22.122138915895764 + ], + [ + 73.10855962147774, + 21.927491180967312 + ], + [ + 73.33824498844508, + 21.927491180967312 + ], + [ + 73.22340230496141, + 22.122138915895764 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 22.122138915895764 + ], + [ + 73.33824498844508, + 21.927491180967312 + ], + [ + 73.45308767192877, + 22.122138915895764 + ], + [ + 73.22340230496141, + 22.122138915895764 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 22.511434385752672 + ], + [ + 73.45308767192877, + 22.511434385752672 + ], + [ + 73.33824498844508, + 22.706082120681124 + ], + [ + 73.22340230496141, + 22.511434385752672 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 22.511434385752672 + ], + [ + 73.33824498844508, + 22.706082120681124 + ], + [ + 73.10855962147774, + 22.706082120681124 + ], + [ + 73.22340230496141, + 22.511434385752672 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 22.511434385752672 + ], + [ + 73.10855962147774, + 22.706082120681124 + ], + [ + 72.99371693799405, + 22.511434385752672 + ], + [ + 73.22340230496141, + 22.511434385752672 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 22.511434385752672 + ], + [ + 72.99371693799405, + 22.511434385752672 + ], + [ + 73.10855962147774, + 22.31678665082422 + ], + [ + 73.22340230496141, + 22.511434385752672 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 22.511434385752672 + ], + [ + 73.10855962147774, + 22.31678665082422 + ], + [ + 73.33824498844508, + 22.31678665082422 + ], + [ + 73.22340230496141, + 22.511434385752672 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 22.511434385752672 + ], + [ + 73.33824498844508, + 22.31678665082422 + ], + [ + 73.45308767192877, + 22.511434385752672 + ], + [ + 73.22340230496141, + 22.511434385752672 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 22.900729855609576 + ], + [ + 73.45308767192877, + 22.900729855609576 + ], + [ + 73.33824498844508, + 23.09537759053803 + ], + [ + 73.22340230496141, + 22.900729855609576 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 22.900729855609576 + ], + [ + 73.33824498844508, + 23.09537759053803 + ], + [ + 73.10855962147774, + 23.09537759053803 + ], + [ + 73.22340230496141, + 22.900729855609576 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 22.900729855609576 + ], + [ + 73.10855962147774, + 23.09537759053803 + ], + [ + 72.99371693799405, + 22.900729855609576 + ], + [ + 73.22340230496141, + 22.900729855609576 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 22.900729855609576 + ], + [ + 72.99371693799405, + 22.900729855609576 + ], + [ + 73.10855962147774, + 22.706082120681124 + ], + [ + 73.22340230496141, + 22.900729855609576 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 22.900729855609576 + ], + [ + 73.10855962147774, + 22.706082120681124 + ], + [ + 73.33824498844508, + 22.706082120681124 + ], + [ + 73.22340230496141, + 22.900729855609576 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 22.900729855609576 + ], + [ + 73.33824498844508, + 22.706082120681124 + ], + [ + 73.45308767192877, + 22.900729855609576 + ], + [ + 73.22340230496141, + 22.900729855609576 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 23.290025325466484 + ], + [ + 73.45308767192877, + 23.290025325466484 + ], + [ + 73.33824498844508, + 23.484673060394936 + ], + [ + 73.22340230496141, + 23.290025325466484 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 23.290025325466484 + ], + [ + 73.33824498844508, + 23.484673060394936 + ], + [ + 73.10855962147774, + 23.484673060394936 + ], + [ + 73.22340230496141, + 23.290025325466484 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 23.290025325466484 + ], + [ + 73.10855962147774, + 23.484673060394936 + ], + [ + 72.99371693799405, + 23.290025325466484 + ], + [ + 73.22340230496141, + 23.290025325466484 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 23.290025325466484 + ], + [ + 72.99371693799405, + 23.290025325466484 + ], + [ + 73.10855962147774, + 23.095377590538032 + ], + [ + 73.22340230496141, + 23.290025325466484 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 23.290025325466484 + ], + [ + 73.10855962147774, + 23.095377590538032 + ], + [ + 73.33824498844508, + 23.095377590538032 + ], + [ + 73.22340230496141, + 23.290025325466484 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 23.290025325466484 + ], + [ + 73.33824498844508, + 23.095377590538032 + ], + [ + 73.45308767192877, + 23.290025325466484 + ], + [ + 73.22340230496141, + 23.290025325466484 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 23.67932079532339 + ], + [ + 73.45308767192877, + 23.67932079532339 + ], + [ + 73.33824498844508, + 23.873968530251844 + ], + [ + 73.22340230496141, + 23.67932079532339 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 23.67932079532339 + ], + [ + 73.33824498844508, + 23.873968530251844 + ], + [ + 73.10855962147774, + 23.873968530251844 + ], + [ + 73.22340230496141, + 23.67932079532339 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 23.67932079532339 + ], + [ + 73.10855962147774, + 23.873968530251844 + ], + [ + 72.99371693799405, + 23.67932079532339 + ], + [ + 73.22340230496141, + 23.67932079532339 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 23.67932079532339 + ], + [ + 72.99371693799405, + 23.67932079532339 + ], + [ + 73.10855962147774, + 23.48467306039494 + ], + [ + 73.22340230496141, + 23.67932079532339 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 23.67932079532339 + ], + [ + 73.10855962147774, + 23.48467306039494 + ], + [ + 73.33824498844508, + 23.48467306039494 + ], + [ + 73.22340230496141, + 23.67932079532339 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 23.67932079532339 + ], + [ + 73.33824498844508, + 23.48467306039494 + ], + [ + 73.45308767192877, + 23.67932079532339 + ], + [ + 73.22340230496141, + 23.67932079532339 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 24.068616265180296 + ], + [ + 73.45308767192877, + 24.068616265180296 + ], + [ + 73.33824498844508, + 24.263264000108748 + ], + [ + 73.22340230496141, + 24.068616265180296 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 24.068616265180296 + ], + [ + 73.33824498844508, + 24.263264000108748 + ], + [ + 73.10855962147774, + 24.263264000108748 + ], + [ + 73.22340230496141, + 24.068616265180296 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 24.068616265180296 + ], + [ + 73.10855962147774, + 24.263264000108748 + ], + [ + 72.99371693799405, + 24.068616265180296 + ], + [ + 73.22340230496141, + 24.068616265180296 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 24.068616265180296 + ], + [ + 72.99371693799405, + 24.068616265180296 + ], + [ + 73.10855962147774, + 23.873968530251844 + ], + [ + 73.22340230496141, + 24.068616265180296 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 24.068616265180296 + ], + [ + 73.10855962147774, + 23.873968530251844 + ], + [ + 73.33824498844508, + 23.873968530251844 + ], + [ + 73.22340230496141, + 24.068616265180296 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 24.068616265180296 + ], + [ + 73.33824498844508, + 23.873968530251844 + ], + [ + 73.45308767192877, + 24.068616265180296 + ], + [ + 73.22340230496141, + 24.068616265180296 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 24.4579117350372 + ], + [ + 73.45308767192877, + 24.4579117350372 + ], + [ + 73.33824498844508, + 24.652559469965652 + ], + [ + 73.22340230496141, + 24.4579117350372 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 24.4579117350372 + ], + [ + 73.33824498844508, + 24.652559469965652 + ], + [ + 73.10855962147774, + 24.652559469965652 + ], + [ + 73.22340230496141, + 24.4579117350372 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 24.4579117350372 + ], + [ + 73.10855962147774, + 24.652559469965652 + ], + [ + 72.99371693799405, + 24.4579117350372 + ], + [ + 73.22340230496141, + 24.4579117350372 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 24.4579117350372 + ], + [ + 72.99371693799405, + 24.4579117350372 + ], + [ + 73.10855962147774, + 24.263264000108748 + ], + [ + 73.22340230496141, + 24.4579117350372 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 24.4579117350372 + ], + [ + 73.10855962147774, + 24.263264000108748 + ], + [ + 73.33824498844508, + 24.263264000108748 + ], + [ + 73.22340230496141, + 24.4579117350372 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 24.4579117350372 + ], + [ + 73.33824498844508, + 24.263264000108748 + ], + [ + 73.45308767192877, + 24.4579117350372 + ], + [ + 73.22340230496141, + 24.4579117350372 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 24.847207204894108 + ], + [ + 73.45308767192877, + 24.847207204894108 + ], + [ + 73.33824498844508, + 25.04185493982256 + ], + [ + 73.22340230496141, + 24.847207204894108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 24.847207204894108 + ], + [ + 73.33824498844508, + 25.04185493982256 + ], + [ + 73.10855962147774, + 25.04185493982256 + ], + [ + 73.22340230496141, + 24.847207204894108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 24.847207204894108 + ], + [ + 73.10855962147774, + 25.04185493982256 + ], + [ + 72.99371693799405, + 24.847207204894108 + ], + [ + 73.22340230496141, + 24.847207204894108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 24.847207204894108 + ], + [ + 72.99371693799405, + 24.847207204894108 + ], + [ + 73.10855962147774, + 24.652559469965656 + ], + [ + 73.22340230496141, + 24.847207204894108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 24.847207204894108 + ], + [ + 73.10855962147774, + 24.652559469965656 + ], + [ + 73.33824498844508, + 24.652559469965656 + ], + [ + 73.22340230496141, + 24.847207204894108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 24.847207204894108 + ], + [ + 73.33824498844508, + 24.652559469965656 + ], + [ + 73.45308767192877, + 24.847207204894108 + ], + [ + 73.22340230496141, + 24.847207204894108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 25.236502674751016 + ], + [ + 73.45308767192877, + 25.236502674751016 + ], + [ + 73.33824498844508, + 25.431150409679468 + ], + [ + 73.22340230496141, + 25.236502674751016 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 25.236502674751016 + ], + [ + 73.33824498844508, + 25.431150409679468 + ], + [ + 73.10855962147774, + 25.431150409679468 + ], + [ + 73.22340230496141, + 25.236502674751016 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 25.236502674751016 + ], + [ + 73.10855962147774, + 25.431150409679468 + ], + [ + 72.99371693799405, + 25.236502674751016 + ], + [ + 73.22340230496141, + 25.236502674751016 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 25.236502674751016 + ], + [ + 72.99371693799405, + 25.236502674751016 + ], + [ + 73.10855962147774, + 25.041854939822564 + ], + [ + 73.22340230496141, + 25.236502674751016 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 25.236502674751016 + ], + [ + 73.10855962147774, + 25.041854939822564 + ], + [ + 73.33824498844508, + 25.041854939822564 + ], + [ + 73.22340230496141, + 25.236502674751016 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 25.236502674751016 + ], + [ + 73.33824498844508, + 25.041854939822564 + ], + [ + 73.45308767192877, + 25.236502674751016 + ], + [ + 73.22340230496141, + 25.236502674751016 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 25.62579814460792 + ], + [ + 73.45308767192877, + 25.62579814460792 + ], + [ + 73.33824498844508, + 25.820445879536372 + ], + [ + 73.22340230496141, + 25.62579814460792 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 25.62579814460792 + ], + [ + 73.33824498844508, + 25.820445879536372 + ], + [ + 73.10855962147774, + 25.820445879536372 + ], + [ + 73.22340230496141, + 25.62579814460792 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 25.62579814460792 + ], + [ + 73.10855962147774, + 25.820445879536372 + ], + [ + 72.99371693799405, + 25.62579814460792 + ], + [ + 73.22340230496141, + 25.62579814460792 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 25.62579814460792 + ], + [ + 72.99371693799405, + 25.62579814460792 + ], + [ + 73.10855962147774, + 25.431150409679468 + ], + [ + 73.22340230496141, + 25.62579814460792 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 25.62579814460792 + ], + [ + 73.10855962147774, + 25.431150409679468 + ], + [ + 73.33824498844508, + 25.431150409679468 + ], + [ + 73.22340230496141, + 25.62579814460792 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 25.62579814460792 + ], + [ + 73.33824498844508, + 25.431150409679468 + ], + [ + 73.45308767192877, + 25.62579814460792 + ], + [ + 73.22340230496141, + 25.62579814460792 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 26.015093614464828 + ], + [ + 73.45308767192877, + 26.015093614464828 + ], + [ + 73.33824498844508, + 26.20974134939328 + ], + [ + 73.22340230496141, + 26.015093614464828 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 26.015093614464828 + ], + [ + 73.33824498844508, + 26.20974134939328 + ], + [ + 73.10855962147774, + 26.20974134939328 + ], + [ + 73.22340230496141, + 26.015093614464828 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 26.015093614464828 + ], + [ + 73.10855962147774, + 26.20974134939328 + ], + [ + 72.99371693799405, + 26.015093614464828 + ], + [ + 73.22340230496141, + 26.015093614464828 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 26.015093614464828 + ], + [ + 72.99371693799405, + 26.015093614464828 + ], + [ + 73.10855962147774, + 25.820445879536376 + ], + [ + 73.22340230496141, + 26.015093614464828 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 26.015093614464828 + ], + [ + 73.10855962147774, + 25.820445879536376 + ], + [ + 73.33824498844508, + 25.820445879536376 + ], + [ + 73.22340230496141, + 26.015093614464828 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 26.015093614464828 + ], + [ + 73.33824498844508, + 25.820445879536376 + ], + [ + 73.45308767192877, + 26.015093614464828 + ], + [ + 73.22340230496141, + 26.015093614464828 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 26.404389084321735 + ], + [ + 73.45308767192877, + 26.404389084321735 + ], + [ + 73.33824498844508, + 26.599036819250188 + ], + [ + 73.22340230496141, + 26.404389084321735 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 26.404389084321735 + ], + [ + 73.33824498844508, + 26.599036819250188 + ], + [ + 73.10855962147774, + 26.599036819250188 + ], + [ + 73.22340230496141, + 26.404389084321735 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 26.404389084321735 + ], + [ + 73.10855962147774, + 26.599036819250188 + ], + [ + 72.99371693799405, + 26.404389084321735 + ], + [ + 73.22340230496141, + 26.404389084321735 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 26.404389084321735 + ], + [ + 72.99371693799405, + 26.404389084321735 + ], + [ + 73.10855962147774, + 26.209741349393283 + ], + [ + 73.22340230496141, + 26.404389084321735 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 26.404389084321735 + ], + [ + 73.10855962147774, + 26.209741349393283 + ], + [ + 73.33824498844508, + 26.209741349393283 + ], + [ + 73.22340230496141, + 26.404389084321735 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 26.404389084321735 + ], + [ + 73.33824498844508, + 26.209741349393283 + ], + [ + 73.45308767192877, + 26.404389084321735 + ], + [ + 73.22340230496141, + 26.404389084321735 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 26.79368455417864 + ], + [ + 73.45308767192877, + 26.79368455417864 + ], + [ + 73.33824498844508, + 26.988332289107092 + ], + [ + 73.22340230496141, + 26.79368455417864 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 26.79368455417864 + ], + [ + 73.33824498844508, + 26.988332289107092 + ], + [ + 73.10855962147774, + 26.988332289107092 + ], + [ + 73.22340230496141, + 26.79368455417864 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 26.79368455417864 + ], + [ + 73.10855962147774, + 26.988332289107092 + ], + [ + 72.99371693799405, + 26.79368455417864 + ], + [ + 73.22340230496141, + 26.79368455417864 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 26.79368455417864 + ], + [ + 72.99371693799405, + 26.79368455417864 + ], + [ + 73.10855962147774, + 26.599036819250188 + ], + [ + 73.22340230496141, + 26.79368455417864 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 26.79368455417864 + ], + [ + 73.10855962147774, + 26.599036819250188 + ], + [ + 73.33824498844508, + 26.599036819250188 + ], + [ + 73.22340230496141, + 26.79368455417864 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 26.79368455417864 + ], + [ + 73.33824498844508, + 26.599036819250188 + ], + [ + 73.45308767192877, + 26.79368455417864 + ], + [ + 73.22340230496141, + 26.79368455417864 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 27.182980024035547 + ], + [ + 73.45308767192877, + 27.182980024035547 + ], + [ + 73.33824498844508, + 27.377627758964 + ], + [ + 73.22340230496141, + 27.182980024035547 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 27.182980024035547 + ], + [ + 73.33824498844508, + 27.377627758964 + ], + [ + 73.10855962147774, + 27.377627758964 + ], + [ + 73.22340230496141, + 27.182980024035547 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 27.182980024035547 + ], + [ + 73.10855962147774, + 27.377627758964 + ], + [ + 72.99371693799405, + 27.182980024035547 + ], + [ + 73.22340230496141, + 27.182980024035547 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 27.182980024035547 + ], + [ + 72.99371693799405, + 27.182980024035547 + ], + [ + 73.10855962147774, + 26.988332289107095 + ], + [ + 73.22340230496141, + 27.182980024035547 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 27.182980024035547 + ], + [ + 73.10855962147774, + 26.988332289107095 + ], + [ + 73.33824498844508, + 26.988332289107095 + ], + [ + 73.22340230496141, + 27.182980024035547 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 27.182980024035547 + ], + [ + 73.33824498844508, + 26.988332289107095 + ], + [ + 73.45308767192877, + 27.182980024035547 + ], + [ + 73.22340230496141, + 27.182980024035547 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 27.572275493892455 + ], + [ + 73.45308767192877, + 27.572275493892455 + ], + [ + 73.33824498844508, + 27.766923228820907 + ], + [ + 73.22340230496141, + 27.572275493892455 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 27.572275493892455 + ], + [ + 73.33824498844508, + 27.766923228820907 + ], + [ + 73.10855962147774, + 27.766923228820907 + ], + [ + 73.22340230496141, + 27.572275493892455 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 27.572275493892455 + ], + [ + 73.10855962147774, + 27.766923228820907 + ], + [ + 72.99371693799405, + 27.572275493892455 + ], + [ + 73.22340230496141, + 27.572275493892455 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 27.572275493892455 + ], + [ + 72.99371693799405, + 27.572275493892455 + ], + [ + 73.10855962147774, + 27.377627758964003 + ], + [ + 73.22340230496141, + 27.572275493892455 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 27.572275493892455 + ], + [ + 73.10855962147774, + 27.377627758964003 + ], + [ + 73.33824498844508, + 27.377627758964003 + ], + [ + 73.22340230496141, + 27.572275493892455 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 27.572275493892455 + ], + [ + 73.33824498844508, + 27.377627758964003 + ], + [ + 73.45308767192877, + 27.572275493892455 + ], + [ + 73.22340230496141, + 27.572275493892455 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 27.96157096374936 + ], + [ + 73.45308767192877, + 27.96157096374936 + ], + [ + 73.33824498844508, + 28.15621869867781 + ], + [ + 73.22340230496141, + 27.96157096374936 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 27.96157096374936 + ], + [ + 73.33824498844508, + 28.15621869867781 + ], + [ + 73.10855962147774, + 28.15621869867781 + ], + [ + 73.22340230496141, + 27.96157096374936 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 27.96157096374936 + ], + [ + 73.10855962147774, + 28.15621869867781 + ], + [ + 72.99371693799405, + 27.96157096374936 + ], + [ + 73.22340230496141, + 27.96157096374936 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 27.96157096374936 + ], + [ + 72.99371693799405, + 27.96157096374936 + ], + [ + 73.10855962147774, + 27.766923228820907 + ], + [ + 73.22340230496141, + 27.96157096374936 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 27.96157096374936 + ], + [ + 73.10855962147774, + 27.766923228820907 + ], + [ + 73.33824498844508, + 27.766923228820907 + ], + [ + 73.22340230496141, + 27.96157096374936 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 27.96157096374936 + ], + [ + 73.33824498844508, + 27.766923228820907 + ], + [ + 73.45308767192877, + 27.96157096374936 + ], + [ + 73.22340230496141, + 27.96157096374936 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 28.350866433606267 + ], + [ + 73.45308767192877, + 28.350866433606267 + ], + [ + 73.33824498844508, + 28.54551416853472 + ], + [ + 73.22340230496141, + 28.350866433606267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 28.350866433606267 + ], + [ + 73.33824498844508, + 28.54551416853472 + ], + [ + 73.10855962147774, + 28.54551416853472 + ], + [ + 73.22340230496141, + 28.350866433606267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 28.350866433606267 + ], + [ + 73.10855962147774, + 28.54551416853472 + ], + [ + 72.99371693799405, + 28.350866433606267 + ], + [ + 73.22340230496141, + 28.350866433606267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 28.350866433606267 + ], + [ + 72.99371693799405, + 28.350866433606267 + ], + [ + 73.10855962147774, + 28.156218698677815 + ], + [ + 73.22340230496141, + 28.350866433606267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 28.350866433606267 + ], + [ + 73.10855962147774, + 28.156218698677815 + ], + [ + 73.33824498844508, + 28.156218698677815 + ], + [ + 73.22340230496141, + 28.350866433606267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 28.350866433606267 + ], + [ + 73.33824498844508, + 28.156218698677815 + ], + [ + 73.45308767192877, + 28.350866433606267 + ], + [ + 73.22340230496141, + 28.350866433606267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 28.74016190346317 + ], + [ + 73.45308767192877, + 28.74016190346317 + ], + [ + 73.33824498844508, + 28.934809638391624 + ], + [ + 73.22340230496141, + 28.74016190346317 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 28.74016190346317 + ], + [ + 73.33824498844508, + 28.934809638391624 + ], + [ + 73.10855962147774, + 28.934809638391624 + ], + [ + 73.22340230496141, + 28.74016190346317 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 28.74016190346317 + ], + [ + 73.10855962147774, + 28.934809638391624 + ], + [ + 72.99371693799405, + 28.74016190346317 + ], + [ + 73.22340230496141, + 28.74016190346317 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 28.74016190346317 + ], + [ + 72.99371693799405, + 28.74016190346317 + ], + [ + 73.10855962147774, + 28.54551416853472 + ], + [ + 73.22340230496141, + 28.74016190346317 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 28.74016190346317 + ], + [ + 73.10855962147774, + 28.54551416853472 + ], + [ + 73.33824498844508, + 28.54551416853472 + ], + [ + 73.22340230496141, + 28.74016190346317 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 28.74016190346317 + ], + [ + 73.33824498844508, + 28.54551416853472 + ], + [ + 73.45308767192877, + 28.74016190346317 + ], + [ + 73.22340230496141, + 28.74016190346317 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 29.12945737332008 + ], + [ + 73.45308767192877, + 29.12945737332008 + ], + [ + 73.33824498844508, + 29.32410510824853 + ], + [ + 73.22340230496141, + 29.12945737332008 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 29.12945737332008 + ], + [ + 73.33824498844508, + 29.32410510824853 + ], + [ + 73.10855962147774, + 29.32410510824853 + ], + [ + 73.22340230496141, + 29.12945737332008 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 29.12945737332008 + ], + [ + 73.10855962147774, + 29.32410510824853 + ], + [ + 72.99371693799405, + 29.12945737332008 + ], + [ + 73.22340230496141, + 29.12945737332008 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 29.12945737332008 + ], + [ + 72.99371693799405, + 29.12945737332008 + ], + [ + 73.10855962147774, + 28.934809638391627 + ], + [ + 73.22340230496141, + 29.12945737332008 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 29.12945737332008 + ], + [ + 73.10855962147774, + 28.934809638391627 + ], + [ + 73.33824498844508, + 28.934809638391627 + ], + [ + 73.22340230496141, + 29.12945737332008 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 29.12945737332008 + ], + [ + 73.33824498844508, + 28.934809638391627 + ], + [ + 73.45308767192877, + 29.12945737332008 + ], + [ + 73.22340230496141, + 29.12945737332008 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 29.518752843176983 + ], + [ + 73.45308767192877, + 29.518752843176983 + ], + [ + 73.33824498844508, + 29.713400578105436 + ], + [ + 73.22340230496141, + 29.518752843176983 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 29.518752843176983 + ], + [ + 73.33824498844508, + 29.713400578105436 + ], + [ + 73.10855962147774, + 29.713400578105436 + ], + [ + 73.22340230496141, + 29.518752843176983 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 29.518752843176983 + ], + [ + 73.10855962147774, + 29.713400578105436 + ], + [ + 72.99371693799405, + 29.518752843176983 + ], + [ + 73.22340230496141, + 29.518752843176983 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 29.518752843176983 + ], + [ + 72.99371693799405, + 29.518752843176983 + ], + [ + 73.10855962147774, + 29.32410510824853 + ], + [ + 73.22340230496141, + 29.518752843176983 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 29.518752843176983 + ], + [ + 73.10855962147774, + 29.32410510824853 + ], + [ + 73.33824498844508, + 29.32410510824853 + ], + [ + 73.22340230496141, + 29.518752843176983 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 29.518752843176983 + ], + [ + 73.33824498844508, + 29.32410510824853 + ], + [ + 73.45308767192877, + 29.518752843176983 + ], + [ + 73.22340230496141, + 29.518752843176983 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 29.90804831303389 + ], + [ + 73.45308767192877, + 29.90804831303389 + ], + [ + 73.33824498844508, + 30.102696047962343 + ], + [ + 73.22340230496141, + 29.90804831303389 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 29.90804831303389 + ], + [ + 73.33824498844508, + 30.102696047962343 + ], + [ + 73.10855962147774, + 30.102696047962343 + ], + [ + 73.22340230496141, + 29.90804831303389 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 29.90804831303389 + ], + [ + 73.10855962147774, + 30.102696047962343 + ], + [ + 72.99371693799405, + 29.90804831303389 + ], + [ + 73.22340230496141, + 29.90804831303389 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 29.90804831303389 + ], + [ + 72.99371693799405, + 29.90804831303389 + ], + [ + 73.10855962147774, + 29.71340057810544 + ], + [ + 73.22340230496141, + 29.90804831303389 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 29.90804831303389 + ], + [ + 73.10855962147774, + 29.71340057810544 + ], + [ + 73.33824498844508, + 29.71340057810544 + ], + [ + 73.22340230496141, + 29.90804831303389 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 29.90804831303389 + ], + [ + 73.33824498844508, + 29.71340057810544 + ], + [ + 73.45308767192877, + 29.90804831303389 + ], + [ + 73.22340230496141, + 29.90804831303389 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 30.297343782890795 + ], + [ + 73.45308767192877, + 30.297343782890795 + ], + [ + 73.33824498844508, + 30.491991517819248 + ], + [ + 73.22340230496141, + 30.297343782890795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 30.297343782890795 + ], + [ + 73.33824498844508, + 30.491991517819248 + ], + [ + 73.10855962147774, + 30.491991517819248 + ], + [ + 73.22340230496141, + 30.297343782890795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 30.297343782890795 + ], + [ + 73.10855962147774, + 30.491991517819248 + ], + [ + 72.99371693799405, + 30.297343782890795 + ], + [ + 73.22340230496141, + 30.297343782890795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 30.297343782890795 + ], + [ + 72.99371693799405, + 30.297343782890795 + ], + [ + 73.10855962147774, + 30.102696047962343 + ], + [ + 73.22340230496141, + 30.297343782890795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 30.297343782890795 + ], + [ + 73.10855962147774, + 30.102696047962343 + ], + [ + 73.33824498844508, + 30.102696047962343 + ], + [ + 73.22340230496141, + 30.297343782890795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 30.297343782890795 + ], + [ + 73.33824498844508, + 30.102696047962343 + ], + [ + 73.45308767192877, + 30.297343782890795 + ], + [ + 73.22340230496141, + 30.297343782890795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 30.686639252747703 + ], + [ + 73.45308767192877, + 30.686639252747703 + ], + [ + 73.33824498844508, + 30.881286987676155 + ], + [ + 73.22340230496141, + 30.686639252747703 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 30.686639252747703 + ], + [ + 73.33824498844508, + 30.881286987676155 + ], + [ + 73.10855962147774, + 30.881286987676155 + ], + [ + 73.22340230496141, + 30.686639252747703 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 30.686639252747703 + ], + [ + 73.10855962147774, + 30.881286987676155 + ], + [ + 72.99371693799405, + 30.686639252747703 + ], + [ + 73.22340230496141, + 30.686639252747703 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 30.686639252747703 + ], + [ + 72.99371693799405, + 30.686639252747703 + ], + [ + 73.10855962147774, + 30.49199151781925 + ], + [ + 73.22340230496141, + 30.686639252747703 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 30.686639252747703 + ], + [ + 73.10855962147774, + 30.49199151781925 + ], + [ + 73.33824498844508, + 30.49199151781925 + ], + [ + 73.22340230496141, + 30.686639252747703 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 30.686639252747703 + ], + [ + 73.33824498844508, + 30.49199151781925 + ], + [ + 73.45308767192877, + 30.686639252747703 + ], + [ + 73.22340230496141, + 30.686639252747703 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 31.07593472260461 + ], + [ + 73.45308767192877, + 31.07593472260461 + ], + [ + 73.33824498844508, + 31.270582457533063 + ], + [ + 73.22340230496141, + 31.07593472260461 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 31.07593472260461 + ], + [ + 73.33824498844508, + 31.270582457533063 + ], + [ + 73.10855962147774, + 31.270582457533063 + ], + [ + 73.22340230496141, + 31.07593472260461 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 31.07593472260461 + ], + [ + 73.10855962147774, + 31.270582457533063 + ], + [ + 72.99371693799405, + 31.07593472260461 + ], + [ + 73.22340230496141, + 31.07593472260461 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 31.07593472260461 + ], + [ + 72.99371693799405, + 31.07593472260461 + ], + [ + 73.10855962147774, + 30.88128698767616 + ], + [ + 73.22340230496141, + 31.07593472260461 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 31.07593472260461 + ], + [ + 73.10855962147774, + 30.88128698767616 + ], + [ + 73.33824498844508, + 30.88128698767616 + ], + [ + 73.22340230496141, + 31.07593472260461 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 31.07593472260461 + ], + [ + 73.33824498844508, + 30.88128698767616 + ], + [ + 73.45308767192877, + 31.07593472260461 + ], + [ + 73.22340230496141, + 31.07593472260461 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 31.465230192461515 + ], + [ + 73.45308767192877, + 31.465230192461515 + ], + [ + 73.33824498844508, + 31.659877927389967 + ], + [ + 73.22340230496141, + 31.465230192461515 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 31.465230192461515 + ], + [ + 73.33824498844508, + 31.659877927389967 + ], + [ + 73.10855962147774, + 31.659877927389967 + ], + [ + 73.22340230496141, + 31.465230192461515 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 31.465230192461515 + ], + [ + 73.10855962147774, + 31.659877927389967 + ], + [ + 72.99371693799405, + 31.465230192461515 + ], + [ + 73.22340230496141, + 31.465230192461515 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 31.465230192461515 + ], + [ + 72.99371693799405, + 31.465230192461515 + ], + [ + 73.10855962147774, + 31.270582457533063 + ], + [ + 73.22340230496141, + 31.465230192461515 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 31.465230192461515 + ], + [ + 73.10855962147774, + 31.270582457533063 + ], + [ + 73.33824498844508, + 31.270582457533063 + ], + [ + 73.22340230496141, + 31.465230192461515 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 31.465230192461515 + ], + [ + 73.33824498844508, + 31.270582457533063 + ], + [ + 73.45308767192877, + 31.465230192461515 + ], + [ + 73.22340230496141, + 31.465230192461515 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 31.854525662318423 + ], + [ + 73.45308767192877, + 31.854525662318423 + ], + [ + 73.33824498844508, + 32.049173397246875 + ], + [ + 73.22340230496141, + 31.854525662318423 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 31.854525662318423 + ], + [ + 73.33824498844508, + 32.049173397246875 + ], + [ + 73.10855962147774, + 32.049173397246875 + ], + [ + 73.22340230496141, + 31.854525662318423 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 31.854525662318423 + ], + [ + 73.10855962147774, + 32.049173397246875 + ], + [ + 72.99371693799405, + 31.854525662318423 + ], + [ + 73.22340230496141, + 31.854525662318423 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 31.854525662318423 + ], + [ + 72.99371693799405, + 31.854525662318423 + ], + [ + 73.10855962147774, + 31.65987792738997 + ], + [ + 73.22340230496141, + 31.854525662318423 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 31.854525662318423 + ], + [ + 73.10855962147774, + 31.65987792738997 + ], + [ + 73.33824498844508, + 31.65987792738997 + ], + [ + 73.22340230496141, + 31.854525662318423 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 31.854525662318423 + ], + [ + 73.33824498844508, + 31.65987792738997 + ], + [ + 73.45308767192877, + 31.854525662318423 + ], + [ + 73.22340230496141, + 31.854525662318423 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 32.24382113217533 + ], + [ + 73.45308767192877, + 32.24382113217533 + ], + [ + 73.33824498844508, + 32.43846886710378 + ], + [ + 73.22340230496141, + 32.24382113217533 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 32.24382113217533 + ], + [ + 73.33824498844508, + 32.43846886710378 + ], + [ + 73.10855962147774, + 32.43846886710378 + ], + [ + 73.22340230496141, + 32.24382113217533 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 32.24382113217533 + ], + [ + 73.10855962147774, + 32.43846886710378 + ], + [ + 72.99371693799405, + 32.24382113217533 + ], + [ + 73.22340230496141, + 32.24382113217533 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 32.24382113217533 + ], + [ + 72.99371693799405, + 32.24382113217533 + ], + [ + 73.10855962147774, + 32.049173397246875 + ], + [ + 73.22340230496141, + 32.24382113217533 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 32.24382113217533 + ], + [ + 73.10855962147774, + 32.049173397246875 + ], + [ + 73.33824498844508, + 32.049173397246875 + ], + [ + 73.22340230496141, + 32.24382113217533 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 32.24382113217533 + ], + [ + 73.33824498844508, + 32.049173397246875 + ], + [ + 73.45308767192877, + 32.24382113217533 + ], + [ + 73.22340230496141, + 32.24382113217533 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 32.63311660203224 + ], + [ + 73.45308767192877, + 32.63311660203224 + ], + [ + 73.33824498844508, + 32.82776433696069 + ], + [ + 73.22340230496141, + 32.63311660203224 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 32.63311660203224 + ], + [ + 73.33824498844508, + 32.82776433696069 + ], + [ + 73.10855962147774, + 32.82776433696069 + ], + [ + 73.22340230496141, + 32.63311660203224 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 32.63311660203224 + ], + [ + 73.10855962147774, + 32.82776433696069 + ], + [ + 72.99371693799405, + 32.63311660203224 + ], + [ + 73.22340230496141, + 32.63311660203224 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 32.63311660203224 + ], + [ + 72.99371693799405, + 32.63311660203224 + ], + [ + 73.10855962147774, + 32.438468867103786 + ], + [ + 73.22340230496141, + 32.63311660203224 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 32.63311660203224 + ], + [ + 73.10855962147774, + 32.438468867103786 + ], + [ + 73.33824498844508, + 32.438468867103786 + ], + [ + 73.22340230496141, + 32.63311660203224 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 32.63311660203224 + ], + [ + 73.33824498844508, + 32.438468867103786 + ], + [ + 73.45308767192877, + 32.63311660203224 + ], + [ + 73.22340230496141, + 32.63311660203224 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 33.02241207188914 + ], + [ + 73.45308767192877, + 33.02241207188914 + ], + [ + 73.33824498844508, + 33.217059806817595 + ], + [ + 73.22340230496141, + 33.02241207188914 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 33.02241207188914 + ], + [ + 73.33824498844508, + 33.217059806817595 + ], + [ + 73.10855962147774, + 33.217059806817595 + ], + [ + 73.22340230496141, + 33.02241207188914 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 33.02241207188914 + ], + [ + 73.10855962147774, + 33.217059806817595 + ], + [ + 72.99371693799405, + 33.02241207188914 + ], + [ + 73.22340230496141, + 33.02241207188914 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 33.02241207188914 + ], + [ + 72.99371693799405, + 33.02241207188914 + ], + [ + 73.10855962147774, + 32.82776433696069 + ], + [ + 73.22340230496141, + 33.02241207188914 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 33.02241207188914 + ], + [ + 73.10855962147774, + 32.82776433696069 + ], + [ + 73.33824498844508, + 32.82776433696069 + ], + [ + 73.22340230496141, + 33.02241207188914 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 33.02241207188914 + ], + [ + 73.33824498844508, + 32.82776433696069 + ], + [ + 73.45308767192877, + 33.02241207188914 + ], + [ + 73.22340230496141, + 33.02241207188914 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 33.41170754174605 + ], + [ + 73.45308767192877, + 33.41170754174605 + ], + [ + 73.33824498844508, + 33.6063552766745 + ], + [ + 73.22340230496141, + 33.41170754174605 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 33.41170754174605 + ], + [ + 73.33824498844508, + 33.6063552766745 + ], + [ + 73.10855962147774, + 33.6063552766745 + ], + [ + 73.22340230496141, + 33.41170754174605 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 33.41170754174605 + ], + [ + 73.10855962147774, + 33.6063552766745 + ], + [ + 72.99371693799405, + 33.41170754174605 + ], + [ + 73.22340230496141, + 33.41170754174605 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 33.41170754174605 + ], + [ + 72.99371693799405, + 33.41170754174605 + ], + [ + 73.10855962147774, + 33.217059806817595 + ], + [ + 73.22340230496141, + 33.41170754174605 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 33.41170754174605 + ], + [ + 73.10855962147774, + 33.217059806817595 + ], + [ + 73.33824498844508, + 33.217059806817595 + ], + [ + 73.22340230496141, + 33.41170754174605 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 33.41170754174605 + ], + [ + 73.33824498844508, + 33.217059806817595 + ], + [ + 73.45308767192877, + 33.41170754174605 + ], + [ + 73.22340230496141, + 33.41170754174605 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 33.80100301160295 + ], + [ + 73.45308767192877, + 33.80100301160295 + ], + [ + 73.33824498844508, + 33.9956507465314 + ], + [ + 73.22340230496141, + 33.80100301160295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 33.80100301160295 + ], + [ + 73.33824498844508, + 33.9956507465314 + ], + [ + 73.10855962147774, + 33.9956507465314 + ], + [ + 73.22340230496141, + 33.80100301160295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 33.80100301160295 + ], + [ + 73.10855962147774, + 33.9956507465314 + ], + [ + 72.99371693799405, + 33.80100301160295 + ], + [ + 73.22340230496141, + 33.80100301160295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 33.80100301160295 + ], + [ + 72.99371693799405, + 33.80100301160295 + ], + [ + 73.10855962147774, + 33.6063552766745 + ], + [ + 73.22340230496141, + 33.80100301160295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 33.80100301160295 + ], + [ + 73.10855962147774, + 33.6063552766745 + ], + [ + 73.33824498844508, + 33.6063552766745 + ], + [ + 73.22340230496141, + 33.80100301160295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 33.80100301160295 + ], + [ + 73.33824498844508, + 33.6063552766745 + ], + [ + 73.45308767192877, + 33.80100301160295 + ], + [ + 73.22340230496141, + 33.80100301160295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 34.190298481459855 + ], + [ + 73.45308767192877, + 34.190298481459855 + ], + [ + 73.33824498844508, + 34.38494621638831 + ], + [ + 73.22340230496141, + 34.190298481459855 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 34.190298481459855 + ], + [ + 73.33824498844508, + 34.38494621638831 + ], + [ + 73.10855962147774, + 34.38494621638831 + ], + [ + 73.22340230496141, + 34.190298481459855 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 34.190298481459855 + ], + [ + 73.10855962147774, + 34.38494621638831 + ], + [ + 72.99371693799405, + 34.190298481459855 + ], + [ + 73.22340230496141, + 34.190298481459855 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 34.190298481459855 + ], + [ + 72.99371693799405, + 34.190298481459855 + ], + [ + 73.10855962147774, + 33.9956507465314 + ], + [ + 73.22340230496141, + 34.190298481459855 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 34.190298481459855 + ], + [ + 73.10855962147774, + 33.9956507465314 + ], + [ + 73.33824498844508, + 33.9956507465314 + ], + [ + 73.22340230496141, + 34.190298481459855 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 34.190298481459855 + ], + [ + 73.33824498844508, + 33.9956507465314 + ], + [ + 73.45308767192877, + 34.190298481459855 + ], + [ + 73.22340230496141, + 34.190298481459855 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 34.57959395131677 + ], + [ + 73.45308767192877, + 34.57959395131677 + ], + [ + 73.33824498844508, + 34.77424168624522 + ], + [ + 73.22340230496141, + 34.57959395131677 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 34.57959395131677 + ], + [ + 73.33824498844508, + 34.77424168624522 + ], + [ + 73.10855962147774, + 34.77424168624522 + ], + [ + 73.22340230496141, + 34.57959395131677 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 34.57959395131677 + ], + [ + 73.10855962147774, + 34.77424168624522 + ], + [ + 72.99371693799405, + 34.57959395131677 + ], + [ + 73.22340230496141, + 34.57959395131677 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 34.57959395131677 + ], + [ + 72.99371693799405, + 34.57959395131677 + ], + [ + 73.10855962147774, + 34.384946216388315 + ], + [ + 73.22340230496141, + 34.57959395131677 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 34.57959395131677 + ], + [ + 73.10855962147774, + 34.384946216388315 + ], + [ + 73.33824498844508, + 34.384946216388315 + ], + [ + 73.22340230496141, + 34.57959395131677 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 34.57959395131677 + ], + [ + 73.33824498844508, + 34.384946216388315 + ], + [ + 73.45308767192877, + 34.57959395131677 + ], + [ + 73.22340230496141, + 34.57959395131677 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 34.96888942117368 + ], + [ + 73.45308767192877, + 34.96888942117368 + ], + [ + 73.33824498844508, + 35.16353715610213 + ], + [ + 73.22340230496141, + 34.96888942117368 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 34.96888942117368 + ], + [ + 73.33824498844508, + 35.16353715610213 + ], + [ + 73.10855962147774, + 35.16353715610213 + ], + [ + 73.22340230496141, + 34.96888942117368 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 34.96888942117368 + ], + [ + 73.10855962147774, + 35.16353715610213 + ], + [ + 72.99371693799405, + 34.96888942117368 + ], + [ + 73.22340230496141, + 34.96888942117368 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 34.96888942117368 + ], + [ + 72.99371693799405, + 34.96888942117368 + ], + [ + 73.10855962147774, + 34.774241686245226 + ], + [ + 73.22340230496141, + 34.96888942117368 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 34.96888942117368 + ], + [ + 73.10855962147774, + 34.774241686245226 + ], + [ + 73.33824498844508, + 34.774241686245226 + ], + [ + 73.22340230496141, + 34.96888942117368 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 34.96888942117368 + ], + [ + 73.33824498844508, + 34.774241686245226 + ], + [ + 73.45308767192877, + 34.96888942117368 + ], + [ + 73.22340230496141, + 34.96888942117368 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 35.35818489103058 + ], + [ + 73.45308767192877, + 35.35818489103058 + ], + [ + 73.33824498844508, + 35.552832625959034 + ], + [ + 73.22340230496141, + 35.35818489103058 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 35.35818489103058 + ], + [ + 73.33824498844508, + 35.552832625959034 + ], + [ + 73.10855962147774, + 35.552832625959034 + ], + [ + 73.22340230496141, + 35.35818489103058 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 35.35818489103058 + ], + [ + 73.10855962147774, + 35.552832625959034 + ], + [ + 72.99371693799405, + 35.35818489103058 + ], + [ + 73.22340230496141, + 35.35818489103058 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 35.35818489103058 + ], + [ + 72.99371693799405, + 35.35818489103058 + ], + [ + 73.10855962147774, + 35.16353715610213 + ], + [ + 73.22340230496141, + 35.35818489103058 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 35.35818489103058 + ], + [ + 73.10855962147774, + 35.16353715610213 + ], + [ + 73.33824498844508, + 35.16353715610213 + ], + [ + 73.22340230496141, + 35.35818489103058 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 35.35818489103058 + ], + [ + 73.33824498844508, + 35.16353715610213 + ], + [ + 73.45308767192877, + 35.35818489103058 + ], + [ + 73.22340230496141, + 35.35818489103058 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 35.74748036088749 + ], + [ + 73.45308767192877, + 35.74748036088749 + ], + [ + 73.33824498844508, + 35.94212809581594 + ], + [ + 73.22340230496141, + 35.74748036088749 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 35.74748036088749 + ], + [ + 73.33824498844508, + 35.94212809581594 + ], + [ + 73.10855962147774, + 35.94212809581594 + ], + [ + 73.22340230496141, + 35.74748036088749 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 35.74748036088749 + ], + [ + 73.10855962147774, + 35.94212809581594 + ], + [ + 72.99371693799405, + 35.74748036088749 + ], + [ + 73.22340230496141, + 35.74748036088749 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 35.74748036088749 + ], + [ + 72.99371693799405, + 35.74748036088749 + ], + [ + 73.10855962147774, + 35.552832625959034 + ], + [ + 73.22340230496141, + 35.74748036088749 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 35.74748036088749 + ], + [ + 73.10855962147774, + 35.552832625959034 + ], + [ + 73.33824498844508, + 35.552832625959034 + ], + [ + 73.22340230496141, + 35.74748036088749 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 35.74748036088749 + ], + [ + 73.33824498844508, + 35.552832625959034 + ], + [ + 73.45308767192877, + 35.74748036088749 + ], + [ + 73.22340230496141, + 35.74748036088749 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 36.13677583074439 + ], + [ + 73.45308767192877, + 36.13677583074439 + ], + [ + 73.33824498844508, + 36.33142356567284 + ], + [ + 73.22340230496141, + 36.13677583074439 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 36.13677583074439 + ], + [ + 73.33824498844508, + 36.33142356567284 + ], + [ + 73.10855962147774, + 36.33142356567284 + ], + [ + 73.22340230496141, + 36.13677583074439 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 36.13677583074439 + ], + [ + 73.10855962147774, + 36.33142356567284 + ], + [ + 72.99371693799405, + 36.13677583074439 + ], + [ + 73.22340230496141, + 36.13677583074439 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 36.13677583074439 + ], + [ + 72.99371693799405, + 36.13677583074439 + ], + [ + 73.10855962147774, + 35.94212809581594 + ], + [ + 73.22340230496141, + 36.13677583074439 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 36.13677583074439 + ], + [ + 73.10855962147774, + 35.94212809581594 + ], + [ + 73.33824498844508, + 35.94212809581594 + ], + [ + 73.22340230496141, + 36.13677583074439 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 36.13677583074439 + ], + [ + 73.33824498844508, + 35.94212809581594 + ], + [ + 73.45308767192877, + 36.13677583074439 + ], + [ + 73.22340230496141, + 36.13677583074439 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 36.526071300601295 + ], + [ + 73.45308767192877, + 36.526071300601295 + ], + [ + 73.33824498844508, + 36.72071903552975 + ], + [ + 73.22340230496141, + 36.526071300601295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 36.526071300601295 + ], + [ + 73.33824498844508, + 36.72071903552975 + ], + [ + 73.10855962147774, + 36.72071903552975 + ], + [ + 73.22340230496141, + 36.526071300601295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 36.526071300601295 + ], + [ + 73.10855962147774, + 36.72071903552975 + ], + [ + 72.99371693799405, + 36.526071300601295 + ], + [ + 73.22340230496141, + 36.526071300601295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 36.526071300601295 + ], + [ + 72.99371693799405, + 36.526071300601295 + ], + [ + 73.10855962147774, + 36.33142356567284 + ], + [ + 73.22340230496141, + 36.526071300601295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 36.526071300601295 + ], + [ + 73.10855962147774, + 36.33142356567284 + ], + [ + 73.33824498844508, + 36.33142356567284 + ], + [ + 73.22340230496141, + 36.526071300601295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 36.526071300601295 + ], + [ + 73.33824498844508, + 36.33142356567284 + ], + [ + 73.45308767192877, + 36.526071300601295 + ], + [ + 73.22340230496141, + 36.526071300601295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 36.915366770458206 + ], + [ + 73.45308767192877, + 36.915366770458206 + ], + [ + 73.33824498844508, + 37.11001450538666 + ], + [ + 73.22340230496141, + 36.915366770458206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 36.915366770458206 + ], + [ + 73.33824498844508, + 37.11001450538666 + ], + [ + 73.10855962147774, + 37.11001450538666 + ], + [ + 73.22340230496141, + 36.915366770458206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 36.915366770458206 + ], + [ + 73.10855962147774, + 37.11001450538666 + ], + [ + 72.99371693799405, + 36.915366770458206 + ], + [ + 73.22340230496141, + 36.915366770458206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 36.915366770458206 + ], + [ + 72.99371693799405, + 36.915366770458206 + ], + [ + 73.10855962147774, + 36.720719035529754 + ], + [ + 73.22340230496141, + 36.915366770458206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 36.915366770458206 + ], + [ + 73.10855962147774, + 36.720719035529754 + ], + [ + 73.33824498844508, + 36.720719035529754 + ], + [ + 73.22340230496141, + 36.915366770458206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 36.915366770458206 + ], + [ + 73.33824498844508, + 36.720719035529754 + ], + [ + 73.45308767192877, + 36.915366770458206 + ], + [ + 73.22340230496141, + 36.915366770458206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 37.30466224031511 + ], + [ + 73.45308767192877, + 37.30466224031511 + ], + [ + 73.33824498844508, + 37.49930997524356 + ], + [ + 73.22340230496141, + 37.30466224031511 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 37.30466224031511 + ], + [ + 73.33824498844508, + 37.49930997524356 + ], + [ + 73.10855962147774, + 37.49930997524356 + ], + [ + 73.22340230496141, + 37.30466224031511 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 37.30466224031511 + ], + [ + 73.10855962147774, + 37.49930997524356 + ], + [ + 72.99371693799405, + 37.30466224031511 + ], + [ + 73.22340230496141, + 37.30466224031511 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 37.30466224031511 + ], + [ + 72.99371693799405, + 37.30466224031511 + ], + [ + 73.10855962147774, + 37.11001450538666 + ], + [ + 73.22340230496141, + 37.30466224031511 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 37.30466224031511 + ], + [ + 73.10855962147774, + 37.11001450538666 + ], + [ + 73.33824498844508, + 37.11001450538666 + ], + [ + 73.22340230496141, + 37.30466224031511 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 37.30466224031511 + ], + [ + 73.33824498844508, + 37.11001450538666 + ], + [ + 73.45308767192877, + 37.30466224031511 + ], + [ + 73.22340230496141, + 37.30466224031511 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 37.69395771017202 + ], + [ + 73.45308767192877, + 37.69395771017202 + ], + [ + 73.33824498844508, + 37.888605445100474 + ], + [ + 73.22340230496141, + 37.69395771017202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 37.69395771017202 + ], + [ + 73.33824498844508, + 37.888605445100474 + ], + [ + 73.10855962147774, + 37.888605445100474 + ], + [ + 73.22340230496141, + 37.69395771017202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 37.69395771017202 + ], + [ + 73.10855962147774, + 37.888605445100474 + ], + [ + 72.99371693799405, + 37.69395771017202 + ], + [ + 73.22340230496141, + 37.69395771017202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 37.69395771017202 + ], + [ + 72.99371693799405, + 37.69395771017202 + ], + [ + 73.10855962147774, + 37.49930997524357 + ], + [ + 73.22340230496141, + 37.69395771017202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 37.69395771017202 + ], + [ + 73.10855962147774, + 37.49930997524357 + ], + [ + 73.33824498844508, + 37.49930997524357 + ], + [ + 73.22340230496141, + 37.69395771017202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 37.69395771017202 + ], + [ + 73.33824498844508, + 37.49930997524357 + ], + [ + 73.45308767192877, + 37.69395771017202 + ], + [ + 73.22340230496141, + 37.69395771017202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 38.083253180028926 + ], + [ + 73.45308767192877, + 38.083253180028926 + ], + [ + 73.33824498844508, + 38.27790091495738 + ], + [ + 73.22340230496141, + 38.083253180028926 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 38.083253180028926 + ], + [ + 73.33824498844508, + 38.27790091495738 + ], + [ + 73.10855962147774, + 38.27790091495738 + ], + [ + 73.22340230496141, + 38.083253180028926 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 38.083253180028926 + ], + [ + 73.10855962147774, + 38.27790091495738 + ], + [ + 72.99371693799405, + 38.083253180028926 + ], + [ + 73.22340230496141, + 38.083253180028926 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 38.083253180028926 + ], + [ + 72.99371693799405, + 38.083253180028926 + ], + [ + 73.10855962147774, + 37.888605445100474 + ], + [ + 73.22340230496141, + 38.083253180028926 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 38.083253180028926 + ], + [ + 73.10855962147774, + 37.888605445100474 + ], + [ + 73.33824498844508, + 37.888605445100474 + ], + [ + 73.22340230496141, + 38.083253180028926 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 38.083253180028926 + ], + [ + 73.33824498844508, + 37.888605445100474 + ], + [ + 73.45308767192877, + 38.083253180028926 + ], + [ + 73.22340230496141, + 38.083253180028926 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 38.47254864988583 + ], + [ + 73.45308767192877, + 38.47254864988583 + ], + [ + 73.33824498844508, + 38.66719638481428 + ], + [ + 73.22340230496141, + 38.47254864988583 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 38.47254864988583 + ], + [ + 73.33824498844508, + 38.66719638481428 + ], + [ + 73.10855962147774, + 38.66719638481428 + ], + [ + 73.22340230496141, + 38.47254864988583 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 38.47254864988583 + ], + [ + 73.10855962147774, + 38.66719638481428 + ], + [ + 72.99371693799405, + 38.47254864988583 + ], + [ + 73.22340230496141, + 38.47254864988583 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 38.47254864988583 + ], + [ + 72.99371693799405, + 38.47254864988583 + ], + [ + 73.10855962147774, + 38.27790091495738 + ], + [ + 73.22340230496141, + 38.47254864988583 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 38.47254864988583 + ], + [ + 73.10855962147774, + 38.27790091495738 + ], + [ + 73.33824498844508, + 38.27790091495738 + ], + [ + 73.22340230496141, + 38.47254864988583 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 38.47254864988583 + ], + [ + 73.33824498844508, + 38.27790091495738 + ], + [ + 73.45308767192877, + 38.47254864988583 + ], + [ + 73.22340230496141, + 38.47254864988583 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 38.861844119742734 + ], + [ + 73.45308767192877, + 38.861844119742734 + ], + [ + 73.33824498844508, + 39.05649185467119 + ], + [ + 73.22340230496141, + 38.861844119742734 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 38.861844119742734 + ], + [ + 73.33824498844508, + 39.05649185467119 + ], + [ + 73.10855962147774, + 39.05649185467119 + ], + [ + 73.22340230496141, + 38.861844119742734 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 38.861844119742734 + ], + [ + 73.10855962147774, + 39.05649185467119 + ], + [ + 72.99371693799405, + 38.861844119742734 + ], + [ + 73.22340230496141, + 38.861844119742734 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 38.861844119742734 + ], + [ + 72.99371693799405, + 38.861844119742734 + ], + [ + 73.10855962147774, + 38.66719638481428 + ], + [ + 73.22340230496141, + 38.861844119742734 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 38.861844119742734 + ], + [ + 73.10855962147774, + 38.66719638481428 + ], + [ + 73.33824498844508, + 38.66719638481428 + ], + [ + 73.22340230496141, + 38.861844119742734 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 38.861844119742734 + ], + [ + 73.33824498844508, + 38.66719638481428 + ], + [ + 73.45308767192877, + 38.861844119742734 + ], + [ + 73.22340230496141, + 38.861844119742734 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 39.25113958959964 + ], + [ + 73.45308767192877, + 39.25113958959964 + ], + [ + 73.33824498844508, + 39.44578732452809 + ], + [ + 73.22340230496141, + 39.25113958959964 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 39.25113958959964 + ], + [ + 73.33824498844508, + 39.44578732452809 + ], + [ + 73.10855962147774, + 39.44578732452809 + ], + [ + 73.22340230496141, + 39.25113958959964 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 39.25113958959964 + ], + [ + 73.10855962147774, + 39.44578732452809 + ], + [ + 72.99371693799405, + 39.25113958959964 + ], + [ + 73.22340230496141, + 39.25113958959964 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 39.25113958959964 + ], + [ + 72.99371693799405, + 39.25113958959964 + ], + [ + 73.10855962147774, + 39.05649185467119 + ], + [ + 73.22340230496141, + 39.25113958959964 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 39.25113958959964 + ], + [ + 73.10855962147774, + 39.05649185467119 + ], + [ + 73.33824498844508, + 39.05649185467119 + ], + [ + 73.22340230496141, + 39.25113958959964 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 39.25113958959964 + ], + [ + 73.33824498844508, + 39.05649185467119 + ], + [ + 73.45308767192877, + 39.25113958959964 + ], + [ + 73.22340230496141, + 39.25113958959964 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 39.64043505945655 + ], + [ + 73.45308767192877, + 39.64043505945655 + ], + [ + 73.33824498844508, + 39.835082794385 + ], + [ + 73.22340230496141, + 39.64043505945655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 39.64043505945655 + ], + [ + 73.33824498844508, + 39.835082794385 + ], + [ + 73.10855962147774, + 39.835082794385 + ], + [ + 73.22340230496141, + 39.64043505945655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 39.64043505945655 + ], + [ + 73.10855962147774, + 39.835082794385 + ], + [ + 72.99371693799405, + 39.64043505945655 + ], + [ + 73.22340230496141, + 39.64043505945655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 39.64043505945655 + ], + [ + 72.99371693799405, + 39.64043505945655 + ], + [ + 73.10855962147774, + 39.4457873245281 + ], + [ + 73.22340230496141, + 39.64043505945655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 39.64043505945655 + ], + [ + 73.10855962147774, + 39.4457873245281 + ], + [ + 73.33824498844508, + 39.4457873245281 + ], + [ + 73.22340230496141, + 39.64043505945655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 39.64043505945655 + ], + [ + 73.33824498844508, + 39.4457873245281 + ], + [ + 73.45308767192877, + 39.64043505945655 + ], + [ + 73.22340230496141, + 39.64043505945655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 40.029730529313454 + ], + [ + 73.45308767192877, + 40.029730529313454 + ], + [ + 73.33824498844508, + 40.224378264241906 + ], + [ + 73.22340230496141, + 40.029730529313454 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 40.029730529313454 + ], + [ + 73.33824498844508, + 40.224378264241906 + ], + [ + 73.10855962147774, + 40.224378264241906 + ], + [ + 73.22340230496141, + 40.029730529313454 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 40.029730529313454 + ], + [ + 73.10855962147774, + 40.224378264241906 + ], + [ + 72.99371693799405, + 40.029730529313454 + ], + [ + 73.22340230496141, + 40.029730529313454 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 40.029730529313454 + ], + [ + 72.99371693799405, + 40.029730529313454 + ], + [ + 73.10855962147774, + 39.835082794385 + ], + [ + 73.22340230496141, + 40.029730529313454 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 40.029730529313454 + ], + [ + 73.10855962147774, + 39.835082794385 + ], + [ + 73.33824498844508, + 39.835082794385 + ], + [ + 73.22340230496141, + 40.029730529313454 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 40.029730529313454 + ], + [ + 73.33824498844508, + 39.835082794385 + ], + [ + 73.45308767192877, + 40.029730529313454 + ], + [ + 73.22340230496141, + 40.029730529313454 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 40.419025999170366 + ], + [ + 73.45308767192877, + 40.419025999170366 + ], + [ + 73.33824498844508, + 40.61367373409882 + ], + [ + 73.22340230496141, + 40.419025999170366 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 40.419025999170366 + ], + [ + 73.33824498844508, + 40.61367373409882 + ], + [ + 73.10855962147774, + 40.61367373409882 + ], + [ + 73.22340230496141, + 40.419025999170366 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 40.419025999170366 + ], + [ + 73.10855962147774, + 40.61367373409882 + ], + [ + 72.99371693799405, + 40.419025999170366 + ], + [ + 73.22340230496141, + 40.419025999170366 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 40.419025999170366 + ], + [ + 72.99371693799405, + 40.419025999170366 + ], + [ + 73.10855962147774, + 40.22437826424191 + ], + [ + 73.22340230496141, + 40.419025999170366 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 40.419025999170366 + ], + [ + 73.10855962147774, + 40.22437826424191 + ], + [ + 73.33824498844508, + 40.22437826424191 + ], + [ + 73.22340230496141, + 40.419025999170366 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 40.419025999170366 + ], + [ + 73.33824498844508, + 40.22437826424191 + ], + [ + 73.45308767192877, + 40.419025999170366 + ], + [ + 73.22340230496141, + 40.419025999170366 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 40.80832146902727 + ], + [ + 73.45308767192877, + 40.80832146902727 + ], + [ + 73.33824498844508, + 41.00296920395572 + ], + [ + 73.22340230496141, + 40.80832146902727 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 40.80832146902727 + ], + [ + 73.33824498844508, + 41.00296920395572 + ], + [ + 73.10855962147774, + 41.00296920395572 + ], + [ + 73.22340230496141, + 40.80832146902727 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 40.80832146902727 + ], + [ + 73.10855962147774, + 41.00296920395572 + ], + [ + 72.99371693799405, + 40.80832146902727 + ], + [ + 73.22340230496141, + 40.80832146902727 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 40.80832146902727 + ], + [ + 72.99371693799405, + 40.80832146902727 + ], + [ + 73.10855962147774, + 40.61367373409882 + ], + [ + 73.22340230496141, + 40.80832146902727 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 40.80832146902727 + ], + [ + 73.10855962147774, + 40.61367373409882 + ], + [ + 73.33824498844508, + 40.61367373409882 + ], + [ + 73.22340230496141, + 40.80832146902727 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 40.80832146902727 + ], + [ + 73.33824498844508, + 40.61367373409882 + ], + [ + 73.45308767192877, + 40.80832146902727 + ], + [ + 73.22340230496141, + 40.80832146902727 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 41.197616938884174 + ], + [ + 73.45308767192877, + 41.197616938884174 + ], + [ + 73.33824498844508, + 41.392264673812626 + ], + [ + 73.22340230496141, + 41.197616938884174 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 41.197616938884174 + ], + [ + 73.33824498844508, + 41.392264673812626 + ], + [ + 73.10855962147774, + 41.392264673812626 + ], + [ + 73.22340230496141, + 41.197616938884174 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 41.197616938884174 + ], + [ + 73.10855962147774, + 41.392264673812626 + ], + [ + 72.99371693799405, + 41.197616938884174 + ], + [ + 73.22340230496141, + 41.197616938884174 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 41.197616938884174 + ], + [ + 72.99371693799405, + 41.197616938884174 + ], + [ + 73.10855962147774, + 41.00296920395572 + ], + [ + 73.22340230496141, + 41.197616938884174 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 41.197616938884174 + ], + [ + 73.10855962147774, + 41.00296920395572 + ], + [ + 73.33824498844508, + 41.00296920395572 + ], + [ + 73.22340230496141, + 41.197616938884174 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 41.197616938884174 + ], + [ + 73.33824498844508, + 41.00296920395572 + ], + [ + 73.45308767192877, + 41.197616938884174 + ], + [ + 73.22340230496141, + 41.197616938884174 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 41.58691240874108 + ], + [ + 73.45308767192877, + 41.58691240874108 + ], + [ + 73.33824498844508, + 41.78156014366953 + ], + [ + 73.22340230496141, + 41.58691240874108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 41.58691240874108 + ], + [ + 73.33824498844508, + 41.78156014366953 + ], + [ + 73.10855962147774, + 41.78156014366953 + ], + [ + 73.22340230496141, + 41.58691240874108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 41.58691240874108 + ], + [ + 73.10855962147774, + 41.78156014366953 + ], + [ + 72.99371693799405, + 41.58691240874108 + ], + [ + 73.22340230496141, + 41.58691240874108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 41.58691240874108 + ], + [ + 72.99371693799405, + 41.58691240874108 + ], + [ + 73.10855962147774, + 41.392264673812626 + ], + [ + 73.22340230496141, + 41.58691240874108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 41.58691240874108 + ], + [ + 73.10855962147774, + 41.392264673812626 + ], + [ + 73.33824498844508, + 41.392264673812626 + ], + [ + 73.22340230496141, + 41.58691240874108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 41.58691240874108 + ], + [ + 73.33824498844508, + 41.392264673812626 + ], + [ + 73.45308767192877, + 41.58691240874108 + ], + [ + 73.22340230496141, + 41.58691240874108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 41.97620787859798 + ], + [ + 73.45308767192877, + 41.97620787859798 + ], + [ + 73.33824498844508, + 42.170855613526435 + ], + [ + 73.22340230496141, + 41.97620787859798 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 41.97620787859798 + ], + [ + 73.33824498844508, + 42.170855613526435 + ], + [ + 73.10855962147774, + 42.170855613526435 + ], + [ + 73.22340230496141, + 41.97620787859798 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 41.97620787859798 + ], + [ + 73.10855962147774, + 42.170855613526435 + ], + [ + 72.99371693799405, + 41.97620787859798 + ], + [ + 73.22340230496141, + 41.97620787859798 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 41.97620787859798 + ], + [ + 72.99371693799405, + 41.97620787859798 + ], + [ + 73.10855962147774, + 41.78156014366953 + ], + [ + 73.22340230496141, + 41.97620787859798 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 41.97620787859798 + ], + [ + 73.10855962147774, + 41.78156014366953 + ], + [ + 73.33824498844508, + 41.78156014366953 + ], + [ + 73.22340230496141, + 41.97620787859798 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 41.97620787859798 + ], + [ + 73.33824498844508, + 41.78156014366953 + ], + [ + 73.45308767192877, + 41.97620787859798 + ], + [ + 73.22340230496141, + 41.97620787859798 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 42.365503348454894 + ], + [ + 73.45308767192877, + 42.365503348454894 + ], + [ + 73.33824498844508, + 42.560151083383346 + ], + [ + 73.22340230496141, + 42.365503348454894 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 42.365503348454894 + ], + [ + 73.33824498844508, + 42.560151083383346 + ], + [ + 73.10855962147774, + 42.560151083383346 + ], + [ + 73.22340230496141, + 42.365503348454894 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 42.365503348454894 + ], + [ + 73.10855962147774, + 42.560151083383346 + ], + [ + 72.99371693799405, + 42.365503348454894 + ], + [ + 73.22340230496141, + 42.365503348454894 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 42.365503348454894 + ], + [ + 72.99371693799405, + 42.365503348454894 + ], + [ + 73.10855962147774, + 42.17085561352644 + ], + [ + 73.22340230496141, + 42.365503348454894 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 42.365503348454894 + ], + [ + 73.10855962147774, + 42.17085561352644 + ], + [ + 73.33824498844508, + 42.17085561352644 + ], + [ + 73.22340230496141, + 42.365503348454894 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 42.365503348454894 + ], + [ + 73.33824498844508, + 42.17085561352644 + ], + [ + 73.45308767192877, + 42.365503348454894 + ], + [ + 73.22340230496141, + 42.365503348454894 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 42.754798818311805 + ], + [ + 73.45308767192877, + 42.754798818311805 + ], + [ + 73.33824498844508, + 42.94944655324026 + ], + [ + 73.22340230496141, + 42.754798818311805 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 42.754798818311805 + ], + [ + 73.33824498844508, + 42.94944655324026 + ], + [ + 73.10855962147774, + 42.94944655324026 + ], + [ + 73.22340230496141, + 42.754798818311805 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 42.754798818311805 + ], + [ + 73.10855962147774, + 42.94944655324026 + ], + [ + 72.99371693799405, + 42.754798818311805 + ], + [ + 73.22340230496141, + 42.754798818311805 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 42.754798818311805 + ], + [ + 72.99371693799405, + 42.754798818311805 + ], + [ + 73.10855962147774, + 42.56015108338335 + ], + [ + 73.22340230496141, + 42.754798818311805 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 42.754798818311805 + ], + [ + 73.10855962147774, + 42.56015108338335 + ], + [ + 73.33824498844508, + 42.56015108338335 + ], + [ + 73.22340230496141, + 42.754798818311805 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 42.754798818311805 + ], + [ + 73.33824498844508, + 42.56015108338335 + ], + [ + 73.45308767192877, + 42.754798818311805 + ], + [ + 73.22340230496141, + 42.754798818311805 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 43.14409428816871 + ], + [ + 73.45308767192877, + 43.14409428816871 + ], + [ + 73.33824498844508, + 43.33874202309716 + ], + [ + 73.22340230496141, + 43.14409428816871 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 43.14409428816871 + ], + [ + 73.33824498844508, + 43.33874202309716 + ], + [ + 73.10855962147774, + 43.33874202309716 + ], + [ + 73.22340230496141, + 43.14409428816871 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 43.14409428816871 + ], + [ + 73.10855962147774, + 43.33874202309716 + ], + [ + 72.99371693799405, + 43.14409428816871 + ], + [ + 73.22340230496141, + 43.14409428816871 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 43.14409428816871 + ], + [ + 72.99371693799405, + 43.14409428816871 + ], + [ + 73.10855962147774, + 42.94944655324026 + ], + [ + 73.22340230496141, + 43.14409428816871 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 43.14409428816871 + ], + [ + 73.10855962147774, + 42.94944655324026 + ], + [ + 73.33824498844508, + 42.94944655324026 + ], + [ + 73.22340230496141, + 43.14409428816871 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 43.14409428816871 + ], + [ + 73.33824498844508, + 42.94944655324026 + ], + [ + 73.45308767192877, + 43.14409428816871 + ], + [ + 73.22340230496141, + 43.14409428816871 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 43.53338975802561 + ], + [ + 73.45308767192877, + 43.53338975802561 + ], + [ + 73.33824498844508, + 43.728037492954066 + ], + [ + 73.22340230496141, + 43.53338975802561 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 43.53338975802561 + ], + [ + 73.33824498844508, + 43.728037492954066 + ], + [ + 73.10855962147774, + 43.728037492954066 + ], + [ + 73.22340230496141, + 43.53338975802561 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 43.53338975802561 + ], + [ + 73.10855962147774, + 43.728037492954066 + ], + [ + 72.99371693799405, + 43.53338975802561 + ], + [ + 73.22340230496141, + 43.53338975802561 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 43.53338975802561 + ], + [ + 72.99371693799405, + 43.53338975802561 + ], + [ + 73.10855962147774, + 43.33874202309716 + ], + [ + 73.22340230496141, + 43.53338975802561 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 43.53338975802561 + ], + [ + 73.10855962147774, + 43.33874202309716 + ], + [ + 73.33824498844508, + 43.33874202309716 + ], + [ + 73.22340230496141, + 43.53338975802561 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 43.53338975802561 + ], + [ + 73.33824498844508, + 43.33874202309716 + ], + [ + 73.45308767192877, + 43.53338975802561 + ], + [ + 73.22340230496141, + 43.53338975802561 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 43.92268522788252 + ], + [ + 73.45308767192877, + 43.92268522788252 + ], + [ + 73.33824498844508, + 44.11733296281097 + ], + [ + 73.22340230496141, + 43.92268522788252 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 43.92268522788252 + ], + [ + 73.33824498844508, + 44.11733296281097 + ], + [ + 73.10855962147774, + 44.11733296281097 + ], + [ + 73.22340230496141, + 43.92268522788252 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 43.92268522788252 + ], + [ + 73.10855962147774, + 44.11733296281097 + ], + [ + 72.99371693799405, + 43.92268522788252 + ], + [ + 73.22340230496141, + 43.92268522788252 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 43.92268522788252 + ], + [ + 72.99371693799405, + 43.92268522788252 + ], + [ + 73.10855962147774, + 43.728037492954066 + ], + [ + 73.22340230496141, + 43.92268522788252 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 43.92268522788252 + ], + [ + 73.10855962147774, + 43.728037492954066 + ], + [ + 73.33824498844508, + 43.728037492954066 + ], + [ + 73.22340230496141, + 43.92268522788252 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 43.92268522788252 + ], + [ + 73.33824498844508, + 43.728037492954066 + ], + [ + 73.45308767192877, + 43.92268522788252 + ], + [ + 73.22340230496141, + 43.92268522788252 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 44.31198069773942 + ], + [ + 73.45308767192877, + 44.31198069773942 + ], + [ + 73.33824498844508, + 44.506628432667874 + ], + [ + 73.22340230496141, + 44.31198069773942 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 44.31198069773942 + ], + [ + 73.33824498844508, + 44.506628432667874 + ], + [ + 73.10855962147774, + 44.506628432667874 + ], + [ + 73.22340230496141, + 44.31198069773942 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 44.31198069773942 + ], + [ + 73.10855962147774, + 44.506628432667874 + ], + [ + 72.99371693799405, + 44.31198069773942 + ], + [ + 73.22340230496141, + 44.31198069773942 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 44.31198069773942 + ], + [ + 72.99371693799405, + 44.31198069773942 + ], + [ + 73.10855962147774, + 44.11733296281097 + ], + [ + 73.22340230496141, + 44.31198069773942 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 44.31198069773942 + ], + [ + 73.10855962147774, + 44.11733296281097 + ], + [ + 73.33824498844508, + 44.11733296281097 + ], + [ + 73.22340230496141, + 44.31198069773942 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 44.31198069773942 + ], + [ + 73.33824498844508, + 44.11733296281097 + ], + [ + 73.45308767192877, + 44.31198069773942 + ], + [ + 73.22340230496141, + 44.31198069773942 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 44.701276167596326 + ], + [ + 73.45308767192877, + 44.701276167596326 + ], + [ + 73.33824498844508, + 44.89592390252478 + ], + [ + 73.22340230496141, + 44.701276167596326 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 44.701276167596326 + ], + [ + 73.33824498844508, + 44.89592390252478 + ], + [ + 73.10855962147774, + 44.89592390252478 + ], + [ + 73.22340230496141, + 44.701276167596326 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 44.701276167596326 + ], + [ + 73.10855962147774, + 44.89592390252478 + ], + [ + 72.99371693799405, + 44.701276167596326 + ], + [ + 73.22340230496141, + 44.701276167596326 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 44.701276167596326 + ], + [ + 72.99371693799405, + 44.701276167596326 + ], + [ + 73.10855962147774, + 44.506628432667874 + ], + [ + 73.22340230496141, + 44.701276167596326 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 44.701276167596326 + ], + [ + 73.10855962147774, + 44.506628432667874 + ], + [ + 73.33824498844508, + 44.506628432667874 + ], + [ + 73.22340230496141, + 44.701276167596326 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 44.701276167596326 + ], + [ + 73.33824498844508, + 44.506628432667874 + ], + [ + 73.45308767192877, + 44.701276167596326 + ], + [ + 73.22340230496141, + 44.701276167596326 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 45.090571637453245 + ], + [ + 73.45308767192877, + 45.090571637453245 + ], + [ + 73.33824498844508, + 45.2852193723817 + ], + [ + 73.22340230496141, + 45.090571637453245 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 45.090571637453245 + ], + [ + 73.33824498844508, + 45.2852193723817 + ], + [ + 73.10855962147774, + 45.2852193723817 + ], + [ + 73.22340230496141, + 45.090571637453245 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 45.090571637453245 + ], + [ + 73.10855962147774, + 45.2852193723817 + ], + [ + 72.99371693799405, + 45.090571637453245 + ], + [ + 73.22340230496141, + 45.090571637453245 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 45.090571637453245 + ], + [ + 72.99371693799405, + 45.090571637453245 + ], + [ + 73.10855962147774, + 44.89592390252479 + ], + [ + 73.22340230496141, + 45.090571637453245 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 45.090571637453245 + ], + [ + 73.10855962147774, + 44.89592390252479 + ], + [ + 73.33824498844508, + 44.89592390252479 + ], + [ + 73.22340230496141, + 45.090571637453245 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 45.090571637453245 + ], + [ + 73.33824498844508, + 44.89592390252479 + ], + [ + 73.45308767192877, + 45.090571637453245 + ], + [ + 73.22340230496141, + 45.090571637453245 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 45.47986710731015 + ], + [ + 73.45308767192877, + 45.47986710731015 + ], + [ + 73.33824498844508, + 45.6745148422386 + ], + [ + 73.22340230496141, + 45.47986710731015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 45.47986710731015 + ], + [ + 73.33824498844508, + 45.6745148422386 + ], + [ + 73.10855962147774, + 45.6745148422386 + ], + [ + 73.22340230496141, + 45.47986710731015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 45.47986710731015 + ], + [ + 73.10855962147774, + 45.6745148422386 + ], + [ + 72.99371693799405, + 45.47986710731015 + ], + [ + 73.22340230496141, + 45.47986710731015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 45.47986710731015 + ], + [ + 72.99371693799405, + 45.47986710731015 + ], + [ + 73.10855962147774, + 45.2852193723817 + ], + [ + 73.22340230496141, + 45.47986710731015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 45.47986710731015 + ], + [ + 73.10855962147774, + 45.2852193723817 + ], + [ + 73.33824498844508, + 45.2852193723817 + ], + [ + 73.22340230496141, + 45.47986710731015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 45.47986710731015 + ], + [ + 73.33824498844508, + 45.2852193723817 + ], + [ + 73.45308767192877, + 45.47986710731015 + ], + [ + 73.22340230496141, + 45.47986710731015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 45.86916257716705 + ], + [ + 73.45308767192877, + 45.86916257716705 + ], + [ + 73.33824498844508, + 46.063810312095505 + ], + [ + 73.22340230496141, + 45.86916257716705 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 45.86916257716705 + ], + [ + 73.33824498844508, + 46.063810312095505 + ], + [ + 73.10855962147774, + 46.063810312095505 + ], + [ + 73.22340230496141, + 45.86916257716705 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 45.86916257716705 + ], + [ + 73.10855962147774, + 46.063810312095505 + ], + [ + 72.99371693799405, + 45.86916257716705 + ], + [ + 73.22340230496141, + 45.86916257716705 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 45.86916257716705 + ], + [ + 72.99371693799405, + 45.86916257716705 + ], + [ + 73.10855962147774, + 45.6745148422386 + ], + [ + 73.22340230496141, + 45.86916257716705 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 45.86916257716705 + ], + [ + 73.10855962147774, + 45.6745148422386 + ], + [ + 73.33824498844508, + 45.6745148422386 + ], + [ + 73.22340230496141, + 45.86916257716705 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 45.86916257716705 + ], + [ + 73.33824498844508, + 45.6745148422386 + ], + [ + 73.45308767192877, + 45.86916257716705 + ], + [ + 73.22340230496141, + 45.86916257716705 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 46.25845804702396 + ], + [ + 73.45308767192877, + 46.25845804702396 + ], + [ + 73.33824498844508, + 46.45310578195241 + ], + [ + 73.22340230496141, + 46.25845804702396 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 46.25845804702396 + ], + [ + 73.33824498844508, + 46.45310578195241 + ], + [ + 73.10855962147774, + 46.45310578195241 + ], + [ + 73.22340230496141, + 46.25845804702396 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 46.25845804702396 + ], + [ + 73.10855962147774, + 46.45310578195241 + ], + [ + 72.99371693799405, + 46.25845804702396 + ], + [ + 73.22340230496141, + 46.25845804702396 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 46.25845804702396 + ], + [ + 72.99371693799405, + 46.25845804702396 + ], + [ + 73.10855962147774, + 46.063810312095505 + ], + [ + 73.22340230496141, + 46.25845804702396 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 46.25845804702396 + ], + [ + 73.10855962147774, + 46.063810312095505 + ], + [ + 73.33824498844508, + 46.063810312095505 + ], + [ + 73.22340230496141, + 46.25845804702396 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 46.25845804702396 + ], + [ + 73.33824498844508, + 46.063810312095505 + ], + [ + 73.45308767192877, + 46.25845804702396 + ], + [ + 73.22340230496141, + 46.25845804702396 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 46.64775351688086 + ], + [ + 73.45308767192877, + 46.64775351688086 + ], + [ + 73.33824498844508, + 46.842401251809314 + ], + [ + 73.22340230496141, + 46.64775351688086 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 46.64775351688086 + ], + [ + 73.33824498844508, + 46.842401251809314 + ], + [ + 73.10855962147774, + 46.842401251809314 + ], + [ + 73.22340230496141, + 46.64775351688086 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 46.64775351688086 + ], + [ + 73.10855962147774, + 46.842401251809314 + ], + [ + 72.99371693799405, + 46.64775351688086 + ], + [ + 73.22340230496141, + 46.64775351688086 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 46.64775351688086 + ], + [ + 72.99371693799405, + 46.64775351688086 + ], + [ + 73.10855962147774, + 46.45310578195241 + ], + [ + 73.22340230496141, + 46.64775351688086 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 46.64775351688086 + ], + [ + 73.10855962147774, + 46.45310578195241 + ], + [ + 73.33824498844508, + 46.45310578195241 + ], + [ + 73.22340230496141, + 46.64775351688086 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 46.64775351688086 + ], + [ + 73.33824498844508, + 46.45310578195241 + ], + [ + 73.45308767192877, + 46.64775351688086 + ], + [ + 73.22340230496141, + 46.64775351688086 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 47.037048986737766 + ], + [ + 73.45308767192877, + 47.037048986737766 + ], + [ + 73.33824498844508, + 47.23169672166622 + ], + [ + 73.22340230496141, + 47.037048986737766 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 47.037048986737766 + ], + [ + 73.33824498844508, + 47.23169672166622 + ], + [ + 73.10855962147774, + 47.23169672166622 + ], + [ + 73.22340230496141, + 47.037048986737766 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 47.037048986737766 + ], + [ + 73.10855962147774, + 47.23169672166622 + ], + [ + 72.99371693799405, + 47.037048986737766 + ], + [ + 73.22340230496141, + 47.037048986737766 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 47.037048986737766 + ], + [ + 72.99371693799405, + 47.037048986737766 + ], + [ + 73.10855962147774, + 46.842401251809314 + ], + [ + 73.22340230496141, + 47.037048986737766 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 47.037048986737766 + ], + [ + 73.10855962147774, + 46.842401251809314 + ], + [ + 73.33824498844508, + 46.842401251809314 + ], + [ + 73.22340230496141, + 47.037048986737766 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 47.037048986737766 + ], + [ + 73.33824498844508, + 46.842401251809314 + ], + [ + 73.45308767192877, + 47.037048986737766 + ], + [ + 73.22340230496141, + 47.037048986737766 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 47.42634445659467 + ], + [ + 73.45308767192877, + 47.42634445659467 + ], + [ + 73.33824498844508, + 47.62099219152312 + ], + [ + 73.22340230496141, + 47.42634445659467 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 47.42634445659467 + ], + [ + 73.33824498844508, + 47.62099219152312 + ], + [ + 73.10855962147774, + 47.62099219152312 + ], + [ + 73.22340230496141, + 47.42634445659467 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 47.42634445659467 + ], + [ + 73.10855962147774, + 47.62099219152312 + ], + [ + 72.99371693799405, + 47.42634445659467 + ], + [ + 73.22340230496141, + 47.42634445659467 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 47.42634445659467 + ], + [ + 72.99371693799405, + 47.42634445659467 + ], + [ + 73.10855962147774, + 47.23169672166622 + ], + [ + 73.22340230496141, + 47.42634445659467 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 47.42634445659467 + ], + [ + 73.10855962147774, + 47.23169672166622 + ], + [ + 73.33824498844508, + 47.23169672166622 + ], + [ + 73.22340230496141, + 47.42634445659467 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 47.42634445659467 + ], + [ + 73.33824498844508, + 47.23169672166622 + ], + [ + 73.45308767192877, + 47.42634445659467 + ], + [ + 73.22340230496141, + 47.42634445659467 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 47.81563992645159 + ], + [ + 73.45308767192877, + 47.81563992645159 + ], + [ + 73.33824498844508, + 48.01028766138004 + ], + [ + 73.22340230496141, + 47.81563992645159 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 47.81563992645159 + ], + [ + 73.33824498844508, + 48.01028766138004 + ], + [ + 73.10855962147774, + 48.01028766138004 + ], + [ + 73.22340230496141, + 47.81563992645159 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 47.81563992645159 + ], + [ + 73.10855962147774, + 48.01028766138004 + ], + [ + 72.99371693799405, + 47.81563992645159 + ], + [ + 73.22340230496141, + 47.81563992645159 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 47.81563992645159 + ], + [ + 72.99371693799405, + 47.81563992645159 + ], + [ + 73.10855962147774, + 47.620992191523136 + ], + [ + 73.22340230496141, + 47.81563992645159 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 47.81563992645159 + ], + [ + 73.10855962147774, + 47.620992191523136 + ], + [ + 73.33824498844508, + 47.620992191523136 + ], + [ + 73.22340230496141, + 47.81563992645159 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.22340230496141, + 47.81563992645159 + ], + [ + 73.33824498844508, + 47.620992191523136 + ], + [ + 73.45308767192877, + 47.81563992645159 + ], + [ + 73.22340230496141, + 47.81563992645159 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 11.805808964687746 + ], + [ + 73.7976157223798, + 11.805808964687746 + ], + [ + 73.68277303889612, + 12.0004566996162 + ], + [ + 73.56793035541244, + 11.805808964687746 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 11.805808964687746 + ], + [ + 73.68277303889612, + 12.0004566996162 + ], + [ + 73.45308767192877, + 12.0004566996162 + ], + [ + 73.56793035541244, + 11.805808964687746 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 11.805808964687746 + ], + [ + 73.45308767192877, + 12.0004566996162 + ], + [ + 73.33824498844508, + 11.805808964687746 + ], + [ + 73.56793035541244, + 11.805808964687746 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 11.805808964687746 + ], + [ + 73.33824498844508, + 11.805808964687746 + ], + [ + 73.45308767192877, + 11.611161229759292 + ], + [ + 73.56793035541244, + 11.805808964687746 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 11.805808964687746 + ], + [ + 73.45308767192877, + 11.611161229759292 + ], + [ + 73.68277303889612, + 11.611161229759292 + ], + [ + 73.56793035541244, + 11.805808964687746 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 11.805808964687746 + ], + [ + 73.68277303889612, + 11.611161229759292 + ], + [ + 73.7976157223798, + 11.805808964687746 + ], + [ + 73.56793035541244, + 11.805808964687746 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 12.195104434544652 + ], + [ + 73.7976157223798, + 12.195104434544652 + ], + [ + 73.68277303889612, + 12.389752169473105 + ], + [ + 73.56793035541244, + 12.195104434544652 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 12.195104434544652 + ], + [ + 73.68277303889612, + 12.389752169473105 + ], + [ + 73.45308767192877, + 12.389752169473105 + ], + [ + 73.56793035541244, + 12.195104434544652 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 12.195104434544652 + ], + [ + 73.45308767192877, + 12.389752169473105 + ], + [ + 73.33824498844508, + 12.195104434544652 + ], + [ + 73.56793035541244, + 12.195104434544652 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 12.195104434544652 + ], + [ + 73.33824498844508, + 12.195104434544652 + ], + [ + 73.45308767192877, + 12.000456699616198 + ], + [ + 73.56793035541244, + 12.195104434544652 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 12.195104434544652 + ], + [ + 73.45308767192877, + 12.000456699616198 + ], + [ + 73.68277303889612, + 12.000456699616198 + ], + [ + 73.56793035541244, + 12.195104434544652 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 12.195104434544652 + ], + [ + 73.68277303889612, + 12.000456699616198 + ], + [ + 73.7976157223798, + 12.195104434544652 + ], + [ + 73.56793035541244, + 12.195104434544652 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 12.58439990440156 + ], + [ + 73.7976157223798, + 12.58439990440156 + ], + [ + 73.68277303889612, + 12.779047639330013 + ], + [ + 73.56793035541244, + 12.58439990440156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 12.58439990440156 + ], + [ + 73.68277303889612, + 12.779047639330013 + ], + [ + 73.45308767192877, + 12.779047639330013 + ], + [ + 73.56793035541244, + 12.58439990440156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 12.58439990440156 + ], + [ + 73.45308767192877, + 12.779047639330013 + ], + [ + 73.33824498844508, + 12.58439990440156 + ], + [ + 73.56793035541244, + 12.58439990440156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 12.58439990440156 + ], + [ + 73.33824498844508, + 12.58439990440156 + ], + [ + 73.45308767192877, + 12.389752169473105 + ], + [ + 73.56793035541244, + 12.58439990440156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 12.58439990440156 + ], + [ + 73.45308767192877, + 12.389752169473105 + ], + [ + 73.68277303889612, + 12.389752169473105 + ], + [ + 73.56793035541244, + 12.58439990440156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 12.58439990440156 + ], + [ + 73.68277303889612, + 12.389752169473105 + ], + [ + 73.7976157223798, + 12.58439990440156 + ], + [ + 73.56793035541244, + 12.58439990440156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 12.973695374258465 + ], + [ + 73.7976157223798, + 12.973695374258465 + ], + [ + 73.68277303889612, + 13.16834310918692 + ], + [ + 73.56793035541244, + 12.973695374258465 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 12.973695374258465 + ], + [ + 73.68277303889612, + 13.16834310918692 + ], + [ + 73.45308767192877, + 13.16834310918692 + ], + [ + 73.56793035541244, + 12.973695374258465 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 12.973695374258465 + ], + [ + 73.45308767192877, + 13.16834310918692 + ], + [ + 73.33824498844508, + 12.973695374258465 + ], + [ + 73.56793035541244, + 12.973695374258465 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 12.973695374258465 + ], + [ + 73.33824498844508, + 12.973695374258465 + ], + [ + 73.45308767192877, + 12.779047639330011 + ], + [ + 73.56793035541244, + 12.973695374258465 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 12.973695374258465 + ], + [ + 73.45308767192877, + 12.779047639330011 + ], + [ + 73.68277303889612, + 12.779047639330011 + ], + [ + 73.56793035541244, + 12.973695374258465 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 12.973695374258465 + ], + [ + 73.68277303889612, + 12.779047639330011 + ], + [ + 73.7976157223798, + 12.973695374258465 + ], + [ + 73.56793035541244, + 12.973695374258465 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 13.362990844115371 + ], + [ + 73.7976157223798, + 13.362990844115371 + ], + [ + 73.68277303889612, + 13.557638579043825 + ], + [ + 73.56793035541244, + 13.362990844115371 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 13.362990844115371 + ], + [ + 73.68277303889612, + 13.557638579043825 + ], + [ + 73.45308767192877, + 13.557638579043825 + ], + [ + 73.56793035541244, + 13.362990844115371 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 13.362990844115371 + ], + [ + 73.45308767192877, + 13.557638579043825 + ], + [ + 73.33824498844508, + 13.362990844115371 + ], + [ + 73.56793035541244, + 13.362990844115371 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 13.362990844115371 + ], + [ + 73.33824498844508, + 13.362990844115371 + ], + [ + 73.45308767192877, + 13.168343109186917 + ], + [ + 73.56793035541244, + 13.362990844115371 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 13.362990844115371 + ], + [ + 73.45308767192877, + 13.168343109186917 + ], + [ + 73.68277303889612, + 13.168343109186917 + ], + [ + 73.56793035541244, + 13.362990844115371 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 13.362990844115371 + ], + [ + 73.68277303889612, + 13.168343109186917 + ], + [ + 73.7976157223798, + 13.362990844115371 + ], + [ + 73.56793035541244, + 13.362990844115371 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 13.752286313972277 + ], + [ + 73.7976157223798, + 13.752286313972277 + ], + [ + 73.68277303889612, + 13.946934048900731 + ], + [ + 73.56793035541244, + 13.752286313972277 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 13.752286313972277 + ], + [ + 73.68277303889612, + 13.946934048900731 + ], + [ + 73.45308767192877, + 13.946934048900731 + ], + [ + 73.56793035541244, + 13.752286313972277 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 13.752286313972277 + ], + [ + 73.45308767192877, + 13.946934048900731 + ], + [ + 73.33824498844508, + 13.752286313972277 + ], + [ + 73.56793035541244, + 13.752286313972277 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 13.752286313972277 + ], + [ + 73.33824498844508, + 13.752286313972277 + ], + [ + 73.45308767192877, + 13.557638579043823 + ], + [ + 73.56793035541244, + 13.752286313972277 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 13.752286313972277 + ], + [ + 73.45308767192877, + 13.557638579043823 + ], + [ + 73.68277303889612, + 13.557638579043823 + ], + [ + 73.56793035541244, + 13.752286313972277 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 13.752286313972277 + ], + [ + 73.68277303889612, + 13.557638579043823 + ], + [ + 73.7976157223798, + 13.752286313972277 + ], + [ + 73.56793035541244, + 13.752286313972277 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 14.141581783829183 + ], + [ + 73.7976157223798, + 14.141581783829183 + ], + [ + 73.68277303889612, + 14.336229518757637 + ], + [ + 73.56793035541244, + 14.141581783829183 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 14.141581783829183 + ], + [ + 73.68277303889612, + 14.336229518757637 + ], + [ + 73.45308767192877, + 14.336229518757637 + ], + [ + 73.56793035541244, + 14.141581783829183 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 14.141581783829183 + ], + [ + 73.45308767192877, + 14.336229518757637 + ], + [ + 73.33824498844508, + 14.141581783829183 + ], + [ + 73.56793035541244, + 14.141581783829183 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 14.141581783829183 + ], + [ + 73.33824498844508, + 14.141581783829183 + ], + [ + 73.45308767192877, + 13.94693404890073 + ], + [ + 73.56793035541244, + 14.141581783829183 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 14.141581783829183 + ], + [ + 73.45308767192877, + 13.94693404890073 + ], + [ + 73.68277303889612, + 13.94693404890073 + ], + [ + 73.56793035541244, + 14.141581783829183 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 14.141581783829183 + ], + [ + 73.68277303889612, + 13.94693404890073 + ], + [ + 73.7976157223798, + 14.141581783829183 + ], + [ + 73.56793035541244, + 14.141581783829183 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 14.530877253686091 + ], + [ + 73.7976157223798, + 14.530877253686091 + ], + [ + 73.68277303889612, + 14.725524988614545 + ], + [ + 73.56793035541244, + 14.530877253686091 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 14.530877253686091 + ], + [ + 73.68277303889612, + 14.725524988614545 + ], + [ + 73.45308767192877, + 14.725524988614545 + ], + [ + 73.56793035541244, + 14.530877253686091 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 14.530877253686091 + ], + [ + 73.45308767192877, + 14.725524988614545 + ], + [ + 73.33824498844508, + 14.530877253686091 + ], + [ + 73.56793035541244, + 14.530877253686091 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 14.530877253686091 + ], + [ + 73.33824498844508, + 14.530877253686091 + ], + [ + 73.45308767192877, + 14.336229518757637 + ], + [ + 73.56793035541244, + 14.530877253686091 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 14.530877253686091 + ], + [ + 73.45308767192877, + 14.336229518757637 + ], + [ + 73.68277303889612, + 14.336229518757637 + ], + [ + 73.56793035541244, + 14.530877253686091 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 14.530877253686091 + ], + [ + 73.68277303889612, + 14.336229518757637 + ], + [ + 73.7976157223798, + 14.530877253686091 + ], + [ + 73.56793035541244, + 14.530877253686091 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 14.920172723542997 + ], + [ + 73.7976157223798, + 14.920172723542997 + ], + [ + 73.68277303889612, + 15.114820458471451 + ], + [ + 73.56793035541244, + 14.920172723542997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 14.920172723542997 + ], + [ + 73.68277303889612, + 15.114820458471451 + ], + [ + 73.45308767192877, + 15.114820458471451 + ], + [ + 73.56793035541244, + 14.920172723542997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 14.920172723542997 + ], + [ + 73.45308767192877, + 15.114820458471451 + ], + [ + 73.33824498844508, + 14.920172723542997 + ], + [ + 73.56793035541244, + 14.920172723542997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 14.920172723542997 + ], + [ + 73.33824498844508, + 14.920172723542997 + ], + [ + 73.45308767192877, + 14.725524988614543 + ], + [ + 73.56793035541244, + 14.920172723542997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 14.920172723542997 + ], + [ + 73.45308767192877, + 14.725524988614543 + ], + [ + 73.68277303889612, + 14.725524988614543 + ], + [ + 73.56793035541244, + 14.920172723542997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 14.920172723542997 + ], + [ + 73.68277303889612, + 14.725524988614543 + ], + [ + 73.7976157223798, + 14.920172723542997 + ], + [ + 73.56793035541244, + 14.920172723542997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 15.309468193399903 + ], + [ + 73.7976157223798, + 15.309468193399903 + ], + [ + 73.68277303889612, + 15.504115928328357 + ], + [ + 73.56793035541244, + 15.309468193399903 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 15.309468193399903 + ], + [ + 73.68277303889612, + 15.504115928328357 + ], + [ + 73.45308767192877, + 15.504115928328357 + ], + [ + 73.56793035541244, + 15.309468193399903 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 15.309468193399903 + ], + [ + 73.45308767192877, + 15.504115928328357 + ], + [ + 73.33824498844508, + 15.309468193399903 + ], + [ + 73.56793035541244, + 15.309468193399903 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 15.309468193399903 + ], + [ + 73.33824498844508, + 15.309468193399903 + ], + [ + 73.45308767192877, + 15.11482045847145 + ], + [ + 73.56793035541244, + 15.309468193399903 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 15.309468193399903 + ], + [ + 73.45308767192877, + 15.11482045847145 + ], + [ + 73.68277303889612, + 15.11482045847145 + ], + [ + 73.56793035541244, + 15.309468193399903 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 15.309468193399903 + ], + [ + 73.68277303889612, + 15.11482045847145 + ], + [ + 73.7976157223798, + 15.309468193399903 + ], + [ + 73.56793035541244, + 15.309468193399903 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 15.69876366325681 + ], + [ + 73.7976157223798, + 15.69876366325681 + ], + [ + 73.68277303889612, + 15.893411398185265 + ], + [ + 73.56793035541244, + 15.69876366325681 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 15.69876366325681 + ], + [ + 73.68277303889612, + 15.893411398185265 + ], + [ + 73.45308767192877, + 15.893411398185265 + ], + [ + 73.56793035541244, + 15.69876366325681 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 15.69876366325681 + ], + [ + 73.45308767192877, + 15.893411398185265 + ], + [ + 73.33824498844508, + 15.69876366325681 + ], + [ + 73.56793035541244, + 15.69876366325681 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 15.69876366325681 + ], + [ + 73.33824498844508, + 15.69876366325681 + ], + [ + 73.45308767192877, + 15.504115928328357 + ], + [ + 73.56793035541244, + 15.69876366325681 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 15.69876366325681 + ], + [ + 73.45308767192877, + 15.504115928328357 + ], + [ + 73.68277303889612, + 15.504115928328357 + ], + [ + 73.56793035541244, + 15.69876366325681 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 15.69876366325681 + ], + [ + 73.68277303889612, + 15.504115928328357 + ], + [ + 73.7976157223798, + 15.69876366325681 + ], + [ + 73.56793035541244, + 15.69876366325681 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 16.088059133113717 + ], + [ + 73.7976157223798, + 16.088059133113717 + ], + [ + 73.68277303889612, + 16.28270686804217 + ], + [ + 73.56793035541244, + 16.088059133113717 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 16.088059133113717 + ], + [ + 73.68277303889612, + 16.28270686804217 + ], + [ + 73.45308767192877, + 16.28270686804217 + ], + [ + 73.56793035541244, + 16.088059133113717 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 16.088059133113717 + ], + [ + 73.45308767192877, + 16.28270686804217 + ], + [ + 73.33824498844508, + 16.088059133113717 + ], + [ + 73.56793035541244, + 16.088059133113717 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 16.088059133113717 + ], + [ + 73.33824498844508, + 16.088059133113717 + ], + [ + 73.45308767192877, + 15.893411398185263 + ], + [ + 73.56793035541244, + 16.088059133113717 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 16.088059133113717 + ], + [ + 73.45308767192877, + 15.893411398185263 + ], + [ + 73.68277303889612, + 15.893411398185263 + ], + [ + 73.56793035541244, + 16.088059133113717 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 16.088059133113717 + ], + [ + 73.68277303889612, + 15.893411398185263 + ], + [ + 73.7976157223798, + 16.088059133113717 + ], + [ + 73.56793035541244, + 16.088059133113717 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 16.477354602970625 + ], + [ + 73.7976157223798, + 16.477354602970625 + ], + [ + 73.68277303889612, + 16.672002337899077 + ], + [ + 73.56793035541244, + 16.477354602970625 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 16.477354602970625 + ], + [ + 73.68277303889612, + 16.672002337899077 + ], + [ + 73.45308767192877, + 16.672002337899077 + ], + [ + 73.56793035541244, + 16.477354602970625 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 16.477354602970625 + ], + [ + 73.45308767192877, + 16.672002337899077 + ], + [ + 73.33824498844508, + 16.477354602970625 + ], + [ + 73.56793035541244, + 16.477354602970625 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 16.477354602970625 + ], + [ + 73.33824498844508, + 16.477354602970625 + ], + [ + 73.45308767192877, + 16.282706868042172 + ], + [ + 73.56793035541244, + 16.477354602970625 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 16.477354602970625 + ], + [ + 73.45308767192877, + 16.282706868042172 + ], + [ + 73.68277303889612, + 16.282706868042172 + ], + [ + 73.56793035541244, + 16.477354602970625 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 16.477354602970625 + ], + [ + 73.68277303889612, + 16.282706868042172 + ], + [ + 73.7976157223798, + 16.477354602970625 + ], + [ + 73.56793035541244, + 16.477354602970625 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 16.86665007282753 + ], + [ + 73.7976157223798, + 16.86665007282753 + ], + [ + 73.68277303889612, + 17.06129780775598 + ], + [ + 73.56793035541244, + 16.86665007282753 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 16.86665007282753 + ], + [ + 73.68277303889612, + 17.06129780775598 + ], + [ + 73.45308767192877, + 17.06129780775598 + ], + [ + 73.56793035541244, + 16.86665007282753 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 16.86665007282753 + ], + [ + 73.45308767192877, + 17.06129780775598 + ], + [ + 73.33824498844508, + 16.86665007282753 + ], + [ + 73.56793035541244, + 16.86665007282753 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 16.86665007282753 + ], + [ + 73.33824498844508, + 16.86665007282753 + ], + [ + 73.45308767192877, + 16.672002337899077 + ], + [ + 73.56793035541244, + 16.86665007282753 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 16.86665007282753 + ], + [ + 73.45308767192877, + 16.672002337899077 + ], + [ + 73.68277303889612, + 16.672002337899077 + ], + [ + 73.56793035541244, + 16.86665007282753 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 16.86665007282753 + ], + [ + 73.68277303889612, + 16.672002337899077 + ], + [ + 73.7976157223798, + 16.86665007282753 + ], + [ + 73.56793035541244, + 16.86665007282753 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 17.255945542684437 + ], + [ + 73.7976157223798, + 17.255945542684437 + ], + [ + 73.68277303889612, + 17.45059327761289 + ], + [ + 73.56793035541244, + 17.255945542684437 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 17.255945542684437 + ], + [ + 73.68277303889612, + 17.45059327761289 + ], + [ + 73.45308767192877, + 17.45059327761289 + ], + [ + 73.56793035541244, + 17.255945542684437 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 17.255945542684437 + ], + [ + 73.45308767192877, + 17.45059327761289 + ], + [ + 73.33824498844508, + 17.255945542684437 + ], + [ + 73.56793035541244, + 17.255945542684437 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 17.255945542684437 + ], + [ + 73.33824498844508, + 17.255945542684437 + ], + [ + 73.45308767192877, + 17.061297807755984 + ], + [ + 73.56793035541244, + 17.255945542684437 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 17.255945542684437 + ], + [ + 73.45308767192877, + 17.061297807755984 + ], + [ + 73.68277303889612, + 17.061297807755984 + ], + [ + 73.56793035541244, + 17.255945542684437 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 17.255945542684437 + ], + [ + 73.68277303889612, + 17.061297807755984 + ], + [ + 73.7976157223798, + 17.255945542684437 + ], + [ + 73.56793035541244, + 17.255945542684437 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 17.64524101254134 + ], + [ + 73.7976157223798, + 17.64524101254134 + ], + [ + 73.68277303889612, + 17.839888747469793 + ], + [ + 73.56793035541244, + 17.64524101254134 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 17.64524101254134 + ], + [ + 73.68277303889612, + 17.839888747469793 + ], + [ + 73.45308767192877, + 17.839888747469793 + ], + [ + 73.56793035541244, + 17.64524101254134 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 17.64524101254134 + ], + [ + 73.45308767192877, + 17.839888747469793 + ], + [ + 73.33824498844508, + 17.64524101254134 + ], + [ + 73.56793035541244, + 17.64524101254134 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 17.64524101254134 + ], + [ + 73.33824498844508, + 17.64524101254134 + ], + [ + 73.45308767192877, + 17.45059327761289 + ], + [ + 73.56793035541244, + 17.64524101254134 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 17.64524101254134 + ], + [ + 73.45308767192877, + 17.45059327761289 + ], + [ + 73.68277303889612, + 17.45059327761289 + ], + [ + 73.56793035541244, + 17.64524101254134 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 17.64524101254134 + ], + [ + 73.68277303889612, + 17.45059327761289 + ], + [ + 73.7976157223798, + 17.64524101254134 + ], + [ + 73.56793035541244, + 17.64524101254134 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 18.03453648239825 + ], + [ + 73.7976157223798, + 18.03453648239825 + ], + [ + 73.68277303889612, + 18.2291842173267 + ], + [ + 73.56793035541244, + 18.03453648239825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 18.03453648239825 + ], + [ + 73.68277303889612, + 18.2291842173267 + ], + [ + 73.45308767192877, + 18.2291842173267 + ], + [ + 73.56793035541244, + 18.03453648239825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 18.03453648239825 + ], + [ + 73.45308767192877, + 18.2291842173267 + ], + [ + 73.33824498844508, + 18.03453648239825 + ], + [ + 73.56793035541244, + 18.03453648239825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 18.03453648239825 + ], + [ + 73.33824498844508, + 18.03453648239825 + ], + [ + 73.45308767192877, + 17.839888747469796 + ], + [ + 73.56793035541244, + 18.03453648239825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 18.03453648239825 + ], + [ + 73.45308767192877, + 17.839888747469796 + ], + [ + 73.68277303889612, + 17.839888747469796 + ], + [ + 73.56793035541244, + 18.03453648239825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 18.03453648239825 + ], + [ + 73.68277303889612, + 17.839888747469796 + ], + [ + 73.7976157223798, + 18.03453648239825 + ], + [ + 73.56793035541244, + 18.03453648239825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 18.423831952255156 + ], + [ + 73.7976157223798, + 18.423831952255156 + ], + [ + 73.68277303889612, + 18.61847968718361 + ], + [ + 73.56793035541244, + 18.423831952255156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 18.423831952255156 + ], + [ + 73.68277303889612, + 18.61847968718361 + ], + [ + 73.45308767192877, + 18.61847968718361 + ], + [ + 73.56793035541244, + 18.423831952255156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 18.423831952255156 + ], + [ + 73.45308767192877, + 18.61847968718361 + ], + [ + 73.33824498844508, + 18.423831952255156 + ], + [ + 73.56793035541244, + 18.423831952255156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 18.423831952255156 + ], + [ + 73.33824498844508, + 18.423831952255156 + ], + [ + 73.45308767192877, + 18.229184217326704 + ], + [ + 73.56793035541244, + 18.423831952255156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 18.423831952255156 + ], + [ + 73.45308767192877, + 18.229184217326704 + ], + [ + 73.68277303889612, + 18.229184217326704 + ], + [ + 73.56793035541244, + 18.423831952255156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 18.423831952255156 + ], + [ + 73.68277303889612, + 18.229184217326704 + ], + [ + 73.7976157223798, + 18.423831952255156 + ], + [ + 73.56793035541244, + 18.423831952255156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 18.81312742211206 + ], + [ + 73.7976157223798, + 18.81312742211206 + ], + [ + 73.68277303889612, + 19.007775157040513 + ], + [ + 73.56793035541244, + 18.81312742211206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 18.81312742211206 + ], + [ + 73.68277303889612, + 19.007775157040513 + ], + [ + 73.45308767192877, + 19.007775157040513 + ], + [ + 73.56793035541244, + 18.81312742211206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 18.81312742211206 + ], + [ + 73.45308767192877, + 19.007775157040513 + ], + [ + 73.33824498844508, + 18.81312742211206 + ], + [ + 73.56793035541244, + 18.81312742211206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 18.81312742211206 + ], + [ + 73.33824498844508, + 18.81312742211206 + ], + [ + 73.45308767192877, + 18.61847968718361 + ], + [ + 73.56793035541244, + 18.81312742211206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 18.81312742211206 + ], + [ + 73.45308767192877, + 18.61847968718361 + ], + [ + 73.68277303889612, + 18.61847968718361 + ], + [ + 73.56793035541244, + 18.81312742211206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 18.81312742211206 + ], + [ + 73.68277303889612, + 18.61847968718361 + ], + [ + 73.7976157223798, + 18.81312742211206 + ], + [ + 73.56793035541244, + 18.81312742211206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 19.20242289196897 + ], + [ + 73.7976157223798, + 19.20242289196897 + ], + [ + 73.68277303889612, + 19.39707062689742 + ], + [ + 73.56793035541244, + 19.20242289196897 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 19.20242289196897 + ], + [ + 73.68277303889612, + 19.39707062689742 + ], + [ + 73.45308767192877, + 19.39707062689742 + ], + [ + 73.56793035541244, + 19.20242289196897 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 19.20242289196897 + ], + [ + 73.45308767192877, + 19.39707062689742 + ], + [ + 73.33824498844508, + 19.20242289196897 + ], + [ + 73.56793035541244, + 19.20242289196897 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 19.20242289196897 + ], + [ + 73.33824498844508, + 19.20242289196897 + ], + [ + 73.45308767192877, + 19.007775157040516 + ], + [ + 73.56793035541244, + 19.20242289196897 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 19.20242289196897 + ], + [ + 73.45308767192877, + 19.007775157040516 + ], + [ + 73.68277303889612, + 19.007775157040516 + ], + [ + 73.56793035541244, + 19.20242289196897 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 19.20242289196897 + ], + [ + 73.68277303889612, + 19.007775157040516 + ], + [ + 73.7976157223798, + 19.20242289196897 + ], + [ + 73.56793035541244, + 19.20242289196897 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 19.591718361825876 + ], + [ + 73.7976157223798, + 19.591718361825876 + ], + [ + 73.68277303889612, + 19.78636609675433 + ], + [ + 73.56793035541244, + 19.591718361825876 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 19.591718361825876 + ], + [ + 73.68277303889612, + 19.78636609675433 + ], + [ + 73.45308767192877, + 19.78636609675433 + ], + [ + 73.56793035541244, + 19.591718361825876 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 19.591718361825876 + ], + [ + 73.45308767192877, + 19.78636609675433 + ], + [ + 73.33824498844508, + 19.591718361825876 + ], + [ + 73.56793035541244, + 19.591718361825876 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 19.591718361825876 + ], + [ + 73.33824498844508, + 19.591718361825876 + ], + [ + 73.45308767192877, + 19.397070626897424 + ], + [ + 73.56793035541244, + 19.591718361825876 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 19.591718361825876 + ], + [ + 73.45308767192877, + 19.397070626897424 + ], + [ + 73.68277303889612, + 19.397070626897424 + ], + [ + 73.56793035541244, + 19.591718361825876 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 19.591718361825876 + ], + [ + 73.68277303889612, + 19.397070626897424 + ], + [ + 73.7976157223798, + 19.591718361825876 + ], + [ + 73.56793035541244, + 19.591718361825876 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 19.98101383168278 + ], + [ + 73.7976157223798, + 19.98101383168278 + ], + [ + 73.68277303889612, + 20.175661566611232 + ], + [ + 73.56793035541244, + 19.98101383168278 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 19.98101383168278 + ], + [ + 73.68277303889612, + 20.175661566611232 + ], + [ + 73.45308767192877, + 20.175661566611232 + ], + [ + 73.56793035541244, + 19.98101383168278 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 19.98101383168278 + ], + [ + 73.45308767192877, + 20.175661566611232 + ], + [ + 73.33824498844508, + 19.98101383168278 + ], + [ + 73.56793035541244, + 19.98101383168278 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 19.98101383168278 + ], + [ + 73.33824498844508, + 19.98101383168278 + ], + [ + 73.45308767192877, + 19.78636609675433 + ], + [ + 73.56793035541244, + 19.98101383168278 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 19.98101383168278 + ], + [ + 73.45308767192877, + 19.78636609675433 + ], + [ + 73.68277303889612, + 19.78636609675433 + ], + [ + 73.56793035541244, + 19.98101383168278 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 19.98101383168278 + ], + [ + 73.68277303889612, + 19.78636609675433 + ], + [ + 73.7976157223798, + 19.98101383168278 + ], + [ + 73.56793035541244, + 19.98101383168278 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 20.370309301539685 + ], + [ + 73.7976157223798, + 20.370309301539685 + ], + [ + 73.68277303889612, + 20.564957036468137 + ], + [ + 73.56793035541244, + 20.370309301539685 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 20.370309301539685 + ], + [ + 73.68277303889612, + 20.564957036468137 + ], + [ + 73.45308767192877, + 20.564957036468137 + ], + [ + 73.56793035541244, + 20.370309301539685 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 20.370309301539685 + ], + [ + 73.45308767192877, + 20.564957036468137 + ], + [ + 73.33824498844508, + 20.370309301539685 + ], + [ + 73.56793035541244, + 20.370309301539685 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 20.370309301539685 + ], + [ + 73.33824498844508, + 20.370309301539685 + ], + [ + 73.45308767192877, + 20.175661566611232 + ], + [ + 73.56793035541244, + 20.370309301539685 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 20.370309301539685 + ], + [ + 73.45308767192877, + 20.175661566611232 + ], + [ + 73.68277303889612, + 20.175661566611232 + ], + [ + 73.56793035541244, + 20.370309301539685 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 20.370309301539685 + ], + [ + 73.68277303889612, + 20.175661566611232 + ], + [ + 73.7976157223798, + 20.370309301539685 + ], + [ + 73.56793035541244, + 20.370309301539685 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 20.759604771396592 + ], + [ + 73.7976157223798, + 20.759604771396592 + ], + [ + 73.68277303889612, + 20.954252506325044 + ], + [ + 73.56793035541244, + 20.759604771396592 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 20.759604771396592 + ], + [ + 73.68277303889612, + 20.954252506325044 + ], + [ + 73.45308767192877, + 20.954252506325044 + ], + [ + 73.56793035541244, + 20.759604771396592 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 20.759604771396592 + ], + [ + 73.45308767192877, + 20.954252506325044 + ], + [ + 73.33824498844508, + 20.759604771396592 + ], + [ + 73.56793035541244, + 20.759604771396592 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 20.759604771396592 + ], + [ + 73.33824498844508, + 20.759604771396592 + ], + [ + 73.45308767192877, + 20.56495703646814 + ], + [ + 73.56793035541244, + 20.759604771396592 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 20.759604771396592 + ], + [ + 73.45308767192877, + 20.56495703646814 + ], + [ + 73.68277303889612, + 20.56495703646814 + ], + [ + 73.56793035541244, + 20.759604771396592 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 20.759604771396592 + ], + [ + 73.68277303889612, + 20.56495703646814 + ], + [ + 73.7976157223798, + 20.759604771396592 + ], + [ + 73.56793035541244, + 20.759604771396592 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 21.1489002412535 + ], + [ + 73.7976157223798, + 21.1489002412535 + ], + [ + 73.68277303889612, + 21.343547976181952 + ], + [ + 73.56793035541244, + 21.1489002412535 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 21.1489002412535 + ], + [ + 73.68277303889612, + 21.343547976181952 + ], + [ + 73.45308767192877, + 21.343547976181952 + ], + [ + 73.56793035541244, + 21.1489002412535 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 21.1489002412535 + ], + [ + 73.45308767192877, + 21.343547976181952 + ], + [ + 73.33824498844508, + 21.1489002412535 + ], + [ + 73.56793035541244, + 21.1489002412535 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 21.1489002412535 + ], + [ + 73.33824498844508, + 21.1489002412535 + ], + [ + 73.45308767192877, + 20.954252506325048 + ], + [ + 73.56793035541244, + 21.1489002412535 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 21.1489002412535 + ], + [ + 73.45308767192877, + 20.954252506325048 + ], + [ + 73.68277303889612, + 20.954252506325048 + ], + [ + 73.56793035541244, + 21.1489002412535 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 21.1489002412535 + ], + [ + 73.68277303889612, + 20.954252506325048 + ], + [ + 73.7976157223798, + 21.1489002412535 + ], + [ + 73.56793035541244, + 21.1489002412535 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 21.538195711110404 + ], + [ + 73.7976157223798, + 21.538195711110404 + ], + [ + 73.68277303889612, + 21.732843446038856 + ], + [ + 73.56793035541244, + 21.538195711110404 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 21.538195711110404 + ], + [ + 73.68277303889612, + 21.732843446038856 + ], + [ + 73.45308767192877, + 21.732843446038856 + ], + [ + 73.56793035541244, + 21.538195711110404 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 21.538195711110404 + ], + [ + 73.45308767192877, + 21.732843446038856 + ], + [ + 73.33824498844508, + 21.538195711110404 + ], + [ + 73.56793035541244, + 21.538195711110404 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 21.538195711110404 + ], + [ + 73.33824498844508, + 21.538195711110404 + ], + [ + 73.45308767192877, + 21.343547976181952 + ], + [ + 73.56793035541244, + 21.538195711110404 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 21.538195711110404 + ], + [ + 73.45308767192877, + 21.343547976181952 + ], + [ + 73.68277303889612, + 21.343547976181952 + ], + [ + 73.56793035541244, + 21.538195711110404 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 21.538195711110404 + ], + [ + 73.68277303889612, + 21.343547976181952 + ], + [ + 73.7976157223798, + 21.538195711110404 + ], + [ + 73.56793035541244, + 21.538195711110404 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 21.927491180967312 + ], + [ + 73.7976157223798, + 21.927491180967312 + ], + [ + 73.68277303889612, + 22.122138915895764 + ], + [ + 73.56793035541244, + 21.927491180967312 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 21.927491180967312 + ], + [ + 73.68277303889612, + 22.122138915895764 + ], + [ + 73.45308767192877, + 22.122138915895764 + ], + [ + 73.56793035541244, + 21.927491180967312 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 21.927491180967312 + ], + [ + 73.45308767192877, + 22.122138915895764 + ], + [ + 73.33824498844508, + 21.927491180967312 + ], + [ + 73.56793035541244, + 21.927491180967312 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 21.927491180967312 + ], + [ + 73.33824498844508, + 21.927491180967312 + ], + [ + 73.45308767192877, + 21.73284344603886 + ], + [ + 73.56793035541244, + 21.927491180967312 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 21.927491180967312 + ], + [ + 73.45308767192877, + 21.73284344603886 + ], + [ + 73.68277303889612, + 21.73284344603886 + ], + [ + 73.56793035541244, + 21.927491180967312 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 21.927491180967312 + ], + [ + 73.68277303889612, + 21.73284344603886 + ], + [ + 73.7976157223798, + 21.927491180967312 + ], + [ + 73.56793035541244, + 21.927491180967312 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 22.31678665082422 + ], + [ + 73.7976157223798, + 22.31678665082422 + ], + [ + 73.68277303889612, + 22.511434385752672 + ], + [ + 73.56793035541244, + 22.31678665082422 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 22.31678665082422 + ], + [ + 73.68277303889612, + 22.511434385752672 + ], + [ + 73.45308767192877, + 22.511434385752672 + ], + [ + 73.56793035541244, + 22.31678665082422 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 22.31678665082422 + ], + [ + 73.45308767192877, + 22.511434385752672 + ], + [ + 73.33824498844508, + 22.31678665082422 + ], + [ + 73.56793035541244, + 22.31678665082422 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 22.31678665082422 + ], + [ + 73.33824498844508, + 22.31678665082422 + ], + [ + 73.45308767192877, + 22.122138915895768 + ], + [ + 73.56793035541244, + 22.31678665082422 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 22.31678665082422 + ], + [ + 73.45308767192877, + 22.122138915895768 + ], + [ + 73.68277303889612, + 22.122138915895768 + ], + [ + 73.56793035541244, + 22.31678665082422 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 22.31678665082422 + ], + [ + 73.68277303889612, + 22.122138915895768 + ], + [ + 73.7976157223798, + 22.31678665082422 + ], + [ + 73.56793035541244, + 22.31678665082422 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 22.706082120681124 + ], + [ + 73.7976157223798, + 22.706082120681124 + ], + [ + 73.68277303889612, + 22.900729855609576 + ], + [ + 73.56793035541244, + 22.706082120681124 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 22.706082120681124 + ], + [ + 73.68277303889612, + 22.900729855609576 + ], + [ + 73.45308767192877, + 22.900729855609576 + ], + [ + 73.56793035541244, + 22.706082120681124 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 22.706082120681124 + ], + [ + 73.45308767192877, + 22.900729855609576 + ], + [ + 73.33824498844508, + 22.706082120681124 + ], + [ + 73.56793035541244, + 22.706082120681124 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 22.706082120681124 + ], + [ + 73.33824498844508, + 22.706082120681124 + ], + [ + 73.45308767192877, + 22.511434385752672 + ], + [ + 73.56793035541244, + 22.706082120681124 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 22.706082120681124 + ], + [ + 73.45308767192877, + 22.511434385752672 + ], + [ + 73.68277303889612, + 22.511434385752672 + ], + [ + 73.56793035541244, + 22.706082120681124 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 22.706082120681124 + ], + [ + 73.68277303889612, + 22.511434385752672 + ], + [ + 73.7976157223798, + 22.706082120681124 + ], + [ + 73.56793035541244, + 22.706082120681124 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 23.095377590538032 + ], + [ + 73.7976157223798, + 23.095377590538032 + ], + [ + 73.68277303889612, + 23.290025325466484 + ], + [ + 73.56793035541244, + 23.095377590538032 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 23.095377590538032 + ], + [ + 73.68277303889612, + 23.290025325466484 + ], + [ + 73.45308767192877, + 23.290025325466484 + ], + [ + 73.56793035541244, + 23.095377590538032 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 23.095377590538032 + ], + [ + 73.45308767192877, + 23.290025325466484 + ], + [ + 73.33824498844508, + 23.095377590538032 + ], + [ + 73.56793035541244, + 23.095377590538032 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 23.095377590538032 + ], + [ + 73.33824498844508, + 23.095377590538032 + ], + [ + 73.45308767192877, + 22.90072985560958 + ], + [ + 73.56793035541244, + 23.095377590538032 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 23.095377590538032 + ], + [ + 73.45308767192877, + 22.90072985560958 + ], + [ + 73.68277303889612, + 22.90072985560958 + ], + [ + 73.56793035541244, + 23.095377590538032 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 23.095377590538032 + ], + [ + 73.68277303889612, + 22.90072985560958 + ], + [ + 73.7976157223798, + 23.095377590538032 + ], + [ + 73.56793035541244, + 23.095377590538032 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 23.48467306039494 + ], + [ + 73.7976157223798, + 23.48467306039494 + ], + [ + 73.68277303889612, + 23.67932079532339 + ], + [ + 73.56793035541244, + 23.48467306039494 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 23.48467306039494 + ], + [ + 73.68277303889612, + 23.67932079532339 + ], + [ + 73.45308767192877, + 23.67932079532339 + ], + [ + 73.56793035541244, + 23.48467306039494 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 23.48467306039494 + ], + [ + 73.45308767192877, + 23.67932079532339 + ], + [ + 73.33824498844508, + 23.48467306039494 + ], + [ + 73.56793035541244, + 23.48467306039494 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 23.48467306039494 + ], + [ + 73.33824498844508, + 23.48467306039494 + ], + [ + 73.45308767192877, + 23.290025325466488 + ], + [ + 73.56793035541244, + 23.48467306039494 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 23.48467306039494 + ], + [ + 73.45308767192877, + 23.290025325466488 + ], + [ + 73.68277303889612, + 23.290025325466488 + ], + [ + 73.56793035541244, + 23.48467306039494 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 23.48467306039494 + ], + [ + 73.68277303889612, + 23.290025325466488 + ], + [ + 73.7976157223798, + 23.48467306039494 + ], + [ + 73.56793035541244, + 23.48467306039494 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 23.873968530251844 + ], + [ + 73.7976157223798, + 23.873968530251844 + ], + [ + 73.68277303889612, + 24.068616265180296 + ], + [ + 73.56793035541244, + 23.873968530251844 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 23.873968530251844 + ], + [ + 73.68277303889612, + 24.068616265180296 + ], + [ + 73.45308767192877, + 24.068616265180296 + ], + [ + 73.56793035541244, + 23.873968530251844 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 23.873968530251844 + ], + [ + 73.45308767192877, + 24.068616265180296 + ], + [ + 73.33824498844508, + 23.873968530251844 + ], + [ + 73.56793035541244, + 23.873968530251844 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 23.873968530251844 + ], + [ + 73.33824498844508, + 23.873968530251844 + ], + [ + 73.45308767192877, + 23.67932079532339 + ], + [ + 73.56793035541244, + 23.873968530251844 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 23.873968530251844 + ], + [ + 73.45308767192877, + 23.67932079532339 + ], + [ + 73.68277303889612, + 23.67932079532339 + ], + [ + 73.56793035541244, + 23.873968530251844 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 23.873968530251844 + ], + [ + 73.68277303889612, + 23.67932079532339 + ], + [ + 73.7976157223798, + 23.873968530251844 + ], + [ + 73.56793035541244, + 23.873968530251844 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 24.263264000108748 + ], + [ + 73.7976157223798, + 24.263264000108748 + ], + [ + 73.68277303889612, + 24.4579117350372 + ], + [ + 73.56793035541244, + 24.263264000108748 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 24.263264000108748 + ], + [ + 73.68277303889612, + 24.4579117350372 + ], + [ + 73.45308767192877, + 24.4579117350372 + ], + [ + 73.56793035541244, + 24.263264000108748 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 24.263264000108748 + ], + [ + 73.45308767192877, + 24.4579117350372 + ], + [ + 73.33824498844508, + 24.263264000108748 + ], + [ + 73.56793035541244, + 24.263264000108748 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 24.263264000108748 + ], + [ + 73.33824498844508, + 24.263264000108748 + ], + [ + 73.45308767192877, + 24.068616265180296 + ], + [ + 73.56793035541244, + 24.263264000108748 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 24.263264000108748 + ], + [ + 73.45308767192877, + 24.068616265180296 + ], + [ + 73.68277303889612, + 24.068616265180296 + ], + [ + 73.56793035541244, + 24.263264000108748 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 24.263264000108748 + ], + [ + 73.68277303889612, + 24.068616265180296 + ], + [ + 73.7976157223798, + 24.263264000108748 + ], + [ + 73.56793035541244, + 24.263264000108748 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 24.652559469965656 + ], + [ + 73.7976157223798, + 24.652559469965656 + ], + [ + 73.68277303889612, + 24.847207204894108 + ], + [ + 73.56793035541244, + 24.652559469965656 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 24.652559469965656 + ], + [ + 73.68277303889612, + 24.847207204894108 + ], + [ + 73.45308767192877, + 24.847207204894108 + ], + [ + 73.56793035541244, + 24.652559469965656 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 24.652559469965656 + ], + [ + 73.45308767192877, + 24.847207204894108 + ], + [ + 73.33824498844508, + 24.652559469965656 + ], + [ + 73.56793035541244, + 24.652559469965656 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 24.652559469965656 + ], + [ + 73.33824498844508, + 24.652559469965656 + ], + [ + 73.45308767192877, + 24.457911735037204 + ], + [ + 73.56793035541244, + 24.652559469965656 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 24.652559469965656 + ], + [ + 73.45308767192877, + 24.457911735037204 + ], + [ + 73.68277303889612, + 24.457911735037204 + ], + [ + 73.56793035541244, + 24.652559469965656 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 24.652559469965656 + ], + [ + 73.68277303889612, + 24.457911735037204 + ], + [ + 73.7976157223798, + 24.652559469965656 + ], + [ + 73.56793035541244, + 24.652559469965656 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 25.041854939822564 + ], + [ + 73.7976157223798, + 25.041854939822564 + ], + [ + 73.68277303889612, + 25.236502674751016 + ], + [ + 73.56793035541244, + 25.041854939822564 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 25.041854939822564 + ], + [ + 73.68277303889612, + 25.236502674751016 + ], + [ + 73.45308767192877, + 25.236502674751016 + ], + [ + 73.56793035541244, + 25.041854939822564 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 25.041854939822564 + ], + [ + 73.45308767192877, + 25.236502674751016 + ], + [ + 73.33824498844508, + 25.041854939822564 + ], + [ + 73.56793035541244, + 25.041854939822564 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 25.041854939822564 + ], + [ + 73.33824498844508, + 25.041854939822564 + ], + [ + 73.45308767192877, + 24.84720720489411 + ], + [ + 73.56793035541244, + 25.041854939822564 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 25.041854939822564 + ], + [ + 73.45308767192877, + 24.84720720489411 + ], + [ + 73.68277303889612, + 24.84720720489411 + ], + [ + 73.56793035541244, + 25.041854939822564 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 25.041854939822564 + ], + [ + 73.68277303889612, + 24.84720720489411 + ], + [ + 73.7976157223798, + 25.041854939822564 + ], + [ + 73.56793035541244, + 25.041854939822564 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 25.431150409679468 + ], + [ + 73.7976157223798, + 25.431150409679468 + ], + [ + 73.68277303889612, + 25.62579814460792 + ], + [ + 73.56793035541244, + 25.431150409679468 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 25.431150409679468 + ], + [ + 73.68277303889612, + 25.62579814460792 + ], + [ + 73.45308767192877, + 25.62579814460792 + ], + [ + 73.56793035541244, + 25.431150409679468 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 25.431150409679468 + ], + [ + 73.45308767192877, + 25.62579814460792 + ], + [ + 73.33824498844508, + 25.431150409679468 + ], + [ + 73.56793035541244, + 25.431150409679468 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 25.431150409679468 + ], + [ + 73.33824498844508, + 25.431150409679468 + ], + [ + 73.45308767192877, + 25.236502674751016 + ], + [ + 73.56793035541244, + 25.431150409679468 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 25.431150409679468 + ], + [ + 73.45308767192877, + 25.236502674751016 + ], + [ + 73.68277303889612, + 25.236502674751016 + ], + [ + 73.56793035541244, + 25.431150409679468 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 25.431150409679468 + ], + [ + 73.68277303889612, + 25.236502674751016 + ], + [ + 73.7976157223798, + 25.431150409679468 + ], + [ + 73.56793035541244, + 25.431150409679468 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 25.820445879536376 + ], + [ + 73.7976157223798, + 25.820445879536376 + ], + [ + 73.68277303889612, + 26.015093614464828 + ], + [ + 73.56793035541244, + 25.820445879536376 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 25.820445879536376 + ], + [ + 73.68277303889612, + 26.015093614464828 + ], + [ + 73.45308767192877, + 26.015093614464828 + ], + [ + 73.56793035541244, + 25.820445879536376 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 25.820445879536376 + ], + [ + 73.45308767192877, + 26.015093614464828 + ], + [ + 73.33824498844508, + 25.820445879536376 + ], + [ + 73.56793035541244, + 25.820445879536376 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 25.820445879536376 + ], + [ + 73.33824498844508, + 25.820445879536376 + ], + [ + 73.45308767192877, + 25.625798144607923 + ], + [ + 73.56793035541244, + 25.820445879536376 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 25.820445879536376 + ], + [ + 73.45308767192877, + 25.625798144607923 + ], + [ + 73.68277303889612, + 25.625798144607923 + ], + [ + 73.56793035541244, + 25.820445879536376 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 25.820445879536376 + ], + [ + 73.68277303889612, + 25.625798144607923 + ], + [ + 73.7976157223798, + 25.820445879536376 + ], + [ + 73.56793035541244, + 25.820445879536376 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 26.209741349393283 + ], + [ + 73.7976157223798, + 26.209741349393283 + ], + [ + 73.68277303889612, + 26.404389084321735 + ], + [ + 73.56793035541244, + 26.209741349393283 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 26.209741349393283 + ], + [ + 73.68277303889612, + 26.404389084321735 + ], + [ + 73.45308767192877, + 26.404389084321735 + ], + [ + 73.56793035541244, + 26.209741349393283 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 26.209741349393283 + ], + [ + 73.45308767192877, + 26.404389084321735 + ], + [ + 73.33824498844508, + 26.209741349393283 + ], + [ + 73.56793035541244, + 26.209741349393283 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 26.209741349393283 + ], + [ + 73.33824498844508, + 26.209741349393283 + ], + [ + 73.45308767192877, + 26.01509361446483 + ], + [ + 73.56793035541244, + 26.209741349393283 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 26.209741349393283 + ], + [ + 73.45308767192877, + 26.01509361446483 + ], + [ + 73.68277303889612, + 26.01509361446483 + ], + [ + 73.56793035541244, + 26.209741349393283 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 26.209741349393283 + ], + [ + 73.68277303889612, + 26.01509361446483 + ], + [ + 73.7976157223798, + 26.209741349393283 + ], + [ + 73.56793035541244, + 26.209741349393283 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 26.599036819250188 + ], + [ + 73.7976157223798, + 26.599036819250188 + ], + [ + 73.68277303889612, + 26.79368455417864 + ], + [ + 73.56793035541244, + 26.599036819250188 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 26.599036819250188 + ], + [ + 73.68277303889612, + 26.79368455417864 + ], + [ + 73.45308767192877, + 26.79368455417864 + ], + [ + 73.56793035541244, + 26.599036819250188 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 26.599036819250188 + ], + [ + 73.45308767192877, + 26.79368455417864 + ], + [ + 73.33824498844508, + 26.599036819250188 + ], + [ + 73.56793035541244, + 26.599036819250188 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 26.599036819250188 + ], + [ + 73.33824498844508, + 26.599036819250188 + ], + [ + 73.45308767192877, + 26.404389084321735 + ], + [ + 73.56793035541244, + 26.599036819250188 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 26.599036819250188 + ], + [ + 73.45308767192877, + 26.404389084321735 + ], + [ + 73.68277303889612, + 26.404389084321735 + ], + [ + 73.56793035541244, + 26.599036819250188 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 26.599036819250188 + ], + [ + 73.68277303889612, + 26.404389084321735 + ], + [ + 73.7976157223798, + 26.599036819250188 + ], + [ + 73.56793035541244, + 26.599036819250188 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 26.988332289107095 + ], + [ + 73.7976157223798, + 26.988332289107095 + ], + [ + 73.68277303889612, + 27.182980024035547 + ], + [ + 73.56793035541244, + 26.988332289107095 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 26.988332289107095 + ], + [ + 73.68277303889612, + 27.182980024035547 + ], + [ + 73.45308767192877, + 27.182980024035547 + ], + [ + 73.56793035541244, + 26.988332289107095 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 26.988332289107095 + ], + [ + 73.45308767192877, + 27.182980024035547 + ], + [ + 73.33824498844508, + 26.988332289107095 + ], + [ + 73.56793035541244, + 26.988332289107095 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 26.988332289107095 + ], + [ + 73.33824498844508, + 26.988332289107095 + ], + [ + 73.45308767192877, + 26.793684554178643 + ], + [ + 73.56793035541244, + 26.988332289107095 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 26.988332289107095 + ], + [ + 73.45308767192877, + 26.793684554178643 + ], + [ + 73.68277303889612, + 26.793684554178643 + ], + [ + 73.56793035541244, + 26.988332289107095 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 26.988332289107095 + ], + [ + 73.68277303889612, + 26.793684554178643 + ], + [ + 73.7976157223798, + 26.988332289107095 + ], + [ + 73.56793035541244, + 26.988332289107095 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 27.377627758964003 + ], + [ + 73.7976157223798, + 27.377627758964003 + ], + [ + 73.68277303889612, + 27.572275493892455 + ], + [ + 73.56793035541244, + 27.377627758964003 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 27.377627758964003 + ], + [ + 73.68277303889612, + 27.572275493892455 + ], + [ + 73.45308767192877, + 27.572275493892455 + ], + [ + 73.56793035541244, + 27.377627758964003 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 27.377627758964003 + ], + [ + 73.45308767192877, + 27.572275493892455 + ], + [ + 73.33824498844508, + 27.377627758964003 + ], + [ + 73.56793035541244, + 27.377627758964003 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 27.377627758964003 + ], + [ + 73.33824498844508, + 27.377627758964003 + ], + [ + 73.45308767192877, + 27.18298002403555 + ], + [ + 73.56793035541244, + 27.377627758964003 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 27.377627758964003 + ], + [ + 73.45308767192877, + 27.18298002403555 + ], + [ + 73.68277303889612, + 27.18298002403555 + ], + [ + 73.56793035541244, + 27.377627758964003 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 27.377627758964003 + ], + [ + 73.68277303889612, + 27.18298002403555 + ], + [ + 73.7976157223798, + 27.377627758964003 + ], + [ + 73.56793035541244, + 27.377627758964003 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 27.766923228820907 + ], + [ + 73.7976157223798, + 27.766923228820907 + ], + [ + 73.68277303889612, + 27.96157096374936 + ], + [ + 73.56793035541244, + 27.766923228820907 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 27.766923228820907 + ], + [ + 73.68277303889612, + 27.96157096374936 + ], + [ + 73.45308767192877, + 27.96157096374936 + ], + [ + 73.56793035541244, + 27.766923228820907 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 27.766923228820907 + ], + [ + 73.45308767192877, + 27.96157096374936 + ], + [ + 73.33824498844508, + 27.766923228820907 + ], + [ + 73.56793035541244, + 27.766923228820907 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 27.766923228820907 + ], + [ + 73.33824498844508, + 27.766923228820907 + ], + [ + 73.45308767192877, + 27.572275493892455 + ], + [ + 73.56793035541244, + 27.766923228820907 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 27.766923228820907 + ], + [ + 73.45308767192877, + 27.572275493892455 + ], + [ + 73.68277303889612, + 27.572275493892455 + ], + [ + 73.56793035541244, + 27.766923228820907 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 27.766923228820907 + ], + [ + 73.68277303889612, + 27.572275493892455 + ], + [ + 73.7976157223798, + 27.766923228820907 + ], + [ + 73.56793035541244, + 27.766923228820907 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 28.156218698677815 + ], + [ + 73.7976157223798, + 28.156218698677815 + ], + [ + 73.68277303889612, + 28.350866433606267 + ], + [ + 73.56793035541244, + 28.156218698677815 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 28.156218698677815 + ], + [ + 73.68277303889612, + 28.350866433606267 + ], + [ + 73.45308767192877, + 28.350866433606267 + ], + [ + 73.56793035541244, + 28.156218698677815 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 28.156218698677815 + ], + [ + 73.45308767192877, + 28.350866433606267 + ], + [ + 73.33824498844508, + 28.156218698677815 + ], + [ + 73.56793035541244, + 28.156218698677815 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 28.156218698677815 + ], + [ + 73.33824498844508, + 28.156218698677815 + ], + [ + 73.45308767192877, + 27.961570963749363 + ], + [ + 73.56793035541244, + 28.156218698677815 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 28.156218698677815 + ], + [ + 73.45308767192877, + 27.961570963749363 + ], + [ + 73.68277303889612, + 27.961570963749363 + ], + [ + 73.56793035541244, + 28.156218698677815 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 28.156218698677815 + ], + [ + 73.68277303889612, + 27.961570963749363 + ], + [ + 73.7976157223798, + 28.156218698677815 + ], + [ + 73.56793035541244, + 28.156218698677815 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 28.54551416853472 + ], + [ + 73.7976157223798, + 28.54551416853472 + ], + [ + 73.68277303889612, + 28.74016190346317 + ], + [ + 73.56793035541244, + 28.54551416853472 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 28.54551416853472 + ], + [ + 73.68277303889612, + 28.74016190346317 + ], + [ + 73.45308767192877, + 28.74016190346317 + ], + [ + 73.56793035541244, + 28.54551416853472 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 28.54551416853472 + ], + [ + 73.45308767192877, + 28.74016190346317 + ], + [ + 73.33824498844508, + 28.54551416853472 + ], + [ + 73.56793035541244, + 28.54551416853472 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 28.54551416853472 + ], + [ + 73.33824498844508, + 28.54551416853472 + ], + [ + 73.45308767192877, + 28.350866433606267 + ], + [ + 73.56793035541244, + 28.54551416853472 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 28.54551416853472 + ], + [ + 73.45308767192877, + 28.350866433606267 + ], + [ + 73.68277303889612, + 28.350866433606267 + ], + [ + 73.56793035541244, + 28.54551416853472 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 28.54551416853472 + ], + [ + 73.68277303889612, + 28.350866433606267 + ], + [ + 73.7976157223798, + 28.54551416853472 + ], + [ + 73.56793035541244, + 28.54551416853472 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 28.934809638391627 + ], + [ + 73.7976157223798, + 28.934809638391627 + ], + [ + 73.68277303889612, + 29.12945737332008 + ], + [ + 73.56793035541244, + 28.934809638391627 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 28.934809638391627 + ], + [ + 73.68277303889612, + 29.12945737332008 + ], + [ + 73.45308767192877, + 29.12945737332008 + ], + [ + 73.56793035541244, + 28.934809638391627 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 28.934809638391627 + ], + [ + 73.45308767192877, + 29.12945737332008 + ], + [ + 73.33824498844508, + 28.934809638391627 + ], + [ + 73.56793035541244, + 28.934809638391627 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 28.934809638391627 + ], + [ + 73.33824498844508, + 28.934809638391627 + ], + [ + 73.45308767192877, + 28.740161903463175 + ], + [ + 73.56793035541244, + 28.934809638391627 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 28.934809638391627 + ], + [ + 73.45308767192877, + 28.740161903463175 + ], + [ + 73.68277303889612, + 28.740161903463175 + ], + [ + 73.56793035541244, + 28.934809638391627 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 28.934809638391627 + ], + [ + 73.68277303889612, + 28.740161903463175 + ], + [ + 73.7976157223798, + 28.934809638391627 + ], + [ + 73.56793035541244, + 28.934809638391627 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 29.32410510824853 + ], + [ + 73.7976157223798, + 29.32410510824853 + ], + [ + 73.68277303889612, + 29.518752843176983 + ], + [ + 73.56793035541244, + 29.32410510824853 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 29.32410510824853 + ], + [ + 73.68277303889612, + 29.518752843176983 + ], + [ + 73.45308767192877, + 29.518752843176983 + ], + [ + 73.56793035541244, + 29.32410510824853 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 29.32410510824853 + ], + [ + 73.45308767192877, + 29.518752843176983 + ], + [ + 73.33824498844508, + 29.32410510824853 + ], + [ + 73.56793035541244, + 29.32410510824853 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 29.32410510824853 + ], + [ + 73.33824498844508, + 29.32410510824853 + ], + [ + 73.45308767192877, + 29.12945737332008 + ], + [ + 73.56793035541244, + 29.32410510824853 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 29.32410510824853 + ], + [ + 73.45308767192877, + 29.12945737332008 + ], + [ + 73.68277303889612, + 29.12945737332008 + ], + [ + 73.56793035541244, + 29.32410510824853 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 29.32410510824853 + ], + [ + 73.68277303889612, + 29.12945737332008 + ], + [ + 73.7976157223798, + 29.32410510824853 + ], + [ + 73.56793035541244, + 29.32410510824853 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 29.71340057810544 + ], + [ + 73.7976157223798, + 29.71340057810544 + ], + [ + 73.68277303889612, + 29.90804831303389 + ], + [ + 73.56793035541244, + 29.71340057810544 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 29.71340057810544 + ], + [ + 73.68277303889612, + 29.90804831303389 + ], + [ + 73.45308767192877, + 29.90804831303389 + ], + [ + 73.56793035541244, + 29.71340057810544 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 29.71340057810544 + ], + [ + 73.45308767192877, + 29.90804831303389 + ], + [ + 73.33824498844508, + 29.71340057810544 + ], + [ + 73.56793035541244, + 29.71340057810544 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 29.71340057810544 + ], + [ + 73.33824498844508, + 29.71340057810544 + ], + [ + 73.45308767192877, + 29.518752843176987 + ], + [ + 73.56793035541244, + 29.71340057810544 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 29.71340057810544 + ], + [ + 73.45308767192877, + 29.518752843176987 + ], + [ + 73.68277303889612, + 29.518752843176987 + ], + [ + 73.56793035541244, + 29.71340057810544 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 29.71340057810544 + ], + [ + 73.68277303889612, + 29.518752843176987 + ], + [ + 73.7976157223798, + 29.71340057810544 + ], + [ + 73.56793035541244, + 29.71340057810544 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 30.102696047962343 + ], + [ + 73.7976157223798, + 30.102696047962343 + ], + [ + 73.68277303889612, + 30.297343782890795 + ], + [ + 73.56793035541244, + 30.102696047962343 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 30.102696047962343 + ], + [ + 73.68277303889612, + 30.297343782890795 + ], + [ + 73.45308767192877, + 30.297343782890795 + ], + [ + 73.56793035541244, + 30.102696047962343 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 30.102696047962343 + ], + [ + 73.45308767192877, + 30.297343782890795 + ], + [ + 73.33824498844508, + 30.102696047962343 + ], + [ + 73.56793035541244, + 30.102696047962343 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 30.102696047962343 + ], + [ + 73.33824498844508, + 30.102696047962343 + ], + [ + 73.45308767192877, + 29.90804831303389 + ], + [ + 73.56793035541244, + 30.102696047962343 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 30.102696047962343 + ], + [ + 73.45308767192877, + 29.90804831303389 + ], + [ + 73.68277303889612, + 29.90804831303389 + ], + [ + 73.56793035541244, + 30.102696047962343 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 30.102696047962343 + ], + [ + 73.68277303889612, + 29.90804831303389 + ], + [ + 73.7976157223798, + 30.102696047962343 + ], + [ + 73.56793035541244, + 30.102696047962343 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 30.49199151781925 + ], + [ + 73.7976157223798, + 30.49199151781925 + ], + [ + 73.68277303889612, + 30.686639252747703 + ], + [ + 73.56793035541244, + 30.49199151781925 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 30.49199151781925 + ], + [ + 73.68277303889612, + 30.686639252747703 + ], + [ + 73.45308767192877, + 30.686639252747703 + ], + [ + 73.56793035541244, + 30.49199151781925 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 30.49199151781925 + ], + [ + 73.45308767192877, + 30.686639252747703 + ], + [ + 73.33824498844508, + 30.49199151781925 + ], + [ + 73.56793035541244, + 30.49199151781925 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 30.49199151781925 + ], + [ + 73.33824498844508, + 30.49199151781925 + ], + [ + 73.45308767192877, + 30.2973437828908 + ], + [ + 73.56793035541244, + 30.49199151781925 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 30.49199151781925 + ], + [ + 73.45308767192877, + 30.2973437828908 + ], + [ + 73.68277303889612, + 30.2973437828908 + ], + [ + 73.56793035541244, + 30.49199151781925 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 30.49199151781925 + ], + [ + 73.68277303889612, + 30.2973437828908 + ], + [ + 73.7976157223798, + 30.49199151781925 + ], + [ + 73.56793035541244, + 30.49199151781925 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 30.88128698767616 + ], + [ + 73.7976157223798, + 30.88128698767616 + ], + [ + 73.68277303889612, + 31.07593472260461 + ], + [ + 73.56793035541244, + 30.88128698767616 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 30.88128698767616 + ], + [ + 73.68277303889612, + 31.07593472260461 + ], + [ + 73.45308767192877, + 31.07593472260461 + ], + [ + 73.56793035541244, + 30.88128698767616 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 30.88128698767616 + ], + [ + 73.45308767192877, + 31.07593472260461 + ], + [ + 73.33824498844508, + 30.88128698767616 + ], + [ + 73.56793035541244, + 30.88128698767616 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 30.88128698767616 + ], + [ + 73.33824498844508, + 30.88128698767616 + ], + [ + 73.45308767192877, + 30.686639252747707 + ], + [ + 73.56793035541244, + 30.88128698767616 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 30.88128698767616 + ], + [ + 73.45308767192877, + 30.686639252747707 + ], + [ + 73.68277303889612, + 30.686639252747707 + ], + [ + 73.56793035541244, + 30.88128698767616 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 30.88128698767616 + ], + [ + 73.68277303889612, + 30.686639252747707 + ], + [ + 73.7976157223798, + 30.88128698767616 + ], + [ + 73.56793035541244, + 30.88128698767616 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 31.270582457533063 + ], + [ + 73.7976157223798, + 31.270582457533063 + ], + [ + 73.68277303889612, + 31.465230192461515 + ], + [ + 73.56793035541244, + 31.270582457533063 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 31.270582457533063 + ], + [ + 73.68277303889612, + 31.465230192461515 + ], + [ + 73.45308767192877, + 31.465230192461515 + ], + [ + 73.56793035541244, + 31.270582457533063 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 31.270582457533063 + ], + [ + 73.45308767192877, + 31.465230192461515 + ], + [ + 73.33824498844508, + 31.270582457533063 + ], + [ + 73.56793035541244, + 31.270582457533063 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 31.270582457533063 + ], + [ + 73.33824498844508, + 31.270582457533063 + ], + [ + 73.45308767192877, + 31.07593472260461 + ], + [ + 73.56793035541244, + 31.270582457533063 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 31.270582457533063 + ], + [ + 73.45308767192877, + 31.07593472260461 + ], + [ + 73.68277303889612, + 31.07593472260461 + ], + [ + 73.56793035541244, + 31.270582457533063 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 31.270582457533063 + ], + [ + 73.68277303889612, + 31.07593472260461 + ], + [ + 73.7976157223798, + 31.270582457533063 + ], + [ + 73.56793035541244, + 31.270582457533063 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 31.65987792738997 + ], + [ + 73.7976157223798, + 31.65987792738997 + ], + [ + 73.68277303889612, + 31.854525662318423 + ], + [ + 73.56793035541244, + 31.65987792738997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 31.65987792738997 + ], + [ + 73.68277303889612, + 31.854525662318423 + ], + [ + 73.45308767192877, + 31.854525662318423 + ], + [ + 73.56793035541244, + 31.65987792738997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 31.65987792738997 + ], + [ + 73.45308767192877, + 31.854525662318423 + ], + [ + 73.33824498844508, + 31.65987792738997 + ], + [ + 73.56793035541244, + 31.65987792738997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 31.65987792738997 + ], + [ + 73.33824498844508, + 31.65987792738997 + ], + [ + 73.45308767192877, + 31.46523019246152 + ], + [ + 73.56793035541244, + 31.65987792738997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 31.65987792738997 + ], + [ + 73.45308767192877, + 31.46523019246152 + ], + [ + 73.68277303889612, + 31.46523019246152 + ], + [ + 73.56793035541244, + 31.65987792738997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 31.65987792738997 + ], + [ + 73.68277303889612, + 31.46523019246152 + ], + [ + 73.7976157223798, + 31.65987792738997 + ], + [ + 73.56793035541244, + 31.65987792738997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 32.049173397246875 + ], + [ + 73.7976157223798, + 32.049173397246875 + ], + [ + 73.68277303889612, + 32.24382113217533 + ], + [ + 73.56793035541244, + 32.049173397246875 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 32.049173397246875 + ], + [ + 73.68277303889612, + 32.24382113217533 + ], + [ + 73.45308767192877, + 32.24382113217533 + ], + [ + 73.56793035541244, + 32.049173397246875 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 32.049173397246875 + ], + [ + 73.45308767192877, + 32.24382113217533 + ], + [ + 73.33824498844508, + 32.049173397246875 + ], + [ + 73.56793035541244, + 32.049173397246875 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 32.049173397246875 + ], + [ + 73.33824498844508, + 32.049173397246875 + ], + [ + 73.45308767192877, + 31.854525662318423 + ], + [ + 73.56793035541244, + 32.049173397246875 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 32.049173397246875 + ], + [ + 73.45308767192877, + 31.854525662318423 + ], + [ + 73.68277303889612, + 31.854525662318423 + ], + [ + 73.56793035541244, + 32.049173397246875 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 32.049173397246875 + ], + [ + 73.68277303889612, + 31.854525662318423 + ], + [ + 73.7976157223798, + 32.049173397246875 + ], + [ + 73.56793035541244, + 32.049173397246875 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 32.438468867103786 + ], + [ + 73.7976157223798, + 32.438468867103786 + ], + [ + 73.68277303889612, + 32.63311660203224 + ], + [ + 73.56793035541244, + 32.438468867103786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 32.438468867103786 + ], + [ + 73.68277303889612, + 32.63311660203224 + ], + [ + 73.45308767192877, + 32.63311660203224 + ], + [ + 73.56793035541244, + 32.438468867103786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 32.438468867103786 + ], + [ + 73.45308767192877, + 32.63311660203224 + ], + [ + 73.33824498844508, + 32.438468867103786 + ], + [ + 73.56793035541244, + 32.438468867103786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 32.438468867103786 + ], + [ + 73.33824498844508, + 32.438468867103786 + ], + [ + 73.45308767192877, + 32.243821132175334 + ], + [ + 73.56793035541244, + 32.438468867103786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 32.438468867103786 + ], + [ + 73.45308767192877, + 32.243821132175334 + ], + [ + 73.68277303889612, + 32.243821132175334 + ], + [ + 73.56793035541244, + 32.438468867103786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 32.438468867103786 + ], + [ + 73.68277303889612, + 32.243821132175334 + ], + [ + 73.7976157223798, + 32.438468867103786 + ], + [ + 73.56793035541244, + 32.438468867103786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 32.82776433696069 + ], + [ + 73.7976157223798, + 32.82776433696069 + ], + [ + 73.68277303889612, + 33.02241207188914 + ], + [ + 73.56793035541244, + 32.82776433696069 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 32.82776433696069 + ], + [ + 73.68277303889612, + 33.02241207188914 + ], + [ + 73.45308767192877, + 33.02241207188914 + ], + [ + 73.56793035541244, + 32.82776433696069 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 32.82776433696069 + ], + [ + 73.45308767192877, + 33.02241207188914 + ], + [ + 73.33824498844508, + 32.82776433696069 + ], + [ + 73.56793035541244, + 32.82776433696069 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 32.82776433696069 + ], + [ + 73.33824498844508, + 32.82776433696069 + ], + [ + 73.45308767192877, + 32.63311660203224 + ], + [ + 73.56793035541244, + 32.82776433696069 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 32.82776433696069 + ], + [ + 73.45308767192877, + 32.63311660203224 + ], + [ + 73.68277303889612, + 32.63311660203224 + ], + [ + 73.56793035541244, + 32.82776433696069 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 32.82776433696069 + ], + [ + 73.68277303889612, + 32.63311660203224 + ], + [ + 73.7976157223798, + 32.82776433696069 + ], + [ + 73.56793035541244, + 32.82776433696069 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 33.217059806817595 + ], + [ + 73.7976157223798, + 33.217059806817595 + ], + [ + 73.68277303889612, + 33.41170754174605 + ], + [ + 73.56793035541244, + 33.217059806817595 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 33.217059806817595 + ], + [ + 73.68277303889612, + 33.41170754174605 + ], + [ + 73.45308767192877, + 33.41170754174605 + ], + [ + 73.56793035541244, + 33.217059806817595 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 33.217059806817595 + ], + [ + 73.45308767192877, + 33.41170754174605 + ], + [ + 73.33824498844508, + 33.217059806817595 + ], + [ + 73.56793035541244, + 33.217059806817595 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 33.217059806817595 + ], + [ + 73.33824498844508, + 33.217059806817595 + ], + [ + 73.45308767192877, + 33.02241207188914 + ], + [ + 73.56793035541244, + 33.217059806817595 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 33.217059806817595 + ], + [ + 73.45308767192877, + 33.02241207188914 + ], + [ + 73.68277303889612, + 33.02241207188914 + ], + [ + 73.56793035541244, + 33.217059806817595 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 33.217059806817595 + ], + [ + 73.68277303889612, + 33.02241207188914 + ], + [ + 73.7976157223798, + 33.217059806817595 + ], + [ + 73.56793035541244, + 33.217059806817595 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 33.6063552766745 + ], + [ + 73.7976157223798, + 33.6063552766745 + ], + [ + 73.68277303889612, + 33.80100301160295 + ], + [ + 73.56793035541244, + 33.6063552766745 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 33.6063552766745 + ], + [ + 73.68277303889612, + 33.80100301160295 + ], + [ + 73.45308767192877, + 33.80100301160295 + ], + [ + 73.56793035541244, + 33.6063552766745 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 33.6063552766745 + ], + [ + 73.45308767192877, + 33.80100301160295 + ], + [ + 73.33824498844508, + 33.6063552766745 + ], + [ + 73.56793035541244, + 33.6063552766745 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 33.6063552766745 + ], + [ + 73.33824498844508, + 33.6063552766745 + ], + [ + 73.45308767192877, + 33.41170754174605 + ], + [ + 73.56793035541244, + 33.6063552766745 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 33.6063552766745 + ], + [ + 73.45308767192877, + 33.41170754174605 + ], + [ + 73.68277303889612, + 33.41170754174605 + ], + [ + 73.56793035541244, + 33.6063552766745 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 33.6063552766745 + ], + [ + 73.68277303889612, + 33.41170754174605 + ], + [ + 73.7976157223798, + 33.6063552766745 + ], + [ + 73.56793035541244, + 33.6063552766745 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 33.9956507465314 + ], + [ + 73.7976157223798, + 33.9956507465314 + ], + [ + 73.68277303889612, + 34.190298481459855 + ], + [ + 73.56793035541244, + 33.9956507465314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 33.9956507465314 + ], + [ + 73.68277303889612, + 34.190298481459855 + ], + [ + 73.45308767192877, + 34.190298481459855 + ], + [ + 73.56793035541244, + 33.9956507465314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 33.9956507465314 + ], + [ + 73.45308767192877, + 34.190298481459855 + ], + [ + 73.33824498844508, + 33.9956507465314 + ], + [ + 73.56793035541244, + 33.9956507465314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 33.9956507465314 + ], + [ + 73.33824498844508, + 33.9956507465314 + ], + [ + 73.45308767192877, + 33.80100301160295 + ], + [ + 73.56793035541244, + 33.9956507465314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 33.9956507465314 + ], + [ + 73.45308767192877, + 33.80100301160295 + ], + [ + 73.68277303889612, + 33.80100301160295 + ], + [ + 73.56793035541244, + 33.9956507465314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 33.9956507465314 + ], + [ + 73.68277303889612, + 33.80100301160295 + ], + [ + 73.7976157223798, + 33.9956507465314 + ], + [ + 73.56793035541244, + 33.9956507465314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 34.384946216388315 + ], + [ + 73.7976157223798, + 34.384946216388315 + ], + [ + 73.68277303889612, + 34.57959395131677 + ], + [ + 73.56793035541244, + 34.384946216388315 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 34.384946216388315 + ], + [ + 73.68277303889612, + 34.57959395131677 + ], + [ + 73.45308767192877, + 34.57959395131677 + ], + [ + 73.56793035541244, + 34.384946216388315 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 34.384946216388315 + ], + [ + 73.45308767192877, + 34.57959395131677 + ], + [ + 73.33824498844508, + 34.384946216388315 + ], + [ + 73.56793035541244, + 34.384946216388315 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 34.384946216388315 + ], + [ + 73.33824498844508, + 34.384946216388315 + ], + [ + 73.45308767192877, + 34.19029848145986 + ], + [ + 73.56793035541244, + 34.384946216388315 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 34.384946216388315 + ], + [ + 73.45308767192877, + 34.19029848145986 + ], + [ + 73.68277303889612, + 34.19029848145986 + ], + [ + 73.56793035541244, + 34.384946216388315 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 34.384946216388315 + ], + [ + 73.68277303889612, + 34.19029848145986 + ], + [ + 73.7976157223798, + 34.384946216388315 + ], + [ + 73.56793035541244, + 34.384946216388315 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 34.774241686245226 + ], + [ + 73.7976157223798, + 34.774241686245226 + ], + [ + 73.68277303889612, + 34.96888942117368 + ], + [ + 73.56793035541244, + 34.774241686245226 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 34.774241686245226 + ], + [ + 73.68277303889612, + 34.96888942117368 + ], + [ + 73.45308767192877, + 34.96888942117368 + ], + [ + 73.56793035541244, + 34.774241686245226 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 34.774241686245226 + ], + [ + 73.45308767192877, + 34.96888942117368 + ], + [ + 73.33824498844508, + 34.774241686245226 + ], + [ + 73.56793035541244, + 34.774241686245226 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 34.774241686245226 + ], + [ + 73.33824498844508, + 34.774241686245226 + ], + [ + 73.45308767192877, + 34.579593951316774 + ], + [ + 73.56793035541244, + 34.774241686245226 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 34.774241686245226 + ], + [ + 73.45308767192877, + 34.579593951316774 + ], + [ + 73.68277303889612, + 34.579593951316774 + ], + [ + 73.56793035541244, + 34.774241686245226 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 34.774241686245226 + ], + [ + 73.68277303889612, + 34.579593951316774 + ], + [ + 73.7976157223798, + 34.774241686245226 + ], + [ + 73.56793035541244, + 34.774241686245226 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 35.16353715610213 + ], + [ + 73.7976157223798, + 35.16353715610213 + ], + [ + 73.68277303889612, + 35.35818489103058 + ], + [ + 73.56793035541244, + 35.16353715610213 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 35.16353715610213 + ], + [ + 73.68277303889612, + 35.35818489103058 + ], + [ + 73.45308767192877, + 35.35818489103058 + ], + [ + 73.56793035541244, + 35.16353715610213 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 35.16353715610213 + ], + [ + 73.45308767192877, + 35.35818489103058 + ], + [ + 73.33824498844508, + 35.16353715610213 + ], + [ + 73.56793035541244, + 35.16353715610213 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 35.16353715610213 + ], + [ + 73.33824498844508, + 35.16353715610213 + ], + [ + 73.45308767192877, + 34.96888942117368 + ], + [ + 73.56793035541244, + 35.16353715610213 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 35.16353715610213 + ], + [ + 73.45308767192877, + 34.96888942117368 + ], + [ + 73.68277303889612, + 34.96888942117368 + ], + [ + 73.56793035541244, + 35.16353715610213 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 35.16353715610213 + ], + [ + 73.68277303889612, + 34.96888942117368 + ], + [ + 73.7976157223798, + 35.16353715610213 + ], + [ + 73.56793035541244, + 35.16353715610213 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 35.552832625959034 + ], + [ + 73.7976157223798, + 35.552832625959034 + ], + [ + 73.68277303889612, + 35.74748036088749 + ], + [ + 73.56793035541244, + 35.552832625959034 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 35.552832625959034 + ], + [ + 73.68277303889612, + 35.74748036088749 + ], + [ + 73.45308767192877, + 35.74748036088749 + ], + [ + 73.56793035541244, + 35.552832625959034 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 35.552832625959034 + ], + [ + 73.45308767192877, + 35.74748036088749 + ], + [ + 73.33824498844508, + 35.552832625959034 + ], + [ + 73.56793035541244, + 35.552832625959034 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 35.552832625959034 + ], + [ + 73.33824498844508, + 35.552832625959034 + ], + [ + 73.45308767192877, + 35.35818489103058 + ], + [ + 73.56793035541244, + 35.552832625959034 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 35.552832625959034 + ], + [ + 73.45308767192877, + 35.35818489103058 + ], + [ + 73.68277303889612, + 35.35818489103058 + ], + [ + 73.56793035541244, + 35.552832625959034 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 35.552832625959034 + ], + [ + 73.68277303889612, + 35.35818489103058 + ], + [ + 73.7976157223798, + 35.552832625959034 + ], + [ + 73.56793035541244, + 35.552832625959034 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 35.94212809581594 + ], + [ + 73.7976157223798, + 35.94212809581594 + ], + [ + 73.68277303889612, + 36.13677583074439 + ], + [ + 73.56793035541244, + 35.94212809581594 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 35.94212809581594 + ], + [ + 73.68277303889612, + 36.13677583074439 + ], + [ + 73.45308767192877, + 36.13677583074439 + ], + [ + 73.56793035541244, + 35.94212809581594 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 35.94212809581594 + ], + [ + 73.45308767192877, + 36.13677583074439 + ], + [ + 73.33824498844508, + 35.94212809581594 + ], + [ + 73.56793035541244, + 35.94212809581594 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 35.94212809581594 + ], + [ + 73.33824498844508, + 35.94212809581594 + ], + [ + 73.45308767192877, + 35.74748036088749 + ], + [ + 73.56793035541244, + 35.94212809581594 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 35.94212809581594 + ], + [ + 73.45308767192877, + 35.74748036088749 + ], + [ + 73.68277303889612, + 35.74748036088749 + ], + [ + 73.56793035541244, + 35.94212809581594 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 35.94212809581594 + ], + [ + 73.68277303889612, + 35.74748036088749 + ], + [ + 73.7976157223798, + 35.94212809581594 + ], + [ + 73.56793035541244, + 35.94212809581594 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 36.33142356567284 + ], + [ + 73.7976157223798, + 36.33142356567284 + ], + [ + 73.68277303889612, + 36.526071300601295 + ], + [ + 73.56793035541244, + 36.33142356567284 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 36.33142356567284 + ], + [ + 73.68277303889612, + 36.526071300601295 + ], + [ + 73.45308767192877, + 36.526071300601295 + ], + [ + 73.56793035541244, + 36.33142356567284 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 36.33142356567284 + ], + [ + 73.45308767192877, + 36.526071300601295 + ], + [ + 73.33824498844508, + 36.33142356567284 + ], + [ + 73.56793035541244, + 36.33142356567284 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 36.33142356567284 + ], + [ + 73.33824498844508, + 36.33142356567284 + ], + [ + 73.45308767192877, + 36.13677583074439 + ], + [ + 73.56793035541244, + 36.33142356567284 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 36.33142356567284 + ], + [ + 73.45308767192877, + 36.13677583074439 + ], + [ + 73.68277303889612, + 36.13677583074439 + ], + [ + 73.56793035541244, + 36.33142356567284 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 36.33142356567284 + ], + [ + 73.68277303889612, + 36.13677583074439 + ], + [ + 73.7976157223798, + 36.33142356567284 + ], + [ + 73.56793035541244, + 36.33142356567284 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 36.720719035529754 + ], + [ + 73.7976157223798, + 36.720719035529754 + ], + [ + 73.68277303889612, + 36.915366770458206 + ], + [ + 73.56793035541244, + 36.720719035529754 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 36.720719035529754 + ], + [ + 73.68277303889612, + 36.915366770458206 + ], + [ + 73.45308767192877, + 36.915366770458206 + ], + [ + 73.56793035541244, + 36.720719035529754 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 36.720719035529754 + ], + [ + 73.45308767192877, + 36.915366770458206 + ], + [ + 73.33824498844508, + 36.720719035529754 + ], + [ + 73.56793035541244, + 36.720719035529754 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 36.720719035529754 + ], + [ + 73.33824498844508, + 36.720719035529754 + ], + [ + 73.45308767192877, + 36.5260713006013 + ], + [ + 73.56793035541244, + 36.720719035529754 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 36.720719035529754 + ], + [ + 73.45308767192877, + 36.5260713006013 + ], + [ + 73.68277303889612, + 36.5260713006013 + ], + [ + 73.56793035541244, + 36.720719035529754 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 36.720719035529754 + ], + [ + 73.68277303889612, + 36.5260713006013 + ], + [ + 73.7976157223798, + 36.720719035529754 + ], + [ + 73.56793035541244, + 36.720719035529754 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 37.11001450538666 + ], + [ + 73.7976157223798, + 37.11001450538666 + ], + [ + 73.68277303889612, + 37.30466224031511 + ], + [ + 73.56793035541244, + 37.11001450538666 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 37.11001450538666 + ], + [ + 73.68277303889612, + 37.30466224031511 + ], + [ + 73.45308767192877, + 37.30466224031511 + ], + [ + 73.56793035541244, + 37.11001450538666 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 37.11001450538666 + ], + [ + 73.45308767192877, + 37.30466224031511 + ], + [ + 73.33824498844508, + 37.11001450538666 + ], + [ + 73.56793035541244, + 37.11001450538666 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 37.11001450538666 + ], + [ + 73.33824498844508, + 37.11001450538666 + ], + [ + 73.45308767192877, + 36.915366770458206 + ], + [ + 73.56793035541244, + 37.11001450538666 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 37.11001450538666 + ], + [ + 73.45308767192877, + 36.915366770458206 + ], + [ + 73.68277303889612, + 36.915366770458206 + ], + [ + 73.56793035541244, + 37.11001450538666 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 37.11001450538666 + ], + [ + 73.68277303889612, + 36.915366770458206 + ], + [ + 73.7976157223798, + 37.11001450538666 + ], + [ + 73.56793035541244, + 37.11001450538666 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 37.49930997524357 + ], + [ + 73.7976157223798, + 37.49930997524357 + ], + [ + 73.68277303889612, + 37.69395771017202 + ], + [ + 73.56793035541244, + 37.49930997524357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 37.49930997524357 + ], + [ + 73.68277303889612, + 37.69395771017202 + ], + [ + 73.45308767192877, + 37.69395771017202 + ], + [ + 73.56793035541244, + 37.49930997524357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 37.49930997524357 + ], + [ + 73.45308767192877, + 37.69395771017202 + ], + [ + 73.33824498844508, + 37.49930997524357 + ], + [ + 73.56793035541244, + 37.49930997524357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 37.49930997524357 + ], + [ + 73.33824498844508, + 37.49930997524357 + ], + [ + 73.45308767192877, + 37.30466224031512 + ], + [ + 73.56793035541244, + 37.49930997524357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 37.49930997524357 + ], + [ + 73.45308767192877, + 37.30466224031512 + ], + [ + 73.68277303889612, + 37.30466224031512 + ], + [ + 73.56793035541244, + 37.49930997524357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 37.49930997524357 + ], + [ + 73.68277303889612, + 37.30466224031512 + ], + [ + 73.7976157223798, + 37.49930997524357 + ], + [ + 73.56793035541244, + 37.49930997524357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 37.888605445100474 + ], + [ + 73.7976157223798, + 37.888605445100474 + ], + [ + 73.68277303889612, + 38.083253180028926 + ], + [ + 73.56793035541244, + 37.888605445100474 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 37.888605445100474 + ], + [ + 73.68277303889612, + 38.083253180028926 + ], + [ + 73.45308767192877, + 38.083253180028926 + ], + [ + 73.56793035541244, + 37.888605445100474 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 37.888605445100474 + ], + [ + 73.45308767192877, + 38.083253180028926 + ], + [ + 73.33824498844508, + 37.888605445100474 + ], + [ + 73.56793035541244, + 37.888605445100474 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 37.888605445100474 + ], + [ + 73.33824498844508, + 37.888605445100474 + ], + [ + 73.45308767192877, + 37.69395771017202 + ], + [ + 73.56793035541244, + 37.888605445100474 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 37.888605445100474 + ], + [ + 73.45308767192877, + 37.69395771017202 + ], + [ + 73.68277303889612, + 37.69395771017202 + ], + [ + 73.56793035541244, + 37.888605445100474 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 37.888605445100474 + ], + [ + 73.68277303889612, + 37.69395771017202 + ], + [ + 73.7976157223798, + 37.888605445100474 + ], + [ + 73.56793035541244, + 37.888605445100474 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 38.27790091495738 + ], + [ + 73.7976157223798, + 38.27790091495738 + ], + [ + 73.68277303889612, + 38.47254864988583 + ], + [ + 73.56793035541244, + 38.27790091495738 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 38.27790091495738 + ], + [ + 73.68277303889612, + 38.47254864988583 + ], + [ + 73.45308767192877, + 38.47254864988583 + ], + [ + 73.56793035541244, + 38.27790091495738 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 38.27790091495738 + ], + [ + 73.45308767192877, + 38.47254864988583 + ], + [ + 73.33824498844508, + 38.27790091495738 + ], + [ + 73.56793035541244, + 38.27790091495738 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 38.27790091495738 + ], + [ + 73.33824498844508, + 38.27790091495738 + ], + [ + 73.45308767192877, + 38.083253180028926 + ], + [ + 73.56793035541244, + 38.27790091495738 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 38.27790091495738 + ], + [ + 73.45308767192877, + 38.083253180028926 + ], + [ + 73.68277303889612, + 38.083253180028926 + ], + [ + 73.56793035541244, + 38.27790091495738 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 38.27790091495738 + ], + [ + 73.68277303889612, + 38.083253180028926 + ], + [ + 73.7976157223798, + 38.27790091495738 + ], + [ + 73.56793035541244, + 38.27790091495738 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 38.66719638481428 + ], + [ + 73.7976157223798, + 38.66719638481428 + ], + [ + 73.68277303889612, + 38.861844119742734 + ], + [ + 73.56793035541244, + 38.66719638481428 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 38.66719638481428 + ], + [ + 73.68277303889612, + 38.861844119742734 + ], + [ + 73.45308767192877, + 38.861844119742734 + ], + [ + 73.56793035541244, + 38.66719638481428 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 38.66719638481428 + ], + [ + 73.45308767192877, + 38.861844119742734 + ], + [ + 73.33824498844508, + 38.66719638481428 + ], + [ + 73.56793035541244, + 38.66719638481428 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 38.66719638481428 + ], + [ + 73.33824498844508, + 38.66719638481428 + ], + [ + 73.45308767192877, + 38.47254864988583 + ], + [ + 73.56793035541244, + 38.66719638481428 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 38.66719638481428 + ], + [ + 73.45308767192877, + 38.47254864988583 + ], + [ + 73.68277303889612, + 38.47254864988583 + ], + [ + 73.56793035541244, + 38.66719638481428 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 38.66719638481428 + ], + [ + 73.68277303889612, + 38.47254864988583 + ], + [ + 73.7976157223798, + 38.66719638481428 + ], + [ + 73.56793035541244, + 38.66719638481428 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 39.05649185467119 + ], + [ + 73.7976157223798, + 39.05649185467119 + ], + [ + 73.68277303889612, + 39.25113958959964 + ], + [ + 73.56793035541244, + 39.05649185467119 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 39.05649185467119 + ], + [ + 73.68277303889612, + 39.25113958959964 + ], + [ + 73.45308767192877, + 39.25113958959964 + ], + [ + 73.56793035541244, + 39.05649185467119 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 39.05649185467119 + ], + [ + 73.45308767192877, + 39.25113958959964 + ], + [ + 73.33824498844508, + 39.05649185467119 + ], + [ + 73.56793035541244, + 39.05649185467119 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 39.05649185467119 + ], + [ + 73.33824498844508, + 39.05649185467119 + ], + [ + 73.45308767192877, + 38.861844119742734 + ], + [ + 73.56793035541244, + 39.05649185467119 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 39.05649185467119 + ], + [ + 73.45308767192877, + 38.861844119742734 + ], + [ + 73.68277303889612, + 38.861844119742734 + ], + [ + 73.56793035541244, + 39.05649185467119 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 39.05649185467119 + ], + [ + 73.68277303889612, + 38.861844119742734 + ], + [ + 73.7976157223798, + 39.05649185467119 + ], + [ + 73.56793035541244, + 39.05649185467119 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 39.4457873245281 + ], + [ + 73.7976157223798, + 39.4457873245281 + ], + [ + 73.68277303889612, + 39.64043505945655 + ], + [ + 73.56793035541244, + 39.4457873245281 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 39.4457873245281 + ], + [ + 73.68277303889612, + 39.64043505945655 + ], + [ + 73.45308767192877, + 39.64043505945655 + ], + [ + 73.56793035541244, + 39.4457873245281 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 39.4457873245281 + ], + [ + 73.45308767192877, + 39.64043505945655 + ], + [ + 73.33824498844508, + 39.4457873245281 + ], + [ + 73.56793035541244, + 39.4457873245281 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 39.4457873245281 + ], + [ + 73.33824498844508, + 39.4457873245281 + ], + [ + 73.45308767192877, + 39.251139589599646 + ], + [ + 73.56793035541244, + 39.4457873245281 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 39.4457873245281 + ], + [ + 73.45308767192877, + 39.251139589599646 + ], + [ + 73.68277303889612, + 39.251139589599646 + ], + [ + 73.56793035541244, + 39.4457873245281 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 39.4457873245281 + ], + [ + 73.68277303889612, + 39.251139589599646 + ], + [ + 73.7976157223798, + 39.4457873245281 + ], + [ + 73.56793035541244, + 39.4457873245281 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 39.835082794385 + ], + [ + 73.7976157223798, + 39.835082794385 + ], + [ + 73.68277303889612, + 40.029730529313454 + ], + [ + 73.56793035541244, + 39.835082794385 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 39.835082794385 + ], + [ + 73.68277303889612, + 40.029730529313454 + ], + [ + 73.45308767192877, + 40.029730529313454 + ], + [ + 73.56793035541244, + 39.835082794385 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 39.835082794385 + ], + [ + 73.45308767192877, + 40.029730529313454 + ], + [ + 73.33824498844508, + 39.835082794385 + ], + [ + 73.56793035541244, + 39.835082794385 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 39.835082794385 + ], + [ + 73.33824498844508, + 39.835082794385 + ], + [ + 73.45308767192877, + 39.64043505945655 + ], + [ + 73.56793035541244, + 39.835082794385 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 39.835082794385 + ], + [ + 73.45308767192877, + 39.64043505945655 + ], + [ + 73.68277303889612, + 39.64043505945655 + ], + [ + 73.56793035541244, + 39.835082794385 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 39.835082794385 + ], + [ + 73.68277303889612, + 39.64043505945655 + ], + [ + 73.7976157223798, + 39.835082794385 + ], + [ + 73.56793035541244, + 39.835082794385 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 40.22437826424191 + ], + [ + 73.7976157223798, + 40.22437826424191 + ], + [ + 73.68277303889612, + 40.419025999170366 + ], + [ + 73.56793035541244, + 40.22437826424191 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 40.22437826424191 + ], + [ + 73.68277303889612, + 40.419025999170366 + ], + [ + 73.45308767192877, + 40.419025999170366 + ], + [ + 73.56793035541244, + 40.22437826424191 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 40.22437826424191 + ], + [ + 73.45308767192877, + 40.419025999170366 + ], + [ + 73.33824498844508, + 40.22437826424191 + ], + [ + 73.56793035541244, + 40.22437826424191 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 40.22437826424191 + ], + [ + 73.33824498844508, + 40.22437826424191 + ], + [ + 73.45308767192877, + 40.02973052931346 + ], + [ + 73.56793035541244, + 40.22437826424191 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 40.22437826424191 + ], + [ + 73.45308767192877, + 40.02973052931346 + ], + [ + 73.68277303889612, + 40.02973052931346 + ], + [ + 73.56793035541244, + 40.22437826424191 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 40.22437826424191 + ], + [ + 73.68277303889612, + 40.02973052931346 + ], + [ + 73.7976157223798, + 40.22437826424191 + ], + [ + 73.56793035541244, + 40.22437826424191 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 40.61367373409882 + ], + [ + 73.7976157223798, + 40.61367373409882 + ], + [ + 73.68277303889612, + 40.80832146902727 + ], + [ + 73.56793035541244, + 40.61367373409882 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 40.61367373409882 + ], + [ + 73.68277303889612, + 40.80832146902727 + ], + [ + 73.45308767192877, + 40.80832146902727 + ], + [ + 73.56793035541244, + 40.61367373409882 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 40.61367373409882 + ], + [ + 73.45308767192877, + 40.80832146902727 + ], + [ + 73.33824498844508, + 40.61367373409882 + ], + [ + 73.56793035541244, + 40.61367373409882 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 40.61367373409882 + ], + [ + 73.33824498844508, + 40.61367373409882 + ], + [ + 73.45308767192877, + 40.419025999170366 + ], + [ + 73.56793035541244, + 40.61367373409882 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 40.61367373409882 + ], + [ + 73.45308767192877, + 40.419025999170366 + ], + [ + 73.68277303889612, + 40.419025999170366 + ], + [ + 73.56793035541244, + 40.61367373409882 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 40.61367373409882 + ], + [ + 73.68277303889612, + 40.419025999170366 + ], + [ + 73.7976157223798, + 40.61367373409882 + ], + [ + 73.56793035541244, + 40.61367373409882 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 41.00296920395572 + ], + [ + 73.7976157223798, + 41.00296920395572 + ], + [ + 73.68277303889612, + 41.197616938884174 + ], + [ + 73.56793035541244, + 41.00296920395572 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 41.00296920395572 + ], + [ + 73.68277303889612, + 41.197616938884174 + ], + [ + 73.45308767192877, + 41.197616938884174 + ], + [ + 73.56793035541244, + 41.00296920395572 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 41.00296920395572 + ], + [ + 73.45308767192877, + 41.197616938884174 + ], + [ + 73.33824498844508, + 41.00296920395572 + ], + [ + 73.56793035541244, + 41.00296920395572 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 41.00296920395572 + ], + [ + 73.33824498844508, + 41.00296920395572 + ], + [ + 73.45308767192877, + 40.80832146902727 + ], + [ + 73.56793035541244, + 41.00296920395572 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 41.00296920395572 + ], + [ + 73.45308767192877, + 40.80832146902727 + ], + [ + 73.68277303889612, + 40.80832146902727 + ], + [ + 73.56793035541244, + 41.00296920395572 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 41.00296920395572 + ], + [ + 73.68277303889612, + 40.80832146902727 + ], + [ + 73.7976157223798, + 41.00296920395572 + ], + [ + 73.56793035541244, + 41.00296920395572 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 41.392264673812626 + ], + [ + 73.7976157223798, + 41.392264673812626 + ], + [ + 73.68277303889612, + 41.58691240874108 + ], + [ + 73.56793035541244, + 41.392264673812626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 41.392264673812626 + ], + [ + 73.68277303889612, + 41.58691240874108 + ], + [ + 73.45308767192877, + 41.58691240874108 + ], + [ + 73.56793035541244, + 41.392264673812626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 41.392264673812626 + ], + [ + 73.45308767192877, + 41.58691240874108 + ], + [ + 73.33824498844508, + 41.392264673812626 + ], + [ + 73.56793035541244, + 41.392264673812626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 41.392264673812626 + ], + [ + 73.33824498844508, + 41.392264673812626 + ], + [ + 73.45308767192877, + 41.197616938884174 + ], + [ + 73.56793035541244, + 41.392264673812626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 41.392264673812626 + ], + [ + 73.45308767192877, + 41.197616938884174 + ], + [ + 73.68277303889612, + 41.197616938884174 + ], + [ + 73.56793035541244, + 41.392264673812626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 41.392264673812626 + ], + [ + 73.68277303889612, + 41.197616938884174 + ], + [ + 73.7976157223798, + 41.392264673812626 + ], + [ + 73.56793035541244, + 41.392264673812626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 41.78156014366953 + ], + [ + 73.7976157223798, + 41.78156014366953 + ], + [ + 73.68277303889612, + 41.97620787859798 + ], + [ + 73.56793035541244, + 41.78156014366953 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 41.78156014366953 + ], + [ + 73.68277303889612, + 41.97620787859798 + ], + [ + 73.45308767192877, + 41.97620787859798 + ], + [ + 73.56793035541244, + 41.78156014366953 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 41.78156014366953 + ], + [ + 73.45308767192877, + 41.97620787859798 + ], + [ + 73.33824498844508, + 41.78156014366953 + ], + [ + 73.56793035541244, + 41.78156014366953 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 41.78156014366953 + ], + [ + 73.33824498844508, + 41.78156014366953 + ], + [ + 73.45308767192877, + 41.58691240874108 + ], + [ + 73.56793035541244, + 41.78156014366953 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 41.78156014366953 + ], + [ + 73.45308767192877, + 41.58691240874108 + ], + [ + 73.68277303889612, + 41.58691240874108 + ], + [ + 73.56793035541244, + 41.78156014366953 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 41.78156014366953 + ], + [ + 73.68277303889612, + 41.58691240874108 + ], + [ + 73.7976157223798, + 41.78156014366953 + ], + [ + 73.56793035541244, + 41.78156014366953 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 42.17085561352644 + ], + [ + 73.7976157223798, + 42.17085561352644 + ], + [ + 73.68277303889612, + 42.365503348454894 + ], + [ + 73.56793035541244, + 42.17085561352644 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 42.17085561352644 + ], + [ + 73.68277303889612, + 42.365503348454894 + ], + [ + 73.45308767192877, + 42.365503348454894 + ], + [ + 73.56793035541244, + 42.17085561352644 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 42.17085561352644 + ], + [ + 73.45308767192877, + 42.365503348454894 + ], + [ + 73.33824498844508, + 42.17085561352644 + ], + [ + 73.56793035541244, + 42.17085561352644 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 42.17085561352644 + ], + [ + 73.33824498844508, + 42.17085561352644 + ], + [ + 73.45308767192877, + 41.97620787859799 + ], + [ + 73.56793035541244, + 42.17085561352644 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 42.17085561352644 + ], + [ + 73.45308767192877, + 41.97620787859799 + ], + [ + 73.68277303889612, + 41.97620787859799 + ], + [ + 73.56793035541244, + 42.17085561352644 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 42.17085561352644 + ], + [ + 73.68277303889612, + 41.97620787859799 + ], + [ + 73.7976157223798, + 42.17085561352644 + ], + [ + 73.56793035541244, + 42.17085561352644 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 42.56015108338335 + ], + [ + 73.7976157223798, + 42.56015108338335 + ], + [ + 73.68277303889612, + 42.754798818311805 + ], + [ + 73.56793035541244, + 42.56015108338335 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 42.56015108338335 + ], + [ + 73.68277303889612, + 42.754798818311805 + ], + [ + 73.45308767192877, + 42.754798818311805 + ], + [ + 73.56793035541244, + 42.56015108338335 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 42.56015108338335 + ], + [ + 73.45308767192877, + 42.754798818311805 + ], + [ + 73.33824498844508, + 42.56015108338335 + ], + [ + 73.56793035541244, + 42.56015108338335 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 42.56015108338335 + ], + [ + 73.33824498844508, + 42.56015108338335 + ], + [ + 73.45308767192877, + 42.3655033484549 + ], + [ + 73.56793035541244, + 42.56015108338335 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 42.56015108338335 + ], + [ + 73.45308767192877, + 42.3655033484549 + ], + [ + 73.68277303889612, + 42.3655033484549 + ], + [ + 73.56793035541244, + 42.56015108338335 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 42.56015108338335 + ], + [ + 73.68277303889612, + 42.3655033484549 + ], + [ + 73.7976157223798, + 42.56015108338335 + ], + [ + 73.56793035541244, + 42.56015108338335 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 42.94944655324026 + ], + [ + 73.7976157223798, + 42.94944655324026 + ], + [ + 73.68277303889612, + 43.14409428816871 + ], + [ + 73.56793035541244, + 42.94944655324026 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 42.94944655324026 + ], + [ + 73.68277303889612, + 43.14409428816871 + ], + [ + 73.45308767192877, + 43.14409428816871 + ], + [ + 73.56793035541244, + 42.94944655324026 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 42.94944655324026 + ], + [ + 73.45308767192877, + 43.14409428816871 + ], + [ + 73.33824498844508, + 42.94944655324026 + ], + [ + 73.56793035541244, + 42.94944655324026 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 42.94944655324026 + ], + [ + 73.33824498844508, + 42.94944655324026 + ], + [ + 73.45308767192877, + 42.754798818311805 + ], + [ + 73.56793035541244, + 42.94944655324026 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 42.94944655324026 + ], + [ + 73.45308767192877, + 42.754798818311805 + ], + [ + 73.68277303889612, + 42.754798818311805 + ], + [ + 73.56793035541244, + 42.94944655324026 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 42.94944655324026 + ], + [ + 73.68277303889612, + 42.754798818311805 + ], + [ + 73.7976157223798, + 42.94944655324026 + ], + [ + 73.56793035541244, + 42.94944655324026 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 43.33874202309716 + ], + [ + 73.7976157223798, + 43.33874202309716 + ], + [ + 73.68277303889612, + 43.53338975802561 + ], + [ + 73.56793035541244, + 43.33874202309716 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 43.33874202309716 + ], + [ + 73.68277303889612, + 43.53338975802561 + ], + [ + 73.45308767192877, + 43.53338975802561 + ], + [ + 73.56793035541244, + 43.33874202309716 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 43.33874202309716 + ], + [ + 73.45308767192877, + 43.53338975802561 + ], + [ + 73.33824498844508, + 43.33874202309716 + ], + [ + 73.56793035541244, + 43.33874202309716 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 43.33874202309716 + ], + [ + 73.33824498844508, + 43.33874202309716 + ], + [ + 73.45308767192877, + 43.14409428816871 + ], + [ + 73.56793035541244, + 43.33874202309716 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 43.33874202309716 + ], + [ + 73.45308767192877, + 43.14409428816871 + ], + [ + 73.68277303889612, + 43.14409428816871 + ], + [ + 73.56793035541244, + 43.33874202309716 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 43.33874202309716 + ], + [ + 73.68277303889612, + 43.14409428816871 + ], + [ + 73.7976157223798, + 43.33874202309716 + ], + [ + 73.56793035541244, + 43.33874202309716 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 43.728037492954066 + ], + [ + 73.7976157223798, + 43.728037492954066 + ], + [ + 73.68277303889612, + 43.92268522788252 + ], + [ + 73.56793035541244, + 43.728037492954066 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 43.728037492954066 + ], + [ + 73.68277303889612, + 43.92268522788252 + ], + [ + 73.45308767192877, + 43.92268522788252 + ], + [ + 73.56793035541244, + 43.728037492954066 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 43.728037492954066 + ], + [ + 73.45308767192877, + 43.92268522788252 + ], + [ + 73.33824498844508, + 43.728037492954066 + ], + [ + 73.56793035541244, + 43.728037492954066 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 43.728037492954066 + ], + [ + 73.33824498844508, + 43.728037492954066 + ], + [ + 73.45308767192877, + 43.53338975802561 + ], + [ + 73.56793035541244, + 43.728037492954066 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 43.728037492954066 + ], + [ + 73.45308767192877, + 43.53338975802561 + ], + [ + 73.68277303889612, + 43.53338975802561 + ], + [ + 73.56793035541244, + 43.728037492954066 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 43.728037492954066 + ], + [ + 73.68277303889612, + 43.53338975802561 + ], + [ + 73.7976157223798, + 43.728037492954066 + ], + [ + 73.56793035541244, + 43.728037492954066 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 44.11733296281097 + ], + [ + 73.7976157223798, + 44.11733296281097 + ], + [ + 73.68277303889612, + 44.31198069773942 + ], + [ + 73.56793035541244, + 44.11733296281097 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 44.11733296281097 + ], + [ + 73.68277303889612, + 44.31198069773942 + ], + [ + 73.45308767192877, + 44.31198069773942 + ], + [ + 73.56793035541244, + 44.11733296281097 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 44.11733296281097 + ], + [ + 73.45308767192877, + 44.31198069773942 + ], + [ + 73.33824498844508, + 44.11733296281097 + ], + [ + 73.56793035541244, + 44.11733296281097 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 44.11733296281097 + ], + [ + 73.33824498844508, + 44.11733296281097 + ], + [ + 73.45308767192877, + 43.92268522788252 + ], + [ + 73.56793035541244, + 44.11733296281097 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 44.11733296281097 + ], + [ + 73.45308767192877, + 43.92268522788252 + ], + [ + 73.68277303889612, + 43.92268522788252 + ], + [ + 73.56793035541244, + 44.11733296281097 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 44.11733296281097 + ], + [ + 73.68277303889612, + 43.92268522788252 + ], + [ + 73.7976157223798, + 44.11733296281097 + ], + [ + 73.56793035541244, + 44.11733296281097 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 44.506628432667874 + ], + [ + 73.7976157223798, + 44.506628432667874 + ], + [ + 73.68277303889612, + 44.701276167596326 + ], + [ + 73.56793035541244, + 44.506628432667874 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 44.506628432667874 + ], + [ + 73.68277303889612, + 44.701276167596326 + ], + [ + 73.45308767192877, + 44.701276167596326 + ], + [ + 73.56793035541244, + 44.506628432667874 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 44.506628432667874 + ], + [ + 73.45308767192877, + 44.701276167596326 + ], + [ + 73.33824498844508, + 44.506628432667874 + ], + [ + 73.56793035541244, + 44.506628432667874 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 44.506628432667874 + ], + [ + 73.33824498844508, + 44.506628432667874 + ], + [ + 73.45308767192877, + 44.31198069773942 + ], + [ + 73.56793035541244, + 44.506628432667874 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 44.506628432667874 + ], + [ + 73.45308767192877, + 44.31198069773942 + ], + [ + 73.68277303889612, + 44.31198069773942 + ], + [ + 73.56793035541244, + 44.506628432667874 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 44.506628432667874 + ], + [ + 73.68277303889612, + 44.31198069773942 + ], + [ + 73.7976157223798, + 44.506628432667874 + ], + [ + 73.56793035541244, + 44.506628432667874 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 44.89592390252479 + ], + [ + 73.7976157223798, + 44.89592390252479 + ], + [ + 73.68277303889612, + 45.090571637453245 + ], + [ + 73.56793035541244, + 44.89592390252479 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 44.89592390252479 + ], + [ + 73.68277303889612, + 45.090571637453245 + ], + [ + 73.45308767192877, + 45.090571637453245 + ], + [ + 73.56793035541244, + 44.89592390252479 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 44.89592390252479 + ], + [ + 73.45308767192877, + 45.090571637453245 + ], + [ + 73.33824498844508, + 44.89592390252479 + ], + [ + 73.56793035541244, + 44.89592390252479 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 44.89592390252479 + ], + [ + 73.33824498844508, + 44.89592390252479 + ], + [ + 73.45308767192877, + 44.70127616759634 + ], + [ + 73.56793035541244, + 44.89592390252479 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 44.89592390252479 + ], + [ + 73.45308767192877, + 44.70127616759634 + ], + [ + 73.68277303889612, + 44.70127616759634 + ], + [ + 73.56793035541244, + 44.89592390252479 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 44.89592390252479 + ], + [ + 73.68277303889612, + 44.70127616759634 + ], + [ + 73.7976157223798, + 44.89592390252479 + ], + [ + 73.56793035541244, + 44.89592390252479 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 45.2852193723817 + ], + [ + 73.7976157223798, + 45.2852193723817 + ], + [ + 73.68277303889612, + 45.47986710731015 + ], + [ + 73.56793035541244, + 45.2852193723817 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 45.2852193723817 + ], + [ + 73.68277303889612, + 45.47986710731015 + ], + [ + 73.45308767192877, + 45.47986710731015 + ], + [ + 73.56793035541244, + 45.2852193723817 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 45.2852193723817 + ], + [ + 73.45308767192877, + 45.47986710731015 + ], + [ + 73.33824498844508, + 45.2852193723817 + ], + [ + 73.56793035541244, + 45.2852193723817 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 45.2852193723817 + ], + [ + 73.33824498844508, + 45.2852193723817 + ], + [ + 73.45308767192877, + 45.090571637453245 + ], + [ + 73.56793035541244, + 45.2852193723817 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 45.2852193723817 + ], + [ + 73.45308767192877, + 45.090571637453245 + ], + [ + 73.68277303889612, + 45.090571637453245 + ], + [ + 73.56793035541244, + 45.2852193723817 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 45.2852193723817 + ], + [ + 73.68277303889612, + 45.090571637453245 + ], + [ + 73.7976157223798, + 45.2852193723817 + ], + [ + 73.56793035541244, + 45.2852193723817 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 45.6745148422386 + ], + [ + 73.7976157223798, + 45.6745148422386 + ], + [ + 73.68277303889612, + 45.86916257716705 + ], + [ + 73.56793035541244, + 45.6745148422386 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 45.6745148422386 + ], + [ + 73.68277303889612, + 45.86916257716705 + ], + [ + 73.45308767192877, + 45.86916257716705 + ], + [ + 73.56793035541244, + 45.6745148422386 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 45.6745148422386 + ], + [ + 73.45308767192877, + 45.86916257716705 + ], + [ + 73.33824498844508, + 45.6745148422386 + ], + [ + 73.56793035541244, + 45.6745148422386 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 45.6745148422386 + ], + [ + 73.33824498844508, + 45.6745148422386 + ], + [ + 73.45308767192877, + 45.47986710731015 + ], + [ + 73.56793035541244, + 45.6745148422386 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 45.6745148422386 + ], + [ + 73.45308767192877, + 45.47986710731015 + ], + [ + 73.68277303889612, + 45.47986710731015 + ], + [ + 73.56793035541244, + 45.6745148422386 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 45.6745148422386 + ], + [ + 73.68277303889612, + 45.47986710731015 + ], + [ + 73.7976157223798, + 45.6745148422386 + ], + [ + 73.56793035541244, + 45.6745148422386 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 46.063810312095505 + ], + [ + 73.7976157223798, + 46.063810312095505 + ], + [ + 73.68277303889612, + 46.25845804702396 + ], + [ + 73.56793035541244, + 46.063810312095505 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 46.063810312095505 + ], + [ + 73.68277303889612, + 46.25845804702396 + ], + [ + 73.45308767192877, + 46.25845804702396 + ], + [ + 73.56793035541244, + 46.063810312095505 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 46.063810312095505 + ], + [ + 73.45308767192877, + 46.25845804702396 + ], + [ + 73.33824498844508, + 46.063810312095505 + ], + [ + 73.56793035541244, + 46.063810312095505 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 46.063810312095505 + ], + [ + 73.33824498844508, + 46.063810312095505 + ], + [ + 73.45308767192877, + 45.86916257716705 + ], + [ + 73.56793035541244, + 46.063810312095505 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 46.063810312095505 + ], + [ + 73.45308767192877, + 45.86916257716705 + ], + [ + 73.68277303889612, + 45.86916257716705 + ], + [ + 73.56793035541244, + 46.063810312095505 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 46.063810312095505 + ], + [ + 73.68277303889612, + 45.86916257716705 + ], + [ + 73.7976157223798, + 46.063810312095505 + ], + [ + 73.56793035541244, + 46.063810312095505 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 46.45310578195241 + ], + [ + 73.7976157223798, + 46.45310578195241 + ], + [ + 73.68277303889612, + 46.64775351688086 + ], + [ + 73.56793035541244, + 46.45310578195241 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 46.45310578195241 + ], + [ + 73.68277303889612, + 46.64775351688086 + ], + [ + 73.45308767192877, + 46.64775351688086 + ], + [ + 73.56793035541244, + 46.45310578195241 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 46.45310578195241 + ], + [ + 73.45308767192877, + 46.64775351688086 + ], + [ + 73.33824498844508, + 46.45310578195241 + ], + [ + 73.56793035541244, + 46.45310578195241 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 46.45310578195241 + ], + [ + 73.33824498844508, + 46.45310578195241 + ], + [ + 73.45308767192877, + 46.25845804702396 + ], + [ + 73.56793035541244, + 46.45310578195241 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 46.45310578195241 + ], + [ + 73.45308767192877, + 46.25845804702396 + ], + [ + 73.68277303889612, + 46.25845804702396 + ], + [ + 73.56793035541244, + 46.45310578195241 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 46.45310578195241 + ], + [ + 73.68277303889612, + 46.25845804702396 + ], + [ + 73.7976157223798, + 46.45310578195241 + ], + [ + 73.56793035541244, + 46.45310578195241 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 46.842401251809314 + ], + [ + 73.7976157223798, + 46.842401251809314 + ], + [ + 73.68277303889612, + 47.037048986737766 + ], + [ + 73.56793035541244, + 46.842401251809314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 46.842401251809314 + ], + [ + 73.68277303889612, + 47.037048986737766 + ], + [ + 73.45308767192877, + 47.037048986737766 + ], + [ + 73.56793035541244, + 46.842401251809314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 46.842401251809314 + ], + [ + 73.45308767192877, + 47.037048986737766 + ], + [ + 73.33824498844508, + 46.842401251809314 + ], + [ + 73.56793035541244, + 46.842401251809314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 46.842401251809314 + ], + [ + 73.33824498844508, + 46.842401251809314 + ], + [ + 73.45308767192877, + 46.64775351688086 + ], + [ + 73.56793035541244, + 46.842401251809314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 46.842401251809314 + ], + [ + 73.45308767192877, + 46.64775351688086 + ], + [ + 73.68277303889612, + 46.64775351688086 + ], + [ + 73.56793035541244, + 46.842401251809314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 46.842401251809314 + ], + [ + 73.68277303889612, + 46.64775351688086 + ], + [ + 73.7976157223798, + 46.842401251809314 + ], + [ + 73.56793035541244, + 46.842401251809314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 47.23169672166622 + ], + [ + 73.7976157223798, + 47.23169672166622 + ], + [ + 73.68277303889612, + 47.42634445659467 + ], + [ + 73.56793035541244, + 47.23169672166622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 47.23169672166622 + ], + [ + 73.68277303889612, + 47.42634445659467 + ], + [ + 73.45308767192877, + 47.42634445659467 + ], + [ + 73.56793035541244, + 47.23169672166622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 47.23169672166622 + ], + [ + 73.45308767192877, + 47.42634445659467 + ], + [ + 73.33824498844508, + 47.23169672166622 + ], + [ + 73.56793035541244, + 47.23169672166622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 47.23169672166622 + ], + [ + 73.33824498844508, + 47.23169672166622 + ], + [ + 73.45308767192877, + 47.037048986737766 + ], + [ + 73.56793035541244, + 47.23169672166622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 47.23169672166622 + ], + [ + 73.45308767192877, + 47.037048986737766 + ], + [ + 73.68277303889612, + 47.037048986737766 + ], + [ + 73.56793035541244, + 47.23169672166622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 47.23169672166622 + ], + [ + 73.68277303889612, + 47.037048986737766 + ], + [ + 73.7976157223798, + 47.23169672166622 + ], + [ + 73.56793035541244, + 47.23169672166622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 47.620992191523136 + ], + [ + 73.7976157223798, + 47.620992191523136 + ], + [ + 73.68277303889612, + 47.81563992645159 + ], + [ + 73.56793035541244, + 47.620992191523136 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 47.620992191523136 + ], + [ + 73.68277303889612, + 47.81563992645159 + ], + [ + 73.45308767192877, + 47.81563992645159 + ], + [ + 73.56793035541244, + 47.620992191523136 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 47.620992191523136 + ], + [ + 73.45308767192877, + 47.81563992645159 + ], + [ + 73.33824498844508, + 47.620992191523136 + ], + [ + 73.56793035541244, + 47.620992191523136 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 47.620992191523136 + ], + [ + 73.33824498844508, + 47.620992191523136 + ], + [ + 73.45308767192877, + 47.426344456594684 + ], + [ + 73.56793035541244, + 47.620992191523136 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 47.620992191523136 + ], + [ + 73.45308767192877, + 47.426344456594684 + ], + [ + 73.68277303889612, + 47.426344456594684 + ], + [ + 73.56793035541244, + 47.620992191523136 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.56793035541244, + 47.620992191523136 + ], + [ + 73.68277303889612, + 47.426344456594684 + ], + [ + 73.7976157223798, + 47.620992191523136 + ], + [ + 73.56793035541244, + 47.620992191523136 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 12.0004566996162 + ], + [ + 74.14214377283085, + 12.0004566996162 + ], + [ + 74.02730108934716, + 12.195104434544653 + ], + [ + 73.91245840586349, + 12.0004566996162 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 12.0004566996162 + ], + [ + 74.02730108934716, + 12.195104434544653 + ], + [ + 73.79761572237982, + 12.195104434544653 + ], + [ + 73.91245840586349, + 12.0004566996162 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 12.0004566996162 + ], + [ + 73.79761572237982, + 12.195104434544653 + ], + [ + 73.68277303889613, + 12.0004566996162 + ], + [ + 73.91245840586349, + 12.0004566996162 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 12.0004566996162 + ], + [ + 73.68277303889613, + 12.0004566996162 + ], + [ + 73.79761572237982, + 11.805808964687746 + ], + [ + 73.91245840586349, + 12.0004566996162 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 12.0004566996162 + ], + [ + 73.79761572237982, + 11.805808964687746 + ], + [ + 74.02730108934716, + 11.805808964687746 + ], + [ + 73.91245840586349, + 12.0004566996162 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 12.0004566996162 + ], + [ + 74.02730108934716, + 11.805808964687746 + ], + [ + 74.14214377283085, + 12.0004566996162 + ], + [ + 73.91245840586349, + 12.0004566996162 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 12.389752169473105 + ], + [ + 74.14214377283085, + 12.389752169473105 + ], + [ + 74.02730108934716, + 12.58439990440156 + ], + [ + 73.91245840586349, + 12.389752169473105 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 12.389752169473105 + ], + [ + 74.02730108934716, + 12.58439990440156 + ], + [ + 73.79761572237982, + 12.58439990440156 + ], + [ + 73.91245840586349, + 12.389752169473105 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 12.389752169473105 + ], + [ + 73.79761572237982, + 12.58439990440156 + ], + [ + 73.68277303889613, + 12.389752169473105 + ], + [ + 73.91245840586349, + 12.389752169473105 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 12.389752169473105 + ], + [ + 73.68277303889613, + 12.389752169473105 + ], + [ + 73.79761572237982, + 12.195104434544652 + ], + [ + 73.91245840586349, + 12.389752169473105 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 12.389752169473105 + ], + [ + 73.79761572237982, + 12.195104434544652 + ], + [ + 74.02730108934716, + 12.195104434544652 + ], + [ + 73.91245840586349, + 12.389752169473105 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 12.389752169473105 + ], + [ + 74.02730108934716, + 12.195104434544652 + ], + [ + 74.14214377283085, + 12.389752169473105 + ], + [ + 73.91245840586349, + 12.389752169473105 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 12.779047639330013 + ], + [ + 74.14214377283085, + 12.779047639330013 + ], + [ + 74.02730108934716, + 12.973695374258467 + ], + [ + 73.91245840586349, + 12.779047639330013 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 12.779047639330013 + ], + [ + 74.02730108934716, + 12.973695374258467 + ], + [ + 73.79761572237982, + 12.973695374258467 + ], + [ + 73.91245840586349, + 12.779047639330013 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 12.779047639330013 + ], + [ + 73.79761572237982, + 12.973695374258467 + ], + [ + 73.68277303889613, + 12.779047639330013 + ], + [ + 73.91245840586349, + 12.779047639330013 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 12.779047639330013 + ], + [ + 73.68277303889613, + 12.779047639330013 + ], + [ + 73.79761572237982, + 12.58439990440156 + ], + [ + 73.91245840586349, + 12.779047639330013 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 12.779047639330013 + ], + [ + 73.79761572237982, + 12.58439990440156 + ], + [ + 74.02730108934716, + 12.58439990440156 + ], + [ + 73.91245840586349, + 12.779047639330013 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 12.779047639330013 + ], + [ + 74.02730108934716, + 12.58439990440156 + ], + [ + 74.14214377283085, + 12.779047639330013 + ], + [ + 73.91245840586349, + 12.779047639330013 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 13.16834310918692 + ], + [ + 74.14214377283085, + 13.16834310918692 + ], + [ + 74.02730108934716, + 13.362990844115373 + ], + [ + 73.91245840586349, + 13.16834310918692 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 13.16834310918692 + ], + [ + 74.02730108934716, + 13.362990844115373 + ], + [ + 73.79761572237982, + 13.362990844115373 + ], + [ + 73.91245840586349, + 13.16834310918692 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 13.16834310918692 + ], + [ + 73.79761572237982, + 13.362990844115373 + ], + [ + 73.68277303889613, + 13.16834310918692 + ], + [ + 73.91245840586349, + 13.16834310918692 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 13.16834310918692 + ], + [ + 73.68277303889613, + 13.16834310918692 + ], + [ + 73.79761572237982, + 12.973695374258465 + ], + [ + 73.91245840586349, + 13.16834310918692 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 13.16834310918692 + ], + [ + 73.79761572237982, + 12.973695374258465 + ], + [ + 74.02730108934716, + 12.973695374258465 + ], + [ + 73.91245840586349, + 13.16834310918692 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 13.16834310918692 + ], + [ + 74.02730108934716, + 12.973695374258465 + ], + [ + 74.14214377283085, + 13.16834310918692 + ], + [ + 73.91245840586349, + 13.16834310918692 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 13.557638579043825 + ], + [ + 74.14214377283085, + 13.557638579043825 + ], + [ + 74.02730108934716, + 13.752286313972279 + ], + [ + 73.91245840586349, + 13.557638579043825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 13.557638579043825 + ], + [ + 74.02730108934716, + 13.752286313972279 + ], + [ + 73.79761572237982, + 13.752286313972279 + ], + [ + 73.91245840586349, + 13.557638579043825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 13.557638579043825 + ], + [ + 73.79761572237982, + 13.752286313972279 + ], + [ + 73.68277303889613, + 13.557638579043825 + ], + [ + 73.91245840586349, + 13.557638579043825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 13.557638579043825 + ], + [ + 73.68277303889613, + 13.557638579043825 + ], + [ + 73.79761572237982, + 13.362990844115371 + ], + [ + 73.91245840586349, + 13.557638579043825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 13.557638579043825 + ], + [ + 73.79761572237982, + 13.362990844115371 + ], + [ + 74.02730108934716, + 13.362990844115371 + ], + [ + 73.91245840586349, + 13.557638579043825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 13.557638579043825 + ], + [ + 74.02730108934716, + 13.362990844115371 + ], + [ + 74.14214377283085, + 13.557638579043825 + ], + [ + 73.91245840586349, + 13.557638579043825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 13.946934048900731 + ], + [ + 74.14214377283085, + 13.946934048900731 + ], + [ + 74.02730108934716, + 14.141581783829185 + ], + [ + 73.91245840586349, + 13.946934048900731 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 13.946934048900731 + ], + [ + 74.02730108934716, + 14.141581783829185 + ], + [ + 73.79761572237982, + 14.141581783829185 + ], + [ + 73.91245840586349, + 13.946934048900731 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 13.946934048900731 + ], + [ + 73.79761572237982, + 14.141581783829185 + ], + [ + 73.68277303889613, + 13.946934048900731 + ], + [ + 73.91245840586349, + 13.946934048900731 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 13.946934048900731 + ], + [ + 73.68277303889613, + 13.946934048900731 + ], + [ + 73.79761572237982, + 13.752286313972277 + ], + [ + 73.91245840586349, + 13.946934048900731 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 13.946934048900731 + ], + [ + 73.79761572237982, + 13.752286313972277 + ], + [ + 74.02730108934716, + 13.752286313972277 + ], + [ + 73.91245840586349, + 13.946934048900731 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 13.946934048900731 + ], + [ + 74.02730108934716, + 13.752286313972277 + ], + [ + 74.14214377283085, + 13.946934048900731 + ], + [ + 73.91245840586349, + 13.946934048900731 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 14.336229518757637 + ], + [ + 74.14214377283085, + 14.336229518757637 + ], + [ + 74.02730108934716, + 14.530877253686091 + ], + [ + 73.91245840586349, + 14.336229518757637 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 14.336229518757637 + ], + [ + 74.02730108934716, + 14.530877253686091 + ], + [ + 73.79761572237982, + 14.530877253686091 + ], + [ + 73.91245840586349, + 14.336229518757637 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 14.336229518757637 + ], + [ + 73.79761572237982, + 14.530877253686091 + ], + [ + 73.68277303889613, + 14.336229518757637 + ], + [ + 73.91245840586349, + 14.336229518757637 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 14.336229518757637 + ], + [ + 73.68277303889613, + 14.336229518757637 + ], + [ + 73.79761572237982, + 14.141581783829183 + ], + [ + 73.91245840586349, + 14.336229518757637 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 14.336229518757637 + ], + [ + 73.79761572237982, + 14.141581783829183 + ], + [ + 74.02730108934716, + 14.141581783829183 + ], + [ + 73.91245840586349, + 14.336229518757637 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 14.336229518757637 + ], + [ + 74.02730108934716, + 14.141581783829183 + ], + [ + 74.14214377283085, + 14.336229518757637 + ], + [ + 73.91245840586349, + 14.336229518757637 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 14.725524988614545 + ], + [ + 74.14214377283085, + 14.725524988614545 + ], + [ + 74.02730108934716, + 14.920172723542999 + ], + [ + 73.91245840586349, + 14.725524988614545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 14.725524988614545 + ], + [ + 74.02730108934716, + 14.920172723542999 + ], + [ + 73.79761572237982, + 14.920172723542999 + ], + [ + 73.91245840586349, + 14.725524988614545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 14.725524988614545 + ], + [ + 73.79761572237982, + 14.920172723542999 + ], + [ + 73.68277303889613, + 14.725524988614545 + ], + [ + 73.91245840586349, + 14.725524988614545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 14.725524988614545 + ], + [ + 73.68277303889613, + 14.725524988614545 + ], + [ + 73.79761572237982, + 14.530877253686091 + ], + [ + 73.91245840586349, + 14.725524988614545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 14.725524988614545 + ], + [ + 73.79761572237982, + 14.530877253686091 + ], + [ + 74.02730108934716, + 14.530877253686091 + ], + [ + 73.91245840586349, + 14.725524988614545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 14.725524988614545 + ], + [ + 74.02730108934716, + 14.530877253686091 + ], + [ + 74.14214377283085, + 14.725524988614545 + ], + [ + 73.91245840586349, + 14.725524988614545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 15.114820458471451 + ], + [ + 74.14214377283085, + 15.114820458471451 + ], + [ + 74.02730108934716, + 15.309468193399905 + ], + [ + 73.91245840586349, + 15.114820458471451 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 15.114820458471451 + ], + [ + 74.02730108934716, + 15.309468193399905 + ], + [ + 73.79761572237982, + 15.309468193399905 + ], + [ + 73.91245840586349, + 15.114820458471451 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 15.114820458471451 + ], + [ + 73.79761572237982, + 15.309468193399905 + ], + [ + 73.68277303889613, + 15.114820458471451 + ], + [ + 73.91245840586349, + 15.114820458471451 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 15.114820458471451 + ], + [ + 73.68277303889613, + 15.114820458471451 + ], + [ + 73.79761572237982, + 14.920172723542997 + ], + [ + 73.91245840586349, + 15.114820458471451 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 15.114820458471451 + ], + [ + 73.79761572237982, + 14.920172723542997 + ], + [ + 74.02730108934716, + 14.920172723542997 + ], + [ + 73.91245840586349, + 15.114820458471451 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 15.114820458471451 + ], + [ + 74.02730108934716, + 14.920172723542997 + ], + [ + 74.14214377283085, + 15.114820458471451 + ], + [ + 73.91245840586349, + 15.114820458471451 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 15.504115928328357 + ], + [ + 74.14214377283085, + 15.504115928328357 + ], + [ + 74.02730108934716, + 15.69876366325681 + ], + [ + 73.91245840586349, + 15.504115928328357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 15.504115928328357 + ], + [ + 74.02730108934716, + 15.69876366325681 + ], + [ + 73.79761572237982, + 15.69876366325681 + ], + [ + 73.91245840586349, + 15.504115928328357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 15.504115928328357 + ], + [ + 73.79761572237982, + 15.69876366325681 + ], + [ + 73.68277303889613, + 15.504115928328357 + ], + [ + 73.91245840586349, + 15.504115928328357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 15.504115928328357 + ], + [ + 73.68277303889613, + 15.504115928328357 + ], + [ + 73.79761572237982, + 15.309468193399903 + ], + [ + 73.91245840586349, + 15.504115928328357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 15.504115928328357 + ], + [ + 73.79761572237982, + 15.309468193399903 + ], + [ + 74.02730108934716, + 15.309468193399903 + ], + [ + 73.91245840586349, + 15.504115928328357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 15.504115928328357 + ], + [ + 74.02730108934716, + 15.309468193399903 + ], + [ + 74.14214377283085, + 15.504115928328357 + ], + [ + 73.91245840586349, + 15.504115928328357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 15.893411398185265 + ], + [ + 74.14214377283085, + 15.893411398185265 + ], + [ + 74.02730108934716, + 16.088059133113717 + ], + [ + 73.91245840586349, + 15.893411398185265 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 15.893411398185265 + ], + [ + 74.02730108934716, + 16.088059133113717 + ], + [ + 73.79761572237982, + 16.088059133113717 + ], + [ + 73.91245840586349, + 15.893411398185265 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 15.893411398185265 + ], + [ + 73.79761572237982, + 16.088059133113717 + ], + [ + 73.68277303889613, + 15.893411398185265 + ], + [ + 73.91245840586349, + 15.893411398185265 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 15.893411398185265 + ], + [ + 73.68277303889613, + 15.893411398185265 + ], + [ + 73.79761572237982, + 15.69876366325681 + ], + [ + 73.91245840586349, + 15.893411398185265 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 15.893411398185265 + ], + [ + 73.79761572237982, + 15.69876366325681 + ], + [ + 74.02730108934716, + 15.69876366325681 + ], + [ + 73.91245840586349, + 15.893411398185265 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 15.893411398185265 + ], + [ + 74.02730108934716, + 15.69876366325681 + ], + [ + 74.14214377283085, + 15.893411398185265 + ], + [ + 73.91245840586349, + 15.893411398185265 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 16.28270686804217 + ], + [ + 74.14214377283085, + 16.28270686804217 + ], + [ + 74.02730108934716, + 16.47735460297062 + ], + [ + 73.91245840586349, + 16.28270686804217 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 16.28270686804217 + ], + [ + 74.02730108934716, + 16.47735460297062 + ], + [ + 73.79761572237982, + 16.47735460297062 + ], + [ + 73.91245840586349, + 16.28270686804217 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 16.28270686804217 + ], + [ + 73.79761572237982, + 16.47735460297062 + ], + [ + 73.68277303889613, + 16.28270686804217 + ], + [ + 73.91245840586349, + 16.28270686804217 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 16.28270686804217 + ], + [ + 73.68277303889613, + 16.28270686804217 + ], + [ + 73.79761572237982, + 16.088059133113717 + ], + [ + 73.91245840586349, + 16.28270686804217 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 16.28270686804217 + ], + [ + 73.79761572237982, + 16.088059133113717 + ], + [ + 74.02730108934716, + 16.088059133113717 + ], + [ + 73.91245840586349, + 16.28270686804217 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 16.28270686804217 + ], + [ + 74.02730108934716, + 16.088059133113717 + ], + [ + 74.14214377283085, + 16.28270686804217 + ], + [ + 73.91245840586349, + 16.28270686804217 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 16.672002337899077 + ], + [ + 74.14214377283085, + 16.672002337899077 + ], + [ + 74.02730108934716, + 16.86665007282753 + ], + [ + 73.91245840586349, + 16.672002337899077 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 16.672002337899077 + ], + [ + 74.02730108934716, + 16.86665007282753 + ], + [ + 73.79761572237982, + 16.86665007282753 + ], + [ + 73.91245840586349, + 16.672002337899077 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 16.672002337899077 + ], + [ + 73.79761572237982, + 16.86665007282753 + ], + [ + 73.68277303889613, + 16.672002337899077 + ], + [ + 73.91245840586349, + 16.672002337899077 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 16.672002337899077 + ], + [ + 73.68277303889613, + 16.672002337899077 + ], + [ + 73.79761572237982, + 16.477354602970625 + ], + [ + 73.91245840586349, + 16.672002337899077 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 16.672002337899077 + ], + [ + 73.79761572237982, + 16.477354602970625 + ], + [ + 74.02730108934716, + 16.477354602970625 + ], + [ + 73.91245840586349, + 16.672002337899077 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 16.672002337899077 + ], + [ + 74.02730108934716, + 16.477354602970625 + ], + [ + 74.14214377283085, + 16.672002337899077 + ], + [ + 73.91245840586349, + 16.672002337899077 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 17.06129780775598 + ], + [ + 74.14214377283085, + 17.06129780775598 + ], + [ + 74.02730108934716, + 17.255945542684433 + ], + [ + 73.91245840586349, + 17.06129780775598 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 17.06129780775598 + ], + [ + 74.02730108934716, + 17.255945542684433 + ], + [ + 73.79761572237982, + 17.255945542684433 + ], + [ + 73.91245840586349, + 17.06129780775598 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 17.06129780775598 + ], + [ + 73.79761572237982, + 17.255945542684433 + ], + [ + 73.68277303889613, + 17.06129780775598 + ], + [ + 73.91245840586349, + 17.06129780775598 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 17.06129780775598 + ], + [ + 73.68277303889613, + 17.06129780775598 + ], + [ + 73.79761572237982, + 16.86665007282753 + ], + [ + 73.91245840586349, + 17.06129780775598 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 17.06129780775598 + ], + [ + 73.79761572237982, + 16.86665007282753 + ], + [ + 74.02730108934716, + 16.86665007282753 + ], + [ + 73.91245840586349, + 17.06129780775598 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 17.06129780775598 + ], + [ + 74.02730108934716, + 16.86665007282753 + ], + [ + 74.14214377283085, + 17.06129780775598 + ], + [ + 73.91245840586349, + 17.06129780775598 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 17.45059327761289 + ], + [ + 74.14214377283085, + 17.45059327761289 + ], + [ + 74.02730108934716, + 17.64524101254134 + ], + [ + 73.91245840586349, + 17.45059327761289 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 17.45059327761289 + ], + [ + 74.02730108934716, + 17.64524101254134 + ], + [ + 73.79761572237982, + 17.64524101254134 + ], + [ + 73.91245840586349, + 17.45059327761289 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 17.45059327761289 + ], + [ + 73.79761572237982, + 17.64524101254134 + ], + [ + 73.68277303889613, + 17.45059327761289 + ], + [ + 73.91245840586349, + 17.45059327761289 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 17.45059327761289 + ], + [ + 73.68277303889613, + 17.45059327761289 + ], + [ + 73.79761572237982, + 17.255945542684437 + ], + [ + 73.91245840586349, + 17.45059327761289 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 17.45059327761289 + ], + [ + 73.79761572237982, + 17.255945542684437 + ], + [ + 74.02730108934716, + 17.255945542684437 + ], + [ + 73.91245840586349, + 17.45059327761289 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 17.45059327761289 + ], + [ + 74.02730108934716, + 17.255945542684437 + ], + [ + 74.14214377283085, + 17.45059327761289 + ], + [ + 73.91245840586349, + 17.45059327761289 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 17.839888747469793 + ], + [ + 74.14214377283085, + 17.839888747469793 + ], + [ + 74.02730108934716, + 18.034536482398245 + ], + [ + 73.91245840586349, + 17.839888747469793 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 17.839888747469793 + ], + [ + 74.02730108934716, + 18.034536482398245 + ], + [ + 73.79761572237982, + 18.034536482398245 + ], + [ + 73.91245840586349, + 17.839888747469793 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 17.839888747469793 + ], + [ + 73.79761572237982, + 18.034536482398245 + ], + [ + 73.68277303889613, + 17.839888747469793 + ], + [ + 73.91245840586349, + 17.839888747469793 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 17.839888747469793 + ], + [ + 73.68277303889613, + 17.839888747469793 + ], + [ + 73.79761572237982, + 17.64524101254134 + ], + [ + 73.91245840586349, + 17.839888747469793 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 17.839888747469793 + ], + [ + 73.79761572237982, + 17.64524101254134 + ], + [ + 74.02730108934716, + 17.64524101254134 + ], + [ + 73.91245840586349, + 17.839888747469793 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 17.839888747469793 + ], + [ + 74.02730108934716, + 17.64524101254134 + ], + [ + 74.14214377283085, + 17.839888747469793 + ], + [ + 73.91245840586349, + 17.839888747469793 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 18.2291842173267 + ], + [ + 74.14214377283085, + 18.2291842173267 + ], + [ + 74.02730108934716, + 18.423831952255153 + ], + [ + 73.91245840586349, + 18.2291842173267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 18.2291842173267 + ], + [ + 74.02730108934716, + 18.423831952255153 + ], + [ + 73.79761572237982, + 18.423831952255153 + ], + [ + 73.91245840586349, + 18.2291842173267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 18.2291842173267 + ], + [ + 73.79761572237982, + 18.423831952255153 + ], + [ + 73.68277303889613, + 18.2291842173267 + ], + [ + 73.91245840586349, + 18.2291842173267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 18.2291842173267 + ], + [ + 73.68277303889613, + 18.2291842173267 + ], + [ + 73.79761572237982, + 18.03453648239825 + ], + [ + 73.91245840586349, + 18.2291842173267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 18.2291842173267 + ], + [ + 73.79761572237982, + 18.03453648239825 + ], + [ + 74.02730108934716, + 18.03453648239825 + ], + [ + 73.91245840586349, + 18.2291842173267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 18.2291842173267 + ], + [ + 74.02730108934716, + 18.03453648239825 + ], + [ + 74.14214377283085, + 18.2291842173267 + ], + [ + 73.91245840586349, + 18.2291842173267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 18.61847968718361 + ], + [ + 74.14214377283085, + 18.61847968718361 + ], + [ + 74.02730108934716, + 18.81312742211206 + ], + [ + 73.91245840586349, + 18.61847968718361 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 18.61847968718361 + ], + [ + 74.02730108934716, + 18.81312742211206 + ], + [ + 73.79761572237982, + 18.81312742211206 + ], + [ + 73.91245840586349, + 18.61847968718361 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 18.61847968718361 + ], + [ + 73.79761572237982, + 18.81312742211206 + ], + [ + 73.68277303889613, + 18.61847968718361 + ], + [ + 73.91245840586349, + 18.61847968718361 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 18.61847968718361 + ], + [ + 73.68277303889613, + 18.61847968718361 + ], + [ + 73.79761572237982, + 18.423831952255156 + ], + [ + 73.91245840586349, + 18.61847968718361 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 18.61847968718361 + ], + [ + 73.79761572237982, + 18.423831952255156 + ], + [ + 74.02730108934716, + 18.423831952255156 + ], + [ + 73.91245840586349, + 18.61847968718361 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 18.61847968718361 + ], + [ + 74.02730108934716, + 18.423831952255156 + ], + [ + 74.14214377283085, + 18.61847968718361 + ], + [ + 73.91245840586349, + 18.61847968718361 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 19.007775157040513 + ], + [ + 74.14214377283085, + 19.007775157040513 + ], + [ + 74.02730108934716, + 19.202422891968965 + ], + [ + 73.91245840586349, + 19.007775157040513 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 19.007775157040513 + ], + [ + 74.02730108934716, + 19.202422891968965 + ], + [ + 73.79761572237982, + 19.202422891968965 + ], + [ + 73.91245840586349, + 19.007775157040513 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 19.007775157040513 + ], + [ + 73.79761572237982, + 19.202422891968965 + ], + [ + 73.68277303889613, + 19.007775157040513 + ], + [ + 73.91245840586349, + 19.007775157040513 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 19.007775157040513 + ], + [ + 73.68277303889613, + 19.007775157040513 + ], + [ + 73.79761572237982, + 18.81312742211206 + ], + [ + 73.91245840586349, + 19.007775157040513 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 19.007775157040513 + ], + [ + 73.79761572237982, + 18.81312742211206 + ], + [ + 74.02730108934716, + 18.81312742211206 + ], + [ + 73.91245840586349, + 19.007775157040513 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 19.007775157040513 + ], + [ + 74.02730108934716, + 18.81312742211206 + ], + [ + 74.14214377283085, + 19.007775157040513 + ], + [ + 73.91245840586349, + 19.007775157040513 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 19.39707062689742 + ], + [ + 74.14214377283085, + 19.39707062689742 + ], + [ + 74.02730108934716, + 19.591718361825873 + ], + [ + 73.91245840586349, + 19.39707062689742 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 19.39707062689742 + ], + [ + 74.02730108934716, + 19.591718361825873 + ], + [ + 73.79761572237982, + 19.591718361825873 + ], + [ + 73.91245840586349, + 19.39707062689742 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 19.39707062689742 + ], + [ + 73.79761572237982, + 19.591718361825873 + ], + [ + 73.68277303889613, + 19.39707062689742 + ], + [ + 73.91245840586349, + 19.39707062689742 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 19.39707062689742 + ], + [ + 73.68277303889613, + 19.39707062689742 + ], + [ + 73.79761572237982, + 19.20242289196897 + ], + [ + 73.91245840586349, + 19.39707062689742 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 19.39707062689742 + ], + [ + 73.79761572237982, + 19.20242289196897 + ], + [ + 74.02730108934716, + 19.20242289196897 + ], + [ + 73.91245840586349, + 19.39707062689742 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 19.39707062689742 + ], + [ + 74.02730108934716, + 19.20242289196897 + ], + [ + 74.14214377283085, + 19.39707062689742 + ], + [ + 73.91245840586349, + 19.39707062689742 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 19.78636609675433 + ], + [ + 74.14214377283085, + 19.78636609675433 + ], + [ + 74.02730108934716, + 19.98101383168278 + ], + [ + 73.91245840586349, + 19.78636609675433 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 19.78636609675433 + ], + [ + 74.02730108934716, + 19.98101383168278 + ], + [ + 73.79761572237982, + 19.98101383168278 + ], + [ + 73.91245840586349, + 19.78636609675433 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 19.78636609675433 + ], + [ + 73.79761572237982, + 19.98101383168278 + ], + [ + 73.68277303889613, + 19.78636609675433 + ], + [ + 73.91245840586349, + 19.78636609675433 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 19.78636609675433 + ], + [ + 73.68277303889613, + 19.78636609675433 + ], + [ + 73.79761572237982, + 19.591718361825876 + ], + [ + 73.91245840586349, + 19.78636609675433 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 19.78636609675433 + ], + [ + 73.79761572237982, + 19.591718361825876 + ], + [ + 74.02730108934716, + 19.591718361825876 + ], + [ + 73.91245840586349, + 19.78636609675433 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 19.78636609675433 + ], + [ + 74.02730108934716, + 19.591718361825876 + ], + [ + 74.14214377283085, + 19.78636609675433 + ], + [ + 73.91245840586349, + 19.78636609675433 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 20.175661566611232 + ], + [ + 74.14214377283085, + 20.175661566611232 + ], + [ + 74.02730108934716, + 20.370309301539685 + ], + [ + 73.91245840586349, + 20.175661566611232 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 20.175661566611232 + ], + [ + 74.02730108934716, + 20.370309301539685 + ], + [ + 73.79761572237982, + 20.370309301539685 + ], + [ + 73.91245840586349, + 20.175661566611232 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 20.175661566611232 + ], + [ + 73.79761572237982, + 20.370309301539685 + ], + [ + 73.68277303889613, + 20.175661566611232 + ], + [ + 73.91245840586349, + 20.175661566611232 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 20.175661566611232 + ], + [ + 73.68277303889613, + 20.175661566611232 + ], + [ + 73.79761572237982, + 19.98101383168278 + ], + [ + 73.91245840586349, + 20.175661566611232 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 20.175661566611232 + ], + [ + 73.79761572237982, + 19.98101383168278 + ], + [ + 74.02730108934716, + 19.98101383168278 + ], + [ + 73.91245840586349, + 20.175661566611232 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 20.175661566611232 + ], + [ + 74.02730108934716, + 19.98101383168278 + ], + [ + 74.14214377283085, + 20.175661566611232 + ], + [ + 73.91245840586349, + 20.175661566611232 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 20.564957036468137 + ], + [ + 74.14214377283085, + 20.564957036468137 + ], + [ + 74.02730108934716, + 20.75960477139659 + ], + [ + 73.91245840586349, + 20.564957036468137 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 20.564957036468137 + ], + [ + 74.02730108934716, + 20.75960477139659 + ], + [ + 73.79761572237982, + 20.75960477139659 + ], + [ + 73.91245840586349, + 20.564957036468137 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 20.564957036468137 + ], + [ + 73.79761572237982, + 20.75960477139659 + ], + [ + 73.68277303889613, + 20.564957036468137 + ], + [ + 73.91245840586349, + 20.564957036468137 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 20.564957036468137 + ], + [ + 73.68277303889613, + 20.564957036468137 + ], + [ + 73.79761572237982, + 20.370309301539685 + ], + [ + 73.91245840586349, + 20.564957036468137 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 20.564957036468137 + ], + [ + 73.79761572237982, + 20.370309301539685 + ], + [ + 74.02730108934716, + 20.370309301539685 + ], + [ + 73.91245840586349, + 20.564957036468137 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 20.564957036468137 + ], + [ + 74.02730108934716, + 20.370309301539685 + ], + [ + 74.14214377283085, + 20.564957036468137 + ], + [ + 73.91245840586349, + 20.564957036468137 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 20.954252506325044 + ], + [ + 74.14214377283085, + 20.954252506325044 + ], + [ + 74.02730108934716, + 21.148900241253497 + ], + [ + 73.91245840586349, + 20.954252506325044 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 20.954252506325044 + ], + [ + 74.02730108934716, + 21.148900241253497 + ], + [ + 73.79761572237982, + 21.148900241253497 + ], + [ + 73.91245840586349, + 20.954252506325044 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 20.954252506325044 + ], + [ + 73.79761572237982, + 21.148900241253497 + ], + [ + 73.68277303889613, + 20.954252506325044 + ], + [ + 73.91245840586349, + 20.954252506325044 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 20.954252506325044 + ], + [ + 73.68277303889613, + 20.954252506325044 + ], + [ + 73.79761572237982, + 20.759604771396592 + ], + [ + 73.91245840586349, + 20.954252506325044 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 20.954252506325044 + ], + [ + 73.79761572237982, + 20.759604771396592 + ], + [ + 74.02730108934716, + 20.759604771396592 + ], + [ + 73.91245840586349, + 20.954252506325044 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 20.954252506325044 + ], + [ + 74.02730108934716, + 20.759604771396592 + ], + [ + 74.14214377283085, + 20.954252506325044 + ], + [ + 73.91245840586349, + 20.954252506325044 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 21.343547976181952 + ], + [ + 74.14214377283085, + 21.343547976181952 + ], + [ + 74.02730108934716, + 21.538195711110404 + ], + [ + 73.91245840586349, + 21.343547976181952 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 21.343547976181952 + ], + [ + 74.02730108934716, + 21.538195711110404 + ], + [ + 73.79761572237982, + 21.538195711110404 + ], + [ + 73.91245840586349, + 21.343547976181952 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 21.343547976181952 + ], + [ + 73.79761572237982, + 21.538195711110404 + ], + [ + 73.68277303889613, + 21.343547976181952 + ], + [ + 73.91245840586349, + 21.343547976181952 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 21.343547976181952 + ], + [ + 73.68277303889613, + 21.343547976181952 + ], + [ + 73.79761572237982, + 21.1489002412535 + ], + [ + 73.91245840586349, + 21.343547976181952 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 21.343547976181952 + ], + [ + 73.79761572237982, + 21.1489002412535 + ], + [ + 74.02730108934716, + 21.1489002412535 + ], + [ + 73.91245840586349, + 21.343547976181952 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 21.343547976181952 + ], + [ + 74.02730108934716, + 21.1489002412535 + ], + [ + 74.14214377283085, + 21.343547976181952 + ], + [ + 73.91245840586349, + 21.343547976181952 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 21.732843446038856 + ], + [ + 74.14214377283085, + 21.732843446038856 + ], + [ + 74.02730108934716, + 21.92749118096731 + ], + [ + 73.91245840586349, + 21.732843446038856 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 21.732843446038856 + ], + [ + 74.02730108934716, + 21.92749118096731 + ], + [ + 73.79761572237982, + 21.92749118096731 + ], + [ + 73.91245840586349, + 21.732843446038856 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 21.732843446038856 + ], + [ + 73.79761572237982, + 21.92749118096731 + ], + [ + 73.68277303889613, + 21.732843446038856 + ], + [ + 73.91245840586349, + 21.732843446038856 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 21.732843446038856 + ], + [ + 73.68277303889613, + 21.732843446038856 + ], + [ + 73.79761572237982, + 21.538195711110404 + ], + [ + 73.91245840586349, + 21.732843446038856 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 21.732843446038856 + ], + [ + 73.79761572237982, + 21.538195711110404 + ], + [ + 74.02730108934716, + 21.538195711110404 + ], + [ + 73.91245840586349, + 21.732843446038856 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 21.732843446038856 + ], + [ + 74.02730108934716, + 21.538195711110404 + ], + [ + 74.14214377283085, + 21.732843446038856 + ], + [ + 73.91245840586349, + 21.732843446038856 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 22.122138915895764 + ], + [ + 74.14214377283085, + 22.122138915895764 + ], + [ + 74.02730108934716, + 22.316786650824216 + ], + [ + 73.91245840586349, + 22.122138915895764 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 22.122138915895764 + ], + [ + 74.02730108934716, + 22.316786650824216 + ], + [ + 73.79761572237982, + 22.316786650824216 + ], + [ + 73.91245840586349, + 22.122138915895764 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 22.122138915895764 + ], + [ + 73.79761572237982, + 22.316786650824216 + ], + [ + 73.68277303889613, + 22.122138915895764 + ], + [ + 73.91245840586349, + 22.122138915895764 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 22.122138915895764 + ], + [ + 73.68277303889613, + 22.122138915895764 + ], + [ + 73.79761572237982, + 21.927491180967312 + ], + [ + 73.91245840586349, + 22.122138915895764 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 22.122138915895764 + ], + [ + 73.79761572237982, + 21.927491180967312 + ], + [ + 74.02730108934716, + 21.927491180967312 + ], + [ + 73.91245840586349, + 22.122138915895764 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 22.122138915895764 + ], + [ + 74.02730108934716, + 21.927491180967312 + ], + [ + 74.14214377283085, + 22.122138915895764 + ], + [ + 73.91245840586349, + 22.122138915895764 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 22.511434385752672 + ], + [ + 74.14214377283085, + 22.511434385752672 + ], + [ + 74.02730108934716, + 22.706082120681124 + ], + [ + 73.91245840586349, + 22.511434385752672 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 22.511434385752672 + ], + [ + 74.02730108934716, + 22.706082120681124 + ], + [ + 73.79761572237982, + 22.706082120681124 + ], + [ + 73.91245840586349, + 22.511434385752672 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 22.511434385752672 + ], + [ + 73.79761572237982, + 22.706082120681124 + ], + [ + 73.68277303889613, + 22.511434385752672 + ], + [ + 73.91245840586349, + 22.511434385752672 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 22.511434385752672 + ], + [ + 73.68277303889613, + 22.511434385752672 + ], + [ + 73.79761572237982, + 22.31678665082422 + ], + [ + 73.91245840586349, + 22.511434385752672 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 22.511434385752672 + ], + [ + 73.79761572237982, + 22.31678665082422 + ], + [ + 74.02730108934716, + 22.31678665082422 + ], + [ + 73.91245840586349, + 22.511434385752672 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 22.511434385752672 + ], + [ + 74.02730108934716, + 22.31678665082422 + ], + [ + 74.14214377283085, + 22.511434385752672 + ], + [ + 73.91245840586349, + 22.511434385752672 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 22.900729855609576 + ], + [ + 74.14214377283085, + 22.900729855609576 + ], + [ + 74.02730108934716, + 23.09537759053803 + ], + [ + 73.91245840586349, + 22.900729855609576 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 22.900729855609576 + ], + [ + 74.02730108934716, + 23.09537759053803 + ], + [ + 73.79761572237982, + 23.09537759053803 + ], + [ + 73.91245840586349, + 22.900729855609576 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 22.900729855609576 + ], + [ + 73.79761572237982, + 23.09537759053803 + ], + [ + 73.68277303889613, + 22.900729855609576 + ], + [ + 73.91245840586349, + 22.900729855609576 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 22.900729855609576 + ], + [ + 73.68277303889613, + 22.900729855609576 + ], + [ + 73.79761572237982, + 22.706082120681124 + ], + [ + 73.91245840586349, + 22.900729855609576 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 22.900729855609576 + ], + [ + 73.79761572237982, + 22.706082120681124 + ], + [ + 74.02730108934716, + 22.706082120681124 + ], + [ + 73.91245840586349, + 22.900729855609576 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 22.900729855609576 + ], + [ + 74.02730108934716, + 22.706082120681124 + ], + [ + 74.14214377283085, + 22.900729855609576 + ], + [ + 73.91245840586349, + 22.900729855609576 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 23.290025325466484 + ], + [ + 74.14214377283085, + 23.290025325466484 + ], + [ + 74.02730108934716, + 23.484673060394936 + ], + [ + 73.91245840586349, + 23.290025325466484 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 23.290025325466484 + ], + [ + 74.02730108934716, + 23.484673060394936 + ], + [ + 73.79761572237982, + 23.484673060394936 + ], + [ + 73.91245840586349, + 23.290025325466484 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 23.290025325466484 + ], + [ + 73.79761572237982, + 23.484673060394936 + ], + [ + 73.68277303889613, + 23.290025325466484 + ], + [ + 73.91245840586349, + 23.290025325466484 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 23.290025325466484 + ], + [ + 73.68277303889613, + 23.290025325466484 + ], + [ + 73.79761572237982, + 23.095377590538032 + ], + [ + 73.91245840586349, + 23.290025325466484 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 23.290025325466484 + ], + [ + 73.79761572237982, + 23.095377590538032 + ], + [ + 74.02730108934716, + 23.095377590538032 + ], + [ + 73.91245840586349, + 23.290025325466484 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 23.290025325466484 + ], + [ + 74.02730108934716, + 23.095377590538032 + ], + [ + 74.14214377283085, + 23.290025325466484 + ], + [ + 73.91245840586349, + 23.290025325466484 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 23.67932079532339 + ], + [ + 74.14214377283085, + 23.67932079532339 + ], + [ + 74.02730108934716, + 23.873968530251844 + ], + [ + 73.91245840586349, + 23.67932079532339 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 23.67932079532339 + ], + [ + 74.02730108934716, + 23.873968530251844 + ], + [ + 73.79761572237982, + 23.873968530251844 + ], + [ + 73.91245840586349, + 23.67932079532339 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 23.67932079532339 + ], + [ + 73.79761572237982, + 23.873968530251844 + ], + [ + 73.68277303889613, + 23.67932079532339 + ], + [ + 73.91245840586349, + 23.67932079532339 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 23.67932079532339 + ], + [ + 73.68277303889613, + 23.67932079532339 + ], + [ + 73.79761572237982, + 23.48467306039494 + ], + [ + 73.91245840586349, + 23.67932079532339 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 23.67932079532339 + ], + [ + 73.79761572237982, + 23.48467306039494 + ], + [ + 74.02730108934716, + 23.48467306039494 + ], + [ + 73.91245840586349, + 23.67932079532339 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 23.67932079532339 + ], + [ + 74.02730108934716, + 23.48467306039494 + ], + [ + 74.14214377283085, + 23.67932079532339 + ], + [ + 73.91245840586349, + 23.67932079532339 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 24.068616265180296 + ], + [ + 74.14214377283085, + 24.068616265180296 + ], + [ + 74.02730108934716, + 24.263264000108748 + ], + [ + 73.91245840586349, + 24.068616265180296 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 24.068616265180296 + ], + [ + 74.02730108934716, + 24.263264000108748 + ], + [ + 73.79761572237982, + 24.263264000108748 + ], + [ + 73.91245840586349, + 24.068616265180296 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 24.068616265180296 + ], + [ + 73.79761572237982, + 24.263264000108748 + ], + [ + 73.68277303889613, + 24.068616265180296 + ], + [ + 73.91245840586349, + 24.068616265180296 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 24.068616265180296 + ], + [ + 73.68277303889613, + 24.068616265180296 + ], + [ + 73.79761572237982, + 23.873968530251844 + ], + [ + 73.91245840586349, + 24.068616265180296 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 24.068616265180296 + ], + [ + 73.79761572237982, + 23.873968530251844 + ], + [ + 74.02730108934716, + 23.873968530251844 + ], + [ + 73.91245840586349, + 24.068616265180296 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 24.068616265180296 + ], + [ + 74.02730108934716, + 23.873968530251844 + ], + [ + 74.14214377283085, + 24.068616265180296 + ], + [ + 73.91245840586349, + 24.068616265180296 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 24.4579117350372 + ], + [ + 74.14214377283085, + 24.4579117350372 + ], + [ + 74.02730108934716, + 24.652559469965652 + ], + [ + 73.91245840586349, + 24.4579117350372 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 24.4579117350372 + ], + [ + 74.02730108934716, + 24.652559469965652 + ], + [ + 73.79761572237982, + 24.652559469965652 + ], + [ + 73.91245840586349, + 24.4579117350372 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 24.4579117350372 + ], + [ + 73.79761572237982, + 24.652559469965652 + ], + [ + 73.68277303889613, + 24.4579117350372 + ], + [ + 73.91245840586349, + 24.4579117350372 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 24.4579117350372 + ], + [ + 73.68277303889613, + 24.4579117350372 + ], + [ + 73.79761572237982, + 24.263264000108748 + ], + [ + 73.91245840586349, + 24.4579117350372 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 24.4579117350372 + ], + [ + 73.79761572237982, + 24.263264000108748 + ], + [ + 74.02730108934716, + 24.263264000108748 + ], + [ + 73.91245840586349, + 24.4579117350372 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 24.4579117350372 + ], + [ + 74.02730108934716, + 24.263264000108748 + ], + [ + 74.14214377283085, + 24.4579117350372 + ], + [ + 73.91245840586349, + 24.4579117350372 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 24.847207204894108 + ], + [ + 74.14214377283085, + 24.847207204894108 + ], + [ + 74.02730108934716, + 25.04185493982256 + ], + [ + 73.91245840586349, + 24.847207204894108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 24.847207204894108 + ], + [ + 74.02730108934716, + 25.04185493982256 + ], + [ + 73.79761572237982, + 25.04185493982256 + ], + [ + 73.91245840586349, + 24.847207204894108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 24.847207204894108 + ], + [ + 73.79761572237982, + 25.04185493982256 + ], + [ + 73.68277303889613, + 24.847207204894108 + ], + [ + 73.91245840586349, + 24.847207204894108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 24.847207204894108 + ], + [ + 73.68277303889613, + 24.847207204894108 + ], + [ + 73.79761572237982, + 24.652559469965656 + ], + [ + 73.91245840586349, + 24.847207204894108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 24.847207204894108 + ], + [ + 73.79761572237982, + 24.652559469965656 + ], + [ + 74.02730108934716, + 24.652559469965656 + ], + [ + 73.91245840586349, + 24.847207204894108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 24.847207204894108 + ], + [ + 74.02730108934716, + 24.652559469965656 + ], + [ + 74.14214377283085, + 24.847207204894108 + ], + [ + 73.91245840586349, + 24.847207204894108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 25.236502674751016 + ], + [ + 74.14214377283085, + 25.236502674751016 + ], + [ + 74.02730108934716, + 25.431150409679468 + ], + [ + 73.91245840586349, + 25.236502674751016 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 25.236502674751016 + ], + [ + 74.02730108934716, + 25.431150409679468 + ], + [ + 73.79761572237982, + 25.431150409679468 + ], + [ + 73.91245840586349, + 25.236502674751016 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 25.236502674751016 + ], + [ + 73.79761572237982, + 25.431150409679468 + ], + [ + 73.68277303889613, + 25.236502674751016 + ], + [ + 73.91245840586349, + 25.236502674751016 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 25.236502674751016 + ], + [ + 73.68277303889613, + 25.236502674751016 + ], + [ + 73.79761572237982, + 25.041854939822564 + ], + [ + 73.91245840586349, + 25.236502674751016 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 25.236502674751016 + ], + [ + 73.79761572237982, + 25.041854939822564 + ], + [ + 74.02730108934716, + 25.041854939822564 + ], + [ + 73.91245840586349, + 25.236502674751016 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 25.236502674751016 + ], + [ + 74.02730108934716, + 25.041854939822564 + ], + [ + 74.14214377283085, + 25.236502674751016 + ], + [ + 73.91245840586349, + 25.236502674751016 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 25.62579814460792 + ], + [ + 74.14214377283085, + 25.62579814460792 + ], + [ + 74.02730108934716, + 25.820445879536372 + ], + [ + 73.91245840586349, + 25.62579814460792 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 25.62579814460792 + ], + [ + 74.02730108934716, + 25.820445879536372 + ], + [ + 73.79761572237982, + 25.820445879536372 + ], + [ + 73.91245840586349, + 25.62579814460792 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 25.62579814460792 + ], + [ + 73.79761572237982, + 25.820445879536372 + ], + [ + 73.68277303889613, + 25.62579814460792 + ], + [ + 73.91245840586349, + 25.62579814460792 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 25.62579814460792 + ], + [ + 73.68277303889613, + 25.62579814460792 + ], + [ + 73.79761572237982, + 25.431150409679468 + ], + [ + 73.91245840586349, + 25.62579814460792 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 25.62579814460792 + ], + [ + 73.79761572237982, + 25.431150409679468 + ], + [ + 74.02730108934716, + 25.431150409679468 + ], + [ + 73.91245840586349, + 25.62579814460792 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 25.62579814460792 + ], + [ + 74.02730108934716, + 25.431150409679468 + ], + [ + 74.14214377283085, + 25.62579814460792 + ], + [ + 73.91245840586349, + 25.62579814460792 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 26.015093614464828 + ], + [ + 74.14214377283085, + 26.015093614464828 + ], + [ + 74.02730108934716, + 26.20974134939328 + ], + [ + 73.91245840586349, + 26.015093614464828 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 26.015093614464828 + ], + [ + 74.02730108934716, + 26.20974134939328 + ], + [ + 73.79761572237982, + 26.20974134939328 + ], + [ + 73.91245840586349, + 26.015093614464828 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 26.015093614464828 + ], + [ + 73.79761572237982, + 26.20974134939328 + ], + [ + 73.68277303889613, + 26.015093614464828 + ], + [ + 73.91245840586349, + 26.015093614464828 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 26.015093614464828 + ], + [ + 73.68277303889613, + 26.015093614464828 + ], + [ + 73.79761572237982, + 25.820445879536376 + ], + [ + 73.91245840586349, + 26.015093614464828 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 26.015093614464828 + ], + [ + 73.79761572237982, + 25.820445879536376 + ], + [ + 74.02730108934716, + 25.820445879536376 + ], + [ + 73.91245840586349, + 26.015093614464828 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 26.015093614464828 + ], + [ + 74.02730108934716, + 25.820445879536376 + ], + [ + 74.14214377283085, + 26.015093614464828 + ], + [ + 73.91245840586349, + 26.015093614464828 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 26.404389084321735 + ], + [ + 74.14214377283085, + 26.404389084321735 + ], + [ + 74.02730108934716, + 26.599036819250188 + ], + [ + 73.91245840586349, + 26.404389084321735 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 26.404389084321735 + ], + [ + 74.02730108934716, + 26.599036819250188 + ], + [ + 73.79761572237982, + 26.599036819250188 + ], + [ + 73.91245840586349, + 26.404389084321735 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 26.404389084321735 + ], + [ + 73.79761572237982, + 26.599036819250188 + ], + [ + 73.68277303889613, + 26.404389084321735 + ], + [ + 73.91245840586349, + 26.404389084321735 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 26.404389084321735 + ], + [ + 73.68277303889613, + 26.404389084321735 + ], + [ + 73.79761572237982, + 26.209741349393283 + ], + [ + 73.91245840586349, + 26.404389084321735 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 26.404389084321735 + ], + [ + 73.79761572237982, + 26.209741349393283 + ], + [ + 74.02730108934716, + 26.209741349393283 + ], + [ + 73.91245840586349, + 26.404389084321735 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 26.404389084321735 + ], + [ + 74.02730108934716, + 26.209741349393283 + ], + [ + 74.14214377283085, + 26.404389084321735 + ], + [ + 73.91245840586349, + 26.404389084321735 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 26.79368455417864 + ], + [ + 74.14214377283085, + 26.79368455417864 + ], + [ + 74.02730108934716, + 26.988332289107092 + ], + [ + 73.91245840586349, + 26.79368455417864 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 26.79368455417864 + ], + [ + 74.02730108934716, + 26.988332289107092 + ], + [ + 73.79761572237982, + 26.988332289107092 + ], + [ + 73.91245840586349, + 26.79368455417864 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 26.79368455417864 + ], + [ + 73.79761572237982, + 26.988332289107092 + ], + [ + 73.68277303889613, + 26.79368455417864 + ], + [ + 73.91245840586349, + 26.79368455417864 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 26.79368455417864 + ], + [ + 73.68277303889613, + 26.79368455417864 + ], + [ + 73.79761572237982, + 26.599036819250188 + ], + [ + 73.91245840586349, + 26.79368455417864 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 26.79368455417864 + ], + [ + 73.79761572237982, + 26.599036819250188 + ], + [ + 74.02730108934716, + 26.599036819250188 + ], + [ + 73.91245840586349, + 26.79368455417864 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 26.79368455417864 + ], + [ + 74.02730108934716, + 26.599036819250188 + ], + [ + 74.14214377283085, + 26.79368455417864 + ], + [ + 73.91245840586349, + 26.79368455417864 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 27.182980024035547 + ], + [ + 74.14214377283085, + 27.182980024035547 + ], + [ + 74.02730108934716, + 27.377627758964 + ], + [ + 73.91245840586349, + 27.182980024035547 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 27.182980024035547 + ], + [ + 74.02730108934716, + 27.377627758964 + ], + [ + 73.79761572237982, + 27.377627758964 + ], + [ + 73.91245840586349, + 27.182980024035547 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 27.182980024035547 + ], + [ + 73.79761572237982, + 27.377627758964 + ], + [ + 73.68277303889613, + 27.182980024035547 + ], + [ + 73.91245840586349, + 27.182980024035547 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 27.182980024035547 + ], + [ + 73.68277303889613, + 27.182980024035547 + ], + [ + 73.79761572237982, + 26.988332289107095 + ], + [ + 73.91245840586349, + 27.182980024035547 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 27.182980024035547 + ], + [ + 73.79761572237982, + 26.988332289107095 + ], + [ + 74.02730108934716, + 26.988332289107095 + ], + [ + 73.91245840586349, + 27.182980024035547 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 27.182980024035547 + ], + [ + 74.02730108934716, + 26.988332289107095 + ], + [ + 74.14214377283085, + 27.182980024035547 + ], + [ + 73.91245840586349, + 27.182980024035547 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 27.572275493892455 + ], + [ + 74.14214377283085, + 27.572275493892455 + ], + [ + 74.02730108934716, + 27.766923228820907 + ], + [ + 73.91245840586349, + 27.572275493892455 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 27.572275493892455 + ], + [ + 74.02730108934716, + 27.766923228820907 + ], + [ + 73.79761572237982, + 27.766923228820907 + ], + [ + 73.91245840586349, + 27.572275493892455 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 27.572275493892455 + ], + [ + 73.79761572237982, + 27.766923228820907 + ], + [ + 73.68277303889613, + 27.572275493892455 + ], + [ + 73.91245840586349, + 27.572275493892455 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 27.572275493892455 + ], + [ + 73.68277303889613, + 27.572275493892455 + ], + [ + 73.79761572237982, + 27.377627758964003 + ], + [ + 73.91245840586349, + 27.572275493892455 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 27.572275493892455 + ], + [ + 73.79761572237982, + 27.377627758964003 + ], + [ + 74.02730108934716, + 27.377627758964003 + ], + [ + 73.91245840586349, + 27.572275493892455 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 27.572275493892455 + ], + [ + 74.02730108934716, + 27.377627758964003 + ], + [ + 74.14214377283085, + 27.572275493892455 + ], + [ + 73.91245840586349, + 27.572275493892455 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 27.96157096374936 + ], + [ + 74.14214377283085, + 27.96157096374936 + ], + [ + 74.02730108934716, + 28.15621869867781 + ], + [ + 73.91245840586349, + 27.96157096374936 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 27.96157096374936 + ], + [ + 74.02730108934716, + 28.15621869867781 + ], + [ + 73.79761572237982, + 28.15621869867781 + ], + [ + 73.91245840586349, + 27.96157096374936 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 27.96157096374936 + ], + [ + 73.79761572237982, + 28.15621869867781 + ], + [ + 73.68277303889613, + 27.96157096374936 + ], + [ + 73.91245840586349, + 27.96157096374936 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 27.96157096374936 + ], + [ + 73.68277303889613, + 27.96157096374936 + ], + [ + 73.79761572237982, + 27.766923228820907 + ], + [ + 73.91245840586349, + 27.96157096374936 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 27.96157096374936 + ], + [ + 73.79761572237982, + 27.766923228820907 + ], + [ + 74.02730108934716, + 27.766923228820907 + ], + [ + 73.91245840586349, + 27.96157096374936 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 27.96157096374936 + ], + [ + 74.02730108934716, + 27.766923228820907 + ], + [ + 74.14214377283085, + 27.96157096374936 + ], + [ + 73.91245840586349, + 27.96157096374936 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 28.350866433606267 + ], + [ + 74.14214377283085, + 28.350866433606267 + ], + [ + 74.02730108934716, + 28.54551416853472 + ], + [ + 73.91245840586349, + 28.350866433606267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 28.350866433606267 + ], + [ + 74.02730108934716, + 28.54551416853472 + ], + [ + 73.79761572237982, + 28.54551416853472 + ], + [ + 73.91245840586349, + 28.350866433606267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 28.350866433606267 + ], + [ + 73.79761572237982, + 28.54551416853472 + ], + [ + 73.68277303889613, + 28.350866433606267 + ], + [ + 73.91245840586349, + 28.350866433606267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 28.350866433606267 + ], + [ + 73.68277303889613, + 28.350866433606267 + ], + [ + 73.79761572237982, + 28.156218698677815 + ], + [ + 73.91245840586349, + 28.350866433606267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 28.350866433606267 + ], + [ + 73.79761572237982, + 28.156218698677815 + ], + [ + 74.02730108934716, + 28.156218698677815 + ], + [ + 73.91245840586349, + 28.350866433606267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 28.350866433606267 + ], + [ + 74.02730108934716, + 28.156218698677815 + ], + [ + 74.14214377283085, + 28.350866433606267 + ], + [ + 73.91245840586349, + 28.350866433606267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 28.74016190346317 + ], + [ + 74.14214377283085, + 28.74016190346317 + ], + [ + 74.02730108934716, + 28.934809638391624 + ], + [ + 73.91245840586349, + 28.74016190346317 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 28.74016190346317 + ], + [ + 74.02730108934716, + 28.934809638391624 + ], + [ + 73.79761572237982, + 28.934809638391624 + ], + [ + 73.91245840586349, + 28.74016190346317 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 28.74016190346317 + ], + [ + 73.79761572237982, + 28.934809638391624 + ], + [ + 73.68277303889613, + 28.74016190346317 + ], + [ + 73.91245840586349, + 28.74016190346317 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 28.74016190346317 + ], + [ + 73.68277303889613, + 28.74016190346317 + ], + [ + 73.79761572237982, + 28.54551416853472 + ], + [ + 73.91245840586349, + 28.74016190346317 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 28.74016190346317 + ], + [ + 73.79761572237982, + 28.54551416853472 + ], + [ + 74.02730108934716, + 28.54551416853472 + ], + [ + 73.91245840586349, + 28.74016190346317 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 28.74016190346317 + ], + [ + 74.02730108934716, + 28.54551416853472 + ], + [ + 74.14214377283085, + 28.74016190346317 + ], + [ + 73.91245840586349, + 28.74016190346317 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 29.12945737332008 + ], + [ + 74.14214377283085, + 29.12945737332008 + ], + [ + 74.02730108934716, + 29.32410510824853 + ], + [ + 73.91245840586349, + 29.12945737332008 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 29.12945737332008 + ], + [ + 74.02730108934716, + 29.32410510824853 + ], + [ + 73.79761572237982, + 29.32410510824853 + ], + [ + 73.91245840586349, + 29.12945737332008 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 29.12945737332008 + ], + [ + 73.79761572237982, + 29.32410510824853 + ], + [ + 73.68277303889613, + 29.12945737332008 + ], + [ + 73.91245840586349, + 29.12945737332008 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 29.12945737332008 + ], + [ + 73.68277303889613, + 29.12945737332008 + ], + [ + 73.79761572237982, + 28.934809638391627 + ], + [ + 73.91245840586349, + 29.12945737332008 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 29.12945737332008 + ], + [ + 73.79761572237982, + 28.934809638391627 + ], + [ + 74.02730108934716, + 28.934809638391627 + ], + [ + 73.91245840586349, + 29.12945737332008 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 29.12945737332008 + ], + [ + 74.02730108934716, + 28.934809638391627 + ], + [ + 74.14214377283085, + 29.12945737332008 + ], + [ + 73.91245840586349, + 29.12945737332008 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 29.518752843176983 + ], + [ + 74.14214377283085, + 29.518752843176983 + ], + [ + 74.02730108934716, + 29.713400578105436 + ], + [ + 73.91245840586349, + 29.518752843176983 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 29.518752843176983 + ], + [ + 74.02730108934716, + 29.713400578105436 + ], + [ + 73.79761572237982, + 29.713400578105436 + ], + [ + 73.91245840586349, + 29.518752843176983 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 29.518752843176983 + ], + [ + 73.79761572237982, + 29.713400578105436 + ], + [ + 73.68277303889613, + 29.518752843176983 + ], + [ + 73.91245840586349, + 29.518752843176983 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 29.518752843176983 + ], + [ + 73.68277303889613, + 29.518752843176983 + ], + [ + 73.79761572237982, + 29.32410510824853 + ], + [ + 73.91245840586349, + 29.518752843176983 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 29.518752843176983 + ], + [ + 73.79761572237982, + 29.32410510824853 + ], + [ + 74.02730108934716, + 29.32410510824853 + ], + [ + 73.91245840586349, + 29.518752843176983 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 29.518752843176983 + ], + [ + 74.02730108934716, + 29.32410510824853 + ], + [ + 74.14214377283085, + 29.518752843176983 + ], + [ + 73.91245840586349, + 29.518752843176983 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 29.90804831303389 + ], + [ + 74.14214377283085, + 29.90804831303389 + ], + [ + 74.02730108934716, + 30.102696047962343 + ], + [ + 73.91245840586349, + 29.90804831303389 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 29.90804831303389 + ], + [ + 74.02730108934716, + 30.102696047962343 + ], + [ + 73.79761572237982, + 30.102696047962343 + ], + [ + 73.91245840586349, + 29.90804831303389 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 29.90804831303389 + ], + [ + 73.79761572237982, + 30.102696047962343 + ], + [ + 73.68277303889613, + 29.90804831303389 + ], + [ + 73.91245840586349, + 29.90804831303389 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 29.90804831303389 + ], + [ + 73.68277303889613, + 29.90804831303389 + ], + [ + 73.79761572237982, + 29.71340057810544 + ], + [ + 73.91245840586349, + 29.90804831303389 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 29.90804831303389 + ], + [ + 73.79761572237982, + 29.71340057810544 + ], + [ + 74.02730108934716, + 29.71340057810544 + ], + [ + 73.91245840586349, + 29.90804831303389 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 29.90804831303389 + ], + [ + 74.02730108934716, + 29.71340057810544 + ], + [ + 74.14214377283085, + 29.90804831303389 + ], + [ + 73.91245840586349, + 29.90804831303389 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 30.297343782890795 + ], + [ + 74.14214377283085, + 30.297343782890795 + ], + [ + 74.02730108934716, + 30.491991517819248 + ], + [ + 73.91245840586349, + 30.297343782890795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 30.297343782890795 + ], + [ + 74.02730108934716, + 30.491991517819248 + ], + [ + 73.79761572237982, + 30.491991517819248 + ], + [ + 73.91245840586349, + 30.297343782890795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 30.297343782890795 + ], + [ + 73.79761572237982, + 30.491991517819248 + ], + [ + 73.68277303889613, + 30.297343782890795 + ], + [ + 73.91245840586349, + 30.297343782890795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 30.297343782890795 + ], + [ + 73.68277303889613, + 30.297343782890795 + ], + [ + 73.79761572237982, + 30.102696047962343 + ], + [ + 73.91245840586349, + 30.297343782890795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 30.297343782890795 + ], + [ + 73.79761572237982, + 30.102696047962343 + ], + [ + 74.02730108934716, + 30.102696047962343 + ], + [ + 73.91245840586349, + 30.297343782890795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 30.297343782890795 + ], + [ + 74.02730108934716, + 30.102696047962343 + ], + [ + 74.14214377283085, + 30.297343782890795 + ], + [ + 73.91245840586349, + 30.297343782890795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 30.686639252747703 + ], + [ + 74.14214377283085, + 30.686639252747703 + ], + [ + 74.02730108934716, + 30.881286987676155 + ], + [ + 73.91245840586349, + 30.686639252747703 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 30.686639252747703 + ], + [ + 74.02730108934716, + 30.881286987676155 + ], + [ + 73.79761572237982, + 30.881286987676155 + ], + [ + 73.91245840586349, + 30.686639252747703 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 30.686639252747703 + ], + [ + 73.79761572237982, + 30.881286987676155 + ], + [ + 73.68277303889613, + 30.686639252747703 + ], + [ + 73.91245840586349, + 30.686639252747703 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 30.686639252747703 + ], + [ + 73.68277303889613, + 30.686639252747703 + ], + [ + 73.79761572237982, + 30.49199151781925 + ], + [ + 73.91245840586349, + 30.686639252747703 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 30.686639252747703 + ], + [ + 73.79761572237982, + 30.49199151781925 + ], + [ + 74.02730108934716, + 30.49199151781925 + ], + [ + 73.91245840586349, + 30.686639252747703 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 30.686639252747703 + ], + [ + 74.02730108934716, + 30.49199151781925 + ], + [ + 74.14214377283085, + 30.686639252747703 + ], + [ + 73.91245840586349, + 30.686639252747703 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 31.07593472260461 + ], + [ + 74.14214377283085, + 31.07593472260461 + ], + [ + 74.02730108934716, + 31.270582457533063 + ], + [ + 73.91245840586349, + 31.07593472260461 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 31.07593472260461 + ], + [ + 74.02730108934716, + 31.270582457533063 + ], + [ + 73.79761572237982, + 31.270582457533063 + ], + [ + 73.91245840586349, + 31.07593472260461 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 31.07593472260461 + ], + [ + 73.79761572237982, + 31.270582457533063 + ], + [ + 73.68277303889613, + 31.07593472260461 + ], + [ + 73.91245840586349, + 31.07593472260461 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 31.07593472260461 + ], + [ + 73.68277303889613, + 31.07593472260461 + ], + [ + 73.79761572237982, + 30.88128698767616 + ], + [ + 73.91245840586349, + 31.07593472260461 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 31.07593472260461 + ], + [ + 73.79761572237982, + 30.88128698767616 + ], + [ + 74.02730108934716, + 30.88128698767616 + ], + [ + 73.91245840586349, + 31.07593472260461 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 31.07593472260461 + ], + [ + 74.02730108934716, + 30.88128698767616 + ], + [ + 74.14214377283085, + 31.07593472260461 + ], + [ + 73.91245840586349, + 31.07593472260461 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 31.465230192461515 + ], + [ + 74.14214377283085, + 31.465230192461515 + ], + [ + 74.02730108934716, + 31.659877927389967 + ], + [ + 73.91245840586349, + 31.465230192461515 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 31.465230192461515 + ], + [ + 74.02730108934716, + 31.659877927389967 + ], + [ + 73.79761572237982, + 31.659877927389967 + ], + [ + 73.91245840586349, + 31.465230192461515 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 31.465230192461515 + ], + [ + 73.79761572237982, + 31.659877927389967 + ], + [ + 73.68277303889613, + 31.465230192461515 + ], + [ + 73.91245840586349, + 31.465230192461515 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 31.465230192461515 + ], + [ + 73.68277303889613, + 31.465230192461515 + ], + [ + 73.79761572237982, + 31.270582457533063 + ], + [ + 73.91245840586349, + 31.465230192461515 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 31.465230192461515 + ], + [ + 73.79761572237982, + 31.270582457533063 + ], + [ + 74.02730108934716, + 31.270582457533063 + ], + [ + 73.91245840586349, + 31.465230192461515 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 31.465230192461515 + ], + [ + 74.02730108934716, + 31.270582457533063 + ], + [ + 74.14214377283085, + 31.465230192461515 + ], + [ + 73.91245840586349, + 31.465230192461515 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 31.854525662318423 + ], + [ + 74.14214377283085, + 31.854525662318423 + ], + [ + 74.02730108934716, + 32.049173397246875 + ], + [ + 73.91245840586349, + 31.854525662318423 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 31.854525662318423 + ], + [ + 74.02730108934716, + 32.049173397246875 + ], + [ + 73.79761572237982, + 32.049173397246875 + ], + [ + 73.91245840586349, + 31.854525662318423 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 31.854525662318423 + ], + [ + 73.79761572237982, + 32.049173397246875 + ], + [ + 73.68277303889613, + 31.854525662318423 + ], + [ + 73.91245840586349, + 31.854525662318423 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 31.854525662318423 + ], + [ + 73.68277303889613, + 31.854525662318423 + ], + [ + 73.79761572237982, + 31.65987792738997 + ], + [ + 73.91245840586349, + 31.854525662318423 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 31.854525662318423 + ], + [ + 73.79761572237982, + 31.65987792738997 + ], + [ + 74.02730108934716, + 31.65987792738997 + ], + [ + 73.91245840586349, + 31.854525662318423 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 31.854525662318423 + ], + [ + 74.02730108934716, + 31.65987792738997 + ], + [ + 74.14214377283085, + 31.854525662318423 + ], + [ + 73.91245840586349, + 31.854525662318423 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 32.24382113217533 + ], + [ + 74.14214377283085, + 32.24382113217533 + ], + [ + 74.02730108934716, + 32.43846886710378 + ], + [ + 73.91245840586349, + 32.24382113217533 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 32.24382113217533 + ], + [ + 74.02730108934716, + 32.43846886710378 + ], + [ + 73.79761572237982, + 32.43846886710378 + ], + [ + 73.91245840586349, + 32.24382113217533 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 32.24382113217533 + ], + [ + 73.79761572237982, + 32.43846886710378 + ], + [ + 73.68277303889613, + 32.24382113217533 + ], + [ + 73.91245840586349, + 32.24382113217533 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 32.24382113217533 + ], + [ + 73.68277303889613, + 32.24382113217533 + ], + [ + 73.79761572237982, + 32.049173397246875 + ], + [ + 73.91245840586349, + 32.24382113217533 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 32.24382113217533 + ], + [ + 73.79761572237982, + 32.049173397246875 + ], + [ + 74.02730108934716, + 32.049173397246875 + ], + [ + 73.91245840586349, + 32.24382113217533 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 32.24382113217533 + ], + [ + 74.02730108934716, + 32.049173397246875 + ], + [ + 74.14214377283085, + 32.24382113217533 + ], + [ + 73.91245840586349, + 32.24382113217533 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 32.63311660203224 + ], + [ + 74.14214377283085, + 32.63311660203224 + ], + [ + 74.02730108934716, + 32.82776433696069 + ], + [ + 73.91245840586349, + 32.63311660203224 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 32.63311660203224 + ], + [ + 74.02730108934716, + 32.82776433696069 + ], + [ + 73.79761572237982, + 32.82776433696069 + ], + [ + 73.91245840586349, + 32.63311660203224 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 32.63311660203224 + ], + [ + 73.79761572237982, + 32.82776433696069 + ], + [ + 73.68277303889613, + 32.63311660203224 + ], + [ + 73.91245840586349, + 32.63311660203224 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 32.63311660203224 + ], + [ + 73.68277303889613, + 32.63311660203224 + ], + [ + 73.79761572237982, + 32.438468867103786 + ], + [ + 73.91245840586349, + 32.63311660203224 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 32.63311660203224 + ], + [ + 73.79761572237982, + 32.438468867103786 + ], + [ + 74.02730108934716, + 32.438468867103786 + ], + [ + 73.91245840586349, + 32.63311660203224 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 32.63311660203224 + ], + [ + 74.02730108934716, + 32.438468867103786 + ], + [ + 74.14214377283085, + 32.63311660203224 + ], + [ + 73.91245840586349, + 32.63311660203224 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 33.02241207188914 + ], + [ + 74.14214377283085, + 33.02241207188914 + ], + [ + 74.02730108934716, + 33.217059806817595 + ], + [ + 73.91245840586349, + 33.02241207188914 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 33.02241207188914 + ], + [ + 74.02730108934716, + 33.217059806817595 + ], + [ + 73.79761572237982, + 33.217059806817595 + ], + [ + 73.91245840586349, + 33.02241207188914 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 33.02241207188914 + ], + [ + 73.79761572237982, + 33.217059806817595 + ], + [ + 73.68277303889613, + 33.02241207188914 + ], + [ + 73.91245840586349, + 33.02241207188914 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 33.02241207188914 + ], + [ + 73.68277303889613, + 33.02241207188914 + ], + [ + 73.79761572237982, + 32.82776433696069 + ], + [ + 73.91245840586349, + 33.02241207188914 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 33.02241207188914 + ], + [ + 73.79761572237982, + 32.82776433696069 + ], + [ + 74.02730108934716, + 32.82776433696069 + ], + [ + 73.91245840586349, + 33.02241207188914 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 33.02241207188914 + ], + [ + 74.02730108934716, + 32.82776433696069 + ], + [ + 74.14214377283085, + 33.02241207188914 + ], + [ + 73.91245840586349, + 33.02241207188914 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 33.41170754174605 + ], + [ + 74.14214377283085, + 33.41170754174605 + ], + [ + 74.02730108934716, + 33.6063552766745 + ], + [ + 73.91245840586349, + 33.41170754174605 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 33.41170754174605 + ], + [ + 74.02730108934716, + 33.6063552766745 + ], + [ + 73.79761572237982, + 33.6063552766745 + ], + [ + 73.91245840586349, + 33.41170754174605 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 33.41170754174605 + ], + [ + 73.79761572237982, + 33.6063552766745 + ], + [ + 73.68277303889613, + 33.41170754174605 + ], + [ + 73.91245840586349, + 33.41170754174605 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 33.41170754174605 + ], + [ + 73.68277303889613, + 33.41170754174605 + ], + [ + 73.79761572237982, + 33.217059806817595 + ], + [ + 73.91245840586349, + 33.41170754174605 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 33.41170754174605 + ], + [ + 73.79761572237982, + 33.217059806817595 + ], + [ + 74.02730108934716, + 33.217059806817595 + ], + [ + 73.91245840586349, + 33.41170754174605 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 33.41170754174605 + ], + [ + 74.02730108934716, + 33.217059806817595 + ], + [ + 74.14214377283085, + 33.41170754174605 + ], + [ + 73.91245840586349, + 33.41170754174605 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 33.80100301160295 + ], + [ + 74.14214377283085, + 33.80100301160295 + ], + [ + 74.02730108934716, + 33.9956507465314 + ], + [ + 73.91245840586349, + 33.80100301160295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 33.80100301160295 + ], + [ + 74.02730108934716, + 33.9956507465314 + ], + [ + 73.79761572237982, + 33.9956507465314 + ], + [ + 73.91245840586349, + 33.80100301160295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 33.80100301160295 + ], + [ + 73.79761572237982, + 33.9956507465314 + ], + [ + 73.68277303889613, + 33.80100301160295 + ], + [ + 73.91245840586349, + 33.80100301160295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 33.80100301160295 + ], + [ + 73.68277303889613, + 33.80100301160295 + ], + [ + 73.79761572237982, + 33.6063552766745 + ], + [ + 73.91245840586349, + 33.80100301160295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 33.80100301160295 + ], + [ + 73.79761572237982, + 33.6063552766745 + ], + [ + 74.02730108934716, + 33.6063552766745 + ], + [ + 73.91245840586349, + 33.80100301160295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 33.80100301160295 + ], + [ + 74.02730108934716, + 33.6063552766745 + ], + [ + 74.14214377283085, + 33.80100301160295 + ], + [ + 73.91245840586349, + 33.80100301160295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 34.190298481459855 + ], + [ + 74.14214377283085, + 34.190298481459855 + ], + [ + 74.02730108934716, + 34.38494621638831 + ], + [ + 73.91245840586349, + 34.190298481459855 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 34.190298481459855 + ], + [ + 74.02730108934716, + 34.38494621638831 + ], + [ + 73.79761572237982, + 34.38494621638831 + ], + [ + 73.91245840586349, + 34.190298481459855 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 34.190298481459855 + ], + [ + 73.79761572237982, + 34.38494621638831 + ], + [ + 73.68277303889613, + 34.190298481459855 + ], + [ + 73.91245840586349, + 34.190298481459855 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 34.190298481459855 + ], + [ + 73.68277303889613, + 34.190298481459855 + ], + [ + 73.79761572237982, + 33.9956507465314 + ], + [ + 73.91245840586349, + 34.190298481459855 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 34.190298481459855 + ], + [ + 73.79761572237982, + 33.9956507465314 + ], + [ + 74.02730108934716, + 33.9956507465314 + ], + [ + 73.91245840586349, + 34.190298481459855 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 34.190298481459855 + ], + [ + 74.02730108934716, + 33.9956507465314 + ], + [ + 74.14214377283085, + 34.190298481459855 + ], + [ + 73.91245840586349, + 34.190298481459855 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 34.57959395131677 + ], + [ + 74.14214377283085, + 34.57959395131677 + ], + [ + 74.02730108934716, + 34.77424168624522 + ], + [ + 73.91245840586349, + 34.57959395131677 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 34.57959395131677 + ], + [ + 74.02730108934716, + 34.77424168624522 + ], + [ + 73.79761572237982, + 34.77424168624522 + ], + [ + 73.91245840586349, + 34.57959395131677 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 34.57959395131677 + ], + [ + 73.79761572237982, + 34.77424168624522 + ], + [ + 73.68277303889613, + 34.57959395131677 + ], + [ + 73.91245840586349, + 34.57959395131677 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 34.57959395131677 + ], + [ + 73.68277303889613, + 34.57959395131677 + ], + [ + 73.79761572237982, + 34.384946216388315 + ], + [ + 73.91245840586349, + 34.57959395131677 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 34.57959395131677 + ], + [ + 73.79761572237982, + 34.384946216388315 + ], + [ + 74.02730108934716, + 34.384946216388315 + ], + [ + 73.91245840586349, + 34.57959395131677 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 34.57959395131677 + ], + [ + 74.02730108934716, + 34.384946216388315 + ], + [ + 74.14214377283085, + 34.57959395131677 + ], + [ + 73.91245840586349, + 34.57959395131677 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 34.96888942117368 + ], + [ + 74.14214377283085, + 34.96888942117368 + ], + [ + 74.02730108934716, + 35.16353715610213 + ], + [ + 73.91245840586349, + 34.96888942117368 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 34.96888942117368 + ], + [ + 74.02730108934716, + 35.16353715610213 + ], + [ + 73.79761572237982, + 35.16353715610213 + ], + [ + 73.91245840586349, + 34.96888942117368 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 34.96888942117368 + ], + [ + 73.79761572237982, + 35.16353715610213 + ], + [ + 73.68277303889613, + 34.96888942117368 + ], + [ + 73.91245840586349, + 34.96888942117368 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 34.96888942117368 + ], + [ + 73.68277303889613, + 34.96888942117368 + ], + [ + 73.79761572237982, + 34.774241686245226 + ], + [ + 73.91245840586349, + 34.96888942117368 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 34.96888942117368 + ], + [ + 73.79761572237982, + 34.774241686245226 + ], + [ + 74.02730108934716, + 34.774241686245226 + ], + [ + 73.91245840586349, + 34.96888942117368 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 34.96888942117368 + ], + [ + 74.02730108934716, + 34.774241686245226 + ], + [ + 74.14214377283085, + 34.96888942117368 + ], + [ + 73.91245840586349, + 34.96888942117368 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 35.35818489103058 + ], + [ + 74.14214377283085, + 35.35818489103058 + ], + [ + 74.02730108934716, + 35.552832625959034 + ], + [ + 73.91245840586349, + 35.35818489103058 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 35.35818489103058 + ], + [ + 74.02730108934716, + 35.552832625959034 + ], + [ + 73.79761572237982, + 35.552832625959034 + ], + [ + 73.91245840586349, + 35.35818489103058 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 35.35818489103058 + ], + [ + 73.79761572237982, + 35.552832625959034 + ], + [ + 73.68277303889613, + 35.35818489103058 + ], + [ + 73.91245840586349, + 35.35818489103058 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 35.35818489103058 + ], + [ + 73.68277303889613, + 35.35818489103058 + ], + [ + 73.79761572237982, + 35.16353715610213 + ], + [ + 73.91245840586349, + 35.35818489103058 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 35.35818489103058 + ], + [ + 73.79761572237982, + 35.16353715610213 + ], + [ + 74.02730108934716, + 35.16353715610213 + ], + [ + 73.91245840586349, + 35.35818489103058 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 35.35818489103058 + ], + [ + 74.02730108934716, + 35.16353715610213 + ], + [ + 74.14214377283085, + 35.35818489103058 + ], + [ + 73.91245840586349, + 35.35818489103058 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 35.74748036088749 + ], + [ + 74.14214377283085, + 35.74748036088749 + ], + [ + 74.02730108934716, + 35.94212809581594 + ], + [ + 73.91245840586349, + 35.74748036088749 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 35.74748036088749 + ], + [ + 74.02730108934716, + 35.94212809581594 + ], + [ + 73.79761572237982, + 35.94212809581594 + ], + [ + 73.91245840586349, + 35.74748036088749 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 35.74748036088749 + ], + [ + 73.79761572237982, + 35.94212809581594 + ], + [ + 73.68277303889613, + 35.74748036088749 + ], + [ + 73.91245840586349, + 35.74748036088749 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 35.74748036088749 + ], + [ + 73.68277303889613, + 35.74748036088749 + ], + [ + 73.79761572237982, + 35.552832625959034 + ], + [ + 73.91245840586349, + 35.74748036088749 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 35.74748036088749 + ], + [ + 73.79761572237982, + 35.552832625959034 + ], + [ + 74.02730108934716, + 35.552832625959034 + ], + [ + 73.91245840586349, + 35.74748036088749 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 35.74748036088749 + ], + [ + 74.02730108934716, + 35.552832625959034 + ], + [ + 74.14214377283085, + 35.74748036088749 + ], + [ + 73.91245840586349, + 35.74748036088749 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 36.13677583074439 + ], + [ + 74.14214377283085, + 36.13677583074439 + ], + [ + 74.02730108934716, + 36.33142356567284 + ], + [ + 73.91245840586349, + 36.13677583074439 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 36.13677583074439 + ], + [ + 74.02730108934716, + 36.33142356567284 + ], + [ + 73.79761572237982, + 36.33142356567284 + ], + [ + 73.91245840586349, + 36.13677583074439 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 36.13677583074439 + ], + [ + 73.79761572237982, + 36.33142356567284 + ], + [ + 73.68277303889613, + 36.13677583074439 + ], + [ + 73.91245840586349, + 36.13677583074439 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 36.13677583074439 + ], + [ + 73.68277303889613, + 36.13677583074439 + ], + [ + 73.79761572237982, + 35.94212809581594 + ], + [ + 73.91245840586349, + 36.13677583074439 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 36.13677583074439 + ], + [ + 73.79761572237982, + 35.94212809581594 + ], + [ + 74.02730108934716, + 35.94212809581594 + ], + [ + 73.91245840586349, + 36.13677583074439 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 36.13677583074439 + ], + [ + 74.02730108934716, + 35.94212809581594 + ], + [ + 74.14214377283085, + 36.13677583074439 + ], + [ + 73.91245840586349, + 36.13677583074439 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 36.526071300601295 + ], + [ + 74.14214377283085, + 36.526071300601295 + ], + [ + 74.02730108934716, + 36.72071903552975 + ], + [ + 73.91245840586349, + 36.526071300601295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 36.526071300601295 + ], + [ + 74.02730108934716, + 36.72071903552975 + ], + [ + 73.79761572237982, + 36.72071903552975 + ], + [ + 73.91245840586349, + 36.526071300601295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 36.526071300601295 + ], + [ + 73.79761572237982, + 36.72071903552975 + ], + [ + 73.68277303889613, + 36.526071300601295 + ], + [ + 73.91245840586349, + 36.526071300601295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 36.526071300601295 + ], + [ + 73.68277303889613, + 36.526071300601295 + ], + [ + 73.79761572237982, + 36.33142356567284 + ], + [ + 73.91245840586349, + 36.526071300601295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 36.526071300601295 + ], + [ + 73.79761572237982, + 36.33142356567284 + ], + [ + 74.02730108934716, + 36.33142356567284 + ], + [ + 73.91245840586349, + 36.526071300601295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 36.526071300601295 + ], + [ + 74.02730108934716, + 36.33142356567284 + ], + [ + 74.14214377283085, + 36.526071300601295 + ], + [ + 73.91245840586349, + 36.526071300601295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 36.915366770458206 + ], + [ + 74.14214377283085, + 36.915366770458206 + ], + [ + 74.02730108934716, + 37.11001450538666 + ], + [ + 73.91245840586349, + 36.915366770458206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 36.915366770458206 + ], + [ + 74.02730108934716, + 37.11001450538666 + ], + [ + 73.79761572237982, + 37.11001450538666 + ], + [ + 73.91245840586349, + 36.915366770458206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 36.915366770458206 + ], + [ + 73.79761572237982, + 37.11001450538666 + ], + [ + 73.68277303889613, + 36.915366770458206 + ], + [ + 73.91245840586349, + 36.915366770458206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 36.915366770458206 + ], + [ + 73.68277303889613, + 36.915366770458206 + ], + [ + 73.79761572237982, + 36.720719035529754 + ], + [ + 73.91245840586349, + 36.915366770458206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 36.915366770458206 + ], + [ + 73.79761572237982, + 36.720719035529754 + ], + [ + 74.02730108934716, + 36.720719035529754 + ], + [ + 73.91245840586349, + 36.915366770458206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 36.915366770458206 + ], + [ + 74.02730108934716, + 36.720719035529754 + ], + [ + 74.14214377283085, + 36.915366770458206 + ], + [ + 73.91245840586349, + 36.915366770458206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 37.30466224031511 + ], + [ + 74.14214377283085, + 37.30466224031511 + ], + [ + 74.02730108934716, + 37.49930997524356 + ], + [ + 73.91245840586349, + 37.30466224031511 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 37.30466224031511 + ], + [ + 74.02730108934716, + 37.49930997524356 + ], + [ + 73.79761572237982, + 37.49930997524356 + ], + [ + 73.91245840586349, + 37.30466224031511 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 37.30466224031511 + ], + [ + 73.79761572237982, + 37.49930997524356 + ], + [ + 73.68277303889613, + 37.30466224031511 + ], + [ + 73.91245840586349, + 37.30466224031511 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 37.30466224031511 + ], + [ + 73.68277303889613, + 37.30466224031511 + ], + [ + 73.79761572237982, + 37.11001450538666 + ], + [ + 73.91245840586349, + 37.30466224031511 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 37.30466224031511 + ], + [ + 73.79761572237982, + 37.11001450538666 + ], + [ + 74.02730108934716, + 37.11001450538666 + ], + [ + 73.91245840586349, + 37.30466224031511 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 37.30466224031511 + ], + [ + 74.02730108934716, + 37.11001450538666 + ], + [ + 74.14214377283085, + 37.30466224031511 + ], + [ + 73.91245840586349, + 37.30466224031511 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 37.69395771017202 + ], + [ + 74.14214377283085, + 37.69395771017202 + ], + [ + 74.02730108934716, + 37.888605445100474 + ], + [ + 73.91245840586349, + 37.69395771017202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 37.69395771017202 + ], + [ + 74.02730108934716, + 37.888605445100474 + ], + [ + 73.79761572237982, + 37.888605445100474 + ], + [ + 73.91245840586349, + 37.69395771017202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 37.69395771017202 + ], + [ + 73.79761572237982, + 37.888605445100474 + ], + [ + 73.68277303889613, + 37.69395771017202 + ], + [ + 73.91245840586349, + 37.69395771017202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 37.69395771017202 + ], + [ + 73.68277303889613, + 37.69395771017202 + ], + [ + 73.79761572237982, + 37.49930997524357 + ], + [ + 73.91245840586349, + 37.69395771017202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 37.69395771017202 + ], + [ + 73.79761572237982, + 37.49930997524357 + ], + [ + 74.02730108934716, + 37.49930997524357 + ], + [ + 73.91245840586349, + 37.69395771017202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 37.69395771017202 + ], + [ + 74.02730108934716, + 37.49930997524357 + ], + [ + 74.14214377283085, + 37.69395771017202 + ], + [ + 73.91245840586349, + 37.69395771017202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 38.083253180028926 + ], + [ + 74.14214377283085, + 38.083253180028926 + ], + [ + 74.02730108934716, + 38.27790091495738 + ], + [ + 73.91245840586349, + 38.083253180028926 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 38.083253180028926 + ], + [ + 74.02730108934716, + 38.27790091495738 + ], + [ + 73.79761572237982, + 38.27790091495738 + ], + [ + 73.91245840586349, + 38.083253180028926 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 38.083253180028926 + ], + [ + 73.79761572237982, + 38.27790091495738 + ], + [ + 73.68277303889613, + 38.083253180028926 + ], + [ + 73.91245840586349, + 38.083253180028926 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 38.083253180028926 + ], + [ + 73.68277303889613, + 38.083253180028926 + ], + [ + 73.79761572237982, + 37.888605445100474 + ], + [ + 73.91245840586349, + 38.083253180028926 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 38.083253180028926 + ], + [ + 73.79761572237982, + 37.888605445100474 + ], + [ + 74.02730108934716, + 37.888605445100474 + ], + [ + 73.91245840586349, + 38.083253180028926 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 38.083253180028926 + ], + [ + 74.02730108934716, + 37.888605445100474 + ], + [ + 74.14214377283085, + 38.083253180028926 + ], + [ + 73.91245840586349, + 38.083253180028926 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 38.47254864988583 + ], + [ + 74.14214377283085, + 38.47254864988583 + ], + [ + 74.02730108934716, + 38.66719638481428 + ], + [ + 73.91245840586349, + 38.47254864988583 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 38.47254864988583 + ], + [ + 74.02730108934716, + 38.66719638481428 + ], + [ + 73.79761572237982, + 38.66719638481428 + ], + [ + 73.91245840586349, + 38.47254864988583 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 38.47254864988583 + ], + [ + 73.79761572237982, + 38.66719638481428 + ], + [ + 73.68277303889613, + 38.47254864988583 + ], + [ + 73.91245840586349, + 38.47254864988583 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 38.47254864988583 + ], + [ + 73.68277303889613, + 38.47254864988583 + ], + [ + 73.79761572237982, + 38.27790091495738 + ], + [ + 73.91245840586349, + 38.47254864988583 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 38.47254864988583 + ], + [ + 73.79761572237982, + 38.27790091495738 + ], + [ + 74.02730108934716, + 38.27790091495738 + ], + [ + 73.91245840586349, + 38.47254864988583 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 38.47254864988583 + ], + [ + 74.02730108934716, + 38.27790091495738 + ], + [ + 74.14214377283085, + 38.47254864988583 + ], + [ + 73.91245840586349, + 38.47254864988583 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 38.861844119742734 + ], + [ + 74.14214377283085, + 38.861844119742734 + ], + [ + 74.02730108934716, + 39.05649185467119 + ], + [ + 73.91245840586349, + 38.861844119742734 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 38.861844119742734 + ], + [ + 74.02730108934716, + 39.05649185467119 + ], + [ + 73.79761572237982, + 39.05649185467119 + ], + [ + 73.91245840586349, + 38.861844119742734 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 38.861844119742734 + ], + [ + 73.79761572237982, + 39.05649185467119 + ], + [ + 73.68277303889613, + 38.861844119742734 + ], + [ + 73.91245840586349, + 38.861844119742734 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 38.861844119742734 + ], + [ + 73.68277303889613, + 38.861844119742734 + ], + [ + 73.79761572237982, + 38.66719638481428 + ], + [ + 73.91245840586349, + 38.861844119742734 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 38.861844119742734 + ], + [ + 73.79761572237982, + 38.66719638481428 + ], + [ + 74.02730108934716, + 38.66719638481428 + ], + [ + 73.91245840586349, + 38.861844119742734 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 38.861844119742734 + ], + [ + 74.02730108934716, + 38.66719638481428 + ], + [ + 74.14214377283085, + 38.861844119742734 + ], + [ + 73.91245840586349, + 38.861844119742734 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 39.25113958959964 + ], + [ + 74.14214377283085, + 39.25113958959964 + ], + [ + 74.02730108934716, + 39.44578732452809 + ], + [ + 73.91245840586349, + 39.25113958959964 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 39.25113958959964 + ], + [ + 74.02730108934716, + 39.44578732452809 + ], + [ + 73.79761572237982, + 39.44578732452809 + ], + [ + 73.91245840586349, + 39.25113958959964 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 39.25113958959964 + ], + [ + 73.79761572237982, + 39.44578732452809 + ], + [ + 73.68277303889613, + 39.25113958959964 + ], + [ + 73.91245840586349, + 39.25113958959964 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 39.25113958959964 + ], + [ + 73.68277303889613, + 39.25113958959964 + ], + [ + 73.79761572237982, + 39.05649185467119 + ], + [ + 73.91245840586349, + 39.25113958959964 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 39.25113958959964 + ], + [ + 73.79761572237982, + 39.05649185467119 + ], + [ + 74.02730108934716, + 39.05649185467119 + ], + [ + 73.91245840586349, + 39.25113958959964 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 39.25113958959964 + ], + [ + 74.02730108934716, + 39.05649185467119 + ], + [ + 74.14214377283085, + 39.25113958959964 + ], + [ + 73.91245840586349, + 39.25113958959964 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 39.64043505945655 + ], + [ + 74.14214377283085, + 39.64043505945655 + ], + [ + 74.02730108934716, + 39.835082794385 + ], + [ + 73.91245840586349, + 39.64043505945655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 39.64043505945655 + ], + [ + 74.02730108934716, + 39.835082794385 + ], + [ + 73.79761572237982, + 39.835082794385 + ], + [ + 73.91245840586349, + 39.64043505945655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 39.64043505945655 + ], + [ + 73.79761572237982, + 39.835082794385 + ], + [ + 73.68277303889613, + 39.64043505945655 + ], + [ + 73.91245840586349, + 39.64043505945655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 39.64043505945655 + ], + [ + 73.68277303889613, + 39.64043505945655 + ], + [ + 73.79761572237982, + 39.4457873245281 + ], + [ + 73.91245840586349, + 39.64043505945655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 39.64043505945655 + ], + [ + 73.79761572237982, + 39.4457873245281 + ], + [ + 74.02730108934716, + 39.4457873245281 + ], + [ + 73.91245840586349, + 39.64043505945655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 39.64043505945655 + ], + [ + 74.02730108934716, + 39.4457873245281 + ], + [ + 74.14214377283085, + 39.64043505945655 + ], + [ + 73.91245840586349, + 39.64043505945655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 40.029730529313454 + ], + [ + 74.14214377283085, + 40.029730529313454 + ], + [ + 74.02730108934716, + 40.224378264241906 + ], + [ + 73.91245840586349, + 40.029730529313454 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 40.029730529313454 + ], + [ + 74.02730108934716, + 40.224378264241906 + ], + [ + 73.79761572237982, + 40.224378264241906 + ], + [ + 73.91245840586349, + 40.029730529313454 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 40.029730529313454 + ], + [ + 73.79761572237982, + 40.224378264241906 + ], + [ + 73.68277303889613, + 40.029730529313454 + ], + [ + 73.91245840586349, + 40.029730529313454 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 40.029730529313454 + ], + [ + 73.68277303889613, + 40.029730529313454 + ], + [ + 73.79761572237982, + 39.835082794385 + ], + [ + 73.91245840586349, + 40.029730529313454 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 40.029730529313454 + ], + [ + 73.79761572237982, + 39.835082794385 + ], + [ + 74.02730108934716, + 39.835082794385 + ], + [ + 73.91245840586349, + 40.029730529313454 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 40.029730529313454 + ], + [ + 74.02730108934716, + 39.835082794385 + ], + [ + 74.14214377283085, + 40.029730529313454 + ], + [ + 73.91245840586349, + 40.029730529313454 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 40.419025999170366 + ], + [ + 74.14214377283085, + 40.419025999170366 + ], + [ + 74.02730108934716, + 40.61367373409882 + ], + [ + 73.91245840586349, + 40.419025999170366 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 40.419025999170366 + ], + [ + 74.02730108934716, + 40.61367373409882 + ], + [ + 73.79761572237982, + 40.61367373409882 + ], + [ + 73.91245840586349, + 40.419025999170366 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 40.419025999170366 + ], + [ + 73.79761572237982, + 40.61367373409882 + ], + [ + 73.68277303889613, + 40.419025999170366 + ], + [ + 73.91245840586349, + 40.419025999170366 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 40.419025999170366 + ], + [ + 73.68277303889613, + 40.419025999170366 + ], + [ + 73.79761572237982, + 40.22437826424191 + ], + [ + 73.91245840586349, + 40.419025999170366 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 40.419025999170366 + ], + [ + 73.79761572237982, + 40.22437826424191 + ], + [ + 74.02730108934716, + 40.22437826424191 + ], + [ + 73.91245840586349, + 40.419025999170366 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 40.419025999170366 + ], + [ + 74.02730108934716, + 40.22437826424191 + ], + [ + 74.14214377283085, + 40.419025999170366 + ], + [ + 73.91245840586349, + 40.419025999170366 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 40.80832146902727 + ], + [ + 74.14214377283085, + 40.80832146902727 + ], + [ + 74.02730108934716, + 41.00296920395572 + ], + [ + 73.91245840586349, + 40.80832146902727 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 40.80832146902727 + ], + [ + 74.02730108934716, + 41.00296920395572 + ], + [ + 73.79761572237982, + 41.00296920395572 + ], + [ + 73.91245840586349, + 40.80832146902727 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 40.80832146902727 + ], + [ + 73.79761572237982, + 41.00296920395572 + ], + [ + 73.68277303889613, + 40.80832146902727 + ], + [ + 73.91245840586349, + 40.80832146902727 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 40.80832146902727 + ], + [ + 73.68277303889613, + 40.80832146902727 + ], + [ + 73.79761572237982, + 40.61367373409882 + ], + [ + 73.91245840586349, + 40.80832146902727 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 40.80832146902727 + ], + [ + 73.79761572237982, + 40.61367373409882 + ], + [ + 74.02730108934716, + 40.61367373409882 + ], + [ + 73.91245840586349, + 40.80832146902727 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 40.80832146902727 + ], + [ + 74.02730108934716, + 40.61367373409882 + ], + [ + 74.14214377283085, + 40.80832146902727 + ], + [ + 73.91245840586349, + 40.80832146902727 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 41.197616938884174 + ], + [ + 74.14214377283085, + 41.197616938884174 + ], + [ + 74.02730108934716, + 41.392264673812626 + ], + [ + 73.91245840586349, + 41.197616938884174 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 41.197616938884174 + ], + [ + 74.02730108934716, + 41.392264673812626 + ], + [ + 73.79761572237982, + 41.392264673812626 + ], + [ + 73.91245840586349, + 41.197616938884174 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 41.197616938884174 + ], + [ + 73.79761572237982, + 41.392264673812626 + ], + [ + 73.68277303889613, + 41.197616938884174 + ], + [ + 73.91245840586349, + 41.197616938884174 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 41.197616938884174 + ], + [ + 73.68277303889613, + 41.197616938884174 + ], + [ + 73.79761572237982, + 41.00296920395572 + ], + [ + 73.91245840586349, + 41.197616938884174 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 41.197616938884174 + ], + [ + 73.79761572237982, + 41.00296920395572 + ], + [ + 74.02730108934716, + 41.00296920395572 + ], + [ + 73.91245840586349, + 41.197616938884174 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 41.197616938884174 + ], + [ + 74.02730108934716, + 41.00296920395572 + ], + [ + 74.14214377283085, + 41.197616938884174 + ], + [ + 73.91245840586349, + 41.197616938884174 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 41.58691240874108 + ], + [ + 74.14214377283085, + 41.58691240874108 + ], + [ + 74.02730108934716, + 41.78156014366953 + ], + [ + 73.91245840586349, + 41.58691240874108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 41.58691240874108 + ], + [ + 74.02730108934716, + 41.78156014366953 + ], + [ + 73.79761572237982, + 41.78156014366953 + ], + [ + 73.91245840586349, + 41.58691240874108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 41.58691240874108 + ], + [ + 73.79761572237982, + 41.78156014366953 + ], + [ + 73.68277303889613, + 41.58691240874108 + ], + [ + 73.91245840586349, + 41.58691240874108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 41.58691240874108 + ], + [ + 73.68277303889613, + 41.58691240874108 + ], + [ + 73.79761572237982, + 41.392264673812626 + ], + [ + 73.91245840586349, + 41.58691240874108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 41.58691240874108 + ], + [ + 73.79761572237982, + 41.392264673812626 + ], + [ + 74.02730108934716, + 41.392264673812626 + ], + [ + 73.91245840586349, + 41.58691240874108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 41.58691240874108 + ], + [ + 74.02730108934716, + 41.392264673812626 + ], + [ + 74.14214377283085, + 41.58691240874108 + ], + [ + 73.91245840586349, + 41.58691240874108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 41.97620787859798 + ], + [ + 74.14214377283085, + 41.97620787859798 + ], + [ + 74.02730108934716, + 42.170855613526435 + ], + [ + 73.91245840586349, + 41.97620787859798 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 41.97620787859798 + ], + [ + 74.02730108934716, + 42.170855613526435 + ], + [ + 73.79761572237982, + 42.170855613526435 + ], + [ + 73.91245840586349, + 41.97620787859798 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 41.97620787859798 + ], + [ + 73.79761572237982, + 42.170855613526435 + ], + [ + 73.68277303889613, + 41.97620787859798 + ], + [ + 73.91245840586349, + 41.97620787859798 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 41.97620787859798 + ], + [ + 73.68277303889613, + 41.97620787859798 + ], + [ + 73.79761572237982, + 41.78156014366953 + ], + [ + 73.91245840586349, + 41.97620787859798 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 41.97620787859798 + ], + [ + 73.79761572237982, + 41.78156014366953 + ], + [ + 74.02730108934716, + 41.78156014366953 + ], + [ + 73.91245840586349, + 41.97620787859798 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 41.97620787859798 + ], + [ + 74.02730108934716, + 41.78156014366953 + ], + [ + 74.14214377283085, + 41.97620787859798 + ], + [ + 73.91245840586349, + 41.97620787859798 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 42.365503348454894 + ], + [ + 74.14214377283085, + 42.365503348454894 + ], + [ + 74.02730108934716, + 42.560151083383346 + ], + [ + 73.91245840586349, + 42.365503348454894 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 42.365503348454894 + ], + [ + 74.02730108934716, + 42.560151083383346 + ], + [ + 73.79761572237982, + 42.560151083383346 + ], + [ + 73.91245840586349, + 42.365503348454894 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 42.365503348454894 + ], + [ + 73.79761572237982, + 42.560151083383346 + ], + [ + 73.68277303889613, + 42.365503348454894 + ], + [ + 73.91245840586349, + 42.365503348454894 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 42.365503348454894 + ], + [ + 73.68277303889613, + 42.365503348454894 + ], + [ + 73.79761572237982, + 42.17085561352644 + ], + [ + 73.91245840586349, + 42.365503348454894 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 42.365503348454894 + ], + [ + 73.79761572237982, + 42.17085561352644 + ], + [ + 74.02730108934716, + 42.17085561352644 + ], + [ + 73.91245840586349, + 42.365503348454894 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 42.365503348454894 + ], + [ + 74.02730108934716, + 42.17085561352644 + ], + [ + 74.14214377283085, + 42.365503348454894 + ], + [ + 73.91245840586349, + 42.365503348454894 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 42.754798818311805 + ], + [ + 74.14214377283085, + 42.754798818311805 + ], + [ + 74.02730108934716, + 42.94944655324026 + ], + [ + 73.91245840586349, + 42.754798818311805 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 42.754798818311805 + ], + [ + 74.02730108934716, + 42.94944655324026 + ], + [ + 73.79761572237982, + 42.94944655324026 + ], + [ + 73.91245840586349, + 42.754798818311805 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 42.754798818311805 + ], + [ + 73.79761572237982, + 42.94944655324026 + ], + [ + 73.68277303889613, + 42.754798818311805 + ], + [ + 73.91245840586349, + 42.754798818311805 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 42.754798818311805 + ], + [ + 73.68277303889613, + 42.754798818311805 + ], + [ + 73.79761572237982, + 42.56015108338335 + ], + [ + 73.91245840586349, + 42.754798818311805 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 42.754798818311805 + ], + [ + 73.79761572237982, + 42.56015108338335 + ], + [ + 74.02730108934716, + 42.56015108338335 + ], + [ + 73.91245840586349, + 42.754798818311805 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 42.754798818311805 + ], + [ + 74.02730108934716, + 42.56015108338335 + ], + [ + 74.14214377283085, + 42.754798818311805 + ], + [ + 73.91245840586349, + 42.754798818311805 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 43.14409428816871 + ], + [ + 74.14214377283085, + 43.14409428816871 + ], + [ + 74.02730108934716, + 43.33874202309716 + ], + [ + 73.91245840586349, + 43.14409428816871 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 43.14409428816871 + ], + [ + 74.02730108934716, + 43.33874202309716 + ], + [ + 73.79761572237982, + 43.33874202309716 + ], + [ + 73.91245840586349, + 43.14409428816871 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 43.14409428816871 + ], + [ + 73.79761572237982, + 43.33874202309716 + ], + [ + 73.68277303889613, + 43.14409428816871 + ], + [ + 73.91245840586349, + 43.14409428816871 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 43.14409428816871 + ], + [ + 73.68277303889613, + 43.14409428816871 + ], + [ + 73.79761572237982, + 42.94944655324026 + ], + [ + 73.91245840586349, + 43.14409428816871 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 43.14409428816871 + ], + [ + 73.79761572237982, + 42.94944655324026 + ], + [ + 74.02730108934716, + 42.94944655324026 + ], + [ + 73.91245840586349, + 43.14409428816871 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 43.14409428816871 + ], + [ + 74.02730108934716, + 42.94944655324026 + ], + [ + 74.14214377283085, + 43.14409428816871 + ], + [ + 73.91245840586349, + 43.14409428816871 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 43.53338975802561 + ], + [ + 74.14214377283085, + 43.53338975802561 + ], + [ + 74.02730108934716, + 43.728037492954066 + ], + [ + 73.91245840586349, + 43.53338975802561 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 43.53338975802561 + ], + [ + 74.02730108934716, + 43.728037492954066 + ], + [ + 73.79761572237982, + 43.728037492954066 + ], + [ + 73.91245840586349, + 43.53338975802561 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 43.53338975802561 + ], + [ + 73.79761572237982, + 43.728037492954066 + ], + [ + 73.68277303889613, + 43.53338975802561 + ], + [ + 73.91245840586349, + 43.53338975802561 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 43.53338975802561 + ], + [ + 73.68277303889613, + 43.53338975802561 + ], + [ + 73.79761572237982, + 43.33874202309716 + ], + [ + 73.91245840586349, + 43.53338975802561 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 43.53338975802561 + ], + [ + 73.79761572237982, + 43.33874202309716 + ], + [ + 74.02730108934716, + 43.33874202309716 + ], + [ + 73.91245840586349, + 43.53338975802561 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 43.53338975802561 + ], + [ + 74.02730108934716, + 43.33874202309716 + ], + [ + 74.14214377283085, + 43.53338975802561 + ], + [ + 73.91245840586349, + 43.53338975802561 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 43.92268522788252 + ], + [ + 74.14214377283085, + 43.92268522788252 + ], + [ + 74.02730108934716, + 44.11733296281097 + ], + [ + 73.91245840586349, + 43.92268522788252 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 43.92268522788252 + ], + [ + 74.02730108934716, + 44.11733296281097 + ], + [ + 73.79761572237982, + 44.11733296281097 + ], + [ + 73.91245840586349, + 43.92268522788252 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 43.92268522788252 + ], + [ + 73.79761572237982, + 44.11733296281097 + ], + [ + 73.68277303889613, + 43.92268522788252 + ], + [ + 73.91245840586349, + 43.92268522788252 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 43.92268522788252 + ], + [ + 73.68277303889613, + 43.92268522788252 + ], + [ + 73.79761572237982, + 43.728037492954066 + ], + [ + 73.91245840586349, + 43.92268522788252 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 43.92268522788252 + ], + [ + 73.79761572237982, + 43.728037492954066 + ], + [ + 74.02730108934716, + 43.728037492954066 + ], + [ + 73.91245840586349, + 43.92268522788252 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 43.92268522788252 + ], + [ + 74.02730108934716, + 43.728037492954066 + ], + [ + 74.14214377283085, + 43.92268522788252 + ], + [ + 73.91245840586349, + 43.92268522788252 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 44.31198069773942 + ], + [ + 74.14214377283085, + 44.31198069773942 + ], + [ + 74.02730108934716, + 44.506628432667874 + ], + [ + 73.91245840586349, + 44.31198069773942 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 44.31198069773942 + ], + [ + 74.02730108934716, + 44.506628432667874 + ], + [ + 73.79761572237982, + 44.506628432667874 + ], + [ + 73.91245840586349, + 44.31198069773942 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 44.31198069773942 + ], + [ + 73.79761572237982, + 44.506628432667874 + ], + [ + 73.68277303889613, + 44.31198069773942 + ], + [ + 73.91245840586349, + 44.31198069773942 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 44.31198069773942 + ], + [ + 73.68277303889613, + 44.31198069773942 + ], + [ + 73.79761572237982, + 44.11733296281097 + ], + [ + 73.91245840586349, + 44.31198069773942 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 44.31198069773942 + ], + [ + 73.79761572237982, + 44.11733296281097 + ], + [ + 74.02730108934716, + 44.11733296281097 + ], + [ + 73.91245840586349, + 44.31198069773942 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 44.31198069773942 + ], + [ + 74.02730108934716, + 44.11733296281097 + ], + [ + 74.14214377283085, + 44.31198069773942 + ], + [ + 73.91245840586349, + 44.31198069773942 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 44.701276167596326 + ], + [ + 74.14214377283085, + 44.701276167596326 + ], + [ + 74.02730108934716, + 44.89592390252478 + ], + [ + 73.91245840586349, + 44.701276167596326 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 44.701276167596326 + ], + [ + 74.02730108934716, + 44.89592390252478 + ], + [ + 73.79761572237982, + 44.89592390252478 + ], + [ + 73.91245840586349, + 44.701276167596326 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 44.701276167596326 + ], + [ + 73.79761572237982, + 44.89592390252478 + ], + [ + 73.68277303889613, + 44.701276167596326 + ], + [ + 73.91245840586349, + 44.701276167596326 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 44.701276167596326 + ], + [ + 73.68277303889613, + 44.701276167596326 + ], + [ + 73.79761572237982, + 44.506628432667874 + ], + [ + 73.91245840586349, + 44.701276167596326 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 44.701276167596326 + ], + [ + 73.79761572237982, + 44.506628432667874 + ], + [ + 74.02730108934716, + 44.506628432667874 + ], + [ + 73.91245840586349, + 44.701276167596326 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 44.701276167596326 + ], + [ + 74.02730108934716, + 44.506628432667874 + ], + [ + 74.14214377283085, + 44.701276167596326 + ], + [ + 73.91245840586349, + 44.701276167596326 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 45.090571637453245 + ], + [ + 74.14214377283085, + 45.090571637453245 + ], + [ + 74.02730108934716, + 45.2852193723817 + ], + [ + 73.91245840586349, + 45.090571637453245 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 45.090571637453245 + ], + [ + 74.02730108934716, + 45.2852193723817 + ], + [ + 73.79761572237982, + 45.2852193723817 + ], + [ + 73.91245840586349, + 45.090571637453245 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 45.090571637453245 + ], + [ + 73.79761572237982, + 45.2852193723817 + ], + [ + 73.68277303889613, + 45.090571637453245 + ], + [ + 73.91245840586349, + 45.090571637453245 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 45.090571637453245 + ], + [ + 73.68277303889613, + 45.090571637453245 + ], + [ + 73.79761572237982, + 44.89592390252479 + ], + [ + 73.91245840586349, + 45.090571637453245 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 45.090571637453245 + ], + [ + 73.79761572237982, + 44.89592390252479 + ], + [ + 74.02730108934716, + 44.89592390252479 + ], + [ + 73.91245840586349, + 45.090571637453245 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 45.090571637453245 + ], + [ + 74.02730108934716, + 44.89592390252479 + ], + [ + 74.14214377283085, + 45.090571637453245 + ], + [ + 73.91245840586349, + 45.090571637453245 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 45.47986710731015 + ], + [ + 74.14214377283085, + 45.47986710731015 + ], + [ + 74.02730108934716, + 45.6745148422386 + ], + [ + 73.91245840586349, + 45.47986710731015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 45.47986710731015 + ], + [ + 74.02730108934716, + 45.6745148422386 + ], + [ + 73.79761572237982, + 45.6745148422386 + ], + [ + 73.91245840586349, + 45.47986710731015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 45.47986710731015 + ], + [ + 73.79761572237982, + 45.6745148422386 + ], + [ + 73.68277303889613, + 45.47986710731015 + ], + [ + 73.91245840586349, + 45.47986710731015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 45.47986710731015 + ], + [ + 73.68277303889613, + 45.47986710731015 + ], + [ + 73.79761572237982, + 45.2852193723817 + ], + [ + 73.91245840586349, + 45.47986710731015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 45.47986710731015 + ], + [ + 73.79761572237982, + 45.2852193723817 + ], + [ + 74.02730108934716, + 45.2852193723817 + ], + [ + 73.91245840586349, + 45.47986710731015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 45.47986710731015 + ], + [ + 74.02730108934716, + 45.2852193723817 + ], + [ + 74.14214377283085, + 45.47986710731015 + ], + [ + 73.91245840586349, + 45.47986710731015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 45.86916257716705 + ], + [ + 74.14214377283085, + 45.86916257716705 + ], + [ + 74.02730108934716, + 46.063810312095505 + ], + [ + 73.91245840586349, + 45.86916257716705 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 45.86916257716705 + ], + [ + 74.02730108934716, + 46.063810312095505 + ], + [ + 73.79761572237982, + 46.063810312095505 + ], + [ + 73.91245840586349, + 45.86916257716705 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 45.86916257716705 + ], + [ + 73.79761572237982, + 46.063810312095505 + ], + [ + 73.68277303889613, + 45.86916257716705 + ], + [ + 73.91245840586349, + 45.86916257716705 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 45.86916257716705 + ], + [ + 73.68277303889613, + 45.86916257716705 + ], + [ + 73.79761572237982, + 45.6745148422386 + ], + [ + 73.91245840586349, + 45.86916257716705 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 45.86916257716705 + ], + [ + 73.79761572237982, + 45.6745148422386 + ], + [ + 74.02730108934716, + 45.6745148422386 + ], + [ + 73.91245840586349, + 45.86916257716705 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 45.86916257716705 + ], + [ + 74.02730108934716, + 45.6745148422386 + ], + [ + 74.14214377283085, + 45.86916257716705 + ], + [ + 73.91245840586349, + 45.86916257716705 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 46.25845804702396 + ], + [ + 74.14214377283085, + 46.25845804702396 + ], + [ + 74.02730108934716, + 46.45310578195241 + ], + [ + 73.91245840586349, + 46.25845804702396 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 46.25845804702396 + ], + [ + 74.02730108934716, + 46.45310578195241 + ], + [ + 73.79761572237982, + 46.45310578195241 + ], + [ + 73.91245840586349, + 46.25845804702396 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 46.25845804702396 + ], + [ + 73.79761572237982, + 46.45310578195241 + ], + [ + 73.68277303889613, + 46.25845804702396 + ], + [ + 73.91245840586349, + 46.25845804702396 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 46.25845804702396 + ], + [ + 73.68277303889613, + 46.25845804702396 + ], + [ + 73.79761572237982, + 46.063810312095505 + ], + [ + 73.91245840586349, + 46.25845804702396 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 46.25845804702396 + ], + [ + 73.79761572237982, + 46.063810312095505 + ], + [ + 74.02730108934716, + 46.063810312095505 + ], + [ + 73.91245840586349, + 46.25845804702396 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 46.25845804702396 + ], + [ + 74.02730108934716, + 46.063810312095505 + ], + [ + 74.14214377283085, + 46.25845804702396 + ], + [ + 73.91245840586349, + 46.25845804702396 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 46.64775351688086 + ], + [ + 74.14214377283085, + 46.64775351688086 + ], + [ + 74.02730108934716, + 46.842401251809314 + ], + [ + 73.91245840586349, + 46.64775351688086 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 46.64775351688086 + ], + [ + 74.02730108934716, + 46.842401251809314 + ], + [ + 73.79761572237982, + 46.842401251809314 + ], + [ + 73.91245840586349, + 46.64775351688086 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 46.64775351688086 + ], + [ + 73.79761572237982, + 46.842401251809314 + ], + [ + 73.68277303889613, + 46.64775351688086 + ], + [ + 73.91245840586349, + 46.64775351688086 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 46.64775351688086 + ], + [ + 73.68277303889613, + 46.64775351688086 + ], + [ + 73.79761572237982, + 46.45310578195241 + ], + [ + 73.91245840586349, + 46.64775351688086 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 46.64775351688086 + ], + [ + 73.79761572237982, + 46.45310578195241 + ], + [ + 74.02730108934716, + 46.45310578195241 + ], + [ + 73.91245840586349, + 46.64775351688086 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 46.64775351688086 + ], + [ + 74.02730108934716, + 46.45310578195241 + ], + [ + 74.14214377283085, + 46.64775351688086 + ], + [ + 73.91245840586349, + 46.64775351688086 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 47.037048986737766 + ], + [ + 74.14214377283085, + 47.037048986737766 + ], + [ + 74.02730108934716, + 47.23169672166622 + ], + [ + 73.91245840586349, + 47.037048986737766 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 47.037048986737766 + ], + [ + 74.02730108934716, + 47.23169672166622 + ], + [ + 73.79761572237982, + 47.23169672166622 + ], + [ + 73.91245840586349, + 47.037048986737766 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 47.037048986737766 + ], + [ + 73.79761572237982, + 47.23169672166622 + ], + [ + 73.68277303889613, + 47.037048986737766 + ], + [ + 73.91245840586349, + 47.037048986737766 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 47.037048986737766 + ], + [ + 73.68277303889613, + 47.037048986737766 + ], + [ + 73.79761572237982, + 46.842401251809314 + ], + [ + 73.91245840586349, + 47.037048986737766 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 47.037048986737766 + ], + [ + 73.79761572237982, + 46.842401251809314 + ], + [ + 74.02730108934716, + 46.842401251809314 + ], + [ + 73.91245840586349, + 47.037048986737766 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 47.037048986737766 + ], + [ + 74.02730108934716, + 46.842401251809314 + ], + [ + 74.14214377283085, + 47.037048986737766 + ], + [ + 73.91245840586349, + 47.037048986737766 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 47.42634445659467 + ], + [ + 74.14214377283085, + 47.42634445659467 + ], + [ + 74.02730108934716, + 47.62099219152312 + ], + [ + 73.91245840586349, + 47.42634445659467 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 47.42634445659467 + ], + [ + 74.02730108934716, + 47.62099219152312 + ], + [ + 73.79761572237982, + 47.62099219152312 + ], + [ + 73.91245840586349, + 47.42634445659467 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 47.42634445659467 + ], + [ + 73.79761572237982, + 47.62099219152312 + ], + [ + 73.68277303889613, + 47.42634445659467 + ], + [ + 73.91245840586349, + 47.42634445659467 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 47.42634445659467 + ], + [ + 73.68277303889613, + 47.42634445659467 + ], + [ + 73.79761572237982, + 47.23169672166622 + ], + [ + 73.91245840586349, + 47.42634445659467 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 47.42634445659467 + ], + [ + 73.79761572237982, + 47.23169672166622 + ], + [ + 74.02730108934716, + 47.23169672166622 + ], + [ + 73.91245840586349, + 47.42634445659467 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 47.42634445659467 + ], + [ + 74.02730108934716, + 47.23169672166622 + ], + [ + 74.14214377283085, + 47.42634445659467 + ], + [ + 73.91245840586349, + 47.42634445659467 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 47.81563992645159 + ], + [ + 74.14214377283085, + 47.81563992645159 + ], + [ + 74.02730108934716, + 48.01028766138004 + ], + [ + 73.91245840586349, + 47.81563992645159 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 47.81563992645159 + ], + [ + 74.02730108934716, + 48.01028766138004 + ], + [ + 73.79761572237982, + 48.01028766138004 + ], + [ + 73.91245840586349, + 47.81563992645159 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 47.81563992645159 + ], + [ + 73.79761572237982, + 48.01028766138004 + ], + [ + 73.68277303889613, + 47.81563992645159 + ], + [ + 73.91245840586349, + 47.81563992645159 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 47.81563992645159 + ], + [ + 73.68277303889613, + 47.81563992645159 + ], + [ + 73.79761572237982, + 47.620992191523136 + ], + [ + 73.91245840586349, + 47.81563992645159 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 47.81563992645159 + ], + [ + 73.79761572237982, + 47.620992191523136 + ], + [ + 74.02730108934716, + 47.620992191523136 + ], + [ + 73.91245840586349, + 47.81563992645159 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.91245840586349, + 47.81563992645159 + ], + [ + 74.02730108934716, + 47.620992191523136 + ], + [ + 74.14214377283085, + 47.81563992645159 + ], + [ + 73.91245840586349, + 47.81563992645159 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 11.805808964687746 + ], + [ + 74.48667182328188, + 11.805808964687746 + ], + [ + 74.3718291397982, + 12.0004566996162 + ], + [ + 74.25698645631452, + 11.805808964687746 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 11.805808964687746 + ], + [ + 74.3718291397982, + 12.0004566996162 + ], + [ + 74.14214377283085, + 12.0004566996162 + ], + [ + 74.25698645631452, + 11.805808964687746 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 11.805808964687746 + ], + [ + 74.14214377283085, + 12.0004566996162 + ], + [ + 74.02730108934716, + 11.805808964687746 + ], + [ + 74.25698645631452, + 11.805808964687746 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 11.805808964687746 + ], + [ + 74.02730108934716, + 11.805808964687746 + ], + [ + 74.14214377283085, + 11.611161229759292 + ], + [ + 74.25698645631452, + 11.805808964687746 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 11.805808964687746 + ], + [ + 74.14214377283085, + 11.611161229759292 + ], + [ + 74.3718291397982, + 11.611161229759292 + ], + [ + 74.25698645631452, + 11.805808964687746 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 11.805808964687746 + ], + [ + 74.3718291397982, + 11.611161229759292 + ], + [ + 74.48667182328188, + 11.805808964687746 + ], + [ + 74.25698645631452, + 11.805808964687746 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 12.195104434544652 + ], + [ + 74.48667182328188, + 12.195104434544652 + ], + [ + 74.3718291397982, + 12.389752169473105 + ], + [ + 74.25698645631452, + 12.195104434544652 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 12.195104434544652 + ], + [ + 74.3718291397982, + 12.389752169473105 + ], + [ + 74.14214377283085, + 12.389752169473105 + ], + [ + 74.25698645631452, + 12.195104434544652 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 12.195104434544652 + ], + [ + 74.14214377283085, + 12.389752169473105 + ], + [ + 74.02730108934716, + 12.195104434544652 + ], + [ + 74.25698645631452, + 12.195104434544652 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 12.195104434544652 + ], + [ + 74.02730108934716, + 12.195104434544652 + ], + [ + 74.14214377283085, + 12.000456699616198 + ], + [ + 74.25698645631452, + 12.195104434544652 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 12.195104434544652 + ], + [ + 74.14214377283085, + 12.000456699616198 + ], + [ + 74.3718291397982, + 12.000456699616198 + ], + [ + 74.25698645631452, + 12.195104434544652 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 12.195104434544652 + ], + [ + 74.3718291397982, + 12.000456699616198 + ], + [ + 74.48667182328188, + 12.195104434544652 + ], + [ + 74.25698645631452, + 12.195104434544652 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 12.58439990440156 + ], + [ + 74.48667182328188, + 12.58439990440156 + ], + [ + 74.3718291397982, + 12.779047639330013 + ], + [ + 74.25698645631452, + 12.58439990440156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 12.58439990440156 + ], + [ + 74.3718291397982, + 12.779047639330013 + ], + [ + 74.14214377283085, + 12.779047639330013 + ], + [ + 74.25698645631452, + 12.58439990440156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 12.58439990440156 + ], + [ + 74.14214377283085, + 12.779047639330013 + ], + [ + 74.02730108934716, + 12.58439990440156 + ], + [ + 74.25698645631452, + 12.58439990440156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 12.58439990440156 + ], + [ + 74.02730108934716, + 12.58439990440156 + ], + [ + 74.14214377283085, + 12.389752169473105 + ], + [ + 74.25698645631452, + 12.58439990440156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 12.58439990440156 + ], + [ + 74.14214377283085, + 12.389752169473105 + ], + [ + 74.3718291397982, + 12.389752169473105 + ], + [ + 74.25698645631452, + 12.58439990440156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 12.58439990440156 + ], + [ + 74.3718291397982, + 12.389752169473105 + ], + [ + 74.48667182328188, + 12.58439990440156 + ], + [ + 74.25698645631452, + 12.58439990440156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 12.973695374258465 + ], + [ + 74.48667182328188, + 12.973695374258465 + ], + [ + 74.3718291397982, + 13.16834310918692 + ], + [ + 74.25698645631452, + 12.973695374258465 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 12.973695374258465 + ], + [ + 74.3718291397982, + 13.16834310918692 + ], + [ + 74.14214377283085, + 13.16834310918692 + ], + [ + 74.25698645631452, + 12.973695374258465 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 12.973695374258465 + ], + [ + 74.14214377283085, + 13.16834310918692 + ], + [ + 74.02730108934716, + 12.973695374258465 + ], + [ + 74.25698645631452, + 12.973695374258465 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 12.973695374258465 + ], + [ + 74.02730108934716, + 12.973695374258465 + ], + [ + 74.14214377283085, + 12.779047639330011 + ], + [ + 74.25698645631452, + 12.973695374258465 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 12.973695374258465 + ], + [ + 74.14214377283085, + 12.779047639330011 + ], + [ + 74.3718291397982, + 12.779047639330011 + ], + [ + 74.25698645631452, + 12.973695374258465 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 12.973695374258465 + ], + [ + 74.3718291397982, + 12.779047639330011 + ], + [ + 74.48667182328188, + 12.973695374258465 + ], + [ + 74.25698645631452, + 12.973695374258465 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 13.362990844115371 + ], + [ + 74.48667182328188, + 13.362990844115371 + ], + [ + 74.3718291397982, + 13.557638579043825 + ], + [ + 74.25698645631452, + 13.362990844115371 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 13.362990844115371 + ], + [ + 74.3718291397982, + 13.557638579043825 + ], + [ + 74.14214377283085, + 13.557638579043825 + ], + [ + 74.25698645631452, + 13.362990844115371 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 13.362990844115371 + ], + [ + 74.14214377283085, + 13.557638579043825 + ], + [ + 74.02730108934716, + 13.362990844115371 + ], + [ + 74.25698645631452, + 13.362990844115371 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 13.362990844115371 + ], + [ + 74.02730108934716, + 13.362990844115371 + ], + [ + 74.14214377283085, + 13.168343109186917 + ], + [ + 74.25698645631452, + 13.362990844115371 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 13.362990844115371 + ], + [ + 74.14214377283085, + 13.168343109186917 + ], + [ + 74.3718291397982, + 13.168343109186917 + ], + [ + 74.25698645631452, + 13.362990844115371 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 13.362990844115371 + ], + [ + 74.3718291397982, + 13.168343109186917 + ], + [ + 74.48667182328188, + 13.362990844115371 + ], + [ + 74.25698645631452, + 13.362990844115371 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 13.752286313972277 + ], + [ + 74.48667182328188, + 13.752286313972277 + ], + [ + 74.3718291397982, + 13.946934048900731 + ], + [ + 74.25698645631452, + 13.752286313972277 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 13.752286313972277 + ], + [ + 74.3718291397982, + 13.946934048900731 + ], + [ + 74.14214377283085, + 13.946934048900731 + ], + [ + 74.25698645631452, + 13.752286313972277 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 13.752286313972277 + ], + [ + 74.14214377283085, + 13.946934048900731 + ], + [ + 74.02730108934716, + 13.752286313972277 + ], + [ + 74.25698645631452, + 13.752286313972277 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 13.752286313972277 + ], + [ + 74.02730108934716, + 13.752286313972277 + ], + [ + 74.14214377283085, + 13.557638579043823 + ], + [ + 74.25698645631452, + 13.752286313972277 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 13.752286313972277 + ], + [ + 74.14214377283085, + 13.557638579043823 + ], + [ + 74.3718291397982, + 13.557638579043823 + ], + [ + 74.25698645631452, + 13.752286313972277 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 13.752286313972277 + ], + [ + 74.3718291397982, + 13.557638579043823 + ], + [ + 74.48667182328188, + 13.752286313972277 + ], + [ + 74.25698645631452, + 13.752286313972277 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 14.141581783829183 + ], + [ + 74.48667182328188, + 14.141581783829183 + ], + [ + 74.3718291397982, + 14.336229518757637 + ], + [ + 74.25698645631452, + 14.141581783829183 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 14.141581783829183 + ], + [ + 74.3718291397982, + 14.336229518757637 + ], + [ + 74.14214377283085, + 14.336229518757637 + ], + [ + 74.25698645631452, + 14.141581783829183 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 14.141581783829183 + ], + [ + 74.14214377283085, + 14.336229518757637 + ], + [ + 74.02730108934716, + 14.141581783829183 + ], + [ + 74.25698645631452, + 14.141581783829183 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 14.141581783829183 + ], + [ + 74.02730108934716, + 14.141581783829183 + ], + [ + 74.14214377283085, + 13.94693404890073 + ], + [ + 74.25698645631452, + 14.141581783829183 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 14.141581783829183 + ], + [ + 74.14214377283085, + 13.94693404890073 + ], + [ + 74.3718291397982, + 13.94693404890073 + ], + [ + 74.25698645631452, + 14.141581783829183 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 14.141581783829183 + ], + [ + 74.3718291397982, + 13.94693404890073 + ], + [ + 74.48667182328188, + 14.141581783829183 + ], + [ + 74.25698645631452, + 14.141581783829183 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 14.530877253686091 + ], + [ + 74.48667182328188, + 14.530877253686091 + ], + [ + 74.3718291397982, + 14.725524988614545 + ], + [ + 74.25698645631452, + 14.530877253686091 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 14.530877253686091 + ], + [ + 74.3718291397982, + 14.725524988614545 + ], + [ + 74.14214377283085, + 14.725524988614545 + ], + [ + 74.25698645631452, + 14.530877253686091 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 14.530877253686091 + ], + [ + 74.14214377283085, + 14.725524988614545 + ], + [ + 74.02730108934716, + 14.530877253686091 + ], + [ + 74.25698645631452, + 14.530877253686091 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 14.530877253686091 + ], + [ + 74.02730108934716, + 14.530877253686091 + ], + [ + 74.14214377283085, + 14.336229518757637 + ], + [ + 74.25698645631452, + 14.530877253686091 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 14.530877253686091 + ], + [ + 74.14214377283085, + 14.336229518757637 + ], + [ + 74.3718291397982, + 14.336229518757637 + ], + [ + 74.25698645631452, + 14.530877253686091 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 14.530877253686091 + ], + [ + 74.3718291397982, + 14.336229518757637 + ], + [ + 74.48667182328188, + 14.530877253686091 + ], + [ + 74.25698645631452, + 14.530877253686091 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 14.920172723542997 + ], + [ + 74.48667182328188, + 14.920172723542997 + ], + [ + 74.3718291397982, + 15.114820458471451 + ], + [ + 74.25698645631452, + 14.920172723542997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 14.920172723542997 + ], + [ + 74.3718291397982, + 15.114820458471451 + ], + [ + 74.14214377283085, + 15.114820458471451 + ], + [ + 74.25698645631452, + 14.920172723542997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 14.920172723542997 + ], + [ + 74.14214377283085, + 15.114820458471451 + ], + [ + 74.02730108934716, + 14.920172723542997 + ], + [ + 74.25698645631452, + 14.920172723542997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 14.920172723542997 + ], + [ + 74.02730108934716, + 14.920172723542997 + ], + [ + 74.14214377283085, + 14.725524988614543 + ], + [ + 74.25698645631452, + 14.920172723542997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 14.920172723542997 + ], + [ + 74.14214377283085, + 14.725524988614543 + ], + [ + 74.3718291397982, + 14.725524988614543 + ], + [ + 74.25698645631452, + 14.920172723542997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 14.920172723542997 + ], + [ + 74.3718291397982, + 14.725524988614543 + ], + [ + 74.48667182328188, + 14.920172723542997 + ], + [ + 74.25698645631452, + 14.920172723542997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 15.309468193399903 + ], + [ + 74.48667182328188, + 15.309468193399903 + ], + [ + 74.3718291397982, + 15.504115928328357 + ], + [ + 74.25698645631452, + 15.309468193399903 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 15.309468193399903 + ], + [ + 74.3718291397982, + 15.504115928328357 + ], + [ + 74.14214377283085, + 15.504115928328357 + ], + [ + 74.25698645631452, + 15.309468193399903 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 15.309468193399903 + ], + [ + 74.14214377283085, + 15.504115928328357 + ], + [ + 74.02730108934716, + 15.309468193399903 + ], + [ + 74.25698645631452, + 15.309468193399903 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 15.309468193399903 + ], + [ + 74.02730108934716, + 15.309468193399903 + ], + [ + 74.14214377283085, + 15.11482045847145 + ], + [ + 74.25698645631452, + 15.309468193399903 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 15.309468193399903 + ], + [ + 74.14214377283085, + 15.11482045847145 + ], + [ + 74.3718291397982, + 15.11482045847145 + ], + [ + 74.25698645631452, + 15.309468193399903 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 15.309468193399903 + ], + [ + 74.3718291397982, + 15.11482045847145 + ], + [ + 74.48667182328188, + 15.309468193399903 + ], + [ + 74.25698645631452, + 15.309468193399903 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 15.69876366325681 + ], + [ + 74.48667182328188, + 15.69876366325681 + ], + [ + 74.3718291397982, + 15.893411398185265 + ], + [ + 74.25698645631452, + 15.69876366325681 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 15.69876366325681 + ], + [ + 74.3718291397982, + 15.893411398185265 + ], + [ + 74.14214377283085, + 15.893411398185265 + ], + [ + 74.25698645631452, + 15.69876366325681 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 15.69876366325681 + ], + [ + 74.14214377283085, + 15.893411398185265 + ], + [ + 74.02730108934716, + 15.69876366325681 + ], + [ + 74.25698645631452, + 15.69876366325681 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 15.69876366325681 + ], + [ + 74.02730108934716, + 15.69876366325681 + ], + [ + 74.14214377283085, + 15.504115928328357 + ], + [ + 74.25698645631452, + 15.69876366325681 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 15.69876366325681 + ], + [ + 74.14214377283085, + 15.504115928328357 + ], + [ + 74.3718291397982, + 15.504115928328357 + ], + [ + 74.25698645631452, + 15.69876366325681 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 15.69876366325681 + ], + [ + 74.3718291397982, + 15.504115928328357 + ], + [ + 74.48667182328188, + 15.69876366325681 + ], + [ + 74.25698645631452, + 15.69876366325681 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 16.088059133113717 + ], + [ + 74.48667182328188, + 16.088059133113717 + ], + [ + 74.3718291397982, + 16.28270686804217 + ], + [ + 74.25698645631452, + 16.088059133113717 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 16.088059133113717 + ], + [ + 74.3718291397982, + 16.28270686804217 + ], + [ + 74.14214377283085, + 16.28270686804217 + ], + [ + 74.25698645631452, + 16.088059133113717 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 16.088059133113717 + ], + [ + 74.14214377283085, + 16.28270686804217 + ], + [ + 74.02730108934716, + 16.088059133113717 + ], + [ + 74.25698645631452, + 16.088059133113717 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 16.088059133113717 + ], + [ + 74.02730108934716, + 16.088059133113717 + ], + [ + 74.14214377283085, + 15.893411398185263 + ], + [ + 74.25698645631452, + 16.088059133113717 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 16.088059133113717 + ], + [ + 74.14214377283085, + 15.893411398185263 + ], + [ + 74.3718291397982, + 15.893411398185263 + ], + [ + 74.25698645631452, + 16.088059133113717 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 16.088059133113717 + ], + [ + 74.3718291397982, + 15.893411398185263 + ], + [ + 74.48667182328188, + 16.088059133113717 + ], + [ + 74.25698645631452, + 16.088059133113717 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 16.477354602970625 + ], + [ + 74.48667182328188, + 16.477354602970625 + ], + [ + 74.3718291397982, + 16.672002337899077 + ], + [ + 74.25698645631452, + 16.477354602970625 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 16.477354602970625 + ], + [ + 74.3718291397982, + 16.672002337899077 + ], + [ + 74.14214377283085, + 16.672002337899077 + ], + [ + 74.25698645631452, + 16.477354602970625 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 16.477354602970625 + ], + [ + 74.14214377283085, + 16.672002337899077 + ], + [ + 74.02730108934716, + 16.477354602970625 + ], + [ + 74.25698645631452, + 16.477354602970625 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 16.477354602970625 + ], + [ + 74.02730108934716, + 16.477354602970625 + ], + [ + 74.14214377283085, + 16.282706868042172 + ], + [ + 74.25698645631452, + 16.477354602970625 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 16.477354602970625 + ], + [ + 74.14214377283085, + 16.282706868042172 + ], + [ + 74.3718291397982, + 16.282706868042172 + ], + [ + 74.25698645631452, + 16.477354602970625 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 16.477354602970625 + ], + [ + 74.3718291397982, + 16.282706868042172 + ], + [ + 74.48667182328188, + 16.477354602970625 + ], + [ + 74.25698645631452, + 16.477354602970625 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 16.86665007282753 + ], + [ + 74.48667182328188, + 16.86665007282753 + ], + [ + 74.3718291397982, + 17.06129780775598 + ], + [ + 74.25698645631452, + 16.86665007282753 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 16.86665007282753 + ], + [ + 74.3718291397982, + 17.06129780775598 + ], + [ + 74.14214377283085, + 17.06129780775598 + ], + [ + 74.25698645631452, + 16.86665007282753 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 16.86665007282753 + ], + [ + 74.14214377283085, + 17.06129780775598 + ], + [ + 74.02730108934716, + 16.86665007282753 + ], + [ + 74.25698645631452, + 16.86665007282753 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 16.86665007282753 + ], + [ + 74.02730108934716, + 16.86665007282753 + ], + [ + 74.14214377283085, + 16.672002337899077 + ], + [ + 74.25698645631452, + 16.86665007282753 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 16.86665007282753 + ], + [ + 74.14214377283085, + 16.672002337899077 + ], + [ + 74.3718291397982, + 16.672002337899077 + ], + [ + 74.25698645631452, + 16.86665007282753 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 16.86665007282753 + ], + [ + 74.3718291397982, + 16.672002337899077 + ], + [ + 74.48667182328188, + 16.86665007282753 + ], + [ + 74.25698645631452, + 16.86665007282753 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 17.255945542684437 + ], + [ + 74.48667182328188, + 17.255945542684437 + ], + [ + 74.3718291397982, + 17.45059327761289 + ], + [ + 74.25698645631452, + 17.255945542684437 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 17.255945542684437 + ], + [ + 74.3718291397982, + 17.45059327761289 + ], + [ + 74.14214377283085, + 17.45059327761289 + ], + [ + 74.25698645631452, + 17.255945542684437 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 17.255945542684437 + ], + [ + 74.14214377283085, + 17.45059327761289 + ], + [ + 74.02730108934716, + 17.255945542684437 + ], + [ + 74.25698645631452, + 17.255945542684437 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 17.255945542684437 + ], + [ + 74.02730108934716, + 17.255945542684437 + ], + [ + 74.14214377283085, + 17.061297807755984 + ], + [ + 74.25698645631452, + 17.255945542684437 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 17.255945542684437 + ], + [ + 74.14214377283085, + 17.061297807755984 + ], + [ + 74.3718291397982, + 17.061297807755984 + ], + [ + 74.25698645631452, + 17.255945542684437 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 17.255945542684437 + ], + [ + 74.3718291397982, + 17.061297807755984 + ], + [ + 74.48667182328188, + 17.255945542684437 + ], + [ + 74.25698645631452, + 17.255945542684437 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 17.64524101254134 + ], + [ + 74.48667182328188, + 17.64524101254134 + ], + [ + 74.3718291397982, + 17.839888747469793 + ], + [ + 74.25698645631452, + 17.64524101254134 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 17.64524101254134 + ], + [ + 74.3718291397982, + 17.839888747469793 + ], + [ + 74.14214377283085, + 17.839888747469793 + ], + [ + 74.25698645631452, + 17.64524101254134 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 17.64524101254134 + ], + [ + 74.14214377283085, + 17.839888747469793 + ], + [ + 74.02730108934716, + 17.64524101254134 + ], + [ + 74.25698645631452, + 17.64524101254134 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 17.64524101254134 + ], + [ + 74.02730108934716, + 17.64524101254134 + ], + [ + 74.14214377283085, + 17.45059327761289 + ], + [ + 74.25698645631452, + 17.64524101254134 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 17.64524101254134 + ], + [ + 74.14214377283085, + 17.45059327761289 + ], + [ + 74.3718291397982, + 17.45059327761289 + ], + [ + 74.25698645631452, + 17.64524101254134 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 17.64524101254134 + ], + [ + 74.3718291397982, + 17.45059327761289 + ], + [ + 74.48667182328188, + 17.64524101254134 + ], + [ + 74.25698645631452, + 17.64524101254134 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 18.03453648239825 + ], + [ + 74.48667182328188, + 18.03453648239825 + ], + [ + 74.3718291397982, + 18.2291842173267 + ], + [ + 74.25698645631452, + 18.03453648239825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 18.03453648239825 + ], + [ + 74.3718291397982, + 18.2291842173267 + ], + [ + 74.14214377283085, + 18.2291842173267 + ], + [ + 74.25698645631452, + 18.03453648239825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 18.03453648239825 + ], + [ + 74.14214377283085, + 18.2291842173267 + ], + [ + 74.02730108934716, + 18.03453648239825 + ], + [ + 74.25698645631452, + 18.03453648239825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 18.03453648239825 + ], + [ + 74.02730108934716, + 18.03453648239825 + ], + [ + 74.14214377283085, + 17.839888747469796 + ], + [ + 74.25698645631452, + 18.03453648239825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 18.03453648239825 + ], + [ + 74.14214377283085, + 17.839888747469796 + ], + [ + 74.3718291397982, + 17.839888747469796 + ], + [ + 74.25698645631452, + 18.03453648239825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 18.03453648239825 + ], + [ + 74.3718291397982, + 17.839888747469796 + ], + [ + 74.48667182328188, + 18.03453648239825 + ], + [ + 74.25698645631452, + 18.03453648239825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 18.423831952255156 + ], + [ + 74.48667182328188, + 18.423831952255156 + ], + [ + 74.3718291397982, + 18.61847968718361 + ], + [ + 74.25698645631452, + 18.423831952255156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 18.423831952255156 + ], + [ + 74.3718291397982, + 18.61847968718361 + ], + [ + 74.14214377283085, + 18.61847968718361 + ], + [ + 74.25698645631452, + 18.423831952255156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 18.423831952255156 + ], + [ + 74.14214377283085, + 18.61847968718361 + ], + [ + 74.02730108934716, + 18.423831952255156 + ], + [ + 74.25698645631452, + 18.423831952255156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 18.423831952255156 + ], + [ + 74.02730108934716, + 18.423831952255156 + ], + [ + 74.14214377283085, + 18.229184217326704 + ], + [ + 74.25698645631452, + 18.423831952255156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 18.423831952255156 + ], + [ + 74.14214377283085, + 18.229184217326704 + ], + [ + 74.3718291397982, + 18.229184217326704 + ], + [ + 74.25698645631452, + 18.423831952255156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 18.423831952255156 + ], + [ + 74.3718291397982, + 18.229184217326704 + ], + [ + 74.48667182328188, + 18.423831952255156 + ], + [ + 74.25698645631452, + 18.423831952255156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 18.81312742211206 + ], + [ + 74.48667182328188, + 18.81312742211206 + ], + [ + 74.3718291397982, + 19.007775157040513 + ], + [ + 74.25698645631452, + 18.81312742211206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 18.81312742211206 + ], + [ + 74.3718291397982, + 19.007775157040513 + ], + [ + 74.14214377283085, + 19.007775157040513 + ], + [ + 74.25698645631452, + 18.81312742211206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 18.81312742211206 + ], + [ + 74.14214377283085, + 19.007775157040513 + ], + [ + 74.02730108934716, + 18.81312742211206 + ], + [ + 74.25698645631452, + 18.81312742211206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 18.81312742211206 + ], + [ + 74.02730108934716, + 18.81312742211206 + ], + [ + 74.14214377283085, + 18.61847968718361 + ], + [ + 74.25698645631452, + 18.81312742211206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 18.81312742211206 + ], + [ + 74.14214377283085, + 18.61847968718361 + ], + [ + 74.3718291397982, + 18.61847968718361 + ], + [ + 74.25698645631452, + 18.81312742211206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 18.81312742211206 + ], + [ + 74.3718291397982, + 18.61847968718361 + ], + [ + 74.48667182328188, + 18.81312742211206 + ], + [ + 74.25698645631452, + 18.81312742211206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 19.20242289196897 + ], + [ + 74.48667182328188, + 19.20242289196897 + ], + [ + 74.3718291397982, + 19.39707062689742 + ], + [ + 74.25698645631452, + 19.20242289196897 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 19.20242289196897 + ], + [ + 74.3718291397982, + 19.39707062689742 + ], + [ + 74.14214377283085, + 19.39707062689742 + ], + [ + 74.25698645631452, + 19.20242289196897 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 19.20242289196897 + ], + [ + 74.14214377283085, + 19.39707062689742 + ], + [ + 74.02730108934716, + 19.20242289196897 + ], + [ + 74.25698645631452, + 19.20242289196897 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 19.20242289196897 + ], + [ + 74.02730108934716, + 19.20242289196897 + ], + [ + 74.14214377283085, + 19.007775157040516 + ], + [ + 74.25698645631452, + 19.20242289196897 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 19.20242289196897 + ], + [ + 74.14214377283085, + 19.007775157040516 + ], + [ + 74.3718291397982, + 19.007775157040516 + ], + [ + 74.25698645631452, + 19.20242289196897 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 19.20242289196897 + ], + [ + 74.3718291397982, + 19.007775157040516 + ], + [ + 74.48667182328188, + 19.20242289196897 + ], + [ + 74.25698645631452, + 19.20242289196897 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 19.591718361825876 + ], + [ + 74.48667182328188, + 19.591718361825876 + ], + [ + 74.3718291397982, + 19.78636609675433 + ], + [ + 74.25698645631452, + 19.591718361825876 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 19.591718361825876 + ], + [ + 74.3718291397982, + 19.78636609675433 + ], + [ + 74.14214377283085, + 19.78636609675433 + ], + [ + 74.25698645631452, + 19.591718361825876 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 19.591718361825876 + ], + [ + 74.14214377283085, + 19.78636609675433 + ], + [ + 74.02730108934716, + 19.591718361825876 + ], + [ + 74.25698645631452, + 19.591718361825876 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 19.591718361825876 + ], + [ + 74.02730108934716, + 19.591718361825876 + ], + [ + 74.14214377283085, + 19.397070626897424 + ], + [ + 74.25698645631452, + 19.591718361825876 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 19.591718361825876 + ], + [ + 74.14214377283085, + 19.397070626897424 + ], + [ + 74.3718291397982, + 19.397070626897424 + ], + [ + 74.25698645631452, + 19.591718361825876 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 19.591718361825876 + ], + [ + 74.3718291397982, + 19.397070626897424 + ], + [ + 74.48667182328188, + 19.591718361825876 + ], + [ + 74.25698645631452, + 19.591718361825876 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 19.98101383168278 + ], + [ + 74.48667182328188, + 19.98101383168278 + ], + [ + 74.3718291397982, + 20.175661566611232 + ], + [ + 74.25698645631452, + 19.98101383168278 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 19.98101383168278 + ], + [ + 74.3718291397982, + 20.175661566611232 + ], + [ + 74.14214377283085, + 20.175661566611232 + ], + [ + 74.25698645631452, + 19.98101383168278 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 19.98101383168278 + ], + [ + 74.14214377283085, + 20.175661566611232 + ], + [ + 74.02730108934716, + 19.98101383168278 + ], + [ + 74.25698645631452, + 19.98101383168278 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 19.98101383168278 + ], + [ + 74.02730108934716, + 19.98101383168278 + ], + [ + 74.14214377283085, + 19.78636609675433 + ], + [ + 74.25698645631452, + 19.98101383168278 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 19.98101383168278 + ], + [ + 74.14214377283085, + 19.78636609675433 + ], + [ + 74.3718291397982, + 19.78636609675433 + ], + [ + 74.25698645631452, + 19.98101383168278 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 19.98101383168278 + ], + [ + 74.3718291397982, + 19.78636609675433 + ], + [ + 74.48667182328188, + 19.98101383168278 + ], + [ + 74.25698645631452, + 19.98101383168278 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 20.370309301539685 + ], + [ + 74.48667182328188, + 20.370309301539685 + ], + [ + 74.3718291397982, + 20.564957036468137 + ], + [ + 74.25698645631452, + 20.370309301539685 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 20.370309301539685 + ], + [ + 74.3718291397982, + 20.564957036468137 + ], + [ + 74.14214377283085, + 20.564957036468137 + ], + [ + 74.25698645631452, + 20.370309301539685 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 20.370309301539685 + ], + [ + 74.14214377283085, + 20.564957036468137 + ], + [ + 74.02730108934716, + 20.370309301539685 + ], + [ + 74.25698645631452, + 20.370309301539685 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 20.370309301539685 + ], + [ + 74.02730108934716, + 20.370309301539685 + ], + [ + 74.14214377283085, + 20.175661566611232 + ], + [ + 74.25698645631452, + 20.370309301539685 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 20.370309301539685 + ], + [ + 74.14214377283085, + 20.175661566611232 + ], + [ + 74.3718291397982, + 20.175661566611232 + ], + [ + 74.25698645631452, + 20.370309301539685 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 20.370309301539685 + ], + [ + 74.3718291397982, + 20.175661566611232 + ], + [ + 74.48667182328188, + 20.370309301539685 + ], + [ + 74.25698645631452, + 20.370309301539685 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 20.759604771396592 + ], + [ + 74.48667182328188, + 20.759604771396592 + ], + [ + 74.3718291397982, + 20.954252506325044 + ], + [ + 74.25698645631452, + 20.759604771396592 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 20.759604771396592 + ], + [ + 74.3718291397982, + 20.954252506325044 + ], + [ + 74.14214377283085, + 20.954252506325044 + ], + [ + 74.25698645631452, + 20.759604771396592 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 20.759604771396592 + ], + [ + 74.14214377283085, + 20.954252506325044 + ], + [ + 74.02730108934716, + 20.759604771396592 + ], + [ + 74.25698645631452, + 20.759604771396592 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 20.759604771396592 + ], + [ + 74.02730108934716, + 20.759604771396592 + ], + [ + 74.14214377283085, + 20.56495703646814 + ], + [ + 74.25698645631452, + 20.759604771396592 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 20.759604771396592 + ], + [ + 74.14214377283085, + 20.56495703646814 + ], + [ + 74.3718291397982, + 20.56495703646814 + ], + [ + 74.25698645631452, + 20.759604771396592 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 20.759604771396592 + ], + [ + 74.3718291397982, + 20.56495703646814 + ], + [ + 74.48667182328188, + 20.759604771396592 + ], + [ + 74.25698645631452, + 20.759604771396592 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 21.1489002412535 + ], + [ + 74.48667182328188, + 21.1489002412535 + ], + [ + 74.3718291397982, + 21.343547976181952 + ], + [ + 74.25698645631452, + 21.1489002412535 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 21.1489002412535 + ], + [ + 74.3718291397982, + 21.343547976181952 + ], + [ + 74.14214377283085, + 21.343547976181952 + ], + [ + 74.25698645631452, + 21.1489002412535 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 21.1489002412535 + ], + [ + 74.14214377283085, + 21.343547976181952 + ], + [ + 74.02730108934716, + 21.1489002412535 + ], + [ + 74.25698645631452, + 21.1489002412535 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 21.1489002412535 + ], + [ + 74.02730108934716, + 21.1489002412535 + ], + [ + 74.14214377283085, + 20.954252506325048 + ], + [ + 74.25698645631452, + 21.1489002412535 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 21.1489002412535 + ], + [ + 74.14214377283085, + 20.954252506325048 + ], + [ + 74.3718291397982, + 20.954252506325048 + ], + [ + 74.25698645631452, + 21.1489002412535 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 21.1489002412535 + ], + [ + 74.3718291397982, + 20.954252506325048 + ], + [ + 74.48667182328188, + 21.1489002412535 + ], + [ + 74.25698645631452, + 21.1489002412535 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 21.538195711110404 + ], + [ + 74.48667182328188, + 21.538195711110404 + ], + [ + 74.3718291397982, + 21.732843446038856 + ], + [ + 74.25698645631452, + 21.538195711110404 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 21.538195711110404 + ], + [ + 74.3718291397982, + 21.732843446038856 + ], + [ + 74.14214377283085, + 21.732843446038856 + ], + [ + 74.25698645631452, + 21.538195711110404 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 21.538195711110404 + ], + [ + 74.14214377283085, + 21.732843446038856 + ], + [ + 74.02730108934716, + 21.538195711110404 + ], + [ + 74.25698645631452, + 21.538195711110404 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 21.538195711110404 + ], + [ + 74.02730108934716, + 21.538195711110404 + ], + [ + 74.14214377283085, + 21.343547976181952 + ], + [ + 74.25698645631452, + 21.538195711110404 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 21.538195711110404 + ], + [ + 74.14214377283085, + 21.343547976181952 + ], + [ + 74.3718291397982, + 21.343547976181952 + ], + [ + 74.25698645631452, + 21.538195711110404 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 21.538195711110404 + ], + [ + 74.3718291397982, + 21.343547976181952 + ], + [ + 74.48667182328188, + 21.538195711110404 + ], + [ + 74.25698645631452, + 21.538195711110404 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 21.927491180967312 + ], + [ + 74.48667182328188, + 21.927491180967312 + ], + [ + 74.3718291397982, + 22.122138915895764 + ], + [ + 74.25698645631452, + 21.927491180967312 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 21.927491180967312 + ], + [ + 74.3718291397982, + 22.122138915895764 + ], + [ + 74.14214377283085, + 22.122138915895764 + ], + [ + 74.25698645631452, + 21.927491180967312 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 21.927491180967312 + ], + [ + 74.14214377283085, + 22.122138915895764 + ], + [ + 74.02730108934716, + 21.927491180967312 + ], + [ + 74.25698645631452, + 21.927491180967312 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 21.927491180967312 + ], + [ + 74.02730108934716, + 21.927491180967312 + ], + [ + 74.14214377283085, + 21.73284344603886 + ], + [ + 74.25698645631452, + 21.927491180967312 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 21.927491180967312 + ], + [ + 74.14214377283085, + 21.73284344603886 + ], + [ + 74.3718291397982, + 21.73284344603886 + ], + [ + 74.25698645631452, + 21.927491180967312 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 21.927491180967312 + ], + [ + 74.3718291397982, + 21.73284344603886 + ], + [ + 74.48667182328188, + 21.927491180967312 + ], + [ + 74.25698645631452, + 21.927491180967312 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 22.31678665082422 + ], + [ + 74.48667182328188, + 22.31678665082422 + ], + [ + 74.3718291397982, + 22.511434385752672 + ], + [ + 74.25698645631452, + 22.31678665082422 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 22.31678665082422 + ], + [ + 74.3718291397982, + 22.511434385752672 + ], + [ + 74.14214377283085, + 22.511434385752672 + ], + [ + 74.25698645631452, + 22.31678665082422 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 22.31678665082422 + ], + [ + 74.14214377283085, + 22.511434385752672 + ], + [ + 74.02730108934716, + 22.31678665082422 + ], + [ + 74.25698645631452, + 22.31678665082422 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 22.31678665082422 + ], + [ + 74.02730108934716, + 22.31678665082422 + ], + [ + 74.14214377283085, + 22.122138915895768 + ], + [ + 74.25698645631452, + 22.31678665082422 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 22.31678665082422 + ], + [ + 74.14214377283085, + 22.122138915895768 + ], + [ + 74.3718291397982, + 22.122138915895768 + ], + [ + 74.25698645631452, + 22.31678665082422 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 22.31678665082422 + ], + [ + 74.3718291397982, + 22.122138915895768 + ], + [ + 74.48667182328188, + 22.31678665082422 + ], + [ + 74.25698645631452, + 22.31678665082422 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 22.706082120681124 + ], + [ + 74.48667182328188, + 22.706082120681124 + ], + [ + 74.3718291397982, + 22.900729855609576 + ], + [ + 74.25698645631452, + 22.706082120681124 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 22.706082120681124 + ], + [ + 74.3718291397982, + 22.900729855609576 + ], + [ + 74.14214377283085, + 22.900729855609576 + ], + [ + 74.25698645631452, + 22.706082120681124 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 22.706082120681124 + ], + [ + 74.14214377283085, + 22.900729855609576 + ], + [ + 74.02730108934716, + 22.706082120681124 + ], + [ + 74.25698645631452, + 22.706082120681124 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 22.706082120681124 + ], + [ + 74.02730108934716, + 22.706082120681124 + ], + [ + 74.14214377283085, + 22.511434385752672 + ], + [ + 74.25698645631452, + 22.706082120681124 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 22.706082120681124 + ], + [ + 74.14214377283085, + 22.511434385752672 + ], + [ + 74.3718291397982, + 22.511434385752672 + ], + [ + 74.25698645631452, + 22.706082120681124 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 22.706082120681124 + ], + [ + 74.3718291397982, + 22.511434385752672 + ], + [ + 74.48667182328188, + 22.706082120681124 + ], + [ + 74.25698645631452, + 22.706082120681124 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 23.095377590538032 + ], + [ + 74.48667182328188, + 23.095377590538032 + ], + [ + 74.3718291397982, + 23.290025325466484 + ], + [ + 74.25698645631452, + 23.095377590538032 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 23.095377590538032 + ], + [ + 74.3718291397982, + 23.290025325466484 + ], + [ + 74.14214377283085, + 23.290025325466484 + ], + [ + 74.25698645631452, + 23.095377590538032 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 23.095377590538032 + ], + [ + 74.14214377283085, + 23.290025325466484 + ], + [ + 74.02730108934716, + 23.095377590538032 + ], + [ + 74.25698645631452, + 23.095377590538032 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 23.095377590538032 + ], + [ + 74.02730108934716, + 23.095377590538032 + ], + [ + 74.14214377283085, + 22.90072985560958 + ], + [ + 74.25698645631452, + 23.095377590538032 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 23.095377590538032 + ], + [ + 74.14214377283085, + 22.90072985560958 + ], + [ + 74.3718291397982, + 22.90072985560958 + ], + [ + 74.25698645631452, + 23.095377590538032 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 23.095377590538032 + ], + [ + 74.3718291397982, + 22.90072985560958 + ], + [ + 74.48667182328188, + 23.095377590538032 + ], + [ + 74.25698645631452, + 23.095377590538032 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 23.48467306039494 + ], + [ + 74.48667182328188, + 23.48467306039494 + ], + [ + 74.3718291397982, + 23.67932079532339 + ], + [ + 74.25698645631452, + 23.48467306039494 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 23.48467306039494 + ], + [ + 74.3718291397982, + 23.67932079532339 + ], + [ + 74.14214377283085, + 23.67932079532339 + ], + [ + 74.25698645631452, + 23.48467306039494 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 23.48467306039494 + ], + [ + 74.14214377283085, + 23.67932079532339 + ], + [ + 74.02730108934716, + 23.48467306039494 + ], + [ + 74.25698645631452, + 23.48467306039494 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 23.48467306039494 + ], + [ + 74.02730108934716, + 23.48467306039494 + ], + [ + 74.14214377283085, + 23.290025325466488 + ], + [ + 74.25698645631452, + 23.48467306039494 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 23.48467306039494 + ], + [ + 74.14214377283085, + 23.290025325466488 + ], + [ + 74.3718291397982, + 23.290025325466488 + ], + [ + 74.25698645631452, + 23.48467306039494 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 23.48467306039494 + ], + [ + 74.3718291397982, + 23.290025325466488 + ], + [ + 74.48667182328188, + 23.48467306039494 + ], + [ + 74.25698645631452, + 23.48467306039494 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 23.873968530251844 + ], + [ + 74.48667182328188, + 23.873968530251844 + ], + [ + 74.3718291397982, + 24.068616265180296 + ], + [ + 74.25698645631452, + 23.873968530251844 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 23.873968530251844 + ], + [ + 74.3718291397982, + 24.068616265180296 + ], + [ + 74.14214377283085, + 24.068616265180296 + ], + [ + 74.25698645631452, + 23.873968530251844 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 23.873968530251844 + ], + [ + 74.14214377283085, + 24.068616265180296 + ], + [ + 74.02730108934716, + 23.873968530251844 + ], + [ + 74.25698645631452, + 23.873968530251844 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 23.873968530251844 + ], + [ + 74.02730108934716, + 23.873968530251844 + ], + [ + 74.14214377283085, + 23.67932079532339 + ], + [ + 74.25698645631452, + 23.873968530251844 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 23.873968530251844 + ], + [ + 74.14214377283085, + 23.67932079532339 + ], + [ + 74.3718291397982, + 23.67932079532339 + ], + [ + 74.25698645631452, + 23.873968530251844 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 23.873968530251844 + ], + [ + 74.3718291397982, + 23.67932079532339 + ], + [ + 74.48667182328188, + 23.873968530251844 + ], + [ + 74.25698645631452, + 23.873968530251844 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 24.263264000108748 + ], + [ + 74.48667182328188, + 24.263264000108748 + ], + [ + 74.3718291397982, + 24.4579117350372 + ], + [ + 74.25698645631452, + 24.263264000108748 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 24.263264000108748 + ], + [ + 74.3718291397982, + 24.4579117350372 + ], + [ + 74.14214377283085, + 24.4579117350372 + ], + [ + 74.25698645631452, + 24.263264000108748 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 24.263264000108748 + ], + [ + 74.14214377283085, + 24.4579117350372 + ], + [ + 74.02730108934716, + 24.263264000108748 + ], + [ + 74.25698645631452, + 24.263264000108748 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 24.263264000108748 + ], + [ + 74.02730108934716, + 24.263264000108748 + ], + [ + 74.14214377283085, + 24.068616265180296 + ], + [ + 74.25698645631452, + 24.263264000108748 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 24.263264000108748 + ], + [ + 74.14214377283085, + 24.068616265180296 + ], + [ + 74.3718291397982, + 24.068616265180296 + ], + [ + 74.25698645631452, + 24.263264000108748 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 24.263264000108748 + ], + [ + 74.3718291397982, + 24.068616265180296 + ], + [ + 74.48667182328188, + 24.263264000108748 + ], + [ + 74.25698645631452, + 24.263264000108748 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 24.652559469965656 + ], + [ + 74.48667182328188, + 24.652559469965656 + ], + [ + 74.3718291397982, + 24.847207204894108 + ], + [ + 74.25698645631452, + 24.652559469965656 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 24.652559469965656 + ], + [ + 74.3718291397982, + 24.847207204894108 + ], + [ + 74.14214377283085, + 24.847207204894108 + ], + [ + 74.25698645631452, + 24.652559469965656 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 24.652559469965656 + ], + [ + 74.14214377283085, + 24.847207204894108 + ], + [ + 74.02730108934716, + 24.652559469965656 + ], + [ + 74.25698645631452, + 24.652559469965656 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 24.652559469965656 + ], + [ + 74.02730108934716, + 24.652559469965656 + ], + [ + 74.14214377283085, + 24.457911735037204 + ], + [ + 74.25698645631452, + 24.652559469965656 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 24.652559469965656 + ], + [ + 74.14214377283085, + 24.457911735037204 + ], + [ + 74.3718291397982, + 24.457911735037204 + ], + [ + 74.25698645631452, + 24.652559469965656 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 24.652559469965656 + ], + [ + 74.3718291397982, + 24.457911735037204 + ], + [ + 74.48667182328188, + 24.652559469965656 + ], + [ + 74.25698645631452, + 24.652559469965656 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 25.041854939822564 + ], + [ + 74.48667182328188, + 25.041854939822564 + ], + [ + 74.3718291397982, + 25.236502674751016 + ], + [ + 74.25698645631452, + 25.041854939822564 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 25.041854939822564 + ], + [ + 74.3718291397982, + 25.236502674751016 + ], + [ + 74.14214377283085, + 25.236502674751016 + ], + [ + 74.25698645631452, + 25.041854939822564 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 25.041854939822564 + ], + [ + 74.14214377283085, + 25.236502674751016 + ], + [ + 74.02730108934716, + 25.041854939822564 + ], + [ + 74.25698645631452, + 25.041854939822564 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 25.041854939822564 + ], + [ + 74.02730108934716, + 25.041854939822564 + ], + [ + 74.14214377283085, + 24.84720720489411 + ], + [ + 74.25698645631452, + 25.041854939822564 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 25.041854939822564 + ], + [ + 74.14214377283085, + 24.84720720489411 + ], + [ + 74.3718291397982, + 24.84720720489411 + ], + [ + 74.25698645631452, + 25.041854939822564 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 25.041854939822564 + ], + [ + 74.3718291397982, + 24.84720720489411 + ], + [ + 74.48667182328188, + 25.041854939822564 + ], + [ + 74.25698645631452, + 25.041854939822564 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 25.431150409679468 + ], + [ + 74.48667182328188, + 25.431150409679468 + ], + [ + 74.3718291397982, + 25.62579814460792 + ], + [ + 74.25698645631452, + 25.431150409679468 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 25.431150409679468 + ], + [ + 74.3718291397982, + 25.62579814460792 + ], + [ + 74.14214377283085, + 25.62579814460792 + ], + [ + 74.25698645631452, + 25.431150409679468 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 25.431150409679468 + ], + [ + 74.14214377283085, + 25.62579814460792 + ], + [ + 74.02730108934716, + 25.431150409679468 + ], + [ + 74.25698645631452, + 25.431150409679468 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 25.431150409679468 + ], + [ + 74.02730108934716, + 25.431150409679468 + ], + [ + 74.14214377283085, + 25.236502674751016 + ], + [ + 74.25698645631452, + 25.431150409679468 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 25.431150409679468 + ], + [ + 74.14214377283085, + 25.236502674751016 + ], + [ + 74.3718291397982, + 25.236502674751016 + ], + [ + 74.25698645631452, + 25.431150409679468 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 25.431150409679468 + ], + [ + 74.3718291397982, + 25.236502674751016 + ], + [ + 74.48667182328188, + 25.431150409679468 + ], + [ + 74.25698645631452, + 25.431150409679468 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 25.820445879536376 + ], + [ + 74.48667182328188, + 25.820445879536376 + ], + [ + 74.3718291397982, + 26.015093614464828 + ], + [ + 74.25698645631452, + 25.820445879536376 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 25.820445879536376 + ], + [ + 74.3718291397982, + 26.015093614464828 + ], + [ + 74.14214377283085, + 26.015093614464828 + ], + [ + 74.25698645631452, + 25.820445879536376 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 25.820445879536376 + ], + [ + 74.14214377283085, + 26.015093614464828 + ], + [ + 74.02730108934716, + 25.820445879536376 + ], + [ + 74.25698645631452, + 25.820445879536376 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 25.820445879536376 + ], + [ + 74.02730108934716, + 25.820445879536376 + ], + [ + 74.14214377283085, + 25.625798144607923 + ], + [ + 74.25698645631452, + 25.820445879536376 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 25.820445879536376 + ], + [ + 74.14214377283085, + 25.625798144607923 + ], + [ + 74.3718291397982, + 25.625798144607923 + ], + [ + 74.25698645631452, + 25.820445879536376 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 25.820445879536376 + ], + [ + 74.3718291397982, + 25.625798144607923 + ], + [ + 74.48667182328188, + 25.820445879536376 + ], + [ + 74.25698645631452, + 25.820445879536376 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 26.209741349393283 + ], + [ + 74.48667182328188, + 26.209741349393283 + ], + [ + 74.3718291397982, + 26.404389084321735 + ], + [ + 74.25698645631452, + 26.209741349393283 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 26.209741349393283 + ], + [ + 74.3718291397982, + 26.404389084321735 + ], + [ + 74.14214377283085, + 26.404389084321735 + ], + [ + 74.25698645631452, + 26.209741349393283 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 26.209741349393283 + ], + [ + 74.14214377283085, + 26.404389084321735 + ], + [ + 74.02730108934716, + 26.209741349393283 + ], + [ + 74.25698645631452, + 26.209741349393283 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 26.209741349393283 + ], + [ + 74.02730108934716, + 26.209741349393283 + ], + [ + 74.14214377283085, + 26.01509361446483 + ], + [ + 74.25698645631452, + 26.209741349393283 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 26.209741349393283 + ], + [ + 74.14214377283085, + 26.01509361446483 + ], + [ + 74.3718291397982, + 26.01509361446483 + ], + [ + 74.25698645631452, + 26.209741349393283 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 26.209741349393283 + ], + [ + 74.3718291397982, + 26.01509361446483 + ], + [ + 74.48667182328188, + 26.209741349393283 + ], + [ + 74.25698645631452, + 26.209741349393283 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 26.599036819250188 + ], + [ + 74.48667182328188, + 26.599036819250188 + ], + [ + 74.3718291397982, + 26.79368455417864 + ], + [ + 74.25698645631452, + 26.599036819250188 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 26.599036819250188 + ], + [ + 74.3718291397982, + 26.79368455417864 + ], + [ + 74.14214377283085, + 26.79368455417864 + ], + [ + 74.25698645631452, + 26.599036819250188 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 26.599036819250188 + ], + [ + 74.14214377283085, + 26.79368455417864 + ], + [ + 74.02730108934716, + 26.599036819250188 + ], + [ + 74.25698645631452, + 26.599036819250188 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 26.599036819250188 + ], + [ + 74.02730108934716, + 26.599036819250188 + ], + [ + 74.14214377283085, + 26.404389084321735 + ], + [ + 74.25698645631452, + 26.599036819250188 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 26.599036819250188 + ], + [ + 74.14214377283085, + 26.404389084321735 + ], + [ + 74.3718291397982, + 26.404389084321735 + ], + [ + 74.25698645631452, + 26.599036819250188 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 26.599036819250188 + ], + [ + 74.3718291397982, + 26.404389084321735 + ], + [ + 74.48667182328188, + 26.599036819250188 + ], + [ + 74.25698645631452, + 26.599036819250188 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 26.988332289107095 + ], + [ + 74.48667182328188, + 26.988332289107095 + ], + [ + 74.3718291397982, + 27.182980024035547 + ], + [ + 74.25698645631452, + 26.988332289107095 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 26.988332289107095 + ], + [ + 74.3718291397982, + 27.182980024035547 + ], + [ + 74.14214377283085, + 27.182980024035547 + ], + [ + 74.25698645631452, + 26.988332289107095 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 26.988332289107095 + ], + [ + 74.14214377283085, + 27.182980024035547 + ], + [ + 74.02730108934716, + 26.988332289107095 + ], + [ + 74.25698645631452, + 26.988332289107095 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 26.988332289107095 + ], + [ + 74.02730108934716, + 26.988332289107095 + ], + [ + 74.14214377283085, + 26.793684554178643 + ], + [ + 74.25698645631452, + 26.988332289107095 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 26.988332289107095 + ], + [ + 74.14214377283085, + 26.793684554178643 + ], + [ + 74.3718291397982, + 26.793684554178643 + ], + [ + 74.25698645631452, + 26.988332289107095 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 26.988332289107095 + ], + [ + 74.3718291397982, + 26.793684554178643 + ], + [ + 74.48667182328188, + 26.988332289107095 + ], + [ + 74.25698645631452, + 26.988332289107095 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 27.377627758964003 + ], + [ + 74.48667182328188, + 27.377627758964003 + ], + [ + 74.3718291397982, + 27.572275493892455 + ], + [ + 74.25698645631452, + 27.377627758964003 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 27.377627758964003 + ], + [ + 74.3718291397982, + 27.572275493892455 + ], + [ + 74.14214377283085, + 27.572275493892455 + ], + [ + 74.25698645631452, + 27.377627758964003 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 27.377627758964003 + ], + [ + 74.14214377283085, + 27.572275493892455 + ], + [ + 74.02730108934716, + 27.377627758964003 + ], + [ + 74.25698645631452, + 27.377627758964003 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 27.377627758964003 + ], + [ + 74.02730108934716, + 27.377627758964003 + ], + [ + 74.14214377283085, + 27.18298002403555 + ], + [ + 74.25698645631452, + 27.377627758964003 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 27.377627758964003 + ], + [ + 74.14214377283085, + 27.18298002403555 + ], + [ + 74.3718291397982, + 27.18298002403555 + ], + [ + 74.25698645631452, + 27.377627758964003 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 27.377627758964003 + ], + [ + 74.3718291397982, + 27.18298002403555 + ], + [ + 74.48667182328188, + 27.377627758964003 + ], + [ + 74.25698645631452, + 27.377627758964003 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 27.766923228820907 + ], + [ + 74.48667182328188, + 27.766923228820907 + ], + [ + 74.3718291397982, + 27.96157096374936 + ], + [ + 74.25698645631452, + 27.766923228820907 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 27.766923228820907 + ], + [ + 74.3718291397982, + 27.96157096374936 + ], + [ + 74.14214377283085, + 27.96157096374936 + ], + [ + 74.25698645631452, + 27.766923228820907 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 27.766923228820907 + ], + [ + 74.14214377283085, + 27.96157096374936 + ], + [ + 74.02730108934716, + 27.766923228820907 + ], + [ + 74.25698645631452, + 27.766923228820907 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 27.766923228820907 + ], + [ + 74.02730108934716, + 27.766923228820907 + ], + [ + 74.14214377283085, + 27.572275493892455 + ], + [ + 74.25698645631452, + 27.766923228820907 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 27.766923228820907 + ], + [ + 74.14214377283085, + 27.572275493892455 + ], + [ + 74.3718291397982, + 27.572275493892455 + ], + [ + 74.25698645631452, + 27.766923228820907 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 27.766923228820907 + ], + [ + 74.3718291397982, + 27.572275493892455 + ], + [ + 74.48667182328188, + 27.766923228820907 + ], + [ + 74.25698645631452, + 27.766923228820907 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 28.156218698677815 + ], + [ + 74.48667182328188, + 28.156218698677815 + ], + [ + 74.3718291397982, + 28.350866433606267 + ], + [ + 74.25698645631452, + 28.156218698677815 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 28.156218698677815 + ], + [ + 74.3718291397982, + 28.350866433606267 + ], + [ + 74.14214377283085, + 28.350866433606267 + ], + [ + 74.25698645631452, + 28.156218698677815 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 28.156218698677815 + ], + [ + 74.14214377283085, + 28.350866433606267 + ], + [ + 74.02730108934716, + 28.156218698677815 + ], + [ + 74.25698645631452, + 28.156218698677815 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 28.156218698677815 + ], + [ + 74.02730108934716, + 28.156218698677815 + ], + [ + 74.14214377283085, + 27.961570963749363 + ], + [ + 74.25698645631452, + 28.156218698677815 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 28.156218698677815 + ], + [ + 74.14214377283085, + 27.961570963749363 + ], + [ + 74.3718291397982, + 27.961570963749363 + ], + [ + 74.25698645631452, + 28.156218698677815 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 28.156218698677815 + ], + [ + 74.3718291397982, + 27.961570963749363 + ], + [ + 74.48667182328188, + 28.156218698677815 + ], + [ + 74.25698645631452, + 28.156218698677815 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 28.54551416853472 + ], + [ + 74.48667182328188, + 28.54551416853472 + ], + [ + 74.3718291397982, + 28.74016190346317 + ], + [ + 74.25698645631452, + 28.54551416853472 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 28.54551416853472 + ], + [ + 74.3718291397982, + 28.74016190346317 + ], + [ + 74.14214377283085, + 28.74016190346317 + ], + [ + 74.25698645631452, + 28.54551416853472 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 28.54551416853472 + ], + [ + 74.14214377283085, + 28.74016190346317 + ], + [ + 74.02730108934716, + 28.54551416853472 + ], + [ + 74.25698645631452, + 28.54551416853472 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 28.54551416853472 + ], + [ + 74.02730108934716, + 28.54551416853472 + ], + [ + 74.14214377283085, + 28.350866433606267 + ], + [ + 74.25698645631452, + 28.54551416853472 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 28.54551416853472 + ], + [ + 74.14214377283085, + 28.350866433606267 + ], + [ + 74.3718291397982, + 28.350866433606267 + ], + [ + 74.25698645631452, + 28.54551416853472 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 28.54551416853472 + ], + [ + 74.3718291397982, + 28.350866433606267 + ], + [ + 74.48667182328188, + 28.54551416853472 + ], + [ + 74.25698645631452, + 28.54551416853472 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 28.934809638391627 + ], + [ + 74.48667182328188, + 28.934809638391627 + ], + [ + 74.3718291397982, + 29.12945737332008 + ], + [ + 74.25698645631452, + 28.934809638391627 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 28.934809638391627 + ], + [ + 74.3718291397982, + 29.12945737332008 + ], + [ + 74.14214377283085, + 29.12945737332008 + ], + [ + 74.25698645631452, + 28.934809638391627 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 28.934809638391627 + ], + [ + 74.14214377283085, + 29.12945737332008 + ], + [ + 74.02730108934716, + 28.934809638391627 + ], + [ + 74.25698645631452, + 28.934809638391627 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 28.934809638391627 + ], + [ + 74.02730108934716, + 28.934809638391627 + ], + [ + 74.14214377283085, + 28.740161903463175 + ], + [ + 74.25698645631452, + 28.934809638391627 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 28.934809638391627 + ], + [ + 74.14214377283085, + 28.740161903463175 + ], + [ + 74.3718291397982, + 28.740161903463175 + ], + [ + 74.25698645631452, + 28.934809638391627 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 28.934809638391627 + ], + [ + 74.3718291397982, + 28.740161903463175 + ], + [ + 74.48667182328188, + 28.934809638391627 + ], + [ + 74.25698645631452, + 28.934809638391627 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 29.32410510824853 + ], + [ + 74.48667182328188, + 29.32410510824853 + ], + [ + 74.3718291397982, + 29.518752843176983 + ], + [ + 74.25698645631452, + 29.32410510824853 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 29.32410510824853 + ], + [ + 74.3718291397982, + 29.518752843176983 + ], + [ + 74.14214377283085, + 29.518752843176983 + ], + [ + 74.25698645631452, + 29.32410510824853 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 29.32410510824853 + ], + [ + 74.14214377283085, + 29.518752843176983 + ], + [ + 74.02730108934716, + 29.32410510824853 + ], + [ + 74.25698645631452, + 29.32410510824853 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 29.32410510824853 + ], + [ + 74.02730108934716, + 29.32410510824853 + ], + [ + 74.14214377283085, + 29.12945737332008 + ], + [ + 74.25698645631452, + 29.32410510824853 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 29.32410510824853 + ], + [ + 74.14214377283085, + 29.12945737332008 + ], + [ + 74.3718291397982, + 29.12945737332008 + ], + [ + 74.25698645631452, + 29.32410510824853 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 29.32410510824853 + ], + [ + 74.3718291397982, + 29.12945737332008 + ], + [ + 74.48667182328188, + 29.32410510824853 + ], + [ + 74.25698645631452, + 29.32410510824853 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 29.71340057810544 + ], + [ + 74.48667182328188, + 29.71340057810544 + ], + [ + 74.3718291397982, + 29.90804831303389 + ], + [ + 74.25698645631452, + 29.71340057810544 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 29.71340057810544 + ], + [ + 74.3718291397982, + 29.90804831303389 + ], + [ + 74.14214377283085, + 29.90804831303389 + ], + [ + 74.25698645631452, + 29.71340057810544 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 29.71340057810544 + ], + [ + 74.14214377283085, + 29.90804831303389 + ], + [ + 74.02730108934716, + 29.71340057810544 + ], + [ + 74.25698645631452, + 29.71340057810544 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 29.71340057810544 + ], + [ + 74.02730108934716, + 29.71340057810544 + ], + [ + 74.14214377283085, + 29.518752843176987 + ], + [ + 74.25698645631452, + 29.71340057810544 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 29.71340057810544 + ], + [ + 74.14214377283085, + 29.518752843176987 + ], + [ + 74.3718291397982, + 29.518752843176987 + ], + [ + 74.25698645631452, + 29.71340057810544 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 29.71340057810544 + ], + [ + 74.3718291397982, + 29.518752843176987 + ], + [ + 74.48667182328188, + 29.71340057810544 + ], + [ + 74.25698645631452, + 29.71340057810544 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 30.102696047962343 + ], + [ + 74.48667182328188, + 30.102696047962343 + ], + [ + 74.3718291397982, + 30.297343782890795 + ], + [ + 74.25698645631452, + 30.102696047962343 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 30.102696047962343 + ], + [ + 74.3718291397982, + 30.297343782890795 + ], + [ + 74.14214377283085, + 30.297343782890795 + ], + [ + 74.25698645631452, + 30.102696047962343 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 30.102696047962343 + ], + [ + 74.14214377283085, + 30.297343782890795 + ], + [ + 74.02730108934716, + 30.102696047962343 + ], + [ + 74.25698645631452, + 30.102696047962343 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 30.102696047962343 + ], + [ + 74.02730108934716, + 30.102696047962343 + ], + [ + 74.14214377283085, + 29.90804831303389 + ], + [ + 74.25698645631452, + 30.102696047962343 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 30.102696047962343 + ], + [ + 74.14214377283085, + 29.90804831303389 + ], + [ + 74.3718291397982, + 29.90804831303389 + ], + [ + 74.25698645631452, + 30.102696047962343 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 30.102696047962343 + ], + [ + 74.3718291397982, + 29.90804831303389 + ], + [ + 74.48667182328188, + 30.102696047962343 + ], + [ + 74.25698645631452, + 30.102696047962343 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 30.49199151781925 + ], + [ + 74.48667182328188, + 30.49199151781925 + ], + [ + 74.3718291397982, + 30.686639252747703 + ], + [ + 74.25698645631452, + 30.49199151781925 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 30.49199151781925 + ], + [ + 74.3718291397982, + 30.686639252747703 + ], + [ + 74.14214377283085, + 30.686639252747703 + ], + [ + 74.25698645631452, + 30.49199151781925 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 30.49199151781925 + ], + [ + 74.14214377283085, + 30.686639252747703 + ], + [ + 74.02730108934716, + 30.49199151781925 + ], + [ + 74.25698645631452, + 30.49199151781925 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 30.49199151781925 + ], + [ + 74.02730108934716, + 30.49199151781925 + ], + [ + 74.14214377283085, + 30.2973437828908 + ], + [ + 74.25698645631452, + 30.49199151781925 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 30.49199151781925 + ], + [ + 74.14214377283085, + 30.2973437828908 + ], + [ + 74.3718291397982, + 30.2973437828908 + ], + [ + 74.25698645631452, + 30.49199151781925 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 30.49199151781925 + ], + [ + 74.3718291397982, + 30.2973437828908 + ], + [ + 74.48667182328188, + 30.49199151781925 + ], + [ + 74.25698645631452, + 30.49199151781925 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 30.88128698767616 + ], + [ + 74.48667182328188, + 30.88128698767616 + ], + [ + 74.3718291397982, + 31.07593472260461 + ], + [ + 74.25698645631452, + 30.88128698767616 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 30.88128698767616 + ], + [ + 74.3718291397982, + 31.07593472260461 + ], + [ + 74.14214377283085, + 31.07593472260461 + ], + [ + 74.25698645631452, + 30.88128698767616 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 30.88128698767616 + ], + [ + 74.14214377283085, + 31.07593472260461 + ], + [ + 74.02730108934716, + 30.88128698767616 + ], + [ + 74.25698645631452, + 30.88128698767616 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 30.88128698767616 + ], + [ + 74.02730108934716, + 30.88128698767616 + ], + [ + 74.14214377283085, + 30.686639252747707 + ], + [ + 74.25698645631452, + 30.88128698767616 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 30.88128698767616 + ], + [ + 74.14214377283085, + 30.686639252747707 + ], + [ + 74.3718291397982, + 30.686639252747707 + ], + [ + 74.25698645631452, + 30.88128698767616 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 30.88128698767616 + ], + [ + 74.3718291397982, + 30.686639252747707 + ], + [ + 74.48667182328188, + 30.88128698767616 + ], + [ + 74.25698645631452, + 30.88128698767616 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 31.270582457533063 + ], + [ + 74.48667182328188, + 31.270582457533063 + ], + [ + 74.3718291397982, + 31.465230192461515 + ], + [ + 74.25698645631452, + 31.270582457533063 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 31.270582457533063 + ], + [ + 74.3718291397982, + 31.465230192461515 + ], + [ + 74.14214377283085, + 31.465230192461515 + ], + [ + 74.25698645631452, + 31.270582457533063 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 31.270582457533063 + ], + [ + 74.14214377283085, + 31.465230192461515 + ], + [ + 74.02730108934716, + 31.270582457533063 + ], + [ + 74.25698645631452, + 31.270582457533063 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 31.270582457533063 + ], + [ + 74.02730108934716, + 31.270582457533063 + ], + [ + 74.14214377283085, + 31.07593472260461 + ], + [ + 74.25698645631452, + 31.270582457533063 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 31.270582457533063 + ], + [ + 74.14214377283085, + 31.07593472260461 + ], + [ + 74.3718291397982, + 31.07593472260461 + ], + [ + 74.25698645631452, + 31.270582457533063 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 31.270582457533063 + ], + [ + 74.3718291397982, + 31.07593472260461 + ], + [ + 74.48667182328188, + 31.270582457533063 + ], + [ + 74.25698645631452, + 31.270582457533063 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 31.65987792738997 + ], + [ + 74.48667182328188, + 31.65987792738997 + ], + [ + 74.3718291397982, + 31.854525662318423 + ], + [ + 74.25698645631452, + 31.65987792738997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 31.65987792738997 + ], + [ + 74.3718291397982, + 31.854525662318423 + ], + [ + 74.14214377283085, + 31.854525662318423 + ], + [ + 74.25698645631452, + 31.65987792738997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 31.65987792738997 + ], + [ + 74.14214377283085, + 31.854525662318423 + ], + [ + 74.02730108934716, + 31.65987792738997 + ], + [ + 74.25698645631452, + 31.65987792738997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 31.65987792738997 + ], + [ + 74.02730108934716, + 31.65987792738997 + ], + [ + 74.14214377283085, + 31.46523019246152 + ], + [ + 74.25698645631452, + 31.65987792738997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 31.65987792738997 + ], + [ + 74.14214377283085, + 31.46523019246152 + ], + [ + 74.3718291397982, + 31.46523019246152 + ], + [ + 74.25698645631452, + 31.65987792738997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 31.65987792738997 + ], + [ + 74.3718291397982, + 31.46523019246152 + ], + [ + 74.48667182328188, + 31.65987792738997 + ], + [ + 74.25698645631452, + 31.65987792738997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 32.049173397246875 + ], + [ + 74.48667182328188, + 32.049173397246875 + ], + [ + 74.3718291397982, + 32.24382113217533 + ], + [ + 74.25698645631452, + 32.049173397246875 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 32.049173397246875 + ], + [ + 74.3718291397982, + 32.24382113217533 + ], + [ + 74.14214377283085, + 32.24382113217533 + ], + [ + 74.25698645631452, + 32.049173397246875 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 32.049173397246875 + ], + [ + 74.14214377283085, + 32.24382113217533 + ], + [ + 74.02730108934716, + 32.049173397246875 + ], + [ + 74.25698645631452, + 32.049173397246875 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 32.049173397246875 + ], + [ + 74.02730108934716, + 32.049173397246875 + ], + [ + 74.14214377283085, + 31.854525662318423 + ], + [ + 74.25698645631452, + 32.049173397246875 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 32.049173397246875 + ], + [ + 74.14214377283085, + 31.854525662318423 + ], + [ + 74.3718291397982, + 31.854525662318423 + ], + [ + 74.25698645631452, + 32.049173397246875 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 32.049173397246875 + ], + [ + 74.3718291397982, + 31.854525662318423 + ], + [ + 74.48667182328188, + 32.049173397246875 + ], + [ + 74.25698645631452, + 32.049173397246875 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 32.438468867103786 + ], + [ + 74.48667182328188, + 32.438468867103786 + ], + [ + 74.3718291397982, + 32.63311660203224 + ], + [ + 74.25698645631452, + 32.438468867103786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 32.438468867103786 + ], + [ + 74.3718291397982, + 32.63311660203224 + ], + [ + 74.14214377283085, + 32.63311660203224 + ], + [ + 74.25698645631452, + 32.438468867103786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 32.438468867103786 + ], + [ + 74.14214377283085, + 32.63311660203224 + ], + [ + 74.02730108934716, + 32.438468867103786 + ], + [ + 74.25698645631452, + 32.438468867103786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 32.438468867103786 + ], + [ + 74.02730108934716, + 32.438468867103786 + ], + [ + 74.14214377283085, + 32.243821132175334 + ], + [ + 74.25698645631452, + 32.438468867103786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 32.438468867103786 + ], + [ + 74.14214377283085, + 32.243821132175334 + ], + [ + 74.3718291397982, + 32.243821132175334 + ], + [ + 74.25698645631452, + 32.438468867103786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 32.438468867103786 + ], + [ + 74.3718291397982, + 32.243821132175334 + ], + [ + 74.48667182328188, + 32.438468867103786 + ], + [ + 74.25698645631452, + 32.438468867103786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 32.82776433696069 + ], + [ + 74.48667182328188, + 32.82776433696069 + ], + [ + 74.3718291397982, + 33.02241207188914 + ], + [ + 74.25698645631452, + 32.82776433696069 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 32.82776433696069 + ], + [ + 74.3718291397982, + 33.02241207188914 + ], + [ + 74.14214377283085, + 33.02241207188914 + ], + [ + 74.25698645631452, + 32.82776433696069 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 32.82776433696069 + ], + [ + 74.14214377283085, + 33.02241207188914 + ], + [ + 74.02730108934716, + 32.82776433696069 + ], + [ + 74.25698645631452, + 32.82776433696069 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 32.82776433696069 + ], + [ + 74.02730108934716, + 32.82776433696069 + ], + [ + 74.14214377283085, + 32.63311660203224 + ], + [ + 74.25698645631452, + 32.82776433696069 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 32.82776433696069 + ], + [ + 74.14214377283085, + 32.63311660203224 + ], + [ + 74.3718291397982, + 32.63311660203224 + ], + [ + 74.25698645631452, + 32.82776433696069 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 32.82776433696069 + ], + [ + 74.3718291397982, + 32.63311660203224 + ], + [ + 74.48667182328188, + 32.82776433696069 + ], + [ + 74.25698645631452, + 32.82776433696069 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 33.217059806817595 + ], + [ + 74.48667182328188, + 33.217059806817595 + ], + [ + 74.3718291397982, + 33.41170754174605 + ], + [ + 74.25698645631452, + 33.217059806817595 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 33.217059806817595 + ], + [ + 74.3718291397982, + 33.41170754174605 + ], + [ + 74.14214377283085, + 33.41170754174605 + ], + [ + 74.25698645631452, + 33.217059806817595 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 33.217059806817595 + ], + [ + 74.14214377283085, + 33.41170754174605 + ], + [ + 74.02730108934716, + 33.217059806817595 + ], + [ + 74.25698645631452, + 33.217059806817595 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 33.217059806817595 + ], + [ + 74.02730108934716, + 33.217059806817595 + ], + [ + 74.14214377283085, + 33.02241207188914 + ], + [ + 74.25698645631452, + 33.217059806817595 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 33.217059806817595 + ], + [ + 74.14214377283085, + 33.02241207188914 + ], + [ + 74.3718291397982, + 33.02241207188914 + ], + [ + 74.25698645631452, + 33.217059806817595 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 33.217059806817595 + ], + [ + 74.3718291397982, + 33.02241207188914 + ], + [ + 74.48667182328188, + 33.217059806817595 + ], + [ + 74.25698645631452, + 33.217059806817595 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 33.6063552766745 + ], + [ + 74.48667182328188, + 33.6063552766745 + ], + [ + 74.3718291397982, + 33.80100301160295 + ], + [ + 74.25698645631452, + 33.6063552766745 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 33.6063552766745 + ], + [ + 74.3718291397982, + 33.80100301160295 + ], + [ + 74.14214377283085, + 33.80100301160295 + ], + [ + 74.25698645631452, + 33.6063552766745 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 33.6063552766745 + ], + [ + 74.14214377283085, + 33.80100301160295 + ], + [ + 74.02730108934716, + 33.6063552766745 + ], + [ + 74.25698645631452, + 33.6063552766745 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 33.6063552766745 + ], + [ + 74.02730108934716, + 33.6063552766745 + ], + [ + 74.14214377283085, + 33.41170754174605 + ], + [ + 74.25698645631452, + 33.6063552766745 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 33.6063552766745 + ], + [ + 74.14214377283085, + 33.41170754174605 + ], + [ + 74.3718291397982, + 33.41170754174605 + ], + [ + 74.25698645631452, + 33.6063552766745 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 33.6063552766745 + ], + [ + 74.3718291397982, + 33.41170754174605 + ], + [ + 74.48667182328188, + 33.6063552766745 + ], + [ + 74.25698645631452, + 33.6063552766745 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 33.9956507465314 + ], + [ + 74.48667182328188, + 33.9956507465314 + ], + [ + 74.3718291397982, + 34.190298481459855 + ], + [ + 74.25698645631452, + 33.9956507465314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 33.9956507465314 + ], + [ + 74.3718291397982, + 34.190298481459855 + ], + [ + 74.14214377283085, + 34.190298481459855 + ], + [ + 74.25698645631452, + 33.9956507465314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 33.9956507465314 + ], + [ + 74.14214377283085, + 34.190298481459855 + ], + [ + 74.02730108934716, + 33.9956507465314 + ], + [ + 74.25698645631452, + 33.9956507465314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 33.9956507465314 + ], + [ + 74.02730108934716, + 33.9956507465314 + ], + [ + 74.14214377283085, + 33.80100301160295 + ], + [ + 74.25698645631452, + 33.9956507465314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 33.9956507465314 + ], + [ + 74.14214377283085, + 33.80100301160295 + ], + [ + 74.3718291397982, + 33.80100301160295 + ], + [ + 74.25698645631452, + 33.9956507465314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 33.9956507465314 + ], + [ + 74.3718291397982, + 33.80100301160295 + ], + [ + 74.48667182328188, + 33.9956507465314 + ], + [ + 74.25698645631452, + 33.9956507465314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 34.384946216388315 + ], + [ + 74.48667182328188, + 34.384946216388315 + ], + [ + 74.3718291397982, + 34.57959395131677 + ], + [ + 74.25698645631452, + 34.384946216388315 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 34.384946216388315 + ], + [ + 74.3718291397982, + 34.57959395131677 + ], + [ + 74.14214377283085, + 34.57959395131677 + ], + [ + 74.25698645631452, + 34.384946216388315 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 34.384946216388315 + ], + [ + 74.14214377283085, + 34.57959395131677 + ], + [ + 74.02730108934716, + 34.384946216388315 + ], + [ + 74.25698645631452, + 34.384946216388315 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 34.384946216388315 + ], + [ + 74.02730108934716, + 34.384946216388315 + ], + [ + 74.14214377283085, + 34.19029848145986 + ], + [ + 74.25698645631452, + 34.384946216388315 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 34.384946216388315 + ], + [ + 74.14214377283085, + 34.19029848145986 + ], + [ + 74.3718291397982, + 34.19029848145986 + ], + [ + 74.25698645631452, + 34.384946216388315 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 34.384946216388315 + ], + [ + 74.3718291397982, + 34.19029848145986 + ], + [ + 74.48667182328188, + 34.384946216388315 + ], + [ + 74.25698645631452, + 34.384946216388315 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 34.774241686245226 + ], + [ + 74.48667182328188, + 34.774241686245226 + ], + [ + 74.3718291397982, + 34.96888942117368 + ], + [ + 74.25698645631452, + 34.774241686245226 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 34.774241686245226 + ], + [ + 74.3718291397982, + 34.96888942117368 + ], + [ + 74.14214377283085, + 34.96888942117368 + ], + [ + 74.25698645631452, + 34.774241686245226 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 34.774241686245226 + ], + [ + 74.14214377283085, + 34.96888942117368 + ], + [ + 74.02730108934716, + 34.774241686245226 + ], + [ + 74.25698645631452, + 34.774241686245226 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 34.774241686245226 + ], + [ + 74.02730108934716, + 34.774241686245226 + ], + [ + 74.14214377283085, + 34.579593951316774 + ], + [ + 74.25698645631452, + 34.774241686245226 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 34.774241686245226 + ], + [ + 74.14214377283085, + 34.579593951316774 + ], + [ + 74.3718291397982, + 34.579593951316774 + ], + [ + 74.25698645631452, + 34.774241686245226 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 34.774241686245226 + ], + [ + 74.3718291397982, + 34.579593951316774 + ], + [ + 74.48667182328188, + 34.774241686245226 + ], + [ + 74.25698645631452, + 34.774241686245226 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 35.16353715610213 + ], + [ + 74.48667182328188, + 35.16353715610213 + ], + [ + 74.3718291397982, + 35.35818489103058 + ], + [ + 74.25698645631452, + 35.16353715610213 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 35.16353715610213 + ], + [ + 74.3718291397982, + 35.35818489103058 + ], + [ + 74.14214377283085, + 35.35818489103058 + ], + [ + 74.25698645631452, + 35.16353715610213 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 35.16353715610213 + ], + [ + 74.14214377283085, + 35.35818489103058 + ], + [ + 74.02730108934716, + 35.16353715610213 + ], + [ + 74.25698645631452, + 35.16353715610213 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 35.16353715610213 + ], + [ + 74.02730108934716, + 35.16353715610213 + ], + [ + 74.14214377283085, + 34.96888942117368 + ], + [ + 74.25698645631452, + 35.16353715610213 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 35.16353715610213 + ], + [ + 74.14214377283085, + 34.96888942117368 + ], + [ + 74.3718291397982, + 34.96888942117368 + ], + [ + 74.25698645631452, + 35.16353715610213 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 35.16353715610213 + ], + [ + 74.3718291397982, + 34.96888942117368 + ], + [ + 74.48667182328188, + 35.16353715610213 + ], + [ + 74.25698645631452, + 35.16353715610213 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 35.552832625959034 + ], + [ + 74.48667182328188, + 35.552832625959034 + ], + [ + 74.3718291397982, + 35.74748036088749 + ], + [ + 74.25698645631452, + 35.552832625959034 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 35.552832625959034 + ], + [ + 74.3718291397982, + 35.74748036088749 + ], + [ + 74.14214377283085, + 35.74748036088749 + ], + [ + 74.25698645631452, + 35.552832625959034 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 35.552832625959034 + ], + [ + 74.14214377283085, + 35.74748036088749 + ], + [ + 74.02730108934716, + 35.552832625959034 + ], + [ + 74.25698645631452, + 35.552832625959034 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 35.552832625959034 + ], + [ + 74.02730108934716, + 35.552832625959034 + ], + [ + 74.14214377283085, + 35.35818489103058 + ], + [ + 74.25698645631452, + 35.552832625959034 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 35.552832625959034 + ], + [ + 74.14214377283085, + 35.35818489103058 + ], + [ + 74.3718291397982, + 35.35818489103058 + ], + [ + 74.25698645631452, + 35.552832625959034 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 35.552832625959034 + ], + [ + 74.3718291397982, + 35.35818489103058 + ], + [ + 74.48667182328188, + 35.552832625959034 + ], + [ + 74.25698645631452, + 35.552832625959034 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 35.94212809581594 + ], + [ + 74.48667182328188, + 35.94212809581594 + ], + [ + 74.3718291397982, + 36.13677583074439 + ], + [ + 74.25698645631452, + 35.94212809581594 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 35.94212809581594 + ], + [ + 74.3718291397982, + 36.13677583074439 + ], + [ + 74.14214377283085, + 36.13677583074439 + ], + [ + 74.25698645631452, + 35.94212809581594 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 35.94212809581594 + ], + [ + 74.14214377283085, + 36.13677583074439 + ], + [ + 74.02730108934716, + 35.94212809581594 + ], + [ + 74.25698645631452, + 35.94212809581594 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 35.94212809581594 + ], + [ + 74.02730108934716, + 35.94212809581594 + ], + [ + 74.14214377283085, + 35.74748036088749 + ], + [ + 74.25698645631452, + 35.94212809581594 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 35.94212809581594 + ], + [ + 74.14214377283085, + 35.74748036088749 + ], + [ + 74.3718291397982, + 35.74748036088749 + ], + [ + 74.25698645631452, + 35.94212809581594 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 35.94212809581594 + ], + [ + 74.3718291397982, + 35.74748036088749 + ], + [ + 74.48667182328188, + 35.94212809581594 + ], + [ + 74.25698645631452, + 35.94212809581594 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 36.33142356567284 + ], + [ + 74.48667182328188, + 36.33142356567284 + ], + [ + 74.3718291397982, + 36.526071300601295 + ], + [ + 74.25698645631452, + 36.33142356567284 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 36.33142356567284 + ], + [ + 74.3718291397982, + 36.526071300601295 + ], + [ + 74.14214377283085, + 36.526071300601295 + ], + [ + 74.25698645631452, + 36.33142356567284 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 36.33142356567284 + ], + [ + 74.14214377283085, + 36.526071300601295 + ], + [ + 74.02730108934716, + 36.33142356567284 + ], + [ + 74.25698645631452, + 36.33142356567284 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 36.33142356567284 + ], + [ + 74.02730108934716, + 36.33142356567284 + ], + [ + 74.14214377283085, + 36.13677583074439 + ], + [ + 74.25698645631452, + 36.33142356567284 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 36.33142356567284 + ], + [ + 74.14214377283085, + 36.13677583074439 + ], + [ + 74.3718291397982, + 36.13677583074439 + ], + [ + 74.25698645631452, + 36.33142356567284 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 36.33142356567284 + ], + [ + 74.3718291397982, + 36.13677583074439 + ], + [ + 74.48667182328188, + 36.33142356567284 + ], + [ + 74.25698645631452, + 36.33142356567284 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 36.720719035529754 + ], + [ + 74.48667182328188, + 36.720719035529754 + ], + [ + 74.3718291397982, + 36.915366770458206 + ], + [ + 74.25698645631452, + 36.720719035529754 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 36.720719035529754 + ], + [ + 74.3718291397982, + 36.915366770458206 + ], + [ + 74.14214377283085, + 36.915366770458206 + ], + [ + 74.25698645631452, + 36.720719035529754 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 36.720719035529754 + ], + [ + 74.14214377283085, + 36.915366770458206 + ], + [ + 74.02730108934716, + 36.720719035529754 + ], + [ + 74.25698645631452, + 36.720719035529754 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 36.720719035529754 + ], + [ + 74.02730108934716, + 36.720719035529754 + ], + [ + 74.14214377283085, + 36.5260713006013 + ], + [ + 74.25698645631452, + 36.720719035529754 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 36.720719035529754 + ], + [ + 74.14214377283085, + 36.5260713006013 + ], + [ + 74.3718291397982, + 36.5260713006013 + ], + [ + 74.25698645631452, + 36.720719035529754 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 36.720719035529754 + ], + [ + 74.3718291397982, + 36.5260713006013 + ], + [ + 74.48667182328188, + 36.720719035529754 + ], + [ + 74.25698645631452, + 36.720719035529754 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 37.11001450538666 + ], + [ + 74.48667182328188, + 37.11001450538666 + ], + [ + 74.3718291397982, + 37.30466224031511 + ], + [ + 74.25698645631452, + 37.11001450538666 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 37.11001450538666 + ], + [ + 74.3718291397982, + 37.30466224031511 + ], + [ + 74.14214377283085, + 37.30466224031511 + ], + [ + 74.25698645631452, + 37.11001450538666 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 37.11001450538666 + ], + [ + 74.14214377283085, + 37.30466224031511 + ], + [ + 74.02730108934716, + 37.11001450538666 + ], + [ + 74.25698645631452, + 37.11001450538666 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 37.11001450538666 + ], + [ + 74.02730108934716, + 37.11001450538666 + ], + [ + 74.14214377283085, + 36.915366770458206 + ], + [ + 74.25698645631452, + 37.11001450538666 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 37.11001450538666 + ], + [ + 74.14214377283085, + 36.915366770458206 + ], + [ + 74.3718291397982, + 36.915366770458206 + ], + [ + 74.25698645631452, + 37.11001450538666 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 37.11001450538666 + ], + [ + 74.3718291397982, + 36.915366770458206 + ], + [ + 74.48667182328188, + 37.11001450538666 + ], + [ + 74.25698645631452, + 37.11001450538666 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 37.49930997524357 + ], + [ + 74.48667182328188, + 37.49930997524357 + ], + [ + 74.3718291397982, + 37.69395771017202 + ], + [ + 74.25698645631452, + 37.49930997524357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 37.49930997524357 + ], + [ + 74.3718291397982, + 37.69395771017202 + ], + [ + 74.14214377283085, + 37.69395771017202 + ], + [ + 74.25698645631452, + 37.49930997524357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 37.49930997524357 + ], + [ + 74.14214377283085, + 37.69395771017202 + ], + [ + 74.02730108934716, + 37.49930997524357 + ], + [ + 74.25698645631452, + 37.49930997524357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 37.49930997524357 + ], + [ + 74.02730108934716, + 37.49930997524357 + ], + [ + 74.14214377283085, + 37.30466224031512 + ], + [ + 74.25698645631452, + 37.49930997524357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 37.49930997524357 + ], + [ + 74.14214377283085, + 37.30466224031512 + ], + [ + 74.3718291397982, + 37.30466224031512 + ], + [ + 74.25698645631452, + 37.49930997524357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 37.49930997524357 + ], + [ + 74.3718291397982, + 37.30466224031512 + ], + [ + 74.48667182328188, + 37.49930997524357 + ], + [ + 74.25698645631452, + 37.49930997524357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 37.888605445100474 + ], + [ + 74.48667182328188, + 37.888605445100474 + ], + [ + 74.3718291397982, + 38.083253180028926 + ], + [ + 74.25698645631452, + 37.888605445100474 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 37.888605445100474 + ], + [ + 74.3718291397982, + 38.083253180028926 + ], + [ + 74.14214377283085, + 38.083253180028926 + ], + [ + 74.25698645631452, + 37.888605445100474 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 37.888605445100474 + ], + [ + 74.14214377283085, + 38.083253180028926 + ], + [ + 74.02730108934716, + 37.888605445100474 + ], + [ + 74.25698645631452, + 37.888605445100474 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 37.888605445100474 + ], + [ + 74.02730108934716, + 37.888605445100474 + ], + [ + 74.14214377283085, + 37.69395771017202 + ], + [ + 74.25698645631452, + 37.888605445100474 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 37.888605445100474 + ], + [ + 74.14214377283085, + 37.69395771017202 + ], + [ + 74.3718291397982, + 37.69395771017202 + ], + [ + 74.25698645631452, + 37.888605445100474 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 37.888605445100474 + ], + [ + 74.3718291397982, + 37.69395771017202 + ], + [ + 74.48667182328188, + 37.888605445100474 + ], + [ + 74.25698645631452, + 37.888605445100474 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 38.27790091495738 + ], + [ + 74.48667182328188, + 38.27790091495738 + ], + [ + 74.3718291397982, + 38.47254864988583 + ], + [ + 74.25698645631452, + 38.27790091495738 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 38.27790091495738 + ], + [ + 74.3718291397982, + 38.47254864988583 + ], + [ + 74.14214377283085, + 38.47254864988583 + ], + [ + 74.25698645631452, + 38.27790091495738 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 38.27790091495738 + ], + [ + 74.14214377283085, + 38.47254864988583 + ], + [ + 74.02730108934716, + 38.27790091495738 + ], + [ + 74.25698645631452, + 38.27790091495738 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 38.27790091495738 + ], + [ + 74.02730108934716, + 38.27790091495738 + ], + [ + 74.14214377283085, + 38.083253180028926 + ], + [ + 74.25698645631452, + 38.27790091495738 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 38.27790091495738 + ], + [ + 74.14214377283085, + 38.083253180028926 + ], + [ + 74.3718291397982, + 38.083253180028926 + ], + [ + 74.25698645631452, + 38.27790091495738 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 38.27790091495738 + ], + [ + 74.3718291397982, + 38.083253180028926 + ], + [ + 74.48667182328188, + 38.27790091495738 + ], + [ + 74.25698645631452, + 38.27790091495738 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 38.66719638481428 + ], + [ + 74.48667182328188, + 38.66719638481428 + ], + [ + 74.3718291397982, + 38.861844119742734 + ], + [ + 74.25698645631452, + 38.66719638481428 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 38.66719638481428 + ], + [ + 74.3718291397982, + 38.861844119742734 + ], + [ + 74.14214377283085, + 38.861844119742734 + ], + [ + 74.25698645631452, + 38.66719638481428 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 38.66719638481428 + ], + [ + 74.14214377283085, + 38.861844119742734 + ], + [ + 74.02730108934716, + 38.66719638481428 + ], + [ + 74.25698645631452, + 38.66719638481428 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 38.66719638481428 + ], + [ + 74.02730108934716, + 38.66719638481428 + ], + [ + 74.14214377283085, + 38.47254864988583 + ], + [ + 74.25698645631452, + 38.66719638481428 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 38.66719638481428 + ], + [ + 74.14214377283085, + 38.47254864988583 + ], + [ + 74.3718291397982, + 38.47254864988583 + ], + [ + 74.25698645631452, + 38.66719638481428 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 38.66719638481428 + ], + [ + 74.3718291397982, + 38.47254864988583 + ], + [ + 74.48667182328188, + 38.66719638481428 + ], + [ + 74.25698645631452, + 38.66719638481428 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 39.05649185467119 + ], + [ + 74.48667182328188, + 39.05649185467119 + ], + [ + 74.3718291397982, + 39.25113958959964 + ], + [ + 74.25698645631452, + 39.05649185467119 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 39.05649185467119 + ], + [ + 74.3718291397982, + 39.25113958959964 + ], + [ + 74.14214377283085, + 39.25113958959964 + ], + [ + 74.25698645631452, + 39.05649185467119 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 39.05649185467119 + ], + [ + 74.14214377283085, + 39.25113958959964 + ], + [ + 74.02730108934716, + 39.05649185467119 + ], + [ + 74.25698645631452, + 39.05649185467119 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 39.05649185467119 + ], + [ + 74.02730108934716, + 39.05649185467119 + ], + [ + 74.14214377283085, + 38.861844119742734 + ], + [ + 74.25698645631452, + 39.05649185467119 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 39.05649185467119 + ], + [ + 74.14214377283085, + 38.861844119742734 + ], + [ + 74.3718291397982, + 38.861844119742734 + ], + [ + 74.25698645631452, + 39.05649185467119 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 39.05649185467119 + ], + [ + 74.3718291397982, + 38.861844119742734 + ], + [ + 74.48667182328188, + 39.05649185467119 + ], + [ + 74.25698645631452, + 39.05649185467119 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 39.4457873245281 + ], + [ + 74.48667182328188, + 39.4457873245281 + ], + [ + 74.3718291397982, + 39.64043505945655 + ], + [ + 74.25698645631452, + 39.4457873245281 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 39.4457873245281 + ], + [ + 74.3718291397982, + 39.64043505945655 + ], + [ + 74.14214377283085, + 39.64043505945655 + ], + [ + 74.25698645631452, + 39.4457873245281 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 39.4457873245281 + ], + [ + 74.14214377283085, + 39.64043505945655 + ], + [ + 74.02730108934716, + 39.4457873245281 + ], + [ + 74.25698645631452, + 39.4457873245281 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 39.4457873245281 + ], + [ + 74.02730108934716, + 39.4457873245281 + ], + [ + 74.14214377283085, + 39.251139589599646 + ], + [ + 74.25698645631452, + 39.4457873245281 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 39.4457873245281 + ], + [ + 74.14214377283085, + 39.251139589599646 + ], + [ + 74.3718291397982, + 39.251139589599646 + ], + [ + 74.25698645631452, + 39.4457873245281 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 39.4457873245281 + ], + [ + 74.3718291397982, + 39.251139589599646 + ], + [ + 74.48667182328188, + 39.4457873245281 + ], + [ + 74.25698645631452, + 39.4457873245281 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 39.835082794385 + ], + [ + 74.48667182328188, + 39.835082794385 + ], + [ + 74.3718291397982, + 40.029730529313454 + ], + [ + 74.25698645631452, + 39.835082794385 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 39.835082794385 + ], + [ + 74.3718291397982, + 40.029730529313454 + ], + [ + 74.14214377283085, + 40.029730529313454 + ], + [ + 74.25698645631452, + 39.835082794385 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 39.835082794385 + ], + [ + 74.14214377283085, + 40.029730529313454 + ], + [ + 74.02730108934716, + 39.835082794385 + ], + [ + 74.25698645631452, + 39.835082794385 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 39.835082794385 + ], + [ + 74.02730108934716, + 39.835082794385 + ], + [ + 74.14214377283085, + 39.64043505945655 + ], + [ + 74.25698645631452, + 39.835082794385 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 39.835082794385 + ], + [ + 74.14214377283085, + 39.64043505945655 + ], + [ + 74.3718291397982, + 39.64043505945655 + ], + [ + 74.25698645631452, + 39.835082794385 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 39.835082794385 + ], + [ + 74.3718291397982, + 39.64043505945655 + ], + [ + 74.48667182328188, + 39.835082794385 + ], + [ + 74.25698645631452, + 39.835082794385 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 40.22437826424191 + ], + [ + 74.48667182328188, + 40.22437826424191 + ], + [ + 74.3718291397982, + 40.419025999170366 + ], + [ + 74.25698645631452, + 40.22437826424191 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 40.22437826424191 + ], + [ + 74.3718291397982, + 40.419025999170366 + ], + [ + 74.14214377283085, + 40.419025999170366 + ], + [ + 74.25698645631452, + 40.22437826424191 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 40.22437826424191 + ], + [ + 74.14214377283085, + 40.419025999170366 + ], + [ + 74.02730108934716, + 40.22437826424191 + ], + [ + 74.25698645631452, + 40.22437826424191 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 40.22437826424191 + ], + [ + 74.02730108934716, + 40.22437826424191 + ], + [ + 74.14214377283085, + 40.02973052931346 + ], + [ + 74.25698645631452, + 40.22437826424191 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 40.22437826424191 + ], + [ + 74.14214377283085, + 40.02973052931346 + ], + [ + 74.3718291397982, + 40.02973052931346 + ], + [ + 74.25698645631452, + 40.22437826424191 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 40.22437826424191 + ], + [ + 74.3718291397982, + 40.02973052931346 + ], + [ + 74.48667182328188, + 40.22437826424191 + ], + [ + 74.25698645631452, + 40.22437826424191 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 40.61367373409882 + ], + [ + 74.48667182328188, + 40.61367373409882 + ], + [ + 74.3718291397982, + 40.80832146902727 + ], + [ + 74.25698645631452, + 40.61367373409882 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 40.61367373409882 + ], + [ + 74.3718291397982, + 40.80832146902727 + ], + [ + 74.14214377283085, + 40.80832146902727 + ], + [ + 74.25698645631452, + 40.61367373409882 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 40.61367373409882 + ], + [ + 74.14214377283085, + 40.80832146902727 + ], + [ + 74.02730108934716, + 40.61367373409882 + ], + [ + 74.25698645631452, + 40.61367373409882 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 40.61367373409882 + ], + [ + 74.02730108934716, + 40.61367373409882 + ], + [ + 74.14214377283085, + 40.419025999170366 + ], + [ + 74.25698645631452, + 40.61367373409882 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 40.61367373409882 + ], + [ + 74.14214377283085, + 40.419025999170366 + ], + [ + 74.3718291397982, + 40.419025999170366 + ], + [ + 74.25698645631452, + 40.61367373409882 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 40.61367373409882 + ], + [ + 74.3718291397982, + 40.419025999170366 + ], + [ + 74.48667182328188, + 40.61367373409882 + ], + [ + 74.25698645631452, + 40.61367373409882 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 41.00296920395572 + ], + [ + 74.48667182328188, + 41.00296920395572 + ], + [ + 74.3718291397982, + 41.197616938884174 + ], + [ + 74.25698645631452, + 41.00296920395572 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 41.00296920395572 + ], + [ + 74.3718291397982, + 41.197616938884174 + ], + [ + 74.14214377283085, + 41.197616938884174 + ], + [ + 74.25698645631452, + 41.00296920395572 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 41.00296920395572 + ], + [ + 74.14214377283085, + 41.197616938884174 + ], + [ + 74.02730108934716, + 41.00296920395572 + ], + [ + 74.25698645631452, + 41.00296920395572 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 41.00296920395572 + ], + [ + 74.02730108934716, + 41.00296920395572 + ], + [ + 74.14214377283085, + 40.80832146902727 + ], + [ + 74.25698645631452, + 41.00296920395572 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 41.00296920395572 + ], + [ + 74.14214377283085, + 40.80832146902727 + ], + [ + 74.3718291397982, + 40.80832146902727 + ], + [ + 74.25698645631452, + 41.00296920395572 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 41.00296920395572 + ], + [ + 74.3718291397982, + 40.80832146902727 + ], + [ + 74.48667182328188, + 41.00296920395572 + ], + [ + 74.25698645631452, + 41.00296920395572 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 41.392264673812626 + ], + [ + 74.48667182328188, + 41.392264673812626 + ], + [ + 74.3718291397982, + 41.58691240874108 + ], + [ + 74.25698645631452, + 41.392264673812626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 41.392264673812626 + ], + [ + 74.3718291397982, + 41.58691240874108 + ], + [ + 74.14214377283085, + 41.58691240874108 + ], + [ + 74.25698645631452, + 41.392264673812626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 41.392264673812626 + ], + [ + 74.14214377283085, + 41.58691240874108 + ], + [ + 74.02730108934716, + 41.392264673812626 + ], + [ + 74.25698645631452, + 41.392264673812626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 41.392264673812626 + ], + [ + 74.02730108934716, + 41.392264673812626 + ], + [ + 74.14214377283085, + 41.197616938884174 + ], + [ + 74.25698645631452, + 41.392264673812626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 41.392264673812626 + ], + [ + 74.14214377283085, + 41.197616938884174 + ], + [ + 74.3718291397982, + 41.197616938884174 + ], + [ + 74.25698645631452, + 41.392264673812626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 41.392264673812626 + ], + [ + 74.3718291397982, + 41.197616938884174 + ], + [ + 74.48667182328188, + 41.392264673812626 + ], + [ + 74.25698645631452, + 41.392264673812626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 41.78156014366953 + ], + [ + 74.48667182328188, + 41.78156014366953 + ], + [ + 74.3718291397982, + 41.97620787859798 + ], + [ + 74.25698645631452, + 41.78156014366953 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 41.78156014366953 + ], + [ + 74.3718291397982, + 41.97620787859798 + ], + [ + 74.14214377283085, + 41.97620787859798 + ], + [ + 74.25698645631452, + 41.78156014366953 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 41.78156014366953 + ], + [ + 74.14214377283085, + 41.97620787859798 + ], + [ + 74.02730108934716, + 41.78156014366953 + ], + [ + 74.25698645631452, + 41.78156014366953 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 41.78156014366953 + ], + [ + 74.02730108934716, + 41.78156014366953 + ], + [ + 74.14214377283085, + 41.58691240874108 + ], + [ + 74.25698645631452, + 41.78156014366953 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 41.78156014366953 + ], + [ + 74.14214377283085, + 41.58691240874108 + ], + [ + 74.3718291397982, + 41.58691240874108 + ], + [ + 74.25698645631452, + 41.78156014366953 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 41.78156014366953 + ], + [ + 74.3718291397982, + 41.58691240874108 + ], + [ + 74.48667182328188, + 41.78156014366953 + ], + [ + 74.25698645631452, + 41.78156014366953 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 42.17085561352644 + ], + [ + 74.48667182328188, + 42.17085561352644 + ], + [ + 74.3718291397982, + 42.365503348454894 + ], + [ + 74.25698645631452, + 42.17085561352644 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 42.17085561352644 + ], + [ + 74.3718291397982, + 42.365503348454894 + ], + [ + 74.14214377283085, + 42.365503348454894 + ], + [ + 74.25698645631452, + 42.17085561352644 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 42.17085561352644 + ], + [ + 74.14214377283085, + 42.365503348454894 + ], + [ + 74.02730108934716, + 42.17085561352644 + ], + [ + 74.25698645631452, + 42.17085561352644 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 42.17085561352644 + ], + [ + 74.02730108934716, + 42.17085561352644 + ], + [ + 74.14214377283085, + 41.97620787859799 + ], + [ + 74.25698645631452, + 42.17085561352644 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 42.17085561352644 + ], + [ + 74.14214377283085, + 41.97620787859799 + ], + [ + 74.3718291397982, + 41.97620787859799 + ], + [ + 74.25698645631452, + 42.17085561352644 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 42.17085561352644 + ], + [ + 74.3718291397982, + 41.97620787859799 + ], + [ + 74.48667182328188, + 42.17085561352644 + ], + [ + 74.25698645631452, + 42.17085561352644 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 42.56015108338335 + ], + [ + 74.48667182328188, + 42.56015108338335 + ], + [ + 74.3718291397982, + 42.754798818311805 + ], + [ + 74.25698645631452, + 42.56015108338335 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 42.56015108338335 + ], + [ + 74.3718291397982, + 42.754798818311805 + ], + [ + 74.14214377283085, + 42.754798818311805 + ], + [ + 74.25698645631452, + 42.56015108338335 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 42.56015108338335 + ], + [ + 74.14214377283085, + 42.754798818311805 + ], + [ + 74.02730108934716, + 42.56015108338335 + ], + [ + 74.25698645631452, + 42.56015108338335 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 42.56015108338335 + ], + [ + 74.02730108934716, + 42.56015108338335 + ], + [ + 74.14214377283085, + 42.3655033484549 + ], + [ + 74.25698645631452, + 42.56015108338335 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 42.56015108338335 + ], + [ + 74.14214377283085, + 42.3655033484549 + ], + [ + 74.3718291397982, + 42.3655033484549 + ], + [ + 74.25698645631452, + 42.56015108338335 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 42.56015108338335 + ], + [ + 74.3718291397982, + 42.3655033484549 + ], + [ + 74.48667182328188, + 42.56015108338335 + ], + [ + 74.25698645631452, + 42.56015108338335 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 42.94944655324026 + ], + [ + 74.48667182328188, + 42.94944655324026 + ], + [ + 74.3718291397982, + 43.14409428816871 + ], + [ + 74.25698645631452, + 42.94944655324026 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 42.94944655324026 + ], + [ + 74.3718291397982, + 43.14409428816871 + ], + [ + 74.14214377283085, + 43.14409428816871 + ], + [ + 74.25698645631452, + 42.94944655324026 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 42.94944655324026 + ], + [ + 74.14214377283085, + 43.14409428816871 + ], + [ + 74.02730108934716, + 42.94944655324026 + ], + [ + 74.25698645631452, + 42.94944655324026 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 42.94944655324026 + ], + [ + 74.02730108934716, + 42.94944655324026 + ], + [ + 74.14214377283085, + 42.754798818311805 + ], + [ + 74.25698645631452, + 42.94944655324026 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 42.94944655324026 + ], + [ + 74.14214377283085, + 42.754798818311805 + ], + [ + 74.3718291397982, + 42.754798818311805 + ], + [ + 74.25698645631452, + 42.94944655324026 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 42.94944655324026 + ], + [ + 74.3718291397982, + 42.754798818311805 + ], + [ + 74.48667182328188, + 42.94944655324026 + ], + [ + 74.25698645631452, + 42.94944655324026 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 43.33874202309716 + ], + [ + 74.48667182328188, + 43.33874202309716 + ], + [ + 74.3718291397982, + 43.53338975802561 + ], + [ + 74.25698645631452, + 43.33874202309716 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 43.33874202309716 + ], + [ + 74.3718291397982, + 43.53338975802561 + ], + [ + 74.14214377283085, + 43.53338975802561 + ], + [ + 74.25698645631452, + 43.33874202309716 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 43.33874202309716 + ], + [ + 74.14214377283085, + 43.53338975802561 + ], + [ + 74.02730108934716, + 43.33874202309716 + ], + [ + 74.25698645631452, + 43.33874202309716 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 43.33874202309716 + ], + [ + 74.02730108934716, + 43.33874202309716 + ], + [ + 74.14214377283085, + 43.14409428816871 + ], + [ + 74.25698645631452, + 43.33874202309716 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 43.33874202309716 + ], + [ + 74.14214377283085, + 43.14409428816871 + ], + [ + 74.3718291397982, + 43.14409428816871 + ], + [ + 74.25698645631452, + 43.33874202309716 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 43.33874202309716 + ], + [ + 74.3718291397982, + 43.14409428816871 + ], + [ + 74.48667182328188, + 43.33874202309716 + ], + [ + 74.25698645631452, + 43.33874202309716 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 43.728037492954066 + ], + [ + 74.48667182328188, + 43.728037492954066 + ], + [ + 74.3718291397982, + 43.92268522788252 + ], + [ + 74.25698645631452, + 43.728037492954066 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 43.728037492954066 + ], + [ + 74.3718291397982, + 43.92268522788252 + ], + [ + 74.14214377283085, + 43.92268522788252 + ], + [ + 74.25698645631452, + 43.728037492954066 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 43.728037492954066 + ], + [ + 74.14214377283085, + 43.92268522788252 + ], + [ + 74.02730108934716, + 43.728037492954066 + ], + [ + 74.25698645631452, + 43.728037492954066 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 43.728037492954066 + ], + [ + 74.02730108934716, + 43.728037492954066 + ], + [ + 74.14214377283085, + 43.53338975802561 + ], + [ + 74.25698645631452, + 43.728037492954066 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 43.728037492954066 + ], + [ + 74.14214377283085, + 43.53338975802561 + ], + [ + 74.3718291397982, + 43.53338975802561 + ], + [ + 74.25698645631452, + 43.728037492954066 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 43.728037492954066 + ], + [ + 74.3718291397982, + 43.53338975802561 + ], + [ + 74.48667182328188, + 43.728037492954066 + ], + [ + 74.25698645631452, + 43.728037492954066 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 44.11733296281097 + ], + [ + 74.48667182328188, + 44.11733296281097 + ], + [ + 74.3718291397982, + 44.31198069773942 + ], + [ + 74.25698645631452, + 44.11733296281097 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 44.11733296281097 + ], + [ + 74.3718291397982, + 44.31198069773942 + ], + [ + 74.14214377283085, + 44.31198069773942 + ], + [ + 74.25698645631452, + 44.11733296281097 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 44.11733296281097 + ], + [ + 74.14214377283085, + 44.31198069773942 + ], + [ + 74.02730108934716, + 44.11733296281097 + ], + [ + 74.25698645631452, + 44.11733296281097 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 44.11733296281097 + ], + [ + 74.02730108934716, + 44.11733296281097 + ], + [ + 74.14214377283085, + 43.92268522788252 + ], + [ + 74.25698645631452, + 44.11733296281097 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 44.11733296281097 + ], + [ + 74.14214377283085, + 43.92268522788252 + ], + [ + 74.3718291397982, + 43.92268522788252 + ], + [ + 74.25698645631452, + 44.11733296281097 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 44.11733296281097 + ], + [ + 74.3718291397982, + 43.92268522788252 + ], + [ + 74.48667182328188, + 44.11733296281097 + ], + [ + 74.25698645631452, + 44.11733296281097 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 44.506628432667874 + ], + [ + 74.48667182328188, + 44.506628432667874 + ], + [ + 74.3718291397982, + 44.701276167596326 + ], + [ + 74.25698645631452, + 44.506628432667874 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 44.506628432667874 + ], + [ + 74.3718291397982, + 44.701276167596326 + ], + [ + 74.14214377283085, + 44.701276167596326 + ], + [ + 74.25698645631452, + 44.506628432667874 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 44.506628432667874 + ], + [ + 74.14214377283085, + 44.701276167596326 + ], + [ + 74.02730108934716, + 44.506628432667874 + ], + [ + 74.25698645631452, + 44.506628432667874 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 44.506628432667874 + ], + [ + 74.02730108934716, + 44.506628432667874 + ], + [ + 74.14214377283085, + 44.31198069773942 + ], + [ + 74.25698645631452, + 44.506628432667874 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 44.506628432667874 + ], + [ + 74.14214377283085, + 44.31198069773942 + ], + [ + 74.3718291397982, + 44.31198069773942 + ], + [ + 74.25698645631452, + 44.506628432667874 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 44.506628432667874 + ], + [ + 74.3718291397982, + 44.31198069773942 + ], + [ + 74.48667182328188, + 44.506628432667874 + ], + [ + 74.25698645631452, + 44.506628432667874 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 44.89592390252479 + ], + [ + 74.48667182328188, + 44.89592390252479 + ], + [ + 74.3718291397982, + 45.090571637453245 + ], + [ + 74.25698645631452, + 44.89592390252479 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 44.89592390252479 + ], + [ + 74.3718291397982, + 45.090571637453245 + ], + [ + 74.14214377283085, + 45.090571637453245 + ], + [ + 74.25698645631452, + 44.89592390252479 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 44.89592390252479 + ], + [ + 74.14214377283085, + 45.090571637453245 + ], + [ + 74.02730108934716, + 44.89592390252479 + ], + [ + 74.25698645631452, + 44.89592390252479 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 44.89592390252479 + ], + [ + 74.02730108934716, + 44.89592390252479 + ], + [ + 74.14214377283085, + 44.70127616759634 + ], + [ + 74.25698645631452, + 44.89592390252479 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 44.89592390252479 + ], + [ + 74.14214377283085, + 44.70127616759634 + ], + [ + 74.3718291397982, + 44.70127616759634 + ], + [ + 74.25698645631452, + 44.89592390252479 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 44.89592390252479 + ], + [ + 74.3718291397982, + 44.70127616759634 + ], + [ + 74.48667182328188, + 44.89592390252479 + ], + [ + 74.25698645631452, + 44.89592390252479 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 45.2852193723817 + ], + [ + 74.48667182328188, + 45.2852193723817 + ], + [ + 74.3718291397982, + 45.47986710731015 + ], + [ + 74.25698645631452, + 45.2852193723817 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 45.2852193723817 + ], + [ + 74.3718291397982, + 45.47986710731015 + ], + [ + 74.14214377283085, + 45.47986710731015 + ], + [ + 74.25698645631452, + 45.2852193723817 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 45.2852193723817 + ], + [ + 74.14214377283085, + 45.47986710731015 + ], + [ + 74.02730108934716, + 45.2852193723817 + ], + [ + 74.25698645631452, + 45.2852193723817 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 45.2852193723817 + ], + [ + 74.02730108934716, + 45.2852193723817 + ], + [ + 74.14214377283085, + 45.090571637453245 + ], + [ + 74.25698645631452, + 45.2852193723817 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 45.2852193723817 + ], + [ + 74.14214377283085, + 45.090571637453245 + ], + [ + 74.3718291397982, + 45.090571637453245 + ], + [ + 74.25698645631452, + 45.2852193723817 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 45.2852193723817 + ], + [ + 74.3718291397982, + 45.090571637453245 + ], + [ + 74.48667182328188, + 45.2852193723817 + ], + [ + 74.25698645631452, + 45.2852193723817 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 45.6745148422386 + ], + [ + 74.48667182328188, + 45.6745148422386 + ], + [ + 74.3718291397982, + 45.86916257716705 + ], + [ + 74.25698645631452, + 45.6745148422386 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 45.6745148422386 + ], + [ + 74.3718291397982, + 45.86916257716705 + ], + [ + 74.14214377283085, + 45.86916257716705 + ], + [ + 74.25698645631452, + 45.6745148422386 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 45.6745148422386 + ], + [ + 74.14214377283085, + 45.86916257716705 + ], + [ + 74.02730108934716, + 45.6745148422386 + ], + [ + 74.25698645631452, + 45.6745148422386 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 45.6745148422386 + ], + [ + 74.02730108934716, + 45.6745148422386 + ], + [ + 74.14214377283085, + 45.47986710731015 + ], + [ + 74.25698645631452, + 45.6745148422386 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 45.6745148422386 + ], + [ + 74.14214377283085, + 45.47986710731015 + ], + [ + 74.3718291397982, + 45.47986710731015 + ], + [ + 74.25698645631452, + 45.6745148422386 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 45.6745148422386 + ], + [ + 74.3718291397982, + 45.47986710731015 + ], + [ + 74.48667182328188, + 45.6745148422386 + ], + [ + 74.25698645631452, + 45.6745148422386 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 46.063810312095505 + ], + [ + 74.48667182328188, + 46.063810312095505 + ], + [ + 74.3718291397982, + 46.25845804702396 + ], + [ + 74.25698645631452, + 46.063810312095505 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 46.063810312095505 + ], + [ + 74.3718291397982, + 46.25845804702396 + ], + [ + 74.14214377283085, + 46.25845804702396 + ], + [ + 74.25698645631452, + 46.063810312095505 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 46.063810312095505 + ], + [ + 74.14214377283085, + 46.25845804702396 + ], + [ + 74.02730108934716, + 46.063810312095505 + ], + [ + 74.25698645631452, + 46.063810312095505 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 46.063810312095505 + ], + [ + 74.02730108934716, + 46.063810312095505 + ], + [ + 74.14214377283085, + 45.86916257716705 + ], + [ + 74.25698645631452, + 46.063810312095505 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 46.063810312095505 + ], + [ + 74.14214377283085, + 45.86916257716705 + ], + [ + 74.3718291397982, + 45.86916257716705 + ], + [ + 74.25698645631452, + 46.063810312095505 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 46.063810312095505 + ], + [ + 74.3718291397982, + 45.86916257716705 + ], + [ + 74.48667182328188, + 46.063810312095505 + ], + [ + 74.25698645631452, + 46.063810312095505 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 46.45310578195241 + ], + [ + 74.48667182328188, + 46.45310578195241 + ], + [ + 74.3718291397982, + 46.64775351688086 + ], + [ + 74.25698645631452, + 46.45310578195241 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 46.45310578195241 + ], + [ + 74.3718291397982, + 46.64775351688086 + ], + [ + 74.14214377283085, + 46.64775351688086 + ], + [ + 74.25698645631452, + 46.45310578195241 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 46.45310578195241 + ], + [ + 74.14214377283085, + 46.64775351688086 + ], + [ + 74.02730108934716, + 46.45310578195241 + ], + [ + 74.25698645631452, + 46.45310578195241 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 46.45310578195241 + ], + [ + 74.02730108934716, + 46.45310578195241 + ], + [ + 74.14214377283085, + 46.25845804702396 + ], + [ + 74.25698645631452, + 46.45310578195241 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 46.45310578195241 + ], + [ + 74.14214377283085, + 46.25845804702396 + ], + [ + 74.3718291397982, + 46.25845804702396 + ], + [ + 74.25698645631452, + 46.45310578195241 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 46.45310578195241 + ], + [ + 74.3718291397982, + 46.25845804702396 + ], + [ + 74.48667182328188, + 46.45310578195241 + ], + [ + 74.25698645631452, + 46.45310578195241 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 46.842401251809314 + ], + [ + 74.48667182328188, + 46.842401251809314 + ], + [ + 74.3718291397982, + 47.037048986737766 + ], + [ + 74.25698645631452, + 46.842401251809314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 46.842401251809314 + ], + [ + 74.3718291397982, + 47.037048986737766 + ], + [ + 74.14214377283085, + 47.037048986737766 + ], + [ + 74.25698645631452, + 46.842401251809314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 46.842401251809314 + ], + [ + 74.14214377283085, + 47.037048986737766 + ], + [ + 74.02730108934716, + 46.842401251809314 + ], + [ + 74.25698645631452, + 46.842401251809314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 46.842401251809314 + ], + [ + 74.02730108934716, + 46.842401251809314 + ], + [ + 74.14214377283085, + 46.64775351688086 + ], + [ + 74.25698645631452, + 46.842401251809314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 46.842401251809314 + ], + [ + 74.14214377283085, + 46.64775351688086 + ], + [ + 74.3718291397982, + 46.64775351688086 + ], + [ + 74.25698645631452, + 46.842401251809314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 46.842401251809314 + ], + [ + 74.3718291397982, + 46.64775351688086 + ], + [ + 74.48667182328188, + 46.842401251809314 + ], + [ + 74.25698645631452, + 46.842401251809314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 47.23169672166622 + ], + [ + 74.48667182328188, + 47.23169672166622 + ], + [ + 74.3718291397982, + 47.42634445659467 + ], + [ + 74.25698645631452, + 47.23169672166622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 47.23169672166622 + ], + [ + 74.3718291397982, + 47.42634445659467 + ], + [ + 74.14214377283085, + 47.42634445659467 + ], + [ + 74.25698645631452, + 47.23169672166622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 47.23169672166622 + ], + [ + 74.14214377283085, + 47.42634445659467 + ], + [ + 74.02730108934716, + 47.23169672166622 + ], + [ + 74.25698645631452, + 47.23169672166622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 47.23169672166622 + ], + [ + 74.02730108934716, + 47.23169672166622 + ], + [ + 74.14214377283085, + 47.037048986737766 + ], + [ + 74.25698645631452, + 47.23169672166622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 47.23169672166622 + ], + [ + 74.14214377283085, + 47.037048986737766 + ], + [ + 74.3718291397982, + 47.037048986737766 + ], + [ + 74.25698645631452, + 47.23169672166622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 47.23169672166622 + ], + [ + 74.3718291397982, + 47.037048986737766 + ], + [ + 74.48667182328188, + 47.23169672166622 + ], + [ + 74.25698645631452, + 47.23169672166622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 47.620992191523136 + ], + [ + 74.48667182328188, + 47.620992191523136 + ], + [ + 74.3718291397982, + 47.81563992645159 + ], + [ + 74.25698645631452, + 47.620992191523136 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 47.620992191523136 + ], + [ + 74.3718291397982, + 47.81563992645159 + ], + [ + 74.14214377283085, + 47.81563992645159 + ], + [ + 74.25698645631452, + 47.620992191523136 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 47.620992191523136 + ], + [ + 74.14214377283085, + 47.81563992645159 + ], + [ + 74.02730108934716, + 47.620992191523136 + ], + [ + 74.25698645631452, + 47.620992191523136 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 47.620992191523136 + ], + [ + 74.02730108934716, + 47.620992191523136 + ], + [ + 74.14214377283085, + 47.426344456594684 + ], + [ + 74.25698645631452, + 47.620992191523136 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 47.620992191523136 + ], + [ + 74.14214377283085, + 47.426344456594684 + ], + [ + 74.3718291397982, + 47.426344456594684 + ], + [ + 74.25698645631452, + 47.620992191523136 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.25698645631452, + 47.620992191523136 + ], + [ + 74.3718291397982, + 47.426344456594684 + ], + [ + 74.48667182328188, + 47.620992191523136 + ], + [ + 74.25698645631452, + 47.620992191523136 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 12.0004566996162 + ], + [ + 74.83119987373293, + 12.0004566996162 + ], + [ + 74.71635719024924, + 12.195104434544653 + ], + [ + 74.60151450676557, + 12.0004566996162 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 12.0004566996162 + ], + [ + 74.71635719024924, + 12.195104434544653 + ], + [ + 74.4866718232819, + 12.195104434544653 + ], + [ + 74.60151450676557, + 12.0004566996162 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 12.0004566996162 + ], + [ + 74.4866718232819, + 12.195104434544653 + ], + [ + 74.37182913979821, + 12.0004566996162 + ], + [ + 74.60151450676557, + 12.0004566996162 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 12.0004566996162 + ], + [ + 74.37182913979821, + 12.0004566996162 + ], + [ + 74.4866718232819, + 11.805808964687746 + ], + [ + 74.60151450676557, + 12.0004566996162 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 12.0004566996162 + ], + [ + 74.4866718232819, + 11.805808964687746 + ], + [ + 74.71635719024924, + 11.805808964687746 + ], + [ + 74.60151450676557, + 12.0004566996162 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 12.0004566996162 + ], + [ + 74.71635719024924, + 11.805808964687746 + ], + [ + 74.83119987373293, + 12.0004566996162 + ], + [ + 74.60151450676557, + 12.0004566996162 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 12.389752169473105 + ], + [ + 74.83119987373293, + 12.389752169473105 + ], + [ + 74.71635719024924, + 12.58439990440156 + ], + [ + 74.60151450676557, + 12.389752169473105 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 12.389752169473105 + ], + [ + 74.71635719024924, + 12.58439990440156 + ], + [ + 74.4866718232819, + 12.58439990440156 + ], + [ + 74.60151450676557, + 12.389752169473105 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 12.389752169473105 + ], + [ + 74.4866718232819, + 12.58439990440156 + ], + [ + 74.37182913979821, + 12.389752169473105 + ], + [ + 74.60151450676557, + 12.389752169473105 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 12.389752169473105 + ], + [ + 74.37182913979821, + 12.389752169473105 + ], + [ + 74.4866718232819, + 12.195104434544652 + ], + [ + 74.60151450676557, + 12.389752169473105 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 12.389752169473105 + ], + [ + 74.4866718232819, + 12.195104434544652 + ], + [ + 74.71635719024924, + 12.195104434544652 + ], + [ + 74.60151450676557, + 12.389752169473105 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 12.389752169473105 + ], + [ + 74.71635719024924, + 12.195104434544652 + ], + [ + 74.83119987373293, + 12.389752169473105 + ], + [ + 74.60151450676557, + 12.389752169473105 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 12.779047639330013 + ], + [ + 74.83119987373293, + 12.779047639330013 + ], + [ + 74.71635719024924, + 12.973695374258467 + ], + [ + 74.60151450676557, + 12.779047639330013 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 12.779047639330013 + ], + [ + 74.71635719024924, + 12.973695374258467 + ], + [ + 74.4866718232819, + 12.973695374258467 + ], + [ + 74.60151450676557, + 12.779047639330013 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 12.779047639330013 + ], + [ + 74.4866718232819, + 12.973695374258467 + ], + [ + 74.37182913979821, + 12.779047639330013 + ], + [ + 74.60151450676557, + 12.779047639330013 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 12.779047639330013 + ], + [ + 74.37182913979821, + 12.779047639330013 + ], + [ + 74.4866718232819, + 12.58439990440156 + ], + [ + 74.60151450676557, + 12.779047639330013 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 12.779047639330013 + ], + [ + 74.4866718232819, + 12.58439990440156 + ], + [ + 74.71635719024924, + 12.58439990440156 + ], + [ + 74.60151450676557, + 12.779047639330013 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 12.779047639330013 + ], + [ + 74.71635719024924, + 12.58439990440156 + ], + [ + 74.83119987373293, + 12.779047639330013 + ], + [ + 74.60151450676557, + 12.779047639330013 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 13.16834310918692 + ], + [ + 74.83119987373293, + 13.16834310918692 + ], + [ + 74.71635719024924, + 13.362990844115373 + ], + [ + 74.60151450676557, + 13.16834310918692 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 13.16834310918692 + ], + [ + 74.71635719024924, + 13.362990844115373 + ], + [ + 74.4866718232819, + 13.362990844115373 + ], + [ + 74.60151450676557, + 13.16834310918692 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 13.16834310918692 + ], + [ + 74.4866718232819, + 13.362990844115373 + ], + [ + 74.37182913979821, + 13.16834310918692 + ], + [ + 74.60151450676557, + 13.16834310918692 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 13.16834310918692 + ], + [ + 74.37182913979821, + 13.16834310918692 + ], + [ + 74.4866718232819, + 12.973695374258465 + ], + [ + 74.60151450676557, + 13.16834310918692 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 13.16834310918692 + ], + [ + 74.4866718232819, + 12.973695374258465 + ], + [ + 74.71635719024924, + 12.973695374258465 + ], + [ + 74.60151450676557, + 13.16834310918692 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 13.16834310918692 + ], + [ + 74.71635719024924, + 12.973695374258465 + ], + [ + 74.83119987373293, + 13.16834310918692 + ], + [ + 74.60151450676557, + 13.16834310918692 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 13.557638579043825 + ], + [ + 74.83119987373293, + 13.557638579043825 + ], + [ + 74.71635719024924, + 13.752286313972279 + ], + [ + 74.60151450676557, + 13.557638579043825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 13.557638579043825 + ], + [ + 74.71635719024924, + 13.752286313972279 + ], + [ + 74.4866718232819, + 13.752286313972279 + ], + [ + 74.60151450676557, + 13.557638579043825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 13.557638579043825 + ], + [ + 74.4866718232819, + 13.752286313972279 + ], + [ + 74.37182913979821, + 13.557638579043825 + ], + [ + 74.60151450676557, + 13.557638579043825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 13.557638579043825 + ], + [ + 74.37182913979821, + 13.557638579043825 + ], + [ + 74.4866718232819, + 13.362990844115371 + ], + [ + 74.60151450676557, + 13.557638579043825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 13.557638579043825 + ], + [ + 74.4866718232819, + 13.362990844115371 + ], + [ + 74.71635719024924, + 13.362990844115371 + ], + [ + 74.60151450676557, + 13.557638579043825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 13.557638579043825 + ], + [ + 74.71635719024924, + 13.362990844115371 + ], + [ + 74.83119987373293, + 13.557638579043825 + ], + [ + 74.60151450676557, + 13.557638579043825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 13.946934048900731 + ], + [ + 74.83119987373293, + 13.946934048900731 + ], + [ + 74.71635719024924, + 14.141581783829185 + ], + [ + 74.60151450676557, + 13.946934048900731 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 13.946934048900731 + ], + [ + 74.71635719024924, + 14.141581783829185 + ], + [ + 74.4866718232819, + 14.141581783829185 + ], + [ + 74.60151450676557, + 13.946934048900731 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 13.946934048900731 + ], + [ + 74.4866718232819, + 14.141581783829185 + ], + [ + 74.37182913979821, + 13.946934048900731 + ], + [ + 74.60151450676557, + 13.946934048900731 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 13.946934048900731 + ], + [ + 74.37182913979821, + 13.946934048900731 + ], + [ + 74.4866718232819, + 13.752286313972277 + ], + [ + 74.60151450676557, + 13.946934048900731 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 13.946934048900731 + ], + [ + 74.4866718232819, + 13.752286313972277 + ], + [ + 74.71635719024924, + 13.752286313972277 + ], + [ + 74.60151450676557, + 13.946934048900731 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 13.946934048900731 + ], + [ + 74.71635719024924, + 13.752286313972277 + ], + [ + 74.83119987373293, + 13.946934048900731 + ], + [ + 74.60151450676557, + 13.946934048900731 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 14.336229518757637 + ], + [ + 74.83119987373293, + 14.336229518757637 + ], + [ + 74.71635719024924, + 14.530877253686091 + ], + [ + 74.60151450676557, + 14.336229518757637 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 14.336229518757637 + ], + [ + 74.71635719024924, + 14.530877253686091 + ], + [ + 74.4866718232819, + 14.530877253686091 + ], + [ + 74.60151450676557, + 14.336229518757637 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 14.336229518757637 + ], + [ + 74.4866718232819, + 14.530877253686091 + ], + [ + 74.37182913979821, + 14.336229518757637 + ], + [ + 74.60151450676557, + 14.336229518757637 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 14.336229518757637 + ], + [ + 74.37182913979821, + 14.336229518757637 + ], + [ + 74.4866718232819, + 14.141581783829183 + ], + [ + 74.60151450676557, + 14.336229518757637 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 14.336229518757637 + ], + [ + 74.4866718232819, + 14.141581783829183 + ], + [ + 74.71635719024924, + 14.141581783829183 + ], + [ + 74.60151450676557, + 14.336229518757637 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 14.336229518757637 + ], + [ + 74.71635719024924, + 14.141581783829183 + ], + [ + 74.83119987373293, + 14.336229518757637 + ], + [ + 74.60151450676557, + 14.336229518757637 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 14.725524988614545 + ], + [ + 74.83119987373293, + 14.725524988614545 + ], + [ + 74.71635719024924, + 14.920172723542999 + ], + [ + 74.60151450676557, + 14.725524988614545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 14.725524988614545 + ], + [ + 74.71635719024924, + 14.920172723542999 + ], + [ + 74.4866718232819, + 14.920172723542999 + ], + [ + 74.60151450676557, + 14.725524988614545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 14.725524988614545 + ], + [ + 74.4866718232819, + 14.920172723542999 + ], + [ + 74.37182913979821, + 14.725524988614545 + ], + [ + 74.60151450676557, + 14.725524988614545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 14.725524988614545 + ], + [ + 74.37182913979821, + 14.725524988614545 + ], + [ + 74.4866718232819, + 14.530877253686091 + ], + [ + 74.60151450676557, + 14.725524988614545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 14.725524988614545 + ], + [ + 74.4866718232819, + 14.530877253686091 + ], + [ + 74.71635719024924, + 14.530877253686091 + ], + [ + 74.60151450676557, + 14.725524988614545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 14.725524988614545 + ], + [ + 74.71635719024924, + 14.530877253686091 + ], + [ + 74.83119987373293, + 14.725524988614545 + ], + [ + 74.60151450676557, + 14.725524988614545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 15.114820458471451 + ], + [ + 74.83119987373293, + 15.114820458471451 + ], + [ + 74.71635719024924, + 15.309468193399905 + ], + [ + 74.60151450676557, + 15.114820458471451 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 15.114820458471451 + ], + [ + 74.71635719024924, + 15.309468193399905 + ], + [ + 74.4866718232819, + 15.309468193399905 + ], + [ + 74.60151450676557, + 15.114820458471451 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 15.114820458471451 + ], + [ + 74.4866718232819, + 15.309468193399905 + ], + [ + 74.37182913979821, + 15.114820458471451 + ], + [ + 74.60151450676557, + 15.114820458471451 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 15.114820458471451 + ], + [ + 74.37182913979821, + 15.114820458471451 + ], + [ + 74.4866718232819, + 14.920172723542997 + ], + [ + 74.60151450676557, + 15.114820458471451 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 15.114820458471451 + ], + [ + 74.4866718232819, + 14.920172723542997 + ], + [ + 74.71635719024924, + 14.920172723542997 + ], + [ + 74.60151450676557, + 15.114820458471451 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 15.114820458471451 + ], + [ + 74.71635719024924, + 14.920172723542997 + ], + [ + 74.83119987373293, + 15.114820458471451 + ], + [ + 74.60151450676557, + 15.114820458471451 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 15.504115928328357 + ], + [ + 74.83119987373293, + 15.504115928328357 + ], + [ + 74.71635719024924, + 15.69876366325681 + ], + [ + 74.60151450676557, + 15.504115928328357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 15.504115928328357 + ], + [ + 74.71635719024924, + 15.69876366325681 + ], + [ + 74.4866718232819, + 15.69876366325681 + ], + [ + 74.60151450676557, + 15.504115928328357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 15.504115928328357 + ], + [ + 74.4866718232819, + 15.69876366325681 + ], + [ + 74.37182913979821, + 15.504115928328357 + ], + [ + 74.60151450676557, + 15.504115928328357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 15.504115928328357 + ], + [ + 74.37182913979821, + 15.504115928328357 + ], + [ + 74.4866718232819, + 15.309468193399903 + ], + [ + 74.60151450676557, + 15.504115928328357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 15.504115928328357 + ], + [ + 74.4866718232819, + 15.309468193399903 + ], + [ + 74.71635719024924, + 15.309468193399903 + ], + [ + 74.60151450676557, + 15.504115928328357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 15.504115928328357 + ], + [ + 74.71635719024924, + 15.309468193399903 + ], + [ + 74.83119987373293, + 15.504115928328357 + ], + [ + 74.60151450676557, + 15.504115928328357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 15.893411398185265 + ], + [ + 74.83119987373293, + 15.893411398185265 + ], + [ + 74.71635719024924, + 16.088059133113717 + ], + [ + 74.60151450676557, + 15.893411398185265 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 15.893411398185265 + ], + [ + 74.71635719024924, + 16.088059133113717 + ], + [ + 74.4866718232819, + 16.088059133113717 + ], + [ + 74.60151450676557, + 15.893411398185265 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 15.893411398185265 + ], + [ + 74.4866718232819, + 16.088059133113717 + ], + [ + 74.37182913979821, + 15.893411398185265 + ], + [ + 74.60151450676557, + 15.893411398185265 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 15.893411398185265 + ], + [ + 74.37182913979821, + 15.893411398185265 + ], + [ + 74.4866718232819, + 15.69876366325681 + ], + [ + 74.60151450676557, + 15.893411398185265 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 15.893411398185265 + ], + [ + 74.4866718232819, + 15.69876366325681 + ], + [ + 74.71635719024924, + 15.69876366325681 + ], + [ + 74.60151450676557, + 15.893411398185265 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 15.893411398185265 + ], + [ + 74.71635719024924, + 15.69876366325681 + ], + [ + 74.83119987373293, + 15.893411398185265 + ], + [ + 74.60151450676557, + 15.893411398185265 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 16.28270686804217 + ], + [ + 74.83119987373293, + 16.28270686804217 + ], + [ + 74.71635719024924, + 16.47735460297062 + ], + [ + 74.60151450676557, + 16.28270686804217 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 16.28270686804217 + ], + [ + 74.71635719024924, + 16.47735460297062 + ], + [ + 74.4866718232819, + 16.47735460297062 + ], + [ + 74.60151450676557, + 16.28270686804217 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 16.28270686804217 + ], + [ + 74.4866718232819, + 16.47735460297062 + ], + [ + 74.37182913979821, + 16.28270686804217 + ], + [ + 74.60151450676557, + 16.28270686804217 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 16.28270686804217 + ], + [ + 74.37182913979821, + 16.28270686804217 + ], + [ + 74.4866718232819, + 16.088059133113717 + ], + [ + 74.60151450676557, + 16.28270686804217 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 16.28270686804217 + ], + [ + 74.4866718232819, + 16.088059133113717 + ], + [ + 74.71635719024924, + 16.088059133113717 + ], + [ + 74.60151450676557, + 16.28270686804217 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 16.28270686804217 + ], + [ + 74.71635719024924, + 16.088059133113717 + ], + [ + 74.83119987373293, + 16.28270686804217 + ], + [ + 74.60151450676557, + 16.28270686804217 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 16.672002337899077 + ], + [ + 74.83119987373293, + 16.672002337899077 + ], + [ + 74.71635719024924, + 16.86665007282753 + ], + [ + 74.60151450676557, + 16.672002337899077 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 16.672002337899077 + ], + [ + 74.71635719024924, + 16.86665007282753 + ], + [ + 74.4866718232819, + 16.86665007282753 + ], + [ + 74.60151450676557, + 16.672002337899077 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 16.672002337899077 + ], + [ + 74.4866718232819, + 16.86665007282753 + ], + [ + 74.37182913979821, + 16.672002337899077 + ], + [ + 74.60151450676557, + 16.672002337899077 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 16.672002337899077 + ], + [ + 74.37182913979821, + 16.672002337899077 + ], + [ + 74.4866718232819, + 16.477354602970625 + ], + [ + 74.60151450676557, + 16.672002337899077 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 16.672002337899077 + ], + [ + 74.4866718232819, + 16.477354602970625 + ], + [ + 74.71635719024924, + 16.477354602970625 + ], + [ + 74.60151450676557, + 16.672002337899077 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 16.672002337899077 + ], + [ + 74.71635719024924, + 16.477354602970625 + ], + [ + 74.83119987373293, + 16.672002337899077 + ], + [ + 74.60151450676557, + 16.672002337899077 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 17.06129780775598 + ], + [ + 74.83119987373293, + 17.06129780775598 + ], + [ + 74.71635719024924, + 17.255945542684433 + ], + [ + 74.60151450676557, + 17.06129780775598 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 17.06129780775598 + ], + [ + 74.71635719024924, + 17.255945542684433 + ], + [ + 74.4866718232819, + 17.255945542684433 + ], + [ + 74.60151450676557, + 17.06129780775598 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 17.06129780775598 + ], + [ + 74.4866718232819, + 17.255945542684433 + ], + [ + 74.37182913979821, + 17.06129780775598 + ], + [ + 74.60151450676557, + 17.06129780775598 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 17.06129780775598 + ], + [ + 74.37182913979821, + 17.06129780775598 + ], + [ + 74.4866718232819, + 16.86665007282753 + ], + [ + 74.60151450676557, + 17.06129780775598 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 17.06129780775598 + ], + [ + 74.4866718232819, + 16.86665007282753 + ], + [ + 74.71635719024924, + 16.86665007282753 + ], + [ + 74.60151450676557, + 17.06129780775598 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 17.06129780775598 + ], + [ + 74.71635719024924, + 16.86665007282753 + ], + [ + 74.83119987373293, + 17.06129780775598 + ], + [ + 74.60151450676557, + 17.06129780775598 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 17.45059327761289 + ], + [ + 74.83119987373293, + 17.45059327761289 + ], + [ + 74.71635719024924, + 17.64524101254134 + ], + [ + 74.60151450676557, + 17.45059327761289 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 17.45059327761289 + ], + [ + 74.71635719024924, + 17.64524101254134 + ], + [ + 74.4866718232819, + 17.64524101254134 + ], + [ + 74.60151450676557, + 17.45059327761289 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 17.45059327761289 + ], + [ + 74.4866718232819, + 17.64524101254134 + ], + [ + 74.37182913979821, + 17.45059327761289 + ], + [ + 74.60151450676557, + 17.45059327761289 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 17.45059327761289 + ], + [ + 74.37182913979821, + 17.45059327761289 + ], + [ + 74.4866718232819, + 17.255945542684437 + ], + [ + 74.60151450676557, + 17.45059327761289 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 17.45059327761289 + ], + [ + 74.4866718232819, + 17.255945542684437 + ], + [ + 74.71635719024924, + 17.255945542684437 + ], + [ + 74.60151450676557, + 17.45059327761289 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 17.45059327761289 + ], + [ + 74.71635719024924, + 17.255945542684437 + ], + [ + 74.83119987373293, + 17.45059327761289 + ], + [ + 74.60151450676557, + 17.45059327761289 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 17.839888747469793 + ], + [ + 74.83119987373293, + 17.839888747469793 + ], + [ + 74.71635719024924, + 18.034536482398245 + ], + [ + 74.60151450676557, + 17.839888747469793 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 17.839888747469793 + ], + [ + 74.71635719024924, + 18.034536482398245 + ], + [ + 74.4866718232819, + 18.034536482398245 + ], + [ + 74.60151450676557, + 17.839888747469793 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 17.839888747469793 + ], + [ + 74.4866718232819, + 18.034536482398245 + ], + [ + 74.37182913979821, + 17.839888747469793 + ], + [ + 74.60151450676557, + 17.839888747469793 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 17.839888747469793 + ], + [ + 74.37182913979821, + 17.839888747469793 + ], + [ + 74.4866718232819, + 17.64524101254134 + ], + [ + 74.60151450676557, + 17.839888747469793 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 17.839888747469793 + ], + [ + 74.4866718232819, + 17.64524101254134 + ], + [ + 74.71635719024924, + 17.64524101254134 + ], + [ + 74.60151450676557, + 17.839888747469793 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 17.839888747469793 + ], + [ + 74.71635719024924, + 17.64524101254134 + ], + [ + 74.83119987373293, + 17.839888747469793 + ], + [ + 74.60151450676557, + 17.839888747469793 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 18.2291842173267 + ], + [ + 74.83119987373293, + 18.2291842173267 + ], + [ + 74.71635719024924, + 18.423831952255153 + ], + [ + 74.60151450676557, + 18.2291842173267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 18.2291842173267 + ], + [ + 74.71635719024924, + 18.423831952255153 + ], + [ + 74.4866718232819, + 18.423831952255153 + ], + [ + 74.60151450676557, + 18.2291842173267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 18.2291842173267 + ], + [ + 74.4866718232819, + 18.423831952255153 + ], + [ + 74.37182913979821, + 18.2291842173267 + ], + [ + 74.60151450676557, + 18.2291842173267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 18.2291842173267 + ], + [ + 74.37182913979821, + 18.2291842173267 + ], + [ + 74.4866718232819, + 18.03453648239825 + ], + [ + 74.60151450676557, + 18.2291842173267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 18.2291842173267 + ], + [ + 74.4866718232819, + 18.03453648239825 + ], + [ + 74.71635719024924, + 18.03453648239825 + ], + [ + 74.60151450676557, + 18.2291842173267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 18.2291842173267 + ], + [ + 74.71635719024924, + 18.03453648239825 + ], + [ + 74.83119987373293, + 18.2291842173267 + ], + [ + 74.60151450676557, + 18.2291842173267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 18.61847968718361 + ], + [ + 74.83119987373293, + 18.61847968718361 + ], + [ + 74.71635719024924, + 18.81312742211206 + ], + [ + 74.60151450676557, + 18.61847968718361 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 18.61847968718361 + ], + [ + 74.71635719024924, + 18.81312742211206 + ], + [ + 74.4866718232819, + 18.81312742211206 + ], + [ + 74.60151450676557, + 18.61847968718361 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 18.61847968718361 + ], + [ + 74.4866718232819, + 18.81312742211206 + ], + [ + 74.37182913979821, + 18.61847968718361 + ], + [ + 74.60151450676557, + 18.61847968718361 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 18.61847968718361 + ], + [ + 74.37182913979821, + 18.61847968718361 + ], + [ + 74.4866718232819, + 18.423831952255156 + ], + [ + 74.60151450676557, + 18.61847968718361 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 18.61847968718361 + ], + [ + 74.4866718232819, + 18.423831952255156 + ], + [ + 74.71635719024924, + 18.423831952255156 + ], + [ + 74.60151450676557, + 18.61847968718361 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 18.61847968718361 + ], + [ + 74.71635719024924, + 18.423831952255156 + ], + [ + 74.83119987373293, + 18.61847968718361 + ], + [ + 74.60151450676557, + 18.61847968718361 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 19.007775157040513 + ], + [ + 74.83119987373293, + 19.007775157040513 + ], + [ + 74.71635719024924, + 19.202422891968965 + ], + [ + 74.60151450676557, + 19.007775157040513 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 19.007775157040513 + ], + [ + 74.71635719024924, + 19.202422891968965 + ], + [ + 74.4866718232819, + 19.202422891968965 + ], + [ + 74.60151450676557, + 19.007775157040513 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 19.007775157040513 + ], + [ + 74.4866718232819, + 19.202422891968965 + ], + [ + 74.37182913979821, + 19.007775157040513 + ], + [ + 74.60151450676557, + 19.007775157040513 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 19.007775157040513 + ], + [ + 74.37182913979821, + 19.007775157040513 + ], + [ + 74.4866718232819, + 18.81312742211206 + ], + [ + 74.60151450676557, + 19.007775157040513 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 19.007775157040513 + ], + [ + 74.4866718232819, + 18.81312742211206 + ], + [ + 74.71635719024924, + 18.81312742211206 + ], + [ + 74.60151450676557, + 19.007775157040513 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 19.007775157040513 + ], + [ + 74.71635719024924, + 18.81312742211206 + ], + [ + 74.83119987373293, + 19.007775157040513 + ], + [ + 74.60151450676557, + 19.007775157040513 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 19.39707062689742 + ], + [ + 74.83119987373293, + 19.39707062689742 + ], + [ + 74.71635719024924, + 19.591718361825873 + ], + [ + 74.60151450676557, + 19.39707062689742 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 19.39707062689742 + ], + [ + 74.71635719024924, + 19.591718361825873 + ], + [ + 74.4866718232819, + 19.591718361825873 + ], + [ + 74.60151450676557, + 19.39707062689742 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 19.39707062689742 + ], + [ + 74.4866718232819, + 19.591718361825873 + ], + [ + 74.37182913979821, + 19.39707062689742 + ], + [ + 74.60151450676557, + 19.39707062689742 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 19.39707062689742 + ], + [ + 74.37182913979821, + 19.39707062689742 + ], + [ + 74.4866718232819, + 19.20242289196897 + ], + [ + 74.60151450676557, + 19.39707062689742 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 19.39707062689742 + ], + [ + 74.4866718232819, + 19.20242289196897 + ], + [ + 74.71635719024924, + 19.20242289196897 + ], + [ + 74.60151450676557, + 19.39707062689742 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 19.39707062689742 + ], + [ + 74.71635719024924, + 19.20242289196897 + ], + [ + 74.83119987373293, + 19.39707062689742 + ], + [ + 74.60151450676557, + 19.39707062689742 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 19.78636609675433 + ], + [ + 74.83119987373293, + 19.78636609675433 + ], + [ + 74.71635719024924, + 19.98101383168278 + ], + [ + 74.60151450676557, + 19.78636609675433 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 19.78636609675433 + ], + [ + 74.71635719024924, + 19.98101383168278 + ], + [ + 74.4866718232819, + 19.98101383168278 + ], + [ + 74.60151450676557, + 19.78636609675433 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 19.78636609675433 + ], + [ + 74.4866718232819, + 19.98101383168278 + ], + [ + 74.37182913979821, + 19.78636609675433 + ], + [ + 74.60151450676557, + 19.78636609675433 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 19.78636609675433 + ], + [ + 74.37182913979821, + 19.78636609675433 + ], + [ + 74.4866718232819, + 19.591718361825876 + ], + [ + 74.60151450676557, + 19.78636609675433 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 19.78636609675433 + ], + [ + 74.4866718232819, + 19.591718361825876 + ], + [ + 74.71635719024924, + 19.591718361825876 + ], + [ + 74.60151450676557, + 19.78636609675433 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 19.78636609675433 + ], + [ + 74.71635719024924, + 19.591718361825876 + ], + [ + 74.83119987373293, + 19.78636609675433 + ], + [ + 74.60151450676557, + 19.78636609675433 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 20.175661566611232 + ], + [ + 74.83119987373293, + 20.175661566611232 + ], + [ + 74.71635719024924, + 20.370309301539685 + ], + [ + 74.60151450676557, + 20.175661566611232 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 20.175661566611232 + ], + [ + 74.71635719024924, + 20.370309301539685 + ], + [ + 74.4866718232819, + 20.370309301539685 + ], + [ + 74.60151450676557, + 20.175661566611232 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 20.175661566611232 + ], + [ + 74.4866718232819, + 20.370309301539685 + ], + [ + 74.37182913979821, + 20.175661566611232 + ], + [ + 74.60151450676557, + 20.175661566611232 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 20.175661566611232 + ], + [ + 74.37182913979821, + 20.175661566611232 + ], + [ + 74.4866718232819, + 19.98101383168278 + ], + [ + 74.60151450676557, + 20.175661566611232 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 20.175661566611232 + ], + [ + 74.4866718232819, + 19.98101383168278 + ], + [ + 74.71635719024924, + 19.98101383168278 + ], + [ + 74.60151450676557, + 20.175661566611232 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 20.175661566611232 + ], + [ + 74.71635719024924, + 19.98101383168278 + ], + [ + 74.83119987373293, + 20.175661566611232 + ], + [ + 74.60151450676557, + 20.175661566611232 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 20.564957036468137 + ], + [ + 74.83119987373293, + 20.564957036468137 + ], + [ + 74.71635719024924, + 20.75960477139659 + ], + [ + 74.60151450676557, + 20.564957036468137 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 20.564957036468137 + ], + [ + 74.71635719024924, + 20.75960477139659 + ], + [ + 74.4866718232819, + 20.75960477139659 + ], + [ + 74.60151450676557, + 20.564957036468137 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 20.564957036468137 + ], + [ + 74.4866718232819, + 20.75960477139659 + ], + [ + 74.37182913979821, + 20.564957036468137 + ], + [ + 74.60151450676557, + 20.564957036468137 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 20.564957036468137 + ], + [ + 74.37182913979821, + 20.564957036468137 + ], + [ + 74.4866718232819, + 20.370309301539685 + ], + [ + 74.60151450676557, + 20.564957036468137 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 20.564957036468137 + ], + [ + 74.4866718232819, + 20.370309301539685 + ], + [ + 74.71635719024924, + 20.370309301539685 + ], + [ + 74.60151450676557, + 20.564957036468137 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 20.564957036468137 + ], + [ + 74.71635719024924, + 20.370309301539685 + ], + [ + 74.83119987373293, + 20.564957036468137 + ], + [ + 74.60151450676557, + 20.564957036468137 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 20.954252506325044 + ], + [ + 74.83119987373293, + 20.954252506325044 + ], + [ + 74.71635719024924, + 21.148900241253497 + ], + [ + 74.60151450676557, + 20.954252506325044 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 20.954252506325044 + ], + [ + 74.71635719024924, + 21.148900241253497 + ], + [ + 74.4866718232819, + 21.148900241253497 + ], + [ + 74.60151450676557, + 20.954252506325044 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 20.954252506325044 + ], + [ + 74.4866718232819, + 21.148900241253497 + ], + [ + 74.37182913979821, + 20.954252506325044 + ], + [ + 74.60151450676557, + 20.954252506325044 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 20.954252506325044 + ], + [ + 74.37182913979821, + 20.954252506325044 + ], + [ + 74.4866718232819, + 20.759604771396592 + ], + [ + 74.60151450676557, + 20.954252506325044 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 20.954252506325044 + ], + [ + 74.4866718232819, + 20.759604771396592 + ], + [ + 74.71635719024924, + 20.759604771396592 + ], + [ + 74.60151450676557, + 20.954252506325044 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 20.954252506325044 + ], + [ + 74.71635719024924, + 20.759604771396592 + ], + [ + 74.83119987373293, + 20.954252506325044 + ], + [ + 74.60151450676557, + 20.954252506325044 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 21.343547976181952 + ], + [ + 74.83119987373293, + 21.343547976181952 + ], + [ + 74.71635719024924, + 21.538195711110404 + ], + [ + 74.60151450676557, + 21.343547976181952 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 21.343547976181952 + ], + [ + 74.71635719024924, + 21.538195711110404 + ], + [ + 74.4866718232819, + 21.538195711110404 + ], + [ + 74.60151450676557, + 21.343547976181952 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 21.343547976181952 + ], + [ + 74.4866718232819, + 21.538195711110404 + ], + [ + 74.37182913979821, + 21.343547976181952 + ], + [ + 74.60151450676557, + 21.343547976181952 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 21.343547976181952 + ], + [ + 74.37182913979821, + 21.343547976181952 + ], + [ + 74.4866718232819, + 21.1489002412535 + ], + [ + 74.60151450676557, + 21.343547976181952 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 21.343547976181952 + ], + [ + 74.4866718232819, + 21.1489002412535 + ], + [ + 74.71635719024924, + 21.1489002412535 + ], + [ + 74.60151450676557, + 21.343547976181952 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 21.343547976181952 + ], + [ + 74.71635719024924, + 21.1489002412535 + ], + [ + 74.83119987373293, + 21.343547976181952 + ], + [ + 74.60151450676557, + 21.343547976181952 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 21.732843446038856 + ], + [ + 74.83119987373293, + 21.732843446038856 + ], + [ + 74.71635719024924, + 21.92749118096731 + ], + [ + 74.60151450676557, + 21.732843446038856 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 21.732843446038856 + ], + [ + 74.71635719024924, + 21.92749118096731 + ], + [ + 74.4866718232819, + 21.92749118096731 + ], + [ + 74.60151450676557, + 21.732843446038856 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 21.732843446038856 + ], + [ + 74.4866718232819, + 21.92749118096731 + ], + [ + 74.37182913979821, + 21.732843446038856 + ], + [ + 74.60151450676557, + 21.732843446038856 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 21.732843446038856 + ], + [ + 74.37182913979821, + 21.732843446038856 + ], + [ + 74.4866718232819, + 21.538195711110404 + ], + [ + 74.60151450676557, + 21.732843446038856 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 21.732843446038856 + ], + [ + 74.4866718232819, + 21.538195711110404 + ], + [ + 74.71635719024924, + 21.538195711110404 + ], + [ + 74.60151450676557, + 21.732843446038856 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 21.732843446038856 + ], + [ + 74.71635719024924, + 21.538195711110404 + ], + [ + 74.83119987373293, + 21.732843446038856 + ], + [ + 74.60151450676557, + 21.732843446038856 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 22.122138915895764 + ], + [ + 74.83119987373293, + 22.122138915895764 + ], + [ + 74.71635719024924, + 22.316786650824216 + ], + [ + 74.60151450676557, + 22.122138915895764 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 22.122138915895764 + ], + [ + 74.71635719024924, + 22.316786650824216 + ], + [ + 74.4866718232819, + 22.316786650824216 + ], + [ + 74.60151450676557, + 22.122138915895764 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 22.122138915895764 + ], + [ + 74.4866718232819, + 22.316786650824216 + ], + [ + 74.37182913979821, + 22.122138915895764 + ], + [ + 74.60151450676557, + 22.122138915895764 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 22.122138915895764 + ], + [ + 74.37182913979821, + 22.122138915895764 + ], + [ + 74.4866718232819, + 21.927491180967312 + ], + [ + 74.60151450676557, + 22.122138915895764 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 22.122138915895764 + ], + [ + 74.4866718232819, + 21.927491180967312 + ], + [ + 74.71635719024924, + 21.927491180967312 + ], + [ + 74.60151450676557, + 22.122138915895764 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 22.122138915895764 + ], + [ + 74.71635719024924, + 21.927491180967312 + ], + [ + 74.83119987373293, + 22.122138915895764 + ], + [ + 74.60151450676557, + 22.122138915895764 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 22.511434385752672 + ], + [ + 74.83119987373293, + 22.511434385752672 + ], + [ + 74.71635719024924, + 22.706082120681124 + ], + [ + 74.60151450676557, + 22.511434385752672 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 22.511434385752672 + ], + [ + 74.71635719024924, + 22.706082120681124 + ], + [ + 74.4866718232819, + 22.706082120681124 + ], + [ + 74.60151450676557, + 22.511434385752672 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 22.511434385752672 + ], + [ + 74.4866718232819, + 22.706082120681124 + ], + [ + 74.37182913979821, + 22.511434385752672 + ], + [ + 74.60151450676557, + 22.511434385752672 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 22.511434385752672 + ], + [ + 74.37182913979821, + 22.511434385752672 + ], + [ + 74.4866718232819, + 22.31678665082422 + ], + [ + 74.60151450676557, + 22.511434385752672 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 22.511434385752672 + ], + [ + 74.4866718232819, + 22.31678665082422 + ], + [ + 74.71635719024924, + 22.31678665082422 + ], + [ + 74.60151450676557, + 22.511434385752672 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 22.511434385752672 + ], + [ + 74.71635719024924, + 22.31678665082422 + ], + [ + 74.83119987373293, + 22.511434385752672 + ], + [ + 74.60151450676557, + 22.511434385752672 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 22.900729855609576 + ], + [ + 74.83119987373293, + 22.900729855609576 + ], + [ + 74.71635719024924, + 23.09537759053803 + ], + [ + 74.60151450676557, + 22.900729855609576 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 22.900729855609576 + ], + [ + 74.71635719024924, + 23.09537759053803 + ], + [ + 74.4866718232819, + 23.09537759053803 + ], + [ + 74.60151450676557, + 22.900729855609576 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 22.900729855609576 + ], + [ + 74.4866718232819, + 23.09537759053803 + ], + [ + 74.37182913979821, + 22.900729855609576 + ], + [ + 74.60151450676557, + 22.900729855609576 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 22.900729855609576 + ], + [ + 74.37182913979821, + 22.900729855609576 + ], + [ + 74.4866718232819, + 22.706082120681124 + ], + [ + 74.60151450676557, + 22.900729855609576 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 22.900729855609576 + ], + [ + 74.4866718232819, + 22.706082120681124 + ], + [ + 74.71635719024924, + 22.706082120681124 + ], + [ + 74.60151450676557, + 22.900729855609576 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 22.900729855609576 + ], + [ + 74.71635719024924, + 22.706082120681124 + ], + [ + 74.83119987373293, + 22.900729855609576 + ], + [ + 74.60151450676557, + 22.900729855609576 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 23.290025325466484 + ], + [ + 74.83119987373293, + 23.290025325466484 + ], + [ + 74.71635719024924, + 23.484673060394936 + ], + [ + 74.60151450676557, + 23.290025325466484 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 23.290025325466484 + ], + [ + 74.71635719024924, + 23.484673060394936 + ], + [ + 74.4866718232819, + 23.484673060394936 + ], + [ + 74.60151450676557, + 23.290025325466484 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 23.290025325466484 + ], + [ + 74.4866718232819, + 23.484673060394936 + ], + [ + 74.37182913979821, + 23.290025325466484 + ], + [ + 74.60151450676557, + 23.290025325466484 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 23.290025325466484 + ], + [ + 74.37182913979821, + 23.290025325466484 + ], + [ + 74.4866718232819, + 23.095377590538032 + ], + [ + 74.60151450676557, + 23.290025325466484 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 23.290025325466484 + ], + [ + 74.4866718232819, + 23.095377590538032 + ], + [ + 74.71635719024924, + 23.095377590538032 + ], + [ + 74.60151450676557, + 23.290025325466484 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 23.290025325466484 + ], + [ + 74.71635719024924, + 23.095377590538032 + ], + [ + 74.83119987373293, + 23.290025325466484 + ], + [ + 74.60151450676557, + 23.290025325466484 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 23.67932079532339 + ], + [ + 74.83119987373293, + 23.67932079532339 + ], + [ + 74.71635719024924, + 23.873968530251844 + ], + [ + 74.60151450676557, + 23.67932079532339 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 23.67932079532339 + ], + [ + 74.71635719024924, + 23.873968530251844 + ], + [ + 74.4866718232819, + 23.873968530251844 + ], + [ + 74.60151450676557, + 23.67932079532339 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 23.67932079532339 + ], + [ + 74.4866718232819, + 23.873968530251844 + ], + [ + 74.37182913979821, + 23.67932079532339 + ], + [ + 74.60151450676557, + 23.67932079532339 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 23.67932079532339 + ], + [ + 74.37182913979821, + 23.67932079532339 + ], + [ + 74.4866718232819, + 23.48467306039494 + ], + [ + 74.60151450676557, + 23.67932079532339 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 23.67932079532339 + ], + [ + 74.4866718232819, + 23.48467306039494 + ], + [ + 74.71635719024924, + 23.48467306039494 + ], + [ + 74.60151450676557, + 23.67932079532339 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 23.67932079532339 + ], + [ + 74.71635719024924, + 23.48467306039494 + ], + [ + 74.83119987373293, + 23.67932079532339 + ], + [ + 74.60151450676557, + 23.67932079532339 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 24.068616265180296 + ], + [ + 74.83119987373293, + 24.068616265180296 + ], + [ + 74.71635719024924, + 24.263264000108748 + ], + [ + 74.60151450676557, + 24.068616265180296 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 24.068616265180296 + ], + [ + 74.71635719024924, + 24.263264000108748 + ], + [ + 74.4866718232819, + 24.263264000108748 + ], + [ + 74.60151450676557, + 24.068616265180296 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 24.068616265180296 + ], + [ + 74.4866718232819, + 24.263264000108748 + ], + [ + 74.37182913979821, + 24.068616265180296 + ], + [ + 74.60151450676557, + 24.068616265180296 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 24.068616265180296 + ], + [ + 74.37182913979821, + 24.068616265180296 + ], + [ + 74.4866718232819, + 23.873968530251844 + ], + [ + 74.60151450676557, + 24.068616265180296 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 24.068616265180296 + ], + [ + 74.4866718232819, + 23.873968530251844 + ], + [ + 74.71635719024924, + 23.873968530251844 + ], + [ + 74.60151450676557, + 24.068616265180296 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 24.068616265180296 + ], + [ + 74.71635719024924, + 23.873968530251844 + ], + [ + 74.83119987373293, + 24.068616265180296 + ], + [ + 74.60151450676557, + 24.068616265180296 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 24.4579117350372 + ], + [ + 74.83119987373293, + 24.4579117350372 + ], + [ + 74.71635719024924, + 24.652559469965652 + ], + [ + 74.60151450676557, + 24.4579117350372 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 24.4579117350372 + ], + [ + 74.71635719024924, + 24.652559469965652 + ], + [ + 74.4866718232819, + 24.652559469965652 + ], + [ + 74.60151450676557, + 24.4579117350372 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 24.4579117350372 + ], + [ + 74.4866718232819, + 24.652559469965652 + ], + [ + 74.37182913979821, + 24.4579117350372 + ], + [ + 74.60151450676557, + 24.4579117350372 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 24.4579117350372 + ], + [ + 74.37182913979821, + 24.4579117350372 + ], + [ + 74.4866718232819, + 24.263264000108748 + ], + [ + 74.60151450676557, + 24.4579117350372 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 24.4579117350372 + ], + [ + 74.4866718232819, + 24.263264000108748 + ], + [ + 74.71635719024924, + 24.263264000108748 + ], + [ + 74.60151450676557, + 24.4579117350372 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 24.4579117350372 + ], + [ + 74.71635719024924, + 24.263264000108748 + ], + [ + 74.83119987373293, + 24.4579117350372 + ], + [ + 74.60151450676557, + 24.4579117350372 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 24.847207204894108 + ], + [ + 74.83119987373293, + 24.847207204894108 + ], + [ + 74.71635719024924, + 25.04185493982256 + ], + [ + 74.60151450676557, + 24.847207204894108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 24.847207204894108 + ], + [ + 74.71635719024924, + 25.04185493982256 + ], + [ + 74.4866718232819, + 25.04185493982256 + ], + [ + 74.60151450676557, + 24.847207204894108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 24.847207204894108 + ], + [ + 74.4866718232819, + 25.04185493982256 + ], + [ + 74.37182913979821, + 24.847207204894108 + ], + [ + 74.60151450676557, + 24.847207204894108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 24.847207204894108 + ], + [ + 74.37182913979821, + 24.847207204894108 + ], + [ + 74.4866718232819, + 24.652559469965656 + ], + [ + 74.60151450676557, + 24.847207204894108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 24.847207204894108 + ], + [ + 74.4866718232819, + 24.652559469965656 + ], + [ + 74.71635719024924, + 24.652559469965656 + ], + [ + 74.60151450676557, + 24.847207204894108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 24.847207204894108 + ], + [ + 74.71635719024924, + 24.652559469965656 + ], + [ + 74.83119987373293, + 24.847207204894108 + ], + [ + 74.60151450676557, + 24.847207204894108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 25.236502674751016 + ], + [ + 74.83119987373293, + 25.236502674751016 + ], + [ + 74.71635719024924, + 25.431150409679468 + ], + [ + 74.60151450676557, + 25.236502674751016 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 25.236502674751016 + ], + [ + 74.71635719024924, + 25.431150409679468 + ], + [ + 74.4866718232819, + 25.431150409679468 + ], + [ + 74.60151450676557, + 25.236502674751016 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 25.236502674751016 + ], + [ + 74.4866718232819, + 25.431150409679468 + ], + [ + 74.37182913979821, + 25.236502674751016 + ], + [ + 74.60151450676557, + 25.236502674751016 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 25.236502674751016 + ], + [ + 74.37182913979821, + 25.236502674751016 + ], + [ + 74.4866718232819, + 25.041854939822564 + ], + [ + 74.60151450676557, + 25.236502674751016 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 25.236502674751016 + ], + [ + 74.4866718232819, + 25.041854939822564 + ], + [ + 74.71635719024924, + 25.041854939822564 + ], + [ + 74.60151450676557, + 25.236502674751016 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 25.236502674751016 + ], + [ + 74.71635719024924, + 25.041854939822564 + ], + [ + 74.83119987373293, + 25.236502674751016 + ], + [ + 74.60151450676557, + 25.236502674751016 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 25.62579814460792 + ], + [ + 74.83119987373293, + 25.62579814460792 + ], + [ + 74.71635719024924, + 25.820445879536372 + ], + [ + 74.60151450676557, + 25.62579814460792 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 25.62579814460792 + ], + [ + 74.71635719024924, + 25.820445879536372 + ], + [ + 74.4866718232819, + 25.820445879536372 + ], + [ + 74.60151450676557, + 25.62579814460792 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 25.62579814460792 + ], + [ + 74.4866718232819, + 25.820445879536372 + ], + [ + 74.37182913979821, + 25.62579814460792 + ], + [ + 74.60151450676557, + 25.62579814460792 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 25.62579814460792 + ], + [ + 74.37182913979821, + 25.62579814460792 + ], + [ + 74.4866718232819, + 25.431150409679468 + ], + [ + 74.60151450676557, + 25.62579814460792 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 25.62579814460792 + ], + [ + 74.4866718232819, + 25.431150409679468 + ], + [ + 74.71635719024924, + 25.431150409679468 + ], + [ + 74.60151450676557, + 25.62579814460792 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 25.62579814460792 + ], + [ + 74.71635719024924, + 25.431150409679468 + ], + [ + 74.83119987373293, + 25.62579814460792 + ], + [ + 74.60151450676557, + 25.62579814460792 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 26.015093614464828 + ], + [ + 74.83119987373293, + 26.015093614464828 + ], + [ + 74.71635719024924, + 26.20974134939328 + ], + [ + 74.60151450676557, + 26.015093614464828 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 26.015093614464828 + ], + [ + 74.71635719024924, + 26.20974134939328 + ], + [ + 74.4866718232819, + 26.20974134939328 + ], + [ + 74.60151450676557, + 26.015093614464828 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 26.015093614464828 + ], + [ + 74.4866718232819, + 26.20974134939328 + ], + [ + 74.37182913979821, + 26.015093614464828 + ], + [ + 74.60151450676557, + 26.015093614464828 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 26.015093614464828 + ], + [ + 74.37182913979821, + 26.015093614464828 + ], + [ + 74.4866718232819, + 25.820445879536376 + ], + [ + 74.60151450676557, + 26.015093614464828 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 26.015093614464828 + ], + [ + 74.4866718232819, + 25.820445879536376 + ], + [ + 74.71635719024924, + 25.820445879536376 + ], + [ + 74.60151450676557, + 26.015093614464828 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 26.015093614464828 + ], + [ + 74.71635719024924, + 25.820445879536376 + ], + [ + 74.83119987373293, + 26.015093614464828 + ], + [ + 74.60151450676557, + 26.015093614464828 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 26.404389084321735 + ], + [ + 74.83119987373293, + 26.404389084321735 + ], + [ + 74.71635719024924, + 26.599036819250188 + ], + [ + 74.60151450676557, + 26.404389084321735 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 26.404389084321735 + ], + [ + 74.71635719024924, + 26.599036819250188 + ], + [ + 74.4866718232819, + 26.599036819250188 + ], + [ + 74.60151450676557, + 26.404389084321735 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 26.404389084321735 + ], + [ + 74.4866718232819, + 26.599036819250188 + ], + [ + 74.37182913979821, + 26.404389084321735 + ], + [ + 74.60151450676557, + 26.404389084321735 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 26.404389084321735 + ], + [ + 74.37182913979821, + 26.404389084321735 + ], + [ + 74.4866718232819, + 26.209741349393283 + ], + [ + 74.60151450676557, + 26.404389084321735 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 26.404389084321735 + ], + [ + 74.4866718232819, + 26.209741349393283 + ], + [ + 74.71635719024924, + 26.209741349393283 + ], + [ + 74.60151450676557, + 26.404389084321735 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 26.404389084321735 + ], + [ + 74.71635719024924, + 26.209741349393283 + ], + [ + 74.83119987373293, + 26.404389084321735 + ], + [ + 74.60151450676557, + 26.404389084321735 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 26.79368455417864 + ], + [ + 74.83119987373293, + 26.79368455417864 + ], + [ + 74.71635719024924, + 26.988332289107092 + ], + [ + 74.60151450676557, + 26.79368455417864 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 26.79368455417864 + ], + [ + 74.71635719024924, + 26.988332289107092 + ], + [ + 74.4866718232819, + 26.988332289107092 + ], + [ + 74.60151450676557, + 26.79368455417864 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 26.79368455417864 + ], + [ + 74.4866718232819, + 26.988332289107092 + ], + [ + 74.37182913979821, + 26.79368455417864 + ], + [ + 74.60151450676557, + 26.79368455417864 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 26.79368455417864 + ], + [ + 74.37182913979821, + 26.79368455417864 + ], + [ + 74.4866718232819, + 26.599036819250188 + ], + [ + 74.60151450676557, + 26.79368455417864 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 26.79368455417864 + ], + [ + 74.4866718232819, + 26.599036819250188 + ], + [ + 74.71635719024924, + 26.599036819250188 + ], + [ + 74.60151450676557, + 26.79368455417864 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 26.79368455417864 + ], + [ + 74.71635719024924, + 26.599036819250188 + ], + [ + 74.83119987373293, + 26.79368455417864 + ], + [ + 74.60151450676557, + 26.79368455417864 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 27.182980024035547 + ], + [ + 74.83119987373293, + 27.182980024035547 + ], + [ + 74.71635719024924, + 27.377627758964 + ], + [ + 74.60151450676557, + 27.182980024035547 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 27.182980024035547 + ], + [ + 74.71635719024924, + 27.377627758964 + ], + [ + 74.4866718232819, + 27.377627758964 + ], + [ + 74.60151450676557, + 27.182980024035547 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 27.182980024035547 + ], + [ + 74.4866718232819, + 27.377627758964 + ], + [ + 74.37182913979821, + 27.182980024035547 + ], + [ + 74.60151450676557, + 27.182980024035547 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 27.182980024035547 + ], + [ + 74.37182913979821, + 27.182980024035547 + ], + [ + 74.4866718232819, + 26.988332289107095 + ], + [ + 74.60151450676557, + 27.182980024035547 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 27.182980024035547 + ], + [ + 74.4866718232819, + 26.988332289107095 + ], + [ + 74.71635719024924, + 26.988332289107095 + ], + [ + 74.60151450676557, + 27.182980024035547 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 27.182980024035547 + ], + [ + 74.71635719024924, + 26.988332289107095 + ], + [ + 74.83119987373293, + 27.182980024035547 + ], + [ + 74.60151450676557, + 27.182980024035547 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 27.572275493892455 + ], + [ + 74.83119987373293, + 27.572275493892455 + ], + [ + 74.71635719024924, + 27.766923228820907 + ], + [ + 74.60151450676557, + 27.572275493892455 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 27.572275493892455 + ], + [ + 74.71635719024924, + 27.766923228820907 + ], + [ + 74.4866718232819, + 27.766923228820907 + ], + [ + 74.60151450676557, + 27.572275493892455 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 27.572275493892455 + ], + [ + 74.4866718232819, + 27.766923228820907 + ], + [ + 74.37182913979821, + 27.572275493892455 + ], + [ + 74.60151450676557, + 27.572275493892455 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 27.572275493892455 + ], + [ + 74.37182913979821, + 27.572275493892455 + ], + [ + 74.4866718232819, + 27.377627758964003 + ], + [ + 74.60151450676557, + 27.572275493892455 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 27.572275493892455 + ], + [ + 74.4866718232819, + 27.377627758964003 + ], + [ + 74.71635719024924, + 27.377627758964003 + ], + [ + 74.60151450676557, + 27.572275493892455 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 27.572275493892455 + ], + [ + 74.71635719024924, + 27.377627758964003 + ], + [ + 74.83119987373293, + 27.572275493892455 + ], + [ + 74.60151450676557, + 27.572275493892455 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 27.96157096374936 + ], + [ + 74.83119987373293, + 27.96157096374936 + ], + [ + 74.71635719024924, + 28.15621869867781 + ], + [ + 74.60151450676557, + 27.96157096374936 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 27.96157096374936 + ], + [ + 74.71635719024924, + 28.15621869867781 + ], + [ + 74.4866718232819, + 28.15621869867781 + ], + [ + 74.60151450676557, + 27.96157096374936 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 27.96157096374936 + ], + [ + 74.4866718232819, + 28.15621869867781 + ], + [ + 74.37182913979821, + 27.96157096374936 + ], + [ + 74.60151450676557, + 27.96157096374936 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 27.96157096374936 + ], + [ + 74.37182913979821, + 27.96157096374936 + ], + [ + 74.4866718232819, + 27.766923228820907 + ], + [ + 74.60151450676557, + 27.96157096374936 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 27.96157096374936 + ], + [ + 74.4866718232819, + 27.766923228820907 + ], + [ + 74.71635719024924, + 27.766923228820907 + ], + [ + 74.60151450676557, + 27.96157096374936 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 27.96157096374936 + ], + [ + 74.71635719024924, + 27.766923228820907 + ], + [ + 74.83119987373293, + 27.96157096374936 + ], + [ + 74.60151450676557, + 27.96157096374936 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 28.350866433606267 + ], + [ + 74.83119987373293, + 28.350866433606267 + ], + [ + 74.71635719024924, + 28.54551416853472 + ], + [ + 74.60151450676557, + 28.350866433606267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 28.350866433606267 + ], + [ + 74.71635719024924, + 28.54551416853472 + ], + [ + 74.4866718232819, + 28.54551416853472 + ], + [ + 74.60151450676557, + 28.350866433606267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 28.350866433606267 + ], + [ + 74.4866718232819, + 28.54551416853472 + ], + [ + 74.37182913979821, + 28.350866433606267 + ], + [ + 74.60151450676557, + 28.350866433606267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 28.350866433606267 + ], + [ + 74.37182913979821, + 28.350866433606267 + ], + [ + 74.4866718232819, + 28.156218698677815 + ], + [ + 74.60151450676557, + 28.350866433606267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 28.350866433606267 + ], + [ + 74.4866718232819, + 28.156218698677815 + ], + [ + 74.71635719024924, + 28.156218698677815 + ], + [ + 74.60151450676557, + 28.350866433606267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 28.350866433606267 + ], + [ + 74.71635719024924, + 28.156218698677815 + ], + [ + 74.83119987373293, + 28.350866433606267 + ], + [ + 74.60151450676557, + 28.350866433606267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 28.74016190346317 + ], + [ + 74.83119987373293, + 28.74016190346317 + ], + [ + 74.71635719024924, + 28.934809638391624 + ], + [ + 74.60151450676557, + 28.74016190346317 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 28.74016190346317 + ], + [ + 74.71635719024924, + 28.934809638391624 + ], + [ + 74.4866718232819, + 28.934809638391624 + ], + [ + 74.60151450676557, + 28.74016190346317 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 28.74016190346317 + ], + [ + 74.4866718232819, + 28.934809638391624 + ], + [ + 74.37182913979821, + 28.74016190346317 + ], + [ + 74.60151450676557, + 28.74016190346317 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 28.74016190346317 + ], + [ + 74.37182913979821, + 28.74016190346317 + ], + [ + 74.4866718232819, + 28.54551416853472 + ], + [ + 74.60151450676557, + 28.74016190346317 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 28.74016190346317 + ], + [ + 74.4866718232819, + 28.54551416853472 + ], + [ + 74.71635719024924, + 28.54551416853472 + ], + [ + 74.60151450676557, + 28.74016190346317 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 28.74016190346317 + ], + [ + 74.71635719024924, + 28.54551416853472 + ], + [ + 74.83119987373293, + 28.74016190346317 + ], + [ + 74.60151450676557, + 28.74016190346317 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 29.12945737332008 + ], + [ + 74.83119987373293, + 29.12945737332008 + ], + [ + 74.71635719024924, + 29.32410510824853 + ], + [ + 74.60151450676557, + 29.12945737332008 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 29.12945737332008 + ], + [ + 74.71635719024924, + 29.32410510824853 + ], + [ + 74.4866718232819, + 29.32410510824853 + ], + [ + 74.60151450676557, + 29.12945737332008 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 29.12945737332008 + ], + [ + 74.4866718232819, + 29.32410510824853 + ], + [ + 74.37182913979821, + 29.12945737332008 + ], + [ + 74.60151450676557, + 29.12945737332008 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 29.12945737332008 + ], + [ + 74.37182913979821, + 29.12945737332008 + ], + [ + 74.4866718232819, + 28.934809638391627 + ], + [ + 74.60151450676557, + 29.12945737332008 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 29.12945737332008 + ], + [ + 74.4866718232819, + 28.934809638391627 + ], + [ + 74.71635719024924, + 28.934809638391627 + ], + [ + 74.60151450676557, + 29.12945737332008 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 29.12945737332008 + ], + [ + 74.71635719024924, + 28.934809638391627 + ], + [ + 74.83119987373293, + 29.12945737332008 + ], + [ + 74.60151450676557, + 29.12945737332008 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 29.518752843176983 + ], + [ + 74.83119987373293, + 29.518752843176983 + ], + [ + 74.71635719024924, + 29.713400578105436 + ], + [ + 74.60151450676557, + 29.518752843176983 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 29.518752843176983 + ], + [ + 74.71635719024924, + 29.713400578105436 + ], + [ + 74.4866718232819, + 29.713400578105436 + ], + [ + 74.60151450676557, + 29.518752843176983 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 29.518752843176983 + ], + [ + 74.4866718232819, + 29.713400578105436 + ], + [ + 74.37182913979821, + 29.518752843176983 + ], + [ + 74.60151450676557, + 29.518752843176983 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 29.518752843176983 + ], + [ + 74.37182913979821, + 29.518752843176983 + ], + [ + 74.4866718232819, + 29.32410510824853 + ], + [ + 74.60151450676557, + 29.518752843176983 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 29.518752843176983 + ], + [ + 74.4866718232819, + 29.32410510824853 + ], + [ + 74.71635719024924, + 29.32410510824853 + ], + [ + 74.60151450676557, + 29.518752843176983 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 29.518752843176983 + ], + [ + 74.71635719024924, + 29.32410510824853 + ], + [ + 74.83119987373293, + 29.518752843176983 + ], + [ + 74.60151450676557, + 29.518752843176983 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 29.90804831303389 + ], + [ + 74.83119987373293, + 29.90804831303389 + ], + [ + 74.71635719024924, + 30.102696047962343 + ], + [ + 74.60151450676557, + 29.90804831303389 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 29.90804831303389 + ], + [ + 74.71635719024924, + 30.102696047962343 + ], + [ + 74.4866718232819, + 30.102696047962343 + ], + [ + 74.60151450676557, + 29.90804831303389 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 29.90804831303389 + ], + [ + 74.4866718232819, + 30.102696047962343 + ], + [ + 74.37182913979821, + 29.90804831303389 + ], + [ + 74.60151450676557, + 29.90804831303389 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 29.90804831303389 + ], + [ + 74.37182913979821, + 29.90804831303389 + ], + [ + 74.4866718232819, + 29.71340057810544 + ], + [ + 74.60151450676557, + 29.90804831303389 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 29.90804831303389 + ], + [ + 74.4866718232819, + 29.71340057810544 + ], + [ + 74.71635719024924, + 29.71340057810544 + ], + [ + 74.60151450676557, + 29.90804831303389 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 29.90804831303389 + ], + [ + 74.71635719024924, + 29.71340057810544 + ], + [ + 74.83119987373293, + 29.90804831303389 + ], + [ + 74.60151450676557, + 29.90804831303389 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 30.297343782890795 + ], + [ + 74.83119987373293, + 30.297343782890795 + ], + [ + 74.71635719024924, + 30.491991517819248 + ], + [ + 74.60151450676557, + 30.297343782890795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 30.297343782890795 + ], + [ + 74.71635719024924, + 30.491991517819248 + ], + [ + 74.4866718232819, + 30.491991517819248 + ], + [ + 74.60151450676557, + 30.297343782890795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 30.297343782890795 + ], + [ + 74.4866718232819, + 30.491991517819248 + ], + [ + 74.37182913979821, + 30.297343782890795 + ], + [ + 74.60151450676557, + 30.297343782890795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 30.297343782890795 + ], + [ + 74.37182913979821, + 30.297343782890795 + ], + [ + 74.4866718232819, + 30.102696047962343 + ], + [ + 74.60151450676557, + 30.297343782890795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 30.297343782890795 + ], + [ + 74.4866718232819, + 30.102696047962343 + ], + [ + 74.71635719024924, + 30.102696047962343 + ], + [ + 74.60151450676557, + 30.297343782890795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 30.297343782890795 + ], + [ + 74.71635719024924, + 30.102696047962343 + ], + [ + 74.83119987373293, + 30.297343782890795 + ], + [ + 74.60151450676557, + 30.297343782890795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 30.686639252747703 + ], + [ + 74.83119987373293, + 30.686639252747703 + ], + [ + 74.71635719024924, + 30.881286987676155 + ], + [ + 74.60151450676557, + 30.686639252747703 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 30.686639252747703 + ], + [ + 74.71635719024924, + 30.881286987676155 + ], + [ + 74.4866718232819, + 30.881286987676155 + ], + [ + 74.60151450676557, + 30.686639252747703 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 30.686639252747703 + ], + [ + 74.4866718232819, + 30.881286987676155 + ], + [ + 74.37182913979821, + 30.686639252747703 + ], + [ + 74.60151450676557, + 30.686639252747703 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 30.686639252747703 + ], + [ + 74.37182913979821, + 30.686639252747703 + ], + [ + 74.4866718232819, + 30.49199151781925 + ], + [ + 74.60151450676557, + 30.686639252747703 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 30.686639252747703 + ], + [ + 74.4866718232819, + 30.49199151781925 + ], + [ + 74.71635719024924, + 30.49199151781925 + ], + [ + 74.60151450676557, + 30.686639252747703 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 30.686639252747703 + ], + [ + 74.71635719024924, + 30.49199151781925 + ], + [ + 74.83119987373293, + 30.686639252747703 + ], + [ + 74.60151450676557, + 30.686639252747703 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 31.07593472260461 + ], + [ + 74.83119987373293, + 31.07593472260461 + ], + [ + 74.71635719024924, + 31.270582457533063 + ], + [ + 74.60151450676557, + 31.07593472260461 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 31.07593472260461 + ], + [ + 74.71635719024924, + 31.270582457533063 + ], + [ + 74.4866718232819, + 31.270582457533063 + ], + [ + 74.60151450676557, + 31.07593472260461 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 31.07593472260461 + ], + [ + 74.4866718232819, + 31.270582457533063 + ], + [ + 74.37182913979821, + 31.07593472260461 + ], + [ + 74.60151450676557, + 31.07593472260461 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 31.07593472260461 + ], + [ + 74.37182913979821, + 31.07593472260461 + ], + [ + 74.4866718232819, + 30.88128698767616 + ], + [ + 74.60151450676557, + 31.07593472260461 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 31.07593472260461 + ], + [ + 74.4866718232819, + 30.88128698767616 + ], + [ + 74.71635719024924, + 30.88128698767616 + ], + [ + 74.60151450676557, + 31.07593472260461 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 31.07593472260461 + ], + [ + 74.71635719024924, + 30.88128698767616 + ], + [ + 74.83119987373293, + 31.07593472260461 + ], + [ + 74.60151450676557, + 31.07593472260461 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 31.465230192461515 + ], + [ + 74.83119987373293, + 31.465230192461515 + ], + [ + 74.71635719024924, + 31.659877927389967 + ], + [ + 74.60151450676557, + 31.465230192461515 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 31.465230192461515 + ], + [ + 74.71635719024924, + 31.659877927389967 + ], + [ + 74.4866718232819, + 31.659877927389967 + ], + [ + 74.60151450676557, + 31.465230192461515 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 31.465230192461515 + ], + [ + 74.4866718232819, + 31.659877927389967 + ], + [ + 74.37182913979821, + 31.465230192461515 + ], + [ + 74.60151450676557, + 31.465230192461515 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 31.465230192461515 + ], + [ + 74.37182913979821, + 31.465230192461515 + ], + [ + 74.4866718232819, + 31.270582457533063 + ], + [ + 74.60151450676557, + 31.465230192461515 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 31.465230192461515 + ], + [ + 74.4866718232819, + 31.270582457533063 + ], + [ + 74.71635719024924, + 31.270582457533063 + ], + [ + 74.60151450676557, + 31.465230192461515 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 31.465230192461515 + ], + [ + 74.71635719024924, + 31.270582457533063 + ], + [ + 74.83119987373293, + 31.465230192461515 + ], + [ + 74.60151450676557, + 31.465230192461515 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 31.854525662318423 + ], + [ + 74.83119987373293, + 31.854525662318423 + ], + [ + 74.71635719024924, + 32.049173397246875 + ], + [ + 74.60151450676557, + 31.854525662318423 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 31.854525662318423 + ], + [ + 74.71635719024924, + 32.049173397246875 + ], + [ + 74.4866718232819, + 32.049173397246875 + ], + [ + 74.60151450676557, + 31.854525662318423 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 31.854525662318423 + ], + [ + 74.4866718232819, + 32.049173397246875 + ], + [ + 74.37182913979821, + 31.854525662318423 + ], + [ + 74.60151450676557, + 31.854525662318423 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 31.854525662318423 + ], + [ + 74.37182913979821, + 31.854525662318423 + ], + [ + 74.4866718232819, + 31.65987792738997 + ], + [ + 74.60151450676557, + 31.854525662318423 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 31.854525662318423 + ], + [ + 74.4866718232819, + 31.65987792738997 + ], + [ + 74.71635719024924, + 31.65987792738997 + ], + [ + 74.60151450676557, + 31.854525662318423 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 31.854525662318423 + ], + [ + 74.71635719024924, + 31.65987792738997 + ], + [ + 74.83119987373293, + 31.854525662318423 + ], + [ + 74.60151450676557, + 31.854525662318423 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 32.24382113217533 + ], + [ + 74.83119987373293, + 32.24382113217533 + ], + [ + 74.71635719024924, + 32.43846886710378 + ], + [ + 74.60151450676557, + 32.24382113217533 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 32.24382113217533 + ], + [ + 74.71635719024924, + 32.43846886710378 + ], + [ + 74.4866718232819, + 32.43846886710378 + ], + [ + 74.60151450676557, + 32.24382113217533 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 32.24382113217533 + ], + [ + 74.4866718232819, + 32.43846886710378 + ], + [ + 74.37182913979821, + 32.24382113217533 + ], + [ + 74.60151450676557, + 32.24382113217533 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 32.24382113217533 + ], + [ + 74.37182913979821, + 32.24382113217533 + ], + [ + 74.4866718232819, + 32.049173397246875 + ], + [ + 74.60151450676557, + 32.24382113217533 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 32.24382113217533 + ], + [ + 74.4866718232819, + 32.049173397246875 + ], + [ + 74.71635719024924, + 32.049173397246875 + ], + [ + 74.60151450676557, + 32.24382113217533 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 32.24382113217533 + ], + [ + 74.71635719024924, + 32.049173397246875 + ], + [ + 74.83119987373293, + 32.24382113217533 + ], + [ + 74.60151450676557, + 32.24382113217533 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 32.63311660203224 + ], + [ + 74.83119987373293, + 32.63311660203224 + ], + [ + 74.71635719024924, + 32.82776433696069 + ], + [ + 74.60151450676557, + 32.63311660203224 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 32.63311660203224 + ], + [ + 74.71635719024924, + 32.82776433696069 + ], + [ + 74.4866718232819, + 32.82776433696069 + ], + [ + 74.60151450676557, + 32.63311660203224 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 32.63311660203224 + ], + [ + 74.4866718232819, + 32.82776433696069 + ], + [ + 74.37182913979821, + 32.63311660203224 + ], + [ + 74.60151450676557, + 32.63311660203224 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 32.63311660203224 + ], + [ + 74.37182913979821, + 32.63311660203224 + ], + [ + 74.4866718232819, + 32.438468867103786 + ], + [ + 74.60151450676557, + 32.63311660203224 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 32.63311660203224 + ], + [ + 74.4866718232819, + 32.438468867103786 + ], + [ + 74.71635719024924, + 32.438468867103786 + ], + [ + 74.60151450676557, + 32.63311660203224 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 32.63311660203224 + ], + [ + 74.71635719024924, + 32.438468867103786 + ], + [ + 74.83119987373293, + 32.63311660203224 + ], + [ + 74.60151450676557, + 32.63311660203224 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 33.02241207188914 + ], + [ + 74.83119987373293, + 33.02241207188914 + ], + [ + 74.71635719024924, + 33.217059806817595 + ], + [ + 74.60151450676557, + 33.02241207188914 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 33.02241207188914 + ], + [ + 74.71635719024924, + 33.217059806817595 + ], + [ + 74.4866718232819, + 33.217059806817595 + ], + [ + 74.60151450676557, + 33.02241207188914 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 33.02241207188914 + ], + [ + 74.4866718232819, + 33.217059806817595 + ], + [ + 74.37182913979821, + 33.02241207188914 + ], + [ + 74.60151450676557, + 33.02241207188914 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 33.02241207188914 + ], + [ + 74.37182913979821, + 33.02241207188914 + ], + [ + 74.4866718232819, + 32.82776433696069 + ], + [ + 74.60151450676557, + 33.02241207188914 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 33.02241207188914 + ], + [ + 74.4866718232819, + 32.82776433696069 + ], + [ + 74.71635719024924, + 32.82776433696069 + ], + [ + 74.60151450676557, + 33.02241207188914 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 33.02241207188914 + ], + [ + 74.71635719024924, + 32.82776433696069 + ], + [ + 74.83119987373293, + 33.02241207188914 + ], + [ + 74.60151450676557, + 33.02241207188914 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 33.41170754174605 + ], + [ + 74.83119987373293, + 33.41170754174605 + ], + [ + 74.71635719024924, + 33.6063552766745 + ], + [ + 74.60151450676557, + 33.41170754174605 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 33.41170754174605 + ], + [ + 74.71635719024924, + 33.6063552766745 + ], + [ + 74.4866718232819, + 33.6063552766745 + ], + [ + 74.60151450676557, + 33.41170754174605 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 33.41170754174605 + ], + [ + 74.4866718232819, + 33.6063552766745 + ], + [ + 74.37182913979821, + 33.41170754174605 + ], + [ + 74.60151450676557, + 33.41170754174605 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 33.41170754174605 + ], + [ + 74.37182913979821, + 33.41170754174605 + ], + [ + 74.4866718232819, + 33.217059806817595 + ], + [ + 74.60151450676557, + 33.41170754174605 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 33.41170754174605 + ], + [ + 74.4866718232819, + 33.217059806817595 + ], + [ + 74.71635719024924, + 33.217059806817595 + ], + [ + 74.60151450676557, + 33.41170754174605 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 33.41170754174605 + ], + [ + 74.71635719024924, + 33.217059806817595 + ], + [ + 74.83119987373293, + 33.41170754174605 + ], + [ + 74.60151450676557, + 33.41170754174605 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 33.80100301160295 + ], + [ + 74.83119987373293, + 33.80100301160295 + ], + [ + 74.71635719024924, + 33.9956507465314 + ], + [ + 74.60151450676557, + 33.80100301160295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 33.80100301160295 + ], + [ + 74.71635719024924, + 33.9956507465314 + ], + [ + 74.4866718232819, + 33.9956507465314 + ], + [ + 74.60151450676557, + 33.80100301160295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 33.80100301160295 + ], + [ + 74.4866718232819, + 33.9956507465314 + ], + [ + 74.37182913979821, + 33.80100301160295 + ], + [ + 74.60151450676557, + 33.80100301160295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 33.80100301160295 + ], + [ + 74.37182913979821, + 33.80100301160295 + ], + [ + 74.4866718232819, + 33.6063552766745 + ], + [ + 74.60151450676557, + 33.80100301160295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 33.80100301160295 + ], + [ + 74.4866718232819, + 33.6063552766745 + ], + [ + 74.71635719024924, + 33.6063552766745 + ], + [ + 74.60151450676557, + 33.80100301160295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 33.80100301160295 + ], + [ + 74.71635719024924, + 33.6063552766745 + ], + [ + 74.83119987373293, + 33.80100301160295 + ], + [ + 74.60151450676557, + 33.80100301160295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 34.190298481459855 + ], + [ + 74.83119987373293, + 34.190298481459855 + ], + [ + 74.71635719024924, + 34.38494621638831 + ], + [ + 74.60151450676557, + 34.190298481459855 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 34.190298481459855 + ], + [ + 74.71635719024924, + 34.38494621638831 + ], + [ + 74.4866718232819, + 34.38494621638831 + ], + [ + 74.60151450676557, + 34.190298481459855 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 34.190298481459855 + ], + [ + 74.4866718232819, + 34.38494621638831 + ], + [ + 74.37182913979821, + 34.190298481459855 + ], + [ + 74.60151450676557, + 34.190298481459855 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 34.190298481459855 + ], + [ + 74.37182913979821, + 34.190298481459855 + ], + [ + 74.4866718232819, + 33.9956507465314 + ], + [ + 74.60151450676557, + 34.190298481459855 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 34.190298481459855 + ], + [ + 74.4866718232819, + 33.9956507465314 + ], + [ + 74.71635719024924, + 33.9956507465314 + ], + [ + 74.60151450676557, + 34.190298481459855 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 34.190298481459855 + ], + [ + 74.71635719024924, + 33.9956507465314 + ], + [ + 74.83119987373293, + 34.190298481459855 + ], + [ + 74.60151450676557, + 34.190298481459855 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 34.57959395131677 + ], + [ + 74.83119987373293, + 34.57959395131677 + ], + [ + 74.71635719024924, + 34.77424168624522 + ], + [ + 74.60151450676557, + 34.57959395131677 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 34.57959395131677 + ], + [ + 74.71635719024924, + 34.77424168624522 + ], + [ + 74.4866718232819, + 34.77424168624522 + ], + [ + 74.60151450676557, + 34.57959395131677 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 34.57959395131677 + ], + [ + 74.4866718232819, + 34.77424168624522 + ], + [ + 74.37182913979821, + 34.57959395131677 + ], + [ + 74.60151450676557, + 34.57959395131677 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 34.57959395131677 + ], + [ + 74.37182913979821, + 34.57959395131677 + ], + [ + 74.4866718232819, + 34.384946216388315 + ], + [ + 74.60151450676557, + 34.57959395131677 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 34.57959395131677 + ], + [ + 74.4866718232819, + 34.384946216388315 + ], + [ + 74.71635719024924, + 34.384946216388315 + ], + [ + 74.60151450676557, + 34.57959395131677 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 34.57959395131677 + ], + [ + 74.71635719024924, + 34.384946216388315 + ], + [ + 74.83119987373293, + 34.57959395131677 + ], + [ + 74.60151450676557, + 34.57959395131677 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 34.96888942117368 + ], + [ + 74.83119987373293, + 34.96888942117368 + ], + [ + 74.71635719024924, + 35.16353715610213 + ], + [ + 74.60151450676557, + 34.96888942117368 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 34.96888942117368 + ], + [ + 74.71635719024924, + 35.16353715610213 + ], + [ + 74.4866718232819, + 35.16353715610213 + ], + [ + 74.60151450676557, + 34.96888942117368 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 34.96888942117368 + ], + [ + 74.4866718232819, + 35.16353715610213 + ], + [ + 74.37182913979821, + 34.96888942117368 + ], + [ + 74.60151450676557, + 34.96888942117368 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 34.96888942117368 + ], + [ + 74.37182913979821, + 34.96888942117368 + ], + [ + 74.4866718232819, + 34.774241686245226 + ], + [ + 74.60151450676557, + 34.96888942117368 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 34.96888942117368 + ], + [ + 74.4866718232819, + 34.774241686245226 + ], + [ + 74.71635719024924, + 34.774241686245226 + ], + [ + 74.60151450676557, + 34.96888942117368 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 34.96888942117368 + ], + [ + 74.71635719024924, + 34.774241686245226 + ], + [ + 74.83119987373293, + 34.96888942117368 + ], + [ + 74.60151450676557, + 34.96888942117368 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 35.35818489103058 + ], + [ + 74.83119987373293, + 35.35818489103058 + ], + [ + 74.71635719024924, + 35.552832625959034 + ], + [ + 74.60151450676557, + 35.35818489103058 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 35.35818489103058 + ], + [ + 74.71635719024924, + 35.552832625959034 + ], + [ + 74.4866718232819, + 35.552832625959034 + ], + [ + 74.60151450676557, + 35.35818489103058 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 35.35818489103058 + ], + [ + 74.4866718232819, + 35.552832625959034 + ], + [ + 74.37182913979821, + 35.35818489103058 + ], + [ + 74.60151450676557, + 35.35818489103058 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 35.35818489103058 + ], + [ + 74.37182913979821, + 35.35818489103058 + ], + [ + 74.4866718232819, + 35.16353715610213 + ], + [ + 74.60151450676557, + 35.35818489103058 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 35.35818489103058 + ], + [ + 74.4866718232819, + 35.16353715610213 + ], + [ + 74.71635719024924, + 35.16353715610213 + ], + [ + 74.60151450676557, + 35.35818489103058 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 35.35818489103058 + ], + [ + 74.71635719024924, + 35.16353715610213 + ], + [ + 74.83119987373293, + 35.35818489103058 + ], + [ + 74.60151450676557, + 35.35818489103058 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 35.74748036088749 + ], + [ + 74.83119987373293, + 35.74748036088749 + ], + [ + 74.71635719024924, + 35.94212809581594 + ], + [ + 74.60151450676557, + 35.74748036088749 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 35.74748036088749 + ], + [ + 74.71635719024924, + 35.94212809581594 + ], + [ + 74.4866718232819, + 35.94212809581594 + ], + [ + 74.60151450676557, + 35.74748036088749 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 35.74748036088749 + ], + [ + 74.4866718232819, + 35.94212809581594 + ], + [ + 74.37182913979821, + 35.74748036088749 + ], + [ + 74.60151450676557, + 35.74748036088749 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 35.74748036088749 + ], + [ + 74.37182913979821, + 35.74748036088749 + ], + [ + 74.4866718232819, + 35.552832625959034 + ], + [ + 74.60151450676557, + 35.74748036088749 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 35.74748036088749 + ], + [ + 74.4866718232819, + 35.552832625959034 + ], + [ + 74.71635719024924, + 35.552832625959034 + ], + [ + 74.60151450676557, + 35.74748036088749 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 35.74748036088749 + ], + [ + 74.71635719024924, + 35.552832625959034 + ], + [ + 74.83119987373293, + 35.74748036088749 + ], + [ + 74.60151450676557, + 35.74748036088749 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 36.13677583074439 + ], + [ + 74.83119987373293, + 36.13677583074439 + ], + [ + 74.71635719024924, + 36.33142356567284 + ], + [ + 74.60151450676557, + 36.13677583074439 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 36.13677583074439 + ], + [ + 74.71635719024924, + 36.33142356567284 + ], + [ + 74.4866718232819, + 36.33142356567284 + ], + [ + 74.60151450676557, + 36.13677583074439 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 36.13677583074439 + ], + [ + 74.4866718232819, + 36.33142356567284 + ], + [ + 74.37182913979821, + 36.13677583074439 + ], + [ + 74.60151450676557, + 36.13677583074439 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 36.13677583074439 + ], + [ + 74.37182913979821, + 36.13677583074439 + ], + [ + 74.4866718232819, + 35.94212809581594 + ], + [ + 74.60151450676557, + 36.13677583074439 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 36.13677583074439 + ], + [ + 74.4866718232819, + 35.94212809581594 + ], + [ + 74.71635719024924, + 35.94212809581594 + ], + [ + 74.60151450676557, + 36.13677583074439 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 36.13677583074439 + ], + [ + 74.71635719024924, + 35.94212809581594 + ], + [ + 74.83119987373293, + 36.13677583074439 + ], + [ + 74.60151450676557, + 36.13677583074439 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 36.526071300601295 + ], + [ + 74.83119987373293, + 36.526071300601295 + ], + [ + 74.71635719024924, + 36.72071903552975 + ], + [ + 74.60151450676557, + 36.526071300601295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 36.526071300601295 + ], + [ + 74.71635719024924, + 36.72071903552975 + ], + [ + 74.4866718232819, + 36.72071903552975 + ], + [ + 74.60151450676557, + 36.526071300601295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 36.526071300601295 + ], + [ + 74.4866718232819, + 36.72071903552975 + ], + [ + 74.37182913979821, + 36.526071300601295 + ], + [ + 74.60151450676557, + 36.526071300601295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 36.526071300601295 + ], + [ + 74.37182913979821, + 36.526071300601295 + ], + [ + 74.4866718232819, + 36.33142356567284 + ], + [ + 74.60151450676557, + 36.526071300601295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 36.526071300601295 + ], + [ + 74.4866718232819, + 36.33142356567284 + ], + [ + 74.71635719024924, + 36.33142356567284 + ], + [ + 74.60151450676557, + 36.526071300601295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 36.526071300601295 + ], + [ + 74.71635719024924, + 36.33142356567284 + ], + [ + 74.83119987373293, + 36.526071300601295 + ], + [ + 74.60151450676557, + 36.526071300601295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 36.915366770458206 + ], + [ + 74.83119987373293, + 36.915366770458206 + ], + [ + 74.71635719024924, + 37.11001450538666 + ], + [ + 74.60151450676557, + 36.915366770458206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 36.915366770458206 + ], + [ + 74.71635719024924, + 37.11001450538666 + ], + [ + 74.4866718232819, + 37.11001450538666 + ], + [ + 74.60151450676557, + 36.915366770458206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 36.915366770458206 + ], + [ + 74.4866718232819, + 37.11001450538666 + ], + [ + 74.37182913979821, + 36.915366770458206 + ], + [ + 74.60151450676557, + 36.915366770458206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 36.915366770458206 + ], + [ + 74.37182913979821, + 36.915366770458206 + ], + [ + 74.4866718232819, + 36.720719035529754 + ], + [ + 74.60151450676557, + 36.915366770458206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 36.915366770458206 + ], + [ + 74.4866718232819, + 36.720719035529754 + ], + [ + 74.71635719024924, + 36.720719035529754 + ], + [ + 74.60151450676557, + 36.915366770458206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 36.915366770458206 + ], + [ + 74.71635719024924, + 36.720719035529754 + ], + [ + 74.83119987373293, + 36.915366770458206 + ], + [ + 74.60151450676557, + 36.915366770458206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 37.30466224031511 + ], + [ + 74.83119987373293, + 37.30466224031511 + ], + [ + 74.71635719024924, + 37.49930997524356 + ], + [ + 74.60151450676557, + 37.30466224031511 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 37.30466224031511 + ], + [ + 74.71635719024924, + 37.49930997524356 + ], + [ + 74.4866718232819, + 37.49930997524356 + ], + [ + 74.60151450676557, + 37.30466224031511 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 37.30466224031511 + ], + [ + 74.4866718232819, + 37.49930997524356 + ], + [ + 74.37182913979821, + 37.30466224031511 + ], + [ + 74.60151450676557, + 37.30466224031511 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 37.30466224031511 + ], + [ + 74.37182913979821, + 37.30466224031511 + ], + [ + 74.4866718232819, + 37.11001450538666 + ], + [ + 74.60151450676557, + 37.30466224031511 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 37.30466224031511 + ], + [ + 74.4866718232819, + 37.11001450538666 + ], + [ + 74.71635719024924, + 37.11001450538666 + ], + [ + 74.60151450676557, + 37.30466224031511 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 37.30466224031511 + ], + [ + 74.71635719024924, + 37.11001450538666 + ], + [ + 74.83119987373293, + 37.30466224031511 + ], + [ + 74.60151450676557, + 37.30466224031511 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 37.69395771017202 + ], + [ + 74.83119987373293, + 37.69395771017202 + ], + [ + 74.71635719024924, + 37.888605445100474 + ], + [ + 74.60151450676557, + 37.69395771017202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 37.69395771017202 + ], + [ + 74.71635719024924, + 37.888605445100474 + ], + [ + 74.4866718232819, + 37.888605445100474 + ], + [ + 74.60151450676557, + 37.69395771017202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 37.69395771017202 + ], + [ + 74.4866718232819, + 37.888605445100474 + ], + [ + 74.37182913979821, + 37.69395771017202 + ], + [ + 74.60151450676557, + 37.69395771017202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 37.69395771017202 + ], + [ + 74.37182913979821, + 37.69395771017202 + ], + [ + 74.4866718232819, + 37.49930997524357 + ], + [ + 74.60151450676557, + 37.69395771017202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 37.69395771017202 + ], + [ + 74.4866718232819, + 37.49930997524357 + ], + [ + 74.71635719024924, + 37.49930997524357 + ], + [ + 74.60151450676557, + 37.69395771017202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 37.69395771017202 + ], + [ + 74.71635719024924, + 37.49930997524357 + ], + [ + 74.83119987373293, + 37.69395771017202 + ], + [ + 74.60151450676557, + 37.69395771017202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 38.083253180028926 + ], + [ + 74.83119987373293, + 38.083253180028926 + ], + [ + 74.71635719024924, + 38.27790091495738 + ], + [ + 74.60151450676557, + 38.083253180028926 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 38.083253180028926 + ], + [ + 74.71635719024924, + 38.27790091495738 + ], + [ + 74.4866718232819, + 38.27790091495738 + ], + [ + 74.60151450676557, + 38.083253180028926 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 38.083253180028926 + ], + [ + 74.4866718232819, + 38.27790091495738 + ], + [ + 74.37182913979821, + 38.083253180028926 + ], + [ + 74.60151450676557, + 38.083253180028926 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 38.083253180028926 + ], + [ + 74.37182913979821, + 38.083253180028926 + ], + [ + 74.4866718232819, + 37.888605445100474 + ], + [ + 74.60151450676557, + 38.083253180028926 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 38.083253180028926 + ], + [ + 74.4866718232819, + 37.888605445100474 + ], + [ + 74.71635719024924, + 37.888605445100474 + ], + [ + 74.60151450676557, + 38.083253180028926 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 38.083253180028926 + ], + [ + 74.71635719024924, + 37.888605445100474 + ], + [ + 74.83119987373293, + 38.083253180028926 + ], + [ + 74.60151450676557, + 38.083253180028926 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 38.47254864988583 + ], + [ + 74.83119987373293, + 38.47254864988583 + ], + [ + 74.71635719024924, + 38.66719638481428 + ], + [ + 74.60151450676557, + 38.47254864988583 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 38.47254864988583 + ], + [ + 74.71635719024924, + 38.66719638481428 + ], + [ + 74.4866718232819, + 38.66719638481428 + ], + [ + 74.60151450676557, + 38.47254864988583 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 38.47254864988583 + ], + [ + 74.4866718232819, + 38.66719638481428 + ], + [ + 74.37182913979821, + 38.47254864988583 + ], + [ + 74.60151450676557, + 38.47254864988583 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 38.47254864988583 + ], + [ + 74.37182913979821, + 38.47254864988583 + ], + [ + 74.4866718232819, + 38.27790091495738 + ], + [ + 74.60151450676557, + 38.47254864988583 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 38.47254864988583 + ], + [ + 74.4866718232819, + 38.27790091495738 + ], + [ + 74.71635719024924, + 38.27790091495738 + ], + [ + 74.60151450676557, + 38.47254864988583 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 38.47254864988583 + ], + [ + 74.71635719024924, + 38.27790091495738 + ], + [ + 74.83119987373293, + 38.47254864988583 + ], + [ + 74.60151450676557, + 38.47254864988583 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 38.861844119742734 + ], + [ + 74.83119987373293, + 38.861844119742734 + ], + [ + 74.71635719024924, + 39.05649185467119 + ], + [ + 74.60151450676557, + 38.861844119742734 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 38.861844119742734 + ], + [ + 74.71635719024924, + 39.05649185467119 + ], + [ + 74.4866718232819, + 39.05649185467119 + ], + [ + 74.60151450676557, + 38.861844119742734 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 38.861844119742734 + ], + [ + 74.4866718232819, + 39.05649185467119 + ], + [ + 74.37182913979821, + 38.861844119742734 + ], + [ + 74.60151450676557, + 38.861844119742734 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 38.861844119742734 + ], + [ + 74.37182913979821, + 38.861844119742734 + ], + [ + 74.4866718232819, + 38.66719638481428 + ], + [ + 74.60151450676557, + 38.861844119742734 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 38.861844119742734 + ], + [ + 74.4866718232819, + 38.66719638481428 + ], + [ + 74.71635719024924, + 38.66719638481428 + ], + [ + 74.60151450676557, + 38.861844119742734 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 38.861844119742734 + ], + [ + 74.71635719024924, + 38.66719638481428 + ], + [ + 74.83119987373293, + 38.861844119742734 + ], + [ + 74.60151450676557, + 38.861844119742734 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 39.25113958959964 + ], + [ + 74.83119987373293, + 39.25113958959964 + ], + [ + 74.71635719024924, + 39.44578732452809 + ], + [ + 74.60151450676557, + 39.25113958959964 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 39.25113958959964 + ], + [ + 74.71635719024924, + 39.44578732452809 + ], + [ + 74.4866718232819, + 39.44578732452809 + ], + [ + 74.60151450676557, + 39.25113958959964 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 39.25113958959964 + ], + [ + 74.4866718232819, + 39.44578732452809 + ], + [ + 74.37182913979821, + 39.25113958959964 + ], + [ + 74.60151450676557, + 39.25113958959964 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 39.25113958959964 + ], + [ + 74.37182913979821, + 39.25113958959964 + ], + [ + 74.4866718232819, + 39.05649185467119 + ], + [ + 74.60151450676557, + 39.25113958959964 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 39.25113958959964 + ], + [ + 74.4866718232819, + 39.05649185467119 + ], + [ + 74.71635719024924, + 39.05649185467119 + ], + [ + 74.60151450676557, + 39.25113958959964 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 39.25113958959964 + ], + [ + 74.71635719024924, + 39.05649185467119 + ], + [ + 74.83119987373293, + 39.25113958959964 + ], + [ + 74.60151450676557, + 39.25113958959964 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 39.64043505945655 + ], + [ + 74.83119987373293, + 39.64043505945655 + ], + [ + 74.71635719024924, + 39.835082794385 + ], + [ + 74.60151450676557, + 39.64043505945655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 39.64043505945655 + ], + [ + 74.71635719024924, + 39.835082794385 + ], + [ + 74.4866718232819, + 39.835082794385 + ], + [ + 74.60151450676557, + 39.64043505945655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 39.64043505945655 + ], + [ + 74.4866718232819, + 39.835082794385 + ], + [ + 74.37182913979821, + 39.64043505945655 + ], + [ + 74.60151450676557, + 39.64043505945655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 39.64043505945655 + ], + [ + 74.37182913979821, + 39.64043505945655 + ], + [ + 74.4866718232819, + 39.4457873245281 + ], + [ + 74.60151450676557, + 39.64043505945655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 39.64043505945655 + ], + [ + 74.4866718232819, + 39.4457873245281 + ], + [ + 74.71635719024924, + 39.4457873245281 + ], + [ + 74.60151450676557, + 39.64043505945655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 39.64043505945655 + ], + [ + 74.71635719024924, + 39.4457873245281 + ], + [ + 74.83119987373293, + 39.64043505945655 + ], + [ + 74.60151450676557, + 39.64043505945655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 40.029730529313454 + ], + [ + 74.83119987373293, + 40.029730529313454 + ], + [ + 74.71635719024924, + 40.224378264241906 + ], + [ + 74.60151450676557, + 40.029730529313454 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 40.029730529313454 + ], + [ + 74.71635719024924, + 40.224378264241906 + ], + [ + 74.4866718232819, + 40.224378264241906 + ], + [ + 74.60151450676557, + 40.029730529313454 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 40.029730529313454 + ], + [ + 74.4866718232819, + 40.224378264241906 + ], + [ + 74.37182913979821, + 40.029730529313454 + ], + [ + 74.60151450676557, + 40.029730529313454 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 40.029730529313454 + ], + [ + 74.37182913979821, + 40.029730529313454 + ], + [ + 74.4866718232819, + 39.835082794385 + ], + [ + 74.60151450676557, + 40.029730529313454 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 40.029730529313454 + ], + [ + 74.4866718232819, + 39.835082794385 + ], + [ + 74.71635719024924, + 39.835082794385 + ], + [ + 74.60151450676557, + 40.029730529313454 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 40.029730529313454 + ], + [ + 74.71635719024924, + 39.835082794385 + ], + [ + 74.83119987373293, + 40.029730529313454 + ], + [ + 74.60151450676557, + 40.029730529313454 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 40.419025999170366 + ], + [ + 74.83119987373293, + 40.419025999170366 + ], + [ + 74.71635719024924, + 40.61367373409882 + ], + [ + 74.60151450676557, + 40.419025999170366 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 40.419025999170366 + ], + [ + 74.71635719024924, + 40.61367373409882 + ], + [ + 74.4866718232819, + 40.61367373409882 + ], + [ + 74.60151450676557, + 40.419025999170366 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 40.419025999170366 + ], + [ + 74.4866718232819, + 40.61367373409882 + ], + [ + 74.37182913979821, + 40.419025999170366 + ], + [ + 74.60151450676557, + 40.419025999170366 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 40.419025999170366 + ], + [ + 74.37182913979821, + 40.419025999170366 + ], + [ + 74.4866718232819, + 40.22437826424191 + ], + [ + 74.60151450676557, + 40.419025999170366 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 40.419025999170366 + ], + [ + 74.4866718232819, + 40.22437826424191 + ], + [ + 74.71635719024924, + 40.22437826424191 + ], + [ + 74.60151450676557, + 40.419025999170366 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 40.419025999170366 + ], + [ + 74.71635719024924, + 40.22437826424191 + ], + [ + 74.83119987373293, + 40.419025999170366 + ], + [ + 74.60151450676557, + 40.419025999170366 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 40.80832146902727 + ], + [ + 74.83119987373293, + 40.80832146902727 + ], + [ + 74.71635719024924, + 41.00296920395572 + ], + [ + 74.60151450676557, + 40.80832146902727 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 40.80832146902727 + ], + [ + 74.71635719024924, + 41.00296920395572 + ], + [ + 74.4866718232819, + 41.00296920395572 + ], + [ + 74.60151450676557, + 40.80832146902727 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 40.80832146902727 + ], + [ + 74.4866718232819, + 41.00296920395572 + ], + [ + 74.37182913979821, + 40.80832146902727 + ], + [ + 74.60151450676557, + 40.80832146902727 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 40.80832146902727 + ], + [ + 74.37182913979821, + 40.80832146902727 + ], + [ + 74.4866718232819, + 40.61367373409882 + ], + [ + 74.60151450676557, + 40.80832146902727 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 40.80832146902727 + ], + [ + 74.4866718232819, + 40.61367373409882 + ], + [ + 74.71635719024924, + 40.61367373409882 + ], + [ + 74.60151450676557, + 40.80832146902727 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 40.80832146902727 + ], + [ + 74.71635719024924, + 40.61367373409882 + ], + [ + 74.83119987373293, + 40.80832146902727 + ], + [ + 74.60151450676557, + 40.80832146902727 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 41.197616938884174 + ], + [ + 74.83119987373293, + 41.197616938884174 + ], + [ + 74.71635719024924, + 41.392264673812626 + ], + [ + 74.60151450676557, + 41.197616938884174 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 41.197616938884174 + ], + [ + 74.71635719024924, + 41.392264673812626 + ], + [ + 74.4866718232819, + 41.392264673812626 + ], + [ + 74.60151450676557, + 41.197616938884174 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 41.197616938884174 + ], + [ + 74.4866718232819, + 41.392264673812626 + ], + [ + 74.37182913979821, + 41.197616938884174 + ], + [ + 74.60151450676557, + 41.197616938884174 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 41.197616938884174 + ], + [ + 74.37182913979821, + 41.197616938884174 + ], + [ + 74.4866718232819, + 41.00296920395572 + ], + [ + 74.60151450676557, + 41.197616938884174 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 41.197616938884174 + ], + [ + 74.4866718232819, + 41.00296920395572 + ], + [ + 74.71635719024924, + 41.00296920395572 + ], + [ + 74.60151450676557, + 41.197616938884174 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 41.197616938884174 + ], + [ + 74.71635719024924, + 41.00296920395572 + ], + [ + 74.83119987373293, + 41.197616938884174 + ], + [ + 74.60151450676557, + 41.197616938884174 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 41.58691240874108 + ], + [ + 74.83119987373293, + 41.58691240874108 + ], + [ + 74.71635719024924, + 41.78156014366953 + ], + [ + 74.60151450676557, + 41.58691240874108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 41.58691240874108 + ], + [ + 74.71635719024924, + 41.78156014366953 + ], + [ + 74.4866718232819, + 41.78156014366953 + ], + [ + 74.60151450676557, + 41.58691240874108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 41.58691240874108 + ], + [ + 74.4866718232819, + 41.78156014366953 + ], + [ + 74.37182913979821, + 41.58691240874108 + ], + [ + 74.60151450676557, + 41.58691240874108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 41.58691240874108 + ], + [ + 74.37182913979821, + 41.58691240874108 + ], + [ + 74.4866718232819, + 41.392264673812626 + ], + [ + 74.60151450676557, + 41.58691240874108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 41.58691240874108 + ], + [ + 74.4866718232819, + 41.392264673812626 + ], + [ + 74.71635719024924, + 41.392264673812626 + ], + [ + 74.60151450676557, + 41.58691240874108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 41.58691240874108 + ], + [ + 74.71635719024924, + 41.392264673812626 + ], + [ + 74.83119987373293, + 41.58691240874108 + ], + [ + 74.60151450676557, + 41.58691240874108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 41.97620787859798 + ], + [ + 74.83119987373293, + 41.97620787859798 + ], + [ + 74.71635719024924, + 42.170855613526435 + ], + [ + 74.60151450676557, + 41.97620787859798 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 41.97620787859798 + ], + [ + 74.71635719024924, + 42.170855613526435 + ], + [ + 74.4866718232819, + 42.170855613526435 + ], + [ + 74.60151450676557, + 41.97620787859798 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 41.97620787859798 + ], + [ + 74.4866718232819, + 42.170855613526435 + ], + [ + 74.37182913979821, + 41.97620787859798 + ], + [ + 74.60151450676557, + 41.97620787859798 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 41.97620787859798 + ], + [ + 74.37182913979821, + 41.97620787859798 + ], + [ + 74.4866718232819, + 41.78156014366953 + ], + [ + 74.60151450676557, + 41.97620787859798 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 41.97620787859798 + ], + [ + 74.4866718232819, + 41.78156014366953 + ], + [ + 74.71635719024924, + 41.78156014366953 + ], + [ + 74.60151450676557, + 41.97620787859798 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 41.97620787859798 + ], + [ + 74.71635719024924, + 41.78156014366953 + ], + [ + 74.83119987373293, + 41.97620787859798 + ], + [ + 74.60151450676557, + 41.97620787859798 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 42.365503348454894 + ], + [ + 74.83119987373293, + 42.365503348454894 + ], + [ + 74.71635719024924, + 42.560151083383346 + ], + [ + 74.60151450676557, + 42.365503348454894 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 42.365503348454894 + ], + [ + 74.71635719024924, + 42.560151083383346 + ], + [ + 74.4866718232819, + 42.560151083383346 + ], + [ + 74.60151450676557, + 42.365503348454894 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 42.365503348454894 + ], + [ + 74.4866718232819, + 42.560151083383346 + ], + [ + 74.37182913979821, + 42.365503348454894 + ], + [ + 74.60151450676557, + 42.365503348454894 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 42.365503348454894 + ], + [ + 74.37182913979821, + 42.365503348454894 + ], + [ + 74.4866718232819, + 42.17085561352644 + ], + [ + 74.60151450676557, + 42.365503348454894 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 42.365503348454894 + ], + [ + 74.4866718232819, + 42.17085561352644 + ], + [ + 74.71635719024924, + 42.17085561352644 + ], + [ + 74.60151450676557, + 42.365503348454894 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 42.365503348454894 + ], + [ + 74.71635719024924, + 42.17085561352644 + ], + [ + 74.83119987373293, + 42.365503348454894 + ], + [ + 74.60151450676557, + 42.365503348454894 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 42.754798818311805 + ], + [ + 74.83119987373293, + 42.754798818311805 + ], + [ + 74.71635719024924, + 42.94944655324026 + ], + [ + 74.60151450676557, + 42.754798818311805 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 42.754798818311805 + ], + [ + 74.71635719024924, + 42.94944655324026 + ], + [ + 74.4866718232819, + 42.94944655324026 + ], + [ + 74.60151450676557, + 42.754798818311805 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 42.754798818311805 + ], + [ + 74.4866718232819, + 42.94944655324026 + ], + [ + 74.37182913979821, + 42.754798818311805 + ], + [ + 74.60151450676557, + 42.754798818311805 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 42.754798818311805 + ], + [ + 74.37182913979821, + 42.754798818311805 + ], + [ + 74.4866718232819, + 42.56015108338335 + ], + [ + 74.60151450676557, + 42.754798818311805 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 42.754798818311805 + ], + [ + 74.4866718232819, + 42.56015108338335 + ], + [ + 74.71635719024924, + 42.56015108338335 + ], + [ + 74.60151450676557, + 42.754798818311805 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 42.754798818311805 + ], + [ + 74.71635719024924, + 42.56015108338335 + ], + [ + 74.83119987373293, + 42.754798818311805 + ], + [ + 74.60151450676557, + 42.754798818311805 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 43.14409428816871 + ], + [ + 74.83119987373293, + 43.14409428816871 + ], + [ + 74.71635719024924, + 43.33874202309716 + ], + [ + 74.60151450676557, + 43.14409428816871 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 43.14409428816871 + ], + [ + 74.71635719024924, + 43.33874202309716 + ], + [ + 74.4866718232819, + 43.33874202309716 + ], + [ + 74.60151450676557, + 43.14409428816871 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 43.14409428816871 + ], + [ + 74.4866718232819, + 43.33874202309716 + ], + [ + 74.37182913979821, + 43.14409428816871 + ], + [ + 74.60151450676557, + 43.14409428816871 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 43.14409428816871 + ], + [ + 74.37182913979821, + 43.14409428816871 + ], + [ + 74.4866718232819, + 42.94944655324026 + ], + [ + 74.60151450676557, + 43.14409428816871 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 43.14409428816871 + ], + [ + 74.4866718232819, + 42.94944655324026 + ], + [ + 74.71635719024924, + 42.94944655324026 + ], + [ + 74.60151450676557, + 43.14409428816871 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 43.14409428816871 + ], + [ + 74.71635719024924, + 42.94944655324026 + ], + [ + 74.83119987373293, + 43.14409428816871 + ], + [ + 74.60151450676557, + 43.14409428816871 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 43.53338975802561 + ], + [ + 74.83119987373293, + 43.53338975802561 + ], + [ + 74.71635719024924, + 43.728037492954066 + ], + [ + 74.60151450676557, + 43.53338975802561 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 43.53338975802561 + ], + [ + 74.71635719024924, + 43.728037492954066 + ], + [ + 74.4866718232819, + 43.728037492954066 + ], + [ + 74.60151450676557, + 43.53338975802561 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 43.53338975802561 + ], + [ + 74.4866718232819, + 43.728037492954066 + ], + [ + 74.37182913979821, + 43.53338975802561 + ], + [ + 74.60151450676557, + 43.53338975802561 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 43.53338975802561 + ], + [ + 74.37182913979821, + 43.53338975802561 + ], + [ + 74.4866718232819, + 43.33874202309716 + ], + [ + 74.60151450676557, + 43.53338975802561 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 43.53338975802561 + ], + [ + 74.4866718232819, + 43.33874202309716 + ], + [ + 74.71635719024924, + 43.33874202309716 + ], + [ + 74.60151450676557, + 43.53338975802561 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 43.53338975802561 + ], + [ + 74.71635719024924, + 43.33874202309716 + ], + [ + 74.83119987373293, + 43.53338975802561 + ], + [ + 74.60151450676557, + 43.53338975802561 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 43.92268522788252 + ], + [ + 74.83119987373293, + 43.92268522788252 + ], + [ + 74.71635719024924, + 44.11733296281097 + ], + [ + 74.60151450676557, + 43.92268522788252 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 43.92268522788252 + ], + [ + 74.71635719024924, + 44.11733296281097 + ], + [ + 74.4866718232819, + 44.11733296281097 + ], + [ + 74.60151450676557, + 43.92268522788252 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 43.92268522788252 + ], + [ + 74.4866718232819, + 44.11733296281097 + ], + [ + 74.37182913979821, + 43.92268522788252 + ], + [ + 74.60151450676557, + 43.92268522788252 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 43.92268522788252 + ], + [ + 74.37182913979821, + 43.92268522788252 + ], + [ + 74.4866718232819, + 43.728037492954066 + ], + [ + 74.60151450676557, + 43.92268522788252 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 43.92268522788252 + ], + [ + 74.4866718232819, + 43.728037492954066 + ], + [ + 74.71635719024924, + 43.728037492954066 + ], + [ + 74.60151450676557, + 43.92268522788252 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 43.92268522788252 + ], + [ + 74.71635719024924, + 43.728037492954066 + ], + [ + 74.83119987373293, + 43.92268522788252 + ], + [ + 74.60151450676557, + 43.92268522788252 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 44.31198069773942 + ], + [ + 74.83119987373293, + 44.31198069773942 + ], + [ + 74.71635719024924, + 44.506628432667874 + ], + [ + 74.60151450676557, + 44.31198069773942 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 44.31198069773942 + ], + [ + 74.71635719024924, + 44.506628432667874 + ], + [ + 74.4866718232819, + 44.506628432667874 + ], + [ + 74.60151450676557, + 44.31198069773942 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 44.31198069773942 + ], + [ + 74.4866718232819, + 44.506628432667874 + ], + [ + 74.37182913979821, + 44.31198069773942 + ], + [ + 74.60151450676557, + 44.31198069773942 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 44.31198069773942 + ], + [ + 74.37182913979821, + 44.31198069773942 + ], + [ + 74.4866718232819, + 44.11733296281097 + ], + [ + 74.60151450676557, + 44.31198069773942 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 44.31198069773942 + ], + [ + 74.4866718232819, + 44.11733296281097 + ], + [ + 74.71635719024924, + 44.11733296281097 + ], + [ + 74.60151450676557, + 44.31198069773942 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 44.31198069773942 + ], + [ + 74.71635719024924, + 44.11733296281097 + ], + [ + 74.83119987373293, + 44.31198069773942 + ], + [ + 74.60151450676557, + 44.31198069773942 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 44.701276167596326 + ], + [ + 74.83119987373293, + 44.701276167596326 + ], + [ + 74.71635719024924, + 44.89592390252478 + ], + [ + 74.60151450676557, + 44.701276167596326 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 44.701276167596326 + ], + [ + 74.71635719024924, + 44.89592390252478 + ], + [ + 74.4866718232819, + 44.89592390252478 + ], + [ + 74.60151450676557, + 44.701276167596326 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 44.701276167596326 + ], + [ + 74.4866718232819, + 44.89592390252478 + ], + [ + 74.37182913979821, + 44.701276167596326 + ], + [ + 74.60151450676557, + 44.701276167596326 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 44.701276167596326 + ], + [ + 74.37182913979821, + 44.701276167596326 + ], + [ + 74.4866718232819, + 44.506628432667874 + ], + [ + 74.60151450676557, + 44.701276167596326 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 44.701276167596326 + ], + [ + 74.4866718232819, + 44.506628432667874 + ], + [ + 74.71635719024924, + 44.506628432667874 + ], + [ + 74.60151450676557, + 44.701276167596326 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 44.701276167596326 + ], + [ + 74.71635719024924, + 44.506628432667874 + ], + [ + 74.83119987373293, + 44.701276167596326 + ], + [ + 74.60151450676557, + 44.701276167596326 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 45.090571637453245 + ], + [ + 74.83119987373293, + 45.090571637453245 + ], + [ + 74.71635719024924, + 45.2852193723817 + ], + [ + 74.60151450676557, + 45.090571637453245 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 45.090571637453245 + ], + [ + 74.71635719024924, + 45.2852193723817 + ], + [ + 74.4866718232819, + 45.2852193723817 + ], + [ + 74.60151450676557, + 45.090571637453245 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 45.090571637453245 + ], + [ + 74.4866718232819, + 45.2852193723817 + ], + [ + 74.37182913979821, + 45.090571637453245 + ], + [ + 74.60151450676557, + 45.090571637453245 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 45.090571637453245 + ], + [ + 74.37182913979821, + 45.090571637453245 + ], + [ + 74.4866718232819, + 44.89592390252479 + ], + [ + 74.60151450676557, + 45.090571637453245 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 45.090571637453245 + ], + [ + 74.4866718232819, + 44.89592390252479 + ], + [ + 74.71635719024924, + 44.89592390252479 + ], + [ + 74.60151450676557, + 45.090571637453245 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 45.090571637453245 + ], + [ + 74.71635719024924, + 44.89592390252479 + ], + [ + 74.83119987373293, + 45.090571637453245 + ], + [ + 74.60151450676557, + 45.090571637453245 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 45.47986710731015 + ], + [ + 74.83119987373293, + 45.47986710731015 + ], + [ + 74.71635719024924, + 45.6745148422386 + ], + [ + 74.60151450676557, + 45.47986710731015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 45.47986710731015 + ], + [ + 74.71635719024924, + 45.6745148422386 + ], + [ + 74.4866718232819, + 45.6745148422386 + ], + [ + 74.60151450676557, + 45.47986710731015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 45.47986710731015 + ], + [ + 74.4866718232819, + 45.6745148422386 + ], + [ + 74.37182913979821, + 45.47986710731015 + ], + [ + 74.60151450676557, + 45.47986710731015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 45.47986710731015 + ], + [ + 74.37182913979821, + 45.47986710731015 + ], + [ + 74.4866718232819, + 45.2852193723817 + ], + [ + 74.60151450676557, + 45.47986710731015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 45.47986710731015 + ], + [ + 74.4866718232819, + 45.2852193723817 + ], + [ + 74.71635719024924, + 45.2852193723817 + ], + [ + 74.60151450676557, + 45.47986710731015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 45.47986710731015 + ], + [ + 74.71635719024924, + 45.2852193723817 + ], + [ + 74.83119987373293, + 45.47986710731015 + ], + [ + 74.60151450676557, + 45.47986710731015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 45.86916257716705 + ], + [ + 74.83119987373293, + 45.86916257716705 + ], + [ + 74.71635719024924, + 46.063810312095505 + ], + [ + 74.60151450676557, + 45.86916257716705 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 45.86916257716705 + ], + [ + 74.71635719024924, + 46.063810312095505 + ], + [ + 74.4866718232819, + 46.063810312095505 + ], + [ + 74.60151450676557, + 45.86916257716705 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 45.86916257716705 + ], + [ + 74.4866718232819, + 46.063810312095505 + ], + [ + 74.37182913979821, + 45.86916257716705 + ], + [ + 74.60151450676557, + 45.86916257716705 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 45.86916257716705 + ], + [ + 74.37182913979821, + 45.86916257716705 + ], + [ + 74.4866718232819, + 45.6745148422386 + ], + [ + 74.60151450676557, + 45.86916257716705 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 45.86916257716705 + ], + [ + 74.4866718232819, + 45.6745148422386 + ], + [ + 74.71635719024924, + 45.6745148422386 + ], + [ + 74.60151450676557, + 45.86916257716705 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 45.86916257716705 + ], + [ + 74.71635719024924, + 45.6745148422386 + ], + [ + 74.83119987373293, + 45.86916257716705 + ], + [ + 74.60151450676557, + 45.86916257716705 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 46.25845804702396 + ], + [ + 74.83119987373293, + 46.25845804702396 + ], + [ + 74.71635719024924, + 46.45310578195241 + ], + [ + 74.60151450676557, + 46.25845804702396 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 46.25845804702396 + ], + [ + 74.71635719024924, + 46.45310578195241 + ], + [ + 74.4866718232819, + 46.45310578195241 + ], + [ + 74.60151450676557, + 46.25845804702396 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 46.25845804702396 + ], + [ + 74.4866718232819, + 46.45310578195241 + ], + [ + 74.37182913979821, + 46.25845804702396 + ], + [ + 74.60151450676557, + 46.25845804702396 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 46.25845804702396 + ], + [ + 74.37182913979821, + 46.25845804702396 + ], + [ + 74.4866718232819, + 46.063810312095505 + ], + [ + 74.60151450676557, + 46.25845804702396 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 46.25845804702396 + ], + [ + 74.4866718232819, + 46.063810312095505 + ], + [ + 74.71635719024924, + 46.063810312095505 + ], + [ + 74.60151450676557, + 46.25845804702396 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 46.25845804702396 + ], + [ + 74.71635719024924, + 46.063810312095505 + ], + [ + 74.83119987373293, + 46.25845804702396 + ], + [ + 74.60151450676557, + 46.25845804702396 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 46.64775351688086 + ], + [ + 74.83119987373293, + 46.64775351688086 + ], + [ + 74.71635719024924, + 46.842401251809314 + ], + [ + 74.60151450676557, + 46.64775351688086 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 46.64775351688086 + ], + [ + 74.71635719024924, + 46.842401251809314 + ], + [ + 74.4866718232819, + 46.842401251809314 + ], + [ + 74.60151450676557, + 46.64775351688086 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 46.64775351688086 + ], + [ + 74.4866718232819, + 46.842401251809314 + ], + [ + 74.37182913979821, + 46.64775351688086 + ], + [ + 74.60151450676557, + 46.64775351688086 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 46.64775351688086 + ], + [ + 74.37182913979821, + 46.64775351688086 + ], + [ + 74.4866718232819, + 46.45310578195241 + ], + [ + 74.60151450676557, + 46.64775351688086 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 46.64775351688086 + ], + [ + 74.4866718232819, + 46.45310578195241 + ], + [ + 74.71635719024924, + 46.45310578195241 + ], + [ + 74.60151450676557, + 46.64775351688086 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 46.64775351688086 + ], + [ + 74.71635719024924, + 46.45310578195241 + ], + [ + 74.83119987373293, + 46.64775351688086 + ], + [ + 74.60151450676557, + 46.64775351688086 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 47.037048986737766 + ], + [ + 74.83119987373293, + 47.037048986737766 + ], + [ + 74.71635719024924, + 47.23169672166622 + ], + [ + 74.60151450676557, + 47.037048986737766 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 47.037048986737766 + ], + [ + 74.71635719024924, + 47.23169672166622 + ], + [ + 74.4866718232819, + 47.23169672166622 + ], + [ + 74.60151450676557, + 47.037048986737766 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 47.037048986737766 + ], + [ + 74.4866718232819, + 47.23169672166622 + ], + [ + 74.37182913979821, + 47.037048986737766 + ], + [ + 74.60151450676557, + 47.037048986737766 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 47.037048986737766 + ], + [ + 74.37182913979821, + 47.037048986737766 + ], + [ + 74.4866718232819, + 46.842401251809314 + ], + [ + 74.60151450676557, + 47.037048986737766 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 47.037048986737766 + ], + [ + 74.4866718232819, + 46.842401251809314 + ], + [ + 74.71635719024924, + 46.842401251809314 + ], + [ + 74.60151450676557, + 47.037048986737766 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 47.037048986737766 + ], + [ + 74.71635719024924, + 46.842401251809314 + ], + [ + 74.83119987373293, + 47.037048986737766 + ], + [ + 74.60151450676557, + 47.037048986737766 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 47.42634445659467 + ], + [ + 74.83119987373293, + 47.42634445659467 + ], + [ + 74.71635719024924, + 47.62099219152312 + ], + [ + 74.60151450676557, + 47.42634445659467 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 47.42634445659467 + ], + [ + 74.71635719024924, + 47.62099219152312 + ], + [ + 74.4866718232819, + 47.62099219152312 + ], + [ + 74.60151450676557, + 47.42634445659467 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 47.42634445659467 + ], + [ + 74.4866718232819, + 47.62099219152312 + ], + [ + 74.37182913979821, + 47.42634445659467 + ], + [ + 74.60151450676557, + 47.42634445659467 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 47.42634445659467 + ], + [ + 74.37182913979821, + 47.42634445659467 + ], + [ + 74.4866718232819, + 47.23169672166622 + ], + [ + 74.60151450676557, + 47.42634445659467 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 47.42634445659467 + ], + [ + 74.4866718232819, + 47.23169672166622 + ], + [ + 74.71635719024924, + 47.23169672166622 + ], + [ + 74.60151450676557, + 47.42634445659467 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 47.42634445659467 + ], + [ + 74.71635719024924, + 47.23169672166622 + ], + [ + 74.83119987373293, + 47.42634445659467 + ], + [ + 74.60151450676557, + 47.42634445659467 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 47.81563992645159 + ], + [ + 74.83119987373293, + 47.81563992645159 + ], + [ + 74.71635719024924, + 48.01028766138004 + ], + [ + 74.60151450676557, + 47.81563992645159 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 47.81563992645159 + ], + [ + 74.71635719024924, + 48.01028766138004 + ], + [ + 74.4866718232819, + 48.01028766138004 + ], + [ + 74.60151450676557, + 47.81563992645159 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 47.81563992645159 + ], + [ + 74.4866718232819, + 48.01028766138004 + ], + [ + 74.37182913979821, + 47.81563992645159 + ], + [ + 74.60151450676557, + 47.81563992645159 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 47.81563992645159 + ], + [ + 74.37182913979821, + 47.81563992645159 + ], + [ + 74.4866718232819, + 47.620992191523136 + ], + [ + 74.60151450676557, + 47.81563992645159 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 47.81563992645159 + ], + [ + 74.4866718232819, + 47.620992191523136 + ], + [ + 74.71635719024924, + 47.620992191523136 + ], + [ + 74.60151450676557, + 47.81563992645159 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.60151450676557, + 47.81563992645159 + ], + [ + 74.71635719024924, + 47.620992191523136 + ], + [ + 74.83119987373293, + 47.81563992645159 + ], + [ + 74.60151450676557, + 47.81563992645159 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 11.805808964687746 + ], + [ + 75.17572792418396, + 11.805808964687746 + ], + [ + 75.06088524070027, + 12.0004566996162 + ], + [ + 74.9460425572166, + 11.805808964687746 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 11.805808964687746 + ], + [ + 75.06088524070027, + 12.0004566996162 + ], + [ + 74.83119987373293, + 12.0004566996162 + ], + [ + 74.9460425572166, + 11.805808964687746 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 11.805808964687746 + ], + [ + 74.83119987373293, + 12.0004566996162 + ], + [ + 74.71635719024924, + 11.805808964687746 + ], + [ + 74.9460425572166, + 11.805808964687746 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 11.805808964687746 + ], + [ + 74.71635719024924, + 11.805808964687746 + ], + [ + 74.83119987373293, + 11.611161229759292 + ], + [ + 74.9460425572166, + 11.805808964687746 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 11.805808964687746 + ], + [ + 74.83119987373293, + 11.611161229759292 + ], + [ + 75.06088524070027, + 11.611161229759292 + ], + [ + 74.9460425572166, + 11.805808964687746 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 11.805808964687746 + ], + [ + 75.06088524070027, + 11.611161229759292 + ], + [ + 75.17572792418396, + 11.805808964687746 + ], + [ + 74.9460425572166, + 11.805808964687746 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 12.195104434544652 + ], + [ + 75.17572792418396, + 12.195104434544652 + ], + [ + 75.06088524070027, + 12.389752169473105 + ], + [ + 74.9460425572166, + 12.195104434544652 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 12.195104434544652 + ], + [ + 75.06088524070027, + 12.389752169473105 + ], + [ + 74.83119987373293, + 12.389752169473105 + ], + [ + 74.9460425572166, + 12.195104434544652 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 12.195104434544652 + ], + [ + 74.83119987373293, + 12.389752169473105 + ], + [ + 74.71635719024924, + 12.195104434544652 + ], + [ + 74.9460425572166, + 12.195104434544652 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 12.195104434544652 + ], + [ + 74.71635719024924, + 12.195104434544652 + ], + [ + 74.83119987373293, + 12.000456699616198 + ], + [ + 74.9460425572166, + 12.195104434544652 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 12.195104434544652 + ], + [ + 74.83119987373293, + 12.000456699616198 + ], + [ + 75.06088524070027, + 12.000456699616198 + ], + [ + 74.9460425572166, + 12.195104434544652 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 12.195104434544652 + ], + [ + 75.06088524070027, + 12.000456699616198 + ], + [ + 75.17572792418396, + 12.195104434544652 + ], + [ + 74.9460425572166, + 12.195104434544652 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 12.58439990440156 + ], + [ + 75.17572792418396, + 12.58439990440156 + ], + [ + 75.06088524070027, + 12.779047639330013 + ], + [ + 74.9460425572166, + 12.58439990440156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 12.58439990440156 + ], + [ + 75.06088524070027, + 12.779047639330013 + ], + [ + 74.83119987373293, + 12.779047639330013 + ], + [ + 74.9460425572166, + 12.58439990440156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 12.58439990440156 + ], + [ + 74.83119987373293, + 12.779047639330013 + ], + [ + 74.71635719024924, + 12.58439990440156 + ], + [ + 74.9460425572166, + 12.58439990440156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 12.58439990440156 + ], + [ + 74.71635719024924, + 12.58439990440156 + ], + [ + 74.83119987373293, + 12.389752169473105 + ], + [ + 74.9460425572166, + 12.58439990440156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 12.58439990440156 + ], + [ + 74.83119987373293, + 12.389752169473105 + ], + [ + 75.06088524070027, + 12.389752169473105 + ], + [ + 74.9460425572166, + 12.58439990440156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 12.58439990440156 + ], + [ + 75.06088524070027, + 12.389752169473105 + ], + [ + 75.17572792418396, + 12.58439990440156 + ], + [ + 74.9460425572166, + 12.58439990440156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 12.973695374258465 + ], + [ + 75.17572792418396, + 12.973695374258465 + ], + [ + 75.06088524070027, + 13.16834310918692 + ], + [ + 74.9460425572166, + 12.973695374258465 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 12.973695374258465 + ], + [ + 75.06088524070027, + 13.16834310918692 + ], + [ + 74.83119987373293, + 13.16834310918692 + ], + [ + 74.9460425572166, + 12.973695374258465 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 12.973695374258465 + ], + [ + 74.83119987373293, + 13.16834310918692 + ], + [ + 74.71635719024924, + 12.973695374258465 + ], + [ + 74.9460425572166, + 12.973695374258465 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 12.973695374258465 + ], + [ + 74.71635719024924, + 12.973695374258465 + ], + [ + 74.83119987373293, + 12.779047639330011 + ], + [ + 74.9460425572166, + 12.973695374258465 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 12.973695374258465 + ], + [ + 74.83119987373293, + 12.779047639330011 + ], + [ + 75.06088524070027, + 12.779047639330011 + ], + [ + 74.9460425572166, + 12.973695374258465 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 12.973695374258465 + ], + [ + 75.06088524070027, + 12.779047639330011 + ], + [ + 75.17572792418396, + 12.973695374258465 + ], + [ + 74.9460425572166, + 12.973695374258465 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 13.362990844115371 + ], + [ + 75.17572792418396, + 13.362990844115371 + ], + [ + 75.06088524070027, + 13.557638579043825 + ], + [ + 74.9460425572166, + 13.362990844115371 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 13.362990844115371 + ], + [ + 75.06088524070027, + 13.557638579043825 + ], + [ + 74.83119987373293, + 13.557638579043825 + ], + [ + 74.9460425572166, + 13.362990844115371 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 13.362990844115371 + ], + [ + 74.83119987373293, + 13.557638579043825 + ], + [ + 74.71635719024924, + 13.362990844115371 + ], + [ + 74.9460425572166, + 13.362990844115371 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 13.362990844115371 + ], + [ + 74.71635719024924, + 13.362990844115371 + ], + [ + 74.83119987373293, + 13.168343109186917 + ], + [ + 74.9460425572166, + 13.362990844115371 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 13.362990844115371 + ], + [ + 74.83119987373293, + 13.168343109186917 + ], + [ + 75.06088524070027, + 13.168343109186917 + ], + [ + 74.9460425572166, + 13.362990844115371 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 13.362990844115371 + ], + [ + 75.06088524070027, + 13.168343109186917 + ], + [ + 75.17572792418396, + 13.362990844115371 + ], + [ + 74.9460425572166, + 13.362990844115371 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 13.752286313972277 + ], + [ + 75.17572792418396, + 13.752286313972277 + ], + [ + 75.06088524070027, + 13.946934048900731 + ], + [ + 74.9460425572166, + 13.752286313972277 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 13.752286313972277 + ], + [ + 75.06088524070027, + 13.946934048900731 + ], + [ + 74.83119987373293, + 13.946934048900731 + ], + [ + 74.9460425572166, + 13.752286313972277 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 13.752286313972277 + ], + [ + 74.83119987373293, + 13.946934048900731 + ], + [ + 74.71635719024924, + 13.752286313972277 + ], + [ + 74.9460425572166, + 13.752286313972277 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 13.752286313972277 + ], + [ + 74.71635719024924, + 13.752286313972277 + ], + [ + 74.83119987373293, + 13.557638579043823 + ], + [ + 74.9460425572166, + 13.752286313972277 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 13.752286313972277 + ], + [ + 74.83119987373293, + 13.557638579043823 + ], + [ + 75.06088524070027, + 13.557638579043823 + ], + [ + 74.9460425572166, + 13.752286313972277 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 13.752286313972277 + ], + [ + 75.06088524070027, + 13.557638579043823 + ], + [ + 75.17572792418396, + 13.752286313972277 + ], + [ + 74.9460425572166, + 13.752286313972277 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 14.141581783829183 + ], + [ + 75.17572792418396, + 14.141581783829183 + ], + [ + 75.06088524070027, + 14.336229518757637 + ], + [ + 74.9460425572166, + 14.141581783829183 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 14.141581783829183 + ], + [ + 75.06088524070027, + 14.336229518757637 + ], + [ + 74.83119987373293, + 14.336229518757637 + ], + [ + 74.9460425572166, + 14.141581783829183 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 14.141581783829183 + ], + [ + 74.83119987373293, + 14.336229518757637 + ], + [ + 74.71635719024924, + 14.141581783829183 + ], + [ + 74.9460425572166, + 14.141581783829183 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 14.141581783829183 + ], + [ + 74.71635719024924, + 14.141581783829183 + ], + [ + 74.83119987373293, + 13.94693404890073 + ], + [ + 74.9460425572166, + 14.141581783829183 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 14.141581783829183 + ], + [ + 74.83119987373293, + 13.94693404890073 + ], + [ + 75.06088524070027, + 13.94693404890073 + ], + [ + 74.9460425572166, + 14.141581783829183 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 14.141581783829183 + ], + [ + 75.06088524070027, + 13.94693404890073 + ], + [ + 75.17572792418396, + 14.141581783829183 + ], + [ + 74.9460425572166, + 14.141581783829183 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 14.530877253686091 + ], + [ + 75.17572792418396, + 14.530877253686091 + ], + [ + 75.06088524070027, + 14.725524988614545 + ], + [ + 74.9460425572166, + 14.530877253686091 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 14.530877253686091 + ], + [ + 75.06088524070027, + 14.725524988614545 + ], + [ + 74.83119987373293, + 14.725524988614545 + ], + [ + 74.9460425572166, + 14.530877253686091 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 14.530877253686091 + ], + [ + 74.83119987373293, + 14.725524988614545 + ], + [ + 74.71635719024924, + 14.530877253686091 + ], + [ + 74.9460425572166, + 14.530877253686091 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 14.530877253686091 + ], + [ + 74.71635719024924, + 14.530877253686091 + ], + [ + 74.83119987373293, + 14.336229518757637 + ], + [ + 74.9460425572166, + 14.530877253686091 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 14.530877253686091 + ], + [ + 74.83119987373293, + 14.336229518757637 + ], + [ + 75.06088524070027, + 14.336229518757637 + ], + [ + 74.9460425572166, + 14.530877253686091 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 14.530877253686091 + ], + [ + 75.06088524070027, + 14.336229518757637 + ], + [ + 75.17572792418396, + 14.530877253686091 + ], + [ + 74.9460425572166, + 14.530877253686091 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 14.920172723542997 + ], + [ + 75.17572792418396, + 14.920172723542997 + ], + [ + 75.06088524070027, + 15.114820458471451 + ], + [ + 74.9460425572166, + 14.920172723542997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 14.920172723542997 + ], + [ + 75.06088524070027, + 15.114820458471451 + ], + [ + 74.83119987373293, + 15.114820458471451 + ], + [ + 74.9460425572166, + 14.920172723542997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 14.920172723542997 + ], + [ + 74.83119987373293, + 15.114820458471451 + ], + [ + 74.71635719024924, + 14.920172723542997 + ], + [ + 74.9460425572166, + 14.920172723542997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 14.920172723542997 + ], + [ + 74.71635719024924, + 14.920172723542997 + ], + [ + 74.83119987373293, + 14.725524988614543 + ], + [ + 74.9460425572166, + 14.920172723542997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 14.920172723542997 + ], + [ + 74.83119987373293, + 14.725524988614543 + ], + [ + 75.06088524070027, + 14.725524988614543 + ], + [ + 74.9460425572166, + 14.920172723542997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 14.920172723542997 + ], + [ + 75.06088524070027, + 14.725524988614543 + ], + [ + 75.17572792418396, + 14.920172723542997 + ], + [ + 74.9460425572166, + 14.920172723542997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 15.309468193399903 + ], + [ + 75.17572792418396, + 15.309468193399903 + ], + [ + 75.06088524070027, + 15.504115928328357 + ], + [ + 74.9460425572166, + 15.309468193399903 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 15.309468193399903 + ], + [ + 75.06088524070027, + 15.504115928328357 + ], + [ + 74.83119987373293, + 15.504115928328357 + ], + [ + 74.9460425572166, + 15.309468193399903 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 15.309468193399903 + ], + [ + 74.83119987373293, + 15.504115928328357 + ], + [ + 74.71635719024924, + 15.309468193399903 + ], + [ + 74.9460425572166, + 15.309468193399903 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 15.309468193399903 + ], + [ + 74.71635719024924, + 15.309468193399903 + ], + [ + 74.83119987373293, + 15.11482045847145 + ], + [ + 74.9460425572166, + 15.309468193399903 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 15.309468193399903 + ], + [ + 74.83119987373293, + 15.11482045847145 + ], + [ + 75.06088524070027, + 15.11482045847145 + ], + [ + 74.9460425572166, + 15.309468193399903 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 15.309468193399903 + ], + [ + 75.06088524070027, + 15.11482045847145 + ], + [ + 75.17572792418396, + 15.309468193399903 + ], + [ + 74.9460425572166, + 15.309468193399903 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 15.69876366325681 + ], + [ + 75.17572792418396, + 15.69876366325681 + ], + [ + 75.06088524070027, + 15.893411398185265 + ], + [ + 74.9460425572166, + 15.69876366325681 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 15.69876366325681 + ], + [ + 75.06088524070027, + 15.893411398185265 + ], + [ + 74.83119987373293, + 15.893411398185265 + ], + [ + 74.9460425572166, + 15.69876366325681 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 15.69876366325681 + ], + [ + 74.83119987373293, + 15.893411398185265 + ], + [ + 74.71635719024924, + 15.69876366325681 + ], + [ + 74.9460425572166, + 15.69876366325681 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 15.69876366325681 + ], + [ + 74.71635719024924, + 15.69876366325681 + ], + [ + 74.83119987373293, + 15.504115928328357 + ], + [ + 74.9460425572166, + 15.69876366325681 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 15.69876366325681 + ], + [ + 74.83119987373293, + 15.504115928328357 + ], + [ + 75.06088524070027, + 15.504115928328357 + ], + [ + 74.9460425572166, + 15.69876366325681 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 15.69876366325681 + ], + [ + 75.06088524070027, + 15.504115928328357 + ], + [ + 75.17572792418396, + 15.69876366325681 + ], + [ + 74.9460425572166, + 15.69876366325681 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 16.088059133113717 + ], + [ + 75.17572792418396, + 16.088059133113717 + ], + [ + 75.06088524070027, + 16.28270686804217 + ], + [ + 74.9460425572166, + 16.088059133113717 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 16.088059133113717 + ], + [ + 75.06088524070027, + 16.28270686804217 + ], + [ + 74.83119987373293, + 16.28270686804217 + ], + [ + 74.9460425572166, + 16.088059133113717 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 16.088059133113717 + ], + [ + 74.83119987373293, + 16.28270686804217 + ], + [ + 74.71635719024924, + 16.088059133113717 + ], + [ + 74.9460425572166, + 16.088059133113717 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 16.088059133113717 + ], + [ + 74.71635719024924, + 16.088059133113717 + ], + [ + 74.83119987373293, + 15.893411398185263 + ], + [ + 74.9460425572166, + 16.088059133113717 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 16.088059133113717 + ], + [ + 74.83119987373293, + 15.893411398185263 + ], + [ + 75.06088524070027, + 15.893411398185263 + ], + [ + 74.9460425572166, + 16.088059133113717 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 16.088059133113717 + ], + [ + 75.06088524070027, + 15.893411398185263 + ], + [ + 75.17572792418396, + 16.088059133113717 + ], + [ + 74.9460425572166, + 16.088059133113717 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 16.477354602970625 + ], + [ + 75.17572792418396, + 16.477354602970625 + ], + [ + 75.06088524070027, + 16.672002337899077 + ], + [ + 74.9460425572166, + 16.477354602970625 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 16.477354602970625 + ], + [ + 75.06088524070027, + 16.672002337899077 + ], + [ + 74.83119987373293, + 16.672002337899077 + ], + [ + 74.9460425572166, + 16.477354602970625 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 16.477354602970625 + ], + [ + 74.83119987373293, + 16.672002337899077 + ], + [ + 74.71635719024924, + 16.477354602970625 + ], + [ + 74.9460425572166, + 16.477354602970625 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 16.477354602970625 + ], + [ + 74.71635719024924, + 16.477354602970625 + ], + [ + 74.83119987373293, + 16.282706868042172 + ], + [ + 74.9460425572166, + 16.477354602970625 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 16.477354602970625 + ], + [ + 74.83119987373293, + 16.282706868042172 + ], + [ + 75.06088524070027, + 16.282706868042172 + ], + [ + 74.9460425572166, + 16.477354602970625 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 16.477354602970625 + ], + [ + 75.06088524070027, + 16.282706868042172 + ], + [ + 75.17572792418396, + 16.477354602970625 + ], + [ + 74.9460425572166, + 16.477354602970625 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 16.86665007282753 + ], + [ + 75.17572792418396, + 16.86665007282753 + ], + [ + 75.06088524070027, + 17.06129780775598 + ], + [ + 74.9460425572166, + 16.86665007282753 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 16.86665007282753 + ], + [ + 75.06088524070027, + 17.06129780775598 + ], + [ + 74.83119987373293, + 17.06129780775598 + ], + [ + 74.9460425572166, + 16.86665007282753 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 16.86665007282753 + ], + [ + 74.83119987373293, + 17.06129780775598 + ], + [ + 74.71635719024924, + 16.86665007282753 + ], + [ + 74.9460425572166, + 16.86665007282753 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 16.86665007282753 + ], + [ + 74.71635719024924, + 16.86665007282753 + ], + [ + 74.83119987373293, + 16.672002337899077 + ], + [ + 74.9460425572166, + 16.86665007282753 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 16.86665007282753 + ], + [ + 74.83119987373293, + 16.672002337899077 + ], + [ + 75.06088524070027, + 16.672002337899077 + ], + [ + 74.9460425572166, + 16.86665007282753 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 16.86665007282753 + ], + [ + 75.06088524070027, + 16.672002337899077 + ], + [ + 75.17572792418396, + 16.86665007282753 + ], + [ + 74.9460425572166, + 16.86665007282753 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 17.255945542684437 + ], + [ + 75.17572792418396, + 17.255945542684437 + ], + [ + 75.06088524070027, + 17.45059327761289 + ], + [ + 74.9460425572166, + 17.255945542684437 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 17.255945542684437 + ], + [ + 75.06088524070027, + 17.45059327761289 + ], + [ + 74.83119987373293, + 17.45059327761289 + ], + [ + 74.9460425572166, + 17.255945542684437 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 17.255945542684437 + ], + [ + 74.83119987373293, + 17.45059327761289 + ], + [ + 74.71635719024924, + 17.255945542684437 + ], + [ + 74.9460425572166, + 17.255945542684437 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 17.255945542684437 + ], + [ + 74.71635719024924, + 17.255945542684437 + ], + [ + 74.83119987373293, + 17.061297807755984 + ], + [ + 74.9460425572166, + 17.255945542684437 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 17.255945542684437 + ], + [ + 74.83119987373293, + 17.061297807755984 + ], + [ + 75.06088524070027, + 17.061297807755984 + ], + [ + 74.9460425572166, + 17.255945542684437 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 17.255945542684437 + ], + [ + 75.06088524070027, + 17.061297807755984 + ], + [ + 75.17572792418396, + 17.255945542684437 + ], + [ + 74.9460425572166, + 17.255945542684437 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 17.64524101254134 + ], + [ + 75.17572792418396, + 17.64524101254134 + ], + [ + 75.06088524070027, + 17.839888747469793 + ], + [ + 74.9460425572166, + 17.64524101254134 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 17.64524101254134 + ], + [ + 75.06088524070027, + 17.839888747469793 + ], + [ + 74.83119987373293, + 17.839888747469793 + ], + [ + 74.9460425572166, + 17.64524101254134 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 17.64524101254134 + ], + [ + 74.83119987373293, + 17.839888747469793 + ], + [ + 74.71635719024924, + 17.64524101254134 + ], + [ + 74.9460425572166, + 17.64524101254134 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 17.64524101254134 + ], + [ + 74.71635719024924, + 17.64524101254134 + ], + [ + 74.83119987373293, + 17.45059327761289 + ], + [ + 74.9460425572166, + 17.64524101254134 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 17.64524101254134 + ], + [ + 74.83119987373293, + 17.45059327761289 + ], + [ + 75.06088524070027, + 17.45059327761289 + ], + [ + 74.9460425572166, + 17.64524101254134 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 17.64524101254134 + ], + [ + 75.06088524070027, + 17.45059327761289 + ], + [ + 75.17572792418396, + 17.64524101254134 + ], + [ + 74.9460425572166, + 17.64524101254134 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 18.03453648239825 + ], + [ + 75.17572792418396, + 18.03453648239825 + ], + [ + 75.06088524070027, + 18.2291842173267 + ], + [ + 74.9460425572166, + 18.03453648239825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 18.03453648239825 + ], + [ + 75.06088524070027, + 18.2291842173267 + ], + [ + 74.83119987373293, + 18.2291842173267 + ], + [ + 74.9460425572166, + 18.03453648239825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 18.03453648239825 + ], + [ + 74.83119987373293, + 18.2291842173267 + ], + [ + 74.71635719024924, + 18.03453648239825 + ], + [ + 74.9460425572166, + 18.03453648239825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 18.03453648239825 + ], + [ + 74.71635719024924, + 18.03453648239825 + ], + [ + 74.83119987373293, + 17.839888747469796 + ], + [ + 74.9460425572166, + 18.03453648239825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 18.03453648239825 + ], + [ + 74.83119987373293, + 17.839888747469796 + ], + [ + 75.06088524070027, + 17.839888747469796 + ], + [ + 74.9460425572166, + 18.03453648239825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 18.03453648239825 + ], + [ + 75.06088524070027, + 17.839888747469796 + ], + [ + 75.17572792418396, + 18.03453648239825 + ], + [ + 74.9460425572166, + 18.03453648239825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 18.423831952255156 + ], + [ + 75.17572792418396, + 18.423831952255156 + ], + [ + 75.06088524070027, + 18.61847968718361 + ], + [ + 74.9460425572166, + 18.423831952255156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 18.423831952255156 + ], + [ + 75.06088524070027, + 18.61847968718361 + ], + [ + 74.83119987373293, + 18.61847968718361 + ], + [ + 74.9460425572166, + 18.423831952255156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 18.423831952255156 + ], + [ + 74.83119987373293, + 18.61847968718361 + ], + [ + 74.71635719024924, + 18.423831952255156 + ], + [ + 74.9460425572166, + 18.423831952255156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 18.423831952255156 + ], + [ + 74.71635719024924, + 18.423831952255156 + ], + [ + 74.83119987373293, + 18.229184217326704 + ], + [ + 74.9460425572166, + 18.423831952255156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 18.423831952255156 + ], + [ + 74.83119987373293, + 18.229184217326704 + ], + [ + 75.06088524070027, + 18.229184217326704 + ], + [ + 74.9460425572166, + 18.423831952255156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 18.423831952255156 + ], + [ + 75.06088524070027, + 18.229184217326704 + ], + [ + 75.17572792418396, + 18.423831952255156 + ], + [ + 74.9460425572166, + 18.423831952255156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 18.81312742211206 + ], + [ + 75.17572792418396, + 18.81312742211206 + ], + [ + 75.06088524070027, + 19.007775157040513 + ], + [ + 74.9460425572166, + 18.81312742211206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 18.81312742211206 + ], + [ + 75.06088524070027, + 19.007775157040513 + ], + [ + 74.83119987373293, + 19.007775157040513 + ], + [ + 74.9460425572166, + 18.81312742211206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 18.81312742211206 + ], + [ + 74.83119987373293, + 19.007775157040513 + ], + [ + 74.71635719024924, + 18.81312742211206 + ], + [ + 74.9460425572166, + 18.81312742211206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 18.81312742211206 + ], + [ + 74.71635719024924, + 18.81312742211206 + ], + [ + 74.83119987373293, + 18.61847968718361 + ], + [ + 74.9460425572166, + 18.81312742211206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 18.81312742211206 + ], + [ + 74.83119987373293, + 18.61847968718361 + ], + [ + 75.06088524070027, + 18.61847968718361 + ], + [ + 74.9460425572166, + 18.81312742211206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 18.81312742211206 + ], + [ + 75.06088524070027, + 18.61847968718361 + ], + [ + 75.17572792418396, + 18.81312742211206 + ], + [ + 74.9460425572166, + 18.81312742211206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 19.20242289196897 + ], + [ + 75.17572792418396, + 19.20242289196897 + ], + [ + 75.06088524070027, + 19.39707062689742 + ], + [ + 74.9460425572166, + 19.20242289196897 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 19.20242289196897 + ], + [ + 75.06088524070027, + 19.39707062689742 + ], + [ + 74.83119987373293, + 19.39707062689742 + ], + [ + 74.9460425572166, + 19.20242289196897 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 19.20242289196897 + ], + [ + 74.83119987373293, + 19.39707062689742 + ], + [ + 74.71635719024924, + 19.20242289196897 + ], + [ + 74.9460425572166, + 19.20242289196897 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 19.20242289196897 + ], + [ + 74.71635719024924, + 19.20242289196897 + ], + [ + 74.83119987373293, + 19.007775157040516 + ], + [ + 74.9460425572166, + 19.20242289196897 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 19.20242289196897 + ], + [ + 74.83119987373293, + 19.007775157040516 + ], + [ + 75.06088524070027, + 19.007775157040516 + ], + [ + 74.9460425572166, + 19.20242289196897 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 19.20242289196897 + ], + [ + 75.06088524070027, + 19.007775157040516 + ], + [ + 75.17572792418396, + 19.20242289196897 + ], + [ + 74.9460425572166, + 19.20242289196897 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 19.591718361825876 + ], + [ + 75.17572792418396, + 19.591718361825876 + ], + [ + 75.06088524070027, + 19.78636609675433 + ], + [ + 74.9460425572166, + 19.591718361825876 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 19.591718361825876 + ], + [ + 75.06088524070027, + 19.78636609675433 + ], + [ + 74.83119987373293, + 19.78636609675433 + ], + [ + 74.9460425572166, + 19.591718361825876 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 19.591718361825876 + ], + [ + 74.83119987373293, + 19.78636609675433 + ], + [ + 74.71635719024924, + 19.591718361825876 + ], + [ + 74.9460425572166, + 19.591718361825876 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 19.591718361825876 + ], + [ + 74.71635719024924, + 19.591718361825876 + ], + [ + 74.83119987373293, + 19.397070626897424 + ], + [ + 74.9460425572166, + 19.591718361825876 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 19.591718361825876 + ], + [ + 74.83119987373293, + 19.397070626897424 + ], + [ + 75.06088524070027, + 19.397070626897424 + ], + [ + 74.9460425572166, + 19.591718361825876 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 19.591718361825876 + ], + [ + 75.06088524070027, + 19.397070626897424 + ], + [ + 75.17572792418396, + 19.591718361825876 + ], + [ + 74.9460425572166, + 19.591718361825876 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 19.98101383168278 + ], + [ + 75.17572792418396, + 19.98101383168278 + ], + [ + 75.06088524070027, + 20.175661566611232 + ], + [ + 74.9460425572166, + 19.98101383168278 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 19.98101383168278 + ], + [ + 75.06088524070027, + 20.175661566611232 + ], + [ + 74.83119987373293, + 20.175661566611232 + ], + [ + 74.9460425572166, + 19.98101383168278 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 19.98101383168278 + ], + [ + 74.83119987373293, + 20.175661566611232 + ], + [ + 74.71635719024924, + 19.98101383168278 + ], + [ + 74.9460425572166, + 19.98101383168278 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 19.98101383168278 + ], + [ + 74.71635719024924, + 19.98101383168278 + ], + [ + 74.83119987373293, + 19.78636609675433 + ], + [ + 74.9460425572166, + 19.98101383168278 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 19.98101383168278 + ], + [ + 74.83119987373293, + 19.78636609675433 + ], + [ + 75.06088524070027, + 19.78636609675433 + ], + [ + 74.9460425572166, + 19.98101383168278 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 19.98101383168278 + ], + [ + 75.06088524070027, + 19.78636609675433 + ], + [ + 75.17572792418396, + 19.98101383168278 + ], + [ + 74.9460425572166, + 19.98101383168278 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 20.370309301539685 + ], + [ + 75.17572792418396, + 20.370309301539685 + ], + [ + 75.06088524070027, + 20.564957036468137 + ], + [ + 74.9460425572166, + 20.370309301539685 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 20.370309301539685 + ], + [ + 75.06088524070027, + 20.564957036468137 + ], + [ + 74.83119987373293, + 20.564957036468137 + ], + [ + 74.9460425572166, + 20.370309301539685 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 20.370309301539685 + ], + [ + 74.83119987373293, + 20.564957036468137 + ], + [ + 74.71635719024924, + 20.370309301539685 + ], + [ + 74.9460425572166, + 20.370309301539685 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 20.370309301539685 + ], + [ + 74.71635719024924, + 20.370309301539685 + ], + [ + 74.83119987373293, + 20.175661566611232 + ], + [ + 74.9460425572166, + 20.370309301539685 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 20.370309301539685 + ], + [ + 74.83119987373293, + 20.175661566611232 + ], + [ + 75.06088524070027, + 20.175661566611232 + ], + [ + 74.9460425572166, + 20.370309301539685 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 20.370309301539685 + ], + [ + 75.06088524070027, + 20.175661566611232 + ], + [ + 75.17572792418396, + 20.370309301539685 + ], + [ + 74.9460425572166, + 20.370309301539685 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 20.759604771396592 + ], + [ + 75.17572792418396, + 20.759604771396592 + ], + [ + 75.06088524070027, + 20.954252506325044 + ], + [ + 74.9460425572166, + 20.759604771396592 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 20.759604771396592 + ], + [ + 75.06088524070027, + 20.954252506325044 + ], + [ + 74.83119987373293, + 20.954252506325044 + ], + [ + 74.9460425572166, + 20.759604771396592 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 20.759604771396592 + ], + [ + 74.83119987373293, + 20.954252506325044 + ], + [ + 74.71635719024924, + 20.759604771396592 + ], + [ + 74.9460425572166, + 20.759604771396592 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 20.759604771396592 + ], + [ + 74.71635719024924, + 20.759604771396592 + ], + [ + 74.83119987373293, + 20.56495703646814 + ], + [ + 74.9460425572166, + 20.759604771396592 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 20.759604771396592 + ], + [ + 74.83119987373293, + 20.56495703646814 + ], + [ + 75.06088524070027, + 20.56495703646814 + ], + [ + 74.9460425572166, + 20.759604771396592 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 20.759604771396592 + ], + [ + 75.06088524070027, + 20.56495703646814 + ], + [ + 75.17572792418396, + 20.759604771396592 + ], + [ + 74.9460425572166, + 20.759604771396592 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 21.1489002412535 + ], + [ + 75.17572792418396, + 21.1489002412535 + ], + [ + 75.06088524070027, + 21.343547976181952 + ], + [ + 74.9460425572166, + 21.1489002412535 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 21.1489002412535 + ], + [ + 75.06088524070027, + 21.343547976181952 + ], + [ + 74.83119987373293, + 21.343547976181952 + ], + [ + 74.9460425572166, + 21.1489002412535 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 21.1489002412535 + ], + [ + 74.83119987373293, + 21.343547976181952 + ], + [ + 74.71635719024924, + 21.1489002412535 + ], + [ + 74.9460425572166, + 21.1489002412535 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 21.1489002412535 + ], + [ + 74.71635719024924, + 21.1489002412535 + ], + [ + 74.83119987373293, + 20.954252506325048 + ], + [ + 74.9460425572166, + 21.1489002412535 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 21.1489002412535 + ], + [ + 74.83119987373293, + 20.954252506325048 + ], + [ + 75.06088524070027, + 20.954252506325048 + ], + [ + 74.9460425572166, + 21.1489002412535 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 21.1489002412535 + ], + [ + 75.06088524070027, + 20.954252506325048 + ], + [ + 75.17572792418396, + 21.1489002412535 + ], + [ + 74.9460425572166, + 21.1489002412535 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 21.538195711110404 + ], + [ + 75.17572792418396, + 21.538195711110404 + ], + [ + 75.06088524070027, + 21.732843446038856 + ], + [ + 74.9460425572166, + 21.538195711110404 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 21.538195711110404 + ], + [ + 75.06088524070027, + 21.732843446038856 + ], + [ + 74.83119987373293, + 21.732843446038856 + ], + [ + 74.9460425572166, + 21.538195711110404 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 21.538195711110404 + ], + [ + 74.83119987373293, + 21.732843446038856 + ], + [ + 74.71635719024924, + 21.538195711110404 + ], + [ + 74.9460425572166, + 21.538195711110404 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 21.538195711110404 + ], + [ + 74.71635719024924, + 21.538195711110404 + ], + [ + 74.83119987373293, + 21.343547976181952 + ], + [ + 74.9460425572166, + 21.538195711110404 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 21.538195711110404 + ], + [ + 74.83119987373293, + 21.343547976181952 + ], + [ + 75.06088524070027, + 21.343547976181952 + ], + [ + 74.9460425572166, + 21.538195711110404 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 21.538195711110404 + ], + [ + 75.06088524070027, + 21.343547976181952 + ], + [ + 75.17572792418396, + 21.538195711110404 + ], + [ + 74.9460425572166, + 21.538195711110404 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 21.927491180967312 + ], + [ + 75.17572792418396, + 21.927491180967312 + ], + [ + 75.06088524070027, + 22.122138915895764 + ], + [ + 74.9460425572166, + 21.927491180967312 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 21.927491180967312 + ], + [ + 75.06088524070027, + 22.122138915895764 + ], + [ + 74.83119987373293, + 22.122138915895764 + ], + [ + 74.9460425572166, + 21.927491180967312 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 21.927491180967312 + ], + [ + 74.83119987373293, + 22.122138915895764 + ], + [ + 74.71635719024924, + 21.927491180967312 + ], + [ + 74.9460425572166, + 21.927491180967312 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 21.927491180967312 + ], + [ + 74.71635719024924, + 21.927491180967312 + ], + [ + 74.83119987373293, + 21.73284344603886 + ], + [ + 74.9460425572166, + 21.927491180967312 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 21.927491180967312 + ], + [ + 74.83119987373293, + 21.73284344603886 + ], + [ + 75.06088524070027, + 21.73284344603886 + ], + [ + 74.9460425572166, + 21.927491180967312 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 21.927491180967312 + ], + [ + 75.06088524070027, + 21.73284344603886 + ], + [ + 75.17572792418396, + 21.927491180967312 + ], + [ + 74.9460425572166, + 21.927491180967312 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 22.31678665082422 + ], + [ + 75.17572792418396, + 22.31678665082422 + ], + [ + 75.06088524070027, + 22.511434385752672 + ], + [ + 74.9460425572166, + 22.31678665082422 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 22.31678665082422 + ], + [ + 75.06088524070027, + 22.511434385752672 + ], + [ + 74.83119987373293, + 22.511434385752672 + ], + [ + 74.9460425572166, + 22.31678665082422 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 22.31678665082422 + ], + [ + 74.83119987373293, + 22.511434385752672 + ], + [ + 74.71635719024924, + 22.31678665082422 + ], + [ + 74.9460425572166, + 22.31678665082422 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 22.31678665082422 + ], + [ + 74.71635719024924, + 22.31678665082422 + ], + [ + 74.83119987373293, + 22.122138915895768 + ], + [ + 74.9460425572166, + 22.31678665082422 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 22.31678665082422 + ], + [ + 74.83119987373293, + 22.122138915895768 + ], + [ + 75.06088524070027, + 22.122138915895768 + ], + [ + 74.9460425572166, + 22.31678665082422 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 22.31678665082422 + ], + [ + 75.06088524070027, + 22.122138915895768 + ], + [ + 75.17572792418396, + 22.31678665082422 + ], + [ + 74.9460425572166, + 22.31678665082422 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 22.706082120681124 + ], + [ + 75.17572792418396, + 22.706082120681124 + ], + [ + 75.06088524070027, + 22.900729855609576 + ], + [ + 74.9460425572166, + 22.706082120681124 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 22.706082120681124 + ], + [ + 75.06088524070027, + 22.900729855609576 + ], + [ + 74.83119987373293, + 22.900729855609576 + ], + [ + 74.9460425572166, + 22.706082120681124 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 22.706082120681124 + ], + [ + 74.83119987373293, + 22.900729855609576 + ], + [ + 74.71635719024924, + 22.706082120681124 + ], + [ + 74.9460425572166, + 22.706082120681124 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 22.706082120681124 + ], + [ + 74.71635719024924, + 22.706082120681124 + ], + [ + 74.83119987373293, + 22.511434385752672 + ], + [ + 74.9460425572166, + 22.706082120681124 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 22.706082120681124 + ], + [ + 74.83119987373293, + 22.511434385752672 + ], + [ + 75.06088524070027, + 22.511434385752672 + ], + [ + 74.9460425572166, + 22.706082120681124 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 22.706082120681124 + ], + [ + 75.06088524070027, + 22.511434385752672 + ], + [ + 75.17572792418396, + 22.706082120681124 + ], + [ + 74.9460425572166, + 22.706082120681124 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 23.095377590538032 + ], + [ + 75.17572792418396, + 23.095377590538032 + ], + [ + 75.06088524070027, + 23.290025325466484 + ], + [ + 74.9460425572166, + 23.095377590538032 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 23.095377590538032 + ], + [ + 75.06088524070027, + 23.290025325466484 + ], + [ + 74.83119987373293, + 23.290025325466484 + ], + [ + 74.9460425572166, + 23.095377590538032 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 23.095377590538032 + ], + [ + 74.83119987373293, + 23.290025325466484 + ], + [ + 74.71635719024924, + 23.095377590538032 + ], + [ + 74.9460425572166, + 23.095377590538032 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 23.095377590538032 + ], + [ + 74.71635719024924, + 23.095377590538032 + ], + [ + 74.83119987373293, + 22.90072985560958 + ], + [ + 74.9460425572166, + 23.095377590538032 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 23.095377590538032 + ], + [ + 74.83119987373293, + 22.90072985560958 + ], + [ + 75.06088524070027, + 22.90072985560958 + ], + [ + 74.9460425572166, + 23.095377590538032 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 23.095377590538032 + ], + [ + 75.06088524070027, + 22.90072985560958 + ], + [ + 75.17572792418396, + 23.095377590538032 + ], + [ + 74.9460425572166, + 23.095377590538032 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 23.48467306039494 + ], + [ + 75.17572792418396, + 23.48467306039494 + ], + [ + 75.06088524070027, + 23.67932079532339 + ], + [ + 74.9460425572166, + 23.48467306039494 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 23.48467306039494 + ], + [ + 75.06088524070027, + 23.67932079532339 + ], + [ + 74.83119987373293, + 23.67932079532339 + ], + [ + 74.9460425572166, + 23.48467306039494 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 23.48467306039494 + ], + [ + 74.83119987373293, + 23.67932079532339 + ], + [ + 74.71635719024924, + 23.48467306039494 + ], + [ + 74.9460425572166, + 23.48467306039494 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 23.48467306039494 + ], + [ + 74.71635719024924, + 23.48467306039494 + ], + [ + 74.83119987373293, + 23.290025325466488 + ], + [ + 74.9460425572166, + 23.48467306039494 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 23.48467306039494 + ], + [ + 74.83119987373293, + 23.290025325466488 + ], + [ + 75.06088524070027, + 23.290025325466488 + ], + [ + 74.9460425572166, + 23.48467306039494 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 23.48467306039494 + ], + [ + 75.06088524070027, + 23.290025325466488 + ], + [ + 75.17572792418396, + 23.48467306039494 + ], + [ + 74.9460425572166, + 23.48467306039494 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 23.873968530251844 + ], + [ + 75.17572792418396, + 23.873968530251844 + ], + [ + 75.06088524070027, + 24.068616265180296 + ], + [ + 74.9460425572166, + 23.873968530251844 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 23.873968530251844 + ], + [ + 75.06088524070027, + 24.068616265180296 + ], + [ + 74.83119987373293, + 24.068616265180296 + ], + [ + 74.9460425572166, + 23.873968530251844 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 23.873968530251844 + ], + [ + 74.83119987373293, + 24.068616265180296 + ], + [ + 74.71635719024924, + 23.873968530251844 + ], + [ + 74.9460425572166, + 23.873968530251844 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 23.873968530251844 + ], + [ + 74.71635719024924, + 23.873968530251844 + ], + [ + 74.83119987373293, + 23.67932079532339 + ], + [ + 74.9460425572166, + 23.873968530251844 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 23.873968530251844 + ], + [ + 74.83119987373293, + 23.67932079532339 + ], + [ + 75.06088524070027, + 23.67932079532339 + ], + [ + 74.9460425572166, + 23.873968530251844 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 23.873968530251844 + ], + [ + 75.06088524070027, + 23.67932079532339 + ], + [ + 75.17572792418396, + 23.873968530251844 + ], + [ + 74.9460425572166, + 23.873968530251844 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 24.263264000108748 + ], + [ + 75.17572792418396, + 24.263264000108748 + ], + [ + 75.06088524070027, + 24.4579117350372 + ], + [ + 74.9460425572166, + 24.263264000108748 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 24.263264000108748 + ], + [ + 75.06088524070027, + 24.4579117350372 + ], + [ + 74.83119987373293, + 24.4579117350372 + ], + [ + 74.9460425572166, + 24.263264000108748 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 24.263264000108748 + ], + [ + 74.83119987373293, + 24.4579117350372 + ], + [ + 74.71635719024924, + 24.263264000108748 + ], + [ + 74.9460425572166, + 24.263264000108748 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 24.263264000108748 + ], + [ + 74.71635719024924, + 24.263264000108748 + ], + [ + 74.83119987373293, + 24.068616265180296 + ], + [ + 74.9460425572166, + 24.263264000108748 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 24.263264000108748 + ], + [ + 74.83119987373293, + 24.068616265180296 + ], + [ + 75.06088524070027, + 24.068616265180296 + ], + [ + 74.9460425572166, + 24.263264000108748 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 24.263264000108748 + ], + [ + 75.06088524070027, + 24.068616265180296 + ], + [ + 75.17572792418396, + 24.263264000108748 + ], + [ + 74.9460425572166, + 24.263264000108748 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 24.652559469965656 + ], + [ + 75.17572792418396, + 24.652559469965656 + ], + [ + 75.06088524070027, + 24.847207204894108 + ], + [ + 74.9460425572166, + 24.652559469965656 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 24.652559469965656 + ], + [ + 75.06088524070027, + 24.847207204894108 + ], + [ + 74.83119987373293, + 24.847207204894108 + ], + [ + 74.9460425572166, + 24.652559469965656 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 24.652559469965656 + ], + [ + 74.83119987373293, + 24.847207204894108 + ], + [ + 74.71635719024924, + 24.652559469965656 + ], + [ + 74.9460425572166, + 24.652559469965656 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 24.652559469965656 + ], + [ + 74.71635719024924, + 24.652559469965656 + ], + [ + 74.83119987373293, + 24.457911735037204 + ], + [ + 74.9460425572166, + 24.652559469965656 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 24.652559469965656 + ], + [ + 74.83119987373293, + 24.457911735037204 + ], + [ + 75.06088524070027, + 24.457911735037204 + ], + [ + 74.9460425572166, + 24.652559469965656 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 24.652559469965656 + ], + [ + 75.06088524070027, + 24.457911735037204 + ], + [ + 75.17572792418396, + 24.652559469965656 + ], + [ + 74.9460425572166, + 24.652559469965656 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 25.041854939822564 + ], + [ + 75.17572792418396, + 25.041854939822564 + ], + [ + 75.06088524070027, + 25.236502674751016 + ], + [ + 74.9460425572166, + 25.041854939822564 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 25.041854939822564 + ], + [ + 75.06088524070027, + 25.236502674751016 + ], + [ + 74.83119987373293, + 25.236502674751016 + ], + [ + 74.9460425572166, + 25.041854939822564 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 25.041854939822564 + ], + [ + 74.83119987373293, + 25.236502674751016 + ], + [ + 74.71635719024924, + 25.041854939822564 + ], + [ + 74.9460425572166, + 25.041854939822564 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 25.041854939822564 + ], + [ + 74.71635719024924, + 25.041854939822564 + ], + [ + 74.83119987373293, + 24.84720720489411 + ], + [ + 74.9460425572166, + 25.041854939822564 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 25.041854939822564 + ], + [ + 74.83119987373293, + 24.84720720489411 + ], + [ + 75.06088524070027, + 24.84720720489411 + ], + [ + 74.9460425572166, + 25.041854939822564 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 25.041854939822564 + ], + [ + 75.06088524070027, + 24.84720720489411 + ], + [ + 75.17572792418396, + 25.041854939822564 + ], + [ + 74.9460425572166, + 25.041854939822564 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 25.431150409679468 + ], + [ + 75.17572792418396, + 25.431150409679468 + ], + [ + 75.06088524070027, + 25.62579814460792 + ], + [ + 74.9460425572166, + 25.431150409679468 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 25.431150409679468 + ], + [ + 75.06088524070027, + 25.62579814460792 + ], + [ + 74.83119987373293, + 25.62579814460792 + ], + [ + 74.9460425572166, + 25.431150409679468 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 25.431150409679468 + ], + [ + 74.83119987373293, + 25.62579814460792 + ], + [ + 74.71635719024924, + 25.431150409679468 + ], + [ + 74.9460425572166, + 25.431150409679468 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 25.431150409679468 + ], + [ + 74.71635719024924, + 25.431150409679468 + ], + [ + 74.83119987373293, + 25.236502674751016 + ], + [ + 74.9460425572166, + 25.431150409679468 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 25.431150409679468 + ], + [ + 74.83119987373293, + 25.236502674751016 + ], + [ + 75.06088524070027, + 25.236502674751016 + ], + [ + 74.9460425572166, + 25.431150409679468 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 25.431150409679468 + ], + [ + 75.06088524070027, + 25.236502674751016 + ], + [ + 75.17572792418396, + 25.431150409679468 + ], + [ + 74.9460425572166, + 25.431150409679468 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 25.820445879536376 + ], + [ + 75.17572792418396, + 25.820445879536376 + ], + [ + 75.06088524070027, + 26.015093614464828 + ], + [ + 74.9460425572166, + 25.820445879536376 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 25.820445879536376 + ], + [ + 75.06088524070027, + 26.015093614464828 + ], + [ + 74.83119987373293, + 26.015093614464828 + ], + [ + 74.9460425572166, + 25.820445879536376 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 25.820445879536376 + ], + [ + 74.83119987373293, + 26.015093614464828 + ], + [ + 74.71635719024924, + 25.820445879536376 + ], + [ + 74.9460425572166, + 25.820445879536376 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 25.820445879536376 + ], + [ + 74.71635719024924, + 25.820445879536376 + ], + [ + 74.83119987373293, + 25.625798144607923 + ], + [ + 74.9460425572166, + 25.820445879536376 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 25.820445879536376 + ], + [ + 74.83119987373293, + 25.625798144607923 + ], + [ + 75.06088524070027, + 25.625798144607923 + ], + [ + 74.9460425572166, + 25.820445879536376 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 25.820445879536376 + ], + [ + 75.06088524070027, + 25.625798144607923 + ], + [ + 75.17572792418396, + 25.820445879536376 + ], + [ + 74.9460425572166, + 25.820445879536376 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 26.209741349393283 + ], + [ + 75.17572792418396, + 26.209741349393283 + ], + [ + 75.06088524070027, + 26.404389084321735 + ], + [ + 74.9460425572166, + 26.209741349393283 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 26.209741349393283 + ], + [ + 75.06088524070027, + 26.404389084321735 + ], + [ + 74.83119987373293, + 26.404389084321735 + ], + [ + 74.9460425572166, + 26.209741349393283 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 26.209741349393283 + ], + [ + 74.83119987373293, + 26.404389084321735 + ], + [ + 74.71635719024924, + 26.209741349393283 + ], + [ + 74.9460425572166, + 26.209741349393283 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 26.209741349393283 + ], + [ + 74.71635719024924, + 26.209741349393283 + ], + [ + 74.83119987373293, + 26.01509361446483 + ], + [ + 74.9460425572166, + 26.209741349393283 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 26.209741349393283 + ], + [ + 74.83119987373293, + 26.01509361446483 + ], + [ + 75.06088524070027, + 26.01509361446483 + ], + [ + 74.9460425572166, + 26.209741349393283 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 26.209741349393283 + ], + [ + 75.06088524070027, + 26.01509361446483 + ], + [ + 75.17572792418396, + 26.209741349393283 + ], + [ + 74.9460425572166, + 26.209741349393283 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 26.599036819250188 + ], + [ + 75.17572792418396, + 26.599036819250188 + ], + [ + 75.06088524070027, + 26.79368455417864 + ], + [ + 74.9460425572166, + 26.599036819250188 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 26.599036819250188 + ], + [ + 75.06088524070027, + 26.79368455417864 + ], + [ + 74.83119987373293, + 26.79368455417864 + ], + [ + 74.9460425572166, + 26.599036819250188 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 26.599036819250188 + ], + [ + 74.83119987373293, + 26.79368455417864 + ], + [ + 74.71635719024924, + 26.599036819250188 + ], + [ + 74.9460425572166, + 26.599036819250188 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 26.599036819250188 + ], + [ + 74.71635719024924, + 26.599036819250188 + ], + [ + 74.83119987373293, + 26.404389084321735 + ], + [ + 74.9460425572166, + 26.599036819250188 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 26.599036819250188 + ], + [ + 74.83119987373293, + 26.404389084321735 + ], + [ + 75.06088524070027, + 26.404389084321735 + ], + [ + 74.9460425572166, + 26.599036819250188 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 26.599036819250188 + ], + [ + 75.06088524070027, + 26.404389084321735 + ], + [ + 75.17572792418396, + 26.599036819250188 + ], + [ + 74.9460425572166, + 26.599036819250188 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 26.988332289107095 + ], + [ + 75.17572792418396, + 26.988332289107095 + ], + [ + 75.06088524070027, + 27.182980024035547 + ], + [ + 74.9460425572166, + 26.988332289107095 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 26.988332289107095 + ], + [ + 75.06088524070027, + 27.182980024035547 + ], + [ + 74.83119987373293, + 27.182980024035547 + ], + [ + 74.9460425572166, + 26.988332289107095 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 26.988332289107095 + ], + [ + 74.83119987373293, + 27.182980024035547 + ], + [ + 74.71635719024924, + 26.988332289107095 + ], + [ + 74.9460425572166, + 26.988332289107095 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 26.988332289107095 + ], + [ + 74.71635719024924, + 26.988332289107095 + ], + [ + 74.83119987373293, + 26.793684554178643 + ], + [ + 74.9460425572166, + 26.988332289107095 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 26.988332289107095 + ], + [ + 74.83119987373293, + 26.793684554178643 + ], + [ + 75.06088524070027, + 26.793684554178643 + ], + [ + 74.9460425572166, + 26.988332289107095 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 26.988332289107095 + ], + [ + 75.06088524070027, + 26.793684554178643 + ], + [ + 75.17572792418396, + 26.988332289107095 + ], + [ + 74.9460425572166, + 26.988332289107095 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 27.377627758964003 + ], + [ + 75.17572792418396, + 27.377627758964003 + ], + [ + 75.06088524070027, + 27.572275493892455 + ], + [ + 74.9460425572166, + 27.377627758964003 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 27.377627758964003 + ], + [ + 75.06088524070027, + 27.572275493892455 + ], + [ + 74.83119987373293, + 27.572275493892455 + ], + [ + 74.9460425572166, + 27.377627758964003 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 27.377627758964003 + ], + [ + 74.83119987373293, + 27.572275493892455 + ], + [ + 74.71635719024924, + 27.377627758964003 + ], + [ + 74.9460425572166, + 27.377627758964003 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 27.377627758964003 + ], + [ + 74.71635719024924, + 27.377627758964003 + ], + [ + 74.83119987373293, + 27.18298002403555 + ], + [ + 74.9460425572166, + 27.377627758964003 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 27.377627758964003 + ], + [ + 74.83119987373293, + 27.18298002403555 + ], + [ + 75.06088524070027, + 27.18298002403555 + ], + [ + 74.9460425572166, + 27.377627758964003 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 27.377627758964003 + ], + [ + 75.06088524070027, + 27.18298002403555 + ], + [ + 75.17572792418396, + 27.377627758964003 + ], + [ + 74.9460425572166, + 27.377627758964003 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 27.766923228820907 + ], + [ + 75.17572792418396, + 27.766923228820907 + ], + [ + 75.06088524070027, + 27.96157096374936 + ], + [ + 74.9460425572166, + 27.766923228820907 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 27.766923228820907 + ], + [ + 75.06088524070027, + 27.96157096374936 + ], + [ + 74.83119987373293, + 27.96157096374936 + ], + [ + 74.9460425572166, + 27.766923228820907 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 27.766923228820907 + ], + [ + 74.83119987373293, + 27.96157096374936 + ], + [ + 74.71635719024924, + 27.766923228820907 + ], + [ + 74.9460425572166, + 27.766923228820907 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 27.766923228820907 + ], + [ + 74.71635719024924, + 27.766923228820907 + ], + [ + 74.83119987373293, + 27.572275493892455 + ], + [ + 74.9460425572166, + 27.766923228820907 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 27.766923228820907 + ], + [ + 74.83119987373293, + 27.572275493892455 + ], + [ + 75.06088524070027, + 27.572275493892455 + ], + [ + 74.9460425572166, + 27.766923228820907 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 27.766923228820907 + ], + [ + 75.06088524070027, + 27.572275493892455 + ], + [ + 75.17572792418396, + 27.766923228820907 + ], + [ + 74.9460425572166, + 27.766923228820907 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 28.156218698677815 + ], + [ + 75.17572792418396, + 28.156218698677815 + ], + [ + 75.06088524070027, + 28.350866433606267 + ], + [ + 74.9460425572166, + 28.156218698677815 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 28.156218698677815 + ], + [ + 75.06088524070027, + 28.350866433606267 + ], + [ + 74.83119987373293, + 28.350866433606267 + ], + [ + 74.9460425572166, + 28.156218698677815 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 28.156218698677815 + ], + [ + 74.83119987373293, + 28.350866433606267 + ], + [ + 74.71635719024924, + 28.156218698677815 + ], + [ + 74.9460425572166, + 28.156218698677815 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 28.156218698677815 + ], + [ + 74.71635719024924, + 28.156218698677815 + ], + [ + 74.83119987373293, + 27.961570963749363 + ], + [ + 74.9460425572166, + 28.156218698677815 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 28.156218698677815 + ], + [ + 74.83119987373293, + 27.961570963749363 + ], + [ + 75.06088524070027, + 27.961570963749363 + ], + [ + 74.9460425572166, + 28.156218698677815 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 28.156218698677815 + ], + [ + 75.06088524070027, + 27.961570963749363 + ], + [ + 75.17572792418396, + 28.156218698677815 + ], + [ + 74.9460425572166, + 28.156218698677815 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 28.54551416853472 + ], + [ + 75.17572792418396, + 28.54551416853472 + ], + [ + 75.06088524070027, + 28.74016190346317 + ], + [ + 74.9460425572166, + 28.54551416853472 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 28.54551416853472 + ], + [ + 75.06088524070027, + 28.74016190346317 + ], + [ + 74.83119987373293, + 28.74016190346317 + ], + [ + 74.9460425572166, + 28.54551416853472 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 28.54551416853472 + ], + [ + 74.83119987373293, + 28.74016190346317 + ], + [ + 74.71635719024924, + 28.54551416853472 + ], + [ + 74.9460425572166, + 28.54551416853472 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 28.54551416853472 + ], + [ + 74.71635719024924, + 28.54551416853472 + ], + [ + 74.83119987373293, + 28.350866433606267 + ], + [ + 74.9460425572166, + 28.54551416853472 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 28.54551416853472 + ], + [ + 74.83119987373293, + 28.350866433606267 + ], + [ + 75.06088524070027, + 28.350866433606267 + ], + [ + 74.9460425572166, + 28.54551416853472 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 28.54551416853472 + ], + [ + 75.06088524070027, + 28.350866433606267 + ], + [ + 75.17572792418396, + 28.54551416853472 + ], + [ + 74.9460425572166, + 28.54551416853472 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 28.934809638391627 + ], + [ + 75.17572792418396, + 28.934809638391627 + ], + [ + 75.06088524070027, + 29.12945737332008 + ], + [ + 74.9460425572166, + 28.934809638391627 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 28.934809638391627 + ], + [ + 75.06088524070027, + 29.12945737332008 + ], + [ + 74.83119987373293, + 29.12945737332008 + ], + [ + 74.9460425572166, + 28.934809638391627 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 28.934809638391627 + ], + [ + 74.83119987373293, + 29.12945737332008 + ], + [ + 74.71635719024924, + 28.934809638391627 + ], + [ + 74.9460425572166, + 28.934809638391627 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 28.934809638391627 + ], + [ + 74.71635719024924, + 28.934809638391627 + ], + [ + 74.83119987373293, + 28.740161903463175 + ], + [ + 74.9460425572166, + 28.934809638391627 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 28.934809638391627 + ], + [ + 74.83119987373293, + 28.740161903463175 + ], + [ + 75.06088524070027, + 28.740161903463175 + ], + [ + 74.9460425572166, + 28.934809638391627 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 28.934809638391627 + ], + [ + 75.06088524070027, + 28.740161903463175 + ], + [ + 75.17572792418396, + 28.934809638391627 + ], + [ + 74.9460425572166, + 28.934809638391627 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 29.32410510824853 + ], + [ + 75.17572792418396, + 29.32410510824853 + ], + [ + 75.06088524070027, + 29.518752843176983 + ], + [ + 74.9460425572166, + 29.32410510824853 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 29.32410510824853 + ], + [ + 75.06088524070027, + 29.518752843176983 + ], + [ + 74.83119987373293, + 29.518752843176983 + ], + [ + 74.9460425572166, + 29.32410510824853 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 29.32410510824853 + ], + [ + 74.83119987373293, + 29.518752843176983 + ], + [ + 74.71635719024924, + 29.32410510824853 + ], + [ + 74.9460425572166, + 29.32410510824853 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 29.32410510824853 + ], + [ + 74.71635719024924, + 29.32410510824853 + ], + [ + 74.83119987373293, + 29.12945737332008 + ], + [ + 74.9460425572166, + 29.32410510824853 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 29.32410510824853 + ], + [ + 74.83119987373293, + 29.12945737332008 + ], + [ + 75.06088524070027, + 29.12945737332008 + ], + [ + 74.9460425572166, + 29.32410510824853 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 29.32410510824853 + ], + [ + 75.06088524070027, + 29.12945737332008 + ], + [ + 75.17572792418396, + 29.32410510824853 + ], + [ + 74.9460425572166, + 29.32410510824853 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 29.71340057810544 + ], + [ + 75.17572792418396, + 29.71340057810544 + ], + [ + 75.06088524070027, + 29.90804831303389 + ], + [ + 74.9460425572166, + 29.71340057810544 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 29.71340057810544 + ], + [ + 75.06088524070027, + 29.90804831303389 + ], + [ + 74.83119987373293, + 29.90804831303389 + ], + [ + 74.9460425572166, + 29.71340057810544 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 29.71340057810544 + ], + [ + 74.83119987373293, + 29.90804831303389 + ], + [ + 74.71635719024924, + 29.71340057810544 + ], + [ + 74.9460425572166, + 29.71340057810544 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 29.71340057810544 + ], + [ + 74.71635719024924, + 29.71340057810544 + ], + [ + 74.83119987373293, + 29.518752843176987 + ], + [ + 74.9460425572166, + 29.71340057810544 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 29.71340057810544 + ], + [ + 74.83119987373293, + 29.518752843176987 + ], + [ + 75.06088524070027, + 29.518752843176987 + ], + [ + 74.9460425572166, + 29.71340057810544 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 29.71340057810544 + ], + [ + 75.06088524070027, + 29.518752843176987 + ], + [ + 75.17572792418396, + 29.71340057810544 + ], + [ + 74.9460425572166, + 29.71340057810544 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 30.102696047962343 + ], + [ + 75.17572792418396, + 30.102696047962343 + ], + [ + 75.06088524070027, + 30.297343782890795 + ], + [ + 74.9460425572166, + 30.102696047962343 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 30.102696047962343 + ], + [ + 75.06088524070027, + 30.297343782890795 + ], + [ + 74.83119987373293, + 30.297343782890795 + ], + [ + 74.9460425572166, + 30.102696047962343 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 30.102696047962343 + ], + [ + 74.83119987373293, + 30.297343782890795 + ], + [ + 74.71635719024924, + 30.102696047962343 + ], + [ + 74.9460425572166, + 30.102696047962343 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 30.102696047962343 + ], + [ + 74.71635719024924, + 30.102696047962343 + ], + [ + 74.83119987373293, + 29.90804831303389 + ], + [ + 74.9460425572166, + 30.102696047962343 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 30.102696047962343 + ], + [ + 74.83119987373293, + 29.90804831303389 + ], + [ + 75.06088524070027, + 29.90804831303389 + ], + [ + 74.9460425572166, + 30.102696047962343 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 30.102696047962343 + ], + [ + 75.06088524070027, + 29.90804831303389 + ], + [ + 75.17572792418396, + 30.102696047962343 + ], + [ + 74.9460425572166, + 30.102696047962343 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 30.49199151781925 + ], + [ + 75.17572792418396, + 30.49199151781925 + ], + [ + 75.06088524070027, + 30.686639252747703 + ], + [ + 74.9460425572166, + 30.49199151781925 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 30.49199151781925 + ], + [ + 75.06088524070027, + 30.686639252747703 + ], + [ + 74.83119987373293, + 30.686639252747703 + ], + [ + 74.9460425572166, + 30.49199151781925 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 30.49199151781925 + ], + [ + 74.83119987373293, + 30.686639252747703 + ], + [ + 74.71635719024924, + 30.49199151781925 + ], + [ + 74.9460425572166, + 30.49199151781925 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 30.49199151781925 + ], + [ + 74.71635719024924, + 30.49199151781925 + ], + [ + 74.83119987373293, + 30.2973437828908 + ], + [ + 74.9460425572166, + 30.49199151781925 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 30.49199151781925 + ], + [ + 74.83119987373293, + 30.2973437828908 + ], + [ + 75.06088524070027, + 30.2973437828908 + ], + [ + 74.9460425572166, + 30.49199151781925 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 30.49199151781925 + ], + [ + 75.06088524070027, + 30.2973437828908 + ], + [ + 75.17572792418396, + 30.49199151781925 + ], + [ + 74.9460425572166, + 30.49199151781925 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 30.88128698767616 + ], + [ + 75.17572792418396, + 30.88128698767616 + ], + [ + 75.06088524070027, + 31.07593472260461 + ], + [ + 74.9460425572166, + 30.88128698767616 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 30.88128698767616 + ], + [ + 75.06088524070027, + 31.07593472260461 + ], + [ + 74.83119987373293, + 31.07593472260461 + ], + [ + 74.9460425572166, + 30.88128698767616 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 30.88128698767616 + ], + [ + 74.83119987373293, + 31.07593472260461 + ], + [ + 74.71635719024924, + 30.88128698767616 + ], + [ + 74.9460425572166, + 30.88128698767616 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 30.88128698767616 + ], + [ + 74.71635719024924, + 30.88128698767616 + ], + [ + 74.83119987373293, + 30.686639252747707 + ], + [ + 74.9460425572166, + 30.88128698767616 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 30.88128698767616 + ], + [ + 74.83119987373293, + 30.686639252747707 + ], + [ + 75.06088524070027, + 30.686639252747707 + ], + [ + 74.9460425572166, + 30.88128698767616 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 30.88128698767616 + ], + [ + 75.06088524070027, + 30.686639252747707 + ], + [ + 75.17572792418396, + 30.88128698767616 + ], + [ + 74.9460425572166, + 30.88128698767616 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 31.270582457533063 + ], + [ + 75.17572792418396, + 31.270582457533063 + ], + [ + 75.06088524070027, + 31.465230192461515 + ], + [ + 74.9460425572166, + 31.270582457533063 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 31.270582457533063 + ], + [ + 75.06088524070027, + 31.465230192461515 + ], + [ + 74.83119987373293, + 31.465230192461515 + ], + [ + 74.9460425572166, + 31.270582457533063 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 31.270582457533063 + ], + [ + 74.83119987373293, + 31.465230192461515 + ], + [ + 74.71635719024924, + 31.270582457533063 + ], + [ + 74.9460425572166, + 31.270582457533063 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 31.270582457533063 + ], + [ + 74.71635719024924, + 31.270582457533063 + ], + [ + 74.83119987373293, + 31.07593472260461 + ], + [ + 74.9460425572166, + 31.270582457533063 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 31.270582457533063 + ], + [ + 74.83119987373293, + 31.07593472260461 + ], + [ + 75.06088524070027, + 31.07593472260461 + ], + [ + 74.9460425572166, + 31.270582457533063 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 31.270582457533063 + ], + [ + 75.06088524070027, + 31.07593472260461 + ], + [ + 75.17572792418396, + 31.270582457533063 + ], + [ + 74.9460425572166, + 31.270582457533063 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 31.65987792738997 + ], + [ + 75.17572792418396, + 31.65987792738997 + ], + [ + 75.06088524070027, + 31.854525662318423 + ], + [ + 74.9460425572166, + 31.65987792738997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 31.65987792738997 + ], + [ + 75.06088524070027, + 31.854525662318423 + ], + [ + 74.83119987373293, + 31.854525662318423 + ], + [ + 74.9460425572166, + 31.65987792738997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 31.65987792738997 + ], + [ + 74.83119987373293, + 31.854525662318423 + ], + [ + 74.71635719024924, + 31.65987792738997 + ], + [ + 74.9460425572166, + 31.65987792738997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 31.65987792738997 + ], + [ + 74.71635719024924, + 31.65987792738997 + ], + [ + 74.83119987373293, + 31.46523019246152 + ], + [ + 74.9460425572166, + 31.65987792738997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 31.65987792738997 + ], + [ + 74.83119987373293, + 31.46523019246152 + ], + [ + 75.06088524070027, + 31.46523019246152 + ], + [ + 74.9460425572166, + 31.65987792738997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 31.65987792738997 + ], + [ + 75.06088524070027, + 31.46523019246152 + ], + [ + 75.17572792418396, + 31.65987792738997 + ], + [ + 74.9460425572166, + 31.65987792738997 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 32.049173397246875 + ], + [ + 75.17572792418396, + 32.049173397246875 + ], + [ + 75.06088524070027, + 32.24382113217533 + ], + [ + 74.9460425572166, + 32.049173397246875 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 32.049173397246875 + ], + [ + 75.06088524070027, + 32.24382113217533 + ], + [ + 74.83119987373293, + 32.24382113217533 + ], + [ + 74.9460425572166, + 32.049173397246875 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 32.049173397246875 + ], + [ + 74.83119987373293, + 32.24382113217533 + ], + [ + 74.71635719024924, + 32.049173397246875 + ], + [ + 74.9460425572166, + 32.049173397246875 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 32.049173397246875 + ], + [ + 74.71635719024924, + 32.049173397246875 + ], + [ + 74.83119987373293, + 31.854525662318423 + ], + [ + 74.9460425572166, + 32.049173397246875 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 32.049173397246875 + ], + [ + 74.83119987373293, + 31.854525662318423 + ], + [ + 75.06088524070027, + 31.854525662318423 + ], + [ + 74.9460425572166, + 32.049173397246875 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 32.049173397246875 + ], + [ + 75.06088524070027, + 31.854525662318423 + ], + [ + 75.17572792418396, + 32.049173397246875 + ], + [ + 74.9460425572166, + 32.049173397246875 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 32.438468867103786 + ], + [ + 75.17572792418396, + 32.438468867103786 + ], + [ + 75.06088524070027, + 32.63311660203224 + ], + [ + 74.9460425572166, + 32.438468867103786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 32.438468867103786 + ], + [ + 75.06088524070027, + 32.63311660203224 + ], + [ + 74.83119987373293, + 32.63311660203224 + ], + [ + 74.9460425572166, + 32.438468867103786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 32.438468867103786 + ], + [ + 74.83119987373293, + 32.63311660203224 + ], + [ + 74.71635719024924, + 32.438468867103786 + ], + [ + 74.9460425572166, + 32.438468867103786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 32.438468867103786 + ], + [ + 74.71635719024924, + 32.438468867103786 + ], + [ + 74.83119987373293, + 32.243821132175334 + ], + [ + 74.9460425572166, + 32.438468867103786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 32.438468867103786 + ], + [ + 74.83119987373293, + 32.243821132175334 + ], + [ + 75.06088524070027, + 32.243821132175334 + ], + [ + 74.9460425572166, + 32.438468867103786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 32.438468867103786 + ], + [ + 75.06088524070027, + 32.243821132175334 + ], + [ + 75.17572792418396, + 32.438468867103786 + ], + [ + 74.9460425572166, + 32.438468867103786 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 32.82776433696069 + ], + [ + 75.17572792418396, + 32.82776433696069 + ], + [ + 75.06088524070027, + 33.02241207188914 + ], + [ + 74.9460425572166, + 32.82776433696069 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 32.82776433696069 + ], + [ + 75.06088524070027, + 33.02241207188914 + ], + [ + 74.83119987373293, + 33.02241207188914 + ], + [ + 74.9460425572166, + 32.82776433696069 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 32.82776433696069 + ], + [ + 74.83119987373293, + 33.02241207188914 + ], + [ + 74.71635719024924, + 32.82776433696069 + ], + [ + 74.9460425572166, + 32.82776433696069 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 32.82776433696069 + ], + [ + 74.71635719024924, + 32.82776433696069 + ], + [ + 74.83119987373293, + 32.63311660203224 + ], + [ + 74.9460425572166, + 32.82776433696069 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 32.82776433696069 + ], + [ + 74.83119987373293, + 32.63311660203224 + ], + [ + 75.06088524070027, + 32.63311660203224 + ], + [ + 74.9460425572166, + 32.82776433696069 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 32.82776433696069 + ], + [ + 75.06088524070027, + 32.63311660203224 + ], + [ + 75.17572792418396, + 32.82776433696069 + ], + [ + 74.9460425572166, + 32.82776433696069 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 33.217059806817595 + ], + [ + 75.17572792418396, + 33.217059806817595 + ], + [ + 75.06088524070027, + 33.41170754174605 + ], + [ + 74.9460425572166, + 33.217059806817595 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 33.217059806817595 + ], + [ + 75.06088524070027, + 33.41170754174605 + ], + [ + 74.83119987373293, + 33.41170754174605 + ], + [ + 74.9460425572166, + 33.217059806817595 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 33.217059806817595 + ], + [ + 74.83119987373293, + 33.41170754174605 + ], + [ + 74.71635719024924, + 33.217059806817595 + ], + [ + 74.9460425572166, + 33.217059806817595 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 33.217059806817595 + ], + [ + 74.71635719024924, + 33.217059806817595 + ], + [ + 74.83119987373293, + 33.02241207188914 + ], + [ + 74.9460425572166, + 33.217059806817595 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 33.217059806817595 + ], + [ + 74.83119987373293, + 33.02241207188914 + ], + [ + 75.06088524070027, + 33.02241207188914 + ], + [ + 74.9460425572166, + 33.217059806817595 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 33.217059806817595 + ], + [ + 75.06088524070027, + 33.02241207188914 + ], + [ + 75.17572792418396, + 33.217059806817595 + ], + [ + 74.9460425572166, + 33.217059806817595 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 33.6063552766745 + ], + [ + 75.17572792418396, + 33.6063552766745 + ], + [ + 75.06088524070027, + 33.80100301160295 + ], + [ + 74.9460425572166, + 33.6063552766745 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 33.6063552766745 + ], + [ + 75.06088524070027, + 33.80100301160295 + ], + [ + 74.83119987373293, + 33.80100301160295 + ], + [ + 74.9460425572166, + 33.6063552766745 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 33.6063552766745 + ], + [ + 74.83119987373293, + 33.80100301160295 + ], + [ + 74.71635719024924, + 33.6063552766745 + ], + [ + 74.9460425572166, + 33.6063552766745 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 33.6063552766745 + ], + [ + 74.71635719024924, + 33.6063552766745 + ], + [ + 74.83119987373293, + 33.41170754174605 + ], + [ + 74.9460425572166, + 33.6063552766745 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 33.6063552766745 + ], + [ + 74.83119987373293, + 33.41170754174605 + ], + [ + 75.06088524070027, + 33.41170754174605 + ], + [ + 74.9460425572166, + 33.6063552766745 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 33.6063552766745 + ], + [ + 75.06088524070027, + 33.41170754174605 + ], + [ + 75.17572792418396, + 33.6063552766745 + ], + [ + 74.9460425572166, + 33.6063552766745 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 33.9956507465314 + ], + [ + 75.17572792418396, + 33.9956507465314 + ], + [ + 75.06088524070027, + 34.190298481459855 + ], + [ + 74.9460425572166, + 33.9956507465314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 33.9956507465314 + ], + [ + 75.06088524070027, + 34.190298481459855 + ], + [ + 74.83119987373293, + 34.190298481459855 + ], + [ + 74.9460425572166, + 33.9956507465314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 33.9956507465314 + ], + [ + 74.83119987373293, + 34.190298481459855 + ], + [ + 74.71635719024924, + 33.9956507465314 + ], + [ + 74.9460425572166, + 33.9956507465314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 33.9956507465314 + ], + [ + 74.71635719024924, + 33.9956507465314 + ], + [ + 74.83119987373293, + 33.80100301160295 + ], + [ + 74.9460425572166, + 33.9956507465314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 33.9956507465314 + ], + [ + 74.83119987373293, + 33.80100301160295 + ], + [ + 75.06088524070027, + 33.80100301160295 + ], + [ + 74.9460425572166, + 33.9956507465314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 33.9956507465314 + ], + [ + 75.06088524070027, + 33.80100301160295 + ], + [ + 75.17572792418396, + 33.9956507465314 + ], + [ + 74.9460425572166, + 33.9956507465314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 34.384946216388315 + ], + [ + 75.17572792418396, + 34.384946216388315 + ], + [ + 75.06088524070027, + 34.57959395131677 + ], + [ + 74.9460425572166, + 34.384946216388315 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 34.384946216388315 + ], + [ + 75.06088524070027, + 34.57959395131677 + ], + [ + 74.83119987373293, + 34.57959395131677 + ], + [ + 74.9460425572166, + 34.384946216388315 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 34.384946216388315 + ], + [ + 74.83119987373293, + 34.57959395131677 + ], + [ + 74.71635719024924, + 34.384946216388315 + ], + [ + 74.9460425572166, + 34.384946216388315 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 34.384946216388315 + ], + [ + 74.71635719024924, + 34.384946216388315 + ], + [ + 74.83119987373293, + 34.19029848145986 + ], + [ + 74.9460425572166, + 34.384946216388315 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 34.384946216388315 + ], + [ + 74.83119987373293, + 34.19029848145986 + ], + [ + 75.06088524070027, + 34.19029848145986 + ], + [ + 74.9460425572166, + 34.384946216388315 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 34.384946216388315 + ], + [ + 75.06088524070027, + 34.19029848145986 + ], + [ + 75.17572792418396, + 34.384946216388315 + ], + [ + 74.9460425572166, + 34.384946216388315 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 34.774241686245226 + ], + [ + 75.17572792418396, + 34.774241686245226 + ], + [ + 75.06088524070027, + 34.96888942117368 + ], + [ + 74.9460425572166, + 34.774241686245226 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 34.774241686245226 + ], + [ + 75.06088524070027, + 34.96888942117368 + ], + [ + 74.83119987373293, + 34.96888942117368 + ], + [ + 74.9460425572166, + 34.774241686245226 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 34.774241686245226 + ], + [ + 74.83119987373293, + 34.96888942117368 + ], + [ + 74.71635719024924, + 34.774241686245226 + ], + [ + 74.9460425572166, + 34.774241686245226 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 34.774241686245226 + ], + [ + 74.71635719024924, + 34.774241686245226 + ], + [ + 74.83119987373293, + 34.579593951316774 + ], + [ + 74.9460425572166, + 34.774241686245226 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 34.774241686245226 + ], + [ + 74.83119987373293, + 34.579593951316774 + ], + [ + 75.06088524070027, + 34.579593951316774 + ], + [ + 74.9460425572166, + 34.774241686245226 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 34.774241686245226 + ], + [ + 75.06088524070027, + 34.579593951316774 + ], + [ + 75.17572792418396, + 34.774241686245226 + ], + [ + 74.9460425572166, + 34.774241686245226 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 35.16353715610213 + ], + [ + 75.17572792418396, + 35.16353715610213 + ], + [ + 75.06088524070027, + 35.35818489103058 + ], + [ + 74.9460425572166, + 35.16353715610213 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 35.16353715610213 + ], + [ + 75.06088524070027, + 35.35818489103058 + ], + [ + 74.83119987373293, + 35.35818489103058 + ], + [ + 74.9460425572166, + 35.16353715610213 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 35.16353715610213 + ], + [ + 74.83119987373293, + 35.35818489103058 + ], + [ + 74.71635719024924, + 35.16353715610213 + ], + [ + 74.9460425572166, + 35.16353715610213 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 35.16353715610213 + ], + [ + 74.71635719024924, + 35.16353715610213 + ], + [ + 74.83119987373293, + 34.96888942117368 + ], + [ + 74.9460425572166, + 35.16353715610213 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 35.16353715610213 + ], + [ + 74.83119987373293, + 34.96888942117368 + ], + [ + 75.06088524070027, + 34.96888942117368 + ], + [ + 74.9460425572166, + 35.16353715610213 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 35.16353715610213 + ], + [ + 75.06088524070027, + 34.96888942117368 + ], + [ + 75.17572792418396, + 35.16353715610213 + ], + [ + 74.9460425572166, + 35.16353715610213 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 35.552832625959034 + ], + [ + 75.17572792418396, + 35.552832625959034 + ], + [ + 75.06088524070027, + 35.74748036088749 + ], + [ + 74.9460425572166, + 35.552832625959034 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 35.552832625959034 + ], + [ + 75.06088524070027, + 35.74748036088749 + ], + [ + 74.83119987373293, + 35.74748036088749 + ], + [ + 74.9460425572166, + 35.552832625959034 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 35.552832625959034 + ], + [ + 74.83119987373293, + 35.74748036088749 + ], + [ + 74.71635719024924, + 35.552832625959034 + ], + [ + 74.9460425572166, + 35.552832625959034 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 35.552832625959034 + ], + [ + 74.71635719024924, + 35.552832625959034 + ], + [ + 74.83119987373293, + 35.35818489103058 + ], + [ + 74.9460425572166, + 35.552832625959034 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 35.552832625959034 + ], + [ + 74.83119987373293, + 35.35818489103058 + ], + [ + 75.06088524070027, + 35.35818489103058 + ], + [ + 74.9460425572166, + 35.552832625959034 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 35.552832625959034 + ], + [ + 75.06088524070027, + 35.35818489103058 + ], + [ + 75.17572792418396, + 35.552832625959034 + ], + [ + 74.9460425572166, + 35.552832625959034 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 35.94212809581594 + ], + [ + 75.17572792418396, + 35.94212809581594 + ], + [ + 75.06088524070027, + 36.13677583074439 + ], + [ + 74.9460425572166, + 35.94212809581594 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 35.94212809581594 + ], + [ + 75.06088524070027, + 36.13677583074439 + ], + [ + 74.83119987373293, + 36.13677583074439 + ], + [ + 74.9460425572166, + 35.94212809581594 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 35.94212809581594 + ], + [ + 74.83119987373293, + 36.13677583074439 + ], + [ + 74.71635719024924, + 35.94212809581594 + ], + [ + 74.9460425572166, + 35.94212809581594 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 35.94212809581594 + ], + [ + 74.71635719024924, + 35.94212809581594 + ], + [ + 74.83119987373293, + 35.74748036088749 + ], + [ + 74.9460425572166, + 35.94212809581594 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 35.94212809581594 + ], + [ + 74.83119987373293, + 35.74748036088749 + ], + [ + 75.06088524070027, + 35.74748036088749 + ], + [ + 74.9460425572166, + 35.94212809581594 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 35.94212809581594 + ], + [ + 75.06088524070027, + 35.74748036088749 + ], + [ + 75.17572792418396, + 35.94212809581594 + ], + [ + 74.9460425572166, + 35.94212809581594 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 36.33142356567284 + ], + [ + 75.17572792418396, + 36.33142356567284 + ], + [ + 75.06088524070027, + 36.526071300601295 + ], + [ + 74.9460425572166, + 36.33142356567284 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 36.33142356567284 + ], + [ + 75.06088524070027, + 36.526071300601295 + ], + [ + 74.83119987373293, + 36.526071300601295 + ], + [ + 74.9460425572166, + 36.33142356567284 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 36.33142356567284 + ], + [ + 74.83119987373293, + 36.526071300601295 + ], + [ + 74.71635719024924, + 36.33142356567284 + ], + [ + 74.9460425572166, + 36.33142356567284 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 36.33142356567284 + ], + [ + 74.71635719024924, + 36.33142356567284 + ], + [ + 74.83119987373293, + 36.13677583074439 + ], + [ + 74.9460425572166, + 36.33142356567284 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 36.33142356567284 + ], + [ + 74.83119987373293, + 36.13677583074439 + ], + [ + 75.06088524070027, + 36.13677583074439 + ], + [ + 74.9460425572166, + 36.33142356567284 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 36.33142356567284 + ], + [ + 75.06088524070027, + 36.13677583074439 + ], + [ + 75.17572792418396, + 36.33142356567284 + ], + [ + 74.9460425572166, + 36.33142356567284 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 36.720719035529754 + ], + [ + 75.17572792418396, + 36.720719035529754 + ], + [ + 75.06088524070027, + 36.915366770458206 + ], + [ + 74.9460425572166, + 36.720719035529754 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 36.720719035529754 + ], + [ + 75.06088524070027, + 36.915366770458206 + ], + [ + 74.83119987373293, + 36.915366770458206 + ], + [ + 74.9460425572166, + 36.720719035529754 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 36.720719035529754 + ], + [ + 74.83119987373293, + 36.915366770458206 + ], + [ + 74.71635719024924, + 36.720719035529754 + ], + [ + 74.9460425572166, + 36.720719035529754 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 36.720719035529754 + ], + [ + 74.71635719024924, + 36.720719035529754 + ], + [ + 74.83119987373293, + 36.5260713006013 + ], + [ + 74.9460425572166, + 36.720719035529754 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 36.720719035529754 + ], + [ + 74.83119987373293, + 36.5260713006013 + ], + [ + 75.06088524070027, + 36.5260713006013 + ], + [ + 74.9460425572166, + 36.720719035529754 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 36.720719035529754 + ], + [ + 75.06088524070027, + 36.5260713006013 + ], + [ + 75.17572792418396, + 36.720719035529754 + ], + [ + 74.9460425572166, + 36.720719035529754 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 37.11001450538666 + ], + [ + 75.17572792418396, + 37.11001450538666 + ], + [ + 75.06088524070027, + 37.30466224031511 + ], + [ + 74.9460425572166, + 37.11001450538666 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 37.11001450538666 + ], + [ + 75.06088524070027, + 37.30466224031511 + ], + [ + 74.83119987373293, + 37.30466224031511 + ], + [ + 74.9460425572166, + 37.11001450538666 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 37.11001450538666 + ], + [ + 74.83119987373293, + 37.30466224031511 + ], + [ + 74.71635719024924, + 37.11001450538666 + ], + [ + 74.9460425572166, + 37.11001450538666 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 37.11001450538666 + ], + [ + 74.71635719024924, + 37.11001450538666 + ], + [ + 74.83119987373293, + 36.915366770458206 + ], + [ + 74.9460425572166, + 37.11001450538666 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 37.11001450538666 + ], + [ + 74.83119987373293, + 36.915366770458206 + ], + [ + 75.06088524070027, + 36.915366770458206 + ], + [ + 74.9460425572166, + 37.11001450538666 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 37.11001450538666 + ], + [ + 75.06088524070027, + 36.915366770458206 + ], + [ + 75.17572792418396, + 37.11001450538666 + ], + [ + 74.9460425572166, + 37.11001450538666 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 37.49930997524357 + ], + [ + 75.17572792418396, + 37.49930997524357 + ], + [ + 75.06088524070027, + 37.69395771017202 + ], + [ + 74.9460425572166, + 37.49930997524357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 37.49930997524357 + ], + [ + 75.06088524070027, + 37.69395771017202 + ], + [ + 74.83119987373293, + 37.69395771017202 + ], + [ + 74.9460425572166, + 37.49930997524357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 37.49930997524357 + ], + [ + 74.83119987373293, + 37.69395771017202 + ], + [ + 74.71635719024924, + 37.49930997524357 + ], + [ + 74.9460425572166, + 37.49930997524357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 37.49930997524357 + ], + [ + 74.71635719024924, + 37.49930997524357 + ], + [ + 74.83119987373293, + 37.30466224031512 + ], + [ + 74.9460425572166, + 37.49930997524357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 37.49930997524357 + ], + [ + 74.83119987373293, + 37.30466224031512 + ], + [ + 75.06088524070027, + 37.30466224031512 + ], + [ + 74.9460425572166, + 37.49930997524357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 37.49930997524357 + ], + [ + 75.06088524070027, + 37.30466224031512 + ], + [ + 75.17572792418396, + 37.49930997524357 + ], + [ + 74.9460425572166, + 37.49930997524357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 37.888605445100474 + ], + [ + 75.17572792418396, + 37.888605445100474 + ], + [ + 75.06088524070027, + 38.083253180028926 + ], + [ + 74.9460425572166, + 37.888605445100474 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 37.888605445100474 + ], + [ + 75.06088524070027, + 38.083253180028926 + ], + [ + 74.83119987373293, + 38.083253180028926 + ], + [ + 74.9460425572166, + 37.888605445100474 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 37.888605445100474 + ], + [ + 74.83119987373293, + 38.083253180028926 + ], + [ + 74.71635719024924, + 37.888605445100474 + ], + [ + 74.9460425572166, + 37.888605445100474 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 37.888605445100474 + ], + [ + 74.71635719024924, + 37.888605445100474 + ], + [ + 74.83119987373293, + 37.69395771017202 + ], + [ + 74.9460425572166, + 37.888605445100474 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 37.888605445100474 + ], + [ + 74.83119987373293, + 37.69395771017202 + ], + [ + 75.06088524070027, + 37.69395771017202 + ], + [ + 74.9460425572166, + 37.888605445100474 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 37.888605445100474 + ], + [ + 75.06088524070027, + 37.69395771017202 + ], + [ + 75.17572792418396, + 37.888605445100474 + ], + [ + 74.9460425572166, + 37.888605445100474 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 38.27790091495738 + ], + [ + 75.17572792418396, + 38.27790091495738 + ], + [ + 75.06088524070027, + 38.47254864988583 + ], + [ + 74.9460425572166, + 38.27790091495738 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 38.27790091495738 + ], + [ + 75.06088524070027, + 38.47254864988583 + ], + [ + 74.83119987373293, + 38.47254864988583 + ], + [ + 74.9460425572166, + 38.27790091495738 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 38.27790091495738 + ], + [ + 74.83119987373293, + 38.47254864988583 + ], + [ + 74.71635719024924, + 38.27790091495738 + ], + [ + 74.9460425572166, + 38.27790091495738 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 38.27790091495738 + ], + [ + 74.71635719024924, + 38.27790091495738 + ], + [ + 74.83119987373293, + 38.083253180028926 + ], + [ + 74.9460425572166, + 38.27790091495738 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 38.27790091495738 + ], + [ + 74.83119987373293, + 38.083253180028926 + ], + [ + 75.06088524070027, + 38.083253180028926 + ], + [ + 74.9460425572166, + 38.27790091495738 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 38.27790091495738 + ], + [ + 75.06088524070027, + 38.083253180028926 + ], + [ + 75.17572792418396, + 38.27790091495738 + ], + [ + 74.9460425572166, + 38.27790091495738 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 38.66719638481428 + ], + [ + 75.17572792418396, + 38.66719638481428 + ], + [ + 75.06088524070027, + 38.861844119742734 + ], + [ + 74.9460425572166, + 38.66719638481428 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 38.66719638481428 + ], + [ + 75.06088524070027, + 38.861844119742734 + ], + [ + 74.83119987373293, + 38.861844119742734 + ], + [ + 74.9460425572166, + 38.66719638481428 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 38.66719638481428 + ], + [ + 74.83119987373293, + 38.861844119742734 + ], + [ + 74.71635719024924, + 38.66719638481428 + ], + [ + 74.9460425572166, + 38.66719638481428 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 38.66719638481428 + ], + [ + 74.71635719024924, + 38.66719638481428 + ], + [ + 74.83119987373293, + 38.47254864988583 + ], + [ + 74.9460425572166, + 38.66719638481428 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 38.66719638481428 + ], + [ + 74.83119987373293, + 38.47254864988583 + ], + [ + 75.06088524070027, + 38.47254864988583 + ], + [ + 74.9460425572166, + 38.66719638481428 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 38.66719638481428 + ], + [ + 75.06088524070027, + 38.47254864988583 + ], + [ + 75.17572792418396, + 38.66719638481428 + ], + [ + 74.9460425572166, + 38.66719638481428 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 39.05649185467119 + ], + [ + 75.17572792418396, + 39.05649185467119 + ], + [ + 75.06088524070027, + 39.25113958959964 + ], + [ + 74.9460425572166, + 39.05649185467119 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 39.05649185467119 + ], + [ + 75.06088524070027, + 39.25113958959964 + ], + [ + 74.83119987373293, + 39.25113958959964 + ], + [ + 74.9460425572166, + 39.05649185467119 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 39.05649185467119 + ], + [ + 74.83119987373293, + 39.25113958959964 + ], + [ + 74.71635719024924, + 39.05649185467119 + ], + [ + 74.9460425572166, + 39.05649185467119 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 39.05649185467119 + ], + [ + 74.71635719024924, + 39.05649185467119 + ], + [ + 74.83119987373293, + 38.861844119742734 + ], + [ + 74.9460425572166, + 39.05649185467119 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 39.05649185467119 + ], + [ + 74.83119987373293, + 38.861844119742734 + ], + [ + 75.06088524070027, + 38.861844119742734 + ], + [ + 74.9460425572166, + 39.05649185467119 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 39.05649185467119 + ], + [ + 75.06088524070027, + 38.861844119742734 + ], + [ + 75.17572792418396, + 39.05649185467119 + ], + [ + 74.9460425572166, + 39.05649185467119 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 39.4457873245281 + ], + [ + 75.17572792418396, + 39.4457873245281 + ], + [ + 75.06088524070027, + 39.64043505945655 + ], + [ + 74.9460425572166, + 39.4457873245281 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 39.4457873245281 + ], + [ + 75.06088524070027, + 39.64043505945655 + ], + [ + 74.83119987373293, + 39.64043505945655 + ], + [ + 74.9460425572166, + 39.4457873245281 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 39.4457873245281 + ], + [ + 74.83119987373293, + 39.64043505945655 + ], + [ + 74.71635719024924, + 39.4457873245281 + ], + [ + 74.9460425572166, + 39.4457873245281 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 39.4457873245281 + ], + [ + 74.71635719024924, + 39.4457873245281 + ], + [ + 74.83119987373293, + 39.251139589599646 + ], + [ + 74.9460425572166, + 39.4457873245281 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 39.4457873245281 + ], + [ + 74.83119987373293, + 39.251139589599646 + ], + [ + 75.06088524070027, + 39.251139589599646 + ], + [ + 74.9460425572166, + 39.4457873245281 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 39.4457873245281 + ], + [ + 75.06088524070027, + 39.251139589599646 + ], + [ + 75.17572792418396, + 39.4457873245281 + ], + [ + 74.9460425572166, + 39.4457873245281 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 39.835082794385 + ], + [ + 75.17572792418396, + 39.835082794385 + ], + [ + 75.06088524070027, + 40.029730529313454 + ], + [ + 74.9460425572166, + 39.835082794385 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 39.835082794385 + ], + [ + 75.06088524070027, + 40.029730529313454 + ], + [ + 74.83119987373293, + 40.029730529313454 + ], + [ + 74.9460425572166, + 39.835082794385 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 39.835082794385 + ], + [ + 74.83119987373293, + 40.029730529313454 + ], + [ + 74.71635719024924, + 39.835082794385 + ], + [ + 74.9460425572166, + 39.835082794385 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 39.835082794385 + ], + [ + 74.71635719024924, + 39.835082794385 + ], + [ + 74.83119987373293, + 39.64043505945655 + ], + [ + 74.9460425572166, + 39.835082794385 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 39.835082794385 + ], + [ + 74.83119987373293, + 39.64043505945655 + ], + [ + 75.06088524070027, + 39.64043505945655 + ], + [ + 74.9460425572166, + 39.835082794385 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 39.835082794385 + ], + [ + 75.06088524070027, + 39.64043505945655 + ], + [ + 75.17572792418396, + 39.835082794385 + ], + [ + 74.9460425572166, + 39.835082794385 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 40.22437826424191 + ], + [ + 75.17572792418396, + 40.22437826424191 + ], + [ + 75.06088524070027, + 40.419025999170366 + ], + [ + 74.9460425572166, + 40.22437826424191 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 40.22437826424191 + ], + [ + 75.06088524070027, + 40.419025999170366 + ], + [ + 74.83119987373293, + 40.419025999170366 + ], + [ + 74.9460425572166, + 40.22437826424191 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 40.22437826424191 + ], + [ + 74.83119987373293, + 40.419025999170366 + ], + [ + 74.71635719024924, + 40.22437826424191 + ], + [ + 74.9460425572166, + 40.22437826424191 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 40.22437826424191 + ], + [ + 74.71635719024924, + 40.22437826424191 + ], + [ + 74.83119987373293, + 40.02973052931346 + ], + [ + 74.9460425572166, + 40.22437826424191 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 40.22437826424191 + ], + [ + 74.83119987373293, + 40.02973052931346 + ], + [ + 75.06088524070027, + 40.02973052931346 + ], + [ + 74.9460425572166, + 40.22437826424191 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 40.22437826424191 + ], + [ + 75.06088524070027, + 40.02973052931346 + ], + [ + 75.17572792418396, + 40.22437826424191 + ], + [ + 74.9460425572166, + 40.22437826424191 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 40.61367373409882 + ], + [ + 75.17572792418396, + 40.61367373409882 + ], + [ + 75.06088524070027, + 40.80832146902727 + ], + [ + 74.9460425572166, + 40.61367373409882 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 40.61367373409882 + ], + [ + 75.06088524070027, + 40.80832146902727 + ], + [ + 74.83119987373293, + 40.80832146902727 + ], + [ + 74.9460425572166, + 40.61367373409882 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 40.61367373409882 + ], + [ + 74.83119987373293, + 40.80832146902727 + ], + [ + 74.71635719024924, + 40.61367373409882 + ], + [ + 74.9460425572166, + 40.61367373409882 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 40.61367373409882 + ], + [ + 74.71635719024924, + 40.61367373409882 + ], + [ + 74.83119987373293, + 40.419025999170366 + ], + [ + 74.9460425572166, + 40.61367373409882 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 40.61367373409882 + ], + [ + 74.83119987373293, + 40.419025999170366 + ], + [ + 75.06088524070027, + 40.419025999170366 + ], + [ + 74.9460425572166, + 40.61367373409882 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 40.61367373409882 + ], + [ + 75.06088524070027, + 40.419025999170366 + ], + [ + 75.17572792418396, + 40.61367373409882 + ], + [ + 74.9460425572166, + 40.61367373409882 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 41.00296920395572 + ], + [ + 75.17572792418396, + 41.00296920395572 + ], + [ + 75.06088524070027, + 41.197616938884174 + ], + [ + 74.9460425572166, + 41.00296920395572 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 41.00296920395572 + ], + [ + 75.06088524070027, + 41.197616938884174 + ], + [ + 74.83119987373293, + 41.197616938884174 + ], + [ + 74.9460425572166, + 41.00296920395572 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 41.00296920395572 + ], + [ + 74.83119987373293, + 41.197616938884174 + ], + [ + 74.71635719024924, + 41.00296920395572 + ], + [ + 74.9460425572166, + 41.00296920395572 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 41.00296920395572 + ], + [ + 74.71635719024924, + 41.00296920395572 + ], + [ + 74.83119987373293, + 40.80832146902727 + ], + [ + 74.9460425572166, + 41.00296920395572 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 41.00296920395572 + ], + [ + 74.83119987373293, + 40.80832146902727 + ], + [ + 75.06088524070027, + 40.80832146902727 + ], + [ + 74.9460425572166, + 41.00296920395572 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 41.00296920395572 + ], + [ + 75.06088524070027, + 40.80832146902727 + ], + [ + 75.17572792418396, + 41.00296920395572 + ], + [ + 74.9460425572166, + 41.00296920395572 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 41.392264673812626 + ], + [ + 75.17572792418396, + 41.392264673812626 + ], + [ + 75.06088524070027, + 41.58691240874108 + ], + [ + 74.9460425572166, + 41.392264673812626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 41.392264673812626 + ], + [ + 75.06088524070027, + 41.58691240874108 + ], + [ + 74.83119987373293, + 41.58691240874108 + ], + [ + 74.9460425572166, + 41.392264673812626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 41.392264673812626 + ], + [ + 74.83119987373293, + 41.58691240874108 + ], + [ + 74.71635719024924, + 41.392264673812626 + ], + [ + 74.9460425572166, + 41.392264673812626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 41.392264673812626 + ], + [ + 74.71635719024924, + 41.392264673812626 + ], + [ + 74.83119987373293, + 41.197616938884174 + ], + [ + 74.9460425572166, + 41.392264673812626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 41.392264673812626 + ], + [ + 74.83119987373293, + 41.197616938884174 + ], + [ + 75.06088524070027, + 41.197616938884174 + ], + [ + 74.9460425572166, + 41.392264673812626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 41.392264673812626 + ], + [ + 75.06088524070027, + 41.197616938884174 + ], + [ + 75.17572792418396, + 41.392264673812626 + ], + [ + 74.9460425572166, + 41.392264673812626 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 41.78156014366953 + ], + [ + 75.17572792418396, + 41.78156014366953 + ], + [ + 75.06088524070027, + 41.97620787859798 + ], + [ + 74.9460425572166, + 41.78156014366953 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 41.78156014366953 + ], + [ + 75.06088524070027, + 41.97620787859798 + ], + [ + 74.83119987373293, + 41.97620787859798 + ], + [ + 74.9460425572166, + 41.78156014366953 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 41.78156014366953 + ], + [ + 74.83119987373293, + 41.97620787859798 + ], + [ + 74.71635719024924, + 41.78156014366953 + ], + [ + 74.9460425572166, + 41.78156014366953 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 41.78156014366953 + ], + [ + 74.71635719024924, + 41.78156014366953 + ], + [ + 74.83119987373293, + 41.58691240874108 + ], + [ + 74.9460425572166, + 41.78156014366953 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 41.78156014366953 + ], + [ + 74.83119987373293, + 41.58691240874108 + ], + [ + 75.06088524070027, + 41.58691240874108 + ], + [ + 74.9460425572166, + 41.78156014366953 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 41.78156014366953 + ], + [ + 75.06088524070027, + 41.58691240874108 + ], + [ + 75.17572792418396, + 41.78156014366953 + ], + [ + 74.9460425572166, + 41.78156014366953 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 42.17085561352644 + ], + [ + 75.17572792418396, + 42.17085561352644 + ], + [ + 75.06088524070027, + 42.365503348454894 + ], + [ + 74.9460425572166, + 42.17085561352644 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 42.17085561352644 + ], + [ + 75.06088524070027, + 42.365503348454894 + ], + [ + 74.83119987373293, + 42.365503348454894 + ], + [ + 74.9460425572166, + 42.17085561352644 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 42.17085561352644 + ], + [ + 74.83119987373293, + 42.365503348454894 + ], + [ + 74.71635719024924, + 42.17085561352644 + ], + [ + 74.9460425572166, + 42.17085561352644 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 42.17085561352644 + ], + [ + 74.71635719024924, + 42.17085561352644 + ], + [ + 74.83119987373293, + 41.97620787859799 + ], + [ + 74.9460425572166, + 42.17085561352644 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 42.17085561352644 + ], + [ + 74.83119987373293, + 41.97620787859799 + ], + [ + 75.06088524070027, + 41.97620787859799 + ], + [ + 74.9460425572166, + 42.17085561352644 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 42.17085561352644 + ], + [ + 75.06088524070027, + 41.97620787859799 + ], + [ + 75.17572792418396, + 42.17085561352644 + ], + [ + 74.9460425572166, + 42.17085561352644 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 42.56015108338335 + ], + [ + 75.17572792418396, + 42.56015108338335 + ], + [ + 75.06088524070027, + 42.754798818311805 + ], + [ + 74.9460425572166, + 42.56015108338335 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 42.56015108338335 + ], + [ + 75.06088524070027, + 42.754798818311805 + ], + [ + 74.83119987373293, + 42.754798818311805 + ], + [ + 74.9460425572166, + 42.56015108338335 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 42.56015108338335 + ], + [ + 74.83119987373293, + 42.754798818311805 + ], + [ + 74.71635719024924, + 42.56015108338335 + ], + [ + 74.9460425572166, + 42.56015108338335 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 42.56015108338335 + ], + [ + 74.71635719024924, + 42.56015108338335 + ], + [ + 74.83119987373293, + 42.3655033484549 + ], + [ + 74.9460425572166, + 42.56015108338335 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 42.56015108338335 + ], + [ + 74.83119987373293, + 42.3655033484549 + ], + [ + 75.06088524070027, + 42.3655033484549 + ], + [ + 74.9460425572166, + 42.56015108338335 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 42.56015108338335 + ], + [ + 75.06088524070027, + 42.3655033484549 + ], + [ + 75.17572792418396, + 42.56015108338335 + ], + [ + 74.9460425572166, + 42.56015108338335 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 42.94944655324026 + ], + [ + 75.17572792418396, + 42.94944655324026 + ], + [ + 75.06088524070027, + 43.14409428816871 + ], + [ + 74.9460425572166, + 42.94944655324026 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 42.94944655324026 + ], + [ + 75.06088524070027, + 43.14409428816871 + ], + [ + 74.83119987373293, + 43.14409428816871 + ], + [ + 74.9460425572166, + 42.94944655324026 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 42.94944655324026 + ], + [ + 74.83119987373293, + 43.14409428816871 + ], + [ + 74.71635719024924, + 42.94944655324026 + ], + [ + 74.9460425572166, + 42.94944655324026 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 42.94944655324026 + ], + [ + 74.71635719024924, + 42.94944655324026 + ], + [ + 74.83119987373293, + 42.754798818311805 + ], + [ + 74.9460425572166, + 42.94944655324026 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 42.94944655324026 + ], + [ + 74.83119987373293, + 42.754798818311805 + ], + [ + 75.06088524070027, + 42.754798818311805 + ], + [ + 74.9460425572166, + 42.94944655324026 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 42.94944655324026 + ], + [ + 75.06088524070027, + 42.754798818311805 + ], + [ + 75.17572792418396, + 42.94944655324026 + ], + [ + 74.9460425572166, + 42.94944655324026 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 43.33874202309716 + ], + [ + 75.17572792418396, + 43.33874202309716 + ], + [ + 75.06088524070027, + 43.53338975802561 + ], + [ + 74.9460425572166, + 43.33874202309716 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 43.33874202309716 + ], + [ + 75.06088524070027, + 43.53338975802561 + ], + [ + 74.83119987373293, + 43.53338975802561 + ], + [ + 74.9460425572166, + 43.33874202309716 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 43.33874202309716 + ], + [ + 74.83119987373293, + 43.53338975802561 + ], + [ + 74.71635719024924, + 43.33874202309716 + ], + [ + 74.9460425572166, + 43.33874202309716 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 43.33874202309716 + ], + [ + 74.71635719024924, + 43.33874202309716 + ], + [ + 74.83119987373293, + 43.14409428816871 + ], + [ + 74.9460425572166, + 43.33874202309716 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 43.33874202309716 + ], + [ + 74.83119987373293, + 43.14409428816871 + ], + [ + 75.06088524070027, + 43.14409428816871 + ], + [ + 74.9460425572166, + 43.33874202309716 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 43.33874202309716 + ], + [ + 75.06088524070027, + 43.14409428816871 + ], + [ + 75.17572792418396, + 43.33874202309716 + ], + [ + 74.9460425572166, + 43.33874202309716 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 43.728037492954066 + ], + [ + 75.17572792418396, + 43.728037492954066 + ], + [ + 75.06088524070027, + 43.92268522788252 + ], + [ + 74.9460425572166, + 43.728037492954066 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 43.728037492954066 + ], + [ + 75.06088524070027, + 43.92268522788252 + ], + [ + 74.83119987373293, + 43.92268522788252 + ], + [ + 74.9460425572166, + 43.728037492954066 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 43.728037492954066 + ], + [ + 74.83119987373293, + 43.92268522788252 + ], + [ + 74.71635719024924, + 43.728037492954066 + ], + [ + 74.9460425572166, + 43.728037492954066 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 43.728037492954066 + ], + [ + 74.71635719024924, + 43.728037492954066 + ], + [ + 74.83119987373293, + 43.53338975802561 + ], + [ + 74.9460425572166, + 43.728037492954066 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 43.728037492954066 + ], + [ + 74.83119987373293, + 43.53338975802561 + ], + [ + 75.06088524070027, + 43.53338975802561 + ], + [ + 74.9460425572166, + 43.728037492954066 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 43.728037492954066 + ], + [ + 75.06088524070027, + 43.53338975802561 + ], + [ + 75.17572792418396, + 43.728037492954066 + ], + [ + 74.9460425572166, + 43.728037492954066 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 44.11733296281097 + ], + [ + 75.17572792418396, + 44.11733296281097 + ], + [ + 75.06088524070027, + 44.31198069773942 + ], + [ + 74.9460425572166, + 44.11733296281097 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 44.11733296281097 + ], + [ + 75.06088524070027, + 44.31198069773942 + ], + [ + 74.83119987373293, + 44.31198069773942 + ], + [ + 74.9460425572166, + 44.11733296281097 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 44.11733296281097 + ], + [ + 74.83119987373293, + 44.31198069773942 + ], + [ + 74.71635719024924, + 44.11733296281097 + ], + [ + 74.9460425572166, + 44.11733296281097 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 44.11733296281097 + ], + [ + 74.71635719024924, + 44.11733296281097 + ], + [ + 74.83119987373293, + 43.92268522788252 + ], + [ + 74.9460425572166, + 44.11733296281097 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 44.11733296281097 + ], + [ + 74.83119987373293, + 43.92268522788252 + ], + [ + 75.06088524070027, + 43.92268522788252 + ], + [ + 74.9460425572166, + 44.11733296281097 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 44.11733296281097 + ], + [ + 75.06088524070027, + 43.92268522788252 + ], + [ + 75.17572792418396, + 44.11733296281097 + ], + [ + 74.9460425572166, + 44.11733296281097 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 44.506628432667874 + ], + [ + 75.17572792418396, + 44.506628432667874 + ], + [ + 75.06088524070027, + 44.701276167596326 + ], + [ + 74.9460425572166, + 44.506628432667874 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 44.506628432667874 + ], + [ + 75.06088524070027, + 44.701276167596326 + ], + [ + 74.83119987373293, + 44.701276167596326 + ], + [ + 74.9460425572166, + 44.506628432667874 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 44.506628432667874 + ], + [ + 74.83119987373293, + 44.701276167596326 + ], + [ + 74.71635719024924, + 44.506628432667874 + ], + [ + 74.9460425572166, + 44.506628432667874 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 44.506628432667874 + ], + [ + 74.71635719024924, + 44.506628432667874 + ], + [ + 74.83119987373293, + 44.31198069773942 + ], + [ + 74.9460425572166, + 44.506628432667874 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 44.506628432667874 + ], + [ + 74.83119987373293, + 44.31198069773942 + ], + [ + 75.06088524070027, + 44.31198069773942 + ], + [ + 74.9460425572166, + 44.506628432667874 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 44.506628432667874 + ], + [ + 75.06088524070027, + 44.31198069773942 + ], + [ + 75.17572792418396, + 44.506628432667874 + ], + [ + 74.9460425572166, + 44.506628432667874 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 44.89592390252479 + ], + [ + 75.17572792418396, + 44.89592390252479 + ], + [ + 75.06088524070027, + 45.090571637453245 + ], + [ + 74.9460425572166, + 44.89592390252479 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 44.89592390252479 + ], + [ + 75.06088524070027, + 45.090571637453245 + ], + [ + 74.83119987373293, + 45.090571637453245 + ], + [ + 74.9460425572166, + 44.89592390252479 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 44.89592390252479 + ], + [ + 74.83119987373293, + 45.090571637453245 + ], + [ + 74.71635719024924, + 44.89592390252479 + ], + [ + 74.9460425572166, + 44.89592390252479 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 44.89592390252479 + ], + [ + 74.71635719024924, + 44.89592390252479 + ], + [ + 74.83119987373293, + 44.70127616759634 + ], + [ + 74.9460425572166, + 44.89592390252479 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 44.89592390252479 + ], + [ + 74.83119987373293, + 44.70127616759634 + ], + [ + 75.06088524070027, + 44.70127616759634 + ], + [ + 74.9460425572166, + 44.89592390252479 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 44.89592390252479 + ], + [ + 75.06088524070027, + 44.70127616759634 + ], + [ + 75.17572792418396, + 44.89592390252479 + ], + [ + 74.9460425572166, + 44.89592390252479 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 45.2852193723817 + ], + [ + 75.17572792418396, + 45.2852193723817 + ], + [ + 75.06088524070027, + 45.47986710731015 + ], + [ + 74.9460425572166, + 45.2852193723817 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 45.2852193723817 + ], + [ + 75.06088524070027, + 45.47986710731015 + ], + [ + 74.83119987373293, + 45.47986710731015 + ], + [ + 74.9460425572166, + 45.2852193723817 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 45.2852193723817 + ], + [ + 74.83119987373293, + 45.47986710731015 + ], + [ + 74.71635719024924, + 45.2852193723817 + ], + [ + 74.9460425572166, + 45.2852193723817 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 45.2852193723817 + ], + [ + 74.71635719024924, + 45.2852193723817 + ], + [ + 74.83119987373293, + 45.090571637453245 + ], + [ + 74.9460425572166, + 45.2852193723817 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 45.2852193723817 + ], + [ + 74.83119987373293, + 45.090571637453245 + ], + [ + 75.06088524070027, + 45.090571637453245 + ], + [ + 74.9460425572166, + 45.2852193723817 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 45.2852193723817 + ], + [ + 75.06088524070027, + 45.090571637453245 + ], + [ + 75.17572792418396, + 45.2852193723817 + ], + [ + 74.9460425572166, + 45.2852193723817 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 45.6745148422386 + ], + [ + 75.17572792418396, + 45.6745148422386 + ], + [ + 75.06088524070027, + 45.86916257716705 + ], + [ + 74.9460425572166, + 45.6745148422386 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 45.6745148422386 + ], + [ + 75.06088524070027, + 45.86916257716705 + ], + [ + 74.83119987373293, + 45.86916257716705 + ], + [ + 74.9460425572166, + 45.6745148422386 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 45.6745148422386 + ], + [ + 74.83119987373293, + 45.86916257716705 + ], + [ + 74.71635719024924, + 45.6745148422386 + ], + [ + 74.9460425572166, + 45.6745148422386 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 45.6745148422386 + ], + [ + 74.71635719024924, + 45.6745148422386 + ], + [ + 74.83119987373293, + 45.47986710731015 + ], + [ + 74.9460425572166, + 45.6745148422386 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 45.6745148422386 + ], + [ + 74.83119987373293, + 45.47986710731015 + ], + [ + 75.06088524070027, + 45.47986710731015 + ], + [ + 74.9460425572166, + 45.6745148422386 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 45.6745148422386 + ], + [ + 75.06088524070027, + 45.47986710731015 + ], + [ + 75.17572792418396, + 45.6745148422386 + ], + [ + 74.9460425572166, + 45.6745148422386 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 46.063810312095505 + ], + [ + 75.17572792418396, + 46.063810312095505 + ], + [ + 75.06088524070027, + 46.25845804702396 + ], + [ + 74.9460425572166, + 46.063810312095505 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 46.063810312095505 + ], + [ + 75.06088524070027, + 46.25845804702396 + ], + [ + 74.83119987373293, + 46.25845804702396 + ], + [ + 74.9460425572166, + 46.063810312095505 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 46.063810312095505 + ], + [ + 74.83119987373293, + 46.25845804702396 + ], + [ + 74.71635719024924, + 46.063810312095505 + ], + [ + 74.9460425572166, + 46.063810312095505 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 46.063810312095505 + ], + [ + 74.71635719024924, + 46.063810312095505 + ], + [ + 74.83119987373293, + 45.86916257716705 + ], + [ + 74.9460425572166, + 46.063810312095505 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 46.063810312095505 + ], + [ + 74.83119987373293, + 45.86916257716705 + ], + [ + 75.06088524070027, + 45.86916257716705 + ], + [ + 74.9460425572166, + 46.063810312095505 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 46.063810312095505 + ], + [ + 75.06088524070027, + 45.86916257716705 + ], + [ + 75.17572792418396, + 46.063810312095505 + ], + [ + 74.9460425572166, + 46.063810312095505 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 46.45310578195241 + ], + [ + 75.17572792418396, + 46.45310578195241 + ], + [ + 75.06088524070027, + 46.64775351688086 + ], + [ + 74.9460425572166, + 46.45310578195241 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 46.45310578195241 + ], + [ + 75.06088524070027, + 46.64775351688086 + ], + [ + 74.83119987373293, + 46.64775351688086 + ], + [ + 74.9460425572166, + 46.45310578195241 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 46.45310578195241 + ], + [ + 74.83119987373293, + 46.64775351688086 + ], + [ + 74.71635719024924, + 46.45310578195241 + ], + [ + 74.9460425572166, + 46.45310578195241 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 46.45310578195241 + ], + [ + 74.71635719024924, + 46.45310578195241 + ], + [ + 74.83119987373293, + 46.25845804702396 + ], + [ + 74.9460425572166, + 46.45310578195241 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 46.45310578195241 + ], + [ + 74.83119987373293, + 46.25845804702396 + ], + [ + 75.06088524070027, + 46.25845804702396 + ], + [ + 74.9460425572166, + 46.45310578195241 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 46.45310578195241 + ], + [ + 75.06088524070027, + 46.25845804702396 + ], + [ + 75.17572792418396, + 46.45310578195241 + ], + [ + 74.9460425572166, + 46.45310578195241 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 46.842401251809314 + ], + [ + 75.17572792418396, + 46.842401251809314 + ], + [ + 75.06088524070027, + 47.037048986737766 + ], + [ + 74.9460425572166, + 46.842401251809314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 46.842401251809314 + ], + [ + 75.06088524070027, + 47.037048986737766 + ], + [ + 74.83119987373293, + 47.037048986737766 + ], + [ + 74.9460425572166, + 46.842401251809314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 46.842401251809314 + ], + [ + 74.83119987373293, + 47.037048986737766 + ], + [ + 74.71635719024924, + 46.842401251809314 + ], + [ + 74.9460425572166, + 46.842401251809314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 46.842401251809314 + ], + [ + 74.71635719024924, + 46.842401251809314 + ], + [ + 74.83119987373293, + 46.64775351688086 + ], + [ + 74.9460425572166, + 46.842401251809314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 46.842401251809314 + ], + [ + 74.83119987373293, + 46.64775351688086 + ], + [ + 75.06088524070027, + 46.64775351688086 + ], + [ + 74.9460425572166, + 46.842401251809314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 46.842401251809314 + ], + [ + 75.06088524070027, + 46.64775351688086 + ], + [ + 75.17572792418396, + 46.842401251809314 + ], + [ + 74.9460425572166, + 46.842401251809314 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 47.23169672166622 + ], + [ + 75.17572792418396, + 47.23169672166622 + ], + [ + 75.06088524070027, + 47.42634445659467 + ], + [ + 74.9460425572166, + 47.23169672166622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 47.23169672166622 + ], + [ + 75.06088524070027, + 47.42634445659467 + ], + [ + 74.83119987373293, + 47.42634445659467 + ], + [ + 74.9460425572166, + 47.23169672166622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 47.23169672166622 + ], + [ + 74.83119987373293, + 47.42634445659467 + ], + [ + 74.71635719024924, + 47.23169672166622 + ], + [ + 74.9460425572166, + 47.23169672166622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 47.23169672166622 + ], + [ + 74.71635719024924, + 47.23169672166622 + ], + [ + 74.83119987373293, + 47.037048986737766 + ], + [ + 74.9460425572166, + 47.23169672166622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 47.23169672166622 + ], + [ + 74.83119987373293, + 47.037048986737766 + ], + [ + 75.06088524070027, + 47.037048986737766 + ], + [ + 74.9460425572166, + 47.23169672166622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 47.23169672166622 + ], + [ + 75.06088524070027, + 47.037048986737766 + ], + [ + 75.17572792418396, + 47.23169672166622 + ], + [ + 74.9460425572166, + 47.23169672166622 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 47.620992191523136 + ], + [ + 75.17572792418396, + 47.620992191523136 + ], + [ + 75.06088524070027, + 47.81563992645159 + ], + [ + 74.9460425572166, + 47.620992191523136 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 47.620992191523136 + ], + [ + 75.06088524070027, + 47.81563992645159 + ], + [ + 74.83119987373293, + 47.81563992645159 + ], + [ + 74.9460425572166, + 47.620992191523136 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 47.620992191523136 + ], + [ + 74.83119987373293, + 47.81563992645159 + ], + [ + 74.71635719024924, + 47.620992191523136 + ], + [ + 74.9460425572166, + 47.620992191523136 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 47.620992191523136 + ], + [ + 74.71635719024924, + 47.620992191523136 + ], + [ + 74.83119987373293, + 47.426344456594684 + ], + [ + 74.9460425572166, + 47.620992191523136 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 47.620992191523136 + ], + [ + 74.83119987373293, + 47.426344456594684 + ], + [ + 75.06088524070027, + 47.426344456594684 + ], + [ + 74.9460425572166, + 47.620992191523136 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.9460425572166, + 47.620992191523136 + ], + [ + 75.06088524070027, + 47.426344456594684 + ], + [ + 75.17572792418396, + 47.620992191523136 + ], + [ + 74.9460425572166, + 47.620992191523136 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 12.0004566996162 + ], + [ + 75.52025597463499, + 12.0004566996162 + ], + [ + 75.4054132911513, + 12.195104434544653 + ], + [ + 75.29057060766763, + 12.0004566996162 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 12.0004566996162 + ], + [ + 75.4054132911513, + 12.195104434544653 + ], + [ + 75.17572792418396, + 12.195104434544653 + ], + [ + 75.29057060766763, + 12.0004566996162 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 12.0004566996162 + ], + [ + 75.17572792418396, + 12.195104434544653 + ], + [ + 75.06088524070027, + 12.0004566996162 + ], + [ + 75.29057060766763, + 12.0004566996162 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 12.0004566996162 + ], + [ + 75.06088524070027, + 12.0004566996162 + ], + [ + 75.17572792418396, + 11.805808964687746 + ], + [ + 75.29057060766763, + 12.0004566996162 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 12.0004566996162 + ], + [ + 75.17572792418396, + 11.805808964687746 + ], + [ + 75.4054132911513, + 11.805808964687746 + ], + [ + 75.29057060766763, + 12.0004566996162 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 12.0004566996162 + ], + [ + 75.4054132911513, + 11.805808964687746 + ], + [ + 75.52025597463499, + 12.0004566996162 + ], + [ + 75.29057060766763, + 12.0004566996162 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 12.389752169473105 + ], + [ + 75.52025597463499, + 12.389752169473105 + ], + [ + 75.4054132911513, + 12.58439990440156 + ], + [ + 75.29057060766763, + 12.389752169473105 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 12.389752169473105 + ], + [ + 75.4054132911513, + 12.58439990440156 + ], + [ + 75.17572792418396, + 12.58439990440156 + ], + [ + 75.29057060766763, + 12.389752169473105 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 12.389752169473105 + ], + [ + 75.17572792418396, + 12.58439990440156 + ], + [ + 75.06088524070027, + 12.389752169473105 + ], + [ + 75.29057060766763, + 12.389752169473105 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 12.389752169473105 + ], + [ + 75.06088524070027, + 12.389752169473105 + ], + [ + 75.17572792418396, + 12.195104434544652 + ], + [ + 75.29057060766763, + 12.389752169473105 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 12.389752169473105 + ], + [ + 75.17572792418396, + 12.195104434544652 + ], + [ + 75.4054132911513, + 12.195104434544652 + ], + [ + 75.29057060766763, + 12.389752169473105 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 12.389752169473105 + ], + [ + 75.4054132911513, + 12.195104434544652 + ], + [ + 75.52025597463499, + 12.389752169473105 + ], + [ + 75.29057060766763, + 12.389752169473105 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 12.779047639330013 + ], + [ + 75.52025597463499, + 12.779047639330013 + ], + [ + 75.4054132911513, + 12.973695374258467 + ], + [ + 75.29057060766763, + 12.779047639330013 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 12.779047639330013 + ], + [ + 75.4054132911513, + 12.973695374258467 + ], + [ + 75.17572792418396, + 12.973695374258467 + ], + [ + 75.29057060766763, + 12.779047639330013 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 12.779047639330013 + ], + [ + 75.17572792418396, + 12.973695374258467 + ], + [ + 75.06088524070027, + 12.779047639330013 + ], + [ + 75.29057060766763, + 12.779047639330013 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 12.779047639330013 + ], + [ + 75.06088524070027, + 12.779047639330013 + ], + [ + 75.17572792418396, + 12.58439990440156 + ], + [ + 75.29057060766763, + 12.779047639330013 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 12.779047639330013 + ], + [ + 75.17572792418396, + 12.58439990440156 + ], + [ + 75.4054132911513, + 12.58439990440156 + ], + [ + 75.29057060766763, + 12.779047639330013 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 12.779047639330013 + ], + [ + 75.4054132911513, + 12.58439990440156 + ], + [ + 75.52025597463499, + 12.779047639330013 + ], + [ + 75.29057060766763, + 12.779047639330013 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 13.16834310918692 + ], + [ + 75.52025597463499, + 13.16834310918692 + ], + [ + 75.4054132911513, + 13.362990844115373 + ], + [ + 75.29057060766763, + 13.16834310918692 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 13.16834310918692 + ], + [ + 75.4054132911513, + 13.362990844115373 + ], + [ + 75.17572792418396, + 13.362990844115373 + ], + [ + 75.29057060766763, + 13.16834310918692 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 13.16834310918692 + ], + [ + 75.17572792418396, + 13.362990844115373 + ], + [ + 75.06088524070027, + 13.16834310918692 + ], + [ + 75.29057060766763, + 13.16834310918692 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 13.16834310918692 + ], + [ + 75.06088524070027, + 13.16834310918692 + ], + [ + 75.17572792418396, + 12.973695374258465 + ], + [ + 75.29057060766763, + 13.16834310918692 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 13.16834310918692 + ], + [ + 75.17572792418396, + 12.973695374258465 + ], + [ + 75.4054132911513, + 12.973695374258465 + ], + [ + 75.29057060766763, + 13.16834310918692 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 13.16834310918692 + ], + [ + 75.4054132911513, + 12.973695374258465 + ], + [ + 75.52025597463499, + 13.16834310918692 + ], + [ + 75.29057060766763, + 13.16834310918692 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 13.557638579043825 + ], + [ + 75.52025597463499, + 13.557638579043825 + ], + [ + 75.4054132911513, + 13.752286313972279 + ], + [ + 75.29057060766763, + 13.557638579043825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 13.557638579043825 + ], + [ + 75.4054132911513, + 13.752286313972279 + ], + [ + 75.17572792418396, + 13.752286313972279 + ], + [ + 75.29057060766763, + 13.557638579043825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 13.557638579043825 + ], + [ + 75.17572792418396, + 13.752286313972279 + ], + [ + 75.06088524070027, + 13.557638579043825 + ], + [ + 75.29057060766763, + 13.557638579043825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 13.557638579043825 + ], + [ + 75.06088524070027, + 13.557638579043825 + ], + [ + 75.17572792418396, + 13.362990844115371 + ], + [ + 75.29057060766763, + 13.557638579043825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 13.557638579043825 + ], + [ + 75.17572792418396, + 13.362990844115371 + ], + [ + 75.4054132911513, + 13.362990844115371 + ], + [ + 75.29057060766763, + 13.557638579043825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 13.557638579043825 + ], + [ + 75.4054132911513, + 13.362990844115371 + ], + [ + 75.52025597463499, + 13.557638579043825 + ], + [ + 75.29057060766763, + 13.557638579043825 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 13.946934048900731 + ], + [ + 75.52025597463499, + 13.946934048900731 + ], + [ + 75.4054132911513, + 14.141581783829185 + ], + [ + 75.29057060766763, + 13.946934048900731 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 13.946934048900731 + ], + [ + 75.4054132911513, + 14.141581783829185 + ], + [ + 75.17572792418396, + 14.141581783829185 + ], + [ + 75.29057060766763, + 13.946934048900731 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 13.946934048900731 + ], + [ + 75.17572792418396, + 14.141581783829185 + ], + [ + 75.06088524070027, + 13.946934048900731 + ], + [ + 75.29057060766763, + 13.946934048900731 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 13.946934048900731 + ], + [ + 75.06088524070027, + 13.946934048900731 + ], + [ + 75.17572792418396, + 13.752286313972277 + ], + [ + 75.29057060766763, + 13.946934048900731 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 13.946934048900731 + ], + [ + 75.17572792418396, + 13.752286313972277 + ], + [ + 75.4054132911513, + 13.752286313972277 + ], + [ + 75.29057060766763, + 13.946934048900731 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 13.946934048900731 + ], + [ + 75.4054132911513, + 13.752286313972277 + ], + [ + 75.52025597463499, + 13.946934048900731 + ], + [ + 75.29057060766763, + 13.946934048900731 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 14.336229518757637 + ], + [ + 75.52025597463499, + 14.336229518757637 + ], + [ + 75.4054132911513, + 14.530877253686091 + ], + [ + 75.29057060766763, + 14.336229518757637 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 14.336229518757637 + ], + [ + 75.4054132911513, + 14.530877253686091 + ], + [ + 75.17572792418396, + 14.530877253686091 + ], + [ + 75.29057060766763, + 14.336229518757637 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 14.336229518757637 + ], + [ + 75.17572792418396, + 14.530877253686091 + ], + [ + 75.06088524070027, + 14.336229518757637 + ], + [ + 75.29057060766763, + 14.336229518757637 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 14.336229518757637 + ], + [ + 75.06088524070027, + 14.336229518757637 + ], + [ + 75.17572792418396, + 14.141581783829183 + ], + [ + 75.29057060766763, + 14.336229518757637 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 14.336229518757637 + ], + [ + 75.17572792418396, + 14.141581783829183 + ], + [ + 75.4054132911513, + 14.141581783829183 + ], + [ + 75.29057060766763, + 14.336229518757637 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 14.336229518757637 + ], + [ + 75.4054132911513, + 14.141581783829183 + ], + [ + 75.52025597463499, + 14.336229518757637 + ], + [ + 75.29057060766763, + 14.336229518757637 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 14.725524988614545 + ], + [ + 75.52025597463499, + 14.725524988614545 + ], + [ + 75.4054132911513, + 14.920172723542999 + ], + [ + 75.29057060766763, + 14.725524988614545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 14.725524988614545 + ], + [ + 75.4054132911513, + 14.920172723542999 + ], + [ + 75.17572792418396, + 14.920172723542999 + ], + [ + 75.29057060766763, + 14.725524988614545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 14.725524988614545 + ], + [ + 75.17572792418396, + 14.920172723542999 + ], + [ + 75.06088524070027, + 14.725524988614545 + ], + [ + 75.29057060766763, + 14.725524988614545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 14.725524988614545 + ], + [ + 75.06088524070027, + 14.725524988614545 + ], + [ + 75.17572792418396, + 14.530877253686091 + ], + [ + 75.29057060766763, + 14.725524988614545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 14.725524988614545 + ], + [ + 75.17572792418396, + 14.530877253686091 + ], + [ + 75.4054132911513, + 14.530877253686091 + ], + [ + 75.29057060766763, + 14.725524988614545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 14.725524988614545 + ], + [ + 75.4054132911513, + 14.530877253686091 + ], + [ + 75.52025597463499, + 14.725524988614545 + ], + [ + 75.29057060766763, + 14.725524988614545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 15.114820458471451 + ], + [ + 75.52025597463499, + 15.114820458471451 + ], + [ + 75.4054132911513, + 15.309468193399905 + ], + [ + 75.29057060766763, + 15.114820458471451 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 15.114820458471451 + ], + [ + 75.4054132911513, + 15.309468193399905 + ], + [ + 75.17572792418396, + 15.309468193399905 + ], + [ + 75.29057060766763, + 15.114820458471451 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 15.114820458471451 + ], + [ + 75.17572792418396, + 15.309468193399905 + ], + [ + 75.06088524070027, + 15.114820458471451 + ], + [ + 75.29057060766763, + 15.114820458471451 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 15.114820458471451 + ], + [ + 75.06088524070027, + 15.114820458471451 + ], + [ + 75.17572792418396, + 14.920172723542997 + ], + [ + 75.29057060766763, + 15.114820458471451 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 15.114820458471451 + ], + [ + 75.17572792418396, + 14.920172723542997 + ], + [ + 75.4054132911513, + 14.920172723542997 + ], + [ + 75.29057060766763, + 15.114820458471451 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 15.114820458471451 + ], + [ + 75.4054132911513, + 14.920172723542997 + ], + [ + 75.52025597463499, + 15.114820458471451 + ], + [ + 75.29057060766763, + 15.114820458471451 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 15.504115928328357 + ], + [ + 75.52025597463499, + 15.504115928328357 + ], + [ + 75.4054132911513, + 15.69876366325681 + ], + [ + 75.29057060766763, + 15.504115928328357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 15.504115928328357 + ], + [ + 75.4054132911513, + 15.69876366325681 + ], + [ + 75.17572792418396, + 15.69876366325681 + ], + [ + 75.29057060766763, + 15.504115928328357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 15.504115928328357 + ], + [ + 75.17572792418396, + 15.69876366325681 + ], + [ + 75.06088524070027, + 15.504115928328357 + ], + [ + 75.29057060766763, + 15.504115928328357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 15.504115928328357 + ], + [ + 75.06088524070027, + 15.504115928328357 + ], + [ + 75.17572792418396, + 15.309468193399903 + ], + [ + 75.29057060766763, + 15.504115928328357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 15.504115928328357 + ], + [ + 75.17572792418396, + 15.309468193399903 + ], + [ + 75.4054132911513, + 15.309468193399903 + ], + [ + 75.29057060766763, + 15.504115928328357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 15.504115928328357 + ], + [ + 75.4054132911513, + 15.309468193399903 + ], + [ + 75.52025597463499, + 15.504115928328357 + ], + [ + 75.29057060766763, + 15.504115928328357 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 15.893411398185265 + ], + [ + 75.52025597463499, + 15.893411398185265 + ], + [ + 75.4054132911513, + 16.088059133113717 + ], + [ + 75.29057060766763, + 15.893411398185265 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 15.893411398185265 + ], + [ + 75.4054132911513, + 16.088059133113717 + ], + [ + 75.17572792418396, + 16.088059133113717 + ], + [ + 75.29057060766763, + 15.893411398185265 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 15.893411398185265 + ], + [ + 75.17572792418396, + 16.088059133113717 + ], + [ + 75.06088524070027, + 15.893411398185265 + ], + [ + 75.29057060766763, + 15.893411398185265 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 15.893411398185265 + ], + [ + 75.06088524070027, + 15.893411398185265 + ], + [ + 75.17572792418396, + 15.69876366325681 + ], + [ + 75.29057060766763, + 15.893411398185265 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 15.893411398185265 + ], + [ + 75.17572792418396, + 15.69876366325681 + ], + [ + 75.4054132911513, + 15.69876366325681 + ], + [ + 75.29057060766763, + 15.893411398185265 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 15.893411398185265 + ], + [ + 75.4054132911513, + 15.69876366325681 + ], + [ + 75.52025597463499, + 15.893411398185265 + ], + [ + 75.29057060766763, + 15.893411398185265 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 16.28270686804217 + ], + [ + 75.52025597463499, + 16.28270686804217 + ], + [ + 75.4054132911513, + 16.47735460297062 + ], + [ + 75.29057060766763, + 16.28270686804217 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 16.28270686804217 + ], + [ + 75.4054132911513, + 16.47735460297062 + ], + [ + 75.17572792418396, + 16.47735460297062 + ], + [ + 75.29057060766763, + 16.28270686804217 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 16.28270686804217 + ], + [ + 75.17572792418396, + 16.47735460297062 + ], + [ + 75.06088524070027, + 16.28270686804217 + ], + [ + 75.29057060766763, + 16.28270686804217 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 16.28270686804217 + ], + [ + 75.06088524070027, + 16.28270686804217 + ], + [ + 75.17572792418396, + 16.088059133113717 + ], + [ + 75.29057060766763, + 16.28270686804217 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 16.28270686804217 + ], + [ + 75.17572792418396, + 16.088059133113717 + ], + [ + 75.4054132911513, + 16.088059133113717 + ], + [ + 75.29057060766763, + 16.28270686804217 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 16.28270686804217 + ], + [ + 75.4054132911513, + 16.088059133113717 + ], + [ + 75.52025597463499, + 16.28270686804217 + ], + [ + 75.29057060766763, + 16.28270686804217 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 16.672002337899077 + ], + [ + 75.52025597463499, + 16.672002337899077 + ], + [ + 75.4054132911513, + 16.86665007282753 + ], + [ + 75.29057060766763, + 16.672002337899077 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 16.672002337899077 + ], + [ + 75.4054132911513, + 16.86665007282753 + ], + [ + 75.17572792418396, + 16.86665007282753 + ], + [ + 75.29057060766763, + 16.672002337899077 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 16.672002337899077 + ], + [ + 75.17572792418396, + 16.86665007282753 + ], + [ + 75.06088524070027, + 16.672002337899077 + ], + [ + 75.29057060766763, + 16.672002337899077 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 16.672002337899077 + ], + [ + 75.06088524070027, + 16.672002337899077 + ], + [ + 75.17572792418396, + 16.477354602970625 + ], + [ + 75.29057060766763, + 16.672002337899077 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 16.672002337899077 + ], + [ + 75.17572792418396, + 16.477354602970625 + ], + [ + 75.4054132911513, + 16.477354602970625 + ], + [ + 75.29057060766763, + 16.672002337899077 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 16.672002337899077 + ], + [ + 75.4054132911513, + 16.477354602970625 + ], + [ + 75.52025597463499, + 16.672002337899077 + ], + [ + 75.29057060766763, + 16.672002337899077 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 17.06129780775598 + ], + [ + 75.52025597463499, + 17.06129780775598 + ], + [ + 75.4054132911513, + 17.255945542684433 + ], + [ + 75.29057060766763, + 17.06129780775598 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 17.06129780775598 + ], + [ + 75.4054132911513, + 17.255945542684433 + ], + [ + 75.17572792418396, + 17.255945542684433 + ], + [ + 75.29057060766763, + 17.06129780775598 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 17.06129780775598 + ], + [ + 75.17572792418396, + 17.255945542684433 + ], + [ + 75.06088524070027, + 17.06129780775598 + ], + [ + 75.29057060766763, + 17.06129780775598 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 17.06129780775598 + ], + [ + 75.06088524070027, + 17.06129780775598 + ], + [ + 75.17572792418396, + 16.86665007282753 + ], + [ + 75.29057060766763, + 17.06129780775598 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 17.06129780775598 + ], + [ + 75.17572792418396, + 16.86665007282753 + ], + [ + 75.4054132911513, + 16.86665007282753 + ], + [ + 75.29057060766763, + 17.06129780775598 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 17.06129780775598 + ], + [ + 75.4054132911513, + 16.86665007282753 + ], + [ + 75.52025597463499, + 17.06129780775598 + ], + [ + 75.29057060766763, + 17.06129780775598 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 17.45059327761289 + ], + [ + 75.52025597463499, + 17.45059327761289 + ], + [ + 75.4054132911513, + 17.64524101254134 + ], + [ + 75.29057060766763, + 17.45059327761289 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 17.45059327761289 + ], + [ + 75.4054132911513, + 17.64524101254134 + ], + [ + 75.17572792418396, + 17.64524101254134 + ], + [ + 75.29057060766763, + 17.45059327761289 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 17.45059327761289 + ], + [ + 75.17572792418396, + 17.64524101254134 + ], + [ + 75.06088524070027, + 17.45059327761289 + ], + [ + 75.29057060766763, + 17.45059327761289 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 17.45059327761289 + ], + [ + 75.06088524070027, + 17.45059327761289 + ], + [ + 75.17572792418396, + 17.255945542684437 + ], + [ + 75.29057060766763, + 17.45059327761289 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 17.45059327761289 + ], + [ + 75.17572792418396, + 17.255945542684437 + ], + [ + 75.4054132911513, + 17.255945542684437 + ], + [ + 75.29057060766763, + 17.45059327761289 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 17.45059327761289 + ], + [ + 75.4054132911513, + 17.255945542684437 + ], + [ + 75.52025597463499, + 17.45059327761289 + ], + [ + 75.29057060766763, + 17.45059327761289 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 17.839888747469793 + ], + [ + 75.52025597463499, + 17.839888747469793 + ], + [ + 75.4054132911513, + 18.034536482398245 + ], + [ + 75.29057060766763, + 17.839888747469793 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 17.839888747469793 + ], + [ + 75.4054132911513, + 18.034536482398245 + ], + [ + 75.17572792418396, + 18.034536482398245 + ], + [ + 75.29057060766763, + 17.839888747469793 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 17.839888747469793 + ], + [ + 75.17572792418396, + 18.034536482398245 + ], + [ + 75.06088524070027, + 17.839888747469793 + ], + [ + 75.29057060766763, + 17.839888747469793 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 17.839888747469793 + ], + [ + 75.06088524070027, + 17.839888747469793 + ], + [ + 75.17572792418396, + 17.64524101254134 + ], + [ + 75.29057060766763, + 17.839888747469793 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 17.839888747469793 + ], + [ + 75.17572792418396, + 17.64524101254134 + ], + [ + 75.4054132911513, + 17.64524101254134 + ], + [ + 75.29057060766763, + 17.839888747469793 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 17.839888747469793 + ], + [ + 75.4054132911513, + 17.64524101254134 + ], + [ + 75.52025597463499, + 17.839888747469793 + ], + [ + 75.29057060766763, + 17.839888747469793 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 18.2291842173267 + ], + [ + 75.52025597463499, + 18.2291842173267 + ], + [ + 75.4054132911513, + 18.423831952255153 + ], + [ + 75.29057060766763, + 18.2291842173267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 18.2291842173267 + ], + [ + 75.4054132911513, + 18.423831952255153 + ], + [ + 75.17572792418396, + 18.423831952255153 + ], + [ + 75.29057060766763, + 18.2291842173267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 18.2291842173267 + ], + [ + 75.17572792418396, + 18.423831952255153 + ], + [ + 75.06088524070027, + 18.2291842173267 + ], + [ + 75.29057060766763, + 18.2291842173267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 18.2291842173267 + ], + [ + 75.06088524070027, + 18.2291842173267 + ], + [ + 75.17572792418396, + 18.03453648239825 + ], + [ + 75.29057060766763, + 18.2291842173267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 18.2291842173267 + ], + [ + 75.17572792418396, + 18.03453648239825 + ], + [ + 75.4054132911513, + 18.03453648239825 + ], + [ + 75.29057060766763, + 18.2291842173267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 18.2291842173267 + ], + [ + 75.4054132911513, + 18.03453648239825 + ], + [ + 75.52025597463499, + 18.2291842173267 + ], + [ + 75.29057060766763, + 18.2291842173267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 18.61847968718361 + ], + [ + 75.52025597463499, + 18.61847968718361 + ], + [ + 75.4054132911513, + 18.81312742211206 + ], + [ + 75.29057060766763, + 18.61847968718361 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 18.61847968718361 + ], + [ + 75.4054132911513, + 18.81312742211206 + ], + [ + 75.17572792418396, + 18.81312742211206 + ], + [ + 75.29057060766763, + 18.61847968718361 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 18.61847968718361 + ], + [ + 75.17572792418396, + 18.81312742211206 + ], + [ + 75.06088524070027, + 18.61847968718361 + ], + [ + 75.29057060766763, + 18.61847968718361 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 18.61847968718361 + ], + [ + 75.06088524070027, + 18.61847968718361 + ], + [ + 75.17572792418396, + 18.423831952255156 + ], + [ + 75.29057060766763, + 18.61847968718361 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 18.61847968718361 + ], + [ + 75.17572792418396, + 18.423831952255156 + ], + [ + 75.4054132911513, + 18.423831952255156 + ], + [ + 75.29057060766763, + 18.61847968718361 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 18.61847968718361 + ], + [ + 75.4054132911513, + 18.423831952255156 + ], + [ + 75.52025597463499, + 18.61847968718361 + ], + [ + 75.29057060766763, + 18.61847968718361 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 19.007775157040513 + ], + [ + 75.52025597463499, + 19.007775157040513 + ], + [ + 75.4054132911513, + 19.202422891968965 + ], + [ + 75.29057060766763, + 19.007775157040513 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 19.007775157040513 + ], + [ + 75.4054132911513, + 19.202422891968965 + ], + [ + 75.17572792418396, + 19.202422891968965 + ], + [ + 75.29057060766763, + 19.007775157040513 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 19.007775157040513 + ], + [ + 75.17572792418396, + 19.202422891968965 + ], + [ + 75.06088524070027, + 19.007775157040513 + ], + [ + 75.29057060766763, + 19.007775157040513 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 19.007775157040513 + ], + [ + 75.06088524070027, + 19.007775157040513 + ], + [ + 75.17572792418396, + 18.81312742211206 + ], + [ + 75.29057060766763, + 19.007775157040513 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 19.007775157040513 + ], + [ + 75.17572792418396, + 18.81312742211206 + ], + [ + 75.4054132911513, + 18.81312742211206 + ], + [ + 75.29057060766763, + 19.007775157040513 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 19.007775157040513 + ], + [ + 75.4054132911513, + 18.81312742211206 + ], + [ + 75.52025597463499, + 19.007775157040513 + ], + [ + 75.29057060766763, + 19.007775157040513 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 19.39707062689742 + ], + [ + 75.52025597463499, + 19.39707062689742 + ], + [ + 75.4054132911513, + 19.591718361825873 + ], + [ + 75.29057060766763, + 19.39707062689742 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 19.39707062689742 + ], + [ + 75.4054132911513, + 19.591718361825873 + ], + [ + 75.17572792418396, + 19.591718361825873 + ], + [ + 75.29057060766763, + 19.39707062689742 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 19.39707062689742 + ], + [ + 75.17572792418396, + 19.591718361825873 + ], + [ + 75.06088524070027, + 19.39707062689742 + ], + [ + 75.29057060766763, + 19.39707062689742 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 19.39707062689742 + ], + [ + 75.06088524070027, + 19.39707062689742 + ], + [ + 75.17572792418396, + 19.20242289196897 + ], + [ + 75.29057060766763, + 19.39707062689742 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 19.39707062689742 + ], + [ + 75.17572792418396, + 19.20242289196897 + ], + [ + 75.4054132911513, + 19.20242289196897 + ], + [ + 75.29057060766763, + 19.39707062689742 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 19.39707062689742 + ], + [ + 75.4054132911513, + 19.20242289196897 + ], + [ + 75.52025597463499, + 19.39707062689742 + ], + [ + 75.29057060766763, + 19.39707062689742 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 19.78636609675433 + ], + [ + 75.52025597463499, + 19.78636609675433 + ], + [ + 75.4054132911513, + 19.98101383168278 + ], + [ + 75.29057060766763, + 19.78636609675433 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 19.78636609675433 + ], + [ + 75.4054132911513, + 19.98101383168278 + ], + [ + 75.17572792418396, + 19.98101383168278 + ], + [ + 75.29057060766763, + 19.78636609675433 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 19.78636609675433 + ], + [ + 75.17572792418396, + 19.98101383168278 + ], + [ + 75.06088524070027, + 19.78636609675433 + ], + [ + 75.29057060766763, + 19.78636609675433 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 19.78636609675433 + ], + [ + 75.06088524070027, + 19.78636609675433 + ], + [ + 75.17572792418396, + 19.591718361825876 + ], + [ + 75.29057060766763, + 19.78636609675433 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 19.78636609675433 + ], + [ + 75.17572792418396, + 19.591718361825876 + ], + [ + 75.4054132911513, + 19.591718361825876 + ], + [ + 75.29057060766763, + 19.78636609675433 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 19.78636609675433 + ], + [ + 75.4054132911513, + 19.591718361825876 + ], + [ + 75.52025597463499, + 19.78636609675433 + ], + [ + 75.29057060766763, + 19.78636609675433 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 20.175661566611232 + ], + [ + 75.52025597463499, + 20.175661566611232 + ], + [ + 75.4054132911513, + 20.370309301539685 + ], + [ + 75.29057060766763, + 20.175661566611232 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 20.175661566611232 + ], + [ + 75.4054132911513, + 20.370309301539685 + ], + [ + 75.17572792418396, + 20.370309301539685 + ], + [ + 75.29057060766763, + 20.175661566611232 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 20.175661566611232 + ], + [ + 75.17572792418396, + 20.370309301539685 + ], + [ + 75.06088524070027, + 20.175661566611232 + ], + [ + 75.29057060766763, + 20.175661566611232 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 20.175661566611232 + ], + [ + 75.06088524070027, + 20.175661566611232 + ], + [ + 75.17572792418396, + 19.98101383168278 + ], + [ + 75.29057060766763, + 20.175661566611232 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 20.175661566611232 + ], + [ + 75.17572792418396, + 19.98101383168278 + ], + [ + 75.4054132911513, + 19.98101383168278 + ], + [ + 75.29057060766763, + 20.175661566611232 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 20.175661566611232 + ], + [ + 75.4054132911513, + 19.98101383168278 + ], + [ + 75.52025597463499, + 20.175661566611232 + ], + [ + 75.29057060766763, + 20.175661566611232 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 20.564957036468137 + ], + [ + 75.52025597463499, + 20.564957036468137 + ], + [ + 75.4054132911513, + 20.75960477139659 + ], + [ + 75.29057060766763, + 20.564957036468137 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 20.564957036468137 + ], + [ + 75.4054132911513, + 20.75960477139659 + ], + [ + 75.17572792418396, + 20.75960477139659 + ], + [ + 75.29057060766763, + 20.564957036468137 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 20.564957036468137 + ], + [ + 75.17572792418396, + 20.75960477139659 + ], + [ + 75.06088524070027, + 20.564957036468137 + ], + [ + 75.29057060766763, + 20.564957036468137 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 20.564957036468137 + ], + [ + 75.06088524070027, + 20.564957036468137 + ], + [ + 75.17572792418396, + 20.370309301539685 + ], + [ + 75.29057060766763, + 20.564957036468137 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 20.564957036468137 + ], + [ + 75.17572792418396, + 20.370309301539685 + ], + [ + 75.4054132911513, + 20.370309301539685 + ], + [ + 75.29057060766763, + 20.564957036468137 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 20.564957036468137 + ], + [ + 75.4054132911513, + 20.370309301539685 + ], + [ + 75.52025597463499, + 20.564957036468137 + ], + [ + 75.29057060766763, + 20.564957036468137 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 20.954252506325044 + ], + [ + 75.52025597463499, + 20.954252506325044 + ], + [ + 75.4054132911513, + 21.148900241253497 + ], + [ + 75.29057060766763, + 20.954252506325044 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 20.954252506325044 + ], + [ + 75.4054132911513, + 21.148900241253497 + ], + [ + 75.17572792418396, + 21.148900241253497 + ], + [ + 75.29057060766763, + 20.954252506325044 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 20.954252506325044 + ], + [ + 75.17572792418396, + 21.148900241253497 + ], + [ + 75.06088524070027, + 20.954252506325044 + ], + [ + 75.29057060766763, + 20.954252506325044 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 20.954252506325044 + ], + [ + 75.06088524070027, + 20.954252506325044 + ], + [ + 75.17572792418396, + 20.759604771396592 + ], + [ + 75.29057060766763, + 20.954252506325044 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 20.954252506325044 + ], + [ + 75.17572792418396, + 20.759604771396592 + ], + [ + 75.4054132911513, + 20.759604771396592 + ], + [ + 75.29057060766763, + 20.954252506325044 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 20.954252506325044 + ], + [ + 75.4054132911513, + 20.759604771396592 + ], + [ + 75.52025597463499, + 20.954252506325044 + ], + [ + 75.29057060766763, + 20.954252506325044 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 21.343547976181952 + ], + [ + 75.52025597463499, + 21.343547976181952 + ], + [ + 75.4054132911513, + 21.538195711110404 + ], + [ + 75.29057060766763, + 21.343547976181952 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 21.343547976181952 + ], + [ + 75.4054132911513, + 21.538195711110404 + ], + [ + 75.17572792418396, + 21.538195711110404 + ], + [ + 75.29057060766763, + 21.343547976181952 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 21.343547976181952 + ], + [ + 75.17572792418396, + 21.538195711110404 + ], + [ + 75.06088524070027, + 21.343547976181952 + ], + [ + 75.29057060766763, + 21.343547976181952 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 21.343547976181952 + ], + [ + 75.06088524070027, + 21.343547976181952 + ], + [ + 75.17572792418396, + 21.1489002412535 + ], + [ + 75.29057060766763, + 21.343547976181952 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 21.343547976181952 + ], + [ + 75.17572792418396, + 21.1489002412535 + ], + [ + 75.4054132911513, + 21.1489002412535 + ], + [ + 75.29057060766763, + 21.343547976181952 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 21.343547976181952 + ], + [ + 75.4054132911513, + 21.1489002412535 + ], + [ + 75.52025597463499, + 21.343547976181952 + ], + [ + 75.29057060766763, + 21.343547976181952 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 21.732843446038856 + ], + [ + 75.52025597463499, + 21.732843446038856 + ], + [ + 75.4054132911513, + 21.92749118096731 + ], + [ + 75.29057060766763, + 21.732843446038856 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 21.732843446038856 + ], + [ + 75.4054132911513, + 21.92749118096731 + ], + [ + 75.17572792418396, + 21.92749118096731 + ], + [ + 75.29057060766763, + 21.732843446038856 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 21.732843446038856 + ], + [ + 75.17572792418396, + 21.92749118096731 + ], + [ + 75.06088524070027, + 21.732843446038856 + ], + [ + 75.29057060766763, + 21.732843446038856 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 21.732843446038856 + ], + [ + 75.06088524070027, + 21.732843446038856 + ], + [ + 75.17572792418396, + 21.538195711110404 + ], + [ + 75.29057060766763, + 21.732843446038856 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 21.732843446038856 + ], + [ + 75.17572792418396, + 21.538195711110404 + ], + [ + 75.4054132911513, + 21.538195711110404 + ], + [ + 75.29057060766763, + 21.732843446038856 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 21.732843446038856 + ], + [ + 75.4054132911513, + 21.538195711110404 + ], + [ + 75.52025597463499, + 21.732843446038856 + ], + [ + 75.29057060766763, + 21.732843446038856 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 22.122138915895764 + ], + [ + 75.52025597463499, + 22.122138915895764 + ], + [ + 75.4054132911513, + 22.316786650824216 + ], + [ + 75.29057060766763, + 22.122138915895764 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 22.122138915895764 + ], + [ + 75.4054132911513, + 22.316786650824216 + ], + [ + 75.17572792418396, + 22.316786650824216 + ], + [ + 75.29057060766763, + 22.122138915895764 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 22.122138915895764 + ], + [ + 75.17572792418396, + 22.316786650824216 + ], + [ + 75.06088524070027, + 22.122138915895764 + ], + [ + 75.29057060766763, + 22.122138915895764 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 22.122138915895764 + ], + [ + 75.06088524070027, + 22.122138915895764 + ], + [ + 75.17572792418396, + 21.927491180967312 + ], + [ + 75.29057060766763, + 22.122138915895764 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 22.122138915895764 + ], + [ + 75.17572792418396, + 21.927491180967312 + ], + [ + 75.4054132911513, + 21.927491180967312 + ], + [ + 75.29057060766763, + 22.122138915895764 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 22.122138915895764 + ], + [ + 75.4054132911513, + 21.927491180967312 + ], + [ + 75.52025597463499, + 22.122138915895764 + ], + [ + 75.29057060766763, + 22.122138915895764 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 22.511434385752672 + ], + [ + 75.52025597463499, + 22.511434385752672 + ], + [ + 75.4054132911513, + 22.706082120681124 + ], + [ + 75.29057060766763, + 22.511434385752672 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 22.511434385752672 + ], + [ + 75.4054132911513, + 22.706082120681124 + ], + [ + 75.17572792418396, + 22.706082120681124 + ], + [ + 75.29057060766763, + 22.511434385752672 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 22.511434385752672 + ], + [ + 75.17572792418396, + 22.706082120681124 + ], + [ + 75.06088524070027, + 22.511434385752672 + ], + [ + 75.29057060766763, + 22.511434385752672 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 22.511434385752672 + ], + [ + 75.06088524070027, + 22.511434385752672 + ], + [ + 75.17572792418396, + 22.31678665082422 + ], + [ + 75.29057060766763, + 22.511434385752672 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 22.511434385752672 + ], + [ + 75.17572792418396, + 22.31678665082422 + ], + [ + 75.4054132911513, + 22.31678665082422 + ], + [ + 75.29057060766763, + 22.511434385752672 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 22.511434385752672 + ], + [ + 75.4054132911513, + 22.31678665082422 + ], + [ + 75.52025597463499, + 22.511434385752672 + ], + [ + 75.29057060766763, + 22.511434385752672 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 22.900729855609576 + ], + [ + 75.52025597463499, + 22.900729855609576 + ], + [ + 75.4054132911513, + 23.09537759053803 + ], + [ + 75.29057060766763, + 22.900729855609576 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 22.900729855609576 + ], + [ + 75.4054132911513, + 23.09537759053803 + ], + [ + 75.17572792418396, + 23.09537759053803 + ], + [ + 75.29057060766763, + 22.900729855609576 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 22.900729855609576 + ], + [ + 75.17572792418396, + 23.09537759053803 + ], + [ + 75.06088524070027, + 22.900729855609576 + ], + [ + 75.29057060766763, + 22.900729855609576 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 22.900729855609576 + ], + [ + 75.06088524070027, + 22.900729855609576 + ], + [ + 75.17572792418396, + 22.706082120681124 + ], + [ + 75.29057060766763, + 22.900729855609576 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 22.900729855609576 + ], + [ + 75.17572792418396, + 22.706082120681124 + ], + [ + 75.4054132911513, + 22.706082120681124 + ], + [ + 75.29057060766763, + 22.900729855609576 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 22.900729855609576 + ], + [ + 75.4054132911513, + 22.706082120681124 + ], + [ + 75.52025597463499, + 22.900729855609576 + ], + [ + 75.29057060766763, + 22.900729855609576 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 23.290025325466484 + ], + [ + 75.52025597463499, + 23.290025325466484 + ], + [ + 75.4054132911513, + 23.484673060394936 + ], + [ + 75.29057060766763, + 23.290025325466484 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 23.290025325466484 + ], + [ + 75.4054132911513, + 23.484673060394936 + ], + [ + 75.17572792418396, + 23.484673060394936 + ], + [ + 75.29057060766763, + 23.290025325466484 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 23.290025325466484 + ], + [ + 75.17572792418396, + 23.484673060394936 + ], + [ + 75.06088524070027, + 23.290025325466484 + ], + [ + 75.29057060766763, + 23.290025325466484 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 23.290025325466484 + ], + [ + 75.06088524070027, + 23.290025325466484 + ], + [ + 75.17572792418396, + 23.095377590538032 + ], + [ + 75.29057060766763, + 23.290025325466484 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 23.290025325466484 + ], + [ + 75.17572792418396, + 23.095377590538032 + ], + [ + 75.4054132911513, + 23.095377590538032 + ], + [ + 75.29057060766763, + 23.290025325466484 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 23.290025325466484 + ], + [ + 75.4054132911513, + 23.095377590538032 + ], + [ + 75.52025597463499, + 23.290025325466484 + ], + [ + 75.29057060766763, + 23.290025325466484 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 23.67932079532339 + ], + [ + 75.52025597463499, + 23.67932079532339 + ], + [ + 75.4054132911513, + 23.873968530251844 + ], + [ + 75.29057060766763, + 23.67932079532339 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 23.67932079532339 + ], + [ + 75.4054132911513, + 23.873968530251844 + ], + [ + 75.17572792418396, + 23.873968530251844 + ], + [ + 75.29057060766763, + 23.67932079532339 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 23.67932079532339 + ], + [ + 75.17572792418396, + 23.873968530251844 + ], + [ + 75.06088524070027, + 23.67932079532339 + ], + [ + 75.29057060766763, + 23.67932079532339 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 23.67932079532339 + ], + [ + 75.06088524070027, + 23.67932079532339 + ], + [ + 75.17572792418396, + 23.48467306039494 + ], + [ + 75.29057060766763, + 23.67932079532339 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 23.67932079532339 + ], + [ + 75.17572792418396, + 23.48467306039494 + ], + [ + 75.4054132911513, + 23.48467306039494 + ], + [ + 75.29057060766763, + 23.67932079532339 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 23.67932079532339 + ], + [ + 75.4054132911513, + 23.48467306039494 + ], + [ + 75.52025597463499, + 23.67932079532339 + ], + [ + 75.29057060766763, + 23.67932079532339 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 24.068616265180296 + ], + [ + 75.52025597463499, + 24.068616265180296 + ], + [ + 75.4054132911513, + 24.263264000108748 + ], + [ + 75.29057060766763, + 24.068616265180296 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 24.068616265180296 + ], + [ + 75.4054132911513, + 24.263264000108748 + ], + [ + 75.17572792418396, + 24.263264000108748 + ], + [ + 75.29057060766763, + 24.068616265180296 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 24.068616265180296 + ], + [ + 75.17572792418396, + 24.263264000108748 + ], + [ + 75.06088524070027, + 24.068616265180296 + ], + [ + 75.29057060766763, + 24.068616265180296 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 24.068616265180296 + ], + [ + 75.06088524070027, + 24.068616265180296 + ], + [ + 75.17572792418396, + 23.873968530251844 + ], + [ + 75.29057060766763, + 24.068616265180296 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 24.068616265180296 + ], + [ + 75.17572792418396, + 23.873968530251844 + ], + [ + 75.4054132911513, + 23.873968530251844 + ], + [ + 75.29057060766763, + 24.068616265180296 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 24.068616265180296 + ], + [ + 75.4054132911513, + 23.873968530251844 + ], + [ + 75.52025597463499, + 24.068616265180296 + ], + [ + 75.29057060766763, + 24.068616265180296 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 24.4579117350372 + ], + [ + 75.52025597463499, + 24.4579117350372 + ], + [ + 75.4054132911513, + 24.652559469965652 + ], + [ + 75.29057060766763, + 24.4579117350372 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 24.4579117350372 + ], + [ + 75.4054132911513, + 24.652559469965652 + ], + [ + 75.17572792418396, + 24.652559469965652 + ], + [ + 75.29057060766763, + 24.4579117350372 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 24.4579117350372 + ], + [ + 75.17572792418396, + 24.652559469965652 + ], + [ + 75.06088524070027, + 24.4579117350372 + ], + [ + 75.29057060766763, + 24.4579117350372 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 24.4579117350372 + ], + [ + 75.06088524070027, + 24.4579117350372 + ], + [ + 75.17572792418396, + 24.263264000108748 + ], + [ + 75.29057060766763, + 24.4579117350372 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 24.4579117350372 + ], + [ + 75.17572792418396, + 24.263264000108748 + ], + [ + 75.4054132911513, + 24.263264000108748 + ], + [ + 75.29057060766763, + 24.4579117350372 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 24.4579117350372 + ], + [ + 75.4054132911513, + 24.263264000108748 + ], + [ + 75.52025597463499, + 24.4579117350372 + ], + [ + 75.29057060766763, + 24.4579117350372 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 24.847207204894108 + ], + [ + 75.52025597463499, + 24.847207204894108 + ], + [ + 75.4054132911513, + 25.04185493982256 + ], + [ + 75.29057060766763, + 24.847207204894108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 24.847207204894108 + ], + [ + 75.4054132911513, + 25.04185493982256 + ], + [ + 75.17572792418396, + 25.04185493982256 + ], + [ + 75.29057060766763, + 24.847207204894108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 24.847207204894108 + ], + [ + 75.17572792418396, + 25.04185493982256 + ], + [ + 75.06088524070027, + 24.847207204894108 + ], + [ + 75.29057060766763, + 24.847207204894108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 24.847207204894108 + ], + [ + 75.06088524070027, + 24.847207204894108 + ], + [ + 75.17572792418396, + 24.652559469965656 + ], + [ + 75.29057060766763, + 24.847207204894108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 24.847207204894108 + ], + [ + 75.17572792418396, + 24.652559469965656 + ], + [ + 75.4054132911513, + 24.652559469965656 + ], + [ + 75.29057060766763, + 24.847207204894108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 24.847207204894108 + ], + [ + 75.4054132911513, + 24.652559469965656 + ], + [ + 75.52025597463499, + 24.847207204894108 + ], + [ + 75.29057060766763, + 24.847207204894108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 25.236502674751016 + ], + [ + 75.52025597463499, + 25.236502674751016 + ], + [ + 75.4054132911513, + 25.431150409679468 + ], + [ + 75.29057060766763, + 25.236502674751016 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 25.236502674751016 + ], + [ + 75.4054132911513, + 25.431150409679468 + ], + [ + 75.17572792418396, + 25.431150409679468 + ], + [ + 75.29057060766763, + 25.236502674751016 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 25.236502674751016 + ], + [ + 75.17572792418396, + 25.431150409679468 + ], + [ + 75.06088524070027, + 25.236502674751016 + ], + [ + 75.29057060766763, + 25.236502674751016 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 25.236502674751016 + ], + [ + 75.06088524070027, + 25.236502674751016 + ], + [ + 75.17572792418396, + 25.041854939822564 + ], + [ + 75.29057060766763, + 25.236502674751016 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 25.236502674751016 + ], + [ + 75.17572792418396, + 25.041854939822564 + ], + [ + 75.4054132911513, + 25.041854939822564 + ], + [ + 75.29057060766763, + 25.236502674751016 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 25.236502674751016 + ], + [ + 75.4054132911513, + 25.041854939822564 + ], + [ + 75.52025597463499, + 25.236502674751016 + ], + [ + 75.29057060766763, + 25.236502674751016 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 25.62579814460792 + ], + [ + 75.52025597463499, + 25.62579814460792 + ], + [ + 75.4054132911513, + 25.820445879536372 + ], + [ + 75.29057060766763, + 25.62579814460792 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 25.62579814460792 + ], + [ + 75.4054132911513, + 25.820445879536372 + ], + [ + 75.17572792418396, + 25.820445879536372 + ], + [ + 75.29057060766763, + 25.62579814460792 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 25.62579814460792 + ], + [ + 75.17572792418396, + 25.820445879536372 + ], + [ + 75.06088524070027, + 25.62579814460792 + ], + [ + 75.29057060766763, + 25.62579814460792 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 25.62579814460792 + ], + [ + 75.06088524070027, + 25.62579814460792 + ], + [ + 75.17572792418396, + 25.431150409679468 + ], + [ + 75.29057060766763, + 25.62579814460792 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 25.62579814460792 + ], + [ + 75.17572792418396, + 25.431150409679468 + ], + [ + 75.4054132911513, + 25.431150409679468 + ], + [ + 75.29057060766763, + 25.62579814460792 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 25.62579814460792 + ], + [ + 75.4054132911513, + 25.431150409679468 + ], + [ + 75.52025597463499, + 25.62579814460792 + ], + [ + 75.29057060766763, + 25.62579814460792 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 26.015093614464828 + ], + [ + 75.52025597463499, + 26.015093614464828 + ], + [ + 75.4054132911513, + 26.20974134939328 + ], + [ + 75.29057060766763, + 26.015093614464828 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 26.015093614464828 + ], + [ + 75.4054132911513, + 26.20974134939328 + ], + [ + 75.17572792418396, + 26.20974134939328 + ], + [ + 75.29057060766763, + 26.015093614464828 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 26.015093614464828 + ], + [ + 75.17572792418396, + 26.20974134939328 + ], + [ + 75.06088524070027, + 26.015093614464828 + ], + [ + 75.29057060766763, + 26.015093614464828 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 26.015093614464828 + ], + [ + 75.06088524070027, + 26.015093614464828 + ], + [ + 75.17572792418396, + 25.820445879536376 + ], + [ + 75.29057060766763, + 26.015093614464828 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 26.015093614464828 + ], + [ + 75.17572792418396, + 25.820445879536376 + ], + [ + 75.4054132911513, + 25.820445879536376 + ], + [ + 75.29057060766763, + 26.015093614464828 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 26.015093614464828 + ], + [ + 75.4054132911513, + 25.820445879536376 + ], + [ + 75.52025597463499, + 26.015093614464828 + ], + [ + 75.29057060766763, + 26.015093614464828 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 26.404389084321735 + ], + [ + 75.52025597463499, + 26.404389084321735 + ], + [ + 75.4054132911513, + 26.599036819250188 + ], + [ + 75.29057060766763, + 26.404389084321735 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 26.404389084321735 + ], + [ + 75.4054132911513, + 26.599036819250188 + ], + [ + 75.17572792418396, + 26.599036819250188 + ], + [ + 75.29057060766763, + 26.404389084321735 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 26.404389084321735 + ], + [ + 75.17572792418396, + 26.599036819250188 + ], + [ + 75.06088524070027, + 26.404389084321735 + ], + [ + 75.29057060766763, + 26.404389084321735 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 26.404389084321735 + ], + [ + 75.06088524070027, + 26.404389084321735 + ], + [ + 75.17572792418396, + 26.209741349393283 + ], + [ + 75.29057060766763, + 26.404389084321735 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 26.404389084321735 + ], + [ + 75.17572792418396, + 26.209741349393283 + ], + [ + 75.4054132911513, + 26.209741349393283 + ], + [ + 75.29057060766763, + 26.404389084321735 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 26.404389084321735 + ], + [ + 75.4054132911513, + 26.209741349393283 + ], + [ + 75.52025597463499, + 26.404389084321735 + ], + [ + 75.29057060766763, + 26.404389084321735 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 26.79368455417864 + ], + [ + 75.52025597463499, + 26.79368455417864 + ], + [ + 75.4054132911513, + 26.988332289107092 + ], + [ + 75.29057060766763, + 26.79368455417864 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 26.79368455417864 + ], + [ + 75.4054132911513, + 26.988332289107092 + ], + [ + 75.17572792418396, + 26.988332289107092 + ], + [ + 75.29057060766763, + 26.79368455417864 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 26.79368455417864 + ], + [ + 75.17572792418396, + 26.988332289107092 + ], + [ + 75.06088524070027, + 26.79368455417864 + ], + [ + 75.29057060766763, + 26.79368455417864 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 26.79368455417864 + ], + [ + 75.06088524070027, + 26.79368455417864 + ], + [ + 75.17572792418396, + 26.599036819250188 + ], + [ + 75.29057060766763, + 26.79368455417864 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 26.79368455417864 + ], + [ + 75.17572792418396, + 26.599036819250188 + ], + [ + 75.4054132911513, + 26.599036819250188 + ], + [ + 75.29057060766763, + 26.79368455417864 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 26.79368455417864 + ], + [ + 75.4054132911513, + 26.599036819250188 + ], + [ + 75.52025597463499, + 26.79368455417864 + ], + [ + 75.29057060766763, + 26.79368455417864 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 27.182980024035547 + ], + [ + 75.52025597463499, + 27.182980024035547 + ], + [ + 75.4054132911513, + 27.377627758964 + ], + [ + 75.29057060766763, + 27.182980024035547 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 27.182980024035547 + ], + [ + 75.4054132911513, + 27.377627758964 + ], + [ + 75.17572792418396, + 27.377627758964 + ], + [ + 75.29057060766763, + 27.182980024035547 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 27.182980024035547 + ], + [ + 75.17572792418396, + 27.377627758964 + ], + [ + 75.06088524070027, + 27.182980024035547 + ], + [ + 75.29057060766763, + 27.182980024035547 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 27.182980024035547 + ], + [ + 75.06088524070027, + 27.182980024035547 + ], + [ + 75.17572792418396, + 26.988332289107095 + ], + [ + 75.29057060766763, + 27.182980024035547 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 27.182980024035547 + ], + [ + 75.17572792418396, + 26.988332289107095 + ], + [ + 75.4054132911513, + 26.988332289107095 + ], + [ + 75.29057060766763, + 27.182980024035547 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 27.182980024035547 + ], + [ + 75.4054132911513, + 26.988332289107095 + ], + [ + 75.52025597463499, + 27.182980024035547 + ], + [ + 75.29057060766763, + 27.182980024035547 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 27.572275493892455 + ], + [ + 75.52025597463499, + 27.572275493892455 + ], + [ + 75.4054132911513, + 27.766923228820907 + ], + [ + 75.29057060766763, + 27.572275493892455 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 27.572275493892455 + ], + [ + 75.4054132911513, + 27.766923228820907 + ], + [ + 75.17572792418396, + 27.766923228820907 + ], + [ + 75.29057060766763, + 27.572275493892455 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 27.572275493892455 + ], + [ + 75.17572792418396, + 27.766923228820907 + ], + [ + 75.06088524070027, + 27.572275493892455 + ], + [ + 75.29057060766763, + 27.572275493892455 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 27.572275493892455 + ], + [ + 75.06088524070027, + 27.572275493892455 + ], + [ + 75.17572792418396, + 27.377627758964003 + ], + [ + 75.29057060766763, + 27.572275493892455 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 27.572275493892455 + ], + [ + 75.17572792418396, + 27.377627758964003 + ], + [ + 75.4054132911513, + 27.377627758964003 + ], + [ + 75.29057060766763, + 27.572275493892455 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 27.572275493892455 + ], + [ + 75.4054132911513, + 27.377627758964003 + ], + [ + 75.52025597463499, + 27.572275493892455 + ], + [ + 75.29057060766763, + 27.572275493892455 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 27.96157096374936 + ], + [ + 75.52025597463499, + 27.96157096374936 + ], + [ + 75.4054132911513, + 28.15621869867781 + ], + [ + 75.29057060766763, + 27.96157096374936 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 27.96157096374936 + ], + [ + 75.4054132911513, + 28.15621869867781 + ], + [ + 75.17572792418396, + 28.15621869867781 + ], + [ + 75.29057060766763, + 27.96157096374936 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 27.96157096374936 + ], + [ + 75.17572792418396, + 28.15621869867781 + ], + [ + 75.06088524070027, + 27.96157096374936 + ], + [ + 75.29057060766763, + 27.96157096374936 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 27.96157096374936 + ], + [ + 75.06088524070027, + 27.96157096374936 + ], + [ + 75.17572792418396, + 27.766923228820907 + ], + [ + 75.29057060766763, + 27.96157096374936 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 27.96157096374936 + ], + [ + 75.17572792418396, + 27.766923228820907 + ], + [ + 75.4054132911513, + 27.766923228820907 + ], + [ + 75.29057060766763, + 27.96157096374936 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 27.96157096374936 + ], + [ + 75.4054132911513, + 27.766923228820907 + ], + [ + 75.52025597463499, + 27.96157096374936 + ], + [ + 75.29057060766763, + 27.96157096374936 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 28.350866433606267 + ], + [ + 75.52025597463499, + 28.350866433606267 + ], + [ + 75.4054132911513, + 28.54551416853472 + ], + [ + 75.29057060766763, + 28.350866433606267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 28.350866433606267 + ], + [ + 75.4054132911513, + 28.54551416853472 + ], + [ + 75.17572792418396, + 28.54551416853472 + ], + [ + 75.29057060766763, + 28.350866433606267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 28.350866433606267 + ], + [ + 75.17572792418396, + 28.54551416853472 + ], + [ + 75.06088524070027, + 28.350866433606267 + ], + [ + 75.29057060766763, + 28.350866433606267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 28.350866433606267 + ], + [ + 75.06088524070027, + 28.350866433606267 + ], + [ + 75.17572792418396, + 28.156218698677815 + ], + [ + 75.29057060766763, + 28.350866433606267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 28.350866433606267 + ], + [ + 75.17572792418396, + 28.156218698677815 + ], + [ + 75.4054132911513, + 28.156218698677815 + ], + [ + 75.29057060766763, + 28.350866433606267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 28.350866433606267 + ], + [ + 75.4054132911513, + 28.156218698677815 + ], + [ + 75.52025597463499, + 28.350866433606267 + ], + [ + 75.29057060766763, + 28.350866433606267 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 28.74016190346317 + ], + [ + 75.52025597463499, + 28.74016190346317 + ], + [ + 75.4054132911513, + 28.934809638391624 + ], + [ + 75.29057060766763, + 28.74016190346317 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 28.74016190346317 + ], + [ + 75.4054132911513, + 28.934809638391624 + ], + [ + 75.17572792418396, + 28.934809638391624 + ], + [ + 75.29057060766763, + 28.74016190346317 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 28.74016190346317 + ], + [ + 75.17572792418396, + 28.934809638391624 + ], + [ + 75.06088524070027, + 28.74016190346317 + ], + [ + 75.29057060766763, + 28.74016190346317 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 28.74016190346317 + ], + [ + 75.06088524070027, + 28.74016190346317 + ], + [ + 75.17572792418396, + 28.54551416853472 + ], + [ + 75.29057060766763, + 28.74016190346317 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 28.74016190346317 + ], + [ + 75.17572792418396, + 28.54551416853472 + ], + [ + 75.4054132911513, + 28.54551416853472 + ], + [ + 75.29057060766763, + 28.74016190346317 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 28.74016190346317 + ], + [ + 75.4054132911513, + 28.54551416853472 + ], + [ + 75.52025597463499, + 28.74016190346317 + ], + [ + 75.29057060766763, + 28.74016190346317 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 29.12945737332008 + ], + [ + 75.52025597463499, + 29.12945737332008 + ], + [ + 75.4054132911513, + 29.32410510824853 + ], + [ + 75.29057060766763, + 29.12945737332008 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 29.12945737332008 + ], + [ + 75.4054132911513, + 29.32410510824853 + ], + [ + 75.17572792418396, + 29.32410510824853 + ], + [ + 75.29057060766763, + 29.12945737332008 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 29.12945737332008 + ], + [ + 75.17572792418396, + 29.32410510824853 + ], + [ + 75.06088524070027, + 29.12945737332008 + ], + [ + 75.29057060766763, + 29.12945737332008 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 29.12945737332008 + ], + [ + 75.06088524070027, + 29.12945737332008 + ], + [ + 75.17572792418396, + 28.934809638391627 + ], + [ + 75.29057060766763, + 29.12945737332008 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 29.12945737332008 + ], + [ + 75.17572792418396, + 28.934809638391627 + ], + [ + 75.4054132911513, + 28.934809638391627 + ], + [ + 75.29057060766763, + 29.12945737332008 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 29.12945737332008 + ], + [ + 75.4054132911513, + 28.934809638391627 + ], + [ + 75.52025597463499, + 29.12945737332008 + ], + [ + 75.29057060766763, + 29.12945737332008 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 29.518752843176983 + ], + [ + 75.52025597463499, + 29.518752843176983 + ], + [ + 75.4054132911513, + 29.713400578105436 + ], + [ + 75.29057060766763, + 29.518752843176983 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 29.518752843176983 + ], + [ + 75.4054132911513, + 29.713400578105436 + ], + [ + 75.17572792418396, + 29.713400578105436 + ], + [ + 75.29057060766763, + 29.518752843176983 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 29.518752843176983 + ], + [ + 75.17572792418396, + 29.713400578105436 + ], + [ + 75.06088524070027, + 29.518752843176983 + ], + [ + 75.29057060766763, + 29.518752843176983 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 29.518752843176983 + ], + [ + 75.06088524070027, + 29.518752843176983 + ], + [ + 75.17572792418396, + 29.32410510824853 + ], + [ + 75.29057060766763, + 29.518752843176983 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 29.518752843176983 + ], + [ + 75.17572792418396, + 29.32410510824853 + ], + [ + 75.4054132911513, + 29.32410510824853 + ], + [ + 75.29057060766763, + 29.518752843176983 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 29.518752843176983 + ], + [ + 75.4054132911513, + 29.32410510824853 + ], + [ + 75.52025597463499, + 29.518752843176983 + ], + [ + 75.29057060766763, + 29.518752843176983 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 29.90804831303389 + ], + [ + 75.52025597463499, + 29.90804831303389 + ], + [ + 75.4054132911513, + 30.102696047962343 + ], + [ + 75.29057060766763, + 29.90804831303389 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 29.90804831303389 + ], + [ + 75.4054132911513, + 30.102696047962343 + ], + [ + 75.17572792418396, + 30.102696047962343 + ], + [ + 75.29057060766763, + 29.90804831303389 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 29.90804831303389 + ], + [ + 75.17572792418396, + 30.102696047962343 + ], + [ + 75.06088524070027, + 29.90804831303389 + ], + [ + 75.29057060766763, + 29.90804831303389 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 29.90804831303389 + ], + [ + 75.06088524070027, + 29.90804831303389 + ], + [ + 75.17572792418396, + 29.71340057810544 + ], + [ + 75.29057060766763, + 29.90804831303389 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 29.90804831303389 + ], + [ + 75.17572792418396, + 29.71340057810544 + ], + [ + 75.4054132911513, + 29.71340057810544 + ], + [ + 75.29057060766763, + 29.90804831303389 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 29.90804831303389 + ], + [ + 75.4054132911513, + 29.71340057810544 + ], + [ + 75.52025597463499, + 29.90804831303389 + ], + [ + 75.29057060766763, + 29.90804831303389 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 30.297343782890795 + ], + [ + 75.52025597463499, + 30.297343782890795 + ], + [ + 75.4054132911513, + 30.491991517819248 + ], + [ + 75.29057060766763, + 30.297343782890795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 30.297343782890795 + ], + [ + 75.4054132911513, + 30.491991517819248 + ], + [ + 75.17572792418396, + 30.491991517819248 + ], + [ + 75.29057060766763, + 30.297343782890795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 30.297343782890795 + ], + [ + 75.17572792418396, + 30.491991517819248 + ], + [ + 75.06088524070027, + 30.297343782890795 + ], + [ + 75.29057060766763, + 30.297343782890795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 30.297343782890795 + ], + [ + 75.06088524070027, + 30.297343782890795 + ], + [ + 75.17572792418396, + 30.102696047962343 + ], + [ + 75.29057060766763, + 30.297343782890795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 30.297343782890795 + ], + [ + 75.17572792418396, + 30.102696047962343 + ], + [ + 75.4054132911513, + 30.102696047962343 + ], + [ + 75.29057060766763, + 30.297343782890795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 30.297343782890795 + ], + [ + 75.4054132911513, + 30.102696047962343 + ], + [ + 75.52025597463499, + 30.297343782890795 + ], + [ + 75.29057060766763, + 30.297343782890795 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 30.686639252747703 + ], + [ + 75.52025597463499, + 30.686639252747703 + ], + [ + 75.4054132911513, + 30.881286987676155 + ], + [ + 75.29057060766763, + 30.686639252747703 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 30.686639252747703 + ], + [ + 75.4054132911513, + 30.881286987676155 + ], + [ + 75.17572792418396, + 30.881286987676155 + ], + [ + 75.29057060766763, + 30.686639252747703 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 30.686639252747703 + ], + [ + 75.17572792418396, + 30.881286987676155 + ], + [ + 75.06088524070027, + 30.686639252747703 + ], + [ + 75.29057060766763, + 30.686639252747703 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 30.686639252747703 + ], + [ + 75.06088524070027, + 30.686639252747703 + ], + [ + 75.17572792418396, + 30.49199151781925 + ], + [ + 75.29057060766763, + 30.686639252747703 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 30.686639252747703 + ], + [ + 75.17572792418396, + 30.49199151781925 + ], + [ + 75.4054132911513, + 30.49199151781925 + ], + [ + 75.29057060766763, + 30.686639252747703 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 30.686639252747703 + ], + [ + 75.4054132911513, + 30.49199151781925 + ], + [ + 75.52025597463499, + 30.686639252747703 + ], + [ + 75.29057060766763, + 30.686639252747703 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 31.07593472260461 + ], + [ + 75.52025597463499, + 31.07593472260461 + ], + [ + 75.4054132911513, + 31.270582457533063 + ], + [ + 75.29057060766763, + 31.07593472260461 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 31.07593472260461 + ], + [ + 75.4054132911513, + 31.270582457533063 + ], + [ + 75.17572792418396, + 31.270582457533063 + ], + [ + 75.29057060766763, + 31.07593472260461 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 31.07593472260461 + ], + [ + 75.17572792418396, + 31.270582457533063 + ], + [ + 75.06088524070027, + 31.07593472260461 + ], + [ + 75.29057060766763, + 31.07593472260461 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 31.07593472260461 + ], + [ + 75.06088524070027, + 31.07593472260461 + ], + [ + 75.17572792418396, + 30.88128698767616 + ], + [ + 75.29057060766763, + 31.07593472260461 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 31.07593472260461 + ], + [ + 75.17572792418396, + 30.88128698767616 + ], + [ + 75.4054132911513, + 30.88128698767616 + ], + [ + 75.29057060766763, + 31.07593472260461 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 31.07593472260461 + ], + [ + 75.4054132911513, + 30.88128698767616 + ], + [ + 75.52025597463499, + 31.07593472260461 + ], + [ + 75.29057060766763, + 31.07593472260461 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 31.465230192461515 + ], + [ + 75.52025597463499, + 31.465230192461515 + ], + [ + 75.4054132911513, + 31.659877927389967 + ], + [ + 75.29057060766763, + 31.465230192461515 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 31.465230192461515 + ], + [ + 75.4054132911513, + 31.659877927389967 + ], + [ + 75.17572792418396, + 31.659877927389967 + ], + [ + 75.29057060766763, + 31.465230192461515 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 31.465230192461515 + ], + [ + 75.17572792418396, + 31.659877927389967 + ], + [ + 75.06088524070027, + 31.465230192461515 + ], + [ + 75.29057060766763, + 31.465230192461515 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 31.465230192461515 + ], + [ + 75.06088524070027, + 31.465230192461515 + ], + [ + 75.17572792418396, + 31.270582457533063 + ], + [ + 75.29057060766763, + 31.465230192461515 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 31.465230192461515 + ], + [ + 75.17572792418396, + 31.270582457533063 + ], + [ + 75.4054132911513, + 31.270582457533063 + ], + [ + 75.29057060766763, + 31.465230192461515 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 31.465230192461515 + ], + [ + 75.4054132911513, + 31.270582457533063 + ], + [ + 75.52025597463499, + 31.465230192461515 + ], + [ + 75.29057060766763, + 31.465230192461515 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 31.854525662318423 + ], + [ + 75.52025597463499, + 31.854525662318423 + ], + [ + 75.4054132911513, + 32.049173397246875 + ], + [ + 75.29057060766763, + 31.854525662318423 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 31.854525662318423 + ], + [ + 75.4054132911513, + 32.049173397246875 + ], + [ + 75.17572792418396, + 32.049173397246875 + ], + [ + 75.29057060766763, + 31.854525662318423 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 31.854525662318423 + ], + [ + 75.17572792418396, + 32.049173397246875 + ], + [ + 75.06088524070027, + 31.854525662318423 + ], + [ + 75.29057060766763, + 31.854525662318423 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 31.854525662318423 + ], + [ + 75.06088524070027, + 31.854525662318423 + ], + [ + 75.17572792418396, + 31.65987792738997 + ], + [ + 75.29057060766763, + 31.854525662318423 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 31.854525662318423 + ], + [ + 75.17572792418396, + 31.65987792738997 + ], + [ + 75.4054132911513, + 31.65987792738997 + ], + [ + 75.29057060766763, + 31.854525662318423 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 31.854525662318423 + ], + [ + 75.4054132911513, + 31.65987792738997 + ], + [ + 75.52025597463499, + 31.854525662318423 + ], + [ + 75.29057060766763, + 31.854525662318423 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 32.24382113217533 + ], + [ + 75.52025597463499, + 32.24382113217533 + ], + [ + 75.4054132911513, + 32.43846886710378 + ], + [ + 75.29057060766763, + 32.24382113217533 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 32.24382113217533 + ], + [ + 75.4054132911513, + 32.43846886710378 + ], + [ + 75.17572792418396, + 32.43846886710378 + ], + [ + 75.29057060766763, + 32.24382113217533 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 32.24382113217533 + ], + [ + 75.17572792418396, + 32.43846886710378 + ], + [ + 75.06088524070027, + 32.24382113217533 + ], + [ + 75.29057060766763, + 32.24382113217533 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 32.24382113217533 + ], + [ + 75.06088524070027, + 32.24382113217533 + ], + [ + 75.17572792418396, + 32.049173397246875 + ], + [ + 75.29057060766763, + 32.24382113217533 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 32.24382113217533 + ], + [ + 75.17572792418396, + 32.049173397246875 + ], + [ + 75.4054132911513, + 32.049173397246875 + ], + [ + 75.29057060766763, + 32.24382113217533 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 32.24382113217533 + ], + [ + 75.4054132911513, + 32.049173397246875 + ], + [ + 75.52025597463499, + 32.24382113217533 + ], + [ + 75.29057060766763, + 32.24382113217533 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 32.63311660203224 + ], + [ + 75.52025597463499, + 32.63311660203224 + ], + [ + 75.4054132911513, + 32.82776433696069 + ], + [ + 75.29057060766763, + 32.63311660203224 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 32.63311660203224 + ], + [ + 75.4054132911513, + 32.82776433696069 + ], + [ + 75.17572792418396, + 32.82776433696069 + ], + [ + 75.29057060766763, + 32.63311660203224 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 32.63311660203224 + ], + [ + 75.17572792418396, + 32.82776433696069 + ], + [ + 75.06088524070027, + 32.63311660203224 + ], + [ + 75.29057060766763, + 32.63311660203224 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 32.63311660203224 + ], + [ + 75.06088524070027, + 32.63311660203224 + ], + [ + 75.17572792418396, + 32.438468867103786 + ], + [ + 75.29057060766763, + 32.63311660203224 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 32.63311660203224 + ], + [ + 75.17572792418396, + 32.438468867103786 + ], + [ + 75.4054132911513, + 32.438468867103786 + ], + [ + 75.29057060766763, + 32.63311660203224 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 32.63311660203224 + ], + [ + 75.4054132911513, + 32.438468867103786 + ], + [ + 75.52025597463499, + 32.63311660203224 + ], + [ + 75.29057060766763, + 32.63311660203224 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 33.02241207188914 + ], + [ + 75.52025597463499, + 33.02241207188914 + ], + [ + 75.4054132911513, + 33.217059806817595 + ], + [ + 75.29057060766763, + 33.02241207188914 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 33.02241207188914 + ], + [ + 75.4054132911513, + 33.217059806817595 + ], + [ + 75.17572792418396, + 33.217059806817595 + ], + [ + 75.29057060766763, + 33.02241207188914 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 33.02241207188914 + ], + [ + 75.17572792418396, + 33.217059806817595 + ], + [ + 75.06088524070027, + 33.02241207188914 + ], + [ + 75.29057060766763, + 33.02241207188914 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 33.02241207188914 + ], + [ + 75.06088524070027, + 33.02241207188914 + ], + [ + 75.17572792418396, + 32.82776433696069 + ], + [ + 75.29057060766763, + 33.02241207188914 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 33.02241207188914 + ], + [ + 75.17572792418396, + 32.82776433696069 + ], + [ + 75.4054132911513, + 32.82776433696069 + ], + [ + 75.29057060766763, + 33.02241207188914 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 33.02241207188914 + ], + [ + 75.4054132911513, + 32.82776433696069 + ], + [ + 75.52025597463499, + 33.02241207188914 + ], + [ + 75.29057060766763, + 33.02241207188914 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 33.41170754174605 + ], + [ + 75.52025597463499, + 33.41170754174605 + ], + [ + 75.4054132911513, + 33.6063552766745 + ], + [ + 75.29057060766763, + 33.41170754174605 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 33.41170754174605 + ], + [ + 75.4054132911513, + 33.6063552766745 + ], + [ + 75.17572792418396, + 33.6063552766745 + ], + [ + 75.29057060766763, + 33.41170754174605 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 33.41170754174605 + ], + [ + 75.17572792418396, + 33.6063552766745 + ], + [ + 75.06088524070027, + 33.41170754174605 + ], + [ + 75.29057060766763, + 33.41170754174605 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 33.41170754174605 + ], + [ + 75.06088524070027, + 33.41170754174605 + ], + [ + 75.17572792418396, + 33.217059806817595 + ], + [ + 75.29057060766763, + 33.41170754174605 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 33.41170754174605 + ], + [ + 75.17572792418396, + 33.217059806817595 + ], + [ + 75.4054132911513, + 33.217059806817595 + ], + [ + 75.29057060766763, + 33.41170754174605 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 33.41170754174605 + ], + [ + 75.4054132911513, + 33.217059806817595 + ], + [ + 75.52025597463499, + 33.41170754174605 + ], + [ + 75.29057060766763, + 33.41170754174605 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 33.80100301160295 + ], + [ + 75.52025597463499, + 33.80100301160295 + ], + [ + 75.4054132911513, + 33.9956507465314 + ], + [ + 75.29057060766763, + 33.80100301160295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 33.80100301160295 + ], + [ + 75.4054132911513, + 33.9956507465314 + ], + [ + 75.17572792418396, + 33.9956507465314 + ], + [ + 75.29057060766763, + 33.80100301160295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 33.80100301160295 + ], + [ + 75.17572792418396, + 33.9956507465314 + ], + [ + 75.06088524070027, + 33.80100301160295 + ], + [ + 75.29057060766763, + 33.80100301160295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 33.80100301160295 + ], + [ + 75.06088524070027, + 33.80100301160295 + ], + [ + 75.17572792418396, + 33.6063552766745 + ], + [ + 75.29057060766763, + 33.80100301160295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 33.80100301160295 + ], + [ + 75.17572792418396, + 33.6063552766745 + ], + [ + 75.4054132911513, + 33.6063552766745 + ], + [ + 75.29057060766763, + 33.80100301160295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 33.80100301160295 + ], + [ + 75.4054132911513, + 33.6063552766745 + ], + [ + 75.52025597463499, + 33.80100301160295 + ], + [ + 75.29057060766763, + 33.80100301160295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 34.190298481459855 + ], + [ + 75.52025597463499, + 34.190298481459855 + ], + [ + 75.4054132911513, + 34.38494621638831 + ], + [ + 75.29057060766763, + 34.190298481459855 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 34.190298481459855 + ], + [ + 75.4054132911513, + 34.38494621638831 + ], + [ + 75.17572792418396, + 34.38494621638831 + ], + [ + 75.29057060766763, + 34.190298481459855 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 34.190298481459855 + ], + [ + 75.17572792418396, + 34.38494621638831 + ], + [ + 75.06088524070027, + 34.190298481459855 + ], + [ + 75.29057060766763, + 34.190298481459855 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 34.190298481459855 + ], + [ + 75.06088524070027, + 34.190298481459855 + ], + [ + 75.17572792418396, + 33.9956507465314 + ], + [ + 75.29057060766763, + 34.190298481459855 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 34.190298481459855 + ], + [ + 75.17572792418396, + 33.9956507465314 + ], + [ + 75.4054132911513, + 33.9956507465314 + ], + [ + 75.29057060766763, + 34.190298481459855 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 34.190298481459855 + ], + [ + 75.4054132911513, + 33.9956507465314 + ], + [ + 75.52025597463499, + 34.190298481459855 + ], + [ + 75.29057060766763, + 34.190298481459855 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 34.57959395131677 + ], + [ + 75.52025597463499, + 34.57959395131677 + ], + [ + 75.4054132911513, + 34.77424168624522 + ], + [ + 75.29057060766763, + 34.57959395131677 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 34.57959395131677 + ], + [ + 75.4054132911513, + 34.77424168624522 + ], + [ + 75.17572792418396, + 34.77424168624522 + ], + [ + 75.29057060766763, + 34.57959395131677 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 34.57959395131677 + ], + [ + 75.17572792418396, + 34.77424168624522 + ], + [ + 75.06088524070027, + 34.57959395131677 + ], + [ + 75.29057060766763, + 34.57959395131677 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 34.57959395131677 + ], + [ + 75.06088524070027, + 34.57959395131677 + ], + [ + 75.17572792418396, + 34.384946216388315 + ], + [ + 75.29057060766763, + 34.57959395131677 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 34.57959395131677 + ], + [ + 75.17572792418396, + 34.384946216388315 + ], + [ + 75.4054132911513, + 34.384946216388315 + ], + [ + 75.29057060766763, + 34.57959395131677 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 34.57959395131677 + ], + [ + 75.4054132911513, + 34.384946216388315 + ], + [ + 75.52025597463499, + 34.57959395131677 + ], + [ + 75.29057060766763, + 34.57959395131677 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 34.96888942117368 + ], + [ + 75.52025597463499, + 34.96888942117368 + ], + [ + 75.4054132911513, + 35.16353715610213 + ], + [ + 75.29057060766763, + 34.96888942117368 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 34.96888942117368 + ], + [ + 75.4054132911513, + 35.16353715610213 + ], + [ + 75.17572792418396, + 35.16353715610213 + ], + [ + 75.29057060766763, + 34.96888942117368 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 34.96888942117368 + ], + [ + 75.17572792418396, + 35.16353715610213 + ], + [ + 75.06088524070027, + 34.96888942117368 + ], + [ + 75.29057060766763, + 34.96888942117368 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 34.96888942117368 + ], + [ + 75.06088524070027, + 34.96888942117368 + ], + [ + 75.17572792418396, + 34.774241686245226 + ], + [ + 75.29057060766763, + 34.96888942117368 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 34.96888942117368 + ], + [ + 75.17572792418396, + 34.774241686245226 + ], + [ + 75.4054132911513, + 34.774241686245226 + ], + [ + 75.29057060766763, + 34.96888942117368 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 34.96888942117368 + ], + [ + 75.4054132911513, + 34.774241686245226 + ], + [ + 75.52025597463499, + 34.96888942117368 + ], + [ + 75.29057060766763, + 34.96888942117368 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 35.35818489103058 + ], + [ + 75.52025597463499, + 35.35818489103058 + ], + [ + 75.4054132911513, + 35.552832625959034 + ], + [ + 75.29057060766763, + 35.35818489103058 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 35.35818489103058 + ], + [ + 75.4054132911513, + 35.552832625959034 + ], + [ + 75.17572792418396, + 35.552832625959034 + ], + [ + 75.29057060766763, + 35.35818489103058 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 35.35818489103058 + ], + [ + 75.17572792418396, + 35.552832625959034 + ], + [ + 75.06088524070027, + 35.35818489103058 + ], + [ + 75.29057060766763, + 35.35818489103058 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 35.35818489103058 + ], + [ + 75.06088524070027, + 35.35818489103058 + ], + [ + 75.17572792418396, + 35.16353715610213 + ], + [ + 75.29057060766763, + 35.35818489103058 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 35.35818489103058 + ], + [ + 75.17572792418396, + 35.16353715610213 + ], + [ + 75.4054132911513, + 35.16353715610213 + ], + [ + 75.29057060766763, + 35.35818489103058 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 35.35818489103058 + ], + [ + 75.4054132911513, + 35.16353715610213 + ], + [ + 75.52025597463499, + 35.35818489103058 + ], + [ + 75.29057060766763, + 35.35818489103058 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 35.74748036088749 + ], + [ + 75.52025597463499, + 35.74748036088749 + ], + [ + 75.4054132911513, + 35.94212809581594 + ], + [ + 75.29057060766763, + 35.74748036088749 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 35.74748036088749 + ], + [ + 75.4054132911513, + 35.94212809581594 + ], + [ + 75.17572792418396, + 35.94212809581594 + ], + [ + 75.29057060766763, + 35.74748036088749 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 35.74748036088749 + ], + [ + 75.17572792418396, + 35.94212809581594 + ], + [ + 75.06088524070027, + 35.74748036088749 + ], + [ + 75.29057060766763, + 35.74748036088749 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 35.74748036088749 + ], + [ + 75.06088524070027, + 35.74748036088749 + ], + [ + 75.17572792418396, + 35.552832625959034 + ], + [ + 75.29057060766763, + 35.74748036088749 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 35.74748036088749 + ], + [ + 75.17572792418396, + 35.552832625959034 + ], + [ + 75.4054132911513, + 35.552832625959034 + ], + [ + 75.29057060766763, + 35.74748036088749 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 35.74748036088749 + ], + [ + 75.4054132911513, + 35.552832625959034 + ], + [ + 75.52025597463499, + 35.74748036088749 + ], + [ + 75.29057060766763, + 35.74748036088749 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 36.13677583074439 + ], + [ + 75.52025597463499, + 36.13677583074439 + ], + [ + 75.4054132911513, + 36.33142356567284 + ], + [ + 75.29057060766763, + 36.13677583074439 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 36.13677583074439 + ], + [ + 75.4054132911513, + 36.33142356567284 + ], + [ + 75.17572792418396, + 36.33142356567284 + ], + [ + 75.29057060766763, + 36.13677583074439 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 36.13677583074439 + ], + [ + 75.17572792418396, + 36.33142356567284 + ], + [ + 75.06088524070027, + 36.13677583074439 + ], + [ + 75.29057060766763, + 36.13677583074439 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 36.13677583074439 + ], + [ + 75.06088524070027, + 36.13677583074439 + ], + [ + 75.17572792418396, + 35.94212809581594 + ], + [ + 75.29057060766763, + 36.13677583074439 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 36.13677583074439 + ], + [ + 75.17572792418396, + 35.94212809581594 + ], + [ + 75.4054132911513, + 35.94212809581594 + ], + [ + 75.29057060766763, + 36.13677583074439 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 36.13677583074439 + ], + [ + 75.4054132911513, + 35.94212809581594 + ], + [ + 75.52025597463499, + 36.13677583074439 + ], + [ + 75.29057060766763, + 36.13677583074439 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 36.526071300601295 + ], + [ + 75.52025597463499, + 36.526071300601295 + ], + [ + 75.4054132911513, + 36.72071903552975 + ], + [ + 75.29057060766763, + 36.526071300601295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 36.526071300601295 + ], + [ + 75.4054132911513, + 36.72071903552975 + ], + [ + 75.17572792418396, + 36.72071903552975 + ], + [ + 75.29057060766763, + 36.526071300601295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 36.526071300601295 + ], + [ + 75.17572792418396, + 36.72071903552975 + ], + [ + 75.06088524070027, + 36.526071300601295 + ], + [ + 75.29057060766763, + 36.526071300601295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 36.526071300601295 + ], + [ + 75.06088524070027, + 36.526071300601295 + ], + [ + 75.17572792418396, + 36.33142356567284 + ], + [ + 75.29057060766763, + 36.526071300601295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 36.526071300601295 + ], + [ + 75.17572792418396, + 36.33142356567284 + ], + [ + 75.4054132911513, + 36.33142356567284 + ], + [ + 75.29057060766763, + 36.526071300601295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 36.526071300601295 + ], + [ + 75.4054132911513, + 36.33142356567284 + ], + [ + 75.52025597463499, + 36.526071300601295 + ], + [ + 75.29057060766763, + 36.526071300601295 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 36.915366770458206 + ], + [ + 75.52025597463499, + 36.915366770458206 + ], + [ + 75.4054132911513, + 37.11001450538666 + ], + [ + 75.29057060766763, + 36.915366770458206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 36.915366770458206 + ], + [ + 75.4054132911513, + 37.11001450538666 + ], + [ + 75.17572792418396, + 37.11001450538666 + ], + [ + 75.29057060766763, + 36.915366770458206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 36.915366770458206 + ], + [ + 75.17572792418396, + 37.11001450538666 + ], + [ + 75.06088524070027, + 36.915366770458206 + ], + [ + 75.29057060766763, + 36.915366770458206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 36.915366770458206 + ], + [ + 75.06088524070027, + 36.915366770458206 + ], + [ + 75.17572792418396, + 36.720719035529754 + ], + [ + 75.29057060766763, + 36.915366770458206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 36.915366770458206 + ], + [ + 75.17572792418396, + 36.720719035529754 + ], + [ + 75.4054132911513, + 36.720719035529754 + ], + [ + 75.29057060766763, + 36.915366770458206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 36.915366770458206 + ], + [ + 75.4054132911513, + 36.720719035529754 + ], + [ + 75.52025597463499, + 36.915366770458206 + ], + [ + 75.29057060766763, + 36.915366770458206 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 37.30466224031511 + ], + [ + 75.52025597463499, + 37.30466224031511 + ], + [ + 75.4054132911513, + 37.49930997524356 + ], + [ + 75.29057060766763, + 37.30466224031511 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 37.30466224031511 + ], + [ + 75.4054132911513, + 37.49930997524356 + ], + [ + 75.17572792418396, + 37.49930997524356 + ], + [ + 75.29057060766763, + 37.30466224031511 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 37.30466224031511 + ], + [ + 75.17572792418396, + 37.49930997524356 + ], + [ + 75.06088524070027, + 37.30466224031511 + ], + [ + 75.29057060766763, + 37.30466224031511 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 37.30466224031511 + ], + [ + 75.06088524070027, + 37.30466224031511 + ], + [ + 75.17572792418396, + 37.11001450538666 + ], + [ + 75.29057060766763, + 37.30466224031511 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 37.30466224031511 + ], + [ + 75.17572792418396, + 37.11001450538666 + ], + [ + 75.4054132911513, + 37.11001450538666 + ], + [ + 75.29057060766763, + 37.30466224031511 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 37.30466224031511 + ], + [ + 75.4054132911513, + 37.11001450538666 + ], + [ + 75.52025597463499, + 37.30466224031511 + ], + [ + 75.29057060766763, + 37.30466224031511 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 37.69395771017202 + ], + [ + 75.52025597463499, + 37.69395771017202 + ], + [ + 75.4054132911513, + 37.888605445100474 + ], + [ + 75.29057060766763, + 37.69395771017202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 37.69395771017202 + ], + [ + 75.4054132911513, + 37.888605445100474 + ], + [ + 75.17572792418396, + 37.888605445100474 + ], + [ + 75.29057060766763, + 37.69395771017202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 37.69395771017202 + ], + [ + 75.17572792418396, + 37.888605445100474 + ], + [ + 75.06088524070027, + 37.69395771017202 + ], + [ + 75.29057060766763, + 37.69395771017202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 37.69395771017202 + ], + [ + 75.06088524070027, + 37.69395771017202 + ], + [ + 75.17572792418396, + 37.49930997524357 + ], + [ + 75.29057060766763, + 37.69395771017202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 37.69395771017202 + ], + [ + 75.17572792418396, + 37.49930997524357 + ], + [ + 75.4054132911513, + 37.49930997524357 + ], + [ + 75.29057060766763, + 37.69395771017202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 37.69395771017202 + ], + [ + 75.4054132911513, + 37.49930997524357 + ], + [ + 75.52025597463499, + 37.69395771017202 + ], + [ + 75.29057060766763, + 37.69395771017202 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 38.083253180028926 + ], + [ + 75.52025597463499, + 38.083253180028926 + ], + [ + 75.4054132911513, + 38.27790091495738 + ], + [ + 75.29057060766763, + 38.083253180028926 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 38.083253180028926 + ], + [ + 75.4054132911513, + 38.27790091495738 + ], + [ + 75.17572792418396, + 38.27790091495738 + ], + [ + 75.29057060766763, + 38.083253180028926 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 38.083253180028926 + ], + [ + 75.17572792418396, + 38.27790091495738 + ], + [ + 75.06088524070027, + 38.083253180028926 + ], + [ + 75.29057060766763, + 38.083253180028926 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 38.083253180028926 + ], + [ + 75.06088524070027, + 38.083253180028926 + ], + [ + 75.17572792418396, + 37.888605445100474 + ], + [ + 75.29057060766763, + 38.083253180028926 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 38.083253180028926 + ], + [ + 75.17572792418396, + 37.888605445100474 + ], + [ + 75.4054132911513, + 37.888605445100474 + ], + [ + 75.29057060766763, + 38.083253180028926 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 38.083253180028926 + ], + [ + 75.4054132911513, + 37.888605445100474 + ], + [ + 75.52025597463499, + 38.083253180028926 + ], + [ + 75.29057060766763, + 38.083253180028926 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 38.47254864988583 + ], + [ + 75.52025597463499, + 38.47254864988583 + ], + [ + 75.4054132911513, + 38.66719638481428 + ], + [ + 75.29057060766763, + 38.47254864988583 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 38.47254864988583 + ], + [ + 75.4054132911513, + 38.66719638481428 + ], + [ + 75.17572792418396, + 38.66719638481428 + ], + [ + 75.29057060766763, + 38.47254864988583 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 38.47254864988583 + ], + [ + 75.17572792418396, + 38.66719638481428 + ], + [ + 75.06088524070027, + 38.47254864988583 + ], + [ + 75.29057060766763, + 38.47254864988583 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 38.47254864988583 + ], + [ + 75.06088524070027, + 38.47254864988583 + ], + [ + 75.17572792418396, + 38.27790091495738 + ], + [ + 75.29057060766763, + 38.47254864988583 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 38.47254864988583 + ], + [ + 75.17572792418396, + 38.27790091495738 + ], + [ + 75.4054132911513, + 38.27790091495738 + ], + [ + 75.29057060766763, + 38.47254864988583 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 38.47254864988583 + ], + [ + 75.4054132911513, + 38.27790091495738 + ], + [ + 75.52025597463499, + 38.47254864988583 + ], + [ + 75.29057060766763, + 38.47254864988583 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 38.861844119742734 + ], + [ + 75.52025597463499, + 38.861844119742734 + ], + [ + 75.4054132911513, + 39.05649185467119 + ], + [ + 75.29057060766763, + 38.861844119742734 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 38.861844119742734 + ], + [ + 75.4054132911513, + 39.05649185467119 + ], + [ + 75.17572792418396, + 39.05649185467119 + ], + [ + 75.29057060766763, + 38.861844119742734 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 38.861844119742734 + ], + [ + 75.17572792418396, + 39.05649185467119 + ], + [ + 75.06088524070027, + 38.861844119742734 + ], + [ + 75.29057060766763, + 38.861844119742734 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 38.861844119742734 + ], + [ + 75.06088524070027, + 38.861844119742734 + ], + [ + 75.17572792418396, + 38.66719638481428 + ], + [ + 75.29057060766763, + 38.861844119742734 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 38.861844119742734 + ], + [ + 75.17572792418396, + 38.66719638481428 + ], + [ + 75.4054132911513, + 38.66719638481428 + ], + [ + 75.29057060766763, + 38.861844119742734 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 38.861844119742734 + ], + [ + 75.4054132911513, + 38.66719638481428 + ], + [ + 75.52025597463499, + 38.861844119742734 + ], + [ + 75.29057060766763, + 38.861844119742734 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 39.25113958959964 + ], + [ + 75.52025597463499, + 39.25113958959964 + ], + [ + 75.4054132911513, + 39.44578732452809 + ], + [ + 75.29057060766763, + 39.25113958959964 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 39.25113958959964 + ], + [ + 75.4054132911513, + 39.44578732452809 + ], + [ + 75.17572792418396, + 39.44578732452809 + ], + [ + 75.29057060766763, + 39.25113958959964 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 39.25113958959964 + ], + [ + 75.17572792418396, + 39.44578732452809 + ], + [ + 75.06088524070027, + 39.25113958959964 + ], + [ + 75.29057060766763, + 39.25113958959964 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 39.25113958959964 + ], + [ + 75.06088524070027, + 39.25113958959964 + ], + [ + 75.17572792418396, + 39.05649185467119 + ], + [ + 75.29057060766763, + 39.25113958959964 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 39.25113958959964 + ], + [ + 75.17572792418396, + 39.05649185467119 + ], + [ + 75.4054132911513, + 39.05649185467119 + ], + [ + 75.29057060766763, + 39.25113958959964 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 39.25113958959964 + ], + [ + 75.4054132911513, + 39.05649185467119 + ], + [ + 75.52025597463499, + 39.25113958959964 + ], + [ + 75.29057060766763, + 39.25113958959964 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 39.64043505945655 + ], + [ + 75.52025597463499, + 39.64043505945655 + ], + [ + 75.4054132911513, + 39.835082794385 + ], + [ + 75.29057060766763, + 39.64043505945655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 39.64043505945655 + ], + [ + 75.4054132911513, + 39.835082794385 + ], + [ + 75.17572792418396, + 39.835082794385 + ], + [ + 75.29057060766763, + 39.64043505945655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 39.64043505945655 + ], + [ + 75.17572792418396, + 39.835082794385 + ], + [ + 75.06088524070027, + 39.64043505945655 + ], + [ + 75.29057060766763, + 39.64043505945655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 39.64043505945655 + ], + [ + 75.06088524070027, + 39.64043505945655 + ], + [ + 75.17572792418396, + 39.4457873245281 + ], + [ + 75.29057060766763, + 39.64043505945655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 39.64043505945655 + ], + [ + 75.17572792418396, + 39.4457873245281 + ], + [ + 75.4054132911513, + 39.4457873245281 + ], + [ + 75.29057060766763, + 39.64043505945655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 39.64043505945655 + ], + [ + 75.4054132911513, + 39.4457873245281 + ], + [ + 75.52025597463499, + 39.64043505945655 + ], + [ + 75.29057060766763, + 39.64043505945655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 40.029730529313454 + ], + [ + 75.52025597463499, + 40.029730529313454 + ], + [ + 75.4054132911513, + 40.224378264241906 + ], + [ + 75.29057060766763, + 40.029730529313454 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 40.029730529313454 + ], + [ + 75.4054132911513, + 40.224378264241906 + ], + [ + 75.17572792418396, + 40.224378264241906 + ], + [ + 75.29057060766763, + 40.029730529313454 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 40.029730529313454 + ], + [ + 75.17572792418396, + 40.224378264241906 + ], + [ + 75.06088524070027, + 40.029730529313454 + ], + [ + 75.29057060766763, + 40.029730529313454 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 40.029730529313454 + ], + [ + 75.06088524070027, + 40.029730529313454 + ], + [ + 75.17572792418396, + 39.835082794385 + ], + [ + 75.29057060766763, + 40.029730529313454 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 40.029730529313454 + ], + [ + 75.17572792418396, + 39.835082794385 + ], + [ + 75.4054132911513, + 39.835082794385 + ], + [ + 75.29057060766763, + 40.029730529313454 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 40.029730529313454 + ], + [ + 75.4054132911513, + 39.835082794385 + ], + [ + 75.52025597463499, + 40.029730529313454 + ], + [ + 75.29057060766763, + 40.029730529313454 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 40.419025999170366 + ], + [ + 75.52025597463499, + 40.419025999170366 + ], + [ + 75.4054132911513, + 40.61367373409882 + ], + [ + 75.29057060766763, + 40.419025999170366 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 40.419025999170366 + ], + [ + 75.4054132911513, + 40.61367373409882 + ], + [ + 75.17572792418396, + 40.61367373409882 + ], + [ + 75.29057060766763, + 40.419025999170366 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 40.419025999170366 + ], + [ + 75.17572792418396, + 40.61367373409882 + ], + [ + 75.06088524070027, + 40.419025999170366 + ], + [ + 75.29057060766763, + 40.419025999170366 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 40.419025999170366 + ], + [ + 75.06088524070027, + 40.419025999170366 + ], + [ + 75.17572792418396, + 40.22437826424191 + ], + [ + 75.29057060766763, + 40.419025999170366 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 40.419025999170366 + ], + [ + 75.17572792418396, + 40.22437826424191 + ], + [ + 75.4054132911513, + 40.22437826424191 + ], + [ + 75.29057060766763, + 40.419025999170366 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 40.419025999170366 + ], + [ + 75.4054132911513, + 40.22437826424191 + ], + [ + 75.52025597463499, + 40.419025999170366 + ], + [ + 75.29057060766763, + 40.419025999170366 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 40.80832146902727 + ], + [ + 75.52025597463499, + 40.80832146902727 + ], + [ + 75.4054132911513, + 41.00296920395572 + ], + [ + 75.29057060766763, + 40.80832146902727 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 40.80832146902727 + ], + [ + 75.4054132911513, + 41.00296920395572 + ], + [ + 75.17572792418396, + 41.00296920395572 + ], + [ + 75.29057060766763, + 40.80832146902727 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 40.80832146902727 + ], + [ + 75.17572792418396, + 41.00296920395572 + ], + [ + 75.06088524070027, + 40.80832146902727 + ], + [ + 75.29057060766763, + 40.80832146902727 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 40.80832146902727 + ], + [ + 75.06088524070027, + 40.80832146902727 + ], + [ + 75.17572792418396, + 40.61367373409882 + ], + [ + 75.29057060766763, + 40.80832146902727 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 40.80832146902727 + ], + [ + 75.17572792418396, + 40.61367373409882 + ], + [ + 75.4054132911513, + 40.61367373409882 + ], + [ + 75.29057060766763, + 40.80832146902727 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 40.80832146902727 + ], + [ + 75.4054132911513, + 40.61367373409882 + ], + [ + 75.52025597463499, + 40.80832146902727 + ], + [ + 75.29057060766763, + 40.80832146902727 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 41.197616938884174 + ], + [ + 75.52025597463499, + 41.197616938884174 + ], + [ + 75.4054132911513, + 41.392264673812626 + ], + [ + 75.29057060766763, + 41.197616938884174 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 41.197616938884174 + ], + [ + 75.4054132911513, + 41.392264673812626 + ], + [ + 75.17572792418396, + 41.392264673812626 + ], + [ + 75.29057060766763, + 41.197616938884174 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 41.197616938884174 + ], + [ + 75.17572792418396, + 41.392264673812626 + ], + [ + 75.06088524070027, + 41.197616938884174 + ], + [ + 75.29057060766763, + 41.197616938884174 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 41.197616938884174 + ], + [ + 75.06088524070027, + 41.197616938884174 + ], + [ + 75.17572792418396, + 41.00296920395572 + ], + [ + 75.29057060766763, + 41.197616938884174 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 41.197616938884174 + ], + [ + 75.17572792418396, + 41.00296920395572 + ], + [ + 75.4054132911513, + 41.00296920395572 + ], + [ + 75.29057060766763, + 41.197616938884174 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 41.197616938884174 + ], + [ + 75.4054132911513, + 41.00296920395572 + ], + [ + 75.52025597463499, + 41.197616938884174 + ], + [ + 75.29057060766763, + 41.197616938884174 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 41.58691240874108 + ], + [ + 75.52025597463499, + 41.58691240874108 + ], + [ + 75.4054132911513, + 41.78156014366953 + ], + [ + 75.29057060766763, + 41.58691240874108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 41.58691240874108 + ], + [ + 75.4054132911513, + 41.78156014366953 + ], + [ + 75.17572792418396, + 41.78156014366953 + ], + [ + 75.29057060766763, + 41.58691240874108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 41.58691240874108 + ], + [ + 75.17572792418396, + 41.78156014366953 + ], + [ + 75.06088524070027, + 41.58691240874108 + ], + [ + 75.29057060766763, + 41.58691240874108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 41.58691240874108 + ], + [ + 75.06088524070027, + 41.58691240874108 + ], + [ + 75.17572792418396, + 41.392264673812626 + ], + [ + 75.29057060766763, + 41.58691240874108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 41.58691240874108 + ], + [ + 75.17572792418396, + 41.392264673812626 + ], + [ + 75.4054132911513, + 41.392264673812626 + ], + [ + 75.29057060766763, + 41.58691240874108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 41.58691240874108 + ], + [ + 75.4054132911513, + 41.392264673812626 + ], + [ + 75.52025597463499, + 41.58691240874108 + ], + [ + 75.29057060766763, + 41.58691240874108 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 41.97620787859798 + ], + [ + 75.52025597463499, + 41.97620787859798 + ], + [ + 75.4054132911513, + 42.170855613526435 + ], + [ + 75.29057060766763, + 41.97620787859798 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 41.97620787859798 + ], + [ + 75.4054132911513, + 42.170855613526435 + ], + [ + 75.17572792418396, + 42.170855613526435 + ], + [ + 75.29057060766763, + 41.97620787859798 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 41.97620787859798 + ], + [ + 75.17572792418396, + 42.170855613526435 + ], + [ + 75.06088524070027, + 41.97620787859798 + ], + [ + 75.29057060766763, + 41.97620787859798 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 41.97620787859798 + ], + [ + 75.06088524070027, + 41.97620787859798 + ], + [ + 75.17572792418396, + 41.78156014366953 + ], + [ + 75.29057060766763, + 41.97620787859798 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 41.97620787859798 + ], + [ + 75.17572792418396, + 41.78156014366953 + ], + [ + 75.4054132911513, + 41.78156014366953 + ], + [ + 75.29057060766763, + 41.97620787859798 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 41.97620787859798 + ], + [ + 75.4054132911513, + 41.78156014366953 + ], + [ + 75.52025597463499, + 41.97620787859798 + ], + [ + 75.29057060766763, + 41.97620787859798 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 42.365503348454894 + ], + [ + 75.52025597463499, + 42.365503348454894 + ], + [ + 75.4054132911513, + 42.560151083383346 + ], + [ + 75.29057060766763, + 42.365503348454894 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 42.365503348454894 + ], + [ + 75.4054132911513, + 42.560151083383346 + ], + [ + 75.17572792418396, + 42.560151083383346 + ], + [ + 75.29057060766763, + 42.365503348454894 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 42.365503348454894 + ], + [ + 75.17572792418396, + 42.560151083383346 + ], + [ + 75.06088524070027, + 42.365503348454894 + ], + [ + 75.29057060766763, + 42.365503348454894 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 42.365503348454894 + ], + [ + 75.06088524070027, + 42.365503348454894 + ], + [ + 75.17572792418396, + 42.17085561352644 + ], + [ + 75.29057060766763, + 42.365503348454894 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 42.365503348454894 + ], + [ + 75.17572792418396, + 42.17085561352644 + ], + [ + 75.4054132911513, + 42.17085561352644 + ], + [ + 75.29057060766763, + 42.365503348454894 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 42.365503348454894 + ], + [ + 75.4054132911513, + 42.17085561352644 + ], + [ + 75.52025597463499, + 42.365503348454894 + ], + [ + 75.29057060766763, + 42.365503348454894 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 42.754798818311805 + ], + [ + 75.52025597463499, + 42.754798818311805 + ], + [ + 75.4054132911513, + 42.94944655324026 + ], + [ + 75.29057060766763, + 42.754798818311805 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 42.754798818311805 + ], + [ + 75.4054132911513, + 42.94944655324026 + ], + [ + 75.17572792418396, + 42.94944655324026 + ], + [ + 75.29057060766763, + 42.754798818311805 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 42.754798818311805 + ], + [ + 75.17572792418396, + 42.94944655324026 + ], + [ + 75.06088524070027, + 42.754798818311805 + ], + [ + 75.29057060766763, + 42.754798818311805 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 42.754798818311805 + ], + [ + 75.06088524070027, + 42.754798818311805 + ], + [ + 75.17572792418396, + 42.56015108338335 + ], + [ + 75.29057060766763, + 42.754798818311805 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 42.754798818311805 + ], + [ + 75.17572792418396, + 42.56015108338335 + ], + [ + 75.4054132911513, + 42.56015108338335 + ], + [ + 75.29057060766763, + 42.754798818311805 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 42.754798818311805 + ], + [ + 75.4054132911513, + 42.56015108338335 + ], + [ + 75.52025597463499, + 42.754798818311805 + ], + [ + 75.29057060766763, + 42.754798818311805 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 43.14409428816871 + ], + [ + 75.52025597463499, + 43.14409428816871 + ], + [ + 75.4054132911513, + 43.33874202309716 + ], + [ + 75.29057060766763, + 43.14409428816871 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 43.14409428816871 + ], + [ + 75.4054132911513, + 43.33874202309716 + ], + [ + 75.17572792418396, + 43.33874202309716 + ], + [ + 75.29057060766763, + 43.14409428816871 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 43.14409428816871 + ], + [ + 75.17572792418396, + 43.33874202309716 + ], + [ + 75.06088524070027, + 43.14409428816871 + ], + [ + 75.29057060766763, + 43.14409428816871 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 43.14409428816871 + ], + [ + 75.06088524070027, + 43.14409428816871 + ], + [ + 75.17572792418396, + 42.94944655324026 + ], + [ + 75.29057060766763, + 43.14409428816871 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 43.14409428816871 + ], + [ + 75.17572792418396, + 42.94944655324026 + ], + [ + 75.4054132911513, + 42.94944655324026 + ], + [ + 75.29057060766763, + 43.14409428816871 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 43.14409428816871 + ], + [ + 75.4054132911513, + 42.94944655324026 + ], + [ + 75.52025597463499, + 43.14409428816871 + ], + [ + 75.29057060766763, + 43.14409428816871 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 43.53338975802561 + ], + [ + 75.52025597463499, + 43.53338975802561 + ], + [ + 75.4054132911513, + 43.728037492954066 + ], + [ + 75.29057060766763, + 43.53338975802561 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 43.53338975802561 + ], + [ + 75.4054132911513, + 43.728037492954066 + ], + [ + 75.17572792418396, + 43.728037492954066 + ], + [ + 75.29057060766763, + 43.53338975802561 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 43.53338975802561 + ], + [ + 75.17572792418396, + 43.728037492954066 + ], + [ + 75.06088524070027, + 43.53338975802561 + ], + [ + 75.29057060766763, + 43.53338975802561 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 43.53338975802561 + ], + [ + 75.06088524070027, + 43.53338975802561 + ], + [ + 75.17572792418396, + 43.33874202309716 + ], + [ + 75.29057060766763, + 43.53338975802561 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 43.53338975802561 + ], + [ + 75.17572792418396, + 43.33874202309716 + ], + [ + 75.4054132911513, + 43.33874202309716 + ], + [ + 75.29057060766763, + 43.53338975802561 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 43.53338975802561 + ], + [ + 75.4054132911513, + 43.33874202309716 + ], + [ + 75.52025597463499, + 43.53338975802561 + ], + [ + 75.29057060766763, + 43.53338975802561 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 43.92268522788252 + ], + [ + 75.52025597463499, + 43.92268522788252 + ], + [ + 75.4054132911513, + 44.11733296281097 + ], + [ + 75.29057060766763, + 43.92268522788252 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 43.92268522788252 + ], + [ + 75.4054132911513, + 44.11733296281097 + ], + [ + 75.17572792418396, + 44.11733296281097 + ], + [ + 75.29057060766763, + 43.92268522788252 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 43.92268522788252 + ], + [ + 75.17572792418396, + 44.11733296281097 + ], + [ + 75.06088524070027, + 43.92268522788252 + ], + [ + 75.29057060766763, + 43.92268522788252 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 43.92268522788252 + ], + [ + 75.06088524070027, + 43.92268522788252 + ], + [ + 75.17572792418396, + 43.728037492954066 + ], + [ + 75.29057060766763, + 43.92268522788252 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 43.92268522788252 + ], + [ + 75.17572792418396, + 43.728037492954066 + ], + [ + 75.4054132911513, + 43.728037492954066 + ], + [ + 75.29057060766763, + 43.92268522788252 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 43.92268522788252 + ], + [ + 75.4054132911513, + 43.728037492954066 + ], + [ + 75.52025597463499, + 43.92268522788252 + ], + [ + 75.29057060766763, + 43.92268522788252 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 44.31198069773942 + ], + [ + 75.52025597463499, + 44.31198069773942 + ], + [ + 75.4054132911513, + 44.506628432667874 + ], + [ + 75.29057060766763, + 44.31198069773942 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 44.31198069773942 + ], + [ + 75.4054132911513, + 44.506628432667874 + ], + [ + 75.17572792418396, + 44.506628432667874 + ], + [ + 75.29057060766763, + 44.31198069773942 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 44.31198069773942 + ], + [ + 75.17572792418396, + 44.506628432667874 + ], + [ + 75.06088524070027, + 44.31198069773942 + ], + [ + 75.29057060766763, + 44.31198069773942 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 44.31198069773942 + ], + [ + 75.06088524070027, + 44.31198069773942 + ], + [ + 75.17572792418396, + 44.11733296281097 + ], + [ + 75.29057060766763, + 44.31198069773942 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 44.31198069773942 + ], + [ + 75.17572792418396, + 44.11733296281097 + ], + [ + 75.4054132911513, + 44.11733296281097 + ], + [ + 75.29057060766763, + 44.31198069773942 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 44.31198069773942 + ], + [ + 75.4054132911513, + 44.11733296281097 + ], + [ + 75.52025597463499, + 44.31198069773942 + ], + [ + 75.29057060766763, + 44.31198069773942 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 44.701276167596326 + ], + [ + 75.52025597463499, + 44.701276167596326 + ], + [ + 75.4054132911513, + 44.89592390252478 + ], + [ + 75.29057060766763, + 44.701276167596326 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 44.701276167596326 + ], + [ + 75.4054132911513, + 44.89592390252478 + ], + [ + 75.17572792418396, + 44.89592390252478 + ], + [ + 75.29057060766763, + 44.701276167596326 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 44.701276167596326 + ], + [ + 75.17572792418396, + 44.89592390252478 + ], + [ + 75.06088524070027, + 44.701276167596326 + ], + [ + 75.29057060766763, + 44.701276167596326 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 44.701276167596326 + ], + [ + 75.06088524070027, + 44.701276167596326 + ], + [ + 75.17572792418396, + 44.506628432667874 + ], + [ + 75.29057060766763, + 44.701276167596326 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 44.701276167596326 + ], + [ + 75.17572792418396, + 44.506628432667874 + ], + [ + 75.4054132911513, + 44.506628432667874 + ], + [ + 75.29057060766763, + 44.701276167596326 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 44.701276167596326 + ], + [ + 75.4054132911513, + 44.506628432667874 + ], + [ + 75.52025597463499, + 44.701276167596326 + ], + [ + 75.29057060766763, + 44.701276167596326 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 45.090571637453245 + ], + [ + 75.52025597463499, + 45.090571637453245 + ], + [ + 75.4054132911513, + 45.2852193723817 + ], + [ + 75.29057060766763, + 45.090571637453245 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 45.090571637453245 + ], + [ + 75.4054132911513, + 45.2852193723817 + ], + [ + 75.17572792418396, + 45.2852193723817 + ], + [ + 75.29057060766763, + 45.090571637453245 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 45.090571637453245 + ], + [ + 75.17572792418396, + 45.2852193723817 + ], + [ + 75.06088524070027, + 45.090571637453245 + ], + [ + 75.29057060766763, + 45.090571637453245 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 45.090571637453245 + ], + [ + 75.06088524070027, + 45.090571637453245 + ], + [ + 75.17572792418396, + 44.89592390252479 + ], + [ + 75.29057060766763, + 45.090571637453245 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 45.090571637453245 + ], + [ + 75.17572792418396, + 44.89592390252479 + ], + [ + 75.4054132911513, + 44.89592390252479 + ], + [ + 75.29057060766763, + 45.090571637453245 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 45.090571637453245 + ], + [ + 75.4054132911513, + 44.89592390252479 + ], + [ + 75.52025597463499, + 45.090571637453245 + ], + [ + 75.29057060766763, + 45.090571637453245 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 45.47986710731015 + ], + [ + 75.52025597463499, + 45.47986710731015 + ], + [ + 75.4054132911513, + 45.6745148422386 + ], + [ + 75.29057060766763, + 45.47986710731015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 45.47986710731015 + ], + [ + 75.4054132911513, + 45.6745148422386 + ], + [ + 75.17572792418396, + 45.6745148422386 + ], + [ + 75.29057060766763, + 45.47986710731015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 45.47986710731015 + ], + [ + 75.17572792418396, + 45.6745148422386 + ], + [ + 75.06088524070027, + 45.47986710731015 + ], + [ + 75.29057060766763, + 45.47986710731015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 45.47986710731015 + ], + [ + 75.06088524070027, + 45.47986710731015 + ], + [ + 75.17572792418396, + 45.2852193723817 + ], + [ + 75.29057060766763, + 45.47986710731015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 45.47986710731015 + ], + [ + 75.17572792418396, + 45.2852193723817 + ], + [ + 75.4054132911513, + 45.2852193723817 + ], + [ + 75.29057060766763, + 45.47986710731015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 45.47986710731015 + ], + [ + 75.4054132911513, + 45.2852193723817 + ], + [ + 75.52025597463499, + 45.47986710731015 + ], + [ + 75.29057060766763, + 45.47986710731015 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 45.86916257716705 + ], + [ + 75.52025597463499, + 45.86916257716705 + ], + [ + 75.4054132911513, + 46.063810312095505 + ], + [ + 75.29057060766763, + 45.86916257716705 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 45.86916257716705 + ], + [ + 75.4054132911513, + 46.063810312095505 + ], + [ + 75.17572792418396, + 46.063810312095505 + ], + [ + 75.29057060766763, + 45.86916257716705 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 45.86916257716705 + ], + [ + 75.17572792418396, + 46.063810312095505 + ], + [ + 75.06088524070027, + 45.86916257716705 + ], + [ + 75.29057060766763, + 45.86916257716705 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 45.86916257716705 + ], + [ + 75.06088524070027, + 45.86916257716705 + ], + [ + 75.17572792418396, + 45.6745148422386 + ], + [ + 75.29057060766763, + 45.86916257716705 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 45.86916257716705 + ], + [ + 75.17572792418396, + 45.6745148422386 + ], + [ + 75.4054132911513, + 45.6745148422386 + ], + [ + 75.29057060766763, + 45.86916257716705 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 45.86916257716705 + ], + [ + 75.4054132911513, + 45.6745148422386 + ], + [ + 75.52025597463499, + 45.86916257716705 + ], + [ + 75.29057060766763, + 45.86916257716705 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 46.25845804702396 + ], + [ + 75.52025597463499, + 46.25845804702396 + ], + [ + 75.4054132911513, + 46.45310578195241 + ], + [ + 75.29057060766763, + 46.25845804702396 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 46.25845804702396 + ], + [ + 75.4054132911513, + 46.45310578195241 + ], + [ + 75.17572792418396, + 46.45310578195241 + ], + [ + 75.29057060766763, + 46.25845804702396 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 46.25845804702396 + ], + [ + 75.17572792418396, + 46.45310578195241 + ], + [ + 75.06088524070027, + 46.25845804702396 + ], + [ + 75.29057060766763, + 46.25845804702396 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 46.25845804702396 + ], + [ + 75.06088524070027, + 46.25845804702396 + ], + [ + 75.17572792418396, + 46.063810312095505 + ], + [ + 75.29057060766763, + 46.25845804702396 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 46.25845804702396 + ], + [ + 75.17572792418396, + 46.063810312095505 + ], + [ + 75.4054132911513, + 46.063810312095505 + ], + [ + 75.29057060766763, + 46.25845804702396 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 46.25845804702396 + ], + [ + 75.4054132911513, + 46.063810312095505 + ], + [ + 75.52025597463499, + 46.25845804702396 + ], + [ + 75.29057060766763, + 46.25845804702396 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 46.64775351688086 + ], + [ + 75.52025597463499, + 46.64775351688086 + ], + [ + 75.4054132911513, + 46.842401251809314 + ], + [ + 75.29057060766763, + 46.64775351688086 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 46.64775351688086 + ], + [ + 75.4054132911513, + 46.842401251809314 + ], + [ + 75.17572792418396, + 46.842401251809314 + ], + [ + 75.29057060766763, + 46.64775351688086 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 46.64775351688086 + ], + [ + 75.17572792418396, + 46.842401251809314 + ], + [ + 75.06088524070027, + 46.64775351688086 + ], + [ + 75.29057060766763, + 46.64775351688086 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 46.64775351688086 + ], + [ + 75.06088524070027, + 46.64775351688086 + ], + [ + 75.17572792418396, + 46.45310578195241 + ], + [ + 75.29057060766763, + 46.64775351688086 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 46.64775351688086 + ], + [ + 75.17572792418396, + 46.45310578195241 + ], + [ + 75.4054132911513, + 46.45310578195241 + ], + [ + 75.29057060766763, + 46.64775351688086 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 46.64775351688086 + ], + [ + 75.4054132911513, + 46.45310578195241 + ], + [ + 75.52025597463499, + 46.64775351688086 + ], + [ + 75.29057060766763, + 46.64775351688086 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 47.037048986737766 + ], + [ + 75.52025597463499, + 47.037048986737766 + ], + [ + 75.4054132911513, + 47.23169672166622 + ], + [ + 75.29057060766763, + 47.037048986737766 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 47.037048986737766 + ], + [ + 75.4054132911513, + 47.23169672166622 + ], + [ + 75.17572792418396, + 47.23169672166622 + ], + [ + 75.29057060766763, + 47.037048986737766 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 47.037048986737766 + ], + [ + 75.17572792418396, + 47.23169672166622 + ], + [ + 75.06088524070027, + 47.037048986737766 + ], + [ + 75.29057060766763, + 47.037048986737766 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 47.037048986737766 + ], + [ + 75.06088524070027, + 47.037048986737766 + ], + [ + 75.17572792418396, + 46.842401251809314 + ], + [ + 75.29057060766763, + 47.037048986737766 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 47.037048986737766 + ], + [ + 75.17572792418396, + 46.842401251809314 + ], + [ + 75.4054132911513, + 46.842401251809314 + ], + [ + 75.29057060766763, + 47.037048986737766 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 47.037048986737766 + ], + [ + 75.4054132911513, + 46.842401251809314 + ], + [ + 75.52025597463499, + 47.037048986737766 + ], + [ + 75.29057060766763, + 47.037048986737766 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 47.42634445659467 + ], + [ + 75.52025597463499, + 47.42634445659467 + ], + [ + 75.4054132911513, + 47.62099219152312 + ], + [ + 75.29057060766763, + 47.42634445659467 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 47.42634445659467 + ], + [ + 75.4054132911513, + 47.62099219152312 + ], + [ + 75.17572792418396, + 47.62099219152312 + ], + [ + 75.29057060766763, + 47.42634445659467 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 47.42634445659467 + ], + [ + 75.17572792418396, + 47.62099219152312 + ], + [ + 75.06088524070027, + 47.42634445659467 + ], + [ + 75.29057060766763, + 47.42634445659467 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 47.42634445659467 + ], + [ + 75.06088524070027, + 47.42634445659467 + ], + [ + 75.17572792418396, + 47.23169672166622 + ], + [ + 75.29057060766763, + 47.42634445659467 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 47.42634445659467 + ], + [ + 75.17572792418396, + 47.23169672166622 + ], + [ + 75.4054132911513, + 47.23169672166622 + ], + [ + 75.29057060766763, + 47.42634445659467 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 47.42634445659467 + ], + [ + 75.4054132911513, + 47.23169672166622 + ], + [ + 75.52025597463499, + 47.42634445659467 + ], + [ + 75.29057060766763, + 47.42634445659467 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 47.81563992645159 + ], + [ + 75.52025597463499, + 47.81563992645159 + ], + [ + 75.4054132911513, + 48.01028766138004 + ], + [ + 75.29057060766763, + 47.81563992645159 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 47.81563992645159 + ], + [ + 75.4054132911513, + 48.01028766138004 + ], + [ + 75.17572792418396, + 48.01028766138004 + ], + [ + 75.29057060766763, + 47.81563992645159 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 47.81563992645159 + ], + [ + 75.17572792418396, + 48.01028766138004 + ], + [ + 75.06088524070027, + 47.81563992645159 + ], + [ + 75.29057060766763, + 47.81563992645159 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 47.81563992645159 + ], + [ + 75.06088524070027, + 47.81563992645159 + ], + [ + 75.17572792418396, + 47.620992191523136 + ], + [ + 75.29057060766763, + 47.81563992645159 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 47.81563992645159 + ], + [ + 75.17572792418396, + 47.620992191523136 + ], + [ + 75.4054132911513, + 47.620992191523136 + ], + [ + 75.29057060766763, + 47.81563992645159 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.29057060766763, + 47.81563992645159 + ], + [ + 75.4054132911513, + 47.620992191523136 + ], + [ + 75.52025597463499, + 47.81563992645159 + ], + [ + 75.29057060766763, + 47.81563992645159 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "fill-opacity": 0, + "stroke": "#0ff" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.6328125, + 11.867350911459308 + ], + [ + 75.234375, + 11.867350911459308 + ], + [ + 75.234375, + 47.754097979680026 + ], + [ + 63.6328125, + 47.754097979680026 + ], + [ + 63.6328125, + 11.867350911459308 + ] + ] + ] + } + } + ] +} \ No newline at end of file diff --git a/packages/turf-inside/.npmignore b/packages/turf-inside/.npmignore new file mode 100644 index 0000000000..bb3c08c09a --- /dev/null +++ b/packages/turf-inside/.npmignore @@ -0,0 +1,2 @@ +test +coverage diff --git a/packages/turf-inside/LICENSE b/packages/turf-inside/LICENSE new file mode 100644 index 0000000000..64fb8e99a3 --- /dev/null +++ b/packages/turf-inside/LICENSE @@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) 2014 Morgan Herlocker + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. \ No newline at end of file diff --git a/packages/turf-inside/README.md b/packages/turf-inside/README.md new file mode 100644 index 0000000000..57122062e8 --- /dev/null +++ b/packages/turf-inside/README.md @@ -0,0 +1,91 @@ +# turf-inside + +[![build status](https://secure.travis-ci.org/Turfjs/turf-inside.png)](http://travis-ci.org/Turfjs/turf-inside) + +turf inside module + + +### `turf.inside(point, polygon)` + +Takes a Point and a Polygon or MultiPolygon and determines if the point resides inside the polygon. The polygon can +be convex or concave. The function accounts for holes. + + +### Parameters + +| parameter | type | description | +| --------- | --------------------------------- | ----------------------------- | +| `point` | Feature\.\ | input point | +| `polygon` | Feature\.\ | input polygon or multipolygon | + + +### Example + +```js +var pt1 = { + "type": "Feature", + "properties": { + "marker-color": "#f00" + }, + "geometry": { + "type": "Point", + "coordinates": [-111.467285, 40.75766] + } +}; +var pt2 = { + "type": "Feature", + "properties": { + "marker-color": "#0f0" + }, + "geometry": { + "type": "Point", + "coordinates": [-111.873779, 40.647303] + } +}; +var poly = { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [[ + [-112.074279, 40.52215], + [-112.074279, 40.853293], + [-111.610107, 40.853293], + [-111.610107, 40.52215], + [-112.074279, 40.52215] + ]] + } +}; + +var features = { + "type": "FeatureCollection", + "features": [pt1, pt2, poly] +}; + +//=features + +var isInside1 = turf.inside(pt1, poly); +//=isInside1 + +var isInside2 = turf.inside(pt2, poly); +//=isInside2 +``` + + +**Returns** `Boolean`, `true` if the Point is inside the Polygon; `false` if the Point is not inside the Polygon + +## Installation + +Requires [nodejs](http://nodejs.org/). + +```sh +$ npm install turf-inside +``` + +## Tests + +```sh +$ npm test +``` + + diff --git a/packages/turf-inside/bench.js b/packages/turf-inside/bench.js new file mode 100644 index 0000000000..b97c4570f1 --- /dev/null +++ b/packages/turf-inside/bench.js @@ -0,0 +1,22 @@ +var inside = require('./'); +var Benchmark = require('benchmark'); +var fs = require('fs'); +var point = require('turf-helpers').point; +var polygon = require('turf-helpers').polygon; + +var poly = polygon([[[0,0], [0,100], [100,100], [100,0]]]); +var ptIn = point(50, 50); +var ptOut = point(140, 150); + +var suite = new Benchmark.Suite('turf-inside'); +suite + .add('turf-inside',function () { + inside(ptIn, poly); + }) + .on('cycle', function (event) { + console.log(String(event.target)); + }) + .on('complete', function () { + + }) + .run(); \ No newline at end of file diff --git a/packages/turf-inside/index.js b/packages/turf-inside/index.js new file mode 100644 index 0000000000..878361317c --- /dev/null +++ b/packages/turf-inside/index.js @@ -0,0 +1,100 @@ +var invariant = require('turf-invariant'); + +// http://en.wikipedia.org/wiki/Even%E2%80%93odd_rule +// modified from: https://github.com/substack/point-in-polygon/blob/master/index.js +// which was modified from http://www.ecse.rpi.edu/Homepages/wrf/Research/Short_Notes/pnpoly.html + +/** + * Takes a {@link Point} and a {@link Polygon} or {@link MultiPolygon} and determines if the point resides inside the polygon. The polygon can + * be convex or concave. The function accounts for holes. + * + * @name inside + * @category joins + * @param {Feature} point input point + * @param {Feature<(Polygon|MultiPolygon)>} polygon input polygon or multipolygon + * @return {Boolean} `true` if the Point is inside the Polygon; `false` if the Point is not inside the Polygon + * @example + * var pt1 = { + * "type": "Feature", + * "properties": { + * "marker-color": "#f00" + * }, + * "geometry": { + * "type": "Point", + * "coordinates": [-111.467285, 40.75766] + * } + * }; + * var pt2 = { + * "type": "Feature", + * "properties": { + * "marker-color": "#0f0" + * }, + * "geometry": { + * "type": "Point", + * "coordinates": [-111.873779, 40.647303] + * } + * }; + * var poly = { + * "type": "Feature", + * "properties": {}, + * "geometry": { + * "type": "Polygon", + * "coordinates": [[ + * [-112.074279, 40.52215], + * [-112.074279, 40.853293], + * [-111.610107, 40.853293], + * [-111.610107, 40.52215], + * [-112.074279, 40.52215] + * ]] + * } + * }; + * + * var features = { + * "type": "FeatureCollection", + * "features": [pt1, pt2, poly] + * }; + * + * //=features + * + * var isInside1 = turf.inside(pt1, poly); + * //=isInside1 + * + * var isInside2 = turf.inside(pt2, poly); + * //=isInside2 + */ +module.exports = function input(point, polygon) { + var pt = invariant.getCoord(point); + var polys = polygon.geometry.coordinates; + // normalize to multipolygon + if (polygon.geometry.type === 'Polygon') polys = [polys]; + + for (var i = 0, insidePoly = false; i < polys.length && !insidePoly; i++) { + // check if it is in the outer ring first + if (inRing(pt, polys[i][0])) { + var inHole = false; + var k = 1; + // check for the point in any of the holes + while (k < polys[i].length && !inHole) { + if (inRing(pt, polys[i][k])) { + inHole = true; + } + k++; + } + if (!inHole) insidePoly = true; + } + } + return insidePoly; +}; + +// pt is [x,y] and ring is [[x,y], [x,y],..] +function inRing(pt, ring) { + var isInside = false; + for (var i = 0, j = ring.length - 1; i < ring.length; j = i++) { + var xi = ring[i][0], yi = ring[i][1]; + var xj = ring[j][0], yj = ring[j][1]; + var intersect = ((yi > pt[1]) !== (yj > pt[1])) && + (pt[0] < (xj - xi) * (pt[1] - yi) / (yj - yi) + xi); + if (intersect) isInside = !isInside; + } + return isInside; +} diff --git a/packages/turf-inside/package.json b/packages/turf-inside/package.json new file mode 100644 index 0000000000..f3cb9040f7 --- /dev/null +++ b/packages/turf-inside/package.json @@ -0,0 +1,35 @@ +{ + "name": "turf-inside", + "version": "3.0.5", + "description": "turf inside module", + "main": "index.js", + "scripts": { + "test": "tape test.js" + }, + "repository": { + "type": "git", + "url": "https://github.com/Turfjs/turf-inside.git" + }, + "keywords": [ + "geojson", + "polygon", + "point", + "inside", + "bin", + "gis" + ], + "author": "morganherlocker", + "license": "MIT", + "bugs": { + "url": "https://github.com/Turfjs/turf-inside/issues" + }, + "homepage": "https://github.com/Turfjs/turf-inside", + "dependencies": { + "turf-invariant": "^3.0.1" + }, + "devDependencies": { + "benchmark": "^1.0.0", + "tape": "^3.5.0", + "turf-helpers": "^3.0.5" + } +} diff --git a/packages/turf-inside/test.js b/packages/turf-inside/test.js new file mode 100644 index 0000000000..4849c63a53 --- /dev/null +++ b/packages/turf-inside/test.js @@ -0,0 +1,64 @@ +var test = require('tape'); +var inside = require('./'); +var point = require('turf-helpers').point; +var polygon = require('turf-helpers').polygon; +var fs = require('fs'); + +test('bad type', function (t) { + var poly = polygon([[[0,0], [0,100], [100,100], [100,0], [0,0]]]); + + t.throws(function() { + inside(poly, poly); + }, /A coordinate, feature, or point geometry is required/); + + t.end(); +}); + +test('featureCollection', function (t) { + // test for a simple polygon + var poly = polygon([[[0,0], [0,100], [100,100], [100,0], [0,0]]]); + var ptIn = point([50, 50]); + var ptOut = point([140, 150]); + + t.true(inside(ptIn, poly), 'point inside simple polygon'); + t.false(inside(ptOut, poly), 'point outside simple polygon'); + + // test for a concave polygon + var concavePoly = polygon([[[0,0], [50, 50], [0,100], [100,100], [100,0], [0,0]]]); + var ptConcaveIn = point([75, 75]); + var ptConcaveOut = point([25, 50]); + + t.true(inside(ptConcaveIn, concavePoly), 'point inside concave polygon'); + t.false(inside(ptConcaveOut, concavePoly), 'point outside concave polygon'); + + t.end(); +}); + +test('poly with hole', function (t) { + var ptInHole = point([-86.69208526611328, 36.20373274711739]); + var ptInPoly = point([-86.72229766845702, 36.20258997094334]); + var ptOutsidePoly = point([-86.75079345703125, 36.18527313913089]); + var polyHole = JSON.parse(fs.readFileSync(__dirname + '/test/poly-with-hole.geojson')); + + t.false(inside(ptInHole, polyHole)); + t.true(inside(ptInPoly, polyHole)); + t.false(inside(ptOutsidePoly, polyHole)); + + t.end(); +}); + +test('multipolygon with hole', function (t) { + var ptInHole = point([-86.69208526611328, 36.20373274711739]); + var ptInPoly = point([-86.72229766845702, 36.20258997094334]); + var ptInPoly2 = point([-86.75079345703125, 36.18527313913089]); + var ptOutsidePoly = point([-86.75302505493164, 36.23015046460186]); + var multiPolyHole = JSON.parse(fs.readFileSync(__dirname + '/test/multipoly-with-hole.geojson')); + + t.false(inside(ptInHole, multiPolyHole)); + t.true(inside(ptInPoly, multiPolyHole)); + t.true(inside(ptInPoly2, multiPolyHole)); + t.true(inside(ptInPoly, multiPolyHole)); + t.false(inside(ptOutsidePoly, multiPolyHole)); + + t.end(); +}); diff --git a/packages/turf-inside/test/multipoly-with-hole.geojson b/packages/turf-inside/test/multipoly-with-hole.geojson new file mode 100644 index 0000000000..17d8c3565d --- /dev/null +++ b/packages/turf-inside/test/multipoly-with-hole.geojson @@ -0,0 +1,92 @@ + + + +{ + "type": "Feature", + "properties": {}, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + -86.76624298095703, + 36.171278341935434 + ], + [ + -86.77362442016602, + 36.2014818084173 + ], + [ + -86.74100875854492, + 36.19607929145354 + ], + [ + -86.74238204956055, + 36.170862616662134 + ], + [ + -86.76624298095703, + 36.171278341935434 + ] + ] + ], + [ + [ + [ + -86.70478820800781, + 36.23084281427824 + ], + [ + -86.73980712890625, + 36.21062368007896 + ], + [ + -86.71371459960938, + 36.173495506147 + ], + [ + -86.67526245117186, + 36.17709826419592 + ], + [ + -86.67303085327148, + 36.20910010895552 + ], + [ + -86.68041229248047, + 36.230427405208005 + ], + [ + -86.70478820800781, + 36.23084281427824 + ] + ],[ + [ + -86.6934585571289, + 36.217271643303604 + ], + [ + -86.71268463134766, + 36.20771501855801 + ], + [ + -86.70238494873047, + 36.19067640168397 + ], + [ + -86.68487548828125, + 36.19691047217554 + ], + [ + -86.68264389038086, + 36.20993115142727 + ], + [ + -86.6934585571289, + 36.217271643303604 + ] + ]] + ] + } +} \ No newline at end of file diff --git a/packages/turf-inside/test/poly-with-hole.geojson b/packages/turf-inside/test/poly-with-hole.geojson new file mode 100644 index 0000000000..69d1fa5a3a --- /dev/null +++ b/packages/turf-inside/test/poly-with-hole.geojson @@ -0,0 +1,65 @@ + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.70478820800781, + 36.23084281427824 + ], + [ + -86.73980712890625, + 36.21062368007896 + ], + [ + -86.71371459960938, + 36.173495506147 + ], + [ + -86.67526245117186, + 36.17709826419592 + ], + [ + -86.67303085327148, + 36.20910010895552 + ], + [ + -86.68041229248047, + 36.230427405208005 + ], + [ + -86.70478820800781, + 36.23084281427824 + ] + ], + [ + [ + -86.6934585571289, + 36.217271643303604 + ], + [ + -86.71268463134766, + 36.20771501855801 + ], + [ + -86.70238494873047, + 36.19067640168397 + ], + [ + -86.68487548828125, + 36.19691047217554 + ], + [ + -86.68264389038086, + 36.20993115142727 + ], + [ + -86.6934585571289, + 36.217271643303604 + ] + ] + ] + } + } \ No newline at end of file diff --git a/packages/turf-intersect/.npmignore b/packages/turf-intersect/.npmignore new file mode 100644 index 0000000000..bb3c08c09a --- /dev/null +++ b/packages/turf-intersect/.npmignore @@ -0,0 +1,2 @@ +test +coverage diff --git a/packages/turf-intersect/README.md b/packages/turf-intersect/README.md new file mode 100644 index 0000000000..691dce2c22 --- /dev/null +++ b/packages/turf-intersect/README.md @@ -0,0 +1,89 @@ +# turf-intersect + +[![build status](https://secure.travis-ci.org/Turfjs/turf-intersect.png)](http://travis-ci.org/Turfjs/turf-intersect) + +find the intersection of spatial features + + +### `turf.intersect(poly1, poly2)` + +Takes two Polygon|polygons and finds their intersection. If they share a border, returns the border; if they don't intersect, returns undefined. + + +### Parameters + +| parameter | type | description | +| --------- | -------------------- | ------------------ | +| `poly1` | Feature\.\ | the first polygon | +| `poly2` | Feature\.\ | the second polygon | + + +### Example + +```js +var poly1 = { + "type": "Feature", + "properties": { + "fill": "#0f0" + }, + "geometry": { + "type": "Polygon", + "coordinates": [[ + [-122.801742, 45.48565], + [-122.801742, 45.60491], + [-122.584762, 45.60491], + [-122.584762, 45.48565], + [-122.801742, 45.48565] + ]] + } +} +var poly2 = { + "type": "Feature", + "properties": { + "fill": "#00f" + }, + "geometry": { + "type": "Polygon", + "coordinates": [[ + [-122.520217, 45.535693], + [-122.64038, 45.553967], + [-122.720031, 45.526554], + [-122.669906, 45.507309], + [-122.723464, 45.446643], + [-122.532577, 45.408574], + [-122.487258, 45.477466], + [-122.520217, 45.535693] + ]] + } +} + +var polygons = { + "type": "FeatureCollection", + "features": [poly1, poly2] +}; + +var intersection = turf.intersect(poly1, poly2); + +//=polygons + +//=intersection +``` + + +**Returns** `Feature.,Feature.`, if `poly1` and `poly2` overlap, returns a Polygon feature representing the area they overlap; if `poly1` and `poly2` do not overlap, returns `undefined`; if `poly1` and `poly2` share a border, a MultiLineString of the locations where their borders are shared + +## Installation + +Requires [nodejs](http://nodejs.org/). + +```sh +$ npm install turf-intersect +``` + +## Tests + +```sh +$ npm test +``` + + diff --git a/packages/turf-intersect/bench.js b/packages/turf-intersect/bench.js new file mode 100644 index 0000000000..1d7a97a821 --- /dev/null +++ b/packages/turf-intersect/bench.js @@ -0,0 +1,21 @@ +var intersect = require('./'); +var Benchmark = require('benchmark'); +var fs = require('fs'); + +var armenia = JSON.parse(fs.readFileSync(__dirname+'/test/fixtures/in/armenia.json')); +var simple = JSON.parse(fs.readFileSync(__dirname+'/test/fixtures/in/Intersect1.json')); +var suite = new Benchmark.Suite('turf-intersect'); +suite + .add('turf-intersect#simple',function () { + intersect(simple[0], simple[1]); + }) + .add('turf-intersect#armenia',function () { + intersect(armenia[0], armenia[1]); + }) + .on('cycle', function (event) { + console.log(String(event.target)); + }) + .on('complete', function () { + + }) + .run(); \ No newline at end of file diff --git a/packages/turf-intersect/index.js b/packages/turf-intersect/index.js new file mode 100644 index 0000000000..2a2cb333f8 --- /dev/null +++ b/packages/turf-intersect/index.js @@ -0,0 +1,83 @@ +// depend on jsts for now https://github.com/bjornharrtell/jsts/blob/master/examples/overlay.html +var jsts = require('jsts'); + +/** + * Takes two {@link Polygon|polygons} and finds their intersection. If they share a border, returns the border; if they don't intersect, returns undefined. + * + * @name intersect + * @category transformation + * @param {Feature} poly1 the first polygon + * @param {Feature} poly2 the second polygon + * @return {(Feature|undefined|Feature)} if `poly1` and `poly2` overlap, returns a Polygon feature representing the area they overlap; if `poly1` and `poly2` do not overlap, returns `undefined`; if `poly1` and `poly2` share a border, a MultiLineString of the locations where their borders are shared + * @example + * var poly1 = { + * "type": "Feature", + * "properties": { + * "fill": "#0f0" + * }, + * "geometry": { + * "type": "Polygon", + * "coordinates": [[ + * [-122.801742, 45.48565], + * [-122.801742, 45.60491], + * [-122.584762, 45.60491], + * [-122.584762, 45.48565], + * [-122.801742, 45.48565] + * ]] + * } + * } + * var poly2 = { + * "type": "Feature", + * "properties": { + * "fill": "#00f" + * }, + * "geometry": { + * "type": "Polygon", + * "coordinates": [[ + * [-122.520217, 45.535693], + * [-122.64038, 45.553967], + * [-122.720031, 45.526554], + * [-122.669906, 45.507309], + * [-122.723464, 45.446643], + * [-122.532577, 45.408574], + * [-122.487258, 45.477466], + * [-122.520217, 45.535693] + * ]] + * } + * } + * + * var polygons = { + * "type": "FeatureCollection", + * "features": [poly1, poly2] + * }; + * + * var intersection = turf.intersect(poly1, poly2); + * + * //=polygons + * + * //=intersection + */ +module.exports = function intersect(poly1, poly2) { + var geom1, geom2; + if (poly1.type === 'Feature') geom1 = poly1.geometry; + else geom1 = poly1; + if (poly2.type === 'Feature') geom2 = poly2.geometry; + else geom2 = poly2; + var reader = new jsts.io.GeoJSONReader(); + var a = reader.read(JSON.stringify(geom1)); + var b = reader.read(JSON.stringify(geom2)); + var intersection = a.intersection(b); + + if (intersection.isEmpty()) { + return undefined; + } + + var writer = new jsts.io.GeoJSONWriter(); + + var geojsonGeometry = writer.write(intersection); + return { + type: 'Feature', + properties: {}, + geometry: geojsonGeometry + }; +}; diff --git a/packages/turf-intersect/package.json b/packages/turf-intersect/package.json new file mode 100644 index 0000000000..3a68b1a306 --- /dev/null +++ b/packages/turf-intersect/package.json @@ -0,0 +1,32 @@ +{ + "name": "turf-intersect", + "version": "3.0.1", + "description": "find the intersection of spatial features", + "main": "index.js", + "scripts": { + "test": "node test/test.js" + }, + "repository": { + "type": "git", + "url": "git://github.com/Turfjs/turf-intersect.git" + }, + "keywords": [ + "turf", + "gis", + "intersect" + ], + "author": "Morgan Herlocker", + "license": "ISC", + "bugs": { + "url": "https://github.com/Turfjs/turf-intersect/issues" + }, + "homepage": "https://github.com/Turfjs/turf-intersect", + "devDependencies": { + "benchmark": "^1.0.0", + "glob": "~4.3.5", + "tape": "~3.5.0" + }, + "dependencies": { + "jsts": "1.1.1" + } +} diff --git a/packages/turf-intersect/test/fixtures/in/Intersect1.json b/packages/turf-intersect/test/fixtures/in/Intersect1.json new file mode 100644 index 0000000000..e15ae79719 --- /dev/null +++ b/packages/turf-intersect/test/fixtures/in/Intersect1.json @@ -0,0 +1,80 @@ +[ + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.88571166992188, + 32.887659962078956 + ], + [ + -80.09788513183594, + 32.927436533285565 + ], + [ + -80.15350341796875, + 32.82825010814964 + ], + [ + -80.00312805175781, + 32.69428812316933 + ], + [ + -79.89395141601562, + 32.75551989829049 + ], + [ + -79.88571166992188, + 32.887659962078956 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.92141723632812, + 32.953944317478246 + ], + [ + -79.97428894042969, + 32.83690450361482 + ], + [ + -79.97360229492188, + 32.76071688548088 + ], + [ + -79.93034362792969, + 32.76475877693074 + ], + [ + -79.93789672851562, + 32.74108223150125 + ], + [ + -79.80537414550781, + 32.7231762754146 + ], + [ + -79.81773376464844, + 32.923402043498875 + ], + [ + -79.92141723632812, + 32.953944317478246 + ] + ] + ] + } + } +] \ No newline at end of file diff --git a/packages/turf-intersect/test/fixtures/in/Intersect2.json b/packages/turf-intersect/test/fixtures/in/Intersect2.json new file mode 100644 index 0000000000..047456d94a --- /dev/null +++ b/packages/turf-intersect/test/fixtures/in/Intersect2.json @@ -0,0 +1,84 @@ +[ + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.92141723632812, + 32.953944317478246 + ], + [ + -80.068359375, + 32.88189375925038 + ], + [ + -80.01686096191406, + 32.87266705436184 + ], + [ + -79.97360229492188, + 32.76071688548088 + ], + [ + -79.93034362792969, + 32.76475877693074 + ], + [ + -79.93789672851562, + 32.74108223150125 + ], + [ + -79.80537414550781, + 32.7231762754146 + ], + [ + -79.81773376464844, + 32.923402043498875 + ], + [ + -79.92141723632812, + 32.953944317478246 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.10543823242188, + 32.94760622243483 + ], + [ + -80.14389038085938, + 32.8149783969858 + ], + [ + -80.07453918457031, + 32.85536439443039 + ], + [ + -79.99351501464844, + 32.84440429734253 + ], + [ + -79.98184204101562, + 32.90495631913751 + ], + [ + -80.10543823242188, + 32.94760622243483 + ] + ] + ] + } + } +] \ No newline at end of file diff --git a/packages/turf-intersect/test/fixtures/in/armenia.json b/packages/turf-intersect/test/fixtures/in/armenia.json new file mode 100644 index 0000000000..5f7793344b --- /dev/null +++ b/packages/turf-intersect/test/fixtures/in/armenia.json @@ -0,0 +1,221 @@ +[ + { + "type": "Feature", + "id": "ARM", + "properties": { + "name": "Armenia" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 43.582746, + 41.092143 + ], + [ + 44.97248, + 41.248129 + ], + [ + 45.179496, + 40.985354 + ], + [ + 45.560351, + 40.81229 + ], + [ + 45.359175, + 40.561504 + ], + [ + 45.891907, + 40.218476 + ], + [ + 45.610012, + 39.899994 + ], + [ + 46.034534, + 39.628021 + ], + [ + 46.483499, + 39.464155 + ], + [ + 46.50572, + 38.770605 + ], + [ + 46.143623, + 38.741201 + ], + [ + 45.735379, + 39.319719 + ], + [ + 45.739978, + 39.473999 + ], + [ + 45.298145, + 39.471751 + ], + [ + 45.001987, + 39.740004 + ], + [ + 44.79399, + 39.713003 + ], + [ + 44.400009, + 40.005 + ], + [ + 43.656436, + 40.253564 + ], + [ + 43.752658, + 40.740201 + ], + [ + 43.582746, + 41.092143 + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "ARM", + "properties": { + "name": "Armenia" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 43.582746, + 41.092143 + ], + [ + 44.97248, + 41.248129 + ], + [ + 45.179496, + 40.985354 + ], + [ + 45.560351, + 40.81229 + ], + [ + 45.359175, + 40.561504 + ], + [ + 45.891907, + 40.218476 + ], + [ + 45.610012, + 39.899994 + ], + [ + 46.034534, + 39.628021 + ], + [ + 46.483499, + 39.464155 + ], + [ + 46.50572, + 38.770605 + ], + [ + 46.143623, + 38.741201 + ], + [ + 45.735379, + 39.319719 + ], + [ + 45.739978, + 39.473999 + ], + [ + 45.298145, + 39.471751 + ], + [ + 45.001987, + 39.740004 + ], + [ + 44.79399, + 39.713003 + ], + [ + 44.400009, + 40.005 + ], + [ + 43.656436, + 40.253564 + ], + [ + 43.752658, + 40.740201 + ], + [ + 43.582746, + 41.092143 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 45.1318359375, + 40.1452892956766 + ], + [ + 45.1318359375, + 43.197167282501276 + ], + [ + 53.3935546875, + 43.197167282501276 + ], + [ + 53.3935546875, + 40.1452892956766 + ], + [ + 45.1318359375, + 40.1452892956766 + ] + ] + ] + } + } +] \ No newline at end of file diff --git a/packages/turf-intersect/test/fixtures/no-overlap.geojson b/packages/turf-intersect/test/fixtures/no-overlap.geojson new file mode 100644 index 0000000000..1ce2802301 --- /dev/null +++ b/packages/turf-intersect/test/fixtures/no-overlap.geojson @@ -0,0 +1,64 @@ +[ + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 92.6806640625, + 53.4357192066942 + ], + [ + 92.6806640625, + 53.51418452077113 + ], + [ + 93.0322265625, + 53.51418452077113 + ], + [ + 93.0322265625, + 53.4357192066942 + ], + [ + 92.6806640625, + 53.4357192066942 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 93.47854614257812, + 53.628353173374194 + ], + [ + 93.47854614257812, + 53.74140157486066 + ], + [ + 93.680419921875, + 53.74140157486066 + ], + [ + 93.680419921875, + 53.628353173374194 + ], + [ + 93.47854614257812, + 53.628353173374194 + ] + ] + ] + } + } +] \ No newline at end of file diff --git a/packages/turf-intersect/test/fixtures/out/Intersect1.json b/packages/turf-intersect/test/fixtures/out/Intersect1.json new file mode 100644 index 0000000000..75c2fcf809 --- /dev/null +++ b/packages/turf-intersect/test/fixtures/out/Intersect1.json @@ -0,0 +1 @@ +{"type":"Feature","properties":{},"geometry":{"type":"Polygon","coordinates":[[[-79.94623496447946,32.89900638172028],[-79.88571166992188,32.887659962078956],[-79.89395141601562,32.75551989829049],[-79.92322780260464,32.73910022106017],[-79.93789672851562,32.74108223150125],[-79.93034362792969,32.76475877693074],[-79.97360229492188,32.76071688548088],[-79.97428894042969,32.83690450361482],[-79.94623496447946,32.89900638172028]]]}} \ No newline at end of file diff --git a/packages/turf-intersect/test/fixtures/out/Intersect2.json b/packages/turf-intersect/test/fixtures/out/Intersect2.json new file mode 100644 index 0000000000..c240032e33 --- /dev/null +++ b/packages/turf-intersect/test/fixtures/out/Intersect2.json @@ -0,0 +1 @@ +{"type":"Feature","properties":{},"geometry":{"type":"Polygon","coordinates":[[[-80.0066252126598,32.84617770697059],[-80.01686096191406,32.87266705436184],[-80.068359375,32.88189375925038],[-80.0050160405751,32.91295307720083],[-79.98184204101562,32.90495631913751],[-79.99351501464844,32.84440429734253],[-80.0066252126598,32.84617770697059]]]}} \ No newline at end of file diff --git a/packages/turf-intersect/test/fixtures/out/armenia.json b/packages/turf-intersect/test/fixtures/out/armenia.json new file mode 100644 index 0000000000..3f6483020e --- /dev/null +++ b/packages/turf-intersect/test/fixtures/out/armenia.json @@ -0,0 +1 @@ +{"type":"Feature","properties":{},"geometry":{"type":"Polygon","coordinates":[[[43.582746,41.092143],[44.97248,41.248129],[45.179496,40.985354],[45.560351,40.81229],[45.359175,40.561504],[45.891907,40.218476],[45.610012,39.899994],[46.034534,39.628021],[46.483499,39.464155],[46.50572,38.770605],[46.143623,38.741201],[45.735379,39.319719],[45.739978,39.473999],[45.298145,39.471751],[45.001987,39.740004],[44.79399,39.713003],[44.400009,40.005],[43.656436,40.253564],[43.752658,40.740201],[43.582746,41.092143]]]}} \ No newline at end of file diff --git a/packages/turf-intersect/test/test.js b/packages/turf-intersect/test/test.js new file mode 100644 index 0000000000..7ed24a8ba0 --- /dev/null +++ b/packages/turf-intersect/test/test.js @@ -0,0 +1,33 @@ +var intersect = require('../'), + test = require('tape'), + glob = require('glob'), + fs = require('fs'); + +var REGEN = true; + +test('intersect -- features', function(t){ + glob.sync(__dirname + '/fixtures/in/*.json').forEach(function(input) { + var features = JSON.parse(fs.readFileSync(input)); + var output = intersect(features[0], features[1]); + if (REGEN) fs.writeFileSync(input.replace('/in/', '/out/'), JSON.stringify(output)); + t.deepEqual(output, JSON.parse(fs.readFileSync(input.replace('/in/', '/out/'))), input); + }); + t.end(); +}); + +test('intersect -- geometries', function(t){ + glob.sync(__dirname + '/fixtures/in/*.json').forEach(function(input) { + var features = JSON.parse(fs.readFileSync(input)); + var output = intersect(features[0].geometry, features[1].geometry); + if (REGEN) fs.writeFileSync(input.replace('/in/', '/out/'), JSON.stringify(output)); + t.deepEqual(output, JSON.parse(fs.readFileSync(input.replace('/in/', '/out/'))), input); + }); + t.end(); +}); + +test('intersect -- no overlap', function(t){ + var noOverlap = JSON.parse(fs.readFileSync(__dirname+'/fixtures/no-overlap.geojson')); + var output = intersect(noOverlap[0].geometry, noOverlap[1].geometry); + t.deepEqual(output, undefined); + t.end(); +}); \ No newline at end of file diff --git a/packages/turf-invariant/.npmignore b/packages/turf-invariant/.npmignore new file mode 100644 index 0000000000..bb3c08c09a --- /dev/null +++ b/packages/turf-invariant/.npmignore @@ -0,0 +1,2 @@ +test +coverage diff --git a/packages/turf-invariant/README.md b/packages/turf-invariant/README.md new file mode 100644 index 0000000000..b46e616b6f --- /dev/null +++ b/packages/turf-invariant/README.md @@ -0,0 +1,67 @@ +# turf-invariant + +[![build status](https://secure.travis-ci.org/Turfjs/turf-invariant.png)](http://travis-ci.org/Turfjs/turf-invariant) + +enforce expectations about inputs to turf + + +### `geojsonType(value, type, name)` + +Enforce expectations about types of GeoJSON objects for Turf. + + +### Parameters + +| parameter | type | description | +| --------- | ------- | ------------------------ | +| `value` | GeoJSON | any GeoJSON object | +| `type` | string | expected GeoJSON type | +| `name` | String | name of calling function | + + + +### `featureOf(feature, types, name)` + +Enforce expectations about types of Feature inputs for Turf. +Internally this uses geojsonType to judge geometry types. + + +### Parameters + +| parameter | type | description | +| --------- | ------- | ---------------------------------------- | +| `feature` | Feature | a feature with an expected geometry type | +| `types` | string | expected GeoJSON type | +| `name` | String | name of calling function | + + + +### `collectionOf(featurecollection, type, name)` + +Enforce expectations about types of FeatureCollection inputs for Turf. +Internally this uses geojsonType to judge geometry types. + + +### Parameters + +| parameter | type | description | +| ------------------- | ----------------- | ----------------------------------------------------- | +| `featurecollection` | FeatureCollection | a featurecollection for which features will be judged | +| `type` | string | expected GeoJSON type | +| `name` | String | name of calling function | + + +## Installation + +Requires [nodejs](http://nodejs.org/). + +```sh +$ npm install turf-invariant +``` + +## Tests + +```sh +$ npm test +``` + diff --git a/packages/turf-invariant/index.js b/packages/turf-invariant/index.js new file mode 100644 index 0000000000..d8bdfdbe3b --- /dev/null +++ b/packages/turf-invariant/index.js @@ -0,0 +1,93 @@ +/** + * Unwrap a coordinate from a Feature with a Point geometry, a Point + * geometry, or a single coordinate. + * + * @param {*} value any value + * @returns {Array} a coordinate + */ +function getCoord(obj) { + if (Array.isArray(obj) && + typeof obj[0] === 'number' && + typeof obj[1] === 'number') { + return obj; + } else if (obj) { + if (obj.type === 'Feature' && + obj.geometry && + obj.geometry.type === 'Point' && + Array.isArray(obj.geometry.coordinates)) { + return obj.geometry.coordinates; + } else if (obj.type === 'Point' && + Array.isArray(obj.coordinates)) { + return obj.coordinates; + } + } + throw new Error('A coordinate, feature, or point geometry is required'); +} + +/** + * Enforce expectations about types of GeoJSON objects for Turf. + * + * @alias geojsonType + * @param {GeoJSON} value any GeoJSON object + * @param {string} type expected GeoJSON type + * @param {String} name name of calling function + * @throws {Error} if value is not the expected type. + */ +function geojsonType(value, type, name) { + if (!type || !name) throw new Error('type and name required'); + + if (!value || value.type !== type) { + throw new Error('Invalid input to ' + name + ': must be a ' + type + ', given ' + value.type); + } +} + +/** + * Enforce expectations about types of {@link Feature} inputs for Turf. + * Internally this uses {@link geojsonType} to judge geometry types. + * + * @alias featureOf + * @param {Feature} feature a feature with an expected geometry type + * @param {string} type expected GeoJSON type + * @param {String} name name of calling function + * @throws {Error} error if value is not the expected type. + */ +function featureOf(value, type, name) { + if (!name) throw new Error('.featureOf() requires a name'); + if (!value || value.type !== 'Feature' || !value.geometry) { + throw new Error('Invalid input to ' + name + ', Feature with geometry required'); + } + if (!value.geometry || value.geometry.type !== type) { + throw new Error('Invalid input to ' + name + ': must be a ' + type + ', given ' + value.geometry.type); + } +} + +/** + * Enforce expectations about types of {@link FeatureCollection} inputs for Turf. + * Internally this uses {@link geojsonType} to judge geometry types. + * + * @alias collectionOf + * @param {FeatureCollection} featurecollection a featurecollection for which features will be judged + * @param {string} type expected GeoJSON type + * @param {String} name name of calling function + * @throws {Error} if value is not the expected type. + */ +function collectionOf(value, type, name) { + if (!name) throw new Error('.collectionOf() requires a name'); + if (!value || value.type !== 'FeatureCollection') { + throw new Error('Invalid input to ' + name + ', FeatureCollection required'); + } + for (var i = 0; i < value.features.length; i++) { + var feature = value.features[i]; + if (!feature || feature.type !== 'Feature' || !feature.geometry) { + throw new Error('Invalid input to ' + name + ', Feature with geometry required'); + } + if (!feature.geometry || feature.geometry.type !== type) { + throw new Error('Invalid input to ' + name + ': must be a ' + type + ', given ' + feature.geometry.type); + } + } +} + +module.exports.geojsonType = geojsonType; +module.exports.collectionOf = collectionOf; +module.exports.featureOf = featureOf; +module.exports.getCoord = getCoord; diff --git a/packages/turf-invariant/package.json b/packages/turf-invariant/package.json new file mode 100644 index 0000000000..d802fb7f32 --- /dev/null +++ b/packages/turf-invariant/package.json @@ -0,0 +1,24 @@ +{ + "name": "turf-invariant", + "version": "3.0.1", + "description": "enforce expectations about inputs to turf", + "main": "index.js", + "scripts": { + "test": "node test.js" + }, + "keywords": [ + "turf", + "invariant", + "expectations" + ], + "author": "Tom MacWright", + "license": "ISC", + "repository": { + "type": "git", + "url": "git@github.com:Turfjs/turf-invariant.git" + }, + "devDependencies": { + "tape": "^3.5.0" + }, + "dependencies": {} +} diff --git a/packages/turf-invariant/test.js b/packages/turf-invariant/test.js new file mode 100644 index 0000000000..67dcd9748c --- /dev/null +++ b/packages/turf-invariant/test.js @@ -0,0 +1,133 @@ +var test = require('tape'), + invariant = require('./'); + +test('invariant#geojsonType', function(t) { + t.throws(function() { + invariant.geojsonType(); + }, /type and name required/, '.geojsonType() name requirement'); + + t.throws(function() { + invariant.geojsonType({}, undefined, 'myfn'); + }, /type and name required/, 'invalid types'); + + t.throws(function() { + invariant.geojsonType({ + type: 'Point', + coordinates: [0, 0] + }, 'Polygon', 'myfn'); + }, /Invalid input to myfn: must be a Polygon, given Point/, 'invalid geometry type'); + + t.doesNotThrow(function() { + invariant.geojsonType({ + type: 'Point', + coordinates: [0, 0] + }, 'Point', 'myfn'); + }, 'valid geometry'); + + t.end(); +}); + +test('invariant#featureOf', function(t) { + t.throws(function() { + invariant.featureOf( + { + type: 'Feature', + geometry: { + type: 'Point', + coordinates: [0, 0] + }, + properties: {} + }, 'Polygon'); + }, /requires a name/, 'requires a name'); + + t.throws(function() { + invariant.featureOf({}, 'Polygon', 'foo'); + }, /Feature with geometry required/, 'requires a feature'); + + t.throws(function() { + invariant.featureOf( + { + type: 'Feature', + geometry: { + type: 'Point', + coordinates: [0, 0] + }, + properties: {} + }, 'Polygon', 'myfn'); + }, /Invalid input to myfn: must be a Polygon, given Point/, 'invalid geometry type'); + + t.doesNotThrow(function() { + invariant.featureOf( + { + type: 'Feature', + geometry: { + type: 'Point', + coordinates: [0, 0] + }, + properties: {} + }, 'Point', 'myfn'); + }, 'valid geometry type'); + + t.end(); +}); + +test('invariant#collectionOf', function(t) { + t.throws(function() { + invariant.collectionOf({ + type: 'FeatureCollection', + features: [ + { + type: 'Feature', + geometry: { + type: 'Point', + coordinates: [0, 0] + }, + properties: {} + } + ] + }, 'Polygon', 'myfn'); + }, /Invalid input to myfn: must be a Polygon, given Point/, 'invalid geometry type'); + + t.throws(function() { + invariant.collectionOf({}, 'Polygon'); + }, /requires a name/, 'requires a name'); + + t.throws(function() { + invariant.collectionOf({}, 'Polygon', 'foo'); + }, /FeatureCollection required/, 'requires a featurecollection'); + + t.doesNotThrow(function() { + invariant.collectionOf({ + type: 'FeatureCollection', + features: [ + { + type: 'Feature', + geometry: { + type: 'Point', + coordinates: [0, 0] + }, + properties: {} + } + ] + }, 'Point', 'myfn'); + }, 'valid geometry type'); + + t.end(); +}); + +test('invariant#getCoord', function(t) { + t.deepEqual(invariant.getCoord({ + type: 'Point', + coordinates: [1, 2] + }), [1, 2]); + + t.deepEqual(invariant.getCoord({ + type: 'Feature', + geometry: { + type: 'Point', + coordinates: [1, 2] + }, + properties: {} + }), [1, 2]); + t.end(); +}); diff --git a/packages/turf-isolines/.npmignore b/packages/turf-isolines/.npmignore new file mode 100644 index 0000000000..bb3c08c09a --- /dev/null +++ b/packages/turf-isolines/.npmignore @@ -0,0 +1,2 @@ +test +coverage diff --git a/packages/turf-isolines/LICENSE b/packages/turf-isolines/LICENSE new file mode 100644 index 0000000000..64fb8e99a3 --- /dev/null +++ b/packages/turf-isolines/LICENSE @@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) 2014 Morgan Herlocker + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. \ No newline at end of file diff --git a/packages/turf-isolines/README.md b/packages/turf-isolines/README.md new file mode 100644 index 0000000000..2c02545489 --- /dev/null +++ b/packages/turf-isolines/README.md @@ -0,0 +1,57 @@ +# turf-isolines + +[![build status](https://secure.travis-ci.org/Turfjs/turf-isolines.png)](http://travis-ci.org/Turfjs/turf-isolines) + +turf isolines module + + +### `turf.isolines(points, z, resolution, breaks)` + +Takes Point|points with z-values and an array of +value breaks and generates [isolines](http://en.wikipedia.org/wiki/Isoline). + + +### Parameters + +| parameter | type | description | +| ------------ | ---------------------------- | ---------------------------------------------------------------- | +| `points` | FeatureCollection\.\ | input points | +| `z` | String | the property name in `points` from which z-values will be pulled | +| `resolution` | Number | resolution of the underlying grid | +| `breaks` | Array\.\ | where to draw contours | + + +### Example + +```js +// create random points with random +// z-values in their properties +var points = turf.random('point', 100, { + bbox: [0, 30, 20, 50] +}); +for (var i = 0; i < points.features.length; i++) { + points.features[i].properties.z = Math.random() * 10; +} +var breaks = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10]; +var isolined = turf.isolines(points, 'z', 15, breaks); +//=isolined +``` + + +**Returns** `FeatureCollection.`, isolines + +## Installation + +Requires [nodejs](http://nodejs.org/). + +```sh +$ npm install turf-isolines +``` + +## Tests + +```sh +$ npm test +``` + + diff --git a/packages/turf-isolines/bench.js b/packages/turf-isolines/bench.js new file mode 100644 index 0000000000..878ccd928e --- /dev/null +++ b/packages/turf-isolines/bench.js @@ -0,0 +1,18 @@ +var isolines = require('./'); +var Benchmark = require('benchmark'); +var fs = require('fs'); + +var points = JSON.parse(fs.readFileSync(__dirname+'/test/Points.geojson')); + +var suite = new Benchmark.Suite('turf-isolines'); +suite + .add('turf-isolines',function () { + isolines(points, 'elevation', 15, [25, 45, 55, 65, 85, 95, 105, 120, 180]); + }) + .on('cycle', function (event) { + console.log(String(event.target)); + }) + .on('complete', function () { + + }) + .run(); diff --git a/packages/turf-isolines/conrec.js b/packages/turf-isolines/conrec.js new file mode 100644 index 0000000000..e7ad35e027 --- /dev/null +++ b/packages/turf-isolines/conrec.js @@ -0,0 +1,517 @@ +/* eslint-disable */ + +/* + * Copyright (c) 2010, Jason Davies. + * + * All rights reserved. This code is based on Bradley White's Java version, + * which is in turn based on Nicholas Yue's C++ version, which in turn is based + * on Paul D. Bourke's original Fortran version. See below for the respective + * copyright notices. + * + * See http://local.wasp.uwa.edu.au/~pbourke/papers/conrec/ for the original + * paper by Paul D. Bourke. + * + * The vector conversion code is based on http://apptree.net/conrec.htm by + * Graham Cox. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * * Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * * Neither the name of the nor the + * names of its contributors may be used to endorse or promote products + * derived from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + * ARE DISCLAIMED. IN NO EVENT SHALL BE LIABLE FOR ANY + * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND + * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF + * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + */ + +/* + * Copyright (c) 1996-1997 Nicholas Yue + * + * This software is copyrighted by Nicholas Yue. This code is based on Paul D. + * Bourke's CONREC.F routine. + * + * The authors hereby grant permission to use, copy, and distribute this + * software and its documentation for any purpose, provided that existing + * copyright notices are retained in all copies and that this notice is + * included verbatim in any distributions. Additionally, the authors grant + * permission to modify this software and its documentation for any purpose, + * provided that such modifications are not distributed without the explicit + * consent of the authors and that existing copyright notices are retained in + * all copies. Some of the algorithms implemented by this software are + * patented, observe all applicable patent law. + * + * IN NO EVENT SHALL THE AUTHORS OR DISTRIBUTORS BE LIABLE TO ANY PARTY FOR + * DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING OUT + * OF THE USE OF THIS SOFTWARE, ITS DOCUMENTATION, OR ANY DERIVATIVES THEREOF, + * EVEN IF THE AUTHORS HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + * THE AUTHORS AND DISTRIBUTORS SPECIFICALLY DISCLAIM ANY WARRANTIES, + * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE, AND NON-INFRINGEMENT. THIS SOFTWARE IS + * PROVIDED ON AN "AS IS" BASIS, AND THE AUTHORS AND DISTRIBUTORS HAVE NO + * OBLIGATION TO PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR + * MODIFICATIONS. + */ + + + module.exports = Conrec; + + var EPSILON = 1e-10; + + function pointsEqual(a, b) { + var x = a.x - b.x, y = a.y - b.y; + return x * x + y * y < EPSILON; + } + + function reverseList(list) { + var pp = list.head; + + while (pp) { + // swap prev/next pointers + var temp = pp.next; + pp.next = pp.prev; + pp.prev = temp; + + // continue through the list + pp = temp; + } + + // swap head/tail pointers + var temp = list.head; + list.head = list.tail; + list.tail = temp; + } + + function ContourBuilder(level) { + this.level = level; + this.s = null; + this.count = 0; + } + ContourBuilder.prototype.remove_seq = function (list) { + // if list is the first item, static ptr s is updated + if (list.prev) { + list.prev.next = list.next; + } else { + this.s = list.next; + } + + if (list.next) { + list.next.prev = list.prev; + } + --this.count; + }; + ContourBuilder.prototype.addSegment = function (a, b) { + var ss = this.s; + var ma = null; + var mb = null; + var prependA = false; + var prependB = false; + + while (ss) { + if (ma == null) { + // no match for a yet + if (pointsEqual(a, ss.head.p)) { + ma = ss; + prependA = true; + } else if (pointsEqual(a, ss.tail.p)) { + ma = ss; + } + } + if (mb == null) { + // no match for b yet + if (pointsEqual(b, ss.head.p)) { + mb = ss; + prependB = true; + } else if (pointsEqual(b, ss.tail.p)) { + mb = ss; + } + } + // if we matched both no need to continue searching + if (mb != null && ma != null) { + break; + } else { + ss = ss.next; + } + } + + // c is the case selector based on which of ma and/or mb are set + var c = ((ma != null) ? 1 : 0) | ((mb != null) ? 2 : 0); + + switch (c) { + case 0: // both unmatched, add as new sequence + var aa = {p: a, prev: null}; + var bb = {p: b, next: null}; + aa.next = bb; + bb.prev = aa; + + // create sequence element and push onto head of main list. The order + // of items in this list is unimportant + ma = {head: aa, tail: bb, next: this.s, prev: null, closed: false}; + if (this.s) { + this.s.prev = ma; + } + this.s = ma; + + ++this.count; // not essential - tracks number of unmerged sequences + break; + + case 1: // a matched, b did not - thus b extends sequence ma + var pp = {p: b}; + + if (prependA) { + pp.next = ma.head; + pp.prev = null; + ma.head.prev = pp; + ma.head = pp; + } else { + pp.next = null; + pp.prev = ma.tail; + ma.tail.next = pp; + ma.tail = pp; + } + break; + + case 2: // b matched, a did not - thus a extends sequence mb + var pp = {p: a}; + + if (prependB) { + pp.next = mb.head; + pp.prev = null; + mb.head.prev = pp; + mb.head = pp; + } else { + pp.next = null; + pp.prev = mb.tail; + mb.tail.next = pp; + mb.tail = pp; + } + break; + + case 3: // both matched, can merge sequences + // if the sequences are the same, do nothing, as we are simply closing this path (could set a flag) + + if (ma === mb) { + var pp = {p: ma.tail.p, next: ma.head, prev: null}; + ma.head.prev = pp; + ma.head = pp; + ma.closed = true; + break; + } + + // there are 4 ways the sequence pair can be joined. The current setting of prependA and + // prependB will tell us which type of join is needed. For head/head and tail/tail joins + // one sequence needs to be reversed + switch ((prependA ? 1 : 0) | (prependB ? 2 : 0)) { + case 0: // tail-tail + // reverse ma and append to mb + reverseList(ma); + // fall through to head/tail case + case 1: // head-tail + // ma is appended to mb and ma discarded + mb.tail.next = ma.head; + ma.head.prev = mb.tail; + mb.tail = ma.tail; + + //discard ma sequence record + this.remove_seq(ma); + break; + + case 3: // head-head + // reverse ma and append mb to it + reverseList(ma); + // fall through to tail/head case + case 2: // tail-head + // mb is appended to ma and mb is discarded + ma.tail.next = mb.head; + mb.head.prev = ma.tail; + ma.tail = mb.tail; + + //discard mb sequence record + this.remove_seq(mb); + break; + } + } + }; + + /* + * Implements CONREC. + * + * @private + * @param {function} drawContour function for drawing contour. Defaults to a + * custom "contour builder", which populates the + * contours property. + */ + function Conrec(drawContour) { + if (!drawContour) { + var c = this; + c.contours = {}; + /** + * drawContour - interface for implementing the user supplied method to + * render the countours. + * + * Draws a line between the start and end coordinates. + * + * @private + * @param startX - start coordinate for X + * @param startY - start coordinate for Y + * @param endX - end coordinate for X + * @param endY - end coordinate for Y + * @param contourLevel - Contour level for line. + */ + this.drawContour = function (startX, startY, endX, endY, contourLevel, k) { + var cb = c.contours[k]; + if (!cb) { + cb = c.contours[k] = new ContourBuilder(contourLevel); + } + cb.addSegment({x: startX, y: startY}, {x: endX, y: endY}); + }; + this.contourList = function () { + var l = []; + var a = c.contours; + for (var k in a) { + var s = a[k].s; + var level = a[k].level; + while (s) { + var h = s.head; + var l2 = []; + l2.level = level; + l2.k = k; + while (h && h.p) { + l2.push(h.p); + h = h.next; + } + l.push(l2); + s = s.next; + } + } + l.sort(function (a, b) { return a.k - b.k; }); + return l; + }; + } else { + this.drawContour = drawContour; + } + this.h = new Array(5); + this.sh = new Array(5); + this.xh = new Array(5); + this.yh = new Array(5); + } + + /* + * contour is a contouring subroutine for rectangularily spaced data + * + * It emits calls to a line drawing subroutine supplied by the user which + * draws a contour map corresponding to real*4data on a randomly spaced + * rectangular grid. The coordinates emitted are in the same units given in + * the x() and y() arrays. + * + * Any number of contour levels may be specified but they must be in order of + * increasing value. + * + * + * @param {number[][]} d - matrix of data to contour + * @param {number} ilb,iub,jlb,jub - index bounds of data matrix + * + * The following two, one dimensional arrays (x and y) contain + * the horizontal and vertical coordinates of each sample points. + * @param {number[]} x - data matrix column coordinates + * @param {number[]} y - data matrix row coordinates + * @param {number} nc - number of contour levels + * @param {number[]} z - contour levels in increasing order. + */ + Conrec.prototype.contour = function (d, ilb, iub, jlb, jub, x, y, nc, z) { + var h = this.h, sh = this.sh, xh = this.xh, yh = this.yh; + var drawContour = this.drawContour; + this.contours = {}; + + var xsect = function (p1, p2) { + return (h[p2] * xh[p1] - h[p1] * xh[p2]) / (h[p2] - h[p1]); + }; + + var ysect = function (p1, p2) { + return (h[p2] * yh[p1] - h[p1] * yh[p2]) / (h[p2] - h[p1]); + }; + var m1; + var m2; + var m3; + var case_value; + var dmin; + var dmax; + var x1 = 0.0; + var x2 = 0.0; + var y1 = 0.0; + var y2 = 0.0; + + // The indexing of im and jm should be noted as it has to start from zero + // unlike the fortran counter part + var im = [0, 1, 1, 0]; + var jm = [0, 0, 1, 1]; + + // Note that castab is arranged differently from the FORTRAN code because + // Fortran and C/C++ arrays are transposed of each other, in this case + // it is more tricky as castab is in 3 dimensions + var castab = [ + [ + [0, 0, 8], [0, 2, 5], [7, 6, 9] + ], + [ + [0, 3, 4], [1, 3, 1], [4, 3, 0] + ], + [ + [9, 6, 7], [5, 2, 0], [8, 0, 0] + ] + ]; + + for (var j = (jub - 1); j >= jlb; j--) { + for (var i = ilb; i <= iub - 1; i++) { + var temp1, temp2; + temp1 = Math.min(d[i][j], d[i][j + 1]); + temp2 = Math.min(d[i + 1][j], d[i + 1][j + 1]); + dmin = Math.min(temp1, temp2); + temp1 = Math.max(d[i][j], d[i][j + 1]); + temp2 = Math.max(d[i + 1][j], d[i + 1][j + 1]); + dmax = Math.max(temp1, temp2); + + if (dmax >= z[0] && dmin <= z[nc - 1]) { + for (var k = 0; k < nc; k++) { + if (z[k] >= dmin && z[k] <= dmax) { + for (var m = 4; m >= 0; m--) { + if (m > 0) { + // The indexing of im and jm should be noted as it has to + // start from zero + h[m] = d[i + im[m - 1]][j + jm[m - 1]] - z[k]; + xh[m] = x[i + im[m - 1]]; + yh[m] = y[j + jm[m - 1]]; + } else { + h[0] = 0.25 * (h[1] + h[2] + h[3] + h[4]); + xh[0] = 0.5 * (x[i] + x[i + 1]); + yh[0] = 0.5 * (y[j] + y[j + 1]); + } + if (h[m] > EPSILON) { + sh[m] = 1; + } else if (h[m] < -EPSILON) { + sh[m] = -1; + } else + sh[m] = 0; + } + // + // Note: at this stage the relative heights of the corners and the + // centre are in the h array, and the corresponding coordinates are + // in the xh and yh arrays. The centre of the box is indexed by 0 + // and the 4 corners by 1 to 4 as shown below. + // Each triangle is then indexed by the parameter m, and the 3 + // vertices of each triangle are indexed by parameters m1,m2,and + // m3. + // It is assumed that the centre of the box is always vertex 2 + // though this isimportant only when all 3 vertices lie exactly on + // the same contour level, in which case only the side of the box + // is drawn. + // + // + // vertex 4 +-------------------+ vertex 3 + // | \ / | + // | \ m-3 / | + // | \ / | + // | \ / | + // | m=2 X m=2 | the centre is vertex 0 + // | / \ | + // | / \ | + // | / m=1 \ | + // | / \ | + // vertex 1 +-------------------+ vertex 2 + // + // + // + // Scan each triangle in the box + // + for (m = 1; m <= 4; m++) { + m1 = m; + m2 = 0; + if (m != 4) { + m3 = m + 1; + } else { + m3 = 1; + } + case_value = castab[sh[m1] + 1][sh[m2] + 1][sh[m3] + 1]; + if (case_value != 0) { + switch (case_value) { + case 1: // Line between vertices 1 and 2 + x1 = xh[m1]; + y1 = yh[m1]; + x2 = xh[m2]; + y2 = yh[m2]; + break; + case 2: // Line between vertices 2 and 3 + x1 = xh[m2]; + y1 = yh[m2]; + x2 = xh[m3]; + y2 = yh[m3]; + break; + case 3: // Line between vertices 3 and 1 + x1 = xh[m3]; + y1 = yh[m3]; + x2 = xh[m1]; + y2 = yh[m1]; + break; + case 4: // Line between vertex 1 and side 2-3 + x1 = xh[m1]; + y1 = yh[m1]; + x2 = xsect(m2, m3); + y2 = ysect(m2, m3); + break; + case 5: // Line between vertex 2 and side 3-1 + x1 = xh[m2]; + y1 = yh[m2]; + x2 = xsect(m3, m1); + y2 = ysect(m3, m1); + break; + case 6: // Line between vertex 3 and side 1-2 + x1 = xh[m3]; + y1 = yh[m3]; + x2 = xsect(m1, m2); + y2 = ysect(m1, m2); + break; + case 7: // Line between sides 1-2 and 2-3 + x1 = xsect(m1, m2); + y1 = ysect(m1, m2); + x2 = xsect(m2, m3); + y2 = ysect(m2, m3); + break; + case 8: // Line between sides 2-3 and 3-1 + x1 = xsect(m2, m3); + y1 = ysect(m2, m3); + x2 = xsect(m3, m1); + y2 = ysect(m3, m1); + break; + case 9: // Line between sides 3-1 and 1-2 + x1 = xsect(m3, m1); + y1 = ysect(m3, m1); + x2 = xsect(m1, m2); + y2 = ysect(m1, m2); + break; + default: + break; + } + // Put your processing code here and comment out the printf + //printf("%f %f %f %f %f\n",x1,y1,x2,y2,z[k]); + drawContour(x1, y1, x2, y2, z[k], k); + } + } + } + } + } + } + } + }; diff --git a/packages/turf-isolines/index.js b/packages/turf-isolines/index.js new file mode 100644 index 0000000000..337a51b1a4 --- /dev/null +++ b/packages/turf-isolines/index.js @@ -0,0 +1,97 @@ +//https://github.com/jasondavies/conrec.js +//http://stackoverflow.com/questions/263305/drawing-a-topographical-map +var tin = require('turf-tin'); +var inside = require('turf-inside'); +var grid = require('turf-grid'); +var bbox = require('turf-bbox'); +var planepoint = require('turf-planepoint'); +var featurecollection = require('turf-helpers').featureCollection; +var linestring = require('turf-helpers').lineString; +var square = require('turf-square'); +var Conrec = require('./conrec'); + +/** + * Takes {@link Point|points} with z-values and an array of + * value breaks and generates [isolines](http://en.wikipedia.org/wiki/Isoline). + * + * @name isolines + * @category interpolation + * @param {FeatureCollection} points input points + * @param {String} z the property name in `points` from which z-values will be pulled + * @param {Number} resolution resolution of the underlying grid + * @param {Array} breaks where to draw contours + * @returns {FeatureCollection} isolines + * @example + * // create random points with random + * // z-values in their properties + * var points = turf.random('point', 100, { + * bbox: [0, 30, 20, 50] + * }); + * for (var i = 0; i < points.features.length; i++) { + * points.features[i].properties.z = Math.random() * 10; + * } + * var breaks = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10]; + * var isolined = turf.isolines(points, 'z', 15, breaks); + * //=isolined + */ +module.exports = function (points, z, resolution, breaks) { + var tinResult = tin(points, z); + var bboxBBox = bbox(points); + var squareBBox = square(bboxBBox); + var gridResult = grid(squareBBox, resolution); + var data = []; + + for (var i = 0; i < gridResult.features.length; i++) { + var pt = gridResult.features[i]; + for (var j = 0; j < tinResult.features.length; j++) { + var triangle = tinResult.features[j]; + if (inside(pt, triangle)) { + pt.properties = {}; + pt.properties[z] = planepoint(pt, triangle); + } + } + } + + var depth = Math.sqrt(gridResult.features.length); + for (var x = 0; x < depth; x++) { + var xGroup = gridResult.features.slice(x * depth, (x + 1) * depth); + var xFlat = []; + + for (var g = 0; g < xGroup.length; g++) { + if (xGroup[g].properties) { + xFlat.push(xGroup[g].properties[z]); + } else { + xFlat.push(0); + } + } + data.push(xFlat); + } + var interval = (squareBBox[2] - squareBBox[0]) / depth; + var xCoordinates = []; + var yCoordinates = []; + for (var d = 0; d < depth; d++) { + xCoordinates.push(d * interval + squareBBox[0]); + yCoordinates.push(d * interval + squareBBox[1]); + } + + var c = new Conrec(); + c.contour(data, 0, resolution, 0, resolution, xCoordinates, yCoordinates, breaks.length, breaks); + var contourList = c.contourList(); + + var fc = featurecollection([]); + contourList.forEach(function (c) { + if (c.length > 2) { + var polyCoordinates = []; + c.forEach(function (coord) { + polyCoordinates.push([coord.x, coord.y]); + }); + var poly = linestring(polyCoordinates); + poly.properties = {}; + poly.properties[z] = c.level; + + fc.features.push(poly); + } + }); + + return fc; +}; diff --git a/packages/turf-isolines/package.json b/packages/turf-isolines/package.json new file mode 100644 index 0000000000..71428562b4 --- /dev/null +++ b/packages/turf-isolines/package.json @@ -0,0 +1,40 @@ +{ + "name": "turf-isolines", + "version": "3.0.5", + "description": "turf isolines module", + "main": "index.js", + "scripts": { + "test": "tape test.js" + }, + "repository": { + "type": "git", + "url": "https://github.com/Turfjs/turf-isolines.git" + }, + "keywords": [ + "turf", + "geojson", + "isolines", + "contours", + "elevation", + "topography" + ], + "author": "morganherlocker", + "license": "MIT", + "bugs": { + "url": "https://github.com/Turfjs/turf-isolines/issues" + }, + "homepage": "https://github.com/Turfjs/turf-isolines", + "devDependencies": { + "benchmark": "^1.0.0", + "tape": "^3.5.0" + }, + "dependencies": { + "turf-bbox": "^3.0.1", + "turf-grid": "1.0.1", + "turf-inside": "^3.0.5", + "turf-helpers": "^3.0.5", + "turf-planepoint": "^3.0.1", + "turf-square": "^3.0.5", + "turf-tin": "^3.0.5" + } +} diff --git a/packages/turf-isolines/test.js b/packages/turf-isolines/test.js new file mode 100644 index 0000000000..bdd9752c0e --- /dev/null +++ b/packages/turf-isolines/test.js @@ -0,0 +1,16 @@ +var test = require('tape'); +var fs = require('fs'); +var path = require('path'); +var isolines = require('./'); + +test('isolines', function (t) { + var points = JSON.parse(fs.readFileSync(path.join(__dirname, 'test/Points.geojson'))); + + var isolined = isolines(points, 'elevation', 15, [25, 45, 55, 65, 85, 95, 105, 120, 180]); + + t.ok(isolined.features, 'should take a set of points with z values and output a set of contour lines'); + t.equal(isolined.features[0].geometry.type, 'LineString'); + + fs.writeFileSync(path.join(__dirname, 'test/isolines.geojson'), JSON.stringify(isolined)); + t.end(); +}); diff --git a/packages/turf-isolines/test/Points.geojson b/packages/turf-isolines/test/Points.geojson new file mode 100644 index 0000000000..966478da70 --- /dev/null +++ b/packages/turf-isolines/test/Points.geojson @@ -0,0 +1,141 @@ + { + "type": "FeatureCollection", + "features": [ + { "type": "Feature", + "geometry": {"type": "Point", "coordinates": [-75.833, 39.284]}, + "properties": { + "name": "Location B", + "category": "House", + "elevation": 25 + } + }, + { "type": "Feature", + "geometry": {"type": "Point", "coordinates": [-75.6, 39.984]}, + "properties": { + "name": "Location A", + "category": "Store", + "elevation": 23 + } + }, + { "type": "Feature", + "geometry": {"type": "Point", "coordinates": [ -75.221, 39.125]}, + "properties": { + "name": "Location C", + "category": "Office", + "elevation": 29 + } + }, + { "type": "Feature", + "geometry": {"type": "Point", "coordinates": [-75.358, 39.987]}, + "properties": { + "name": "Location A", + "category": "Store", + "elevation": 12 + } + }, + { "type": "Feature", + "geometry": {"type": "Point", "coordinates": [-75.9221, 39.27]}, + "properties": { + "name": "Location B", + "category": "House", + "elevation": 11 + } + }, + { "type": "Feature", + "geometry": {"type": "Point", "coordinates": [ -75.534, 39.123]}, + "properties": { + "name": "Location C", + "category": "Office", + "elevation": 49 + } + }, + { "type": "Feature", + "geometry": {"type": "Point", "coordinates": [-75.21, 39.12]}, + "properties": { + "name": "Location A", + "category": "Store", + "elevation": 50 + } + }, + { "type": "Feature", + "geometry": {"type": "Point", "coordinates": [-75.22, 39.33]}, + "properties": { + "name": "Location B", + "category": "House", + "elevation": 90 + } + }, + { "type": "Feature", + "geometry": {"type": "Point", "coordinates": [ -75.44, 39.55]}, + "properties": { + "name": "Location C", + "category": "Office", + "elevation": 22 + } + }, + { "type": "Feature", + "geometry": {"type": "Point", "coordinates": [-75.77, 39.66]}, + "properties": { + "name": "Location A", + "category": "Store", + "elevation": 99 + } + }, + { "type": "Feature", + "geometry": {"type": "Point", "coordinates": [-75.44, 39.11]}, + "properties": { + "name": "Location B", + "category": "House", + "elevation": 55 + } + }, + { "type": "Feature", + "geometry": {"type": "Point", "coordinates": [ -75.05, 39.92]}, + "properties": { + "name": "Location C", + "category": "Office", + "elevation": 41 + } + }, + { "type": "Feature", + "geometry": {"type": "Point", "coordinates": [-75.88, 39.98]}, + "properties": { + "name": "Location A", + "category": "Store", + "elevation": 52 + } + }, + { "type": "Feature", + "geometry": {"type": "Point", "coordinates": [-75.55, 39.55]}, + "properties": { + "name": "Location B", + "category": "House", + "elevation": 143 + } + }, + { "type": "Feature", + "geometry": {"type": "Point", "coordinates": [ -75.33, 39.44]}, + "properties": { + "name": "Location C", + "category": "Office", + "elevation": 76 + } + }, + { "type": "Feature", + "geometry": {"type": "Point", "coordinates": [ -75.56, 39.24]}, + "properties": { + "name": "Location C", + "category": "Office", + "elevation": 18 + } + }, + { "type": "Feature", + "geometry": {"type": "Point", "coordinates": [ -75.56, 39.36]}, + "properties": { + "name": "Location C", + "category": "Office", + "elevation": 52 + } + } + ] + } \ No newline at end of file diff --git a/packages/turf-isolines/test/isolines.geojson b/packages/turf-isolines/test/isolines.geojson new file mode 100644 index 0000000000..4082b5eee2 --- /dev/null +++ b/packages/turf-isolines/test/isolines.geojson @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"elevation":25},"geometry":{"type":"LineString","coordinates":[[-75.59567500000001,39.2117517983661],[-75.58915863824444,39.21310863824444],[-75.57977685376258,39.219625],[-75.58514958234777,39.23015041765224],[-75.595675,39.235887962126746],[-75.60937445901308,39.23332445901308],[-75.62685403258132,39.21962499999999],[-75.60243838212368,39.21286161787632],[-75.59567500000001,39.2117517983661]]}},{"type":"Feature","properties":{"elevation":25},"geometry":{"type":"LineString","coordinates":[[-75.82494994380818,39.274437500000005],[-75.85576511140457,39.28840988859545],[-75.86973750000001,39.29608505576567]]}},{"type":"Feature","properties":{"elevation":25},"geometry":{"type":"LineString","coordinates":[[-75.60522819339705,39.87737500000001],[-75.60003578797014,39.87301421202986],[-75.595675,39.86986897218154],[-75.57552189367385,39.85722189367386],[-75.56427099645471,39.853966503545294],[-75.56360597125848,39.84530597125848],[-75.55280379708908,39.8225625],[-75.54817145831494,39.81525354168507],[-75.54703639804583,39.77392389804584],[-75.54524166257299,39.76775000000001],[-75.54425498889628,39.764357511103725],[-75.54308593494353,39.71516093494353],[-75.54266098847624,39.71293750000001],[-75.54223804812926,39.71156195187074],[-75.5408625,39.70806212500004],[-75.52829265902358,39.70036765902358],[-75.50457336772638,39.69441413227362],[-75.50347371440385,39.67554871440386],[-75.49522850364734,39.658125000000005],[-75.49228024241205,39.65189475758795],[-75.49129945939096,39.60856195939096],[-75.48997896853604,39.6033125],[-75.48901933312767,39.600343166872335],[-75.48605000000002,39.57884832285326],[-75.45903617152523,39.57551382847478],[-75.4576703232274,39.57493282322739],[-75.43123750000002,39.569271544375],[-75.42139710396928,39.59347210396929],[-75.40827759876659,39.603312499999994],[-75.39815341353437,39.625040913534356],[-75.37642500000003,39.65731227769141],[-75.37620771553296,39.65790771553296],[-75.37590129041666,39.658125000000005],[-75.3754501231676,39.65909987683242],[-75.36007316026365,39.696585660263665],[-75.35086331359868,39.71293750000001],[-75.34172002623703,39.73304502623705],[-75.32954693707026,39.75981556292974],[-75.3259389925956,39.76775000000001],[-75.32458660747523,39.77072410747523],[-75.3216125,39.77726463734425],[-75.30745318871342,39.80840318871342],[-75.30101467159253,39.822562500000004],[-75.29031976995161,39.84608226995161],[-75.28383775066845,39.86033724933156],[-75.27609035058944,39.87737500000001]]}},{"type":"Feature","properties":{"elevation":25},"geometry":{"type":"LineString","coordinates":[[-75.79642589044401,39.219625],[-75.79678644440459,39.23776355559543],[-75.81492500000002,39.26089538434166]]}},{"type":"Feature","properties":{"elevation":45},"geometry":{"type":"LineString","coordinates":[[-75.2668,39.1735046635693],[-75.27272687770632,39.17073937770631],[-75.28543004153325,39.16481249999999]]}},{"type":"Feature","properties":{"elevation":45},"geometry":{"type":"LineString","coordinates":[[-75.86973750000001,39.44860115108869],[-75.86896919338253,39.43964330661749],[-75.86865587540316,39.438874999999996],[-75.86765322447982,39.4367907244798],[-75.85586946719638,39.39793053280363],[-75.84224302084085,39.38406249999999],[-75.82586907486385,39.37311842513617],[-75.81492500000002,39.3664779403816],[-75.79164210173191,39.360779601731906],[-75.78501687871814,39.359158121281865],[-75.7601125,39.35306293578725],[-75.74098170296149,39.34838079703851],[-75.7190674175195,39.3430174175195],[-75.70530000000002,39.33964793119291],[-75.69694652720484,39.337603472795166],[-75.66281499006185,39.32925],[-75.65232702471478,39.32741047528524],[-75.65048750000001,39.327190292431865],[-75.64823923129784,39.32700173129783],[-75.6022608575419,39.32266414245808],[-75.595675,39.322124272786034],[-75.58831166124448,39.32188666124449],[-75.54947895234048,39.320633547659526],[-75.5408625,39.32035549872123],[-75.52503620899402,39.31342370899402],[-75.50266222182248,39.31263777817754],[-75.48962215714452,39.27800965714452],[-75.48719011676921,39.274437500000005],[-75.48724620749827,39.27324129250173],[-75.49247047479513,39.22604547479512],[-75.49273375585676,39.219625],[-75.49517556444648,39.210499435553515],[-75.49921121660863,39.17797371660862],[-75.50444914698728,39.1648125]]}},{"type":"Feature","properties":{"elevation":45},"geometry":{"type":"LineString","coordinates":[[-75.7310273358447,39.87737500000001],[-75.71449396814324,39.86818103185678],[-75.70530000000001,39.86306839831805],[-75.68362504289185,39.85570004289185],[-75.6757591702806,39.85210332971941],[-75.65048750000001,39.8461051469178],[-75.63760851332988,39.83544148667015],[-75.6192637106858,39.822562500000004],[-75.60436696429105,39.813870535708965],[-75.595675,39.81109062500002],[-75.57682481081042,39.78660018918958],[-75.57134511176822,39.76775000000001],[-75.56447704278757,39.74413545721244],[-75.56429245236522,39.73636745236523],[-75.55981448213473,39.7129375],[-75.5553576518544,39.69844234814562],[-75.5408625,39.66156212500004],[-75.53873046978713,39.660257030212875],[-75.53772155526771,39.658125000000005],[-75.53489998954333,39.65216248954333],[-75.51825407015444,39.62592092984557],[-75.51256696551525,39.6033125],[-75.50609029898116,39.58327220101884],[-75.5037290186359,39.5661790186359],[-75.49941743951614,39.548500000000004],[-75.50021585316614,39.53433414683387],[-75.50100897265884,39.50864647265883],[-75.50189889493168,39.49368750000001],[-75.50405936268604,39.47567813731397],[-75.48836839135069,39.44119339135069],[-75.48969491877233,39.438875],[-75.48875887172473,39.436166128275296],[-75.48604999999999,39.43609815950919],[-75.48416800312653,39.43699300312652],[-75.48214806034483,39.438875],[-75.45264847369646,39.46028597369647],[-75.43123750000001,39.47657576666725],[-75.42208419725837,39.48453419725838],[-75.41337219217262,39.49368750000001],[-75.39629401879263,39.51355651879264],[-75.37642500000003,39.536672451568265],[-75.37090616318851,39.54298116318851],[-75.36625877463753,39.548500000000004],[-75.34562183921174,39.57250933921174],[-75.3216125,39.60044218667632],[-75.32012703369175,39.60182703369175],[-75.31914535710239,39.60331250000001],[-75.30404803427415,39.62087696572586],[-75.29494965963084,39.63146215963084],[-75.27203193956727,39.658125000000005],[-75.27020006389668,39.66152506389668],[-75.2668,39.66421192178439],[-75.2426378518113,39.688775351811294],[-75.22491852203217,39.71293750000001],[-75.22049907229568,39.72144907229568],[-75.2119875,39.72802706124605],[-75.18921082745646,39.744973327456464],[-75.1737410052304,39.76775],[-75.16834192638198,39.778916926382],[-75.157175,39.788427485535976]]}},{"type":"Feature","properties":{"elevation":55},"geometry":{"type":"LineString","coordinates":[[-75.2668,39.20493910510833],[-75.29416090725293,39.19217340725292],[-75.29433091080182,39.19209408919817],[-75.3216125,39.179365398533804],[-75.33255103823382,39.17575103823381],[-75.35280394065252,39.164812500000004]]}},{"type":"Feature","properties":{"elevation":55},"geometry":{"type":"LineString","coordinates":[[-75.45978484416702,39.1648125],[-75.4590177896123,39.1918447103877],[-75.45894026142709,39.19251526142708],[-75.45829776900486,39.219625],[-75.4559546978364,39.2443421978364],[-75.45547069204419,39.25020430795584],[-75.45322425953816,39.274437500000005],[-75.45396106965461,39.29716106965462],[-75.45268272721458,39.30780477278543],[-75.45363834683839,39.32925000000001],[-75.46766973180183,39.34763026819819],[-75.48605,39.3588969032794],[-75.50310020758076,39.36701229241925],[-75.51323696120689,39.384062500000006],[-75.50589572866296,39.40390822866295],[-75.48604999999999,39.403410276073615],[-75.46201386981195,39.41483886981195],[-75.43621594827584,39.438875],[-75.43333123898778,39.44096873898778],[-75.43123750000002,39.44256168731087],[-75.40388959594169,39.46633959594169],[-75.37786018492298,39.49368750000001],[-75.37719679657042,39.494459296570426],[-75.37642500000001,39.495357216987344],[-75.3516281159417,39.52370311594171],[-75.33074676738786,39.548500000000004],[-75.32652461698953,39.55341211698952],[-75.3216125,39.55912695209541],[-75.29874526032185,39.58044526032185],[-75.28363334985274,39.6033125],[-75.27585243740863,39.61236493740863],[-75.2668,39.62289668720348],[-75.24442709080066,39.63575209080065],[-75.22629836743224,39.658125000000005],[-75.21921190474743,39.665349404747424],[-75.21198750000002,39.675746565140265],[-75.19399404633988,39.67611845366014],[-75.1822712969459,39.658125000000005]]}},{"type":"Feature","properties":{"elevation":55},"geometry":{"type":"LineString","coordinates":[[-75.86973750000001,39.78775000740761],[-75.86776166328438,39.769725836715644],[-75.86818793027598,39.76775000000001],[-75.86837104655011,39.7663835465501],[-75.86524059267609,39.717434407323935],[-75.86566408851365,39.71293750000002],[-75.86542952683426,39.70862952683427],[-75.8630440875191,39.66481841248092],[-75.86267964279953,39.658125],[-75.86227322600531,39.650660726005306],[-75.86021374884488,39.61283625115512],[-75.8596951970854,39.6033125],[-75.85911692517635,39.59269192517635],[-75.85738341017068,39.560854089829334],[-75.85671075137127,39.548500000000004],[-75.85414726920337,39.53290976920335],[-75.85278488968187,39.51064011031815],[-75.84921135502401,39.49368750000001],[-75.84222378396103,39.46638871603898],[-75.84196812923284,39.465918129232826],[-75.83093985170146,39.438875],[-75.82573813856075,39.428061861439254],[-75.81492500000002,39.41712346549503],[-75.78887920877621,39.41010829122378],[-75.78525750254627,39.40920750254625],[-75.7601125,39.40265147154207],[-75.74517852273222,39.39899647726779],[-75.71215060921062,39.39091310921061],[-75.70530000000001,39.38923646694773],[-75.70114334697557,39.388219153024444],[-75.6841596372571,39.384062500000006],[-75.65710817121891,39.3774418287811],[-75.65048750000001,39.375821462353386],[-75.6350352525747,39.36861025257468],[-75.62007466065475,39.35966283934526],[-75.595675,39.35277754450761],[-75.57387771626881,39.3622652162688],[-75.560905443881,39.3840625],[-75.55062740892598,39.393827408925986],[-75.5408625,39.42558328311945],[-75.52823968374261,39.42625218374261],[-75.53260148123286,39.438875],[-75.52155312308177,39.45818437691824],[-75.51410473321243,39.46692973321245],[-75.51089477551817,39.493687500000014],[-75.50949973067794,39.517137230677946],[-75.50924762794804,39.52530237205197],[-75.50794016678886,39.548500000000004],[-75.51439507292757,39.57496742707243],[-75.5157426904054,39.578192690405395],[-75.52386096400485,39.6033125],[-75.52727809380968,39.61689690619032],[-75.5408625,39.638312125000034],[-75.54703222304089,39.65195527695911],[-75.54919490214891,39.658125000000005],[-75.55369206073986,39.67095456073987],[-75.56191745371694,39.69188254628306],[-75.56839122896395,39.71293750000001],[-75.57276905085507,39.73584344914493],[-75.5797714324326,39.75184643243261],[-75.58439683636584,39.76775000000001],[-75.58693696075422,39.77648803924579],[-75.595675,39.78784062500003],[-75.62198293114625,39.79625456885376],[-75.62725672711571,39.79933172711571],[-75.65048750000001,39.81047096590908],[-75.6636136698652,39.80943633013483],[-75.69534020914932,39.812602709149324],[-75.70530000000001,39.81143995795107],[-75.71244776992768,39.81541473007232],[-75.725301491696,39.822562500000004],[-75.74767237392895,39.835002626071066],[-75.76011249999999,39.84192040137616],[-75.78289697793019,39.85459052206981],[-75.803719786787,39.866169786787],[-75.81492500000002,39.87240084480123],[-75.82143953552921,39.87086046447081],[-75.82956943105486,39.87737500000001]]}},{"type":"Feature","properties":{"elevation":65},"geometry":{"type":"LineString","coordinates":[[-75.2668,39.23637354664737],[-75.27938887481676,39.232213874816765],[-75.30269740542434,39.219625],[-75.31559493679954,39.213607436799535],[-75.3216125,39.21079984007284],[-75.33479272993911,39.20644477006089],[-75.3580207749529,39.20122077495289],[-75.37642500000001,39.1928641963101],[-75.39879326788905,39.197256732110965],[-75.41698874007938,39.219625],[-75.41664615279299,39.23421634720701],[-75.41351209236836,39.25671209236837],[-75.41318418669985,39.274437500000005],[-75.41252261463616,39.29315238536386],[-75.41037551191248,39.30838801191247],[-75.40978354097287,39.32925],[-75.41377046002786,39.34671703997214],[-75.43061555099871,39.3834405509987],[-75.43082308647351,39.384062500000006],[-75.42933571557612,39.38596428442388],[-75.40638964183782,39.41402714183781],[-75.39241102736543,39.438875],[-75.38380161250679,39.44625161250678],[-75.37642500000001,39.45404198240642],[-75.35473266534103,39.47199516534103],[-75.34111646266211,39.49368750000001],[-75.33202831554226,39.50410331554227],[-75.3216125,39.51651354746056],[-75.29946476138622,39.52635226138623],[-75.2778416558742,39.548500000000004],[-75.27206642802827,39.55376642802827],[-75.2668,39.56289741948527],[-75.24278464039396,39.57251535960604],[-75.23764466699686,39.574157166996855],[-75.21198750000002,39.587646336068204]]}},{"type":"Feature","properties":{"elevation":65},"geometry":{"type":"LineString","coordinates":[[-75.2119875,39.441268794572075],[-75.21341742330992,39.440304923309924],[-75.21360444395746,39.438875],[-75.21384774692487,39.437014753075125],[-75.22939227815561,39.40146727815562],[-75.23048178760618,39.38406249999999]]}},{"type":"Feature","properties":{"elevation":65},"geometry":{"type":"LineString","coordinates":[[-75.59567500000001,39.38276251075807],[-75.59476925364659,39.38315675364658],[-75.59423021453715,39.38406249999999],[-75.56686321502158,39.41006321502158],[-75.56561498231424,39.414122517685755],[-75.55343863518817,39.438875],[-75.54775333268884,39.445765832688835],[-75.5408625,39.45297594975487],[-75.52213703059053,39.47496203059052],[-75.51989065610466,39.49368750000001],[-75.51856410523781,39.5159858947622],[-75.51776472720019,39.525402227200175],[-75.51646289406158,39.548500000000004],[-75.52124679455686,39.568115705443155],[-75.53242959985296,39.594879599852966],[-75.53515496249446,39.6033125],[-75.53630211746493,39.60787288253508],[-75.5408625,39.61506212500003],[-75.55427226572532,39.64471523427469],[-75.55897280414257,39.658125000000005],[-75.5684988772702,39.68530112272983],[-75.5686624008697,39.6859249008697],[-75.5769679757932,39.71293750000001],[-75.57996961438567,39.72864288561433],[-75.595675,39.764535391718155],[-75.59890469497132,39.7645203050287],[-75.61628118239956,39.767750000000014],[-75.64517287186173,39.773064628138286],[-75.65048750000001,39.77561301136364],[-75.65777601348144,39.77503851348143],[-75.68308197449866,39.767750000000014],[-75.70097769575482,39.76342769575481],[-75.70530000000002,39.76237728973233],[-75.70972288841493,39.7633271115851],[-75.7195756475473,39.76775000000001],[-75.74562617571338,39.78223632428662],[-75.7601125,39.79029196100918],[-75.78085077971464,39.80182422028536],[-75.81089247554424,39.81852997554423],[-75.81492500000002,39.82077240443426],[-75.83712234504453,39.789947345044524],[-75.84191120002363,39.76775000000001],[-75.84519949889496,39.74321199889494],[-75.84485468357171,39.73782031642832],[-75.84719802054205,39.71293750000001],[-75.84590011627391,39.689100116273906],[-75.845531547052,39.68233095294803],[-75.84421357482793,39.658125],[-75.84274381544495,39.63113131544493],[-75.84270120837778,39.630348791622225],[-75.84122912911378,39.6033125],[-75.83987086970359,39.57836663029643],[-75.83958751461599,39.57316251461598],[-75.83824468339967,39.548500000000004],[-75.8349517155824,39.52847328441763],[-75.82837283793512,39.50713533793511],[-75.8255380936667,39.49368750000001],[-75.82337514149106,39.48523735850897],[-75.81492500000002,39.46968307901741],[-75.79191093184305,39.46188906815698],[-75.779585006592,39.45834750659201],[-75.76011249999999,39.45224000729691],[-75.74937534250294,39.44961215749707],[-75.70550428445233,39.438875],[-75.70534016674628,39.43883483325372],[-75.70530000000001,39.43882500270255],[-75.70523380090175,39.43880880090173],[-75.66130499098965,39.42805750901038],[-75.65048750000001,39.42540999810821],[-75.63395276843308,39.400597231566934],[-75.59838415497056,39.384062500000006],[-75.59668888337809,39.383048616621906],[-75.59567500000001,39.38276251075807]]}},{"type":"Feature","properties":{"elevation":85},"geometry":{"type":"LineString","coordinates":[[-75.26680000000002,39.3656628257722],[-75.28652935417642,39.34897935417642],[-75.29434657385556,39.32925],[-75.28156787052029,39.314482129479714],[-75.2668,39.31204539728962]]}},{"type":"Feature","properties":{"elevation":85},"geometry":{"type":"LineString","coordinates":[[-75.595675,39.424253423455056],[-75.58824386628717,39.431443866287175],[-75.58458831116026,39.438875],[-75.56482115219168,39.4628336521917],[-75.5408625,39.48790242034312],[-75.53820162534663,39.491026625346635],[-75.53788241727763,39.49368750000001],[-75.53769391543018,39.49685608456983],[-75.53390072699273,39.54153822699273],[-75.53350834860703,39.548500000000004],[-75.5349502378154,39.554412262184606],[-75.54086249999999,39.56856212500003],[-75.5529357302511,39.59123926974888],[-75.55785698248494,39.6033125],[-75.56880830173458,39.63017919826542],[-75.56927436882114,39.631724368821146],[-75.57852860812987,39.658125000000005],[-75.582978962639,39.67082103736099],[-75.59343173044121,39.71069423044122],[-75.59412146945168,39.71293750000001],[-75.59437074144688,39.71424175855312],[-75.595675,39.71722246270317],[-75.59994003966722,39.71720253966723],[-75.62159034514922,39.71293750000002],[-75.6448263614766,39.70727636147661],[-75.65048750000001,39.70589710227273],[-75.65979571814907,39.703629281850965],[-75.68890074013157,39.69653824013159],[-75.70530000000002,39.69254278409091],[-75.72784326753222,39.69039423246779],[-75.73821491629195,39.69103991629195],[-75.7601125,39.688072640583755],[-75.78233607340539,39.680348573405404],[-75.79264208814236,39.658125000000005],[-75.79660622575012,39.63980622575013],[-75.79472540135525,39.62351209864476],[-75.79722283224328,39.6033125],[-75.78661287117215,39.576812128827854],[-75.7601125,39.551048159262976],[-75.75881873632052,39.549793763679496],[-75.7571824981261,39.548500000000004],[-75.727085489844,39.52671451015601],[-75.70530000000001,39.518997879922395],[-75.69327158553715,39.50571591446286],[-75.6776320349203,39.4936875],[-75.6637419886342,39.48043301136581],[-75.65048750000001,39.475241243942875],[-75.63182709220179,39.45753540779822],[-75.61166376548265,39.438875],[-75.60469174611038,39.42985825388962],[-75.595675,39.424253423455056]]}},{"type":"Feature","properties":{"elevation":95},"geometry":{"type":"LineString","coordinates":[[-75.595675,39.44479415379214],[-75.57375687976251,39.47176937976253],[-75.55288420418026,39.49368750000001],[-75.54985985328763,39.502684853287626],[-75.54335875750067,39.546003742499344],[-75.54272479839358,39.548500000000004],[-75.54449209819175,39.55212959819175],[-75.5610134158398,39.58316158416021],[-75.56922726892861,39.6033125],[-75.57688598732327,39.62210151267674],[-75.58432959362835,39.64677959362837],[-75.58830651012353,39.658125000000005],[-75.59021900532345,39.66358099467657],[-75.595675,39.684393465909096],[-75.61679730445907,39.67924730445907],[-75.6334135066106,39.675198993389415],[-75.65048750000001,39.671039147727264],[-75.66087168311404,39.66850918311403],[-75.70349333022385,39.658125],[-75.70494606176901,39.657771061769004],[-75.70530000000002,39.65768482954545],[-75.70628279734198,39.65714220265804],[-75.74536136837887,39.64337386837887],[-75.7601125,39.62211021369573],[-75.76576643315498,39.608966433154976],[-75.7664654721581,39.60331250000001],[-75.76464913737452,39.59877586262548],[-75.7601125,39.59436529092123],[-75.73682555384813,39.571786946151875],[-75.70737427821797,39.548500000000004],[-75.70617099057839,39.54762900942162],[-75.7053,39.54732049617365],[-75.67981164665093,39.51917585334908],[-75.66319912335035,39.50639912335035],[-75.65048750000001,39.496219364466306],[-75.64901776536905,39.495157234630966],[-75.64778886601798,39.49368750000001],[-75.6210563877762,39.46830611222383],[-75.595675,39.44479415379214]]}},{"type":"Feature","properties":{"elevation":105},"geometry":{"type":"LineString","coordinates":[[-75.595675,39.46533488412922],[-75.58296496700163,39.48097746700164],[-75.57086117376842,39.4936875],[-75.56331428071324,39.51613928071323],[-75.56156461152284,39.527797888477174],[-75.55630702406147,39.548500000000004],[-75.56919869184183,39.57497630815817],[-75.57022281598199,39.577860315982],[-75.58059755537231,39.6033125],[-75.58496367291193,39.61402382708807],[-75.595675,39.64953551136363],[-75.60703129507213,39.64676870492788],[-75.6328426260965,39.64048012609649],[-75.65048750000001,39.63618119318182],[-75.67691700475146,39.629742004751456],[-75.67949974459137,39.62911275540864],[-75.70530000000002,39.622826874999994],[-75.71787268339571,39.6158851833957],[-75.72797495954046,39.60331250000001],[-75.71647845119129,39.59213404880871],[-75.70530000000001,39.583100513079295],[-75.68756254860246,39.56623745139755],[-75.68431805763474,39.548500000000004],[-75.66811272314747,39.53087477685254],[-75.65048750000001,39.51676009480338],[-75.63709397437495,39.50708102562507],[-75.62589515344311,39.49368750000001],[-75.6103933368229,39.47896916317711],[-75.595675,39.46533488412922]]}},{"type":"Feature","properties":{"elevation":120},"geometry":{"type":"LineString","coordinates":[[-75.595675,39.498008726147965],[-75.58052732425887,39.533352324258864],[-75.57668036256331,39.548500000000004],[-75.58290045769405,39.56127454230595],[-75.595675,39.59724857954545],[-75.6092143115167,39.5897731884833],[-75.62972261327414,39.58254761327412],[-75.65048750000001,39.55261517200697],[-75.65169911427444,39.54971161427442],[-75.65147748877246,39.548500000000004],[-75.65100326959553,39.547984230404474],[-75.65048750000001,39.547571190309],[-75.6471384133771,39.545150913377086],[-75.61791569314641,39.52625930685361],[-75.595675,39.498008726147965]]}}]} \ No newline at end of file diff --git a/packages/turf-kinks/.npmignore b/packages/turf-kinks/.npmignore new file mode 100644 index 0000000000..bb3c08c09a --- /dev/null +++ b/packages/turf-kinks/.npmignore @@ -0,0 +1,2 @@ +test +coverage diff --git a/packages/turf-kinks/LICENSE b/packages/turf-kinks/LICENSE new file mode 100644 index 0000000000..5be70e85cd --- /dev/null +++ b/packages/turf-kinks/LICENSE @@ -0,0 +1,22 @@ +The MIT License (MIT) + +Copyright (c) 2014 Morgan Herlocker + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + diff --git a/packages/turf-kinks/README.md b/packages/turf-kinks/README.md new file mode 100644 index 0000000000..0231a783b3 --- /dev/null +++ b/packages/turf-kinks/README.md @@ -0,0 +1,66 @@ +# turf-kinks + +[![build status](https://secure.travis-ci.org/Turfjs/turf-kinks.png)](http://travis-ci.org/Turfjs/turf-kinks) + +turf kinks module + + +### `turf.kinks(polygon)` + +Takes a Polygon|polygon and returns Point|points at all self-intersections. + + +### Parameters + +| parameter | type | description | +| --------- | -------------------- | ------------- | +| `polygon` | Feature\.\ | input polygon | + + +### Example + +```js +var poly = { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [[ + [-12.034835, 8.901183], + [-12.060413, 8.899826], + [-12.03638, 8.873199], + [-12.059383, 8.871418], + [-12.034835, 8.901183] + ]] + } +}; + +var kinks = turf.kinks(poly); + +var resultFeatures = kinks.intersections.features.concat(poly); +var result = { + "type": "FeatureCollection", + "features": resultFeatures +}; + +//=result +``` + + +**Returns** `FeatureCollection.`, self-intersections + +## Installation + +Requires [nodejs](http://nodejs.org/). + +```sh +$ npm install turf-kinks +``` + +## Tests + +```sh +$ npm test +``` + + diff --git a/packages/turf-kinks/bench.js b/packages/turf-kinks/bench.js new file mode 100644 index 0000000000..9f75b2480d --- /dev/null +++ b/packages/turf-kinks/bench.js @@ -0,0 +1,87 @@ +var kinks = require('./'); +var Benchmark = require('benchmark'); +var fs = require('fs'); + +var hourglass = { + type: "Polygon", + coordinates: [ + [ + [ + -12.034835815429688, + 8.901183448260598 + ], + [ + -12.060413360595701, + 8.899826693726117 + ], + [ + -12.036380767822266, + 8.873199368734273 + ], + [ + -12.059383392333983, + 8.871418491385919 + ], + [ + -12.034835815429688, + 8.901183448260598 + ] + ] + ] + }; + +var triple = { + type: "Polygon", + coordinates: [ + [ + [ + -44.384765625, + 1.0106897682409128 + ], + [ + -53.4375, + 0.4833927027896987 + ], + [ + -43.154296875, + -6.402648405963884 + ], + [ + -53.173828125, + -6.708253968671543 + ], + [ + -43.857421875, + -13.752724664396975 + ], + [ + -54.09667968749999, + -14.944784875088372 + ], + [ + -53.3935546875, + -11.867350911459308 + ], + [ + -44.384765625, + 1.0106897682409128 + ] + ] + ] + }; + +var suite = new Benchmark.Suite('turf-kinks'); +suite + .add('turf-kinks##hourglass',function () { + kinks(hourglass); + }) + .add('turf-kinks##triple',function () { + kinks(triple); + }) + .on('cycle', function (event) { + console.log(String(event.target)); + }) + .on('complete', function () { + + }) + .run(); \ No newline at end of file diff --git a/packages/turf-kinks/index.js b/packages/turf-kinks/index.js new file mode 100644 index 0000000000..9b3a623baa --- /dev/null +++ b/packages/turf-kinks/index.js @@ -0,0 +1,114 @@ +/** + * Takes a {@link Polygon|polygon} and returns {@link Point|points} at all self-intersections. + * + * @name kinks + * @category misc + * @param {Feature} polygon input polygon + * @returns {FeatureCollection} self-intersections + * @example + * var poly = { + * "type": "Feature", + * "properties": {}, + * "geometry": { + * "type": "Polygon", + * "coordinates": [[ + * [-12.034835, 8.901183], + * [-12.060413, 8.899826], + * [-12.03638, 8.873199], + * [-12.059383, 8.871418], + * [-12.034835, 8.901183] + * ]] + * } + * }; + * + * var kinks = turf.kinks(poly); + * + * var resultFeatures = kinks.intersections.features.concat(poly); + * var result = { + * "type": "FeatureCollection", + * "features": resultFeatures + * }; + * + * //=result + */ + +var point = require('turf-helpers').point; +var fc = require('turf-helpers').featureCollection; + +module.exports = function (polyIn) { + var poly; + var results = { + intersections: fc([]), + fixed: null + }; + if (polyIn.type === 'Feature') { + poly = polyIn.geometry; + } else { + poly = polyIn; + } + poly.coordinates.forEach(function (ring1) { + poly.coordinates.forEach(function (ring2) { + for (var i = 0; i < ring1.length - 1; i++) { + for (var k = 0; k < ring2.length - 1; k++) { + // don't check adjacent sides of a given ring, since of course they intersect in a vertex. + if (ring1 === ring2 && (Math.abs(i - k) === 1 || Math.abs(i - k) === ring1.length - 2)) { + continue; + } + + var intersection = lineIntersects(ring1[i][0], ring1[i][1], ring1[i + 1][0], ring1[i + 1][1], + ring2[k][0], ring2[k][1], ring2[k + 1][0], ring2[k + 1][1]); + if (intersection) { + results.intersections.features.push(point([intersection[0], intersection[1]])); + } + } + } + }); + }); + return results; +}; + + +// modified from http://jsfiddle.net/justin_c_rounds/Gd2S2/light/ +function lineIntersects(line1StartX, line1StartY, line1EndX, line1EndY, line2StartX, line2StartY, line2EndX, line2EndY) { + // if the lines intersect, the result contains the x and y of the intersection (treating the lines as infinite) and booleans for whether line segment 1 or line segment 2 contain the point + var denominator, a, b, numerator1, numerator2, + result = { + x: null, + y: null, + onLine1: false, + onLine2: false + }; + denominator = ((line2EndY - line2StartY) * (line1EndX - line1StartX)) - ((line2EndX - line2StartX) * (line1EndY - line1StartY)); + if (denominator === 0) { + if (result.x !== null && result.y !== null) { + return result; + } else { + return false; + } + } + a = line1StartY - line2StartY; + b = line1StartX - line2StartX; + numerator1 = ((line2EndX - line2StartX) * a) - ((line2EndY - line2StartY) * b); + numerator2 = ((line1EndX - line1StartX) * a) - ((line1EndY - line1StartY) * b); + a = numerator1 / denominator; + b = numerator2 / denominator; + + // if we cast these lines infinitely in both directions, they intersect here: + result.x = line1StartX + (a * (line1EndX - line1StartX)); + result.y = line1StartY + (a * (line1EndY - line1StartY)); + + // if line1 is a segment and line2 is infinite, they intersect if: + if (a >= 0 && a <= 1) { + result.onLine1 = true; + } + // if line2 is a segment and line1 is infinite, they intersect if: + if (b >= 0 && b <= 1) { + result.onLine2 = true; + } + // if line1 and line2 are segments, they intersect if both of the above are true + if (result.onLine1 && result.onLine2) { + return [result.x, result.y]; + } else { + return false; + } +} diff --git a/packages/turf-kinks/package.json b/packages/turf-kinks/package.json new file mode 100644 index 0000000000..1555bd338e --- /dev/null +++ b/packages/turf-kinks/package.json @@ -0,0 +1,31 @@ +{ + "name": "turf-kinks", + "version": "3.0.5", + "description": "turf kinks module", + "main": "index.js", + "dependencies": { + "turf-helpers": "^3.0.5" + }, + "devDependencies": { + "benchmark": "^1.0.0", + "tape": "^3.5.0" + }, + "scripts": { + "test": "node test.js" + }, + "repository": { + "type": "git", + "url": "https://github.com/Turfjs/turf-kinks.git" + }, + "keywords": [ + "turf", + "kinks", + "self-intersection" + ], + "author": "morganherlocker", + "license": "MIT", + "bugs": { + "url": "https://github.com/Turfjs/turf-kinks/issues" + }, + "homepage": "https://github.com/Turfjs/turf-kinks" +} diff --git a/packages/turf-kinks/test.js b/packages/turf-kinks/test.js new file mode 100644 index 0000000000..25ee53be3f --- /dev/null +++ b/packages/turf-kinks/test.js @@ -0,0 +1,153 @@ +var test = require('tape'); +var kinks = require('./'); + +test('kinks', function(t){ + var hourglass = { + type: "Polygon", + coordinates: [ + [ + [ + -12.034835815429688, + 8.901183448260598 + ], + [ + -12.060413360595701, + 8.899826693726117 + ], + [ + -12.036380767822266, + 8.873199368734273 + ], + [ + -12.059383392333983, + 8.871418491385919 + ], + [ + -12.034835815429688, + 8.901183448260598 + ] + ] + ] + }; + + var hourglassKinks = kinks(hourglass); + t.ok(hourglassKinks, 'get self intersection from hourglass polygon'); + t.equal(hourglassKinks.intersections.features.length, 2); + + var triple = { + type: "Polygon", + coordinates: [ + [ + [ + -44.384765625, + 1.0106897682409128 + ], + [ + -53.4375, + 0.4833927027896987 + ], + [ + -43.154296875, + -6.402648405963884 + ], + [ + -53.173828125, + -6.708253968671543 + ], + [ + -43.857421875, + -13.752724664396975 + ], + [ + -54.09667968749999, + -14.944784875088372 + ], + [ + -53.3935546875, + -11.867350911459308 + ], + [ + -44.384765625, + 1.0106897682409128 + ] + ] + ] + }; + + var tripleKinks = kinks(triple); + t.ok(tripleKinks, 'get self intersection from triple intersecting polygon'); + t.equal(tripleKinks.intersections.features.length, 6); + + t.end(); +}); + +test('kinks', function (t) { + var feature = { + type: 'Feature', + geometry: { + type: 'Polygon', + coordinates: [ + [ + [ + -12.034835815429688, + 8.901183448260598 + ], + [ + -12.060413360595701, + 8.899826693726117 + ], + [ + -12.036380767822266, + 8.873199368734273 + ], + [ + -12.059383392333983, + 8.871418491385919 + ], + [ + -12.034835815429688, + 8.901183448260598 + ] + ] + ] + } + }; + var featureKinks = kinks(feature); + + t.ok(featureKinks, 'get self intersection from hourglass polygon feature'); + t.equal(featureKinks.intersections.features.length, 2); + + t.end(); +}); + + +test('kinks', function (t) { + var feature = { + type: "Feature", + properties: { + DN: 1 + }, + geometry: { + type: "Polygon", + coordinates: [ + [ + [0, 0], + [0, 1], + [0.25, 1], + [0.25, 0], + [0.5, 0], + [0.5, 1], + [1, 1], + [1, 0], + [0, 0] + ] + ] + } + }; + var featureKinks = kinks(feature); + + t.ok(featureKinks, 'get self-intersection when vertex hits another side'); + t.equal(featureKinks.intersections.features.length, 4); + + t.end(); +}); diff --git a/packages/turf-line-distance/.npmignore b/packages/turf-line-distance/.npmignore new file mode 100644 index 0000000000..bb3c08c09a --- /dev/null +++ b/packages/turf-line-distance/.npmignore @@ -0,0 +1,2 @@ +test +coverage diff --git a/packages/turf-line-distance/LICENSE b/packages/turf-line-distance/LICENSE new file mode 100644 index 0000000000..87a514a46d --- /dev/null +++ b/packages/turf-line-distance/LICENSE @@ -0,0 +1,22 @@ +The MIT License (MIT) + +Copyright (c) 2015 turf + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + diff --git a/packages/turf-line-distance/README.md b/packages/turf-line-distance/README.md new file mode 100644 index 0000000000..a6dbf09462 --- /dev/null +++ b/packages/turf-line-distance/README.md @@ -0,0 +1,64 @@ +# turf-line-distance + +[![build status](https://secure.travis-ci.org/Turfjs/turf-line-distance.png)](http://travis-ci.org/Turfjs/turf-line-distance) + +turf-line-distance --- + + +### `turf.line-distance(line, units)` + +Takes a LineString|line and measures its length in the specified units. + + +### Parameters + +| parameter | type | description | +| --------- | ----------------------- | --------------------------------------------- | +| `line` | Feature\.\ | line to measure | +| `units` | String | can be degrees, radians, miles, or kilometers | + + +### Example + +```js +var line = { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "LineString", + "coordinates": [ + [-77.031669, 38.878605], + [-77.029609, 38.881946], + [-77.020339, 38.884084], + [-77.025661, 38.885821], + [-77.021884, 38.889563], + [-77.019824, 38.892368] + ] + } +}; + +var length = turf.lineDistance(line, 'miles'); + +//=line + +//=length +``` + + +**Returns** `Number`, length of the input line + +## Installation + +Requires [nodejs](http://nodejs.org/). + +```sh +$ npm install turf-line-distance +``` + +## Tests + +```sh +$ npm test +``` + + diff --git a/packages/turf-line-distance/bench.js b/packages/turf-line-distance/bench.js new file mode 100644 index 0000000000..56a7636dce --- /dev/null +++ b/packages/turf-line-distance/bench.js @@ -0,0 +1,59 @@ +var lineDistance = require('./'); +var Benchmark = require('benchmark'); +var fs = require('fs'); + +var line = { + type: "Feature", + properties: {}, + geometry: { + type: "LineString", + coordinates: [ + [ + -77.0316696166992, + 38.878605901789236 + ], + [ + -77.02960968017578, + 38.88194668656296 + ], + [ + -77.02033996582031, + 38.88408470638821 + ], + [ + -77.02566146850586, + 38.885821800123196 + ], + [ + -77.02188491821289, + 38.88956308852534 + ], + [ + -77.01982498168944, + 38.89236892551996 + ] + ] + } +}; + +var route1 = JSON.parse(fs.readFileSync(__dirname + '/test/route1.geojson')); +var route2 = JSON.parse(fs.readFileSync(__dirname + '/test/route2.geojson')); + +var suite = new Benchmark.Suite('turf-line-distance'); +suite + .add('turf-line-distance#simple',function () { + lineDistance(line, 'miles'); + }) + .add('turf-line-distance#200 mi',function () { + lineDistance(route1, 'miles'); + }) + .add('turf-line-distance#700 km',function () { + lineDistance(route2, 'miles'); + }) + .on('cycle', function (event) { + console.log(String(event.target)); + }) + .on('complete', function () { + + }) + .run(); diff --git a/packages/turf-line-distance/index.js b/packages/turf-line-distance/index.js new file mode 100644 index 0000000000..6151c0154c --- /dev/null +++ b/packages/turf-line-distance/index.js @@ -0,0 +1,83 @@ +var distance = require('turf-distance'); +var point = require('turf-helpers').point; + +/** + * Takes a {@link LineString|line} and measures its length in the specified units. + * + * @name lineDistance + * @category measurement + * @param {Feature} line line to measure + * @param {String=kilometers} units can be degrees, radians, miles, or kilometers + * @return {Number} length of the input line + * @example + * var line = { + * "type": "Feature", + * "properties": {}, + * "geometry": { + * "type": "LineString", + * "coordinates": [ + * [-77.031669, 38.878605], + * [-77.029609, 38.881946], + * [-77.020339, 38.884084], + * [-77.025661, 38.885821], + * [-77.021884, 38.889563], + * [-77.019824, 38.892368] + * ] + * } + * }; + * + * var length = turf.lineDistance(line, 'miles'); + * + * //=line + * + * //=length + */ +module.exports = function lineDistance(line, units) { + if (line.type === 'FeatureCollection') { + return line.features.reduce(function (memo, feature) { + return memo + lineDistance(feature, units); + }, 0); + } + + var geometry = line.type === 'Feature' ? line.geometry : line; + var d, i; + + if (geometry.type === 'LineString') { + return length(geometry.coordinates, units); + } else if (geometry.type === 'Polygon' || geometry.type === 'MultiLineString') { + d = 0; + for (i = 0; i < geometry.coordinates.length; i++) { + d += length(geometry.coordinates[i], units); + } + return d; + } else if (line.type === 'MultiPolygon') { + d = 0; + for (i = 0; i < geometry.coordinates.length; i++) { + for (var j = 0; j < geometry.coordinates[i].length; j++) { + d += length(geometry.coordinates[i][j], units); + } + } + return d; + } else { + throw new Error('input must be a LineString, MultiLineString, ' + + 'Polygon, or MultiPolygon Feature or Geometry (or a FeatureCollection ' + + 'containing only those types)'); + } + +}; + +function length(coords, units) { + var travelled = 0; + var prevCoords = point(coords[0]); + var curCoords = point(coords[0]); + var temp; + for (var i = 1; i < coords.length; i++) { + curCoords.geometry.coordinates = coords[i]; + travelled += distance(prevCoords, curCoords, units); + temp = prevCoords; + prevCoords = curCoords; + curCoords = temp; + } + return travelled; +} + diff --git a/packages/turf-line-distance/package.json b/packages/turf-line-distance/package.json new file mode 100644 index 0000000000..a649e32517 --- /dev/null +++ b/packages/turf-line-distance/package.json @@ -0,0 +1,35 @@ +{ + "name": "turf-line-distance", + "version": "3.0.5", + "description": "turf-line-distance ---", + "main": "index.js", + "scripts": { + "test": "node test.js" + }, + "repository": { + "type": "git", + "url": "https://github.com/Turfjs/turf-line-distance.git" + }, + "keywords": [ + "turf", + "linestring", + "length", + "distance", + "units", + "gis" + ], + "author": "morganherlocker", + "license": "MIT", + "bugs": { + "url": "https://github.com/Turfjs/turf-line-distance/issues" + }, + "homepage": "https://github.com/Turfjs/turf-line-distance", + "devDependencies": { + "benchmark": "^1.0.0", + "tape": "^3.5.0" + }, + "dependencies": { + "turf-distance": "^3.0.5", + "turf-helpers": "^3.0.5" + } +} diff --git a/packages/turf-line-distance/test.js b/packages/turf-line-distance/test.js new file mode 100644 index 0000000000..381a016489 --- /dev/null +++ b/packages/turf-line-distance/test.js @@ -0,0 +1,39 @@ +var test = require('tape'); +var fs = require('fs'); +var lineDistance = require('./'); + +var route1 = JSON.parse(fs.readFileSync(__dirname + '/test/route1.geojson')); +var route2 = JSON.parse(fs.readFileSync(__dirname + '/test/route2.geojson')); + +test('LineString', function (t) { + t.equal(Math.round(lineDistance(route1, 'miles')), 202); + t.true((lineDistance(route2, 'kilometers') - 742) < 1 && + (lineDistance(route2, 'kilometers') - 742) > (-1) ); + t.end(); +}); + +test('turf-line-distance with geometries', function (t) { + t.equal(Math.round(lineDistance(route1.geometry, 'miles')), 202); + t.true((lineDistance(route2.geometry, 'kilometers') - 742) < 1 && + (lineDistance(route2.geometry, 'kilometers') - 742) > (-1) ); + + t.end(); +}); + +test('Polygon', function (t) { + var feat = JSON.parse(fs.readFileSync(__dirname + '/test/polygon.geojson')); + t.equal(Math.round(1000 * lineDistance(feat, 'kilometers')), 5599); + t.end(); +}) + +test('MultiLineString', function (t) { + var feat = JSON.parse(fs.readFileSync(__dirname + '/test/multilinestring.geojson')); + t.equal(Math.round(1000 * lineDistance(feat, 'kilometers')), 4705); + t.end(); +}) + +test('FeatureCollection', function (t) { + var feat = JSON.parse(fs.readFileSync(__dirname + '/test/featurecollection.geojson')); + t.equal(Math.round(1000 * lineDistance(feat, 'kilometers')), 10304); + t.end(); +}) diff --git a/packages/turf-line-distance/test/featurecollection.geojson b/packages/turf-line-distance/test/featurecollection.geojson new file mode 100644 index 0000000000..94182f0edc --- /dev/null +++ b/packages/turf-line-distance/test/featurecollection.geojson @@ -0,0 +1,42 @@ +{ + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "MultiLineString", + "coordinates": [[ + [-77.031669, 38.878605], + [-77.029609, 38.881946], + [-77.020339, 38.884084], + [-77.025661, 38.885821], + [-77.021884, 38.889563], + [-77.019824, 38.892368] + ], [ + [-77.041669, 38.885821], + [-77.039609, 38.881946], + [-77.030339, 38.884084], + [-77.035661, 38.878605]] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [[ + [-77.031669, 38.878605], + [-77.029609, 38.881946], + [-77.020339, 38.884084], + [-77.025661, 38.885821], + [-77.021884, 38.889563], + [-77.019824, 38.892368], + [-77.04, 38.88], + [-77.031669, 38.878605] + ]] + } + } + ] +} diff --git a/packages/turf-line-distance/test/multilinestring.geojson b/packages/turf-line-distance/test/multilinestring.geojson new file mode 100644 index 0000000000..ec07aabd78 --- /dev/null +++ b/packages/turf-line-distance/test/multilinestring.geojson @@ -0,0 +1,20 @@ +{ + "type": "Feature", + "properties": {}, + "geometry": { + "type": "MultiLineString", + "coordinates": [[ + [-77.031669, 38.878605], + [-77.029609, 38.881946], + [-77.020339, 38.884084], + [-77.025661, 38.885821], + [-77.021884, 38.889563], + [-77.019824, 38.892368] + ], [ + [-77.041669, 38.885821], + [-77.039609, 38.881946], + [-77.030339, 38.884084], + [-77.035661, 38.878605]] + ] + } +} diff --git a/packages/turf-line-distance/test/polygon.geojson b/packages/turf-line-distance/test/polygon.geojson new file mode 100644 index 0000000000..0e414c8d5e --- /dev/null +++ b/packages/turf-line-distance/test/polygon.geojson @@ -0,0 +1,17 @@ +{ + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [[ + [-77.031669, 38.878605], + [-77.029609, 38.881946], + [-77.020339, 38.884084], + [-77.025661, 38.885821], + [-77.021884, 38.889563], + [-77.019824, 38.892368], + [-77.04, 38.88], + [-77.031669, 38.878605] + ]] + } +} diff --git a/packages/turf-line-distance/test/route1.geojson b/packages/turf-line-distance/test/route1.geojson new file mode 100644 index 0000000000..8c19389b35 --- /dev/null +++ b/packages/turf-line-distance/test/route1.geojson @@ -0,0 +1,2 @@ + +{ "type": "Feature", "properties": { "name": null, "cmt": null, "desc": null, "src": null, "link1_href": null, "link1_text": null, "link1_type": null, "link2_href": null, "link2_text": null, "link2_type": null, "number": null, "type": null }, "geometry": { "type": "LineString", "coordinates": [ [ -79.254923, 36.98394 ], [ -79.254923, 36.983939 ], [ -79.255326, 36.9838 ], [ -79.255401, 36.983774 ], [ -79.25576, 36.983664 ], [ -79.256795, 36.984137 ], [ -79.257537, 36.984478 ], [ -79.258539, 36.984925 ], [ -79.259498, 36.985353 ], [ -79.260286, 36.985712 ], [ -79.261405, 36.986222 ], [ -79.262933, 36.986928 ], [ -79.263237, 36.987071 ], [ -79.263755, 36.987296 ], [ -79.264086, 36.987423 ], [ -79.264167, 36.987446 ], [ -79.264338, 36.987486 ], [ -79.264414, 36.987501 ], [ -79.264618, 36.987531 ], [ -79.2648, 36.987542 ], [ -79.264982, 36.987537 ], [ -79.265163, 36.987517 ], [ -79.26703, 36.987355 ], [ -79.267952, 36.98726 ], [ -79.268404, 36.987226 ], [ -79.268771, 36.987197 ], [ -79.26955, 36.987117 ], [ -79.271398, 36.986946 ], [ -79.271488, 36.986941 ], [ -79.271698, 36.986925 ], [ -79.271936, 36.986898 ], [ -79.272231, 36.986852 ], [ -79.272474, 36.986785 ], [ -79.272711, 36.986705 ], [ -79.272895, 36.986632 ], [ -79.273059, 36.986552 ], [ -79.273646, 36.986245 ], [ -79.274224, 36.985925 ], [ -79.274887, 36.985592 ], [ -79.275308, 36.985365 ], [ -79.275672, 36.98517 ], [ -79.276249, 36.984876 ], [ -79.277101, 36.984433 ], [ -79.277425, 36.984259 ], [ -79.277918, 36.983982 ], [ -79.27799, 36.98395 ], [ -79.278179, 36.98385 ], [ -79.278261, 36.9838 ], [ -79.278335, 36.983745 ], [ -79.278421, 36.983666 ], [ -79.27844, 36.983647 ], [ -79.278502, 36.983577 ], [ -79.278548, 36.983511 ], [ -79.278614, 36.983381 ], [ -79.278654, 36.983273 ], [ -79.278711, 36.983011 ], [ -79.278763, 36.98269 ], [ -79.278806, 36.982485 ], [ -79.278866, 36.982282 ], [ -79.278952, 36.982101 ], [ -79.279023, 36.981984 ], [ -79.280178, 36.980418 ], [ -79.280259, 36.980319 ], [ -79.280355, 36.980229 ], [ -79.280419, 36.98018 ], [ -79.280578, 36.980082 ], [ -79.280666, 36.980038 ], [ -79.280783, 36.979994 ], [ -79.280908, 36.979963 ], [ -79.281301, 36.979913 ], [ -79.281646, 36.979874 ], [ -79.282145, 36.979835 ], [ -79.282797, 36.97977 ], [ -79.283144, 36.979743 ], [ -79.283618, 36.97972 ], [ -79.28399, 36.979706 ], [ -79.284447, 36.979695 ], [ -79.284904, 36.979697 ], [ -79.286913, 36.979638 ], [ -79.287201, 36.979628 ], [ -79.287954, 36.979612 ], [ -79.288037, 36.979611 ], [ -79.288397, 36.97962 ], [ -79.288697, 36.979643 ], [ -79.289908, 36.979722 ], [ -79.289994, 36.979724 ], [ -79.290136, 36.979716 ], [ -79.290248, 36.979699 ], [ -79.290503, 36.979632 ], [ -79.291043, 36.979454 ], [ -79.291563, 36.979269 ], [ -79.292467, 36.97896 ], [ -79.292759, 36.978877 ], [ -79.292963, 36.978832 ], [ -79.293286, 36.978778 ], [ -79.293549, 36.978746 ], [ -79.293649, 36.978738 ], [ -79.293755, 36.978729 ], [ -79.293858, 36.978731 ], [ -79.294028, 36.978747 ], [ -79.294162, 36.978771 ], [ -79.294243, 36.9788 ], [ -79.294439, 36.978883 ], [ -79.294626, 36.978979 ], [ -79.294782, 36.979072 ], [ -79.294921, 36.979174 ], [ -79.295023, 36.979263 ], [ -79.295281, 36.979534 ], [ -79.295458, 36.979739 ], [ -79.296347, 36.980843 ], [ -79.296549, 36.981064 ], [ -79.296594, 36.981095 ], [ -79.296695, 36.981144 ], [ -79.296788, 36.98117 ], [ -79.296916, 36.981184 ], [ -79.297032, 36.981182 ], [ -79.297147, 36.981165 ], [ -79.297933, 36.980962 ], [ -79.298145, 36.980893 ], [ -79.298401, 36.98079 ], [ -79.298602, 36.980696 ], [ -79.298795, 36.980593 ], [ -79.299134, 36.980402 ], [ -79.299407, 36.980244 ], [ -79.299963, 36.9799 ], [ -79.301767, 36.97881 ], [ -79.301976, 36.978691 ], [ -79.3021, 36.978619 ], [ -79.302508, 36.978369 ], [ -79.302614, 36.978309 ], [ -79.3028, 36.97822 ], [ -79.302995, 36.978145 ], [ -79.303113, 36.978114 ], [ -79.303153, 36.978249 ], [ -79.303232, 36.978565 ], [ -79.303319, 36.978989 ], [ -79.303326, 36.979184 ], [ -79.303313, 36.979346 ], [ -79.30324, 36.979748 ], [ -79.303136, 36.980362 ], [ -79.303088, 36.980609 ], [ -79.302996, 36.981143 ], [ -79.302982, 36.981226 ], [ -79.302977, 36.981321 ], [ -79.302986, 36.98144 ], [ -79.303013, 36.981556 ], [ -79.303057, 36.98167 ], [ -79.303191, 36.9819 ], [ -79.303336, 36.982126 ], [ -79.303702, 36.982652 ], [ -79.304322, 36.983486 ], [ -79.304588, 36.98382 ], [ -79.304756, 36.984051 ], [ -79.304903, 36.984229 ], [ -79.305059, 36.984403 ], [ -79.305145, 36.984487 ], [ -79.305336, 36.984648 ], [ -79.305612, 36.98486 ], [ -79.30569, 36.984915 ], [ -79.305765, 36.984974 ], [ -79.305944, 36.98513 ], [ -79.306108, 36.985295 ], [ -79.306259, 36.985469 ], [ -79.306333, 36.98557 ], [ -79.306437, 36.985737 ], [ -79.306524, 36.985911 ], [ -79.306595, 36.98609 ], [ -79.306677, 36.986365 ], [ -79.306734, 36.98662 ], [ -79.306773, 36.986878 ], [ -79.306759, 36.986998 ], [ -79.306724, 36.987146 ], [ -79.306621, 36.987426 ], [ -79.306591, 36.987545 ], [ -79.306555, 36.987745 ], [ -79.306536, 36.987984 ], [ -79.30653, 36.988172 ], [ -79.306539, 36.988321 ], [ -79.30655, 36.988398 ], [ -79.306566, 36.988507 ], [ -79.306673, 36.988967 ], [ -79.306789, 36.989416 ], [ -79.30681, 36.989518 ], [ -79.306831, 36.98969 ], [ -79.306833, 36.989828 ], [ -79.306822, 36.989888 ], [ -79.306771, 36.990067 ], [ -79.306696, 36.99024 ], [ -79.306569, 36.990463 ], [ -79.306374, 36.99078 ], [ -79.30633, 36.990863 ], [ -79.306292, 36.990972 ], [ -79.306271, 36.991084 ], [ -79.306268, 36.991229 ], [ -79.306282, 36.991421 ], [ -79.306323, 36.991648 ], [ -79.30657, 36.992516 ], [ -79.306601, 36.992703 ], [ -79.306614, 36.992892 ], [ -79.306598, 36.993111 ], [ -79.306569, 36.993287 ], [ -79.306553, 36.993345 ], [ -79.306526, 36.993432 ], [ -79.306466, 36.993574 ], [ -79.306313, 36.993848 ], [ -79.305971, 36.994382 ], [ -79.305826, 36.994647 ], [ -79.305382, 36.995598 ], [ -79.305197, 36.995963 ], [ -79.305065, 36.996284 ], [ -79.304983, 36.996521 ], [ -79.304954, 36.99668 ], [ -79.30495, 36.996815 ], [ -79.304959, 36.996932 ], [ -79.304988, 36.997077 ], [ -79.305024, 36.99719 ], [ -79.305111, 36.99739 ], [ -79.305197, 36.997567 ], [ -79.30532, 36.997782 ], [ -79.305429, 36.997949 ], [ -79.305577, 36.998153 ], [ -79.306017, 36.99873 ], [ -79.306204, 36.998965 ], [ -79.306407, 36.999192 ], [ -79.306624, 36.999411 ], [ -79.30672, 36.999489 ], [ -79.306828, 36.999557 ], [ -79.306922, 36.999602 ], [ -79.307072, 36.999656 ], [ -79.307354, 36.999723 ], [ -79.307628, 36.999778 ], [ -79.308892, 36.999988 ], [ -79.309029, 37.00002 ], [ -79.309135, 37.000056 ], [ -79.30926, 37.000112 ], [ -79.309374, 37.00018 ], [ -79.309478, 37.000259 ], [ -79.30959, 37.000372 ], [ -79.309743, 37.000552 ], [ -79.31029, 37.001344 ], [ -79.31037, 37.001451 ], [ -79.310486, 37.001568 ], [ -79.310598, 37.001654 ], [ -79.310697, 37.001714 ], [ -79.310838, 37.001785 ], [ -79.310991, 37.001844 ], [ -79.31115, 37.001891 ], [ -79.311632, 37.001979 ], [ -79.312359, 37.002135 ], [ -79.312455, 37.002156 ], [ -79.312915, 37.002271 ], [ -79.313026, 37.002296 ], [ -79.313639, 37.002422 ], [ -79.314311, 37.002515 ], [ -79.314769, 37.002553 ], [ -79.315227, 37.002582 ], [ -79.315352, 37.002604 ], [ -79.315472, 37.002641 ], [ -79.315543, 37.002685 ], [ -79.315621, 37.00275 ], [ -79.315685, 37.002824 ], [ -79.315725, 37.002889 ], [ -79.315888, 37.002832 ], [ -79.316221, 37.002733 ], [ -79.316448, 37.002678 ], [ -79.31752, 37.002455 ], [ -79.318524, 37.002275 ], [ -79.319059, 37.002211 ], [ -79.319268, 37.002199 ], [ -79.319435, 37.0022 ], [ -79.319651, 37.002214 ], [ -79.319786, 37.002226 ], [ -79.320258, 37.002279 ], [ -79.320522, 37.002298 ], [ -79.320786, 37.002302 ], [ -79.320953, 37.002288 ], [ -79.321116, 37.002258 ], [ -79.321274, 37.002213 ], [ -79.321381, 37.00217 ], [ -79.321762, 37.002001 ], [ -79.322382, 37.001698 ], [ -79.322844, 37.001466 ], [ -79.323023, 37.001376 ], [ -79.323292, 37.001249 ], [ -79.32357, 37.001134 ], [ -79.323943, 37.001003 ], [ -79.324098, 37.000958 ], [ -79.324162, 37.000945 ], [ -79.32513, 37.000843 ], [ -79.325325, 37.000814 ], [ -79.325517, 37.000777 ], [ -79.325753, 37.000719 ], [ -79.327186, 37.000266 ], [ -79.327482, 37.000173 ], [ -79.327802, 37.00008 ], [ -79.328598, 36.999838 ], [ -79.329158, 36.999654 ], [ -79.329204, 36.999715 ], [ -79.329343, 36.999894 ], [ -79.32942, 36.999975 ], [ -79.329588, 37.000125 ], [ -79.329742, 37.000239 ], [ -79.329777, 37.000256 ], [ -79.329869, 37.000291 ], [ -79.329988, 37.000315 ], [ -79.330091, 37.000318 ], [ -79.33027, 37.000316 ], [ -79.330449, 37.000298 ], [ -79.331035, 37.000223 ], [ -79.331427, 37.000184 ], [ -79.331855, 37.000129 ], [ -79.333009, 37.000023 ], [ -79.334568, 36.999869 ], [ -79.335002, 36.999826 ], [ -79.33552, 36.999806 ], [ -79.33606, 36.999814 ], [ -79.336208, 36.999833 ], [ -79.336352, 36.999866 ], [ -79.33649, 36.999913 ], [ -79.336644, 36.999986 ], [ -79.336856, 37.000123 ], [ -79.336962, 37.000203 ], [ -79.337096, 37.000316 ], [ -79.337325, 37.000539 ], [ -79.337519, 37.000761 ], [ -79.338522, 37.001965 ], [ -79.339126, 37.002688 ], [ -79.339574, 37.003185 ], [ -79.340385, 37.004106 ], [ -79.340479, 37.004212 ], [ -79.340603, 37.004341 ], [ -79.340773, 37.00449 ], [ -79.340929, 37.004602 ], [ -79.341131, 37.004723 ], [ -79.341632, 37.004968 ], [ -79.341875, 37.005087 ], [ -79.342172, 37.005233 ], [ -79.342594, 37.00542 ], [ -79.343189, 37.005708 ], [ -79.343817, 37.006011 ], [ -79.344455, 37.006335 ], [ -79.344712, 37.00647 ], [ -79.345697, 37.006916 ], [ -79.345837, 37.006985 ], [ -79.346006, 37.00708 ], [ -79.346221, 37.007218 ], [ -79.347403, 37.008016 ], [ -79.347493, 37.008071 ], [ -79.347634, 37.008171 ], [ -79.347763, 37.008281 ], [ -79.347971, 37.008497 ], [ -79.348051, 37.008623 ], [ -79.348135, 37.008786 ], [ -79.348201, 37.008954 ], [ -79.34825, 37.009126 ], [ -79.348316, 37.00954 ], [ -79.348397, 37.010196 ], [ -79.34854, 37.01111 ], [ -79.348616, 37.011496 ], [ -79.348778, 37.012266 ], [ -79.349159, 37.013946 ], [ -79.349315, 37.014628 ], [ -79.349636, 37.015919 ], [ -79.349688, 37.016183 ], [ -79.349795, 37.016628 ], [ -79.349854, 37.016827 ], [ -79.349915, 37.01701 ], [ -79.350064, 37.017337 ], [ -79.350135, 37.017464 ], [ -79.350159, 37.017499 ], [ -79.350325, 37.017735 ], [ -79.35042, 37.017865 ], [ -79.350584, 37.018129 ], [ -79.35072, 37.01842 ], [ -79.350808, 37.018683 ], [ -79.35089, 37.018981 ], [ -79.350968, 37.019317 ], [ -79.35119, 37.020219 ], [ -79.351251, 37.020445 ], [ -79.351346, 37.020719 ], [ -79.351414, 37.020888 ], [ -79.351505, 37.021079 ], [ -79.351682, 37.021459 ], [ -79.351825, 37.02176 ], [ -79.352185, 37.022473 ], [ -79.352628, 37.023433 ], [ -79.352751, 37.023743 ], [ -79.35282, 37.023863 ], [ -79.352895, 37.023965 ], [ -79.353012, 37.024078 ], [ -79.353078, 37.024127 ], [ -79.353186, 37.024186 ], [ -79.353325, 37.024244 ], [ -79.353398, 37.024265 ], [ -79.353421, 37.02427 ], [ -79.353621, 37.024315 ], [ -79.353675, 37.024321 ], [ -79.35392, 37.024336 ], [ -79.354286, 37.024379 ], [ -79.354423, 37.024385 ], [ -79.354844, 37.024375 ], [ -79.355058, 37.024359 ], [ -79.355214, 37.024339 ], [ -79.355354, 37.024308 ], [ -79.355614, 37.024238 ], [ -79.355718, 37.024209 ], [ -79.355965, 37.024125 ], [ -79.356147, 37.024057 ], [ -79.356485, 37.02394 ], [ -79.356546, 37.023919 ], [ -79.356797, 37.023824 ], [ -79.356964, 37.023769 ], [ -79.357077, 37.023757 ], [ -79.357196, 37.023767 ], [ -79.357262, 37.023786 ], [ -79.357309, 37.023811 ], [ -79.35735, 37.023849 ], [ -79.357388, 37.023905 ], [ -79.357541, 37.024317 ], [ -79.357583, 37.024391 ], [ -79.357634, 37.024438 ], [ -79.357685, 37.024467 ], [ -79.357747, 37.024487 ], [ -79.35783, 37.024497 ], [ -79.357899, 37.024495 ], [ -79.35801, 37.02448 ], [ -79.358102, 37.02446 ], [ -79.358409, 37.025941 ], [ -79.358471, 37.026316 ], [ -79.358502, 37.026637 ], [ -79.358517, 37.026844 ], [ -79.358519, 37.027185 ], [ -79.358497, 37.027679 ], [ -79.358457, 37.028033 ], [ -79.358398, 37.028378 ], [ -79.358301, 37.028779 ], [ -79.358082, 37.029574 ], [ -79.357957, 37.030026 ], [ -79.357813, 37.030609 ], [ -79.357745, 37.03095 ], [ -79.357685, 37.031344 ], [ -79.357656, 37.031612 ], [ -79.357621, 37.032199 ], [ -79.357619, 37.032445 ], [ -79.357631, 37.032766 ], [ -79.357637, 37.032893 ], [ -79.357666, 37.033258 ], [ -79.357711, 37.033639 ], [ -79.357789, 37.034066 ], [ -79.357875, 37.034441 ], [ -79.357922, 37.034622 ], [ -79.358521, 37.036938 ], [ -79.358613, 37.037315 ], [ -79.358687, 37.037658 ], [ -79.358786, 37.038217 ], [ -79.358856, 37.038791 ], [ -79.358911, 37.039356 ], [ -79.358965, 37.0401 ], [ -79.359051, 37.041306 ], [ -79.359073, 37.041825 ], [ -79.359059, 37.042471 ], [ -79.359012, 37.042954 ], [ -79.35899, 37.04313 ], [ -79.358922, 37.043537 ], [ -79.358829, 37.043973 ], [ -79.358773, 37.044171 ], [ -79.358704, 37.044417 ], [ -79.358541, 37.044914 ], [ -79.358352, 37.045429 ], [ -79.357856, 37.04678 ], [ -79.357794, 37.046961 ], [ -79.357564, 37.047556 ], [ -79.357409, 37.047915 ], [ -79.357338, 37.048062 ], [ -79.357278, 37.048184 ], [ -79.356942, 37.048801 ], [ -79.356841, 37.048967 ], [ -79.356589, 37.049349 ], [ -79.356363, 37.049677 ], [ -79.354212, 37.052783 ], [ -79.353972, 37.053148 ], [ -79.353865, 37.053295 ], [ -79.353452, 37.053889 ], [ -79.352197, 37.055711 ], [ -79.352126, 37.055808 ], [ -79.351983, 37.056023 ], [ -79.351596, 37.056539 ], [ -79.351413, 37.056761 ], [ -79.35122, 37.056979 ], [ -79.351018, 37.057191 ], [ -79.35075, 37.057445 ], [ -79.350603, 37.057584 ], [ -79.35029, 37.057856 ], [ -79.348032, 37.059645 ], [ -79.346954, 37.060488 ], [ -79.345892, 37.06133 ], [ -79.345295, 37.061797 ], [ -79.344778, 37.062208 ], [ -79.344716, 37.062258 ], [ -79.343942, 37.062866 ], [ -79.343259, 37.06342 ], [ -79.342925, 37.063722 ], [ -79.342732, 37.063907 ], [ -79.342302, 37.064351 ], [ -79.342055, 37.06463 ], [ -79.341843, 37.064885 ], [ -79.341424, 37.065452 ], [ -79.341048, 37.066036 ], [ -79.340718, 37.066647 ], [ -79.340066, 37.068047 ], [ -79.338982, 37.070343 ], [ -79.336951, 37.074656 ], [ -79.336672, 37.075265 ], [ -79.335622, 37.077497 ], [ -79.335265, 37.078252 ], [ -79.33489, 37.079062 ], [ -79.334833, 37.079182 ], [ -79.334222, 37.080477 ], [ -79.333262, 37.082521 ], [ -79.333001, 37.083079 ], [ -79.332628, 37.084028 ], [ -79.332548, 37.084278 ], [ -79.332388, 37.08478 ], [ -79.332201, 37.085539 ], [ -79.33204, 37.086421 ], [ -79.33196, 37.086978 ], [ -79.331907, 37.087757 ], [ -79.331871, 37.088536 ], [ -79.33185, 37.089317 ], [ -79.331805, 37.090324 ], [ -79.331772, 37.091338 ], [ -79.331768, 37.092235 ], [ -79.33183, 37.093576 ], [ -79.331943, 37.095022 ], [ -79.332045, 37.096198 ], [ -79.332341, 37.099713 ], [ -79.332397, 37.100421 ], [ -79.332436, 37.101086 ], [ -79.332443, 37.1013 ], [ -79.332438, 37.10199 ], [ -79.332418, 37.102426 ], [ -79.332391, 37.102795 ], [ -79.332337, 37.103324 ], [ -79.332244, 37.103966 ], [ -79.332205, 37.104185 ], [ -79.332175, 37.104355 ], [ -79.332056, 37.104907 ], [ -79.332041, 37.104978 ], [ -79.331903, 37.105494 ], [ -79.331733, 37.106053 ], [ -79.331559, 37.106562 ], [ -79.33131, 37.107195 ], [ -79.331178, 37.107501 ], [ -79.330959, 37.107973 ], [ -79.330748, 37.108399 ], [ -79.330489, 37.108876 ], [ -79.330365, 37.109093 ], [ -79.330155, 37.10944 ], [ -79.329757, 37.110058 ], [ -79.328813, 37.111446 ], [ -79.328701, 37.111611 ], [ -79.327118, 37.113932 ], [ -79.327107, 37.113947 ], [ -79.326498, 37.114802 ], [ -79.326178, 37.115223 ], [ -79.326128, 37.115289 ], [ -79.32568, 37.115855 ], [ -79.325061, 37.116595 ], [ -79.324816, 37.116878 ], [ -79.324497, 37.117235 ], [ -79.324161, 37.117601 ], [ -79.323816, 37.117964 ], [ -79.323589, 37.118194 ], [ -79.323104, 37.118678 ], [ -79.322015, 37.119732 ], [ -79.320826, 37.12089 ], [ -79.320279, 37.121415 ], [ -79.31993, 37.121729 ], [ -79.319276, 37.122271 ], [ -79.318828, 37.122609 ], [ -79.318377, 37.122925 ], [ -79.317535, 37.123462 ], [ -79.316595, 37.123987 ], [ -79.315586, 37.124473 ], [ -79.314958, 37.124742 ], [ -79.311931, 37.125973 ], [ -79.303986, 37.129196 ], [ -79.303177, 37.129555 ], [ -79.302367, 37.129915 ], [ -79.30095, 37.130617 ], [ -79.298871, 37.131691 ], [ -79.298008, 37.132146 ], [ -79.293574, 37.134491 ], [ -79.293108, 37.134749 ], [ -79.292712, 37.134937 ], [ -79.292278, 37.135125 ], [ -79.291836, 37.1353 ], [ -79.291351, 37.135473 ], [ -79.290905, 37.135615 ], [ -79.290365, 37.135772 ], [ -79.289641, 37.135941 ], [ -79.289078, 37.136055 ], [ -79.288222, 37.136184 ], [ -79.287781, 37.136228 ], [ -79.287205, 37.136269 ], [ -79.281895, 37.136526 ], [ -79.280512, 37.136607 ], [ -79.279731, 37.13667 ], [ -79.278968, 37.136747 ], [ -79.277922, 37.136872 ], [ -79.276244, 37.13712 ], [ -79.273494, 37.137624 ], [ -79.272005, 37.137904 ], [ -79.271794, 37.137944 ], [ -79.266159, 37.138985 ], [ -79.265643, 37.139056 ], [ -79.265084, 37.139119 ], [ -79.264404, 37.139177 ], [ -79.263826, 37.139213 ], [ -79.263263, 37.139234 ], [ -79.262666, 37.139241 ], [ -79.262103, 37.139234 ], [ -79.26149, 37.139213 ], [ -79.260895, 37.13918 ], [ -79.260488, 37.139149 ], [ -79.257811, 37.138859 ], [ -79.253283, 37.138354 ], [ -79.251817, 37.138189 ], [ -79.251311, 37.138138 ], [ -79.25082, 37.138104 ], [ -79.250344, 37.138087 ], [ -79.249949, 37.138091 ], [ -79.249141, 37.138125 ], [ -79.248701, 37.138169 ], [ -79.248255, 37.138232 ], [ -79.247815, 37.138303 ], [ -79.247404, 37.138388 ], [ -79.246983, 37.138492 ], [ -79.24619, 37.138741 ], [ -79.246034, 37.138799 ], [ -79.245567, 37.138991 ], [ -79.243639, 37.139795 ], [ -79.242121, 37.140435 ], [ -79.241618, 37.140648 ], [ -79.241125, 37.14089 ], [ -79.240755, 37.141103 ], [ -79.240471, 37.141293 ], [ -79.240237, 37.141475 ], [ -79.240023, 37.141661 ], [ -79.239659, 37.142024 ], [ -79.238717, 37.143115 ], [ -79.238653, 37.143189 ], [ -79.238443, 37.143404 ], [ -79.23822, 37.14361 ], [ -79.237972, 37.143817 ], [ -79.237711, 37.144013 ], [ -79.237424, 37.144206 ], [ -79.237139, 37.144378 ], [ -79.236846, 37.144536 ], [ -79.23672, 37.144599 ], [ -79.235366, 37.145185 ], [ -79.235031, 37.145327 ], [ -79.233118, 37.146139 ], [ -79.232943, 37.146214 ], [ -79.23213, 37.146559 ], [ -79.23159, 37.146789 ], [ -79.231268, 37.146943 ], [ -79.230971, 37.147103 ], [ -79.230723, 37.147248 ], [ -79.230589, 37.147333 ], [ -79.230303, 37.147527 ], [ -79.230067, 37.147704 ], [ -79.229831, 37.147902 ], [ -79.229608, 37.148108 ], [ -79.229398, 37.148324 ], [ -79.229192, 37.148559 ], [ -79.229002, 37.148802 ], [ -79.228823, 37.149065 ], [ -79.228683, 37.149299 ], [ -79.228557, 37.149537 ], [ -79.228436, 37.149807 ], [ -79.228332, 37.15008 ], [ -79.22824, 37.150371 ], [ -79.228165, 37.150679 ], [ -79.228144, 37.150787 ], [ -79.22795, 37.1522 ], [ -79.227939, 37.152282 ], [ -79.227922, 37.152405 ], [ -79.227831, 37.1531 ], [ -79.227768, 37.153577 ], [ -79.22775, 37.153704 ], [ -79.227707, 37.153951 ], [ -79.227614, 37.154338 ], [ -79.227519, 37.154642 ], [ -79.227394, 37.154981 ], [ -79.227259, 37.155289 ], [ -79.227113, 37.155579 ], [ -79.227008, 37.155764 ], [ -79.226979, 37.155814 ], [ -79.226931, 37.155892 ], [ -79.22673, 37.156196 ], [ -79.226531, 37.156466 ], [ -79.226359, 37.156679 ], [ -79.226091, 37.156981 ], [ -79.225836, 37.157239 ], [ -79.225577, 37.157477 ], [ -79.225307, 37.157704 ], [ -79.225033, 37.15791 ], [ -79.224838, 37.158043 ], [ -79.223223, 37.159106 ], [ -79.222625, 37.159494 ], [ -79.222577, 37.159525 ], [ -79.222526, 37.159559 ], [ -79.222269, 37.159725 ], [ -79.221758, 37.160065 ], [ -79.219427, 37.161585 ], [ -79.218294, 37.162324 ], [ -79.218211, 37.162378 ], [ -79.216923, 37.163217 ], [ -79.216426, 37.163539 ], [ -79.215909, 37.16389 ], [ -79.215531, 37.164171 ], [ -79.215221, 37.164425 ], [ -79.214936, 37.164678 ], [ -79.214674, 37.164929 ], [ -79.214292, 37.165324 ], [ -79.214244, 37.165374 ], [ -79.213081, 37.166582 ], [ -79.212642, 37.167038 ], [ -79.212368, 37.167324 ], [ -79.212048, 37.167658 ], [ -79.211768, 37.16795 ], [ -79.211486, 37.168245 ], [ -79.211416, 37.168318 ], [ -79.211008, 37.168744 ], [ -79.210963, 37.168791 ], [ -79.210689, 37.16908 ], [ -79.210304, 37.16953 ], [ -79.2101, 37.169782 ], [ -79.209923, 37.170006 ], [ -79.209526, 37.170538 ], [ -79.209343, 37.170798 ], [ -79.207037, 37.174039 ], [ -79.206764, 37.174435 ], [ -79.206634, 37.174641 ], [ -79.206469, 37.174929 ], [ -79.206273, 37.17532 ], [ -79.20615, 37.175603 ], [ -79.206073, 37.175802 ], [ -79.206026, 37.175929 ], [ -79.205916, 37.176273 ], [ -79.205845, 37.176539 ], [ -79.205757, 37.176917 ], [ -79.205696, 37.177164 ], [ -79.205658, 37.177349 ], [ -79.205603, 37.177589 ], [ -79.205562, 37.177759 ], [ -79.205539, 37.177863 ], [ -79.205487, 37.178091 ], [ -79.205427, 37.178344 ], [ -79.205364, 37.178607 ], [ -79.205297, 37.178889 ], [ -79.205253, 37.179068 ], [ -79.20519, 37.179332 ], [ -79.205122, 37.179618 ], [ -79.205055, 37.179895 ], [ -79.204997, 37.180138 ], [ -79.204614, 37.181773 ], [ -79.204588, 37.181883 ], [ -79.204488, 37.182314 ], [ -79.204319, 37.183043 ], [ -79.204265, 37.183268 ], [ -79.204123, 37.18388 ], [ -79.203924, 37.184747 ], [ -79.203855, 37.185167 ], [ -79.203781, 37.185725 ], [ -79.203767, 37.185869 ], [ -79.203714, 37.186727 ], [ -79.203688, 37.188358 ], [ -79.203665, 37.189574 ], [ -79.203624, 37.192626 ], [ -79.203627, 37.192665 ], [ -79.203588, 37.193792 ], [ -79.203572, 37.194229 ], [ -79.203568, 37.194309 ], [ -79.203559, 37.194539 ], [ -79.203553, 37.194676 ], [ -79.203543, 37.194919 ], [ -79.203531, 37.195199 ], [ -79.203502, 37.195859 ], [ -79.203483, 37.196276 ], [ -79.203468, 37.196579 ], [ -79.203458, 37.196792 ], [ -79.203433, 37.197322 ], [ -79.203422, 37.197563 ], [ -79.20341, 37.197824 ], [ -79.203397, 37.198095 ], [ -79.20339, 37.198254 ], [ -79.203379, 37.19847 ], [ -79.203358, 37.198936 ], [ -79.20334, 37.19935 ], [ -79.203304, 37.200071 ], [ -79.203262, 37.200536 ], [ -79.203244, 37.200686 ], [ -79.203162, 37.201241 ], [ -79.203073, 37.201722 ], [ -79.20306, 37.201793 ], [ -79.203026, 37.201977 ], [ -79.202836, 37.203003 ], [ -79.202752, 37.203459 ], [ -79.202563, 37.204478 ], [ -79.202452, 37.205079 ], [ -79.202395, 37.205385 ], [ -79.201856, 37.208299 ], [ -79.201805, 37.208574 ], [ -79.201702, 37.209126 ], [ -79.201673, 37.209268 ], [ -79.201619, 37.209479 ], [ -79.201573, 37.209638 ], [ -79.201505, 37.209836 ], [ -79.201407, 37.210085 ], [ -79.201284, 37.210341 ], [ -79.201114, 37.21064 ], [ -79.201026, 37.210776 ], [ -79.200882, 37.21098 ], [ -79.200649, 37.211282 ], [ -79.200396, 37.211554 ], [ -79.199727, 37.212167 ], [ -79.199637, 37.212249 ], [ -79.199553, 37.212325 ], [ -79.199391, 37.212473 ], [ -79.199159, 37.212684 ], [ -79.19865, 37.213144 ], [ -79.197756, 37.213946 ], [ -79.197588, 37.214097 ], [ -79.197252, 37.214415 ], [ -79.196922, 37.214731 ], [ -79.196487, 37.215166 ], [ -79.196055, 37.215596 ], [ -79.195714, 37.216042 ], [ -79.195395, 37.216449 ], [ -79.194175, 37.218086 ], [ -79.193942, 37.2184 ], [ -79.193714, 37.218705 ], [ -79.193339, 37.219208 ], [ -79.193103, 37.219523 ], [ -79.192804, 37.219924 ], [ -79.192465, 37.220384 ], [ -79.191972, 37.221056 ], [ -79.191665, 37.221486 ], [ -79.191271, 37.222039 ], [ -79.191066, 37.222328 ], [ -79.190837, 37.222648 ], [ -79.190786, 37.222724 ], [ -79.190591, 37.223024 ], [ -79.190561, 37.223069 ], [ -79.190114, 37.223762 ], [ -79.189976, 37.223994 ], [ -79.189786, 37.224314 ], [ -79.189538, 37.224731 ], [ -79.189441, 37.224896 ], [ -79.189231, 37.225287 ], [ -79.188873, 37.225949 ], [ -79.188647, 37.226369 ], [ -79.188578, 37.226497 ], [ -79.188422, 37.22682 ], [ -79.187747, 37.228226 ], [ -79.187638, 37.228454 ], [ -79.186752, 37.230317 ], [ -79.186236, 37.23142 ], [ -79.186183, 37.231531 ], [ -79.186143, 37.231633 ], [ -79.186012, 37.231905 ], [ -79.185971, 37.232009 ], [ -79.185901, 37.232204 ], [ -79.185821, 37.232467 ], [ -79.185783, 37.232629 ], [ -79.185746, 37.232787 ], [ -79.185712, 37.232989 ], [ -79.185564, 37.234115 ], [ -79.18554, 37.234342 ], [ -79.185535, 37.234388 ], [ -79.185527, 37.234464 ], [ -79.185489, 37.234824 ], [ -79.185459, 37.235133 ], [ -79.185442, 37.235447 ], [ -79.185444, 37.235802 ], [ -79.185467, 37.236157 ], [ -79.185494, 37.236478 ], [ -79.185509, 37.236629 ], [ -79.185568, 37.237037 ], [ -79.185613, 37.237268 ], [ -79.185642, 37.237403 ], [ -79.185719, 37.237706 ], [ -79.185791, 37.237965 ], [ -79.185811, 37.238037 ], [ -79.185899, 37.238345 ], [ -79.185952, 37.238527 ], [ -79.18597, 37.23859 ], [ -79.186042, 37.238834 ], [ -79.186525, 37.240494 ], [ -79.186638, 37.240882 ], [ -79.186786, 37.241392 ], [ -79.186995, 37.242108 ], [ -79.187061, 37.242336 ], [ -79.187075, 37.242384 ], [ -79.187298, 37.243149 ], [ -79.187378, 37.243422 ], [ -79.187527, 37.243936 ], [ -79.187774, 37.244774 ], [ -79.187853, 37.245008 ], [ -79.187949, 37.245331 ], [ -79.187975, 37.245426 ], [ -79.18809, 37.245933 ], [ -79.188158, 37.246339 ], [ -79.188193, 37.246639 ], [ -79.188214, 37.246935 ], [ -79.188219, 37.247189 ], [ -79.188219, 37.247284 ], [ -79.188204, 37.247624 ], [ -79.188173, 37.24795 ], [ -79.188121, 37.248287 ], [ -79.188078, 37.248502 ], [ -79.188012, 37.248777 ], [ -79.187964, 37.248948 ], [ -79.18752, 37.250322 ], [ -79.187502, 37.250377 ], [ -79.187461, 37.250489 ], [ -79.187101, 37.251604 ], [ -79.186977, 37.251986 ], [ -79.186803, 37.252487 ], [ -79.186647, 37.252862 ], [ -79.186473, 37.253233 ], [ -79.1864, 37.253375 ], [ -79.186369, 37.253435 ], [ -79.186196, 37.253727 ], [ -79.186096, 37.253883 ], [ -79.185846, 37.254253 ], [ -79.185619, 37.254587 ], [ -79.184816, 37.255765 ], [ -79.184332, 37.256471 ], [ -79.184251, 37.256583 ], [ -79.183919, 37.257073 ], [ -79.183282, 37.258009 ], [ -79.183273, 37.258023 ], [ -79.182658, 37.258928 ], [ -79.182428, 37.259266 ], [ -79.182236, 37.259548 ], [ -79.182189, 37.259617 ], [ -79.181677, 37.260371 ], [ -79.180889, 37.261527 ], [ -79.180329, 37.262346 ], [ -79.179966, 37.262877 ], [ -79.178561, 37.264935 ], [ -79.177834, 37.265998 ], [ -79.17762, 37.266312 ], [ -79.177577, 37.266375 ], [ -79.177344, 37.266717 ], [ -79.177268, 37.266828 ], [ -79.175738, 37.269066 ], [ -79.175293, 37.269718 ], [ -79.175059, 37.270062 ], [ -79.175024, 37.270113 ], [ -79.174746, 37.27052 ], [ -79.174499, 37.270885 ], [ -79.174225, 37.271286 ], [ -79.17318, 37.27282 ], [ -79.172596, 37.273676 ], [ -79.172062, 37.274457 ], [ -79.17205, 37.274476 ], [ -79.171892, 37.274707 ], [ -79.171746, 37.274919 ], [ -79.170612, 37.276581 ], [ -79.170091, 37.277344 ], [ -79.170074, 37.277368 ], [ -79.169014, 37.27887 ], [ -79.168768, 37.279279 ], [ -79.168446, 37.279751 ], [ -79.168095, 37.28026 ], [ -79.167791, 37.280704 ], [ -79.167004, 37.281854 ], [ -79.166839, 37.282126 ], [ -79.166686, 37.282417 ], [ -79.166553, 37.282715 ], [ -79.166455, 37.282978 ], [ -79.166365, 37.283271 ], [ -79.166331, 37.283406 ], [ -79.166277, 37.283662 ], [ -79.166236, 37.283934 ], [ -79.166211, 37.284233 ], [ -79.166208, 37.284331 ], [ -79.16621, 37.284606 ], [ -79.166232, 37.284894 ], [ -79.166273, 37.28518 ], [ -79.166341, 37.285491 ], [ -79.166394, 37.28568 ], [ -79.166419, 37.28576 ], [ -79.16653, 37.286061 ], [ -79.16656, 37.286133 ], [ -79.166601, 37.286228 ], [ -79.167073, 37.287187 ], [ -79.167342, 37.287727 ], [ -79.167647, 37.288335 ], [ -79.167961, 37.288961 ], [ -79.168213, 37.289466 ], [ -79.168669, 37.290363 ], [ -79.169252, 37.291516 ], [ -79.169707, 37.292425 ], [ -79.170019, 37.293049 ], [ -79.170164, 37.293337 ], [ -79.170762, 37.294525 ], [ -79.171017, 37.295032 ], [ -79.171197, 37.29539 ], [ -79.171228, 37.295451 ], [ -79.171707, 37.296402 ], [ -79.171854, 37.296694 ], [ -79.172057, 37.297099 ], [ -79.172329, 37.297639 ], [ -79.172756, 37.298485 ], [ -79.172921, 37.29877 ], [ -79.173118, 37.299071 ], [ -79.173326, 37.299351 ], [ -79.1734, 37.299443 ], [ -79.173711, 37.299824 ], [ -79.174643, 37.300928 ], [ -79.177789, 37.304649 ], [ -79.17841, 37.305383 ], [ -79.179563, 37.306751 ], [ -79.18128, 37.308787 ], [ -79.181492, 37.309036 ], [ -79.181949, 37.309573 ], [ -79.182599, 37.310336 ], [ -79.183198, 37.311046 ], [ -79.183775, 37.311729 ], [ -79.183964, 37.311947 ], [ -79.18428, 37.312314 ], [ -79.18536, 37.313557 ], [ -79.18553, 37.313753 ], [ -79.18588, 37.314159 ], [ -79.186286, 37.314624 ], [ -79.186592, 37.314975 ], [ -79.186893, 37.31532 ], [ -79.187155, 37.315623 ], [ -79.187287, 37.315796 ], [ -79.187433, 37.315958 ], [ -79.187603, 37.316193 ], [ -79.187705, 37.316348 ], [ -79.187781, 37.316469 ], [ -79.187895, 37.316666 ], [ -79.188063, 37.316995 ], [ -79.188211, 37.31734 ], [ -79.188267, 37.317488 ], [ -79.188574, 37.31828 ], [ -79.18873, 37.318682 ], [ -79.188773, 37.318793 ], [ -79.188818, 37.318907 ], [ -79.188983, 37.319332 ], [ -79.189167, 37.319817 ], [ -79.18919, 37.319881 ], [ -79.189276, 37.320122 ], [ -79.189293, 37.320183 ], [ -79.189372, 37.320484 ], [ -79.189407, 37.320635 ], [ -79.189445, 37.320825 ], [ -79.189477, 37.321015 ], [ -79.189492, 37.321115 ], [ -79.189533, 37.321458 ], [ -79.189536, 37.321492 ], [ -79.189586, 37.322119 ], [ -79.189602, 37.322319 ], [ -79.189637, 37.32275 ], [ -79.189647, 37.322876 ], [ -79.189704, 37.323523 ], [ -79.189737, 37.323892 ], [ -79.189747, 37.323997 ], [ -79.189761, 37.324147 ], [ -79.189781, 37.324375 ], [ -79.189798, 37.324545 ], [ -79.189823, 37.324722 ], [ -79.189861, 37.324935 ], [ -79.189896, 37.325095 ], [ -79.189922, 37.3252 ], [ -79.190034, 37.325593 ], [ -79.190115, 37.325884 ], [ -79.190279, 37.326471 ], [ -79.190558, 37.327468 ], [ -79.190626, 37.327737 ], [ -79.190656, 37.327855 ], [ -79.190719, 37.328102 ], [ -79.190893, 37.328783 ], [ -79.19093, 37.328914 ], [ -79.19114, 37.329665 ], [ -79.191197, 37.329849 ], [ -79.191289, 37.330174 ], [ -79.191411, 37.330604 ], [ -79.191427, 37.330662 ], [ -79.191549, 37.331144 ], [ -79.191612, 37.331407 ], [ -79.191674, 37.33166 ], [ -79.191713, 37.331945 ], [ -79.191731, 37.332216 ], [ -79.191727, 37.3324 ], [ -79.191718, 37.332618 ], [ -79.191688, 37.333114 ], [ -79.191671, 37.333265 ], [ -79.191652, 37.333506 ], [ -79.191625, 37.33369 ], [ -79.191591, 37.333978 ], [ -79.191586, 37.334109 ], [ -79.191605, 37.334336 ], [ -79.19161, 37.334672 ], [ -79.191612, 37.334771 ], [ -79.191619, 37.335165 ], [ -79.191615, 37.335425 ], [ -79.191612, 37.335464 ], [ -79.191591, 37.335798 ], [ -79.191573, 37.33597 ], [ -79.19153, 37.336198 ], [ -79.191511, 37.3363 ], [ -79.191476, 37.336481 ], [ -79.191396, 37.336901 ], [ -79.191254, 37.33724 ], [ -79.191108, 37.337564 ], [ -79.190891, 37.337852 ], [ -79.190707, 37.338004 ], [ -79.190446, 37.338136 ], [ -79.190159, 37.338232 ], [ -79.189809, 37.338303 ], [ -79.189504, 37.338343 ], [ -79.189039, 37.338414 ], [ -79.188663, 37.33847 ], [ -79.188351, 37.338526 ], [ -79.18802, 37.338571 ], [ -79.18767, 37.338617 ], [ -79.187276, 37.338677 ], [ -79.18683, 37.338758 ], [ -79.186448, 37.338854 ], [ -79.186232, 37.338986 ], [ -79.186034, 37.339158 ], [ -79.185913, 37.339381 ], [ -79.185862, 37.339654 ], [ -79.185792, 37.339958 ], [ -79.185735, 37.340246 ], [ -79.185608, 37.340565 ], [ -79.185474, 37.340849 ], [ -79.185264, 37.341152 ], [ -79.185009, 37.341421 ], [ -79.184748, 37.341658 ], [ -79.184399, 37.341989 ], [ -79.184093, 37.342254 ], [ -79.183658, 37.342682 ], [ -79.18294, 37.343536 ], [ -79.182113, 37.344505 ], [ -79.181077, 37.345699 ], [ -79.180004, 37.346871 ], [ -79.178729, 37.348196 ], [ -79.177389, 37.349407 ], [ -79.177129, 37.349621 ], [ -79.176626, 37.350036 ], [ -79.173129, 37.353092 ], [ -79.169752, 37.356318 ], [ -79.169186, 37.356859 ], [ -79.166439, 37.359647 ], [ -79.165165, 37.360856 ], [ -79.164528, 37.361444 ], [ -79.163946, 37.361878 ], [ -79.162943, 37.362614 ], [ -79.161891, 37.363349 ], [ -79.159885, 37.364693 ], [ -79.158866, 37.365389 ], [ -79.157915, 37.36609 ], [ -79.156262, 37.367299 ], [ -79.153378, 37.36939 ], [ -79.1513, 37.370777 ], [ -79.148798, 37.372337 ], [ -79.146813, 37.373529 ], [ -79.146135, 37.37394 ], [ -79.145298, 37.374385 ], [ -79.144399, 37.374808 ], [ -79.143032, 37.375351 ], [ -79.142887, 37.375396 ], [ -79.141407, 37.375861 ], [ -79.13952, 37.376309 ], [ -79.137442, 37.376753 ], [ -79.136385, 37.376976 ], [ -79.135221, 37.37722 ], [ -79.134065, 37.377456 ], [ -79.132756, 37.377733 ], [ -79.131505, 37.377997 ], [ -79.130701, 37.378165 ], [ -79.129655, 37.378385 ], [ -79.128812, 37.378561 ], [ -79.127809, 37.378776 ], [ -79.127166, 37.378891 ], [ -79.124907, 37.379433 ], [ -79.122351, 37.380007 ], [ -79.119924, 37.380555 ], [ -79.118369, 37.380958 ], [ -79.116892, 37.381492 ], [ -79.11429, 37.382508 ], [ -79.111589, 37.383564 ], [ -79.110432, 37.384015 ], [ -79.108723, 37.384663 ], [ -79.107004, 37.385341 ], [ -79.10533, 37.38597 ], [ -79.10529, 37.385969 ], [ -79.104874, 37.386095 ], [ -79.104406, 37.386191 ], [ -79.103958, 37.38624 ], [ -79.103328, 37.386271 ], [ -79.101681, 37.386155 ], [ -79.101144, 37.386117 ], [ -79.100418, 37.386038 ], [ -79.097991, 37.385843 ], [ -79.09636, 37.385744 ], [ -79.095982, 37.385658 ], [ -79.095845, 37.385614 ], [ -79.09571, 37.385555 ], [ -79.095567, 37.38548 ], [ -79.095427, 37.38539 ], [ -79.095308, 37.385296 ], [ -79.09517, 37.385161 ], [ -79.09509, 37.385054 ], [ -79.094998, 37.384905 ], [ -79.094916, 37.384737 ], [ -79.094844, 37.384528 ], [ -79.094656, 37.383845 ], [ -79.094531, 37.38345 ], [ -79.094325, 37.383054 ], [ -79.094038, 37.38276 ], [ -79.093621, 37.382467 ], [ -79.093187, 37.382294 ], [ -79.092689, 37.382201 ], [ -79.092284, 37.382201 ], [ -79.091903, 37.382257 ], [ -79.091551, 37.382364 ], [ -79.091187, 37.382541 ], [ -79.090959, 37.382723 ], [ -79.090789, 37.382882 ], [ -79.090589, 37.383115 ], [ -79.090443, 37.383376 ], [ -79.090284, 37.383744 ], [ -79.090225, 37.384 ], [ -79.090179, 37.384541 ], [ -79.090062, 37.385779 ], [ -79.089925, 37.386644 ], [ -79.089849, 37.387226 ], [ -79.089779, 37.387541 ], [ -79.089689, 37.387836 ], [ -79.0895, 37.38838 ], [ -79.089436, 37.388633 ], [ -79.089405, 37.388841 ], [ -79.089289, 37.389685 ], [ -79.089161, 37.39093 ], [ -79.089008, 37.392008 ], [ -79.08881, 37.394069 ], [ -79.088768, 37.394579 ], [ -79.088645, 37.395885 ], [ -79.088477, 37.397207 ], [ -79.087956, 37.401181 ], [ -79.087825, 37.401823 ], [ -79.087665, 37.402308 ], [ -79.087554, 37.402629 ], [ -79.08736, 37.403142 ], [ -79.087142, 37.403562 ], [ -79.086923, 37.403937 ], [ -79.086762, 37.404195 ], [ -79.086439, 37.404708 ], [ -79.086251, 37.405002 ], [ -79.085982, 37.405393 ], [ -79.085647, 37.405896 ], [ -79.085037, 37.406824 ], [ -79.084691, 37.407346 ], [ -79.084239, 37.407998 ], [ -79.084081, 37.408208 ], [ -79.083969, 37.408376 ], [ -79.083852, 37.408534 ], [ -79.083752, 37.408705 ], [ -79.083641, 37.408893 ], [ -79.08253, 37.41059 ], [ -79.082107, 37.41155 ], [ -79.081937, 37.412163 ], [ -79.081833, 37.412538 ], [ -79.081757, 37.413176 ], [ -79.08171, 37.413903 ], [ -79.081751, 37.414774 ], [ -79.081781, 37.415758 ], [ -79.081777, 37.417393 ], [ -79.081646, 37.41901 ], [ -79.081485, 37.420256 ], [ -79.081292, 37.421219 ], [ -79.081057, 37.422257 ], [ -79.080513, 37.424117 ], [ -79.07951, 37.427155 ], [ -79.078061, 37.431195 ], [ -79.077269, 37.433524 ], [ -79.076993, 37.434391 ], [ -79.076647, 37.435495 ], [ -79.076395, 37.436608 ], [ -79.076304, 37.437254 ], [ -79.076229, 37.438019 ], [ -79.076213, 37.439312 ], [ -79.076213, 37.439413 ], [ -79.076155, 37.442774 ], [ -79.07614, 37.443179 ], [ -79.076116, 37.443841 ], [ -79.076046, 37.446058 ], [ -79.075976, 37.449173 ], [ -79.076002, 37.451689 ], [ -79.076065, 37.4523 ], [ -79.076262, 37.453 ], [ -79.076579, 37.453683 ], [ -79.076982, 37.454312 ], [ -79.077536, 37.45501 ], [ -79.079739, 37.457229 ], [ -79.080689, 37.458217 ], [ -79.081531, 37.459252 ], [ -79.082085, 37.460038 ], [ -79.082441, 37.460738 ], [ -79.082708, 37.461304 ], [ -79.082968, 37.461981 ], [ -79.083137, 37.462694 ], [ -79.083265, 37.463513 ], [ -79.083293, 37.464338 ], [ -79.083287, 37.464745 ], [ -79.083277, 37.465166 ], [ -79.083236, 37.465743 ], [ -79.083136, 37.466259 ], [ -79.082678, 37.468029 ], [ -79.082438, 37.469156 ], [ -79.08215, 37.470371 ], [ -79.081963, 37.471033 ], [ -79.081827, 37.471415 ], [ -79.081408, 37.472342 ], [ -79.081005, 37.47309 ], [ -79.080296, 37.474045 ], [ -79.079641, 37.474751 ], [ -79.078249, 37.476094 ], [ -79.077451, 37.477058 ], [ -79.076776, 37.477863 ], [ -79.076213, 37.478711 ], [ -79.075638, 37.479763 ], [ -79.075274, 37.480624 ], [ -79.074869, 37.481821 ], [ -79.074675, 37.482594 ], [ -79.074634, 37.482892 ], [ -79.074593, 37.483204 ], [ -79.07457, 37.483627 ], [ -79.074448, 37.484732 ], [ -79.074331, 37.485753 ], [ -79.074167, 37.486518 ], [ -79.073888, 37.487326 ], [ -79.073467, 37.488074 ], [ -79.07305, 37.488846 ], [ -79.072616, 37.489619 ], [ -79.072018, 37.490699 ], [ -79.07163, 37.49136 ], [ -79.070791, 37.492896 ], [ -79.070146, 37.494186 ], [ -79.06953, 37.495438 ], [ -79.068703, 37.497026 ], [ -79.067817, 37.498799 ], [ -79.067177, 37.500098 ], [ -79.066497, 37.501471 ], [ -79.066168, 37.502341 ], [ -79.065974, 37.503063 ], [ -79.065895, 37.503746 ], [ -79.065857, 37.504329 ], [ -79.065851, 37.505804 ], [ -79.065851, 37.506847 ], [ -79.065828, 37.508187 ], [ -79.065831, 37.509824 ], [ -79.0658, 37.510657 ], [ -79.065769, 37.511273 ], [ -79.065628, 37.51191 ], [ -79.065455, 37.512506 ], [ -79.065165, 37.513111 ], [ -79.064807, 37.513823 ], [ -79.064426, 37.514512 ], [ -79.063986, 37.515424 ], [ -79.063804, 37.515903 ], [ -79.063545, 37.516788 ], [ -79.063328, 37.51796 ], [ -79.063264, 37.519296 ], [ -79.063311, 37.520208 ], [ -79.063487, 37.521209 ], [ -79.063645, 37.522214 ], [ -79.063845, 37.523275 ], [ -79.06425, 37.525364 ], [ -79.064871, 37.528602 ], [ -79.065376, 37.531264 ], [ -79.066057, 37.534819 ], [ -79.066725, 37.538252 ], [ -79.0674, 37.541904 ], [ -79.06794, 37.544546 ], [ -79.068021, 37.545221 ], [ -79.068093, 37.545891 ], [ -79.068075, 37.546616 ], [ -79.067977, 37.547323 ], [ -79.067805, 37.547989 ], [ -79.06729, 37.549617 ], [ -79.066508, 37.552189 ], [ -79.066203, 37.55312 ], [ -79.065916, 37.554199 ], [ -79.06571, 37.554864 ], [ -79.065358, 37.555901 ], [ -79.06462, 37.558162 ], [ -79.064236, 37.559374 ], [ -79.064086, 37.559848 ], [ -79.063835, 37.560896 ], [ -79.063609, 37.561383 ], [ -79.063256, 37.561986 ], [ -79.062896, 37.562503 ], [ -79.062134, 37.563345 ], [ -79.061625, 37.563753 ], [ -79.06094, 37.564213 ], [ -79.058641, 37.565583 ], [ -79.05758, 37.566208 ], [ -79.056639, 37.566768 ], [ -79.055935, 37.567192 ], [ -79.055742, 37.567302 ], [ -79.055553, 37.567416 ], [ -79.055246, 37.567615 ], [ -79.054927, 37.567838 ], [ -79.054748, 37.567977 ], [ -79.054525, 37.568169 ], [ -79.05429, 37.568391 ], [ -79.054239, 37.568442 ], [ -79.054034, 37.568657 ], [ -79.053873, 37.56885 ], [ -79.053657, 37.569143 ], [ -79.053524, 37.569347 ], [ -79.053368, 37.569618 ], [ -79.053228, 37.569894 ], [ -79.053172, 37.570026 ], [ -79.053043, 37.570358 ], [ -79.05286, 37.57095 ], [ -79.052677, 37.571527 ], [ -79.052485, 37.572133 ], [ -79.052132, 37.573261 ], [ -79.051632, 37.57486 ], [ -79.051348, 37.57574 ], [ -79.051123, 37.576286 ], [ -79.051087, 37.576361 ], [ -79.050788, 37.576916 ], [ -79.050662, 37.577116 ], [ -79.050472, 37.577395 ], [ -79.050278, 37.577652 ], [ -79.050057, 37.577924 ], [ -79.049759, 37.578262 ], [ -79.049412, 37.578608 ], [ -79.049047, 37.578931 ], [ -79.047001, 37.580602 ], [ -79.046515, 37.580994 ], [ -79.046166, 37.58126 ], [ -79.045909, 37.581455 ], [ -79.04561, 37.58167 ], [ -79.045264, 37.581887 ], [ -79.044961, 37.582077 ], [ -79.044149, 37.582573 ], [ -79.04353, 37.582927 ], [ -79.04291, 37.58327 ], [ -79.042129, 37.58371 ], [ -79.041873, 37.583864 ], [ -79.041806, 37.58391 ], [ -79.041621, 37.584017 ], [ -79.041414, 37.584155 ], [ -79.041178, 37.58431 ], [ -79.040635, 37.584689 ], [ -79.039894, 37.585255 ], [ -79.039608, 37.585491 ], [ -79.03912, 37.585904 ], [ -79.038845, 37.586155 ], [ -79.038474, 37.586513 ], [ -79.03781, 37.587198 ], [ -79.037358, 37.587719 ], [ -79.037086, 37.588056 ], [ -79.036877, 37.588331 ], [ -79.036498, 37.588836 ], [ -79.036258, 37.589205 ], [ -79.035926, 37.589739 ], [ -79.034645, 37.591992 ], [ -79.034482, 37.592286 ], [ -79.034097, 37.592957 ], [ -79.033913, 37.593255 ], [ -79.033669, 37.593669 ], [ -79.033006, 37.594819 ], [ -79.032654, 37.595452 ], [ -79.032044, 37.596522 ], [ -79.031678, 37.597159 ], [ -79.031353, 37.597735 ], [ -79.03004, 37.600074 ], [ -79.029644, 37.600763 ], [ -79.028963, 37.601951 ], [ -79.028685, 37.602397 ], [ -79.02851, 37.602662 ], [ -79.028221, 37.603043 ], [ -79.027978, 37.603341 ], [ -79.027692, 37.60368 ], [ -79.027548, 37.60383 ], [ -79.027306, 37.604072 ], [ -79.027105, 37.604269 ], [ -79.02697, 37.604392 ], [ -79.026652, 37.60468 ], [ -79.026083, 37.605207 ], [ -79.026036, 37.60525 ], [ -79.025989, 37.605294 ], [ -79.025872, 37.605402 ], [ -79.02555, 37.605685 ], [ -79.025303, 37.605893 ], [ -79.025239, 37.605951 ], [ -79.025075, 37.606102 ], [ -79.024795, 37.606358 ], [ -79.024408, 37.606702 ], [ -79.024072, 37.607013 ], [ -79.024053, 37.607031 ], [ -79.023787, 37.607264 ], [ -79.023498, 37.607516 ], [ -79.023027, 37.607911 ], [ -79.022811, 37.60807 ], [ -79.022583, 37.608218 ], [ -79.022393, 37.608329 ], [ -79.022103, 37.608478 ], [ -79.021864, 37.608585 ], [ -79.021424, 37.608752 ], [ -79.020855, 37.608965 ], [ -79.020271, 37.609195 ], [ -79.020171, 37.609236 ], [ -79.019921, 37.609348 ], [ -79.019569, 37.609526 ], [ -79.019341, 37.609661 ], [ -79.019134, 37.609801 ], [ -79.018938, 37.609951 ], [ -79.018736, 37.61013 ], [ -79.018557, 37.610318 ], [ -79.018408, 37.6105 ], [ -79.018273, 37.610689 ], [ -79.018177, 37.610845 ], [ -79.018077, 37.611005 ], [ -79.017942, 37.61127 ], [ -79.01775, 37.611733 ], [ -79.017583, 37.612195 ], [ -79.017453, 37.612536 ], [ -79.01736, 37.612779 ], [ -79.017077, 37.613518 ], [ -79.016316, 37.615651 ], [ -79.016211, 37.615921 ], [ -79.015957, 37.616661 ], [ -79.015442, 37.618041 ], [ -79.015171, 37.618767 ], [ -79.015044, 37.619085 ], [ -79.014896, 37.619401 ], [ -79.014725, 37.619699 ], [ -79.014609, 37.619891 ], [ -79.014507, 37.620046 ], [ -79.014326, 37.620291 ], [ -79.014076, 37.620611 ], [ -79.013882, 37.620808 ], [ -79.013583, 37.621079 ], [ -79.012998, 37.621504 ], [ -79.01238, 37.621893 ], [ -79.010646, 37.622959 ], [ -79.01003, 37.623323 ], [ -79.009112, 37.623886 ], [ -79.007841, 37.62468 ], [ -79.007669, 37.624786 ], [ -79.00613, 37.625753 ], [ -79.00574, 37.625992 ], [ -79.004933, 37.626484 ], [ -79.004251, 37.626912 ], [ -79.004139, 37.626981 ], [ -79.003154, 37.627592 ], [ -79.001641, 37.628516 ], [ -79.001111, 37.628835 ], [ -79.00072, 37.62907 ], [ -79.000623, 37.62914 ], [ -79.000217, 37.629394 ], [ -78.998912, 37.630202 ], [ -78.998196, 37.630645 ], [ -78.997598, 37.631025 ], [ -78.997526, 37.631071 ], [ -78.997241, 37.631274 ], [ -78.996875, 37.631534 ], [ -78.996217, 37.63205 ], [ -78.995656, 37.632525 ], [ -78.995017, 37.633129 ], [ -78.994464, 37.633668 ], [ -78.993794, 37.634338 ], [ -78.992582, 37.635539 ], [ -78.99241, 37.635715 ], [ -78.992112, 37.636 ], [ -78.991971, 37.636127 ], [ -78.991598, 37.636454 ], [ -78.991319, 37.636676 ], [ -78.991111, 37.636827 ], [ -78.990724, 37.637089 ], [ -78.990344, 37.637324 ], [ -78.989967, 37.637537 ], [ -78.989578, 37.637737 ], [ -78.988855, 37.638052 ], [ -78.98807, 37.638382 ], [ -78.986736, 37.63892 ], [ -78.986454, 37.639034 ], [ -78.985803, 37.639316 ], [ -78.984897, 37.639687 ], [ -78.98388, 37.640096 ], [ -78.983117, 37.640414 ], [ -78.982726, 37.640573 ], [ -78.981774, 37.640959 ], [ -78.979687, 37.64182 ], [ -78.978231, 37.642417 ], [ -78.977005, 37.64291 ], [ -78.97646, 37.643116 ], [ -78.975777, 37.643333 ], [ -78.975711, 37.643354 ], [ -78.97542, 37.643425 ], [ -78.974834, 37.643551 ], [ -78.974604, 37.64359 ], [ -78.974067, 37.643681 ], [ -78.973393, 37.643752 ], [ -78.972559, 37.643813 ], [ -78.972242, 37.643839 ], [ -78.970006, 37.64399 ], [ -78.96903, 37.64406 ], [ -78.968589, 37.644095 ], [ -78.968224, 37.644136 ], [ -78.967889, 37.644182 ], [ -78.967664, 37.644226 ], [ -78.967387, 37.644293 ], [ -78.967224, 37.644341 ], [ -78.966957, 37.64443 ], [ -78.966688, 37.644536 ], [ -78.966474, 37.644631 ], [ -78.966164, 37.644789 ], [ -78.965983, 37.644902 ], [ -78.965692, 37.645098 ], [ -78.965428, 37.645294 ], [ -78.965238, 37.645456 ], [ -78.965063, 37.645628 ], [ -78.964898, 37.645816 ], [ -78.964762, 37.645992 ], [ -78.964605, 37.646219 ], [ -78.964465, 37.646453 ], [ -78.964354, 37.646672 ], [ -78.96426, 37.646896 ], [ -78.964184, 37.647124 ], [ -78.964105, 37.647472 ], [ -78.964045, 37.647822 ], [ -78.963795, 37.650137 ], [ -78.963771, 37.650446 ], [ -78.963726, 37.650831 ], [ -78.963699, 37.651104 ], [ -78.963637, 37.651545 ], [ -78.963559, 37.651968 ], [ -78.963475, 37.652244 ], [ -78.963403, 37.652439 ], [ -78.963343, 37.65259 ], [ -78.963259, 37.652771 ], [ -78.963211, 37.652855 ], [ -78.963159, 37.652948 ], [ -78.963044, 37.653119 ], [ -78.962876, 37.65334 ], [ -78.962692, 37.653554 ], [ -78.961989, 37.654258 ], [ -78.961507, 37.654728 ], [ -78.961039, 37.655181 ], [ -78.960337, 37.655875 ], [ -78.96023, 37.655972 ], [ -78.960126, 37.656071 ], [ -78.959777, 37.656385 ], [ -78.959596, 37.656559 ], [ -78.959428, 37.656733 ], [ -78.95894, 37.657212 ], [ -78.958347, 37.65781 ], [ -78.957955, 37.658265 ], [ -78.957902, 37.65834 ], [ -78.957703, 37.658582 ], [ -78.956957, 37.659613 ], [ -78.956, 37.660952 ], [ -78.95555, 37.661601 ], [ -78.95521, 37.662149 ], [ -78.955078, 37.662367 ], [ -78.954742, 37.662988 ], [ -78.954584, 37.663297 ], [ -78.954305, 37.663917 ], [ -78.954148, 37.6643 ], [ -78.953981, 37.664751 ], [ -78.953842, 37.665162 ], [ -78.953791, 37.665348 ], [ -78.953693, 37.665702 ], [ -78.953658, 37.665836 ], [ -78.953519, 37.666441 ], [ -78.953449, 37.666806 ], [ -78.953407, 37.667104 ], [ -78.953324, 37.667763 ], [ -78.953292, 37.668183 ], [ -78.953221, 37.669156 ], [ -78.953153, 37.670098 ], [ -78.953142, 37.670264 ], [ -78.953141, 37.6704 ], [ -78.953072, 37.671177 ], [ -78.95304, 37.671615 ], [ -78.952995, 37.672174 ], [ -78.952947, 37.672942 ], [ -78.95292, 37.673225 ], [ -78.952878, 37.673819 ], [ -78.952829, 37.674339 ], [ -78.952797, 37.674686 ], [ -78.952784, 37.674804 ], [ -78.952747, 37.675024 ], [ -78.952692, 37.675301 ], [ -78.952624, 37.675578 ], [ -78.952561, 37.675784 ], [ -78.952486, 37.675985 ], [ -78.952442, 37.676122 ], [ -78.952386, 37.676257 ], [ -78.95232, 37.676433 ], [ -78.952115, 37.676852 ], [ -78.952045, 37.676981 ], [ -78.951895, 37.677259 ], [ -78.951765, 37.677478 ], [ -78.951015, 37.678688 ], [ -78.950642, 37.679294 ], [ -78.950106, 37.680167 ], [ -78.949932, 37.680439 ], [ -78.949555, 37.681057 ], [ -78.948514, 37.682749 ], [ -78.948346, 37.683014 ], [ -78.94819, 37.68327 ], [ -78.947933, 37.683687 ], [ -78.947735, 37.683997 ], [ -78.946949, 37.685284 ], [ -78.946763, 37.685577 ], [ -78.946171, 37.686544 ], [ -78.946077, 37.686718 ], [ -78.945972, 37.686928 ], [ -78.945848, 37.687201 ], [ -78.945794, 37.687349 ], [ -78.945689, 37.687661 ], [ -78.945632, 37.687901 ], [ -78.945568, 37.688266 ], [ -78.945541, 37.688542 ], [ -78.945537, 37.688659 ], [ -78.945545, 37.689126 ], [ -78.945579, 37.689434 ], [ -78.945664, 37.689907 ], [ -78.945683, 37.68999 ], [ -78.945776, 37.690456 ], [ -78.945835, 37.69071 ], [ -78.945961, 37.691323 ], [ -78.946182, 37.69241 ], [ -78.946237, 37.692788 ], [ -78.946274, 37.693085 ], [ -78.946296, 37.693491 ], [ -78.946303, 37.694022 ], [ -78.946301, 37.694057 ], [ -78.946287, 37.694387 ], [ -78.946261, 37.694709 ], [ -78.946249, 37.694805 ], [ -78.946182, 37.695293 ], [ -78.946055, 37.695876 ], [ -78.945864, 37.696567 ], [ -78.945405, 37.698162 ], [ -78.945298, 37.698548 ], [ -78.944826, 37.700186 ], [ -78.944719, 37.700501 ], [ -78.94458, 37.700835 ], [ -78.944457, 37.701074 ], [ -78.944324, 37.701307 ], [ -78.944135, 37.701595 ], [ -78.944026, 37.701738 ], [ -78.943778, 37.70202 ], [ -78.943504, 37.702305 ], [ -78.943214, 37.702564 ], [ -78.94302, 37.702719 ], [ -78.942935, 37.702779 ], [ -78.942809, 37.702868 ], [ -78.942485, 37.703077 ], [ -78.942218, 37.703232 ], [ -78.9405, 37.704132 ], [ -78.940455, 37.704155 ], [ -78.940006, 37.704381 ], [ -78.938227, 37.705302 ], [ -78.93698, 37.705948 ], [ -78.93647, 37.706225 ], [ -78.93488, 37.707122 ], [ -78.934646, 37.707256 ], [ -78.93388, 37.707679 ], [ -78.933448, 37.707924 ], [ -78.932774, 37.708305 ], [ -78.931107, 37.709235 ], [ -78.929365, 37.710215 ], [ -78.928987, 37.710423 ], [ -78.928188, 37.710873 ], [ -78.927848, 37.711058 ], [ -78.927739, 37.711117 ], [ -78.927286, 37.71134 ], [ -78.927035, 37.711449 ], [ -78.926705, 37.711572 ], [ -78.926357, 37.711684 ], [ -78.926015, 37.711773 ], [ -78.925764, 37.711831 ], [ -78.925742, 37.711836 ], [ -78.925395, 37.711899 ], [ -78.925098, 37.711943 ], [ -78.92463, 37.712006 ], [ -78.924358, 37.71204 ], [ -78.9241, 37.712072 ], [ -78.923317, 37.712168 ], [ -78.922673, 37.712257 ], [ -78.921644, 37.712386 ], [ -78.920771, 37.712503 ], [ -78.91879, 37.712755 ], [ -78.917763, 37.712894 ], [ -78.916758, 37.713029 ], [ -78.916316, 37.713107 ], [ -78.915891, 37.713204 ], [ -78.915614, 37.71328 ], [ -78.915324, 37.713372 ], [ -78.915274, 37.713388 ], [ -78.914912, 37.71352 ], [ -78.91455, 37.71367 ], [ -78.914179, 37.713842 ], [ -78.913675, 37.714085 ], [ -78.912967, 37.714415 ], [ -78.910226, 37.715714 ], [ -78.90939, 37.716116 ], [ -78.908844, 37.716378 ], [ -78.908565, 37.716525 ], [ -78.908344, 37.716654 ], [ -78.908223, 37.716733 ], [ -78.907898, 37.716972 ], [ -78.907709, 37.71712 ], [ -78.907284, 37.717479 ], [ -78.905705, 37.718784 ], [ -78.905314, 37.719084 ], [ -78.90491, 37.719372 ], [ -78.904525, 37.719604 ], [ -78.904033, 37.719882 ], [ -78.903337, 37.720265 ], [ -78.902528, 37.720722 ], [ -78.902455, 37.720766 ], [ -78.902055, 37.720998 ], [ -78.901704, 37.721237 ], [ -78.901372, 37.721492 ], [ -78.901207, 37.721632 ], [ -78.901102, 37.721732 ], [ -78.90093, 37.721897 ], [ -78.900791, 37.722043 ], [ -78.900736, 37.722103 ], [ -78.900601, 37.722261 ], [ -78.900394, 37.722523 ], [ -78.900222, 37.722764 ], [ -78.900079, 37.722992 ], [ -78.900004, 37.723131 ], [ -78.899716, 37.723665 ], [ -78.899467, 37.724145 ], [ -78.899406, 37.724274 ], [ -78.89922, 37.72461 ], [ -78.899008, 37.725016 ], [ -78.898838, 37.725322 ], [ -78.898749, 37.725462 ], [ -78.898619, 37.725684 ], [ -78.898501, 37.725886 ], [ -78.898424, 37.726009 ], [ -78.898396, 37.726054 ], [ -78.89823, 37.726333 ], [ -78.897785, 37.72702 ], [ -78.897326, 37.727687 ], [ -78.897029, 37.728104 ], [ -78.896755, 37.72847 ], [ -78.896087, 37.729327 ], [ -78.895376, 37.730223 ], [ -78.89492, 37.73078 ], [ -78.894224, 37.731648 ], [ -78.893951, 37.731982 ], [ -78.893208, 37.732922 ], [ -78.893101, 37.733073 ], [ -78.892951, 37.733284 ], [ -78.892829, 37.733486 ], [ -78.892725, 37.733694 ], [ -78.892653, 37.733852 ], [ -78.892395, 37.734583 ], [ -78.892264, 37.735006 ], [ -78.891874, 37.73617 ], [ -78.891809, 37.736394 ], [ -78.891615, 37.736972 ], [ -78.891508, 37.737307 ], [ -78.891316, 37.737819 ], [ -78.891154, 37.738191 ], [ -78.891075, 37.738356 ], [ -78.891011, 37.738485 ], [ -78.890701, 37.739024 ], [ -78.890539, 37.739262 ], [ -78.890353, 37.739521 ], [ -78.890119, 37.739847 ], [ -78.889796, 37.740253 ], [ -78.889491, 37.740645 ], [ -78.889217, 37.740996 ], [ -78.888944, 37.74133 ], [ -78.888623, 37.741743 ], [ -78.888513, 37.741886 ], [ -78.888267, 37.742188 ], [ -78.887876, 37.742653 ], [ -78.887675, 37.74287 ], [ -78.887504, 37.743037 ], [ -78.887277, 37.743237 ], [ -78.887216, 37.743287 ], [ -78.887135, 37.743353 ], [ -78.886534, 37.743824 ], [ -78.886162, 37.744125 ], [ -78.8861, 37.744182 ], [ -78.885899, 37.744355 ], [ -78.885622, 37.744575 ], [ -78.885356, 37.74478 ], [ -78.884605, 37.745388 ], [ -78.884042, 37.74585 ], [ -78.882882, 37.746752 ], [ -78.882051, 37.747417 ], [ -78.880834, 37.748391 ], [ -78.88003, 37.749038 ], [ -78.879751, 37.749271 ], [ -78.879568, 37.74942 ], [ -78.879376, 37.749569 ], [ -78.878419, 37.750353 ], [ -78.877854, 37.750804 ], [ -78.877584, 37.751037 ], [ -78.877286, 37.751315 ], [ -78.877004, 37.751598 ], [ -78.876844, 37.751774 ], [ -78.876626, 37.752042 ], [ -78.876378, 37.752385 ], [ -78.876192, 37.752665 ], [ -78.876061, 37.752882 ], [ -78.875814, 37.753345 ], [ -78.875209, 37.754691 ], [ -78.874619, 37.756931 ], [ -78.874501, 37.757307 ], [ -78.874339, 37.757855 ], [ -78.873994, 37.758979 ], [ -78.873789, 37.759637 ], [ -78.873696, 37.75991 ], [ -78.873541, 37.760318 ], [ -78.873332, 37.760834 ], [ -78.873094, 37.761337 ], [ -78.872847, 37.761808 ], [ -78.872451, 37.762468 ], [ -78.872257, 37.76277 ], [ -78.871993, 37.763172 ], [ -78.871574, 37.763799 ], [ -78.871327, 37.764167 ], [ -78.871012, 37.764642 ], [ -78.870469, 37.765468 ], [ -78.870316, 37.765702 ], [ -78.870042, 37.766126 ], [ -78.869873, 37.766412 ], [ -78.869781, 37.766589 ], [ -78.869687, 37.766814 ], [ -78.869585, 37.76708 ], [ -78.869516, 37.767314 ], [ -78.869424, 37.767698 ], [ -78.869391, 37.767942 ], [ -78.86938, 37.768238 ], [ -78.869389, 37.768459 ], [ -78.869415, 37.768673 ], [ -78.869485, 37.768991 ], [ -78.869567, 37.769255 ], [ -78.86966, 37.769515 ], [ -78.869743, 37.769714 ], [ -78.869793, 37.769822 ], [ -78.870127, 37.770634 ], [ -78.870244, 37.770938 ], [ -78.870299, 37.771157 ], [ -78.870337, 37.771378 ], [ -78.870379, 37.771605 ], [ -78.870392, 37.771879 ], [ -78.870378, 37.772127 ], [ -78.870337, 37.772397 ], [ -78.870272, 37.77267 ], [ -78.870248, 37.772764 ], [ -78.87004, 37.773562 ], [ -78.869728, 37.774718 ], [ -78.869574, 37.775264 ], [ -78.869411, 37.775864 ], [ -78.869234, 37.776522 ], [ -78.869061, 37.777151 ], [ -78.868889, 37.777735 ], [ -78.868643, 37.778648 ], [ -78.868399, 37.779571 ], [ -78.868224, 37.780198 ], [ -78.868067, 37.780782 ], [ -78.867497, 37.782893 ], [ -78.867434, 37.783141 ], [ -78.867364, 37.783414 ], [ -78.867185, 37.784047 ], [ -78.867156, 37.784152 ], [ -78.867042, 37.784562 ], [ -78.866921, 37.785054 ], [ -78.866779, 37.785508 ], [ -78.866518, 37.786333 ], [ -78.866458, 37.786501 ], [ -78.866348, 37.786832 ], [ -78.866066, 37.787709 ], [ -78.865703, 37.788816 ], [ -78.865457, 37.789659 ], [ -78.865164, 37.790592 ], [ -78.864927, 37.791345 ], [ -78.864619, 37.792175 ], [ -78.864507, 37.792484 ], [ -78.864363, 37.792792 ], [ -78.864228, 37.793041 ], [ -78.864067, 37.7933 ], [ -78.863882, 37.793548 ], [ -78.863684, 37.793797 ], [ -78.863319, 37.794211 ], [ -78.863117, 37.794344 ], [ -78.86295, 37.794541 ], [ -78.862701, 37.794857 ], [ -78.86248, 37.795184 ], [ -78.862275, 37.795518 ], [ -78.862199, 37.795651 ], [ -78.862007, 37.796159 ], [ -78.861989, 37.79622 ], [ -78.861909, 37.796548 ], [ -78.861883, 37.796687 ], [ -78.861846, 37.796942 ], [ -78.861828, 37.797235 ], [ -78.861827, 37.797529 ], [ -78.861837, 37.797754 ], [ -78.861844, 37.797901 ], [ -78.861878, 37.798631 ], [ -78.861919, 37.799738 ], [ -78.861971, 37.800826 ], [ -78.862007, 37.801869 ], [ -78.862081, 37.803303 ], [ -78.862104, 37.80423 ], [ -78.86209, 37.804437 ], [ -78.862063, 37.804642 ], [ -78.862038, 37.804754 ], [ -78.862023, 37.804816 ], [ -78.861947, 37.805046 ], [ -78.861861, 37.805246 ], [ -78.861771, 37.805437 ], [ -78.86165, 37.805634 ], [ -78.861512, 37.805817 ], [ -78.861343, 37.806004 ], [ -78.860353, 37.806994 ], [ -78.859848, 37.807481 ], [ -78.858512, 37.808821 ], [ -78.858367, 37.808958 ], [ -78.858079, 37.809211 ], [ -78.857729, 37.809505 ], [ -78.857293, 37.80986 ], [ -78.856987, 37.81009 ], [ -78.856658, 37.810338 ], [ -78.855693, 37.81105 ], [ -78.85561, 37.811115 ], [ -78.855262, 37.811371 ], [ -78.854965, 37.811605 ], [ -78.853694, 37.812587 ], [ -78.853389, 37.812818 ], [ -78.852362, 37.813637 ], [ -78.851981, 37.813912 ], [ -78.851517, 37.814266 ], [ -78.851057, 37.81462 ], [ -78.85085, 37.814768 ], [ -78.850729, 37.814859 ], [ -78.850652, 37.81492 ], [ -78.850085, 37.815369 ], [ -78.848637, 37.81648 ], [ -78.846503, 37.818117 ], [ -78.846263, 37.818303 ], [ -78.845641, 37.818784 ], [ -78.845198, 37.81912 ], [ -78.844287, 37.819835 ], [ -78.843809, 37.820229 ], [ -78.841255, 37.822413 ], [ -78.840635, 37.822925 ], [ -78.840114, 37.823377 ], [ -78.839772, 37.823685 ], [ -78.839408, 37.824047 ], [ -78.839049, 37.824425 ], [ -78.838766, 37.824737 ], [ -78.838386, 37.825182 ], [ -78.838147, 37.825481 ], [ -78.837849, 37.82588 ], [ -78.837407, 37.826506 ], [ -78.837204, 37.826823 ], [ -78.837053, 37.827081 ], [ -78.836731, 37.827595 ], [ -78.836452, 37.828104 ], [ -78.836275, 37.828399 ], [ -78.836111, 37.828667 ], [ -78.835849, 37.82912 ], [ -78.835504, 37.829691 ], [ -78.835352, 37.829945 ], [ -78.83498, 37.830568 ], [ -78.834935, 37.830642 ], [ -78.834826, 37.830821 ], [ -78.834646, 37.831137 ], [ -78.834377, 37.831577 ], [ -78.833853, 37.832462 ], [ -78.833724, 37.832692 ], [ -78.833217, 37.833546 ], [ -78.831919, 37.835713 ], [ -78.831568, 37.836263 ], [ -78.831293, 37.836637 ], [ -78.831013, 37.836981 ], [ -78.83077, 37.837252 ], [ -78.829687, 37.838434 ], [ -78.829526, 37.8386 ], [ -78.829353, 37.838766 ], [ -78.828845, 37.839208 ], [ -78.828553, 37.839442 ], [ -78.828248, 37.839665 ], [ -78.827736, 37.840071 ], [ -78.82744, 37.840316 ], [ -78.827359, 37.840393 ], [ -78.827219, 37.840526 ], [ -78.827033, 37.840723 ], [ -78.82681, 37.840985 ], [ -78.826636, 37.841213 ], [ -78.826324, 37.841668 ], [ -78.825848, 37.842321 ], [ -78.825635, 37.842569 ], [ -78.825481, 37.842727 ], [ -78.825276, 37.842917 ], [ -78.825211, 37.842971 ], [ -78.825103, 37.843062 ], [ -78.824902, 37.843225 ], [ -78.824735, 37.84334 ], [ -78.824467, 37.843502 ], [ -78.824206, 37.843652 ], [ -78.82312, 37.844198 ], [ -78.822611, 37.844456 ], [ -78.821878, 37.84482 ], [ -78.820981, 37.845244 ], [ -78.82067, 37.845389 ], [ -78.820264, 37.845536 ], [ -78.820038, 37.845598 ], [ -78.819873, 37.845635 ], [ -78.81967, 37.845683 ], [ -78.819501, 37.845707 ], [ -78.819221, 37.845735 ], [ -78.818871, 37.845752 ], [ -78.818684, 37.845746 ], [ -78.818377, 37.845729 ], [ -78.818065, 37.845689 ], [ -78.817748, 37.845635 ], [ -78.817461, 37.845563 ], [ -78.817089, 37.845456 ], [ -78.81664, 37.845308 ], [ -78.816094, 37.845137 ], [ -78.815801, 37.845042 ], [ -78.815106, 37.844835 ], [ -78.814203, 37.844545 ], [ -78.813661, 37.844372 ], [ -78.813194, 37.844227 ], [ -78.812793, 37.844119 ], [ -78.812466, 37.844059 ], [ -78.812161, 37.844015 ], [ -78.811899, 37.843994 ], [ -78.811692, 37.843985 ], [ -78.81145, 37.844002 ], [ -78.811288, 37.844022 ], [ -78.810966, 37.84409 ], [ -78.810704, 37.844162 ], [ -78.810498, 37.844229 ], [ -78.810246, 37.844336 ], [ -78.80993, 37.84449 ], [ -78.809727, 37.844605 ], [ -78.809573, 37.844705 ], [ -78.809276, 37.84492 ], [ -78.809029, 37.845076 ], [ -78.808807, 37.845199 ], [ -78.808527, 37.845332 ], [ -78.808311, 37.845419 ], [ -78.808089, 37.845498 ], [ -78.807811, 37.845579 ], [ -78.807589, 37.845643 ], [ -78.807297, 37.845708 ], [ -78.807, 37.845759 ], [ -78.806691, 37.845797 ], [ -78.806302, 37.845837 ], [ -78.805184, 37.845933 ], [ -78.80503, 37.845945 ], [ -78.804012, 37.846026 ], [ -78.800837, 37.846324 ], [ -78.800537, 37.846339 ], [ -78.800237, 37.846355 ], [ -78.800014, 37.846352 ], [ -78.79976, 37.846345 ], [ -78.799425, 37.846321 ], [ -78.799048, 37.846276 ], [ -78.79881, 37.846227 ], [ -78.798587, 37.846183 ], [ -78.798334, 37.846121 ], [ -78.798127, 37.846044 ], [ -78.797833, 37.845932 ], [ -78.797473, 37.845765 ], [ -78.797183, 37.845617 ], [ -78.796923, 37.845465 ], [ -78.796357, 37.845082 ], [ -78.795818, 37.844712 ], [ -78.795607, 37.84458 ], [ -78.795352, 37.844427 ], [ -78.795147, 37.84431 ], [ -78.794915, 37.844201 ], [ -78.794645, 37.844085 ], [ -78.794419, 37.843996 ], [ -78.794095, 37.843903 ], [ -78.793805, 37.843828 ], [ -78.793467, 37.843774 ], [ -78.793125, 37.84374 ], [ -78.792933, 37.843732 ], [ -78.792722, 37.843723 ], [ -78.792238, 37.84372 ], [ -78.791688, 37.843732 ], [ -78.791137, 37.843731 ], [ -78.790713, 37.843712 ], [ -78.790444, 37.843693 ], [ -78.79016, 37.843657 ], [ -78.78988, 37.843607 ], [ -78.789604, 37.843542 ], [ -78.789363, 37.843478 ], [ -78.789067, 37.843389 ], [ -78.788706, 37.843253 ], [ -78.78839, 37.843125 ], [ -78.788101, 37.843016 ], [ -78.78765, 37.842857 ], [ -78.787324, 37.842748 ], [ -78.787056, 37.84268 ], [ -78.786677, 37.842606 ], [ -78.786459, 37.842568 ], [ -78.786292, 37.842537 ], [ -78.785994, 37.842501 ], [ -78.785649, 37.842467 ], [ -78.785267, 37.842457 ], [ -78.784945, 37.842456 ], [ -78.784589, 37.842468 ], [ -78.782212, 37.842633 ], [ -78.780497, 37.842776 ], [ -78.779987, 37.842814 ], [ -78.778924, 37.842896 ], [ -78.77812, 37.842986 ], [ -78.777773, 37.843042 ], [ -78.777066, 37.843144 ], [ -78.776444, 37.84325 ], [ -78.775647, 37.843402 ], [ -78.774632, 37.843601 ], [ -78.773646, 37.843786 ], [ -78.773282, 37.843855 ], [ -78.772981, 37.843912 ], [ -78.772128, 37.844091 ], [ -78.771161, 37.844316 ], [ -78.770651, 37.844441 ], [ -78.769991, 37.844616 ], [ -78.768859, 37.844941 ], [ -78.768162, 37.845142 ], [ -78.767015, 37.845472 ], [ -78.76637, 37.845658 ], [ -78.765119, 37.846012 ], [ -78.761663, 37.84701 ], [ -78.760903, 37.847224 ], [ -78.760298, 37.847402 ], [ -78.75996, 37.847506 ], [ -78.7597, 37.847596 ], [ -78.759532, 37.84765 ], [ -78.759113, 37.847806 ], [ -78.758783, 37.847948 ], [ -78.758412, 37.84812 ], [ -78.758057, 37.848288 ], [ -78.757154, 37.848747 ], [ -78.756986, 37.848829 ], [ -78.756546, 37.849062 ], [ -78.756115, 37.849306 ], [ -78.755862, 37.849458 ], [ -78.755244, 37.849843 ], [ -78.754769, 37.85013 ], [ -78.754377, 37.85038 ], [ -78.753945, 37.850672 ], [ -78.753673, 37.850873 ], [ -78.753364, 37.851127 ], [ -78.753217, 37.851259 ], [ -78.752739, 37.851715 ], [ -78.752046, 37.852374 ], [ -78.75166, 37.852719 ], [ -78.751401, 37.852929 ], [ -78.751134, 37.853132 ], [ -78.750789, 37.853376 ], [ -78.750504, 37.853564 ], [ -78.750081, 37.853824 ], [ -78.74973, 37.854021 ], [ -78.749369, 37.854207 ], [ -78.748998, 37.85438 ], [ -78.748624, 37.854531 ], [ -78.748053, 37.854743 ], [ -78.747045, 37.85508 ], [ -78.746537, 37.855262 ], [ -78.746473, 37.855285 ], [ -78.745985, 37.855474 ], [ -78.7456, 37.855635 ], [ -78.744986, 37.855911 ], [ -78.744673, 37.856064 ], [ -78.744246, 37.856299 ], [ -78.743761, 37.856591 ], [ -78.743416, 37.856817 ], [ -78.742954, 37.857145 ], [ -78.742639, 37.857387 ], [ -78.742337, 37.85764 ], [ -78.742294, 37.85768 ], [ -78.741896, 37.858045 ], [ -78.741503, 37.85843 ], [ -78.741291, 37.858648 ], [ -78.741254, 37.858686 ], [ -78.740963, 37.859027 ], [ -78.740705, 37.859351 ], [ -78.740668, 37.859398 ], [ -78.740453, 37.85968 ], [ -78.739901, 37.860385 ], [ -78.739675, 37.860647 ], [ -78.739434, 37.860902 ], [ -78.739176, 37.861151 ], [ -78.73895, 37.861357 ], [ -78.738655, 37.861604 ], [ -78.738411, 37.861795 ], [ -78.738094, 37.862025 ], [ -78.737733, 37.862262 ], [ -78.737429, 37.862445 ], [ -78.73708, 37.862638 ], [ -78.73657, 37.862893 ], [ -78.736186, 37.863088 ], [ -78.735435, 37.86348 ], [ -78.734529, 37.863942 ], [ -78.733874, 37.864271 ], [ -78.733562, 37.864427 ], [ -78.733042, 37.864704 ], [ -78.732039, 37.865214 ], [ -78.731948, 37.865258 ], [ -78.731785, 37.865335 ], [ -78.731411, 37.86553 ], [ -78.730148, 37.866169 ], [ -78.729986, 37.866254 ], [ -78.729722, 37.866391 ], [ -78.728688, 37.866913 ], [ -78.727888, 37.86733 ], [ -78.727529, 37.86751 ], [ -78.726765, 37.867904 ], [ -78.726166, 37.868202 ], [ -78.725869, 37.868361 ], [ -78.725428, 37.868579 ], [ -78.725084, 37.868757 ], [ -78.724518, 37.869049 ], [ -78.723898, 37.869354 ], [ -78.722779, 37.869945 ], [ -78.721592, 37.870542 ], [ -78.720481, 37.87111 ], [ -78.719958, 37.871373 ], [ -78.719701, 37.871497 ], [ -78.719365, 37.871672 ], [ -78.718719, 37.872028 ], [ -78.71847, 37.872183 ], [ -78.718164, 37.872388 ], [ -78.717945, 37.872553 ], [ -78.717592, 37.872851 ], [ -78.717285, 37.873139 ], [ -78.717049, 37.873363 ], [ -78.716739, 37.873728 ], [ -78.716536, 37.874002 ], [ -78.716395, 37.874221 ], [ -78.716144, 37.874657 ], [ -78.71604, 37.87487 ], [ -78.715888, 37.875212 ], [ -78.715814, 37.875401 ], [ -78.715694, 37.87571 ], [ -78.715495, 37.876238 ], [ -78.715377, 37.876548 ], [ -78.715275, 37.876817 ], [ -78.71521, 37.877013 ], [ -78.715136, 37.877211 ], [ -78.715081, 37.877371 ], [ -78.714995, 37.877587 ], [ -78.71492, 37.877787 ], [ -78.7148, 37.878131 ], [ -78.714687, 37.878428 ], [ -78.714533, 37.878796 ], [ -78.714454, 37.879009 ], [ -78.714417, 37.879116 ], [ -78.714256, 37.879549 ], [ -78.714141, 37.879854 ], [ -78.713896, 37.880594 ], [ -78.713756, 37.881038 ], [ -78.713682, 37.88126 ], [ -78.713617, 37.881457 ], [ -78.713533, 37.881697 ], [ -78.713446, 37.881943 ], [ -78.713394, 37.882108 ], [ -78.713314, 37.882336 ], [ -78.713184, 37.882655 ], [ -78.713006, 37.883053 ], [ -78.712892, 37.883274 ], [ -78.712733, 37.88355 ], [ -78.712558, 37.88384 ], [ -78.712369, 37.884119 ], [ -78.712275, 37.884257 ], [ -78.712136, 37.884449 ], [ -78.711974, 37.884667 ], [ -78.711814, 37.884876 ], [ -78.711641, 37.885085 ], [ -78.711418, 37.885345 ], [ -78.711139, 37.885644 ], [ -78.710798, 37.88599 ], [ -78.710465, 37.886309 ], [ -78.710195, 37.886555 ], [ -78.709928, 37.886781 ], [ -78.709577, 37.88706 ], [ -78.709406, 37.887199 ], [ -78.709211, 37.887345 ], [ -78.708778, 37.887648 ], [ -78.707968, 37.888179 ], [ -78.707642, 37.888399 ], [ -78.707473, 37.88851 ], [ -78.707244, 37.888663 ], [ -78.706965, 37.888843 ], [ -78.706601, 37.889083 ], [ -78.706088, 37.889425 ], [ -78.705712, 37.889669 ], [ -78.705189, 37.890019 ], [ -78.704893, 37.890211 ], [ -78.703445, 37.891162 ], [ -78.703041, 37.891429 ], [ -78.702721, 37.891638 ], [ -78.702327, 37.891905 ], [ -78.70184, 37.892223 ], [ -78.701163, 37.892662 ], [ -78.700778, 37.892933 ], [ -78.70071, 37.892981 ], [ -78.700622, 37.893046 ], [ -78.700337, 37.893272 ], [ -78.69999, 37.89357 ], [ -78.699755, 37.8938 ], [ -78.699482, 37.894099 ], [ -78.699289, 37.894329 ], [ -78.698787, 37.894984 ], [ -78.698558, 37.895284 ], [ -78.69837, 37.895519 ], [ -78.698116, 37.895851 ], [ -78.697966, 37.896055 ], [ -78.697696, 37.896407 ], [ -78.697057, 37.897242 ], [ -78.696439, 37.898041 ], [ -78.695681, 37.899035 ], [ -78.695049, 37.899863 ], [ -78.694658, 37.900403 ], [ -78.694519, 37.900599 ], [ -78.694429, 37.900733 ], [ -78.693954, 37.901464 ], [ -78.693721, 37.901862 ], [ -78.693473, 37.902275 ], [ -78.693102, 37.902981 ], [ -78.692879, 37.903439 ], [ -78.692797, 37.903623 ], [ -78.692129, 37.905105 ], [ -78.691808, 37.905817 ], [ -78.691268, 37.906984 ], [ -78.690987, 37.907549 ], [ -78.690814, 37.907874 ], [ -78.690688, 37.908089 ], [ -78.690521, 37.908372 ], [ -78.690275, 37.908767 ], [ -78.689663, 37.909657 ], [ -78.689078, 37.910492 ], [ -78.685485, 37.915666 ], [ -78.684467, 37.917131 ], [ -78.682047, 37.920608 ], [ -78.681785, 37.92095 ], [ -78.681517, 37.921272 ], [ -78.681241, 37.921578 ], [ -78.68101, 37.921818 ], [ -78.680605, 37.922194 ], [ -78.68013, 37.922617 ], [ -78.679566, 37.923137 ], [ -78.679307, 37.923403 ], [ -78.678986, 37.92374 ], [ -78.678605, 37.924203 ], [ -78.678345, 37.924561 ], [ -78.678124, 37.924891 ], [ -78.677903, 37.925227 ], [ -78.677688, 37.925589 ], [ -78.677544, 37.925878 ], [ -78.67731, 37.926442 ], [ -78.676551, 37.928284 ], [ -78.676404, 37.928595 ], [ -78.676242, 37.928949 ], [ -78.676148, 37.929122 ], [ -78.675977, 37.929377 ], [ -78.675612, 37.929807 ], [ -78.675385, 37.930086 ], [ -78.675213, 37.930312 ], [ -78.675004, 37.930559 ], [ -78.674617, 37.931044 ], [ -78.67407, 37.931702 ], [ -78.673673, 37.932201 ], [ -78.673281, 37.9327 ], [ -78.672994, 37.933082 ], [ -78.672166, 37.934227 ], [ -78.671112, 37.935771 ], [ -78.670762, 37.936281 ], [ -78.670385, 37.936817 ], [ -78.669877, 37.937599 ], [ -78.668999, 37.93886 ], [ -78.667671, 37.940789 ], [ -78.666721, 37.942158 ], [ -78.666126, 37.943118 ], [ -78.665597, 37.944014 ], [ -78.665125, 37.944827 ], [ -78.664642, 37.945633 ], [ -78.664087, 37.946602 ], [ -78.663665, 37.947366 ], [ -78.663523, 37.947648 ], [ -78.663363, 37.948007 ], [ -78.66312, 37.948581 ], [ -78.662992, 37.948919 ], [ -78.662788, 37.949511 ], [ -78.662392, 37.950794 ], [ -78.662127, 37.951686 ], [ -78.661907, 37.952368 ], [ -78.6618, 37.952667 ], [ -78.661673, 37.952964 ], [ -78.661549, 37.953229 ], [ -78.661377, 37.953546 ], [ -78.661172, 37.953875 ], [ -78.660975, 37.954168 ], [ -78.660712, 37.954527 ], [ -78.660589, 37.954686 ], [ -78.660525, 37.954768 ], [ -78.660204, 37.955161 ], [ -78.659899, 37.955515 ], [ -78.65946, 37.956045 ], [ -78.659107, 37.956472 ], [ -78.658939, 37.95668 ], [ -78.658404, 37.957325 ], [ -78.658185, 37.957583 ], [ -78.657413, 37.958505 ], [ -78.65713, 37.958855 ], [ -78.65677, 37.959264 ], [ -78.656612, 37.959431 ], [ -78.656439, 37.95959 ], [ -78.656251, 37.959739 ], [ -78.656068, 37.959867 ], [ -78.655989, 37.959917 ], [ -78.655752, 37.960052 ], [ -78.655575, 37.96015 ], [ -78.655228, 37.960289 ], [ -78.654931, 37.960405 ], [ -78.653275, 37.960978 ], [ -78.652399, 37.961277 ], [ -78.651659, 37.961545 ], [ -78.651372, 37.96167 ], [ -78.651131, 37.961788 ], [ -78.650953, 37.961888 ], [ -78.65077, 37.962003 ], [ -78.650655, 37.962074 ], [ -78.650545, 37.96215 ], [ -78.650369, 37.962277 ], [ -78.650124, 37.962492 ], [ -78.649827, 37.962781 ], [ -78.649528, 37.963082 ], [ -78.649157, 37.963468 ], [ -78.648771, 37.96385 ], [ -78.648569, 37.964042 ], [ -78.648236, 37.964318 ], [ -78.647928, 37.964546 ], [ -78.647355, 37.964951 ], [ -78.646421, 37.965624 ], [ -78.646034, 37.965897 ], [ -78.645591, 37.966218 ], [ -78.645351, 37.966376 ], [ -78.645051, 37.966569 ], [ -78.644735, 37.966754 ], [ -78.644581, 37.96684 ], [ -78.6444, 37.966936 ], [ -78.643915, 37.967163 ], [ -78.643555, 37.967319 ], [ -78.643147, 37.967465 ], [ -78.642853, 37.967561 ], [ -78.642519, 37.96766 ], [ -78.642395, 37.967695 ], [ -78.642095, 37.967768 ], [ -78.641871, 37.967823 ], [ -78.641449, 37.967916 ], [ -78.640993, 37.967991 ], [ -78.640408, 37.968066 ], [ -78.639997, 37.968103 ], [ -78.639496, 37.96813 ], [ -78.638995, 37.968136 ], [ -78.638434, 37.968125 ], [ -78.637944, 37.9681 ], [ -78.63612, 37.967958 ], [ -78.635136, 37.967873 ], [ -78.633802, 37.96777 ], [ -78.632073, 37.967631 ], [ -78.631801, 37.967611 ], [ -78.630935, 37.967546 ], [ -78.630424, 37.967503 ], [ -78.629697, 37.967442 ], [ -78.628686, 37.967361 ], [ -78.626167, 37.967159 ], [ -78.623282, 37.966927 ], [ -78.622258, 37.96685 ], [ -78.621932, 37.966824 ], [ -78.620819, 37.966736 ], [ -78.620381, 37.966716 ], [ -78.620004, 37.966712 ], [ -78.619679, 37.966717 ], [ -78.61937, 37.966745 ], [ -78.619064, 37.966787 ], [ -78.618761, 37.966844 ], [ -78.618523, 37.9669 ], [ -78.618222, 37.966977 ], [ -78.617837, 37.967103 ], [ -78.617525, 37.967224 ], [ -78.617264, 37.967333 ], [ -78.616866, 37.967526 ], [ -78.61666, 37.96764 ], [ -78.616487, 37.967735 ], [ -78.616266, 37.967872 ], [ -78.615844, 37.968137 ], [ -78.615555, 37.968338 ], [ -78.615229, 37.968577 ], [ -78.614931, 37.968831 ], [ -78.614607, 37.969142 ], [ -78.614381, 37.96937 ], [ -78.614151, 37.969646 ], [ -78.613964, 37.96988 ], [ -78.613494, 37.970554 ], [ -78.61301, 37.971246 ], [ -78.612831, 37.971512 ], [ -78.612279, 37.972333 ], [ -78.611229, 37.97389 ], [ -78.610819, 37.974494 ], [ -78.610719, 37.974624 ], [ -78.610499, 37.974897 ], [ -78.610319, 37.975118 ], [ -78.610116, 37.975331 ], [ -78.609966, 37.975469 ], [ -78.609796, 37.975624 ], [ -78.609591, 37.975796 ], [ -78.609317, 37.976004 ], [ -78.609071, 37.976176 ], [ -78.608849, 37.976327 ], [ -78.608744, 37.97639 ], [ -78.608365, 37.976619 ], [ -78.608101, 37.976752 ], [ -78.607845, 37.976869 ], [ -78.607584, 37.976978 ], [ -78.60725, 37.977103 ], [ -78.606977, 37.977192 ], [ -78.606625, 37.977297 ], [ -78.606266, 37.977388 ], [ -78.606123, 37.977418 ], [ -78.605902, 37.977465 ], [ -78.605646, 37.97752 ], [ -78.605621, 37.977522 ], [ -78.605549, 37.977538 ], [ -78.60423, 37.977756 ], [ -78.602588, 37.978034 ], [ -78.602162, 37.978122 ], [ -78.601825, 37.978203 ], [ -78.601492, 37.978293 ], [ -78.601094, 37.978414 ], [ -78.60071, 37.978547 ], [ -78.600334, 37.978694 ], [ -78.599967, 37.978854 ], [ -78.599486, 37.979083 ], [ -78.599163, 37.979252 ], [ -78.598789, 37.97947 ], [ -78.598549, 37.979624 ], [ -78.597946, 37.980033 ], [ -78.596889, 37.98075 ], [ -78.595137, 37.981939 ], [ -78.593704, 37.982911 ], [ -78.592376, 37.98382 ], [ -78.590854, 37.984906 ], [ -78.590225, 37.985373 ], [ -78.588999, 37.98631 ], [ -78.588012, 37.9871 ], [ -78.587089, 37.987859 ], [ -78.586722, 37.988171 ], [ -78.586183, 37.988631 ], [ -78.585023, 37.989655 ], [ -78.583908, 37.990662 ], [ -78.583686, 37.990885 ], [ -78.583478, 37.991116 ], [ -78.583203, 37.991447 ], [ -78.583057, 37.991641 ], [ -78.582889, 37.99189 ], [ -78.582734, 37.992152 ], [ -78.582584, 37.992445 ], [ -78.582451, 37.992743 ], [ -78.582318, 37.993104 ], [ -78.582229, 37.993396 ], [ -78.582158, 37.993692 ], [ -78.582061, 37.994255 ], [ -78.581989, 37.994788 ], [ -78.581919, 37.9952 ], [ -78.581831, 37.99573 ], [ -78.581596, 37.997239 ], [ -78.581525, 37.997665 ], [ -78.58147, 37.998088 ], [ -78.581083, 38.000517 ], [ -78.580993, 38.001016 ], [ -78.580912, 38.001332 ], [ -78.580857, 38.001514 ], [ -78.580851, 38.001532 ], [ -78.580827, 38.001607 ], [ -78.580788, 38.001711 ], [ -78.580764, 38.001783 ], [ -78.580638, 38.002087 ], [ -78.580501, 38.002397 ], [ -78.580338, 38.002682 ], [ -78.580176, 38.002939 ], [ -78.580026, 38.003155 ], [ -78.57984, 38.003394 ], [ -78.579631, 38.003641 ], [ -78.579528, 38.003748 ], [ -78.579258, 38.004014 ], [ -78.578985, 38.00426 ], [ -78.578784, 38.004426 ], [ -78.578575, 38.004584 ], [ -78.578379, 38.004723 ], [ -78.578122, 38.004899 ], [ -78.577709, 38.005151 ], [ -78.577431, 38.005306 ], [ -78.577141, 38.005444 ], [ -78.576923, 38.005542 ], [ -78.576628, 38.005666 ], [ -78.576327, 38.005766 ], [ -78.576154, 38.005828 ], [ -78.575371, 38.006031 ], [ -78.574274, 38.006313 ], [ -78.573929, 38.006397 ], [ -78.573678, 38.006459 ], [ -78.5731, 38.006602 ], [ -78.572544, 38.006742 ], [ -78.570845, 38.007165 ], [ -78.570536, 38.007245 ], [ -78.570147, 38.007346 ], [ -78.569511, 38.007502 ], [ -78.568866, 38.007677 ], [ -78.568449, 38.007795 ], [ -78.568216, 38.007865 ], [ -78.567861, 38.007984 ], [ -78.567483, 38.008116 ], [ -78.567008, 38.00831 ], [ -78.566642, 38.008471 ], [ -78.566222, 38.008672 ], [ -78.565813, 38.008887 ], [ -78.565381, 38.009126 ], [ -78.564818, 38.009422 ], [ -78.564544, 38.009563 ], [ -78.564196, 38.009735 ], [ -78.564075, 38.009787 ], [ -78.56369, 38.009944 ], [ -78.56326, 38.010103 ], [ -78.562849, 38.010238 ], [ -78.562529, 38.010332 ], [ -78.562124, 38.010438 ], [ -78.561805, 38.010515 ], [ -78.561564, 38.010564 ], [ -78.56093, 38.010675 ], [ -78.560028, 38.010845 ], [ -78.558824, 38.011064 ], [ -78.558024, 38.011219 ], [ -78.557648, 38.011286 ], [ -78.557386, 38.011333 ], [ -78.557058, 38.011387 ], [ -78.555118, 38.011755 ], [ -78.554112, 38.011931 ], [ -78.552878, 38.012156 ], [ -78.552449, 38.01225 ], [ -78.552186, 38.012316 ], [ -78.551829, 38.012417 ], [ -78.551365, 38.012562 ], [ -78.55109, 38.012655 ], [ -78.550658, 38.012829 ], [ -78.550236, 38.013017 ], [ -78.549599, 38.013364 ], [ -78.549376, 38.013492 ], [ -78.549058, 38.013698 ], [ -78.548469, 38.01411 ], [ -78.547659, 38.014674 ], [ -78.547468, 38.014808 ], [ -78.54736, 38.014884 ], [ -78.547042, 38.015096 ], [ -78.546611, 38.015362 ], [ -78.546269, 38.015559 ], [ -78.54592, 38.01574 ], [ -78.545223, 38.016069 ], [ -78.544841, 38.016247 ], [ -78.543906, 38.016682 ], [ -78.543654, 38.016806 ], [ -78.54333, 38.016982 ], [ -78.542733, 38.017318 ], [ -78.542466, 38.017467 ], [ -78.539711, 38.018979 ], [ -78.536725, 38.020664 ], [ -78.535885, 38.021132 ], [ -78.535518, 38.021335 ], [ -78.534742, 38.021766 ], [ -78.534188, 38.022073 ], [ -78.532955, 38.02276 ], [ -78.532173, 38.023196 ], [ -78.531193, 38.023747 ], [ -78.531125, 38.023792 ], [ -78.53075, 38.024045 ], [ -78.530445, 38.024274 ], [ -78.530203, 38.024476 ], [ -78.530016, 38.024649 ], [ -78.529931, 38.024733 ], [ -78.52985, 38.024806 ], [ -78.529798, 38.024854 ], [ -78.529758, 38.024894 ], [ -78.529598, 38.025065 ], [ -78.529327, 38.025386 ], [ -78.52916, 38.025608 ], [ -78.528945, 38.025933 ], [ -78.5288, 38.026176 ], [ -78.528672, 38.026426 ], [ -78.52861, 38.026566 ], [ -78.528405, 38.027066 ], [ -78.52833, 38.027311 ], [ -78.528283, 38.02751 ], [ -78.528235, 38.027689 ], [ -78.528151, 38.028145 ], [ -78.527582, 38.03105 ], [ -78.527126, 38.033402 ], [ -78.52703, 38.033972 ], [ -78.526914, 38.034782 ], [ -78.526868, 38.035166 ], [ -78.52679, 38.036035 ], [ -78.526753, 38.036647 ], [ -78.526715, 38.03781 ], [ -78.526642, 38.040878 ], [ -78.526607, 38.042081 ], [ -78.526584, 38.042473 ], [ -78.526544, 38.042863 ], [ -78.52645, 38.043462 ], [ -78.526353, 38.043907 ], [ -78.526306, 38.044099 ], [ -78.526225, 38.044382 ], [ -78.526103, 38.044762 ], [ -78.525978, 38.045116 ], [ -78.52595, 38.045183 ], [ -78.525619, 38.045973 ], [ -78.525226, 38.046882 ], [ -78.524837, 38.047794 ], [ -78.524807, 38.047861 ], [ -78.524712, 38.048073 ], [ -78.523664, 38.050524 ], [ -78.523608, 38.050633 ], [ -78.523449, 38.050945 ], [ -78.523194, 38.051371 ], [ -78.522992, 38.051667 ], [ -78.522896, 38.051793 ], [ -78.522708, 38.052033 ], [ -78.522379, 38.052403 ], [ -78.522049, 38.052728 ], [ -78.521736, 38.053004 ], [ -78.521375, 38.053289 ], [ -78.521061, 38.053512 ], [ -78.520792, 38.053687 ], [ -78.520433, 38.053898 ], [ -78.5202, 38.054028 ], [ -78.519924, 38.054166 ], [ -78.519561, 38.054329 ], [ -78.519179, 38.054486 ], [ -78.518827, 38.054612 ], [ -78.518437, 38.054736 ], [ -78.518106, 38.054829 ], [ -78.517883, 38.054877 ], [ -78.517638, 38.05494 ], [ -78.517298, 38.055006 ], [ -78.51674, 38.055093 ], [ -78.515503, 38.055228 ], [ -78.513125, 38.055506 ], [ -78.51298, 38.05552 ], [ -78.511721, 38.055664 ], [ -78.510089, 38.05585 ], [ -78.509444, 38.055931 ], [ -78.508892, 38.056018 ], [ -78.508324, 38.056121 ], [ -78.50762, 38.056269 ], [ -78.507101, 38.056364 ], [ -78.5063, 38.056529 ], [ -78.504207, 38.056975 ], [ -78.503544, 38.057129 ], [ -78.50332, 38.057173 ], [ -78.50218, 38.05739 ], [ -78.501769, 38.057476 ], [ -78.501588, 38.057518 ], [ -78.501288, 38.05758 ], [ -78.500918, 38.057644 ], [ -78.50053, 38.057699 ], [ -78.50025, 38.057721 ], [ -78.49999, 38.057731 ], [ -78.4996, 38.057738 ], [ -78.499258, 38.057729 ], [ -78.499228, 38.057727 ], [ -78.498789, 38.057695 ], [ -78.498509, 38.057667 ], [ -78.498249, 38.05764 ], [ -78.497868, 38.057604 ], [ -78.497658, 38.057584 ], [ -78.497235, 38.057537 ], [ -78.496848, 38.057489 ], [ -78.495893, 38.057371 ], [ -78.494978, 38.057279 ], [ -78.49472, 38.057173 ], [ -78.494659, 38.057142 ], [ -78.494592, 38.057093 ], [ -78.494549, 38.057047 ], [ -78.494516, 38.056995 ], [ -78.494502, 38.05695 ], [ -78.494493, 38.056874 ], [ -78.494502, 38.056798 ], [ -78.494522, 38.056739 ], [ -78.494562, 38.056669 ], [ -78.494623, 38.05661 ], [ -78.494697, 38.056562 ], [ -78.494781, 38.056525 ], [ -78.494872, 38.056502 ], [ -78.49496, 38.056493 ], [ -78.495044, 38.0565 ], [ -78.495109, 38.056516 ], [ -78.495169, 38.056541 ], [ -78.495238, 38.056584 ], [ -78.49528, 38.056617 ], [ -78.495339, 38.05668 ], [ -78.495381, 38.056751 ], [ -78.495402, 38.056811 ], [ -78.495415, 38.056894 ], [ -78.495413, 38.056998 ], [ -78.495388, 38.057116 ], [ -78.49528, 38.057239 ], [ -78.495007, 38.057577 ], [ -78.494845, 38.057747 ], [ -78.494782, 38.057825 ], [ -78.494593, 38.05807 ], [ -78.494413, 38.058298 ], [ -78.494268, 38.05847 ], [ -78.494235, 38.058509 ], [ -78.494159, 38.058601 ], [ -78.493967, 38.058833 ], [ -78.493505, 38.059401 ], [ -78.493364, 38.059586 ], [ -78.492889, 38.060182 ], [ -78.492564, 38.060616 ], [ -78.492196, 38.061101 ], [ -78.491916, 38.061468 ], [ -78.491724, 38.061722 ], [ -78.491723, 38.061722 ], [ -78.491578, 38.061897 ], [ -78.491244, 38.062293 ], [ -78.490863, 38.062734 ], [ -78.490477, 38.063153 ], [ -78.490269, 38.06338 ], [ -78.489937, 38.063742 ], [ -78.48969, 38.064008 ], [ -78.489478, 38.064259 ], [ -78.489344, 38.064409 ], [ -78.489289, 38.06447 ], [ -78.489212, 38.064554 ], [ -78.488761, 38.065053 ], [ -78.48815, 38.065739 ], [ -78.488116, 38.065779 ], [ -78.487867, 38.06605 ], [ -78.48713, 38.06686 ], [ -78.486995, 38.067008 ], [ -78.486825, 38.067194 ], [ -78.486343, 38.067727 ], [ -78.486218, 38.067866 ], [ -78.486208, 38.067877 ], [ -78.486134, 38.067959 ], [ -78.48576, 38.068363 ], [ -78.485475, 38.06867 ], [ -78.485154, 38.069027 ], [ -78.484295, 38.070023 ], [ -78.484063, 38.070271 ], [ -78.483776, 38.070614 ], [ -78.483281, 38.071164 ], [ -78.482433, 38.07211 ], [ -78.480968, 38.073741 ], [ -78.480778, 38.073943 ], [ -78.480706, 38.07403 ], [ -78.480376, 38.074401 ], [ -78.479882, 38.074956 ], [ -78.479801, 38.075034 ], [ -78.479272, 38.075634 ], [ -78.478606, 38.076375 ], [ -78.478527, 38.076469 ], [ -78.478367, 38.076647 ], [ -78.477091, 38.078062 ], [ -78.476397, 38.078846 ], [ -78.475743, 38.079571 ], [ -78.474543, 38.08091 ], [ -78.474163, 38.081335 ], [ -78.473969, 38.081577 ], [ -78.473788, 38.081788 ], [ -78.473613, 38.082014 ], [ -78.47347, 38.082218 ], [ -78.472971, 38.083082 ], [ -78.472639, 38.083666 ], [ -78.472264, 38.084319 ], [ -78.471709, 38.085285 ], [ -78.471146, 38.086271 ], [ -78.47079, 38.086895 ], [ -78.470583, 38.087258 ], [ -78.47026, 38.087825 ], [ -78.469568, 38.089039 ], [ -78.468607, 38.090712 ], [ -78.468501, 38.090897 ], [ -78.468139, 38.091557 ], [ -78.468043, 38.091733 ], [ -78.467922, 38.09192 ], [ -78.467732, 38.092218 ], [ -78.46735, 38.0929 ], [ -78.466766, 38.093924 ], [ -78.466497, 38.09437 ], [ -78.466369, 38.094558 ], [ -78.46599, 38.095057 ], [ -78.465526, 38.09564 ], [ -78.465381, 38.095816 ], [ -78.464933, 38.096381 ], [ -78.464463, 38.096962 ], [ -78.464049, 38.097474 ], [ -78.463974, 38.097573 ], [ -78.463441, 38.098232 ], [ -78.46294, 38.098874 ], [ -78.462231, 38.099765 ], [ -78.461478, 38.100721 ], [ -78.460943, 38.101395 ], [ -78.460544, 38.101882 ], [ -78.460009, 38.102564 ], [ -78.459568, 38.103126 ], [ -78.459337, 38.103403 ], [ -78.458603, 38.10429 ], [ -78.457804, 38.105297 ], [ -78.45751, 38.105695 ], [ -78.4569, 38.106619 ], [ -78.456598, 38.107068 ], [ -78.45544, 38.108845 ], [ -78.454988, 38.109578 ], [ -78.454476, 38.110311 ], [ -78.454296, 38.110569 ], [ -78.454206, 38.110708 ], [ -78.454093, 38.110899 ], [ -78.453942, 38.111128 ], [ -78.453769, 38.111409 ], [ -78.453294, 38.112125 ], [ -78.453172, 38.112318 ], [ -78.452856, 38.112817 ], [ -78.452688, 38.11307 ], [ -78.452602, 38.113223 ], [ -78.451975, 38.114186 ], [ -78.451686, 38.11461 ], [ -78.45106, 38.115568 ], [ -78.450908, 38.115798 ], [ -78.450496, 38.11642 ], [ -78.450419, 38.116537 ], [ -78.45032, 38.116697 ], [ -78.450137, 38.116993 ], [ -78.449702, 38.117634 ], [ -78.449172, 38.118448 ], [ -78.448773, 38.119065 ], [ -78.448006, 38.120242 ], [ -78.447677, 38.120726 ], [ -78.447299, 38.121219 ], [ -78.44692, 38.121631 ], [ -78.446411, 38.122124 ], [ -78.4458, 38.12267 ], [ -78.444661, 38.123687 ], [ -78.442392, 38.125724 ], [ -78.441529, 38.126494 ], [ -78.440922, 38.127044 ], [ -78.440006, 38.127866 ], [ -78.439371, 38.128436 ], [ -78.437997, 38.129669 ], [ -78.437902, 38.129754 ], [ -78.437019, 38.130549 ], [ -78.436453, 38.131059 ], [ -78.436187, 38.131299 ], [ -78.435995, 38.13147 ], [ -78.435251, 38.132172 ], [ -78.435106, 38.132303 ], [ -78.434673, 38.132753 ], [ -78.434293, 38.13317 ], [ -78.433695, 38.133887 ], [ -78.433416, 38.134269 ], [ -78.433195, 38.134572 ], [ -78.432173, 38.13616 ], [ -78.430917, 38.138131 ], [ -78.430468, 38.138847 ], [ -78.429836, 38.139833 ], [ -78.429464, 38.140424 ], [ -78.428859, 38.141359 ], [ -78.428348, 38.142178 ], [ -78.428275, 38.142291 ], [ -78.427887, 38.14289 ], [ -78.427641, 38.143278 ], [ -78.427277, 38.143851 ], [ -78.427263, 38.143873 ], [ -78.425718, 38.146293 ], [ -78.4249, 38.147586 ], [ -78.423982, 38.149017 ], [ -78.423879, 38.149181 ], [ -78.4234, 38.149936 ], [ -78.422346, 38.1516 ], [ -78.42208, 38.151996 ], [ -78.421684, 38.152621 ], [ -78.421337, 38.15319 ], [ -78.420383, 38.154692 ], [ -78.419605, 38.155908 ], [ -78.417659, 38.158962 ], [ -78.415009, 38.163121 ], [ -78.414626, 38.163716 ], [ -78.414541, 38.163851 ], [ -78.414293, 38.164245 ], [ -78.412771, 38.16663 ], [ -78.41231, 38.167345 ], [ -78.411781, 38.168185 ], [ -78.410521, 38.170164 ], [ -78.410064, 38.170881 ], [ -78.408661, 38.173081 ], [ -78.408289, 38.173661 ], [ -78.406754, 38.176057 ], [ -78.405791, 38.177582 ], [ -78.405633, 38.177824 ], [ -78.404819, 38.179105 ], [ -78.40451, 38.179581 ], [ -78.403702, 38.180857 ], [ -78.403534, 38.181116 ], [ -78.40229, 38.183084 ], [ -78.402, 38.183534 ], [ -78.401567, 38.184219 ], [ -78.401491, 38.184329 ], [ -78.400918, 38.18523 ], [ -78.400512, 38.185861 ], [ -78.399321, 38.187671 ], [ -78.399195, 38.187856 ], [ -78.399077, 38.188041 ], [ -78.398689, 38.188617 ], [ -78.398558, 38.18882 ], [ -78.397589, 38.190295 ], [ -78.3974, 38.190566 ], [ -78.397207, 38.19086 ], [ -78.396877, 38.191349 ], [ -78.396731, 38.191574 ], [ -78.396016, 38.192652 ], [ -78.395969, 38.192724 ], [ -78.395198, 38.193895 ], [ -78.395145, 38.193978 ], [ -78.395092, 38.194057 ], [ -78.395078, 38.194078 ], [ -78.394787, 38.194511 ], [ -78.394461, 38.19501 ], [ -78.394425, 38.195065 ], [ -78.393867, 38.195904 ], [ -78.393697, 38.196162 ], [ -78.392569, 38.197862 ], [ -78.392356, 38.198186 ], [ -78.391791, 38.199049 ], [ -78.3916, 38.199341 ], [ -78.391424, 38.19959 ], [ -78.391056, 38.200141 ], [ -78.390364, 38.201178 ], [ -78.388697, 38.203713 ], [ -78.387884, 38.204937 ], [ -78.387682, 38.20524 ], [ -78.387424, 38.205639 ], [ -78.386997, 38.206278 ], [ -78.386781, 38.206604 ], [ -78.386138, 38.207581 ], [ -78.385992, 38.207804 ], [ -78.385531, 38.2085 ], [ -78.38498, 38.209334 ], [ -78.384853, 38.209537 ], [ -78.383889, 38.210987 ], [ -78.383519, 38.211533 ], [ -78.383408, 38.211705 ], [ -78.383194, 38.212041 ], [ -78.382209, 38.213531 ], [ -78.381949, 38.213932 ], [ -78.381401, 38.214759 ], [ -78.380953, 38.215433 ], [ -78.380697, 38.215818 ], [ -78.380472, 38.216158 ], [ -78.379118, 38.218196 ], [ -78.378999, 38.218384 ], [ -78.37862, 38.21895 ], [ -78.377882, 38.220071 ], [ -78.377739, 38.220289 ], [ -78.377587, 38.220523 ], [ -78.376908, 38.221535 ], [ -78.376698, 38.221851 ], [ -78.376516, 38.222128 ], [ -78.375966, 38.222959 ], [ -78.375503, 38.223658 ], [ -78.374143, 38.225716 ], [ -78.373741, 38.226317 ], [ -78.372465, 38.228246 ], [ -78.371604, 38.229546 ], [ -78.371224, 38.230126 ], [ -78.37075, 38.230832 ], [ -78.370117, 38.231792 ], [ -78.369796, 38.23229 ], [ -78.369344, 38.233031 ], [ -78.369247, 38.233202 ], [ -78.369201, 38.233285 ], [ -78.369089, 38.233499 ], [ -78.368757, 38.234191 ], [ -78.368537, 38.23469 ], [ -78.368285, 38.235273 ], [ -78.367348, 38.237406 ], [ -78.367125, 38.237924 ], [ -78.366876, 38.23848 ], [ -78.366632, 38.239054 ], [ -78.366538, 38.239263 ], [ -78.366315, 38.239761 ], [ -78.365981, 38.240523 ], [ -78.365112, 38.242495 ], [ -78.364536, 38.243815 ], [ -78.364277, 38.244425 ], [ -78.363872, 38.245322 ], [ -78.363644, 38.245831 ], [ -78.363475, 38.246227 ], [ -78.363324, 38.246579 ], [ -78.363065, 38.24716 ], [ -78.362399, 38.248697 ], [ -78.362213, 38.249115 ], [ -78.36185, 38.249928 ], [ -78.360994, 38.251906 ], [ -78.360894, 38.252122 ], [ -78.360732, 38.252472 ], [ -78.359818, 38.254556 ], [ -78.359604, 38.255032 ], [ -78.358451, 38.257672 ], [ -78.35837, 38.257854 ], [ -78.357235, 38.260418 ], [ -78.35697, 38.261034 ], [ -78.356749, 38.261526 ], [ -78.356328, 38.262487 ], [ -78.3557, 38.26392 ], [ -78.355441, 38.264489 ], [ -78.354985, 38.265534 ], [ -78.354199, 38.267311 ], [ -78.354014, 38.267697 ], [ -78.353899, 38.267927 ], [ -78.353632, 38.268419 ], [ -78.353386, 38.268835 ], [ -78.353012, 38.269405 ], [ -78.352727, 38.269807 ], [ -78.352433, 38.270193 ], [ -78.351176, 38.271816 ], [ -78.35069, 38.272444 ], [ -78.350332, 38.272914 ], [ -78.349867, 38.273496 ], [ -78.349659, 38.273731 ], [ -78.349448, 38.273949 ], [ -78.349246, 38.274133 ], [ -78.348925, 38.274393 ], [ -78.348653, 38.274592 ], [ -78.348309, 38.274816 ], [ -78.346752, 38.275754 ], [ -78.345609, 38.276449 ], [ -78.34394, 38.277447 ], [ -78.343411, 38.277789 ], [ -78.343205, 38.277938 ], [ -78.342906, 38.278167 ], [ -78.342692, 38.278348 ], [ -78.342621, 38.27841 ], [ -78.342399, 38.278622 ], [ -78.342335, 38.278686 ], [ -78.342171, 38.278857 ], [ -78.341631, 38.279482 ], [ -78.341204, 38.280003 ], [ -78.341139, 38.280089 ], [ -78.341053, 38.280202 ], [ -78.340551, 38.280804 ], [ -78.34033, 38.281097 ], [ -78.339739, 38.281771 ], [ -78.337121, 38.284947 ], [ -78.335554, 38.286807 ], [ -78.334912, 38.287652 ], [ -78.334363, 38.288479 ], [ -78.333901, 38.289321 ], [ -78.332891, 38.291302 ], [ -78.33264, 38.291856 ], [ -78.332046, 38.29316 ], [ -78.331547, 38.294091 ], [ -78.33002, 38.297253 ], [ -78.328705, 38.299896 ], [ -78.328454, 38.300437 ], [ -78.327604, 38.302025 ], [ -78.326529, 38.303681 ], [ -78.325643, 38.304891 ], [ -78.325058, 38.305662 ], [ -78.32399, 38.30691 ], [ -78.3236, 38.307359 ], [ -78.323233, 38.30771 ], [ -78.322626, 38.308335 ], [ -78.320591, 38.310229 ], [ -78.317859, 38.312439 ], [ -78.317136, 38.313055 ], [ -78.314274, 38.315396 ], [ -78.313204, 38.316275 ], [ -78.313084, 38.316374 ], [ -78.312238, 38.317069 ], [ -78.31127, 38.317874 ], [ -78.310555, 38.318624 ], [ -78.308339, 38.321068 ], [ -78.307189, 38.322326 ], [ -78.306432, 38.323147 ], [ -78.305157, 38.324565 ], [ -78.299683, 38.33067 ], [ -78.296227, 38.334366 ], [ -78.294775, 38.336025 ], [ -78.294422, 38.336434 ], [ -78.293518, 38.337393 ], [ -78.292283, 38.338774 ], [ -78.290905, 38.340301 ], [ -78.289054, 38.34231 ], [ -78.287698, 38.343781 ], [ -78.286127, 38.345511 ], [ -78.284805, 38.346961 ], [ -78.284197, 38.347653 ], [ -78.281261, 38.350904 ], [ -78.27928, 38.353063 ], [ -78.277989, 38.354462 ], [ -78.276967, 38.355626 ], [ -78.275482, 38.357205 ], [ -78.275108, 38.357686 ], [ -78.273995, 38.359116 ], [ -78.272612, 38.361053 ], [ -78.269402, 38.365549 ], [ -78.268281, 38.367067 ], [ -78.26707, 38.368543 ], [ -78.266209, 38.369424 ], [ -78.26463, 38.370803 ], [ -78.263855, 38.371431 ], [ -78.262777, 38.372178 ], [ -78.262167, 38.372601 ], [ -78.258589, 38.375046 ], [ -78.253931, 38.378242 ], [ -78.253419, 38.378585 ], [ -78.252722, 38.379065 ], [ -78.251038, 38.380279 ], [ -78.249725, 38.3814 ], [ -78.248824, 38.38242 ], [ -78.247019, 38.384778 ], [ -78.243045, 38.39007 ], [ -78.242379, 38.390835 ], [ -78.241798, 38.391304 ], [ -78.241358, 38.391649 ], [ -78.240659, 38.392107 ], [ -78.239791, 38.392562 ], [ -78.236781, 38.394134 ], [ -78.234618, 38.395478 ], [ -78.233524, 38.396238 ], [ -78.231366, 38.397688 ], [ -78.230593, 38.398159 ], [ -78.229713, 38.398631 ], [ -78.22927, 38.398846 ], [ -78.227176, 38.399941 ], [ -78.224001, 38.401573 ], [ -78.221687, 38.402762 ], [ -78.220927, 38.403115 ], [ -78.219583, 38.403494 ], [ -78.217956, 38.403869 ], [ -78.216834, 38.404329 ], [ -78.216198, 38.404653 ], [ -78.215673, 38.404943 ], [ -78.2147, 38.405692 ], [ -78.214341, 38.406017 ], [ -78.211846, 38.409013 ], [ -78.211205, 38.409859 ], [ -78.208931, 38.412831 ], [ -78.207891, 38.413946 ], [ -78.207388, 38.414459 ], [ -78.206848, 38.414885 ], [ -78.20502, 38.416246 ], [ -78.204339, 38.416746 ], [ -78.203587, 38.417231 ], [ -78.201789, 38.418025 ], [ -78.199931, 38.418788 ], [ -78.198775, 38.419213 ], [ -78.197516, 38.419599 ], [ -78.196891, 38.419728 ], [ -78.193593, 38.420311 ], [ -78.192656, 38.420508 ], [ -78.191772, 38.420736 ], [ -78.190615, 38.421137 ], [ -78.189756, 38.421485 ], [ -78.189131, 38.421795 ], [ -78.188009, 38.422501 ], [ -78.186635, 38.423265 ], [ -78.185396, 38.423841 ], [ -78.184545, 38.424162 ], [ -78.179643, 38.425692 ], [ -78.176595, 38.426575 ], [ -78.175037, 38.427149 ], [ -78.174014, 38.427529 ], [ -78.171007, 38.428688 ], [ -78.169272, 38.429381 ], [ -78.165511, 38.430827 ], [ -78.164119, 38.431371 ], [ -78.162591, 38.431967 ], [ -78.161653, 38.432308 ], [ -78.160661, 38.43271 ], [ -78.160269, 38.432865 ], [ -78.159874, 38.433009 ], [ -78.157491, 38.433942 ], [ -78.157022, 38.434133 ], [ -78.156281, 38.434403 ], [ -78.154122, 38.435214 ], [ -78.152887, 38.435503 ], [ -78.151935, 38.435645 ], [ -78.151237, 38.435723 ], [ -78.149391, 38.435895 ], [ -78.145341, 38.436294 ], [ -78.143178, 38.436516 ], [ -78.141588, 38.436723 ], [ -78.140742, 38.436927 ], [ -78.139967, 38.43716 ], [ -78.139029, 38.437478 ], [ -78.138213, 38.437833 ], [ -78.13673, 38.438732 ], [ -78.135769, 38.439493 ], [ -78.133667, 38.441543 ], [ -78.13309, 38.442092 ], [ -78.132637, 38.442565 ], [ -78.131362, 38.443807 ], [ -78.131197, 38.443972 ], [ -78.13069, 38.444456 ], [ -78.13004, 38.445093 ], [ -78.129654, 38.445515 ], [ -78.129431, 38.445788 ], [ -78.129306, 38.445939 ], [ -78.129135, 38.446147 ], [ -78.126535, 38.449414 ], [ -78.12559, 38.450596 ], [ -78.124937, 38.451403 ], [ -78.12463, 38.451786 ], [ -78.122999, 38.453819 ], [ -78.12268, 38.454222 ], [ -78.122212, 38.454799 ], [ -78.122012, 38.455018 ], [ -78.121815, 38.455209 ], [ -78.121657, 38.455346 ], [ -78.121484, 38.455481 ], [ -78.121283, 38.455622 ], [ -78.121072, 38.455755 ], [ -78.120838, 38.455889 ], [ -78.120605, 38.456007 ], [ -78.120411, 38.456093 ], [ -78.120081, 38.45622 ], [ -78.11988, 38.456286 ], [ -78.119617, 38.456362 ], [ -78.119481, 38.456395 ], [ -78.119029, 38.456484 ], [ -78.118859, 38.456513 ], [ -78.118556, 38.456543 ], [ -78.118252, 38.456558 ], [ -78.117886, 38.45656 ], [ -78.117582, 38.456545 ], [ -78.117215, 38.456509 ], [ -78.11691, 38.456463 ], [ -78.116669, 38.456417 ], [ -78.116299, 38.456332 ], [ -78.114395, 38.455867 ], [ -78.113075, 38.455549 ], [ -78.112183, 38.455337 ], [ -78.111983, 38.455288 ], [ -78.110622, 38.454956 ], [ -78.109647, 38.454713 ], [ -78.109318, 38.454619 ], [ -78.108646, 38.454427 ], [ -78.108148, 38.454266 ], [ -78.107826, 38.454152 ], [ -78.107433, 38.454006 ], [ -78.106215, 38.453523 ], [ -78.103244, 38.452284 ], [ -78.103113, 38.45223 ], [ -78.101465, 38.451517 ], [ -78.100793, 38.451267 ], [ -78.099999, 38.450965 ], [ -78.099633, 38.450843 ], [ -78.099366, 38.450762 ], [ -78.098981, 38.450649 ], [ -78.098604, 38.450547 ], [ -78.098262, 38.45046 ], [ -78.09792, 38.450384 ], [ -78.096808, 38.450181 ], [ -78.096151, 38.450083 ], [ -78.095446, 38.449969 ], [ -78.093727, 38.449707 ], [ -78.092677, 38.449547 ], [ -78.092158, 38.449481 ], [ -78.091766, 38.449445 ], [ -78.091635, 38.449437 ], [ -78.091391, 38.44943 ], [ -78.09088, 38.449437 ], [ -78.090541, 38.449459 ], [ -78.090154, 38.449505 ], [ -78.090027, 38.449526 ], [ -78.089761, 38.44957 ], [ -78.089091, 38.449707 ], [ -78.08849, 38.449845 ], [ -78.087312, 38.450134 ], [ -78.086546, 38.450314 ], [ -78.086092, 38.450427 ], [ -78.085716, 38.450516 ], [ -78.085217, 38.45064 ], [ -78.083614, 38.45102 ], [ -78.082588, 38.451268 ], [ -78.081682, 38.451496 ], [ -78.080934, 38.451707 ], [ -78.080808, 38.451743 ], [ -78.080252, 38.451928 ], [ -78.080061, 38.451995 ], [ -78.079356, 38.452244 ], [ -78.079056, 38.452366 ], [ -78.077758, 38.452899 ], [ -78.07693, 38.453218 ], [ -78.07648, 38.453363 ], [ -78.075972, 38.453504 ], [ -78.075519, 38.453613 ], [ -78.075245, 38.453672 ], [ -78.074633, 38.453773 ], [ -78.073634, 38.453917 ], [ -78.073086, 38.453985 ], [ -78.071708, 38.454165 ], [ -78.070367, 38.45434 ], [ -78.069606, 38.454439 ], [ -78.065196, 38.455001 ], [ -78.0636, 38.455212 ], [ -78.062967, 38.455296 ], [ -78.062279, 38.455383 ], [ -78.061807, 38.45545 ], [ -78.061375, 38.455516 ], [ -78.060496, 38.455651 ], [ -78.059099, 38.455874 ], [ -78.058415, 38.455997 ], [ -78.057861, 38.456107 ], [ -78.057398, 38.456211 ], [ -78.057094, 38.456284 ], [ -78.055369, 38.456762 ], [ -78.054558, 38.456978 ], [ -78.05416, 38.457057 ], [ -78.053923, 38.4571 ], [ -78.053692, 38.457137 ], [ -78.053464, 38.457172 ], [ -78.052965, 38.457229 ], [ -78.052547, 38.457266 ], [ -78.05168, 38.457327 ], [ -78.051381, 38.457343 ], [ -78.051209, 38.457356 ], [ -78.050231, 38.457415 ], [ -78.049522, 38.45745 ], [ -78.049115, 38.457457 ], [ -78.048707, 38.45745 ], [ -78.048107, 38.457414 ], [ -78.046583, 38.457296 ], [ -78.045473, 38.457209 ], [ -78.043615, 38.457066 ], [ -78.04299, 38.457014 ], [ -78.041948, 38.456934 ], [ -78.041564, 38.4569 ], [ -78.040447, 38.456809 ], [ -78.039807, 38.456752 ], [ -78.039565, 38.456722 ], [ -78.038614, 38.456586 ], [ -78.037992, 38.45648 ], [ -78.036619, 38.456229 ], [ -78.036312, 38.456174 ], [ -78.035316, 38.455996 ], [ -78.033993, 38.455756 ], [ -78.033455, 38.455659 ], [ -78.032995, 38.455576 ], [ -78.032344, 38.455462 ], [ -78.032225, 38.455441 ], [ -78.032071, 38.455411 ], [ -78.031918, 38.455381 ], [ -78.030629, 38.455156 ], [ -78.030487, 38.455136 ], [ -78.02993, 38.455035 ], [ -78.029397, 38.454939 ], [ -78.027154, 38.454551 ], [ -78.026507, 38.454439 ], [ -78.026143, 38.454368 ], [ -78.025005, 38.454171 ], [ -78.024336, 38.45404 ], [ -78.023622, 38.453878 ], [ -78.02312, 38.453727 ], [ -78.02273, 38.453603 ], [ -78.022384, 38.453473 ], [ -78.021945, 38.453293 ], [ -78.021688, 38.453179 ], [ -78.02141, 38.45304 ], [ -78.020949, 38.452794 ], [ -78.020606, 38.452593 ], [ -78.018376, 38.451156 ], [ -78.015052, 38.449001 ], [ -78.013038, 38.447702 ], [ -78.012718, 38.447476 ], [ -78.012365, 38.447314 ], [ -78.011913, 38.44707 ], [ -78.011467, 38.446849 ], [ -78.011017, 38.446646 ], [ -78.010785, 38.446548 ], [ -78.01041, 38.446389 ], [ -78.009947, 38.446212 ], [ -78.009475, 38.446047 ], [ -78.009032, 38.44592 ], [ -78.008198, 38.445668 ], [ -78.007806, 38.445574 ], [ -78.007536, 38.445509 ], [ -78.00704, 38.445404 ], [ -78.006541, 38.445314 ], [ -78.006039, 38.445234 ], [ -78.005535, 38.445168 ], [ -78.004882, 38.445103 ], [ -78.00427, 38.44506 ], [ -78.003857, 38.445042 ], [ -78.003259, 38.445032 ], [ -77.996098, 38.445039 ], [ -77.995524, 38.445052 ], [ -77.995083, 38.445072 ], [ -77.9946, 38.445108 ], [ -77.994291, 38.44514 ], [ -77.994119, 38.445159 ], [ -77.993562, 38.445235 ], [ -77.993077, 38.445314 ], [ -77.992738, 38.44538 ], [ -77.992304, 38.445476 ], [ -77.991774, 38.445609 ], [ -77.991277, 38.445754 ], [ -77.990885, 38.44588 ], [ -77.990401, 38.446049 ], [ -77.989902, 38.446248 ], [ -77.98951, 38.446417 ], [ -77.989127, 38.446595 ], [ -77.988671, 38.446826 ], [ -77.988226, 38.44707 ], [ -77.988015, 38.447193 ], [ -77.987964, 38.447222 ], [ -77.986229, 38.448266 ], [ -77.982377, 38.450578 ], [ -77.980067, 38.451965 ], [ -77.978396, 38.452971 ], [ -77.976723, 38.453978 ], [ -77.971729, 38.456974 ], [ -77.970854, 38.457513 ], [ -77.970447, 38.457776 ], [ -77.969812, 38.458205 ], [ -77.969672, 38.458304 ], [ -77.969294, 38.458571 ], [ -77.968878, 38.458872 ], [ -77.968162, 38.459423 ], [ -77.967696, 38.459799 ], [ -77.967125, 38.46028 ], [ -77.966325, 38.460982 ], [ -77.965258, 38.461918 ], [ -77.964866, 38.462267 ], [ -77.960196, 38.466376 ], [ -77.955939, 38.470123 ], [ -77.954947, 38.470996 ], [ -77.954533, 38.471358 ], [ -77.953922, 38.471893 ], [ -77.953458, 38.472304 ], [ -77.953176, 38.472548 ], [ -77.952583, 38.473072 ], [ -77.951119, 38.474355 ], [ -77.950943, 38.474509 ], [ -77.949669, 38.47563 ], [ -77.948949, 38.476265 ], [ -77.948002, 38.477098 ], [ -77.940672, 38.483548 ], [ -77.940481, 38.483731 ], [ -77.940188, 38.484012 ], [ -77.939893, 38.484318 ], [ -77.939484, 38.484776 ], [ -77.93926, 38.485054 ], [ -77.939039, 38.48534 ], [ -77.938835, 38.485618 ], [ -77.938574, 38.486003 ], [ -77.938385, 38.4863 ], [ -77.938154, 38.486695 ], [ -77.936929, 38.489071 ], [ -77.936476, 38.48995 ], [ -77.936307, 38.490277 ], [ -77.936213, 38.490449 ], [ -77.936032, 38.490779 ], [ -77.935797, 38.491168 ], [ -77.935515, 38.491593 ], [ -77.935238, 38.491981 ], [ -77.934904, 38.492412 ], [ -77.934836, 38.492493 ], [ -77.93462, 38.492753 ], [ -77.934238, 38.493183 ], [ -77.933985, 38.493449 ], [ -77.933681, 38.493753 ], [ -77.933395, 38.494018 ], [ -77.933018, 38.494354 ], [ -77.932749, 38.494585 ], [ -77.932252, 38.494973 ], [ -77.93171, 38.495374 ], [ -77.931341, 38.495628 ], [ -77.930966, 38.495866 ], [ -77.930194, 38.496327 ], [ -77.929795, 38.496546 ], [ -77.929468, 38.496713 ], [ -77.928898, 38.496989 ], [ -77.928401, 38.497211 ], [ -77.927814, 38.497454 ], [ -77.927352, 38.49763 ], [ -77.926883, 38.497792 ], [ -77.92627, 38.497988 ], [ -77.925745, 38.498139 ], [ -77.925688, 38.498154 ], [ -77.925207, 38.498279 ], [ -77.924635, 38.498412 ], [ -77.924059, 38.498531 ], [ -77.923478, 38.498637 ], [ -77.923244, 38.498675 ], [ -77.9209, 38.499106 ], [ -77.920407, 38.499196 ], [ -77.916265, 38.499951 ], [ -77.914897, 38.500194 ], [ -77.913262, 38.500498 ], [ -77.912906, 38.500563 ], [ -77.911059, 38.5009 ], [ -77.910401, 38.501012 ], [ -77.909308, 38.501222 ], [ -77.90816, 38.501425 ], [ -77.906956, 38.501647 ], [ -77.902649, 38.502433 ], [ -77.901836, 38.502578 ], [ -77.901383, 38.502661 ], [ -77.899056, 38.503088 ], [ -77.897887, 38.503302 ], [ -77.896932, 38.503454 ], [ -77.896481, 38.503514 ], [ -77.896026, 38.50356 ], [ -77.89557, 38.503592 ], [ -77.895091, 38.503613 ], [ -77.894605, 38.503621 ], [ -77.894338, 38.503619 ], [ -77.894023, 38.503612 ], [ -77.893539, 38.503589 ], [ -77.893152, 38.50356 ], [ -77.891645, 38.503392 ], [ -77.891145, 38.503351 ], [ -77.890705, 38.503331 ], [ -77.890264, 38.503325 ], [ -77.89, 38.503328 ], [ -77.889421, 38.503346 ], [ -77.888918, 38.503375 ], [ -77.888578, 38.503406 ], [ -77.888318, 38.503429 ], [ -77.887823, 38.50349 ], [ -77.887334, 38.503566 ], [ -77.886849, 38.503655 ], [ -77.886369, 38.503759 ], [ -77.885701, 38.503929 ], [ -77.88504, 38.504114 ], [ -77.883872, 38.504451 ], [ -77.882026, 38.504972 ], [ -77.880726, 38.50535 ], [ -77.879756, 38.505628 ], [ -77.879416, 38.505726 ], [ -77.878734, 38.505916 ], [ -77.87665, 38.506514 ], [ -77.873295, 38.507467 ], [ -77.870872, 38.508164 ], [ -77.867574, 38.509112 ], [ -77.86643, 38.509426 ], [ -77.865139, 38.509804 ], [ -77.864878, 38.509875 ], [ -77.864614, 38.509946 ], [ -77.864004, 38.510124 ], [ -77.863963, 38.510136 ], [ -77.863243, 38.510359 ], [ -77.862776, 38.510515 ], [ -77.862313, 38.51068 ], [ -77.86153, 38.510992 ], [ -77.86091, 38.511252 ], [ -77.860341, 38.511504 ], [ -77.860101, 38.511597 ], [ -77.859873, 38.511706 ], [ -77.859049, 38.512033 ], [ -77.858596, 38.512199 ], [ -77.85801, 38.512393 ], [ -77.85641, 38.512859 ], [ -77.85546, 38.513131 ], [ -77.853636, 38.513652 ], [ -77.852939, 38.513842 ], [ -77.85189, 38.514117 ], [ -77.851773, 38.514147 ], [ -77.851155, 38.514282 ], [ -77.850783, 38.514355 ], [ -77.850158, 38.514468 ], [ -77.849529, 38.514566 ], [ -77.848611, 38.514673 ], [ -77.847601, 38.514814 ], [ -77.847219, 38.514874 ], [ -77.846744, 38.514961 ], [ -77.846275, 38.515063 ], [ -77.845622, 38.515227 ], [ -77.843493, 38.515828 ], [ -77.840926, 38.516554 ], [ -77.838953, 38.517123 ], [ -77.838611, 38.51724 ], [ -77.838276, 38.51737 ], [ -77.838087, 38.517452 ], [ -77.837878, 38.517559 ], [ -77.837641, 38.517698 ], [ -77.837371, 38.517879 ], [ -77.837159, 38.518042 ], [ -77.836631, 38.518508 ], [ -77.833939, 38.52107 ], [ -77.833536, 38.521444 ], [ -77.832859, 38.52207 ], [ -77.832618, 38.52227 ], [ -77.832363, 38.52246 ], [ -77.832151, 38.522605 ], [ -77.831761, 38.52284 ], [ -77.831645, 38.522905 ], [ -77.831341, 38.523059 ], [ -77.831027, 38.523201 ], [ -77.830705, 38.52333 ], [ -77.830375, 38.523446 ], [ -77.82725, 38.524408 ], [ -77.825282, 38.525005 ], [ -77.824825, 38.525153 ], [ -77.824766, 38.525172 ], [ -77.82414, 38.525403 ], [ -77.823904, 38.525501 ], [ -77.823444, 38.525707 ], [ -77.823161, 38.525842 ], [ -77.822816, 38.526023 ], [ -77.822483, 38.526216 ], [ -77.82216, 38.526429 ], [ -77.821905, 38.526618 ], [ -77.821824, 38.526681 ], [ -77.821661, 38.526816 ], [ -77.82143, 38.527024 ], [ -77.821026, 38.527454 ], [ -77.820758, 38.527783 ], [ -77.820516, 38.528112 ], [ -77.820197, 38.52856 ], [ -77.819895, 38.529029 ], [ -77.81945, 38.529798 ], [ -77.818541, 38.531386 ], [ -77.817476, 38.533249 ], [ -77.817174, 38.533749 ], [ -77.815779, 38.536111 ], [ -77.812836, 38.541042 ], [ -77.812145, 38.542152 ], [ -77.811443, 38.543345 ], [ -77.81107, 38.543916 ], [ -77.809169, 38.54677 ], [ -77.807061, 38.549912 ], [ -77.805801, 38.55177 ], [ -77.803189, 38.555743 ], [ -77.802664, 38.55653 ], [ -77.802442, 38.556869 ], [ -77.802253, 38.557175 ], [ -77.802079, 38.557492 ], [ -77.801838, 38.557971 ], [ -77.801782, 38.55809 ], [ -77.801657, 38.55838 ], [ -77.801522, 38.558722 ], [ -77.801429, 38.558994 ], [ -77.801302, 38.559432 ], [ -77.801209, 38.559822 ], [ -77.801144, 38.560169 ], [ -77.801065, 38.560727 ], [ -77.801025, 38.56131 ], [ -77.801027, 38.561813 ], [ -77.801049, 38.562487 ], [ -77.801069, 38.562893 ], [ -77.801213, 38.565749 ], [ -77.801305, 38.567636 ], [ -77.80137, 38.568961 ], [ -77.801541, 38.572402 ], [ -77.801599, 38.573623 ], [ -77.801669, 38.575224 ], [ -77.801707, 38.575829 ], [ -77.801772, 38.577117 ], [ -77.801874, 38.579138 ], [ -77.801902, 38.579759 ], [ -77.801914, 38.579914 ], [ -77.801945, 38.580642 ], [ -77.801977, 38.581198 ], [ -77.802036, 38.582417 ], [ -77.802118, 38.584113 ], [ -77.802126, 38.584391 ], [ -77.802131, 38.584986 ], [ -77.802118, 38.585525 ], [ -77.802088, 38.586052 ], [ -77.802017, 38.586791 ], [ -77.801743, 38.589112 ], [ -77.801725, 38.589268 ], [ -77.801437, 38.591698 ], [ -77.801342, 38.5925 ], [ -77.801281, 38.593006 ], [ -77.800994, 38.595455 ], [ -77.800644, 38.598437 ], [ -77.800492, 38.599704 ], [ -77.800457, 38.599972 ], [ -77.800268, 38.601612 ], [ -77.800209, 38.602305 ], [ -77.80017, 38.602992 ], [ -77.800152, 38.603904 ], [ -77.800152, 38.604035 ], [ -77.800152, 38.604483 ], [ -77.800172, 38.60559 ], [ -77.800187, 38.606551 ], [ -77.800205, 38.607644 ], [ -77.80022, 38.608813 ], [ -77.800237, 38.609384 ], [ -77.800232, 38.610093 ], [ -77.800248, 38.611162 ], [ -77.80027, 38.611781 ], [ -77.800276, 38.611972 ], [ -77.800298, 38.612639 ], [ -77.800312, 38.613039 ], [ -77.800332, 38.613399 ], [ -77.800397, 38.614527 ], [ -77.800421, 38.615203 ], [ -77.800432, 38.61575 ], [ -77.800444, 38.616559 ], [ -77.800478, 38.618723 ], [ -77.8005, 38.619601 ], [ -77.800525, 38.620811 ], [ -77.800527, 38.620908 ], [ -77.800548, 38.62192 ], [ -77.80058, 38.623403 ], [ -77.800594, 38.624213 ], [ -77.800603, 38.625413 ], [ -77.80062, 38.627386 ], [ -77.800629, 38.627856 ], [ -77.800651, 38.62934 ], [ -77.800658, 38.629863 ], [ -77.800688, 38.631295 ], [ -77.800701, 38.63219 ], [ -77.800708, 38.632656 ], [ -77.800729, 38.632937 ], [ -77.800749, 38.6331 ], [ -77.800764, 38.633194 ], [ -77.800824, 38.633493 ], [ -77.8009, 38.63375 ], [ -77.801033, 38.634132 ], [ -77.801091, 38.634277 ], [ -77.801339, 38.634852 ], [ -77.801526, 38.635289 ], [ -77.801703, 38.635692 ], [ -77.801752, 38.635808 ], [ -77.801965, 38.636295 ], [ -77.802897, 38.638462 ], [ -77.802996, 38.638693 ], [ -77.803206, 38.639174 ], [ -77.803351, 38.639505 ], [ -77.803635, 38.640158 ], [ -77.803774, 38.640485 ], [ -77.80405, 38.641121 ], [ -77.804137, 38.641325 ], [ -77.804199, 38.641471 ], [ -77.804367, 38.641868 ], [ -77.804398, 38.641941 ], [ -77.804535, 38.642359 ], [ -77.804602, 38.642621 ], [ -77.804642, 38.642832 ], [ -77.804669, 38.643038 ], [ -77.804677, 38.643118 ], [ -77.804687, 38.643291 ], [ -77.804696, 38.643722 ], [ -77.804696, 38.644409 ], [ -77.804677, 38.644766 ], [ -77.804636, 38.645023 ], [ -77.804576, 38.645279 ], [ -77.804498, 38.645531 ], [ -77.804445, 38.645671 ], [ -77.804179, 38.646296 ], [ -77.803976, 38.646795 ], [ -77.803645, 38.647584 ], [ -77.803607, 38.647672 ], [ -77.803037, 38.649027 ], [ -77.802582, 38.650099 ], [ -77.802488, 38.65032 ], [ -77.80226, 38.650816 ], [ -77.802226, 38.650891 ], [ -77.801705, 38.651973 ], [ -77.801524, 38.652348 ], [ -77.800517, 38.654435 ], [ -77.800311, 38.654856 ], [ -77.800109, 38.655223 ], [ -77.799504, 38.656216 ], [ -77.799258, 38.656629 ], [ -77.799064, 38.656995 ], [ -77.798952, 38.657238 ], [ -77.798593, 38.658126 ], [ -77.798524, 38.658287 ], [ -77.798395, 38.658591 ], [ -77.798266, 38.658901 ], [ -77.798049, 38.659428 ], [ -77.797829, 38.659963 ], [ -77.79736, 38.661105 ], [ -77.797075, 38.661795 ], [ -77.796724, 38.662641 ], [ -77.79625, 38.663783 ], [ -77.796094, 38.664161 ], [ -77.795637, 38.665271 ], [ -77.79528, 38.666132 ], [ -77.795248, 38.66621 ], [ -77.794069, 38.669063 ], [ -77.793674, 38.670024 ], [ -77.793379, 38.670723 ], [ -77.793244, 38.671036 ], [ -77.793103, 38.671307 ], [ -77.792943, 38.671571 ], [ -77.792813, 38.671755 ], [ -77.792641, 38.671968 ], [ -77.792454, 38.672174 ], [ -77.792251, 38.672371 ], [ -77.791496, 38.673047 ], [ -77.791134, 38.673372 ], [ -77.790643, 38.673809 ], [ -77.789269, 38.675032 ], [ -77.788765, 38.675507 ], [ -77.788692, 38.675576 ], [ -77.788181, 38.676104 ], [ -77.787807, 38.676549 ], [ -77.787668, 38.676743 ], [ -77.787501, 38.677031 ], [ -77.78738, 38.677265 ], [ -77.78733, 38.677383 ], [ -77.787232, 38.677659 ], [ -77.787165, 38.677911 ], [ -77.787115, 38.678177 ], [ -77.787085, 38.678445 ], [ -77.787079, 38.678552 ], [ -77.787095, 38.67913 ], [ -77.787153, 38.679798 ], [ -77.787259, 38.680924 ], [ -77.787331, 38.681886 ], [ -77.787363, 38.682419 ], [ -77.787413, 38.683635 ], [ -77.787401, 38.684203 ], [ -77.787392, 38.684611 ], [ -77.78735, 38.685019 ], [ -77.787315, 38.685264 ], [ -77.787231, 38.685728 ], [ -77.787136, 38.686251 ], [ -77.787114, 38.686332 ], [ -77.78692, 38.686986 ], [ -77.786696, 38.687619 ], [ -77.786501, 38.688074 ], [ -77.786277, 38.68855 ], [ -77.786098, 38.688888 ], [ -77.785944, 38.689154 ], [ -77.785576, 38.689748 ], [ -77.784818, 38.690938 ], [ -77.784516, 38.691425 ], [ -77.784271, 38.691807 ], [ -77.783827, 38.692506 ], [ -77.783401, 38.6932 ], [ -77.783246, 38.693444 ], [ -77.782384, 38.694802 ], [ -77.782205, 38.695084 ], [ -77.781593, 38.696059 ], [ -77.781243, 38.69667 ], [ -77.78108, 38.696994 ], [ -77.780923, 38.697347 ], [ -77.780812, 38.697637 ], [ -77.780687, 38.698004 ], [ -77.780614, 38.698231 ], [ -77.780587, 38.698314 ], [ -77.780392, 38.699181 ], [ -77.780333, 38.699659 ], [ -77.780298, 38.700094 ], [ -77.780287, 38.700389 ], [ -77.780289, 38.700757 ], [ -77.780315, 38.701452 ], [ -77.780365, 38.702797 ], [ -77.780397, 38.703509 ], [ -77.780462, 38.705131 ], [ -77.780535, 38.706895 ], [ -77.780587, 38.708144 ], [ -77.780612, 38.708911 ], [ -77.780675, 38.710324 ], [ -77.780782, 38.713019 ], [ -77.780806, 38.713639 ], [ -77.780906, 38.716128 ], [ -77.780923, 38.716557 ], [ -77.780985, 38.71812 ], [ -77.781094, 38.720811 ], [ -77.781111, 38.721348 ], [ -77.78117, 38.722771 ], [ -77.781205, 38.723428 ], [ -77.781207, 38.723933 ], [ -77.781141, 38.724638 ], [ -77.781062, 38.725028 ], [ -77.780986, 38.725313 ], [ -77.780873, 38.725651 ], [ -77.780799, 38.725838 ], [ -77.780763, 38.72593 ], [ -77.780608, 38.726258 ], [ -77.780457, 38.726537 ], [ -77.78029, 38.726814 ], [ -77.780067, 38.727137 ], [ -77.779841, 38.727426 ], [ -77.779593, 38.727712 ], [ -77.779535, 38.727773 ], [ -77.779432, 38.727882 ], [ -77.779137, 38.728163 ], [ -77.778889, 38.728379 ], [ -77.778564, 38.728638 ], [ -77.777988, 38.729064 ], [ -77.777903, 38.729128 ], [ -77.777813, 38.729195 ], [ -77.777751, 38.72924 ], [ -77.777544, 38.729395 ], [ -77.776507, 38.73018 ], [ -77.77534, 38.731069 ], [ -77.775049, 38.73127 ], [ -77.774364, 38.73177 ], [ -77.774051, 38.732009 ], [ -77.773303, 38.732554 ], [ -77.772496, 38.733155 ], [ -77.772444, 38.733192 ], [ -77.771424, 38.733941 ], [ -77.770375, 38.73472 ], [ -77.769774, 38.735166 ], [ -77.766501, 38.737595 ], [ -77.766092, 38.7379 ], [ -77.766013, 38.737957 ], [ -77.764613, 38.738973 ], [ -77.763699, 38.739647 ], [ -77.760294, 38.742188 ], [ -77.759475, 38.742805 ], [ -77.758292, 38.743704 ], [ -77.757242, 38.744507 ], [ -77.756734, 38.744888 ], [ -77.75607, 38.745394 ], [ -77.755332, 38.74595 ], [ -77.753869, 38.747051 ], [ -77.753512, 38.747317 ], [ -77.752239, 38.748266 ], [ -77.751486, 38.748835 ], [ -77.749304, 38.750477 ], [ -77.747696, 38.751677 ], [ -77.747175, 38.752069 ], [ -77.746636, 38.752468 ], [ -77.746089, 38.752858 ], [ -77.745719, 38.753113 ], [ -77.745109, 38.753534 ], [ -77.744529, 38.753946 ], [ -77.744441, 38.754016 ], [ -77.743143, 38.755039 ], [ -77.742369, 38.755648 ], [ -77.741019, 38.756723 ], [ -77.740302, 38.757289 ], [ -77.74012, 38.757439 ], [ -77.739869, 38.757633 ], [ -77.739452, 38.757933 ], [ -77.738896, 38.758325 ], [ -77.738458, 38.758616 ], [ -77.737994, 38.758912 ], [ -77.737675, 38.759109 ], [ -77.736928, 38.759546 ], [ -77.736529, 38.759764 ], [ -77.73598, 38.760062 ], [ -77.735512, 38.760302 ], [ -77.734641, 38.760749 ], [ -77.731871, 38.762168 ], [ -77.730354, 38.762946 ], [ -77.726563, 38.764904 ], [ -77.726297, 38.765042 ], [ -77.725494, 38.765462 ], [ -77.724993, 38.765717 ], [ -77.724283, 38.76606 ], [ -77.724155, 38.766114 ], [ -77.723683, 38.766274 ], [ -77.723631, 38.766287 ], [ -77.723461, 38.76633 ], [ -77.723208, 38.766384 ], [ -77.722948, 38.766425 ], [ -77.722732, 38.766449 ], [ -77.722439, 38.766466 ], [ -77.722204, 38.76647 ], [ -77.721761, 38.76645 ], [ -77.721338, 38.766416 ], [ -77.720827, 38.766373 ], [ -77.71958, 38.766268 ], [ -77.718945, 38.766226 ], [ -77.71829, 38.766214 ], [ -77.717886, 38.766231 ], [ -77.717644, 38.766248 ], [ -77.717238, 38.766296 ], [ -77.716986, 38.766333 ], [ -77.716478, 38.766426 ], [ -77.715933, 38.766539 ], [ -77.71313, 38.767126 ], [ -77.71253, 38.76725 ], [ -77.711446, 38.767475 ], [ -77.711213, 38.767521 ], [ -77.709832, 38.76781 ], [ -77.709246, 38.767933 ], [ -77.708584, 38.768078 ], [ -77.708134, 38.768177 ], [ -77.707984, 38.768211 ], [ -77.707651, 38.768287 ], [ -77.707208, 38.768389 ], [ -77.707037, 38.768429 ], [ -77.706966, 38.768445 ], [ -77.706604, 38.768529 ], [ -77.705724, 38.768733 ], [ -77.704884, 38.768928 ], [ -77.704008, 38.769125 ], [ -77.703413, 38.769266 ], [ -77.703044, 38.769359 ], [ -77.702667, 38.769454 ], [ -77.702289, 38.769565 ], [ -77.701922, 38.769687 ], [ -77.701705, 38.769766 ], [ -77.701294, 38.769925 ], [ -77.700381, 38.770277 ], [ -77.698624, 38.770957 ], [ -77.69792, 38.771222 ], [ -77.696779, 38.771656 ], [ -77.696286, 38.771839 ], [ -77.694688, 38.772451 ], [ -77.693388, 38.772942 ], [ -77.69338, 38.772945 ], [ -77.69299, 38.773092 ], [ -77.691828, 38.773541 ], [ -77.689985, 38.774273 ], [ -77.689184, 38.774593 ], [ -77.687947, 38.775099 ], [ -77.68652, 38.775696 ], [ -77.686093, 38.775875 ], [ -77.685013, 38.776323 ], [ -77.684548, 38.776508 ], [ -77.683617, 38.77688 ], [ -77.682281, 38.77742 ], [ -77.681906, 38.77757 ], [ -77.680152, 38.778273 ], [ -77.680071, 38.778309 ], [ -77.679964, 38.778348 ], [ -77.67944, 38.778559 ], [ -77.679135, 38.778682 ], [ -77.679008, 38.778733 ], [ -77.678765, 38.778831 ], [ -77.678322, 38.779011 ], [ -77.677302, 38.779417 ], [ -77.677036, 38.779514 ], [ -77.676871, 38.779569 ], [ -77.676375, 38.779711 ], [ -77.675903, 38.779834 ], [ -77.675739, 38.779874 ], [ -77.675282, 38.779966 ], [ -77.675165, 38.77999 ], [ -77.673681, 38.780291 ], [ -77.67245, 38.780538 ], [ -77.671784, 38.780666 ], [ -77.671623, 38.780699 ], [ -77.671392, 38.780752 ], [ -77.670977, 38.780857 ], [ -77.67067, 38.780949 ], [ -77.669909, 38.781181 ], [ -77.669755, 38.781229 ], [ -77.668691, 38.781557 ], [ -77.668105, 38.781729 ], [ -77.66717, 38.781984 ], [ -77.665556, 38.7824 ], [ -77.665397, 38.782443 ], [ -77.66509, 38.782528 ], [ -77.663117, 38.783041 ], [ -77.662729, 38.783142 ], [ -77.658982, 38.784122 ], [ -77.658234, 38.784318 ], [ -77.657487, 38.784515 ], [ -77.656903, 38.784668 ], [ -77.656444, 38.784785 ], [ -77.655772, 38.784954 ], [ -77.655488, 38.785028 ], [ -77.654149, 38.78538 ], [ -77.653073, 38.785665 ], [ -77.652817, 38.785732 ], [ -77.652723, 38.785757 ], [ -77.652335, 38.78586 ], [ -77.650432, 38.786358 ], [ -77.650292, 38.786394 ], [ -77.648546, 38.786845 ], [ -77.648132, 38.786953 ], [ -77.6471, 38.787217 ], [ -77.646912, 38.787266 ], [ -77.646792, 38.787296 ], [ -77.646475, 38.787378 ], [ -77.643862, 38.788066 ], [ -77.643514, 38.788151 ], [ -77.642956, 38.788288 ], [ -77.641845, 38.788545 ], [ -77.641256, 38.788678 ], [ -77.640668, 38.788812 ], [ -77.637878, 38.789456 ], [ -77.637724, 38.789491 ], [ -77.635026, 38.790112 ], [ -77.633026, 38.790572 ], [ -77.631672, 38.790883 ], [ -77.630391, 38.791179 ], [ -77.630168, 38.791231 ], [ -77.629412, 38.791414 ], [ -77.629006, 38.791523 ], [ -77.628982, 38.791529 ], [ -77.628275, 38.791722 ], [ -77.626219, 38.792284 ], [ -77.625465, 38.792483 ], [ -77.624741, 38.792675 ], [ -77.624567, 38.792721 ], [ -77.624468, 38.792748 ], [ -77.624067, 38.792856 ], [ -77.622821, 38.793191 ], [ -77.622323, 38.793326 ], [ -77.622182, 38.793359 ], [ -77.62157, 38.793529 ], [ -77.621412, 38.793572 ], [ -77.620477, 38.793825 ], [ -77.620443, 38.793835 ], [ -77.619193, 38.794171 ], [ -77.619018, 38.794213 ], [ -77.617763, 38.794556 ], [ -77.617092, 38.79473 ], [ -77.616747, 38.794832 ], [ -77.614017, 38.7956 ], [ -77.613309, 38.7958 ], [ -77.613097, 38.795859 ], [ -77.611965, 38.796178 ], [ -77.611011, 38.796432 ], [ -77.609519, 38.79683 ], [ -77.609066, 38.796955 ], [ -77.60887, 38.79701 ], [ -77.608124, 38.797223 ], [ -77.607861, 38.79729 ], [ -77.60659, 38.797608 ], [ -77.604759, 38.798106 ], [ -77.603341, 38.798433 ], [ -77.602615, 38.798623 ], [ -77.60217, 38.798681 ], [ -77.60178, 38.798726 ], [ -77.60159, 38.798739 ], [ -77.601338, 38.79876 ], [ -77.601043, 38.798748 ], [ -77.600761, 38.798726 ], [ -77.600475, 38.798685 ], [ -77.600088, 38.798626 ], [ -77.598701, 38.798329 ], [ -77.598447, 38.798288 ], [ -77.598168, 38.798263 ], [ -77.597945, 38.798266 ], [ -77.597733, 38.798267 ], [ -77.597515, 38.798295 ], [ -77.597295, 38.798329 ], [ -77.59709, 38.79838 ], [ -77.596838, 38.798472 ], [ -77.596056, 38.79873 ], [ -77.595792, 38.798802 ], [ -77.595557, 38.798839 ], [ -77.595321, 38.798872 ], [ -77.595123, 38.798893 ], [ -77.594903, 38.798906 ], [ -77.594606, 38.798902 ], [ -77.592349, 38.798571 ], [ -77.589853, 38.798246 ], [ -77.587564, 38.797961 ], [ -77.584659, 38.797708 ], [ -77.583518, 38.797592 ], [ -77.582596, 38.797507 ], [ -77.581727, 38.797465 ], [ -77.580645, 38.797422 ], [ -77.579853, 38.797408 ], [ -77.579381, 38.797391 ], [ -77.579328, 38.797391 ], [ -77.578346, 38.797391 ], [ -77.576989, 38.797404 ], [ -77.576007, 38.797446 ], [ -77.575373, 38.797504 ], [ -77.571144, 38.797797 ], [ -77.569287, 38.79792 ], [ -77.56555, 38.798187 ], [ -77.561659, 38.798447 ], [ -77.555891, 38.7988 ], [ -77.553755, 38.798951 ], [ -77.550887, 38.799152 ], [ -77.550295, 38.799193 ], [ -77.548407, 38.799331 ], [ -77.54595, 38.799494 ], [ -77.541063, 38.799812 ], [ -77.539341, 38.799946 ], [ -77.536546, 38.800151 ], [ -77.532281, 38.800448 ], [ -77.529135, 38.800667 ], [ -77.525861, 38.800895 ], [ -77.523173, 38.801079 ], [ -77.520134, 38.801324 ], [ -77.519426, 38.801374 ], [ -77.518588, 38.801436 ], [ -77.514662, 38.801698 ], [ -77.51275, 38.801833 ], [ -77.512257, 38.801883 ], [ -77.51176, 38.801949 ], [ -77.511242, 38.802033 ], [ -77.510728, 38.802133 ], [ -77.510237, 38.802245 ], [ -77.509757, 38.802371 ], [ -77.509283, 38.802511 ], [ -77.508762, 38.802686 ], [ -77.508249, 38.802874 ], [ -77.503238, 38.804849 ], [ -77.501867, 38.805383 ], [ -77.49854, 38.806696 ], [ -77.492854, 38.808929 ], [ -77.492586, 38.809039 ], [ -77.491408, 38.809499 ], [ -77.490728, 38.809768 ], [ -77.490387, 38.809903 ], [ -77.489846, 38.810125 ], [ -77.48976, 38.810159 ], [ -77.489588, 38.810228 ], [ -77.488128, 38.810814 ], [ -77.487975, 38.810876 ], [ -77.487938, 38.810891 ], [ -77.487614, 38.811027 ], [ -77.486889, 38.811312 ], [ -77.485515, 38.811841 ], [ -77.481021, 38.813606 ], [ -77.480031, 38.813987 ], [ -77.479528, 38.81418 ], [ -77.478278, 38.814671 ], [ -77.477784, 38.814859 ], [ -77.476696, 38.815283 ], [ -77.476308, 38.815444 ], [ -77.470849, 38.817587 ], [ -77.469997, 38.817934 ], [ -77.469107, 38.818314 ], [ -77.468263, 38.818692 ], [ -77.467788, 38.818912 ], [ -77.466824, 38.819384 ], [ -77.466481, 38.819559 ], [ -77.465978, 38.819814 ], [ -77.465888, 38.819862 ], [ -77.465082, 38.820299 ], [ -77.464689, 38.820516 ], [ -77.463916, 38.820976 ], [ -77.463568, 38.821184 ], [ -77.462817, 38.82165 ], [ -77.462169, 38.822067 ], [ -77.461524, 38.822499 ], [ -77.460742, 38.823046 ], [ -77.459971, 38.823615 ], [ -77.459453, 38.824009 ], [ -77.458829, 38.824505 ], [ -77.458041, 38.825157 ], [ -77.457989, 38.825199 ], [ -77.457719, 38.825436 ], [ -77.457456, 38.825667 ], [ -77.457174, 38.825914 ], [ -77.456485, 38.82655 ], [ -77.455925, 38.827089 ], [ -77.455609, 38.827408 ], [ -77.455354, 38.827664 ], [ -77.455286, 38.827736 ], [ -77.454763, 38.828288 ], [ -77.453687, 38.829492 ], [ -77.45117, 38.83231 ], [ -77.450091, 38.833546 ], [ -77.449603, 38.834072 ], [ -77.4484, 38.835411 ], [ -77.448317, 38.835496 ], [ -77.447073, 38.836883 ], [ -77.446568, 38.837456 ], [ -77.444983, 38.839239 ], [ -77.444962, 38.839261 ], [ -77.44448, 38.839771 ], [ -77.443925, 38.840374 ], [ -77.443121, 38.841151 ], [ -77.442523, 38.841683 ], [ -77.442048, 38.842083 ], [ -77.441563, 38.842472 ], [ -77.44121, 38.842729 ], [ -77.440835, 38.842989 ], [ -77.440353, 38.843301 ], [ -77.439357, 38.843895 ], [ -77.438808, 38.844189 ], [ -77.438412, 38.844388 ], [ -77.438154, 38.844513 ], [ -77.437585, 38.844773 ], [ -77.43695, 38.845042 ], [ -77.436125, 38.845358 ], [ -77.435386, 38.845611 ], [ -77.434841, 38.845778 ], [ -77.434461, 38.845886 ], [ -77.434065, 38.845989 ], [ -77.433588, 38.846102 ], [ -77.432595, 38.846311 ], [ -77.431976, 38.846424 ], [ -77.431894, 38.846439 ], [ -77.43166, 38.846482 ], [ -77.43013, 38.84677 ], [ -77.428638, 38.847052 ], [ -77.427672, 38.847201 ], [ -77.426895, 38.847336 ], [ -77.426613, 38.847387 ], [ -77.423954, 38.847868 ], [ -77.42318, 38.84802 ], [ -77.422578, 38.848129 ], [ -77.421734, 38.848284 ], [ -77.419777, 38.84865 ], [ -77.418032, 38.848977 ], [ -77.416532, 38.849246 ], [ -77.415198, 38.849482 ], [ -77.414151, 38.849672 ], [ -77.413692, 38.849756 ], [ -77.413004, 38.849886 ], [ -77.41025, 38.850388 ], [ -77.408348, 38.850725 ], [ -77.406003, 38.851167 ], [ -77.404553, 38.851419 ], [ -77.403103, 38.851676 ], [ -77.402433, 38.851803 ], [ -77.401513, 38.851954 ], [ -77.399882, 38.852249 ], [ -77.399048, 38.852319 ], [ -77.398718, 38.852375 ], [ -77.397996, 38.852492 ], [ -77.397318, 38.852624 ], [ -77.396752, 38.852714 ], [ -77.396348, 38.852749 ], [ -77.395658, 38.852767 ], [ -77.395009, 38.8528 ], [ -77.394695, 38.852837 ], [ -77.39433, 38.852891 ], [ -77.393802, 38.852984 ], [ -77.393126, 38.853114 ], [ -77.392725, 38.85318 ], [ -77.392095, 38.853297 ], [ -77.391904, 38.853339 ], [ -77.391134, 38.853478 ], [ -77.389836, 38.853723 ], [ -77.389215, 38.853845 ], [ -77.38892, 38.853895 ], [ -77.388716, 38.853941 ], [ -77.388024, 38.854062 ], [ -77.387165, 38.854196 ], [ -77.386771, 38.854162 ], [ -77.386529, 38.854111 ], [ -77.386343, 38.854055 ], [ -77.386187, 38.853987 ], [ -77.386127, 38.853954 ], [ -77.386079, 38.85392 ], [ -77.385986, 38.853839 ], [ -77.385938, 38.853785 ], [ -77.385904, 38.853738 ], [ -77.385849, 38.853638 ], [ -77.385829, 38.853585 ], [ -77.385812, 38.853521 ], [ -77.3858, 38.853402 ], [ -77.385805, 38.853336 ], [ -77.385817, 38.853271 ], [ -77.38586, 38.853155 ], [ -77.385888, 38.853105 ], [ -77.385929, 38.853047 ], [ -77.38601, 38.852959 ], [ -77.386068, 38.85291 ], [ -77.386119, 38.852873 ], [ -77.386233, 38.85281 ], [ -77.386292, 38.852784 ], [ -77.386367, 38.852757 ], [ -77.386444, 38.852736 ], [ -77.386551, 38.852715 ], [ -77.386695, 38.852705 ], [ -77.38684, 38.852711 ], [ -77.386899, 38.85272 ], [ -77.386985, 38.852739 ], [ -77.387131, 38.852784 ], [ -77.387234, 38.852827 ], [ -77.387327, 38.852872 ], [ -77.387501, 38.852977 ], [ -77.387596, 38.853046 ], [ -77.387689, 38.853125 ], [ -77.387869, 38.853301 ], [ -77.388005, 38.8535 ], [ -77.388211, 38.853861 ], [ -77.388248, 38.853958 ], [ -77.38834, 38.854202 ], [ -77.388434, 38.854509 ], [ -77.388512, 38.85483 ], [ -77.388556, 38.855045 ], [ -77.388563, 38.855077 ], [ -77.388615, 38.855398 ], [ -77.38864, 38.855726 ], [ -77.388657, 38.85606 ], [ -77.388632, 38.856494 ], [ -77.388606, 38.856728 ], [ -77.388546, 38.857062 ], [ -77.388494, 38.857283 ], [ -77.388383, 38.85759 ], [ -77.388245, 38.857898 ], [ -77.387962, 38.858392 ], [ -77.387722, 38.858713 ], [ -77.387587, 38.858842 ], [ -77.387448, 38.858992 ], [ -77.38738, 38.859049 ], [ -77.387049, 38.859315 ], [ -77.387001, 38.859355 ], [ -77.386572, 38.859616 ], [ -77.386057, 38.859876 ], [ -77.385696, 38.860037 ], [ -77.385104, 38.860297 ], [ -77.384246, 38.860678 ], [ -77.383311, 38.861091 ], [ -77.382484, 38.861549 ], [ -77.381927, 38.861964 ], [ -77.381649, 38.862271 ], [ -77.381472, 38.862656 ], [ -77.38114, 38.86254 ], [ -77.380676, 38.862336 ], [ -77.380373, 38.862167 ], [ -77.380144, 38.862016 ], [ -77.379932, 38.861857 ], [ -77.379724, 38.861669 ], [ -77.379541, 38.861495 ], [ -77.379299, 38.861256 ], [ -77.379174, 38.86114 ], [ -77.378963, 38.86097 ], [ -77.378779, 38.860822 ], [ -77.378622, 38.860715 ], [ -77.378375, 38.860584 ], [ -77.37825, 38.860526 ], [ -77.377901, 38.860354 ], [ -77.377674, 38.860258 ], [ -77.377503, 38.860194 ], [ -77.376982, 38.860031 ], [ -77.376724, 38.859968 ], [ -77.376465, 38.859908 ], [ -77.376139, 38.859843 ], [ -77.375957, 38.859809 ], [ -77.375449, 38.859704 ], [ -77.37477, 38.859591 ], [ -77.373992, 38.859482 ], [ -77.373385, 38.859411 ], [ -77.373319, 38.859405 ], [ -77.371684, 38.859251 ], [ -77.371331, 38.859226 ], [ -77.37112, 38.859211 ], [ -77.371099, 38.85942 ], [ -77.371098, 38.859619 ], [ -77.371033, 38.860102 ], [ -77.370993, 38.860407 ], [ -77.370953, 38.86073 ], [ -77.370894, 38.86095 ], [ -77.370816, 38.861165 ], [ -77.370757, 38.861296 ], [ -77.370665, 38.861443 ], [ -77.370575, 38.861587 ], [ -77.370384, 38.861875 ], [ -77.370116, 38.862301 ], [ -77.369869, 38.862675 ], [ -77.369695, 38.862937 ], [ -77.369553, 38.863149 ], [ -77.369282, 38.863562 ], [ -77.369075, 38.863878 ], [ -77.369003, 38.863978 ], [ -77.368943, 38.864053 ], [ -77.368872, 38.864143 ], [ -77.368754, 38.864281 ], [ -77.368648, 38.864383 ], [ -77.368548, 38.86448 ], [ -77.368413, 38.864611 ], [ -77.368244, 38.864751 ], [ -77.368139, 38.86483 ], [ -77.368096, 38.864859 ], [ -77.367962, 38.864949 ], [ -77.367753, 38.865087 ], [ -77.36752, 38.865221 ], [ -77.36716, 38.865425 ], [ -77.366916, 38.865565 ], [ -77.366749, 38.865664 ], [ -77.366693, 38.865696 ], [ -77.366603, 38.865757 ], [ -77.36621, 38.865941 ], [ -77.365964, 38.866096 ], [ -77.365677, 38.866275 ], [ -77.365412, 38.86648 ], [ -77.365205, 38.866666 ], [ -77.365092, 38.866802 ], [ -77.364926, 38.867027 ], [ -77.364819, 38.867215 ], [ -77.364795, 38.867271 ], [ -77.364687, 38.867526 ], [ -77.364631, 38.867731 ], [ -77.364602, 38.867885 ], [ -77.364585, 38.868103 ], [ -77.364599, 38.86833 ], [ -77.364602, 38.868416 ], [ -77.364653, 38.868646 ], [ -77.364749, 38.868903 ], [ -77.364915, 38.869232 ], [ -77.365031, 38.869489 ], [ -77.36519, 38.869811 ], [ -77.365353, 38.870145 ], [ -77.365541, 38.870577 ], [ -77.365608, 38.870714 ], [ -77.36564, 38.87078 ], [ -77.365767, 38.871048 ], [ -77.365858, 38.871232 ], [ -77.365914, 38.871335 ], [ -77.366032, 38.871546 ], [ -77.366196, 38.871805 ], [ -77.366355, 38.872046 ], [ -77.366507, 38.872259 ], [ -77.366678, 38.872501 ], [ -77.366856, 38.872754 ], [ -77.366963, 38.872925 ], [ -77.367022, 38.873039 ], [ -77.367081, 38.873163 ], [ -77.367145, 38.873344 ], [ -77.367182, 38.87346 ], [ -77.367204, 38.873534 ], [ -77.367233, 38.873695 ], [ -77.36726, 38.873889 ], [ -77.367273, 38.874003 ], [ -77.367165, 38.874012 ], [ -77.366994, 38.874012 ], [ -77.366779, 38.873999 ], [ -77.366666, 38.873986 ], [ -77.366501, 38.873968 ], [ -77.366313, 38.873934 ], [ -77.366155, 38.873897 ], [ -77.365932, 38.873832 ], [ -77.36562, 38.873728 ], [ -77.365375, 38.873647 ], [ -77.36552, 38.873752 ], [ -77.365645, 38.873824 ], [ -77.365759, 38.873875 ] ] } } diff --git a/packages/turf-line-distance/test/route2.geojson b/packages/turf-line-distance/test/route2.geojson new file mode 100644 index 0000000000..b1f962e8e6 --- /dev/null +++ b/packages/turf-line-distance/test/route2.geojson @@ -0,0 +1,2 @@ + +{ "type": "Feature", "properties": { "name": null, "cmt": null, "desc": null, "src": null, "link1_href": null, "link1_text": null, "link1_type": null, "link2_href": null, "link2_text": null, "link2_type": null, "number": null, "type": null }, "geometry": { "type": "LineString", "coordinates": [ [ -113.928988, 50.814121 ], [ -113.928993, 50.813067 ], [ -113.928994, 50.811043 ], [ -113.928995, 50.807418 ], [ -113.929029, 50.804989 ], [ -113.951995, 50.804953 ], [ -113.956813, 50.804931 ], [ -113.957629, 50.804917 ], [ -113.958021, 50.804876 ], [ -113.958575, 50.804779 ], [ -113.959011, 50.804687 ], [ -113.959367, 50.804572 ], [ -113.959858, 50.804414 ], [ -113.960433, 50.804102 ], [ -113.960932, 50.803769 ], [ -113.961563, 50.803306 ], [ -113.961754, 50.803166 ], [ -113.962486, 50.802753 ], [ -113.9641, 50.801549 ], [ -113.966048, 50.800154 ], [ -113.967597, 50.799082 ], [ -113.968657, 50.798289 ], [ -113.969382, 50.79779 ], [ -113.969303, 50.797653 ], [ -113.968833, 50.797177 ], [ -113.968399, 50.796832 ], [ -113.96652, 50.796071 ], [ -113.965325, 50.795579 ], [ -113.964608, 50.795229 ], [ -113.963373, 50.794321 ], [ -113.962094, 50.793355 ], [ -113.956995, 50.789049 ], [ -113.951125, 50.784098 ], [ -113.948573, 50.78194 ], [ -113.941011, 50.775626 ], [ -113.933724, 50.769538 ], [ -113.914584, 50.753577 ], [ -113.906521, 50.746803 ], [ -113.896774, 50.738614 ], [ -113.886275, 50.729779 ], [ -113.88594, 50.729474 ], [ -113.885307, 50.728898 ], [ -113.884903, 50.728477 ], [ -113.884523, 50.728028 ], [ -113.884201, 50.727599 ], [ -113.883986, 50.727298 ], [ -113.883696, 50.726863 ], [ -113.883482, 50.72648 ], [ -113.883314, 50.726156 ], [ -113.883153, 50.725767 ], [ -113.883094, 50.725646 ], [ -113.883031, 50.725465 ], [ -113.882906, 50.725155 ], [ -113.882792, 50.724718 ], [ -113.882641, 50.7241 ], [ -113.882584, 50.723735 ], [ -113.88255, 50.723367 ], [ -113.882523, 50.72258 ], [ -113.882495, 50.717709 ], [ -113.882486, 50.713302 ], [ -113.882476, 50.712125 ], [ -113.882468, 50.702531 ], [ -113.882456, 50.699815 ], [ -113.882434, 50.698229 ], [ -113.882445, 50.693791 ], [ -113.882419, 50.692602 ], [ -113.882412, 50.692077 ], [ -113.882405, 50.691705 ], [ -113.882365, 50.691331 ], [ -113.882289, 50.690878 ], [ -113.882163, 50.690282 ], [ -113.882074, 50.689985 ], [ -113.881908, 50.689517 ], [ -113.881705, 50.689095 ], [ -113.881622, 50.688959 ], [ -113.881501, 50.688721 ], [ -113.881281, 50.688347 ], [ -113.88097, 50.687826 ], [ -113.880715, 50.687491 ], [ -113.880385, 50.687085 ], [ -113.878859, 50.685206 ], [ -113.877456, 50.68348 ], [ -113.875929, 50.68157 ], [ -113.873357, 50.67843 ], [ -113.871364, 50.675999 ], [ -113.869142, 50.673289 ], [ -113.868358, 50.672328 ], [ -113.868037, 50.671943 ], [ -113.867467, 50.671232 ], [ -113.866987, 50.670734 ], [ -113.866668, 50.670424 ], [ -113.866296, 50.670141 ], [ -113.865816, 50.669814 ], [ -113.865451, 50.6696 ], [ -113.8651, 50.669419 ], [ -113.864667, 50.669203 ], [ -113.864079, 50.668945 ], [ -113.863436, 50.668716 ], [ -113.862804, 50.66849 ], [ -113.861739, 50.668114 ], [ -113.853421, 50.665144 ], [ -113.842891, 50.661554 ], [ -113.842171, 50.661197 ], [ -113.841049, 50.660571 ], [ -113.840156, 50.659997 ], [ -113.839716, 50.65961 ], [ -113.839157, 50.659132 ], [ -113.838847, 50.658805 ], [ -113.838358, 50.658284 ], [ -113.837938, 50.657723 ], [ -113.837609, 50.657111 ], [ -113.837268, 50.656259 ], [ -113.83703, 50.655665 ], [ -113.836937, 50.654919 ], [ -113.836909, 50.654144 ], [ -113.836859, 50.650724 ], [ -113.836826, 50.647581 ], [ -113.836828, 50.646677 ], [ -113.836945, 50.631237 ], [ -113.836945, 50.630338 ], [ -113.83681, 50.620833 ], [ -113.836809, 50.615002 ], [ -113.836748, 50.614363 ], [ -113.836695, 50.613902 ], [ -113.836544, 50.613327 ], [ -113.836395, 50.612865 ], [ -113.836165, 50.612347 ], [ -113.835974, 50.611908 ], [ -113.835688, 50.611368 ], [ -113.834199, 50.609116 ], [ -113.831975, 50.605815 ], [ -113.830597, 50.603738 ], [ -113.830194, 50.603006 ], [ -113.829862, 50.60236 ], [ -113.829623, 50.601865 ], [ -113.829361, 50.601178 ], [ -113.829199, 50.600699 ], [ -113.829001, 50.600003 ], [ -113.828688, 50.598264 ], [ -113.828653, 50.597525 ], [ -113.828653, 50.596741 ], [ -113.828659, 50.589493 ], [ -113.828615, 50.584393 ], [ -113.82855, 50.57625 ], [ -113.82857, 50.572186 ], [ -113.82858, 50.57189 ], [ -113.828436, 50.567929 ], [ -113.828262, 50.565198 ], [ -113.82828, 50.550181 ], [ -113.82829, 50.541809 ], [ -113.828291, 50.541417 ], [ -113.828359, 50.484565 ], [ -113.828388, 50.473188 ], [ -113.82839, 50.426319 ], [ -113.828391, 50.410937 ], [ -113.828495, 50.409031 ], [ -113.828495, 50.408255 ], [ -113.828326, 50.404708 ], [ -113.827868, 50.402523 ], [ -113.827189, 50.400367 ], [ -113.82573, 50.397464 ], [ -113.824909, 50.396393 ], [ -113.823811, 50.394869 ], [ -113.82128, 50.391895 ], [ -113.801481, 50.376398 ], [ -113.797907, 50.371872 ], [ -113.796297, 50.369858 ], [ -113.795351, 50.368139 ], [ -113.790726, 50.359724 ], [ -113.789384, 50.358382 ], [ -113.78784, 50.357509 ], [ -113.782077, 50.355219 ], [ -113.781868, 50.355163 ], [ -113.780696, 50.354643 ], [ -113.779832, 50.354058 ], [ -113.779376, 50.353709 ], [ -113.779034, 50.353447 ], [ -113.777779, 50.352208 ], [ -113.776476, 50.350971 ], [ -113.775669, 50.350156 ], [ -113.774903, 50.349363 ], [ -113.774528, 50.349008 ], [ -113.774139, 50.348641 ], [ -113.773752, 50.348267 ], [ -113.773367, 50.347894 ], [ -113.772991, 50.347521 ], [ -113.77261, 50.347144 ], [ -113.77224, 50.346771 ], [ -113.771866, 50.346393 ], [ -113.771491, 50.346021 ], [ -113.771101, 50.345634 ], [ -113.770724, 50.345257 ], [ -113.770334, 50.344868 ], [ -113.769256, 50.343852 ], [ -113.767134, 50.341669 ], [ -113.764647, 50.339182 ], [ -113.764438, 50.338973 ], [ -113.761597, 50.336333 ], [ -113.758593, 50.33458 ], [ -113.755546, 50.333429 ], [ -113.751856, 50.33269 ], [ -113.745118, 50.331594 ], [ -113.742286, 50.330717 ], [ -113.739453, 50.329347 ], [ -113.731213, 50.32247 ], [ -113.723532, 50.315976 ], [ -113.722158, 50.313619 ], [ -113.718768, 50.300682 ], [ -113.714948, 50.295611 ], [ -113.70452, 50.282916 ], [ -113.688985, 50.273536 ], [ -113.671647, 50.26314 ], [ -113.665976, 50.259608 ], [ -113.661862, 50.256884 ], [ -113.66006, 50.254964 ], [ -113.659379, 50.253877 ], [ -113.658858, 50.252741 ], [ -113.658676, 50.251733 ], [ -113.656669, 50.241627 ], [ -113.656154, 50.237592 ], [ -113.655983, 50.234435 ], [ -113.656026, 50.226446 ], [ -113.656001, 50.222848 ], [ -113.655983, 50.212634 ], [ -113.655983, 50.198956 ], [ -113.656026, 50.187774 ], [ -113.655725, 50.180189 ], [ -113.654781, 50.177056 ], [ -113.650834, 50.16488 ], [ -113.648988, 50.159931 ], [ -113.648171, 50.158673 ], [ -113.647041, 50.157055 ], [ -113.642675, 50.151639 ], [ -113.639814, 50.147556 ], [ -113.634175, 50.135735 ], [ -113.632251, 50.131741 ], [ -113.620363, 50.106626 ], [ -113.619376, 50.104527 ], [ -113.61384, 50.092744 ], [ -113.608561, 50.081675 ], [ -113.606581, 50.077494 ], [ -113.603669, 50.071347 ], [ -113.596202, 50.055589 ], [ -113.589593, 50.041645 ], [ -113.585973, 50.034075 ], [ -113.583284, 50.028469 ], [ -113.578879, 50.019214 ], [ -113.577072, 50.015416 ], [ -113.576933, 50.015123 ], [ -113.575461, 50.01195 ], [ -113.56968, 49.999485 ], [ -113.565276, 49.990109 ], [ -113.562856, 49.984972 ], [ -113.558388, 49.975529 ], [ -113.556763, 49.972084 ], [ -113.551497, 49.960982 ], [ -113.550282, 49.958226 ], [ -113.543115, 49.943177 ], [ -113.537579, 49.93141 ], [ -113.531657, 49.91895 ], [ -113.528868, 49.913112 ], [ -113.52852, 49.912237 ], [ -113.528209, 49.911247 ], [ -113.528013, 49.910313 ], [ -113.527878, 49.909552 ], [ -113.527877, 49.908805 ], [ -113.528009, 49.904496 ], [ -113.527999, 49.902765 ], [ -113.527923, 49.890232 ], [ -113.527923, 49.878148 ], [ -113.527237, 49.875493 ], [ -113.526537, 49.873052 ], [ -113.52449, 49.865701 ], [ -113.524447, 49.856267 ], [ -113.52449, 49.841269 ], [ -113.524447, 49.826764 ], [ -113.52437, 49.815239 ], [ -113.524361, 49.813862 ], [ -113.524357, 49.801088 ], [ -113.524347, 49.798401 ], [ -113.524359, 49.795748 ], [ -113.524362, 49.795059 ], [ -113.524404, 49.785441 ], [ -113.524345, 49.778892 ], [ -113.524361, 49.771945 ], [ -113.523632, 49.77031 ], [ -113.522087, 49.769007 ], [ -113.520199, 49.768287 ], [ -113.514319, 49.76643 ], [ -113.510629, 49.764933 ], [ -113.50771, 49.763048 ], [ -113.494964, 49.752901 ], [ -113.479476, 49.742059 ], [ -113.460012, 49.728293 ], [ -113.455597, 49.725235 ], [ -113.454572, 49.72442 ], [ -113.45366, 49.723598 ], [ -113.452976, 49.722915 ], [ -113.45129, 49.720944 ], [ -113.450256, 49.719782 ], [ -113.447746, 49.716986 ], [ -113.447289, 49.716417 ], [ -113.443365, 49.71203 ], [ -113.443141, 49.711789 ], [ -113.442819, 49.711601 ], [ -113.442606, 49.711479 ], [ -113.44236, 49.711374 ], [ -113.442103, 49.711279 ], [ -113.441837, 49.711197 ], [ -113.441458, 49.711124 ], [ -113.441117, 49.711086 ], [ -113.440779, 49.711071 ], [ -113.440369, 49.71109 ], [ -113.439978, 49.71114 ], [ -113.439697, 49.711196 ], [ -113.439397, 49.711273 ], [ -113.439102, 49.71139 ], [ -113.438862, 49.711498 ], [ -113.438591, 49.711635 ], [ -113.438391, 49.711766 ], [ -113.438075, 49.712061 ], [ -113.437745, 49.712489 ], [ -113.43745, 49.712915 ], [ -113.43721, 49.713212 ], [ -113.436932, 49.713495 ], [ -113.436629, 49.713751 ], [ -113.436287, 49.713988 ], [ -113.435908, 49.714204 ], [ -113.435538, 49.714393 ], [ -113.431814, 49.715951 ], [ -113.423934, 49.718913 ], [ -113.423148, 49.719208 ], [ -113.419515, 49.720574 ], [ -113.418553, 49.720884 ], [ -113.417353, 49.721191 ], [ -113.416622, 49.721378 ], [ -113.415189, 49.721933 ], [ -113.414887, 49.722092 ], [ -113.414553, 49.722328 ], [ -113.414204, 49.722586 ], [ -113.413109, 49.723458 ], [ -113.412313, 49.724209 ], [ -113.412068, 49.724385 ], [ -113.411871, 49.724508 ], [ -113.41169, 49.724585 ], [ -113.411456, 49.724665 ], [ -113.411213, 49.724721 ], [ -113.410939, 49.724758 ], [ -113.410649, 49.724769 ], [ -113.408706, 49.724761 ], [ -113.405913, 49.724764 ], [ -113.403119, 49.724754 ], [ -113.400316, 49.724758 ], [ -113.397541, 49.724759 ], [ -113.396042, 49.724769 ], [ -113.395455, 49.724758 ], [ -113.395172, 49.724734 ], [ -113.394938, 49.724709 ], [ -113.394729, 49.724678 ], [ -113.394467, 49.724619 ], [ -113.394209, 49.724544 ], [ -113.393974, 49.724469 ], [ -113.393696, 49.724366 ], [ -113.393468, 49.724249 ], [ -113.393241, 49.72412 ], [ -113.393012, 49.723965 ], [ -113.39289, 49.723864 ], [ -113.391771, 49.722807 ], [ -113.391196, 49.722209 ], [ -113.390266, 49.721242 ], [ -113.389586, 49.720567 ], [ -113.388246, 49.71917 ], [ -113.387068, 49.717968 ], [ -113.386688, 49.717602 ], [ -113.386617, 49.717518 ], [ -113.386398, 49.717254 ], [ -113.386209, 49.717057 ], [ -113.385914, 49.716751 ], [ -113.385697, 49.71658 ], [ -113.385459, 49.716404 ], [ -113.385223, 49.716267 ], [ -113.384941, 49.716121 ], [ -113.384654, 49.716013 ], [ -113.384337, 49.715925 ], [ -113.383953, 49.715848 ], [ -113.383617, 49.715803 ], [ -113.383303, 49.715777 ], [ -113.382948, 49.715769 ], [ -113.382593, 49.71579 ], [ -113.382269, 49.715822 ], [ -113.381923, 49.715886 ], [ -113.381566, 49.715981 ], [ -113.381244, 49.716092 ], [ -113.380957, 49.716219 ], [ -113.380551, 49.716436 ], [ -113.380035, 49.71673 ], [ -113.379484, 49.717081 ], [ -113.378419, 49.71777 ], [ -113.377851, 49.718172 ], [ -113.376955, 49.718849 ], [ -113.376472, 49.719244 ], [ -113.375953, 49.719695 ], [ -113.375418, 49.720164 ], [ -113.374752, 49.720812 ], [ -113.373389, 49.722261 ], [ -113.372553, 49.723172 ], [ -113.371753, 49.724069 ], [ -113.371091, 49.724816 ], [ -113.370703, 49.725251 ], [ -113.370292, 49.725659 ], [ -113.36989, 49.726068 ], [ -113.369354, 49.726543 ], [ -113.368728, 49.727064 ], [ -113.368135, 49.727526 ], [ -113.367567, 49.727939 ], [ -113.366419, 49.728699 ], [ -113.366091, 49.728877 ], [ -113.365827, 49.729022 ], [ -113.365501, 49.729201 ], [ -113.362951, 49.730439 ], [ -113.358468, 49.732139 ], [ -113.3397, 49.739588 ], [ -113.335475, 49.741364 ], [ -113.327488, 49.744425 ], [ -113.318052, 49.748192 ], [ -113.313869, 49.749882 ], [ -113.31224, 49.750619 ], [ -113.310651, 49.75165 ], [ -113.307682, 49.753879 ], [ -113.302921, 49.757409 ], [ -113.297078, 49.761832 ], [ -113.293465, 49.764507 ], [ -113.274088, 49.778989 ], [ -113.273227, 49.779697 ], [ -113.272213, 49.780484 ], [ -113.270309, 49.781807 ], [ -113.269287, 49.782542 ], [ -113.268506, 49.783052 ], [ -113.267549, 49.783577 ], [ -113.266355, 49.784155 ], [ -113.264867, 49.784696 ], [ -113.26421, 49.78488 ], [ -113.263279, 49.785126 ], [ -113.262406, 49.785321 ], [ -113.261535, 49.785468 ], [ -113.260247, 49.785632 ], [ -113.2584, 49.785752 ], [ -113.253189, 49.785761 ], [ -113.2503, 49.785759 ], [ -113.246741, 49.785753 ], [ -113.243803, 49.785748 ], [ -113.24168, 49.785746 ], [ -113.239441, 49.785743 ], [ -113.235416, 49.785738 ], [ -113.232546, 49.785734 ], [ -113.230542, 49.78573 ], [ -113.207916, 49.785665 ], [ -113.188962, 49.785585 ], [ -113.187421, 49.785394 ], [ -113.185955, 49.785084 ], [ -113.182069, 49.784248 ], [ -113.178433, 49.783545 ], [ -113.175537, 49.783555 ], [ -113.172403, 49.784002 ], [ -113.169876, 49.784514 ], [ -113.165425, 49.785057 ], [ -113.162661, 49.785308 ], [ -113.158491, 49.785468 ], [ -113.154009, 49.785249 ], [ -113.150706, 49.7849 ], [ -113.138727, 49.78387 ], [ -113.137918, 49.7838 ], [ -113.132484, 49.783537 ], [ -113.127139, 49.783666 ], [ -113.121522, 49.784134 ], [ -113.116401, 49.784873 ], [ -113.108878, 49.786479 ], [ -113.10643, 49.787036 ], [ -113.100519, 49.78837 ], [ -113.099817, 49.78851 ], [ -113.099069, 49.788664 ], [ -113.098414, 49.788796 ], [ -113.097678, 49.788933 ], [ -113.096947, 49.789058 ], [ -113.096124, 49.78919 ], [ -113.095087, 49.789365 ], [ -113.093946, 49.789519 ], [ -113.092851, 49.789655 ], [ -113.091995, 49.789773 ], [ -113.091108, 49.78988 ], [ -113.090105, 49.789981 ], [ -113.089148, 49.790064 ], [ -113.088464, 49.790125 ], [ -113.087728, 49.790181 ], [ -113.08695, 49.790229 ], [ -113.08621, 49.790281 ], [ -113.085391, 49.790327 ], [ -113.084622, 49.790364 ], [ -113.083774, 49.790396 ], [ -113.082731, 49.790426 ], [ -113.081849, 49.790441 ], [ -113.080915, 49.790449 ], [ -113.080041, 49.790455 ], [ -113.079132, 49.790458 ], [ -113.078156, 49.790437 ], [ -113.077306, 49.790416 ], [ -113.076308, 49.790386 ], [ -113.075035, 49.79033 ], [ -113.073984, 49.790268 ], [ -113.073014, 49.790204 ], [ -113.072411, 49.790162 ], [ -113.071942, 49.790123 ], [ -113.069874, 49.789921 ], [ -113.06869, 49.789793 ], [ -113.067583, 49.789667 ], [ -113.066892, 49.789578 ], [ -113.066126, 49.789472 ], [ -113.064972, 49.789301 ], [ -113.04876, 49.786854 ], [ -113.048, 49.78674 ], [ -113.047462, 49.78667 ], [ -113.046933, 49.786601 ], [ -113.046365, 49.786543 ], [ -113.041994, 49.786136 ], [ -113.038418, 49.786047 ], [ -113.028911, 49.786062 ], [ -113.013026, 49.786042 ], [ -113.003977, 49.786038 ], [ -113.002681, 49.785962 ], [ -113.001644, 49.785864 ], [ -113.00048, 49.785713 ], [ -112.999756, 49.785611 ], [ -112.9987, 49.785408 ], [ -112.997454, 49.785132 ], [ -112.995534, 49.784581 ], [ -112.99125, 49.783007 ], [ -112.98295, 49.779625 ], [ -112.980557, 49.778522 ], [ -112.979018, 49.777554 ], [ -112.976341, 49.775651 ], [ -112.973797, 49.773044 ], [ -112.965769, 49.764644 ], [ -112.960895, 49.75933 ], [ -112.960092, 49.758465 ], [ -112.959726, 49.75808 ], [ -112.959447, 49.757828 ], [ -112.959069, 49.757507 ], [ -112.958709, 49.757166 ], [ -112.958281, 49.756793 ], [ -112.95762, 49.756294 ], [ -112.956931, 49.755799 ], [ -112.956159, 49.755282 ], [ -112.955682, 49.754998 ], [ -112.955151, 49.754703 ], [ -112.952858, 49.753509 ], [ -112.949354, 49.752075 ], [ -112.94544, 49.749962 ], [ -112.938188, 49.743931 ], [ -112.931304, 49.738228 ], [ -112.926731, 49.73422 ], [ -112.925384, 49.732989 ], [ -112.924479, 49.731925 ], [ -112.923468, 49.730575 ], [ -112.922298, 49.729055 ], [ -112.921036, 49.7277 ], [ -112.918917, 49.725859 ], [ -112.918155, 49.725203 ], [ -112.916619, 49.723846 ], [ -112.915487, 49.723018 ], [ -112.915163, 49.72283 ], [ -112.914796, 49.722631 ], [ -112.914432, 49.722464 ], [ -112.914031, 49.722286 ], [ -112.913669, 49.722145 ], [ -112.913246, 49.722004 ], [ -112.912907, 49.721891 ], [ -112.912605, 49.721797 ], [ -112.912248, 49.721697 ], [ -112.911203, 49.721427 ], [ -112.910101, 49.721135 ], [ -112.906937, 49.720299 ], [ -112.903215, 49.719342 ], [ -112.900165, 49.718558 ], [ -112.897476, 49.717852 ], [ -112.895936, 49.717459 ], [ -112.895282, 49.717281 ], [ -112.894243, 49.71701 ], [ -112.893141, 49.716728 ], [ -112.892426, 49.716529 ], [ -112.89165, 49.716338 ], [ -112.891198, 49.71622 ], [ -112.890633, 49.716083 ], [ -112.889897, 49.715934 ], [ -112.889174, 49.715796 ], [ -112.888532, 49.715689 ], [ -112.887541, 49.715558 ], [ -112.88613, 49.71536 ], [ -112.885501, 49.715271 ], [ -112.884833, 49.715175 ], [ -112.884308, 49.715088 ], [ -112.883816, 49.71495 ], [ -112.883277, 49.714832 ], [ -112.882696, 49.714691 ], [ -112.88207, 49.714542 ], [ -112.881531, 49.714385 ], [ -112.881025, 49.714222 ], [ -112.880522, 49.714039 ], [ -112.879986, 49.713834 ], [ -112.879529, 49.71365 ], [ -112.87903, 49.713431 ], [ -112.878502, 49.713173 ], [ -112.877609, 49.712649 ], [ -112.875259, 49.711284 ], [ -112.873228, 49.710141 ], [ -112.872763, 49.709872 ], [ -112.87224, 49.709593 ], [ -112.871848, 49.709384 ], [ -112.871432, 49.709188 ], [ -112.871061, 49.709022 ], [ -112.870716, 49.708873 ], [ -112.870311, 49.708723 ], [ -112.869954, 49.708592 ], [ -112.869443, 49.708436 ], [ -112.868983, 49.708311 ], [ -112.868462, 49.708183 ], [ -112.86782, 49.708055 ], [ -112.867368, 49.707982 ], [ -112.866939, 49.707916 ], [ -112.86545, 49.707716 ], [ -112.861762, 49.707191 ], [ -112.86017, 49.706981 ], [ -112.85809, 49.706677 ], [ -112.85777, 49.706622 ], [ -112.857467, 49.706553 ], [ -112.857076, 49.706452 ], [ -112.856698, 49.706338 ], [ -112.854212, 49.705528 ], [ -112.85381, 49.705386 ], [ -112.853466, 49.70523 ], [ -112.853137, 49.705049 ], [ -112.852839, 49.704853 ], [ -112.851852, 49.704221 ], [ -112.851516, 49.704031 ], [ -112.851207, 49.703872 ], [ -112.850867, 49.70373 ], [ -112.850433, 49.703565 ], [ -112.84992, 49.703388 ], [ -112.847903, 49.702792 ], [ -112.845724, 49.702167 ], [ -112.844077, 49.701628 ], [ -112.8432, 49.701369 ], [ -112.842649, 49.701218 ], [ -112.842201, 49.701114 ], [ -112.841728, 49.701025 ], [ -112.840794, 49.700856 ], [ -112.838125, 49.700426 ], [ -112.834609, 49.699873 ], [ -112.832064, 49.699465 ], [ -112.828981, 49.698964 ], [ -112.828552, 49.698904 ], [ -112.827826, 49.698813 ], [ -112.827096, 49.698728 ], [ -112.826436, 49.698665 ], [ -112.825387, 49.6986 ], [ -112.824515, 49.698555 ], [ -112.823879, 49.698527 ], [ -112.822719, 49.698465 ], [ -112.820041, 49.698338 ], [ -112.818601, 49.69826 ], [ -112.817659, 49.698214 ], [ -112.817451, 49.698208 ], [ -112.816791, 49.698174 ], [ -112.81589, 49.698112 ], [ -112.814861, 49.698029 ], [ -112.814224, 49.697963 ], [ -112.813253, 49.697849 ], [ -112.813147, 49.697836 ], [ -112.811952, 49.697672 ], [ -112.811842, 49.697656 ], [ -112.811502, 49.697615 ], [ -112.811227, 49.697581 ], [ -112.810773, 49.697561 ], [ -112.810352, 49.69755 ], [ -112.810002, 49.697537 ], [ -112.809403, 49.697532 ], [ -112.806575, 49.697613 ], [ -112.805437, 49.69765 ], [ -112.804522, 49.697685 ], [ -112.80393, 49.697707 ], [ -112.80238, 49.69777 ], [ -112.802025, 49.697788 ], [ -112.801625, 49.697812 ], [ -112.800653, 49.697888 ], [ -112.799723, 49.697967 ], [ -112.79867, 49.698052 ], [ -112.798046, 49.698084 ], [ -112.797631, 49.698102 ], [ -112.797077, 49.698117 ], [ -112.796376, 49.698135 ], [ -112.79554, 49.698135 ], [ -112.794414, 49.698135 ], [ -112.793544, 49.698131 ], [ -112.788404, 49.698111 ], [ -112.787759, 49.698108 ], [ -112.787623, 49.698109 ], [ -112.786794, 49.698114 ], [ -112.785574, 49.698121 ], [ -112.784545, 49.69817 ], [ -112.784282, 49.698206 ], [ -112.783264, 49.698348 ], [ -112.782977, 49.69837 ], [ -112.782674, 49.69837 ], [ -112.782377, 49.69836 ], [ -112.781976, 49.698324 ], [ -112.781573, 49.698283 ], [ -112.780374, 49.698174 ], [ -112.779856, 49.698084 ], [ -112.77969, 49.698039 ], [ -112.779534, 49.697963 ], [ -112.779416, 49.697879 ], [ -112.779336, 49.697779 ], [ -112.779293, 49.697678 ], [ -112.779266, 49.697588 ], [ -112.779277, 49.697432 ], [ -112.779309, 49.697054 ], [ -112.779557, 49.695985 ], [ -112.779657, 49.695544 ], [ -112.779736, 49.695225 ], [ -112.779761, 49.695101 ], [ -112.779809, 49.694922 ], [ -112.779952, 49.69441 ], [ -112.780019, 49.694125 ], [ -112.780058, 49.69387 ], [ -112.780085, 49.693604 ], [ -112.78011, 49.693292 ], [ -112.780165, 49.692652 ], [ -112.780169, 49.692372 ], [ -112.780165, 49.692154 ], [ -112.780164, 49.692098 ], [ -112.780144, 49.691862 ], [ -112.780143, 49.691843 ], [ -112.780133, 49.69176 ], [ -112.780037, 49.691006 ], [ -112.779822, 49.689657 ], [ -112.77979, 49.689308 ], [ -112.779748, 49.688889 ], [ -112.779749, 49.688478 ], [ -112.779739, 49.688031 ], [ -112.779748, 49.687622 ], [ -112.779769, 49.687159 ], [ -112.779816, 49.686494 ], [ -112.779896, 49.685531 ], [ -112.779868, 49.68512 ], [ -112.779875, 49.684881 ], [ -112.779863, 49.684535 ], [ -112.77986, 49.684358 ], [ -112.779847, 49.684121 ], [ -112.779816, 49.683702 ], [ -112.779801, 49.683613 ], [ -112.779746, 49.683344 ], [ -112.779688, 49.682957 ], [ -112.779596, 49.68252 ], [ -112.779542, 49.68228 ], [ -112.7794, 49.681732 ], [ -112.779248, 49.681225 ], [ -112.779016, 49.680478 ], [ -112.778857, 49.679737 ], [ -112.778724, 49.678803 ], [ -112.778685, 49.678481 ], [ -112.77867, 49.678161 ], [ -112.778679, 49.677477 ], [ -112.778716, 49.676815 ], [ -112.77879, 49.676373 ], [ -112.778793, 49.676281 ], [ -112.778809, 49.67613 ], [ -112.778826, 49.675962 ], [ -112.779009, 49.67502 ], [ -112.779283, 49.674077 ], [ -112.779324, 49.67372 ], [ -112.779398, 49.673084 ], [ -112.779441, 49.672708 ], [ -112.779445, 49.672624 ], [ -112.779457, 49.6724 ], [ -112.779474, 49.670433 ], [ -112.779525, 49.669583 ], [ -112.779531, 49.668796 ], [ -112.779522, 49.66867 ], [ -112.779234, 49.66867 ], [ -112.778749, 49.66867 ], [ -112.773523, 49.668658 ], [ -112.769369, 49.668649 ], [ -112.763756, 49.668637 ], [ -112.7565, 49.668622 ], [ -112.75294, 49.668604 ], [ -112.752507, 49.668609 ], [ -112.751647, 49.668588 ], [ -112.750485, 49.668477 ], [ -112.748828, 49.668137 ], [ -112.747424, 49.667643 ], [ -112.746405, 49.667117 ], [ -112.745658, 49.666544 ], [ -112.743059, 49.663524 ], [ -112.742076, 49.662492 ], [ -112.741004, 49.661674 ], [ -112.73773, 49.659519 ], [ -112.735465, 49.657989 ], [ -112.733655, 49.656859 ], [ -112.718533, 49.646941 ], [ -112.708401, 49.640314 ], [ -112.699223, 49.634317 ], [ -112.697367, 49.633097 ], [ -112.696977, 49.632838 ], [ -112.688059, 49.626979 ], [ -112.68302, 49.623675 ], [ -112.676625, 49.619483 ], [ -112.667074, 49.613228 ], [ -112.658988, 49.607908 ], [ -112.655248, 49.605484 ], [ -112.650972, 49.603234 ], [ -112.646487, 49.600778 ], [ -112.644902, 49.599632 ], [ -112.643248, 49.598383 ], [ -112.641103, 49.596798 ], [ -112.639355, 49.595616 ], [ -112.637, 49.594133 ], [ -112.627891, 49.588425 ], [ -112.602707, 49.572537 ], [ -112.600552, 49.571077 ], [ -112.598617, 49.5692 ], [ -112.59449, 49.564228 ], [ -112.593913, 49.5636 ], [ -112.593075, 49.562994 ], [ -112.592311, 49.562392 ], [ -112.591327, 49.561818 ], [ -112.589132, 49.56091 ], [ -112.585717, 49.559813 ], [ -112.580643, 49.558189 ], [ -112.579135, 49.557557 ], [ -112.577853, 49.55687 ], [ -112.576584, 49.555934 ], [ -112.573576, 49.55323 ], [ -112.570447, 49.550424 ], [ -112.569232, 49.549564 ], [ -112.567477, 49.548436 ], [ -112.556735, 49.541871 ], [ -112.550446, 49.538028 ], [ -112.546175, 49.535345 ], [ -112.543195, 49.53355 ], [ -112.541943, 49.532867 ], [ -112.522018, 49.522571 ], [ -112.51966, 49.521328 ], [ -112.515058, 49.518953 ], [ -112.512595, 49.517628 ], [ -112.51096, 49.516524 ], [ -112.50948, 49.515214 ], [ -112.508358, 49.513958 ], [ -112.507396, 49.512646 ], [ -112.504667, 49.506398 ], [ -112.503772, 49.504449 ], [ -112.502829, 49.502755 ], [ -112.502134, 49.501789 ], [ -112.500323, 49.499793 ], [ -112.498242, 49.497945 ], [ -112.491937, 49.492826 ], [ -112.472122, 49.477074 ], [ -112.46972, 49.475443 ], [ -112.458697, 49.468584 ], [ -112.452076, 49.464789 ], [ -112.441426, 49.458313 ], [ -112.440081, 49.457555 ], [ -112.439154, 49.45711 ], [ -112.437692, 49.456507 ], [ -112.428185, 49.452715 ], [ -112.42567, 49.451509 ], [ -112.421872, 49.448943 ], [ -112.416852, 49.445256 ], [ -112.415374, 49.444112 ], [ -112.413757, 49.443067 ], [ -112.41199, 49.442277 ], [ -112.408866, 49.441094 ], [ -112.403355, 49.439005 ], [ -112.400426, 49.437907 ], [ -112.395624, 49.436024 ], [ -112.393366, 49.43506 ], [ -112.391141, 49.43401 ], [ -112.389667, 49.433278 ], [ -112.387242, 49.431857 ], [ -112.380495, 49.427283 ], [ -112.377371, 49.425166 ], [ -112.370769, 49.420228 ], [ -112.369213, 49.419103 ], [ -112.368029, 49.418322 ], [ -112.366868, 49.417688 ], [ -112.365853, 49.417109 ], [ -112.364196, 49.416279 ], [ -112.358645, 49.413606 ], [ -112.345069, 49.40697 ], [ -112.313601, 49.391666 ], [ -112.293379, 49.381796 ], [ -112.280866, 49.375648 ], [ -112.275641, 49.37312 ], [ -112.27415, 49.372357 ], [ -112.272971, 49.371647 ], [ -112.272087, 49.371077 ], [ -112.271197, 49.370405 ], [ -112.270258, 49.369532 ], [ -112.269242, 49.36847 ], [ -112.263635, 49.361606 ], [ -112.261762, 49.359287 ], [ -112.252776, 49.348158 ], [ -112.236226, 49.327356 ], [ -112.231602, 49.321856 ], [ -112.231504, 49.32174 ], [ -112.22954, 49.319363 ], [ -112.227247, 49.316403 ], [ -112.224225, 49.312727 ], [ -112.22224, 49.310555 ], [ -112.216986, 49.304836 ], [ -112.215307, 49.3031 ], [ -112.213887, 49.301877 ], [ -112.213028, 49.301145 ], [ -112.204369, 49.294474 ], [ -112.201434, 49.291851 ], [ -112.200807, 49.291228 ], [ -112.200423, 49.290767 ], [ -112.200161, 49.290419 ], [ -112.199859, 49.289985 ], [ -112.199566, 49.2895 ], [ -112.199306, 49.289012 ], [ -112.199053, 49.288493 ], [ -112.198839, 49.287999 ], [ -112.198721, 49.287648 ], [ -112.198561, 49.28716 ], [ -112.198436, 49.286692 ], [ -112.198364, 49.286224 ], [ -112.198303, 49.285775 ], [ -112.198271, 49.285347 ], [ -112.198256, 49.282987 ], [ -112.198269, 49.279832 ], [ -112.197949, 49.277457 ], [ -112.196565, 49.273803 ], [ -112.189342, 49.264663 ], [ -112.187679, 49.262625 ], [ -112.187029, 49.261975 ], [ -112.185766, 49.260758 ], [ -112.185003, 49.259994 ], [ -112.184046, 49.259256 ], [ -112.182999, 49.258515 ], [ -112.181937, 49.257797 ], [ -112.180185, 49.2566 ], [ -112.179314, 49.25606 ], [ -112.178353, 49.255415 ], [ -112.177525, 49.254853 ], [ -112.176769, 49.254313 ], [ -112.176125, 49.253788 ], [ -112.174746, 49.252496 ], [ -112.173897, 49.251682 ], [ -112.173107, 49.250905 ], [ -112.153316, 49.231556 ], [ -112.145266, 49.223554 ], [ -112.137196, 49.215571 ], [ -112.13617, 49.214714 ], [ -112.134956, 49.213742 ], [ -112.134168, 49.213187 ], [ -112.132859, 49.212334 ], [ -112.13166, 49.211607 ], [ -112.12957, 49.210494 ], [ -112.126976, 49.209298 ], [ -112.123065, 49.207555 ], [ -112.121541, 49.206848 ], [ -112.120052, 49.206151 ], [ -112.118948, 49.205619 ], [ -112.117869, 49.205062 ], [ -112.11706, 49.204623 ], [ -112.115236, 49.203546 ], [ -112.112919, 49.201989 ], [ -112.111625, 49.201012 ], [ -112.109029, 49.198836 ], [ -112.106118, 49.195686 ], [ -112.105716, 49.195156 ], [ -112.10511, 49.194341 ], [ -112.102212, 49.189769 ], [ -112.099016, 49.184803 ], [ -112.097293, 49.182034 ], [ -112.09607, 49.179971 ], [ -112.093881, 49.176527 ], [ -112.093098, 49.175222 ], [ -112.092754, 49.174577 ], [ -112.092518, 49.174107 ], [ -112.092368, 49.173658 ], [ -112.092271, 49.173279 ], [ -112.092175, 49.172816 ], [ -112.092083, 49.172436 ], [ -112.092105, 49.171924 ], [ -112.092116, 49.171461 ], [ -112.092153, 49.170923 ], [ -112.092303, 49.169933 ], [ -112.092797, 49.166924 ], [ -112.093183, 49.164483 ], [ -112.093425, 49.163015 ], [ -112.094079, 49.159023 ], [ -112.094508, 49.156383 ], [ -112.094555, 49.155953 ], [ -112.094556, 49.155221 ], [ -112.094514, 49.154793 ], [ -112.094503, 49.154492 ], [ -112.094385, 49.153874 ], [ -112.094213, 49.153187 ], [ -112.094063, 49.152773 ], [ -112.093902, 49.152351 ], [ -112.093602, 49.151853 ], [ -112.093237, 49.151257 ], [ -112.092797, 49.15078 ], [ -112.092443, 49.150366 ], [ -112.09211, 49.150043 ], [ -112.09144, 49.149473 ], [ -112.090329, 49.148576 ], [ -112.087872, 49.146674 ], [ -112.085019, 49.144442 ], [ -112.08445, 49.144014 ], [ -112.083795, 49.143488 ], [ -112.083195, 49.142934 ], [ -112.082218, 49.142021 ], [ -112.081255, 49.140863 ], [ -112.080652, 49.140161 ], [ -112.079815, 49.139052 ], [ -112.079375, 49.138315 ], [ -112.078935, 49.137592 ], [ -112.078367, 49.136469 ], [ -112.077562, 49.134475 ], [ -112.07679, 49.132524 ], [ -112.076328, 49.131429 ], [ -112.07591, 49.130565 ], [ -112.075325, 49.129377 ], [ -112.074891, 49.128684 ], [ -112.074472, 49.128059 ], [ -112.073582, 49.12674 ], [ -112.072631, 49.125499 ], [ -112.071973, 49.124711 ], [ -112.071054, 49.123645 ], [ -112.069784, 49.122387 ], [ -112.068512, 49.121237 ], [ -112.066629, 49.119662 ], [ -112.062677, 49.116351 ], [ -112.055397, 49.110231 ], [ -112.054528, 49.109557 ], [ -112.053423, 49.108763 ], [ -112.052461, 49.108147 ], [ -112.045612, 49.103924 ], [ -112.04278, 49.102161 ], [ -112.042125, 49.101683 ], [ -112.041514, 49.101163 ], [ -112.040923, 49.100503 ], [ -112.040258, 49.099716 ], [ -112.039046, 49.09777 ], [ -112.036761, 49.094883 ], [ -112.034383, 49.091688 ], [ -112.032973, 49.089733 ], [ -112.032072, 49.088525 ], [ -112.031257, 49.087397 ], [ -112.027952, 49.082826 ], [ -112.025918, 49.080115 ], [ -112.023929, 49.077471 ], [ -112.021412, 49.07398 ], [ -112.01924, 49.070443 ], [ -112.016505, 49.066092 ], [ -112.014616, 49.062914 ], [ -112.010898, 49.056849 ], [ -112.010336, 49.056053 ], [ -112.009981, 49.05549 ], [ -112.009595, 49.055054 ], [ -112.008383, 49.053913 ], [ -112.004081, 49.049886 ], [ -112.003484, 49.049323 ], [ -112.002241, 49.048061 ], [ -112.000186, 49.046131 ], [ -111.998352, 49.044419 ], [ -111.997649, 49.043715 ], [ -111.997014, 49.042914 ], [ -111.996531, 49.042236 ], [ -111.996215, 49.041782 ], [ -111.995927, 49.041307 ], [ -111.995594, 49.040698 ], [ -111.995321, 49.040118 ], [ -111.994693, 49.038673 ], [ -111.994001, 49.037108 ], [ -111.992996, 49.034801 ], [ -111.992369, 49.033409 ], [ -111.99149, 49.031403 ], [ -111.99082, 49.029866 ], [ -111.990004, 49.02802 ], [ -111.98936, 49.026568 ], [ -111.988769, 49.025185 ], [ -111.988218, 49.023936 ], [ -111.987589, 49.022536 ], [ -111.987371, 49.021885 ], [ -111.987235, 49.021333 ], [ -111.987097, 49.020858 ], [ -111.986995, 49.020386 ], [ -111.98692, 49.019658 ], [ -111.986872, 49.018979 ], [ -111.986866, 49.017199 ], [ -111.986872, 49.015542 ], [ -111.98686, 49.013841 ], [ -111.986847, 49.01231 ], [ -111.98685, 49.011137 ], [ -111.986861, 49.010352 ], [ -111.986797, 49.009758 ], [ -111.986645, 49.009206 ], [ -111.986377, 49.008696 ], [ -111.986147, 49.008354 ], [ -111.985836, 49.007998 ], [ -111.985337, 49.007558 ], [ -111.984989, 49.007266 ], [ -111.984301, 49.006795 ], [ -111.983474, 49.00638 ], [ -111.982516, 49.005993 ], [ -111.981765, 49.005715 ], [ -111.980942, 49.005514 ], [ -111.980129, 49.005334 ], [ -111.979328, 49.005194 ], [ -111.978062, 49.005092 ], [ -111.976985, 49.005074 ], [ -111.974918, 49.005173 ], [ -111.973139, 49.005292 ], [ -111.97154, 49.00538 ], [ -111.969019, 49.005514 ], [ -111.967562, 49.005617 ], [ -111.966045, 49.005705 ], [ -111.96469, 49.005725 ], [ -111.963991, 49.005648 ], [ -111.96346, 49.005567 ], [ -111.96295, 49.005448 ], [ -111.962485, 49.005296 ], [ -111.962163, 49.005187 ], [ -111.961761, 49.005004 ], [ -111.961293, 49.004765 ], [ -111.960951, 49.004554 ], [ -111.960789, 49.004426 ], [ -111.960561, 49.004236 ], [ -111.960215, 49.003866 ], [ -111.959973, 49.003571 ], [ -111.959774, 49.003265 ], [ -111.959681, 49.003043 ], [ -111.959581, 49.002794 ], [ -111.95951, 49.002452 ], [ -111.959584, 49.002087 ], [ -111.959768, 49.001731 ], [ -111.96008, 49.00139 ], [ -111.960323, 49.001097 ], [ -111.960993, 49.000276 ], [ -111.961147, 48.999913 ], [ -111.961177, 48.999675 ], [ -111.961154, 48.999405 ], [ -111.96075, 48.998378 ], [ -111.960537, 48.997835 ], [ -111.960261, 48.997296 ], [ -111.959961, 48.996969 ], [ -111.959772, 48.996485 ], [ -111.959789, 48.99582 ], [ -111.959918, 48.995443 ], [ -111.960048, 48.994907 ], [ -111.960094, 48.994603 ], [ -111.960084, 48.994414 ], [ -111.960109, 48.993824 ], [ -111.959994, 48.990856 ], [ -111.95827, 48.98094 ], [ -111.958253, 48.980705 ], [ -111.958185, 48.980405 ], [ -111.958073, 48.980015 ], [ -111.957973, 48.979662 ], [ -111.957788, 48.979177 ], [ -111.957579, 48.978688 ], [ -111.957393, 48.978342 ], [ -111.957182, 48.977986 ], [ -111.956929, 48.977617 ], [ -111.956287, 48.976872 ], [ -111.955429, 48.975932 ], [ -111.940434, 48.960617 ], [ -111.939756, 48.959862 ], [ -111.939258, 48.959163 ], [ -111.938864, 48.958475 ], [ -111.938589, 48.957934 ], [ -111.935242, 48.950139 ], [ -111.933705, 48.946469 ], [ -111.930948, 48.939956 ], [ -111.927211, 48.931012 ], [ -111.924522, 48.924688 ], [ -111.916608, 48.906188 ], [ -111.9112, 48.893335 ], [ -111.910969, 48.892844 ], [ -111.910694, 48.892325 ], [ -111.910265, 48.891676 ], [ -111.909921, 48.891247 ], [ -111.909492, 48.890711 ], [ -111.909046, 48.890237 ], [ -111.908119, 48.889328 ], [ -111.907385, 48.88863 ], [ -111.906844, 48.888116 ], [ -111.903694, 48.88508 ], [ -111.903291, 48.88469 ], [ -111.901737, 48.883161 ], [ -111.878176, 48.860393 ], [ -111.867242, 48.849753 ], [ -111.866486, 48.849013 ], [ -111.865877, 48.848301 ], [ -111.86531, 48.847533 ], [ -111.864675, 48.846613 ], [ -111.86392, 48.845195 ], [ -111.863594, 48.84437 ], [ -111.863233, 48.843167 ], [ -111.863139, 48.842738 ], [ -111.863019, 48.842026 ], [ -111.86295, 48.841071 ], [ -111.862942, 48.830326 ], [ -111.862942, 48.823285 ], [ -111.86289, 48.769261 ], [ -111.862864, 48.764515 ], [ -111.862813, 48.763474 ], [ -111.862718, 48.761743 ], [ -111.861611, 48.743809 ], [ -111.861439, 48.740289 ], [ -111.861439, 48.739949 ], [ -111.861594, 48.737176 ], [ -111.862178, 48.726719 ], [ -111.862229, 48.723792 ], [ -111.862083, 48.656639 ], [ -111.8621, 48.64979 ], [ -111.861997, 48.598701 ], [ -111.86198, 48.592185 ], [ -111.86198, 48.57272 ], [ -111.861912, 48.57163 ], [ -111.861817, 48.570494 ], [ -111.861697, 48.569205 ], [ -111.860581, 48.557657 ], [ -111.860077, 48.552231 ], [ -111.859663, 48.54801 ], [ -111.859594, 48.546805 ], [ -111.859611, 48.545322 ], [ -111.859792, 48.535383 ], [ -111.8598, 48.533888 ], [ -111.859886, 48.533121 ], [ -111.860015, 48.532581 ], [ -111.860246, 48.531939 ], [ -111.860598, 48.531387 ], [ -111.860942, 48.530899 ], [ -111.861688, 48.530109 ], [ -111.866109, 48.525755 ], [ -111.875953, 48.516192 ], [ -111.876929, 48.515247 ], [ -111.877241, 48.514954 ], [ -111.879228, 48.513021 ], [ -111.879759, 48.512467 ], [ -111.88006, 48.512124 ], [ -111.880267, 48.511881 ], [ -111.88042, 48.511679 ], [ -111.880571, 48.511473 ], [ -111.88094, 48.510956 ], [ -111.881292, 48.510376 ], [ -111.881653, 48.509733 ], [ -111.881996, 48.50904 ], [ -111.882305, 48.508346 ], [ -111.882562, 48.507572 ], [ -111.882777, 48.506828 ], [ -111.882931, 48.506134 ], [ -111.883026, 48.505588 ], [ -111.883441, 48.502992 ], [ -111.883604, 48.499975 ], [ -111.883614, 48.499767 ], [ -111.883635, 48.496433 ], [ -111.883673, 48.495815 ], [ -111.883734, 48.49503 ], [ -111.883798, 48.494396 ], [ -111.883866, 48.493802 ], [ -111.883999, 48.493 ], [ -111.884209, 48.492103 ], [ -111.884377, 48.49147 ], [ -111.884557, 48.490837 ], [ -111.885112, 48.489088 ], [ -111.885489, 48.48824 ], [ -111.886605, 48.485897 ], [ -111.88682, 48.485299 ], [ -111.887034, 48.484679 ], [ -111.887197, 48.484099 ], [ -111.887389, 48.483433 ], [ -111.88747, 48.482928 ], [ -111.887522, 48.482349 ], [ -111.887575, 48.481425 ], [ -111.887554, 48.480643 ], [ -111.887506, 48.480113 ], [ -111.887418, 48.479516 ], [ -111.887265, 48.478742 ], [ -111.887056, 48.477974 ], [ -111.886845, 48.47746 ], [ -111.886472, 48.476607 ], [ -111.885635, 48.474831 ], [ -111.885441, 48.474274 ], [ -111.885165, 48.473591 ], [ -111.884897, 48.472862 ], [ -111.884674, 48.47215 ], [ -111.884502, 48.471564 ], [ -111.884279, 48.470409 ], [ -111.884082, 48.46926 ], [ -111.883953, 48.468281 ], [ -111.883906, 48.467423 ], [ -111.883878, 48.46663 ], [ -111.883976, 48.454446 ], [ -111.884028, 48.447094 ], [ -111.884036, 48.443164 ], [ -111.884023, 48.441546 ], [ -111.884017, 48.440681 ], [ -111.884026, 48.43968 ], [ -111.884018, 48.438945 ], [ -111.88402, 48.438457 ], [ -111.884058, 48.438059 ], [ -111.884092, 48.43776 ], [ -111.884134, 48.437455 ], [ -111.884195, 48.437091 ], [ -111.884275, 48.436739 ], [ -111.884339, 48.436455 ], [ -111.884422, 48.436153 ], [ -111.884528, 48.435768 ], [ -111.884674, 48.435354 ], [ -111.884745, 48.435206 ], [ -111.884871, 48.43486 ], [ -111.885003, 48.434574 ], [ -111.885207, 48.434157 ], [ -111.885417, 48.433746 ], [ -111.885596, 48.433441 ], [ -111.88582, 48.433061 ], [ -111.886029, 48.43273 ], [ -111.886203, 48.432492 ], [ -111.886412, 48.432197 ], [ -111.886586, 48.431954 ], [ -111.886816, 48.431663 ], [ -111.887079, 48.431357 ], [ -111.887401, 48.430981 ], [ -111.887774, 48.430593 ], [ -111.888127, 48.430257 ], [ -111.888437, 48.429955 ], [ -111.889099, 48.429374 ], [ -111.889756, 48.428824 ], [ -111.890912, 48.427857 ], [ -111.892165, 48.426838 ], [ -111.905659, 48.415636 ], [ -111.90626, 48.415157 ], [ -111.906861, 48.41457 ], [ -111.907333, 48.414081 ], [ -111.907814, 48.413528 ], [ -111.908406, 48.412776 ], [ -111.909015, 48.411824 ], [ -111.909633, 48.410907 ], [ -111.920752, 48.392582 ], [ -111.927417, 48.381543 ], [ -111.93346, 48.371538 ], [ -111.933846, 48.37086 ], [ -111.934235, 48.370068 ], [ -111.934546, 48.369396 ], [ -111.934939, 48.368399 ], [ -111.935227, 48.367613 ], [ -111.935586, 48.366493 ], [ -111.935831, 48.365544 ], [ -111.936026, 48.364601 ], [ -111.936138, 48.363831 ], [ -111.936258, 48.362885 ], [ -111.936438, 48.360792 ], [ -111.936415, 48.329088 ], [ -111.936407, 48.310354 ], [ -111.936413, 48.303031 ], [ -111.936412, 48.300795 ], [ -111.936402, 48.300483 ], [ -111.936381, 48.271331 ], [ -111.936384, 48.26711 ], [ -111.936382, 48.259592 ], [ -111.936296, 48.241832 ], [ -111.936359, 48.224045 ], [ -111.936352, 48.223792 ], [ -111.936325, 48.223208 ], [ -111.936251, 48.222646 ], [ -111.936138, 48.222131 ], [ -111.936009, 48.221594 ], [ -111.935863, 48.221148 ], [ -111.935674, 48.220724 ], [ -111.935554, 48.220438 ], [ -111.935323, 48.219975 ], [ -111.934809, 48.219106 ], [ -111.93372, 48.217503 ], [ -111.933233, 48.216812 ], [ -111.932738, 48.21609 ], [ -111.932429, 48.215627 ], [ -111.931294, 48.214006 ], [ -111.927397, 48.208419 ], [ -111.925603, 48.205843 ], [ -111.925208, 48.205217 ], [ -111.92491, 48.204712 ], [ -111.924771, 48.204436 ], [ -111.924661, 48.204188 ], [ -111.924567, 48.203923 ], [ -111.924475, 48.203592 ], [ -111.924434, 48.203298 ], [ -111.924418, 48.202753 ], [ -111.924413, 48.20226 ], [ -111.924452, 48.201981 ], [ -111.924528, 48.20166 ], [ -111.924607, 48.201399 ], [ -111.924686, 48.201185 ], [ -111.924808, 48.200887 ], [ -111.92494, 48.200634 ], [ -111.925143, 48.200322 ], [ -111.925478, 48.199721 ], [ -111.929307, 48.193399 ], [ -111.931749, 48.18936 ], [ -111.932143, 48.188696 ], [ -111.932455, 48.188174 ], [ -111.933068, 48.187161 ], [ -111.933601, 48.186274 ], [ -111.933896, 48.185797 ], [ -111.934176, 48.185351 ], [ -111.934674, 48.184441 ], [ -111.934869, 48.184038 ], [ -111.935015, 48.183702 ], [ -111.935133, 48.183407 ], [ -111.935235, 48.183131 ], [ -111.935317, 48.182855 ], [ -111.935435, 48.182454 ], [ -111.935517, 48.18214 ], [ -111.935563, 48.181903 ], [ -111.935605, 48.181629 ], [ -111.935654, 48.181347 ], [ -111.935672, 48.181134 ], [ -111.935695, 48.180837 ], [ -111.93571, 48.180431 ], [ -111.935711, 48.179913 ], [ -111.935689, 48.179699 ], [ -111.935666, 48.179392 ], [ -111.935641, 48.179193 ], [ -111.935605, 48.178954 ], [ -111.935551, 48.17862 ], [ -111.935494, 48.178341 ], [ -111.935425, 48.178065 ], [ -111.935362, 48.177851 ], [ -111.935271, 48.177512 ], [ -111.935083, 48.177015 ], [ -111.93498, 48.176751 ], [ -111.934859, 48.176484 ], [ -111.934688, 48.176141 ], [ -111.934489, 48.175789 ], [ -111.934239, 48.175377 ], [ -111.933859, 48.174812 ], [ -111.933189, 48.173765 ], [ -111.928027, 48.165762 ], [ -111.927735, 48.165321 ], [ -111.92603, 48.162726 ], [ -111.925093, 48.161247 ], [ -111.924008, 48.159611 ], [ -111.922175, 48.156783 ], [ -111.920615, 48.154387 ], [ -111.919007, 48.151911 ], [ -111.91822, 48.150663 ], [ -111.916601, 48.148144 ], [ -111.915551, 48.146568 ], [ -111.914312, 48.144665 ], [ -111.913624, 48.143606 ], [ -111.912311, 48.141567 ], [ -111.911974, 48.141065 ], [ -111.911504, 48.140381 ], [ -111.910989, 48.139656 ], [ -111.91031, 48.138734 ], [ -111.909273, 48.1374 ], [ -111.907928, 48.135653 ], [ -111.906666, 48.13405 ], [ -111.905997, 48.133172 ], [ -111.904722, 48.131516 ], [ -111.901655, 48.127581 ], [ -111.900048, 48.125516 ], [ -111.898729, 48.123822 ], [ -111.894029, 48.117798 ], [ -111.893315, 48.116857 ], [ -111.892001, 48.115177 ], [ -111.889638, 48.112132 ], [ -111.887413, 48.109275 ], [ -111.884717, 48.105808 ], [ -111.876044, 48.094626 ], [ -111.87031, 48.087229 ], [ -111.862959, 48.077764 ], [ -111.861332, 48.075665 ], [ -111.858755, 48.072362 ], [ -111.857125, 48.070241 ], [ -111.854834, 48.06729 ], [ -111.850948, 48.062304 ], [ -111.85011, 48.061229 ], [ -111.849084, 48.059917 ], [ -111.845348, 48.055071 ], [ -111.836461, 48.043589 ], [ -111.832454, 48.038401 ], [ -111.828116, 48.032803 ], [ -111.825147, 48.028974 ], [ -111.816587, 48.017942 ], [ -111.816087, 48.017289 ], [ -111.815305, 48.016376 ], [ -111.814473, 48.015423 ], [ -111.813623, 48.014499 ], [ -111.812937, 48.013816 ], [ -111.811984, 48.012851 ], [ -111.810868, 48.011863 ], [ -111.809752, 48.010882 ], [ -111.808825, 48.010101 ], [ -111.807598, 48.009153 ], [ -111.806388, 48.008229 ], [ -111.805238, 48.007408 ], [ -111.784158, 47.992286 ], [ -111.782561, 47.991143 ], [ -111.767146, 47.980084 ], [ -111.766219, 47.979354 ], [ -111.765283, 47.978504 ], [ -111.764288, 47.977544 ], [ -111.763404, 47.976585 ], [ -111.762691, 47.975723 ], [ -111.762193, 47.97501 ], [ -111.761653, 47.974154 ], [ -111.761121, 47.973252 ], [ -111.753336, 47.959718 ], [ -111.749036, 47.952205 ], [ -111.736505, 47.930384 ], [ -111.736106, 47.92965 ], [ -111.735644, 47.928853 ], [ -111.735343, 47.928305 ], [ -111.733592, 47.925244 ], [ -111.733306, 47.924769 ], [ -111.732599, 47.923554 ], [ -111.732395, 47.923205 ], [ -111.731718, 47.922093 ], [ -111.731538, 47.921738 ], [ -111.73117, 47.921043 ], [ -111.726112, 47.912262 ], [ -111.71442, 47.89173 ], [ -111.713776, 47.890608 ], [ -111.713253, 47.889578 ], [ -111.712927, 47.888864 ], [ -111.71254, 47.888058 ], [ -111.712146, 47.88689 ], [ -111.711811, 47.885744 ], [ -111.711519, 47.884564 ], [ -111.711253, 47.883125 ], [ -111.711124, 47.881922 ], [ -111.71103, 47.880834 ], [ -111.71103, 47.879792 ], [ -111.711129, 47.869762 ], [ -111.711004, 47.867783 ], [ -111.710901, 47.866758 ], [ -111.710781, 47.865716 ], [ -111.710618, 47.864547 ], [ -111.710438, 47.863447 ], [ -111.710283, 47.862537 ], [ -111.709991, 47.861213 ], [ -111.709756, 47.860259 ], [ -111.709335, 47.858847 ], [ -111.708841, 47.857285 ], [ -111.70727, 47.852822 ], [ -111.706867, 47.851704 ], [ -111.706498, 47.850875 ], [ -111.706077, 47.850017 ], [ -111.705434, 47.848819 ], [ -111.705305, 47.848582 ], [ -111.704816, 47.847747 ], [ -111.704215, 47.846849 ], [ -111.703623, 47.846054 ], [ -111.702678, 47.844833 ], [ -111.701983, 47.843986 ], [ -111.700902, 47.842828 ], [ -111.699923, 47.841889 ], [ -111.698979, 47.841013 ], [ -111.698052, 47.84023 ], [ -111.696893, 47.839291 ], [ -111.668363, 47.817267 ], [ -111.667479, 47.816472 ], [ -111.667042, 47.815942 ], [ -111.666647, 47.815434 ], [ -111.666226, 47.81476 ], [ -111.665943, 47.814143 ], [ -111.66578, 47.813619 ], [ -111.665625, 47.812887 ], [ -111.6656, 47.812391 ], [ -111.665591, 47.811797 ], [ -111.666429, 47.79584 ], [ -111.666535, 47.793822 ], [ -111.666492, 47.791308 ], [ -111.666439, 47.750802 ], [ -111.666442, 47.741317 ], [ -111.666445, 47.740989 ], [ -111.666406, 47.723306 ], [ -111.666381, 47.72244 ], [ -111.666295, 47.721684 ], [ -111.666158, 47.720881 ], [ -111.665986, 47.72024 ], [ -111.665746, 47.719547 ], [ -111.665419, 47.71871 ], [ -111.665042, 47.717925 ], [ -111.664647, 47.717243 ], [ -111.664132, 47.716493 ], [ -111.663789, 47.716008 ], [ -111.663359, 47.715528 ], [ -111.662432, 47.714581 ], [ -111.658081, 47.710071 ], [ -111.647285, 47.699031 ], [ -111.646085, 47.697836 ], [ -111.632275, 47.683698 ], [ -111.631949, 47.683351 ], [ -111.606663, 47.657441 ], [ -111.60117, 47.651798 ], [ -111.590415, 47.64073 ], [ -111.589918, 47.640187 ], [ -111.589463, 47.639655 ], [ -111.589068, 47.639157 ], [ -111.588707, 47.638689 ], [ -111.588287, 47.638139 ], [ -111.587849, 47.637538 ], [ -111.587549, 47.637104 ], [ -111.587231, 47.636624 ], [ -111.58627, 47.63501 ], [ -111.585369, 47.633136 ], [ -111.570511, 47.6019 ], [ -111.569945, 47.600818 ], [ -111.56955, 47.600169 ], [ -111.569224, 47.599643 ], [ -111.568846, 47.599047 ], [ -111.568546, 47.598607 ], [ -111.568168, 47.598051 ], [ -111.567747, 47.597472 ], [ -111.567335, 47.596928 ], [ -111.566915, 47.59643 ], [ -111.566537, 47.595991 ], [ -111.552899, 47.581183 ], [ -111.552633, 47.580911 ], [ -111.537629, 47.564691 ], [ -111.536514, 47.563515 ], [ -111.535904, 47.562901 ], [ -111.535175, 47.56227 ], [ -111.534437, 47.561691 ], [ -111.533656, 47.561129 ], [ -111.532711, 47.560504 ], [ -111.531647, 47.559884 ], [ -111.53048, 47.559311 ], [ -111.529184, 47.558737 ], [ -111.528008, 47.558285 ], [ -111.526806, 47.557897 ], [ -111.525424, 47.557503 ], [ -111.524008, 47.557162 ], [ -111.522824, 47.556953 ], [ -111.521734, 47.556779 ], [ -111.509679, 47.554952 ], [ -111.484251, 47.551039 ], [ -111.477299, 47.54995 ], [ -111.455614, 47.546631 ], [ -111.452477, 47.546143 ], [ -111.452005, 47.546074 ], [ -111.448496, 47.545531 ], [ -111.445301, 47.545037 ], [ -111.443894, 47.544799 ], [ -111.442357, 47.544492 ], [ -111.440907, 47.544162 ], [ -111.439173, 47.543716 ], [ -111.437894, 47.543368 ], [ -111.436512, 47.542957 ], [ -111.435045, 47.54247 ], [ -111.385349, 47.526175 ], [ -111.384241, 47.525793 ], [ -111.383478, 47.52541 ], [ -111.382928, 47.525097 ], [ -111.382499, 47.524784 ], [ -111.382036, 47.524384 ], [ -111.381709, 47.524025 ], [ -111.381452, 47.523741 ], [ -111.380053, 47.521909 ], [ -111.379298, 47.520959 ], [ -111.379152, 47.520779 ], [ -111.378714, 47.520286 ], [ -111.378268, 47.519857 ], [ -111.377555, 47.519394 ], [ -111.376774, 47.518994 ], [ -111.376096, 47.518733 ], [ -111.375409, 47.51853 ], [ -111.374294, 47.518234 ], [ -111.351059, 47.512362 ], [ -111.350081, 47.512055 ], [ -111.348914, 47.511632 ], [ -111.348184, 47.511255 ], [ -111.347446, 47.510878 ], [ -111.346914, 47.510553 ], [ -111.346356, 47.510147 ], [ -111.345832, 47.509759 ], [ -111.345309, 47.509295 ], [ -111.344914, 47.508884 ], [ -111.344605, 47.508542 ], [ -111.344193, 47.50802 ], [ -111.34391, 47.507591 ], [ -111.343618, 47.507133 ], [ -111.343352, 47.506535 ], [ -111.343137, 47.505921 ], [ -111.343, 47.505254 ], [ -111.342914, 47.504779 ], [ -111.342871, 47.504205 ], [ -111.342884, 47.503714 ], [ -111.343017, 47.501337 ], [ -111.343037, 47.500922 ], [ -111.343074, 47.500247 ], [ -111.343153, 47.498866 ], [ -111.343699, 47.489338 ], [ -111.343837, 47.488347 ], [ -111.344051, 47.487517 ], [ -111.344326, 47.486746 ], [ -111.344695, 47.485795 ], [ -111.345184, 47.484855 ], [ -111.345493, 47.484356 ], [ -111.346068, 47.483527 ], [ -111.34715, 47.48221 ], [ -111.347948, 47.481392 ], [ -111.348765, 47.480715 ], [ -111.349751, 47.479978 ], [ -111.350866, 47.47913 ], [ -111.356582, 47.475347 ], [ -111.365214, 47.469592 ], [ -111.367419, 47.46813 ], [ -111.367934, 47.467829 ], [ -111.368578, 47.467492 ], [ -111.36923, 47.467144 ], [ -111.369994, 47.466807 ], [ -111.370973, 47.466407 ], [ -111.371926, 47.466042 ], [ -111.372818, 47.465746 ], [ -111.373522, 47.465525 ], [ -111.374509, 47.465258 ], [ -111.429286, 47.452445 ], [ -111.429621, 47.452364 ], [ -111.473508, 47.442064 ], [ -111.50183, 47.435384 ], [ -111.502749, 47.435175 ], [ -111.503701, 47.434961 ], [ -111.504362, 47.434792 ], [ -111.505221, 47.434543 ], [ -111.506045, 47.434299 ], [ -111.506663, 47.434095 ], [ -111.507143, 47.433927 ], [ -111.507907, 47.433648 ], [ -111.508654, 47.433312 ], [ -111.509255, 47.433045 ], [ -111.509933, 47.432725 ], [ -111.510534, 47.432412 ], [ -111.51122, 47.432029 ], [ -111.51183, 47.431674 ], [ -111.512954, 47.430931 ], [ -111.513546, 47.43049 ], [ -111.524011, 47.422011 ], [ -111.569141, 47.385345 ], [ -111.6142, 47.348685 ], [ -111.614466, 47.34847 ], [ -111.634341, 47.332266 ], [ -111.69101, 47.285965 ], [ -111.692683, 47.284596 ], [ -111.694151, 47.283461 ], [ -111.694838, 47.282943 ], [ -111.696432, 47.281863 ], [ -111.698123, 47.280815 ], [ -111.699024, 47.280297 ], [ -111.699436, 47.280064 ], [ -111.703522, 47.277671 ], [ -111.704183, 47.27728 ], [ -111.704689, 47.276966 ], [ -111.70511, 47.276686 ], [ -111.705436, 47.276442 ], [ -111.705788, 47.276139 ], [ -111.706182, 47.275766 ], [ -111.706612, 47.275289 ], [ -111.706989, 47.274806 ], [ -111.707367, 47.274264 ], [ -111.707573, 47.273856 ], [ -111.707813, 47.273379 ], [ -111.707933, 47.273047 ], [ -111.708045, 47.272651 ], [ -111.708122, 47.272307 ], [ -111.708199, 47.271911 ], [ -111.708234, 47.271544 ], [ -111.708234, 47.271212 ], [ -111.708157, 47.264538 ], [ -111.708114, 47.262342 ], [ -111.708122, 47.261794 ], [ -111.708157, 47.261369 ], [ -111.708234, 47.260851 ], [ -111.708268, 47.260653 ], [ -111.708337, 47.260257 ], [ -111.708508, 47.259511 ], [ -111.708637, 47.258923 ], [ -111.708783, 47.258241 ], [ -111.70898, 47.257536 ], [ -111.709152, 47.256942 ], [ -111.709298, 47.256383 ], [ -111.710079, 47.25333 ], [ -111.710328, 47.252363 ], [ -111.710474, 47.251833 ], [ -111.710637, 47.251332 ], [ -111.710834, 47.250889 ], [ -111.71104, 47.250545 ], [ -111.711367, 47.250085 ], [ -111.711658, 47.249753 ], [ -111.711942, 47.249444 ], [ -111.712345, 47.249089 ], [ -111.712766, 47.248751 ], [ -111.71316, 47.248494 ], [ -111.713624, 47.248221 ], [ -111.714147, 47.247958 ], [ -111.714834, 47.247655 ], [ -111.729726, 47.241112 ], [ -111.73291, 47.239807 ], [ -111.75169, 47.232534 ], [ -111.754093, 47.231624 ], [ -111.75635, 47.230861 ], [ -111.75676, 47.230739 ], [ -111.765002, 47.228413 ], [ -111.765835, 47.228157 ], [ -111.766633, 47.227877 ], [ -111.767345, 47.227597 ], [ -111.768092, 47.227306 ], [ -111.768719, 47.227026 ], [ -111.769474, 47.226676 ], [ -111.770058, 47.226361 ], [ -111.770727, 47.225988 ], [ -111.771448, 47.225534 ], [ -111.772118, 47.225096 ], [ -111.772693, 47.224688 ], [ -111.773405, 47.22417 ], [ -111.773714, 47.223936 ], [ -111.774169, 47.223575 ], [ -111.774641, 47.223103 ], [ -111.775104, 47.222619 ], [ -111.775499, 47.222211 ], [ -111.775885, 47.221774 ], [ -111.776306, 47.221255 ], [ -111.776658, 47.220777 ], [ -111.77695, 47.220369 ], [ -111.777422, 47.219611 ], [ -111.777722, 47.219057 ], [ -111.778014, 47.218422 ], [ -111.778289, 47.217746 ], [ -111.778503, 47.217104 ], [ -111.778675, 47.216428 ], [ -111.778881, 47.215694 ], [ -111.779061, 47.214988 ], [ -111.780057, 47.210796 ], [ -111.780203, 47.210213 ], [ -111.780323, 47.209758 ], [ -111.780435, 47.209397 ], [ -111.780641, 47.208808 ], [ -111.780907, 47.208201 ], [ -111.78113, 47.207729 ], [ -111.781301, 47.207438 ], [ -111.781499, 47.207129 ], [ -111.78228, 47.205916 ], [ -111.783293, 47.204645 ], [ -111.783936, 47.203974 ], [ -111.784735, 47.203146 ], [ -111.785593, 47.202225 ], [ -111.786314, 47.201466 ], [ -111.786872, 47.200883 ], [ -111.787902, 47.199845 ], [ -111.788254, 47.199507 ], [ -111.788674, 47.19914 ], [ -111.789086, 47.19879 ], [ -111.789584, 47.198387 ], [ -111.790168, 47.197921 ], [ -111.790605, 47.197618 ], [ -111.791249, 47.197227 ], [ -111.791824, 47.196877 ], [ -111.792545, 47.196474 ], [ -111.793198, 47.196136 ], [ -111.79397, 47.195769 ], [ -111.794805, 47.195425 ], [ -111.801248, 47.192835 ], [ -111.801575, 47.192701 ], [ -111.802656, 47.192287 ], [ -111.803514, 47.191937 ], [ -111.804167, 47.191628 ], [ -111.804665, 47.191394 ], [ -111.8053, 47.191045 ], [ -111.805723, 47.190797 ], [ -111.805997, 47.190634 ], [ -111.806478, 47.190323 ], [ -111.806732, 47.190144 ], [ -111.80699, 47.189955 ], [ -111.807242, 47.189755 ], [ -111.807499, 47.189537 ], [ -111.807978, 47.189108 ], [ -111.808309, 47.188784 ], [ -111.808738, 47.188316 ], [ -111.809145, 47.187831 ], [ -111.809375, 47.187515 ], [ -111.809578, 47.187207 ], [ -111.809725, 47.186968 ], [ -111.809941, 47.18658 ], [ -111.810196, 47.186052 ], [ -111.810485, 47.185392 ], [ -111.810582, 47.185034 ], [ -111.810757, 47.184458 ], [ -111.81087, 47.184068 ], [ -111.811288, 47.182591 ], [ -111.811466, 47.182023 ], [ -111.811592, 47.181562 ], [ -111.811725, 47.181068 ], [ -111.811881, 47.18053 ], [ -111.812016, 47.179972 ], [ -111.812133, 47.179486 ], [ -111.812304, 47.178698 ], [ -111.812475, 47.177933 ], [ -111.812795, 47.176671 ], [ -111.813022, 47.175805 ], [ -111.813143, 47.175313 ], [ -111.813289, 47.174743 ], [ -111.813451, 47.174086 ], [ -111.813587, 47.173603 ], [ -111.813709, 47.173199 ], [ -111.813868, 47.172742 ], [ -111.814052, 47.172177 ], [ -111.81431, 47.171374 ], [ -111.814446, 47.170953 ], [ -111.814555, 47.170592 ], [ -111.814621, 47.170315 ], [ -111.814724, 47.169845 ], [ -111.814867, 47.169286 ], [ -111.814924, 47.169023 ], [ -111.815005, 47.168585 ], [ -111.81512, 47.168075 ], [ -111.815267, 47.167513 ], [ -111.81537, 47.167124 ], [ -111.815534, 47.166596 ], [ -111.815743, 47.165879 ], [ -111.815883, 47.165407 ], [ -111.816017, 47.16497 ], [ -111.816151, 47.164499 ], [ -111.816299, 47.164102 ], [ -111.816455, 47.163605 ], [ -111.816606, 47.163233 ], [ -111.81675, 47.162929 ], [ -111.8169, 47.16265 ], [ -111.817163, 47.162234 ], [ -111.817461, 47.161792 ], [ -111.817707, 47.161428 ], [ -111.817918, 47.161172 ], [ -111.818109, 47.160939 ], [ -111.81826, 47.160773 ], [ -111.818436, 47.160598 ], [ -111.818713, 47.160322 ], [ -111.819137, 47.159916 ], [ -111.819338, 47.159742 ], [ -111.819615, 47.159506 ], [ -111.819811, 47.159353 ], [ -111.820101, 47.159137 ], [ -111.820886, 47.158653 ], [ -111.821347, 47.158391 ], [ -111.821709, 47.158179 ], [ -111.82215, 47.157949 ], [ -111.822792, 47.157656 ], [ -111.823291, 47.157407 ], [ -111.823951, 47.157074 ], [ -111.824604, 47.156773 ], [ -111.824926, 47.156618 ], [ -111.826016, 47.156075 ], [ -111.826777, 47.155704 ], [ -111.827118, 47.155527 ], [ -111.827632, 47.155278 ], [ -111.828833, 47.154684 ], [ -111.830331, 47.153967 ], [ -111.83092, 47.153679 ], [ -111.831417, 47.153485 ], [ -111.831694, 47.153394 ], [ -111.831937, 47.15332 ], [ -111.832157, 47.153261 ], [ -111.832517, 47.15318 ], [ -111.832892, 47.153117 ], [ -111.833253, 47.153076 ], [ -111.833573, 47.153049 ], [ -111.833993, 47.153025 ], [ -111.834559, 47.153049 ], [ -111.835126, 47.153113 ], [ -111.835701, 47.1532 ], [ -111.83595, 47.153259 ], [ -111.841856, 47.154858 ], [ -111.842362, 47.155002 ], [ -111.842712, 47.155094 ], [ -111.843019, 47.155158 ], [ -111.843672, 47.155257 ], [ -111.8438, 47.155267 ], [ -111.844087, 47.155287 ], [ -111.844399, 47.155286 ], [ -111.844699, 47.15528 ], [ -111.845058, 47.15526 ], [ -111.845509, 47.155193 ], [ -111.845869, 47.155122 ], [ -111.846291, 47.155019 ], [ -111.846644, 47.154905 ], [ -111.846928, 47.154785 ], [ -111.847126, 47.154685 ], [ -111.847479, 47.154504 ], [ -111.847736, 47.154346 ], [ -111.847908, 47.15421 ], [ -111.848115, 47.154036 ], [ -111.848251, 47.153894 ], [ -111.848342, 47.153792 ], [ -111.84847, 47.153647 ], [ -111.848543, 47.153546 ], [ -111.848649, 47.153419 ], [ -111.848764, 47.153232 ], [ -111.848861, 47.153032 ], [ -111.848947, 47.152823 ], [ -111.848973, 47.152708 ], [ -111.849021, 47.152541 ], [ -111.849042, 47.152364 ], [ -111.849077, 47.152131 ], [ -111.849103, 47.151825 ], [ -111.849333, 47.149062 ], [ -111.849393, 47.148406 ], [ -111.8494, 47.148192 ], [ -111.849408, 47.147987 ], [ -111.8494, 47.147824 ], [ -111.84939, 47.147698 ], [ -111.849374, 47.147556 ], [ -111.849347, 47.147435 ], [ -111.849331, 47.147351 ], [ -111.849245, 47.146966 ], [ -111.849142, 47.146674 ], [ -111.849059, 47.146434 ], [ -111.848943, 47.146212 ], [ -111.84886, 47.146053 ], [ -111.848767, 47.145896 ], [ -111.848673, 47.145762 ], [ -111.848566, 47.14562 ], [ -111.847025, 47.143717 ], [ -111.846887, 47.143525 ], [ -111.846766, 47.143353 ], [ -111.846661, 47.14319 ], [ -111.846521, 47.142953 ], [ -111.846415, 47.142749 ], [ -111.846343, 47.142591 ], [ -111.846269, 47.14237 ], [ -111.846241, 47.142263 ], [ -111.846223, 47.14217 ], [ -111.846209, 47.142062 ], [ -111.84619, 47.141876 ], [ -111.846192, 47.141745 ], [ -111.846217, 47.141528 ], [ -111.846242, 47.141353 ], [ -111.84627, 47.141184 ], [ -111.846324, 47.141016 ], [ -111.846398, 47.140797 ], [ -111.846525, 47.140531 ], [ -111.846604, 47.14041 ], [ -111.846676, 47.14029 ], [ -111.846846, 47.140059 ], [ -111.847142, 47.139751 ], [ -111.847281, 47.13963 ], [ -111.84746, 47.139479 ], [ -111.847678, 47.139323 ], [ -111.84791, 47.139171 ], [ -111.848186, 47.139013 ], [ -111.848438, 47.138891 ], [ -111.848706, 47.138772 ], [ -111.848984, 47.138674 ], [ -111.849267, 47.138581 ], [ -111.849592, 47.138477 ], [ -111.849947, 47.138393 ], [ -111.850257, 47.138331 ], [ -111.850556, 47.138292 ], [ -111.850908, 47.138241 ], [ -111.851241, 47.13822 ], [ -111.85164, 47.138209 ], [ -111.851974, 47.13821 ], [ -111.852237, 47.138223 ], [ -111.852532, 47.138247 ], [ -111.852795, 47.138276 ], [ -111.853123, 47.13833 ], [ -111.853394, 47.138374 ], [ -111.853787, 47.138457 ], [ -111.854766, 47.138667 ], [ -111.855826, 47.138884 ], [ -111.856179, 47.13897 ], [ -111.856565, 47.139029 ], [ -111.856792, 47.139068 ], [ -111.857173, 47.13911 ], [ -111.857431, 47.139137 ], [ -111.857676, 47.139157 ], [ -111.858048, 47.139176 ], [ -111.858338, 47.139177 ], [ -111.858762, 47.139167 ], [ -111.859155, 47.139148 ], [ -111.85955, 47.139117 ], [ -111.859805, 47.139089 ], [ -111.860245, 47.139022 ], [ -111.860491, 47.13898 ], [ -111.860683, 47.138944 ], [ -111.860973, 47.138885 ], [ -111.861214, 47.138829 ], [ -111.861479, 47.138758 ], [ -111.861743, 47.138677 ], [ -111.862069, 47.138562 ], [ -111.862344, 47.138449 ], [ -111.862687, 47.138297 ], [ -111.862931, 47.138175 ], [ -111.863114, 47.138087 ], [ -111.863314, 47.137975 ], [ -111.863599, 47.137807 ], [ -111.863972, 47.13756 ], [ -111.864261, 47.137341 ], [ -111.864442, 47.137202 ], [ -111.864674, 47.137005 ], [ -111.864969, 47.136736 ], [ -111.865258, 47.13642 ], [ -111.867853, 47.13324 ], [ -111.868102, 47.13296 ], [ -111.868445, 47.132657 ], [ -111.868909, 47.132347 ], [ -111.869372, 47.132096 ], [ -111.869776, 47.131938 ], [ -111.870291, 47.131792 ], [ -111.870754, 47.131687 ], [ -111.871286, 47.131623 ], [ -111.87181, 47.131605 ], [ -111.872359, 47.131617 ], [ -111.873389, 47.131705 ], [ -111.875681, 47.131897 ], [ -111.885054, 47.132785 ], [ -111.886566, 47.132886 ], [ -111.888607, 47.1331 ], [ -111.888985, 47.133135 ], [ -111.889766, 47.133217 ], [ -111.890444, 47.133281 ], [ -111.891225, 47.133322 ], [ -111.891886, 47.133334 ], [ -111.892598, 47.133334 ], [ -111.893242, 47.133316 ], [ -111.8938, 47.133305 ], [ -111.894512, 47.133246 ], [ -111.89513, 47.133194 ], [ -111.89563, 47.133132 ], [ -111.896274, 47.133044 ], [ -111.89678, 47.132974 ], [ -111.898531, 47.132636 ], [ -111.899656, 47.132344 ], [ -111.900711, 47.132022 ], [ -111.901398, 47.131783 ], [ -111.902445, 47.131403 ], [ -111.904162, 47.130755 ], [ -111.909034, 47.128927 ], [ -111.913729, 47.127181 ], [ -111.917251, 47.125878 ], [ -111.92071, 47.1247 ], [ -111.921698, 47.124251 ], [ -111.922387, 47.123838 ], [ -111.922806, 47.123526 ], [ -111.924809, 47.121884 ], [ -111.925527, 47.121467 ], [ -111.926631, 47.121045 ], [ -111.927545, 47.120838 ], [ -111.928844, 47.120679 ], [ -111.939954, 47.119561 ], [ -111.940893, 47.119375 ], [ -111.941491, 47.119193 ], [ -111.94258, 47.118694 ], [ -111.94328, 47.118205 ], [ -111.943682, 47.117842 ], [ -111.944167, 47.117216 ], [ -111.94437, 47.116782 ], [ -111.94452, 47.116283 ], [ -111.944594, 47.115646 ], [ -111.944471, 47.113184 ], [ -111.944519, 47.112085 ], [ -111.944699, 47.111164 ], [ -111.9451, 47.109855 ], [ -111.94519, 47.109613 ], [ -111.946818, 47.104798 ], [ -111.947185, 47.103915 ], [ -111.94757, 47.103215 ], [ -111.948705, 47.101708 ], [ -111.95025, 47.099859 ], [ -111.951568, 47.098237 ], [ -111.952318, 47.097326 ], [ -111.952866, 47.096646 ], [ -111.954165, 47.094457 ], [ -111.954536, 47.093996 ], [ -111.955001, 47.093573 ], [ -111.95538, 47.093283 ], [ -111.95597, 47.092921 ], [ -111.958022, 47.092174 ], [ -111.958929, 47.091665 ], [ -111.959563, 47.091145 ], [ -111.959918, 47.090782 ], [ -111.960199, 47.090406 ], [ -111.960514, 47.089782 ], [ -111.960679, 47.089121 ], [ -111.961076, 47.083974 ], [ -111.961218, 47.083113 ], [ -111.961515, 47.082259 ], [ -111.962027, 47.081188 ], [ -111.962536, 47.080367 ], [ -111.963148, 47.079581 ], [ -111.964601, 47.078023 ], [ -111.966718, 47.075826 ], [ -111.967024, 47.075517 ], [ -111.969094, 47.073375 ], [ -111.970437, 47.07194 ], [ -111.972154, 47.070032 ], [ -111.973432, 47.068542 ], [ -111.974103, 47.067809 ], [ -111.974604, 47.067107 ], [ -111.976616, 47.064731 ], [ -111.98105, 47.059331 ], [ -111.981811, 47.058552 ], [ -111.982905, 47.057585 ], [ -111.983864, 47.057007 ], [ -111.985011, 47.056354 ], [ -111.986314, 47.055712 ], [ -111.986853, 47.055504 ], [ -111.987827, 47.055224 ], [ -111.990272, 47.054577 ], [ -111.991627, 47.053954 ], [ -111.992491, 47.053494 ], [ -111.993301, 47.052977 ], [ -111.994268, 47.05221 ], [ -111.994901, 47.051592 ], [ -112.00108, 47.045261 ], [ -112.002131, 47.044014 ], [ -112.002341, 47.043639 ], [ -112.002459, 47.043291 ], [ -112.00254, 47.04249 ], [ -112.002551, 47.041633 ], [ -112.002802, 47.040468 ], [ -112.003031, 47.039996 ], [ -112.003311, 47.039629 ], [ -112.00408, 47.038901 ], [ -112.004669, 47.038537 ], [ -112.005381, 47.038191 ], [ -112.006132, 47.03787 ], [ -112.007591, 47.037508 ], [ -112.008057, 47.037437 ], [ -112.009475, 47.037313 ], [ -112.012696, 47.037258 ], [ -112.01489, 47.037245 ], [ -112.016275, 47.037163 ], [ -112.0192, 47.037033 ], [ -112.020595, 47.036893 ], [ -112.021841, 47.036661 ], [ -112.023428, 47.036288 ], [ -112.024543, 47.035923 ], [ -112.025634, 47.03549 ], [ -112.026621, 47.035004 ], [ -112.027875, 47.034259 ], [ -112.04368, 47.024236 ], [ -112.044909, 47.023441 ], [ -112.04544, 47.023036 ], [ -112.04608, 47.022418 ], [ -112.046528, 47.021863 ], [ -112.046751, 47.021531 ], [ -112.046895, 47.021189 ], [ -112.048457, 47.017223 ], [ -112.049379, 47.014861 ], [ -112.04961, 47.014335 ], [ -112.049878, 47.013819 ], [ -112.050194, 47.013314 ], [ -112.050556, 47.012813 ], [ -112.050955, 47.01233 ], [ -112.051351, 47.011873 ], [ -112.051809, 47.011423 ], [ -112.052303, 47.010991 ], [ -112.05283, 47.010576 ], [ -112.053387, 47.010182 ], [ -112.053972, 47.009806 ], [ -112.056998, 47.008006 ], [ -112.058515, 47.007109 ], [ -112.060333, 47.006031 ], [ -112.061846, 47.00513 ], [ -112.062472, 47.004869 ], [ -112.062889, 47.004741 ], [ -112.063358, 47.004645 ], [ -112.063683, 47.004606 ], [ -112.064074, 47.004561 ], [ -112.064445, 47.004519 ], [ -112.06488, 47.004576 ], [ -112.06527, 47.004629 ], [ -112.065565, 47.004697 ], [ -112.065974, 47.004792 ], [ -112.066808, 47.004991 ], [ -112.06824, 47.005361 ], [ -112.0686, 47.005467 ], [ -112.069096, 47.005596 ], [ -112.069473, 47.005688 ], [ -112.069732, 47.005745 ], [ -112.070266, 47.005855 ], [ -112.070699, 47.005951 ], [ -112.071253, 47.006048 ], [ -112.071642, 47.006114 ], [ -112.071928, 47.006158 ], [ -112.072302, 47.006209 ], [ -112.072735, 47.006263 ], [ -112.072984, 47.006287 ], [ -112.073367, 47.006318 ], [ -112.073792, 47.006352 ], [ -112.074219, 47.006372 ], [ -112.074542, 47.006382 ], [ -112.074829, 47.00639 ], [ -112.075178, 47.006392 ], [ -112.075603, 47.006393 ], [ -112.076788, 47.006332 ], [ -112.077271, 47.006281 ], [ -112.077628, 47.006225 ], [ -112.078026, 47.006153 ], [ -112.078436, 47.006074 ], [ -112.078755, 47.005996 ], [ -112.079201, 47.005866 ], [ -112.079533, 47.005747 ], [ -112.079812, 47.00563 ], [ -112.080082, 47.005495 ], [ -112.080379, 47.005332 ], [ -112.080635, 47.005164 ], [ -112.080953, 47.004927 ], [ -112.081049, 47.004826 ], [ -112.081198, 47.004689 ], [ -112.081316, 47.004562 ], [ -112.081449, 47.004379 ], [ -112.081568, 47.004191 ], [ -112.081674, 47.003987 ], [ -112.08174, 47.003858 ], [ -112.081806, 47.003692 ], [ -112.081884, 47.003438 ], [ -112.08191, 47.003275 ], [ -112.081934, 47.003066 ], [ -112.08193, 47.002831 ], [ -112.081896, 47.002597 ], [ -112.081853, 47.002371 ], [ -112.081798, 47.002194 ], [ -112.081607, 47.00176 ], [ -112.081184, 47.001198 ], [ -112.079559, 46.99968 ], [ -112.078016, 46.99838 ], [ -112.07758, 46.997912 ], [ -112.077288, 46.997532 ], [ -112.076986, 46.99693 ], [ -112.076889, 46.996514 ], [ -112.076886, 46.996116 ], [ -112.076984, 46.995478 ], [ -112.07795, 46.992584 ], [ -112.078047, 46.991994 ], [ -112.078024, 46.991594 ], [ -112.077935, 46.9912 ], [ -112.077672, 46.990627 ], [ -112.076129, 46.988425 ], [ -112.075762, 46.987771 ], [ -112.075646, 46.98742 ], [ -112.075619, 46.987055 ], [ -112.075663, 46.986679 ], [ -112.075796, 46.986299 ], [ -112.076008, 46.985921 ], [ -112.076502, 46.98539 ], [ -112.077181, 46.984932 ], [ -112.081242, 46.982494 ], [ -112.081853, 46.981972 ], [ -112.082104, 46.981646 ], [ -112.082346, 46.981245 ], [ -112.082526, 46.98074 ], [ -112.082567, 46.980266 ], [ -112.082681, 46.977427 ], [ -112.082826, 46.974499 ], [ -112.083032, 46.973709 ], [ -112.083438, 46.973098 ], [ -112.083941, 46.972667 ], [ -112.084536, 46.97225 ], [ -112.093815, 46.965771 ], [ -112.094034, 46.965596 ], [ -112.094318, 46.965306 ], [ -112.094501, 46.965085 ], [ -112.094642, 46.964864 ], [ -112.094785, 46.964575 ], [ -112.094868, 46.964338 ], [ -112.094926, 46.964081 ], [ -112.094952, 46.963813 ], [ -112.094963, 46.963562 ], [ -112.094964, 46.963005 ], [ -112.094945, 46.962147 ], [ -112.095064, 46.961322 ], [ -112.095315, 46.960775 ], [ -112.095663, 46.960328 ], [ -112.098599, 46.957746 ], [ -112.098975, 46.957432 ], [ -112.099726, 46.956946 ], [ -112.100314, 46.956644 ], [ -112.101038, 46.956326 ], [ -112.103946, 46.955297 ], [ -112.107802, 46.953955 ], [ -112.108475, 46.953671 ], [ -112.108901, 46.953445 ], [ -112.109465, 46.953038 ], [ -112.109979, 46.952469 ], [ -112.110197, 46.952042 ], [ -112.111502, 46.949682 ], [ -112.112324, 46.948952 ], [ -112.113184, 46.948533 ], [ -112.114208, 46.948308 ], [ -112.116111, 46.948021 ], [ -112.117289, 46.947669 ], [ -112.118334, 46.94705 ], [ -112.119549, 46.946068 ], [ -112.122402, 46.943642 ], [ -112.123133, 46.943013 ], [ -112.123553, 46.942583 ], [ -112.12389, 46.942171 ], [ -112.124619, 46.941266 ], [ -112.125571, 46.939982 ], [ -112.126015, 46.939377 ], [ -112.1265, 46.938749 ], [ -112.126751, 46.938397 ], [ -112.126995, 46.938014 ], [ -112.127231, 46.93766 ], [ -112.127472, 46.93708 ], [ -112.127553, 46.936521 ], [ -112.127485, 46.935878 ], [ -112.126037, 46.931011 ], [ -112.125843, 46.930596 ], [ -112.125614, 46.930288 ], [ -112.125356, 46.930017 ], [ -112.125, 46.92973 ], [ -112.122981, 46.928549 ], [ -112.122668, 46.928293 ], [ -112.122315, 46.927871 ], [ -112.122099, 46.927296 ], [ -112.122093, 46.926792 ], [ -112.122341, 46.926128 ], [ -112.12333, 46.924835 ], [ -112.123628, 46.924404 ], [ -112.123835, 46.923877 ], [ -112.123883, 46.923325 ], [ -112.123775, 46.9228 ], [ -112.123494, 46.922251 ], [ -112.123242, 46.921939 ], [ -112.123161, 46.921857 ], [ -112.12174, 46.920823 ], [ -112.121416, 46.920602 ], [ -112.120977, 46.920179 ], [ -112.120697, 46.919775 ], [ -112.120503, 46.919327 ], [ -112.120322, 46.918471 ], [ -112.119667, 46.915666 ], [ -112.11939, 46.915074 ], [ -112.119062, 46.914644 ], [ -112.118506, 46.91421 ], [ -112.116708, 46.913328 ], [ -112.116193, 46.912968 ], [ -112.115472, 46.912187 ], [ -112.115356, 46.911933 ], [ -112.115279, 46.911728 ], [ -112.115241, 46.911454 ], [ -112.11523, 46.911175 ], [ -112.115266, 46.910915 ], [ -112.115368, 46.910602 ], [ -112.115446, 46.910438 ], [ -112.115662, 46.910084 ], [ -112.11604, 46.909673 ], [ -112.119395, 46.907257 ], [ -112.119896, 46.906695 ], [ -112.120633, 46.90538 ], [ -112.120979, 46.904986 ], [ -112.122506, 46.903673 ], [ -112.12294, 46.903177 ], [ -112.123172, 46.902727 ], [ -112.123344, 46.902186 ], [ -112.12337, 46.901665 ], [ -112.12326, 46.90114 ], [ -112.123004, 46.900542 ], [ -112.122296, 46.899463 ], [ -112.118791, 46.893932 ], [ -112.118077, 46.892887 ], [ -112.117488, 46.892253 ], [ -112.11672, 46.891638 ], [ -112.11608, 46.891253 ], [ -112.114112, 46.89021 ], [ -112.110716, 46.888379 ], [ -112.110338, 46.888159 ], [ -112.106096, 46.885885 ], [ -112.101398, 46.88336 ], [ -112.094609, 46.879651 ], [ -112.0931, 46.878959 ], [ -112.091311, 46.878288 ], [ -112.089958, 46.877867 ], [ -112.088521, 46.877511 ], [ -112.069016, 46.872724 ], [ -112.049279, 46.867857 ], [ -112.047103, 46.867189 ], [ -112.044993, 46.866382 ], [ -112.043719, 46.865827 ], [ -112.042541, 46.865241 ], [ -112.040586, 46.864168 ], [ -112.039263, 46.863298 ], [ -112.037988, 46.862365 ], [ -112.036738, 46.86133 ], [ -112.014076, 46.842104 ], [ -112.012788, 46.840941 ], [ -112.011749, 46.839918 ], [ -112.010445, 46.83844 ], [ -112.009025, 46.83667 ], [ -112.007922, 46.83499 ], [ -112.007123, 46.833605 ], [ -112.006361, 46.832073 ], [ -112.005882, 46.830963 ], [ -112.003109, 46.824179 ], [ -112.002795, 46.823308 ], [ -112.001559, 46.820272 ], [ -112.001405, 46.819943 ], [ -112.001005, 46.818846 ], [ -112.000667, 46.817632 ], [ -112.000578, 46.816809 ], [ -112.000493, 46.815794 ], [ -112.000516, 46.814928 ], [ -112.000693, 46.813761 ], [ -112.001162, 46.812127 ], [ -112.001628, 46.811112 ], [ -112.002462, 46.809713 ], [ -112.003317, 46.808598 ], [ -112.004049, 46.80782 ], [ -112.005118, 46.806834 ], [ -112.006592, 46.805739 ], [ -112.028016, 46.792156 ], [ -112.029741, 46.790912 ], [ -112.030745, 46.79008 ], [ -112.031484, 46.78938 ], [ -112.032257, 46.788498 ], [ -112.033266, 46.787176 ], [ -112.033873, 46.786179 ], [ -112.034356, 46.785153 ], [ -112.03474, 46.784222 ], [ -112.035041, 46.783106 ], [ -112.035281, 46.78179 ], [ -112.035332, 46.780429 ], [ -112.035162, 46.778932 ], [ -112.034994, 46.7781 ], [ -112.034623, 46.77676 ], [ -112.031439, 46.767593 ], [ -112.030872, 46.766116 ], [ -112.03058, 46.765566 ], [ -112.0298, 46.76452 ], [ -112.029051, 46.763776 ], [ -112.027625, 46.762715 ], [ -112.021142, 46.759474 ], [ -112.019784, 46.758674 ], [ -112.018427, 46.757701 ], [ -112.017026, 46.756401 ], [ -112.01646, 46.75581 ], [ -112.015787, 46.754949 ], [ -112.015034, 46.753726 ], [ -112.014675, 46.752957 ], [ -112.014369, 46.752178 ], [ -112.014113, 46.751252 ], [ -112.013978, 46.7503 ], [ -112.013965, 46.748917 ], [ -112.01407, 46.747974 ], [ -112.014425, 46.74657 ], [ -112.017111, 46.737855 ], [ -112.017375, 46.736784 ], [ -112.017607, 46.735355 ], [ -112.017673, 46.734409 ], [ -112.017685, 46.733581 ], [ -112.017588, 46.732104 ], [ -112.017413, 46.730961 ], [ -112.016851, 46.728893 ], [ -112.016052, 46.726997 ], [ -112.015229, 46.725474 ], [ -112.014031, 46.723297 ], [ -112.013406, 46.721963 ], [ -112.012932, 46.720654 ], [ -112.012536, 46.719097 ], [ -112.012339, 46.717599 ], [ -112.012283, 46.716345 ], [ -112.012185, 46.707222 ], [ -112.012075, 46.70024 ], [ -112.011602, 46.660701 ], [ -112.011601, 46.660313 ], [ -112.011436, 46.648193 ], [ -112.011441, 46.648028 ], [ -112.011427, 46.646569 ], [ -112.011246, 46.631754 ], [ -112.011146, 46.621062 ], [ -112.011132, 46.619553 ], [ -112.01109, 46.616805 ], [ -112.011059, 46.614798 ], [ -112.011048, 46.61406 ], [ -112.011037, 46.613709 ], [ -112.010993, 46.613319 ], [ -112.010941, 46.613077 ], [ -112.010877, 46.612674 ], [ -112.010838, 46.612474 ], [ -112.010746, 46.61207 ], [ -112.01064, 46.611666 ], [ -112.010587, 46.611464 ], [ -112.010508, 46.611263 ], [ -112.010314, 46.610728 ], [ -112.010256, 46.610545 ], [ -112.010198, 46.610369 ], [ -112.009915, 46.609824 ], [ -112.009739, 46.609444 ], [ -112.009564, 46.609128 ], [ -112.009295, 46.608718 ], [ -112.006524, 46.603944 ], [ -112.003906, 46.599455 ], [ -112.002681, 46.597363 ], [ -112.001205, 46.594784 ], [ -112.0, 46.592799 ], [ -111.999632, 46.592286 ], [ -111.999301, 46.591861 ], [ -111.998522, 46.590983 ], [ -111.99828, 46.590699 ], [ -111.997972, 46.590398 ], [ -111.996867, 46.589396 ], [ -111.996488, 46.589096 ], [ -111.995735, 46.58854 ], [ -111.988743, 46.583855 ], [ -111.983795, 46.580551 ], [ -111.98049, 46.578347 ], [ -111.978312, 46.576892 ], [ -111.976196, 46.575478 ], [ -111.970612, 46.571744 ], [ -111.969019, 46.570651 ], [ -111.966637, 46.569071 ], [ -111.957631, 46.563066 ], [ -111.956867, 46.562459 ], [ -111.956078, 46.56178 ], [ -111.955528, 46.561278 ], [ -111.95503, 46.560765 ], [ -111.954464, 46.560133 ], [ -111.953992, 46.559508 ], [ -111.953623, 46.558994 ], [ -111.953365, 46.558587 ], [ -111.953022, 46.558003 ], [ -111.95261, 46.557224 ], [ -111.951443, 46.55468 ], [ -111.946695, 46.544203 ], [ -111.946304, 46.54331 ], [ -111.945744, 46.542172 ], [ -111.945185, 46.540831 ], [ -111.944611, 46.539567 ], [ -111.943999, 46.538252 ], [ -111.943392, 46.536869 ], [ -111.941186, 46.532081 ], [ -111.940903, 46.53142 ], [ -111.940559, 46.530629 ], [ -111.940379, 46.530109 ], [ -111.940293, 46.529684 ], [ -111.940268, 46.529241 ], [ -111.940319, 46.528857 ], [ -111.940422, 46.528432 ], [ -111.940568, 46.528025 ], [ -111.94074, 46.527676 ], [ -111.940971, 46.527322 ], [ -111.941246, 46.527003 ], [ -111.941667, 46.526619 ], [ -111.943134, 46.525497 ], [ -111.943589, 46.525125 ], [ -111.94401, 46.524718 ], [ -111.944344, 46.524346 ], [ -111.944662, 46.523974 ], [ -111.944902, 46.523625 ], [ -111.945151, 46.52323 ], [ -111.9454, 46.522775 ], [ -111.945606, 46.522326 ], [ -111.945744, 46.521966 ], [ -111.945855, 46.521511 ], [ -111.947984, 46.511742 ], [ -111.948095, 46.51137 ], [ -111.948361, 46.510661 ], [ -111.949408, 46.508074 ], [ -111.952344, 46.500837 ], [ -111.952541, 46.500393 ], [ -111.952825, 46.499944 ], [ -111.953168, 46.49946 ], [ -111.953494, 46.499105 ], [ -111.953932, 46.498775 ], [ -111.954764, 46.49819 ], [ -111.958575, 46.495909 ], [ -111.959245, 46.495501 ], [ -111.960052, 46.495017 ], [ -111.961021, 46.494414 ], [ -111.961871, 46.493912 ], [ -111.962729, 46.493415 ], [ -111.963579, 46.492825 ], [ -111.964025, 46.4925 ], [ -111.964661, 46.492015 ], [ -111.965124, 46.491625 ], [ -111.965656, 46.491123 ], [ -111.966369, 46.49042 ], [ -111.96709, 46.489651 ], [ -111.976325, 46.479522 ], [ -111.976891, 46.478848 ], [ -111.977312, 46.47834 ], [ -111.977733, 46.477808 ], [ -111.977973, 46.477465 ], [ -111.978127, 46.477211 ], [ -111.978282, 46.476974 ], [ -111.97884, 46.475928 ], [ -111.979217, 46.475042 ], [ -111.980033, 46.473044 ], [ -111.980271, 46.472374 ], [ -111.980435, 46.471976 ], [ -111.980677, 46.471349 ], [ -111.980952, 46.470648 ], [ -111.981239, 46.4699 ], [ -111.981493, 46.46921 ], [ -111.981736, 46.468592 ], [ -111.981874, 46.468256 ], [ -111.982316, 46.467018 ], [ -111.982732, 46.465939 ], [ -111.982851, 46.465572 ], [ -111.983251, 46.464294 ], [ -111.983315, 46.464025 ], [ -111.983475, 46.463313 ], [ -111.983818, 46.462054 ], [ -111.98424, 46.460487 ], [ -111.985346, 46.456259 ], [ -111.985844, 46.45432 ], [ -111.986814, 46.450701 ], [ -111.986994, 46.449938 ], [ -111.987251, 46.449004 ], [ -111.987543, 46.4483 ], [ -111.987809, 46.447709 ], [ -111.988255, 46.446833 ], [ -111.990024, 46.443882 ], [ -111.990719, 46.44254 ], [ -111.99283, 46.438169 ], [ -111.995886, 46.431816 ], [ -111.996143, 46.431165 ], [ -111.996341, 46.430644 ], [ -111.996598, 46.42984 ], [ -111.996753, 46.429213 ], [ -111.99689, 46.428609 ], [ -111.997405, 46.425385 ], [ -111.997642, 46.424314 ], [ -111.997932, 46.423545 ], [ -111.998107, 46.423114 ], [ -111.99835, 46.422586 ], [ -111.998575, 46.422164 ], [ -111.998884, 46.421653 ], [ -111.999228, 46.421145 ], [ -111.999447, 46.420848 ], [ -111.999923, 46.420267 ], [ -112.000156, 46.42 ], [ -112.000433, 46.41971 ], [ -112.00089, 46.419258 ], [ -112.001482, 46.418746 ], [ -112.002113, 46.418226 ], [ -112.00272, 46.417745 ], [ -112.002961, 46.417554 ], [ -112.003548, 46.417078 ], [ -112.004211, 46.41654 ], [ -112.004746, 46.416099 ], [ -112.005461, 46.41553 ], [ -112.005985, 46.415112 ], [ -112.006394, 46.414775 ], [ -112.006854, 46.414405 ], [ -112.007245, 46.4141 ], [ -112.00765, 46.413758 ], [ -112.00797, 46.413501 ], [ -112.008169, 46.413338 ], [ -112.008593, 46.412997 ], [ -112.009014, 46.412645 ], [ -112.009385, 46.412341 ], [ -112.009697, 46.412025 ], [ -112.010255, 46.411528 ], [ -112.010946, 46.410853 ], [ -112.011431, 46.410352 ], [ -112.011895, 46.409867 ], [ -112.012165, 46.409569 ], [ -112.012675, 46.408992 ], [ -112.013067, 46.408517 ], [ -112.013404, 46.408107 ], [ -112.013911, 46.407447 ], [ -112.014218, 46.407046 ], [ -112.014492, 46.406653 ], [ -112.015033, 46.405845 ], [ -112.01524, 46.405542 ], [ -112.015368, 46.405329 ], [ -112.015741, 46.40471 ], [ -112.015972, 46.404308 ], [ -112.016318, 46.403688 ], [ -112.016624, 46.403056 ], [ -112.01703, 46.402204 ], [ -112.017522, 46.401159 ], [ -112.017917, 46.400311 ], [ -112.019197, 46.397512 ], [ -112.019961, 46.395938 ], [ -112.020503, 46.394858 ], [ -112.020846, 46.394173 ], [ -112.021172, 46.393579 ], [ -112.021321, 46.393351 ], [ -112.021496, 46.393063 ], [ -112.021714, 46.392713 ], [ -112.021925, 46.392391 ], [ -112.022307, 46.391799 ], [ -112.022576, 46.391431 ], [ -112.02269, 46.391255 ], [ -112.022776, 46.391138 ], [ -112.023072, 46.390745 ], [ -112.023396, 46.390333 ], [ -112.023636, 46.390016 ], [ -112.02407, 46.389472 ], [ -112.02447, 46.388962 ], [ -112.025293, 46.387893 ], [ -112.025518, 46.387587 ], [ -112.025835, 46.387153 ], [ -112.02604, 46.386874 ], [ -112.026296, 46.386489 ], [ -112.026502, 46.386192 ], [ -112.026698, 46.385898 ], [ -112.027204, 46.385069 ], [ -112.027659, 46.384252 ], [ -112.027743, 46.384088 ], [ -112.0278, 46.383963 ], [ -112.02782, 46.383925 ], [ -112.027998, 46.383561 ], [ -112.028106, 46.383379 ], [ -112.028359, 46.382926 ], [ -112.028737, 46.382022 ], [ -112.029617, 46.379591 ], [ -112.030115, 46.378271 ], [ -112.030424, 46.377365 ], [ -112.030767, 46.376572 ], [ -112.031059, 46.375944 ], [ -112.033059, 46.372077 ], [ -112.033626, 46.37091 ], [ -112.033917, 46.370342 ], [ -112.034252, 46.369714 ], [ -112.034492, 46.369293 ], [ -112.03481, 46.368766 ], [ -112.035136, 46.368298 ], [ -112.035445, 46.367848 ], [ -112.03584, 46.367386 ], [ -112.036295, 46.366877 ], [ -112.036879, 46.366249 ], [ -112.043015, 46.359532 ], [ -112.043436, 46.359053 ], [ -112.043754, 46.358638 ], [ -112.044011, 46.358283 ], [ -112.044234, 46.357927 ], [ -112.044475, 46.357501 ], [ -112.044698, 46.357062 ], [ -112.044852, 46.356719 ], [ -112.044972, 46.356357 ], [ -112.045093, 46.355972 ], [ -112.045204, 46.355534 ], [ -112.045281, 46.355173 ], [ -112.04535, 46.354693 ], [ -112.045384, 46.354284 ], [ -112.045376, 46.353828 ], [ -112.045359, 46.353206 ], [ -112.045058, 46.350658 ], [ -112.045032, 46.350072 ], [ -112.045075, 46.349545 ], [ -112.045178, 46.349154 ], [ -112.045317, 46.348787 ], [ -112.045481, 46.348449 ], [ -112.045687, 46.348135 ], [ -112.04591, 46.347851 ], [ -112.046202, 46.347519 ], [ -112.048562, 46.345392 ], [ -112.048862, 46.34509 ], [ -112.049146, 46.34477 ], [ -112.04936, 46.344467 ], [ -112.04954, 46.344153 ], [ -112.049738, 46.343721 ], [ -112.049849, 46.343241 ], [ -112.049884, 46.343028 ], [ -112.049892, 46.342755 ], [ -112.049884, 46.3424 ], [ -112.049806, 46.341931 ], [ -112.049396, 46.34035 ], [ -112.049218, 46.339673 ], [ -112.049159, 46.33933 ], [ -112.049143, 46.339002 ], [ -112.049168, 46.338597 ], [ -112.049229, 46.338284 ], [ -112.049292, 46.338051 ], [ -112.049341, 46.337839 ], [ -112.049439, 46.337616 ], [ -112.049559, 46.337404 ], [ -112.0497, 46.337162 ], [ -112.049936, 46.33687 ], [ -112.05015, 46.336595 ], [ -112.054836, 46.331763 ], [ -112.055497, 46.33117 ], [ -112.055875, 46.33085 ], [ -112.056372, 46.33053 ], [ -112.05687, 46.330263 ], [ -112.057445, 46.330044 ], [ -112.058132, 46.329789 ], [ -112.060261, 46.329273 ], [ -112.060879, 46.329137 ], [ -112.061445, 46.328959 ], [ -112.061994, 46.328752 ], [ -112.062561, 46.32845 ], [ -112.06317, 46.3281 ], [ -112.063625, 46.327786 ], [ -112.064054, 46.327371 ], [ -112.064466, 46.326891 ], [ -112.06523, 46.325741 ], [ -112.065677, 46.325125 ], [ -112.066028, 46.324674 ], [ -112.06638, 46.324318 ], [ -112.066904, 46.323868 ], [ -112.067505, 46.323501 ], [ -112.06826, 46.323109 ], [ -112.069642, 46.322445 ], [ -112.070509, 46.322007 ], [ -112.071195, 46.321663 ], [ -112.071728, 46.321378 ], [ -112.07238, 46.320958 ], [ -112.073067, 46.320519 ], [ -112.073762, 46.320045 ], [ -112.074277, 46.319582 ], [ -112.074732, 46.319138 ], [ -112.075169, 46.318705 ], [ -112.075599, 46.318189 ], [ -112.076053, 46.317626 ], [ -112.076371, 46.317182 ], [ -112.076732, 46.316589 ], [ -112.077058, 46.315949 ], [ -112.077616, 46.31452 ], [ -112.077985, 46.313459 ], [ -112.078268, 46.312795 ], [ -112.078491, 46.31232 ], [ -112.0788, 46.311751 ], [ -112.079212, 46.31117 ], [ -112.079718, 46.310435 ], [ -112.0808, 46.308627 ], [ -112.081126, 46.30801 ], [ -112.081375, 46.307316 ], [ -112.081512, 46.306724 ], [ -112.081607, 46.306131 ], [ -112.081735, 46.304998 ], [ -112.081856, 46.304358 ], [ -112.082079, 46.303688 ], [ -112.082319, 46.303172 ], [ -112.082594, 46.302692 ], [ -112.082946, 46.302205 ], [ -112.083306, 46.301814 ], [ -112.083804, 46.301334 ], [ -112.08447, 46.300831 ], [ -112.085263, 46.300355 ], [ -112.086027, 46.299964 ], [ -112.089752, 46.298446 ], [ -112.090979, 46.297859 ], [ -112.091958, 46.297337 ], [ -112.092799, 46.296756 ], [ -112.093486, 46.296287 ], [ -112.094104, 46.295694 ], [ -112.09473, 46.295036 ], [ -112.095159, 46.294538 ], [ -112.09558, 46.293992 ], [ -112.09594, 46.293381 ], [ -112.096445, 46.292397 ], [ -112.096685, 46.291614 ], [ -112.09702, 46.290422 ], [ -112.097449, 46.288406 ], [ -112.097724, 46.287409 ], [ -112.098136, 46.286312 ], [ -112.099116, 46.284397 ], [ -112.099274, 46.284063 ], [ -112.10053, 46.281349 ], [ -112.101118, 46.280084 ], [ -112.102891, 46.276318 ], [ -112.104027, 46.273935 ], [ -112.104859, 46.272141 ], [ -112.105342, 46.271125 ], [ -112.106274, 46.269146 ], [ -112.107087, 46.267404 ], [ -112.111234, 46.258546 ], [ -112.112659, 46.255466 ], [ -112.114521, 46.251525 ], [ -112.114976, 46.250676 ], [ -112.115508, 46.249899 ], [ -112.115937, 46.249329 ], [ -112.116633, 46.248581 ], [ -112.117748, 46.247554 ], [ -112.11925, 46.246504 ], [ -112.12022, 46.245934 ], [ -112.120967, 46.245566 ], [ -112.121954, 46.245133 ], [ -112.124992, 46.244052 ], [ -112.13288, 46.241298 ], [ -112.133387, 46.24112 ], [ -112.138622, 46.239291 ], [ -112.145034, 46.237065 ], [ -112.146141, 46.236745 ], [ -112.147008, 46.236519 ], [ -112.147806, 46.236394 ], [ -112.148459, 46.236305 ], [ -112.149265, 46.236246 ], [ -112.150089, 46.236222 ], [ -112.151042, 46.236246 ], [ -112.151883, 46.236317 ], [ -112.152699, 46.236436 ], [ -112.153471, 46.236584 ], [ -112.154474, 46.236837 ], [ -112.15899, 46.238152 ], [ -112.160595, 46.238543 ], [ -112.162483, 46.238947 ], [ -112.163367, 46.23922 ], [ -112.164054, 46.239529 ], [ -112.164698, 46.239897 ], [ -112.165273, 46.24033 ], [ -112.166844, 46.241642 ], [ -112.167307, 46.241963 ], [ -112.1685, 46.242669 ], [ -112.169144, 46.243085 ], [ -112.169659, 46.24356 ], [ -112.170912, 46.244966 ], [ -112.171367, 46.245364 ], [ -112.172131, 46.245898 ], [ -112.173204, 46.246522 ], [ -112.174276, 46.247169 ], [ -112.174817, 46.24762 ], [ -112.175298, 46.24816 ], [ -112.175555, 46.248587 ], [ -112.17577, 46.248973 ], [ -112.175924, 46.249424 ], [ -112.176336, 46.250552 ], [ -112.176517, 46.25092 ], [ -112.17674, 46.251276 ], [ -112.176997, 46.251626 ], [ -112.177418, 46.252083 ], [ -112.177787, 46.252344 ], [ -112.178165, 46.252617 ], [ -112.180775, 46.254129 ], [ -112.181007, 46.254269 ], [ -112.183097, 46.255454 ], [ -112.183493, 46.255702 ], [ -112.184164, 46.256171 ], [ -112.184905, 46.256737 ], [ -112.185365, 46.257141 ], [ -112.185885, 46.257562 ], [ -112.186185, 46.2578 ], [ -112.186531, 46.258043 ], [ -112.186972, 46.258275 ], [ -112.187322, 46.258422 ], [ -112.187774, 46.258598 ], [ -112.188155, 46.258726 ], [ -112.188842, 46.25893 ], [ -112.190061, 46.259233 ], [ -112.194417, 46.260296 ], [ -112.194914, 46.260425 ], [ -112.197467, 46.261049 ], [ -112.198131, 46.261215 ], [ -112.198816, 46.261348 ], [ -112.200563, 46.261639 ], [ -112.2012, 46.261735 ], [ -112.201697, 46.261796 ], [ -112.202216, 46.261831 ], [ -112.202661, 46.261847 ], [ -112.203293, 46.261844 ], [ -112.203843, 46.26181 ], [ -112.204643, 46.261713 ], [ -112.205502, 46.261541 ], [ -112.206283, 46.261328 ], [ -112.207158, 46.260978 ], [ -112.20773, 46.260725 ], [ -112.208199, 46.260464 ], [ -112.209872, 46.259361 ], [ -112.210845, 46.258723 ], [ -112.211437, 46.258407 ], [ -112.21171, 46.258294 ], [ -112.211974, 46.258207 ], [ -112.212216, 46.258142 ], [ -112.212463, 46.258092 ], [ -112.212751, 46.258048 ], [ -112.213051, 46.258024 ], [ -112.213334, 46.258019 ], [ -112.213692, 46.258035 ], [ -112.213988, 46.258065 ], [ -112.214247, 46.258108 ], [ -112.214549, 46.258186 ], [ -112.21472, 46.258241 ], [ -112.214928, 46.258313 ], [ -112.21526, 46.258456 ], [ -112.215539, 46.258605 ], [ -112.215859, 46.258826 ], [ -112.216123, 46.259059 ], [ -112.216344, 46.259307 ], [ -112.216538, 46.259564 ], [ -112.217304, 46.260578 ], [ -112.217586, 46.260888 ], [ -112.217887, 46.26118 ], [ -112.218436, 46.261654 ], [ -112.219097, 46.262058 ], [ -112.219818, 46.262508 ], [ -112.220179, 46.262823 ], [ -112.220462, 46.263203 ], [ -112.220625, 46.263654 ], [ -112.220625, 46.264105 ], [ -112.220513, 46.26455 ], [ -112.220273, 46.264918 ], [ -112.21993, 46.265238 ], [ -112.219466, 46.265558 ], [ -112.218514, 46.266039 ], [ -112.218288, 46.266167 ], [ -112.218079, 46.266291 ], [ -112.217885, 46.266411 ], [ -112.217737, 46.266539 ], [ -112.217605, 46.266696 ], [ -112.217501, 46.266818 ], [ -112.217396, 46.266989 ], [ -112.21734, 46.267123 ], [ -112.217303, 46.267314 ], [ -112.217283, 46.267445 ], [ -112.217325, 46.267714 ], [ -112.217476, 46.26824 ], [ -112.217544, 46.268438 ], [ -112.217592, 46.268538 ], [ -112.217628, 46.268615 ], [ -112.217724, 46.268751 ], [ -112.217818, 46.268858 ], [ -112.217936, 46.268959 ], [ -112.21813, 46.269104 ], [ -112.218353, 46.26922 ], [ -112.218727, 46.26937 ], [ -112.219166, 46.269489 ], [ -112.219721, 46.269609 ], [ -112.220202, 46.269698 ], [ -112.220646, 46.269797 ], [ -112.220996, 46.2699 ], [ -112.22144, 46.27005 ], [ -112.222711, 46.270631 ], [ -112.223277, 46.270851 ], [ -112.22399, 46.271017 ], [ -112.224668, 46.271076 ], [ -112.225371, 46.270993 ], [ -112.227174, 46.270608 ], [ -112.227989, 46.270507 ], [ -112.22883, 46.270519 ], [ -112.229611, 46.270726 ], [ -112.232341, 46.271693 ], [ -112.232993, 46.27186 ], [ -112.233723, 46.271966 ], [ -112.234744, 46.271978 ], [ -112.239606, 46.271805 ], [ -112.242182, 46.271693 ], [ -112.246347, 46.271502 ], [ -112.246967, 46.271459 ], [ -112.247491, 46.271415 ], [ -112.247911, 46.271379 ], [ -112.248545, 46.271312 ], [ -112.249143, 46.271217 ], [ -112.250763, 46.270938 ], [ -112.251919, 46.270715 ], [ -112.254271, 46.270264 ], [ -112.255138, 46.270086 ], [ -112.255979, 46.269973 ], [ -112.256923, 46.269854 ], [ -112.257798, 46.269753 ], [ -112.258871, 46.269706 ], [ -112.259953, 46.269694 ], [ -112.260408, 46.269688 ], [ -112.260811, 46.269688 ], [ -112.265927, 46.269838 ], [ -112.266364, 46.269845 ], [ -112.268516, 46.269903 ], [ -112.26928, 46.269923 ], [ -112.269822, 46.269932 ], [ -112.270297, 46.269936 ], [ -112.270632, 46.269932 ], [ -112.271986, 46.269899 ], [ -112.272496, 46.269882 ], [ -112.272871, 46.269875 ], [ -112.273201, 46.26988 ], [ -112.273496, 46.269893 ], [ -112.273848, 46.269921 ], [ -112.274451, 46.269986 ], [ -112.275304, 46.270084 ], [ -112.275736, 46.270129 ], [ -112.276214, 46.270171 ], [ -112.276581, 46.270192 ], [ -112.276954, 46.270201 ], [ -112.277383, 46.270195 ], [ -112.277783, 46.270179 ], [ -112.278217, 46.270151 ], [ -112.278636, 46.270112 ], [ -112.27903, 46.270058 ], [ -112.279521, 46.269977 ], [ -112.280084, 46.269869 ], [ -112.280575, 46.269771 ], [ -112.281036, 46.269673 ], [ -112.281492, 46.269558 ], [ -112.281919, 46.269443 ], [ -112.282407, 46.269304 ], [ -112.28289, 46.269153 ], [ -112.283292, 46.269013 ], [ -112.283616, 46.26889 ], [ -112.283914, 46.268764 ], [ -112.284169, 46.268638 ], [ -112.284394, 46.268516 ], [ -112.284601, 46.268394 ], [ -112.284775, 46.268275 ], [ -112.284955, 46.268131 ], [ -112.285087, 46.268013 ], [ -112.285191, 46.267897 ], [ -112.285277, 46.267793 ], [ -112.285357, 46.267683 ], [ -112.28543, 46.267542 ], [ -112.285505, 46.267379 ], [ -112.285561, 46.267208 ], [ -112.285596, 46.267049 ], [ -112.28561, 46.266897 ], [ -112.285612, 46.266763 ], [ -112.285599, 46.266613 ], [ -112.285569, 46.266448 ], [ -112.285505, 46.266261 ], [ -112.28543, 46.266096 ], [ -112.285194, 46.265664 ], [ -112.285025, 46.265406 ], [ -112.284866, 46.265152 ], [ -112.284775, 46.264974 ], [ -112.284703, 46.264813 ], [ -112.284646, 46.264655 ], [ -112.284614, 46.264507 ], [ -112.284598, 46.264379 ], [ -112.284598, 46.26421 ], [ -112.284617, 46.264062 ], [ -112.284665, 46.263899 ], [ -112.284727, 46.263728 ], [ -112.284759, 46.263669 ], [ -112.284821, 46.263548 ], [ -112.284909, 46.263418 ], [ -112.284995, 46.263313 ], [ -112.285121, 46.263177 ], [ -112.285277, 46.263038 ], [ -112.285408, 46.262932 ], [ -112.285591, 46.262814 ], [ -112.285765, 46.262716 ], [ -112.285998, 46.262614 ], [ -112.286237, 46.262523 ], [ -112.286454, 46.262454 ], [ -112.286722, 46.262397 ], [ -112.286953, 46.262358 ], [ -112.287205, 46.262334 ], [ -112.287431, 46.262324 ], [ -112.287599, 46.262324 ], [ -112.287755, 46.262332 ], [ -112.287908, 46.262343 ], [ -112.28809, 46.262371 ], [ -112.288289, 46.262408 ], [ -112.288533, 46.262469 ], [ -112.28878, 46.262545 ], [ -112.289056, 46.262641 ], [ -112.28941, 46.262779 ], [ -112.292288, 46.263915 ], [ -112.295423, 46.265141 ], [ -112.295772, 46.265276 ], [ -112.296799, 46.265681 ], [ -112.297288, 46.265857 ], [ -112.29766, 46.26597 ], [ -112.297998, 46.266064 ], [ -112.298326, 46.266135 ], [ -112.298693, 46.266202 ], [ -112.29902, 46.266252 ], [ -112.299407, 46.266294 ], [ -112.299973, 46.26635 ], [ -112.301962, 46.266518 ], [ -112.303677, 46.266665 ], [ -112.30416, 46.266715 ], [ -112.304799, 46.266799 ], [ -112.305829, 46.266965 ], [ -112.307302, 46.26725 ], [ -112.307798, 46.267339 ], [ -112.308222, 46.267413 ], [ -112.308627, 46.267476 ], [ -112.308997, 46.267518 ], [ -112.309343, 46.267554 ], [ -112.309617, 46.267578 ], [ -112.309941, 46.267591 ], [ -112.310258, 46.267602 ], [ -112.310641, 46.267611 ], [ -112.310985, 46.267613 ], [ -112.311296, 46.267607 ], [ -112.311658, 46.267591 ], [ -112.312055, 46.267565 ], [ -112.312425, 46.267535 ], [ -112.312795, 46.267492 ], [ -112.313219, 46.267435 ], [ -112.313683, 46.267359 ], [ -112.31408, 46.267281 ], [ -112.314484, 46.267191 ], [ -112.314867, 46.26709 ], [ -112.315256, 46.26698 ], [ -112.315717, 46.266837 ], [ -112.316613, 46.266561 ], [ -112.317018, 46.266437 ], [ -112.317471, 46.266313 ], [ -112.317997, 46.266179 ], [ -112.318925, 46.265949 ], [ -112.320151, 46.265632 ], [ -112.321393, 46.265313 ], [ -112.325427, 46.26428 ], [ -112.326138, 46.264095 ], [ -112.326859, 46.263917 ], [ -112.327936, 46.263635 ], [ -112.330428, 46.263002 ], [ -112.333211, 46.262287 ], [ -112.334007, 46.262079 ], [ -112.335292, 46.261753 ], [ -112.335686, 46.261652 ], [ -112.336028, 46.261559 ], [ -112.33637, 46.261454 ], [ -112.33667, 46.261355 ], [ -112.336988, 46.261243 ], [ -112.337325, 46.261115 ], [ -112.33768, 46.260971 ], [ -112.338038, 46.260813 ], [ -112.338363, 46.260662 ], [ -112.338625, 46.26053 ], [ -112.338933, 46.260366 ], [ -112.340256, 46.259429 ], [ -112.341003, 46.258829 ], [ -112.341337, 46.25845 ], [ -112.341646, 46.258088 ], [ -112.342041, 46.257506 ], [ -112.342264, 46.257085 ], [ -112.342513, 46.256616 ], [ -112.342736, 46.256052 ], [ -112.343048, 46.25519 ], [ -112.343088, 46.254628 ], [ -112.343114, 46.25404 ], [ -112.342997, 46.253333 ], [ -112.342814, 46.252527 ], [ -112.342556, 46.25188 ], [ -112.341586, 46.249939 ], [ -112.341209, 46.248971 ], [ -112.340942, 46.248152 ], [ -112.340797, 46.247393 ], [ -112.340711, 46.246752 ], [ -112.340698, 46.245956 ], [ -112.340797, 46.24509 ], [ -112.340934, 46.2443 ], [ -112.341088, 46.243617 ], [ -112.341363, 46.242745 ], [ -112.343732, 46.236132 ], [ -112.343955, 46.235443 ], [ -112.344213, 46.23479 ], [ -112.34459, 46.234178 ], [ -112.345088, 46.233513 ], [ -112.346384, 46.231827 ], [ -112.346848, 46.231067 ], [ -112.347062, 46.230402 ], [ -112.347208, 46.229666 ], [ -112.34738, 46.228247 ], [ -112.347457, 46.227659 ], [ -112.347706, 46.22662 ], [ -112.348072, 46.225486 ], [ -112.348787, 46.223592 ], [ -112.349165, 46.22241 ], [ -112.349268, 46.221798 ], [ -112.349251, 46.221163 ], [ -112.348908, 46.218621 ], [ -112.348822, 46.218081 ], [ -112.348822, 46.217392 ], [ -112.348959, 46.216762 ], [ -112.34944, 46.215301 ], [ -112.349521, 46.214586 ], [ -112.349491, 46.214013 ], [ -112.349328, 46.213591 ], [ -112.349028, 46.213021 ], [ -112.348633, 46.212492 ], [ -112.348169, 46.211999 ], [ -112.34762, 46.211619 ], [ -112.346856, 46.211156 ], [ -112.345869, 46.21058 ], [ -112.3452, 46.210051 ], [ -112.344728, 46.209576 ], [ -112.343234, 46.207925 ], [ -112.342659, 46.207307 ], [ -112.341921, 46.206677 ], [ -112.340814, 46.205816 ], [ -112.34041, 46.205465 ], [ -112.340067, 46.205085 ], [ -112.339802, 46.204693 ], [ -112.339704, 46.204467 ], [ -112.339636, 46.204269 ], [ -112.339591, 46.204027 ], [ -112.339612, 46.20382 ], [ -112.339732, 46.203256 ], [ -112.340033, 46.20262 ], [ -112.340582, 46.201913 ], [ -112.341621, 46.200885 ], [ -112.342062, 46.200298 ], [ -112.342242, 46.199944 ], [ -112.342396, 46.199584 ], [ -112.342597, 46.199091 ], [ -112.342775, 46.198631 ], [ -112.343062, 46.198034 ], [ -112.343303, 46.197541 ], [ -112.343792, 46.196904 ], [ -112.344693, 46.196127 ], [ -112.345387, 46.19542 ], [ -112.345729, 46.194938 ], [ -112.345917, 46.194643 ], [ -112.346069, 46.194349 ], [ -112.346166, 46.194045 ], [ -112.346238, 46.193697 ], [ -112.34623, 46.193103 ], [ -112.345941, 46.190673 ], [ -112.345878, 46.189902 ], [ -112.345728, 46.189213 ], [ -112.345709, 46.188344 ], [ -112.345571, 46.187533 ], [ -112.345558, 46.186912 ], [ -112.345564, 46.185992 ], [ -112.345749, 46.183453 ], [ -112.346234, 46.177623 ], [ -112.346347, 46.176821 ], [ -112.346473, 46.176275 ], [ -112.34671, 46.175728 ], [ -112.347062, 46.17511 ], [ -112.347483, 46.174486 ], [ -112.34822, 46.173702 ], [ -112.349208, 46.17291 ], [ -112.3521, 46.171121 ], [ -112.352701, 46.170843 ], [ -112.353354, 46.170627 ], [ -112.354238, 46.170443 ], [ -112.355396, 46.170378 ], [ -112.356246, 46.170461 ], [ -112.358186, 46.170764 ], [ -112.359293, 46.170788 ], [ -112.360246, 46.170669 ], [ -112.361216, 46.170425 ], [ -112.362177, 46.170093 ], [ -112.362941, 46.16973 ], [ -112.363559, 46.169296 ], [ -112.364125, 46.168743 ], [ -112.364529, 46.168119 ], [ -112.365267, 46.167103 ], [ -112.365816, 46.166663 ], [ -112.3664, 46.166336 ], [ -112.367129, 46.166098 ], [ -112.367868, 46.165967 ], [ -112.368692, 46.165944 ], [ -112.371773, 46.166039 ], [ -112.372811, 46.166015 ], [ -112.37367, 46.165902 ], [ -112.374588, 46.165706 ], [ -112.375592, 46.165379 ], [ -112.376571, 46.164951 ], [ -112.377318, 46.164529 ], [ -112.378076, 46.163952 ], [ -112.378262, 46.163762 ], [ -112.378614, 46.163364 ], [ -112.378914, 46.162965 ], [ -112.379469, 46.162169 ], [ -112.382055, 46.158245 ], [ -112.384021, 46.155308 ], [ -112.385566, 46.152959 ], [ -112.387334, 46.150272 ], [ -112.388458, 46.14862 ], [ -112.389451, 46.147108 ], [ -112.391789, 46.143594 ], [ -112.398669, 46.133222 ], [ -112.400972, 46.129712 ], [ -112.4066, 46.121302 ], [ -112.407393, 46.120004 ], [ -112.408182, 46.118582 ], [ -112.408541, 46.117899 ], [ -112.409937, 46.114817 ], [ -112.411055, 46.112333 ], [ -112.412388, 46.109365 ], [ -112.413655, 46.106653 ], [ -112.414778, 46.10418 ], [ -112.415206, 46.103314 ], [ -112.415668, 46.102487 ], [ -112.415895, 46.102106 ], [ -112.416464, 46.101176 ], [ -112.417083, 46.100254 ], [ -112.418499, 46.098356 ], [ -112.418915, 46.09769 ], [ -112.419526, 46.096677 ], [ -112.420233, 46.095398 ], [ -112.422479, 46.091058 ], [ -112.424336, 46.087469 ], [ -112.429652, 46.0772 ], [ -112.429822, 46.076884 ], [ -112.431392, 46.07384 ], [ -112.436257, 46.064391 ], [ -112.436937, 46.063074 ], [ -112.438079, 46.061044 ], [ -112.438376, 46.060532 ], [ -112.438666, 46.060066 ], [ -112.43881, 46.05984 ], [ -112.439098, 46.05943 ], [ -112.43934, 46.059064 ], [ -112.439532, 46.058774 ], [ -112.440107, 46.058002 ], [ -112.44038, 46.05765 ], [ -112.441731, 46.056019 ], [ -112.443485, 46.053949 ], [ -112.447802, 46.048851 ], [ -112.45155, 46.044489 ], [ -112.452423, 46.043435 ], [ -112.452928, 46.042858 ], [ -112.453336, 46.042363 ], [ -112.453672, 46.041989 ], [ -112.454055, 46.041551 ], [ -112.454342, 46.04125 ], [ -112.454665, 46.040886 ], [ -112.456067, 46.039558 ], [ -112.457335, 46.038587 ], [ -112.457987, 46.038059 ], [ -112.458512, 46.037625 ], [ -112.458842, 46.037329 ], [ -112.459071, 46.03709 ], [ -112.459314, 46.036842 ], [ -112.459518, 46.03659 ], [ -112.459678, 46.03639 ], [ -112.4598, 46.036215 ], [ -112.459891, 46.036045 ], [ -112.460007, 46.03582 ], [ -112.460114, 46.03551 ], [ -112.460172, 46.035281 ], [ -112.460249, 46.034999 ], [ -112.460282, 46.034713 ], [ -112.460289, 46.034622 ], [ -112.460306, 46.034393 ], [ -112.46034, 46.034001 ], [ -112.460377, 46.033494 ], [ -112.460788, 46.024225 ], [ -112.460858, 46.022999 ], [ -112.461034, 46.021707 ], [ -112.461139, 46.019417 ], [ -112.461174, 46.018182 ], [ -112.461374, 46.013939 ], [ -112.461433, 46.012326 ], [ -112.461598, 46.009767 ], [ -112.46173, 46.007706 ], [ -112.461826, 46.006592 ], [ -112.461968, 46.00602 ], [ -112.462225, 46.00538 ], [ -112.462565, 46.004722 ], [ -112.463191, 46.004036 ], [ -112.464072, 46.003225 ], [ -112.465792, 46.001872 ], [ -112.466856, 46.001037 ], [ -112.469268, 45.999189 ], [ -112.469946, 45.998682 ], [ -112.470667, 45.998003 ], [ -112.47113, 45.997502 ], [ -112.47156, 45.996917 ], [ -112.471963, 45.99622 ], [ -112.473459, 45.993424 ], [ -112.474051, 45.992464 ], [ -112.474317, 45.992004 ], [ -112.475276, 45.990233 ], [ -112.475566, 45.989642 ], [ -112.476695, 45.987673 ], [ -112.477014, 45.987068 ], [ -112.477395, 45.986399 ], [ -112.477976, 45.985327 ], [ -112.478243, 45.984818 ], [ -112.478421, 45.98455 ], [ -112.478851, 45.983744 ], [ -112.479177, 45.983218 ], [ -112.479374, 45.982981 ], [ -112.479538, 45.982795 ], [ -112.47971, 45.982636 ], [ -112.479894, 45.982492 ], [ -112.480132, 45.982326 ], [ -112.48042, 45.982142 ], [ -112.480713, 45.981993 ], [ -112.481018, 45.981862 ], [ -112.481235, 45.981784 ], [ -112.481491, 45.981708 ], [ -112.481819, 45.981612 ], [ -112.482235, 45.981526 ], [ -112.482576, 45.981485 ], [ -112.482792, 45.981468 ], [ -112.483106, 45.981448 ], [ -112.484674, 45.981411 ], [ -112.485533, 45.981393 ], [ -112.486142, 45.981346 ], [ -112.486888, 45.981343 ], [ -112.488415, 45.981329 ], [ -112.48942, 45.981323 ], [ -112.489915, 45.981311 ], [ -112.490321, 45.981291 ], [ -112.491262, 45.981187 ], [ -112.492077, 45.981092 ], [ -112.492755, 45.980966 ], [ -112.49327, 45.980829 ], [ -112.494197, 45.980567 ], [ -112.495345, 45.9802 ], [ -112.496229, 45.979974 ], [ -112.496927, 45.979831 ], [ -112.497708, 45.979756 ], [ -112.4986, 45.979744 ], [ -112.499484, 45.979774 ], [ -112.500257, 45.979863 ], [ -112.501047, 45.980042 ], [ -112.501432, 45.980146 ], [ -112.501772, 45.980251 ], [ -112.502162, 45.980391 ], [ -112.502441, 45.980505 ], [ -112.502715, 45.980622 ], [ -112.503036, 45.980793 ], [ -112.503323, 45.980946 ], [ -112.503646, 45.981153 ], [ -112.503934, 45.981351 ], [ -112.504203, 45.981566 ], [ -112.504427, 45.981757 ], [ -112.504926, 45.982217 ], [ -112.505529, 45.982793 ], [ -112.505933, 45.983132 ], [ -112.506153, 45.983296 ], [ -112.506336, 45.983431 ], [ -112.506571, 45.983586 ], [ -112.506888, 45.983789 ], [ -112.507196, 45.983956 ], [ -112.507471, 45.984097 ], [ -112.507799, 45.984272 ], [ -112.508512, 45.98456 ], [ -112.508794, 45.984651 ], [ -112.50906, 45.984738 ], [ -112.509415, 45.984842 ], [ -112.509964, 45.984998 ], [ -112.512836, 45.985714 ], [ -112.514063, 45.986044 ], [ -112.515749, 45.986501 ], [ -112.516874, 45.986847 ], [ -112.529602, 45.991803 ], [ -112.530598, 45.992131 ], [ -112.531516, 45.992333 ], [ -112.5324, 45.992476 ], [ -112.533044, 45.992536 ], [ -112.533894, 45.992542 ], [ -112.538675, 45.992548 ], [ -112.539481, 45.992542 ], [ -112.544571, 45.992548 ], [ -112.54755, 45.9925 ], [ -112.549472, 45.992518 ], [ -112.552176, 45.992548 ], [ -112.553189, 45.992614 ], [ -112.554167, 45.992739 ], [ -112.555008, 45.992942 ], [ -112.559798, 45.994337 ], [ -112.560613, 45.994587 ], [ -112.561471, 45.994951 ], [ -112.562235, 45.995404 ], [ -112.562816, 45.995834 ], [ -112.563071, 45.996064 ], [ -112.563323, 45.996326 ], [ -112.563586, 45.996638 ], [ -112.563846, 45.996975 ], [ -112.564136, 45.997384 ], [ -112.564414, 45.997764 ], [ -112.565162, 45.998934 ], [ -112.565743, 45.999683 ], [ -112.566655, 46.000955 ], [ -112.567437, 46.001903 ], [ -112.56802, 46.002517 ], [ -112.568741, 46.003096 ], [ -112.569419, 46.003525 ], [ -112.570063, 46.003859 ], [ -112.570964, 46.004318 ], [ -112.571822, 46.004693 ], [ -112.572895, 46.005009 ], [ -112.573848, 46.00523 ], [ -112.574775, 46.005379 ], [ -112.575728, 46.005463 ], [ -112.577187, 46.005504 ], [ -112.577788, 46.005522 ], [ -112.582056, 46.005676 ], [ -112.594885, 46.006166 ], [ -112.604584, 46.006524 ], [ -112.605451, 46.006619 ], [ -112.607283, 46.006843 ], [ -112.610896, 46.007381 ], [ -112.611152, 46.005948 ], [ -112.61121, 46.005792 ], [ -112.611238, 46.005609 ], [ -112.608284, 46.004266 ], [ -112.607739, 46.003921 ], [ -112.607191, 46.003516 ], [ -112.606953, 46.003377 ], [ -112.606693, 46.003274 ], [ -112.606342, 46.003193 ], [ -112.606239, 46.00317 ], [ -112.604638, 46.002827 ], [ -112.603223, 46.002511 ], [ -112.603052, 46.002473 ], [ -112.60203, 46.002278 ], [ -112.601516, 46.002219 ], [ -112.601276, 46.00221 ], [ -112.600883, 46.002212 ], [ -112.600496, 46.00223 ], [ -112.600404, 46.002208 ], [ -112.60036, 46.002173 ], [ -112.600327, 46.002117 ], [ -112.600314, 46.002059 ], [ -112.600333, 46.001927 ], [ -112.600381, 46.001853 ], [ -112.60049, 46.001777 ], [ -112.600599, 46.001745 ], [ -112.600713, 46.001737 ], [ -112.600862, 46.001739 ], [ -112.601544, 46.001798 ], [ -112.601657, 46.001792 ], [ -112.601804, 46.001767 ], [ -112.601918, 46.001724 ], [ -112.602008, 46.001673 ], [ -112.602239, 46.001528 ], [ -112.602389, 46.001412 ], [ -112.602658, 46.001185 ], [ -112.60307, 46.000822 ], [ -112.603218, 46.000656 ], [ -112.603405, 46.000474 ], [ -112.60366, 46.000513 ], [ -112.603842, 46.000532 ], [ -112.604078, 46.000549 ], [ -112.604254, 46.000547 ], [ -112.605018, 46.00043 ], [ -112.605491, 46.000395 ], [ -112.605766, 46.000402 ], [ -112.606076, 46.000466 ], [ -112.606209, 46.00049 ], [ -112.606364, 46.000494 ], [ -112.606548, 46.000466 ], [ -112.607005, 46.000359 ], [ -112.607412, 46.000312 ], [ -112.611416, 46.000299 ], [ -112.611653, 46.000242 ], [ -112.611812, 46.000145 ], [ -112.611932, 45.999965 ], [ -112.611906, 45.993731 ], [ -112.611956, 45.990322 ], [ -112.611963, 45.987384 ], [ -112.611945, 45.986839 ], [ -112.611983, 45.986517 ], [ -112.612211, 45.985826 ], [ -112.612974, 45.983191 ], [ -112.613351, 45.982047 ], [ -112.613508, 45.981723 ], [ -112.613655, 45.98152 ], [ -112.613973, 45.981284 ], [ -112.61573, 45.980235 ], [ -112.61642, 45.979923 ], [ -112.617405, 45.979519 ], [ -112.618068, 45.979213 ], [ -112.618669, 45.978865 ], [ -112.620246, 45.977619 ], [ -112.620586, 45.977289 ], [ -112.621106, 45.976592 ], [ -112.622154, 45.975079 ], [ -112.622235, 45.974699 ], [ -112.622281, 45.973317 ], [ -112.622078, 45.970234 ], [ -112.619831, 45.970225 ], [ -112.614288, 45.970203 ] ] } } diff --git a/packages/turf-line-slice/.npmignore b/packages/turf-line-slice/.npmignore new file mode 100644 index 0000000000..bb3c08c09a --- /dev/null +++ b/packages/turf-line-slice/.npmignore @@ -0,0 +1,2 @@ +test +coverage diff --git a/packages/turf-line-slice/LICENSE b/packages/turf-line-slice/LICENSE new file mode 100644 index 0000000000..77d1c4e7ee --- /dev/null +++ b/packages/turf-line-slice/LICENSE @@ -0,0 +1,22 @@ +The MIT License (MIT) + +Copyright (c) 2015 Morgan Herlocker + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + diff --git a/packages/turf-line-slice/README.md b/packages/turf-line-slice/README.md new file mode 100644 index 0000000000..c73de65209 --- /dev/null +++ b/packages/turf-line-slice/README.md @@ -0,0 +1,78 @@ +# turf-line-slice + +[![build status](https://secure.travis-ci.org/Turfjs/turf-line-slice.png)](http://travis-ci.org/Turfjs/turf-line-slice) + + + + +### `turf.line-slice (Point, Point, Line)` + +Slices a LineString at start and stop Points + + +### Parameters + +| parameter | type | description | +| --------- | ---------- | ------------------ | +| `Point` | Point | to start the slice | +| `Point` | Point | to stop the slice | +| `Line` | LineString | to slice | + + +### Example + +```js +var line = { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -77.0316696166992, + 38.878605901789236 + ], + [ + -77.02960968017578, + 38.88194668656296 + ], + [ + -77.02033996582031, + 38.88408470638821 + ], + [ + -77.02566146850586, + 38.885821800123196 + ], + [ + -77.02188491821289, + 38.88956308852534 + ], + [ + -77.01982498168944, + 38.89236892551996 + ] + ] + } +}; +var start = turf.point([-77.02033996582031, 38.88408470638821]); +var stop = turf.point([-77.02033996582031, 38.88408470638821]); + +var sliced = turf.lineSlice(start, stop, line); +//=sliced +``` + +## Installation + +Requires [nodejs](http://nodejs.org/). + +```sh +$ npm install turf-line-slice +``` + +## Tests + +```sh +$ npm test +``` + diff --git a/packages/turf-line-slice/bench.js b/packages/turf-line-slice/bench.js new file mode 100644 index 0000000000..76394b1054 --- /dev/null +++ b/packages/turf-line-slice/bench.js @@ -0,0 +1,34 @@ +var lineSlice = require('./'); +var Benchmark = require('benchmark'); +var fs = require('fs'); +var point = require('turf-helpers').point; + +var route1 = JSON.parse(fs.readFileSync(__dirname + '/test/in/route1.geojson')); +var route2 = JSON.parse(fs.readFileSync(__dirname + '/test/in/route2.geojson')); +var line1 = JSON.parse(fs.readFileSync(__dirname + '/test/in/line1.geojson')); + +var start1 = point([-97.79617309570312,22.254624939561698]); +var stop1 = point([-97.72750854492188,22.057641623615734]); +var start2 = point([-79.0850830078125,37.60117623656667]); +var stop2 = point([-77.7667236328125,38.65119833229951]); +var start3 = point([-112.60660171508789,45.96021963947196]); +var stop3 = point([-111.97265625,48.84302835299516]); + +var suite = new Benchmark.Suite('turf-line-slice'); +suite + .add('turf-line-slice#simple',function () { + lineSlice(start1, stop1, line1); + }) + .add('turf-line-slice#route1',function () { + lineSlice(start2, stop2, route1); + }) + .add('turf-line-slice#route2',function () { + lineSlice(start3, stop3, route2); + }) + .on('cycle', function (event) { + console.log(String(event.target)); + }) + .on('complete', function () { + + }) + .run(); diff --git a/packages/turf-line-slice/index.js b/packages/turf-line-slice/index.js new file mode 100644 index 0000000000..65340221e3 --- /dev/null +++ b/packages/turf-line-slice/index.js @@ -0,0 +1,191 @@ +var distance = require('turf-distance'); +var point = require('turf-helpers').point; +var linestring = require('turf-helpers').lineString; +var bearing = require('turf-bearing'); +var destination = require('turf-destination'); + +/** + * Takes a {@link LineString|line}, a start {@link Point}, and a stop point + * and returns a subsection of the line in-between those points. + * The start & stop points don't need to fall exactly on the line. + * + * This can be useful for extracting only the part of a route between waypoints. + * + * @name lineSlice + * @category misc + * @param {Feature} point1 starting point + * @param {Feature} point2 stopping point + * @param {Feature|LineString} line line to slice + * @return {Feature} sliced line + * @example + * var line = { + * "type": "Feature", + * "properties": {}, + * "geometry": { + * "type": "LineString", + * "coordinates": [ + * [-77.031669, 38.878605], + * [-77.029609, 38.881946], + * [-77.020339, 38.884084], + * [-77.025661, 38.885821], + * [-77.021884, 38.889563], + * [-77.019824, 38.892368] + * ] + * } + * }; + * var start = { + * "type": "Feature", + * "properties": {}, + * "geometry": { + * "type": "Point", + * "coordinates": [-77.029609, 38.881946] + * } + * }; + * var stop = { + * "type": "Feature", + * "properties": {}, + * "geometry": { + * "type": "Point", + * "coordinates": [-77.021884, 38.889563] + * } + * }; + * + * var sliced = turf.lineSlice(start, stop, line); + * + * //=line + * + * //=sliced + */ + +module.exports = function lineSlice(startPt, stopPt, line) { + var coords; + if (line.type === 'Feature') { + coords = line.geometry.coordinates; + } else if (line.type === 'LineString') { + coords = line.coordinates; + } else { + throw new Error('input must be a LineString Feature or Geometry'); + } + + var startVertex = pointOnLine(startPt, coords); + var stopVertex = pointOnLine(stopPt, coords); + var ends; + if (startVertex.properties.index <= stopVertex.properties.index) { + ends = [startVertex, stopVertex]; + } else { + ends = [stopVertex, startVertex]; + } + var clipLine = linestring([ends[0].geometry.coordinates], {}); + for (var i = ends[0].properties.index + 1; i < ends[1].properties.index + 1; i++) { + clipLine.geometry.coordinates.push(coords[i]); + } + clipLine.geometry.coordinates.push(ends[1].geometry.coordinates); + return clipLine; +}; + +function pointOnLine(pt, coords) { + var units = 'miles'; + var closestPt = point([Infinity, Infinity], { + dist: Infinity + }); + for (var i = 0; i < coords.length - 1; i++) { + var start = point(coords[i]); + var stop = point(coords[i + 1]); + //start + start.properties.dist = distance(pt, start, units); + //stop + stop.properties.dist = distance(pt, stop, units); + //perpendicular + var direction = bearing(start, stop); + var perpendicularPt = destination(pt, 1000, direction + 90, units); // 1000 = gross + var intersect = lineIntersects( + pt.geometry.coordinates[0], + pt.geometry.coordinates[1], + perpendicularPt.geometry.coordinates[0], + perpendicularPt.geometry.coordinates[1], + start.geometry.coordinates[0], + start.geometry.coordinates[1], + stop.geometry.coordinates[0], + stop.geometry.coordinates[1] + ); + if (!intersect) { + perpendicularPt = destination(pt, 1000, direction - 90, units); // 1000 = gross + intersect = lineIntersects( + pt.geometry.coordinates[0], + pt.geometry.coordinates[1], + perpendicularPt.geometry.coordinates[0], + perpendicularPt.geometry.coordinates[1], + start.geometry.coordinates[0], + start.geometry.coordinates[1], + stop.geometry.coordinates[0], + stop.geometry.coordinates[1] + ); + } + perpendicularPt.properties.dist = Infinity; + var intersectPt; + if (intersect) { + intersectPt = point(intersect); + intersectPt.properties.dist = distance(pt, intersectPt, units); + } + + if (start.properties.dist < closestPt.properties.dist) { + closestPt = start; + closestPt.properties.index = i; + } + if (stop.properties.dist < closestPt.properties.dist) { + closestPt = stop; + closestPt.properties.index = i; + } + if (intersectPt && intersectPt.properties.dist < closestPt.properties.dist) { + closestPt = intersectPt; + closestPt.properties.index = i; + } + } + + return closestPt; +} + +// modified from http://jsfiddle.net/justin_c_rounds/Gd2S2/light/ +function lineIntersects(line1StartX, line1StartY, line1EndX, line1EndY, line2StartX, line2StartY, line2EndX, line2EndY) { + // if the lines intersect, the result contains the x and y of the intersection (treating the lines as infinite) and booleans for whether line segment 1 or line segment 2 contain the point + var denominator, a, b, numerator1, numerator2, + result = { + x: null, + y: null, + onLine1: false, + onLine2: false + }; + denominator = ((line2EndY - line2StartY) * (line1EndX - line1StartX)) - ((line2EndX - line2StartX) * (line1EndY - line1StartY)); + if (denominator === 0) { + if (result.x !== null && result.y !== null) { + return result; + } else { + return false; + } + } + a = line1StartY - line2StartY; + b = line1StartX - line2StartX; + numerator1 = ((line2EndX - line2StartX) * a) - ((line2EndY - line2StartY) * b); + numerator2 = ((line1EndX - line1StartX) * a) - ((line1EndY - line1StartY) * b); + a = numerator1 / denominator; + b = numerator2 / denominator; + + // if we cast these lines infinitely in both directions, they intersect here: + result.x = line1StartX + (a * (line1EndX - line1StartX)); + result.y = line1StartY + (a * (line1EndY - line1StartY)); + + // if line1 is a segment and line2 is infinite, they intersect if: + if (a > 0 && a < 1) { + result.onLine1 = true; + } + // if line2 is a segment and line1 is infinite, they intersect if: + if (b > 0 && b < 1) { + result.onLine2 = true; + } + // if line1 and line2 are segments, they intersect if both of the above are true + if (result.onLine1 && result.onLine2) { + return [result.x, result.y]; + } else { + return false; + } +} diff --git a/packages/turf-line-slice/package.json b/packages/turf-line-slice/package.json new file mode 100644 index 0000000000..8531d4a62a --- /dev/null +++ b/packages/turf-line-slice/package.json @@ -0,0 +1,39 @@ +{ + "name": "turf-line-slice", + "version": "3.0.5", + "description": "", + "main": "index.js", + "scripts": { + "test": "node test.js" + }, + "repository": { + "type": "git", + "url": "https://github.com/Turfjs/turf-line-slice.git" + }, + "keywords": [ + "turf", + "linestring", + "geojson", + "linear", + "reference", + "line", + "distance" + ], + "author": "morganherlocker", + "license": "MIT", + "bugs": { + "url": "https://github.com/Turfjs/turf-line-slice/issues" + }, + "homepage": "https://github.com/Turfjs/turf-line-slice", + "devDependencies": { + "benchmark": "^1.0.0", + "tape": "^3.5.0", + "turf-helpers": "^3.0.5" + }, + "dependencies": { + "turf-bearing": "^3.0.1", + "turf-destination": "^3.0.5", + "turf-distance": "^3.0.5", + "turf-helpers": "^3.0.5" + } +} diff --git a/packages/turf-line-slice/test.js b/packages/turf-line-slice/test.js new file mode 100644 index 0000000000..da19a7a731 --- /dev/null +++ b/packages/turf-line-slice/test.js @@ -0,0 +1,92 @@ +var test = require('tape'); +var fs = require('fs'); +var lineSlice = require('./'); +var point = require('turf-helpers').point; +var featurecollection = require('turf-helpers').featureCollection; +var linestring = require('turf-helpers').lineString; + +var route1 = JSON.parse(fs.readFileSync(__dirname + '/test/in/route1.geojson')); +var route2 = JSON.parse(fs.readFileSync(__dirname + '/test/in/route2.geojson')); +var line1 = JSON.parse(fs.readFileSync(__dirname + '/test/in/line1.geojson')); + +test('turf-line-slice -- line1', function (t) { + var start = point([-97.79617309570312,22.254624939561698]); + var stop = point([-97.72750854492188,22.057641623615734]); + + var sliced = lineSlice(start, stop, line1); + sliced.properties['stroke'] = '#f0f'; + sliced.properties['stroke-width'] = 6; + + fs.writeFileSync(__dirname+ '/test/out/line1_out.geojson', + JSON.stringify(featurecollection([ + line1, start, stop, sliced + ]), null, 2)); + + t.end(); +}); + +test('turf-line-slice -- raw geometry', function (t) { + var start = point([-97.79617309570312,22.254624939561698]); + var stop = point([-97.72750854492188,22.057641623615734]); + + var sliced = lineSlice(start, stop, line1.geometry); + sliced.properties['stroke'] = '#f0f'; + sliced.properties['stroke-width'] = 6; + + fs.writeFileSync(__dirname+ '/test/out/line1_out.geojson', + JSON.stringify(featurecollection([ + line1, start, stop, sliced + ]), null, 2)); + + t.end(); +}); + +test('turf-line-slice -- line2', function (t) { + var start = point([0,0.1]); + var stop = point([.9,.8]); + var line2 = linestring([[0,0], [1,1]]) + + var sliced = lineSlice(start, stop, line2); + sliced.properties['stroke'] = '#f0f'; + sliced.properties['stroke-width'] = 6; + + fs.writeFileSync(__dirname+ '/test/out/line2_out.geojson', + JSON.stringify(featurecollection([ + line2, start, stop, sliced + ]), null, 2)); + + t.end(); +}); + + +test('turf-line-slice -- route1', function (t) { + var start = point([-79.0850830078125,37.60117623656667]); + var stop = point([-77.7667236328125,38.65119833229951]); + + var sliced = lineSlice(start, stop, route1); + sliced.properties['stroke'] = '#f0f'; + sliced.properties['stroke-width'] = 6; + + fs.writeFileSync(__dirname+ '/test/out/route1_out.geojson', + JSON.stringify(featurecollection([ + route1, start, stop, sliced + ]), null, 2)); + + t.end(); +}); + +test('turf-line-slice -- route2', function (t) { + var start = point([-112.60660171508789,45.96021963947196]); + var stop = point([-111.97265625,48.84302835299516]); + + var sliced = lineSlice(start, stop, route2); + sliced.properties['stroke'] = '#f0f'; + sliced.properties['stroke-width'] = 6; + + fs.writeFileSync(__dirname+ '/test/out/route2_out.geojson', + JSON.stringify(featurecollection([ + route2, start, stop, sliced + ]), null, 2)); + + t.end(); +}); diff --git a/packages/turf-line-slice/test/in/line1.geojson b/packages/turf-line-slice/test/in/line1.geojson new file mode 100644 index 0000000000..1626c3ffa2 --- /dev/null +++ b/packages/turf-line-slice/test/in/line1.geojson @@ -0,0 +1,21 @@ +{ + "type": "Feature", + "properties": {}, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -97.88131713867188, + 22.466878364528448 + ], + [ + -97.82089233398438, + 22.175960091218524 + ], + [ + -97.6190185546875, + 21.8704201873689 + ] + ] + } +} \ No newline at end of file diff --git a/packages/turf-line-slice/test/in/route1.geojson b/packages/turf-line-slice/test/in/route1.geojson new file mode 100644 index 0000000000..8c19389b35 --- /dev/null +++ b/packages/turf-line-slice/test/in/route1.geojson @@ -0,0 +1,2 @@ + +{ "type": "Feature", "properties": { "name": null, "cmt": null, "desc": null, "src": null, "link1_href": null, "link1_text": null, "link1_type": null, "link2_href": null, "link2_text": null, "link2_type": null, "number": null, "type": null }, "geometry": { "type": "LineString", "coordinates": [ [ -79.254923, 36.98394 ], [ -79.254923, 36.983939 ], [ -79.255326, 36.9838 ], [ -79.255401, 36.983774 ], [ -79.25576, 36.983664 ], [ -79.256795, 36.984137 ], [ -79.257537, 36.984478 ], [ -79.258539, 36.984925 ], [ -79.259498, 36.985353 ], [ -79.260286, 36.985712 ], [ -79.261405, 36.986222 ], [ -79.262933, 36.986928 ], [ -79.263237, 36.987071 ], [ -79.263755, 36.987296 ], [ -79.264086, 36.987423 ], [ -79.264167, 36.987446 ], [ -79.264338, 36.987486 ], [ -79.264414, 36.987501 ], [ -79.264618, 36.987531 ], [ -79.2648, 36.987542 ], [ -79.264982, 36.987537 ], [ -79.265163, 36.987517 ], [ -79.26703, 36.987355 ], [ -79.267952, 36.98726 ], [ -79.268404, 36.987226 ], [ -79.268771, 36.987197 ], [ -79.26955, 36.987117 ], [ -79.271398, 36.986946 ], [ -79.271488, 36.986941 ], [ -79.271698, 36.986925 ], [ -79.271936, 36.986898 ], [ -79.272231, 36.986852 ], [ -79.272474, 36.986785 ], [ -79.272711, 36.986705 ], [ -79.272895, 36.986632 ], [ -79.273059, 36.986552 ], [ -79.273646, 36.986245 ], [ -79.274224, 36.985925 ], [ -79.274887, 36.985592 ], [ -79.275308, 36.985365 ], [ -79.275672, 36.98517 ], [ -79.276249, 36.984876 ], [ -79.277101, 36.984433 ], [ -79.277425, 36.984259 ], [ -79.277918, 36.983982 ], [ -79.27799, 36.98395 ], [ -79.278179, 36.98385 ], [ -79.278261, 36.9838 ], [ -79.278335, 36.983745 ], [ -79.278421, 36.983666 ], [ -79.27844, 36.983647 ], [ -79.278502, 36.983577 ], [ -79.278548, 36.983511 ], [ -79.278614, 36.983381 ], [ -79.278654, 36.983273 ], [ -79.278711, 36.983011 ], [ -79.278763, 36.98269 ], [ -79.278806, 36.982485 ], [ -79.278866, 36.982282 ], [ -79.278952, 36.982101 ], [ -79.279023, 36.981984 ], [ -79.280178, 36.980418 ], [ -79.280259, 36.980319 ], [ -79.280355, 36.980229 ], [ -79.280419, 36.98018 ], [ -79.280578, 36.980082 ], [ -79.280666, 36.980038 ], [ -79.280783, 36.979994 ], [ -79.280908, 36.979963 ], [ -79.281301, 36.979913 ], [ -79.281646, 36.979874 ], [ -79.282145, 36.979835 ], [ -79.282797, 36.97977 ], [ -79.283144, 36.979743 ], [ -79.283618, 36.97972 ], [ -79.28399, 36.979706 ], [ -79.284447, 36.979695 ], [ -79.284904, 36.979697 ], [ -79.286913, 36.979638 ], [ -79.287201, 36.979628 ], [ -79.287954, 36.979612 ], [ -79.288037, 36.979611 ], [ -79.288397, 36.97962 ], [ -79.288697, 36.979643 ], [ -79.289908, 36.979722 ], [ -79.289994, 36.979724 ], [ -79.290136, 36.979716 ], [ -79.290248, 36.979699 ], [ -79.290503, 36.979632 ], [ -79.291043, 36.979454 ], [ -79.291563, 36.979269 ], [ -79.292467, 36.97896 ], [ -79.292759, 36.978877 ], [ -79.292963, 36.978832 ], [ -79.293286, 36.978778 ], [ -79.293549, 36.978746 ], [ -79.293649, 36.978738 ], [ -79.293755, 36.978729 ], [ -79.293858, 36.978731 ], [ -79.294028, 36.978747 ], [ -79.294162, 36.978771 ], [ -79.294243, 36.9788 ], [ -79.294439, 36.978883 ], [ -79.294626, 36.978979 ], [ -79.294782, 36.979072 ], [ -79.294921, 36.979174 ], [ -79.295023, 36.979263 ], [ -79.295281, 36.979534 ], [ -79.295458, 36.979739 ], [ -79.296347, 36.980843 ], [ -79.296549, 36.981064 ], [ -79.296594, 36.981095 ], [ -79.296695, 36.981144 ], [ -79.296788, 36.98117 ], [ -79.296916, 36.981184 ], [ -79.297032, 36.981182 ], [ -79.297147, 36.981165 ], [ -79.297933, 36.980962 ], [ -79.298145, 36.980893 ], [ -79.298401, 36.98079 ], [ -79.298602, 36.980696 ], [ -79.298795, 36.980593 ], [ -79.299134, 36.980402 ], [ -79.299407, 36.980244 ], [ -79.299963, 36.9799 ], [ -79.301767, 36.97881 ], [ -79.301976, 36.978691 ], [ -79.3021, 36.978619 ], [ -79.302508, 36.978369 ], [ -79.302614, 36.978309 ], [ -79.3028, 36.97822 ], [ -79.302995, 36.978145 ], [ -79.303113, 36.978114 ], [ -79.303153, 36.978249 ], [ -79.303232, 36.978565 ], [ -79.303319, 36.978989 ], [ -79.303326, 36.979184 ], [ -79.303313, 36.979346 ], [ -79.30324, 36.979748 ], [ -79.303136, 36.980362 ], [ -79.303088, 36.980609 ], [ -79.302996, 36.981143 ], [ -79.302982, 36.981226 ], [ -79.302977, 36.981321 ], [ -79.302986, 36.98144 ], [ -79.303013, 36.981556 ], [ -79.303057, 36.98167 ], [ -79.303191, 36.9819 ], [ -79.303336, 36.982126 ], [ -79.303702, 36.982652 ], [ -79.304322, 36.983486 ], [ -79.304588, 36.98382 ], [ -79.304756, 36.984051 ], [ -79.304903, 36.984229 ], [ -79.305059, 36.984403 ], [ -79.305145, 36.984487 ], [ -79.305336, 36.984648 ], [ -79.305612, 36.98486 ], [ -79.30569, 36.984915 ], [ -79.305765, 36.984974 ], [ -79.305944, 36.98513 ], [ -79.306108, 36.985295 ], [ -79.306259, 36.985469 ], [ -79.306333, 36.98557 ], [ -79.306437, 36.985737 ], [ -79.306524, 36.985911 ], [ -79.306595, 36.98609 ], [ -79.306677, 36.986365 ], [ -79.306734, 36.98662 ], [ -79.306773, 36.986878 ], [ -79.306759, 36.986998 ], [ -79.306724, 36.987146 ], [ -79.306621, 36.987426 ], [ -79.306591, 36.987545 ], [ -79.306555, 36.987745 ], [ -79.306536, 36.987984 ], [ -79.30653, 36.988172 ], [ -79.306539, 36.988321 ], [ -79.30655, 36.988398 ], [ -79.306566, 36.988507 ], [ -79.306673, 36.988967 ], [ -79.306789, 36.989416 ], [ -79.30681, 36.989518 ], [ -79.306831, 36.98969 ], [ -79.306833, 36.989828 ], [ -79.306822, 36.989888 ], [ -79.306771, 36.990067 ], [ -79.306696, 36.99024 ], [ -79.306569, 36.990463 ], [ -79.306374, 36.99078 ], [ -79.30633, 36.990863 ], [ -79.306292, 36.990972 ], [ -79.306271, 36.991084 ], [ -79.306268, 36.991229 ], [ -79.306282, 36.991421 ], [ -79.306323, 36.991648 ], [ -79.30657, 36.992516 ], [ -79.306601, 36.992703 ], [ -79.306614, 36.992892 ], [ -79.306598, 36.993111 ], [ -79.306569, 36.993287 ], [ -79.306553, 36.993345 ], [ -79.306526, 36.993432 ], [ -79.306466, 36.993574 ], [ -79.306313, 36.993848 ], [ -79.305971, 36.994382 ], [ -79.305826, 36.994647 ], [ -79.305382, 36.995598 ], [ -79.305197, 36.995963 ], [ -79.305065, 36.996284 ], [ -79.304983, 36.996521 ], [ -79.304954, 36.99668 ], [ -79.30495, 36.996815 ], [ -79.304959, 36.996932 ], [ -79.304988, 36.997077 ], [ -79.305024, 36.99719 ], [ -79.305111, 36.99739 ], [ -79.305197, 36.997567 ], [ -79.30532, 36.997782 ], [ -79.305429, 36.997949 ], [ -79.305577, 36.998153 ], [ -79.306017, 36.99873 ], [ -79.306204, 36.998965 ], [ -79.306407, 36.999192 ], [ -79.306624, 36.999411 ], [ -79.30672, 36.999489 ], [ -79.306828, 36.999557 ], [ -79.306922, 36.999602 ], [ -79.307072, 36.999656 ], [ -79.307354, 36.999723 ], [ -79.307628, 36.999778 ], [ -79.308892, 36.999988 ], [ -79.309029, 37.00002 ], [ -79.309135, 37.000056 ], [ -79.30926, 37.000112 ], [ -79.309374, 37.00018 ], [ -79.309478, 37.000259 ], [ -79.30959, 37.000372 ], [ -79.309743, 37.000552 ], [ -79.31029, 37.001344 ], [ -79.31037, 37.001451 ], [ -79.310486, 37.001568 ], [ -79.310598, 37.001654 ], [ -79.310697, 37.001714 ], [ -79.310838, 37.001785 ], [ -79.310991, 37.001844 ], [ -79.31115, 37.001891 ], [ -79.311632, 37.001979 ], [ -79.312359, 37.002135 ], [ -79.312455, 37.002156 ], [ -79.312915, 37.002271 ], [ -79.313026, 37.002296 ], [ -79.313639, 37.002422 ], [ -79.314311, 37.002515 ], [ -79.314769, 37.002553 ], [ -79.315227, 37.002582 ], [ -79.315352, 37.002604 ], [ -79.315472, 37.002641 ], [ -79.315543, 37.002685 ], [ -79.315621, 37.00275 ], [ -79.315685, 37.002824 ], [ -79.315725, 37.002889 ], [ -79.315888, 37.002832 ], [ -79.316221, 37.002733 ], [ -79.316448, 37.002678 ], [ -79.31752, 37.002455 ], [ -79.318524, 37.002275 ], [ -79.319059, 37.002211 ], [ -79.319268, 37.002199 ], [ -79.319435, 37.0022 ], [ -79.319651, 37.002214 ], [ -79.319786, 37.002226 ], [ -79.320258, 37.002279 ], [ -79.320522, 37.002298 ], [ -79.320786, 37.002302 ], [ -79.320953, 37.002288 ], [ -79.321116, 37.002258 ], [ -79.321274, 37.002213 ], [ -79.321381, 37.00217 ], [ -79.321762, 37.002001 ], [ -79.322382, 37.001698 ], [ -79.322844, 37.001466 ], [ -79.323023, 37.001376 ], [ -79.323292, 37.001249 ], [ -79.32357, 37.001134 ], [ -79.323943, 37.001003 ], [ -79.324098, 37.000958 ], [ -79.324162, 37.000945 ], [ -79.32513, 37.000843 ], [ -79.325325, 37.000814 ], [ -79.325517, 37.000777 ], [ -79.325753, 37.000719 ], [ -79.327186, 37.000266 ], [ -79.327482, 37.000173 ], [ -79.327802, 37.00008 ], [ -79.328598, 36.999838 ], [ -79.329158, 36.999654 ], [ -79.329204, 36.999715 ], [ -79.329343, 36.999894 ], [ -79.32942, 36.999975 ], [ -79.329588, 37.000125 ], [ -79.329742, 37.000239 ], [ -79.329777, 37.000256 ], [ -79.329869, 37.000291 ], [ -79.329988, 37.000315 ], [ -79.330091, 37.000318 ], [ -79.33027, 37.000316 ], [ -79.330449, 37.000298 ], [ -79.331035, 37.000223 ], [ -79.331427, 37.000184 ], [ -79.331855, 37.000129 ], [ -79.333009, 37.000023 ], [ -79.334568, 36.999869 ], [ -79.335002, 36.999826 ], [ -79.33552, 36.999806 ], [ -79.33606, 36.999814 ], [ -79.336208, 36.999833 ], [ -79.336352, 36.999866 ], [ -79.33649, 36.999913 ], [ -79.336644, 36.999986 ], [ -79.336856, 37.000123 ], [ -79.336962, 37.000203 ], [ -79.337096, 37.000316 ], [ -79.337325, 37.000539 ], [ -79.337519, 37.000761 ], [ -79.338522, 37.001965 ], [ -79.339126, 37.002688 ], [ -79.339574, 37.003185 ], [ -79.340385, 37.004106 ], [ -79.340479, 37.004212 ], [ -79.340603, 37.004341 ], [ -79.340773, 37.00449 ], [ -79.340929, 37.004602 ], [ -79.341131, 37.004723 ], [ -79.341632, 37.004968 ], [ -79.341875, 37.005087 ], [ -79.342172, 37.005233 ], [ -79.342594, 37.00542 ], [ -79.343189, 37.005708 ], [ -79.343817, 37.006011 ], [ -79.344455, 37.006335 ], [ -79.344712, 37.00647 ], [ -79.345697, 37.006916 ], [ -79.345837, 37.006985 ], [ -79.346006, 37.00708 ], [ -79.346221, 37.007218 ], [ -79.347403, 37.008016 ], [ -79.347493, 37.008071 ], [ -79.347634, 37.008171 ], [ -79.347763, 37.008281 ], [ -79.347971, 37.008497 ], [ -79.348051, 37.008623 ], [ -79.348135, 37.008786 ], [ -79.348201, 37.008954 ], [ -79.34825, 37.009126 ], [ -79.348316, 37.00954 ], [ -79.348397, 37.010196 ], [ -79.34854, 37.01111 ], [ -79.348616, 37.011496 ], [ -79.348778, 37.012266 ], [ -79.349159, 37.013946 ], [ -79.349315, 37.014628 ], [ -79.349636, 37.015919 ], [ -79.349688, 37.016183 ], [ -79.349795, 37.016628 ], [ -79.349854, 37.016827 ], [ -79.349915, 37.01701 ], [ -79.350064, 37.017337 ], [ -79.350135, 37.017464 ], [ -79.350159, 37.017499 ], [ -79.350325, 37.017735 ], [ -79.35042, 37.017865 ], [ -79.350584, 37.018129 ], [ -79.35072, 37.01842 ], [ -79.350808, 37.018683 ], [ -79.35089, 37.018981 ], [ -79.350968, 37.019317 ], [ -79.35119, 37.020219 ], [ -79.351251, 37.020445 ], [ -79.351346, 37.020719 ], [ -79.351414, 37.020888 ], [ -79.351505, 37.021079 ], [ -79.351682, 37.021459 ], [ -79.351825, 37.02176 ], [ -79.352185, 37.022473 ], [ -79.352628, 37.023433 ], [ -79.352751, 37.023743 ], [ -79.35282, 37.023863 ], [ -79.352895, 37.023965 ], [ -79.353012, 37.024078 ], [ -79.353078, 37.024127 ], [ -79.353186, 37.024186 ], [ -79.353325, 37.024244 ], [ -79.353398, 37.024265 ], [ -79.353421, 37.02427 ], [ -79.353621, 37.024315 ], [ -79.353675, 37.024321 ], [ -79.35392, 37.024336 ], [ -79.354286, 37.024379 ], [ -79.354423, 37.024385 ], [ -79.354844, 37.024375 ], [ -79.355058, 37.024359 ], [ -79.355214, 37.024339 ], [ -79.355354, 37.024308 ], [ -79.355614, 37.024238 ], [ -79.355718, 37.024209 ], [ -79.355965, 37.024125 ], [ -79.356147, 37.024057 ], [ -79.356485, 37.02394 ], [ -79.356546, 37.023919 ], [ -79.356797, 37.023824 ], [ -79.356964, 37.023769 ], [ -79.357077, 37.023757 ], [ -79.357196, 37.023767 ], [ -79.357262, 37.023786 ], [ -79.357309, 37.023811 ], [ -79.35735, 37.023849 ], [ -79.357388, 37.023905 ], [ -79.357541, 37.024317 ], [ -79.357583, 37.024391 ], [ -79.357634, 37.024438 ], [ -79.357685, 37.024467 ], [ -79.357747, 37.024487 ], [ -79.35783, 37.024497 ], [ -79.357899, 37.024495 ], [ -79.35801, 37.02448 ], [ -79.358102, 37.02446 ], [ -79.358409, 37.025941 ], [ -79.358471, 37.026316 ], [ -79.358502, 37.026637 ], [ -79.358517, 37.026844 ], [ -79.358519, 37.027185 ], [ -79.358497, 37.027679 ], [ -79.358457, 37.028033 ], [ -79.358398, 37.028378 ], [ -79.358301, 37.028779 ], [ -79.358082, 37.029574 ], [ -79.357957, 37.030026 ], [ -79.357813, 37.030609 ], [ -79.357745, 37.03095 ], [ -79.357685, 37.031344 ], [ -79.357656, 37.031612 ], [ -79.357621, 37.032199 ], [ -79.357619, 37.032445 ], [ -79.357631, 37.032766 ], [ -79.357637, 37.032893 ], [ -79.357666, 37.033258 ], [ -79.357711, 37.033639 ], [ -79.357789, 37.034066 ], [ -79.357875, 37.034441 ], [ -79.357922, 37.034622 ], [ -79.358521, 37.036938 ], [ -79.358613, 37.037315 ], [ -79.358687, 37.037658 ], [ -79.358786, 37.038217 ], [ -79.358856, 37.038791 ], [ -79.358911, 37.039356 ], [ -79.358965, 37.0401 ], [ -79.359051, 37.041306 ], [ -79.359073, 37.041825 ], [ -79.359059, 37.042471 ], [ -79.359012, 37.042954 ], [ -79.35899, 37.04313 ], [ -79.358922, 37.043537 ], [ -79.358829, 37.043973 ], [ -79.358773, 37.044171 ], [ -79.358704, 37.044417 ], [ -79.358541, 37.044914 ], [ -79.358352, 37.045429 ], [ -79.357856, 37.04678 ], [ -79.357794, 37.046961 ], [ -79.357564, 37.047556 ], [ -79.357409, 37.047915 ], [ -79.357338, 37.048062 ], [ -79.357278, 37.048184 ], [ -79.356942, 37.048801 ], [ -79.356841, 37.048967 ], [ -79.356589, 37.049349 ], [ -79.356363, 37.049677 ], [ -79.354212, 37.052783 ], [ -79.353972, 37.053148 ], [ -79.353865, 37.053295 ], [ -79.353452, 37.053889 ], [ -79.352197, 37.055711 ], [ -79.352126, 37.055808 ], [ -79.351983, 37.056023 ], [ -79.351596, 37.056539 ], [ -79.351413, 37.056761 ], [ -79.35122, 37.056979 ], [ -79.351018, 37.057191 ], [ -79.35075, 37.057445 ], [ -79.350603, 37.057584 ], [ -79.35029, 37.057856 ], [ -79.348032, 37.059645 ], [ -79.346954, 37.060488 ], [ -79.345892, 37.06133 ], [ -79.345295, 37.061797 ], [ -79.344778, 37.062208 ], [ -79.344716, 37.062258 ], [ -79.343942, 37.062866 ], [ -79.343259, 37.06342 ], [ -79.342925, 37.063722 ], [ -79.342732, 37.063907 ], [ -79.342302, 37.064351 ], [ -79.342055, 37.06463 ], [ -79.341843, 37.064885 ], [ -79.341424, 37.065452 ], [ -79.341048, 37.066036 ], [ -79.340718, 37.066647 ], [ -79.340066, 37.068047 ], [ -79.338982, 37.070343 ], [ -79.336951, 37.074656 ], [ -79.336672, 37.075265 ], [ -79.335622, 37.077497 ], [ -79.335265, 37.078252 ], [ -79.33489, 37.079062 ], [ -79.334833, 37.079182 ], [ -79.334222, 37.080477 ], [ -79.333262, 37.082521 ], [ -79.333001, 37.083079 ], [ -79.332628, 37.084028 ], [ -79.332548, 37.084278 ], [ -79.332388, 37.08478 ], [ -79.332201, 37.085539 ], [ -79.33204, 37.086421 ], [ -79.33196, 37.086978 ], [ -79.331907, 37.087757 ], [ -79.331871, 37.088536 ], [ -79.33185, 37.089317 ], [ -79.331805, 37.090324 ], [ -79.331772, 37.091338 ], [ -79.331768, 37.092235 ], [ -79.33183, 37.093576 ], [ -79.331943, 37.095022 ], [ -79.332045, 37.096198 ], [ -79.332341, 37.099713 ], [ -79.332397, 37.100421 ], [ -79.332436, 37.101086 ], [ -79.332443, 37.1013 ], [ -79.332438, 37.10199 ], [ -79.332418, 37.102426 ], [ -79.332391, 37.102795 ], [ -79.332337, 37.103324 ], [ -79.332244, 37.103966 ], [ -79.332205, 37.104185 ], [ -79.332175, 37.104355 ], [ -79.332056, 37.104907 ], [ -79.332041, 37.104978 ], [ -79.331903, 37.105494 ], [ -79.331733, 37.106053 ], [ -79.331559, 37.106562 ], [ -79.33131, 37.107195 ], [ -79.331178, 37.107501 ], [ -79.330959, 37.107973 ], [ -79.330748, 37.108399 ], [ -79.330489, 37.108876 ], [ -79.330365, 37.109093 ], [ -79.330155, 37.10944 ], [ -79.329757, 37.110058 ], [ -79.328813, 37.111446 ], [ -79.328701, 37.111611 ], [ -79.327118, 37.113932 ], [ -79.327107, 37.113947 ], [ -79.326498, 37.114802 ], [ -79.326178, 37.115223 ], [ -79.326128, 37.115289 ], [ -79.32568, 37.115855 ], [ -79.325061, 37.116595 ], [ -79.324816, 37.116878 ], [ -79.324497, 37.117235 ], [ -79.324161, 37.117601 ], [ -79.323816, 37.117964 ], [ -79.323589, 37.118194 ], [ -79.323104, 37.118678 ], [ -79.322015, 37.119732 ], [ -79.320826, 37.12089 ], [ -79.320279, 37.121415 ], [ -79.31993, 37.121729 ], [ -79.319276, 37.122271 ], [ -79.318828, 37.122609 ], [ -79.318377, 37.122925 ], [ -79.317535, 37.123462 ], [ -79.316595, 37.123987 ], [ -79.315586, 37.124473 ], [ -79.314958, 37.124742 ], [ -79.311931, 37.125973 ], [ -79.303986, 37.129196 ], [ -79.303177, 37.129555 ], [ -79.302367, 37.129915 ], [ -79.30095, 37.130617 ], [ -79.298871, 37.131691 ], [ -79.298008, 37.132146 ], [ -79.293574, 37.134491 ], [ -79.293108, 37.134749 ], [ -79.292712, 37.134937 ], [ -79.292278, 37.135125 ], [ -79.291836, 37.1353 ], [ -79.291351, 37.135473 ], [ -79.290905, 37.135615 ], [ -79.290365, 37.135772 ], [ -79.289641, 37.135941 ], [ -79.289078, 37.136055 ], [ -79.288222, 37.136184 ], [ -79.287781, 37.136228 ], [ -79.287205, 37.136269 ], [ -79.281895, 37.136526 ], [ -79.280512, 37.136607 ], [ -79.279731, 37.13667 ], [ -79.278968, 37.136747 ], [ -79.277922, 37.136872 ], [ -79.276244, 37.13712 ], [ -79.273494, 37.137624 ], [ -79.272005, 37.137904 ], [ -79.271794, 37.137944 ], [ -79.266159, 37.138985 ], [ -79.265643, 37.139056 ], [ -79.265084, 37.139119 ], [ -79.264404, 37.139177 ], [ -79.263826, 37.139213 ], [ -79.263263, 37.139234 ], [ -79.262666, 37.139241 ], [ -79.262103, 37.139234 ], [ -79.26149, 37.139213 ], [ -79.260895, 37.13918 ], [ -79.260488, 37.139149 ], [ -79.257811, 37.138859 ], [ -79.253283, 37.138354 ], [ -79.251817, 37.138189 ], [ -79.251311, 37.138138 ], [ -79.25082, 37.138104 ], [ -79.250344, 37.138087 ], [ -79.249949, 37.138091 ], [ -79.249141, 37.138125 ], [ -79.248701, 37.138169 ], [ -79.248255, 37.138232 ], [ -79.247815, 37.138303 ], [ -79.247404, 37.138388 ], [ -79.246983, 37.138492 ], [ -79.24619, 37.138741 ], [ -79.246034, 37.138799 ], [ -79.245567, 37.138991 ], [ -79.243639, 37.139795 ], [ -79.242121, 37.140435 ], [ -79.241618, 37.140648 ], [ -79.241125, 37.14089 ], [ -79.240755, 37.141103 ], [ -79.240471, 37.141293 ], [ -79.240237, 37.141475 ], [ -79.240023, 37.141661 ], [ -79.239659, 37.142024 ], [ -79.238717, 37.143115 ], [ -79.238653, 37.143189 ], [ -79.238443, 37.143404 ], [ -79.23822, 37.14361 ], [ -79.237972, 37.143817 ], [ -79.237711, 37.144013 ], [ -79.237424, 37.144206 ], [ -79.237139, 37.144378 ], [ -79.236846, 37.144536 ], [ -79.23672, 37.144599 ], [ -79.235366, 37.145185 ], [ -79.235031, 37.145327 ], [ -79.233118, 37.146139 ], [ -79.232943, 37.146214 ], [ -79.23213, 37.146559 ], [ -79.23159, 37.146789 ], [ -79.231268, 37.146943 ], [ -79.230971, 37.147103 ], [ -79.230723, 37.147248 ], [ -79.230589, 37.147333 ], [ -79.230303, 37.147527 ], [ -79.230067, 37.147704 ], [ -79.229831, 37.147902 ], [ -79.229608, 37.148108 ], [ -79.229398, 37.148324 ], [ -79.229192, 37.148559 ], [ -79.229002, 37.148802 ], [ -79.228823, 37.149065 ], [ -79.228683, 37.149299 ], [ -79.228557, 37.149537 ], [ -79.228436, 37.149807 ], [ -79.228332, 37.15008 ], [ -79.22824, 37.150371 ], [ -79.228165, 37.150679 ], [ -79.228144, 37.150787 ], [ -79.22795, 37.1522 ], [ -79.227939, 37.152282 ], [ -79.227922, 37.152405 ], [ -79.227831, 37.1531 ], [ -79.227768, 37.153577 ], [ -79.22775, 37.153704 ], [ -79.227707, 37.153951 ], [ -79.227614, 37.154338 ], [ -79.227519, 37.154642 ], [ -79.227394, 37.154981 ], [ -79.227259, 37.155289 ], [ -79.227113, 37.155579 ], [ -79.227008, 37.155764 ], [ -79.226979, 37.155814 ], [ -79.226931, 37.155892 ], [ -79.22673, 37.156196 ], [ -79.226531, 37.156466 ], [ -79.226359, 37.156679 ], [ -79.226091, 37.156981 ], [ -79.225836, 37.157239 ], [ -79.225577, 37.157477 ], [ -79.225307, 37.157704 ], [ -79.225033, 37.15791 ], [ -79.224838, 37.158043 ], [ -79.223223, 37.159106 ], [ -79.222625, 37.159494 ], [ -79.222577, 37.159525 ], [ -79.222526, 37.159559 ], [ -79.222269, 37.159725 ], [ -79.221758, 37.160065 ], [ -79.219427, 37.161585 ], [ -79.218294, 37.162324 ], [ -79.218211, 37.162378 ], [ -79.216923, 37.163217 ], [ -79.216426, 37.163539 ], [ -79.215909, 37.16389 ], [ -79.215531, 37.164171 ], [ -79.215221, 37.164425 ], [ -79.214936, 37.164678 ], [ -79.214674, 37.164929 ], [ -79.214292, 37.165324 ], [ -79.214244, 37.165374 ], [ -79.213081, 37.166582 ], [ -79.212642, 37.167038 ], [ -79.212368, 37.167324 ], [ -79.212048, 37.167658 ], [ -79.211768, 37.16795 ], [ -79.211486, 37.168245 ], [ -79.211416, 37.168318 ], [ -79.211008, 37.168744 ], [ -79.210963, 37.168791 ], [ -79.210689, 37.16908 ], [ -79.210304, 37.16953 ], [ -79.2101, 37.169782 ], [ -79.209923, 37.170006 ], [ -79.209526, 37.170538 ], [ -79.209343, 37.170798 ], [ -79.207037, 37.174039 ], [ -79.206764, 37.174435 ], [ -79.206634, 37.174641 ], [ -79.206469, 37.174929 ], [ -79.206273, 37.17532 ], [ -79.20615, 37.175603 ], [ -79.206073, 37.175802 ], [ -79.206026, 37.175929 ], [ -79.205916, 37.176273 ], [ -79.205845, 37.176539 ], [ -79.205757, 37.176917 ], [ -79.205696, 37.177164 ], [ -79.205658, 37.177349 ], [ -79.205603, 37.177589 ], [ -79.205562, 37.177759 ], [ -79.205539, 37.177863 ], [ -79.205487, 37.178091 ], [ -79.205427, 37.178344 ], [ -79.205364, 37.178607 ], [ -79.205297, 37.178889 ], [ -79.205253, 37.179068 ], [ -79.20519, 37.179332 ], [ -79.205122, 37.179618 ], [ -79.205055, 37.179895 ], [ -79.204997, 37.180138 ], [ -79.204614, 37.181773 ], [ -79.204588, 37.181883 ], [ -79.204488, 37.182314 ], [ -79.204319, 37.183043 ], [ -79.204265, 37.183268 ], [ -79.204123, 37.18388 ], [ -79.203924, 37.184747 ], [ -79.203855, 37.185167 ], [ -79.203781, 37.185725 ], [ -79.203767, 37.185869 ], [ -79.203714, 37.186727 ], [ -79.203688, 37.188358 ], [ -79.203665, 37.189574 ], [ -79.203624, 37.192626 ], [ -79.203627, 37.192665 ], [ -79.203588, 37.193792 ], [ -79.203572, 37.194229 ], [ -79.203568, 37.194309 ], [ -79.203559, 37.194539 ], [ -79.203553, 37.194676 ], [ -79.203543, 37.194919 ], [ -79.203531, 37.195199 ], [ -79.203502, 37.195859 ], [ -79.203483, 37.196276 ], [ -79.203468, 37.196579 ], [ -79.203458, 37.196792 ], [ -79.203433, 37.197322 ], [ -79.203422, 37.197563 ], [ -79.20341, 37.197824 ], [ -79.203397, 37.198095 ], [ -79.20339, 37.198254 ], [ -79.203379, 37.19847 ], [ -79.203358, 37.198936 ], [ -79.20334, 37.19935 ], [ -79.203304, 37.200071 ], [ -79.203262, 37.200536 ], [ -79.203244, 37.200686 ], [ -79.203162, 37.201241 ], [ -79.203073, 37.201722 ], [ -79.20306, 37.201793 ], [ -79.203026, 37.201977 ], [ -79.202836, 37.203003 ], [ -79.202752, 37.203459 ], [ -79.202563, 37.204478 ], [ -79.202452, 37.205079 ], [ -79.202395, 37.205385 ], [ -79.201856, 37.208299 ], [ -79.201805, 37.208574 ], [ -79.201702, 37.209126 ], [ -79.201673, 37.209268 ], [ -79.201619, 37.209479 ], [ -79.201573, 37.209638 ], [ -79.201505, 37.209836 ], [ -79.201407, 37.210085 ], [ -79.201284, 37.210341 ], [ -79.201114, 37.21064 ], [ -79.201026, 37.210776 ], [ -79.200882, 37.21098 ], [ -79.200649, 37.211282 ], [ -79.200396, 37.211554 ], [ -79.199727, 37.212167 ], [ -79.199637, 37.212249 ], [ -79.199553, 37.212325 ], [ -79.199391, 37.212473 ], [ -79.199159, 37.212684 ], [ -79.19865, 37.213144 ], [ -79.197756, 37.213946 ], [ -79.197588, 37.214097 ], [ -79.197252, 37.214415 ], [ -79.196922, 37.214731 ], [ -79.196487, 37.215166 ], [ -79.196055, 37.215596 ], [ -79.195714, 37.216042 ], [ -79.195395, 37.216449 ], [ -79.194175, 37.218086 ], [ -79.193942, 37.2184 ], [ -79.193714, 37.218705 ], [ -79.193339, 37.219208 ], [ -79.193103, 37.219523 ], [ -79.192804, 37.219924 ], [ -79.192465, 37.220384 ], [ -79.191972, 37.221056 ], [ -79.191665, 37.221486 ], [ -79.191271, 37.222039 ], [ -79.191066, 37.222328 ], [ -79.190837, 37.222648 ], [ -79.190786, 37.222724 ], [ -79.190591, 37.223024 ], [ -79.190561, 37.223069 ], [ -79.190114, 37.223762 ], [ -79.189976, 37.223994 ], [ -79.189786, 37.224314 ], [ -79.189538, 37.224731 ], [ -79.189441, 37.224896 ], [ -79.189231, 37.225287 ], [ -79.188873, 37.225949 ], [ -79.188647, 37.226369 ], [ -79.188578, 37.226497 ], [ -79.188422, 37.22682 ], [ -79.187747, 37.228226 ], [ -79.187638, 37.228454 ], [ -79.186752, 37.230317 ], [ -79.186236, 37.23142 ], [ -79.186183, 37.231531 ], [ -79.186143, 37.231633 ], [ -79.186012, 37.231905 ], [ -79.185971, 37.232009 ], [ -79.185901, 37.232204 ], [ -79.185821, 37.232467 ], [ -79.185783, 37.232629 ], [ -79.185746, 37.232787 ], [ -79.185712, 37.232989 ], [ -79.185564, 37.234115 ], [ -79.18554, 37.234342 ], [ -79.185535, 37.234388 ], [ -79.185527, 37.234464 ], [ -79.185489, 37.234824 ], [ -79.185459, 37.235133 ], [ -79.185442, 37.235447 ], [ -79.185444, 37.235802 ], [ -79.185467, 37.236157 ], [ -79.185494, 37.236478 ], [ -79.185509, 37.236629 ], [ -79.185568, 37.237037 ], [ -79.185613, 37.237268 ], [ -79.185642, 37.237403 ], [ -79.185719, 37.237706 ], [ -79.185791, 37.237965 ], [ -79.185811, 37.238037 ], [ -79.185899, 37.238345 ], [ -79.185952, 37.238527 ], [ -79.18597, 37.23859 ], [ -79.186042, 37.238834 ], [ -79.186525, 37.240494 ], [ -79.186638, 37.240882 ], [ -79.186786, 37.241392 ], [ -79.186995, 37.242108 ], [ -79.187061, 37.242336 ], [ -79.187075, 37.242384 ], [ -79.187298, 37.243149 ], [ -79.187378, 37.243422 ], [ -79.187527, 37.243936 ], [ -79.187774, 37.244774 ], [ -79.187853, 37.245008 ], [ -79.187949, 37.245331 ], [ -79.187975, 37.245426 ], [ -79.18809, 37.245933 ], [ -79.188158, 37.246339 ], [ -79.188193, 37.246639 ], [ -79.188214, 37.246935 ], [ -79.188219, 37.247189 ], [ -79.188219, 37.247284 ], [ -79.188204, 37.247624 ], [ -79.188173, 37.24795 ], [ -79.188121, 37.248287 ], [ -79.188078, 37.248502 ], [ -79.188012, 37.248777 ], [ -79.187964, 37.248948 ], [ -79.18752, 37.250322 ], [ -79.187502, 37.250377 ], [ -79.187461, 37.250489 ], [ -79.187101, 37.251604 ], [ -79.186977, 37.251986 ], [ -79.186803, 37.252487 ], [ -79.186647, 37.252862 ], [ -79.186473, 37.253233 ], [ -79.1864, 37.253375 ], [ -79.186369, 37.253435 ], [ -79.186196, 37.253727 ], [ -79.186096, 37.253883 ], [ -79.185846, 37.254253 ], [ -79.185619, 37.254587 ], [ -79.184816, 37.255765 ], [ -79.184332, 37.256471 ], [ -79.184251, 37.256583 ], [ -79.183919, 37.257073 ], [ -79.183282, 37.258009 ], [ -79.183273, 37.258023 ], [ -79.182658, 37.258928 ], [ -79.182428, 37.259266 ], [ -79.182236, 37.259548 ], [ -79.182189, 37.259617 ], [ -79.181677, 37.260371 ], [ -79.180889, 37.261527 ], [ -79.180329, 37.262346 ], [ -79.179966, 37.262877 ], [ -79.178561, 37.264935 ], [ -79.177834, 37.265998 ], [ -79.17762, 37.266312 ], [ -79.177577, 37.266375 ], [ -79.177344, 37.266717 ], [ -79.177268, 37.266828 ], [ -79.175738, 37.269066 ], [ -79.175293, 37.269718 ], [ -79.175059, 37.270062 ], [ -79.175024, 37.270113 ], [ -79.174746, 37.27052 ], [ -79.174499, 37.270885 ], [ -79.174225, 37.271286 ], [ -79.17318, 37.27282 ], [ -79.172596, 37.273676 ], [ -79.172062, 37.274457 ], [ -79.17205, 37.274476 ], [ -79.171892, 37.274707 ], [ -79.171746, 37.274919 ], [ -79.170612, 37.276581 ], [ -79.170091, 37.277344 ], [ -79.170074, 37.277368 ], [ -79.169014, 37.27887 ], [ -79.168768, 37.279279 ], [ -79.168446, 37.279751 ], [ -79.168095, 37.28026 ], [ -79.167791, 37.280704 ], [ -79.167004, 37.281854 ], [ -79.166839, 37.282126 ], [ -79.166686, 37.282417 ], [ -79.166553, 37.282715 ], [ -79.166455, 37.282978 ], [ -79.166365, 37.283271 ], [ -79.166331, 37.283406 ], [ -79.166277, 37.283662 ], [ -79.166236, 37.283934 ], [ -79.166211, 37.284233 ], [ -79.166208, 37.284331 ], [ -79.16621, 37.284606 ], [ -79.166232, 37.284894 ], [ -79.166273, 37.28518 ], [ -79.166341, 37.285491 ], [ -79.166394, 37.28568 ], [ -79.166419, 37.28576 ], [ -79.16653, 37.286061 ], [ -79.16656, 37.286133 ], [ -79.166601, 37.286228 ], [ -79.167073, 37.287187 ], [ -79.167342, 37.287727 ], [ -79.167647, 37.288335 ], [ -79.167961, 37.288961 ], [ -79.168213, 37.289466 ], [ -79.168669, 37.290363 ], [ -79.169252, 37.291516 ], [ -79.169707, 37.292425 ], [ -79.170019, 37.293049 ], [ -79.170164, 37.293337 ], [ -79.170762, 37.294525 ], [ -79.171017, 37.295032 ], [ -79.171197, 37.29539 ], [ -79.171228, 37.295451 ], [ -79.171707, 37.296402 ], [ -79.171854, 37.296694 ], [ -79.172057, 37.297099 ], [ -79.172329, 37.297639 ], [ -79.172756, 37.298485 ], [ -79.172921, 37.29877 ], [ -79.173118, 37.299071 ], [ -79.173326, 37.299351 ], [ -79.1734, 37.299443 ], [ -79.173711, 37.299824 ], [ -79.174643, 37.300928 ], [ -79.177789, 37.304649 ], [ -79.17841, 37.305383 ], [ -79.179563, 37.306751 ], [ -79.18128, 37.308787 ], [ -79.181492, 37.309036 ], [ -79.181949, 37.309573 ], [ -79.182599, 37.310336 ], [ -79.183198, 37.311046 ], [ -79.183775, 37.311729 ], [ -79.183964, 37.311947 ], [ -79.18428, 37.312314 ], [ -79.18536, 37.313557 ], [ -79.18553, 37.313753 ], [ -79.18588, 37.314159 ], [ -79.186286, 37.314624 ], [ -79.186592, 37.314975 ], [ -79.186893, 37.31532 ], [ -79.187155, 37.315623 ], [ -79.187287, 37.315796 ], [ -79.187433, 37.315958 ], [ -79.187603, 37.316193 ], [ -79.187705, 37.316348 ], [ -79.187781, 37.316469 ], [ -79.187895, 37.316666 ], [ -79.188063, 37.316995 ], [ -79.188211, 37.31734 ], [ -79.188267, 37.317488 ], [ -79.188574, 37.31828 ], [ -79.18873, 37.318682 ], [ -79.188773, 37.318793 ], [ -79.188818, 37.318907 ], [ -79.188983, 37.319332 ], [ -79.189167, 37.319817 ], [ -79.18919, 37.319881 ], [ -79.189276, 37.320122 ], [ -79.189293, 37.320183 ], [ -79.189372, 37.320484 ], [ -79.189407, 37.320635 ], [ -79.189445, 37.320825 ], [ -79.189477, 37.321015 ], [ -79.189492, 37.321115 ], [ -79.189533, 37.321458 ], [ -79.189536, 37.321492 ], [ -79.189586, 37.322119 ], [ -79.189602, 37.322319 ], [ -79.189637, 37.32275 ], [ -79.189647, 37.322876 ], [ -79.189704, 37.323523 ], [ -79.189737, 37.323892 ], [ -79.189747, 37.323997 ], [ -79.189761, 37.324147 ], [ -79.189781, 37.324375 ], [ -79.189798, 37.324545 ], [ -79.189823, 37.324722 ], [ -79.189861, 37.324935 ], [ -79.189896, 37.325095 ], [ -79.189922, 37.3252 ], [ -79.190034, 37.325593 ], [ -79.190115, 37.325884 ], [ -79.190279, 37.326471 ], [ -79.190558, 37.327468 ], [ -79.190626, 37.327737 ], [ -79.190656, 37.327855 ], [ -79.190719, 37.328102 ], [ -79.190893, 37.328783 ], [ -79.19093, 37.328914 ], [ -79.19114, 37.329665 ], [ -79.191197, 37.329849 ], [ -79.191289, 37.330174 ], [ -79.191411, 37.330604 ], [ -79.191427, 37.330662 ], [ -79.191549, 37.331144 ], [ -79.191612, 37.331407 ], [ -79.191674, 37.33166 ], [ -79.191713, 37.331945 ], [ -79.191731, 37.332216 ], [ -79.191727, 37.3324 ], [ -79.191718, 37.332618 ], [ -79.191688, 37.333114 ], [ -79.191671, 37.333265 ], [ -79.191652, 37.333506 ], [ -79.191625, 37.33369 ], [ -79.191591, 37.333978 ], [ -79.191586, 37.334109 ], [ -79.191605, 37.334336 ], [ -79.19161, 37.334672 ], [ -79.191612, 37.334771 ], [ -79.191619, 37.335165 ], [ -79.191615, 37.335425 ], [ -79.191612, 37.335464 ], [ -79.191591, 37.335798 ], [ -79.191573, 37.33597 ], [ -79.19153, 37.336198 ], [ -79.191511, 37.3363 ], [ -79.191476, 37.336481 ], [ -79.191396, 37.336901 ], [ -79.191254, 37.33724 ], [ -79.191108, 37.337564 ], [ -79.190891, 37.337852 ], [ -79.190707, 37.338004 ], [ -79.190446, 37.338136 ], [ -79.190159, 37.338232 ], [ -79.189809, 37.338303 ], [ -79.189504, 37.338343 ], [ -79.189039, 37.338414 ], [ -79.188663, 37.33847 ], [ -79.188351, 37.338526 ], [ -79.18802, 37.338571 ], [ -79.18767, 37.338617 ], [ -79.187276, 37.338677 ], [ -79.18683, 37.338758 ], [ -79.186448, 37.338854 ], [ -79.186232, 37.338986 ], [ -79.186034, 37.339158 ], [ -79.185913, 37.339381 ], [ -79.185862, 37.339654 ], [ -79.185792, 37.339958 ], [ -79.185735, 37.340246 ], [ -79.185608, 37.340565 ], [ -79.185474, 37.340849 ], [ -79.185264, 37.341152 ], [ -79.185009, 37.341421 ], [ -79.184748, 37.341658 ], [ -79.184399, 37.341989 ], [ -79.184093, 37.342254 ], [ -79.183658, 37.342682 ], [ -79.18294, 37.343536 ], [ -79.182113, 37.344505 ], [ -79.181077, 37.345699 ], [ -79.180004, 37.346871 ], [ -79.178729, 37.348196 ], [ -79.177389, 37.349407 ], [ -79.177129, 37.349621 ], [ -79.176626, 37.350036 ], [ -79.173129, 37.353092 ], [ -79.169752, 37.356318 ], [ -79.169186, 37.356859 ], [ -79.166439, 37.359647 ], [ -79.165165, 37.360856 ], [ -79.164528, 37.361444 ], [ -79.163946, 37.361878 ], [ -79.162943, 37.362614 ], [ -79.161891, 37.363349 ], [ -79.159885, 37.364693 ], [ -79.158866, 37.365389 ], [ -79.157915, 37.36609 ], [ -79.156262, 37.367299 ], [ -79.153378, 37.36939 ], [ -79.1513, 37.370777 ], [ -79.148798, 37.372337 ], [ -79.146813, 37.373529 ], [ -79.146135, 37.37394 ], [ -79.145298, 37.374385 ], [ -79.144399, 37.374808 ], [ -79.143032, 37.375351 ], [ -79.142887, 37.375396 ], [ -79.141407, 37.375861 ], [ -79.13952, 37.376309 ], [ -79.137442, 37.376753 ], [ -79.136385, 37.376976 ], [ -79.135221, 37.37722 ], [ -79.134065, 37.377456 ], [ -79.132756, 37.377733 ], [ -79.131505, 37.377997 ], [ -79.130701, 37.378165 ], [ -79.129655, 37.378385 ], [ -79.128812, 37.378561 ], [ -79.127809, 37.378776 ], [ -79.127166, 37.378891 ], [ -79.124907, 37.379433 ], [ -79.122351, 37.380007 ], [ -79.119924, 37.380555 ], [ -79.118369, 37.380958 ], [ -79.116892, 37.381492 ], [ -79.11429, 37.382508 ], [ -79.111589, 37.383564 ], [ -79.110432, 37.384015 ], [ -79.108723, 37.384663 ], [ -79.107004, 37.385341 ], [ -79.10533, 37.38597 ], [ -79.10529, 37.385969 ], [ -79.104874, 37.386095 ], [ -79.104406, 37.386191 ], [ -79.103958, 37.38624 ], [ -79.103328, 37.386271 ], [ -79.101681, 37.386155 ], [ -79.101144, 37.386117 ], [ -79.100418, 37.386038 ], [ -79.097991, 37.385843 ], [ -79.09636, 37.385744 ], [ -79.095982, 37.385658 ], [ -79.095845, 37.385614 ], [ -79.09571, 37.385555 ], [ -79.095567, 37.38548 ], [ -79.095427, 37.38539 ], [ -79.095308, 37.385296 ], [ -79.09517, 37.385161 ], [ -79.09509, 37.385054 ], [ -79.094998, 37.384905 ], [ -79.094916, 37.384737 ], [ -79.094844, 37.384528 ], [ -79.094656, 37.383845 ], [ -79.094531, 37.38345 ], [ -79.094325, 37.383054 ], [ -79.094038, 37.38276 ], [ -79.093621, 37.382467 ], [ -79.093187, 37.382294 ], [ -79.092689, 37.382201 ], [ -79.092284, 37.382201 ], [ -79.091903, 37.382257 ], [ -79.091551, 37.382364 ], [ -79.091187, 37.382541 ], [ -79.090959, 37.382723 ], [ -79.090789, 37.382882 ], [ -79.090589, 37.383115 ], [ -79.090443, 37.383376 ], [ -79.090284, 37.383744 ], [ -79.090225, 37.384 ], [ -79.090179, 37.384541 ], [ -79.090062, 37.385779 ], [ -79.089925, 37.386644 ], [ -79.089849, 37.387226 ], [ -79.089779, 37.387541 ], [ -79.089689, 37.387836 ], [ -79.0895, 37.38838 ], [ -79.089436, 37.388633 ], [ -79.089405, 37.388841 ], [ -79.089289, 37.389685 ], [ -79.089161, 37.39093 ], [ -79.089008, 37.392008 ], [ -79.08881, 37.394069 ], [ -79.088768, 37.394579 ], [ -79.088645, 37.395885 ], [ -79.088477, 37.397207 ], [ -79.087956, 37.401181 ], [ -79.087825, 37.401823 ], [ -79.087665, 37.402308 ], [ -79.087554, 37.402629 ], [ -79.08736, 37.403142 ], [ -79.087142, 37.403562 ], [ -79.086923, 37.403937 ], [ -79.086762, 37.404195 ], [ -79.086439, 37.404708 ], [ -79.086251, 37.405002 ], [ -79.085982, 37.405393 ], [ -79.085647, 37.405896 ], [ -79.085037, 37.406824 ], [ -79.084691, 37.407346 ], [ -79.084239, 37.407998 ], [ -79.084081, 37.408208 ], [ -79.083969, 37.408376 ], [ -79.083852, 37.408534 ], [ -79.083752, 37.408705 ], [ -79.083641, 37.408893 ], [ -79.08253, 37.41059 ], [ -79.082107, 37.41155 ], [ -79.081937, 37.412163 ], [ -79.081833, 37.412538 ], [ -79.081757, 37.413176 ], [ -79.08171, 37.413903 ], [ -79.081751, 37.414774 ], [ -79.081781, 37.415758 ], [ -79.081777, 37.417393 ], [ -79.081646, 37.41901 ], [ -79.081485, 37.420256 ], [ -79.081292, 37.421219 ], [ -79.081057, 37.422257 ], [ -79.080513, 37.424117 ], [ -79.07951, 37.427155 ], [ -79.078061, 37.431195 ], [ -79.077269, 37.433524 ], [ -79.076993, 37.434391 ], [ -79.076647, 37.435495 ], [ -79.076395, 37.436608 ], [ -79.076304, 37.437254 ], [ -79.076229, 37.438019 ], [ -79.076213, 37.439312 ], [ -79.076213, 37.439413 ], [ -79.076155, 37.442774 ], [ -79.07614, 37.443179 ], [ -79.076116, 37.443841 ], [ -79.076046, 37.446058 ], [ -79.075976, 37.449173 ], [ -79.076002, 37.451689 ], [ -79.076065, 37.4523 ], [ -79.076262, 37.453 ], [ -79.076579, 37.453683 ], [ -79.076982, 37.454312 ], [ -79.077536, 37.45501 ], [ -79.079739, 37.457229 ], [ -79.080689, 37.458217 ], [ -79.081531, 37.459252 ], [ -79.082085, 37.460038 ], [ -79.082441, 37.460738 ], [ -79.082708, 37.461304 ], [ -79.082968, 37.461981 ], [ -79.083137, 37.462694 ], [ -79.083265, 37.463513 ], [ -79.083293, 37.464338 ], [ -79.083287, 37.464745 ], [ -79.083277, 37.465166 ], [ -79.083236, 37.465743 ], [ -79.083136, 37.466259 ], [ -79.082678, 37.468029 ], [ -79.082438, 37.469156 ], [ -79.08215, 37.470371 ], [ -79.081963, 37.471033 ], [ -79.081827, 37.471415 ], [ -79.081408, 37.472342 ], [ -79.081005, 37.47309 ], [ -79.080296, 37.474045 ], [ -79.079641, 37.474751 ], [ -79.078249, 37.476094 ], [ -79.077451, 37.477058 ], [ -79.076776, 37.477863 ], [ -79.076213, 37.478711 ], [ -79.075638, 37.479763 ], [ -79.075274, 37.480624 ], [ -79.074869, 37.481821 ], [ -79.074675, 37.482594 ], [ -79.074634, 37.482892 ], [ -79.074593, 37.483204 ], [ -79.07457, 37.483627 ], [ -79.074448, 37.484732 ], [ -79.074331, 37.485753 ], [ -79.074167, 37.486518 ], [ -79.073888, 37.487326 ], [ -79.073467, 37.488074 ], [ -79.07305, 37.488846 ], [ -79.072616, 37.489619 ], [ -79.072018, 37.490699 ], [ -79.07163, 37.49136 ], [ -79.070791, 37.492896 ], [ -79.070146, 37.494186 ], [ -79.06953, 37.495438 ], [ -79.068703, 37.497026 ], [ -79.067817, 37.498799 ], [ -79.067177, 37.500098 ], [ -79.066497, 37.501471 ], [ -79.066168, 37.502341 ], [ -79.065974, 37.503063 ], [ -79.065895, 37.503746 ], [ -79.065857, 37.504329 ], [ -79.065851, 37.505804 ], [ -79.065851, 37.506847 ], [ -79.065828, 37.508187 ], [ -79.065831, 37.509824 ], [ -79.0658, 37.510657 ], [ -79.065769, 37.511273 ], [ -79.065628, 37.51191 ], [ -79.065455, 37.512506 ], [ -79.065165, 37.513111 ], [ -79.064807, 37.513823 ], [ -79.064426, 37.514512 ], [ -79.063986, 37.515424 ], [ -79.063804, 37.515903 ], [ -79.063545, 37.516788 ], [ -79.063328, 37.51796 ], [ -79.063264, 37.519296 ], [ -79.063311, 37.520208 ], [ -79.063487, 37.521209 ], [ -79.063645, 37.522214 ], [ -79.063845, 37.523275 ], [ -79.06425, 37.525364 ], [ -79.064871, 37.528602 ], [ -79.065376, 37.531264 ], [ -79.066057, 37.534819 ], [ -79.066725, 37.538252 ], [ -79.0674, 37.541904 ], [ -79.06794, 37.544546 ], [ -79.068021, 37.545221 ], [ -79.068093, 37.545891 ], [ -79.068075, 37.546616 ], [ -79.067977, 37.547323 ], [ -79.067805, 37.547989 ], [ -79.06729, 37.549617 ], [ -79.066508, 37.552189 ], [ -79.066203, 37.55312 ], [ -79.065916, 37.554199 ], [ -79.06571, 37.554864 ], [ -79.065358, 37.555901 ], [ -79.06462, 37.558162 ], [ -79.064236, 37.559374 ], [ -79.064086, 37.559848 ], [ -79.063835, 37.560896 ], [ -79.063609, 37.561383 ], [ -79.063256, 37.561986 ], [ -79.062896, 37.562503 ], [ -79.062134, 37.563345 ], [ -79.061625, 37.563753 ], [ -79.06094, 37.564213 ], [ -79.058641, 37.565583 ], [ -79.05758, 37.566208 ], [ -79.056639, 37.566768 ], [ -79.055935, 37.567192 ], [ -79.055742, 37.567302 ], [ -79.055553, 37.567416 ], [ -79.055246, 37.567615 ], [ -79.054927, 37.567838 ], [ -79.054748, 37.567977 ], [ -79.054525, 37.568169 ], [ -79.05429, 37.568391 ], [ -79.054239, 37.568442 ], [ -79.054034, 37.568657 ], [ -79.053873, 37.56885 ], [ -79.053657, 37.569143 ], [ -79.053524, 37.569347 ], [ -79.053368, 37.569618 ], [ -79.053228, 37.569894 ], [ -79.053172, 37.570026 ], [ -79.053043, 37.570358 ], [ -79.05286, 37.57095 ], [ -79.052677, 37.571527 ], [ -79.052485, 37.572133 ], [ -79.052132, 37.573261 ], [ -79.051632, 37.57486 ], [ -79.051348, 37.57574 ], [ -79.051123, 37.576286 ], [ -79.051087, 37.576361 ], [ -79.050788, 37.576916 ], [ -79.050662, 37.577116 ], [ -79.050472, 37.577395 ], [ -79.050278, 37.577652 ], [ -79.050057, 37.577924 ], [ -79.049759, 37.578262 ], [ -79.049412, 37.578608 ], [ -79.049047, 37.578931 ], [ -79.047001, 37.580602 ], [ -79.046515, 37.580994 ], [ -79.046166, 37.58126 ], [ -79.045909, 37.581455 ], [ -79.04561, 37.58167 ], [ -79.045264, 37.581887 ], [ -79.044961, 37.582077 ], [ -79.044149, 37.582573 ], [ -79.04353, 37.582927 ], [ -79.04291, 37.58327 ], [ -79.042129, 37.58371 ], [ -79.041873, 37.583864 ], [ -79.041806, 37.58391 ], [ -79.041621, 37.584017 ], [ -79.041414, 37.584155 ], [ -79.041178, 37.58431 ], [ -79.040635, 37.584689 ], [ -79.039894, 37.585255 ], [ -79.039608, 37.585491 ], [ -79.03912, 37.585904 ], [ -79.038845, 37.586155 ], [ -79.038474, 37.586513 ], [ -79.03781, 37.587198 ], [ -79.037358, 37.587719 ], [ -79.037086, 37.588056 ], [ -79.036877, 37.588331 ], [ -79.036498, 37.588836 ], [ -79.036258, 37.589205 ], [ -79.035926, 37.589739 ], [ -79.034645, 37.591992 ], [ -79.034482, 37.592286 ], [ -79.034097, 37.592957 ], [ -79.033913, 37.593255 ], [ -79.033669, 37.593669 ], [ -79.033006, 37.594819 ], [ -79.032654, 37.595452 ], [ -79.032044, 37.596522 ], [ -79.031678, 37.597159 ], [ -79.031353, 37.597735 ], [ -79.03004, 37.600074 ], [ -79.029644, 37.600763 ], [ -79.028963, 37.601951 ], [ -79.028685, 37.602397 ], [ -79.02851, 37.602662 ], [ -79.028221, 37.603043 ], [ -79.027978, 37.603341 ], [ -79.027692, 37.60368 ], [ -79.027548, 37.60383 ], [ -79.027306, 37.604072 ], [ -79.027105, 37.604269 ], [ -79.02697, 37.604392 ], [ -79.026652, 37.60468 ], [ -79.026083, 37.605207 ], [ -79.026036, 37.60525 ], [ -79.025989, 37.605294 ], [ -79.025872, 37.605402 ], [ -79.02555, 37.605685 ], [ -79.025303, 37.605893 ], [ -79.025239, 37.605951 ], [ -79.025075, 37.606102 ], [ -79.024795, 37.606358 ], [ -79.024408, 37.606702 ], [ -79.024072, 37.607013 ], [ -79.024053, 37.607031 ], [ -79.023787, 37.607264 ], [ -79.023498, 37.607516 ], [ -79.023027, 37.607911 ], [ -79.022811, 37.60807 ], [ -79.022583, 37.608218 ], [ -79.022393, 37.608329 ], [ -79.022103, 37.608478 ], [ -79.021864, 37.608585 ], [ -79.021424, 37.608752 ], [ -79.020855, 37.608965 ], [ -79.020271, 37.609195 ], [ -79.020171, 37.609236 ], [ -79.019921, 37.609348 ], [ -79.019569, 37.609526 ], [ -79.019341, 37.609661 ], [ -79.019134, 37.609801 ], [ -79.018938, 37.609951 ], [ -79.018736, 37.61013 ], [ -79.018557, 37.610318 ], [ -79.018408, 37.6105 ], [ -79.018273, 37.610689 ], [ -79.018177, 37.610845 ], [ -79.018077, 37.611005 ], [ -79.017942, 37.61127 ], [ -79.01775, 37.611733 ], [ -79.017583, 37.612195 ], [ -79.017453, 37.612536 ], [ -79.01736, 37.612779 ], [ -79.017077, 37.613518 ], [ -79.016316, 37.615651 ], [ -79.016211, 37.615921 ], [ -79.015957, 37.616661 ], [ -79.015442, 37.618041 ], [ -79.015171, 37.618767 ], [ -79.015044, 37.619085 ], [ -79.014896, 37.619401 ], [ -79.014725, 37.619699 ], [ -79.014609, 37.619891 ], [ -79.014507, 37.620046 ], [ -79.014326, 37.620291 ], [ -79.014076, 37.620611 ], [ -79.013882, 37.620808 ], [ -79.013583, 37.621079 ], [ -79.012998, 37.621504 ], [ -79.01238, 37.621893 ], [ -79.010646, 37.622959 ], [ -79.01003, 37.623323 ], [ -79.009112, 37.623886 ], [ -79.007841, 37.62468 ], [ -79.007669, 37.624786 ], [ -79.00613, 37.625753 ], [ -79.00574, 37.625992 ], [ -79.004933, 37.626484 ], [ -79.004251, 37.626912 ], [ -79.004139, 37.626981 ], [ -79.003154, 37.627592 ], [ -79.001641, 37.628516 ], [ -79.001111, 37.628835 ], [ -79.00072, 37.62907 ], [ -79.000623, 37.62914 ], [ -79.000217, 37.629394 ], [ -78.998912, 37.630202 ], [ -78.998196, 37.630645 ], [ -78.997598, 37.631025 ], [ -78.997526, 37.631071 ], [ -78.997241, 37.631274 ], [ -78.996875, 37.631534 ], [ -78.996217, 37.63205 ], [ -78.995656, 37.632525 ], [ -78.995017, 37.633129 ], [ -78.994464, 37.633668 ], [ -78.993794, 37.634338 ], [ -78.992582, 37.635539 ], [ -78.99241, 37.635715 ], [ -78.992112, 37.636 ], [ -78.991971, 37.636127 ], [ -78.991598, 37.636454 ], [ -78.991319, 37.636676 ], [ -78.991111, 37.636827 ], [ -78.990724, 37.637089 ], [ -78.990344, 37.637324 ], [ -78.989967, 37.637537 ], [ -78.989578, 37.637737 ], [ -78.988855, 37.638052 ], [ -78.98807, 37.638382 ], [ -78.986736, 37.63892 ], [ -78.986454, 37.639034 ], [ -78.985803, 37.639316 ], [ -78.984897, 37.639687 ], [ -78.98388, 37.640096 ], [ -78.983117, 37.640414 ], [ -78.982726, 37.640573 ], [ -78.981774, 37.640959 ], [ -78.979687, 37.64182 ], [ -78.978231, 37.642417 ], [ -78.977005, 37.64291 ], [ -78.97646, 37.643116 ], [ -78.975777, 37.643333 ], [ -78.975711, 37.643354 ], [ -78.97542, 37.643425 ], [ -78.974834, 37.643551 ], [ -78.974604, 37.64359 ], [ -78.974067, 37.643681 ], [ -78.973393, 37.643752 ], [ -78.972559, 37.643813 ], [ -78.972242, 37.643839 ], [ -78.970006, 37.64399 ], [ -78.96903, 37.64406 ], [ -78.968589, 37.644095 ], [ -78.968224, 37.644136 ], [ -78.967889, 37.644182 ], [ -78.967664, 37.644226 ], [ -78.967387, 37.644293 ], [ -78.967224, 37.644341 ], [ -78.966957, 37.64443 ], [ -78.966688, 37.644536 ], [ -78.966474, 37.644631 ], [ -78.966164, 37.644789 ], [ -78.965983, 37.644902 ], [ -78.965692, 37.645098 ], [ -78.965428, 37.645294 ], [ -78.965238, 37.645456 ], [ -78.965063, 37.645628 ], [ -78.964898, 37.645816 ], [ -78.964762, 37.645992 ], [ -78.964605, 37.646219 ], [ -78.964465, 37.646453 ], [ -78.964354, 37.646672 ], [ -78.96426, 37.646896 ], [ -78.964184, 37.647124 ], [ -78.964105, 37.647472 ], [ -78.964045, 37.647822 ], [ -78.963795, 37.650137 ], [ -78.963771, 37.650446 ], [ -78.963726, 37.650831 ], [ -78.963699, 37.651104 ], [ -78.963637, 37.651545 ], [ -78.963559, 37.651968 ], [ -78.963475, 37.652244 ], [ -78.963403, 37.652439 ], [ -78.963343, 37.65259 ], [ -78.963259, 37.652771 ], [ -78.963211, 37.652855 ], [ -78.963159, 37.652948 ], [ -78.963044, 37.653119 ], [ -78.962876, 37.65334 ], [ -78.962692, 37.653554 ], [ -78.961989, 37.654258 ], [ -78.961507, 37.654728 ], [ -78.961039, 37.655181 ], [ -78.960337, 37.655875 ], [ -78.96023, 37.655972 ], [ -78.960126, 37.656071 ], [ -78.959777, 37.656385 ], [ -78.959596, 37.656559 ], [ -78.959428, 37.656733 ], [ -78.95894, 37.657212 ], [ -78.958347, 37.65781 ], [ -78.957955, 37.658265 ], [ -78.957902, 37.65834 ], [ -78.957703, 37.658582 ], [ -78.956957, 37.659613 ], [ -78.956, 37.660952 ], [ -78.95555, 37.661601 ], [ -78.95521, 37.662149 ], [ -78.955078, 37.662367 ], [ -78.954742, 37.662988 ], [ -78.954584, 37.663297 ], [ -78.954305, 37.663917 ], [ -78.954148, 37.6643 ], [ -78.953981, 37.664751 ], [ -78.953842, 37.665162 ], [ -78.953791, 37.665348 ], [ -78.953693, 37.665702 ], [ -78.953658, 37.665836 ], [ -78.953519, 37.666441 ], [ -78.953449, 37.666806 ], [ -78.953407, 37.667104 ], [ -78.953324, 37.667763 ], [ -78.953292, 37.668183 ], [ -78.953221, 37.669156 ], [ -78.953153, 37.670098 ], [ -78.953142, 37.670264 ], [ -78.953141, 37.6704 ], [ -78.953072, 37.671177 ], [ -78.95304, 37.671615 ], [ -78.952995, 37.672174 ], [ -78.952947, 37.672942 ], [ -78.95292, 37.673225 ], [ -78.952878, 37.673819 ], [ -78.952829, 37.674339 ], [ -78.952797, 37.674686 ], [ -78.952784, 37.674804 ], [ -78.952747, 37.675024 ], [ -78.952692, 37.675301 ], [ -78.952624, 37.675578 ], [ -78.952561, 37.675784 ], [ -78.952486, 37.675985 ], [ -78.952442, 37.676122 ], [ -78.952386, 37.676257 ], [ -78.95232, 37.676433 ], [ -78.952115, 37.676852 ], [ -78.952045, 37.676981 ], [ -78.951895, 37.677259 ], [ -78.951765, 37.677478 ], [ -78.951015, 37.678688 ], [ -78.950642, 37.679294 ], [ -78.950106, 37.680167 ], [ -78.949932, 37.680439 ], [ -78.949555, 37.681057 ], [ -78.948514, 37.682749 ], [ -78.948346, 37.683014 ], [ -78.94819, 37.68327 ], [ -78.947933, 37.683687 ], [ -78.947735, 37.683997 ], [ -78.946949, 37.685284 ], [ -78.946763, 37.685577 ], [ -78.946171, 37.686544 ], [ -78.946077, 37.686718 ], [ -78.945972, 37.686928 ], [ -78.945848, 37.687201 ], [ -78.945794, 37.687349 ], [ -78.945689, 37.687661 ], [ -78.945632, 37.687901 ], [ -78.945568, 37.688266 ], [ -78.945541, 37.688542 ], [ -78.945537, 37.688659 ], [ -78.945545, 37.689126 ], [ -78.945579, 37.689434 ], [ -78.945664, 37.689907 ], [ -78.945683, 37.68999 ], [ -78.945776, 37.690456 ], [ -78.945835, 37.69071 ], [ -78.945961, 37.691323 ], [ -78.946182, 37.69241 ], [ -78.946237, 37.692788 ], [ -78.946274, 37.693085 ], [ -78.946296, 37.693491 ], [ -78.946303, 37.694022 ], [ -78.946301, 37.694057 ], [ -78.946287, 37.694387 ], [ -78.946261, 37.694709 ], [ -78.946249, 37.694805 ], [ -78.946182, 37.695293 ], [ -78.946055, 37.695876 ], [ -78.945864, 37.696567 ], [ -78.945405, 37.698162 ], [ -78.945298, 37.698548 ], [ -78.944826, 37.700186 ], [ -78.944719, 37.700501 ], [ -78.94458, 37.700835 ], [ -78.944457, 37.701074 ], [ -78.944324, 37.701307 ], [ -78.944135, 37.701595 ], [ -78.944026, 37.701738 ], [ -78.943778, 37.70202 ], [ -78.943504, 37.702305 ], [ -78.943214, 37.702564 ], [ -78.94302, 37.702719 ], [ -78.942935, 37.702779 ], [ -78.942809, 37.702868 ], [ -78.942485, 37.703077 ], [ -78.942218, 37.703232 ], [ -78.9405, 37.704132 ], [ -78.940455, 37.704155 ], [ -78.940006, 37.704381 ], [ -78.938227, 37.705302 ], [ -78.93698, 37.705948 ], [ -78.93647, 37.706225 ], [ -78.93488, 37.707122 ], [ -78.934646, 37.707256 ], [ -78.93388, 37.707679 ], [ -78.933448, 37.707924 ], [ -78.932774, 37.708305 ], [ -78.931107, 37.709235 ], [ -78.929365, 37.710215 ], [ -78.928987, 37.710423 ], [ -78.928188, 37.710873 ], [ -78.927848, 37.711058 ], [ -78.927739, 37.711117 ], [ -78.927286, 37.71134 ], [ -78.927035, 37.711449 ], [ -78.926705, 37.711572 ], [ -78.926357, 37.711684 ], [ -78.926015, 37.711773 ], [ -78.925764, 37.711831 ], [ -78.925742, 37.711836 ], [ -78.925395, 37.711899 ], [ -78.925098, 37.711943 ], [ -78.92463, 37.712006 ], [ -78.924358, 37.71204 ], [ -78.9241, 37.712072 ], [ -78.923317, 37.712168 ], [ -78.922673, 37.712257 ], [ -78.921644, 37.712386 ], [ -78.920771, 37.712503 ], [ -78.91879, 37.712755 ], [ -78.917763, 37.712894 ], [ -78.916758, 37.713029 ], [ -78.916316, 37.713107 ], [ -78.915891, 37.713204 ], [ -78.915614, 37.71328 ], [ -78.915324, 37.713372 ], [ -78.915274, 37.713388 ], [ -78.914912, 37.71352 ], [ -78.91455, 37.71367 ], [ -78.914179, 37.713842 ], [ -78.913675, 37.714085 ], [ -78.912967, 37.714415 ], [ -78.910226, 37.715714 ], [ -78.90939, 37.716116 ], [ -78.908844, 37.716378 ], [ -78.908565, 37.716525 ], [ -78.908344, 37.716654 ], [ -78.908223, 37.716733 ], [ -78.907898, 37.716972 ], [ -78.907709, 37.71712 ], [ -78.907284, 37.717479 ], [ -78.905705, 37.718784 ], [ -78.905314, 37.719084 ], [ -78.90491, 37.719372 ], [ -78.904525, 37.719604 ], [ -78.904033, 37.719882 ], [ -78.903337, 37.720265 ], [ -78.902528, 37.720722 ], [ -78.902455, 37.720766 ], [ -78.902055, 37.720998 ], [ -78.901704, 37.721237 ], [ -78.901372, 37.721492 ], [ -78.901207, 37.721632 ], [ -78.901102, 37.721732 ], [ -78.90093, 37.721897 ], [ -78.900791, 37.722043 ], [ -78.900736, 37.722103 ], [ -78.900601, 37.722261 ], [ -78.900394, 37.722523 ], [ -78.900222, 37.722764 ], [ -78.900079, 37.722992 ], [ -78.900004, 37.723131 ], [ -78.899716, 37.723665 ], [ -78.899467, 37.724145 ], [ -78.899406, 37.724274 ], [ -78.89922, 37.72461 ], [ -78.899008, 37.725016 ], [ -78.898838, 37.725322 ], [ -78.898749, 37.725462 ], [ -78.898619, 37.725684 ], [ -78.898501, 37.725886 ], [ -78.898424, 37.726009 ], [ -78.898396, 37.726054 ], [ -78.89823, 37.726333 ], [ -78.897785, 37.72702 ], [ -78.897326, 37.727687 ], [ -78.897029, 37.728104 ], [ -78.896755, 37.72847 ], [ -78.896087, 37.729327 ], [ -78.895376, 37.730223 ], [ -78.89492, 37.73078 ], [ -78.894224, 37.731648 ], [ -78.893951, 37.731982 ], [ -78.893208, 37.732922 ], [ -78.893101, 37.733073 ], [ -78.892951, 37.733284 ], [ -78.892829, 37.733486 ], [ -78.892725, 37.733694 ], [ -78.892653, 37.733852 ], [ -78.892395, 37.734583 ], [ -78.892264, 37.735006 ], [ -78.891874, 37.73617 ], [ -78.891809, 37.736394 ], [ -78.891615, 37.736972 ], [ -78.891508, 37.737307 ], [ -78.891316, 37.737819 ], [ -78.891154, 37.738191 ], [ -78.891075, 37.738356 ], [ -78.891011, 37.738485 ], [ -78.890701, 37.739024 ], [ -78.890539, 37.739262 ], [ -78.890353, 37.739521 ], [ -78.890119, 37.739847 ], [ -78.889796, 37.740253 ], [ -78.889491, 37.740645 ], [ -78.889217, 37.740996 ], [ -78.888944, 37.74133 ], [ -78.888623, 37.741743 ], [ -78.888513, 37.741886 ], [ -78.888267, 37.742188 ], [ -78.887876, 37.742653 ], [ -78.887675, 37.74287 ], [ -78.887504, 37.743037 ], [ -78.887277, 37.743237 ], [ -78.887216, 37.743287 ], [ -78.887135, 37.743353 ], [ -78.886534, 37.743824 ], [ -78.886162, 37.744125 ], [ -78.8861, 37.744182 ], [ -78.885899, 37.744355 ], [ -78.885622, 37.744575 ], [ -78.885356, 37.74478 ], [ -78.884605, 37.745388 ], [ -78.884042, 37.74585 ], [ -78.882882, 37.746752 ], [ -78.882051, 37.747417 ], [ -78.880834, 37.748391 ], [ -78.88003, 37.749038 ], [ -78.879751, 37.749271 ], [ -78.879568, 37.74942 ], [ -78.879376, 37.749569 ], [ -78.878419, 37.750353 ], [ -78.877854, 37.750804 ], [ -78.877584, 37.751037 ], [ -78.877286, 37.751315 ], [ -78.877004, 37.751598 ], [ -78.876844, 37.751774 ], [ -78.876626, 37.752042 ], [ -78.876378, 37.752385 ], [ -78.876192, 37.752665 ], [ -78.876061, 37.752882 ], [ -78.875814, 37.753345 ], [ -78.875209, 37.754691 ], [ -78.874619, 37.756931 ], [ -78.874501, 37.757307 ], [ -78.874339, 37.757855 ], [ -78.873994, 37.758979 ], [ -78.873789, 37.759637 ], [ -78.873696, 37.75991 ], [ -78.873541, 37.760318 ], [ -78.873332, 37.760834 ], [ -78.873094, 37.761337 ], [ -78.872847, 37.761808 ], [ -78.872451, 37.762468 ], [ -78.872257, 37.76277 ], [ -78.871993, 37.763172 ], [ -78.871574, 37.763799 ], [ -78.871327, 37.764167 ], [ -78.871012, 37.764642 ], [ -78.870469, 37.765468 ], [ -78.870316, 37.765702 ], [ -78.870042, 37.766126 ], [ -78.869873, 37.766412 ], [ -78.869781, 37.766589 ], [ -78.869687, 37.766814 ], [ -78.869585, 37.76708 ], [ -78.869516, 37.767314 ], [ -78.869424, 37.767698 ], [ -78.869391, 37.767942 ], [ -78.86938, 37.768238 ], [ -78.869389, 37.768459 ], [ -78.869415, 37.768673 ], [ -78.869485, 37.768991 ], [ -78.869567, 37.769255 ], [ -78.86966, 37.769515 ], [ -78.869743, 37.769714 ], [ -78.869793, 37.769822 ], [ -78.870127, 37.770634 ], [ -78.870244, 37.770938 ], [ -78.870299, 37.771157 ], [ -78.870337, 37.771378 ], [ -78.870379, 37.771605 ], [ -78.870392, 37.771879 ], [ -78.870378, 37.772127 ], [ -78.870337, 37.772397 ], [ -78.870272, 37.77267 ], [ -78.870248, 37.772764 ], [ -78.87004, 37.773562 ], [ -78.869728, 37.774718 ], [ -78.869574, 37.775264 ], [ -78.869411, 37.775864 ], [ -78.869234, 37.776522 ], [ -78.869061, 37.777151 ], [ -78.868889, 37.777735 ], [ -78.868643, 37.778648 ], [ -78.868399, 37.779571 ], [ -78.868224, 37.780198 ], [ -78.868067, 37.780782 ], [ -78.867497, 37.782893 ], [ -78.867434, 37.783141 ], [ -78.867364, 37.783414 ], [ -78.867185, 37.784047 ], [ -78.867156, 37.784152 ], [ -78.867042, 37.784562 ], [ -78.866921, 37.785054 ], [ -78.866779, 37.785508 ], [ -78.866518, 37.786333 ], [ -78.866458, 37.786501 ], [ -78.866348, 37.786832 ], [ -78.866066, 37.787709 ], [ -78.865703, 37.788816 ], [ -78.865457, 37.789659 ], [ -78.865164, 37.790592 ], [ -78.864927, 37.791345 ], [ -78.864619, 37.792175 ], [ -78.864507, 37.792484 ], [ -78.864363, 37.792792 ], [ -78.864228, 37.793041 ], [ -78.864067, 37.7933 ], [ -78.863882, 37.793548 ], [ -78.863684, 37.793797 ], [ -78.863319, 37.794211 ], [ -78.863117, 37.794344 ], [ -78.86295, 37.794541 ], [ -78.862701, 37.794857 ], [ -78.86248, 37.795184 ], [ -78.862275, 37.795518 ], [ -78.862199, 37.795651 ], [ -78.862007, 37.796159 ], [ -78.861989, 37.79622 ], [ -78.861909, 37.796548 ], [ -78.861883, 37.796687 ], [ -78.861846, 37.796942 ], [ -78.861828, 37.797235 ], [ -78.861827, 37.797529 ], [ -78.861837, 37.797754 ], [ -78.861844, 37.797901 ], [ -78.861878, 37.798631 ], [ -78.861919, 37.799738 ], [ -78.861971, 37.800826 ], [ -78.862007, 37.801869 ], [ -78.862081, 37.803303 ], [ -78.862104, 37.80423 ], [ -78.86209, 37.804437 ], [ -78.862063, 37.804642 ], [ -78.862038, 37.804754 ], [ -78.862023, 37.804816 ], [ -78.861947, 37.805046 ], [ -78.861861, 37.805246 ], [ -78.861771, 37.805437 ], [ -78.86165, 37.805634 ], [ -78.861512, 37.805817 ], [ -78.861343, 37.806004 ], [ -78.860353, 37.806994 ], [ -78.859848, 37.807481 ], [ -78.858512, 37.808821 ], [ -78.858367, 37.808958 ], [ -78.858079, 37.809211 ], [ -78.857729, 37.809505 ], [ -78.857293, 37.80986 ], [ -78.856987, 37.81009 ], [ -78.856658, 37.810338 ], [ -78.855693, 37.81105 ], [ -78.85561, 37.811115 ], [ -78.855262, 37.811371 ], [ -78.854965, 37.811605 ], [ -78.853694, 37.812587 ], [ -78.853389, 37.812818 ], [ -78.852362, 37.813637 ], [ -78.851981, 37.813912 ], [ -78.851517, 37.814266 ], [ -78.851057, 37.81462 ], [ -78.85085, 37.814768 ], [ -78.850729, 37.814859 ], [ -78.850652, 37.81492 ], [ -78.850085, 37.815369 ], [ -78.848637, 37.81648 ], [ -78.846503, 37.818117 ], [ -78.846263, 37.818303 ], [ -78.845641, 37.818784 ], [ -78.845198, 37.81912 ], [ -78.844287, 37.819835 ], [ -78.843809, 37.820229 ], [ -78.841255, 37.822413 ], [ -78.840635, 37.822925 ], [ -78.840114, 37.823377 ], [ -78.839772, 37.823685 ], [ -78.839408, 37.824047 ], [ -78.839049, 37.824425 ], [ -78.838766, 37.824737 ], [ -78.838386, 37.825182 ], [ -78.838147, 37.825481 ], [ -78.837849, 37.82588 ], [ -78.837407, 37.826506 ], [ -78.837204, 37.826823 ], [ -78.837053, 37.827081 ], [ -78.836731, 37.827595 ], [ -78.836452, 37.828104 ], [ -78.836275, 37.828399 ], [ -78.836111, 37.828667 ], [ -78.835849, 37.82912 ], [ -78.835504, 37.829691 ], [ -78.835352, 37.829945 ], [ -78.83498, 37.830568 ], [ -78.834935, 37.830642 ], [ -78.834826, 37.830821 ], [ -78.834646, 37.831137 ], [ -78.834377, 37.831577 ], [ -78.833853, 37.832462 ], [ -78.833724, 37.832692 ], [ -78.833217, 37.833546 ], [ -78.831919, 37.835713 ], [ -78.831568, 37.836263 ], [ -78.831293, 37.836637 ], [ -78.831013, 37.836981 ], [ -78.83077, 37.837252 ], [ -78.829687, 37.838434 ], [ -78.829526, 37.8386 ], [ -78.829353, 37.838766 ], [ -78.828845, 37.839208 ], [ -78.828553, 37.839442 ], [ -78.828248, 37.839665 ], [ -78.827736, 37.840071 ], [ -78.82744, 37.840316 ], [ -78.827359, 37.840393 ], [ -78.827219, 37.840526 ], [ -78.827033, 37.840723 ], [ -78.82681, 37.840985 ], [ -78.826636, 37.841213 ], [ -78.826324, 37.841668 ], [ -78.825848, 37.842321 ], [ -78.825635, 37.842569 ], [ -78.825481, 37.842727 ], [ -78.825276, 37.842917 ], [ -78.825211, 37.842971 ], [ -78.825103, 37.843062 ], [ -78.824902, 37.843225 ], [ -78.824735, 37.84334 ], [ -78.824467, 37.843502 ], [ -78.824206, 37.843652 ], [ -78.82312, 37.844198 ], [ -78.822611, 37.844456 ], [ -78.821878, 37.84482 ], [ -78.820981, 37.845244 ], [ -78.82067, 37.845389 ], [ -78.820264, 37.845536 ], [ -78.820038, 37.845598 ], [ -78.819873, 37.845635 ], [ -78.81967, 37.845683 ], [ -78.819501, 37.845707 ], [ -78.819221, 37.845735 ], [ -78.818871, 37.845752 ], [ -78.818684, 37.845746 ], [ -78.818377, 37.845729 ], [ -78.818065, 37.845689 ], [ -78.817748, 37.845635 ], [ -78.817461, 37.845563 ], [ -78.817089, 37.845456 ], [ -78.81664, 37.845308 ], [ -78.816094, 37.845137 ], [ -78.815801, 37.845042 ], [ -78.815106, 37.844835 ], [ -78.814203, 37.844545 ], [ -78.813661, 37.844372 ], [ -78.813194, 37.844227 ], [ -78.812793, 37.844119 ], [ -78.812466, 37.844059 ], [ -78.812161, 37.844015 ], [ -78.811899, 37.843994 ], [ -78.811692, 37.843985 ], [ -78.81145, 37.844002 ], [ -78.811288, 37.844022 ], [ -78.810966, 37.84409 ], [ -78.810704, 37.844162 ], [ -78.810498, 37.844229 ], [ -78.810246, 37.844336 ], [ -78.80993, 37.84449 ], [ -78.809727, 37.844605 ], [ -78.809573, 37.844705 ], [ -78.809276, 37.84492 ], [ -78.809029, 37.845076 ], [ -78.808807, 37.845199 ], [ -78.808527, 37.845332 ], [ -78.808311, 37.845419 ], [ -78.808089, 37.845498 ], [ -78.807811, 37.845579 ], [ -78.807589, 37.845643 ], [ -78.807297, 37.845708 ], [ -78.807, 37.845759 ], [ -78.806691, 37.845797 ], [ -78.806302, 37.845837 ], [ -78.805184, 37.845933 ], [ -78.80503, 37.845945 ], [ -78.804012, 37.846026 ], [ -78.800837, 37.846324 ], [ -78.800537, 37.846339 ], [ -78.800237, 37.846355 ], [ -78.800014, 37.846352 ], [ -78.79976, 37.846345 ], [ -78.799425, 37.846321 ], [ -78.799048, 37.846276 ], [ -78.79881, 37.846227 ], [ -78.798587, 37.846183 ], [ -78.798334, 37.846121 ], [ -78.798127, 37.846044 ], [ -78.797833, 37.845932 ], [ -78.797473, 37.845765 ], [ -78.797183, 37.845617 ], [ -78.796923, 37.845465 ], [ -78.796357, 37.845082 ], [ -78.795818, 37.844712 ], [ -78.795607, 37.84458 ], [ -78.795352, 37.844427 ], [ -78.795147, 37.84431 ], [ -78.794915, 37.844201 ], [ -78.794645, 37.844085 ], [ -78.794419, 37.843996 ], [ -78.794095, 37.843903 ], [ -78.793805, 37.843828 ], [ -78.793467, 37.843774 ], [ -78.793125, 37.84374 ], [ -78.792933, 37.843732 ], [ -78.792722, 37.843723 ], [ -78.792238, 37.84372 ], [ -78.791688, 37.843732 ], [ -78.791137, 37.843731 ], [ -78.790713, 37.843712 ], [ -78.790444, 37.843693 ], [ -78.79016, 37.843657 ], [ -78.78988, 37.843607 ], [ -78.789604, 37.843542 ], [ -78.789363, 37.843478 ], [ -78.789067, 37.843389 ], [ -78.788706, 37.843253 ], [ -78.78839, 37.843125 ], [ -78.788101, 37.843016 ], [ -78.78765, 37.842857 ], [ -78.787324, 37.842748 ], [ -78.787056, 37.84268 ], [ -78.786677, 37.842606 ], [ -78.786459, 37.842568 ], [ -78.786292, 37.842537 ], [ -78.785994, 37.842501 ], [ -78.785649, 37.842467 ], [ -78.785267, 37.842457 ], [ -78.784945, 37.842456 ], [ -78.784589, 37.842468 ], [ -78.782212, 37.842633 ], [ -78.780497, 37.842776 ], [ -78.779987, 37.842814 ], [ -78.778924, 37.842896 ], [ -78.77812, 37.842986 ], [ -78.777773, 37.843042 ], [ -78.777066, 37.843144 ], [ -78.776444, 37.84325 ], [ -78.775647, 37.843402 ], [ -78.774632, 37.843601 ], [ -78.773646, 37.843786 ], [ -78.773282, 37.843855 ], [ -78.772981, 37.843912 ], [ -78.772128, 37.844091 ], [ -78.771161, 37.844316 ], [ -78.770651, 37.844441 ], [ -78.769991, 37.844616 ], [ -78.768859, 37.844941 ], [ -78.768162, 37.845142 ], [ -78.767015, 37.845472 ], [ -78.76637, 37.845658 ], [ -78.765119, 37.846012 ], [ -78.761663, 37.84701 ], [ -78.760903, 37.847224 ], [ -78.760298, 37.847402 ], [ -78.75996, 37.847506 ], [ -78.7597, 37.847596 ], [ -78.759532, 37.84765 ], [ -78.759113, 37.847806 ], [ -78.758783, 37.847948 ], [ -78.758412, 37.84812 ], [ -78.758057, 37.848288 ], [ -78.757154, 37.848747 ], [ -78.756986, 37.848829 ], [ -78.756546, 37.849062 ], [ -78.756115, 37.849306 ], [ -78.755862, 37.849458 ], [ -78.755244, 37.849843 ], [ -78.754769, 37.85013 ], [ -78.754377, 37.85038 ], [ -78.753945, 37.850672 ], [ -78.753673, 37.850873 ], [ -78.753364, 37.851127 ], [ -78.753217, 37.851259 ], [ -78.752739, 37.851715 ], [ -78.752046, 37.852374 ], [ -78.75166, 37.852719 ], [ -78.751401, 37.852929 ], [ -78.751134, 37.853132 ], [ -78.750789, 37.853376 ], [ -78.750504, 37.853564 ], [ -78.750081, 37.853824 ], [ -78.74973, 37.854021 ], [ -78.749369, 37.854207 ], [ -78.748998, 37.85438 ], [ -78.748624, 37.854531 ], [ -78.748053, 37.854743 ], [ -78.747045, 37.85508 ], [ -78.746537, 37.855262 ], [ -78.746473, 37.855285 ], [ -78.745985, 37.855474 ], [ -78.7456, 37.855635 ], [ -78.744986, 37.855911 ], [ -78.744673, 37.856064 ], [ -78.744246, 37.856299 ], [ -78.743761, 37.856591 ], [ -78.743416, 37.856817 ], [ -78.742954, 37.857145 ], [ -78.742639, 37.857387 ], [ -78.742337, 37.85764 ], [ -78.742294, 37.85768 ], [ -78.741896, 37.858045 ], [ -78.741503, 37.85843 ], [ -78.741291, 37.858648 ], [ -78.741254, 37.858686 ], [ -78.740963, 37.859027 ], [ -78.740705, 37.859351 ], [ -78.740668, 37.859398 ], [ -78.740453, 37.85968 ], [ -78.739901, 37.860385 ], [ -78.739675, 37.860647 ], [ -78.739434, 37.860902 ], [ -78.739176, 37.861151 ], [ -78.73895, 37.861357 ], [ -78.738655, 37.861604 ], [ -78.738411, 37.861795 ], [ -78.738094, 37.862025 ], [ -78.737733, 37.862262 ], [ -78.737429, 37.862445 ], [ -78.73708, 37.862638 ], [ -78.73657, 37.862893 ], [ -78.736186, 37.863088 ], [ -78.735435, 37.86348 ], [ -78.734529, 37.863942 ], [ -78.733874, 37.864271 ], [ -78.733562, 37.864427 ], [ -78.733042, 37.864704 ], [ -78.732039, 37.865214 ], [ -78.731948, 37.865258 ], [ -78.731785, 37.865335 ], [ -78.731411, 37.86553 ], [ -78.730148, 37.866169 ], [ -78.729986, 37.866254 ], [ -78.729722, 37.866391 ], [ -78.728688, 37.866913 ], [ -78.727888, 37.86733 ], [ -78.727529, 37.86751 ], [ -78.726765, 37.867904 ], [ -78.726166, 37.868202 ], [ -78.725869, 37.868361 ], [ -78.725428, 37.868579 ], [ -78.725084, 37.868757 ], [ -78.724518, 37.869049 ], [ -78.723898, 37.869354 ], [ -78.722779, 37.869945 ], [ -78.721592, 37.870542 ], [ -78.720481, 37.87111 ], [ -78.719958, 37.871373 ], [ -78.719701, 37.871497 ], [ -78.719365, 37.871672 ], [ -78.718719, 37.872028 ], [ -78.71847, 37.872183 ], [ -78.718164, 37.872388 ], [ -78.717945, 37.872553 ], [ -78.717592, 37.872851 ], [ -78.717285, 37.873139 ], [ -78.717049, 37.873363 ], [ -78.716739, 37.873728 ], [ -78.716536, 37.874002 ], [ -78.716395, 37.874221 ], [ -78.716144, 37.874657 ], [ -78.71604, 37.87487 ], [ -78.715888, 37.875212 ], [ -78.715814, 37.875401 ], [ -78.715694, 37.87571 ], [ -78.715495, 37.876238 ], [ -78.715377, 37.876548 ], [ -78.715275, 37.876817 ], [ -78.71521, 37.877013 ], [ -78.715136, 37.877211 ], [ -78.715081, 37.877371 ], [ -78.714995, 37.877587 ], [ -78.71492, 37.877787 ], [ -78.7148, 37.878131 ], [ -78.714687, 37.878428 ], [ -78.714533, 37.878796 ], [ -78.714454, 37.879009 ], [ -78.714417, 37.879116 ], [ -78.714256, 37.879549 ], [ -78.714141, 37.879854 ], [ -78.713896, 37.880594 ], [ -78.713756, 37.881038 ], [ -78.713682, 37.88126 ], [ -78.713617, 37.881457 ], [ -78.713533, 37.881697 ], [ -78.713446, 37.881943 ], [ -78.713394, 37.882108 ], [ -78.713314, 37.882336 ], [ -78.713184, 37.882655 ], [ -78.713006, 37.883053 ], [ -78.712892, 37.883274 ], [ -78.712733, 37.88355 ], [ -78.712558, 37.88384 ], [ -78.712369, 37.884119 ], [ -78.712275, 37.884257 ], [ -78.712136, 37.884449 ], [ -78.711974, 37.884667 ], [ -78.711814, 37.884876 ], [ -78.711641, 37.885085 ], [ -78.711418, 37.885345 ], [ -78.711139, 37.885644 ], [ -78.710798, 37.88599 ], [ -78.710465, 37.886309 ], [ -78.710195, 37.886555 ], [ -78.709928, 37.886781 ], [ -78.709577, 37.88706 ], [ -78.709406, 37.887199 ], [ -78.709211, 37.887345 ], [ -78.708778, 37.887648 ], [ -78.707968, 37.888179 ], [ -78.707642, 37.888399 ], [ -78.707473, 37.88851 ], [ -78.707244, 37.888663 ], [ -78.706965, 37.888843 ], [ -78.706601, 37.889083 ], [ -78.706088, 37.889425 ], [ -78.705712, 37.889669 ], [ -78.705189, 37.890019 ], [ -78.704893, 37.890211 ], [ -78.703445, 37.891162 ], [ -78.703041, 37.891429 ], [ -78.702721, 37.891638 ], [ -78.702327, 37.891905 ], [ -78.70184, 37.892223 ], [ -78.701163, 37.892662 ], [ -78.700778, 37.892933 ], [ -78.70071, 37.892981 ], [ -78.700622, 37.893046 ], [ -78.700337, 37.893272 ], [ -78.69999, 37.89357 ], [ -78.699755, 37.8938 ], [ -78.699482, 37.894099 ], [ -78.699289, 37.894329 ], [ -78.698787, 37.894984 ], [ -78.698558, 37.895284 ], [ -78.69837, 37.895519 ], [ -78.698116, 37.895851 ], [ -78.697966, 37.896055 ], [ -78.697696, 37.896407 ], [ -78.697057, 37.897242 ], [ -78.696439, 37.898041 ], [ -78.695681, 37.899035 ], [ -78.695049, 37.899863 ], [ -78.694658, 37.900403 ], [ -78.694519, 37.900599 ], [ -78.694429, 37.900733 ], [ -78.693954, 37.901464 ], [ -78.693721, 37.901862 ], [ -78.693473, 37.902275 ], [ -78.693102, 37.902981 ], [ -78.692879, 37.903439 ], [ -78.692797, 37.903623 ], [ -78.692129, 37.905105 ], [ -78.691808, 37.905817 ], [ -78.691268, 37.906984 ], [ -78.690987, 37.907549 ], [ -78.690814, 37.907874 ], [ -78.690688, 37.908089 ], [ -78.690521, 37.908372 ], [ -78.690275, 37.908767 ], [ -78.689663, 37.909657 ], [ -78.689078, 37.910492 ], [ -78.685485, 37.915666 ], [ -78.684467, 37.917131 ], [ -78.682047, 37.920608 ], [ -78.681785, 37.92095 ], [ -78.681517, 37.921272 ], [ -78.681241, 37.921578 ], [ -78.68101, 37.921818 ], [ -78.680605, 37.922194 ], [ -78.68013, 37.922617 ], [ -78.679566, 37.923137 ], [ -78.679307, 37.923403 ], [ -78.678986, 37.92374 ], [ -78.678605, 37.924203 ], [ -78.678345, 37.924561 ], [ -78.678124, 37.924891 ], [ -78.677903, 37.925227 ], [ -78.677688, 37.925589 ], [ -78.677544, 37.925878 ], [ -78.67731, 37.926442 ], [ -78.676551, 37.928284 ], [ -78.676404, 37.928595 ], [ -78.676242, 37.928949 ], [ -78.676148, 37.929122 ], [ -78.675977, 37.929377 ], [ -78.675612, 37.929807 ], [ -78.675385, 37.930086 ], [ -78.675213, 37.930312 ], [ -78.675004, 37.930559 ], [ -78.674617, 37.931044 ], [ -78.67407, 37.931702 ], [ -78.673673, 37.932201 ], [ -78.673281, 37.9327 ], [ -78.672994, 37.933082 ], [ -78.672166, 37.934227 ], [ -78.671112, 37.935771 ], [ -78.670762, 37.936281 ], [ -78.670385, 37.936817 ], [ -78.669877, 37.937599 ], [ -78.668999, 37.93886 ], [ -78.667671, 37.940789 ], [ -78.666721, 37.942158 ], [ -78.666126, 37.943118 ], [ -78.665597, 37.944014 ], [ -78.665125, 37.944827 ], [ -78.664642, 37.945633 ], [ -78.664087, 37.946602 ], [ -78.663665, 37.947366 ], [ -78.663523, 37.947648 ], [ -78.663363, 37.948007 ], [ -78.66312, 37.948581 ], [ -78.662992, 37.948919 ], [ -78.662788, 37.949511 ], [ -78.662392, 37.950794 ], [ -78.662127, 37.951686 ], [ -78.661907, 37.952368 ], [ -78.6618, 37.952667 ], [ -78.661673, 37.952964 ], [ -78.661549, 37.953229 ], [ -78.661377, 37.953546 ], [ -78.661172, 37.953875 ], [ -78.660975, 37.954168 ], [ -78.660712, 37.954527 ], [ -78.660589, 37.954686 ], [ -78.660525, 37.954768 ], [ -78.660204, 37.955161 ], [ -78.659899, 37.955515 ], [ -78.65946, 37.956045 ], [ -78.659107, 37.956472 ], [ -78.658939, 37.95668 ], [ -78.658404, 37.957325 ], [ -78.658185, 37.957583 ], [ -78.657413, 37.958505 ], [ -78.65713, 37.958855 ], [ -78.65677, 37.959264 ], [ -78.656612, 37.959431 ], [ -78.656439, 37.95959 ], [ -78.656251, 37.959739 ], [ -78.656068, 37.959867 ], [ -78.655989, 37.959917 ], [ -78.655752, 37.960052 ], [ -78.655575, 37.96015 ], [ -78.655228, 37.960289 ], [ -78.654931, 37.960405 ], [ -78.653275, 37.960978 ], [ -78.652399, 37.961277 ], [ -78.651659, 37.961545 ], [ -78.651372, 37.96167 ], [ -78.651131, 37.961788 ], [ -78.650953, 37.961888 ], [ -78.65077, 37.962003 ], [ -78.650655, 37.962074 ], [ -78.650545, 37.96215 ], [ -78.650369, 37.962277 ], [ -78.650124, 37.962492 ], [ -78.649827, 37.962781 ], [ -78.649528, 37.963082 ], [ -78.649157, 37.963468 ], [ -78.648771, 37.96385 ], [ -78.648569, 37.964042 ], [ -78.648236, 37.964318 ], [ -78.647928, 37.964546 ], [ -78.647355, 37.964951 ], [ -78.646421, 37.965624 ], [ -78.646034, 37.965897 ], [ -78.645591, 37.966218 ], [ -78.645351, 37.966376 ], [ -78.645051, 37.966569 ], [ -78.644735, 37.966754 ], [ -78.644581, 37.96684 ], [ -78.6444, 37.966936 ], [ -78.643915, 37.967163 ], [ -78.643555, 37.967319 ], [ -78.643147, 37.967465 ], [ -78.642853, 37.967561 ], [ -78.642519, 37.96766 ], [ -78.642395, 37.967695 ], [ -78.642095, 37.967768 ], [ -78.641871, 37.967823 ], [ -78.641449, 37.967916 ], [ -78.640993, 37.967991 ], [ -78.640408, 37.968066 ], [ -78.639997, 37.968103 ], [ -78.639496, 37.96813 ], [ -78.638995, 37.968136 ], [ -78.638434, 37.968125 ], [ -78.637944, 37.9681 ], [ -78.63612, 37.967958 ], [ -78.635136, 37.967873 ], [ -78.633802, 37.96777 ], [ -78.632073, 37.967631 ], [ -78.631801, 37.967611 ], [ -78.630935, 37.967546 ], [ -78.630424, 37.967503 ], [ -78.629697, 37.967442 ], [ -78.628686, 37.967361 ], [ -78.626167, 37.967159 ], [ -78.623282, 37.966927 ], [ -78.622258, 37.96685 ], [ -78.621932, 37.966824 ], [ -78.620819, 37.966736 ], [ -78.620381, 37.966716 ], [ -78.620004, 37.966712 ], [ -78.619679, 37.966717 ], [ -78.61937, 37.966745 ], [ -78.619064, 37.966787 ], [ -78.618761, 37.966844 ], [ -78.618523, 37.9669 ], [ -78.618222, 37.966977 ], [ -78.617837, 37.967103 ], [ -78.617525, 37.967224 ], [ -78.617264, 37.967333 ], [ -78.616866, 37.967526 ], [ -78.61666, 37.96764 ], [ -78.616487, 37.967735 ], [ -78.616266, 37.967872 ], [ -78.615844, 37.968137 ], [ -78.615555, 37.968338 ], [ -78.615229, 37.968577 ], [ -78.614931, 37.968831 ], [ -78.614607, 37.969142 ], [ -78.614381, 37.96937 ], [ -78.614151, 37.969646 ], [ -78.613964, 37.96988 ], [ -78.613494, 37.970554 ], [ -78.61301, 37.971246 ], [ -78.612831, 37.971512 ], [ -78.612279, 37.972333 ], [ -78.611229, 37.97389 ], [ -78.610819, 37.974494 ], [ -78.610719, 37.974624 ], [ -78.610499, 37.974897 ], [ -78.610319, 37.975118 ], [ -78.610116, 37.975331 ], [ -78.609966, 37.975469 ], [ -78.609796, 37.975624 ], [ -78.609591, 37.975796 ], [ -78.609317, 37.976004 ], [ -78.609071, 37.976176 ], [ -78.608849, 37.976327 ], [ -78.608744, 37.97639 ], [ -78.608365, 37.976619 ], [ -78.608101, 37.976752 ], [ -78.607845, 37.976869 ], [ -78.607584, 37.976978 ], [ -78.60725, 37.977103 ], [ -78.606977, 37.977192 ], [ -78.606625, 37.977297 ], [ -78.606266, 37.977388 ], [ -78.606123, 37.977418 ], [ -78.605902, 37.977465 ], [ -78.605646, 37.97752 ], [ -78.605621, 37.977522 ], [ -78.605549, 37.977538 ], [ -78.60423, 37.977756 ], [ -78.602588, 37.978034 ], [ -78.602162, 37.978122 ], [ -78.601825, 37.978203 ], [ -78.601492, 37.978293 ], [ -78.601094, 37.978414 ], [ -78.60071, 37.978547 ], [ -78.600334, 37.978694 ], [ -78.599967, 37.978854 ], [ -78.599486, 37.979083 ], [ -78.599163, 37.979252 ], [ -78.598789, 37.97947 ], [ -78.598549, 37.979624 ], [ -78.597946, 37.980033 ], [ -78.596889, 37.98075 ], [ -78.595137, 37.981939 ], [ -78.593704, 37.982911 ], [ -78.592376, 37.98382 ], [ -78.590854, 37.984906 ], [ -78.590225, 37.985373 ], [ -78.588999, 37.98631 ], [ -78.588012, 37.9871 ], [ -78.587089, 37.987859 ], [ -78.586722, 37.988171 ], [ -78.586183, 37.988631 ], [ -78.585023, 37.989655 ], [ -78.583908, 37.990662 ], [ -78.583686, 37.990885 ], [ -78.583478, 37.991116 ], [ -78.583203, 37.991447 ], [ -78.583057, 37.991641 ], [ -78.582889, 37.99189 ], [ -78.582734, 37.992152 ], [ -78.582584, 37.992445 ], [ -78.582451, 37.992743 ], [ -78.582318, 37.993104 ], [ -78.582229, 37.993396 ], [ -78.582158, 37.993692 ], [ -78.582061, 37.994255 ], [ -78.581989, 37.994788 ], [ -78.581919, 37.9952 ], [ -78.581831, 37.99573 ], [ -78.581596, 37.997239 ], [ -78.581525, 37.997665 ], [ -78.58147, 37.998088 ], [ -78.581083, 38.000517 ], [ -78.580993, 38.001016 ], [ -78.580912, 38.001332 ], [ -78.580857, 38.001514 ], [ -78.580851, 38.001532 ], [ -78.580827, 38.001607 ], [ -78.580788, 38.001711 ], [ -78.580764, 38.001783 ], [ -78.580638, 38.002087 ], [ -78.580501, 38.002397 ], [ -78.580338, 38.002682 ], [ -78.580176, 38.002939 ], [ -78.580026, 38.003155 ], [ -78.57984, 38.003394 ], [ -78.579631, 38.003641 ], [ -78.579528, 38.003748 ], [ -78.579258, 38.004014 ], [ -78.578985, 38.00426 ], [ -78.578784, 38.004426 ], [ -78.578575, 38.004584 ], [ -78.578379, 38.004723 ], [ -78.578122, 38.004899 ], [ -78.577709, 38.005151 ], [ -78.577431, 38.005306 ], [ -78.577141, 38.005444 ], [ -78.576923, 38.005542 ], [ -78.576628, 38.005666 ], [ -78.576327, 38.005766 ], [ -78.576154, 38.005828 ], [ -78.575371, 38.006031 ], [ -78.574274, 38.006313 ], [ -78.573929, 38.006397 ], [ -78.573678, 38.006459 ], [ -78.5731, 38.006602 ], [ -78.572544, 38.006742 ], [ -78.570845, 38.007165 ], [ -78.570536, 38.007245 ], [ -78.570147, 38.007346 ], [ -78.569511, 38.007502 ], [ -78.568866, 38.007677 ], [ -78.568449, 38.007795 ], [ -78.568216, 38.007865 ], [ -78.567861, 38.007984 ], [ -78.567483, 38.008116 ], [ -78.567008, 38.00831 ], [ -78.566642, 38.008471 ], [ -78.566222, 38.008672 ], [ -78.565813, 38.008887 ], [ -78.565381, 38.009126 ], [ -78.564818, 38.009422 ], [ -78.564544, 38.009563 ], [ -78.564196, 38.009735 ], [ -78.564075, 38.009787 ], [ -78.56369, 38.009944 ], [ -78.56326, 38.010103 ], [ -78.562849, 38.010238 ], [ -78.562529, 38.010332 ], [ -78.562124, 38.010438 ], [ -78.561805, 38.010515 ], [ -78.561564, 38.010564 ], [ -78.56093, 38.010675 ], [ -78.560028, 38.010845 ], [ -78.558824, 38.011064 ], [ -78.558024, 38.011219 ], [ -78.557648, 38.011286 ], [ -78.557386, 38.011333 ], [ -78.557058, 38.011387 ], [ -78.555118, 38.011755 ], [ -78.554112, 38.011931 ], [ -78.552878, 38.012156 ], [ -78.552449, 38.01225 ], [ -78.552186, 38.012316 ], [ -78.551829, 38.012417 ], [ -78.551365, 38.012562 ], [ -78.55109, 38.012655 ], [ -78.550658, 38.012829 ], [ -78.550236, 38.013017 ], [ -78.549599, 38.013364 ], [ -78.549376, 38.013492 ], [ -78.549058, 38.013698 ], [ -78.548469, 38.01411 ], [ -78.547659, 38.014674 ], [ -78.547468, 38.014808 ], [ -78.54736, 38.014884 ], [ -78.547042, 38.015096 ], [ -78.546611, 38.015362 ], [ -78.546269, 38.015559 ], [ -78.54592, 38.01574 ], [ -78.545223, 38.016069 ], [ -78.544841, 38.016247 ], [ -78.543906, 38.016682 ], [ -78.543654, 38.016806 ], [ -78.54333, 38.016982 ], [ -78.542733, 38.017318 ], [ -78.542466, 38.017467 ], [ -78.539711, 38.018979 ], [ -78.536725, 38.020664 ], [ -78.535885, 38.021132 ], [ -78.535518, 38.021335 ], [ -78.534742, 38.021766 ], [ -78.534188, 38.022073 ], [ -78.532955, 38.02276 ], [ -78.532173, 38.023196 ], [ -78.531193, 38.023747 ], [ -78.531125, 38.023792 ], [ -78.53075, 38.024045 ], [ -78.530445, 38.024274 ], [ -78.530203, 38.024476 ], [ -78.530016, 38.024649 ], [ -78.529931, 38.024733 ], [ -78.52985, 38.024806 ], [ -78.529798, 38.024854 ], [ -78.529758, 38.024894 ], [ -78.529598, 38.025065 ], [ -78.529327, 38.025386 ], [ -78.52916, 38.025608 ], [ -78.528945, 38.025933 ], [ -78.5288, 38.026176 ], [ -78.528672, 38.026426 ], [ -78.52861, 38.026566 ], [ -78.528405, 38.027066 ], [ -78.52833, 38.027311 ], [ -78.528283, 38.02751 ], [ -78.528235, 38.027689 ], [ -78.528151, 38.028145 ], [ -78.527582, 38.03105 ], [ -78.527126, 38.033402 ], [ -78.52703, 38.033972 ], [ -78.526914, 38.034782 ], [ -78.526868, 38.035166 ], [ -78.52679, 38.036035 ], [ -78.526753, 38.036647 ], [ -78.526715, 38.03781 ], [ -78.526642, 38.040878 ], [ -78.526607, 38.042081 ], [ -78.526584, 38.042473 ], [ -78.526544, 38.042863 ], [ -78.52645, 38.043462 ], [ -78.526353, 38.043907 ], [ -78.526306, 38.044099 ], [ -78.526225, 38.044382 ], [ -78.526103, 38.044762 ], [ -78.525978, 38.045116 ], [ -78.52595, 38.045183 ], [ -78.525619, 38.045973 ], [ -78.525226, 38.046882 ], [ -78.524837, 38.047794 ], [ -78.524807, 38.047861 ], [ -78.524712, 38.048073 ], [ -78.523664, 38.050524 ], [ -78.523608, 38.050633 ], [ -78.523449, 38.050945 ], [ -78.523194, 38.051371 ], [ -78.522992, 38.051667 ], [ -78.522896, 38.051793 ], [ -78.522708, 38.052033 ], [ -78.522379, 38.052403 ], [ -78.522049, 38.052728 ], [ -78.521736, 38.053004 ], [ -78.521375, 38.053289 ], [ -78.521061, 38.053512 ], [ -78.520792, 38.053687 ], [ -78.520433, 38.053898 ], [ -78.5202, 38.054028 ], [ -78.519924, 38.054166 ], [ -78.519561, 38.054329 ], [ -78.519179, 38.054486 ], [ -78.518827, 38.054612 ], [ -78.518437, 38.054736 ], [ -78.518106, 38.054829 ], [ -78.517883, 38.054877 ], [ -78.517638, 38.05494 ], [ -78.517298, 38.055006 ], [ -78.51674, 38.055093 ], [ -78.515503, 38.055228 ], [ -78.513125, 38.055506 ], [ -78.51298, 38.05552 ], [ -78.511721, 38.055664 ], [ -78.510089, 38.05585 ], [ -78.509444, 38.055931 ], [ -78.508892, 38.056018 ], [ -78.508324, 38.056121 ], [ -78.50762, 38.056269 ], [ -78.507101, 38.056364 ], [ -78.5063, 38.056529 ], [ -78.504207, 38.056975 ], [ -78.503544, 38.057129 ], [ -78.50332, 38.057173 ], [ -78.50218, 38.05739 ], [ -78.501769, 38.057476 ], [ -78.501588, 38.057518 ], [ -78.501288, 38.05758 ], [ -78.500918, 38.057644 ], [ -78.50053, 38.057699 ], [ -78.50025, 38.057721 ], [ -78.49999, 38.057731 ], [ -78.4996, 38.057738 ], [ -78.499258, 38.057729 ], [ -78.499228, 38.057727 ], [ -78.498789, 38.057695 ], [ -78.498509, 38.057667 ], [ -78.498249, 38.05764 ], [ -78.497868, 38.057604 ], [ -78.497658, 38.057584 ], [ -78.497235, 38.057537 ], [ -78.496848, 38.057489 ], [ -78.495893, 38.057371 ], [ -78.494978, 38.057279 ], [ -78.49472, 38.057173 ], [ -78.494659, 38.057142 ], [ -78.494592, 38.057093 ], [ -78.494549, 38.057047 ], [ -78.494516, 38.056995 ], [ -78.494502, 38.05695 ], [ -78.494493, 38.056874 ], [ -78.494502, 38.056798 ], [ -78.494522, 38.056739 ], [ -78.494562, 38.056669 ], [ -78.494623, 38.05661 ], [ -78.494697, 38.056562 ], [ -78.494781, 38.056525 ], [ -78.494872, 38.056502 ], [ -78.49496, 38.056493 ], [ -78.495044, 38.0565 ], [ -78.495109, 38.056516 ], [ -78.495169, 38.056541 ], [ -78.495238, 38.056584 ], [ -78.49528, 38.056617 ], [ -78.495339, 38.05668 ], [ -78.495381, 38.056751 ], [ -78.495402, 38.056811 ], [ -78.495415, 38.056894 ], [ -78.495413, 38.056998 ], [ -78.495388, 38.057116 ], [ -78.49528, 38.057239 ], [ -78.495007, 38.057577 ], [ -78.494845, 38.057747 ], [ -78.494782, 38.057825 ], [ -78.494593, 38.05807 ], [ -78.494413, 38.058298 ], [ -78.494268, 38.05847 ], [ -78.494235, 38.058509 ], [ -78.494159, 38.058601 ], [ -78.493967, 38.058833 ], [ -78.493505, 38.059401 ], [ -78.493364, 38.059586 ], [ -78.492889, 38.060182 ], [ -78.492564, 38.060616 ], [ -78.492196, 38.061101 ], [ -78.491916, 38.061468 ], [ -78.491724, 38.061722 ], [ -78.491723, 38.061722 ], [ -78.491578, 38.061897 ], [ -78.491244, 38.062293 ], [ -78.490863, 38.062734 ], [ -78.490477, 38.063153 ], [ -78.490269, 38.06338 ], [ -78.489937, 38.063742 ], [ -78.48969, 38.064008 ], [ -78.489478, 38.064259 ], [ -78.489344, 38.064409 ], [ -78.489289, 38.06447 ], [ -78.489212, 38.064554 ], [ -78.488761, 38.065053 ], [ -78.48815, 38.065739 ], [ -78.488116, 38.065779 ], [ -78.487867, 38.06605 ], [ -78.48713, 38.06686 ], [ -78.486995, 38.067008 ], [ -78.486825, 38.067194 ], [ -78.486343, 38.067727 ], [ -78.486218, 38.067866 ], [ -78.486208, 38.067877 ], [ -78.486134, 38.067959 ], [ -78.48576, 38.068363 ], [ -78.485475, 38.06867 ], [ -78.485154, 38.069027 ], [ -78.484295, 38.070023 ], [ -78.484063, 38.070271 ], [ -78.483776, 38.070614 ], [ -78.483281, 38.071164 ], [ -78.482433, 38.07211 ], [ -78.480968, 38.073741 ], [ -78.480778, 38.073943 ], [ -78.480706, 38.07403 ], [ -78.480376, 38.074401 ], [ -78.479882, 38.074956 ], [ -78.479801, 38.075034 ], [ -78.479272, 38.075634 ], [ -78.478606, 38.076375 ], [ -78.478527, 38.076469 ], [ -78.478367, 38.076647 ], [ -78.477091, 38.078062 ], [ -78.476397, 38.078846 ], [ -78.475743, 38.079571 ], [ -78.474543, 38.08091 ], [ -78.474163, 38.081335 ], [ -78.473969, 38.081577 ], [ -78.473788, 38.081788 ], [ -78.473613, 38.082014 ], [ -78.47347, 38.082218 ], [ -78.472971, 38.083082 ], [ -78.472639, 38.083666 ], [ -78.472264, 38.084319 ], [ -78.471709, 38.085285 ], [ -78.471146, 38.086271 ], [ -78.47079, 38.086895 ], [ -78.470583, 38.087258 ], [ -78.47026, 38.087825 ], [ -78.469568, 38.089039 ], [ -78.468607, 38.090712 ], [ -78.468501, 38.090897 ], [ -78.468139, 38.091557 ], [ -78.468043, 38.091733 ], [ -78.467922, 38.09192 ], [ -78.467732, 38.092218 ], [ -78.46735, 38.0929 ], [ -78.466766, 38.093924 ], [ -78.466497, 38.09437 ], [ -78.466369, 38.094558 ], [ -78.46599, 38.095057 ], [ -78.465526, 38.09564 ], [ -78.465381, 38.095816 ], [ -78.464933, 38.096381 ], [ -78.464463, 38.096962 ], [ -78.464049, 38.097474 ], [ -78.463974, 38.097573 ], [ -78.463441, 38.098232 ], [ -78.46294, 38.098874 ], [ -78.462231, 38.099765 ], [ -78.461478, 38.100721 ], [ -78.460943, 38.101395 ], [ -78.460544, 38.101882 ], [ -78.460009, 38.102564 ], [ -78.459568, 38.103126 ], [ -78.459337, 38.103403 ], [ -78.458603, 38.10429 ], [ -78.457804, 38.105297 ], [ -78.45751, 38.105695 ], [ -78.4569, 38.106619 ], [ -78.456598, 38.107068 ], [ -78.45544, 38.108845 ], [ -78.454988, 38.109578 ], [ -78.454476, 38.110311 ], [ -78.454296, 38.110569 ], [ -78.454206, 38.110708 ], [ -78.454093, 38.110899 ], [ -78.453942, 38.111128 ], [ -78.453769, 38.111409 ], [ -78.453294, 38.112125 ], [ -78.453172, 38.112318 ], [ -78.452856, 38.112817 ], [ -78.452688, 38.11307 ], [ -78.452602, 38.113223 ], [ -78.451975, 38.114186 ], [ -78.451686, 38.11461 ], [ -78.45106, 38.115568 ], [ -78.450908, 38.115798 ], [ -78.450496, 38.11642 ], [ -78.450419, 38.116537 ], [ -78.45032, 38.116697 ], [ -78.450137, 38.116993 ], [ -78.449702, 38.117634 ], [ -78.449172, 38.118448 ], [ -78.448773, 38.119065 ], [ -78.448006, 38.120242 ], [ -78.447677, 38.120726 ], [ -78.447299, 38.121219 ], [ -78.44692, 38.121631 ], [ -78.446411, 38.122124 ], [ -78.4458, 38.12267 ], [ -78.444661, 38.123687 ], [ -78.442392, 38.125724 ], [ -78.441529, 38.126494 ], [ -78.440922, 38.127044 ], [ -78.440006, 38.127866 ], [ -78.439371, 38.128436 ], [ -78.437997, 38.129669 ], [ -78.437902, 38.129754 ], [ -78.437019, 38.130549 ], [ -78.436453, 38.131059 ], [ -78.436187, 38.131299 ], [ -78.435995, 38.13147 ], [ -78.435251, 38.132172 ], [ -78.435106, 38.132303 ], [ -78.434673, 38.132753 ], [ -78.434293, 38.13317 ], [ -78.433695, 38.133887 ], [ -78.433416, 38.134269 ], [ -78.433195, 38.134572 ], [ -78.432173, 38.13616 ], [ -78.430917, 38.138131 ], [ -78.430468, 38.138847 ], [ -78.429836, 38.139833 ], [ -78.429464, 38.140424 ], [ -78.428859, 38.141359 ], [ -78.428348, 38.142178 ], [ -78.428275, 38.142291 ], [ -78.427887, 38.14289 ], [ -78.427641, 38.143278 ], [ -78.427277, 38.143851 ], [ -78.427263, 38.143873 ], [ -78.425718, 38.146293 ], [ -78.4249, 38.147586 ], [ -78.423982, 38.149017 ], [ -78.423879, 38.149181 ], [ -78.4234, 38.149936 ], [ -78.422346, 38.1516 ], [ -78.42208, 38.151996 ], [ -78.421684, 38.152621 ], [ -78.421337, 38.15319 ], [ -78.420383, 38.154692 ], [ -78.419605, 38.155908 ], [ -78.417659, 38.158962 ], [ -78.415009, 38.163121 ], [ -78.414626, 38.163716 ], [ -78.414541, 38.163851 ], [ -78.414293, 38.164245 ], [ -78.412771, 38.16663 ], [ -78.41231, 38.167345 ], [ -78.411781, 38.168185 ], [ -78.410521, 38.170164 ], [ -78.410064, 38.170881 ], [ -78.408661, 38.173081 ], [ -78.408289, 38.173661 ], [ -78.406754, 38.176057 ], [ -78.405791, 38.177582 ], [ -78.405633, 38.177824 ], [ -78.404819, 38.179105 ], [ -78.40451, 38.179581 ], [ -78.403702, 38.180857 ], [ -78.403534, 38.181116 ], [ -78.40229, 38.183084 ], [ -78.402, 38.183534 ], [ -78.401567, 38.184219 ], [ -78.401491, 38.184329 ], [ -78.400918, 38.18523 ], [ -78.400512, 38.185861 ], [ -78.399321, 38.187671 ], [ -78.399195, 38.187856 ], [ -78.399077, 38.188041 ], [ -78.398689, 38.188617 ], [ -78.398558, 38.18882 ], [ -78.397589, 38.190295 ], [ -78.3974, 38.190566 ], [ -78.397207, 38.19086 ], [ -78.396877, 38.191349 ], [ -78.396731, 38.191574 ], [ -78.396016, 38.192652 ], [ -78.395969, 38.192724 ], [ -78.395198, 38.193895 ], [ -78.395145, 38.193978 ], [ -78.395092, 38.194057 ], [ -78.395078, 38.194078 ], [ -78.394787, 38.194511 ], [ -78.394461, 38.19501 ], [ -78.394425, 38.195065 ], [ -78.393867, 38.195904 ], [ -78.393697, 38.196162 ], [ -78.392569, 38.197862 ], [ -78.392356, 38.198186 ], [ -78.391791, 38.199049 ], [ -78.3916, 38.199341 ], [ -78.391424, 38.19959 ], [ -78.391056, 38.200141 ], [ -78.390364, 38.201178 ], [ -78.388697, 38.203713 ], [ -78.387884, 38.204937 ], [ -78.387682, 38.20524 ], [ -78.387424, 38.205639 ], [ -78.386997, 38.206278 ], [ -78.386781, 38.206604 ], [ -78.386138, 38.207581 ], [ -78.385992, 38.207804 ], [ -78.385531, 38.2085 ], [ -78.38498, 38.209334 ], [ -78.384853, 38.209537 ], [ -78.383889, 38.210987 ], [ -78.383519, 38.211533 ], [ -78.383408, 38.211705 ], [ -78.383194, 38.212041 ], [ -78.382209, 38.213531 ], [ -78.381949, 38.213932 ], [ -78.381401, 38.214759 ], [ -78.380953, 38.215433 ], [ -78.380697, 38.215818 ], [ -78.380472, 38.216158 ], [ -78.379118, 38.218196 ], [ -78.378999, 38.218384 ], [ -78.37862, 38.21895 ], [ -78.377882, 38.220071 ], [ -78.377739, 38.220289 ], [ -78.377587, 38.220523 ], [ -78.376908, 38.221535 ], [ -78.376698, 38.221851 ], [ -78.376516, 38.222128 ], [ -78.375966, 38.222959 ], [ -78.375503, 38.223658 ], [ -78.374143, 38.225716 ], [ -78.373741, 38.226317 ], [ -78.372465, 38.228246 ], [ -78.371604, 38.229546 ], [ -78.371224, 38.230126 ], [ -78.37075, 38.230832 ], [ -78.370117, 38.231792 ], [ -78.369796, 38.23229 ], [ -78.369344, 38.233031 ], [ -78.369247, 38.233202 ], [ -78.369201, 38.233285 ], [ -78.369089, 38.233499 ], [ -78.368757, 38.234191 ], [ -78.368537, 38.23469 ], [ -78.368285, 38.235273 ], [ -78.367348, 38.237406 ], [ -78.367125, 38.237924 ], [ -78.366876, 38.23848 ], [ -78.366632, 38.239054 ], [ -78.366538, 38.239263 ], [ -78.366315, 38.239761 ], [ -78.365981, 38.240523 ], [ -78.365112, 38.242495 ], [ -78.364536, 38.243815 ], [ -78.364277, 38.244425 ], [ -78.363872, 38.245322 ], [ -78.363644, 38.245831 ], [ -78.363475, 38.246227 ], [ -78.363324, 38.246579 ], [ -78.363065, 38.24716 ], [ -78.362399, 38.248697 ], [ -78.362213, 38.249115 ], [ -78.36185, 38.249928 ], [ -78.360994, 38.251906 ], [ -78.360894, 38.252122 ], [ -78.360732, 38.252472 ], [ -78.359818, 38.254556 ], [ -78.359604, 38.255032 ], [ -78.358451, 38.257672 ], [ -78.35837, 38.257854 ], [ -78.357235, 38.260418 ], [ -78.35697, 38.261034 ], [ -78.356749, 38.261526 ], [ -78.356328, 38.262487 ], [ -78.3557, 38.26392 ], [ -78.355441, 38.264489 ], [ -78.354985, 38.265534 ], [ -78.354199, 38.267311 ], [ -78.354014, 38.267697 ], [ -78.353899, 38.267927 ], [ -78.353632, 38.268419 ], [ -78.353386, 38.268835 ], [ -78.353012, 38.269405 ], [ -78.352727, 38.269807 ], [ -78.352433, 38.270193 ], [ -78.351176, 38.271816 ], [ -78.35069, 38.272444 ], [ -78.350332, 38.272914 ], [ -78.349867, 38.273496 ], [ -78.349659, 38.273731 ], [ -78.349448, 38.273949 ], [ -78.349246, 38.274133 ], [ -78.348925, 38.274393 ], [ -78.348653, 38.274592 ], [ -78.348309, 38.274816 ], [ -78.346752, 38.275754 ], [ -78.345609, 38.276449 ], [ -78.34394, 38.277447 ], [ -78.343411, 38.277789 ], [ -78.343205, 38.277938 ], [ -78.342906, 38.278167 ], [ -78.342692, 38.278348 ], [ -78.342621, 38.27841 ], [ -78.342399, 38.278622 ], [ -78.342335, 38.278686 ], [ -78.342171, 38.278857 ], [ -78.341631, 38.279482 ], [ -78.341204, 38.280003 ], [ -78.341139, 38.280089 ], [ -78.341053, 38.280202 ], [ -78.340551, 38.280804 ], [ -78.34033, 38.281097 ], [ -78.339739, 38.281771 ], [ -78.337121, 38.284947 ], [ -78.335554, 38.286807 ], [ -78.334912, 38.287652 ], [ -78.334363, 38.288479 ], [ -78.333901, 38.289321 ], [ -78.332891, 38.291302 ], [ -78.33264, 38.291856 ], [ -78.332046, 38.29316 ], [ -78.331547, 38.294091 ], [ -78.33002, 38.297253 ], [ -78.328705, 38.299896 ], [ -78.328454, 38.300437 ], [ -78.327604, 38.302025 ], [ -78.326529, 38.303681 ], [ -78.325643, 38.304891 ], [ -78.325058, 38.305662 ], [ -78.32399, 38.30691 ], [ -78.3236, 38.307359 ], [ -78.323233, 38.30771 ], [ -78.322626, 38.308335 ], [ -78.320591, 38.310229 ], [ -78.317859, 38.312439 ], [ -78.317136, 38.313055 ], [ -78.314274, 38.315396 ], [ -78.313204, 38.316275 ], [ -78.313084, 38.316374 ], [ -78.312238, 38.317069 ], [ -78.31127, 38.317874 ], [ -78.310555, 38.318624 ], [ -78.308339, 38.321068 ], [ -78.307189, 38.322326 ], [ -78.306432, 38.323147 ], [ -78.305157, 38.324565 ], [ -78.299683, 38.33067 ], [ -78.296227, 38.334366 ], [ -78.294775, 38.336025 ], [ -78.294422, 38.336434 ], [ -78.293518, 38.337393 ], [ -78.292283, 38.338774 ], [ -78.290905, 38.340301 ], [ -78.289054, 38.34231 ], [ -78.287698, 38.343781 ], [ -78.286127, 38.345511 ], [ -78.284805, 38.346961 ], [ -78.284197, 38.347653 ], [ -78.281261, 38.350904 ], [ -78.27928, 38.353063 ], [ -78.277989, 38.354462 ], [ -78.276967, 38.355626 ], [ -78.275482, 38.357205 ], [ -78.275108, 38.357686 ], [ -78.273995, 38.359116 ], [ -78.272612, 38.361053 ], [ -78.269402, 38.365549 ], [ -78.268281, 38.367067 ], [ -78.26707, 38.368543 ], [ -78.266209, 38.369424 ], [ -78.26463, 38.370803 ], [ -78.263855, 38.371431 ], [ -78.262777, 38.372178 ], [ -78.262167, 38.372601 ], [ -78.258589, 38.375046 ], [ -78.253931, 38.378242 ], [ -78.253419, 38.378585 ], [ -78.252722, 38.379065 ], [ -78.251038, 38.380279 ], [ -78.249725, 38.3814 ], [ -78.248824, 38.38242 ], [ -78.247019, 38.384778 ], [ -78.243045, 38.39007 ], [ -78.242379, 38.390835 ], [ -78.241798, 38.391304 ], [ -78.241358, 38.391649 ], [ -78.240659, 38.392107 ], [ -78.239791, 38.392562 ], [ -78.236781, 38.394134 ], [ -78.234618, 38.395478 ], [ -78.233524, 38.396238 ], [ -78.231366, 38.397688 ], [ -78.230593, 38.398159 ], [ -78.229713, 38.398631 ], [ -78.22927, 38.398846 ], [ -78.227176, 38.399941 ], [ -78.224001, 38.401573 ], [ -78.221687, 38.402762 ], [ -78.220927, 38.403115 ], [ -78.219583, 38.403494 ], [ -78.217956, 38.403869 ], [ -78.216834, 38.404329 ], [ -78.216198, 38.404653 ], [ -78.215673, 38.404943 ], [ -78.2147, 38.405692 ], [ -78.214341, 38.406017 ], [ -78.211846, 38.409013 ], [ -78.211205, 38.409859 ], [ -78.208931, 38.412831 ], [ -78.207891, 38.413946 ], [ -78.207388, 38.414459 ], [ -78.206848, 38.414885 ], [ -78.20502, 38.416246 ], [ -78.204339, 38.416746 ], [ -78.203587, 38.417231 ], [ -78.201789, 38.418025 ], [ -78.199931, 38.418788 ], [ -78.198775, 38.419213 ], [ -78.197516, 38.419599 ], [ -78.196891, 38.419728 ], [ -78.193593, 38.420311 ], [ -78.192656, 38.420508 ], [ -78.191772, 38.420736 ], [ -78.190615, 38.421137 ], [ -78.189756, 38.421485 ], [ -78.189131, 38.421795 ], [ -78.188009, 38.422501 ], [ -78.186635, 38.423265 ], [ -78.185396, 38.423841 ], [ -78.184545, 38.424162 ], [ -78.179643, 38.425692 ], [ -78.176595, 38.426575 ], [ -78.175037, 38.427149 ], [ -78.174014, 38.427529 ], [ -78.171007, 38.428688 ], [ -78.169272, 38.429381 ], [ -78.165511, 38.430827 ], [ -78.164119, 38.431371 ], [ -78.162591, 38.431967 ], [ -78.161653, 38.432308 ], [ -78.160661, 38.43271 ], [ -78.160269, 38.432865 ], [ -78.159874, 38.433009 ], [ -78.157491, 38.433942 ], [ -78.157022, 38.434133 ], [ -78.156281, 38.434403 ], [ -78.154122, 38.435214 ], [ -78.152887, 38.435503 ], [ -78.151935, 38.435645 ], [ -78.151237, 38.435723 ], [ -78.149391, 38.435895 ], [ -78.145341, 38.436294 ], [ -78.143178, 38.436516 ], [ -78.141588, 38.436723 ], [ -78.140742, 38.436927 ], [ -78.139967, 38.43716 ], [ -78.139029, 38.437478 ], [ -78.138213, 38.437833 ], [ -78.13673, 38.438732 ], [ -78.135769, 38.439493 ], [ -78.133667, 38.441543 ], [ -78.13309, 38.442092 ], [ -78.132637, 38.442565 ], [ -78.131362, 38.443807 ], [ -78.131197, 38.443972 ], [ -78.13069, 38.444456 ], [ -78.13004, 38.445093 ], [ -78.129654, 38.445515 ], [ -78.129431, 38.445788 ], [ -78.129306, 38.445939 ], [ -78.129135, 38.446147 ], [ -78.126535, 38.449414 ], [ -78.12559, 38.450596 ], [ -78.124937, 38.451403 ], [ -78.12463, 38.451786 ], [ -78.122999, 38.453819 ], [ -78.12268, 38.454222 ], [ -78.122212, 38.454799 ], [ -78.122012, 38.455018 ], [ -78.121815, 38.455209 ], [ -78.121657, 38.455346 ], [ -78.121484, 38.455481 ], [ -78.121283, 38.455622 ], [ -78.121072, 38.455755 ], [ -78.120838, 38.455889 ], [ -78.120605, 38.456007 ], [ -78.120411, 38.456093 ], [ -78.120081, 38.45622 ], [ -78.11988, 38.456286 ], [ -78.119617, 38.456362 ], [ -78.119481, 38.456395 ], [ -78.119029, 38.456484 ], [ -78.118859, 38.456513 ], [ -78.118556, 38.456543 ], [ -78.118252, 38.456558 ], [ -78.117886, 38.45656 ], [ -78.117582, 38.456545 ], [ -78.117215, 38.456509 ], [ -78.11691, 38.456463 ], [ -78.116669, 38.456417 ], [ -78.116299, 38.456332 ], [ -78.114395, 38.455867 ], [ -78.113075, 38.455549 ], [ -78.112183, 38.455337 ], [ -78.111983, 38.455288 ], [ -78.110622, 38.454956 ], [ -78.109647, 38.454713 ], [ -78.109318, 38.454619 ], [ -78.108646, 38.454427 ], [ -78.108148, 38.454266 ], [ -78.107826, 38.454152 ], [ -78.107433, 38.454006 ], [ -78.106215, 38.453523 ], [ -78.103244, 38.452284 ], [ -78.103113, 38.45223 ], [ -78.101465, 38.451517 ], [ -78.100793, 38.451267 ], [ -78.099999, 38.450965 ], [ -78.099633, 38.450843 ], [ -78.099366, 38.450762 ], [ -78.098981, 38.450649 ], [ -78.098604, 38.450547 ], [ -78.098262, 38.45046 ], [ -78.09792, 38.450384 ], [ -78.096808, 38.450181 ], [ -78.096151, 38.450083 ], [ -78.095446, 38.449969 ], [ -78.093727, 38.449707 ], [ -78.092677, 38.449547 ], [ -78.092158, 38.449481 ], [ -78.091766, 38.449445 ], [ -78.091635, 38.449437 ], [ -78.091391, 38.44943 ], [ -78.09088, 38.449437 ], [ -78.090541, 38.449459 ], [ -78.090154, 38.449505 ], [ -78.090027, 38.449526 ], [ -78.089761, 38.44957 ], [ -78.089091, 38.449707 ], [ -78.08849, 38.449845 ], [ -78.087312, 38.450134 ], [ -78.086546, 38.450314 ], [ -78.086092, 38.450427 ], [ -78.085716, 38.450516 ], [ -78.085217, 38.45064 ], [ -78.083614, 38.45102 ], [ -78.082588, 38.451268 ], [ -78.081682, 38.451496 ], [ -78.080934, 38.451707 ], [ -78.080808, 38.451743 ], [ -78.080252, 38.451928 ], [ -78.080061, 38.451995 ], [ -78.079356, 38.452244 ], [ -78.079056, 38.452366 ], [ -78.077758, 38.452899 ], [ -78.07693, 38.453218 ], [ -78.07648, 38.453363 ], [ -78.075972, 38.453504 ], [ -78.075519, 38.453613 ], [ -78.075245, 38.453672 ], [ -78.074633, 38.453773 ], [ -78.073634, 38.453917 ], [ -78.073086, 38.453985 ], [ -78.071708, 38.454165 ], [ -78.070367, 38.45434 ], [ -78.069606, 38.454439 ], [ -78.065196, 38.455001 ], [ -78.0636, 38.455212 ], [ -78.062967, 38.455296 ], [ -78.062279, 38.455383 ], [ -78.061807, 38.45545 ], [ -78.061375, 38.455516 ], [ -78.060496, 38.455651 ], [ -78.059099, 38.455874 ], [ -78.058415, 38.455997 ], [ -78.057861, 38.456107 ], [ -78.057398, 38.456211 ], [ -78.057094, 38.456284 ], [ -78.055369, 38.456762 ], [ -78.054558, 38.456978 ], [ -78.05416, 38.457057 ], [ -78.053923, 38.4571 ], [ -78.053692, 38.457137 ], [ -78.053464, 38.457172 ], [ -78.052965, 38.457229 ], [ -78.052547, 38.457266 ], [ -78.05168, 38.457327 ], [ -78.051381, 38.457343 ], [ -78.051209, 38.457356 ], [ -78.050231, 38.457415 ], [ -78.049522, 38.45745 ], [ -78.049115, 38.457457 ], [ -78.048707, 38.45745 ], [ -78.048107, 38.457414 ], [ -78.046583, 38.457296 ], [ -78.045473, 38.457209 ], [ -78.043615, 38.457066 ], [ -78.04299, 38.457014 ], [ -78.041948, 38.456934 ], [ -78.041564, 38.4569 ], [ -78.040447, 38.456809 ], [ -78.039807, 38.456752 ], [ -78.039565, 38.456722 ], [ -78.038614, 38.456586 ], [ -78.037992, 38.45648 ], [ -78.036619, 38.456229 ], [ -78.036312, 38.456174 ], [ -78.035316, 38.455996 ], [ -78.033993, 38.455756 ], [ -78.033455, 38.455659 ], [ -78.032995, 38.455576 ], [ -78.032344, 38.455462 ], [ -78.032225, 38.455441 ], [ -78.032071, 38.455411 ], [ -78.031918, 38.455381 ], [ -78.030629, 38.455156 ], [ -78.030487, 38.455136 ], [ -78.02993, 38.455035 ], [ -78.029397, 38.454939 ], [ -78.027154, 38.454551 ], [ -78.026507, 38.454439 ], [ -78.026143, 38.454368 ], [ -78.025005, 38.454171 ], [ -78.024336, 38.45404 ], [ -78.023622, 38.453878 ], [ -78.02312, 38.453727 ], [ -78.02273, 38.453603 ], [ -78.022384, 38.453473 ], [ -78.021945, 38.453293 ], [ -78.021688, 38.453179 ], [ -78.02141, 38.45304 ], [ -78.020949, 38.452794 ], [ -78.020606, 38.452593 ], [ -78.018376, 38.451156 ], [ -78.015052, 38.449001 ], [ -78.013038, 38.447702 ], [ -78.012718, 38.447476 ], [ -78.012365, 38.447314 ], [ -78.011913, 38.44707 ], [ -78.011467, 38.446849 ], [ -78.011017, 38.446646 ], [ -78.010785, 38.446548 ], [ -78.01041, 38.446389 ], [ -78.009947, 38.446212 ], [ -78.009475, 38.446047 ], [ -78.009032, 38.44592 ], [ -78.008198, 38.445668 ], [ -78.007806, 38.445574 ], [ -78.007536, 38.445509 ], [ -78.00704, 38.445404 ], [ -78.006541, 38.445314 ], [ -78.006039, 38.445234 ], [ -78.005535, 38.445168 ], [ -78.004882, 38.445103 ], [ -78.00427, 38.44506 ], [ -78.003857, 38.445042 ], [ -78.003259, 38.445032 ], [ -77.996098, 38.445039 ], [ -77.995524, 38.445052 ], [ -77.995083, 38.445072 ], [ -77.9946, 38.445108 ], [ -77.994291, 38.44514 ], [ -77.994119, 38.445159 ], [ -77.993562, 38.445235 ], [ -77.993077, 38.445314 ], [ -77.992738, 38.44538 ], [ -77.992304, 38.445476 ], [ -77.991774, 38.445609 ], [ -77.991277, 38.445754 ], [ -77.990885, 38.44588 ], [ -77.990401, 38.446049 ], [ -77.989902, 38.446248 ], [ -77.98951, 38.446417 ], [ -77.989127, 38.446595 ], [ -77.988671, 38.446826 ], [ -77.988226, 38.44707 ], [ -77.988015, 38.447193 ], [ -77.987964, 38.447222 ], [ -77.986229, 38.448266 ], [ -77.982377, 38.450578 ], [ -77.980067, 38.451965 ], [ -77.978396, 38.452971 ], [ -77.976723, 38.453978 ], [ -77.971729, 38.456974 ], [ -77.970854, 38.457513 ], [ -77.970447, 38.457776 ], [ -77.969812, 38.458205 ], [ -77.969672, 38.458304 ], [ -77.969294, 38.458571 ], [ -77.968878, 38.458872 ], [ -77.968162, 38.459423 ], [ -77.967696, 38.459799 ], [ -77.967125, 38.46028 ], [ -77.966325, 38.460982 ], [ -77.965258, 38.461918 ], [ -77.964866, 38.462267 ], [ -77.960196, 38.466376 ], [ -77.955939, 38.470123 ], [ -77.954947, 38.470996 ], [ -77.954533, 38.471358 ], [ -77.953922, 38.471893 ], [ -77.953458, 38.472304 ], [ -77.953176, 38.472548 ], [ -77.952583, 38.473072 ], [ -77.951119, 38.474355 ], [ -77.950943, 38.474509 ], [ -77.949669, 38.47563 ], [ -77.948949, 38.476265 ], [ -77.948002, 38.477098 ], [ -77.940672, 38.483548 ], [ -77.940481, 38.483731 ], [ -77.940188, 38.484012 ], [ -77.939893, 38.484318 ], [ -77.939484, 38.484776 ], [ -77.93926, 38.485054 ], [ -77.939039, 38.48534 ], [ -77.938835, 38.485618 ], [ -77.938574, 38.486003 ], [ -77.938385, 38.4863 ], [ -77.938154, 38.486695 ], [ -77.936929, 38.489071 ], [ -77.936476, 38.48995 ], [ -77.936307, 38.490277 ], [ -77.936213, 38.490449 ], [ -77.936032, 38.490779 ], [ -77.935797, 38.491168 ], [ -77.935515, 38.491593 ], [ -77.935238, 38.491981 ], [ -77.934904, 38.492412 ], [ -77.934836, 38.492493 ], [ -77.93462, 38.492753 ], [ -77.934238, 38.493183 ], [ -77.933985, 38.493449 ], [ -77.933681, 38.493753 ], [ -77.933395, 38.494018 ], [ -77.933018, 38.494354 ], [ -77.932749, 38.494585 ], [ -77.932252, 38.494973 ], [ -77.93171, 38.495374 ], [ -77.931341, 38.495628 ], [ -77.930966, 38.495866 ], [ -77.930194, 38.496327 ], [ -77.929795, 38.496546 ], [ -77.929468, 38.496713 ], [ -77.928898, 38.496989 ], [ -77.928401, 38.497211 ], [ -77.927814, 38.497454 ], [ -77.927352, 38.49763 ], [ -77.926883, 38.497792 ], [ -77.92627, 38.497988 ], [ -77.925745, 38.498139 ], [ -77.925688, 38.498154 ], [ -77.925207, 38.498279 ], [ -77.924635, 38.498412 ], [ -77.924059, 38.498531 ], [ -77.923478, 38.498637 ], [ -77.923244, 38.498675 ], [ -77.9209, 38.499106 ], [ -77.920407, 38.499196 ], [ -77.916265, 38.499951 ], [ -77.914897, 38.500194 ], [ -77.913262, 38.500498 ], [ -77.912906, 38.500563 ], [ -77.911059, 38.5009 ], [ -77.910401, 38.501012 ], [ -77.909308, 38.501222 ], [ -77.90816, 38.501425 ], [ -77.906956, 38.501647 ], [ -77.902649, 38.502433 ], [ -77.901836, 38.502578 ], [ -77.901383, 38.502661 ], [ -77.899056, 38.503088 ], [ -77.897887, 38.503302 ], [ -77.896932, 38.503454 ], [ -77.896481, 38.503514 ], [ -77.896026, 38.50356 ], [ -77.89557, 38.503592 ], [ -77.895091, 38.503613 ], [ -77.894605, 38.503621 ], [ -77.894338, 38.503619 ], [ -77.894023, 38.503612 ], [ -77.893539, 38.503589 ], [ -77.893152, 38.50356 ], [ -77.891645, 38.503392 ], [ -77.891145, 38.503351 ], [ -77.890705, 38.503331 ], [ -77.890264, 38.503325 ], [ -77.89, 38.503328 ], [ -77.889421, 38.503346 ], [ -77.888918, 38.503375 ], [ -77.888578, 38.503406 ], [ -77.888318, 38.503429 ], [ -77.887823, 38.50349 ], [ -77.887334, 38.503566 ], [ -77.886849, 38.503655 ], [ -77.886369, 38.503759 ], [ -77.885701, 38.503929 ], [ -77.88504, 38.504114 ], [ -77.883872, 38.504451 ], [ -77.882026, 38.504972 ], [ -77.880726, 38.50535 ], [ -77.879756, 38.505628 ], [ -77.879416, 38.505726 ], [ -77.878734, 38.505916 ], [ -77.87665, 38.506514 ], [ -77.873295, 38.507467 ], [ -77.870872, 38.508164 ], [ -77.867574, 38.509112 ], [ -77.86643, 38.509426 ], [ -77.865139, 38.509804 ], [ -77.864878, 38.509875 ], [ -77.864614, 38.509946 ], [ -77.864004, 38.510124 ], [ -77.863963, 38.510136 ], [ -77.863243, 38.510359 ], [ -77.862776, 38.510515 ], [ -77.862313, 38.51068 ], [ -77.86153, 38.510992 ], [ -77.86091, 38.511252 ], [ -77.860341, 38.511504 ], [ -77.860101, 38.511597 ], [ -77.859873, 38.511706 ], [ -77.859049, 38.512033 ], [ -77.858596, 38.512199 ], [ -77.85801, 38.512393 ], [ -77.85641, 38.512859 ], [ -77.85546, 38.513131 ], [ -77.853636, 38.513652 ], [ -77.852939, 38.513842 ], [ -77.85189, 38.514117 ], [ -77.851773, 38.514147 ], [ -77.851155, 38.514282 ], [ -77.850783, 38.514355 ], [ -77.850158, 38.514468 ], [ -77.849529, 38.514566 ], [ -77.848611, 38.514673 ], [ -77.847601, 38.514814 ], [ -77.847219, 38.514874 ], [ -77.846744, 38.514961 ], [ -77.846275, 38.515063 ], [ -77.845622, 38.515227 ], [ -77.843493, 38.515828 ], [ -77.840926, 38.516554 ], [ -77.838953, 38.517123 ], [ -77.838611, 38.51724 ], [ -77.838276, 38.51737 ], [ -77.838087, 38.517452 ], [ -77.837878, 38.517559 ], [ -77.837641, 38.517698 ], [ -77.837371, 38.517879 ], [ -77.837159, 38.518042 ], [ -77.836631, 38.518508 ], [ -77.833939, 38.52107 ], [ -77.833536, 38.521444 ], [ -77.832859, 38.52207 ], [ -77.832618, 38.52227 ], [ -77.832363, 38.52246 ], [ -77.832151, 38.522605 ], [ -77.831761, 38.52284 ], [ -77.831645, 38.522905 ], [ -77.831341, 38.523059 ], [ -77.831027, 38.523201 ], [ -77.830705, 38.52333 ], [ -77.830375, 38.523446 ], [ -77.82725, 38.524408 ], [ -77.825282, 38.525005 ], [ -77.824825, 38.525153 ], [ -77.824766, 38.525172 ], [ -77.82414, 38.525403 ], [ -77.823904, 38.525501 ], [ -77.823444, 38.525707 ], [ -77.823161, 38.525842 ], [ -77.822816, 38.526023 ], [ -77.822483, 38.526216 ], [ -77.82216, 38.526429 ], [ -77.821905, 38.526618 ], [ -77.821824, 38.526681 ], [ -77.821661, 38.526816 ], [ -77.82143, 38.527024 ], [ -77.821026, 38.527454 ], [ -77.820758, 38.527783 ], [ -77.820516, 38.528112 ], [ -77.820197, 38.52856 ], [ -77.819895, 38.529029 ], [ -77.81945, 38.529798 ], [ -77.818541, 38.531386 ], [ -77.817476, 38.533249 ], [ -77.817174, 38.533749 ], [ -77.815779, 38.536111 ], [ -77.812836, 38.541042 ], [ -77.812145, 38.542152 ], [ -77.811443, 38.543345 ], [ -77.81107, 38.543916 ], [ -77.809169, 38.54677 ], [ -77.807061, 38.549912 ], [ -77.805801, 38.55177 ], [ -77.803189, 38.555743 ], [ -77.802664, 38.55653 ], [ -77.802442, 38.556869 ], [ -77.802253, 38.557175 ], [ -77.802079, 38.557492 ], [ -77.801838, 38.557971 ], [ -77.801782, 38.55809 ], [ -77.801657, 38.55838 ], [ -77.801522, 38.558722 ], [ -77.801429, 38.558994 ], [ -77.801302, 38.559432 ], [ -77.801209, 38.559822 ], [ -77.801144, 38.560169 ], [ -77.801065, 38.560727 ], [ -77.801025, 38.56131 ], [ -77.801027, 38.561813 ], [ -77.801049, 38.562487 ], [ -77.801069, 38.562893 ], [ -77.801213, 38.565749 ], [ -77.801305, 38.567636 ], [ -77.80137, 38.568961 ], [ -77.801541, 38.572402 ], [ -77.801599, 38.573623 ], [ -77.801669, 38.575224 ], [ -77.801707, 38.575829 ], [ -77.801772, 38.577117 ], [ -77.801874, 38.579138 ], [ -77.801902, 38.579759 ], [ -77.801914, 38.579914 ], [ -77.801945, 38.580642 ], [ -77.801977, 38.581198 ], [ -77.802036, 38.582417 ], [ -77.802118, 38.584113 ], [ -77.802126, 38.584391 ], [ -77.802131, 38.584986 ], [ -77.802118, 38.585525 ], [ -77.802088, 38.586052 ], [ -77.802017, 38.586791 ], [ -77.801743, 38.589112 ], [ -77.801725, 38.589268 ], [ -77.801437, 38.591698 ], [ -77.801342, 38.5925 ], [ -77.801281, 38.593006 ], [ -77.800994, 38.595455 ], [ -77.800644, 38.598437 ], [ -77.800492, 38.599704 ], [ -77.800457, 38.599972 ], [ -77.800268, 38.601612 ], [ -77.800209, 38.602305 ], [ -77.80017, 38.602992 ], [ -77.800152, 38.603904 ], [ -77.800152, 38.604035 ], [ -77.800152, 38.604483 ], [ -77.800172, 38.60559 ], [ -77.800187, 38.606551 ], [ -77.800205, 38.607644 ], [ -77.80022, 38.608813 ], [ -77.800237, 38.609384 ], [ -77.800232, 38.610093 ], [ -77.800248, 38.611162 ], [ -77.80027, 38.611781 ], [ -77.800276, 38.611972 ], [ -77.800298, 38.612639 ], [ -77.800312, 38.613039 ], [ -77.800332, 38.613399 ], [ -77.800397, 38.614527 ], [ -77.800421, 38.615203 ], [ -77.800432, 38.61575 ], [ -77.800444, 38.616559 ], [ -77.800478, 38.618723 ], [ -77.8005, 38.619601 ], [ -77.800525, 38.620811 ], [ -77.800527, 38.620908 ], [ -77.800548, 38.62192 ], [ -77.80058, 38.623403 ], [ -77.800594, 38.624213 ], [ -77.800603, 38.625413 ], [ -77.80062, 38.627386 ], [ -77.800629, 38.627856 ], [ -77.800651, 38.62934 ], [ -77.800658, 38.629863 ], [ -77.800688, 38.631295 ], [ -77.800701, 38.63219 ], [ -77.800708, 38.632656 ], [ -77.800729, 38.632937 ], [ -77.800749, 38.6331 ], [ -77.800764, 38.633194 ], [ -77.800824, 38.633493 ], [ -77.8009, 38.63375 ], [ -77.801033, 38.634132 ], [ -77.801091, 38.634277 ], [ -77.801339, 38.634852 ], [ -77.801526, 38.635289 ], [ -77.801703, 38.635692 ], [ -77.801752, 38.635808 ], [ -77.801965, 38.636295 ], [ -77.802897, 38.638462 ], [ -77.802996, 38.638693 ], [ -77.803206, 38.639174 ], [ -77.803351, 38.639505 ], [ -77.803635, 38.640158 ], [ -77.803774, 38.640485 ], [ -77.80405, 38.641121 ], [ -77.804137, 38.641325 ], [ -77.804199, 38.641471 ], [ -77.804367, 38.641868 ], [ -77.804398, 38.641941 ], [ -77.804535, 38.642359 ], [ -77.804602, 38.642621 ], [ -77.804642, 38.642832 ], [ -77.804669, 38.643038 ], [ -77.804677, 38.643118 ], [ -77.804687, 38.643291 ], [ -77.804696, 38.643722 ], [ -77.804696, 38.644409 ], [ -77.804677, 38.644766 ], [ -77.804636, 38.645023 ], [ -77.804576, 38.645279 ], [ -77.804498, 38.645531 ], [ -77.804445, 38.645671 ], [ -77.804179, 38.646296 ], [ -77.803976, 38.646795 ], [ -77.803645, 38.647584 ], [ -77.803607, 38.647672 ], [ -77.803037, 38.649027 ], [ -77.802582, 38.650099 ], [ -77.802488, 38.65032 ], [ -77.80226, 38.650816 ], [ -77.802226, 38.650891 ], [ -77.801705, 38.651973 ], [ -77.801524, 38.652348 ], [ -77.800517, 38.654435 ], [ -77.800311, 38.654856 ], [ -77.800109, 38.655223 ], [ -77.799504, 38.656216 ], [ -77.799258, 38.656629 ], [ -77.799064, 38.656995 ], [ -77.798952, 38.657238 ], [ -77.798593, 38.658126 ], [ -77.798524, 38.658287 ], [ -77.798395, 38.658591 ], [ -77.798266, 38.658901 ], [ -77.798049, 38.659428 ], [ -77.797829, 38.659963 ], [ -77.79736, 38.661105 ], [ -77.797075, 38.661795 ], [ -77.796724, 38.662641 ], [ -77.79625, 38.663783 ], [ -77.796094, 38.664161 ], [ -77.795637, 38.665271 ], [ -77.79528, 38.666132 ], [ -77.795248, 38.66621 ], [ -77.794069, 38.669063 ], [ -77.793674, 38.670024 ], [ -77.793379, 38.670723 ], [ -77.793244, 38.671036 ], [ -77.793103, 38.671307 ], [ -77.792943, 38.671571 ], [ -77.792813, 38.671755 ], [ -77.792641, 38.671968 ], [ -77.792454, 38.672174 ], [ -77.792251, 38.672371 ], [ -77.791496, 38.673047 ], [ -77.791134, 38.673372 ], [ -77.790643, 38.673809 ], [ -77.789269, 38.675032 ], [ -77.788765, 38.675507 ], [ -77.788692, 38.675576 ], [ -77.788181, 38.676104 ], [ -77.787807, 38.676549 ], [ -77.787668, 38.676743 ], [ -77.787501, 38.677031 ], [ -77.78738, 38.677265 ], [ -77.78733, 38.677383 ], [ -77.787232, 38.677659 ], [ -77.787165, 38.677911 ], [ -77.787115, 38.678177 ], [ -77.787085, 38.678445 ], [ -77.787079, 38.678552 ], [ -77.787095, 38.67913 ], [ -77.787153, 38.679798 ], [ -77.787259, 38.680924 ], [ -77.787331, 38.681886 ], [ -77.787363, 38.682419 ], [ -77.787413, 38.683635 ], [ -77.787401, 38.684203 ], [ -77.787392, 38.684611 ], [ -77.78735, 38.685019 ], [ -77.787315, 38.685264 ], [ -77.787231, 38.685728 ], [ -77.787136, 38.686251 ], [ -77.787114, 38.686332 ], [ -77.78692, 38.686986 ], [ -77.786696, 38.687619 ], [ -77.786501, 38.688074 ], [ -77.786277, 38.68855 ], [ -77.786098, 38.688888 ], [ -77.785944, 38.689154 ], [ -77.785576, 38.689748 ], [ -77.784818, 38.690938 ], [ -77.784516, 38.691425 ], [ -77.784271, 38.691807 ], [ -77.783827, 38.692506 ], [ -77.783401, 38.6932 ], [ -77.783246, 38.693444 ], [ -77.782384, 38.694802 ], [ -77.782205, 38.695084 ], [ -77.781593, 38.696059 ], [ -77.781243, 38.69667 ], [ -77.78108, 38.696994 ], [ -77.780923, 38.697347 ], [ -77.780812, 38.697637 ], [ -77.780687, 38.698004 ], [ -77.780614, 38.698231 ], [ -77.780587, 38.698314 ], [ -77.780392, 38.699181 ], [ -77.780333, 38.699659 ], [ -77.780298, 38.700094 ], [ -77.780287, 38.700389 ], [ -77.780289, 38.700757 ], [ -77.780315, 38.701452 ], [ -77.780365, 38.702797 ], [ -77.780397, 38.703509 ], [ -77.780462, 38.705131 ], [ -77.780535, 38.706895 ], [ -77.780587, 38.708144 ], [ -77.780612, 38.708911 ], [ -77.780675, 38.710324 ], [ -77.780782, 38.713019 ], [ -77.780806, 38.713639 ], [ -77.780906, 38.716128 ], [ -77.780923, 38.716557 ], [ -77.780985, 38.71812 ], [ -77.781094, 38.720811 ], [ -77.781111, 38.721348 ], [ -77.78117, 38.722771 ], [ -77.781205, 38.723428 ], [ -77.781207, 38.723933 ], [ -77.781141, 38.724638 ], [ -77.781062, 38.725028 ], [ -77.780986, 38.725313 ], [ -77.780873, 38.725651 ], [ -77.780799, 38.725838 ], [ -77.780763, 38.72593 ], [ -77.780608, 38.726258 ], [ -77.780457, 38.726537 ], [ -77.78029, 38.726814 ], [ -77.780067, 38.727137 ], [ -77.779841, 38.727426 ], [ -77.779593, 38.727712 ], [ -77.779535, 38.727773 ], [ -77.779432, 38.727882 ], [ -77.779137, 38.728163 ], [ -77.778889, 38.728379 ], [ -77.778564, 38.728638 ], [ -77.777988, 38.729064 ], [ -77.777903, 38.729128 ], [ -77.777813, 38.729195 ], [ -77.777751, 38.72924 ], [ -77.777544, 38.729395 ], [ -77.776507, 38.73018 ], [ -77.77534, 38.731069 ], [ -77.775049, 38.73127 ], [ -77.774364, 38.73177 ], [ -77.774051, 38.732009 ], [ -77.773303, 38.732554 ], [ -77.772496, 38.733155 ], [ -77.772444, 38.733192 ], [ -77.771424, 38.733941 ], [ -77.770375, 38.73472 ], [ -77.769774, 38.735166 ], [ -77.766501, 38.737595 ], [ -77.766092, 38.7379 ], [ -77.766013, 38.737957 ], [ -77.764613, 38.738973 ], [ -77.763699, 38.739647 ], [ -77.760294, 38.742188 ], [ -77.759475, 38.742805 ], [ -77.758292, 38.743704 ], [ -77.757242, 38.744507 ], [ -77.756734, 38.744888 ], [ -77.75607, 38.745394 ], [ -77.755332, 38.74595 ], [ -77.753869, 38.747051 ], [ -77.753512, 38.747317 ], [ -77.752239, 38.748266 ], [ -77.751486, 38.748835 ], [ -77.749304, 38.750477 ], [ -77.747696, 38.751677 ], [ -77.747175, 38.752069 ], [ -77.746636, 38.752468 ], [ -77.746089, 38.752858 ], [ -77.745719, 38.753113 ], [ -77.745109, 38.753534 ], [ -77.744529, 38.753946 ], [ -77.744441, 38.754016 ], [ -77.743143, 38.755039 ], [ -77.742369, 38.755648 ], [ -77.741019, 38.756723 ], [ -77.740302, 38.757289 ], [ -77.74012, 38.757439 ], [ -77.739869, 38.757633 ], [ -77.739452, 38.757933 ], [ -77.738896, 38.758325 ], [ -77.738458, 38.758616 ], [ -77.737994, 38.758912 ], [ -77.737675, 38.759109 ], [ -77.736928, 38.759546 ], [ -77.736529, 38.759764 ], [ -77.73598, 38.760062 ], [ -77.735512, 38.760302 ], [ -77.734641, 38.760749 ], [ -77.731871, 38.762168 ], [ -77.730354, 38.762946 ], [ -77.726563, 38.764904 ], [ -77.726297, 38.765042 ], [ -77.725494, 38.765462 ], [ -77.724993, 38.765717 ], [ -77.724283, 38.76606 ], [ -77.724155, 38.766114 ], [ -77.723683, 38.766274 ], [ -77.723631, 38.766287 ], [ -77.723461, 38.76633 ], [ -77.723208, 38.766384 ], [ -77.722948, 38.766425 ], [ -77.722732, 38.766449 ], [ -77.722439, 38.766466 ], [ -77.722204, 38.76647 ], [ -77.721761, 38.76645 ], [ -77.721338, 38.766416 ], [ -77.720827, 38.766373 ], [ -77.71958, 38.766268 ], [ -77.718945, 38.766226 ], [ -77.71829, 38.766214 ], [ -77.717886, 38.766231 ], [ -77.717644, 38.766248 ], [ -77.717238, 38.766296 ], [ -77.716986, 38.766333 ], [ -77.716478, 38.766426 ], [ -77.715933, 38.766539 ], [ -77.71313, 38.767126 ], [ -77.71253, 38.76725 ], [ -77.711446, 38.767475 ], [ -77.711213, 38.767521 ], [ -77.709832, 38.76781 ], [ -77.709246, 38.767933 ], [ -77.708584, 38.768078 ], [ -77.708134, 38.768177 ], [ -77.707984, 38.768211 ], [ -77.707651, 38.768287 ], [ -77.707208, 38.768389 ], [ -77.707037, 38.768429 ], [ -77.706966, 38.768445 ], [ -77.706604, 38.768529 ], [ -77.705724, 38.768733 ], [ -77.704884, 38.768928 ], [ -77.704008, 38.769125 ], [ -77.703413, 38.769266 ], [ -77.703044, 38.769359 ], [ -77.702667, 38.769454 ], [ -77.702289, 38.769565 ], [ -77.701922, 38.769687 ], [ -77.701705, 38.769766 ], [ -77.701294, 38.769925 ], [ -77.700381, 38.770277 ], [ -77.698624, 38.770957 ], [ -77.69792, 38.771222 ], [ -77.696779, 38.771656 ], [ -77.696286, 38.771839 ], [ -77.694688, 38.772451 ], [ -77.693388, 38.772942 ], [ -77.69338, 38.772945 ], [ -77.69299, 38.773092 ], [ -77.691828, 38.773541 ], [ -77.689985, 38.774273 ], [ -77.689184, 38.774593 ], [ -77.687947, 38.775099 ], [ -77.68652, 38.775696 ], [ -77.686093, 38.775875 ], [ -77.685013, 38.776323 ], [ -77.684548, 38.776508 ], [ -77.683617, 38.77688 ], [ -77.682281, 38.77742 ], [ -77.681906, 38.77757 ], [ -77.680152, 38.778273 ], [ -77.680071, 38.778309 ], [ -77.679964, 38.778348 ], [ -77.67944, 38.778559 ], [ -77.679135, 38.778682 ], [ -77.679008, 38.778733 ], [ -77.678765, 38.778831 ], [ -77.678322, 38.779011 ], [ -77.677302, 38.779417 ], [ -77.677036, 38.779514 ], [ -77.676871, 38.779569 ], [ -77.676375, 38.779711 ], [ -77.675903, 38.779834 ], [ -77.675739, 38.779874 ], [ -77.675282, 38.779966 ], [ -77.675165, 38.77999 ], [ -77.673681, 38.780291 ], [ -77.67245, 38.780538 ], [ -77.671784, 38.780666 ], [ -77.671623, 38.780699 ], [ -77.671392, 38.780752 ], [ -77.670977, 38.780857 ], [ -77.67067, 38.780949 ], [ -77.669909, 38.781181 ], [ -77.669755, 38.781229 ], [ -77.668691, 38.781557 ], [ -77.668105, 38.781729 ], [ -77.66717, 38.781984 ], [ -77.665556, 38.7824 ], [ -77.665397, 38.782443 ], [ -77.66509, 38.782528 ], [ -77.663117, 38.783041 ], [ -77.662729, 38.783142 ], [ -77.658982, 38.784122 ], [ -77.658234, 38.784318 ], [ -77.657487, 38.784515 ], [ -77.656903, 38.784668 ], [ -77.656444, 38.784785 ], [ -77.655772, 38.784954 ], [ -77.655488, 38.785028 ], [ -77.654149, 38.78538 ], [ -77.653073, 38.785665 ], [ -77.652817, 38.785732 ], [ -77.652723, 38.785757 ], [ -77.652335, 38.78586 ], [ -77.650432, 38.786358 ], [ -77.650292, 38.786394 ], [ -77.648546, 38.786845 ], [ -77.648132, 38.786953 ], [ -77.6471, 38.787217 ], [ -77.646912, 38.787266 ], [ -77.646792, 38.787296 ], [ -77.646475, 38.787378 ], [ -77.643862, 38.788066 ], [ -77.643514, 38.788151 ], [ -77.642956, 38.788288 ], [ -77.641845, 38.788545 ], [ -77.641256, 38.788678 ], [ -77.640668, 38.788812 ], [ -77.637878, 38.789456 ], [ -77.637724, 38.789491 ], [ -77.635026, 38.790112 ], [ -77.633026, 38.790572 ], [ -77.631672, 38.790883 ], [ -77.630391, 38.791179 ], [ -77.630168, 38.791231 ], [ -77.629412, 38.791414 ], [ -77.629006, 38.791523 ], [ -77.628982, 38.791529 ], [ -77.628275, 38.791722 ], [ -77.626219, 38.792284 ], [ -77.625465, 38.792483 ], [ -77.624741, 38.792675 ], [ -77.624567, 38.792721 ], [ -77.624468, 38.792748 ], [ -77.624067, 38.792856 ], [ -77.622821, 38.793191 ], [ -77.622323, 38.793326 ], [ -77.622182, 38.793359 ], [ -77.62157, 38.793529 ], [ -77.621412, 38.793572 ], [ -77.620477, 38.793825 ], [ -77.620443, 38.793835 ], [ -77.619193, 38.794171 ], [ -77.619018, 38.794213 ], [ -77.617763, 38.794556 ], [ -77.617092, 38.79473 ], [ -77.616747, 38.794832 ], [ -77.614017, 38.7956 ], [ -77.613309, 38.7958 ], [ -77.613097, 38.795859 ], [ -77.611965, 38.796178 ], [ -77.611011, 38.796432 ], [ -77.609519, 38.79683 ], [ -77.609066, 38.796955 ], [ -77.60887, 38.79701 ], [ -77.608124, 38.797223 ], [ -77.607861, 38.79729 ], [ -77.60659, 38.797608 ], [ -77.604759, 38.798106 ], [ -77.603341, 38.798433 ], [ -77.602615, 38.798623 ], [ -77.60217, 38.798681 ], [ -77.60178, 38.798726 ], [ -77.60159, 38.798739 ], [ -77.601338, 38.79876 ], [ -77.601043, 38.798748 ], [ -77.600761, 38.798726 ], [ -77.600475, 38.798685 ], [ -77.600088, 38.798626 ], [ -77.598701, 38.798329 ], [ -77.598447, 38.798288 ], [ -77.598168, 38.798263 ], [ -77.597945, 38.798266 ], [ -77.597733, 38.798267 ], [ -77.597515, 38.798295 ], [ -77.597295, 38.798329 ], [ -77.59709, 38.79838 ], [ -77.596838, 38.798472 ], [ -77.596056, 38.79873 ], [ -77.595792, 38.798802 ], [ -77.595557, 38.798839 ], [ -77.595321, 38.798872 ], [ -77.595123, 38.798893 ], [ -77.594903, 38.798906 ], [ -77.594606, 38.798902 ], [ -77.592349, 38.798571 ], [ -77.589853, 38.798246 ], [ -77.587564, 38.797961 ], [ -77.584659, 38.797708 ], [ -77.583518, 38.797592 ], [ -77.582596, 38.797507 ], [ -77.581727, 38.797465 ], [ -77.580645, 38.797422 ], [ -77.579853, 38.797408 ], [ -77.579381, 38.797391 ], [ -77.579328, 38.797391 ], [ -77.578346, 38.797391 ], [ -77.576989, 38.797404 ], [ -77.576007, 38.797446 ], [ -77.575373, 38.797504 ], [ -77.571144, 38.797797 ], [ -77.569287, 38.79792 ], [ -77.56555, 38.798187 ], [ -77.561659, 38.798447 ], [ -77.555891, 38.7988 ], [ -77.553755, 38.798951 ], [ -77.550887, 38.799152 ], [ -77.550295, 38.799193 ], [ -77.548407, 38.799331 ], [ -77.54595, 38.799494 ], [ -77.541063, 38.799812 ], [ -77.539341, 38.799946 ], [ -77.536546, 38.800151 ], [ -77.532281, 38.800448 ], [ -77.529135, 38.800667 ], [ -77.525861, 38.800895 ], [ -77.523173, 38.801079 ], [ -77.520134, 38.801324 ], [ -77.519426, 38.801374 ], [ -77.518588, 38.801436 ], [ -77.514662, 38.801698 ], [ -77.51275, 38.801833 ], [ -77.512257, 38.801883 ], [ -77.51176, 38.801949 ], [ -77.511242, 38.802033 ], [ -77.510728, 38.802133 ], [ -77.510237, 38.802245 ], [ -77.509757, 38.802371 ], [ -77.509283, 38.802511 ], [ -77.508762, 38.802686 ], [ -77.508249, 38.802874 ], [ -77.503238, 38.804849 ], [ -77.501867, 38.805383 ], [ -77.49854, 38.806696 ], [ -77.492854, 38.808929 ], [ -77.492586, 38.809039 ], [ -77.491408, 38.809499 ], [ -77.490728, 38.809768 ], [ -77.490387, 38.809903 ], [ -77.489846, 38.810125 ], [ -77.48976, 38.810159 ], [ -77.489588, 38.810228 ], [ -77.488128, 38.810814 ], [ -77.487975, 38.810876 ], [ -77.487938, 38.810891 ], [ -77.487614, 38.811027 ], [ -77.486889, 38.811312 ], [ -77.485515, 38.811841 ], [ -77.481021, 38.813606 ], [ -77.480031, 38.813987 ], [ -77.479528, 38.81418 ], [ -77.478278, 38.814671 ], [ -77.477784, 38.814859 ], [ -77.476696, 38.815283 ], [ -77.476308, 38.815444 ], [ -77.470849, 38.817587 ], [ -77.469997, 38.817934 ], [ -77.469107, 38.818314 ], [ -77.468263, 38.818692 ], [ -77.467788, 38.818912 ], [ -77.466824, 38.819384 ], [ -77.466481, 38.819559 ], [ -77.465978, 38.819814 ], [ -77.465888, 38.819862 ], [ -77.465082, 38.820299 ], [ -77.464689, 38.820516 ], [ -77.463916, 38.820976 ], [ -77.463568, 38.821184 ], [ -77.462817, 38.82165 ], [ -77.462169, 38.822067 ], [ -77.461524, 38.822499 ], [ -77.460742, 38.823046 ], [ -77.459971, 38.823615 ], [ -77.459453, 38.824009 ], [ -77.458829, 38.824505 ], [ -77.458041, 38.825157 ], [ -77.457989, 38.825199 ], [ -77.457719, 38.825436 ], [ -77.457456, 38.825667 ], [ -77.457174, 38.825914 ], [ -77.456485, 38.82655 ], [ -77.455925, 38.827089 ], [ -77.455609, 38.827408 ], [ -77.455354, 38.827664 ], [ -77.455286, 38.827736 ], [ -77.454763, 38.828288 ], [ -77.453687, 38.829492 ], [ -77.45117, 38.83231 ], [ -77.450091, 38.833546 ], [ -77.449603, 38.834072 ], [ -77.4484, 38.835411 ], [ -77.448317, 38.835496 ], [ -77.447073, 38.836883 ], [ -77.446568, 38.837456 ], [ -77.444983, 38.839239 ], [ -77.444962, 38.839261 ], [ -77.44448, 38.839771 ], [ -77.443925, 38.840374 ], [ -77.443121, 38.841151 ], [ -77.442523, 38.841683 ], [ -77.442048, 38.842083 ], [ -77.441563, 38.842472 ], [ -77.44121, 38.842729 ], [ -77.440835, 38.842989 ], [ -77.440353, 38.843301 ], [ -77.439357, 38.843895 ], [ -77.438808, 38.844189 ], [ -77.438412, 38.844388 ], [ -77.438154, 38.844513 ], [ -77.437585, 38.844773 ], [ -77.43695, 38.845042 ], [ -77.436125, 38.845358 ], [ -77.435386, 38.845611 ], [ -77.434841, 38.845778 ], [ -77.434461, 38.845886 ], [ -77.434065, 38.845989 ], [ -77.433588, 38.846102 ], [ -77.432595, 38.846311 ], [ -77.431976, 38.846424 ], [ -77.431894, 38.846439 ], [ -77.43166, 38.846482 ], [ -77.43013, 38.84677 ], [ -77.428638, 38.847052 ], [ -77.427672, 38.847201 ], [ -77.426895, 38.847336 ], [ -77.426613, 38.847387 ], [ -77.423954, 38.847868 ], [ -77.42318, 38.84802 ], [ -77.422578, 38.848129 ], [ -77.421734, 38.848284 ], [ -77.419777, 38.84865 ], [ -77.418032, 38.848977 ], [ -77.416532, 38.849246 ], [ -77.415198, 38.849482 ], [ -77.414151, 38.849672 ], [ -77.413692, 38.849756 ], [ -77.413004, 38.849886 ], [ -77.41025, 38.850388 ], [ -77.408348, 38.850725 ], [ -77.406003, 38.851167 ], [ -77.404553, 38.851419 ], [ -77.403103, 38.851676 ], [ -77.402433, 38.851803 ], [ -77.401513, 38.851954 ], [ -77.399882, 38.852249 ], [ -77.399048, 38.852319 ], [ -77.398718, 38.852375 ], [ -77.397996, 38.852492 ], [ -77.397318, 38.852624 ], [ -77.396752, 38.852714 ], [ -77.396348, 38.852749 ], [ -77.395658, 38.852767 ], [ -77.395009, 38.8528 ], [ -77.394695, 38.852837 ], [ -77.39433, 38.852891 ], [ -77.393802, 38.852984 ], [ -77.393126, 38.853114 ], [ -77.392725, 38.85318 ], [ -77.392095, 38.853297 ], [ -77.391904, 38.853339 ], [ -77.391134, 38.853478 ], [ -77.389836, 38.853723 ], [ -77.389215, 38.853845 ], [ -77.38892, 38.853895 ], [ -77.388716, 38.853941 ], [ -77.388024, 38.854062 ], [ -77.387165, 38.854196 ], [ -77.386771, 38.854162 ], [ -77.386529, 38.854111 ], [ -77.386343, 38.854055 ], [ -77.386187, 38.853987 ], [ -77.386127, 38.853954 ], [ -77.386079, 38.85392 ], [ -77.385986, 38.853839 ], [ -77.385938, 38.853785 ], [ -77.385904, 38.853738 ], [ -77.385849, 38.853638 ], [ -77.385829, 38.853585 ], [ -77.385812, 38.853521 ], [ -77.3858, 38.853402 ], [ -77.385805, 38.853336 ], [ -77.385817, 38.853271 ], [ -77.38586, 38.853155 ], [ -77.385888, 38.853105 ], [ -77.385929, 38.853047 ], [ -77.38601, 38.852959 ], [ -77.386068, 38.85291 ], [ -77.386119, 38.852873 ], [ -77.386233, 38.85281 ], [ -77.386292, 38.852784 ], [ -77.386367, 38.852757 ], [ -77.386444, 38.852736 ], [ -77.386551, 38.852715 ], [ -77.386695, 38.852705 ], [ -77.38684, 38.852711 ], [ -77.386899, 38.85272 ], [ -77.386985, 38.852739 ], [ -77.387131, 38.852784 ], [ -77.387234, 38.852827 ], [ -77.387327, 38.852872 ], [ -77.387501, 38.852977 ], [ -77.387596, 38.853046 ], [ -77.387689, 38.853125 ], [ -77.387869, 38.853301 ], [ -77.388005, 38.8535 ], [ -77.388211, 38.853861 ], [ -77.388248, 38.853958 ], [ -77.38834, 38.854202 ], [ -77.388434, 38.854509 ], [ -77.388512, 38.85483 ], [ -77.388556, 38.855045 ], [ -77.388563, 38.855077 ], [ -77.388615, 38.855398 ], [ -77.38864, 38.855726 ], [ -77.388657, 38.85606 ], [ -77.388632, 38.856494 ], [ -77.388606, 38.856728 ], [ -77.388546, 38.857062 ], [ -77.388494, 38.857283 ], [ -77.388383, 38.85759 ], [ -77.388245, 38.857898 ], [ -77.387962, 38.858392 ], [ -77.387722, 38.858713 ], [ -77.387587, 38.858842 ], [ -77.387448, 38.858992 ], [ -77.38738, 38.859049 ], [ -77.387049, 38.859315 ], [ -77.387001, 38.859355 ], [ -77.386572, 38.859616 ], [ -77.386057, 38.859876 ], [ -77.385696, 38.860037 ], [ -77.385104, 38.860297 ], [ -77.384246, 38.860678 ], [ -77.383311, 38.861091 ], [ -77.382484, 38.861549 ], [ -77.381927, 38.861964 ], [ -77.381649, 38.862271 ], [ -77.381472, 38.862656 ], [ -77.38114, 38.86254 ], [ -77.380676, 38.862336 ], [ -77.380373, 38.862167 ], [ -77.380144, 38.862016 ], [ -77.379932, 38.861857 ], [ -77.379724, 38.861669 ], [ -77.379541, 38.861495 ], [ -77.379299, 38.861256 ], [ -77.379174, 38.86114 ], [ -77.378963, 38.86097 ], [ -77.378779, 38.860822 ], [ -77.378622, 38.860715 ], [ -77.378375, 38.860584 ], [ -77.37825, 38.860526 ], [ -77.377901, 38.860354 ], [ -77.377674, 38.860258 ], [ -77.377503, 38.860194 ], [ -77.376982, 38.860031 ], [ -77.376724, 38.859968 ], [ -77.376465, 38.859908 ], [ -77.376139, 38.859843 ], [ -77.375957, 38.859809 ], [ -77.375449, 38.859704 ], [ -77.37477, 38.859591 ], [ -77.373992, 38.859482 ], [ -77.373385, 38.859411 ], [ -77.373319, 38.859405 ], [ -77.371684, 38.859251 ], [ -77.371331, 38.859226 ], [ -77.37112, 38.859211 ], [ -77.371099, 38.85942 ], [ -77.371098, 38.859619 ], [ -77.371033, 38.860102 ], [ -77.370993, 38.860407 ], [ -77.370953, 38.86073 ], [ -77.370894, 38.86095 ], [ -77.370816, 38.861165 ], [ -77.370757, 38.861296 ], [ -77.370665, 38.861443 ], [ -77.370575, 38.861587 ], [ -77.370384, 38.861875 ], [ -77.370116, 38.862301 ], [ -77.369869, 38.862675 ], [ -77.369695, 38.862937 ], [ -77.369553, 38.863149 ], [ -77.369282, 38.863562 ], [ -77.369075, 38.863878 ], [ -77.369003, 38.863978 ], [ -77.368943, 38.864053 ], [ -77.368872, 38.864143 ], [ -77.368754, 38.864281 ], [ -77.368648, 38.864383 ], [ -77.368548, 38.86448 ], [ -77.368413, 38.864611 ], [ -77.368244, 38.864751 ], [ -77.368139, 38.86483 ], [ -77.368096, 38.864859 ], [ -77.367962, 38.864949 ], [ -77.367753, 38.865087 ], [ -77.36752, 38.865221 ], [ -77.36716, 38.865425 ], [ -77.366916, 38.865565 ], [ -77.366749, 38.865664 ], [ -77.366693, 38.865696 ], [ -77.366603, 38.865757 ], [ -77.36621, 38.865941 ], [ -77.365964, 38.866096 ], [ -77.365677, 38.866275 ], [ -77.365412, 38.86648 ], [ -77.365205, 38.866666 ], [ -77.365092, 38.866802 ], [ -77.364926, 38.867027 ], [ -77.364819, 38.867215 ], [ -77.364795, 38.867271 ], [ -77.364687, 38.867526 ], [ -77.364631, 38.867731 ], [ -77.364602, 38.867885 ], [ -77.364585, 38.868103 ], [ -77.364599, 38.86833 ], [ -77.364602, 38.868416 ], [ -77.364653, 38.868646 ], [ -77.364749, 38.868903 ], [ -77.364915, 38.869232 ], [ -77.365031, 38.869489 ], [ -77.36519, 38.869811 ], [ -77.365353, 38.870145 ], [ -77.365541, 38.870577 ], [ -77.365608, 38.870714 ], [ -77.36564, 38.87078 ], [ -77.365767, 38.871048 ], [ -77.365858, 38.871232 ], [ -77.365914, 38.871335 ], [ -77.366032, 38.871546 ], [ -77.366196, 38.871805 ], [ -77.366355, 38.872046 ], [ -77.366507, 38.872259 ], [ -77.366678, 38.872501 ], [ -77.366856, 38.872754 ], [ -77.366963, 38.872925 ], [ -77.367022, 38.873039 ], [ -77.367081, 38.873163 ], [ -77.367145, 38.873344 ], [ -77.367182, 38.87346 ], [ -77.367204, 38.873534 ], [ -77.367233, 38.873695 ], [ -77.36726, 38.873889 ], [ -77.367273, 38.874003 ], [ -77.367165, 38.874012 ], [ -77.366994, 38.874012 ], [ -77.366779, 38.873999 ], [ -77.366666, 38.873986 ], [ -77.366501, 38.873968 ], [ -77.366313, 38.873934 ], [ -77.366155, 38.873897 ], [ -77.365932, 38.873832 ], [ -77.36562, 38.873728 ], [ -77.365375, 38.873647 ], [ -77.36552, 38.873752 ], [ -77.365645, 38.873824 ], [ -77.365759, 38.873875 ] ] } } diff --git a/packages/turf-line-slice/test/in/route2.geojson b/packages/turf-line-slice/test/in/route2.geojson new file mode 100644 index 0000000000..b1f962e8e6 --- /dev/null +++ b/packages/turf-line-slice/test/in/route2.geojson @@ -0,0 +1,2 @@ + +{ "type": "Feature", "properties": { "name": null, "cmt": null, "desc": null, "src": null, "link1_href": null, "link1_text": null, "link1_type": null, "link2_href": null, "link2_text": null, "link2_type": null, "number": null, "type": null }, "geometry": { "type": "LineString", "coordinates": [ [ -113.928988, 50.814121 ], [ -113.928993, 50.813067 ], [ -113.928994, 50.811043 ], [ -113.928995, 50.807418 ], [ -113.929029, 50.804989 ], [ -113.951995, 50.804953 ], [ -113.956813, 50.804931 ], [ -113.957629, 50.804917 ], [ -113.958021, 50.804876 ], [ -113.958575, 50.804779 ], [ -113.959011, 50.804687 ], [ -113.959367, 50.804572 ], [ -113.959858, 50.804414 ], [ -113.960433, 50.804102 ], [ -113.960932, 50.803769 ], [ -113.961563, 50.803306 ], [ -113.961754, 50.803166 ], [ -113.962486, 50.802753 ], [ -113.9641, 50.801549 ], [ -113.966048, 50.800154 ], [ -113.967597, 50.799082 ], [ -113.968657, 50.798289 ], [ -113.969382, 50.79779 ], [ -113.969303, 50.797653 ], [ -113.968833, 50.797177 ], [ -113.968399, 50.796832 ], [ -113.96652, 50.796071 ], [ -113.965325, 50.795579 ], [ -113.964608, 50.795229 ], [ -113.963373, 50.794321 ], [ -113.962094, 50.793355 ], [ -113.956995, 50.789049 ], [ -113.951125, 50.784098 ], [ -113.948573, 50.78194 ], [ -113.941011, 50.775626 ], [ -113.933724, 50.769538 ], [ -113.914584, 50.753577 ], [ -113.906521, 50.746803 ], [ -113.896774, 50.738614 ], [ -113.886275, 50.729779 ], [ -113.88594, 50.729474 ], [ -113.885307, 50.728898 ], [ -113.884903, 50.728477 ], [ -113.884523, 50.728028 ], [ -113.884201, 50.727599 ], [ -113.883986, 50.727298 ], [ -113.883696, 50.726863 ], [ -113.883482, 50.72648 ], [ -113.883314, 50.726156 ], [ -113.883153, 50.725767 ], [ -113.883094, 50.725646 ], [ -113.883031, 50.725465 ], [ -113.882906, 50.725155 ], [ -113.882792, 50.724718 ], [ -113.882641, 50.7241 ], [ -113.882584, 50.723735 ], [ -113.88255, 50.723367 ], [ -113.882523, 50.72258 ], [ -113.882495, 50.717709 ], [ -113.882486, 50.713302 ], [ -113.882476, 50.712125 ], [ -113.882468, 50.702531 ], [ -113.882456, 50.699815 ], [ -113.882434, 50.698229 ], [ -113.882445, 50.693791 ], [ -113.882419, 50.692602 ], [ -113.882412, 50.692077 ], [ -113.882405, 50.691705 ], [ -113.882365, 50.691331 ], [ -113.882289, 50.690878 ], [ -113.882163, 50.690282 ], [ -113.882074, 50.689985 ], [ -113.881908, 50.689517 ], [ -113.881705, 50.689095 ], [ -113.881622, 50.688959 ], [ -113.881501, 50.688721 ], [ -113.881281, 50.688347 ], [ -113.88097, 50.687826 ], [ -113.880715, 50.687491 ], [ -113.880385, 50.687085 ], [ -113.878859, 50.685206 ], [ -113.877456, 50.68348 ], [ -113.875929, 50.68157 ], [ -113.873357, 50.67843 ], [ -113.871364, 50.675999 ], [ -113.869142, 50.673289 ], [ -113.868358, 50.672328 ], [ -113.868037, 50.671943 ], [ -113.867467, 50.671232 ], [ -113.866987, 50.670734 ], [ -113.866668, 50.670424 ], [ -113.866296, 50.670141 ], [ -113.865816, 50.669814 ], [ -113.865451, 50.6696 ], [ -113.8651, 50.669419 ], [ -113.864667, 50.669203 ], [ -113.864079, 50.668945 ], [ -113.863436, 50.668716 ], [ -113.862804, 50.66849 ], [ -113.861739, 50.668114 ], [ -113.853421, 50.665144 ], [ -113.842891, 50.661554 ], [ -113.842171, 50.661197 ], [ -113.841049, 50.660571 ], [ -113.840156, 50.659997 ], [ -113.839716, 50.65961 ], [ -113.839157, 50.659132 ], [ -113.838847, 50.658805 ], [ -113.838358, 50.658284 ], [ -113.837938, 50.657723 ], [ -113.837609, 50.657111 ], [ -113.837268, 50.656259 ], [ -113.83703, 50.655665 ], [ -113.836937, 50.654919 ], [ -113.836909, 50.654144 ], [ -113.836859, 50.650724 ], [ -113.836826, 50.647581 ], [ -113.836828, 50.646677 ], [ -113.836945, 50.631237 ], [ -113.836945, 50.630338 ], [ -113.83681, 50.620833 ], [ -113.836809, 50.615002 ], [ -113.836748, 50.614363 ], [ -113.836695, 50.613902 ], [ -113.836544, 50.613327 ], [ -113.836395, 50.612865 ], [ -113.836165, 50.612347 ], [ -113.835974, 50.611908 ], [ -113.835688, 50.611368 ], [ -113.834199, 50.609116 ], [ -113.831975, 50.605815 ], [ -113.830597, 50.603738 ], [ -113.830194, 50.603006 ], [ -113.829862, 50.60236 ], [ -113.829623, 50.601865 ], [ -113.829361, 50.601178 ], [ -113.829199, 50.600699 ], [ -113.829001, 50.600003 ], [ -113.828688, 50.598264 ], [ -113.828653, 50.597525 ], [ -113.828653, 50.596741 ], [ -113.828659, 50.589493 ], [ -113.828615, 50.584393 ], [ -113.82855, 50.57625 ], [ -113.82857, 50.572186 ], [ -113.82858, 50.57189 ], [ -113.828436, 50.567929 ], [ -113.828262, 50.565198 ], [ -113.82828, 50.550181 ], [ -113.82829, 50.541809 ], [ -113.828291, 50.541417 ], [ -113.828359, 50.484565 ], [ -113.828388, 50.473188 ], [ -113.82839, 50.426319 ], [ -113.828391, 50.410937 ], [ -113.828495, 50.409031 ], [ -113.828495, 50.408255 ], [ -113.828326, 50.404708 ], [ -113.827868, 50.402523 ], [ -113.827189, 50.400367 ], [ -113.82573, 50.397464 ], [ -113.824909, 50.396393 ], [ -113.823811, 50.394869 ], [ -113.82128, 50.391895 ], [ -113.801481, 50.376398 ], [ -113.797907, 50.371872 ], [ -113.796297, 50.369858 ], [ -113.795351, 50.368139 ], [ -113.790726, 50.359724 ], [ -113.789384, 50.358382 ], [ -113.78784, 50.357509 ], [ -113.782077, 50.355219 ], [ -113.781868, 50.355163 ], [ -113.780696, 50.354643 ], [ -113.779832, 50.354058 ], [ -113.779376, 50.353709 ], [ -113.779034, 50.353447 ], [ -113.777779, 50.352208 ], [ -113.776476, 50.350971 ], [ -113.775669, 50.350156 ], [ -113.774903, 50.349363 ], [ -113.774528, 50.349008 ], [ -113.774139, 50.348641 ], [ -113.773752, 50.348267 ], [ -113.773367, 50.347894 ], [ -113.772991, 50.347521 ], [ -113.77261, 50.347144 ], [ -113.77224, 50.346771 ], [ -113.771866, 50.346393 ], [ -113.771491, 50.346021 ], [ -113.771101, 50.345634 ], [ -113.770724, 50.345257 ], [ -113.770334, 50.344868 ], [ -113.769256, 50.343852 ], [ -113.767134, 50.341669 ], [ -113.764647, 50.339182 ], [ -113.764438, 50.338973 ], [ -113.761597, 50.336333 ], [ -113.758593, 50.33458 ], [ -113.755546, 50.333429 ], [ -113.751856, 50.33269 ], [ -113.745118, 50.331594 ], [ -113.742286, 50.330717 ], [ -113.739453, 50.329347 ], [ -113.731213, 50.32247 ], [ -113.723532, 50.315976 ], [ -113.722158, 50.313619 ], [ -113.718768, 50.300682 ], [ -113.714948, 50.295611 ], [ -113.70452, 50.282916 ], [ -113.688985, 50.273536 ], [ -113.671647, 50.26314 ], [ -113.665976, 50.259608 ], [ -113.661862, 50.256884 ], [ -113.66006, 50.254964 ], [ -113.659379, 50.253877 ], [ -113.658858, 50.252741 ], [ -113.658676, 50.251733 ], [ -113.656669, 50.241627 ], [ -113.656154, 50.237592 ], [ -113.655983, 50.234435 ], [ -113.656026, 50.226446 ], [ -113.656001, 50.222848 ], [ -113.655983, 50.212634 ], [ -113.655983, 50.198956 ], [ -113.656026, 50.187774 ], [ -113.655725, 50.180189 ], [ -113.654781, 50.177056 ], [ -113.650834, 50.16488 ], [ -113.648988, 50.159931 ], [ -113.648171, 50.158673 ], [ -113.647041, 50.157055 ], [ -113.642675, 50.151639 ], [ -113.639814, 50.147556 ], [ -113.634175, 50.135735 ], [ -113.632251, 50.131741 ], [ -113.620363, 50.106626 ], [ -113.619376, 50.104527 ], [ -113.61384, 50.092744 ], [ -113.608561, 50.081675 ], [ -113.606581, 50.077494 ], [ -113.603669, 50.071347 ], [ -113.596202, 50.055589 ], [ -113.589593, 50.041645 ], [ -113.585973, 50.034075 ], [ -113.583284, 50.028469 ], [ -113.578879, 50.019214 ], [ -113.577072, 50.015416 ], [ -113.576933, 50.015123 ], [ -113.575461, 50.01195 ], [ -113.56968, 49.999485 ], [ -113.565276, 49.990109 ], [ -113.562856, 49.984972 ], [ -113.558388, 49.975529 ], [ -113.556763, 49.972084 ], [ -113.551497, 49.960982 ], [ -113.550282, 49.958226 ], [ -113.543115, 49.943177 ], [ -113.537579, 49.93141 ], [ -113.531657, 49.91895 ], [ -113.528868, 49.913112 ], [ -113.52852, 49.912237 ], [ -113.528209, 49.911247 ], [ -113.528013, 49.910313 ], [ -113.527878, 49.909552 ], [ -113.527877, 49.908805 ], [ -113.528009, 49.904496 ], [ -113.527999, 49.902765 ], [ -113.527923, 49.890232 ], [ -113.527923, 49.878148 ], [ -113.527237, 49.875493 ], [ -113.526537, 49.873052 ], [ -113.52449, 49.865701 ], [ -113.524447, 49.856267 ], [ -113.52449, 49.841269 ], [ -113.524447, 49.826764 ], [ -113.52437, 49.815239 ], [ -113.524361, 49.813862 ], [ -113.524357, 49.801088 ], [ -113.524347, 49.798401 ], [ -113.524359, 49.795748 ], [ -113.524362, 49.795059 ], [ -113.524404, 49.785441 ], [ -113.524345, 49.778892 ], [ -113.524361, 49.771945 ], [ -113.523632, 49.77031 ], [ -113.522087, 49.769007 ], [ -113.520199, 49.768287 ], [ -113.514319, 49.76643 ], [ -113.510629, 49.764933 ], [ -113.50771, 49.763048 ], [ -113.494964, 49.752901 ], [ -113.479476, 49.742059 ], [ -113.460012, 49.728293 ], [ -113.455597, 49.725235 ], [ -113.454572, 49.72442 ], [ -113.45366, 49.723598 ], [ -113.452976, 49.722915 ], [ -113.45129, 49.720944 ], [ -113.450256, 49.719782 ], [ -113.447746, 49.716986 ], [ -113.447289, 49.716417 ], [ -113.443365, 49.71203 ], [ -113.443141, 49.711789 ], [ -113.442819, 49.711601 ], [ -113.442606, 49.711479 ], [ -113.44236, 49.711374 ], [ -113.442103, 49.711279 ], [ -113.441837, 49.711197 ], [ -113.441458, 49.711124 ], [ -113.441117, 49.711086 ], [ -113.440779, 49.711071 ], [ -113.440369, 49.71109 ], [ -113.439978, 49.71114 ], [ -113.439697, 49.711196 ], [ -113.439397, 49.711273 ], [ -113.439102, 49.71139 ], [ -113.438862, 49.711498 ], [ -113.438591, 49.711635 ], [ -113.438391, 49.711766 ], [ -113.438075, 49.712061 ], [ -113.437745, 49.712489 ], [ -113.43745, 49.712915 ], [ -113.43721, 49.713212 ], [ -113.436932, 49.713495 ], [ -113.436629, 49.713751 ], [ -113.436287, 49.713988 ], [ -113.435908, 49.714204 ], [ -113.435538, 49.714393 ], [ -113.431814, 49.715951 ], [ -113.423934, 49.718913 ], [ -113.423148, 49.719208 ], [ -113.419515, 49.720574 ], [ -113.418553, 49.720884 ], [ -113.417353, 49.721191 ], [ -113.416622, 49.721378 ], [ -113.415189, 49.721933 ], [ -113.414887, 49.722092 ], [ -113.414553, 49.722328 ], [ -113.414204, 49.722586 ], [ -113.413109, 49.723458 ], [ -113.412313, 49.724209 ], [ -113.412068, 49.724385 ], [ -113.411871, 49.724508 ], [ -113.41169, 49.724585 ], [ -113.411456, 49.724665 ], [ -113.411213, 49.724721 ], [ -113.410939, 49.724758 ], [ -113.410649, 49.724769 ], [ -113.408706, 49.724761 ], [ -113.405913, 49.724764 ], [ -113.403119, 49.724754 ], [ -113.400316, 49.724758 ], [ -113.397541, 49.724759 ], [ -113.396042, 49.724769 ], [ -113.395455, 49.724758 ], [ -113.395172, 49.724734 ], [ -113.394938, 49.724709 ], [ -113.394729, 49.724678 ], [ -113.394467, 49.724619 ], [ -113.394209, 49.724544 ], [ -113.393974, 49.724469 ], [ -113.393696, 49.724366 ], [ -113.393468, 49.724249 ], [ -113.393241, 49.72412 ], [ -113.393012, 49.723965 ], [ -113.39289, 49.723864 ], [ -113.391771, 49.722807 ], [ -113.391196, 49.722209 ], [ -113.390266, 49.721242 ], [ -113.389586, 49.720567 ], [ -113.388246, 49.71917 ], [ -113.387068, 49.717968 ], [ -113.386688, 49.717602 ], [ -113.386617, 49.717518 ], [ -113.386398, 49.717254 ], [ -113.386209, 49.717057 ], [ -113.385914, 49.716751 ], [ -113.385697, 49.71658 ], [ -113.385459, 49.716404 ], [ -113.385223, 49.716267 ], [ -113.384941, 49.716121 ], [ -113.384654, 49.716013 ], [ -113.384337, 49.715925 ], [ -113.383953, 49.715848 ], [ -113.383617, 49.715803 ], [ -113.383303, 49.715777 ], [ -113.382948, 49.715769 ], [ -113.382593, 49.71579 ], [ -113.382269, 49.715822 ], [ -113.381923, 49.715886 ], [ -113.381566, 49.715981 ], [ -113.381244, 49.716092 ], [ -113.380957, 49.716219 ], [ -113.380551, 49.716436 ], [ -113.380035, 49.71673 ], [ -113.379484, 49.717081 ], [ -113.378419, 49.71777 ], [ -113.377851, 49.718172 ], [ -113.376955, 49.718849 ], [ -113.376472, 49.719244 ], [ -113.375953, 49.719695 ], [ -113.375418, 49.720164 ], [ -113.374752, 49.720812 ], [ -113.373389, 49.722261 ], [ -113.372553, 49.723172 ], [ -113.371753, 49.724069 ], [ -113.371091, 49.724816 ], [ -113.370703, 49.725251 ], [ -113.370292, 49.725659 ], [ -113.36989, 49.726068 ], [ -113.369354, 49.726543 ], [ -113.368728, 49.727064 ], [ -113.368135, 49.727526 ], [ -113.367567, 49.727939 ], [ -113.366419, 49.728699 ], [ -113.366091, 49.728877 ], [ -113.365827, 49.729022 ], [ -113.365501, 49.729201 ], [ -113.362951, 49.730439 ], [ -113.358468, 49.732139 ], [ -113.3397, 49.739588 ], [ -113.335475, 49.741364 ], [ -113.327488, 49.744425 ], [ -113.318052, 49.748192 ], [ -113.313869, 49.749882 ], [ -113.31224, 49.750619 ], [ -113.310651, 49.75165 ], [ -113.307682, 49.753879 ], [ -113.302921, 49.757409 ], [ -113.297078, 49.761832 ], [ -113.293465, 49.764507 ], [ -113.274088, 49.778989 ], [ -113.273227, 49.779697 ], [ -113.272213, 49.780484 ], [ -113.270309, 49.781807 ], [ -113.269287, 49.782542 ], [ -113.268506, 49.783052 ], [ -113.267549, 49.783577 ], [ -113.266355, 49.784155 ], [ -113.264867, 49.784696 ], [ -113.26421, 49.78488 ], [ -113.263279, 49.785126 ], [ -113.262406, 49.785321 ], [ -113.261535, 49.785468 ], [ -113.260247, 49.785632 ], [ -113.2584, 49.785752 ], [ -113.253189, 49.785761 ], [ -113.2503, 49.785759 ], [ -113.246741, 49.785753 ], [ -113.243803, 49.785748 ], [ -113.24168, 49.785746 ], [ -113.239441, 49.785743 ], [ -113.235416, 49.785738 ], [ -113.232546, 49.785734 ], [ -113.230542, 49.78573 ], [ -113.207916, 49.785665 ], [ -113.188962, 49.785585 ], [ -113.187421, 49.785394 ], [ -113.185955, 49.785084 ], [ -113.182069, 49.784248 ], [ -113.178433, 49.783545 ], [ -113.175537, 49.783555 ], [ -113.172403, 49.784002 ], [ -113.169876, 49.784514 ], [ -113.165425, 49.785057 ], [ -113.162661, 49.785308 ], [ -113.158491, 49.785468 ], [ -113.154009, 49.785249 ], [ -113.150706, 49.7849 ], [ -113.138727, 49.78387 ], [ -113.137918, 49.7838 ], [ -113.132484, 49.783537 ], [ -113.127139, 49.783666 ], [ -113.121522, 49.784134 ], [ -113.116401, 49.784873 ], [ -113.108878, 49.786479 ], [ -113.10643, 49.787036 ], [ -113.100519, 49.78837 ], [ -113.099817, 49.78851 ], [ -113.099069, 49.788664 ], [ -113.098414, 49.788796 ], [ -113.097678, 49.788933 ], [ -113.096947, 49.789058 ], [ -113.096124, 49.78919 ], [ -113.095087, 49.789365 ], [ -113.093946, 49.789519 ], [ -113.092851, 49.789655 ], [ -113.091995, 49.789773 ], [ -113.091108, 49.78988 ], [ -113.090105, 49.789981 ], [ -113.089148, 49.790064 ], [ -113.088464, 49.790125 ], [ -113.087728, 49.790181 ], [ -113.08695, 49.790229 ], [ -113.08621, 49.790281 ], [ -113.085391, 49.790327 ], [ -113.084622, 49.790364 ], [ -113.083774, 49.790396 ], [ -113.082731, 49.790426 ], [ -113.081849, 49.790441 ], [ -113.080915, 49.790449 ], [ -113.080041, 49.790455 ], [ -113.079132, 49.790458 ], [ -113.078156, 49.790437 ], [ -113.077306, 49.790416 ], [ -113.076308, 49.790386 ], [ -113.075035, 49.79033 ], [ -113.073984, 49.790268 ], [ -113.073014, 49.790204 ], [ -113.072411, 49.790162 ], [ -113.071942, 49.790123 ], [ -113.069874, 49.789921 ], [ -113.06869, 49.789793 ], [ -113.067583, 49.789667 ], [ -113.066892, 49.789578 ], [ -113.066126, 49.789472 ], [ -113.064972, 49.789301 ], [ -113.04876, 49.786854 ], [ -113.048, 49.78674 ], [ -113.047462, 49.78667 ], [ -113.046933, 49.786601 ], [ -113.046365, 49.786543 ], [ -113.041994, 49.786136 ], [ -113.038418, 49.786047 ], [ -113.028911, 49.786062 ], [ -113.013026, 49.786042 ], [ -113.003977, 49.786038 ], [ -113.002681, 49.785962 ], [ -113.001644, 49.785864 ], [ -113.00048, 49.785713 ], [ -112.999756, 49.785611 ], [ -112.9987, 49.785408 ], [ -112.997454, 49.785132 ], [ -112.995534, 49.784581 ], [ -112.99125, 49.783007 ], [ -112.98295, 49.779625 ], [ -112.980557, 49.778522 ], [ -112.979018, 49.777554 ], [ -112.976341, 49.775651 ], [ -112.973797, 49.773044 ], [ -112.965769, 49.764644 ], [ -112.960895, 49.75933 ], [ -112.960092, 49.758465 ], [ -112.959726, 49.75808 ], [ -112.959447, 49.757828 ], [ -112.959069, 49.757507 ], [ -112.958709, 49.757166 ], [ -112.958281, 49.756793 ], [ -112.95762, 49.756294 ], [ -112.956931, 49.755799 ], [ -112.956159, 49.755282 ], [ -112.955682, 49.754998 ], [ -112.955151, 49.754703 ], [ -112.952858, 49.753509 ], [ -112.949354, 49.752075 ], [ -112.94544, 49.749962 ], [ -112.938188, 49.743931 ], [ -112.931304, 49.738228 ], [ -112.926731, 49.73422 ], [ -112.925384, 49.732989 ], [ -112.924479, 49.731925 ], [ -112.923468, 49.730575 ], [ -112.922298, 49.729055 ], [ -112.921036, 49.7277 ], [ -112.918917, 49.725859 ], [ -112.918155, 49.725203 ], [ -112.916619, 49.723846 ], [ -112.915487, 49.723018 ], [ -112.915163, 49.72283 ], [ -112.914796, 49.722631 ], [ -112.914432, 49.722464 ], [ -112.914031, 49.722286 ], [ -112.913669, 49.722145 ], [ -112.913246, 49.722004 ], [ -112.912907, 49.721891 ], [ -112.912605, 49.721797 ], [ -112.912248, 49.721697 ], [ -112.911203, 49.721427 ], [ -112.910101, 49.721135 ], [ -112.906937, 49.720299 ], [ -112.903215, 49.719342 ], [ -112.900165, 49.718558 ], [ -112.897476, 49.717852 ], [ -112.895936, 49.717459 ], [ -112.895282, 49.717281 ], [ -112.894243, 49.71701 ], [ -112.893141, 49.716728 ], [ -112.892426, 49.716529 ], [ -112.89165, 49.716338 ], [ -112.891198, 49.71622 ], [ -112.890633, 49.716083 ], [ -112.889897, 49.715934 ], [ -112.889174, 49.715796 ], [ -112.888532, 49.715689 ], [ -112.887541, 49.715558 ], [ -112.88613, 49.71536 ], [ -112.885501, 49.715271 ], [ -112.884833, 49.715175 ], [ -112.884308, 49.715088 ], [ -112.883816, 49.71495 ], [ -112.883277, 49.714832 ], [ -112.882696, 49.714691 ], [ -112.88207, 49.714542 ], [ -112.881531, 49.714385 ], [ -112.881025, 49.714222 ], [ -112.880522, 49.714039 ], [ -112.879986, 49.713834 ], [ -112.879529, 49.71365 ], [ -112.87903, 49.713431 ], [ -112.878502, 49.713173 ], [ -112.877609, 49.712649 ], [ -112.875259, 49.711284 ], [ -112.873228, 49.710141 ], [ -112.872763, 49.709872 ], [ -112.87224, 49.709593 ], [ -112.871848, 49.709384 ], [ -112.871432, 49.709188 ], [ -112.871061, 49.709022 ], [ -112.870716, 49.708873 ], [ -112.870311, 49.708723 ], [ -112.869954, 49.708592 ], [ -112.869443, 49.708436 ], [ -112.868983, 49.708311 ], [ -112.868462, 49.708183 ], [ -112.86782, 49.708055 ], [ -112.867368, 49.707982 ], [ -112.866939, 49.707916 ], [ -112.86545, 49.707716 ], [ -112.861762, 49.707191 ], [ -112.86017, 49.706981 ], [ -112.85809, 49.706677 ], [ -112.85777, 49.706622 ], [ -112.857467, 49.706553 ], [ -112.857076, 49.706452 ], [ -112.856698, 49.706338 ], [ -112.854212, 49.705528 ], [ -112.85381, 49.705386 ], [ -112.853466, 49.70523 ], [ -112.853137, 49.705049 ], [ -112.852839, 49.704853 ], [ -112.851852, 49.704221 ], [ -112.851516, 49.704031 ], [ -112.851207, 49.703872 ], [ -112.850867, 49.70373 ], [ -112.850433, 49.703565 ], [ -112.84992, 49.703388 ], [ -112.847903, 49.702792 ], [ -112.845724, 49.702167 ], [ -112.844077, 49.701628 ], [ -112.8432, 49.701369 ], [ -112.842649, 49.701218 ], [ -112.842201, 49.701114 ], [ -112.841728, 49.701025 ], [ -112.840794, 49.700856 ], [ -112.838125, 49.700426 ], [ -112.834609, 49.699873 ], [ -112.832064, 49.699465 ], [ -112.828981, 49.698964 ], [ -112.828552, 49.698904 ], [ -112.827826, 49.698813 ], [ -112.827096, 49.698728 ], [ -112.826436, 49.698665 ], [ -112.825387, 49.6986 ], [ -112.824515, 49.698555 ], [ -112.823879, 49.698527 ], [ -112.822719, 49.698465 ], [ -112.820041, 49.698338 ], [ -112.818601, 49.69826 ], [ -112.817659, 49.698214 ], [ -112.817451, 49.698208 ], [ -112.816791, 49.698174 ], [ -112.81589, 49.698112 ], [ -112.814861, 49.698029 ], [ -112.814224, 49.697963 ], [ -112.813253, 49.697849 ], [ -112.813147, 49.697836 ], [ -112.811952, 49.697672 ], [ -112.811842, 49.697656 ], [ -112.811502, 49.697615 ], [ -112.811227, 49.697581 ], [ -112.810773, 49.697561 ], [ -112.810352, 49.69755 ], [ -112.810002, 49.697537 ], [ -112.809403, 49.697532 ], [ -112.806575, 49.697613 ], [ -112.805437, 49.69765 ], [ -112.804522, 49.697685 ], [ -112.80393, 49.697707 ], [ -112.80238, 49.69777 ], [ -112.802025, 49.697788 ], [ -112.801625, 49.697812 ], [ -112.800653, 49.697888 ], [ -112.799723, 49.697967 ], [ -112.79867, 49.698052 ], [ -112.798046, 49.698084 ], [ -112.797631, 49.698102 ], [ -112.797077, 49.698117 ], [ -112.796376, 49.698135 ], [ -112.79554, 49.698135 ], [ -112.794414, 49.698135 ], [ -112.793544, 49.698131 ], [ -112.788404, 49.698111 ], [ -112.787759, 49.698108 ], [ -112.787623, 49.698109 ], [ -112.786794, 49.698114 ], [ -112.785574, 49.698121 ], [ -112.784545, 49.69817 ], [ -112.784282, 49.698206 ], [ -112.783264, 49.698348 ], [ -112.782977, 49.69837 ], [ -112.782674, 49.69837 ], [ -112.782377, 49.69836 ], [ -112.781976, 49.698324 ], [ -112.781573, 49.698283 ], [ -112.780374, 49.698174 ], [ -112.779856, 49.698084 ], [ -112.77969, 49.698039 ], [ -112.779534, 49.697963 ], [ -112.779416, 49.697879 ], [ -112.779336, 49.697779 ], [ -112.779293, 49.697678 ], [ -112.779266, 49.697588 ], [ -112.779277, 49.697432 ], [ -112.779309, 49.697054 ], [ -112.779557, 49.695985 ], [ -112.779657, 49.695544 ], [ -112.779736, 49.695225 ], [ -112.779761, 49.695101 ], [ -112.779809, 49.694922 ], [ -112.779952, 49.69441 ], [ -112.780019, 49.694125 ], [ -112.780058, 49.69387 ], [ -112.780085, 49.693604 ], [ -112.78011, 49.693292 ], [ -112.780165, 49.692652 ], [ -112.780169, 49.692372 ], [ -112.780165, 49.692154 ], [ -112.780164, 49.692098 ], [ -112.780144, 49.691862 ], [ -112.780143, 49.691843 ], [ -112.780133, 49.69176 ], [ -112.780037, 49.691006 ], [ -112.779822, 49.689657 ], [ -112.77979, 49.689308 ], [ -112.779748, 49.688889 ], [ -112.779749, 49.688478 ], [ -112.779739, 49.688031 ], [ -112.779748, 49.687622 ], [ -112.779769, 49.687159 ], [ -112.779816, 49.686494 ], [ -112.779896, 49.685531 ], [ -112.779868, 49.68512 ], [ -112.779875, 49.684881 ], [ -112.779863, 49.684535 ], [ -112.77986, 49.684358 ], [ -112.779847, 49.684121 ], [ -112.779816, 49.683702 ], [ -112.779801, 49.683613 ], [ -112.779746, 49.683344 ], [ -112.779688, 49.682957 ], [ -112.779596, 49.68252 ], [ -112.779542, 49.68228 ], [ -112.7794, 49.681732 ], [ -112.779248, 49.681225 ], [ -112.779016, 49.680478 ], [ -112.778857, 49.679737 ], [ -112.778724, 49.678803 ], [ -112.778685, 49.678481 ], [ -112.77867, 49.678161 ], [ -112.778679, 49.677477 ], [ -112.778716, 49.676815 ], [ -112.77879, 49.676373 ], [ -112.778793, 49.676281 ], [ -112.778809, 49.67613 ], [ -112.778826, 49.675962 ], [ -112.779009, 49.67502 ], [ -112.779283, 49.674077 ], [ -112.779324, 49.67372 ], [ -112.779398, 49.673084 ], [ -112.779441, 49.672708 ], [ -112.779445, 49.672624 ], [ -112.779457, 49.6724 ], [ -112.779474, 49.670433 ], [ -112.779525, 49.669583 ], [ -112.779531, 49.668796 ], [ -112.779522, 49.66867 ], [ -112.779234, 49.66867 ], [ -112.778749, 49.66867 ], [ -112.773523, 49.668658 ], [ -112.769369, 49.668649 ], [ -112.763756, 49.668637 ], [ -112.7565, 49.668622 ], [ -112.75294, 49.668604 ], [ -112.752507, 49.668609 ], [ -112.751647, 49.668588 ], [ -112.750485, 49.668477 ], [ -112.748828, 49.668137 ], [ -112.747424, 49.667643 ], [ -112.746405, 49.667117 ], [ -112.745658, 49.666544 ], [ -112.743059, 49.663524 ], [ -112.742076, 49.662492 ], [ -112.741004, 49.661674 ], [ -112.73773, 49.659519 ], [ -112.735465, 49.657989 ], [ -112.733655, 49.656859 ], [ -112.718533, 49.646941 ], [ -112.708401, 49.640314 ], [ -112.699223, 49.634317 ], [ -112.697367, 49.633097 ], [ -112.696977, 49.632838 ], [ -112.688059, 49.626979 ], [ -112.68302, 49.623675 ], [ -112.676625, 49.619483 ], [ -112.667074, 49.613228 ], [ -112.658988, 49.607908 ], [ -112.655248, 49.605484 ], [ -112.650972, 49.603234 ], [ -112.646487, 49.600778 ], [ -112.644902, 49.599632 ], [ -112.643248, 49.598383 ], [ -112.641103, 49.596798 ], [ -112.639355, 49.595616 ], [ -112.637, 49.594133 ], [ -112.627891, 49.588425 ], [ -112.602707, 49.572537 ], [ -112.600552, 49.571077 ], [ -112.598617, 49.5692 ], [ -112.59449, 49.564228 ], [ -112.593913, 49.5636 ], [ -112.593075, 49.562994 ], [ -112.592311, 49.562392 ], [ -112.591327, 49.561818 ], [ -112.589132, 49.56091 ], [ -112.585717, 49.559813 ], [ -112.580643, 49.558189 ], [ -112.579135, 49.557557 ], [ -112.577853, 49.55687 ], [ -112.576584, 49.555934 ], [ -112.573576, 49.55323 ], [ -112.570447, 49.550424 ], [ -112.569232, 49.549564 ], [ -112.567477, 49.548436 ], [ -112.556735, 49.541871 ], [ -112.550446, 49.538028 ], [ -112.546175, 49.535345 ], [ -112.543195, 49.53355 ], [ -112.541943, 49.532867 ], [ -112.522018, 49.522571 ], [ -112.51966, 49.521328 ], [ -112.515058, 49.518953 ], [ -112.512595, 49.517628 ], [ -112.51096, 49.516524 ], [ -112.50948, 49.515214 ], [ -112.508358, 49.513958 ], [ -112.507396, 49.512646 ], [ -112.504667, 49.506398 ], [ -112.503772, 49.504449 ], [ -112.502829, 49.502755 ], [ -112.502134, 49.501789 ], [ -112.500323, 49.499793 ], [ -112.498242, 49.497945 ], [ -112.491937, 49.492826 ], [ -112.472122, 49.477074 ], [ -112.46972, 49.475443 ], [ -112.458697, 49.468584 ], [ -112.452076, 49.464789 ], [ -112.441426, 49.458313 ], [ -112.440081, 49.457555 ], [ -112.439154, 49.45711 ], [ -112.437692, 49.456507 ], [ -112.428185, 49.452715 ], [ -112.42567, 49.451509 ], [ -112.421872, 49.448943 ], [ -112.416852, 49.445256 ], [ -112.415374, 49.444112 ], [ -112.413757, 49.443067 ], [ -112.41199, 49.442277 ], [ -112.408866, 49.441094 ], [ -112.403355, 49.439005 ], [ -112.400426, 49.437907 ], [ -112.395624, 49.436024 ], [ -112.393366, 49.43506 ], [ -112.391141, 49.43401 ], [ -112.389667, 49.433278 ], [ -112.387242, 49.431857 ], [ -112.380495, 49.427283 ], [ -112.377371, 49.425166 ], [ -112.370769, 49.420228 ], [ -112.369213, 49.419103 ], [ -112.368029, 49.418322 ], [ -112.366868, 49.417688 ], [ -112.365853, 49.417109 ], [ -112.364196, 49.416279 ], [ -112.358645, 49.413606 ], [ -112.345069, 49.40697 ], [ -112.313601, 49.391666 ], [ -112.293379, 49.381796 ], [ -112.280866, 49.375648 ], [ -112.275641, 49.37312 ], [ -112.27415, 49.372357 ], [ -112.272971, 49.371647 ], [ -112.272087, 49.371077 ], [ -112.271197, 49.370405 ], [ -112.270258, 49.369532 ], [ -112.269242, 49.36847 ], [ -112.263635, 49.361606 ], [ -112.261762, 49.359287 ], [ -112.252776, 49.348158 ], [ -112.236226, 49.327356 ], [ -112.231602, 49.321856 ], [ -112.231504, 49.32174 ], [ -112.22954, 49.319363 ], [ -112.227247, 49.316403 ], [ -112.224225, 49.312727 ], [ -112.22224, 49.310555 ], [ -112.216986, 49.304836 ], [ -112.215307, 49.3031 ], [ -112.213887, 49.301877 ], [ -112.213028, 49.301145 ], [ -112.204369, 49.294474 ], [ -112.201434, 49.291851 ], [ -112.200807, 49.291228 ], [ -112.200423, 49.290767 ], [ -112.200161, 49.290419 ], [ -112.199859, 49.289985 ], [ -112.199566, 49.2895 ], [ -112.199306, 49.289012 ], [ -112.199053, 49.288493 ], [ -112.198839, 49.287999 ], [ -112.198721, 49.287648 ], [ -112.198561, 49.28716 ], [ -112.198436, 49.286692 ], [ -112.198364, 49.286224 ], [ -112.198303, 49.285775 ], [ -112.198271, 49.285347 ], [ -112.198256, 49.282987 ], [ -112.198269, 49.279832 ], [ -112.197949, 49.277457 ], [ -112.196565, 49.273803 ], [ -112.189342, 49.264663 ], [ -112.187679, 49.262625 ], [ -112.187029, 49.261975 ], [ -112.185766, 49.260758 ], [ -112.185003, 49.259994 ], [ -112.184046, 49.259256 ], [ -112.182999, 49.258515 ], [ -112.181937, 49.257797 ], [ -112.180185, 49.2566 ], [ -112.179314, 49.25606 ], [ -112.178353, 49.255415 ], [ -112.177525, 49.254853 ], [ -112.176769, 49.254313 ], [ -112.176125, 49.253788 ], [ -112.174746, 49.252496 ], [ -112.173897, 49.251682 ], [ -112.173107, 49.250905 ], [ -112.153316, 49.231556 ], [ -112.145266, 49.223554 ], [ -112.137196, 49.215571 ], [ -112.13617, 49.214714 ], [ -112.134956, 49.213742 ], [ -112.134168, 49.213187 ], [ -112.132859, 49.212334 ], [ -112.13166, 49.211607 ], [ -112.12957, 49.210494 ], [ -112.126976, 49.209298 ], [ -112.123065, 49.207555 ], [ -112.121541, 49.206848 ], [ -112.120052, 49.206151 ], [ -112.118948, 49.205619 ], [ -112.117869, 49.205062 ], [ -112.11706, 49.204623 ], [ -112.115236, 49.203546 ], [ -112.112919, 49.201989 ], [ -112.111625, 49.201012 ], [ -112.109029, 49.198836 ], [ -112.106118, 49.195686 ], [ -112.105716, 49.195156 ], [ -112.10511, 49.194341 ], [ -112.102212, 49.189769 ], [ -112.099016, 49.184803 ], [ -112.097293, 49.182034 ], [ -112.09607, 49.179971 ], [ -112.093881, 49.176527 ], [ -112.093098, 49.175222 ], [ -112.092754, 49.174577 ], [ -112.092518, 49.174107 ], [ -112.092368, 49.173658 ], [ -112.092271, 49.173279 ], [ -112.092175, 49.172816 ], [ -112.092083, 49.172436 ], [ -112.092105, 49.171924 ], [ -112.092116, 49.171461 ], [ -112.092153, 49.170923 ], [ -112.092303, 49.169933 ], [ -112.092797, 49.166924 ], [ -112.093183, 49.164483 ], [ -112.093425, 49.163015 ], [ -112.094079, 49.159023 ], [ -112.094508, 49.156383 ], [ -112.094555, 49.155953 ], [ -112.094556, 49.155221 ], [ -112.094514, 49.154793 ], [ -112.094503, 49.154492 ], [ -112.094385, 49.153874 ], [ -112.094213, 49.153187 ], [ -112.094063, 49.152773 ], [ -112.093902, 49.152351 ], [ -112.093602, 49.151853 ], [ -112.093237, 49.151257 ], [ -112.092797, 49.15078 ], [ -112.092443, 49.150366 ], [ -112.09211, 49.150043 ], [ -112.09144, 49.149473 ], [ -112.090329, 49.148576 ], [ -112.087872, 49.146674 ], [ -112.085019, 49.144442 ], [ -112.08445, 49.144014 ], [ -112.083795, 49.143488 ], [ -112.083195, 49.142934 ], [ -112.082218, 49.142021 ], [ -112.081255, 49.140863 ], [ -112.080652, 49.140161 ], [ -112.079815, 49.139052 ], [ -112.079375, 49.138315 ], [ -112.078935, 49.137592 ], [ -112.078367, 49.136469 ], [ -112.077562, 49.134475 ], [ -112.07679, 49.132524 ], [ -112.076328, 49.131429 ], [ -112.07591, 49.130565 ], [ -112.075325, 49.129377 ], [ -112.074891, 49.128684 ], [ -112.074472, 49.128059 ], [ -112.073582, 49.12674 ], [ -112.072631, 49.125499 ], [ -112.071973, 49.124711 ], [ -112.071054, 49.123645 ], [ -112.069784, 49.122387 ], [ -112.068512, 49.121237 ], [ -112.066629, 49.119662 ], [ -112.062677, 49.116351 ], [ -112.055397, 49.110231 ], [ -112.054528, 49.109557 ], [ -112.053423, 49.108763 ], [ -112.052461, 49.108147 ], [ -112.045612, 49.103924 ], [ -112.04278, 49.102161 ], [ -112.042125, 49.101683 ], [ -112.041514, 49.101163 ], [ -112.040923, 49.100503 ], [ -112.040258, 49.099716 ], [ -112.039046, 49.09777 ], [ -112.036761, 49.094883 ], [ -112.034383, 49.091688 ], [ -112.032973, 49.089733 ], [ -112.032072, 49.088525 ], [ -112.031257, 49.087397 ], [ -112.027952, 49.082826 ], [ -112.025918, 49.080115 ], [ -112.023929, 49.077471 ], [ -112.021412, 49.07398 ], [ -112.01924, 49.070443 ], [ -112.016505, 49.066092 ], [ -112.014616, 49.062914 ], [ -112.010898, 49.056849 ], [ -112.010336, 49.056053 ], [ -112.009981, 49.05549 ], [ -112.009595, 49.055054 ], [ -112.008383, 49.053913 ], [ -112.004081, 49.049886 ], [ -112.003484, 49.049323 ], [ -112.002241, 49.048061 ], [ -112.000186, 49.046131 ], [ -111.998352, 49.044419 ], [ -111.997649, 49.043715 ], [ -111.997014, 49.042914 ], [ -111.996531, 49.042236 ], [ -111.996215, 49.041782 ], [ -111.995927, 49.041307 ], [ -111.995594, 49.040698 ], [ -111.995321, 49.040118 ], [ -111.994693, 49.038673 ], [ -111.994001, 49.037108 ], [ -111.992996, 49.034801 ], [ -111.992369, 49.033409 ], [ -111.99149, 49.031403 ], [ -111.99082, 49.029866 ], [ -111.990004, 49.02802 ], [ -111.98936, 49.026568 ], [ -111.988769, 49.025185 ], [ -111.988218, 49.023936 ], [ -111.987589, 49.022536 ], [ -111.987371, 49.021885 ], [ -111.987235, 49.021333 ], [ -111.987097, 49.020858 ], [ -111.986995, 49.020386 ], [ -111.98692, 49.019658 ], [ -111.986872, 49.018979 ], [ -111.986866, 49.017199 ], [ -111.986872, 49.015542 ], [ -111.98686, 49.013841 ], [ -111.986847, 49.01231 ], [ -111.98685, 49.011137 ], [ -111.986861, 49.010352 ], [ -111.986797, 49.009758 ], [ -111.986645, 49.009206 ], [ -111.986377, 49.008696 ], [ -111.986147, 49.008354 ], [ -111.985836, 49.007998 ], [ -111.985337, 49.007558 ], [ -111.984989, 49.007266 ], [ -111.984301, 49.006795 ], [ -111.983474, 49.00638 ], [ -111.982516, 49.005993 ], [ -111.981765, 49.005715 ], [ -111.980942, 49.005514 ], [ -111.980129, 49.005334 ], [ -111.979328, 49.005194 ], [ -111.978062, 49.005092 ], [ -111.976985, 49.005074 ], [ -111.974918, 49.005173 ], [ -111.973139, 49.005292 ], [ -111.97154, 49.00538 ], [ -111.969019, 49.005514 ], [ -111.967562, 49.005617 ], [ -111.966045, 49.005705 ], [ -111.96469, 49.005725 ], [ -111.963991, 49.005648 ], [ -111.96346, 49.005567 ], [ -111.96295, 49.005448 ], [ -111.962485, 49.005296 ], [ -111.962163, 49.005187 ], [ -111.961761, 49.005004 ], [ -111.961293, 49.004765 ], [ -111.960951, 49.004554 ], [ -111.960789, 49.004426 ], [ -111.960561, 49.004236 ], [ -111.960215, 49.003866 ], [ -111.959973, 49.003571 ], [ -111.959774, 49.003265 ], [ -111.959681, 49.003043 ], [ -111.959581, 49.002794 ], [ -111.95951, 49.002452 ], [ -111.959584, 49.002087 ], [ -111.959768, 49.001731 ], [ -111.96008, 49.00139 ], [ -111.960323, 49.001097 ], [ -111.960993, 49.000276 ], [ -111.961147, 48.999913 ], [ -111.961177, 48.999675 ], [ -111.961154, 48.999405 ], [ -111.96075, 48.998378 ], [ -111.960537, 48.997835 ], [ -111.960261, 48.997296 ], [ -111.959961, 48.996969 ], [ -111.959772, 48.996485 ], [ -111.959789, 48.99582 ], [ -111.959918, 48.995443 ], [ -111.960048, 48.994907 ], [ -111.960094, 48.994603 ], [ -111.960084, 48.994414 ], [ -111.960109, 48.993824 ], [ -111.959994, 48.990856 ], [ -111.95827, 48.98094 ], [ -111.958253, 48.980705 ], [ -111.958185, 48.980405 ], [ -111.958073, 48.980015 ], [ -111.957973, 48.979662 ], [ -111.957788, 48.979177 ], [ -111.957579, 48.978688 ], [ -111.957393, 48.978342 ], [ -111.957182, 48.977986 ], [ -111.956929, 48.977617 ], [ -111.956287, 48.976872 ], [ -111.955429, 48.975932 ], [ -111.940434, 48.960617 ], [ -111.939756, 48.959862 ], [ -111.939258, 48.959163 ], [ -111.938864, 48.958475 ], [ -111.938589, 48.957934 ], [ -111.935242, 48.950139 ], [ -111.933705, 48.946469 ], [ -111.930948, 48.939956 ], [ -111.927211, 48.931012 ], [ -111.924522, 48.924688 ], [ -111.916608, 48.906188 ], [ -111.9112, 48.893335 ], [ -111.910969, 48.892844 ], [ -111.910694, 48.892325 ], [ -111.910265, 48.891676 ], [ -111.909921, 48.891247 ], [ -111.909492, 48.890711 ], [ -111.909046, 48.890237 ], [ -111.908119, 48.889328 ], [ -111.907385, 48.88863 ], [ -111.906844, 48.888116 ], [ -111.903694, 48.88508 ], [ -111.903291, 48.88469 ], [ -111.901737, 48.883161 ], [ -111.878176, 48.860393 ], [ -111.867242, 48.849753 ], [ -111.866486, 48.849013 ], [ -111.865877, 48.848301 ], [ -111.86531, 48.847533 ], [ -111.864675, 48.846613 ], [ -111.86392, 48.845195 ], [ -111.863594, 48.84437 ], [ -111.863233, 48.843167 ], [ -111.863139, 48.842738 ], [ -111.863019, 48.842026 ], [ -111.86295, 48.841071 ], [ -111.862942, 48.830326 ], [ -111.862942, 48.823285 ], [ -111.86289, 48.769261 ], [ -111.862864, 48.764515 ], [ -111.862813, 48.763474 ], [ -111.862718, 48.761743 ], [ -111.861611, 48.743809 ], [ -111.861439, 48.740289 ], [ -111.861439, 48.739949 ], [ -111.861594, 48.737176 ], [ -111.862178, 48.726719 ], [ -111.862229, 48.723792 ], [ -111.862083, 48.656639 ], [ -111.8621, 48.64979 ], [ -111.861997, 48.598701 ], [ -111.86198, 48.592185 ], [ -111.86198, 48.57272 ], [ -111.861912, 48.57163 ], [ -111.861817, 48.570494 ], [ -111.861697, 48.569205 ], [ -111.860581, 48.557657 ], [ -111.860077, 48.552231 ], [ -111.859663, 48.54801 ], [ -111.859594, 48.546805 ], [ -111.859611, 48.545322 ], [ -111.859792, 48.535383 ], [ -111.8598, 48.533888 ], [ -111.859886, 48.533121 ], [ -111.860015, 48.532581 ], [ -111.860246, 48.531939 ], [ -111.860598, 48.531387 ], [ -111.860942, 48.530899 ], [ -111.861688, 48.530109 ], [ -111.866109, 48.525755 ], [ -111.875953, 48.516192 ], [ -111.876929, 48.515247 ], [ -111.877241, 48.514954 ], [ -111.879228, 48.513021 ], [ -111.879759, 48.512467 ], [ -111.88006, 48.512124 ], [ -111.880267, 48.511881 ], [ -111.88042, 48.511679 ], [ -111.880571, 48.511473 ], [ -111.88094, 48.510956 ], [ -111.881292, 48.510376 ], [ -111.881653, 48.509733 ], [ -111.881996, 48.50904 ], [ -111.882305, 48.508346 ], [ -111.882562, 48.507572 ], [ -111.882777, 48.506828 ], [ -111.882931, 48.506134 ], [ -111.883026, 48.505588 ], [ -111.883441, 48.502992 ], [ -111.883604, 48.499975 ], [ -111.883614, 48.499767 ], [ -111.883635, 48.496433 ], [ -111.883673, 48.495815 ], [ -111.883734, 48.49503 ], [ -111.883798, 48.494396 ], [ -111.883866, 48.493802 ], [ -111.883999, 48.493 ], [ -111.884209, 48.492103 ], [ -111.884377, 48.49147 ], [ -111.884557, 48.490837 ], [ -111.885112, 48.489088 ], [ -111.885489, 48.48824 ], [ -111.886605, 48.485897 ], [ -111.88682, 48.485299 ], [ -111.887034, 48.484679 ], [ -111.887197, 48.484099 ], [ -111.887389, 48.483433 ], [ -111.88747, 48.482928 ], [ -111.887522, 48.482349 ], [ -111.887575, 48.481425 ], [ -111.887554, 48.480643 ], [ -111.887506, 48.480113 ], [ -111.887418, 48.479516 ], [ -111.887265, 48.478742 ], [ -111.887056, 48.477974 ], [ -111.886845, 48.47746 ], [ -111.886472, 48.476607 ], [ -111.885635, 48.474831 ], [ -111.885441, 48.474274 ], [ -111.885165, 48.473591 ], [ -111.884897, 48.472862 ], [ -111.884674, 48.47215 ], [ -111.884502, 48.471564 ], [ -111.884279, 48.470409 ], [ -111.884082, 48.46926 ], [ -111.883953, 48.468281 ], [ -111.883906, 48.467423 ], [ -111.883878, 48.46663 ], [ -111.883976, 48.454446 ], [ -111.884028, 48.447094 ], [ -111.884036, 48.443164 ], [ -111.884023, 48.441546 ], [ -111.884017, 48.440681 ], [ -111.884026, 48.43968 ], [ -111.884018, 48.438945 ], [ -111.88402, 48.438457 ], [ -111.884058, 48.438059 ], [ -111.884092, 48.43776 ], [ -111.884134, 48.437455 ], [ -111.884195, 48.437091 ], [ -111.884275, 48.436739 ], [ -111.884339, 48.436455 ], [ -111.884422, 48.436153 ], [ -111.884528, 48.435768 ], [ -111.884674, 48.435354 ], [ -111.884745, 48.435206 ], [ -111.884871, 48.43486 ], [ -111.885003, 48.434574 ], [ -111.885207, 48.434157 ], [ -111.885417, 48.433746 ], [ -111.885596, 48.433441 ], [ -111.88582, 48.433061 ], [ -111.886029, 48.43273 ], [ -111.886203, 48.432492 ], [ -111.886412, 48.432197 ], [ -111.886586, 48.431954 ], [ -111.886816, 48.431663 ], [ -111.887079, 48.431357 ], [ -111.887401, 48.430981 ], [ -111.887774, 48.430593 ], [ -111.888127, 48.430257 ], [ -111.888437, 48.429955 ], [ -111.889099, 48.429374 ], [ -111.889756, 48.428824 ], [ -111.890912, 48.427857 ], [ -111.892165, 48.426838 ], [ -111.905659, 48.415636 ], [ -111.90626, 48.415157 ], [ -111.906861, 48.41457 ], [ -111.907333, 48.414081 ], [ -111.907814, 48.413528 ], [ -111.908406, 48.412776 ], [ -111.909015, 48.411824 ], [ -111.909633, 48.410907 ], [ -111.920752, 48.392582 ], [ -111.927417, 48.381543 ], [ -111.93346, 48.371538 ], [ -111.933846, 48.37086 ], [ -111.934235, 48.370068 ], [ -111.934546, 48.369396 ], [ -111.934939, 48.368399 ], [ -111.935227, 48.367613 ], [ -111.935586, 48.366493 ], [ -111.935831, 48.365544 ], [ -111.936026, 48.364601 ], [ -111.936138, 48.363831 ], [ -111.936258, 48.362885 ], [ -111.936438, 48.360792 ], [ -111.936415, 48.329088 ], [ -111.936407, 48.310354 ], [ -111.936413, 48.303031 ], [ -111.936412, 48.300795 ], [ -111.936402, 48.300483 ], [ -111.936381, 48.271331 ], [ -111.936384, 48.26711 ], [ -111.936382, 48.259592 ], [ -111.936296, 48.241832 ], [ -111.936359, 48.224045 ], [ -111.936352, 48.223792 ], [ -111.936325, 48.223208 ], [ -111.936251, 48.222646 ], [ -111.936138, 48.222131 ], [ -111.936009, 48.221594 ], [ -111.935863, 48.221148 ], [ -111.935674, 48.220724 ], [ -111.935554, 48.220438 ], [ -111.935323, 48.219975 ], [ -111.934809, 48.219106 ], [ -111.93372, 48.217503 ], [ -111.933233, 48.216812 ], [ -111.932738, 48.21609 ], [ -111.932429, 48.215627 ], [ -111.931294, 48.214006 ], [ -111.927397, 48.208419 ], [ -111.925603, 48.205843 ], [ -111.925208, 48.205217 ], [ -111.92491, 48.204712 ], [ -111.924771, 48.204436 ], [ -111.924661, 48.204188 ], [ -111.924567, 48.203923 ], [ -111.924475, 48.203592 ], [ -111.924434, 48.203298 ], [ -111.924418, 48.202753 ], [ -111.924413, 48.20226 ], [ -111.924452, 48.201981 ], [ -111.924528, 48.20166 ], [ -111.924607, 48.201399 ], [ -111.924686, 48.201185 ], [ -111.924808, 48.200887 ], [ -111.92494, 48.200634 ], [ -111.925143, 48.200322 ], [ -111.925478, 48.199721 ], [ -111.929307, 48.193399 ], [ -111.931749, 48.18936 ], [ -111.932143, 48.188696 ], [ -111.932455, 48.188174 ], [ -111.933068, 48.187161 ], [ -111.933601, 48.186274 ], [ -111.933896, 48.185797 ], [ -111.934176, 48.185351 ], [ -111.934674, 48.184441 ], [ -111.934869, 48.184038 ], [ -111.935015, 48.183702 ], [ -111.935133, 48.183407 ], [ -111.935235, 48.183131 ], [ -111.935317, 48.182855 ], [ -111.935435, 48.182454 ], [ -111.935517, 48.18214 ], [ -111.935563, 48.181903 ], [ -111.935605, 48.181629 ], [ -111.935654, 48.181347 ], [ -111.935672, 48.181134 ], [ -111.935695, 48.180837 ], [ -111.93571, 48.180431 ], [ -111.935711, 48.179913 ], [ -111.935689, 48.179699 ], [ -111.935666, 48.179392 ], [ -111.935641, 48.179193 ], [ -111.935605, 48.178954 ], [ -111.935551, 48.17862 ], [ -111.935494, 48.178341 ], [ -111.935425, 48.178065 ], [ -111.935362, 48.177851 ], [ -111.935271, 48.177512 ], [ -111.935083, 48.177015 ], [ -111.93498, 48.176751 ], [ -111.934859, 48.176484 ], [ -111.934688, 48.176141 ], [ -111.934489, 48.175789 ], [ -111.934239, 48.175377 ], [ -111.933859, 48.174812 ], [ -111.933189, 48.173765 ], [ -111.928027, 48.165762 ], [ -111.927735, 48.165321 ], [ -111.92603, 48.162726 ], [ -111.925093, 48.161247 ], [ -111.924008, 48.159611 ], [ -111.922175, 48.156783 ], [ -111.920615, 48.154387 ], [ -111.919007, 48.151911 ], [ -111.91822, 48.150663 ], [ -111.916601, 48.148144 ], [ -111.915551, 48.146568 ], [ -111.914312, 48.144665 ], [ -111.913624, 48.143606 ], [ -111.912311, 48.141567 ], [ -111.911974, 48.141065 ], [ -111.911504, 48.140381 ], [ -111.910989, 48.139656 ], [ -111.91031, 48.138734 ], [ -111.909273, 48.1374 ], [ -111.907928, 48.135653 ], [ -111.906666, 48.13405 ], [ -111.905997, 48.133172 ], [ -111.904722, 48.131516 ], [ -111.901655, 48.127581 ], [ -111.900048, 48.125516 ], [ -111.898729, 48.123822 ], [ -111.894029, 48.117798 ], [ -111.893315, 48.116857 ], [ -111.892001, 48.115177 ], [ -111.889638, 48.112132 ], [ -111.887413, 48.109275 ], [ -111.884717, 48.105808 ], [ -111.876044, 48.094626 ], [ -111.87031, 48.087229 ], [ -111.862959, 48.077764 ], [ -111.861332, 48.075665 ], [ -111.858755, 48.072362 ], [ -111.857125, 48.070241 ], [ -111.854834, 48.06729 ], [ -111.850948, 48.062304 ], [ -111.85011, 48.061229 ], [ -111.849084, 48.059917 ], [ -111.845348, 48.055071 ], [ -111.836461, 48.043589 ], [ -111.832454, 48.038401 ], [ -111.828116, 48.032803 ], [ -111.825147, 48.028974 ], [ -111.816587, 48.017942 ], [ -111.816087, 48.017289 ], [ -111.815305, 48.016376 ], [ -111.814473, 48.015423 ], [ -111.813623, 48.014499 ], [ -111.812937, 48.013816 ], [ -111.811984, 48.012851 ], [ -111.810868, 48.011863 ], [ -111.809752, 48.010882 ], [ -111.808825, 48.010101 ], [ -111.807598, 48.009153 ], [ -111.806388, 48.008229 ], [ -111.805238, 48.007408 ], [ -111.784158, 47.992286 ], [ -111.782561, 47.991143 ], [ -111.767146, 47.980084 ], [ -111.766219, 47.979354 ], [ -111.765283, 47.978504 ], [ -111.764288, 47.977544 ], [ -111.763404, 47.976585 ], [ -111.762691, 47.975723 ], [ -111.762193, 47.97501 ], [ -111.761653, 47.974154 ], [ -111.761121, 47.973252 ], [ -111.753336, 47.959718 ], [ -111.749036, 47.952205 ], [ -111.736505, 47.930384 ], [ -111.736106, 47.92965 ], [ -111.735644, 47.928853 ], [ -111.735343, 47.928305 ], [ -111.733592, 47.925244 ], [ -111.733306, 47.924769 ], [ -111.732599, 47.923554 ], [ -111.732395, 47.923205 ], [ -111.731718, 47.922093 ], [ -111.731538, 47.921738 ], [ -111.73117, 47.921043 ], [ -111.726112, 47.912262 ], [ -111.71442, 47.89173 ], [ -111.713776, 47.890608 ], [ -111.713253, 47.889578 ], [ -111.712927, 47.888864 ], [ -111.71254, 47.888058 ], [ -111.712146, 47.88689 ], [ -111.711811, 47.885744 ], [ -111.711519, 47.884564 ], [ -111.711253, 47.883125 ], [ -111.711124, 47.881922 ], [ -111.71103, 47.880834 ], [ -111.71103, 47.879792 ], [ -111.711129, 47.869762 ], [ -111.711004, 47.867783 ], [ -111.710901, 47.866758 ], [ -111.710781, 47.865716 ], [ -111.710618, 47.864547 ], [ -111.710438, 47.863447 ], [ -111.710283, 47.862537 ], [ -111.709991, 47.861213 ], [ -111.709756, 47.860259 ], [ -111.709335, 47.858847 ], [ -111.708841, 47.857285 ], [ -111.70727, 47.852822 ], [ -111.706867, 47.851704 ], [ -111.706498, 47.850875 ], [ -111.706077, 47.850017 ], [ -111.705434, 47.848819 ], [ -111.705305, 47.848582 ], [ -111.704816, 47.847747 ], [ -111.704215, 47.846849 ], [ -111.703623, 47.846054 ], [ -111.702678, 47.844833 ], [ -111.701983, 47.843986 ], [ -111.700902, 47.842828 ], [ -111.699923, 47.841889 ], [ -111.698979, 47.841013 ], [ -111.698052, 47.84023 ], [ -111.696893, 47.839291 ], [ -111.668363, 47.817267 ], [ -111.667479, 47.816472 ], [ -111.667042, 47.815942 ], [ -111.666647, 47.815434 ], [ -111.666226, 47.81476 ], [ -111.665943, 47.814143 ], [ -111.66578, 47.813619 ], [ -111.665625, 47.812887 ], [ -111.6656, 47.812391 ], [ -111.665591, 47.811797 ], [ -111.666429, 47.79584 ], [ -111.666535, 47.793822 ], [ -111.666492, 47.791308 ], [ -111.666439, 47.750802 ], [ -111.666442, 47.741317 ], [ -111.666445, 47.740989 ], [ -111.666406, 47.723306 ], [ -111.666381, 47.72244 ], [ -111.666295, 47.721684 ], [ -111.666158, 47.720881 ], [ -111.665986, 47.72024 ], [ -111.665746, 47.719547 ], [ -111.665419, 47.71871 ], [ -111.665042, 47.717925 ], [ -111.664647, 47.717243 ], [ -111.664132, 47.716493 ], [ -111.663789, 47.716008 ], [ -111.663359, 47.715528 ], [ -111.662432, 47.714581 ], [ -111.658081, 47.710071 ], [ -111.647285, 47.699031 ], [ -111.646085, 47.697836 ], [ -111.632275, 47.683698 ], [ -111.631949, 47.683351 ], [ -111.606663, 47.657441 ], [ -111.60117, 47.651798 ], [ -111.590415, 47.64073 ], [ -111.589918, 47.640187 ], [ -111.589463, 47.639655 ], [ -111.589068, 47.639157 ], [ -111.588707, 47.638689 ], [ -111.588287, 47.638139 ], [ -111.587849, 47.637538 ], [ -111.587549, 47.637104 ], [ -111.587231, 47.636624 ], [ -111.58627, 47.63501 ], [ -111.585369, 47.633136 ], [ -111.570511, 47.6019 ], [ -111.569945, 47.600818 ], [ -111.56955, 47.600169 ], [ -111.569224, 47.599643 ], [ -111.568846, 47.599047 ], [ -111.568546, 47.598607 ], [ -111.568168, 47.598051 ], [ -111.567747, 47.597472 ], [ -111.567335, 47.596928 ], [ -111.566915, 47.59643 ], [ -111.566537, 47.595991 ], [ -111.552899, 47.581183 ], [ -111.552633, 47.580911 ], [ -111.537629, 47.564691 ], [ -111.536514, 47.563515 ], [ -111.535904, 47.562901 ], [ -111.535175, 47.56227 ], [ -111.534437, 47.561691 ], [ -111.533656, 47.561129 ], [ -111.532711, 47.560504 ], [ -111.531647, 47.559884 ], [ -111.53048, 47.559311 ], [ -111.529184, 47.558737 ], [ -111.528008, 47.558285 ], [ -111.526806, 47.557897 ], [ -111.525424, 47.557503 ], [ -111.524008, 47.557162 ], [ -111.522824, 47.556953 ], [ -111.521734, 47.556779 ], [ -111.509679, 47.554952 ], [ -111.484251, 47.551039 ], [ -111.477299, 47.54995 ], [ -111.455614, 47.546631 ], [ -111.452477, 47.546143 ], [ -111.452005, 47.546074 ], [ -111.448496, 47.545531 ], [ -111.445301, 47.545037 ], [ -111.443894, 47.544799 ], [ -111.442357, 47.544492 ], [ -111.440907, 47.544162 ], [ -111.439173, 47.543716 ], [ -111.437894, 47.543368 ], [ -111.436512, 47.542957 ], [ -111.435045, 47.54247 ], [ -111.385349, 47.526175 ], [ -111.384241, 47.525793 ], [ -111.383478, 47.52541 ], [ -111.382928, 47.525097 ], [ -111.382499, 47.524784 ], [ -111.382036, 47.524384 ], [ -111.381709, 47.524025 ], [ -111.381452, 47.523741 ], [ -111.380053, 47.521909 ], [ -111.379298, 47.520959 ], [ -111.379152, 47.520779 ], [ -111.378714, 47.520286 ], [ -111.378268, 47.519857 ], [ -111.377555, 47.519394 ], [ -111.376774, 47.518994 ], [ -111.376096, 47.518733 ], [ -111.375409, 47.51853 ], [ -111.374294, 47.518234 ], [ -111.351059, 47.512362 ], [ -111.350081, 47.512055 ], [ -111.348914, 47.511632 ], [ -111.348184, 47.511255 ], [ -111.347446, 47.510878 ], [ -111.346914, 47.510553 ], [ -111.346356, 47.510147 ], [ -111.345832, 47.509759 ], [ -111.345309, 47.509295 ], [ -111.344914, 47.508884 ], [ -111.344605, 47.508542 ], [ -111.344193, 47.50802 ], [ -111.34391, 47.507591 ], [ -111.343618, 47.507133 ], [ -111.343352, 47.506535 ], [ -111.343137, 47.505921 ], [ -111.343, 47.505254 ], [ -111.342914, 47.504779 ], [ -111.342871, 47.504205 ], [ -111.342884, 47.503714 ], [ -111.343017, 47.501337 ], [ -111.343037, 47.500922 ], [ -111.343074, 47.500247 ], [ -111.343153, 47.498866 ], [ -111.343699, 47.489338 ], [ -111.343837, 47.488347 ], [ -111.344051, 47.487517 ], [ -111.344326, 47.486746 ], [ -111.344695, 47.485795 ], [ -111.345184, 47.484855 ], [ -111.345493, 47.484356 ], [ -111.346068, 47.483527 ], [ -111.34715, 47.48221 ], [ -111.347948, 47.481392 ], [ -111.348765, 47.480715 ], [ -111.349751, 47.479978 ], [ -111.350866, 47.47913 ], [ -111.356582, 47.475347 ], [ -111.365214, 47.469592 ], [ -111.367419, 47.46813 ], [ -111.367934, 47.467829 ], [ -111.368578, 47.467492 ], [ -111.36923, 47.467144 ], [ -111.369994, 47.466807 ], [ -111.370973, 47.466407 ], [ -111.371926, 47.466042 ], [ -111.372818, 47.465746 ], [ -111.373522, 47.465525 ], [ -111.374509, 47.465258 ], [ -111.429286, 47.452445 ], [ -111.429621, 47.452364 ], [ -111.473508, 47.442064 ], [ -111.50183, 47.435384 ], [ -111.502749, 47.435175 ], [ -111.503701, 47.434961 ], [ -111.504362, 47.434792 ], [ -111.505221, 47.434543 ], [ -111.506045, 47.434299 ], [ -111.506663, 47.434095 ], [ -111.507143, 47.433927 ], [ -111.507907, 47.433648 ], [ -111.508654, 47.433312 ], [ -111.509255, 47.433045 ], [ -111.509933, 47.432725 ], [ -111.510534, 47.432412 ], [ -111.51122, 47.432029 ], [ -111.51183, 47.431674 ], [ -111.512954, 47.430931 ], [ -111.513546, 47.43049 ], [ -111.524011, 47.422011 ], [ -111.569141, 47.385345 ], [ -111.6142, 47.348685 ], [ -111.614466, 47.34847 ], [ -111.634341, 47.332266 ], [ -111.69101, 47.285965 ], [ -111.692683, 47.284596 ], [ -111.694151, 47.283461 ], [ -111.694838, 47.282943 ], [ -111.696432, 47.281863 ], [ -111.698123, 47.280815 ], [ -111.699024, 47.280297 ], [ -111.699436, 47.280064 ], [ -111.703522, 47.277671 ], [ -111.704183, 47.27728 ], [ -111.704689, 47.276966 ], [ -111.70511, 47.276686 ], [ -111.705436, 47.276442 ], [ -111.705788, 47.276139 ], [ -111.706182, 47.275766 ], [ -111.706612, 47.275289 ], [ -111.706989, 47.274806 ], [ -111.707367, 47.274264 ], [ -111.707573, 47.273856 ], [ -111.707813, 47.273379 ], [ -111.707933, 47.273047 ], [ -111.708045, 47.272651 ], [ -111.708122, 47.272307 ], [ -111.708199, 47.271911 ], [ -111.708234, 47.271544 ], [ -111.708234, 47.271212 ], [ -111.708157, 47.264538 ], [ -111.708114, 47.262342 ], [ -111.708122, 47.261794 ], [ -111.708157, 47.261369 ], [ -111.708234, 47.260851 ], [ -111.708268, 47.260653 ], [ -111.708337, 47.260257 ], [ -111.708508, 47.259511 ], [ -111.708637, 47.258923 ], [ -111.708783, 47.258241 ], [ -111.70898, 47.257536 ], [ -111.709152, 47.256942 ], [ -111.709298, 47.256383 ], [ -111.710079, 47.25333 ], [ -111.710328, 47.252363 ], [ -111.710474, 47.251833 ], [ -111.710637, 47.251332 ], [ -111.710834, 47.250889 ], [ -111.71104, 47.250545 ], [ -111.711367, 47.250085 ], [ -111.711658, 47.249753 ], [ -111.711942, 47.249444 ], [ -111.712345, 47.249089 ], [ -111.712766, 47.248751 ], [ -111.71316, 47.248494 ], [ -111.713624, 47.248221 ], [ -111.714147, 47.247958 ], [ -111.714834, 47.247655 ], [ -111.729726, 47.241112 ], [ -111.73291, 47.239807 ], [ -111.75169, 47.232534 ], [ -111.754093, 47.231624 ], [ -111.75635, 47.230861 ], [ -111.75676, 47.230739 ], [ -111.765002, 47.228413 ], [ -111.765835, 47.228157 ], [ -111.766633, 47.227877 ], [ -111.767345, 47.227597 ], [ -111.768092, 47.227306 ], [ -111.768719, 47.227026 ], [ -111.769474, 47.226676 ], [ -111.770058, 47.226361 ], [ -111.770727, 47.225988 ], [ -111.771448, 47.225534 ], [ -111.772118, 47.225096 ], [ -111.772693, 47.224688 ], [ -111.773405, 47.22417 ], [ -111.773714, 47.223936 ], [ -111.774169, 47.223575 ], [ -111.774641, 47.223103 ], [ -111.775104, 47.222619 ], [ -111.775499, 47.222211 ], [ -111.775885, 47.221774 ], [ -111.776306, 47.221255 ], [ -111.776658, 47.220777 ], [ -111.77695, 47.220369 ], [ -111.777422, 47.219611 ], [ -111.777722, 47.219057 ], [ -111.778014, 47.218422 ], [ -111.778289, 47.217746 ], [ -111.778503, 47.217104 ], [ -111.778675, 47.216428 ], [ -111.778881, 47.215694 ], [ -111.779061, 47.214988 ], [ -111.780057, 47.210796 ], [ -111.780203, 47.210213 ], [ -111.780323, 47.209758 ], [ -111.780435, 47.209397 ], [ -111.780641, 47.208808 ], [ -111.780907, 47.208201 ], [ -111.78113, 47.207729 ], [ -111.781301, 47.207438 ], [ -111.781499, 47.207129 ], [ -111.78228, 47.205916 ], [ -111.783293, 47.204645 ], [ -111.783936, 47.203974 ], [ -111.784735, 47.203146 ], [ -111.785593, 47.202225 ], [ -111.786314, 47.201466 ], [ -111.786872, 47.200883 ], [ -111.787902, 47.199845 ], [ -111.788254, 47.199507 ], [ -111.788674, 47.19914 ], [ -111.789086, 47.19879 ], [ -111.789584, 47.198387 ], [ -111.790168, 47.197921 ], [ -111.790605, 47.197618 ], [ -111.791249, 47.197227 ], [ -111.791824, 47.196877 ], [ -111.792545, 47.196474 ], [ -111.793198, 47.196136 ], [ -111.79397, 47.195769 ], [ -111.794805, 47.195425 ], [ -111.801248, 47.192835 ], [ -111.801575, 47.192701 ], [ -111.802656, 47.192287 ], [ -111.803514, 47.191937 ], [ -111.804167, 47.191628 ], [ -111.804665, 47.191394 ], [ -111.8053, 47.191045 ], [ -111.805723, 47.190797 ], [ -111.805997, 47.190634 ], [ -111.806478, 47.190323 ], [ -111.806732, 47.190144 ], [ -111.80699, 47.189955 ], [ -111.807242, 47.189755 ], [ -111.807499, 47.189537 ], [ -111.807978, 47.189108 ], [ -111.808309, 47.188784 ], [ -111.808738, 47.188316 ], [ -111.809145, 47.187831 ], [ -111.809375, 47.187515 ], [ -111.809578, 47.187207 ], [ -111.809725, 47.186968 ], [ -111.809941, 47.18658 ], [ -111.810196, 47.186052 ], [ -111.810485, 47.185392 ], [ -111.810582, 47.185034 ], [ -111.810757, 47.184458 ], [ -111.81087, 47.184068 ], [ -111.811288, 47.182591 ], [ -111.811466, 47.182023 ], [ -111.811592, 47.181562 ], [ -111.811725, 47.181068 ], [ -111.811881, 47.18053 ], [ -111.812016, 47.179972 ], [ -111.812133, 47.179486 ], [ -111.812304, 47.178698 ], [ -111.812475, 47.177933 ], [ -111.812795, 47.176671 ], [ -111.813022, 47.175805 ], [ -111.813143, 47.175313 ], [ -111.813289, 47.174743 ], [ -111.813451, 47.174086 ], [ -111.813587, 47.173603 ], [ -111.813709, 47.173199 ], [ -111.813868, 47.172742 ], [ -111.814052, 47.172177 ], [ -111.81431, 47.171374 ], [ -111.814446, 47.170953 ], [ -111.814555, 47.170592 ], [ -111.814621, 47.170315 ], [ -111.814724, 47.169845 ], [ -111.814867, 47.169286 ], [ -111.814924, 47.169023 ], [ -111.815005, 47.168585 ], [ -111.81512, 47.168075 ], [ -111.815267, 47.167513 ], [ -111.81537, 47.167124 ], [ -111.815534, 47.166596 ], [ -111.815743, 47.165879 ], [ -111.815883, 47.165407 ], [ -111.816017, 47.16497 ], [ -111.816151, 47.164499 ], [ -111.816299, 47.164102 ], [ -111.816455, 47.163605 ], [ -111.816606, 47.163233 ], [ -111.81675, 47.162929 ], [ -111.8169, 47.16265 ], [ -111.817163, 47.162234 ], [ -111.817461, 47.161792 ], [ -111.817707, 47.161428 ], [ -111.817918, 47.161172 ], [ -111.818109, 47.160939 ], [ -111.81826, 47.160773 ], [ -111.818436, 47.160598 ], [ -111.818713, 47.160322 ], [ -111.819137, 47.159916 ], [ -111.819338, 47.159742 ], [ -111.819615, 47.159506 ], [ -111.819811, 47.159353 ], [ -111.820101, 47.159137 ], [ -111.820886, 47.158653 ], [ -111.821347, 47.158391 ], [ -111.821709, 47.158179 ], [ -111.82215, 47.157949 ], [ -111.822792, 47.157656 ], [ -111.823291, 47.157407 ], [ -111.823951, 47.157074 ], [ -111.824604, 47.156773 ], [ -111.824926, 47.156618 ], [ -111.826016, 47.156075 ], [ -111.826777, 47.155704 ], [ -111.827118, 47.155527 ], [ -111.827632, 47.155278 ], [ -111.828833, 47.154684 ], [ -111.830331, 47.153967 ], [ -111.83092, 47.153679 ], [ -111.831417, 47.153485 ], [ -111.831694, 47.153394 ], [ -111.831937, 47.15332 ], [ -111.832157, 47.153261 ], [ -111.832517, 47.15318 ], [ -111.832892, 47.153117 ], [ -111.833253, 47.153076 ], [ -111.833573, 47.153049 ], [ -111.833993, 47.153025 ], [ -111.834559, 47.153049 ], [ -111.835126, 47.153113 ], [ -111.835701, 47.1532 ], [ -111.83595, 47.153259 ], [ -111.841856, 47.154858 ], [ -111.842362, 47.155002 ], [ -111.842712, 47.155094 ], [ -111.843019, 47.155158 ], [ -111.843672, 47.155257 ], [ -111.8438, 47.155267 ], [ -111.844087, 47.155287 ], [ -111.844399, 47.155286 ], [ -111.844699, 47.15528 ], [ -111.845058, 47.15526 ], [ -111.845509, 47.155193 ], [ -111.845869, 47.155122 ], [ -111.846291, 47.155019 ], [ -111.846644, 47.154905 ], [ -111.846928, 47.154785 ], [ -111.847126, 47.154685 ], [ -111.847479, 47.154504 ], [ -111.847736, 47.154346 ], [ -111.847908, 47.15421 ], [ -111.848115, 47.154036 ], [ -111.848251, 47.153894 ], [ -111.848342, 47.153792 ], [ -111.84847, 47.153647 ], [ -111.848543, 47.153546 ], [ -111.848649, 47.153419 ], [ -111.848764, 47.153232 ], [ -111.848861, 47.153032 ], [ -111.848947, 47.152823 ], [ -111.848973, 47.152708 ], [ -111.849021, 47.152541 ], [ -111.849042, 47.152364 ], [ -111.849077, 47.152131 ], [ -111.849103, 47.151825 ], [ -111.849333, 47.149062 ], [ -111.849393, 47.148406 ], [ -111.8494, 47.148192 ], [ -111.849408, 47.147987 ], [ -111.8494, 47.147824 ], [ -111.84939, 47.147698 ], [ -111.849374, 47.147556 ], [ -111.849347, 47.147435 ], [ -111.849331, 47.147351 ], [ -111.849245, 47.146966 ], [ -111.849142, 47.146674 ], [ -111.849059, 47.146434 ], [ -111.848943, 47.146212 ], [ -111.84886, 47.146053 ], [ -111.848767, 47.145896 ], [ -111.848673, 47.145762 ], [ -111.848566, 47.14562 ], [ -111.847025, 47.143717 ], [ -111.846887, 47.143525 ], [ -111.846766, 47.143353 ], [ -111.846661, 47.14319 ], [ -111.846521, 47.142953 ], [ -111.846415, 47.142749 ], [ -111.846343, 47.142591 ], [ -111.846269, 47.14237 ], [ -111.846241, 47.142263 ], [ -111.846223, 47.14217 ], [ -111.846209, 47.142062 ], [ -111.84619, 47.141876 ], [ -111.846192, 47.141745 ], [ -111.846217, 47.141528 ], [ -111.846242, 47.141353 ], [ -111.84627, 47.141184 ], [ -111.846324, 47.141016 ], [ -111.846398, 47.140797 ], [ -111.846525, 47.140531 ], [ -111.846604, 47.14041 ], [ -111.846676, 47.14029 ], [ -111.846846, 47.140059 ], [ -111.847142, 47.139751 ], [ -111.847281, 47.13963 ], [ -111.84746, 47.139479 ], [ -111.847678, 47.139323 ], [ -111.84791, 47.139171 ], [ -111.848186, 47.139013 ], [ -111.848438, 47.138891 ], [ -111.848706, 47.138772 ], [ -111.848984, 47.138674 ], [ -111.849267, 47.138581 ], [ -111.849592, 47.138477 ], [ -111.849947, 47.138393 ], [ -111.850257, 47.138331 ], [ -111.850556, 47.138292 ], [ -111.850908, 47.138241 ], [ -111.851241, 47.13822 ], [ -111.85164, 47.138209 ], [ -111.851974, 47.13821 ], [ -111.852237, 47.138223 ], [ -111.852532, 47.138247 ], [ -111.852795, 47.138276 ], [ -111.853123, 47.13833 ], [ -111.853394, 47.138374 ], [ -111.853787, 47.138457 ], [ -111.854766, 47.138667 ], [ -111.855826, 47.138884 ], [ -111.856179, 47.13897 ], [ -111.856565, 47.139029 ], [ -111.856792, 47.139068 ], [ -111.857173, 47.13911 ], [ -111.857431, 47.139137 ], [ -111.857676, 47.139157 ], [ -111.858048, 47.139176 ], [ -111.858338, 47.139177 ], [ -111.858762, 47.139167 ], [ -111.859155, 47.139148 ], [ -111.85955, 47.139117 ], [ -111.859805, 47.139089 ], [ -111.860245, 47.139022 ], [ -111.860491, 47.13898 ], [ -111.860683, 47.138944 ], [ -111.860973, 47.138885 ], [ -111.861214, 47.138829 ], [ -111.861479, 47.138758 ], [ -111.861743, 47.138677 ], [ -111.862069, 47.138562 ], [ -111.862344, 47.138449 ], [ -111.862687, 47.138297 ], [ -111.862931, 47.138175 ], [ -111.863114, 47.138087 ], [ -111.863314, 47.137975 ], [ -111.863599, 47.137807 ], [ -111.863972, 47.13756 ], [ -111.864261, 47.137341 ], [ -111.864442, 47.137202 ], [ -111.864674, 47.137005 ], [ -111.864969, 47.136736 ], [ -111.865258, 47.13642 ], [ -111.867853, 47.13324 ], [ -111.868102, 47.13296 ], [ -111.868445, 47.132657 ], [ -111.868909, 47.132347 ], [ -111.869372, 47.132096 ], [ -111.869776, 47.131938 ], [ -111.870291, 47.131792 ], [ -111.870754, 47.131687 ], [ -111.871286, 47.131623 ], [ -111.87181, 47.131605 ], [ -111.872359, 47.131617 ], [ -111.873389, 47.131705 ], [ -111.875681, 47.131897 ], [ -111.885054, 47.132785 ], [ -111.886566, 47.132886 ], [ -111.888607, 47.1331 ], [ -111.888985, 47.133135 ], [ -111.889766, 47.133217 ], [ -111.890444, 47.133281 ], [ -111.891225, 47.133322 ], [ -111.891886, 47.133334 ], [ -111.892598, 47.133334 ], [ -111.893242, 47.133316 ], [ -111.8938, 47.133305 ], [ -111.894512, 47.133246 ], [ -111.89513, 47.133194 ], [ -111.89563, 47.133132 ], [ -111.896274, 47.133044 ], [ -111.89678, 47.132974 ], [ -111.898531, 47.132636 ], [ -111.899656, 47.132344 ], [ -111.900711, 47.132022 ], [ -111.901398, 47.131783 ], [ -111.902445, 47.131403 ], [ -111.904162, 47.130755 ], [ -111.909034, 47.128927 ], [ -111.913729, 47.127181 ], [ -111.917251, 47.125878 ], [ -111.92071, 47.1247 ], [ -111.921698, 47.124251 ], [ -111.922387, 47.123838 ], [ -111.922806, 47.123526 ], [ -111.924809, 47.121884 ], [ -111.925527, 47.121467 ], [ -111.926631, 47.121045 ], [ -111.927545, 47.120838 ], [ -111.928844, 47.120679 ], [ -111.939954, 47.119561 ], [ -111.940893, 47.119375 ], [ -111.941491, 47.119193 ], [ -111.94258, 47.118694 ], [ -111.94328, 47.118205 ], [ -111.943682, 47.117842 ], [ -111.944167, 47.117216 ], [ -111.94437, 47.116782 ], [ -111.94452, 47.116283 ], [ -111.944594, 47.115646 ], [ -111.944471, 47.113184 ], [ -111.944519, 47.112085 ], [ -111.944699, 47.111164 ], [ -111.9451, 47.109855 ], [ -111.94519, 47.109613 ], [ -111.946818, 47.104798 ], [ -111.947185, 47.103915 ], [ -111.94757, 47.103215 ], [ -111.948705, 47.101708 ], [ -111.95025, 47.099859 ], [ -111.951568, 47.098237 ], [ -111.952318, 47.097326 ], [ -111.952866, 47.096646 ], [ -111.954165, 47.094457 ], [ -111.954536, 47.093996 ], [ -111.955001, 47.093573 ], [ -111.95538, 47.093283 ], [ -111.95597, 47.092921 ], [ -111.958022, 47.092174 ], [ -111.958929, 47.091665 ], [ -111.959563, 47.091145 ], [ -111.959918, 47.090782 ], [ -111.960199, 47.090406 ], [ -111.960514, 47.089782 ], [ -111.960679, 47.089121 ], [ -111.961076, 47.083974 ], [ -111.961218, 47.083113 ], [ -111.961515, 47.082259 ], [ -111.962027, 47.081188 ], [ -111.962536, 47.080367 ], [ -111.963148, 47.079581 ], [ -111.964601, 47.078023 ], [ -111.966718, 47.075826 ], [ -111.967024, 47.075517 ], [ -111.969094, 47.073375 ], [ -111.970437, 47.07194 ], [ -111.972154, 47.070032 ], [ -111.973432, 47.068542 ], [ -111.974103, 47.067809 ], [ -111.974604, 47.067107 ], [ -111.976616, 47.064731 ], [ -111.98105, 47.059331 ], [ -111.981811, 47.058552 ], [ -111.982905, 47.057585 ], [ -111.983864, 47.057007 ], [ -111.985011, 47.056354 ], [ -111.986314, 47.055712 ], [ -111.986853, 47.055504 ], [ -111.987827, 47.055224 ], [ -111.990272, 47.054577 ], [ -111.991627, 47.053954 ], [ -111.992491, 47.053494 ], [ -111.993301, 47.052977 ], [ -111.994268, 47.05221 ], [ -111.994901, 47.051592 ], [ -112.00108, 47.045261 ], [ -112.002131, 47.044014 ], [ -112.002341, 47.043639 ], [ -112.002459, 47.043291 ], [ -112.00254, 47.04249 ], [ -112.002551, 47.041633 ], [ -112.002802, 47.040468 ], [ -112.003031, 47.039996 ], [ -112.003311, 47.039629 ], [ -112.00408, 47.038901 ], [ -112.004669, 47.038537 ], [ -112.005381, 47.038191 ], [ -112.006132, 47.03787 ], [ -112.007591, 47.037508 ], [ -112.008057, 47.037437 ], [ -112.009475, 47.037313 ], [ -112.012696, 47.037258 ], [ -112.01489, 47.037245 ], [ -112.016275, 47.037163 ], [ -112.0192, 47.037033 ], [ -112.020595, 47.036893 ], [ -112.021841, 47.036661 ], [ -112.023428, 47.036288 ], [ -112.024543, 47.035923 ], [ -112.025634, 47.03549 ], [ -112.026621, 47.035004 ], [ -112.027875, 47.034259 ], [ -112.04368, 47.024236 ], [ -112.044909, 47.023441 ], [ -112.04544, 47.023036 ], [ -112.04608, 47.022418 ], [ -112.046528, 47.021863 ], [ -112.046751, 47.021531 ], [ -112.046895, 47.021189 ], [ -112.048457, 47.017223 ], [ -112.049379, 47.014861 ], [ -112.04961, 47.014335 ], [ -112.049878, 47.013819 ], [ -112.050194, 47.013314 ], [ -112.050556, 47.012813 ], [ -112.050955, 47.01233 ], [ -112.051351, 47.011873 ], [ -112.051809, 47.011423 ], [ -112.052303, 47.010991 ], [ -112.05283, 47.010576 ], [ -112.053387, 47.010182 ], [ -112.053972, 47.009806 ], [ -112.056998, 47.008006 ], [ -112.058515, 47.007109 ], [ -112.060333, 47.006031 ], [ -112.061846, 47.00513 ], [ -112.062472, 47.004869 ], [ -112.062889, 47.004741 ], [ -112.063358, 47.004645 ], [ -112.063683, 47.004606 ], [ -112.064074, 47.004561 ], [ -112.064445, 47.004519 ], [ -112.06488, 47.004576 ], [ -112.06527, 47.004629 ], [ -112.065565, 47.004697 ], [ -112.065974, 47.004792 ], [ -112.066808, 47.004991 ], [ -112.06824, 47.005361 ], [ -112.0686, 47.005467 ], [ -112.069096, 47.005596 ], [ -112.069473, 47.005688 ], [ -112.069732, 47.005745 ], [ -112.070266, 47.005855 ], [ -112.070699, 47.005951 ], [ -112.071253, 47.006048 ], [ -112.071642, 47.006114 ], [ -112.071928, 47.006158 ], [ -112.072302, 47.006209 ], [ -112.072735, 47.006263 ], [ -112.072984, 47.006287 ], [ -112.073367, 47.006318 ], [ -112.073792, 47.006352 ], [ -112.074219, 47.006372 ], [ -112.074542, 47.006382 ], [ -112.074829, 47.00639 ], [ -112.075178, 47.006392 ], [ -112.075603, 47.006393 ], [ -112.076788, 47.006332 ], [ -112.077271, 47.006281 ], [ -112.077628, 47.006225 ], [ -112.078026, 47.006153 ], [ -112.078436, 47.006074 ], [ -112.078755, 47.005996 ], [ -112.079201, 47.005866 ], [ -112.079533, 47.005747 ], [ -112.079812, 47.00563 ], [ -112.080082, 47.005495 ], [ -112.080379, 47.005332 ], [ -112.080635, 47.005164 ], [ -112.080953, 47.004927 ], [ -112.081049, 47.004826 ], [ -112.081198, 47.004689 ], [ -112.081316, 47.004562 ], [ -112.081449, 47.004379 ], [ -112.081568, 47.004191 ], [ -112.081674, 47.003987 ], [ -112.08174, 47.003858 ], [ -112.081806, 47.003692 ], [ -112.081884, 47.003438 ], [ -112.08191, 47.003275 ], [ -112.081934, 47.003066 ], [ -112.08193, 47.002831 ], [ -112.081896, 47.002597 ], [ -112.081853, 47.002371 ], [ -112.081798, 47.002194 ], [ -112.081607, 47.00176 ], [ -112.081184, 47.001198 ], [ -112.079559, 46.99968 ], [ -112.078016, 46.99838 ], [ -112.07758, 46.997912 ], [ -112.077288, 46.997532 ], [ -112.076986, 46.99693 ], [ -112.076889, 46.996514 ], [ -112.076886, 46.996116 ], [ -112.076984, 46.995478 ], [ -112.07795, 46.992584 ], [ -112.078047, 46.991994 ], [ -112.078024, 46.991594 ], [ -112.077935, 46.9912 ], [ -112.077672, 46.990627 ], [ -112.076129, 46.988425 ], [ -112.075762, 46.987771 ], [ -112.075646, 46.98742 ], [ -112.075619, 46.987055 ], [ -112.075663, 46.986679 ], [ -112.075796, 46.986299 ], [ -112.076008, 46.985921 ], [ -112.076502, 46.98539 ], [ -112.077181, 46.984932 ], [ -112.081242, 46.982494 ], [ -112.081853, 46.981972 ], [ -112.082104, 46.981646 ], [ -112.082346, 46.981245 ], [ -112.082526, 46.98074 ], [ -112.082567, 46.980266 ], [ -112.082681, 46.977427 ], [ -112.082826, 46.974499 ], [ -112.083032, 46.973709 ], [ -112.083438, 46.973098 ], [ -112.083941, 46.972667 ], [ -112.084536, 46.97225 ], [ -112.093815, 46.965771 ], [ -112.094034, 46.965596 ], [ -112.094318, 46.965306 ], [ -112.094501, 46.965085 ], [ -112.094642, 46.964864 ], [ -112.094785, 46.964575 ], [ -112.094868, 46.964338 ], [ -112.094926, 46.964081 ], [ -112.094952, 46.963813 ], [ -112.094963, 46.963562 ], [ -112.094964, 46.963005 ], [ -112.094945, 46.962147 ], [ -112.095064, 46.961322 ], [ -112.095315, 46.960775 ], [ -112.095663, 46.960328 ], [ -112.098599, 46.957746 ], [ -112.098975, 46.957432 ], [ -112.099726, 46.956946 ], [ -112.100314, 46.956644 ], [ -112.101038, 46.956326 ], [ -112.103946, 46.955297 ], [ -112.107802, 46.953955 ], [ -112.108475, 46.953671 ], [ -112.108901, 46.953445 ], [ -112.109465, 46.953038 ], [ -112.109979, 46.952469 ], [ -112.110197, 46.952042 ], [ -112.111502, 46.949682 ], [ -112.112324, 46.948952 ], [ -112.113184, 46.948533 ], [ -112.114208, 46.948308 ], [ -112.116111, 46.948021 ], [ -112.117289, 46.947669 ], [ -112.118334, 46.94705 ], [ -112.119549, 46.946068 ], [ -112.122402, 46.943642 ], [ -112.123133, 46.943013 ], [ -112.123553, 46.942583 ], [ -112.12389, 46.942171 ], [ -112.124619, 46.941266 ], [ -112.125571, 46.939982 ], [ -112.126015, 46.939377 ], [ -112.1265, 46.938749 ], [ -112.126751, 46.938397 ], [ -112.126995, 46.938014 ], [ -112.127231, 46.93766 ], [ -112.127472, 46.93708 ], [ -112.127553, 46.936521 ], [ -112.127485, 46.935878 ], [ -112.126037, 46.931011 ], [ -112.125843, 46.930596 ], [ -112.125614, 46.930288 ], [ -112.125356, 46.930017 ], [ -112.125, 46.92973 ], [ -112.122981, 46.928549 ], [ -112.122668, 46.928293 ], [ -112.122315, 46.927871 ], [ -112.122099, 46.927296 ], [ -112.122093, 46.926792 ], [ -112.122341, 46.926128 ], [ -112.12333, 46.924835 ], [ -112.123628, 46.924404 ], [ -112.123835, 46.923877 ], [ -112.123883, 46.923325 ], [ -112.123775, 46.9228 ], [ -112.123494, 46.922251 ], [ -112.123242, 46.921939 ], [ -112.123161, 46.921857 ], [ -112.12174, 46.920823 ], [ -112.121416, 46.920602 ], [ -112.120977, 46.920179 ], [ -112.120697, 46.919775 ], [ -112.120503, 46.919327 ], [ -112.120322, 46.918471 ], [ -112.119667, 46.915666 ], [ -112.11939, 46.915074 ], [ -112.119062, 46.914644 ], [ -112.118506, 46.91421 ], [ -112.116708, 46.913328 ], [ -112.116193, 46.912968 ], [ -112.115472, 46.912187 ], [ -112.115356, 46.911933 ], [ -112.115279, 46.911728 ], [ -112.115241, 46.911454 ], [ -112.11523, 46.911175 ], [ -112.115266, 46.910915 ], [ -112.115368, 46.910602 ], [ -112.115446, 46.910438 ], [ -112.115662, 46.910084 ], [ -112.11604, 46.909673 ], [ -112.119395, 46.907257 ], [ -112.119896, 46.906695 ], [ -112.120633, 46.90538 ], [ -112.120979, 46.904986 ], [ -112.122506, 46.903673 ], [ -112.12294, 46.903177 ], [ -112.123172, 46.902727 ], [ -112.123344, 46.902186 ], [ -112.12337, 46.901665 ], [ -112.12326, 46.90114 ], [ -112.123004, 46.900542 ], [ -112.122296, 46.899463 ], [ -112.118791, 46.893932 ], [ -112.118077, 46.892887 ], [ -112.117488, 46.892253 ], [ -112.11672, 46.891638 ], [ -112.11608, 46.891253 ], [ -112.114112, 46.89021 ], [ -112.110716, 46.888379 ], [ -112.110338, 46.888159 ], [ -112.106096, 46.885885 ], [ -112.101398, 46.88336 ], [ -112.094609, 46.879651 ], [ -112.0931, 46.878959 ], [ -112.091311, 46.878288 ], [ -112.089958, 46.877867 ], [ -112.088521, 46.877511 ], [ -112.069016, 46.872724 ], [ -112.049279, 46.867857 ], [ -112.047103, 46.867189 ], [ -112.044993, 46.866382 ], [ -112.043719, 46.865827 ], [ -112.042541, 46.865241 ], [ -112.040586, 46.864168 ], [ -112.039263, 46.863298 ], [ -112.037988, 46.862365 ], [ -112.036738, 46.86133 ], [ -112.014076, 46.842104 ], [ -112.012788, 46.840941 ], [ -112.011749, 46.839918 ], [ -112.010445, 46.83844 ], [ -112.009025, 46.83667 ], [ -112.007922, 46.83499 ], [ -112.007123, 46.833605 ], [ -112.006361, 46.832073 ], [ -112.005882, 46.830963 ], [ -112.003109, 46.824179 ], [ -112.002795, 46.823308 ], [ -112.001559, 46.820272 ], [ -112.001405, 46.819943 ], [ -112.001005, 46.818846 ], [ -112.000667, 46.817632 ], [ -112.000578, 46.816809 ], [ -112.000493, 46.815794 ], [ -112.000516, 46.814928 ], [ -112.000693, 46.813761 ], [ -112.001162, 46.812127 ], [ -112.001628, 46.811112 ], [ -112.002462, 46.809713 ], [ -112.003317, 46.808598 ], [ -112.004049, 46.80782 ], [ -112.005118, 46.806834 ], [ -112.006592, 46.805739 ], [ -112.028016, 46.792156 ], [ -112.029741, 46.790912 ], [ -112.030745, 46.79008 ], [ -112.031484, 46.78938 ], [ -112.032257, 46.788498 ], [ -112.033266, 46.787176 ], [ -112.033873, 46.786179 ], [ -112.034356, 46.785153 ], [ -112.03474, 46.784222 ], [ -112.035041, 46.783106 ], [ -112.035281, 46.78179 ], [ -112.035332, 46.780429 ], [ -112.035162, 46.778932 ], [ -112.034994, 46.7781 ], [ -112.034623, 46.77676 ], [ -112.031439, 46.767593 ], [ -112.030872, 46.766116 ], [ -112.03058, 46.765566 ], [ -112.0298, 46.76452 ], [ -112.029051, 46.763776 ], [ -112.027625, 46.762715 ], [ -112.021142, 46.759474 ], [ -112.019784, 46.758674 ], [ -112.018427, 46.757701 ], [ -112.017026, 46.756401 ], [ -112.01646, 46.75581 ], [ -112.015787, 46.754949 ], [ -112.015034, 46.753726 ], [ -112.014675, 46.752957 ], [ -112.014369, 46.752178 ], [ -112.014113, 46.751252 ], [ -112.013978, 46.7503 ], [ -112.013965, 46.748917 ], [ -112.01407, 46.747974 ], [ -112.014425, 46.74657 ], [ -112.017111, 46.737855 ], [ -112.017375, 46.736784 ], [ -112.017607, 46.735355 ], [ -112.017673, 46.734409 ], [ -112.017685, 46.733581 ], [ -112.017588, 46.732104 ], [ -112.017413, 46.730961 ], [ -112.016851, 46.728893 ], [ -112.016052, 46.726997 ], [ -112.015229, 46.725474 ], [ -112.014031, 46.723297 ], [ -112.013406, 46.721963 ], [ -112.012932, 46.720654 ], [ -112.012536, 46.719097 ], [ -112.012339, 46.717599 ], [ -112.012283, 46.716345 ], [ -112.012185, 46.707222 ], [ -112.012075, 46.70024 ], [ -112.011602, 46.660701 ], [ -112.011601, 46.660313 ], [ -112.011436, 46.648193 ], [ -112.011441, 46.648028 ], [ -112.011427, 46.646569 ], [ -112.011246, 46.631754 ], [ -112.011146, 46.621062 ], [ -112.011132, 46.619553 ], [ -112.01109, 46.616805 ], [ -112.011059, 46.614798 ], [ -112.011048, 46.61406 ], [ -112.011037, 46.613709 ], [ -112.010993, 46.613319 ], [ -112.010941, 46.613077 ], [ -112.010877, 46.612674 ], [ -112.010838, 46.612474 ], [ -112.010746, 46.61207 ], [ -112.01064, 46.611666 ], [ -112.010587, 46.611464 ], [ -112.010508, 46.611263 ], [ -112.010314, 46.610728 ], [ -112.010256, 46.610545 ], [ -112.010198, 46.610369 ], [ -112.009915, 46.609824 ], [ -112.009739, 46.609444 ], [ -112.009564, 46.609128 ], [ -112.009295, 46.608718 ], [ -112.006524, 46.603944 ], [ -112.003906, 46.599455 ], [ -112.002681, 46.597363 ], [ -112.001205, 46.594784 ], [ -112.0, 46.592799 ], [ -111.999632, 46.592286 ], [ -111.999301, 46.591861 ], [ -111.998522, 46.590983 ], [ -111.99828, 46.590699 ], [ -111.997972, 46.590398 ], [ -111.996867, 46.589396 ], [ -111.996488, 46.589096 ], [ -111.995735, 46.58854 ], [ -111.988743, 46.583855 ], [ -111.983795, 46.580551 ], [ -111.98049, 46.578347 ], [ -111.978312, 46.576892 ], [ -111.976196, 46.575478 ], [ -111.970612, 46.571744 ], [ -111.969019, 46.570651 ], [ -111.966637, 46.569071 ], [ -111.957631, 46.563066 ], [ -111.956867, 46.562459 ], [ -111.956078, 46.56178 ], [ -111.955528, 46.561278 ], [ -111.95503, 46.560765 ], [ -111.954464, 46.560133 ], [ -111.953992, 46.559508 ], [ -111.953623, 46.558994 ], [ -111.953365, 46.558587 ], [ -111.953022, 46.558003 ], [ -111.95261, 46.557224 ], [ -111.951443, 46.55468 ], [ -111.946695, 46.544203 ], [ -111.946304, 46.54331 ], [ -111.945744, 46.542172 ], [ -111.945185, 46.540831 ], [ -111.944611, 46.539567 ], [ -111.943999, 46.538252 ], [ -111.943392, 46.536869 ], [ -111.941186, 46.532081 ], [ -111.940903, 46.53142 ], [ -111.940559, 46.530629 ], [ -111.940379, 46.530109 ], [ -111.940293, 46.529684 ], [ -111.940268, 46.529241 ], [ -111.940319, 46.528857 ], [ -111.940422, 46.528432 ], [ -111.940568, 46.528025 ], [ -111.94074, 46.527676 ], [ -111.940971, 46.527322 ], [ -111.941246, 46.527003 ], [ -111.941667, 46.526619 ], [ -111.943134, 46.525497 ], [ -111.943589, 46.525125 ], [ -111.94401, 46.524718 ], [ -111.944344, 46.524346 ], [ -111.944662, 46.523974 ], [ -111.944902, 46.523625 ], [ -111.945151, 46.52323 ], [ -111.9454, 46.522775 ], [ -111.945606, 46.522326 ], [ -111.945744, 46.521966 ], [ -111.945855, 46.521511 ], [ -111.947984, 46.511742 ], [ -111.948095, 46.51137 ], [ -111.948361, 46.510661 ], [ -111.949408, 46.508074 ], [ -111.952344, 46.500837 ], [ -111.952541, 46.500393 ], [ -111.952825, 46.499944 ], [ -111.953168, 46.49946 ], [ -111.953494, 46.499105 ], [ -111.953932, 46.498775 ], [ -111.954764, 46.49819 ], [ -111.958575, 46.495909 ], [ -111.959245, 46.495501 ], [ -111.960052, 46.495017 ], [ -111.961021, 46.494414 ], [ -111.961871, 46.493912 ], [ -111.962729, 46.493415 ], [ -111.963579, 46.492825 ], [ -111.964025, 46.4925 ], [ -111.964661, 46.492015 ], [ -111.965124, 46.491625 ], [ -111.965656, 46.491123 ], [ -111.966369, 46.49042 ], [ -111.96709, 46.489651 ], [ -111.976325, 46.479522 ], [ -111.976891, 46.478848 ], [ -111.977312, 46.47834 ], [ -111.977733, 46.477808 ], [ -111.977973, 46.477465 ], [ -111.978127, 46.477211 ], [ -111.978282, 46.476974 ], [ -111.97884, 46.475928 ], [ -111.979217, 46.475042 ], [ -111.980033, 46.473044 ], [ -111.980271, 46.472374 ], [ -111.980435, 46.471976 ], [ -111.980677, 46.471349 ], [ -111.980952, 46.470648 ], [ -111.981239, 46.4699 ], [ -111.981493, 46.46921 ], [ -111.981736, 46.468592 ], [ -111.981874, 46.468256 ], [ -111.982316, 46.467018 ], [ -111.982732, 46.465939 ], [ -111.982851, 46.465572 ], [ -111.983251, 46.464294 ], [ -111.983315, 46.464025 ], [ -111.983475, 46.463313 ], [ -111.983818, 46.462054 ], [ -111.98424, 46.460487 ], [ -111.985346, 46.456259 ], [ -111.985844, 46.45432 ], [ -111.986814, 46.450701 ], [ -111.986994, 46.449938 ], [ -111.987251, 46.449004 ], [ -111.987543, 46.4483 ], [ -111.987809, 46.447709 ], [ -111.988255, 46.446833 ], [ -111.990024, 46.443882 ], [ -111.990719, 46.44254 ], [ -111.99283, 46.438169 ], [ -111.995886, 46.431816 ], [ -111.996143, 46.431165 ], [ -111.996341, 46.430644 ], [ -111.996598, 46.42984 ], [ -111.996753, 46.429213 ], [ -111.99689, 46.428609 ], [ -111.997405, 46.425385 ], [ -111.997642, 46.424314 ], [ -111.997932, 46.423545 ], [ -111.998107, 46.423114 ], [ -111.99835, 46.422586 ], [ -111.998575, 46.422164 ], [ -111.998884, 46.421653 ], [ -111.999228, 46.421145 ], [ -111.999447, 46.420848 ], [ -111.999923, 46.420267 ], [ -112.000156, 46.42 ], [ -112.000433, 46.41971 ], [ -112.00089, 46.419258 ], [ -112.001482, 46.418746 ], [ -112.002113, 46.418226 ], [ -112.00272, 46.417745 ], [ -112.002961, 46.417554 ], [ -112.003548, 46.417078 ], [ -112.004211, 46.41654 ], [ -112.004746, 46.416099 ], [ -112.005461, 46.41553 ], [ -112.005985, 46.415112 ], [ -112.006394, 46.414775 ], [ -112.006854, 46.414405 ], [ -112.007245, 46.4141 ], [ -112.00765, 46.413758 ], [ -112.00797, 46.413501 ], [ -112.008169, 46.413338 ], [ -112.008593, 46.412997 ], [ -112.009014, 46.412645 ], [ -112.009385, 46.412341 ], [ -112.009697, 46.412025 ], [ -112.010255, 46.411528 ], [ -112.010946, 46.410853 ], [ -112.011431, 46.410352 ], [ -112.011895, 46.409867 ], [ -112.012165, 46.409569 ], [ -112.012675, 46.408992 ], [ -112.013067, 46.408517 ], [ -112.013404, 46.408107 ], [ -112.013911, 46.407447 ], [ -112.014218, 46.407046 ], [ -112.014492, 46.406653 ], [ -112.015033, 46.405845 ], [ -112.01524, 46.405542 ], [ -112.015368, 46.405329 ], [ -112.015741, 46.40471 ], [ -112.015972, 46.404308 ], [ -112.016318, 46.403688 ], [ -112.016624, 46.403056 ], [ -112.01703, 46.402204 ], [ -112.017522, 46.401159 ], [ -112.017917, 46.400311 ], [ -112.019197, 46.397512 ], [ -112.019961, 46.395938 ], [ -112.020503, 46.394858 ], [ -112.020846, 46.394173 ], [ -112.021172, 46.393579 ], [ -112.021321, 46.393351 ], [ -112.021496, 46.393063 ], [ -112.021714, 46.392713 ], [ -112.021925, 46.392391 ], [ -112.022307, 46.391799 ], [ -112.022576, 46.391431 ], [ -112.02269, 46.391255 ], [ -112.022776, 46.391138 ], [ -112.023072, 46.390745 ], [ -112.023396, 46.390333 ], [ -112.023636, 46.390016 ], [ -112.02407, 46.389472 ], [ -112.02447, 46.388962 ], [ -112.025293, 46.387893 ], [ -112.025518, 46.387587 ], [ -112.025835, 46.387153 ], [ -112.02604, 46.386874 ], [ -112.026296, 46.386489 ], [ -112.026502, 46.386192 ], [ -112.026698, 46.385898 ], [ -112.027204, 46.385069 ], [ -112.027659, 46.384252 ], [ -112.027743, 46.384088 ], [ -112.0278, 46.383963 ], [ -112.02782, 46.383925 ], [ -112.027998, 46.383561 ], [ -112.028106, 46.383379 ], [ -112.028359, 46.382926 ], [ -112.028737, 46.382022 ], [ -112.029617, 46.379591 ], [ -112.030115, 46.378271 ], [ -112.030424, 46.377365 ], [ -112.030767, 46.376572 ], [ -112.031059, 46.375944 ], [ -112.033059, 46.372077 ], [ -112.033626, 46.37091 ], [ -112.033917, 46.370342 ], [ -112.034252, 46.369714 ], [ -112.034492, 46.369293 ], [ -112.03481, 46.368766 ], [ -112.035136, 46.368298 ], [ -112.035445, 46.367848 ], [ -112.03584, 46.367386 ], [ -112.036295, 46.366877 ], [ -112.036879, 46.366249 ], [ -112.043015, 46.359532 ], [ -112.043436, 46.359053 ], [ -112.043754, 46.358638 ], [ -112.044011, 46.358283 ], [ -112.044234, 46.357927 ], [ -112.044475, 46.357501 ], [ -112.044698, 46.357062 ], [ -112.044852, 46.356719 ], [ -112.044972, 46.356357 ], [ -112.045093, 46.355972 ], [ -112.045204, 46.355534 ], [ -112.045281, 46.355173 ], [ -112.04535, 46.354693 ], [ -112.045384, 46.354284 ], [ -112.045376, 46.353828 ], [ -112.045359, 46.353206 ], [ -112.045058, 46.350658 ], [ -112.045032, 46.350072 ], [ -112.045075, 46.349545 ], [ -112.045178, 46.349154 ], [ -112.045317, 46.348787 ], [ -112.045481, 46.348449 ], [ -112.045687, 46.348135 ], [ -112.04591, 46.347851 ], [ -112.046202, 46.347519 ], [ -112.048562, 46.345392 ], [ -112.048862, 46.34509 ], [ -112.049146, 46.34477 ], [ -112.04936, 46.344467 ], [ -112.04954, 46.344153 ], [ -112.049738, 46.343721 ], [ -112.049849, 46.343241 ], [ -112.049884, 46.343028 ], [ -112.049892, 46.342755 ], [ -112.049884, 46.3424 ], [ -112.049806, 46.341931 ], [ -112.049396, 46.34035 ], [ -112.049218, 46.339673 ], [ -112.049159, 46.33933 ], [ -112.049143, 46.339002 ], [ -112.049168, 46.338597 ], [ -112.049229, 46.338284 ], [ -112.049292, 46.338051 ], [ -112.049341, 46.337839 ], [ -112.049439, 46.337616 ], [ -112.049559, 46.337404 ], [ -112.0497, 46.337162 ], [ -112.049936, 46.33687 ], [ -112.05015, 46.336595 ], [ -112.054836, 46.331763 ], [ -112.055497, 46.33117 ], [ -112.055875, 46.33085 ], [ -112.056372, 46.33053 ], [ -112.05687, 46.330263 ], [ -112.057445, 46.330044 ], [ -112.058132, 46.329789 ], [ -112.060261, 46.329273 ], [ -112.060879, 46.329137 ], [ -112.061445, 46.328959 ], [ -112.061994, 46.328752 ], [ -112.062561, 46.32845 ], [ -112.06317, 46.3281 ], [ -112.063625, 46.327786 ], [ -112.064054, 46.327371 ], [ -112.064466, 46.326891 ], [ -112.06523, 46.325741 ], [ -112.065677, 46.325125 ], [ -112.066028, 46.324674 ], [ -112.06638, 46.324318 ], [ -112.066904, 46.323868 ], [ -112.067505, 46.323501 ], [ -112.06826, 46.323109 ], [ -112.069642, 46.322445 ], [ -112.070509, 46.322007 ], [ -112.071195, 46.321663 ], [ -112.071728, 46.321378 ], [ -112.07238, 46.320958 ], [ -112.073067, 46.320519 ], [ -112.073762, 46.320045 ], [ -112.074277, 46.319582 ], [ -112.074732, 46.319138 ], [ -112.075169, 46.318705 ], [ -112.075599, 46.318189 ], [ -112.076053, 46.317626 ], [ -112.076371, 46.317182 ], [ -112.076732, 46.316589 ], [ -112.077058, 46.315949 ], [ -112.077616, 46.31452 ], [ -112.077985, 46.313459 ], [ -112.078268, 46.312795 ], [ -112.078491, 46.31232 ], [ -112.0788, 46.311751 ], [ -112.079212, 46.31117 ], [ -112.079718, 46.310435 ], [ -112.0808, 46.308627 ], [ -112.081126, 46.30801 ], [ -112.081375, 46.307316 ], [ -112.081512, 46.306724 ], [ -112.081607, 46.306131 ], [ -112.081735, 46.304998 ], [ -112.081856, 46.304358 ], [ -112.082079, 46.303688 ], [ -112.082319, 46.303172 ], [ -112.082594, 46.302692 ], [ -112.082946, 46.302205 ], [ -112.083306, 46.301814 ], [ -112.083804, 46.301334 ], [ -112.08447, 46.300831 ], [ -112.085263, 46.300355 ], [ -112.086027, 46.299964 ], [ -112.089752, 46.298446 ], [ -112.090979, 46.297859 ], [ -112.091958, 46.297337 ], [ -112.092799, 46.296756 ], [ -112.093486, 46.296287 ], [ -112.094104, 46.295694 ], [ -112.09473, 46.295036 ], [ -112.095159, 46.294538 ], [ -112.09558, 46.293992 ], [ -112.09594, 46.293381 ], [ -112.096445, 46.292397 ], [ -112.096685, 46.291614 ], [ -112.09702, 46.290422 ], [ -112.097449, 46.288406 ], [ -112.097724, 46.287409 ], [ -112.098136, 46.286312 ], [ -112.099116, 46.284397 ], [ -112.099274, 46.284063 ], [ -112.10053, 46.281349 ], [ -112.101118, 46.280084 ], [ -112.102891, 46.276318 ], [ -112.104027, 46.273935 ], [ -112.104859, 46.272141 ], [ -112.105342, 46.271125 ], [ -112.106274, 46.269146 ], [ -112.107087, 46.267404 ], [ -112.111234, 46.258546 ], [ -112.112659, 46.255466 ], [ -112.114521, 46.251525 ], [ -112.114976, 46.250676 ], [ -112.115508, 46.249899 ], [ -112.115937, 46.249329 ], [ -112.116633, 46.248581 ], [ -112.117748, 46.247554 ], [ -112.11925, 46.246504 ], [ -112.12022, 46.245934 ], [ -112.120967, 46.245566 ], [ -112.121954, 46.245133 ], [ -112.124992, 46.244052 ], [ -112.13288, 46.241298 ], [ -112.133387, 46.24112 ], [ -112.138622, 46.239291 ], [ -112.145034, 46.237065 ], [ -112.146141, 46.236745 ], [ -112.147008, 46.236519 ], [ -112.147806, 46.236394 ], [ -112.148459, 46.236305 ], [ -112.149265, 46.236246 ], [ -112.150089, 46.236222 ], [ -112.151042, 46.236246 ], [ -112.151883, 46.236317 ], [ -112.152699, 46.236436 ], [ -112.153471, 46.236584 ], [ -112.154474, 46.236837 ], [ -112.15899, 46.238152 ], [ -112.160595, 46.238543 ], [ -112.162483, 46.238947 ], [ -112.163367, 46.23922 ], [ -112.164054, 46.239529 ], [ -112.164698, 46.239897 ], [ -112.165273, 46.24033 ], [ -112.166844, 46.241642 ], [ -112.167307, 46.241963 ], [ -112.1685, 46.242669 ], [ -112.169144, 46.243085 ], [ -112.169659, 46.24356 ], [ -112.170912, 46.244966 ], [ -112.171367, 46.245364 ], [ -112.172131, 46.245898 ], [ -112.173204, 46.246522 ], [ -112.174276, 46.247169 ], [ -112.174817, 46.24762 ], [ -112.175298, 46.24816 ], [ -112.175555, 46.248587 ], [ -112.17577, 46.248973 ], [ -112.175924, 46.249424 ], [ -112.176336, 46.250552 ], [ -112.176517, 46.25092 ], [ -112.17674, 46.251276 ], [ -112.176997, 46.251626 ], [ -112.177418, 46.252083 ], [ -112.177787, 46.252344 ], [ -112.178165, 46.252617 ], [ -112.180775, 46.254129 ], [ -112.181007, 46.254269 ], [ -112.183097, 46.255454 ], [ -112.183493, 46.255702 ], [ -112.184164, 46.256171 ], [ -112.184905, 46.256737 ], [ -112.185365, 46.257141 ], [ -112.185885, 46.257562 ], [ -112.186185, 46.2578 ], [ -112.186531, 46.258043 ], [ -112.186972, 46.258275 ], [ -112.187322, 46.258422 ], [ -112.187774, 46.258598 ], [ -112.188155, 46.258726 ], [ -112.188842, 46.25893 ], [ -112.190061, 46.259233 ], [ -112.194417, 46.260296 ], [ -112.194914, 46.260425 ], [ -112.197467, 46.261049 ], [ -112.198131, 46.261215 ], [ -112.198816, 46.261348 ], [ -112.200563, 46.261639 ], [ -112.2012, 46.261735 ], [ -112.201697, 46.261796 ], [ -112.202216, 46.261831 ], [ -112.202661, 46.261847 ], [ -112.203293, 46.261844 ], [ -112.203843, 46.26181 ], [ -112.204643, 46.261713 ], [ -112.205502, 46.261541 ], [ -112.206283, 46.261328 ], [ -112.207158, 46.260978 ], [ -112.20773, 46.260725 ], [ -112.208199, 46.260464 ], [ -112.209872, 46.259361 ], [ -112.210845, 46.258723 ], [ -112.211437, 46.258407 ], [ -112.21171, 46.258294 ], [ -112.211974, 46.258207 ], [ -112.212216, 46.258142 ], [ -112.212463, 46.258092 ], [ -112.212751, 46.258048 ], [ -112.213051, 46.258024 ], [ -112.213334, 46.258019 ], [ -112.213692, 46.258035 ], [ -112.213988, 46.258065 ], [ -112.214247, 46.258108 ], [ -112.214549, 46.258186 ], [ -112.21472, 46.258241 ], [ -112.214928, 46.258313 ], [ -112.21526, 46.258456 ], [ -112.215539, 46.258605 ], [ -112.215859, 46.258826 ], [ -112.216123, 46.259059 ], [ -112.216344, 46.259307 ], [ -112.216538, 46.259564 ], [ -112.217304, 46.260578 ], [ -112.217586, 46.260888 ], [ -112.217887, 46.26118 ], [ -112.218436, 46.261654 ], [ -112.219097, 46.262058 ], [ -112.219818, 46.262508 ], [ -112.220179, 46.262823 ], [ -112.220462, 46.263203 ], [ -112.220625, 46.263654 ], [ -112.220625, 46.264105 ], [ -112.220513, 46.26455 ], [ -112.220273, 46.264918 ], [ -112.21993, 46.265238 ], [ -112.219466, 46.265558 ], [ -112.218514, 46.266039 ], [ -112.218288, 46.266167 ], [ -112.218079, 46.266291 ], [ -112.217885, 46.266411 ], [ -112.217737, 46.266539 ], [ -112.217605, 46.266696 ], [ -112.217501, 46.266818 ], [ -112.217396, 46.266989 ], [ -112.21734, 46.267123 ], [ -112.217303, 46.267314 ], [ -112.217283, 46.267445 ], [ -112.217325, 46.267714 ], [ -112.217476, 46.26824 ], [ -112.217544, 46.268438 ], [ -112.217592, 46.268538 ], [ -112.217628, 46.268615 ], [ -112.217724, 46.268751 ], [ -112.217818, 46.268858 ], [ -112.217936, 46.268959 ], [ -112.21813, 46.269104 ], [ -112.218353, 46.26922 ], [ -112.218727, 46.26937 ], [ -112.219166, 46.269489 ], [ -112.219721, 46.269609 ], [ -112.220202, 46.269698 ], [ -112.220646, 46.269797 ], [ -112.220996, 46.2699 ], [ -112.22144, 46.27005 ], [ -112.222711, 46.270631 ], [ -112.223277, 46.270851 ], [ -112.22399, 46.271017 ], [ -112.224668, 46.271076 ], [ -112.225371, 46.270993 ], [ -112.227174, 46.270608 ], [ -112.227989, 46.270507 ], [ -112.22883, 46.270519 ], [ -112.229611, 46.270726 ], [ -112.232341, 46.271693 ], [ -112.232993, 46.27186 ], [ -112.233723, 46.271966 ], [ -112.234744, 46.271978 ], [ -112.239606, 46.271805 ], [ -112.242182, 46.271693 ], [ -112.246347, 46.271502 ], [ -112.246967, 46.271459 ], [ -112.247491, 46.271415 ], [ -112.247911, 46.271379 ], [ -112.248545, 46.271312 ], [ -112.249143, 46.271217 ], [ -112.250763, 46.270938 ], [ -112.251919, 46.270715 ], [ -112.254271, 46.270264 ], [ -112.255138, 46.270086 ], [ -112.255979, 46.269973 ], [ -112.256923, 46.269854 ], [ -112.257798, 46.269753 ], [ -112.258871, 46.269706 ], [ -112.259953, 46.269694 ], [ -112.260408, 46.269688 ], [ -112.260811, 46.269688 ], [ -112.265927, 46.269838 ], [ -112.266364, 46.269845 ], [ -112.268516, 46.269903 ], [ -112.26928, 46.269923 ], [ -112.269822, 46.269932 ], [ -112.270297, 46.269936 ], [ -112.270632, 46.269932 ], [ -112.271986, 46.269899 ], [ -112.272496, 46.269882 ], [ -112.272871, 46.269875 ], [ -112.273201, 46.26988 ], [ -112.273496, 46.269893 ], [ -112.273848, 46.269921 ], [ -112.274451, 46.269986 ], [ -112.275304, 46.270084 ], [ -112.275736, 46.270129 ], [ -112.276214, 46.270171 ], [ -112.276581, 46.270192 ], [ -112.276954, 46.270201 ], [ -112.277383, 46.270195 ], [ -112.277783, 46.270179 ], [ -112.278217, 46.270151 ], [ -112.278636, 46.270112 ], [ -112.27903, 46.270058 ], [ -112.279521, 46.269977 ], [ -112.280084, 46.269869 ], [ -112.280575, 46.269771 ], [ -112.281036, 46.269673 ], [ -112.281492, 46.269558 ], [ -112.281919, 46.269443 ], [ -112.282407, 46.269304 ], [ -112.28289, 46.269153 ], [ -112.283292, 46.269013 ], [ -112.283616, 46.26889 ], [ -112.283914, 46.268764 ], [ -112.284169, 46.268638 ], [ -112.284394, 46.268516 ], [ -112.284601, 46.268394 ], [ -112.284775, 46.268275 ], [ -112.284955, 46.268131 ], [ -112.285087, 46.268013 ], [ -112.285191, 46.267897 ], [ -112.285277, 46.267793 ], [ -112.285357, 46.267683 ], [ -112.28543, 46.267542 ], [ -112.285505, 46.267379 ], [ -112.285561, 46.267208 ], [ -112.285596, 46.267049 ], [ -112.28561, 46.266897 ], [ -112.285612, 46.266763 ], [ -112.285599, 46.266613 ], [ -112.285569, 46.266448 ], [ -112.285505, 46.266261 ], [ -112.28543, 46.266096 ], [ -112.285194, 46.265664 ], [ -112.285025, 46.265406 ], [ -112.284866, 46.265152 ], [ -112.284775, 46.264974 ], [ -112.284703, 46.264813 ], [ -112.284646, 46.264655 ], [ -112.284614, 46.264507 ], [ -112.284598, 46.264379 ], [ -112.284598, 46.26421 ], [ -112.284617, 46.264062 ], [ -112.284665, 46.263899 ], [ -112.284727, 46.263728 ], [ -112.284759, 46.263669 ], [ -112.284821, 46.263548 ], [ -112.284909, 46.263418 ], [ -112.284995, 46.263313 ], [ -112.285121, 46.263177 ], [ -112.285277, 46.263038 ], [ -112.285408, 46.262932 ], [ -112.285591, 46.262814 ], [ -112.285765, 46.262716 ], [ -112.285998, 46.262614 ], [ -112.286237, 46.262523 ], [ -112.286454, 46.262454 ], [ -112.286722, 46.262397 ], [ -112.286953, 46.262358 ], [ -112.287205, 46.262334 ], [ -112.287431, 46.262324 ], [ -112.287599, 46.262324 ], [ -112.287755, 46.262332 ], [ -112.287908, 46.262343 ], [ -112.28809, 46.262371 ], [ -112.288289, 46.262408 ], [ -112.288533, 46.262469 ], [ -112.28878, 46.262545 ], [ -112.289056, 46.262641 ], [ -112.28941, 46.262779 ], [ -112.292288, 46.263915 ], [ -112.295423, 46.265141 ], [ -112.295772, 46.265276 ], [ -112.296799, 46.265681 ], [ -112.297288, 46.265857 ], [ -112.29766, 46.26597 ], [ -112.297998, 46.266064 ], [ -112.298326, 46.266135 ], [ -112.298693, 46.266202 ], [ -112.29902, 46.266252 ], [ -112.299407, 46.266294 ], [ -112.299973, 46.26635 ], [ -112.301962, 46.266518 ], [ -112.303677, 46.266665 ], [ -112.30416, 46.266715 ], [ -112.304799, 46.266799 ], [ -112.305829, 46.266965 ], [ -112.307302, 46.26725 ], [ -112.307798, 46.267339 ], [ -112.308222, 46.267413 ], [ -112.308627, 46.267476 ], [ -112.308997, 46.267518 ], [ -112.309343, 46.267554 ], [ -112.309617, 46.267578 ], [ -112.309941, 46.267591 ], [ -112.310258, 46.267602 ], [ -112.310641, 46.267611 ], [ -112.310985, 46.267613 ], [ -112.311296, 46.267607 ], [ -112.311658, 46.267591 ], [ -112.312055, 46.267565 ], [ -112.312425, 46.267535 ], [ -112.312795, 46.267492 ], [ -112.313219, 46.267435 ], [ -112.313683, 46.267359 ], [ -112.31408, 46.267281 ], [ -112.314484, 46.267191 ], [ -112.314867, 46.26709 ], [ -112.315256, 46.26698 ], [ -112.315717, 46.266837 ], [ -112.316613, 46.266561 ], [ -112.317018, 46.266437 ], [ -112.317471, 46.266313 ], [ -112.317997, 46.266179 ], [ -112.318925, 46.265949 ], [ -112.320151, 46.265632 ], [ -112.321393, 46.265313 ], [ -112.325427, 46.26428 ], [ -112.326138, 46.264095 ], [ -112.326859, 46.263917 ], [ -112.327936, 46.263635 ], [ -112.330428, 46.263002 ], [ -112.333211, 46.262287 ], [ -112.334007, 46.262079 ], [ -112.335292, 46.261753 ], [ -112.335686, 46.261652 ], [ -112.336028, 46.261559 ], [ -112.33637, 46.261454 ], [ -112.33667, 46.261355 ], [ -112.336988, 46.261243 ], [ -112.337325, 46.261115 ], [ -112.33768, 46.260971 ], [ -112.338038, 46.260813 ], [ -112.338363, 46.260662 ], [ -112.338625, 46.26053 ], [ -112.338933, 46.260366 ], [ -112.340256, 46.259429 ], [ -112.341003, 46.258829 ], [ -112.341337, 46.25845 ], [ -112.341646, 46.258088 ], [ -112.342041, 46.257506 ], [ -112.342264, 46.257085 ], [ -112.342513, 46.256616 ], [ -112.342736, 46.256052 ], [ -112.343048, 46.25519 ], [ -112.343088, 46.254628 ], [ -112.343114, 46.25404 ], [ -112.342997, 46.253333 ], [ -112.342814, 46.252527 ], [ -112.342556, 46.25188 ], [ -112.341586, 46.249939 ], [ -112.341209, 46.248971 ], [ -112.340942, 46.248152 ], [ -112.340797, 46.247393 ], [ -112.340711, 46.246752 ], [ -112.340698, 46.245956 ], [ -112.340797, 46.24509 ], [ -112.340934, 46.2443 ], [ -112.341088, 46.243617 ], [ -112.341363, 46.242745 ], [ -112.343732, 46.236132 ], [ -112.343955, 46.235443 ], [ -112.344213, 46.23479 ], [ -112.34459, 46.234178 ], [ -112.345088, 46.233513 ], [ -112.346384, 46.231827 ], [ -112.346848, 46.231067 ], [ -112.347062, 46.230402 ], [ -112.347208, 46.229666 ], [ -112.34738, 46.228247 ], [ -112.347457, 46.227659 ], [ -112.347706, 46.22662 ], [ -112.348072, 46.225486 ], [ -112.348787, 46.223592 ], [ -112.349165, 46.22241 ], [ -112.349268, 46.221798 ], [ -112.349251, 46.221163 ], [ -112.348908, 46.218621 ], [ -112.348822, 46.218081 ], [ -112.348822, 46.217392 ], [ -112.348959, 46.216762 ], [ -112.34944, 46.215301 ], [ -112.349521, 46.214586 ], [ -112.349491, 46.214013 ], [ -112.349328, 46.213591 ], [ -112.349028, 46.213021 ], [ -112.348633, 46.212492 ], [ -112.348169, 46.211999 ], [ -112.34762, 46.211619 ], [ -112.346856, 46.211156 ], [ -112.345869, 46.21058 ], [ -112.3452, 46.210051 ], [ -112.344728, 46.209576 ], [ -112.343234, 46.207925 ], [ -112.342659, 46.207307 ], [ -112.341921, 46.206677 ], [ -112.340814, 46.205816 ], [ -112.34041, 46.205465 ], [ -112.340067, 46.205085 ], [ -112.339802, 46.204693 ], [ -112.339704, 46.204467 ], [ -112.339636, 46.204269 ], [ -112.339591, 46.204027 ], [ -112.339612, 46.20382 ], [ -112.339732, 46.203256 ], [ -112.340033, 46.20262 ], [ -112.340582, 46.201913 ], [ -112.341621, 46.200885 ], [ -112.342062, 46.200298 ], [ -112.342242, 46.199944 ], [ -112.342396, 46.199584 ], [ -112.342597, 46.199091 ], [ -112.342775, 46.198631 ], [ -112.343062, 46.198034 ], [ -112.343303, 46.197541 ], [ -112.343792, 46.196904 ], [ -112.344693, 46.196127 ], [ -112.345387, 46.19542 ], [ -112.345729, 46.194938 ], [ -112.345917, 46.194643 ], [ -112.346069, 46.194349 ], [ -112.346166, 46.194045 ], [ -112.346238, 46.193697 ], [ -112.34623, 46.193103 ], [ -112.345941, 46.190673 ], [ -112.345878, 46.189902 ], [ -112.345728, 46.189213 ], [ -112.345709, 46.188344 ], [ -112.345571, 46.187533 ], [ -112.345558, 46.186912 ], [ -112.345564, 46.185992 ], [ -112.345749, 46.183453 ], [ -112.346234, 46.177623 ], [ -112.346347, 46.176821 ], [ -112.346473, 46.176275 ], [ -112.34671, 46.175728 ], [ -112.347062, 46.17511 ], [ -112.347483, 46.174486 ], [ -112.34822, 46.173702 ], [ -112.349208, 46.17291 ], [ -112.3521, 46.171121 ], [ -112.352701, 46.170843 ], [ -112.353354, 46.170627 ], [ -112.354238, 46.170443 ], [ -112.355396, 46.170378 ], [ -112.356246, 46.170461 ], [ -112.358186, 46.170764 ], [ -112.359293, 46.170788 ], [ -112.360246, 46.170669 ], [ -112.361216, 46.170425 ], [ -112.362177, 46.170093 ], [ -112.362941, 46.16973 ], [ -112.363559, 46.169296 ], [ -112.364125, 46.168743 ], [ -112.364529, 46.168119 ], [ -112.365267, 46.167103 ], [ -112.365816, 46.166663 ], [ -112.3664, 46.166336 ], [ -112.367129, 46.166098 ], [ -112.367868, 46.165967 ], [ -112.368692, 46.165944 ], [ -112.371773, 46.166039 ], [ -112.372811, 46.166015 ], [ -112.37367, 46.165902 ], [ -112.374588, 46.165706 ], [ -112.375592, 46.165379 ], [ -112.376571, 46.164951 ], [ -112.377318, 46.164529 ], [ -112.378076, 46.163952 ], [ -112.378262, 46.163762 ], [ -112.378614, 46.163364 ], [ -112.378914, 46.162965 ], [ -112.379469, 46.162169 ], [ -112.382055, 46.158245 ], [ -112.384021, 46.155308 ], [ -112.385566, 46.152959 ], [ -112.387334, 46.150272 ], [ -112.388458, 46.14862 ], [ -112.389451, 46.147108 ], [ -112.391789, 46.143594 ], [ -112.398669, 46.133222 ], [ -112.400972, 46.129712 ], [ -112.4066, 46.121302 ], [ -112.407393, 46.120004 ], [ -112.408182, 46.118582 ], [ -112.408541, 46.117899 ], [ -112.409937, 46.114817 ], [ -112.411055, 46.112333 ], [ -112.412388, 46.109365 ], [ -112.413655, 46.106653 ], [ -112.414778, 46.10418 ], [ -112.415206, 46.103314 ], [ -112.415668, 46.102487 ], [ -112.415895, 46.102106 ], [ -112.416464, 46.101176 ], [ -112.417083, 46.100254 ], [ -112.418499, 46.098356 ], [ -112.418915, 46.09769 ], [ -112.419526, 46.096677 ], [ -112.420233, 46.095398 ], [ -112.422479, 46.091058 ], [ -112.424336, 46.087469 ], [ -112.429652, 46.0772 ], [ -112.429822, 46.076884 ], [ -112.431392, 46.07384 ], [ -112.436257, 46.064391 ], [ -112.436937, 46.063074 ], [ -112.438079, 46.061044 ], [ -112.438376, 46.060532 ], [ -112.438666, 46.060066 ], [ -112.43881, 46.05984 ], [ -112.439098, 46.05943 ], [ -112.43934, 46.059064 ], [ -112.439532, 46.058774 ], [ -112.440107, 46.058002 ], [ -112.44038, 46.05765 ], [ -112.441731, 46.056019 ], [ -112.443485, 46.053949 ], [ -112.447802, 46.048851 ], [ -112.45155, 46.044489 ], [ -112.452423, 46.043435 ], [ -112.452928, 46.042858 ], [ -112.453336, 46.042363 ], [ -112.453672, 46.041989 ], [ -112.454055, 46.041551 ], [ -112.454342, 46.04125 ], [ -112.454665, 46.040886 ], [ -112.456067, 46.039558 ], [ -112.457335, 46.038587 ], [ -112.457987, 46.038059 ], [ -112.458512, 46.037625 ], [ -112.458842, 46.037329 ], [ -112.459071, 46.03709 ], [ -112.459314, 46.036842 ], [ -112.459518, 46.03659 ], [ -112.459678, 46.03639 ], [ -112.4598, 46.036215 ], [ -112.459891, 46.036045 ], [ -112.460007, 46.03582 ], [ -112.460114, 46.03551 ], [ -112.460172, 46.035281 ], [ -112.460249, 46.034999 ], [ -112.460282, 46.034713 ], [ -112.460289, 46.034622 ], [ -112.460306, 46.034393 ], [ -112.46034, 46.034001 ], [ -112.460377, 46.033494 ], [ -112.460788, 46.024225 ], [ -112.460858, 46.022999 ], [ -112.461034, 46.021707 ], [ -112.461139, 46.019417 ], [ -112.461174, 46.018182 ], [ -112.461374, 46.013939 ], [ -112.461433, 46.012326 ], [ -112.461598, 46.009767 ], [ -112.46173, 46.007706 ], [ -112.461826, 46.006592 ], [ -112.461968, 46.00602 ], [ -112.462225, 46.00538 ], [ -112.462565, 46.004722 ], [ -112.463191, 46.004036 ], [ -112.464072, 46.003225 ], [ -112.465792, 46.001872 ], [ -112.466856, 46.001037 ], [ -112.469268, 45.999189 ], [ -112.469946, 45.998682 ], [ -112.470667, 45.998003 ], [ -112.47113, 45.997502 ], [ -112.47156, 45.996917 ], [ -112.471963, 45.99622 ], [ -112.473459, 45.993424 ], [ -112.474051, 45.992464 ], [ -112.474317, 45.992004 ], [ -112.475276, 45.990233 ], [ -112.475566, 45.989642 ], [ -112.476695, 45.987673 ], [ -112.477014, 45.987068 ], [ -112.477395, 45.986399 ], [ -112.477976, 45.985327 ], [ -112.478243, 45.984818 ], [ -112.478421, 45.98455 ], [ -112.478851, 45.983744 ], [ -112.479177, 45.983218 ], [ -112.479374, 45.982981 ], [ -112.479538, 45.982795 ], [ -112.47971, 45.982636 ], [ -112.479894, 45.982492 ], [ -112.480132, 45.982326 ], [ -112.48042, 45.982142 ], [ -112.480713, 45.981993 ], [ -112.481018, 45.981862 ], [ -112.481235, 45.981784 ], [ -112.481491, 45.981708 ], [ -112.481819, 45.981612 ], [ -112.482235, 45.981526 ], [ -112.482576, 45.981485 ], [ -112.482792, 45.981468 ], [ -112.483106, 45.981448 ], [ -112.484674, 45.981411 ], [ -112.485533, 45.981393 ], [ -112.486142, 45.981346 ], [ -112.486888, 45.981343 ], [ -112.488415, 45.981329 ], [ -112.48942, 45.981323 ], [ -112.489915, 45.981311 ], [ -112.490321, 45.981291 ], [ -112.491262, 45.981187 ], [ -112.492077, 45.981092 ], [ -112.492755, 45.980966 ], [ -112.49327, 45.980829 ], [ -112.494197, 45.980567 ], [ -112.495345, 45.9802 ], [ -112.496229, 45.979974 ], [ -112.496927, 45.979831 ], [ -112.497708, 45.979756 ], [ -112.4986, 45.979744 ], [ -112.499484, 45.979774 ], [ -112.500257, 45.979863 ], [ -112.501047, 45.980042 ], [ -112.501432, 45.980146 ], [ -112.501772, 45.980251 ], [ -112.502162, 45.980391 ], [ -112.502441, 45.980505 ], [ -112.502715, 45.980622 ], [ -112.503036, 45.980793 ], [ -112.503323, 45.980946 ], [ -112.503646, 45.981153 ], [ -112.503934, 45.981351 ], [ -112.504203, 45.981566 ], [ -112.504427, 45.981757 ], [ -112.504926, 45.982217 ], [ -112.505529, 45.982793 ], [ -112.505933, 45.983132 ], [ -112.506153, 45.983296 ], [ -112.506336, 45.983431 ], [ -112.506571, 45.983586 ], [ -112.506888, 45.983789 ], [ -112.507196, 45.983956 ], [ -112.507471, 45.984097 ], [ -112.507799, 45.984272 ], [ -112.508512, 45.98456 ], [ -112.508794, 45.984651 ], [ -112.50906, 45.984738 ], [ -112.509415, 45.984842 ], [ -112.509964, 45.984998 ], [ -112.512836, 45.985714 ], [ -112.514063, 45.986044 ], [ -112.515749, 45.986501 ], [ -112.516874, 45.986847 ], [ -112.529602, 45.991803 ], [ -112.530598, 45.992131 ], [ -112.531516, 45.992333 ], [ -112.5324, 45.992476 ], [ -112.533044, 45.992536 ], [ -112.533894, 45.992542 ], [ -112.538675, 45.992548 ], [ -112.539481, 45.992542 ], [ -112.544571, 45.992548 ], [ -112.54755, 45.9925 ], [ -112.549472, 45.992518 ], [ -112.552176, 45.992548 ], [ -112.553189, 45.992614 ], [ -112.554167, 45.992739 ], [ -112.555008, 45.992942 ], [ -112.559798, 45.994337 ], [ -112.560613, 45.994587 ], [ -112.561471, 45.994951 ], [ -112.562235, 45.995404 ], [ -112.562816, 45.995834 ], [ -112.563071, 45.996064 ], [ -112.563323, 45.996326 ], [ -112.563586, 45.996638 ], [ -112.563846, 45.996975 ], [ -112.564136, 45.997384 ], [ -112.564414, 45.997764 ], [ -112.565162, 45.998934 ], [ -112.565743, 45.999683 ], [ -112.566655, 46.000955 ], [ -112.567437, 46.001903 ], [ -112.56802, 46.002517 ], [ -112.568741, 46.003096 ], [ -112.569419, 46.003525 ], [ -112.570063, 46.003859 ], [ -112.570964, 46.004318 ], [ -112.571822, 46.004693 ], [ -112.572895, 46.005009 ], [ -112.573848, 46.00523 ], [ -112.574775, 46.005379 ], [ -112.575728, 46.005463 ], [ -112.577187, 46.005504 ], [ -112.577788, 46.005522 ], [ -112.582056, 46.005676 ], [ -112.594885, 46.006166 ], [ -112.604584, 46.006524 ], [ -112.605451, 46.006619 ], [ -112.607283, 46.006843 ], [ -112.610896, 46.007381 ], [ -112.611152, 46.005948 ], [ -112.61121, 46.005792 ], [ -112.611238, 46.005609 ], [ -112.608284, 46.004266 ], [ -112.607739, 46.003921 ], [ -112.607191, 46.003516 ], [ -112.606953, 46.003377 ], [ -112.606693, 46.003274 ], [ -112.606342, 46.003193 ], [ -112.606239, 46.00317 ], [ -112.604638, 46.002827 ], [ -112.603223, 46.002511 ], [ -112.603052, 46.002473 ], [ -112.60203, 46.002278 ], [ -112.601516, 46.002219 ], [ -112.601276, 46.00221 ], [ -112.600883, 46.002212 ], [ -112.600496, 46.00223 ], [ -112.600404, 46.002208 ], [ -112.60036, 46.002173 ], [ -112.600327, 46.002117 ], [ -112.600314, 46.002059 ], [ -112.600333, 46.001927 ], [ -112.600381, 46.001853 ], [ -112.60049, 46.001777 ], [ -112.600599, 46.001745 ], [ -112.600713, 46.001737 ], [ -112.600862, 46.001739 ], [ -112.601544, 46.001798 ], [ -112.601657, 46.001792 ], [ -112.601804, 46.001767 ], [ -112.601918, 46.001724 ], [ -112.602008, 46.001673 ], [ -112.602239, 46.001528 ], [ -112.602389, 46.001412 ], [ -112.602658, 46.001185 ], [ -112.60307, 46.000822 ], [ -112.603218, 46.000656 ], [ -112.603405, 46.000474 ], [ -112.60366, 46.000513 ], [ -112.603842, 46.000532 ], [ -112.604078, 46.000549 ], [ -112.604254, 46.000547 ], [ -112.605018, 46.00043 ], [ -112.605491, 46.000395 ], [ -112.605766, 46.000402 ], [ -112.606076, 46.000466 ], [ -112.606209, 46.00049 ], [ -112.606364, 46.000494 ], [ -112.606548, 46.000466 ], [ -112.607005, 46.000359 ], [ -112.607412, 46.000312 ], [ -112.611416, 46.000299 ], [ -112.611653, 46.000242 ], [ -112.611812, 46.000145 ], [ -112.611932, 45.999965 ], [ -112.611906, 45.993731 ], [ -112.611956, 45.990322 ], [ -112.611963, 45.987384 ], [ -112.611945, 45.986839 ], [ -112.611983, 45.986517 ], [ -112.612211, 45.985826 ], [ -112.612974, 45.983191 ], [ -112.613351, 45.982047 ], [ -112.613508, 45.981723 ], [ -112.613655, 45.98152 ], [ -112.613973, 45.981284 ], [ -112.61573, 45.980235 ], [ -112.61642, 45.979923 ], [ -112.617405, 45.979519 ], [ -112.618068, 45.979213 ], [ -112.618669, 45.978865 ], [ -112.620246, 45.977619 ], [ -112.620586, 45.977289 ], [ -112.621106, 45.976592 ], [ -112.622154, 45.975079 ], [ -112.622235, 45.974699 ], [ -112.622281, 45.973317 ], [ -112.622078, 45.970234 ], [ -112.619831, 45.970225 ], [ -112.614288, 45.970203 ] ] } } diff --git a/packages/turf-line-slice/test/out/line1_out.geojson b/packages/turf-line-slice/test/out/line1_out.geojson new file mode 100644 index 0000000000..cf27829bad --- /dev/null +++ b/packages/turf-line-slice/test/out/line1_out.geojson @@ -0,0 +1,72 @@ +{ + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -97.88131713867188, + 22.466878364528448 + ], + [ + -97.82089233398438, + 22.175960091218524 + ], + [ + -97.6190185546875, + 21.8704201873689 + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -97.79617309570312, + 22.254624939561698 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -97.72750854492188, + 22.057641623615734 + ] + } + }, + { + "type": "Feature", + "properties": { + "stroke": "#f0f", + "stroke-width": 6 + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -97.83538404669022, + 22.245731173797786 + ], + [ + -97.82089233398438, + 22.175960091218524 + ], + [ + -97.73823542618922, + 22.050857248500655 + ] + ] + } + } + ] +} \ No newline at end of file diff --git a/packages/turf-line-slice/test/out/line2_out.geojson b/packages/turf-line-slice/test/out/line2_out.geojson new file mode 100644 index 0000000000..69df07cc65 --- /dev/null +++ b/packages/turf-line-slice/test/out/line2_out.geojson @@ -0,0 +1,64 @@ +{ + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 0, + 0 + ], + [ + 1, + 1 + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 0, + 0.1 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 0.9, + 0.8 + ] + } + }, + { + "type": "Feature", + "properties": { + "stroke": "#f0f", + "stroke-width": 6 + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 0.05039270408638091, + 0.05039270408638091 + ], + [ + 0.849498760075602, + 0.849498760075602 + ] + ] + } + } + ] +} \ No newline at end of file diff --git a/packages/turf-line-slice/test/out/route1_out.geojson b/packages/turf-line-slice/test/out/route1_out.geojson new file mode 100644 index 0000000000..45379f932f --- /dev/null +++ b/packages/turf-line-slice/test/out/route1_out.geojson @@ -0,0 +1,29357 @@ +{ + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "properties": { + "name": null, + "cmt": null, + "desc": null, + "src": null, + "link1_href": null, + "link1_text": null, + "link1_type": null, + "link2_href": null, + "link2_text": null, + "link2_type": null, + "number": null, + "type": null + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -79.254923, + 36.98394 + ], + [ + -79.254923, + 36.983939 + ], + [ + -79.255326, + 36.9838 + ], + [ + -79.255401, + 36.983774 + ], + [ + -79.25576, + 36.983664 + ], + [ + -79.256795, + 36.984137 + ], + [ + -79.257537, + 36.984478 + ], + [ + -79.258539, + 36.984925 + ], + [ + -79.259498, + 36.985353 + ], + [ + -79.260286, + 36.985712 + ], + [ + -79.261405, + 36.986222 + ], + [ + -79.262933, + 36.986928 + ], + [ + -79.263237, + 36.987071 + ], + [ + -79.263755, + 36.987296 + ], + [ + -79.264086, + 36.987423 + ], + [ + -79.264167, + 36.987446 + ], + [ + -79.264338, + 36.987486 + ], + [ + -79.264414, + 36.987501 + ], + [ + -79.264618, + 36.987531 + ], + [ + -79.2648, + 36.987542 + ], + [ + -79.264982, + 36.987537 + ], + [ + -79.265163, + 36.987517 + ], + [ + -79.26703, + 36.987355 + ], + [ + -79.267952, + 36.98726 + ], + [ + -79.268404, + 36.987226 + ], + [ + -79.268771, + 36.987197 + ], + [ + -79.26955, + 36.987117 + ], + [ + -79.271398, + 36.986946 + ], + [ + -79.271488, + 36.986941 + ], + [ + -79.271698, + 36.986925 + ], + [ + -79.271936, + 36.986898 + ], + [ + -79.272231, + 36.986852 + ], + [ + -79.272474, + 36.986785 + ], + [ + -79.272711, + 36.986705 + ], + [ + -79.272895, + 36.986632 + ], + [ + -79.273059, + 36.986552 + ], + [ + -79.273646, + 36.986245 + ], + [ + -79.274224, + 36.985925 + ], + [ + -79.274887, + 36.985592 + ], + [ + -79.275308, + 36.985365 + ], + [ + -79.275672, + 36.98517 + ], + [ + -79.276249, + 36.984876 + ], + [ + -79.277101, + 36.984433 + ], + [ + -79.277425, + 36.984259 + ], + [ + -79.277918, + 36.983982 + ], + [ + -79.27799, + 36.98395 + ], + [ + -79.278179, + 36.98385 + ], + [ + -79.278261, + 36.9838 + ], + [ + -79.278335, + 36.983745 + ], + [ + -79.278421, + 36.983666 + ], + [ + -79.27844, + 36.983647 + ], + [ + -79.278502, + 36.983577 + ], + [ + -79.278548, + 36.983511 + ], + [ + -79.278614, + 36.983381 + ], + [ + -79.278654, + 36.983273 + ], + [ + -79.278711, + 36.983011 + ], + [ + -79.278763, + 36.98269 + ], + [ + -79.278806, + 36.982485 + ], + [ + -79.278866, + 36.982282 + ], + [ + -79.278952, + 36.982101 + ], + [ + -79.279023, + 36.981984 + ], + [ + -79.280178, + 36.980418 + ], + [ + -79.280259, + 36.980319 + ], + [ + -79.280355, + 36.980229 + ], + [ + -79.280419, + 36.98018 + ], + [ + -79.280578, + 36.980082 + ], + [ + -79.280666, + 36.980038 + ], + [ + -79.280783, + 36.979994 + ], + [ + -79.280908, + 36.979963 + ], + [ + -79.281301, + 36.979913 + ], + [ + -79.281646, + 36.979874 + ], + [ + -79.282145, + 36.979835 + ], + [ + -79.282797, + 36.97977 + ], + [ + -79.283144, + 36.979743 + ], + [ + -79.283618, + 36.97972 + ], + [ + -79.28399, + 36.979706 + ], + [ + -79.284447, + 36.979695 + ], + [ + -79.284904, + 36.979697 + ], + [ + -79.286913, + 36.979638 + ], + [ + -79.287201, + 36.979628 + ], + [ + -79.287954, + 36.979612 + ], + [ + -79.288037, + 36.979611 + ], + [ + -79.288397, + 36.97962 + ], + [ + -79.288697, + 36.979643 + ], + [ + -79.289908, + 36.979722 + ], + [ + -79.289994, + 36.979724 + ], + [ + -79.290136, + 36.979716 + ], + [ + -79.290248, + 36.979699 + ], + [ + -79.290503, + 36.979632 + ], + [ + -79.291043, + 36.979454 + ], + [ + -79.291563, + 36.979269 + ], + [ + -79.292467, + 36.97896 + ], + [ + -79.292759, + 36.978877 + ], + [ + -79.292963, + 36.978832 + ], + [ + -79.293286, + 36.978778 + ], + [ + -79.293549, + 36.978746 + ], + [ + -79.293649, + 36.978738 + ], + [ + -79.293755, + 36.978729 + ], + [ + -79.293858, + 36.978731 + ], + [ + -79.294028, + 36.978747 + ], + [ + -79.294162, + 36.978771 + ], + [ + -79.294243, + 36.9788 + ], + [ + -79.294439, + 36.978883 + ], + [ + -79.294626, + 36.978979 + ], + [ + -79.294782, + 36.979072 + ], + [ + -79.294921, + 36.979174 + ], + [ + -79.295023, + 36.979263 + ], + [ + -79.295281, + 36.979534 + ], + [ + -79.295458, + 36.979739 + ], + [ + -79.296347, + 36.980843 + ], + [ + -79.296549, + 36.981064 + ], + [ + -79.296594, + 36.981095 + ], + [ + -79.296695, + 36.981144 + ], + [ + -79.296788, + 36.98117 + ], + [ + -79.296916, + 36.981184 + ], + [ + -79.297032, + 36.981182 + ], + [ + -79.297147, + 36.981165 + ], + [ + -79.297933, + 36.980962 + ], + [ + -79.298145, + 36.980893 + ], + [ + -79.298401, + 36.98079 + ], + [ + -79.298602, + 36.980696 + ], + [ + -79.298795, + 36.980593 + ], + [ + -79.299134, + 36.980402 + ], + [ + -79.299407, + 36.980244 + ], + [ + -79.299963, + 36.9799 + ], + [ + -79.301767, + 36.97881 + ], + [ + -79.301976, + 36.978691 + ], + [ + -79.3021, + 36.978619 + ], + [ + -79.302508, + 36.978369 + ], + [ + -79.302614, + 36.978309 + ], + [ + -79.3028, + 36.97822 + ], + [ + -79.302995, + 36.978145 + ], + [ + -79.303113, + 36.978114 + ], + [ + -79.303153, + 36.978249 + ], + [ + -79.303232, + 36.978565 + ], + [ + -79.303319, + 36.978989 + ], + [ + -79.303326, + 36.979184 + ], + [ + -79.303313, + 36.979346 + ], + [ + -79.30324, + 36.979748 + ], + [ + -79.303136, + 36.980362 + ], + [ + -79.303088, + 36.980609 + ], + [ + -79.302996, + 36.981143 + ], + [ + -79.302982, + 36.981226 + ], + [ + -79.302977, + 36.981321 + ], + [ + -79.302986, + 36.98144 + ], + [ + -79.303013, + 36.981556 + ], + [ + -79.303057, + 36.98167 + ], + [ + -79.303191, + 36.9819 + ], + [ + -79.303336, + 36.982126 + ], + [ + -79.303702, + 36.982652 + ], + [ + -79.304322, + 36.983486 + ], + [ + -79.304588, + 36.98382 + ], + [ + -79.304756, + 36.984051 + ], + [ + -79.304903, + 36.984229 + ], + [ + -79.305059, + 36.984403 + ], + [ + -79.305145, + 36.984487 + ], + [ + -79.305336, + 36.984648 + ], + [ + -79.305612, + 36.98486 + ], + [ + -79.30569, + 36.984915 + ], + [ + -79.305765, + 36.984974 + ], + [ + -79.305944, + 36.98513 + ], + [ + -79.306108, + 36.985295 + ], + [ + -79.306259, + 36.985469 + ], + [ + -79.306333, + 36.98557 + ], + [ + -79.306437, + 36.985737 + ], + [ + -79.306524, + 36.985911 + ], + [ + -79.306595, + 36.98609 + ], + [ + -79.306677, + 36.986365 + ], + [ + -79.306734, + 36.98662 + ], + [ + -79.306773, + 36.986878 + ], + [ + -79.306759, + 36.986998 + ], + [ + -79.306724, + 36.987146 + ], + [ + -79.306621, + 36.987426 + ], + [ + -79.306591, + 36.987545 + ], + [ + -79.306555, + 36.987745 + ], + [ + -79.306536, + 36.987984 + ], + [ + -79.30653, + 36.988172 + ], + [ + -79.306539, + 36.988321 + ], + [ + -79.30655, + 36.988398 + ], + [ + -79.306566, + 36.988507 + ], + [ + -79.306673, + 36.988967 + ], + [ + -79.306789, + 36.989416 + ], + [ + -79.30681, + 36.989518 + ], + [ + -79.306831, + 36.98969 + ], + [ + -79.306833, + 36.989828 + ], + [ + -79.306822, + 36.989888 + ], + [ + -79.306771, + 36.990067 + ], + [ + -79.306696, + 36.99024 + ], + [ + -79.306569, + 36.990463 + ], + [ + -79.306374, + 36.99078 + ], + [ + -79.30633, + 36.990863 + ], + [ + -79.306292, + 36.990972 + ], + [ + -79.306271, + 36.991084 + ], + [ + -79.306268, + 36.991229 + ], + [ + -79.306282, + 36.991421 + ], + [ + -79.306323, + 36.991648 + ], + [ + -79.30657, + 36.992516 + ], + [ + -79.306601, + 36.992703 + ], + [ + -79.306614, + 36.992892 + ], + [ + -79.306598, + 36.993111 + ], + [ + -79.306569, + 36.993287 + ], + [ + -79.306553, + 36.993345 + ], + [ + -79.306526, + 36.993432 + ], + [ + -79.306466, + 36.993574 + ], + [ + -79.306313, + 36.993848 + ], + [ + -79.305971, + 36.994382 + ], + [ + -79.305826, + 36.994647 + ], + [ + -79.305382, + 36.995598 + ], + [ + -79.305197, + 36.995963 + ], + [ + -79.305065, + 36.996284 + ], + [ + -79.304983, + 36.996521 + ], + [ + -79.304954, + 36.99668 + ], + [ + -79.30495, + 36.996815 + ], + [ + -79.304959, + 36.996932 + ], + [ + -79.304988, + 36.997077 + ], + [ + -79.305024, + 36.99719 + ], + [ + -79.305111, + 36.99739 + ], + [ + -79.305197, + 36.997567 + ], + [ + -79.30532, + 36.997782 + ], + [ + -79.305429, + 36.997949 + ], + [ + -79.305577, + 36.998153 + ], + [ + -79.306017, + 36.99873 + ], + [ + -79.306204, + 36.998965 + ], + [ + -79.306407, + 36.999192 + ], + [ + -79.306624, + 36.999411 + ], + [ + -79.30672, + 36.999489 + ], + [ + -79.306828, + 36.999557 + ], + [ + -79.306922, + 36.999602 + ], + [ + -79.307072, + 36.999656 + ], + [ + -79.307354, + 36.999723 + ], + [ + -79.307628, + 36.999778 + ], + [ + -79.308892, + 36.999988 + ], + [ + -79.309029, + 37.00002 + ], + [ + -79.309135, + 37.000056 + ], + [ + -79.30926, + 37.000112 + ], + [ + -79.309374, + 37.00018 + ], + [ + -79.309478, + 37.000259 + ], + [ + -79.30959, + 37.000372 + ], + [ + -79.309743, + 37.000552 + ], + [ + -79.31029, + 37.001344 + ], + [ + -79.31037, + 37.001451 + ], + [ + -79.310486, + 37.001568 + ], + [ + -79.310598, + 37.001654 + ], + [ + -79.310697, + 37.001714 + ], + [ + -79.310838, + 37.001785 + ], + [ + -79.310991, + 37.001844 + ], + [ + -79.31115, + 37.001891 + ], + [ + -79.311632, + 37.001979 + ], + [ + -79.312359, + 37.002135 + ], + [ + -79.312455, + 37.002156 + ], + [ + -79.312915, + 37.002271 + ], + [ + -79.313026, + 37.002296 + ], + [ + -79.313639, + 37.002422 + ], + [ + -79.314311, + 37.002515 + ], + [ + -79.314769, + 37.002553 + ], + [ + -79.315227, + 37.002582 + ], + [ + -79.315352, + 37.002604 + ], + [ + -79.315472, + 37.002641 + ], + [ + -79.315543, + 37.002685 + ], + [ + -79.315621, + 37.00275 + ], + [ + -79.315685, + 37.002824 + ], + [ + -79.315725, + 37.002889 + ], + [ + -79.315888, + 37.002832 + ], + [ + -79.316221, + 37.002733 + ], + [ + -79.316448, + 37.002678 + ], + [ + -79.31752, + 37.002455 + ], + [ + -79.318524, + 37.002275 + ], + [ + -79.319059, + 37.002211 + ], + [ + -79.319268, + 37.002199 + ], + [ + -79.319435, + 37.0022 + ], + [ + -79.319651, + 37.002214 + ], + [ + -79.319786, + 37.002226 + ], + [ + -79.320258, + 37.002279 + ], + [ + -79.320522, + 37.002298 + ], + [ + -79.320786, + 37.002302 + ], + [ + -79.320953, + 37.002288 + ], + [ + -79.321116, + 37.002258 + ], + [ + -79.321274, + 37.002213 + ], + [ + -79.321381, + 37.00217 + ], + [ + -79.321762, + 37.002001 + ], + [ + -79.322382, + 37.001698 + ], + [ + -79.322844, + 37.001466 + ], + [ + -79.323023, + 37.001376 + ], + [ + -79.323292, + 37.001249 + ], + [ + -79.32357, + 37.001134 + ], + [ + -79.323943, + 37.001003 + ], + [ + -79.324098, + 37.000958 + ], + [ + -79.324162, + 37.000945 + ], + [ + -79.32513, + 37.000843 + ], + [ + -79.325325, + 37.000814 + ], + [ + -79.325517, + 37.000777 + ], + [ + -79.325753, + 37.000719 + ], + [ + -79.327186, + 37.000266 + ], + [ + -79.327482, + 37.000173 + ], + [ + -79.327802, + 37.00008 + ], + [ + -79.328598, + 36.999838 + ], + [ + -79.329158, + 36.999654 + ], + [ + -79.329204, + 36.999715 + ], + [ + -79.329343, + 36.999894 + ], + [ + -79.32942, + 36.999975 + ], + [ + -79.329588, + 37.000125 + ], + [ + -79.329742, + 37.000239 + ], + [ + -79.329777, + 37.000256 + ], + [ + -79.329869, + 37.000291 + ], + [ + -79.329988, + 37.000315 + ], + [ + -79.330091, + 37.000318 + ], + [ + -79.33027, + 37.000316 + ], + [ + -79.330449, + 37.000298 + ], + [ + -79.331035, + 37.000223 + ], + [ + -79.331427, + 37.000184 + ], + [ + -79.331855, + 37.000129 + ], + [ + -79.333009, + 37.000023 + ], + [ + -79.334568, + 36.999869 + ], + [ + -79.335002, + 36.999826 + ], + [ + -79.33552, + 36.999806 + ], + [ + -79.33606, + 36.999814 + ], + [ + -79.336208, + 36.999833 + ], + [ + -79.336352, + 36.999866 + ], + [ + -79.33649, + 36.999913 + ], + [ + -79.336644, + 36.999986 + ], + [ + -79.336856, + 37.000123 + ], + [ + -79.336962, + 37.000203 + ], + [ + -79.337096, + 37.000316 + ], + [ + -79.337325, + 37.000539 + ], + [ + -79.337519, + 37.000761 + ], + [ + -79.338522, + 37.001965 + ], + [ + -79.339126, + 37.002688 + ], + [ + -79.339574, + 37.003185 + ], + [ + -79.340385, + 37.004106 + ], + [ + -79.340479, + 37.004212 + ], + [ + -79.340603, + 37.004341 + ], + [ + -79.340773, + 37.00449 + ], + [ + -79.340929, + 37.004602 + ], + [ + -79.341131, + 37.004723 + ], + [ + -79.341632, + 37.004968 + ], + [ + -79.341875, + 37.005087 + ], + [ + -79.342172, + 37.005233 + ], + [ + -79.342594, + 37.00542 + ], + [ + -79.343189, + 37.005708 + ], + [ + -79.343817, + 37.006011 + ], + [ + -79.344455, + 37.006335 + ], + [ + -79.344712, + 37.00647 + ], + [ + -79.345697, + 37.006916 + ], + [ + -79.345837, + 37.006985 + ], + [ + -79.346006, + 37.00708 + ], + [ + -79.346221, + 37.007218 + ], + [ + -79.347403, + 37.008016 + ], + [ + -79.347493, + 37.008071 + ], + [ + -79.347634, + 37.008171 + ], + [ + -79.347763, + 37.008281 + ], + [ + -79.347971, + 37.008497 + ], + [ + -79.348051, + 37.008623 + ], + [ + -79.348135, + 37.008786 + ], + [ + -79.348201, + 37.008954 + ], + [ + -79.34825, + 37.009126 + ], + [ + -79.348316, + 37.00954 + ], + [ + -79.348397, + 37.010196 + ], + [ + -79.34854, + 37.01111 + ], + [ + -79.348616, + 37.011496 + ], + [ + -79.348778, + 37.012266 + ], + [ + -79.349159, + 37.013946 + ], + [ + -79.349315, + 37.014628 + ], + [ + -79.349636, + 37.015919 + ], + [ + -79.349688, + 37.016183 + ], + [ + -79.349795, + 37.016628 + ], + [ + -79.349854, + 37.016827 + ], + [ + -79.349915, + 37.01701 + ], + [ + -79.350064, + 37.017337 + ], + [ + -79.350135, + 37.017464 + ], + [ + -79.350159, + 37.017499 + ], + [ + -79.350325, + 37.017735 + ], + [ + -79.35042, + 37.017865 + ], + [ + -79.350584, + 37.018129 + ], + [ + -79.35072, + 37.01842 + ], + [ + -79.350808, + 37.018683 + ], + [ + -79.35089, + 37.018981 + ], + [ + -79.350968, + 37.019317 + ], + [ + -79.35119, + 37.020219 + ], + [ + -79.351251, + 37.020445 + ], + [ + -79.351346, + 37.020719 + ], + [ + -79.351414, + 37.020888 + ], + [ + -79.351505, + 37.021079 + ], + [ + -79.351682, + 37.021459 + ], + [ + -79.351825, + 37.02176 + ], + [ + -79.352185, + 37.022473 + ], + [ + -79.352628, + 37.023433 + ], + [ + -79.352751, + 37.023743 + ], + [ + -79.35282, + 37.023863 + ], + [ + -79.352895, + 37.023965 + ], + [ + -79.353012, + 37.024078 + ], + [ + -79.353078, + 37.024127 + ], + [ + -79.353186, + 37.024186 + ], + [ + -79.353325, + 37.024244 + ], + [ + -79.353398, + 37.024265 + ], + [ + -79.353421, + 37.02427 + ], + [ + -79.353621, + 37.024315 + ], + [ + -79.353675, + 37.024321 + ], + [ + -79.35392, + 37.024336 + ], + [ + -79.354286, + 37.024379 + ], + [ + -79.354423, + 37.024385 + ], + [ + -79.354844, + 37.024375 + ], + [ + -79.355058, + 37.024359 + ], + [ + -79.355214, + 37.024339 + ], + [ + -79.355354, + 37.024308 + ], + [ + -79.355614, + 37.024238 + ], + [ + -79.355718, + 37.024209 + ], + [ + -79.355965, + 37.024125 + ], + [ + -79.356147, + 37.024057 + ], + [ + -79.356485, + 37.02394 + ], + [ + -79.356546, + 37.023919 + ], + [ + -79.356797, + 37.023824 + ], + [ + -79.356964, + 37.023769 + ], + [ + -79.357077, + 37.023757 + ], + [ + -79.357196, + 37.023767 + ], + [ + -79.357262, + 37.023786 + ], + [ + -79.357309, + 37.023811 + ], + [ + -79.35735, + 37.023849 + ], + [ + -79.357388, + 37.023905 + ], + [ + -79.357541, + 37.024317 + ], + [ + -79.357583, + 37.024391 + ], + [ + -79.357634, + 37.024438 + ], + [ + -79.357685, + 37.024467 + ], + [ + -79.357747, + 37.024487 + ], + [ + -79.35783, + 37.024497 + ], + [ + -79.357899, + 37.024495 + ], + [ + -79.35801, + 37.02448 + ], + [ + -79.358102, + 37.02446 + ], + [ + -79.358409, + 37.025941 + ], + [ + -79.358471, + 37.026316 + ], + [ + -79.358502, + 37.026637 + ], + [ + -79.358517, + 37.026844 + ], + [ + -79.358519, + 37.027185 + ], + [ + -79.358497, + 37.027679 + ], + [ + -79.358457, + 37.028033 + ], + [ + -79.358398, + 37.028378 + ], + [ + -79.358301, + 37.028779 + ], + [ + -79.358082, + 37.029574 + ], + [ + -79.357957, + 37.030026 + ], + [ + -79.357813, + 37.030609 + ], + [ + -79.357745, + 37.03095 + ], + [ + -79.357685, + 37.031344 + ], + [ + -79.357656, + 37.031612 + ], + [ + -79.357621, + 37.032199 + ], + [ + -79.357619, + 37.032445 + ], + [ + -79.357631, + 37.032766 + ], + [ + -79.357637, + 37.032893 + ], + [ + -79.357666, + 37.033258 + ], + [ + -79.357711, + 37.033639 + ], + [ + -79.357789, + 37.034066 + ], + [ + -79.357875, + 37.034441 + ], + [ + -79.357922, + 37.034622 + ], + [ + -79.358521, + 37.036938 + ], + [ + -79.358613, + 37.037315 + ], + [ + -79.358687, + 37.037658 + ], + [ + -79.358786, + 37.038217 + ], + [ + -79.358856, + 37.038791 + ], + [ + -79.358911, + 37.039356 + ], + [ + -79.358965, + 37.0401 + ], + [ + -79.359051, + 37.041306 + ], + [ + -79.359073, + 37.041825 + ], + [ + -79.359059, + 37.042471 + ], + [ + -79.359012, + 37.042954 + ], + [ + -79.35899, + 37.04313 + ], + [ + -79.358922, + 37.043537 + ], + [ + -79.358829, + 37.043973 + ], + [ + -79.358773, + 37.044171 + ], + [ + -79.358704, + 37.044417 + ], + [ + -79.358541, + 37.044914 + ], + [ + -79.358352, + 37.045429 + ], + [ + -79.357856, + 37.04678 + ], + [ + -79.357794, + 37.046961 + ], + [ + -79.357564, + 37.047556 + ], + [ + -79.357409, + 37.047915 + ], + [ + -79.357338, + 37.048062 + ], + [ + -79.357278, + 37.048184 + ], + [ + -79.356942, + 37.048801 + ], + [ + -79.356841, + 37.048967 + ], + [ + -79.356589, + 37.049349 + ], + [ + -79.356363, + 37.049677 + ], + [ + -79.354212, + 37.052783 + ], + [ + -79.353972, + 37.053148 + ], + [ + -79.353865, + 37.053295 + ], + [ + -79.353452, + 37.053889 + ], + [ + -79.352197, + 37.055711 + ], + [ + -79.352126, + 37.055808 + ], + [ + -79.351983, + 37.056023 + ], + [ + -79.351596, + 37.056539 + ], + [ + -79.351413, + 37.056761 + ], + [ + -79.35122, + 37.056979 + ], + [ + -79.351018, + 37.057191 + ], + [ + -79.35075, + 37.057445 + ], + [ + -79.350603, + 37.057584 + ], + [ + -79.35029, + 37.057856 + ], + [ + -79.348032, + 37.059645 + ], + [ + -79.346954, + 37.060488 + ], + [ + -79.345892, + 37.06133 + ], + [ + -79.345295, + 37.061797 + ], + [ + -79.344778, + 37.062208 + ], + [ + -79.344716, + 37.062258 + ], + [ + -79.343942, + 37.062866 + ], + [ + -79.343259, + 37.06342 + ], + [ + -79.342925, + 37.063722 + ], + [ + -79.342732, + 37.063907 + ], + [ + -79.342302, + 37.064351 + ], + [ + -79.342055, + 37.06463 + ], + [ + -79.341843, + 37.064885 + ], + [ + -79.341424, + 37.065452 + ], + [ + -79.341048, + 37.066036 + ], + [ + -79.340718, + 37.066647 + ], + [ + -79.340066, + 37.068047 + ], + [ + -79.338982, + 37.070343 + ], + [ + -79.336951, + 37.074656 + ], + [ + -79.336672, + 37.075265 + ], + [ + -79.335622, + 37.077497 + ], + [ + -79.335265, + 37.078252 + ], + [ + -79.33489, + 37.079062 + ], + [ + -79.334833, + 37.079182 + ], + [ + -79.334222, + 37.080477 + ], + [ + -79.333262, + 37.082521 + ], + [ + -79.333001, + 37.083079 + ], + [ + -79.332628, + 37.084028 + ], + [ + -79.332548, + 37.084278 + ], + [ + -79.332388, + 37.08478 + ], + [ + -79.332201, + 37.085539 + ], + [ + -79.33204, + 37.086421 + ], + [ + -79.33196, + 37.086978 + ], + [ + -79.331907, + 37.087757 + ], + [ + -79.331871, + 37.088536 + ], + [ + -79.33185, + 37.089317 + ], + [ + -79.331805, + 37.090324 + ], + [ + -79.331772, + 37.091338 + ], + [ + -79.331768, + 37.092235 + ], + [ + -79.33183, + 37.093576 + ], + [ + -79.331943, + 37.095022 + ], + [ + -79.332045, + 37.096198 + ], + [ + -79.332341, + 37.099713 + ], + [ + -79.332397, + 37.100421 + ], + [ + -79.332436, + 37.101086 + ], + [ + -79.332443, + 37.1013 + ], + [ + -79.332438, + 37.10199 + ], + [ + -79.332418, + 37.102426 + ], + [ + -79.332391, + 37.102795 + ], + [ + -79.332337, + 37.103324 + ], + [ + -79.332244, + 37.103966 + ], + [ + -79.332205, + 37.104185 + ], + [ + -79.332175, + 37.104355 + ], + [ + -79.332056, + 37.104907 + ], + [ + -79.332041, + 37.104978 + ], + [ + -79.331903, + 37.105494 + ], + [ + -79.331733, + 37.106053 + ], + [ + -79.331559, + 37.106562 + ], + [ + -79.33131, + 37.107195 + ], + [ + -79.331178, + 37.107501 + ], + [ + -79.330959, + 37.107973 + ], + [ + -79.330748, + 37.108399 + ], + [ + -79.330489, + 37.108876 + ], + [ + -79.330365, + 37.109093 + ], + [ + -79.330155, + 37.10944 + ], + [ + -79.329757, + 37.110058 + ], + [ + -79.328813, + 37.111446 + ], + [ + -79.328701, + 37.111611 + ], + [ + -79.327118, + 37.113932 + ], + [ + -79.327107, + 37.113947 + ], + [ + -79.326498, + 37.114802 + ], + [ + -79.326178, + 37.115223 + ], + [ + -79.326128, + 37.115289 + ], + [ + -79.32568, + 37.115855 + ], + [ + -79.325061, + 37.116595 + ], + [ + -79.324816, + 37.116878 + ], + [ + -79.324497, + 37.117235 + ], + [ + -79.324161, + 37.117601 + ], + [ + -79.323816, + 37.117964 + ], + [ + -79.323589, + 37.118194 + ], + [ + -79.323104, + 37.118678 + ], + [ + -79.322015, + 37.119732 + ], + [ + -79.320826, + 37.12089 + ], + [ + -79.320279, + 37.121415 + ], + [ + -79.31993, + 37.121729 + ], + [ + -79.319276, + 37.122271 + ], + [ + -79.318828, + 37.122609 + ], + [ + -79.318377, + 37.122925 + ], + [ + -79.317535, + 37.123462 + ], + [ + -79.316595, + 37.123987 + ], + [ + -79.315586, + 37.124473 + ], + [ + -79.314958, + 37.124742 + ], + [ + -79.311931, + 37.125973 + ], + [ + -79.303986, + 37.129196 + ], + [ + -79.303177, + 37.129555 + ], + [ + -79.302367, + 37.129915 + ], + [ + -79.30095, + 37.130617 + ], + [ + -79.298871, + 37.131691 + ], + [ + -79.298008, + 37.132146 + ], + [ + -79.293574, + 37.134491 + ], + [ + -79.293108, + 37.134749 + ], + [ + -79.292712, + 37.134937 + ], + [ + -79.292278, + 37.135125 + ], + [ + -79.291836, + 37.1353 + ], + [ + -79.291351, + 37.135473 + ], + [ + -79.290905, + 37.135615 + ], + [ + -79.290365, + 37.135772 + ], + [ + -79.289641, + 37.135941 + ], + [ + -79.289078, + 37.136055 + ], + [ + -79.288222, + 37.136184 + ], + [ + -79.287781, + 37.136228 + ], + [ + -79.287205, + 37.136269 + ], + [ + -79.281895, + 37.136526 + ], + [ + -79.280512, + 37.136607 + ], + [ + -79.279731, + 37.13667 + ], + [ + -79.278968, + 37.136747 + ], + [ + -79.277922, + 37.136872 + ], + [ + -79.276244, + 37.13712 + ], + [ + -79.273494, + 37.137624 + ], + [ + -79.272005, + 37.137904 + ], + [ + -79.271794, + 37.137944 + ], + [ + -79.266159, + 37.138985 + ], + [ + -79.265643, + 37.139056 + ], + [ + -79.265084, + 37.139119 + ], + [ + -79.264404, + 37.139177 + ], + [ + -79.263826, + 37.139213 + ], + [ + -79.263263, + 37.139234 + ], + [ + -79.262666, + 37.139241 + ], + [ + -79.262103, + 37.139234 + ], + [ + -79.26149, + 37.139213 + ], + [ + -79.260895, + 37.13918 + ], + [ + -79.260488, + 37.139149 + ], + [ + -79.257811, + 37.138859 + ], + [ + -79.253283, + 37.138354 + ], + [ + -79.251817, + 37.138189 + ], + [ + -79.251311, + 37.138138 + ], + [ + -79.25082, + 37.138104 + ], + [ + -79.250344, + 37.138087 + ], + [ + -79.249949, + 37.138091 + ], + [ + -79.249141, + 37.138125 + ], + [ + -79.248701, + 37.138169 + ], + [ + -79.248255, + 37.138232 + ], + [ + -79.247815, + 37.138303 + ], + [ + -79.247404, + 37.138388 + ], + [ + -79.246983, + 37.138492 + ], + [ + -79.24619, + 37.138741 + ], + [ + -79.246034, + 37.138799 + ], + [ + -79.245567, + 37.138991 + ], + [ + -79.243639, + 37.139795 + ], + [ + -79.242121, + 37.140435 + ], + [ + -79.241618, + 37.140648 + ], + [ + -79.241125, + 37.14089 + ], + [ + -79.240755, + 37.141103 + ], + [ + -79.240471, + 37.141293 + ], + [ + -79.240237, + 37.141475 + ], + [ + -79.240023, + 37.141661 + ], + [ + -79.239659, + 37.142024 + ], + [ + -79.238717, + 37.143115 + ], + [ + -79.238653, + 37.143189 + ], + [ + -79.238443, + 37.143404 + ], + [ + -79.23822, + 37.14361 + ], + [ + -79.237972, + 37.143817 + ], + [ + -79.237711, + 37.144013 + ], + [ + -79.237424, + 37.144206 + ], + [ + -79.237139, + 37.144378 + ], + [ + -79.236846, + 37.144536 + ], + [ + -79.23672, + 37.144599 + ], + [ + -79.235366, + 37.145185 + ], + [ + -79.235031, + 37.145327 + ], + [ + -79.233118, + 37.146139 + ], + [ + -79.232943, + 37.146214 + ], + [ + -79.23213, + 37.146559 + ], + [ + -79.23159, + 37.146789 + ], + [ + -79.231268, + 37.146943 + ], + [ + -79.230971, + 37.147103 + ], + [ + -79.230723, + 37.147248 + ], + [ + -79.230589, + 37.147333 + ], + [ + -79.230303, + 37.147527 + ], + [ + -79.230067, + 37.147704 + ], + [ + -79.229831, + 37.147902 + ], + [ + -79.229608, + 37.148108 + ], + [ + -79.229398, + 37.148324 + ], + [ + -79.229192, + 37.148559 + ], + [ + -79.229002, + 37.148802 + ], + [ + -79.228823, + 37.149065 + ], + [ + -79.228683, + 37.149299 + ], + [ + -79.228557, + 37.149537 + ], + [ + -79.228436, + 37.149807 + ], + [ + -79.228332, + 37.15008 + ], + [ + -79.22824, + 37.150371 + ], + [ + -79.228165, + 37.150679 + ], + [ + -79.228144, + 37.150787 + ], + [ + -79.22795, + 37.1522 + ], + [ + -79.227939, + 37.152282 + ], + [ + -79.227922, + 37.152405 + ], + [ + -79.227831, + 37.1531 + ], + [ + -79.227768, + 37.153577 + ], + [ + -79.22775, + 37.153704 + ], + [ + -79.227707, + 37.153951 + ], + [ + -79.227614, + 37.154338 + ], + [ + -79.227519, + 37.154642 + ], + [ + -79.227394, + 37.154981 + ], + [ + -79.227259, + 37.155289 + ], + [ + -79.227113, + 37.155579 + ], + [ + -79.227008, + 37.155764 + ], + [ + -79.226979, + 37.155814 + ], + [ + -79.226931, + 37.155892 + ], + [ + -79.22673, + 37.156196 + ], + [ + -79.226531, + 37.156466 + ], + [ + -79.226359, + 37.156679 + ], + [ + -79.226091, + 37.156981 + ], + [ + -79.225836, + 37.157239 + ], + [ + -79.225577, + 37.157477 + ], + [ + -79.225307, + 37.157704 + ], + [ + -79.225033, + 37.15791 + ], + [ + -79.224838, + 37.158043 + ], + [ + -79.223223, + 37.159106 + ], + [ + -79.222625, + 37.159494 + ], + [ + -79.222577, + 37.159525 + ], + [ + -79.222526, + 37.159559 + ], + [ + -79.222269, + 37.159725 + ], + [ + -79.221758, + 37.160065 + ], + [ + -79.219427, + 37.161585 + ], + [ + -79.218294, + 37.162324 + ], + [ + -79.218211, + 37.162378 + ], + [ + -79.216923, + 37.163217 + ], + [ + -79.216426, + 37.163539 + ], + [ + -79.215909, + 37.16389 + ], + [ + -79.215531, + 37.164171 + ], + [ + -79.215221, + 37.164425 + ], + [ + -79.214936, + 37.164678 + ], + [ + -79.214674, + 37.164929 + ], + [ + -79.214292, + 37.165324 + ], + [ + -79.214244, + 37.165374 + ], + [ + -79.213081, + 37.166582 + ], + [ + -79.212642, + 37.167038 + ], + [ + -79.212368, + 37.167324 + ], + [ + -79.212048, + 37.167658 + ], + [ + -79.211768, + 37.16795 + ], + [ + -79.211486, + 37.168245 + ], + [ + -79.211416, + 37.168318 + ], + [ + -79.211008, + 37.168744 + ], + [ + -79.210963, + 37.168791 + ], + [ + -79.210689, + 37.16908 + ], + [ + -79.210304, + 37.16953 + ], + [ + -79.2101, + 37.169782 + ], + [ + -79.209923, + 37.170006 + ], + [ + -79.209526, + 37.170538 + ], + [ + -79.209343, + 37.170798 + ], + [ + -79.207037, + 37.174039 + ], + [ + -79.206764, + 37.174435 + ], + [ + -79.206634, + 37.174641 + ], + [ + -79.206469, + 37.174929 + ], + [ + -79.206273, + 37.17532 + ], + [ + -79.20615, + 37.175603 + ], + [ + -79.206073, + 37.175802 + ], + [ + -79.206026, + 37.175929 + ], + [ + -79.205916, + 37.176273 + ], + [ + -79.205845, + 37.176539 + ], + [ + -79.205757, + 37.176917 + ], + [ + -79.205696, + 37.177164 + ], + [ + -79.205658, + 37.177349 + ], + [ + -79.205603, + 37.177589 + ], + [ + -79.205562, + 37.177759 + ], + [ + -79.205539, + 37.177863 + ], + [ + -79.205487, + 37.178091 + ], + [ + -79.205427, + 37.178344 + ], + [ + -79.205364, + 37.178607 + ], + [ + -79.205297, + 37.178889 + ], + [ + -79.205253, + 37.179068 + ], + [ + -79.20519, + 37.179332 + ], + [ + -79.205122, + 37.179618 + ], + [ + -79.205055, + 37.179895 + ], + [ + -79.204997, + 37.180138 + ], + [ + -79.204614, + 37.181773 + ], + [ + -79.204588, + 37.181883 + ], + [ + -79.204488, + 37.182314 + ], + [ + -79.204319, + 37.183043 + ], + [ + -79.204265, + 37.183268 + ], + [ + -79.204123, + 37.18388 + ], + [ + -79.203924, + 37.184747 + ], + [ + -79.203855, + 37.185167 + ], + [ + -79.203781, + 37.185725 + ], + [ + -79.203767, + 37.185869 + ], + [ + -79.203714, + 37.186727 + ], + [ + -79.203688, + 37.188358 + ], + [ + -79.203665, + 37.189574 + ], + [ + -79.203624, + 37.192626 + ], + [ + -79.203627, + 37.192665 + ], + [ + -79.203588, + 37.193792 + ], + [ + -79.203572, + 37.194229 + ], + [ + -79.203568, + 37.194309 + ], + [ + -79.203559, + 37.194539 + ], + [ + -79.203553, + 37.194676 + ], + [ + -79.203543, + 37.194919 + ], + [ + -79.203531, + 37.195199 + ], + [ + -79.203502, + 37.195859 + ], + [ + -79.203483, + 37.196276 + ], + [ + -79.203468, + 37.196579 + ], + [ + -79.203458, + 37.196792 + ], + [ + -79.203433, + 37.197322 + ], + [ + -79.203422, + 37.197563 + ], + [ + -79.20341, + 37.197824 + ], + [ + -79.203397, + 37.198095 + ], + [ + -79.20339, + 37.198254 + ], + [ + -79.203379, + 37.19847 + ], + [ + -79.203358, + 37.198936 + ], + [ + -79.20334, + 37.19935 + ], + [ + -79.203304, + 37.200071 + ], + [ + -79.203262, + 37.200536 + ], + [ + -79.203244, + 37.200686 + ], + [ + -79.203162, + 37.201241 + ], + [ + -79.203073, + 37.201722 + ], + [ + -79.20306, + 37.201793 + ], + [ + -79.203026, + 37.201977 + ], + [ + -79.202836, + 37.203003 + ], + [ + -79.202752, + 37.203459 + ], + [ + -79.202563, + 37.204478 + ], + [ + -79.202452, + 37.205079 + ], + [ + -79.202395, + 37.205385 + ], + [ + -79.201856, + 37.208299 + ], + [ + -79.201805, + 37.208574 + ], + [ + -79.201702, + 37.209126 + ], + [ + -79.201673, + 37.209268 + ], + [ + -79.201619, + 37.209479 + ], + [ + -79.201573, + 37.209638 + ], + [ + -79.201505, + 37.209836 + ], + [ + -79.201407, + 37.210085 + ], + [ + -79.201284, + 37.210341 + ], + [ + -79.201114, + 37.21064 + ], + [ + -79.201026, + 37.210776 + ], + [ + -79.200882, + 37.21098 + ], + [ + -79.200649, + 37.211282 + ], + [ + -79.200396, + 37.211554 + ], + [ + -79.199727, + 37.212167 + ], + [ + -79.199637, + 37.212249 + ], + [ + -79.199553, + 37.212325 + ], + [ + -79.199391, + 37.212473 + ], + [ + -79.199159, + 37.212684 + ], + [ + -79.19865, + 37.213144 + ], + [ + -79.197756, + 37.213946 + ], + [ + -79.197588, + 37.214097 + ], + [ + -79.197252, + 37.214415 + ], + [ + -79.196922, + 37.214731 + ], + [ + -79.196487, + 37.215166 + ], + [ + -79.196055, + 37.215596 + ], + [ + -79.195714, + 37.216042 + ], + [ + -79.195395, + 37.216449 + ], + [ + -79.194175, + 37.218086 + ], + [ + -79.193942, + 37.2184 + ], + [ + -79.193714, + 37.218705 + ], + [ + -79.193339, + 37.219208 + ], + [ + -79.193103, + 37.219523 + ], + [ + -79.192804, + 37.219924 + ], + [ + -79.192465, + 37.220384 + ], + [ + -79.191972, + 37.221056 + ], + [ + -79.191665, + 37.221486 + ], + [ + -79.191271, + 37.222039 + ], + [ + -79.191066, + 37.222328 + ], + [ + -79.190837, + 37.222648 + ], + [ + -79.190786, + 37.222724 + ], + [ + -79.190591, + 37.223024 + ], + [ + -79.190561, + 37.223069 + ], + [ + -79.190114, + 37.223762 + ], + [ + -79.189976, + 37.223994 + ], + [ + -79.189786, + 37.224314 + ], + [ + -79.189538, + 37.224731 + ], + [ + -79.189441, + 37.224896 + ], + [ + -79.189231, + 37.225287 + ], + [ + -79.188873, + 37.225949 + ], + [ + -79.188647, + 37.226369 + ], + [ + -79.188578, + 37.226497 + ], + [ + -79.188422, + 37.22682 + ], + [ + -79.187747, + 37.228226 + ], + [ + -79.187638, + 37.228454 + ], + [ + -79.186752, + 37.230317 + ], + [ + -79.186236, + 37.23142 + ], + [ + -79.186183, + 37.231531 + ], + [ + -79.186143, + 37.231633 + ], + [ + -79.186012, + 37.231905 + ], + [ + -79.185971, + 37.232009 + ], + [ + -79.185901, + 37.232204 + ], + [ + -79.185821, + 37.232467 + ], + [ + -79.185783, + 37.232629 + ], + [ + -79.185746, + 37.232787 + ], + [ + -79.185712, + 37.232989 + ], + [ + -79.185564, + 37.234115 + ], + [ + -79.18554, + 37.234342 + ], + [ + -79.185535, + 37.234388 + ], + [ + -79.185527, + 37.234464 + ], + [ + -79.185489, + 37.234824 + ], + [ + -79.185459, + 37.235133 + ], + [ + -79.185442, + 37.235447 + ], + [ + -79.185444, + 37.235802 + ], + [ + -79.185467, + 37.236157 + ], + [ + -79.185494, + 37.236478 + ], + [ + -79.185509, + 37.236629 + ], + [ + -79.185568, + 37.237037 + ], + [ + -79.185613, + 37.237268 + ], + [ + -79.185642, + 37.237403 + ], + [ + -79.185719, + 37.237706 + ], + [ + -79.185791, + 37.237965 + ], + [ + -79.185811, + 37.238037 + ], + [ + -79.185899, + 37.238345 + ], + [ + -79.185952, + 37.238527 + ], + [ + -79.18597, + 37.23859 + ], + [ + -79.186042, + 37.238834 + ], + [ + -79.186525, + 37.240494 + ], + [ + -79.186638, + 37.240882 + ], + [ + -79.186786, + 37.241392 + ], + [ + -79.186995, + 37.242108 + ], + [ + -79.187061, + 37.242336 + ], + [ + -79.187075, + 37.242384 + ], + [ + -79.187298, + 37.243149 + ], + [ + -79.187378, + 37.243422 + ], + [ + -79.187527, + 37.243936 + ], + [ + -79.187774, + 37.244774 + ], + [ + -79.187853, + 37.245008 + ], + [ + -79.187949, + 37.245331 + ], + [ + -79.187975, + 37.245426 + ], + [ + -79.18809, + 37.245933 + ], + [ + -79.188158, + 37.246339 + ], + [ + -79.188193, + 37.246639 + ], + [ + -79.188214, + 37.246935 + ], + [ + -79.188219, + 37.247189 + ], + [ + -79.188219, + 37.247284 + ], + [ + -79.188204, + 37.247624 + ], + [ + -79.188173, + 37.24795 + ], + [ + -79.188121, + 37.248287 + ], + [ + -79.188078, + 37.248502 + ], + [ + -79.188012, + 37.248777 + ], + [ + -79.187964, + 37.248948 + ], + [ + -79.18752, + 37.250322 + ], + [ + -79.187502, + 37.250377 + ], + [ + -79.187461, + 37.250489 + ], + [ + -79.187101, + 37.251604 + ], + [ + -79.186977, + 37.251986 + ], + [ + -79.186803, + 37.252487 + ], + [ + -79.186647, + 37.252862 + ], + [ + -79.186473, + 37.253233 + ], + [ + -79.1864, + 37.253375 + ], + [ + -79.186369, + 37.253435 + ], + [ + -79.186196, + 37.253727 + ], + [ + -79.186096, + 37.253883 + ], + [ + -79.185846, + 37.254253 + ], + [ + -79.185619, + 37.254587 + ], + [ + -79.184816, + 37.255765 + ], + [ + -79.184332, + 37.256471 + ], + [ + -79.184251, + 37.256583 + ], + [ + -79.183919, + 37.257073 + ], + [ + -79.183282, + 37.258009 + ], + [ + -79.183273, + 37.258023 + ], + [ + -79.182658, + 37.258928 + ], + [ + -79.182428, + 37.259266 + ], + [ + -79.182236, + 37.259548 + ], + [ + -79.182189, + 37.259617 + ], + [ + -79.181677, + 37.260371 + ], + [ + -79.180889, + 37.261527 + ], + [ + -79.180329, + 37.262346 + ], + [ + -79.179966, + 37.262877 + ], + [ + -79.178561, + 37.264935 + ], + [ + -79.177834, + 37.265998 + ], + [ + -79.17762, + 37.266312 + ], + [ + -79.177577, + 37.266375 + ], + [ + -79.177344, + 37.266717 + ], + [ + -79.177268, + 37.266828 + ], + [ + -79.175738, + 37.269066 + ], + [ + -79.175293, + 37.269718 + ], + [ + -79.175059, + 37.270062 + ], + [ + -79.175024, + 37.270113 + ], + [ + -79.174746, + 37.27052 + ], + [ + -79.174499, + 37.270885 + ], + [ + -79.174225, + 37.271286 + ], + [ + -79.17318, + 37.27282 + ], + [ + -79.172596, + 37.273676 + ], + [ + -79.172062, + 37.274457 + ], + [ + -79.17205, + 37.274476 + ], + [ + -79.171892, + 37.274707 + ], + [ + -79.171746, + 37.274919 + ], + [ + -79.170612, + 37.276581 + ], + [ + -79.170091, + 37.277344 + ], + [ + -79.170074, + 37.277368 + ], + [ + -79.169014, + 37.27887 + ], + [ + -79.168768, + 37.279279 + ], + [ + -79.168446, + 37.279751 + ], + [ + -79.168095, + 37.28026 + ], + [ + -79.167791, + 37.280704 + ], + [ + -79.167004, + 37.281854 + ], + [ + -79.166839, + 37.282126 + ], + [ + -79.166686, + 37.282417 + ], + [ + -79.166553, + 37.282715 + ], + [ + -79.166455, + 37.282978 + ], + [ + -79.166365, + 37.283271 + ], + [ + -79.166331, + 37.283406 + ], + [ + -79.166277, + 37.283662 + ], + [ + -79.166236, + 37.283934 + ], + [ + -79.166211, + 37.284233 + ], + [ + -79.166208, + 37.284331 + ], + [ + -79.16621, + 37.284606 + ], + [ + -79.166232, + 37.284894 + ], + [ + -79.166273, + 37.28518 + ], + [ + -79.166341, + 37.285491 + ], + [ + -79.166394, + 37.28568 + ], + [ + -79.166419, + 37.28576 + ], + [ + -79.16653, + 37.286061 + ], + [ + -79.16656, + 37.286133 + ], + [ + -79.166601, + 37.286228 + ], + [ + -79.167073, + 37.287187 + ], + [ + -79.167342, + 37.287727 + ], + [ + -79.167647, + 37.288335 + ], + [ + -79.167961, + 37.288961 + ], + [ + -79.168213, + 37.289466 + ], + [ + -79.168669, + 37.290363 + ], + [ + -79.169252, + 37.291516 + ], + [ + -79.169707, + 37.292425 + ], + [ + -79.170019, + 37.293049 + ], + [ + -79.170164, + 37.293337 + ], + [ + -79.170762, + 37.294525 + ], + [ + -79.171017, + 37.295032 + ], + [ + -79.171197, + 37.29539 + ], + [ + -79.171228, + 37.295451 + ], + [ + -79.171707, + 37.296402 + ], + [ + -79.171854, + 37.296694 + ], + [ + -79.172057, + 37.297099 + ], + [ + -79.172329, + 37.297639 + ], + [ + -79.172756, + 37.298485 + ], + [ + -79.172921, + 37.29877 + ], + [ + -79.173118, + 37.299071 + ], + [ + -79.173326, + 37.299351 + ], + [ + -79.1734, + 37.299443 + ], + [ + -79.173711, + 37.299824 + ], + [ + -79.174643, + 37.300928 + ], + [ + -79.177789, + 37.304649 + ], + [ + -79.17841, + 37.305383 + ], + [ + -79.179563, + 37.306751 + ], + [ + -79.18128, + 37.308787 + ], + [ + -79.181492, + 37.309036 + ], + [ + -79.181949, + 37.309573 + ], + [ + -79.182599, + 37.310336 + ], + [ + -79.183198, + 37.311046 + ], + [ + -79.183775, + 37.311729 + ], + [ + -79.183964, + 37.311947 + ], + [ + -79.18428, + 37.312314 + ], + [ + -79.18536, + 37.313557 + ], + [ + -79.18553, + 37.313753 + ], + [ + -79.18588, + 37.314159 + ], + [ + -79.186286, + 37.314624 + ], + [ + -79.186592, + 37.314975 + ], + [ + -79.186893, + 37.31532 + ], + [ + -79.187155, + 37.315623 + ], + [ + -79.187287, + 37.315796 + ], + [ + -79.187433, + 37.315958 + ], + [ + -79.187603, + 37.316193 + ], + [ + -79.187705, + 37.316348 + ], + [ + -79.187781, + 37.316469 + ], + [ + -79.187895, + 37.316666 + ], + [ + -79.188063, + 37.316995 + ], + [ + -79.188211, + 37.31734 + ], + [ + -79.188267, + 37.317488 + ], + [ + -79.188574, + 37.31828 + ], + [ + -79.18873, + 37.318682 + ], + [ + -79.188773, + 37.318793 + ], + [ + -79.188818, + 37.318907 + ], + [ + -79.188983, + 37.319332 + ], + [ + -79.189167, + 37.319817 + ], + [ + -79.18919, + 37.319881 + ], + [ + -79.189276, + 37.320122 + ], + [ + -79.189293, + 37.320183 + ], + [ + -79.189372, + 37.320484 + ], + [ + -79.189407, + 37.320635 + ], + [ + -79.189445, + 37.320825 + ], + [ + -79.189477, + 37.321015 + ], + [ + -79.189492, + 37.321115 + ], + [ + -79.189533, + 37.321458 + ], + [ + -79.189536, + 37.321492 + ], + [ + -79.189586, + 37.322119 + ], + [ + -79.189602, + 37.322319 + ], + [ + -79.189637, + 37.32275 + ], + [ + -79.189647, + 37.322876 + ], + [ + -79.189704, + 37.323523 + ], + [ + -79.189737, + 37.323892 + ], + [ + -79.189747, + 37.323997 + ], + [ + -79.189761, + 37.324147 + ], + [ + -79.189781, + 37.324375 + ], + [ + -79.189798, + 37.324545 + ], + [ + -79.189823, + 37.324722 + ], + [ + -79.189861, + 37.324935 + ], + [ + -79.189896, + 37.325095 + ], + [ + -79.189922, + 37.3252 + ], + [ + -79.190034, + 37.325593 + ], + [ + -79.190115, + 37.325884 + ], + [ + -79.190279, + 37.326471 + ], + [ + -79.190558, + 37.327468 + ], + [ + -79.190626, + 37.327737 + ], + [ + -79.190656, + 37.327855 + ], + [ + -79.190719, + 37.328102 + ], + [ + -79.190893, + 37.328783 + ], + [ + -79.19093, + 37.328914 + ], + [ + -79.19114, + 37.329665 + ], + [ + -79.191197, + 37.329849 + ], + [ + -79.191289, + 37.330174 + ], + [ + -79.191411, + 37.330604 + ], + [ + -79.191427, + 37.330662 + ], + [ + -79.191549, + 37.331144 + ], + [ + -79.191612, + 37.331407 + ], + [ + -79.191674, + 37.33166 + ], + [ + -79.191713, + 37.331945 + ], + [ + -79.191731, + 37.332216 + ], + [ + -79.191727, + 37.3324 + ], + [ + -79.191718, + 37.332618 + ], + [ + -79.191688, + 37.333114 + ], + [ + -79.191671, + 37.333265 + ], + [ + -79.191652, + 37.333506 + ], + [ + -79.191625, + 37.33369 + ], + [ + -79.191591, + 37.333978 + ], + [ + -79.191586, + 37.334109 + ], + [ + -79.191605, + 37.334336 + ], + [ + -79.19161, + 37.334672 + ], + [ + -79.191612, + 37.334771 + ], + [ + -79.191619, + 37.335165 + ], + [ + -79.191615, + 37.335425 + ], + [ + -79.191612, + 37.335464 + ], + [ + -79.191591, + 37.335798 + ], + [ + -79.191573, + 37.33597 + ], + [ + -79.19153, + 37.336198 + ], + [ + -79.191511, + 37.3363 + ], + [ + -79.191476, + 37.336481 + ], + [ + -79.191396, + 37.336901 + ], + [ + -79.191254, + 37.33724 + ], + [ + -79.191108, + 37.337564 + ], + [ + -79.190891, + 37.337852 + ], + [ + -79.190707, + 37.338004 + ], + [ + -79.190446, + 37.338136 + ], + [ + -79.190159, + 37.338232 + ], + [ + -79.189809, + 37.338303 + ], + [ + -79.189504, + 37.338343 + ], + [ + -79.189039, + 37.338414 + ], + [ + -79.188663, + 37.33847 + ], + [ + -79.188351, + 37.338526 + ], + [ + -79.18802, + 37.338571 + ], + [ + -79.18767, + 37.338617 + ], + [ + -79.187276, + 37.338677 + ], + [ + -79.18683, + 37.338758 + ], + [ + -79.186448, + 37.338854 + ], + [ + -79.186232, + 37.338986 + ], + [ + -79.186034, + 37.339158 + ], + [ + -79.185913, + 37.339381 + ], + [ + -79.185862, + 37.339654 + ], + [ + -79.185792, + 37.339958 + ], + [ + -79.185735, + 37.340246 + ], + [ + -79.185608, + 37.340565 + ], + [ + -79.185474, + 37.340849 + ], + [ + -79.185264, + 37.341152 + ], + [ + -79.185009, + 37.341421 + ], + [ + -79.184748, + 37.341658 + ], + [ + -79.184399, + 37.341989 + ], + [ + -79.184093, + 37.342254 + ], + [ + -79.183658, + 37.342682 + ], + [ + -79.18294, + 37.343536 + ], + [ + -79.182113, + 37.344505 + ], + [ + -79.181077, + 37.345699 + ], + [ + -79.180004, + 37.346871 + ], + [ + -79.178729, + 37.348196 + ], + [ + -79.177389, + 37.349407 + ], + [ + -79.177129, + 37.349621 + ], + [ + -79.176626, + 37.350036 + ], + [ + -79.173129, + 37.353092 + ], + [ + -79.169752, + 37.356318 + ], + [ + -79.169186, + 37.356859 + ], + [ + -79.166439, + 37.359647 + ], + [ + -79.165165, + 37.360856 + ], + [ + -79.164528, + 37.361444 + ], + [ + -79.163946, + 37.361878 + ], + [ + -79.162943, + 37.362614 + ], + [ + -79.161891, + 37.363349 + ], + [ + -79.159885, + 37.364693 + ], + [ + -79.158866, + 37.365389 + ], + [ + -79.157915, + 37.36609 + ], + [ + -79.156262, + 37.367299 + ], + [ + -79.153378, + 37.36939 + ], + [ + -79.1513, + 37.370777 + ], + [ + -79.148798, + 37.372337 + ], + [ + -79.146813, + 37.373529 + ], + [ + -79.146135, + 37.37394 + ], + [ + -79.145298, + 37.374385 + ], + [ + -79.144399, + 37.374808 + ], + [ + -79.143032, + 37.375351 + ], + [ + -79.142887, + 37.375396 + ], + [ + -79.141407, + 37.375861 + ], + [ + -79.13952, + 37.376309 + ], + [ + -79.137442, + 37.376753 + ], + [ + -79.136385, + 37.376976 + ], + [ + -79.135221, + 37.37722 + ], + [ + -79.134065, + 37.377456 + ], + [ + -79.132756, + 37.377733 + ], + [ + -79.131505, + 37.377997 + ], + [ + -79.130701, + 37.378165 + ], + [ + -79.129655, + 37.378385 + ], + [ + -79.128812, + 37.378561 + ], + [ + -79.127809, + 37.378776 + ], + [ + -79.127166, + 37.378891 + ], + [ + -79.124907, + 37.379433 + ], + [ + -79.122351, + 37.380007 + ], + [ + -79.119924, + 37.380555 + ], + [ + -79.118369, + 37.380958 + ], + [ + -79.116892, + 37.381492 + ], + [ + -79.11429, + 37.382508 + ], + [ + -79.111589, + 37.383564 + ], + [ + -79.110432, + 37.384015 + ], + [ + -79.108723, + 37.384663 + ], + [ + -79.107004, + 37.385341 + ], + [ + -79.10533, + 37.38597 + ], + [ + -79.10529, + 37.385969 + ], + [ + -79.104874, + 37.386095 + ], + [ + -79.104406, + 37.386191 + ], + [ + -79.103958, + 37.38624 + ], + [ + -79.103328, + 37.386271 + ], + [ + -79.101681, + 37.386155 + ], + [ + -79.101144, + 37.386117 + ], + [ + -79.100418, + 37.386038 + ], + [ + -79.097991, + 37.385843 + ], + [ + -79.09636, + 37.385744 + ], + [ + -79.095982, + 37.385658 + ], + [ + -79.095845, + 37.385614 + ], + [ + -79.09571, + 37.385555 + ], + [ + -79.095567, + 37.38548 + ], + [ + -79.095427, + 37.38539 + ], + [ + -79.095308, + 37.385296 + ], + [ + -79.09517, + 37.385161 + ], + [ + -79.09509, + 37.385054 + ], + [ + -79.094998, + 37.384905 + ], + [ + -79.094916, + 37.384737 + ], + [ + -79.094844, + 37.384528 + ], + [ + -79.094656, + 37.383845 + ], + [ + -79.094531, + 37.38345 + ], + [ + -79.094325, + 37.383054 + ], + [ + -79.094038, + 37.38276 + ], + [ + -79.093621, + 37.382467 + ], + [ + -79.093187, + 37.382294 + ], + [ + -79.092689, + 37.382201 + ], + [ + -79.092284, + 37.382201 + ], + [ + -79.091903, + 37.382257 + ], + [ + -79.091551, + 37.382364 + ], + [ + -79.091187, + 37.382541 + ], + [ + -79.090959, + 37.382723 + ], + [ + -79.090789, + 37.382882 + ], + [ + -79.090589, + 37.383115 + ], + [ + -79.090443, + 37.383376 + ], + [ + -79.090284, + 37.383744 + ], + [ + -79.090225, + 37.384 + ], + [ + -79.090179, + 37.384541 + ], + [ + -79.090062, + 37.385779 + ], + [ + -79.089925, + 37.386644 + ], + [ + -79.089849, + 37.387226 + ], + [ + -79.089779, + 37.387541 + ], + [ + -79.089689, + 37.387836 + ], + [ + -79.0895, + 37.38838 + ], + [ + -79.089436, + 37.388633 + ], + [ + -79.089405, + 37.388841 + ], + [ + -79.089289, + 37.389685 + ], + [ + -79.089161, + 37.39093 + ], + [ + -79.089008, + 37.392008 + ], + [ + -79.08881, + 37.394069 + ], + [ + -79.088768, + 37.394579 + ], + [ + -79.088645, + 37.395885 + ], + [ + -79.088477, + 37.397207 + ], + [ + -79.087956, + 37.401181 + ], + [ + -79.087825, + 37.401823 + ], + [ + -79.087665, + 37.402308 + ], + [ + -79.087554, + 37.402629 + ], + [ + -79.08736, + 37.403142 + ], + [ + -79.087142, + 37.403562 + ], + [ + -79.086923, + 37.403937 + ], + [ + -79.086762, + 37.404195 + ], + [ + -79.086439, + 37.404708 + ], + [ + -79.086251, + 37.405002 + ], + [ + -79.085982, + 37.405393 + ], + [ + -79.085647, + 37.405896 + ], + [ + -79.085037, + 37.406824 + ], + [ + -79.084691, + 37.407346 + ], + [ + -79.084239, + 37.407998 + ], + [ + -79.084081, + 37.408208 + ], + [ + -79.083969, + 37.408376 + ], + [ + -79.083852, + 37.408534 + ], + [ + -79.083752, + 37.408705 + ], + [ + -79.083641, + 37.408893 + ], + [ + -79.08253, + 37.41059 + ], + [ + -79.082107, + 37.41155 + ], + [ + -79.081937, + 37.412163 + ], + [ + -79.081833, + 37.412538 + ], + [ + -79.081757, + 37.413176 + ], + [ + -79.08171, + 37.413903 + ], + [ + -79.081751, + 37.414774 + ], + [ + -79.081781, + 37.415758 + ], + [ + -79.081777, + 37.417393 + ], + [ + -79.081646, + 37.41901 + ], + [ + -79.081485, + 37.420256 + ], + [ + -79.081292, + 37.421219 + ], + [ + -79.081057, + 37.422257 + ], + [ + -79.080513, + 37.424117 + ], + [ + -79.07951, + 37.427155 + ], + [ + -79.078061, + 37.431195 + ], + [ + -79.077269, + 37.433524 + ], + [ + -79.076993, + 37.434391 + ], + [ + -79.076647, + 37.435495 + ], + [ + -79.076395, + 37.436608 + ], + [ + -79.076304, + 37.437254 + ], + [ + -79.076229, + 37.438019 + ], + [ + -79.076213, + 37.439312 + ], + [ + -79.076213, + 37.439413 + ], + [ + -79.076155, + 37.442774 + ], + [ + -79.07614, + 37.443179 + ], + [ + -79.076116, + 37.443841 + ], + [ + -79.076046, + 37.446058 + ], + [ + -79.075976, + 37.449173 + ], + [ + -79.076002, + 37.451689 + ], + [ + -79.076065, + 37.4523 + ], + [ + -79.076262, + 37.453 + ], + [ + -79.076579, + 37.453683 + ], + [ + -79.076982, + 37.454312 + ], + [ + -79.077536, + 37.45501 + ], + [ + -79.079739, + 37.457229 + ], + [ + -79.080689, + 37.458217 + ], + [ + -79.081531, + 37.459252 + ], + [ + -79.082085, + 37.460038 + ], + [ + -79.082441, + 37.460738 + ], + [ + -79.082708, + 37.461304 + ], + [ + -79.082968, + 37.461981 + ], + [ + -79.083137, + 37.462694 + ], + [ + -79.083265, + 37.463513 + ], + [ + -79.083293, + 37.464338 + ], + [ + -79.083287, + 37.464745 + ], + [ + -79.083277, + 37.465166 + ], + [ + -79.083236, + 37.465743 + ], + [ + -79.083136, + 37.466259 + ], + [ + -79.082678, + 37.468029 + ], + [ + -79.082438, + 37.469156 + ], + [ + -79.08215, + 37.470371 + ], + [ + -79.081963, + 37.471033 + ], + [ + -79.081827, + 37.471415 + ], + [ + -79.081408, + 37.472342 + ], + [ + -79.081005, + 37.47309 + ], + [ + -79.080296, + 37.474045 + ], + [ + -79.079641, + 37.474751 + ], + [ + -79.078249, + 37.476094 + ], + [ + -79.077451, + 37.477058 + ], + [ + -79.076776, + 37.477863 + ], + [ + -79.076213, + 37.478711 + ], + [ + -79.075638, + 37.479763 + ], + [ + -79.075274, + 37.480624 + ], + [ + -79.074869, + 37.481821 + ], + [ + -79.074675, + 37.482594 + ], + [ + -79.074634, + 37.482892 + ], + [ + -79.074593, + 37.483204 + ], + [ + -79.07457, + 37.483627 + ], + [ + -79.074448, + 37.484732 + ], + [ + -79.074331, + 37.485753 + ], + [ + -79.074167, + 37.486518 + ], + [ + -79.073888, + 37.487326 + ], + [ + -79.073467, + 37.488074 + ], + [ + -79.07305, + 37.488846 + ], + [ + -79.072616, + 37.489619 + ], + [ + -79.072018, + 37.490699 + ], + [ + -79.07163, + 37.49136 + ], + [ + -79.070791, + 37.492896 + ], + [ + -79.070146, + 37.494186 + ], + [ + -79.06953, + 37.495438 + ], + [ + -79.068703, + 37.497026 + ], + [ + -79.067817, + 37.498799 + ], + [ + -79.067177, + 37.500098 + ], + [ + -79.066497, + 37.501471 + ], + [ + -79.066168, + 37.502341 + ], + [ + -79.065974, + 37.503063 + ], + [ + -79.065895, + 37.503746 + ], + [ + -79.065857, + 37.504329 + ], + [ + -79.065851, + 37.505804 + ], + [ + -79.065851, + 37.506847 + ], + [ + -79.065828, + 37.508187 + ], + [ + -79.065831, + 37.509824 + ], + [ + -79.0658, + 37.510657 + ], + [ + -79.065769, + 37.511273 + ], + [ + -79.065628, + 37.51191 + ], + [ + -79.065455, + 37.512506 + ], + [ + -79.065165, + 37.513111 + ], + [ + -79.064807, + 37.513823 + ], + [ + -79.064426, + 37.514512 + ], + [ + -79.063986, + 37.515424 + ], + [ + -79.063804, + 37.515903 + ], + [ + -79.063545, + 37.516788 + ], + [ + -79.063328, + 37.51796 + ], + [ + -79.063264, + 37.519296 + ], + [ + -79.063311, + 37.520208 + ], + [ + -79.063487, + 37.521209 + ], + [ + -79.063645, + 37.522214 + ], + [ + -79.063845, + 37.523275 + ], + [ + -79.06425, + 37.525364 + ], + [ + -79.064871, + 37.528602 + ], + [ + -79.065376, + 37.531264 + ], + [ + -79.066057, + 37.534819 + ], + [ + -79.066725, + 37.538252 + ], + [ + -79.0674, + 37.541904 + ], + [ + -79.06794, + 37.544546 + ], + [ + -79.068021, + 37.545221 + ], + [ + -79.068093, + 37.545891 + ], + [ + -79.068075, + 37.546616 + ], + [ + -79.067977, + 37.547323 + ], + [ + -79.067805, + 37.547989 + ], + [ + -79.06729, + 37.549617 + ], + [ + -79.066508, + 37.552189 + ], + [ + -79.066203, + 37.55312 + ], + [ + -79.065916, + 37.554199 + ], + [ + -79.06571, + 37.554864 + ], + [ + -79.065358, + 37.555901 + ], + [ + -79.06462, + 37.558162 + ], + [ + -79.064236, + 37.559374 + ], + [ + -79.064086, + 37.559848 + ], + [ + -79.063835, + 37.560896 + ], + [ + -79.063609, + 37.561383 + ], + [ + -79.063256, + 37.561986 + ], + [ + -79.062896, + 37.562503 + ], + [ + -79.062134, + 37.563345 + ], + [ + -79.061625, + 37.563753 + ], + [ + -79.06094, + 37.564213 + ], + [ + -79.058641, + 37.565583 + ], + [ + -79.05758, + 37.566208 + ], + [ + -79.056639, + 37.566768 + ], + [ + -79.055935, + 37.567192 + ], + [ + -79.055742, + 37.567302 + ], + [ + -79.055553, + 37.567416 + ], + [ + -79.055246, + 37.567615 + ], + [ + -79.054927, + 37.567838 + ], + [ + -79.054748, + 37.567977 + ], + [ + -79.054525, + 37.568169 + ], + [ + -79.05429, + 37.568391 + ], + [ + -79.054239, + 37.568442 + ], + [ + -79.054034, + 37.568657 + ], + [ + -79.053873, + 37.56885 + ], + [ + -79.053657, + 37.569143 + ], + [ + -79.053524, + 37.569347 + ], + [ + -79.053368, + 37.569618 + ], + [ + -79.053228, + 37.569894 + ], + [ + -79.053172, + 37.570026 + ], + [ + -79.053043, + 37.570358 + ], + [ + -79.05286, + 37.57095 + ], + [ + -79.052677, + 37.571527 + ], + [ + -79.052485, + 37.572133 + ], + [ + -79.052132, + 37.573261 + ], + [ + -79.051632, + 37.57486 + ], + [ + -79.051348, + 37.57574 + ], + [ + -79.051123, + 37.576286 + ], + [ + -79.051087, + 37.576361 + ], + [ + -79.050788, + 37.576916 + ], + [ + -79.050662, + 37.577116 + ], + [ + -79.050472, + 37.577395 + ], + [ + -79.050278, + 37.577652 + ], + [ + -79.050057, + 37.577924 + ], + [ + -79.049759, + 37.578262 + ], + [ + -79.049412, + 37.578608 + ], + [ + -79.049047, + 37.578931 + ], + [ + -79.047001, + 37.580602 + ], + [ + -79.046515, + 37.580994 + ], + [ + -79.046166, + 37.58126 + ], + [ + -79.045909, + 37.581455 + ], + [ + -79.04561, + 37.58167 + ], + [ + -79.045264, + 37.581887 + ], + [ + -79.044961, + 37.582077 + ], + [ + -79.044149, + 37.582573 + ], + [ + -79.04353, + 37.582927 + ], + [ + -79.04291, + 37.58327 + ], + [ + -79.042129, + 37.58371 + ], + [ + -79.041873, + 37.583864 + ], + [ + -79.041806, + 37.58391 + ], + [ + -79.041621, + 37.584017 + ], + [ + -79.041414, + 37.584155 + ], + [ + -79.041178, + 37.58431 + ], + [ + -79.040635, + 37.584689 + ], + [ + -79.039894, + 37.585255 + ], + [ + -79.039608, + 37.585491 + ], + [ + -79.03912, + 37.585904 + ], + [ + -79.038845, + 37.586155 + ], + [ + -79.038474, + 37.586513 + ], + [ + -79.03781, + 37.587198 + ], + [ + -79.037358, + 37.587719 + ], + [ + -79.037086, + 37.588056 + ], + [ + -79.036877, + 37.588331 + ], + [ + -79.036498, + 37.588836 + ], + [ + -79.036258, + 37.589205 + ], + [ + -79.035926, + 37.589739 + ], + [ + -79.034645, + 37.591992 + ], + [ + -79.034482, + 37.592286 + ], + [ + -79.034097, + 37.592957 + ], + [ + -79.033913, + 37.593255 + ], + [ + -79.033669, + 37.593669 + ], + [ + -79.033006, + 37.594819 + ], + [ + -79.032654, + 37.595452 + ], + [ + -79.032044, + 37.596522 + ], + [ + -79.031678, + 37.597159 + ], + [ + -79.031353, + 37.597735 + ], + [ + -79.03004, + 37.600074 + ], + [ + -79.029644, + 37.600763 + ], + [ + -79.028963, + 37.601951 + ], + [ + -79.028685, + 37.602397 + ], + [ + -79.02851, + 37.602662 + ], + [ + -79.028221, + 37.603043 + ], + [ + -79.027978, + 37.603341 + ], + [ + -79.027692, + 37.60368 + ], + [ + -79.027548, + 37.60383 + ], + [ + -79.027306, + 37.604072 + ], + [ + -79.027105, + 37.604269 + ], + [ + -79.02697, + 37.604392 + ], + [ + -79.026652, + 37.60468 + ], + [ + -79.026083, + 37.605207 + ], + [ + -79.026036, + 37.60525 + ], + [ + -79.025989, + 37.605294 + ], + [ + -79.025872, + 37.605402 + ], + [ + -79.02555, + 37.605685 + ], + [ + -79.025303, + 37.605893 + ], + [ + -79.025239, + 37.605951 + ], + [ + -79.025075, + 37.606102 + ], + [ + -79.024795, + 37.606358 + ], + [ + -79.024408, + 37.606702 + ], + [ + -79.024072, + 37.607013 + ], + [ + -79.024053, + 37.607031 + ], + [ + -79.023787, + 37.607264 + ], + [ + -79.023498, + 37.607516 + ], + [ + -79.023027, + 37.607911 + ], + [ + -79.022811, + 37.60807 + ], + [ + -79.022583, + 37.608218 + ], + [ + -79.022393, + 37.608329 + ], + [ + -79.022103, + 37.608478 + ], + [ + -79.021864, + 37.608585 + ], + [ + -79.021424, + 37.608752 + ], + [ + -79.020855, + 37.608965 + ], + [ + -79.020271, + 37.609195 + ], + [ + -79.020171, + 37.609236 + ], + [ + -79.019921, + 37.609348 + ], + [ + -79.019569, + 37.609526 + ], + [ + -79.019341, + 37.609661 + ], + [ + -79.019134, + 37.609801 + ], + [ + -79.018938, + 37.609951 + ], + [ + -79.018736, + 37.61013 + ], + [ + -79.018557, + 37.610318 + ], + [ + -79.018408, + 37.6105 + ], + [ + -79.018273, + 37.610689 + ], + [ + -79.018177, + 37.610845 + ], + [ + -79.018077, + 37.611005 + ], + [ + -79.017942, + 37.61127 + ], + [ + -79.01775, + 37.611733 + ], + [ + -79.017583, + 37.612195 + ], + [ + -79.017453, + 37.612536 + ], + [ + -79.01736, + 37.612779 + ], + [ + -79.017077, + 37.613518 + ], + [ + -79.016316, + 37.615651 + ], + [ + -79.016211, + 37.615921 + ], + [ + -79.015957, + 37.616661 + ], + [ + -79.015442, + 37.618041 + ], + [ + -79.015171, + 37.618767 + ], + [ + -79.015044, + 37.619085 + ], + [ + -79.014896, + 37.619401 + ], + [ + -79.014725, + 37.619699 + ], + [ + -79.014609, + 37.619891 + ], + [ + -79.014507, + 37.620046 + ], + [ + -79.014326, + 37.620291 + ], + [ + -79.014076, + 37.620611 + ], + [ + -79.013882, + 37.620808 + ], + [ + -79.013583, + 37.621079 + ], + [ + -79.012998, + 37.621504 + ], + [ + -79.01238, + 37.621893 + ], + [ + -79.010646, + 37.622959 + ], + [ + -79.01003, + 37.623323 + ], + [ + -79.009112, + 37.623886 + ], + [ + -79.007841, + 37.62468 + ], + [ + -79.007669, + 37.624786 + ], + [ + -79.00613, + 37.625753 + ], + [ + -79.00574, + 37.625992 + ], + [ + -79.004933, + 37.626484 + ], + [ + -79.004251, + 37.626912 + ], + [ + -79.004139, + 37.626981 + ], + [ + -79.003154, + 37.627592 + ], + [ + -79.001641, + 37.628516 + ], + [ + -79.001111, + 37.628835 + ], + [ + -79.00072, + 37.62907 + ], + [ + -79.000623, + 37.62914 + ], + [ + -79.000217, + 37.629394 + ], + [ + -78.998912, + 37.630202 + ], + [ + -78.998196, + 37.630645 + ], + [ + -78.997598, + 37.631025 + ], + [ + -78.997526, + 37.631071 + ], + [ + -78.997241, + 37.631274 + ], + [ + -78.996875, + 37.631534 + ], + [ + -78.996217, + 37.63205 + ], + [ + -78.995656, + 37.632525 + ], + [ + -78.995017, + 37.633129 + ], + [ + -78.994464, + 37.633668 + ], + [ + -78.993794, + 37.634338 + ], + [ + -78.992582, + 37.635539 + ], + [ + -78.99241, + 37.635715 + ], + [ + -78.992112, + 37.636 + ], + [ + -78.991971, + 37.636127 + ], + [ + -78.991598, + 37.636454 + ], + [ + -78.991319, + 37.636676 + ], + [ + -78.991111, + 37.636827 + ], + [ + -78.990724, + 37.637089 + ], + [ + -78.990344, + 37.637324 + ], + [ + -78.989967, + 37.637537 + ], + [ + -78.989578, + 37.637737 + ], + [ + -78.988855, + 37.638052 + ], + [ + -78.98807, + 37.638382 + ], + [ + -78.986736, + 37.63892 + ], + [ + -78.986454, + 37.639034 + ], + [ + -78.985803, + 37.639316 + ], + [ + -78.984897, + 37.639687 + ], + [ + -78.98388, + 37.640096 + ], + [ + -78.983117, + 37.640414 + ], + [ + -78.982726, + 37.640573 + ], + [ + -78.981774, + 37.640959 + ], + [ + -78.979687, + 37.64182 + ], + [ + -78.978231, + 37.642417 + ], + [ + -78.977005, + 37.64291 + ], + [ + -78.97646, + 37.643116 + ], + [ + -78.975777, + 37.643333 + ], + [ + -78.975711, + 37.643354 + ], + [ + -78.97542, + 37.643425 + ], + [ + -78.974834, + 37.643551 + ], + [ + -78.974604, + 37.64359 + ], + [ + -78.974067, + 37.643681 + ], + [ + -78.973393, + 37.643752 + ], + [ + -78.972559, + 37.643813 + ], + [ + -78.972242, + 37.643839 + ], + [ + -78.970006, + 37.64399 + ], + [ + -78.96903, + 37.64406 + ], + [ + -78.968589, + 37.644095 + ], + [ + -78.968224, + 37.644136 + ], + [ + -78.967889, + 37.644182 + ], + [ + -78.967664, + 37.644226 + ], + [ + -78.967387, + 37.644293 + ], + [ + -78.967224, + 37.644341 + ], + [ + -78.966957, + 37.64443 + ], + [ + -78.966688, + 37.644536 + ], + [ + -78.966474, + 37.644631 + ], + [ + -78.966164, + 37.644789 + ], + [ + -78.965983, + 37.644902 + ], + [ + -78.965692, + 37.645098 + ], + [ + -78.965428, + 37.645294 + ], + [ + -78.965238, + 37.645456 + ], + [ + -78.965063, + 37.645628 + ], + [ + -78.964898, + 37.645816 + ], + [ + -78.964762, + 37.645992 + ], + [ + -78.964605, + 37.646219 + ], + [ + -78.964465, + 37.646453 + ], + [ + -78.964354, + 37.646672 + ], + [ + -78.96426, + 37.646896 + ], + [ + -78.964184, + 37.647124 + ], + [ + -78.964105, + 37.647472 + ], + [ + -78.964045, + 37.647822 + ], + [ + -78.963795, + 37.650137 + ], + [ + -78.963771, + 37.650446 + ], + [ + -78.963726, + 37.650831 + ], + [ + -78.963699, + 37.651104 + ], + [ + -78.963637, + 37.651545 + ], + [ + -78.963559, + 37.651968 + ], + [ + -78.963475, + 37.652244 + ], + [ + -78.963403, + 37.652439 + ], + [ + -78.963343, + 37.65259 + ], + [ + -78.963259, + 37.652771 + ], + [ + -78.963211, + 37.652855 + ], + [ + -78.963159, + 37.652948 + ], + [ + -78.963044, + 37.653119 + ], + [ + -78.962876, + 37.65334 + ], + [ + -78.962692, + 37.653554 + ], + [ + -78.961989, + 37.654258 + ], + [ + -78.961507, + 37.654728 + ], + [ + -78.961039, + 37.655181 + ], + [ + -78.960337, + 37.655875 + ], + [ + -78.96023, + 37.655972 + ], + [ + -78.960126, + 37.656071 + ], + [ + -78.959777, + 37.656385 + ], + [ + -78.959596, + 37.656559 + ], + [ + -78.959428, + 37.656733 + ], + [ + -78.95894, + 37.657212 + ], + [ + -78.958347, + 37.65781 + ], + [ + -78.957955, + 37.658265 + ], + [ + -78.957902, + 37.65834 + ], + [ + -78.957703, + 37.658582 + ], + [ + -78.956957, + 37.659613 + ], + [ + -78.956, + 37.660952 + ], + [ + -78.95555, + 37.661601 + ], + [ + -78.95521, + 37.662149 + ], + [ + -78.955078, + 37.662367 + ], + [ + -78.954742, + 37.662988 + ], + [ + -78.954584, + 37.663297 + ], + [ + -78.954305, + 37.663917 + ], + [ + -78.954148, + 37.6643 + ], + [ + -78.953981, + 37.664751 + ], + [ + -78.953842, + 37.665162 + ], + [ + -78.953791, + 37.665348 + ], + [ + -78.953693, + 37.665702 + ], + [ + -78.953658, + 37.665836 + ], + [ + -78.953519, + 37.666441 + ], + [ + -78.953449, + 37.666806 + ], + [ + -78.953407, + 37.667104 + ], + [ + -78.953324, + 37.667763 + ], + [ + -78.953292, + 37.668183 + ], + [ + -78.953221, + 37.669156 + ], + [ + -78.953153, + 37.670098 + ], + [ + -78.953142, + 37.670264 + ], + [ + -78.953141, + 37.6704 + ], + [ + -78.953072, + 37.671177 + ], + [ + -78.95304, + 37.671615 + ], + [ + -78.952995, + 37.672174 + ], + [ + -78.952947, + 37.672942 + ], + [ + -78.95292, + 37.673225 + ], + [ + -78.952878, + 37.673819 + ], + [ + -78.952829, + 37.674339 + ], + [ + -78.952797, + 37.674686 + ], + [ + -78.952784, + 37.674804 + ], + [ + -78.952747, + 37.675024 + ], + [ + -78.952692, + 37.675301 + ], + [ + -78.952624, + 37.675578 + ], + [ + -78.952561, + 37.675784 + ], + [ + -78.952486, + 37.675985 + ], + [ + -78.952442, + 37.676122 + ], + [ + -78.952386, + 37.676257 + ], + [ + -78.95232, + 37.676433 + ], + [ + -78.952115, + 37.676852 + ], + [ + -78.952045, + 37.676981 + ], + [ + -78.951895, + 37.677259 + ], + [ + -78.951765, + 37.677478 + ], + [ + -78.951015, + 37.678688 + ], + [ + -78.950642, + 37.679294 + ], + [ + -78.950106, + 37.680167 + ], + [ + -78.949932, + 37.680439 + ], + [ + -78.949555, + 37.681057 + ], + [ + -78.948514, + 37.682749 + ], + [ + -78.948346, + 37.683014 + ], + [ + -78.94819, + 37.68327 + ], + [ + -78.947933, + 37.683687 + ], + [ + -78.947735, + 37.683997 + ], + [ + -78.946949, + 37.685284 + ], + [ + -78.946763, + 37.685577 + ], + [ + -78.946171, + 37.686544 + ], + [ + -78.946077, + 37.686718 + ], + [ + -78.945972, + 37.686928 + ], + [ + -78.945848, + 37.687201 + ], + [ + -78.945794, + 37.687349 + ], + [ + -78.945689, + 37.687661 + ], + [ + -78.945632, + 37.687901 + ], + [ + -78.945568, + 37.688266 + ], + [ + -78.945541, + 37.688542 + ], + [ + -78.945537, + 37.688659 + ], + [ + -78.945545, + 37.689126 + ], + [ + -78.945579, + 37.689434 + ], + [ + -78.945664, + 37.689907 + ], + [ + -78.945683, + 37.68999 + ], + [ + -78.945776, + 37.690456 + ], + [ + -78.945835, + 37.69071 + ], + [ + -78.945961, + 37.691323 + ], + [ + -78.946182, + 37.69241 + ], + [ + -78.946237, + 37.692788 + ], + [ + -78.946274, + 37.693085 + ], + [ + -78.946296, + 37.693491 + ], + [ + -78.946303, + 37.694022 + ], + [ + -78.946301, + 37.694057 + ], + [ + -78.946287, + 37.694387 + ], + [ + -78.946261, + 37.694709 + ], + [ + -78.946249, + 37.694805 + ], + [ + -78.946182, + 37.695293 + ], + [ + -78.946055, + 37.695876 + ], + [ + -78.945864, + 37.696567 + ], + [ + -78.945405, + 37.698162 + ], + [ + -78.945298, + 37.698548 + ], + [ + -78.944826, + 37.700186 + ], + [ + -78.944719, + 37.700501 + ], + [ + -78.94458, + 37.700835 + ], + [ + -78.944457, + 37.701074 + ], + [ + -78.944324, + 37.701307 + ], + [ + -78.944135, + 37.701595 + ], + [ + -78.944026, + 37.701738 + ], + [ + -78.943778, + 37.70202 + ], + [ + -78.943504, + 37.702305 + ], + [ + -78.943214, + 37.702564 + ], + [ + -78.94302, + 37.702719 + ], + [ + -78.942935, + 37.702779 + ], + [ + -78.942809, + 37.702868 + ], + [ + -78.942485, + 37.703077 + ], + [ + -78.942218, + 37.703232 + ], + [ + -78.9405, + 37.704132 + ], + [ + -78.940455, + 37.704155 + ], + [ + -78.940006, + 37.704381 + ], + [ + -78.938227, + 37.705302 + ], + [ + -78.93698, + 37.705948 + ], + [ + -78.93647, + 37.706225 + ], + [ + -78.93488, + 37.707122 + ], + [ + -78.934646, + 37.707256 + ], + [ + -78.93388, + 37.707679 + ], + [ + -78.933448, + 37.707924 + ], + [ + -78.932774, + 37.708305 + ], + [ + -78.931107, + 37.709235 + ], + [ + -78.929365, + 37.710215 + ], + [ + -78.928987, + 37.710423 + ], + [ + -78.928188, + 37.710873 + ], + [ + -78.927848, + 37.711058 + ], + [ + -78.927739, + 37.711117 + ], + [ + -78.927286, + 37.71134 + ], + [ + -78.927035, + 37.711449 + ], + [ + -78.926705, + 37.711572 + ], + [ + -78.926357, + 37.711684 + ], + [ + -78.926015, + 37.711773 + ], + [ + -78.925764, + 37.711831 + ], + [ + -78.925742, + 37.711836 + ], + [ + -78.925395, + 37.711899 + ], + [ + -78.925098, + 37.711943 + ], + [ + -78.92463, + 37.712006 + ], + [ + -78.924358, + 37.71204 + ], + [ + -78.9241, + 37.712072 + ], + [ + -78.923317, + 37.712168 + ], + [ + -78.922673, + 37.712257 + ], + [ + -78.921644, + 37.712386 + ], + [ + -78.920771, + 37.712503 + ], + [ + -78.91879, + 37.712755 + ], + [ + -78.917763, + 37.712894 + ], + [ + -78.916758, + 37.713029 + ], + [ + -78.916316, + 37.713107 + ], + [ + -78.915891, + 37.713204 + ], + [ + -78.915614, + 37.71328 + ], + [ + -78.915324, + 37.713372 + ], + [ + -78.915274, + 37.713388 + ], + [ + -78.914912, + 37.71352 + ], + [ + -78.91455, + 37.71367 + ], + [ + -78.914179, + 37.713842 + ], + [ + -78.913675, + 37.714085 + ], + [ + -78.912967, + 37.714415 + ], + [ + -78.910226, + 37.715714 + ], + [ + -78.90939, + 37.716116 + ], + [ + -78.908844, + 37.716378 + ], + [ + -78.908565, + 37.716525 + ], + [ + -78.908344, + 37.716654 + ], + [ + -78.908223, + 37.716733 + ], + [ + -78.907898, + 37.716972 + ], + [ + -78.907709, + 37.71712 + ], + [ + -78.907284, + 37.717479 + ], + [ + -78.905705, + 37.718784 + ], + [ + -78.905314, + 37.719084 + ], + [ + -78.90491, + 37.719372 + ], + [ + -78.904525, + 37.719604 + ], + [ + -78.904033, + 37.719882 + ], + [ + -78.903337, + 37.720265 + ], + [ + -78.902528, + 37.720722 + ], + [ + -78.902455, + 37.720766 + ], + [ + -78.902055, + 37.720998 + ], + [ + -78.901704, + 37.721237 + ], + [ + -78.901372, + 37.721492 + ], + [ + -78.901207, + 37.721632 + ], + [ + -78.901102, + 37.721732 + ], + [ + -78.90093, + 37.721897 + ], + [ + -78.900791, + 37.722043 + ], + [ + -78.900736, + 37.722103 + ], + [ + -78.900601, + 37.722261 + ], + [ + -78.900394, + 37.722523 + ], + [ + -78.900222, + 37.722764 + ], + [ + -78.900079, + 37.722992 + ], + [ + -78.900004, + 37.723131 + ], + [ + -78.899716, + 37.723665 + ], + [ + -78.899467, + 37.724145 + ], + [ + -78.899406, + 37.724274 + ], + [ + -78.89922, + 37.72461 + ], + [ + -78.899008, + 37.725016 + ], + [ + -78.898838, + 37.725322 + ], + [ + -78.898749, + 37.725462 + ], + [ + -78.898619, + 37.725684 + ], + [ + -78.898501, + 37.725886 + ], + [ + -78.898424, + 37.726009 + ], + [ + -78.898396, + 37.726054 + ], + [ + -78.89823, + 37.726333 + ], + [ + -78.897785, + 37.72702 + ], + [ + -78.897326, + 37.727687 + ], + [ + -78.897029, + 37.728104 + ], + [ + -78.896755, + 37.72847 + ], + [ + -78.896087, + 37.729327 + ], + [ + -78.895376, + 37.730223 + ], + [ + -78.89492, + 37.73078 + ], + [ + -78.894224, + 37.731648 + ], + [ + -78.893951, + 37.731982 + ], + [ + -78.893208, + 37.732922 + ], + [ + -78.893101, + 37.733073 + ], + [ + -78.892951, + 37.733284 + ], + [ + -78.892829, + 37.733486 + ], + [ + -78.892725, + 37.733694 + ], + [ + -78.892653, + 37.733852 + ], + [ + -78.892395, + 37.734583 + ], + [ + -78.892264, + 37.735006 + ], + [ + -78.891874, + 37.73617 + ], + [ + -78.891809, + 37.736394 + ], + [ + -78.891615, + 37.736972 + ], + [ + -78.891508, + 37.737307 + ], + [ + -78.891316, + 37.737819 + ], + [ + -78.891154, + 37.738191 + ], + [ + -78.891075, + 37.738356 + ], + [ + -78.891011, + 37.738485 + ], + [ + -78.890701, + 37.739024 + ], + [ + -78.890539, + 37.739262 + ], + [ + -78.890353, + 37.739521 + ], + [ + -78.890119, + 37.739847 + ], + [ + -78.889796, + 37.740253 + ], + [ + -78.889491, + 37.740645 + ], + [ + -78.889217, + 37.740996 + ], + [ + -78.888944, + 37.74133 + ], + [ + -78.888623, + 37.741743 + ], + [ + -78.888513, + 37.741886 + ], + [ + -78.888267, + 37.742188 + ], + [ + -78.887876, + 37.742653 + ], + [ + -78.887675, + 37.74287 + ], + [ + -78.887504, + 37.743037 + ], + [ + -78.887277, + 37.743237 + ], + [ + -78.887216, + 37.743287 + ], + [ + -78.887135, + 37.743353 + ], + [ + -78.886534, + 37.743824 + ], + [ + -78.886162, + 37.744125 + ], + [ + -78.8861, + 37.744182 + ], + [ + -78.885899, + 37.744355 + ], + [ + -78.885622, + 37.744575 + ], + [ + -78.885356, + 37.74478 + ], + [ + -78.884605, + 37.745388 + ], + [ + -78.884042, + 37.74585 + ], + [ + -78.882882, + 37.746752 + ], + [ + -78.882051, + 37.747417 + ], + [ + -78.880834, + 37.748391 + ], + [ + -78.88003, + 37.749038 + ], + [ + -78.879751, + 37.749271 + ], + [ + -78.879568, + 37.74942 + ], + [ + -78.879376, + 37.749569 + ], + [ + -78.878419, + 37.750353 + ], + [ + -78.877854, + 37.750804 + ], + [ + -78.877584, + 37.751037 + ], + [ + -78.877286, + 37.751315 + ], + [ + -78.877004, + 37.751598 + ], + [ + -78.876844, + 37.751774 + ], + [ + -78.876626, + 37.752042 + ], + [ + -78.876378, + 37.752385 + ], + [ + -78.876192, + 37.752665 + ], + [ + -78.876061, + 37.752882 + ], + [ + -78.875814, + 37.753345 + ], + [ + -78.875209, + 37.754691 + ], + [ + -78.874619, + 37.756931 + ], + [ + -78.874501, + 37.757307 + ], + [ + -78.874339, + 37.757855 + ], + [ + -78.873994, + 37.758979 + ], + [ + -78.873789, + 37.759637 + ], + [ + -78.873696, + 37.75991 + ], + [ + -78.873541, + 37.760318 + ], + [ + -78.873332, + 37.760834 + ], + [ + -78.873094, + 37.761337 + ], + [ + -78.872847, + 37.761808 + ], + [ + -78.872451, + 37.762468 + ], + [ + -78.872257, + 37.76277 + ], + [ + -78.871993, + 37.763172 + ], + [ + -78.871574, + 37.763799 + ], + [ + -78.871327, + 37.764167 + ], + [ + -78.871012, + 37.764642 + ], + [ + -78.870469, + 37.765468 + ], + [ + -78.870316, + 37.765702 + ], + [ + -78.870042, + 37.766126 + ], + [ + -78.869873, + 37.766412 + ], + [ + -78.869781, + 37.766589 + ], + [ + -78.869687, + 37.766814 + ], + [ + -78.869585, + 37.76708 + ], + [ + -78.869516, + 37.767314 + ], + [ + -78.869424, + 37.767698 + ], + [ + -78.869391, + 37.767942 + ], + [ + -78.86938, + 37.768238 + ], + [ + -78.869389, + 37.768459 + ], + [ + -78.869415, + 37.768673 + ], + [ + -78.869485, + 37.768991 + ], + [ + -78.869567, + 37.769255 + ], + [ + -78.86966, + 37.769515 + ], + [ + -78.869743, + 37.769714 + ], + [ + -78.869793, + 37.769822 + ], + [ + -78.870127, + 37.770634 + ], + [ + -78.870244, + 37.770938 + ], + [ + -78.870299, + 37.771157 + ], + [ + -78.870337, + 37.771378 + ], + [ + -78.870379, + 37.771605 + ], + [ + -78.870392, + 37.771879 + ], + [ + -78.870378, + 37.772127 + ], + [ + -78.870337, + 37.772397 + ], + [ + -78.870272, + 37.77267 + ], + [ + -78.870248, + 37.772764 + ], + [ + -78.87004, + 37.773562 + ], + [ + -78.869728, + 37.774718 + ], + [ + -78.869574, + 37.775264 + ], + [ + -78.869411, + 37.775864 + ], + [ + -78.869234, + 37.776522 + ], + [ + -78.869061, + 37.777151 + ], + [ + -78.868889, + 37.777735 + ], + [ + -78.868643, + 37.778648 + ], + [ + -78.868399, + 37.779571 + ], + [ + -78.868224, + 37.780198 + ], + [ + -78.868067, + 37.780782 + ], + [ + -78.867497, + 37.782893 + ], + [ + -78.867434, + 37.783141 + ], + [ + -78.867364, + 37.783414 + ], + [ + -78.867185, + 37.784047 + ], + [ + -78.867156, + 37.784152 + ], + [ + -78.867042, + 37.784562 + ], + [ + -78.866921, + 37.785054 + ], + [ + -78.866779, + 37.785508 + ], + [ + -78.866518, + 37.786333 + ], + [ + -78.866458, + 37.786501 + ], + [ + -78.866348, + 37.786832 + ], + [ + -78.866066, + 37.787709 + ], + [ + -78.865703, + 37.788816 + ], + [ + -78.865457, + 37.789659 + ], + [ + -78.865164, + 37.790592 + ], + [ + -78.864927, + 37.791345 + ], + [ + -78.864619, + 37.792175 + ], + [ + -78.864507, + 37.792484 + ], + [ + -78.864363, + 37.792792 + ], + [ + -78.864228, + 37.793041 + ], + [ + -78.864067, + 37.7933 + ], + [ + -78.863882, + 37.793548 + ], + [ + -78.863684, + 37.793797 + ], + [ + -78.863319, + 37.794211 + ], + [ + -78.863117, + 37.794344 + ], + [ + -78.86295, + 37.794541 + ], + [ + -78.862701, + 37.794857 + ], + [ + -78.86248, + 37.795184 + ], + [ + -78.862275, + 37.795518 + ], + [ + -78.862199, + 37.795651 + ], + [ + -78.862007, + 37.796159 + ], + [ + -78.861989, + 37.79622 + ], + [ + -78.861909, + 37.796548 + ], + [ + -78.861883, + 37.796687 + ], + [ + -78.861846, + 37.796942 + ], + [ + -78.861828, + 37.797235 + ], + [ + -78.861827, + 37.797529 + ], + [ + -78.861837, + 37.797754 + ], + [ + -78.861844, + 37.797901 + ], + [ + -78.861878, + 37.798631 + ], + [ + -78.861919, + 37.799738 + ], + [ + -78.861971, + 37.800826 + ], + [ + -78.862007, + 37.801869 + ], + [ + -78.862081, + 37.803303 + ], + [ + -78.862104, + 37.80423 + ], + [ + -78.86209, + 37.804437 + ], + [ + -78.862063, + 37.804642 + ], + [ + -78.862038, + 37.804754 + ], + [ + -78.862023, + 37.804816 + ], + [ + -78.861947, + 37.805046 + ], + [ + -78.861861, + 37.805246 + ], + [ + -78.861771, + 37.805437 + ], + [ + -78.86165, + 37.805634 + ], + [ + -78.861512, + 37.805817 + ], + [ + -78.861343, + 37.806004 + ], + [ + -78.860353, + 37.806994 + ], + [ + -78.859848, + 37.807481 + ], + [ + -78.858512, + 37.808821 + ], + [ + -78.858367, + 37.808958 + ], + [ + -78.858079, + 37.809211 + ], + [ + -78.857729, + 37.809505 + ], + [ + -78.857293, + 37.80986 + ], + [ + -78.856987, + 37.81009 + ], + [ + -78.856658, + 37.810338 + ], + [ + -78.855693, + 37.81105 + ], + [ + -78.85561, + 37.811115 + ], + [ + -78.855262, + 37.811371 + ], + [ + -78.854965, + 37.811605 + ], + [ + -78.853694, + 37.812587 + ], + [ + -78.853389, + 37.812818 + ], + [ + -78.852362, + 37.813637 + ], + [ + -78.851981, + 37.813912 + ], + [ + -78.851517, + 37.814266 + ], + [ + -78.851057, + 37.81462 + ], + [ + -78.85085, + 37.814768 + ], + [ + -78.850729, + 37.814859 + ], + [ + -78.850652, + 37.81492 + ], + [ + -78.850085, + 37.815369 + ], + [ + -78.848637, + 37.81648 + ], + [ + -78.846503, + 37.818117 + ], + [ + -78.846263, + 37.818303 + ], + [ + -78.845641, + 37.818784 + ], + [ + -78.845198, + 37.81912 + ], + [ + -78.844287, + 37.819835 + ], + [ + -78.843809, + 37.820229 + ], + [ + -78.841255, + 37.822413 + ], + [ + -78.840635, + 37.822925 + ], + [ + -78.840114, + 37.823377 + ], + [ + -78.839772, + 37.823685 + ], + [ + -78.839408, + 37.824047 + ], + [ + -78.839049, + 37.824425 + ], + [ + -78.838766, + 37.824737 + ], + [ + -78.838386, + 37.825182 + ], + [ + -78.838147, + 37.825481 + ], + [ + -78.837849, + 37.82588 + ], + [ + -78.837407, + 37.826506 + ], + [ + -78.837204, + 37.826823 + ], + [ + -78.837053, + 37.827081 + ], + [ + -78.836731, + 37.827595 + ], + [ + -78.836452, + 37.828104 + ], + [ + -78.836275, + 37.828399 + ], + [ + -78.836111, + 37.828667 + ], + [ + -78.835849, + 37.82912 + ], + [ + -78.835504, + 37.829691 + ], + [ + -78.835352, + 37.829945 + ], + [ + -78.83498, + 37.830568 + ], + [ + -78.834935, + 37.830642 + ], + [ + -78.834826, + 37.830821 + ], + [ + -78.834646, + 37.831137 + ], + [ + -78.834377, + 37.831577 + ], + [ + -78.833853, + 37.832462 + ], + [ + -78.833724, + 37.832692 + ], + [ + -78.833217, + 37.833546 + ], + [ + -78.831919, + 37.835713 + ], + [ + -78.831568, + 37.836263 + ], + [ + -78.831293, + 37.836637 + ], + [ + -78.831013, + 37.836981 + ], + [ + -78.83077, + 37.837252 + ], + [ + -78.829687, + 37.838434 + ], + [ + -78.829526, + 37.8386 + ], + [ + -78.829353, + 37.838766 + ], + [ + -78.828845, + 37.839208 + ], + [ + -78.828553, + 37.839442 + ], + [ + -78.828248, + 37.839665 + ], + [ + -78.827736, + 37.840071 + ], + [ + -78.82744, + 37.840316 + ], + [ + -78.827359, + 37.840393 + ], + [ + -78.827219, + 37.840526 + ], + [ + -78.827033, + 37.840723 + ], + [ + -78.82681, + 37.840985 + ], + [ + -78.826636, + 37.841213 + ], + [ + -78.826324, + 37.841668 + ], + [ + -78.825848, + 37.842321 + ], + [ + -78.825635, + 37.842569 + ], + [ + -78.825481, + 37.842727 + ], + [ + -78.825276, + 37.842917 + ], + [ + -78.825211, + 37.842971 + ], + [ + -78.825103, + 37.843062 + ], + [ + -78.824902, + 37.843225 + ], + [ + -78.824735, + 37.84334 + ], + [ + -78.824467, + 37.843502 + ], + [ + -78.824206, + 37.843652 + ], + [ + -78.82312, + 37.844198 + ], + [ + -78.822611, + 37.844456 + ], + [ + -78.821878, + 37.84482 + ], + [ + -78.820981, + 37.845244 + ], + [ + -78.82067, + 37.845389 + ], + [ + -78.820264, + 37.845536 + ], + [ + -78.820038, + 37.845598 + ], + [ + -78.819873, + 37.845635 + ], + [ + -78.81967, + 37.845683 + ], + [ + -78.819501, + 37.845707 + ], + [ + -78.819221, + 37.845735 + ], + [ + -78.818871, + 37.845752 + ], + [ + -78.818684, + 37.845746 + ], + [ + -78.818377, + 37.845729 + ], + [ + -78.818065, + 37.845689 + ], + [ + -78.817748, + 37.845635 + ], + [ + -78.817461, + 37.845563 + ], + [ + -78.817089, + 37.845456 + ], + [ + -78.81664, + 37.845308 + ], + [ + -78.816094, + 37.845137 + ], + [ + -78.815801, + 37.845042 + ], + [ + -78.815106, + 37.844835 + ], + [ + -78.814203, + 37.844545 + ], + [ + -78.813661, + 37.844372 + ], + [ + -78.813194, + 37.844227 + ], + [ + -78.812793, + 37.844119 + ], + [ + -78.812466, + 37.844059 + ], + [ + -78.812161, + 37.844015 + ], + [ + -78.811899, + 37.843994 + ], + [ + -78.811692, + 37.843985 + ], + [ + -78.81145, + 37.844002 + ], + [ + -78.811288, + 37.844022 + ], + [ + -78.810966, + 37.84409 + ], + [ + -78.810704, + 37.844162 + ], + [ + -78.810498, + 37.844229 + ], + [ + -78.810246, + 37.844336 + ], + [ + -78.80993, + 37.84449 + ], + [ + -78.809727, + 37.844605 + ], + [ + -78.809573, + 37.844705 + ], + [ + -78.809276, + 37.84492 + ], + [ + -78.809029, + 37.845076 + ], + [ + -78.808807, + 37.845199 + ], + [ + -78.808527, + 37.845332 + ], + [ + -78.808311, + 37.845419 + ], + [ + -78.808089, + 37.845498 + ], + [ + -78.807811, + 37.845579 + ], + [ + -78.807589, + 37.845643 + ], + [ + -78.807297, + 37.845708 + ], + [ + -78.807, + 37.845759 + ], + [ + -78.806691, + 37.845797 + ], + [ + -78.806302, + 37.845837 + ], + [ + -78.805184, + 37.845933 + ], + [ + -78.80503, + 37.845945 + ], + [ + -78.804012, + 37.846026 + ], + [ + -78.800837, + 37.846324 + ], + [ + -78.800537, + 37.846339 + ], + [ + -78.800237, + 37.846355 + ], + [ + -78.800014, + 37.846352 + ], + [ + -78.79976, + 37.846345 + ], + [ + -78.799425, + 37.846321 + ], + [ + -78.799048, + 37.846276 + ], + [ + -78.79881, + 37.846227 + ], + [ + -78.798587, + 37.846183 + ], + [ + -78.798334, + 37.846121 + ], + [ + -78.798127, + 37.846044 + ], + [ + -78.797833, + 37.845932 + ], + [ + -78.797473, + 37.845765 + ], + [ + -78.797183, + 37.845617 + ], + [ + -78.796923, + 37.845465 + ], + [ + -78.796357, + 37.845082 + ], + [ + -78.795818, + 37.844712 + ], + [ + -78.795607, + 37.84458 + ], + [ + -78.795352, + 37.844427 + ], + [ + -78.795147, + 37.84431 + ], + [ + -78.794915, + 37.844201 + ], + [ + -78.794645, + 37.844085 + ], + [ + -78.794419, + 37.843996 + ], + [ + -78.794095, + 37.843903 + ], + [ + -78.793805, + 37.843828 + ], + [ + -78.793467, + 37.843774 + ], + [ + -78.793125, + 37.84374 + ], + [ + -78.792933, + 37.843732 + ], + [ + -78.792722, + 37.843723 + ], + [ + -78.792238, + 37.84372 + ], + [ + -78.791688, + 37.843732 + ], + [ + -78.791137, + 37.843731 + ], + [ + -78.790713, + 37.843712 + ], + [ + -78.790444, + 37.843693 + ], + [ + -78.79016, + 37.843657 + ], + [ + -78.78988, + 37.843607 + ], + [ + -78.789604, + 37.843542 + ], + [ + -78.789363, + 37.843478 + ], + [ + -78.789067, + 37.843389 + ], + [ + -78.788706, + 37.843253 + ], + [ + -78.78839, + 37.843125 + ], + [ + -78.788101, + 37.843016 + ], + [ + -78.78765, + 37.842857 + ], + [ + -78.787324, + 37.842748 + ], + [ + -78.787056, + 37.84268 + ], + [ + -78.786677, + 37.842606 + ], + [ + -78.786459, + 37.842568 + ], + [ + -78.786292, + 37.842537 + ], + [ + -78.785994, + 37.842501 + ], + [ + -78.785649, + 37.842467 + ], + [ + -78.785267, + 37.842457 + ], + [ + -78.784945, + 37.842456 + ], + [ + -78.784589, + 37.842468 + ], + [ + -78.782212, + 37.842633 + ], + [ + -78.780497, + 37.842776 + ], + [ + -78.779987, + 37.842814 + ], + [ + -78.778924, + 37.842896 + ], + [ + -78.77812, + 37.842986 + ], + [ + -78.777773, + 37.843042 + ], + [ + -78.777066, + 37.843144 + ], + [ + -78.776444, + 37.84325 + ], + [ + -78.775647, + 37.843402 + ], + [ + -78.774632, + 37.843601 + ], + [ + -78.773646, + 37.843786 + ], + [ + -78.773282, + 37.843855 + ], + [ + -78.772981, + 37.843912 + ], + [ + -78.772128, + 37.844091 + ], + [ + -78.771161, + 37.844316 + ], + [ + -78.770651, + 37.844441 + ], + [ + -78.769991, + 37.844616 + ], + [ + -78.768859, + 37.844941 + ], + [ + -78.768162, + 37.845142 + ], + [ + -78.767015, + 37.845472 + ], + [ + -78.76637, + 37.845658 + ], + [ + -78.765119, + 37.846012 + ], + [ + -78.761663, + 37.84701 + ], + [ + -78.760903, + 37.847224 + ], + [ + -78.760298, + 37.847402 + ], + [ + -78.75996, + 37.847506 + ], + [ + -78.7597, + 37.847596 + ], + [ + -78.759532, + 37.84765 + ], + [ + -78.759113, + 37.847806 + ], + [ + -78.758783, + 37.847948 + ], + [ + -78.758412, + 37.84812 + ], + [ + -78.758057, + 37.848288 + ], + [ + -78.757154, + 37.848747 + ], + [ + -78.756986, + 37.848829 + ], + [ + -78.756546, + 37.849062 + ], + [ + -78.756115, + 37.849306 + ], + [ + -78.755862, + 37.849458 + ], + [ + -78.755244, + 37.849843 + ], + [ + -78.754769, + 37.85013 + ], + [ + -78.754377, + 37.85038 + ], + [ + -78.753945, + 37.850672 + ], + [ + -78.753673, + 37.850873 + ], + [ + -78.753364, + 37.851127 + ], + [ + -78.753217, + 37.851259 + ], + [ + -78.752739, + 37.851715 + ], + [ + -78.752046, + 37.852374 + ], + [ + -78.75166, + 37.852719 + ], + [ + -78.751401, + 37.852929 + ], + [ + -78.751134, + 37.853132 + ], + [ + -78.750789, + 37.853376 + ], + [ + -78.750504, + 37.853564 + ], + [ + -78.750081, + 37.853824 + ], + [ + -78.74973, + 37.854021 + ], + [ + -78.749369, + 37.854207 + ], + [ + -78.748998, + 37.85438 + ], + [ + -78.748624, + 37.854531 + ], + [ + -78.748053, + 37.854743 + ], + [ + -78.747045, + 37.85508 + ], + [ + -78.746537, + 37.855262 + ], + [ + -78.746473, + 37.855285 + ], + [ + -78.745985, + 37.855474 + ], + [ + -78.7456, + 37.855635 + ], + [ + -78.744986, + 37.855911 + ], + [ + -78.744673, + 37.856064 + ], + [ + -78.744246, + 37.856299 + ], + [ + -78.743761, + 37.856591 + ], + [ + -78.743416, + 37.856817 + ], + [ + -78.742954, + 37.857145 + ], + [ + -78.742639, + 37.857387 + ], + [ + -78.742337, + 37.85764 + ], + [ + -78.742294, + 37.85768 + ], + [ + -78.741896, + 37.858045 + ], + [ + -78.741503, + 37.85843 + ], + [ + -78.741291, + 37.858648 + ], + [ + -78.741254, + 37.858686 + ], + [ + -78.740963, + 37.859027 + ], + [ + -78.740705, + 37.859351 + ], + [ + -78.740668, + 37.859398 + ], + [ + -78.740453, + 37.85968 + ], + [ + -78.739901, + 37.860385 + ], + [ + -78.739675, + 37.860647 + ], + [ + -78.739434, + 37.860902 + ], + [ + -78.739176, + 37.861151 + ], + [ + -78.73895, + 37.861357 + ], + [ + -78.738655, + 37.861604 + ], + [ + -78.738411, + 37.861795 + ], + [ + -78.738094, + 37.862025 + ], + [ + -78.737733, + 37.862262 + ], + [ + -78.737429, + 37.862445 + ], + [ + -78.73708, + 37.862638 + ], + [ + -78.73657, + 37.862893 + ], + [ + -78.736186, + 37.863088 + ], + [ + -78.735435, + 37.86348 + ], + [ + -78.734529, + 37.863942 + ], + [ + -78.733874, + 37.864271 + ], + [ + -78.733562, + 37.864427 + ], + [ + -78.733042, + 37.864704 + ], + [ + -78.732039, + 37.865214 + ], + [ + -78.731948, + 37.865258 + ], + [ + -78.731785, + 37.865335 + ], + [ + -78.731411, + 37.86553 + ], + [ + -78.730148, + 37.866169 + ], + [ + -78.729986, + 37.866254 + ], + [ + -78.729722, + 37.866391 + ], + [ + -78.728688, + 37.866913 + ], + [ + -78.727888, + 37.86733 + ], + [ + -78.727529, + 37.86751 + ], + [ + -78.726765, + 37.867904 + ], + [ + -78.726166, + 37.868202 + ], + [ + -78.725869, + 37.868361 + ], + [ + -78.725428, + 37.868579 + ], + [ + -78.725084, + 37.868757 + ], + [ + -78.724518, + 37.869049 + ], + [ + -78.723898, + 37.869354 + ], + [ + -78.722779, + 37.869945 + ], + [ + -78.721592, + 37.870542 + ], + [ + -78.720481, + 37.87111 + ], + [ + -78.719958, + 37.871373 + ], + [ + -78.719701, + 37.871497 + ], + [ + -78.719365, + 37.871672 + ], + [ + -78.718719, + 37.872028 + ], + [ + -78.71847, + 37.872183 + ], + [ + -78.718164, + 37.872388 + ], + [ + -78.717945, + 37.872553 + ], + [ + -78.717592, + 37.872851 + ], + [ + -78.717285, + 37.873139 + ], + [ + -78.717049, + 37.873363 + ], + [ + -78.716739, + 37.873728 + ], + [ + -78.716536, + 37.874002 + ], + [ + -78.716395, + 37.874221 + ], + [ + -78.716144, + 37.874657 + ], + [ + -78.71604, + 37.87487 + ], + [ + -78.715888, + 37.875212 + ], + [ + -78.715814, + 37.875401 + ], + [ + -78.715694, + 37.87571 + ], + [ + -78.715495, + 37.876238 + ], + [ + -78.715377, + 37.876548 + ], + [ + -78.715275, + 37.876817 + ], + [ + -78.71521, + 37.877013 + ], + [ + -78.715136, + 37.877211 + ], + [ + -78.715081, + 37.877371 + ], + [ + -78.714995, + 37.877587 + ], + [ + -78.71492, + 37.877787 + ], + [ + -78.7148, + 37.878131 + ], + [ + -78.714687, + 37.878428 + ], + [ + -78.714533, + 37.878796 + ], + [ + -78.714454, + 37.879009 + ], + [ + -78.714417, + 37.879116 + ], + [ + -78.714256, + 37.879549 + ], + [ + -78.714141, + 37.879854 + ], + [ + -78.713896, + 37.880594 + ], + [ + -78.713756, + 37.881038 + ], + [ + -78.713682, + 37.88126 + ], + [ + -78.713617, + 37.881457 + ], + [ + -78.713533, + 37.881697 + ], + [ + -78.713446, + 37.881943 + ], + [ + -78.713394, + 37.882108 + ], + [ + -78.713314, + 37.882336 + ], + [ + -78.713184, + 37.882655 + ], + [ + -78.713006, + 37.883053 + ], + [ + -78.712892, + 37.883274 + ], + [ + -78.712733, + 37.88355 + ], + [ + -78.712558, + 37.88384 + ], + [ + -78.712369, + 37.884119 + ], + [ + -78.712275, + 37.884257 + ], + [ + -78.712136, + 37.884449 + ], + [ + -78.711974, + 37.884667 + ], + [ + -78.711814, + 37.884876 + ], + [ + -78.711641, + 37.885085 + ], + [ + -78.711418, + 37.885345 + ], + [ + -78.711139, + 37.885644 + ], + [ + -78.710798, + 37.88599 + ], + [ + -78.710465, + 37.886309 + ], + [ + -78.710195, + 37.886555 + ], + [ + -78.709928, + 37.886781 + ], + [ + -78.709577, + 37.88706 + ], + [ + -78.709406, + 37.887199 + ], + [ + -78.709211, + 37.887345 + ], + [ + -78.708778, + 37.887648 + ], + [ + -78.707968, + 37.888179 + ], + [ + -78.707642, + 37.888399 + ], + [ + -78.707473, + 37.88851 + ], + [ + -78.707244, + 37.888663 + ], + [ + -78.706965, + 37.888843 + ], + [ + -78.706601, + 37.889083 + ], + [ + -78.706088, + 37.889425 + ], + [ + -78.705712, + 37.889669 + ], + [ + -78.705189, + 37.890019 + ], + [ + -78.704893, + 37.890211 + ], + [ + -78.703445, + 37.891162 + ], + [ + -78.703041, + 37.891429 + ], + [ + -78.702721, + 37.891638 + ], + [ + -78.702327, + 37.891905 + ], + [ + -78.70184, + 37.892223 + ], + [ + -78.701163, + 37.892662 + ], + [ + -78.700778, + 37.892933 + ], + [ + -78.70071, + 37.892981 + ], + [ + -78.700622, + 37.893046 + ], + [ + -78.700337, + 37.893272 + ], + [ + -78.69999, + 37.89357 + ], + [ + -78.699755, + 37.8938 + ], + [ + -78.699482, + 37.894099 + ], + [ + -78.699289, + 37.894329 + ], + [ + -78.698787, + 37.894984 + ], + [ + -78.698558, + 37.895284 + ], + [ + -78.69837, + 37.895519 + ], + [ + -78.698116, + 37.895851 + ], + [ + -78.697966, + 37.896055 + ], + [ + -78.697696, + 37.896407 + ], + [ + -78.697057, + 37.897242 + ], + [ + -78.696439, + 37.898041 + ], + [ + -78.695681, + 37.899035 + ], + [ + -78.695049, + 37.899863 + ], + [ + -78.694658, + 37.900403 + ], + [ + -78.694519, + 37.900599 + ], + [ + -78.694429, + 37.900733 + ], + [ + -78.693954, + 37.901464 + ], + [ + -78.693721, + 37.901862 + ], + [ + -78.693473, + 37.902275 + ], + [ + -78.693102, + 37.902981 + ], + [ + -78.692879, + 37.903439 + ], + [ + -78.692797, + 37.903623 + ], + [ + -78.692129, + 37.905105 + ], + [ + -78.691808, + 37.905817 + ], + [ + -78.691268, + 37.906984 + ], + [ + -78.690987, + 37.907549 + ], + [ + -78.690814, + 37.907874 + ], + [ + -78.690688, + 37.908089 + ], + [ + -78.690521, + 37.908372 + ], + [ + -78.690275, + 37.908767 + ], + [ + -78.689663, + 37.909657 + ], + [ + -78.689078, + 37.910492 + ], + [ + -78.685485, + 37.915666 + ], + [ + -78.684467, + 37.917131 + ], + [ + -78.682047, + 37.920608 + ], + [ + -78.681785, + 37.92095 + ], + [ + -78.681517, + 37.921272 + ], + [ + -78.681241, + 37.921578 + ], + [ + -78.68101, + 37.921818 + ], + [ + -78.680605, + 37.922194 + ], + [ + -78.68013, + 37.922617 + ], + [ + -78.679566, + 37.923137 + ], + [ + -78.679307, + 37.923403 + ], + [ + -78.678986, + 37.92374 + ], + [ + -78.678605, + 37.924203 + ], + [ + -78.678345, + 37.924561 + ], + [ + -78.678124, + 37.924891 + ], + [ + -78.677903, + 37.925227 + ], + [ + -78.677688, + 37.925589 + ], + [ + -78.677544, + 37.925878 + ], + [ + -78.67731, + 37.926442 + ], + [ + -78.676551, + 37.928284 + ], + [ + -78.676404, + 37.928595 + ], + [ + -78.676242, + 37.928949 + ], + [ + -78.676148, + 37.929122 + ], + [ + -78.675977, + 37.929377 + ], + [ + -78.675612, + 37.929807 + ], + [ + -78.675385, + 37.930086 + ], + [ + -78.675213, + 37.930312 + ], + [ + -78.675004, + 37.930559 + ], + [ + -78.674617, + 37.931044 + ], + [ + -78.67407, + 37.931702 + ], + [ + -78.673673, + 37.932201 + ], + [ + -78.673281, + 37.9327 + ], + [ + -78.672994, + 37.933082 + ], + [ + -78.672166, + 37.934227 + ], + [ + -78.671112, + 37.935771 + ], + [ + -78.670762, + 37.936281 + ], + [ + -78.670385, + 37.936817 + ], + [ + -78.669877, + 37.937599 + ], + [ + -78.668999, + 37.93886 + ], + [ + -78.667671, + 37.940789 + ], + [ + -78.666721, + 37.942158 + ], + [ + -78.666126, + 37.943118 + ], + [ + -78.665597, + 37.944014 + ], + [ + -78.665125, + 37.944827 + ], + [ + -78.664642, + 37.945633 + ], + [ + -78.664087, + 37.946602 + ], + [ + -78.663665, + 37.947366 + ], + [ + -78.663523, + 37.947648 + ], + [ + -78.663363, + 37.948007 + ], + [ + -78.66312, + 37.948581 + ], + [ + -78.662992, + 37.948919 + ], + [ + -78.662788, + 37.949511 + ], + [ + -78.662392, + 37.950794 + ], + [ + -78.662127, + 37.951686 + ], + [ + -78.661907, + 37.952368 + ], + [ + -78.6618, + 37.952667 + ], + [ + -78.661673, + 37.952964 + ], + [ + -78.661549, + 37.953229 + ], + [ + -78.661377, + 37.953546 + ], + [ + -78.661172, + 37.953875 + ], + [ + -78.660975, + 37.954168 + ], + [ + -78.660712, + 37.954527 + ], + [ + -78.660589, + 37.954686 + ], + [ + -78.660525, + 37.954768 + ], + [ + -78.660204, + 37.955161 + ], + [ + -78.659899, + 37.955515 + ], + [ + -78.65946, + 37.956045 + ], + [ + -78.659107, + 37.956472 + ], + [ + -78.658939, + 37.95668 + ], + [ + -78.658404, + 37.957325 + ], + [ + -78.658185, + 37.957583 + ], + [ + -78.657413, + 37.958505 + ], + [ + -78.65713, + 37.958855 + ], + [ + -78.65677, + 37.959264 + ], + [ + -78.656612, + 37.959431 + ], + [ + -78.656439, + 37.95959 + ], + [ + -78.656251, + 37.959739 + ], + [ + -78.656068, + 37.959867 + ], + [ + -78.655989, + 37.959917 + ], + [ + -78.655752, + 37.960052 + ], + [ + -78.655575, + 37.96015 + ], + [ + -78.655228, + 37.960289 + ], + [ + -78.654931, + 37.960405 + ], + [ + -78.653275, + 37.960978 + ], + [ + -78.652399, + 37.961277 + ], + [ + -78.651659, + 37.961545 + ], + [ + -78.651372, + 37.96167 + ], + [ + -78.651131, + 37.961788 + ], + [ + -78.650953, + 37.961888 + ], + [ + -78.65077, + 37.962003 + ], + [ + -78.650655, + 37.962074 + ], + [ + -78.650545, + 37.96215 + ], + [ + -78.650369, + 37.962277 + ], + [ + -78.650124, + 37.962492 + ], + [ + -78.649827, + 37.962781 + ], + [ + -78.649528, + 37.963082 + ], + [ + -78.649157, + 37.963468 + ], + [ + -78.648771, + 37.96385 + ], + [ + -78.648569, + 37.964042 + ], + [ + -78.648236, + 37.964318 + ], + [ + -78.647928, + 37.964546 + ], + [ + -78.647355, + 37.964951 + ], + [ + -78.646421, + 37.965624 + ], + [ + -78.646034, + 37.965897 + ], + [ + -78.645591, + 37.966218 + ], + [ + -78.645351, + 37.966376 + ], + [ + -78.645051, + 37.966569 + ], + [ + -78.644735, + 37.966754 + ], + [ + -78.644581, + 37.96684 + ], + [ + -78.6444, + 37.966936 + ], + [ + -78.643915, + 37.967163 + ], + [ + -78.643555, + 37.967319 + ], + [ + -78.643147, + 37.967465 + ], + [ + -78.642853, + 37.967561 + ], + [ + -78.642519, + 37.96766 + ], + [ + -78.642395, + 37.967695 + ], + [ + -78.642095, + 37.967768 + ], + [ + -78.641871, + 37.967823 + ], + [ + -78.641449, + 37.967916 + ], + [ + -78.640993, + 37.967991 + ], + [ + -78.640408, + 37.968066 + ], + [ + -78.639997, + 37.968103 + ], + [ + -78.639496, + 37.96813 + ], + [ + -78.638995, + 37.968136 + ], + [ + -78.638434, + 37.968125 + ], + [ + -78.637944, + 37.9681 + ], + [ + -78.63612, + 37.967958 + ], + [ + -78.635136, + 37.967873 + ], + [ + -78.633802, + 37.96777 + ], + [ + -78.632073, + 37.967631 + ], + [ + -78.631801, + 37.967611 + ], + [ + -78.630935, + 37.967546 + ], + [ + -78.630424, + 37.967503 + ], + [ + -78.629697, + 37.967442 + ], + [ + -78.628686, + 37.967361 + ], + [ + -78.626167, + 37.967159 + ], + [ + -78.623282, + 37.966927 + ], + [ + -78.622258, + 37.96685 + ], + [ + -78.621932, + 37.966824 + ], + [ + -78.620819, + 37.966736 + ], + [ + -78.620381, + 37.966716 + ], + [ + -78.620004, + 37.966712 + ], + [ + -78.619679, + 37.966717 + ], + [ + -78.61937, + 37.966745 + ], + [ + -78.619064, + 37.966787 + ], + [ + -78.618761, + 37.966844 + ], + [ + -78.618523, + 37.9669 + ], + [ + -78.618222, + 37.966977 + ], + [ + -78.617837, + 37.967103 + ], + [ + -78.617525, + 37.967224 + ], + [ + -78.617264, + 37.967333 + ], + [ + -78.616866, + 37.967526 + ], + [ + -78.61666, + 37.96764 + ], + [ + -78.616487, + 37.967735 + ], + [ + -78.616266, + 37.967872 + ], + [ + -78.615844, + 37.968137 + ], + [ + -78.615555, + 37.968338 + ], + [ + -78.615229, + 37.968577 + ], + [ + -78.614931, + 37.968831 + ], + [ + -78.614607, + 37.969142 + ], + [ + -78.614381, + 37.96937 + ], + [ + -78.614151, + 37.969646 + ], + [ + -78.613964, + 37.96988 + ], + [ + -78.613494, + 37.970554 + ], + [ + -78.61301, + 37.971246 + ], + [ + -78.612831, + 37.971512 + ], + [ + -78.612279, + 37.972333 + ], + [ + -78.611229, + 37.97389 + ], + [ + -78.610819, + 37.974494 + ], + [ + -78.610719, + 37.974624 + ], + [ + -78.610499, + 37.974897 + ], + [ + -78.610319, + 37.975118 + ], + [ + -78.610116, + 37.975331 + ], + [ + -78.609966, + 37.975469 + ], + [ + -78.609796, + 37.975624 + ], + [ + -78.609591, + 37.975796 + ], + [ + -78.609317, + 37.976004 + ], + [ + -78.609071, + 37.976176 + ], + [ + -78.608849, + 37.976327 + ], + [ + -78.608744, + 37.97639 + ], + [ + -78.608365, + 37.976619 + ], + [ + -78.608101, + 37.976752 + ], + [ + -78.607845, + 37.976869 + ], + [ + -78.607584, + 37.976978 + ], + [ + -78.60725, + 37.977103 + ], + [ + -78.606977, + 37.977192 + ], + [ + -78.606625, + 37.977297 + ], + [ + -78.606266, + 37.977388 + ], + [ + -78.606123, + 37.977418 + ], + [ + -78.605902, + 37.977465 + ], + [ + -78.605646, + 37.97752 + ], + [ + -78.605621, + 37.977522 + ], + [ + -78.605549, + 37.977538 + ], + [ + -78.60423, + 37.977756 + ], + [ + -78.602588, + 37.978034 + ], + [ + -78.602162, + 37.978122 + ], + [ + -78.601825, + 37.978203 + ], + [ + -78.601492, + 37.978293 + ], + [ + -78.601094, + 37.978414 + ], + [ + -78.60071, + 37.978547 + ], + [ + -78.600334, + 37.978694 + ], + [ + -78.599967, + 37.978854 + ], + [ + -78.599486, + 37.979083 + ], + [ + -78.599163, + 37.979252 + ], + [ + -78.598789, + 37.97947 + ], + [ + -78.598549, + 37.979624 + ], + [ + -78.597946, + 37.980033 + ], + [ + -78.596889, + 37.98075 + ], + [ + -78.595137, + 37.981939 + ], + [ + -78.593704, + 37.982911 + ], + [ + -78.592376, + 37.98382 + ], + [ + -78.590854, + 37.984906 + ], + [ + -78.590225, + 37.985373 + ], + [ + -78.588999, + 37.98631 + ], + [ + -78.588012, + 37.9871 + ], + [ + -78.587089, + 37.987859 + ], + [ + -78.586722, + 37.988171 + ], + [ + -78.586183, + 37.988631 + ], + [ + -78.585023, + 37.989655 + ], + [ + -78.583908, + 37.990662 + ], + [ + -78.583686, + 37.990885 + ], + [ + -78.583478, + 37.991116 + ], + [ + -78.583203, + 37.991447 + ], + [ + -78.583057, + 37.991641 + ], + [ + -78.582889, + 37.99189 + ], + [ + -78.582734, + 37.992152 + ], + [ + -78.582584, + 37.992445 + ], + [ + -78.582451, + 37.992743 + ], + [ + -78.582318, + 37.993104 + ], + [ + -78.582229, + 37.993396 + ], + [ + -78.582158, + 37.993692 + ], + [ + -78.582061, + 37.994255 + ], + [ + -78.581989, + 37.994788 + ], + [ + -78.581919, + 37.9952 + ], + [ + -78.581831, + 37.99573 + ], + [ + -78.581596, + 37.997239 + ], + [ + -78.581525, + 37.997665 + ], + [ + -78.58147, + 37.998088 + ], + [ + -78.581083, + 38.000517 + ], + [ + -78.580993, + 38.001016 + ], + [ + -78.580912, + 38.001332 + ], + [ + -78.580857, + 38.001514 + ], + [ + -78.580851, + 38.001532 + ], + [ + -78.580827, + 38.001607 + ], + [ + -78.580788, + 38.001711 + ], + [ + -78.580764, + 38.001783 + ], + [ + -78.580638, + 38.002087 + ], + [ + -78.580501, + 38.002397 + ], + [ + -78.580338, + 38.002682 + ], + [ + -78.580176, + 38.002939 + ], + [ + -78.580026, + 38.003155 + ], + [ + -78.57984, + 38.003394 + ], + [ + -78.579631, + 38.003641 + ], + [ + -78.579528, + 38.003748 + ], + [ + -78.579258, + 38.004014 + ], + [ + -78.578985, + 38.00426 + ], + [ + -78.578784, + 38.004426 + ], + [ + -78.578575, + 38.004584 + ], + [ + -78.578379, + 38.004723 + ], + [ + -78.578122, + 38.004899 + ], + [ + -78.577709, + 38.005151 + ], + [ + -78.577431, + 38.005306 + ], + [ + -78.577141, + 38.005444 + ], + [ + -78.576923, + 38.005542 + ], + [ + -78.576628, + 38.005666 + ], + [ + -78.576327, + 38.005766 + ], + [ + -78.576154, + 38.005828 + ], + [ + -78.575371, + 38.006031 + ], + [ + -78.574274, + 38.006313 + ], + [ + -78.573929, + 38.006397 + ], + [ + -78.573678, + 38.006459 + ], + [ + -78.5731, + 38.006602 + ], + [ + -78.572544, + 38.006742 + ], + [ + -78.570845, + 38.007165 + ], + [ + -78.570536, + 38.007245 + ], + [ + -78.570147, + 38.007346 + ], + [ + -78.569511, + 38.007502 + ], + [ + -78.568866, + 38.007677 + ], + [ + -78.568449, + 38.007795 + ], + [ + -78.568216, + 38.007865 + ], + [ + -78.567861, + 38.007984 + ], + [ + -78.567483, + 38.008116 + ], + [ + -78.567008, + 38.00831 + ], + [ + -78.566642, + 38.008471 + ], + [ + -78.566222, + 38.008672 + ], + [ + -78.565813, + 38.008887 + ], + [ + -78.565381, + 38.009126 + ], + [ + -78.564818, + 38.009422 + ], + [ + -78.564544, + 38.009563 + ], + [ + -78.564196, + 38.009735 + ], + [ + -78.564075, + 38.009787 + ], + [ + -78.56369, + 38.009944 + ], + [ + -78.56326, + 38.010103 + ], + [ + -78.562849, + 38.010238 + ], + [ + -78.562529, + 38.010332 + ], + [ + -78.562124, + 38.010438 + ], + [ + -78.561805, + 38.010515 + ], + [ + -78.561564, + 38.010564 + ], + [ + -78.56093, + 38.010675 + ], + [ + -78.560028, + 38.010845 + ], + [ + -78.558824, + 38.011064 + ], + [ + -78.558024, + 38.011219 + ], + [ + -78.557648, + 38.011286 + ], + [ + -78.557386, + 38.011333 + ], + [ + -78.557058, + 38.011387 + ], + [ + -78.555118, + 38.011755 + ], + [ + -78.554112, + 38.011931 + ], + [ + -78.552878, + 38.012156 + ], + [ + -78.552449, + 38.01225 + ], + [ + -78.552186, + 38.012316 + ], + [ + -78.551829, + 38.012417 + ], + [ + -78.551365, + 38.012562 + ], + [ + -78.55109, + 38.012655 + ], + [ + -78.550658, + 38.012829 + ], + [ + -78.550236, + 38.013017 + ], + [ + -78.549599, + 38.013364 + ], + [ + -78.549376, + 38.013492 + ], + [ + -78.549058, + 38.013698 + ], + [ + -78.548469, + 38.01411 + ], + [ + -78.547659, + 38.014674 + ], + [ + -78.547468, + 38.014808 + ], + [ + -78.54736, + 38.014884 + ], + [ + -78.547042, + 38.015096 + ], + [ + -78.546611, + 38.015362 + ], + [ + -78.546269, + 38.015559 + ], + [ + -78.54592, + 38.01574 + ], + [ + -78.545223, + 38.016069 + ], + [ + -78.544841, + 38.016247 + ], + [ + -78.543906, + 38.016682 + ], + [ + -78.543654, + 38.016806 + ], + [ + -78.54333, + 38.016982 + ], + [ + -78.542733, + 38.017318 + ], + [ + -78.542466, + 38.017467 + ], + [ + -78.539711, + 38.018979 + ], + [ + -78.536725, + 38.020664 + ], + [ + -78.535885, + 38.021132 + ], + [ + -78.535518, + 38.021335 + ], + [ + -78.534742, + 38.021766 + ], + [ + -78.534188, + 38.022073 + ], + [ + -78.532955, + 38.02276 + ], + [ + -78.532173, + 38.023196 + ], + [ + -78.531193, + 38.023747 + ], + [ + -78.531125, + 38.023792 + ], + [ + -78.53075, + 38.024045 + ], + [ + -78.530445, + 38.024274 + ], + [ + -78.530203, + 38.024476 + ], + [ + -78.530016, + 38.024649 + ], + [ + -78.529931, + 38.024733 + ], + [ + -78.52985, + 38.024806 + ], + [ + -78.529798, + 38.024854 + ], + [ + -78.529758, + 38.024894 + ], + [ + -78.529598, + 38.025065 + ], + [ + -78.529327, + 38.025386 + ], + [ + -78.52916, + 38.025608 + ], + [ + -78.528945, + 38.025933 + ], + [ + -78.5288, + 38.026176 + ], + [ + -78.528672, + 38.026426 + ], + [ + -78.52861, + 38.026566 + ], + [ + -78.528405, + 38.027066 + ], + [ + -78.52833, + 38.027311 + ], + [ + -78.528283, + 38.02751 + ], + [ + -78.528235, + 38.027689 + ], + [ + -78.528151, + 38.028145 + ], + [ + -78.527582, + 38.03105 + ], + [ + -78.527126, + 38.033402 + ], + [ + -78.52703, + 38.033972 + ], + [ + -78.526914, + 38.034782 + ], + [ + -78.526868, + 38.035166 + ], + [ + -78.52679, + 38.036035 + ], + [ + -78.526753, + 38.036647 + ], + [ + -78.526715, + 38.03781 + ], + [ + -78.526642, + 38.040878 + ], + [ + -78.526607, + 38.042081 + ], + [ + -78.526584, + 38.042473 + ], + [ + -78.526544, + 38.042863 + ], + [ + -78.52645, + 38.043462 + ], + [ + -78.526353, + 38.043907 + ], + [ + -78.526306, + 38.044099 + ], + [ + -78.526225, + 38.044382 + ], + [ + -78.526103, + 38.044762 + ], + [ + -78.525978, + 38.045116 + ], + [ + -78.52595, + 38.045183 + ], + [ + -78.525619, + 38.045973 + ], + [ + -78.525226, + 38.046882 + ], + [ + -78.524837, + 38.047794 + ], + [ + -78.524807, + 38.047861 + ], + [ + -78.524712, + 38.048073 + ], + [ + -78.523664, + 38.050524 + ], + [ + -78.523608, + 38.050633 + ], + [ + -78.523449, + 38.050945 + ], + [ + -78.523194, + 38.051371 + ], + [ + -78.522992, + 38.051667 + ], + [ + -78.522896, + 38.051793 + ], + [ + -78.522708, + 38.052033 + ], + [ + -78.522379, + 38.052403 + ], + [ + -78.522049, + 38.052728 + ], + [ + -78.521736, + 38.053004 + ], + [ + -78.521375, + 38.053289 + ], + [ + -78.521061, + 38.053512 + ], + [ + -78.520792, + 38.053687 + ], + [ + -78.520433, + 38.053898 + ], + [ + -78.5202, + 38.054028 + ], + [ + -78.519924, + 38.054166 + ], + [ + -78.519561, + 38.054329 + ], + [ + -78.519179, + 38.054486 + ], + [ + -78.518827, + 38.054612 + ], + [ + -78.518437, + 38.054736 + ], + [ + -78.518106, + 38.054829 + ], + [ + -78.517883, + 38.054877 + ], + [ + -78.517638, + 38.05494 + ], + [ + -78.517298, + 38.055006 + ], + [ + -78.51674, + 38.055093 + ], + [ + -78.515503, + 38.055228 + ], + [ + -78.513125, + 38.055506 + ], + [ + -78.51298, + 38.05552 + ], + [ + -78.511721, + 38.055664 + ], + [ + -78.510089, + 38.05585 + ], + [ + -78.509444, + 38.055931 + ], + [ + -78.508892, + 38.056018 + ], + [ + -78.508324, + 38.056121 + ], + [ + -78.50762, + 38.056269 + ], + [ + -78.507101, + 38.056364 + ], + [ + -78.5063, + 38.056529 + ], + [ + -78.504207, + 38.056975 + ], + [ + -78.503544, + 38.057129 + ], + [ + -78.50332, + 38.057173 + ], + [ + -78.50218, + 38.05739 + ], + [ + -78.501769, + 38.057476 + ], + [ + -78.501588, + 38.057518 + ], + [ + -78.501288, + 38.05758 + ], + [ + -78.500918, + 38.057644 + ], + [ + -78.50053, + 38.057699 + ], + [ + -78.50025, + 38.057721 + ], + [ + -78.49999, + 38.057731 + ], + [ + -78.4996, + 38.057738 + ], + [ + -78.499258, + 38.057729 + ], + [ + -78.499228, + 38.057727 + ], + [ + -78.498789, + 38.057695 + ], + [ + -78.498509, + 38.057667 + ], + [ + -78.498249, + 38.05764 + ], + [ + -78.497868, + 38.057604 + ], + [ + -78.497658, + 38.057584 + ], + [ + -78.497235, + 38.057537 + ], + [ + -78.496848, + 38.057489 + ], + [ + -78.495893, + 38.057371 + ], + [ + -78.494978, + 38.057279 + ], + [ + -78.49472, + 38.057173 + ], + [ + -78.494659, + 38.057142 + ], + [ + -78.494592, + 38.057093 + ], + [ + -78.494549, + 38.057047 + ], + [ + -78.494516, + 38.056995 + ], + [ + -78.494502, + 38.05695 + ], + [ + -78.494493, + 38.056874 + ], + [ + -78.494502, + 38.056798 + ], + [ + -78.494522, + 38.056739 + ], + [ + -78.494562, + 38.056669 + ], + [ + -78.494623, + 38.05661 + ], + [ + -78.494697, + 38.056562 + ], + [ + -78.494781, + 38.056525 + ], + [ + -78.494872, + 38.056502 + ], + [ + -78.49496, + 38.056493 + ], + [ + -78.495044, + 38.0565 + ], + [ + -78.495109, + 38.056516 + ], + [ + -78.495169, + 38.056541 + ], + [ + -78.495238, + 38.056584 + ], + [ + -78.49528, + 38.056617 + ], + [ + -78.495339, + 38.05668 + ], + [ + -78.495381, + 38.056751 + ], + [ + -78.495402, + 38.056811 + ], + [ + -78.495415, + 38.056894 + ], + [ + -78.495413, + 38.056998 + ], + [ + -78.495388, + 38.057116 + ], + [ + -78.49528, + 38.057239 + ], + [ + -78.495007, + 38.057577 + ], + [ + -78.494845, + 38.057747 + ], + [ + -78.494782, + 38.057825 + ], + [ + -78.494593, + 38.05807 + ], + [ + -78.494413, + 38.058298 + ], + [ + -78.494268, + 38.05847 + ], + [ + -78.494235, + 38.058509 + ], + [ + -78.494159, + 38.058601 + ], + [ + -78.493967, + 38.058833 + ], + [ + -78.493505, + 38.059401 + ], + [ + -78.493364, + 38.059586 + ], + [ + -78.492889, + 38.060182 + ], + [ + -78.492564, + 38.060616 + ], + [ + -78.492196, + 38.061101 + ], + [ + -78.491916, + 38.061468 + ], + [ + -78.491724, + 38.061722 + ], + [ + -78.491723, + 38.061722 + ], + [ + -78.491578, + 38.061897 + ], + [ + -78.491244, + 38.062293 + ], + [ + -78.490863, + 38.062734 + ], + [ + -78.490477, + 38.063153 + ], + [ + -78.490269, + 38.06338 + ], + [ + -78.489937, + 38.063742 + ], + [ + -78.48969, + 38.064008 + ], + [ + -78.489478, + 38.064259 + ], + [ + -78.489344, + 38.064409 + ], + [ + -78.489289, + 38.06447 + ], + [ + -78.489212, + 38.064554 + ], + [ + -78.488761, + 38.065053 + ], + [ + -78.48815, + 38.065739 + ], + [ + -78.488116, + 38.065779 + ], + [ + -78.487867, + 38.06605 + ], + [ + -78.48713, + 38.06686 + ], + [ + -78.486995, + 38.067008 + ], + [ + -78.486825, + 38.067194 + ], + [ + -78.486343, + 38.067727 + ], + [ + -78.486218, + 38.067866 + ], + [ + -78.486208, + 38.067877 + ], + [ + -78.486134, + 38.067959 + ], + [ + -78.48576, + 38.068363 + ], + [ + -78.485475, + 38.06867 + ], + [ + -78.485154, + 38.069027 + ], + [ + -78.484295, + 38.070023 + ], + [ + -78.484063, + 38.070271 + ], + [ + -78.483776, + 38.070614 + ], + [ + -78.483281, + 38.071164 + ], + [ + -78.482433, + 38.07211 + ], + [ + -78.480968, + 38.073741 + ], + [ + -78.480778, + 38.073943 + ], + [ + -78.480706, + 38.07403 + ], + [ + -78.480376, + 38.074401 + ], + [ + -78.479882, + 38.074956 + ], + [ + -78.479801, + 38.075034 + ], + [ + -78.479272, + 38.075634 + ], + [ + -78.478606, + 38.076375 + ], + [ + -78.478527, + 38.076469 + ], + [ + -78.478367, + 38.076647 + ], + [ + -78.477091, + 38.078062 + ], + [ + -78.476397, + 38.078846 + ], + [ + -78.475743, + 38.079571 + ], + [ + -78.474543, + 38.08091 + ], + [ + -78.474163, + 38.081335 + ], + [ + -78.473969, + 38.081577 + ], + [ + -78.473788, + 38.081788 + ], + [ + -78.473613, + 38.082014 + ], + [ + -78.47347, + 38.082218 + ], + [ + -78.472971, + 38.083082 + ], + [ + -78.472639, + 38.083666 + ], + [ + -78.472264, + 38.084319 + ], + [ + -78.471709, + 38.085285 + ], + [ + -78.471146, + 38.086271 + ], + [ + -78.47079, + 38.086895 + ], + [ + -78.470583, + 38.087258 + ], + [ + -78.47026, + 38.087825 + ], + [ + -78.469568, + 38.089039 + ], + [ + -78.468607, + 38.090712 + ], + [ + -78.468501, + 38.090897 + ], + [ + -78.468139, + 38.091557 + ], + [ + -78.468043, + 38.091733 + ], + [ + -78.467922, + 38.09192 + ], + [ + -78.467732, + 38.092218 + ], + [ + -78.46735, + 38.0929 + ], + [ + -78.466766, + 38.093924 + ], + [ + -78.466497, + 38.09437 + ], + [ + -78.466369, + 38.094558 + ], + [ + -78.46599, + 38.095057 + ], + [ + -78.465526, + 38.09564 + ], + [ + -78.465381, + 38.095816 + ], + [ + -78.464933, + 38.096381 + ], + [ + -78.464463, + 38.096962 + ], + [ + -78.464049, + 38.097474 + ], + [ + -78.463974, + 38.097573 + ], + [ + -78.463441, + 38.098232 + ], + [ + -78.46294, + 38.098874 + ], + [ + -78.462231, + 38.099765 + ], + [ + -78.461478, + 38.100721 + ], + [ + -78.460943, + 38.101395 + ], + [ + -78.460544, + 38.101882 + ], + [ + -78.460009, + 38.102564 + ], + [ + -78.459568, + 38.103126 + ], + [ + -78.459337, + 38.103403 + ], + [ + -78.458603, + 38.10429 + ], + [ + -78.457804, + 38.105297 + ], + [ + -78.45751, + 38.105695 + ], + [ + -78.4569, + 38.106619 + ], + [ + -78.456598, + 38.107068 + ], + [ + -78.45544, + 38.108845 + ], + [ + -78.454988, + 38.109578 + ], + [ + -78.454476, + 38.110311 + ], + [ + -78.454296, + 38.110569 + ], + [ + -78.454206, + 38.110708 + ], + [ + -78.454093, + 38.110899 + ], + [ + -78.453942, + 38.111128 + ], + [ + -78.453769, + 38.111409 + ], + [ + -78.453294, + 38.112125 + ], + [ + -78.453172, + 38.112318 + ], + [ + -78.452856, + 38.112817 + ], + [ + -78.452688, + 38.11307 + ], + [ + -78.452602, + 38.113223 + ], + [ + -78.451975, + 38.114186 + ], + [ + -78.451686, + 38.11461 + ], + [ + -78.45106, + 38.115568 + ], + [ + -78.450908, + 38.115798 + ], + [ + -78.450496, + 38.11642 + ], + [ + -78.450419, + 38.116537 + ], + [ + -78.45032, + 38.116697 + ], + [ + -78.450137, + 38.116993 + ], + [ + -78.449702, + 38.117634 + ], + [ + -78.449172, + 38.118448 + ], + [ + -78.448773, + 38.119065 + ], + [ + -78.448006, + 38.120242 + ], + [ + -78.447677, + 38.120726 + ], + [ + -78.447299, + 38.121219 + ], + [ + -78.44692, + 38.121631 + ], + [ + -78.446411, + 38.122124 + ], + [ + -78.4458, + 38.12267 + ], + [ + -78.444661, + 38.123687 + ], + [ + -78.442392, + 38.125724 + ], + [ + -78.441529, + 38.126494 + ], + [ + -78.440922, + 38.127044 + ], + [ + -78.440006, + 38.127866 + ], + [ + -78.439371, + 38.128436 + ], + [ + -78.437997, + 38.129669 + ], + [ + -78.437902, + 38.129754 + ], + [ + -78.437019, + 38.130549 + ], + [ + -78.436453, + 38.131059 + ], + [ + -78.436187, + 38.131299 + ], + [ + -78.435995, + 38.13147 + ], + [ + -78.435251, + 38.132172 + ], + [ + -78.435106, + 38.132303 + ], + [ + -78.434673, + 38.132753 + ], + [ + -78.434293, + 38.13317 + ], + [ + -78.433695, + 38.133887 + ], + [ + -78.433416, + 38.134269 + ], + [ + -78.433195, + 38.134572 + ], + [ + -78.432173, + 38.13616 + ], + [ + -78.430917, + 38.138131 + ], + [ + -78.430468, + 38.138847 + ], + [ + -78.429836, + 38.139833 + ], + [ + -78.429464, + 38.140424 + ], + [ + -78.428859, + 38.141359 + ], + [ + -78.428348, + 38.142178 + ], + [ + -78.428275, + 38.142291 + ], + [ + -78.427887, + 38.14289 + ], + [ + -78.427641, + 38.143278 + ], + [ + -78.427277, + 38.143851 + ], + [ + -78.427263, + 38.143873 + ], + [ + -78.425718, + 38.146293 + ], + [ + -78.4249, + 38.147586 + ], + [ + -78.423982, + 38.149017 + ], + [ + -78.423879, + 38.149181 + ], + [ + -78.4234, + 38.149936 + ], + [ + -78.422346, + 38.1516 + ], + [ + -78.42208, + 38.151996 + ], + [ + -78.421684, + 38.152621 + ], + [ + -78.421337, + 38.15319 + ], + [ + -78.420383, + 38.154692 + ], + [ + -78.419605, + 38.155908 + ], + [ + -78.417659, + 38.158962 + ], + [ + -78.415009, + 38.163121 + ], + [ + -78.414626, + 38.163716 + ], + [ + -78.414541, + 38.163851 + ], + [ + -78.414293, + 38.164245 + ], + [ + -78.412771, + 38.16663 + ], + [ + -78.41231, + 38.167345 + ], + [ + -78.411781, + 38.168185 + ], + [ + -78.410521, + 38.170164 + ], + [ + -78.410064, + 38.170881 + ], + [ + -78.408661, + 38.173081 + ], + [ + -78.408289, + 38.173661 + ], + [ + -78.406754, + 38.176057 + ], + [ + -78.405791, + 38.177582 + ], + [ + -78.405633, + 38.177824 + ], + [ + -78.404819, + 38.179105 + ], + [ + -78.40451, + 38.179581 + ], + [ + -78.403702, + 38.180857 + ], + [ + -78.403534, + 38.181116 + ], + [ + -78.40229, + 38.183084 + ], + [ + -78.402, + 38.183534 + ], + [ + -78.401567, + 38.184219 + ], + [ + -78.401491, + 38.184329 + ], + [ + -78.400918, + 38.18523 + ], + [ + -78.400512, + 38.185861 + ], + [ + -78.399321, + 38.187671 + ], + [ + -78.399195, + 38.187856 + ], + [ + -78.399077, + 38.188041 + ], + [ + -78.398689, + 38.188617 + ], + [ + -78.398558, + 38.18882 + ], + [ + -78.397589, + 38.190295 + ], + [ + -78.3974, + 38.190566 + ], + [ + -78.397207, + 38.19086 + ], + [ + -78.396877, + 38.191349 + ], + [ + -78.396731, + 38.191574 + ], + [ + -78.396016, + 38.192652 + ], + [ + -78.395969, + 38.192724 + ], + [ + -78.395198, + 38.193895 + ], + [ + -78.395145, + 38.193978 + ], + [ + -78.395092, + 38.194057 + ], + [ + -78.395078, + 38.194078 + ], + [ + -78.394787, + 38.194511 + ], + [ + -78.394461, + 38.19501 + ], + [ + -78.394425, + 38.195065 + ], + [ + -78.393867, + 38.195904 + ], + [ + -78.393697, + 38.196162 + ], + [ + -78.392569, + 38.197862 + ], + [ + -78.392356, + 38.198186 + ], + [ + -78.391791, + 38.199049 + ], + [ + -78.3916, + 38.199341 + ], + [ + -78.391424, + 38.19959 + ], + [ + -78.391056, + 38.200141 + ], + [ + -78.390364, + 38.201178 + ], + [ + -78.388697, + 38.203713 + ], + [ + -78.387884, + 38.204937 + ], + [ + -78.387682, + 38.20524 + ], + [ + -78.387424, + 38.205639 + ], + [ + -78.386997, + 38.206278 + ], + [ + -78.386781, + 38.206604 + ], + [ + -78.386138, + 38.207581 + ], + [ + -78.385992, + 38.207804 + ], + [ + -78.385531, + 38.2085 + ], + [ + -78.38498, + 38.209334 + ], + [ + -78.384853, + 38.209537 + ], + [ + -78.383889, + 38.210987 + ], + [ + -78.383519, + 38.211533 + ], + [ + -78.383408, + 38.211705 + ], + [ + -78.383194, + 38.212041 + ], + [ + -78.382209, + 38.213531 + ], + [ + -78.381949, + 38.213932 + ], + [ + -78.381401, + 38.214759 + ], + [ + -78.380953, + 38.215433 + ], + [ + -78.380697, + 38.215818 + ], + [ + -78.380472, + 38.216158 + ], + [ + -78.379118, + 38.218196 + ], + [ + -78.378999, + 38.218384 + ], + [ + -78.37862, + 38.21895 + ], + [ + -78.377882, + 38.220071 + ], + [ + -78.377739, + 38.220289 + ], + [ + -78.377587, + 38.220523 + ], + [ + -78.376908, + 38.221535 + ], + [ + -78.376698, + 38.221851 + ], + [ + -78.376516, + 38.222128 + ], + [ + -78.375966, + 38.222959 + ], + [ + -78.375503, + 38.223658 + ], + [ + -78.374143, + 38.225716 + ], + [ + -78.373741, + 38.226317 + ], + [ + -78.372465, + 38.228246 + ], + [ + -78.371604, + 38.229546 + ], + [ + -78.371224, + 38.230126 + ], + [ + -78.37075, + 38.230832 + ], + [ + -78.370117, + 38.231792 + ], + [ + -78.369796, + 38.23229 + ], + [ + -78.369344, + 38.233031 + ], + [ + -78.369247, + 38.233202 + ], + [ + -78.369201, + 38.233285 + ], + [ + -78.369089, + 38.233499 + ], + [ + -78.368757, + 38.234191 + ], + [ + -78.368537, + 38.23469 + ], + [ + -78.368285, + 38.235273 + ], + [ + -78.367348, + 38.237406 + ], + [ + -78.367125, + 38.237924 + ], + [ + -78.366876, + 38.23848 + ], + [ + -78.366632, + 38.239054 + ], + [ + -78.366538, + 38.239263 + ], + [ + -78.366315, + 38.239761 + ], + [ + -78.365981, + 38.240523 + ], + [ + -78.365112, + 38.242495 + ], + [ + -78.364536, + 38.243815 + ], + [ + -78.364277, + 38.244425 + ], + [ + -78.363872, + 38.245322 + ], + [ + -78.363644, + 38.245831 + ], + [ + -78.363475, + 38.246227 + ], + [ + -78.363324, + 38.246579 + ], + [ + -78.363065, + 38.24716 + ], + [ + -78.362399, + 38.248697 + ], + [ + -78.362213, + 38.249115 + ], + [ + -78.36185, + 38.249928 + ], + [ + -78.360994, + 38.251906 + ], + [ + -78.360894, + 38.252122 + ], + [ + -78.360732, + 38.252472 + ], + [ + -78.359818, + 38.254556 + ], + [ + -78.359604, + 38.255032 + ], + [ + -78.358451, + 38.257672 + ], + [ + -78.35837, + 38.257854 + ], + [ + -78.357235, + 38.260418 + ], + [ + -78.35697, + 38.261034 + ], + [ + -78.356749, + 38.261526 + ], + [ + -78.356328, + 38.262487 + ], + [ + -78.3557, + 38.26392 + ], + [ + -78.355441, + 38.264489 + ], + [ + -78.354985, + 38.265534 + ], + [ + -78.354199, + 38.267311 + ], + [ + -78.354014, + 38.267697 + ], + [ + -78.353899, + 38.267927 + ], + [ + -78.353632, + 38.268419 + ], + [ + -78.353386, + 38.268835 + ], + [ + -78.353012, + 38.269405 + ], + [ + -78.352727, + 38.269807 + ], + [ + -78.352433, + 38.270193 + ], + [ + -78.351176, + 38.271816 + ], + [ + -78.35069, + 38.272444 + ], + [ + -78.350332, + 38.272914 + ], + [ + -78.349867, + 38.273496 + ], + [ + -78.349659, + 38.273731 + ], + [ + -78.349448, + 38.273949 + ], + [ + -78.349246, + 38.274133 + ], + [ + -78.348925, + 38.274393 + ], + [ + -78.348653, + 38.274592 + ], + [ + -78.348309, + 38.274816 + ], + [ + -78.346752, + 38.275754 + ], + [ + -78.345609, + 38.276449 + ], + [ + -78.34394, + 38.277447 + ], + [ + -78.343411, + 38.277789 + ], + [ + -78.343205, + 38.277938 + ], + [ + -78.342906, + 38.278167 + ], + [ + -78.342692, + 38.278348 + ], + [ + -78.342621, + 38.27841 + ], + [ + -78.342399, + 38.278622 + ], + [ + -78.342335, + 38.278686 + ], + [ + -78.342171, + 38.278857 + ], + [ + -78.341631, + 38.279482 + ], + [ + -78.341204, + 38.280003 + ], + [ + -78.341139, + 38.280089 + ], + [ + -78.341053, + 38.280202 + ], + [ + -78.340551, + 38.280804 + ], + [ + -78.34033, + 38.281097 + ], + [ + -78.339739, + 38.281771 + ], + [ + -78.337121, + 38.284947 + ], + [ + -78.335554, + 38.286807 + ], + [ + -78.334912, + 38.287652 + ], + [ + -78.334363, + 38.288479 + ], + [ + -78.333901, + 38.289321 + ], + [ + -78.332891, + 38.291302 + ], + [ + -78.33264, + 38.291856 + ], + [ + -78.332046, + 38.29316 + ], + [ + -78.331547, + 38.294091 + ], + [ + -78.33002, + 38.297253 + ], + [ + -78.328705, + 38.299896 + ], + [ + -78.328454, + 38.300437 + ], + [ + -78.327604, + 38.302025 + ], + [ + -78.326529, + 38.303681 + ], + [ + -78.325643, + 38.304891 + ], + [ + -78.325058, + 38.305662 + ], + [ + -78.32399, + 38.30691 + ], + [ + -78.3236, + 38.307359 + ], + [ + -78.323233, + 38.30771 + ], + [ + -78.322626, + 38.308335 + ], + [ + -78.320591, + 38.310229 + ], + [ + -78.317859, + 38.312439 + ], + [ + -78.317136, + 38.313055 + ], + [ + -78.314274, + 38.315396 + ], + [ + -78.313204, + 38.316275 + ], + [ + -78.313084, + 38.316374 + ], + [ + -78.312238, + 38.317069 + ], + [ + -78.31127, + 38.317874 + ], + [ + -78.310555, + 38.318624 + ], + [ + -78.308339, + 38.321068 + ], + [ + -78.307189, + 38.322326 + ], + [ + -78.306432, + 38.323147 + ], + [ + -78.305157, + 38.324565 + ], + [ + -78.299683, + 38.33067 + ], + [ + -78.296227, + 38.334366 + ], + [ + -78.294775, + 38.336025 + ], + [ + -78.294422, + 38.336434 + ], + [ + -78.293518, + 38.337393 + ], + [ + -78.292283, + 38.338774 + ], + [ + -78.290905, + 38.340301 + ], + [ + -78.289054, + 38.34231 + ], + [ + -78.287698, + 38.343781 + ], + [ + -78.286127, + 38.345511 + ], + [ + -78.284805, + 38.346961 + ], + [ + -78.284197, + 38.347653 + ], + [ + -78.281261, + 38.350904 + ], + [ + -78.27928, + 38.353063 + ], + [ + -78.277989, + 38.354462 + ], + [ + -78.276967, + 38.355626 + ], + [ + -78.275482, + 38.357205 + ], + [ + -78.275108, + 38.357686 + ], + [ + -78.273995, + 38.359116 + ], + [ + -78.272612, + 38.361053 + ], + [ + -78.269402, + 38.365549 + ], + [ + -78.268281, + 38.367067 + ], + [ + -78.26707, + 38.368543 + ], + [ + -78.266209, + 38.369424 + ], + [ + -78.26463, + 38.370803 + ], + [ + -78.263855, + 38.371431 + ], + [ + -78.262777, + 38.372178 + ], + [ + -78.262167, + 38.372601 + ], + [ + -78.258589, + 38.375046 + ], + [ + -78.253931, + 38.378242 + ], + [ + -78.253419, + 38.378585 + ], + [ + -78.252722, + 38.379065 + ], + [ + -78.251038, + 38.380279 + ], + [ + -78.249725, + 38.3814 + ], + [ + -78.248824, + 38.38242 + ], + [ + -78.247019, + 38.384778 + ], + [ + -78.243045, + 38.39007 + ], + [ + -78.242379, + 38.390835 + ], + [ + -78.241798, + 38.391304 + ], + [ + -78.241358, + 38.391649 + ], + [ + -78.240659, + 38.392107 + ], + [ + -78.239791, + 38.392562 + ], + [ + -78.236781, + 38.394134 + ], + [ + -78.234618, + 38.395478 + ], + [ + -78.233524, + 38.396238 + ], + [ + -78.231366, + 38.397688 + ], + [ + -78.230593, + 38.398159 + ], + [ + -78.229713, + 38.398631 + ], + [ + -78.22927, + 38.398846 + ], + [ + -78.227176, + 38.399941 + ], + [ + -78.224001, + 38.401573 + ], + [ + -78.221687, + 38.402762 + ], + [ + -78.220927, + 38.403115 + ], + [ + -78.219583, + 38.403494 + ], + [ + -78.217956, + 38.403869 + ], + [ + -78.216834, + 38.404329 + ], + [ + -78.216198, + 38.404653 + ], + [ + -78.215673, + 38.404943 + ], + [ + -78.2147, + 38.405692 + ], + [ + -78.214341, + 38.406017 + ], + [ + -78.211846, + 38.409013 + ], + [ + -78.211205, + 38.409859 + ], + [ + -78.208931, + 38.412831 + ], + [ + -78.207891, + 38.413946 + ], + [ + -78.207388, + 38.414459 + ], + [ + -78.206848, + 38.414885 + ], + [ + -78.20502, + 38.416246 + ], + [ + -78.204339, + 38.416746 + ], + [ + -78.203587, + 38.417231 + ], + [ + -78.201789, + 38.418025 + ], + [ + -78.199931, + 38.418788 + ], + [ + -78.198775, + 38.419213 + ], + [ + -78.197516, + 38.419599 + ], + [ + -78.196891, + 38.419728 + ], + [ + -78.193593, + 38.420311 + ], + [ + -78.192656, + 38.420508 + ], + [ + -78.191772, + 38.420736 + ], + [ + -78.190615, + 38.421137 + ], + [ + -78.189756, + 38.421485 + ], + [ + -78.189131, + 38.421795 + ], + [ + -78.188009, + 38.422501 + ], + [ + -78.186635, + 38.423265 + ], + [ + -78.185396, + 38.423841 + ], + [ + -78.184545, + 38.424162 + ], + [ + -78.179643, + 38.425692 + ], + [ + -78.176595, + 38.426575 + ], + [ + -78.175037, + 38.427149 + ], + [ + -78.174014, + 38.427529 + ], + [ + -78.171007, + 38.428688 + ], + [ + -78.169272, + 38.429381 + ], + [ + -78.165511, + 38.430827 + ], + [ + -78.164119, + 38.431371 + ], + [ + -78.162591, + 38.431967 + ], + [ + -78.161653, + 38.432308 + ], + [ + -78.160661, + 38.43271 + ], + [ + -78.160269, + 38.432865 + ], + [ + -78.159874, + 38.433009 + ], + [ + -78.157491, + 38.433942 + ], + [ + -78.157022, + 38.434133 + ], + [ + -78.156281, + 38.434403 + ], + [ + -78.154122, + 38.435214 + ], + [ + -78.152887, + 38.435503 + ], + [ + -78.151935, + 38.435645 + ], + [ + -78.151237, + 38.435723 + ], + [ + -78.149391, + 38.435895 + ], + [ + -78.145341, + 38.436294 + ], + [ + -78.143178, + 38.436516 + ], + [ + -78.141588, + 38.436723 + ], + [ + -78.140742, + 38.436927 + ], + [ + -78.139967, + 38.43716 + ], + [ + -78.139029, + 38.437478 + ], + [ + -78.138213, + 38.437833 + ], + [ + -78.13673, + 38.438732 + ], + [ + -78.135769, + 38.439493 + ], + [ + -78.133667, + 38.441543 + ], + [ + -78.13309, + 38.442092 + ], + [ + -78.132637, + 38.442565 + ], + [ + -78.131362, + 38.443807 + ], + [ + -78.131197, + 38.443972 + ], + [ + -78.13069, + 38.444456 + ], + [ + -78.13004, + 38.445093 + ], + [ + -78.129654, + 38.445515 + ], + [ + -78.129431, + 38.445788 + ], + [ + -78.129306, + 38.445939 + ], + [ + -78.129135, + 38.446147 + ], + [ + -78.126535, + 38.449414 + ], + [ + -78.12559, + 38.450596 + ], + [ + -78.124937, + 38.451403 + ], + [ + -78.12463, + 38.451786 + ], + [ + -78.122999, + 38.453819 + ], + [ + -78.12268, + 38.454222 + ], + [ + -78.122212, + 38.454799 + ], + [ + -78.122012, + 38.455018 + ], + [ + -78.121815, + 38.455209 + ], + [ + -78.121657, + 38.455346 + ], + [ + -78.121484, + 38.455481 + ], + [ + -78.121283, + 38.455622 + ], + [ + -78.121072, + 38.455755 + ], + [ + -78.120838, + 38.455889 + ], + [ + -78.120605, + 38.456007 + ], + [ + -78.120411, + 38.456093 + ], + [ + -78.120081, + 38.45622 + ], + [ + -78.11988, + 38.456286 + ], + [ + -78.119617, + 38.456362 + ], + [ + -78.119481, + 38.456395 + ], + [ + -78.119029, + 38.456484 + ], + [ + -78.118859, + 38.456513 + ], + [ + -78.118556, + 38.456543 + ], + [ + -78.118252, + 38.456558 + ], + [ + -78.117886, + 38.45656 + ], + [ + -78.117582, + 38.456545 + ], + [ + -78.117215, + 38.456509 + ], + [ + -78.11691, + 38.456463 + ], + [ + -78.116669, + 38.456417 + ], + [ + -78.116299, + 38.456332 + ], + [ + -78.114395, + 38.455867 + ], + [ + -78.113075, + 38.455549 + ], + [ + -78.112183, + 38.455337 + ], + [ + -78.111983, + 38.455288 + ], + [ + -78.110622, + 38.454956 + ], + [ + -78.109647, + 38.454713 + ], + [ + -78.109318, + 38.454619 + ], + [ + -78.108646, + 38.454427 + ], + [ + -78.108148, + 38.454266 + ], + [ + -78.107826, + 38.454152 + ], + [ + -78.107433, + 38.454006 + ], + [ + -78.106215, + 38.453523 + ], + [ + -78.103244, + 38.452284 + ], + [ + -78.103113, + 38.45223 + ], + [ + -78.101465, + 38.451517 + ], + [ + -78.100793, + 38.451267 + ], + [ + -78.099999, + 38.450965 + ], + [ + -78.099633, + 38.450843 + ], + [ + -78.099366, + 38.450762 + ], + [ + -78.098981, + 38.450649 + ], + [ + -78.098604, + 38.450547 + ], + [ + -78.098262, + 38.45046 + ], + [ + -78.09792, + 38.450384 + ], + [ + -78.096808, + 38.450181 + ], + [ + -78.096151, + 38.450083 + ], + [ + -78.095446, + 38.449969 + ], + [ + -78.093727, + 38.449707 + ], + [ + -78.092677, + 38.449547 + ], + [ + -78.092158, + 38.449481 + ], + [ + -78.091766, + 38.449445 + ], + [ + -78.091635, + 38.449437 + ], + [ + -78.091391, + 38.44943 + ], + [ + -78.09088, + 38.449437 + ], + [ + -78.090541, + 38.449459 + ], + [ + -78.090154, + 38.449505 + ], + [ + -78.090027, + 38.449526 + ], + [ + -78.089761, + 38.44957 + ], + [ + -78.089091, + 38.449707 + ], + [ + -78.08849, + 38.449845 + ], + [ + -78.087312, + 38.450134 + ], + [ + -78.086546, + 38.450314 + ], + [ + -78.086092, + 38.450427 + ], + [ + -78.085716, + 38.450516 + ], + [ + -78.085217, + 38.45064 + ], + [ + -78.083614, + 38.45102 + ], + [ + -78.082588, + 38.451268 + ], + [ + -78.081682, + 38.451496 + ], + [ + -78.080934, + 38.451707 + ], + [ + -78.080808, + 38.451743 + ], + [ + -78.080252, + 38.451928 + ], + [ + -78.080061, + 38.451995 + ], + [ + -78.079356, + 38.452244 + ], + [ + -78.079056, + 38.452366 + ], + [ + -78.077758, + 38.452899 + ], + [ + -78.07693, + 38.453218 + ], + [ + -78.07648, + 38.453363 + ], + [ + -78.075972, + 38.453504 + ], + [ + -78.075519, + 38.453613 + ], + [ + -78.075245, + 38.453672 + ], + [ + -78.074633, + 38.453773 + ], + [ + -78.073634, + 38.453917 + ], + [ + -78.073086, + 38.453985 + ], + [ + -78.071708, + 38.454165 + ], + [ + -78.070367, + 38.45434 + ], + [ + -78.069606, + 38.454439 + ], + [ + -78.065196, + 38.455001 + ], + [ + -78.0636, + 38.455212 + ], + [ + -78.062967, + 38.455296 + ], + [ + -78.062279, + 38.455383 + ], + [ + -78.061807, + 38.45545 + ], + [ + -78.061375, + 38.455516 + ], + [ + -78.060496, + 38.455651 + ], + [ + -78.059099, + 38.455874 + ], + [ + -78.058415, + 38.455997 + ], + [ + -78.057861, + 38.456107 + ], + [ + -78.057398, + 38.456211 + ], + [ + -78.057094, + 38.456284 + ], + [ + -78.055369, + 38.456762 + ], + [ + -78.054558, + 38.456978 + ], + [ + -78.05416, + 38.457057 + ], + [ + -78.053923, + 38.4571 + ], + [ + -78.053692, + 38.457137 + ], + [ + -78.053464, + 38.457172 + ], + [ + -78.052965, + 38.457229 + ], + [ + -78.052547, + 38.457266 + ], + [ + -78.05168, + 38.457327 + ], + [ + -78.051381, + 38.457343 + ], + [ + -78.051209, + 38.457356 + ], + [ + -78.050231, + 38.457415 + ], + [ + -78.049522, + 38.45745 + ], + [ + -78.049115, + 38.457457 + ], + [ + -78.048707, + 38.45745 + ], + [ + -78.048107, + 38.457414 + ], + [ + -78.046583, + 38.457296 + ], + [ + -78.045473, + 38.457209 + ], + [ + -78.043615, + 38.457066 + ], + [ + -78.04299, + 38.457014 + ], + [ + -78.041948, + 38.456934 + ], + [ + -78.041564, + 38.4569 + ], + [ + -78.040447, + 38.456809 + ], + [ + -78.039807, + 38.456752 + ], + [ + -78.039565, + 38.456722 + ], + [ + -78.038614, + 38.456586 + ], + [ + -78.037992, + 38.45648 + ], + [ + -78.036619, + 38.456229 + ], + [ + -78.036312, + 38.456174 + ], + [ + -78.035316, + 38.455996 + ], + [ + -78.033993, + 38.455756 + ], + [ + -78.033455, + 38.455659 + ], + [ + -78.032995, + 38.455576 + ], + [ + -78.032344, + 38.455462 + ], + [ + -78.032225, + 38.455441 + ], + [ + -78.032071, + 38.455411 + ], + [ + -78.031918, + 38.455381 + ], + [ + -78.030629, + 38.455156 + ], + [ + -78.030487, + 38.455136 + ], + [ + -78.02993, + 38.455035 + ], + [ + -78.029397, + 38.454939 + ], + [ + -78.027154, + 38.454551 + ], + [ + -78.026507, + 38.454439 + ], + [ + -78.026143, + 38.454368 + ], + [ + -78.025005, + 38.454171 + ], + [ + -78.024336, + 38.45404 + ], + [ + -78.023622, + 38.453878 + ], + [ + -78.02312, + 38.453727 + ], + [ + -78.02273, + 38.453603 + ], + [ + -78.022384, + 38.453473 + ], + [ + -78.021945, + 38.453293 + ], + [ + -78.021688, + 38.453179 + ], + [ + -78.02141, + 38.45304 + ], + [ + -78.020949, + 38.452794 + ], + [ + -78.020606, + 38.452593 + ], + [ + -78.018376, + 38.451156 + ], + [ + -78.015052, + 38.449001 + ], + [ + -78.013038, + 38.447702 + ], + [ + -78.012718, + 38.447476 + ], + [ + -78.012365, + 38.447314 + ], + [ + -78.011913, + 38.44707 + ], + [ + -78.011467, + 38.446849 + ], + [ + -78.011017, + 38.446646 + ], + [ + -78.010785, + 38.446548 + ], + [ + -78.01041, + 38.446389 + ], + [ + -78.009947, + 38.446212 + ], + [ + -78.009475, + 38.446047 + ], + [ + -78.009032, + 38.44592 + ], + [ + -78.008198, + 38.445668 + ], + [ + -78.007806, + 38.445574 + ], + [ + -78.007536, + 38.445509 + ], + [ + -78.00704, + 38.445404 + ], + [ + -78.006541, + 38.445314 + ], + [ + -78.006039, + 38.445234 + ], + [ + -78.005535, + 38.445168 + ], + [ + -78.004882, + 38.445103 + ], + [ + -78.00427, + 38.44506 + ], + [ + -78.003857, + 38.445042 + ], + [ + -78.003259, + 38.445032 + ], + [ + -77.996098, + 38.445039 + ], + [ + -77.995524, + 38.445052 + ], + [ + -77.995083, + 38.445072 + ], + [ + -77.9946, + 38.445108 + ], + [ + -77.994291, + 38.44514 + ], + [ + -77.994119, + 38.445159 + ], + [ + -77.993562, + 38.445235 + ], + [ + -77.993077, + 38.445314 + ], + [ + -77.992738, + 38.44538 + ], + [ + -77.992304, + 38.445476 + ], + [ + -77.991774, + 38.445609 + ], + [ + -77.991277, + 38.445754 + ], + [ + -77.990885, + 38.44588 + ], + [ + -77.990401, + 38.446049 + ], + [ + -77.989902, + 38.446248 + ], + [ + -77.98951, + 38.446417 + ], + [ + -77.989127, + 38.446595 + ], + [ + -77.988671, + 38.446826 + ], + [ + -77.988226, + 38.44707 + ], + [ + -77.988015, + 38.447193 + ], + [ + -77.987964, + 38.447222 + ], + [ + -77.986229, + 38.448266 + ], + [ + -77.982377, + 38.450578 + ], + [ + -77.980067, + 38.451965 + ], + [ + -77.978396, + 38.452971 + ], + [ + -77.976723, + 38.453978 + ], + [ + -77.971729, + 38.456974 + ], + [ + -77.970854, + 38.457513 + ], + [ + -77.970447, + 38.457776 + ], + [ + -77.969812, + 38.458205 + ], + [ + -77.969672, + 38.458304 + ], + [ + -77.969294, + 38.458571 + ], + [ + -77.968878, + 38.458872 + ], + [ + -77.968162, + 38.459423 + ], + [ + -77.967696, + 38.459799 + ], + [ + -77.967125, + 38.46028 + ], + [ + -77.966325, + 38.460982 + ], + [ + -77.965258, + 38.461918 + ], + [ + -77.964866, + 38.462267 + ], + [ + -77.960196, + 38.466376 + ], + [ + -77.955939, + 38.470123 + ], + [ + -77.954947, + 38.470996 + ], + [ + -77.954533, + 38.471358 + ], + [ + -77.953922, + 38.471893 + ], + [ + -77.953458, + 38.472304 + ], + [ + -77.953176, + 38.472548 + ], + [ + -77.952583, + 38.473072 + ], + [ + -77.951119, + 38.474355 + ], + [ + -77.950943, + 38.474509 + ], + [ + -77.949669, + 38.47563 + ], + [ + -77.948949, + 38.476265 + ], + [ + -77.948002, + 38.477098 + ], + [ + -77.940672, + 38.483548 + ], + [ + -77.940481, + 38.483731 + ], + [ + -77.940188, + 38.484012 + ], + [ + -77.939893, + 38.484318 + ], + [ + -77.939484, + 38.484776 + ], + [ + -77.93926, + 38.485054 + ], + [ + -77.939039, + 38.48534 + ], + [ + -77.938835, + 38.485618 + ], + [ + -77.938574, + 38.486003 + ], + [ + -77.938385, + 38.4863 + ], + [ + -77.938154, + 38.486695 + ], + [ + -77.936929, + 38.489071 + ], + [ + -77.936476, + 38.48995 + ], + [ + -77.936307, + 38.490277 + ], + [ + -77.936213, + 38.490449 + ], + [ + -77.936032, + 38.490779 + ], + [ + -77.935797, + 38.491168 + ], + [ + -77.935515, + 38.491593 + ], + [ + -77.935238, + 38.491981 + ], + [ + -77.934904, + 38.492412 + ], + [ + -77.934836, + 38.492493 + ], + [ + -77.93462, + 38.492753 + ], + [ + -77.934238, + 38.493183 + ], + [ + -77.933985, + 38.493449 + ], + [ + -77.933681, + 38.493753 + ], + [ + -77.933395, + 38.494018 + ], + [ + -77.933018, + 38.494354 + ], + [ + -77.932749, + 38.494585 + ], + [ + -77.932252, + 38.494973 + ], + [ + -77.93171, + 38.495374 + ], + [ + -77.931341, + 38.495628 + ], + [ + -77.930966, + 38.495866 + ], + [ + -77.930194, + 38.496327 + ], + [ + -77.929795, + 38.496546 + ], + [ + -77.929468, + 38.496713 + ], + [ + -77.928898, + 38.496989 + ], + [ + -77.928401, + 38.497211 + ], + [ + -77.927814, + 38.497454 + ], + [ + -77.927352, + 38.49763 + ], + [ + -77.926883, + 38.497792 + ], + [ + -77.92627, + 38.497988 + ], + [ + -77.925745, + 38.498139 + ], + [ + -77.925688, + 38.498154 + ], + [ + -77.925207, + 38.498279 + ], + [ + -77.924635, + 38.498412 + ], + [ + -77.924059, + 38.498531 + ], + [ + -77.923478, + 38.498637 + ], + [ + -77.923244, + 38.498675 + ], + [ + -77.9209, + 38.499106 + ], + [ + -77.920407, + 38.499196 + ], + [ + -77.916265, + 38.499951 + ], + [ + -77.914897, + 38.500194 + ], + [ + -77.913262, + 38.500498 + ], + [ + -77.912906, + 38.500563 + ], + [ + -77.911059, + 38.5009 + ], + [ + -77.910401, + 38.501012 + ], + [ + -77.909308, + 38.501222 + ], + [ + -77.90816, + 38.501425 + ], + [ + -77.906956, + 38.501647 + ], + [ + -77.902649, + 38.502433 + ], + [ + -77.901836, + 38.502578 + ], + [ + -77.901383, + 38.502661 + ], + [ + -77.899056, + 38.503088 + ], + [ + -77.897887, + 38.503302 + ], + [ + -77.896932, + 38.503454 + ], + [ + -77.896481, + 38.503514 + ], + [ + -77.896026, + 38.50356 + ], + [ + -77.89557, + 38.503592 + ], + [ + -77.895091, + 38.503613 + ], + [ + -77.894605, + 38.503621 + ], + [ + -77.894338, + 38.503619 + ], + [ + -77.894023, + 38.503612 + ], + [ + -77.893539, + 38.503589 + ], + [ + -77.893152, + 38.50356 + ], + [ + -77.891645, + 38.503392 + ], + [ + -77.891145, + 38.503351 + ], + [ + -77.890705, + 38.503331 + ], + [ + -77.890264, + 38.503325 + ], + [ + -77.89, + 38.503328 + ], + [ + -77.889421, + 38.503346 + ], + [ + -77.888918, + 38.503375 + ], + [ + -77.888578, + 38.503406 + ], + [ + -77.888318, + 38.503429 + ], + [ + -77.887823, + 38.50349 + ], + [ + -77.887334, + 38.503566 + ], + [ + -77.886849, + 38.503655 + ], + [ + -77.886369, + 38.503759 + ], + [ + -77.885701, + 38.503929 + ], + [ + -77.88504, + 38.504114 + ], + [ + -77.883872, + 38.504451 + ], + [ + -77.882026, + 38.504972 + ], + [ + -77.880726, + 38.50535 + ], + [ + -77.879756, + 38.505628 + ], + [ + -77.879416, + 38.505726 + ], + [ + -77.878734, + 38.505916 + ], + [ + -77.87665, + 38.506514 + ], + [ + -77.873295, + 38.507467 + ], + [ + -77.870872, + 38.508164 + ], + [ + -77.867574, + 38.509112 + ], + [ + -77.86643, + 38.509426 + ], + [ + -77.865139, + 38.509804 + ], + [ + -77.864878, + 38.509875 + ], + [ + -77.864614, + 38.509946 + ], + [ + -77.864004, + 38.510124 + ], + [ + -77.863963, + 38.510136 + ], + [ + -77.863243, + 38.510359 + ], + [ + -77.862776, + 38.510515 + ], + [ + -77.862313, + 38.51068 + ], + [ + -77.86153, + 38.510992 + ], + [ + -77.86091, + 38.511252 + ], + [ + -77.860341, + 38.511504 + ], + [ + -77.860101, + 38.511597 + ], + [ + -77.859873, + 38.511706 + ], + [ + -77.859049, + 38.512033 + ], + [ + -77.858596, + 38.512199 + ], + [ + -77.85801, + 38.512393 + ], + [ + -77.85641, + 38.512859 + ], + [ + -77.85546, + 38.513131 + ], + [ + -77.853636, + 38.513652 + ], + [ + -77.852939, + 38.513842 + ], + [ + -77.85189, + 38.514117 + ], + [ + -77.851773, + 38.514147 + ], + [ + -77.851155, + 38.514282 + ], + [ + -77.850783, + 38.514355 + ], + [ + -77.850158, + 38.514468 + ], + [ + -77.849529, + 38.514566 + ], + [ + -77.848611, + 38.514673 + ], + [ + -77.847601, + 38.514814 + ], + [ + -77.847219, + 38.514874 + ], + [ + -77.846744, + 38.514961 + ], + [ + -77.846275, + 38.515063 + ], + [ + -77.845622, + 38.515227 + ], + [ + -77.843493, + 38.515828 + ], + [ + -77.840926, + 38.516554 + ], + [ + -77.838953, + 38.517123 + ], + [ + -77.838611, + 38.51724 + ], + [ + -77.838276, + 38.51737 + ], + [ + -77.838087, + 38.517452 + ], + [ + -77.837878, + 38.517559 + ], + [ + -77.837641, + 38.517698 + ], + [ + -77.837371, + 38.517879 + ], + [ + -77.837159, + 38.518042 + ], + [ + -77.836631, + 38.518508 + ], + [ + -77.833939, + 38.52107 + ], + [ + -77.833536, + 38.521444 + ], + [ + -77.832859, + 38.52207 + ], + [ + -77.832618, + 38.52227 + ], + [ + -77.832363, + 38.52246 + ], + [ + -77.832151, + 38.522605 + ], + [ + -77.831761, + 38.52284 + ], + [ + -77.831645, + 38.522905 + ], + [ + -77.831341, + 38.523059 + ], + [ + -77.831027, + 38.523201 + ], + [ + -77.830705, + 38.52333 + ], + [ + -77.830375, + 38.523446 + ], + [ + -77.82725, + 38.524408 + ], + [ + -77.825282, + 38.525005 + ], + [ + -77.824825, + 38.525153 + ], + [ + -77.824766, + 38.525172 + ], + [ + -77.82414, + 38.525403 + ], + [ + -77.823904, + 38.525501 + ], + [ + -77.823444, + 38.525707 + ], + [ + -77.823161, + 38.525842 + ], + [ + -77.822816, + 38.526023 + ], + [ + -77.822483, + 38.526216 + ], + [ + -77.82216, + 38.526429 + ], + [ + -77.821905, + 38.526618 + ], + [ + -77.821824, + 38.526681 + ], + [ + -77.821661, + 38.526816 + ], + [ + -77.82143, + 38.527024 + ], + [ + -77.821026, + 38.527454 + ], + [ + -77.820758, + 38.527783 + ], + [ + -77.820516, + 38.528112 + ], + [ + -77.820197, + 38.52856 + ], + [ + -77.819895, + 38.529029 + ], + [ + -77.81945, + 38.529798 + ], + [ + -77.818541, + 38.531386 + ], + [ + -77.817476, + 38.533249 + ], + [ + -77.817174, + 38.533749 + ], + [ + -77.815779, + 38.536111 + ], + [ + -77.812836, + 38.541042 + ], + [ + -77.812145, + 38.542152 + ], + [ + -77.811443, + 38.543345 + ], + [ + -77.81107, + 38.543916 + ], + [ + -77.809169, + 38.54677 + ], + [ + -77.807061, + 38.549912 + ], + [ + -77.805801, + 38.55177 + ], + [ + -77.803189, + 38.555743 + ], + [ + -77.802664, + 38.55653 + ], + [ + -77.802442, + 38.556869 + ], + [ + -77.802253, + 38.557175 + ], + [ + -77.802079, + 38.557492 + ], + [ + -77.801838, + 38.557971 + ], + [ + -77.801782, + 38.55809 + ], + [ + -77.801657, + 38.55838 + ], + [ + -77.801522, + 38.558722 + ], + [ + -77.801429, + 38.558994 + ], + [ + -77.801302, + 38.559432 + ], + [ + -77.801209, + 38.559822 + ], + [ + -77.801144, + 38.560169 + ], + [ + -77.801065, + 38.560727 + ], + [ + -77.801025, + 38.56131 + ], + [ + -77.801027, + 38.561813 + ], + [ + -77.801049, + 38.562487 + ], + [ + -77.801069, + 38.562893 + ], + [ + -77.801213, + 38.565749 + ], + [ + -77.801305, + 38.567636 + ], + [ + -77.80137, + 38.568961 + ], + [ + -77.801541, + 38.572402 + ], + [ + -77.801599, + 38.573623 + ], + [ + -77.801669, + 38.575224 + ], + [ + -77.801707, + 38.575829 + ], + [ + -77.801772, + 38.577117 + ], + [ + -77.801874, + 38.579138 + ], + [ + -77.801902, + 38.579759 + ], + [ + -77.801914, + 38.579914 + ], + [ + -77.801945, + 38.580642 + ], + [ + -77.801977, + 38.581198 + ], + [ + -77.802036, + 38.582417 + ], + [ + -77.802118, + 38.584113 + ], + [ + -77.802126, + 38.584391 + ], + [ + -77.802131, + 38.584986 + ], + [ + -77.802118, + 38.585525 + ], + [ + -77.802088, + 38.586052 + ], + [ + -77.802017, + 38.586791 + ], + [ + -77.801743, + 38.589112 + ], + [ + -77.801725, + 38.589268 + ], + [ + -77.801437, + 38.591698 + ], + [ + -77.801342, + 38.5925 + ], + [ + -77.801281, + 38.593006 + ], + [ + -77.800994, + 38.595455 + ], + [ + -77.800644, + 38.598437 + ], + [ + -77.800492, + 38.599704 + ], + [ + -77.800457, + 38.599972 + ], + [ + -77.800268, + 38.601612 + ], + [ + -77.800209, + 38.602305 + ], + [ + -77.80017, + 38.602992 + ], + [ + -77.800152, + 38.603904 + ], + [ + -77.800152, + 38.604035 + ], + [ + -77.800152, + 38.604483 + ], + [ + -77.800172, + 38.60559 + ], + [ + -77.800187, + 38.606551 + ], + [ + -77.800205, + 38.607644 + ], + [ + -77.80022, + 38.608813 + ], + [ + -77.800237, + 38.609384 + ], + [ + -77.800232, + 38.610093 + ], + [ + -77.800248, + 38.611162 + ], + [ + -77.80027, + 38.611781 + ], + [ + -77.800276, + 38.611972 + ], + [ + -77.800298, + 38.612639 + ], + [ + -77.800312, + 38.613039 + ], + [ + -77.800332, + 38.613399 + ], + [ + -77.800397, + 38.614527 + ], + [ + -77.800421, + 38.615203 + ], + [ + -77.800432, + 38.61575 + ], + [ + -77.800444, + 38.616559 + ], + [ + -77.800478, + 38.618723 + ], + [ + -77.8005, + 38.619601 + ], + [ + -77.800525, + 38.620811 + ], + [ + -77.800527, + 38.620908 + ], + [ + -77.800548, + 38.62192 + ], + [ + -77.80058, + 38.623403 + ], + [ + -77.800594, + 38.624213 + ], + [ + -77.800603, + 38.625413 + ], + [ + -77.80062, + 38.627386 + ], + [ + -77.800629, + 38.627856 + ], + [ + -77.800651, + 38.62934 + ], + [ + -77.800658, + 38.629863 + ], + [ + -77.800688, + 38.631295 + ], + [ + -77.800701, + 38.63219 + ], + [ + -77.800708, + 38.632656 + ], + [ + -77.800729, + 38.632937 + ], + [ + -77.800749, + 38.6331 + ], + [ + -77.800764, + 38.633194 + ], + [ + -77.800824, + 38.633493 + ], + [ + -77.8009, + 38.63375 + ], + [ + -77.801033, + 38.634132 + ], + [ + -77.801091, + 38.634277 + ], + [ + -77.801339, + 38.634852 + ], + [ + -77.801526, + 38.635289 + ], + [ + -77.801703, + 38.635692 + ], + [ + -77.801752, + 38.635808 + ], + [ + -77.801965, + 38.636295 + ], + [ + -77.802897, + 38.638462 + ], + [ + -77.802996, + 38.638693 + ], + [ + -77.803206, + 38.639174 + ], + [ + -77.803351, + 38.639505 + ], + [ + -77.803635, + 38.640158 + ], + [ + -77.803774, + 38.640485 + ], + [ + -77.80405, + 38.641121 + ], + [ + -77.804137, + 38.641325 + ], + [ + -77.804199, + 38.641471 + ], + [ + -77.804367, + 38.641868 + ], + [ + -77.804398, + 38.641941 + ], + [ + -77.804535, + 38.642359 + ], + [ + -77.804602, + 38.642621 + ], + [ + -77.804642, + 38.642832 + ], + [ + -77.804669, + 38.643038 + ], + [ + -77.804677, + 38.643118 + ], + [ + -77.804687, + 38.643291 + ], + [ + -77.804696, + 38.643722 + ], + [ + -77.804696, + 38.644409 + ], + [ + -77.804677, + 38.644766 + ], + [ + -77.804636, + 38.645023 + ], + [ + -77.804576, + 38.645279 + ], + [ + -77.804498, + 38.645531 + ], + [ + -77.804445, + 38.645671 + ], + [ + -77.804179, + 38.646296 + ], + [ + -77.803976, + 38.646795 + ], + [ + -77.803645, + 38.647584 + ], + [ + -77.803607, + 38.647672 + ], + [ + -77.803037, + 38.649027 + ], + [ + -77.802582, + 38.650099 + ], + [ + -77.802488, + 38.65032 + ], + [ + -77.80226, + 38.650816 + ], + [ + -77.802226, + 38.650891 + ], + [ + -77.801705, + 38.651973 + ], + [ + -77.801524, + 38.652348 + ], + [ + -77.800517, + 38.654435 + ], + [ + -77.800311, + 38.654856 + ], + [ + -77.800109, + 38.655223 + ], + [ + -77.799504, + 38.656216 + ], + [ + -77.799258, + 38.656629 + ], + [ + -77.799064, + 38.656995 + ], + [ + -77.798952, + 38.657238 + ], + [ + -77.798593, + 38.658126 + ], + [ + -77.798524, + 38.658287 + ], + [ + -77.798395, + 38.658591 + ], + [ + -77.798266, + 38.658901 + ], + [ + -77.798049, + 38.659428 + ], + [ + -77.797829, + 38.659963 + ], + [ + -77.79736, + 38.661105 + ], + [ + -77.797075, + 38.661795 + ], + [ + -77.796724, + 38.662641 + ], + [ + -77.79625, + 38.663783 + ], + [ + -77.796094, + 38.664161 + ], + [ + -77.795637, + 38.665271 + ], + [ + -77.79528, + 38.666132 + ], + [ + -77.795248, + 38.66621 + ], + [ + -77.794069, + 38.669063 + ], + [ + -77.793674, + 38.670024 + ], + [ + -77.793379, + 38.670723 + ], + [ + -77.793244, + 38.671036 + ], + [ + -77.793103, + 38.671307 + ], + [ + -77.792943, + 38.671571 + ], + [ + -77.792813, + 38.671755 + ], + [ + -77.792641, + 38.671968 + ], + [ + -77.792454, + 38.672174 + ], + [ + -77.792251, + 38.672371 + ], + [ + -77.791496, + 38.673047 + ], + [ + -77.791134, + 38.673372 + ], + [ + -77.790643, + 38.673809 + ], + [ + -77.789269, + 38.675032 + ], + [ + -77.788765, + 38.675507 + ], + [ + -77.788692, + 38.675576 + ], + [ + -77.788181, + 38.676104 + ], + [ + -77.787807, + 38.676549 + ], + [ + -77.787668, + 38.676743 + ], + [ + -77.787501, + 38.677031 + ], + [ + -77.78738, + 38.677265 + ], + [ + -77.78733, + 38.677383 + ], + [ + -77.787232, + 38.677659 + ], + [ + -77.787165, + 38.677911 + ], + [ + -77.787115, + 38.678177 + ], + [ + -77.787085, + 38.678445 + ], + [ + -77.787079, + 38.678552 + ], + [ + -77.787095, + 38.67913 + ], + [ + -77.787153, + 38.679798 + ], + [ + -77.787259, + 38.680924 + ], + [ + -77.787331, + 38.681886 + ], + [ + -77.787363, + 38.682419 + ], + [ + -77.787413, + 38.683635 + ], + [ + -77.787401, + 38.684203 + ], + [ + -77.787392, + 38.684611 + ], + [ + -77.78735, + 38.685019 + ], + [ + -77.787315, + 38.685264 + ], + [ + -77.787231, + 38.685728 + ], + [ + -77.787136, + 38.686251 + ], + [ + -77.787114, + 38.686332 + ], + [ + -77.78692, + 38.686986 + ], + [ + -77.786696, + 38.687619 + ], + [ + -77.786501, + 38.688074 + ], + [ + -77.786277, + 38.68855 + ], + [ + -77.786098, + 38.688888 + ], + [ + -77.785944, + 38.689154 + ], + [ + -77.785576, + 38.689748 + ], + [ + -77.784818, + 38.690938 + ], + [ + -77.784516, + 38.691425 + ], + [ + -77.784271, + 38.691807 + ], + [ + -77.783827, + 38.692506 + ], + [ + -77.783401, + 38.6932 + ], + [ + -77.783246, + 38.693444 + ], + [ + -77.782384, + 38.694802 + ], + [ + -77.782205, + 38.695084 + ], + [ + -77.781593, + 38.696059 + ], + [ + -77.781243, + 38.69667 + ], + [ + -77.78108, + 38.696994 + ], + [ + -77.780923, + 38.697347 + ], + [ + -77.780812, + 38.697637 + ], + [ + -77.780687, + 38.698004 + ], + [ + -77.780614, + 38.698231 + ], + [ + -77.780587, + 38.698314 + ], + [ + -77.780392, + 38.699181 + ], + [ + -77.780333, + 38.699659 + ], + [ + -77.780298, + 38.700094 + ], + [ + -77.780287, + 38.700389 + ], + [ + -77.780289, + 38.700757 + ], + [ + -77.780315, + 38.701452 + ], + [ + -77.780365, + 38.702797 + ], + [ + -77.780397, + 38.703509 + ], + [ + -77.780462, + 38.705131 + ], + [ + -77.780535, + 38.706895 + ], + [ + -77.780587, + 38.708144 + ], + [ + -77.780612, + 38.708911 + ], + [ + -77.780675, + 38.710324 + ], + [ + -77.780782, + 38.713019 + ], + [ + -77.780806, + 38.713639 + ], + [ + -77.780906, + 38.716128 + ], + [ + -77.780923, + 38.716557 + ], + [ + -77.780985, + 38.71812 + ], + [ + -77.781094, + 38.720811 + ], + [ + -77.781111, + 38.721348 + ], + [ + -77.78117, + 38.722771 + ], + [ + -77.781205, + 38.723428 + ], + [ + -77.781207, + 38.723933 + ], + [ + -77.781141, + 38.724638 + ], + [ + -77.781062, + 38.725028 + ], + [ + -77.780986, + 38.725313 + ], + [ + -77.780873, + 38.725651 + ], + [ + -77.780799, + 38.725838 + ], + [ + -77.780763, + 38.72593 + ], + [ + -77.780608, + 38.726258 + ], + [ + -77.780457, + 38.726537 + ], + [ + -77.78029, + 38.726814 + ], + [ + -77.780067, + 38.727137 + ], + [ + -77.779841, + 38.727426 + ], + [ + -77.779593, + 38.727712 + ], + [ + -77.779535, + 38.727773 + ], + [ + -77.779432, + 38.727882 + ], + [ + -77.779137, + 38.728163 + ], + [ + -77.778889, + 38.728379 + ], + [ + -77.778564, + 38.728638 + ], + [ + -77.777988, + 38.729064 + ], + [ + -77.777903, + 38.729128 + ], + [ + -77.777813, + 38.729195 + ], + [ + -77.777751, + 38.72924 + ], + [ + -77.777544, + 38.729395 + ], + [ + -77.776507, + 38.73018 + ], + [ + -77.77534, + 38.731069 + ], + [ + -77.775049, + 38.73127 + ], + [ + -77.774364, + 38.73177 + ], + [ + -77.774051, + 38.732009 + ], + [ + -77.773303, + 38.732554 + ], + [ + -77.772496, + 38.733155 + ], + [ + -77.772444, + 38.733192 + ], + [ + -77.771424, + 38.733941 + ], + [ + -77.770375, + 38.73472 + ], + [ + -77.769774, + 38.735166 + ], + [ + -77.766501, + 38.737595 + ], + [ + -77.766092, + 38.7379 + ], + [ + -77.766013, + 38.737957 + ], + [ + -77.764613, + 38.738973 + ], + [ + -77.763699, + 38.739647 + ], + [ + -77.760294, + 38.742188 + ], + [ + -77.759475, + 38.742805 + ], + [ + -77.758292, + 38.743704 + ], + [ + -77.757242, + 38.744507 + ], + [ + -77.756734, + 38.744888 + ], + [ + -77.75607, + 38.745394 + ], + [ + -77.755332, + 38.74595 + ], + [ + -77.753869, + 38.747051 + ], + [ + -77.753512, + 38.747317 + ], + [ + -77.752239, + 38.748266 + ], + [ + -77.751486, + 38.748835 + ], + [ + -77.749304, + 38.750477 + ], + [ + -77.747696, + 38.751677 + ], + [ + -77.747175, + 38.752069 + ], + [ + -77.746636, + 38.752468 + ], + [ + -77.746089, + 38.752858 + ], + [ + -77.745719, + 38.753113 + ], + [ + -77.745109, + 38.753534 + ], + [ + -77.744529, + 38.753946 + ], + [ + -77.744441, + 38.754016 + ], + [ + -77.743143, + 38.755039 + ], + [ + -77.742369, + 38.755648 + ], + [ + -77.741019, + 38.756723 + ], + [ + -77.740302, + 38.757289 + ], + [ + -77.74012, + 38.757439 + ], + [ + -77.739869, + 38.757633 + ], + [ + -77.739452, + 38.757933 + ], + [ + -77.738896, + 38.758325 + ], + [ + -77.738458, + 38.758616 + ], + [ + -77.737994, + 38.758912 + ], + [ + -77.737675, + 38.759109 + ], + [ + -77.736928, + 38.759546 + ], + [ + -77.736529, + 38.759764 + ], + [ + -77.73598, + 38.760062 + ], + [ + -77.735512, + 38.760302 + ], + [ + -77.734641, + 38.760749 + ], + [ + -77.731871, + 38.762168 + ], + [ + -77.730354, + 38.762946 + ], + [ + -77.726563, + 38.764904 + ], + [ + -77.726297, + 38.765042 + ], + [ + -77.725494, + 38.765462 + ], + [ + -77.724993, + 38.765717 + ], + [ + -77.724283, + 38.76606 + ], + [ + -77.724155, + 38.766114 + ], + [ + -77.723683, + 38.766274 + ], + [ + -77.723631, + 38.766287 + ], + [ + -77.723461, + 38.76633 + ], + [ + -77.723208, + 38.766384 + ], + [ + -77.722948, + 38.766425 + ], + [ + -77.722732, + 38.766449 + ], + [ + -77.722439, + 38.766466 + ], + [ + -77.722204, + 38.76647 + ], + [ + -77.721761, + 38.76645 + ], + [ + -77.721338, + 38.766416 + ], + [ + -77.720827, + 38.766373 + ], + [ + -77.71958, + 38.766268 + ], + [ + -77.718945, + 38.766226 + ], + [ + -77.71829, + 38.766214 + ], + [ + -77.717886, + 38.766231 + ], + [ + -77.717644, + 38.766248 + ], + [ + -77.717238, + 38.766296 + ], + [ + -77.716986, + 38.766333 + ], + [ + -77.716478, + 38.766426 + ], + [ + -77.715933, + 38.766539 + ], + [ + -77.71313, + 38.767126 + ], + [ + -77.71253, + 38.76725 + ], + [ + -77.711446, + 38.767475 + ], + [ + -77.711213, + 38.767521 + ], + [ + -77.709832, + 38.76781 + ], + [ + -77.709246, + 38.767933 + ], + [ + -77.708584, + 38.768078 + ], + [ + -77.708134, + 38.768177 + ], + [ + -77.707984, + 38.768211 + ], + [ + -77.707651, + 38.768287 + ], + [ + -77.707208, + 38.768389 + ], + [ + -77.707037, + 38.768429 + ], + [ + -77.706966, + 38.768445 + ], + [ + -77.706604, + 38.768529 + ], + [ + -77.705724, + 38.768733 + ], + [ + -77.704884, + 38.768928 + ], + [ + -77.704008, + 38.769125 + ], + [ + -77.703413, + 38.769266 + ], + [ + -77.703044, + 38.769359 + ], + [ + -77.702667, + 38.769454 + ], + [ + -77.702289, + 38.769565 + ], + [ + -77.701922, + 38.769687 + ], + [ + -77.701705, + 38.769766 + ], + [ + -77.701294, + 38.769925 + ], + [ + -77.700381, + 38.770277 + ], + [ + -77.698624, + 38.770957 + ], + [ + -77.69792, + 38.771222 + ], + [ + -77.696779, + 38.771656 + ], + [ + -77.696286, + 38.771839 + ], + [ + -77.694688, + 38.772451 + ], + [ + -77.693388, + 38.772942 + ], + [ + -77.69338, + 38.772945 + ], + [ + -77.69299, + 38.773092 + ], + [ + -77.691828, + 38.773541 + ], + [ + -77.689985, + 38.774273 + ], + [ + -77.689184, + 38.774593 + ], + [ + -77.687947, + 38.775099 + ], + [ + -77.68652, + 38.775696 + ], + [ + -77.686093, + 38.775875 + ], + [ + -77.685013, + 38.776323 + ], + [ + -77.684548, + 38.776508 + ], + [ + -77.683617, + 38.77688 + ], + [ + -77.682281, + 38.77742 + ], + [ + -77.681906, + 38.77757 + ], + [ + -77.680152, + 38.778273 + ], + [ + -77.680071, + 38.778309 + ], + [ + -77.679964, + 38.778348 + ], + [ + -77.67944, + 38.778559 + ], + [ + -77.679135, + 38.778682 + ], + [ + -77.679008, + 38.778733 + ], + [ + -77.678765, + 38.778831 + ], + [ + -77.678322, + 38.779011 + ], + [ + -77.677302, + 38.779417 + ], + [ + -77.677036, + 38.779514 + ], + [ + -77.676871, + 38.779569 + ], + [ + -77.676375, + 38.779711 + ], + [ + -77.675903, + 38.779834 + ], + [ + -77.675739, + 38.779874 + ], + [ + -77.675282, + 38.779966 + ], + [ + -77.675165, + 38.77999 + ], + [ + -77.673681, + 38.780291 + ], + [ + -77.67245, + 38.780538 + ], + [ + -77.671784, + 38.780666 + ], + [ + -77.671623, + 38.780699 + ], + [ + -77.671392, + 38.780752 + ], + [ + -77.670977, + 38.780857 + ], + [ + -77.67067, + 38.780949 + ], + [ + -77.669909, + 38.781181 + ], + [ + -77.669755, + 38.781229 + ], + [ + -77.668691, + 38.781557 + ], + [ + -77.668105, + 38.781729 + ], + [ + -77.66717, + 38.781984 + ], + [ + -77.665556, + 38.7824 + ], + [ + -77.665397, + 38.782443 + ], + [ + -77.66509, + 38.782528 + ], + [ + -77.663117, + 38.783041 + ], + [ + -77.662729, + 38.783142 + ], + [ + -77.658982, + 38.784122 + ], + [ + -77.658234, + 38.784318 + ], + [ + -77.657487, + 38.784515 + ], + [ + -77.656903, + 38.784668 + ], + [ + -77.656444, + 38.784785 + ], + [ + -77.655772, + 38.784954 + ], + [ + -77.655488, + 38.785028 + ], + [ + -77.654149, + 38.78538 + ], + [ + -77.653073, + 38.785665 + ], + [ + -77.652817, + 38.785732 + ], + [ + -77.652723, + 38.785757 + ], + [ + -77.652335, + 38.78586 + ], + [ + -77.650432, + 38.786358 + ], + [ + -77.650292, + 38.786394 + ], + [ + -77.648546, + 38.786845 + ], + [ + -77.648132, + 38.786953 + ], + [ + -77.6471, + 38.787217 + ], + [ + -77.646912, + 38.787266 + ], + [ + -77.646792, + 38.787296 + ], + [ + -77.646475, + 38.787378 + ], + [ + -77.643862, + 38.788066 + ], + [ + -77.643514, + 38.788151 + ], + [ + -77.642956, + 38.788288 + ], + [ + -77.641845, + 38.788545 + ], + [ + -77.641256, + 38.788678 + ], + [ + -77.640668, + 38.788812 + ], + [ + -77.637878, + 38.789456 + ], + [ + -77.637724, + 38.789491 + ], + [ + -77.635026, + 38.790112 + ], + [ + -77.633026, + 38.790572 + ], + [ + -77.631672, + 38.790883 + ], + [ + -77.630391, + 38.791179 + ], + [ + -77.630168, + 38.791231 + ], + [ + -77.629412, + 38.791414 + ], + [ + -77.629006, + 38.791523 + ], + [ + -77.628982, + 38.791529 + ], + [ + -77.628275, + 38.791722 + ], + [ + -77.626219, + 38.792284 + ], + [ + -77.625465, + 38.792483 + ], + [ + -77.624741, + 38.792675 + ], + [ + -77.624567, + 38.792721 + ], + [ + -77.624468, + 38.792748 + ], + [ + -77.624067, + 38.792856 + ], + [ + -77.622821, + 38.793191 + ], + [ + -77.622323, + 38.793326 + ], + [ + -77.622182, + 38.793359 + ], + [ + -77.62157, + 38.793529 + ], + [ + -77.621412, + 38.793572 + ], + [ + -77.620477, + 38.793825 + ], + [ + -77.620443, + 38.793835 + ], + [ + -77.619193, + 38.794171 + ], + [ + -77.619018, + 38.794213 + ], + [ + -77.617763, + 38.794556 + ], + [ + -77.617092, + 38.79473 + ], + [ + -77.616747, + 38.794832 + ], + [ + -77.614017, + 38.7956 + ], + [ + -77.613309, + 38.7958 + ], + [ + -77.613097, + 38.795859 + ], + [ + -77.611965, + 38.796178 + ], + [ + -77.611011, + 38.796432 + ], + [ + -77.609519, + 38.79683 + ], + [ + -77.609066, + 38.796955 + ], + [ + -77.60887, + 38.79701 + ], + [ + -77.608124, + 38.797223 + ], + [ + -77.607861, + 38.79729 + ], + [ + -77.60659, + 38.797608 + ], + [ + -77.604759, + 38.798106 + ], + [ + -77.603341, + 38.798433 + ], + [ + -77.602615, + 38.798623 + ], + [ + -77.60217, + 38.798681 + ], + [ + -77.60178, + 38.798726 + ], + [ + -77.60159, + 38.798739 + ], + [ + -77.601338, + 38.79876 + ], + [ + -77.601043, + 38.798748 + ], + [ + -77.600761, + 38.798726 + ], + [ + -77.600475, + 38.798685 + ], + [ + -77.600088, + 38.798626 + ], + [ + -77.598701, + 38.798329 + ], + [ + -77.598447, + 38.798288 + ], + [ + -77.598168, + 38.798263 + ], + [ + -77.597945, + 38.798266 + ], + [ + -77.597733, + 38.798267 + ], + [ + -77.597515, + 38.798295 + ], + [ + -77.597295, + 38.798329 + ], + [ + -77.59709, + 38.79838 + ], + [ + -77.596838, + 38.798472 + ], + [ + -77.596056, + 38.79873 + ], + [ + -77.595792, + 38.798802 + ], + [ + -77.595557, + 38.798839 + ], + [ + -77.595321, + 38.798872 + ], + [ + -77.595123, + 38.798893 + ], + [ + -77.594903, + 38.798906 + ], + [ + -77.594606, + 38.798902 + ], + [ + -77.592349, + 38.798571 + ], + [ + -77.589853, + 38.798246 + ], + [ + -77.587564, + 38.797961 + ], + [ + -77.584659, + 38.797708 + ], + [ + -77.583518, + 38.797592 + ], + [ + -77.582596, + 38.797507 + ], + [ + -77.581727, + 38.797465 + ], + [ + -77.580645, + 38.797422 + ], + [ + -77.579853, + 38.797408 + ], + [ + -77.579381, + 38.797391 + ], + [ + -77.579328, + 38.797391 + ], + [ + -77.578346, + 38.797391 + ], + [ + -77.576989, + 38.797404 + ], + [ + -77.576007, + 38.797446 + ], + [ + -77.575373, + 38.797504 + ], + [ + -77.571144, + 38.797797 + ], + [ + -77.569287, + 38.79792 + ], + [ + -77.56555, + 38.798187 + ], + [ + -77.561659, + 38.798447 + ], + [ + -77.555891, + 38.7988 + ], + [ + -77.553755, + 38.798951 + ], + [ + -77.550887, + 38.799152 + ], + [ + -77.550295, + 38.799193 + ], + [ + -77.548407, + 38.799331 + ], + [ + -77.54595, + 38.799494 + ], + [ + -77.541063, + 38.799812 + ], + [ + -77.539341, + 38.799946 + ], + [ + -77.536546, + 38.800151 + ], + [ + -77.532281, + 38.800448 + ], + [ + -77.529135, + 38.800667 + ], + [ + -77.525861, + 38.800895 + ], + [ + -77.523173, + 38.801079 + ], + [ + -77.520134, + 38.801324 + ], + [ + -77.519426, + 38.801374 + ], + [ + -77.518588, + 38.801436 + ], + [ + -77.514662, + 38.801698 + ], + [ + -77.51275, + 38.801833 + ], + [ + -77.512257, + 38.801883 + ], + [ + -77.51176, + 38.801949 + ], + [ + -77.511242, + 38.802033 + ], + [ + -77.510728, + 38.802133 + ], + [ + -77.510237, + 38.802245 + ], + [ + -77.509757, + 38.802371 + ], + [ + -77.509283, + 38.802511 + ], + [ + -77.508762, + 38.802686 + ], + [ + -77.508249, + 38.802874 + ], + [ + -77.503238, + 38.804849 + ], + [ + -77.501867, + 38.805383 + ], + [ + -77.49854, + 38.806696 + ], + [ + -77.492854, + 38.808929 + ], + [ + -77.492586, + 38.809039 + ], + [ + -77.491408, + 38.809499 + ], + [ + -77.490728, + 38.809768 + ], + [ + -77.490387, + 38.809903 + ], + [ + -77.489846, + 38.810125 + ], + [ + -77.48976, + 38.810159 + ], + [ + -77.489588, + 38.810228 + ], + [ + -77.488128, + 38.810814 + ], + [ + -77.487975, + 38.810876 + ], + [ + -77.487938, + 38.810891 + ], + [ + -77.487614, + 38.811027 + ], + [ + -77.486889, + 38.811312 + ], + [ + -77.485515, + 38.811841 + ], + [ + -77.481021, + 38.813606 + ], + [ + -77.480031, + 38.813987 + ], + [ + -77.479528, + 38.81418 + ], + [ + -77.478278, + 38.814671 + ], + [ + -77.477784, + 38.814859 + ], + [ + -77.476696, + 38.815283 + ], + [ + -77.476308, + 38.815444 + ], + [ + -77.470849, + 38.817587 + ], + [ + -77.469997, + 38.817934 + ], + [ + -77.469107, + 38.818314 + ], + [ + -77.468263, + 38.818692 + ], + [ + -77.467788, + 38.818912 + ], + [ + -77.466824, + 38.819384 + ], + [ + -77.466481, + 38.819559 + ], + [ + -77.465978, + 38.819814 + ], + [ + -77.465888, + 38.819862 + ], + [ + -77.465082, + 38.820299 + ], + [ + -77.464689, + 38.820516 + ], + [ + -77.463916, + 38.820976 + ], + [ + -77.463568, + 38.821184 + ], + [ + -77.462817, + 38.82165 + ], + [ + -77.462169, + 38.822067 + ], + [ + -77.461524, + 38.822499 + ], + [ + -77.460742, + 38.823046 + ], + [ + -77.459971, + 38.823615 + ], + [ + -77.459453, + 38.824009 + ], + [ + -77.458829, + 38.824505 + ], + [ + -77.458041, + 38.825157 + ], + [ + -77.457989, + 38.825199 + ], + [ + -77.457719, + 38.825436 + ], + [ + -77.457456, + 38.825667 + ], + [ + -77.457174, + 38.825914 + ], + [ + -77.456485, + 38.82655 + ], + [ + -77.455925, + 38.827089 + ], + [ + -77.455609, + 38.827408 + ], + [ + -77.455354, + 38.827664 + ], + [ + -77.455286, + 38.827736 + ], + [ + -77.454763, + 38.828288 + ], + [ + -77.453687, + 38.829492 + ], + [ + -77.45117, + 38.83231 + ], + [ + -77.450091, + 38.833546 + ], + [ + -77.449603, + 38.834072 + ], + [ + -77.4484, + 38.835411 + ], + [ + -77.448317, + 38.835496 + ], + [ + -77.447073, + 38.836883 + ], + [ + -77.446568, + 38.837456 + ], + [ + -77.444983, + 38.839239 + ], + [ + -77.444962, + 38.839261 + ], + [ + -77.44448, + 38.839771 + ], + [ + -77.443925, + 38.840374 + ], + [ + -77.443121, + 38.841151 + ], + [ + -77.442523, + 38.841683 + ], + [ + -77.442048, + 38.842083 + ], + [ + -77.441563, + 38.842472 + ], + [ + -77.44121, + 38.842729 + ], + [ + -77.440835, + 38.842989 + ], + [ + -77.440353, + 38.843301 + ], + [ + -77.439357, + 38.843895 + ], + [ + -77.438808, + 38.844189 + ], + [ + -77.438412, + 38.844388 + ], + [ + -77.438154, + 38.844513 + ], + [ + -77.437585, + 38.844773 + ], + [ + -77.43695, + 38.845042 + ], + [ + -77.436125, + 38.845358 + ], + [ + -77.435386, + 38.845611 + ], + [ + -77.434841, + 38.845778 + ], + [ + -77.434461, + 38.845886 + ], + [ + -77.434065, + 38.845989 + ], + [ + -77.433588, + 38.846102 + ], + [ + -77.432595, + 38.846311 + ], + [ + -77.431976, + 38.846424 + ], + [ + -77.431894, + 38.846439 + ], + [ + -77.43166, + 38.846482 + ], + [ + -77.43013, + 38.84677 + ], + [ + -77.428638, + 38.847052 + ], + [ + -77.427672, + 38.847201 + ], + [ + -77.426895, + 38.847336 + ], + [ + -77.426613, + 38.847387 + ], + [ + -77.423954, + 38.847868 + ], + [ + -77.42318, + 38.84802 + ], + [ + -77.422578, + 38.848129 + ], + [ + -77.421734, + 38.848284 + ], + [ + -77.419777, + 38.84865 + ], + [ + -77.418032, + 38.848977 + ], + [ + -77.416532, + 38.849246 + ], + [ + -77.415198, + 38.849482 + ], + [ + -77.414151, + 38.849672 + ], + [ + -77.413692, + 38.849756 + ], + [ + -77.413004, + 38.849886 + ], + [ + -77.41025, + 38.850388 + ], + [ + -77.408348, + 38.850725 + ], + [ + -77.406003, + 38.851167 + ], + [ + -77.404553, + 38.851419 + ], + [ + -77.403103, + 38.851676 + ], + [ + -77.402433, + 38.851803 + ], + [ + -77.401513, + 38.851954 + ], + [ + -77.399882, + 38.852249 + ], + [ + -77.399048, + 38.852319 + ], + [ + -77.398718, + 38.852375 + ], + [ + -77.397996, + 38.852492 + ], + [ + -77.397318, + 38.852624 + ], + [ + -77.396752, + 38.852714 + ], + [ + -77.396348, + 38.852749 + ], + [ + -77.395658, + 38.852767 + ], + [ + -77.395009, + 38.8528 + ], + [ + -77.394695, + 38.852837 + ], + [ + -77.39433, + 38.852891 + ], + [ + -77.393802, + 38.852984 + ], + [ + -77.393126, + 38.853114 + ], + [ + -77.392725, + 38.85318 + ], + [ + -77.392095, + 38.853297 + ], + [ + -77.391904, + 38.853339 + ], + [ + -77.391134, + 38.853478 + ], + [ + -77.389836, + 38.853723 + ], + [ + -77.389215, + 38.853845 + ], + [ + -77.38892, + 38.853895 + ], + [ + -77.388716, + 38.853941 + ], + [ + -77.388024, + 38.854062 + ], + [ + -77.387165, + 38.854196 + ], + [ + -77.386771, + 38.854162 + ], + [ + -77.386529, + 38.854111 + ], + [ + -77.386343, + 38.854055 + ], + [ + -77.386187, + 38.853987 + ], + [ + -77.386127, + 38.853954 + ], + [ + -77.386079, + 38.85392 + ], + [ + -77.385986, + 38.853839 + ], + [ + -77.385938, + 38.853785 + ], + [ + -77.385904, + 38.853738 + ], + [ + -77.385849, + 38.853638 + ], + [ + -77.385829, + 38.853585 + ], + [ + -77.385812, + 38.853521 + ], + [ + -77.3858, + 38.853402 + ], + [ + -77.385805, + 38.853336 + ], + [ + -77.385817, + 38.853271 + ], + [ + -77.38586, + 38.853155 + ], + [ + -77.385888, + 38.853105 + ], + [ + -77.385929, + 38.853047 + ], + [ + -77.38601, + 38.852959 + ], + [ + -77.386068, + 38.85291 + ], + [ + -77.386119, + 38.852873 + ], + [ + -77.386233, + 38.85281 + ], + [ + -77.386292, + 38.852784 + ], + [ + -77.386367, + 38.852757 + ], + [ + -77.386444, + 38.852736 + ], + [ + -77.386551, + 38.852715 + ], + [ + -77.386695, + 38.852705 + ], + [ + -77.38684, + 38.852711 + ], + [ + -77.386899, + 38.85272 + ], + [ + -77.386985, + 38.852739 + ], + [ + -77.387131, + 38.852784 + ], + [ + -77.387234, + 38.852827 + ], + [ + -77.387327, + 38.852872 + ], + [ + -77.387501, + 38.852977 + ], + [ + -77.387596, + 38.853046 + ], + [ + -77.387689, + 38.853125 + ], + [ + -77.387869, + 38.853301 + ], + [ + -77.388005, + 38.8535 + ], + [ + -77.388211, + 38.853861 + ], + [ + -77.388248, + 38.853958 + ], + [ + -77.38834, + 38.854202 + ], + [ + -77.388434, + 38.854509 + ], + [ + -77.388512, + 38.85483 + ], + [ + -77.388556, + 38.855045 + ], + [ + -77.388563, + 38.855077 + ], + [ + -77.388615, + 38.855398 + ], + [ + -77.38864, + 38.855726 + ], + [ + -77.388657, + 38.85606 + ], + [ + -77.388632, + 38.856494 + ], + [ + -77.388606, + 38.856728 + ], + [ + -77.388546, + 38.857062 + ], + [ + -77.388494, + 38.857283 + ], + [ + -77.388383, + 38.85759 + ], + [ + -77.388245, + 38.857898 + ], + [ + -77.387962, + 38.858392 + ], + [ + -77.387722, + 38.858713 + ], + [ + -77.387587, + 38.858842 + ], + [ + -77.387448, + 38.858992 + ], + [ + -77.38738, + 38.859049 + ], + [ + -77.387049, + 38.859315 + ], + [ + -77.387001, + 38.859355 + ], + [ + -77.386572, + 38.859616 + ], + [ + -77.386057, + 38.859876 + ], + [ + -77.385696, + 38.860037 + ], + [ + -77.385104, + 38.860297 + ], + [ + -77.384246, + 38.860678 + ], + [ + -77.383311, + 38.861091 + ], + [ + -77.382484, + 38.861549 + ], + [ + -77.381927, + 38.861964 + ], + [ + -77.381649, + 38.862271 + ], + [ + -77.381472, + 38.862656 + ], + [ + -77.38114, + 38.86254 + ], + [ + -77.380676, + 38.862336 + ], + [ + -77.380373, + 38.862167 + ], + [ + -77.380144, + 38.862016 + ], + [ + -77.379932, + 38.861857 + ], + [ + -77.379724, + 38.861669 + ], + [ + -77.379541, + 38.861495 + ], + [ + -77.379299, + 38.861256 + ], + [ + -77.379174, + 38.86114 + ], + [ + -77.378963, + 38.86097 + ], + [ + -77.378779, + 38.860822 + ], + [ + -77.378622, + 38.860715 + ], + [ + -77.378375, + 38.860584 + ], + [ + -77.37825, + 38.860526 + ], + [ + -77.377901, + 38.860354 + ], + [ + -77.377674, + 38.860258 + ], + [ + -77.377503, + 38.860194 + ], + [ + -77.376982, + 38.860031 + ], + [ + -77.376724, + 38.859968 + ], + [ + -77.376465, + 38.859908 + ], + [ + -77.376139, + 38.859843 + ], + [ + -77.375957, + 38.859809 + ], + [ + -77.375449, + 38.859704 + ], + [ + -77.37477, + 38.859591 + ], + [ + -77.373992, + 38.859482 + ], + [ + -77.373385, + 38.859411 + ], + [ + -77.373319, + 38.859405 + ], + [ + -77.371684, + 38.859251 + ], + [ + -77.371331, + 38.859226 + ], + [ + -77.37112, + 38.859211 + ], + [ + -77.371099, + 38.85942 + ], + [ + -77.371098, + 38.859619 + ], + [ + -77.371033, + 38.860102 + ], + [ + -77.370993, + 38.860407 + ], + [ + -77.370953, + 38.86073 + ], + [ + -77.370894, + 38.86095 + ], + [ + -77.370816, + 38.861165 + ], + [ + -77.370757, + 38.861296 + ], + [ + -77.370665, + 38.861443 + ], + [ + -77.370575, + 38.861587 + ], + [ + -77.370384, + 38.861875 + ], + [ + -77.370116, + 38.862301 + ], + [ + -77.369869, + 38.862675 + ], + [ + -77.369695, + 38.862937 + ], + [ + -77.369553, + 38.863149 + ], + [ + -77.369282, + 38.863562 + ], + [ + -77.369075, + 38.863878 + ], + [ + -77.369003, + 38.863978 + ], + [ + -77.368943, + 38.864053 + ], + [ + -77.368872, + 38.864143 + ], + [ + -77.368754, + 38.864281 + ], + [ + -77.368648, + 38.864383 + ], + [ + -77.368548, + 38.86448 + ], + [ + -77.368413, + 38.864611 + ], + [ + -77.368244, + 38.864751 + ], + [ + -77.368139, + 38.86483 + ], + [ + -77.368096, + 38.864859 + ], + [ + -77.367962, + 38.864949 + ], + [ + -77.367753, + 38.865087 + ], + [ + -77.36752, + 38.865221 + ], + [ + -77.36716, + 38.865425 + ], + [ + -77.366916, + 38.865565 + ], + [ + -77.366749, + 38.865664 + ], + [ + -77.366693, + 38.865696 + ], + [ + -77.366603, + 38.865757 + ], + [ + -77.36621, + 38.865941 + ], + [ + -77.365964, + 38.866096 + ], + [ + -77.365677, + 38.866275 + ], + [ + -77.365412, + 38.86648 + ], + [ + -77.365205, + 38.866666 + ], + [ + -77.365092, + 38.866802 + ], + [ + -77.364926, + 38.867027 + ], + [ + -77.364819, + 38.867215 + ], + [ + -77.364795, + 38.867271 + ], + [ + -77.364687, + 38.867526 + ], + [ + -77.364631, + 38.867731 + ], + [ + -77.364602, + 38.867885 + ], + [ + -77.364585, + 38.868103 + ], + [ + -77.364599, + 38.86833 + ], + [ + -77.364602, + 38.868416 + ], + [ + -77.364653, + 38.868646 + ], + [ + -77.364749, + 38.868903 + ], + [ + -77.364915, + 38.869232 + ], + [ + -77.365031, + 38.869489 + ], + [ + -77.36519, + 38.869811 + ], + [ + -77.365353, + 38.870145 + ], + [ + -77.365541, + 38.870577 + ], + [ + -77.365608, + 38.870714 + ], + [ + -77.36564, + 38.87078 + ], + [ + -77.365767, + 38.871048 + ], + [ + -77.365858, + 38.871232 + ], + [ + -77.365914, + 38.871335 + ], + [ + -77.366032, + 38.871546 + ], + [ + -77.366196, + 38.871805 + ], + [ + -77.366355, + 38.872046 + ], + [ + -77.366507, + 38.872259 + ], + [ + -77.366678, + 38.872501 + ], + [ + -77.366856, + 38.872754 + ], + [ + -77.366963, + 38.872925 + ], + [ + -77.367022, + 38.873039 + ], + [ + -77.367081, + 38.873163 + ], + [ + -77.367145, + 38.873344 + ], + [ + -77.367182, + 38.87346 + ], + [ + -77.367204, + 38.873534 + ], + [ + -77.367233, + 38.873695 + ], + [ + -77.36726, + 38.873889 + ], + [ + -77.367273, + 38.874003 + ], + [ + -77.367165, + 38.874012 + ], + [ + -77.366994, + 38.874012 + ], + [ + -77.366779, + 38.873999 + ], + [ + -77.366666, + 38.873986 + ], + [ + -77.366501, + 38.873968 + ], + [ + -77.366313, + 38.873934 + ], + [ + -77.366155, + 38.873897 + ], + [ + -77.365932, + 38.873832 + ], + [ + -77.36562, + 38.873728 + ], + [ + -77.365375, + 38.873647 + ], + [ + -77.36552, + 38.873752 + ], + [ + -77.365645, + 38.873824 + ], + [ + -77.365759, + 38.873875 + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -79.0850830078125, + 37.60117623656667 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -77.7667236328125, + 38.65119833229951 + ] + } + }, + { + "type": "Feature", + "properties": { + "stroke": "#f0f", + "stroke-width": 6 + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -79.049412, + 37.578608 + ], + [ + -79.049412, + 37.578608 + ], + [ + -79.049047, + 37.578931 + ], + [ + -79.047001, + 37.580602 + ], + [ + -79.046515, + 37.580994 + ], + [ + -79.046166, + 37.58126 + ], + [ + -79.045909, + 37.581455 + ], + [ + -79.04561, + 37.58167 + ], + [ + -79.045264, + 37.581887 + ], + [ + -79.044961, + 37.582077 + ], + [ + -79.044149, + 37.582573 + ], + [ + -79.04353, + 37.582927 + ], + [ + -79.04291, + 37.58327 + ], + [ + -79.042129, + 37.58371 + ], + [ + -79.041873, + 37.583864 + ], + [ + -79.041806, + 37.58391 + ], + [ + -79.041621, + 37.584017 + ], + [ + -79.041414, + 37.584155 + ], + [ + -79.041178, + 37.58431 + ], + [ + -79.040635, + 37.584689 + ], + [ + -79.039894, + 37.585255 + ], + [ + -79.039608, + 37.585491 + ], + [ + -79.03912, + 37.585904 + ], + [ + -79.038845, + 37.586155 + ], + [ + -79.038474, + 37.586513 + ], + [ + -79.03781, + 37.587198 + ], + [ + -79.037358, + 37.587719 + ], + [ + -79.037086, + 37.588056 + ], + [ + -79.036877, + 37.588331 + ], + [ + -79.036498, + 37.588836 + ], + [ + -79.036258, + 37.589205 + ], + [ + -79.035926, + 37.589739 + ], + [ + -79.034645, + 37.591992 + ], + [ + -79.034482, + 37.592286 + ], + [ + -79.034097, + 37.592957 + ], + [ + -79.033913, + 37.593255 + ], + [ + -79.033669, + 37.593669 + ], + [ + -79.033006, + 37.594819 + ], + [ + -79.032654, + 37.595452 + ], + [ + -79.032044, + 37.596522 + ], + [ + -79.031678, + 37.597159 + ], + [ + -79.031353, + 37.597735 + ], + [ + -79.03004, + 37.600074 + ], + [ + -79.029644, + 37.600763 + ], + [ + -79.028963, + 37.601951 + ], + [ + -79.028685, + 37.602397 + ], + [ + -79.02851, + 37.602662 + ], + [ + -79.028221, + 37.603043 + ], + [ + -79.027978, + 37.603341 + ], + [ + -79.027692, + 37.60368 + ], + [ + -79.027548, + 37.60383 + ], + [ + -79.027306, + 37.604072 + ], + [ + -79.027105, + 37.604269 + ], + [ + -79.02697, + 37.604392 + ], + [ + -79.026652, + 37.60468 + ], + [ + -79.026083, + 37.605207 + ], + [ + -79.026036, + 37.60525 + ], + [ + -79.025989, + 37.605294 + ], + [ + -79.025872, + 37.605402 + ], + [ + -79.02555, + 37.605685 + ], + [ + -79.025303, + 37.605893 + ], + [ + -79.025239, + 37.605951 + ], + [ + -79.025075, + 37.606102 + ], + [ + -79.024795, + 37.606358 + ], + [ + -79.024408, + 37.606702 + ], + [ + -79.024072, + 37.607013 + ], + [ + -79.024053, + 37.607031 + ], + [ + -79.023787, + 37.607264 + ], + [ + -79.023498, + 37.607516 + ], + [ + -79.023027, + 37.607911 + ], + [ + -79.022811, + 37.60807 + ], + [ + -79.022583, + 37.608218 + ], + [ + -79.022393, + 37.608329 + ], + [ + -79.022103, + 37.608478 + ], + [ + -79.021864, + 37.608585 + ], + [ + -79.021424, + 37.608752 + ], + [ + -79.020855, + 37.608965 + ], + [ + -79.020271, + 37.609195 + ], + [ + -79.020171, + 37.609236 + ], + [ + -79.019921, + 37.609348 + ], + [ + -79.019569, + 37.609526 + ], + [ + -79.019341, + 37.609661 + ], + [ + -79.019134, + 37.609801 + ], + [ + -79.018938, + 37.609951 + ], + [ + -79.018736, + 37.61013 + ], + [ + -79.018557, + 37.610318 + ], + [ + -79.018408, + 37.6105 + ], + [ + -79.018273, + 37.610689 + ], + [ + -79.018177, + 37.610845 + ], + [ + -79.018077, + 37.611005 + ], + [ + -79.017942, + 37.61127 + ], + [ + -79.01775, + 37.611733 + ], + [ + -79.017583, + 37.612195 + ], + [ + -79.017453, + 37.612536 + ], + [ + -79.01736, + 37.612779 + ], + [ + -79.017077, + 37.613518 + ], + [ + -79.016316, + 37.615651 + ], + [ + -79.016211, + 37.615921 + ], + [ + -79.015957, + 37.616661 + ], + [ + -79.015442, + 37.618041 + ], + [ + -79.015171, + 37.618767 + ], + [ + -79.015044, + 37.619085 + ], + [ + -79.014896, + 37.619401 + ], + [ + -79.014725, + 37.619699 + ], + [ + -79.014609, + 37.619891 + ], + [ + -79.014507, + 37.620046 + ], + [ + -79.014326, + 37.620291 + ], + [ + -79.014076, + 37.620611 + ], + [ + -79.013882, + 37.620808 + ], + [ + -79.013583, + 37.621079 + ], + [ + -79.012998, + 37.621504 + ], + [ + -79.01238, + 37.621893 + ], + [ + -79.010646, + 37.622959 + ], + [ + -79.01003, + 37.623323 + ], + [ + -79.009112, + 37.623886 + ], + [ + -79.007841, + 37.62468 + ], + [ + -79.007669, + 37.624786 + ], + [ + -79.00613, + 37.625753 + ], + [ + -79.00574, + 37.625992 + ], + [ + -79.004933, + 37.626484 + ], + [ + -79.004251, + 37.626912 + ], + [ + -79.004139, + 37.626981 + ], + [ + -79.003154, + 37.627592 + ], + [ + -79.001641, + 37.628516 + ], + [ + -79.001111, + 37.628835 + ], + [ + -79.00072, + 37.62907 + ], + [ + -79.000623, + 37.62914 + ], + [ + -79.000217, + 37.629394 + ], + [ + -78.998912, + 37.630202 + ], + [ + -78.998196, + 37.630645 + ], + [ + -78.997598, + 37.631025 + ], + [ + -78.997526, + 37.631071 + ], + [ + -78.997241, + 37.631274 + ], + [ + -78.996875, + 37.631534 + ], + [ + -78.996217, + 37.63205 + ], + [ + -78.995656, + 37.632525 + ], + [ + -78.995017, + 37.633129 + ], + [ + -78.994464, + 37.633668 + ], + [ + -78.993794, + 37.634338 + ], + [ + -78.992582, + 37.635539 + ], + [ + -78.99241, + 37.635715 + ], + [ + -78.992112, + 37.636 + ], + [ + -78.991971, + 37.636127 + ], + [ + -78.991598, + 37.636454 + ], + [ + -78.991319, + 37.636676 + ], + [ + -78.991111, + 37.636827 + ], + [ + -78.990724, + 37.637089 + ], + [ + -78.990344, + 37.637324 + ], + [ + -78.989967, + 37.637537 + ], + [ + -78.989578, + 37.637737 + ], + [ + -78.988855, + 37.638052 + ], + [ + -78.98807, + 37.638382 + ], + [ + -78.986736, + 37.63892 + ], + [ + -78.986454, + 37.639034 + ], + [ + -78.985803, + 37.639316 + ], + [ + -78.984897, + 37.639687 + ], + [ + -78.98388, + 37.640096 + ], + [ + -78.983117, + 37.640414 + ], + [ + -78.982726, + 37.640573 + ], + [ + -78.981774, + 37.640959 + ], + [ + -78.979687, + 37.64182 + ], + [ + -78.978231, + 37.642417 + ], + [ + -78.977005, + 37.64291 + ], + [ + -78.97646, + 37.643116 + ], + [ + -78.975777, + 37.643333 + ], + [ + -78.975711, + 37.643354 + ], + [ + -78.97542, + 37.643425 + ], + [ + -78.974834, + 37.643551 + ], + [ + -78.974604, + 37.64359 + ], + [ + -78.974067, + 37.643681 + ], + [ + -78.973393, + 37.643752 + ], + [ + -78.972559, + 37.643813 + ], + [ + -78.972242, + 37.643839 + ], + [ + -78.970006, + 37.64399 + ], + [ + -78.96903, + 37.64406 + ], + [ + -78.968589, + 37.644095 + ], + [ + -78.968224, + 37.644136 + ], + [ + -78.967889, + 37.644182 + ], + [ + -78.967664, + 37.644226 + ], + [ + -78.967387, + 37.644293 + ], + [ + -78.967224, + 37.644341 + ], + [ + -78.966957, + 37.64443 + ], + [ + -78.966688, + 37.644536 + ], + [ + -78.966474, + 37.644631 + ], + [ + -78.966164, + 37.644789 + ], + [ + -78.965983, + 37.644902 + ], + [ + -78.965692, + 37.645098 + ], + [ + -78.965428, + 37.645294 + ], + [ + -78.965238, + 37.645456 + ], + [ + -78.965063, + 37.645628 + ], + [ + -78.964898, + 37.645816 + ], + [ + -78.964762, + 37.645992 + ], + [ + -78.964605, + 37.646219 + ], + [ + -78.964465, + 37.646453 + ], + [ + -78.964354, + 37.646672 + ], + [ + -78.96426, + 37.646896 + ], + [ + -78.964184, + 37.647124 + ], + [ + -78.964105, + 37.647472 + ], + [ + -78.964045, + 37.647822 + ], + [ + -78.963795, + 37.650137 + ], + [ + -78.963771, + 37.650446 + ], + [ + -78.963726, + 37.650831 + ], + [ + -78.963699, + 37.651104 + ], + [ + -78.963637, + 37.651545 + ], + [ + -78.963559, + 37.651968 + ], + [ + -78.963475, + 37.652244 + ], + [ + -78.963403, + 37.652439 + ], + [ + -78.963343, + 37.65259 + ], + [ + -78.963259, + 37.652771 + ], + [ + -78.963211, + 37.652855 + ], + [ + -78.963159, + 37.652948 + ], + [ + -78.963044, + 37.653119 + ], + [ + -78.962876, + 37.65334 + ], + [ + -78.962692, + 37.653554 + ], + [ + -78.961989, + 37.654258 + ], + [ + -78.961507, + 37.654728 + ], + [ + -78.961039, + 37.655181 + ], + [ + -78.960337, + 37.655875 + ], + [ + -78.96023, + 37.655972 + ], + [ + -78.960126, + 37.656071 + ], + [ + -78.959777, + 37.656385 + ], + [ + -78.959596, + 37.656559 + ], + [ + -78.959428, + 37.656733 + ], + [ + -78.95894, + 37.657212 + ], + [ + -78.958347, + 37.65781 + ], + [ + -78.957955, + 37.658265 + ], + [ + -78.957902, + 37.65834 + ], + [ + -78.957703, + 37.658582 + ], + [ + -78.956957, + 37.659613 + ], + [ + -78.956, + 37.660952 + ], + [ + -78.95555, + 37.661601 + ], + [ + -78.95521, + 37.662149 + ], + [ + -78.955078, + 37.662367 + ], + [ + -78.954742, + 37.662988 + ], + [ + -78.954584, + 37.663297 + ], + [ + -78.954305, + 37.663917 + ], + [ + -78.954148, + 37.6643 + ], + [ + -78.953981, + 37.664751 + ], + [ + -78.953842, + 37.665162 + ], + [ + -78.953791, + 37.665348 + ], + [ + -78.953693, + 37.665702 + ], + [ + -78.953658, + 37.665836 + ], + [ + -78.953519, + 37.666441 + ], + [ + -78.953449, + 37.666806 + ], + [ + -78.953407, + 37.667104 + ], + [ + -78.953324, + 37.667763 + ], + [ + -78.953292, + 37.668183 + ], + [ + -78.953221, + 37.669156 + ], + [ + -78.953153, + 37.670098 + ], + [ + -78.953142, + 37.670264 + ], + [ + -78.953141, + 37.6704 + ], + [ + -78.953072, + 37.671177 + ], + [ + -78.95304, + 37.671615 + ], + [ + -78.952995, + 37.672174 + ], + [ + -78.952947, + 37.672942 + ], + [ + -78.95292, + 37.673225 + ], + [ + -78.952878, + 37.673819 + ], + [ + -78.952829, + 37.674339 + ], + [ + -78.952797, + 37.674686 + ], + [ + -78.952784, + 37.674804 + ], + [ + -78.952747, + 37.675024 + ], + [ + -78.952692, + 37.675301 + ], + [ + -78.952624, + 37.675578 + ], + [ + -78.952561, + 37.675784 + ], + [ + -78.952486, + 37.675985 + ], + [ + -78.952442, + 37.676122 + ], + [ + -78.952386, + 37.676257 + ], + [ + -78.95232, + 37.676433 + ], + [ + -78.952115, + 37.676852 + ], + [ + -78.952045, + 37.676981 + ], + [ + -78.951895, + 37.677259 + ], + [ + -78.951765, + 37.677478 + ], + [ + -78.951015, + 37.678688 + ], + [ + -78.950642, + 37.679294 + ], + [ + -78.950106, + 37.680167 + ], + [ + -78.949932, + 37.680439 + ], + [ + -78.949555, + 37.681057 + ], + [ + -78.948514, + 37.682749 + ], + [ + -78.948346, + 37.683014 + ], + [ + -78.94819, + 37.68327 + ], + [ + -78.947933, + 37.683687 + ], + [ + -78.947735, + 37.683997 + ], + [ + -78.946949, + 37.685284 + ], + [ + -78.946763, + 37.685577 + ], + [ + -78.946171, + 37.686544 + ], + [ + -78.946077, + 37.686718 + ], + [ + -78.945972, + 37.686928 + ], + [ + -78.945848, + 37.687201 + ], + [ + -78.945794, + 37.687349 + ], + [ + -78.945689, + 37.687661 + ], + [ + -78.945632, + 37.687901 + ], + [ + -78.945568, + 37.688266 + ], + [ + -78.945541, + 37.688542 + ], + [ + -78.945537, + 37.688659 + ], + [ + -78.945545, + 37.689126 + ], + [ + -78.945579, + 37.689434 + ], + [ + -78.945664, + 37.689907 + ], + [ + -78.945683, + 37.68999 + ], + [ + -78.945776, + 37.690456 + ], + [ + -78.945835, + 37.69071 + ], + [ + -78.945961, + 37.691323 + ], + [ + -78.946182, + 37.69241 + ], + [ + -78.946237, + 37.692788 + ], + [ + -78.946274, + 37.693085 + ], + [ + -78.946296, + 37.693491 + ], + [ + -78.946303, + 37.694022 + ], + [ + -78.946301, + 37.694057 + ], + [ + -78.946287, + 37.694387 + ], + [ + -78.946261, + 37.694709 + ], + [ + -78.946249, + 37.694805 + ], + [ + -78.946182, + 37.695293 + ], + [ + -78.946055, + 37.695876 + ], + [ + -78.945864, + 37.696567 + ], + [ + -78.945405, + 37.698162 + ], + [ + -78.945298, + 37.698548 + ], + [ + -78.944826, + 37.700186 + ], + [ + -78.944719, + 37.700501 + ], + [ + -78.94458, + 37.700835 + ], + [ + -78.944457, + 37.701074 + ], + [ + -78.944324, + 37.701307 + ], + [ + -78.944135, + 37.701595 + ], + [ + -78.944026, + 37.701738 + ], + [ + -78.943778, + 37.70202 + ], + [ + -78.943504, + 37.702305 + ], + [ + -78.943214, + 37.702564 + ], + [ + -78.94302, + 37.702719 + ], + [ + -78.942935, + 37.702779 + ], + [ + -78.942809, + 37.702868 + ], + [ + -78.942485, + 37.703077 + ], + [ + -78.942218, + 37.703232 + ], + [ + -78.9405, + 37.704132 + ], + [ + -78.940455, + 37.704155 + ], + [ + -78.940006, + 37.704381 + ], + [ + -78.938227, + 37.705302 + ], + [ + -78.93698, + 37.705948 + ], + [ + -78.93647, + 37.706225 + ], + [ + -78.93488, + 37.707122 + ], + [ + -78.934646, + 37.707256 + ], + [ + -78.93388, + 37.707679 + ], + [ + -78.933448, + 37.707924 + ], + [ + -78.932774, + 37.708305 + ], + [ + -78.931107, + 37.709235 + ], + [ + -78.929365, + 37.710215 + ], + [ + -78.928987, + 37.710423 + ], + [ + -78.928188, + 37.710873 + ], + [ + -78.927848, + 37.711058 + ], + [ + -78.927739, + 37.711117 + ], + [ + -78.927286, + 37.71134 + ], + [ + -78.927035, + 37.711449 + ], + [ + -78.926705, + 37.711572 + ], + [ + -78.926357, + 37.711684 + ], + [ + -78.926015, + 37.711773 + ], + [ + -78.925764, + 37.711831 + ], + [ + -78.925742, + 37.711836 + ], + [ + -78.925395, + 37.711899 + ], + [ + -78.925098, + 37.711943 + ], + [ + -78.92463, + 37.712006 + ], + [ + -78.924358, + 37.71204 + ], + [ + -78.9241, + 37.712072 + ], + [ + -78.923317, + 37.712168 + ], + [ + -78.922673, + 37.712257 + ], + [ + -78.921644, + 37.712386 + ], + [ + -78.920771, + 37.712503 + ], + [ + -78.91879, + 37.712755 + ], + [ + -78.917763, + 37.712894 + ], + [ + -78.916758, + 37.713029 + ], + [ + -78.916316, + 37.713107 + ], + [ + -78.915891, + 37.713204 + ], + [ + -78.915614, + 37.71328 + ], + [ + -78.915324, + 37.713372 + ], + [ + -78.915274, + 37.713388 + ], + [ + -78.914912, + 37.71352 + ], + [ + -78.91455, + 37.71367 + ], + [ + -78.914179, + 37.713842 + ], + [ + -78.913675, + 37.714085 + ], + [ + -78.912967, + 37.714415 + ], + [ + -78.910226, + 37.715714 + ], + [ + -78.90939, + 37.716116 + ], + [ + -78.908844, + 37.716378 + ], + [ + -78.908565, + 37.716525 + ], + [ + -78.908344, + 37.716654 + ], + [ + -78.908223, + 37.716733 + ], + [ + -78.907898, + 37.716972 + ], + [ + -78.907709, + 37.71712 + ], + [ + -78.907284, + 37.717479 + ], + [ + -78.905705, + 37.718784 + ], + [ + -78.905314, + 37.719084 + ], + [ + -78.90491, + 37.719372 + ], + [ + -78.904525, + 37.719604 + ], + [ + -78.904033, + 37.719882 + ], + [ + -78.903337, + 37.720265 + ], + [ + -78.902528, + 37.720722 + ], + [ + -78.902455, + 37.720766 + ], + [ + -78.902055, + 37.720998 + ], + [ + -78.901704, + 37.721237 + ], + [ + -78.901372, + 37.721492 + ], + [ + -78.901207, + 37.721632 + ], + [ + -78.901102, + 37.721732 + ], + [ + -78.90093, + 37.721897 + ], + [ + -78.900791, + 37.722043 + ], + [ + -78.900736, + 37.722103 + ], + [ + -78.900601, + 37.722261 + ], + [ + -78.900394, + 37.722523 + ], + [ + -78.900222, + 37.722764 + ], + [ + -78.900079, + 37.722992 + ], + [ + -78.900004, + 37.723131 + ], + [ + -78.899716, + 37.723665 + ], + [ + -78.899467, + 37.724145 + ], + [ + -78.899406, + 37.724274 + ], + [ + -78.89922, + 37.72461 + ], + [ + -78.899008, + 37.725016 + ], + [ + -78.898838, + 37.725322 + ], + [ + -78.898749, + 37.725462 + ], + [ + -78.898619, + 37.725684 + ], + [ + -78.898501, + 37.725886 + ], + [ + -78.898424, + 37.726009 + ], + [ + -78.898396, + 37.726054 + ], + [ + -78.89823, + 37.726333 + ], + [ + -78.897785, + 37.72702 + ], + [ + -78.897326, + 37.727687 + ], + [ + -78.897029, + 37.728104 + ], + [ + -78.896755, + 37.72847 + ], + [ + -78.896087, + 37.729327 + ], + [ + -78.895376, + 37.730223 + ], + [ + -78.89492, + 37.73078 + ], + [ + -78.894224, + 37.731648 + ], + [ + -78.893951, + 37.731982 + ], + [ + -78.893208, + 37.732922 + ], + [ + -78.893101, + 37.733073 + ], + [ + -78.892951, + 37.733284 + ], + [ + -78.892829, + 37.733486 + ], + [ + -78.892725, + 37.733694 + ], + [ + -78.892653, + 37.733852 + ], + [ + -78.892395, + 37.734583 + ], + [ + -78.892264, + 37.735006 + ], + [ + -78.891874, + 37.73617 + ], + [ + -78.891809, + 37.736394 + ], + [ + -78.891615, + 37.736972 + ], + [ + -78.891508, + 37.737307 + ], + [ + -78.891316, + 37.737819 + ], + [ + -78.891154, + 37.738191 + ], + [ + -78.891075, + 37.738356 + ], + [ + -78.891011, + 37.738485 + ], + [ + -78.890701, + 37.739024 + ], + [ + -78.890539, + 37.739262 + ], + [ + -78.890353, + 37.739521 + ], + [ + -78.890119, + 37.739847 + ], + [ + -78.889796, + 37.740253 + ], + [ + -78.889491, + 37.740645 + ], + [ + -78.889217, + 37.740996 + ], + [ + -78.888944, + 37.74133 + ], + [ + -78.888623, + 37.741743 + ], + [ + -78.888513, + 37.741886 + ], + [ + -78.888267, + 37.742188 + ], + [ + -78.887876, + 37.742653 + ], + [ + -78.887675, + 37.74287 + ], + [ + -78.887504, + 37.743037 + ], + [ + -78.887277, + 37.743237 + ], + [ + -78.887216, + 37.743287 + ], + [ + -78.887135, + 37.743353 + ], + [ + -78.886534, + 37.743824 + ], + [ + -78.886162, + 37.744125 + ], + [ + -78.8861, + 37.744182 + ], + [ + -78.885899, + 37.744355 + ], + [ + -78.885622, + 37.744575 + ], + [ + -78.885356, + 37.74478 + ], + [ + -78.884605, + 37.745388 + ], + [ + -78.884042, + 37.74585 + ], + [ + -78.882882, + 37.746752 + ], + [ + -78.882051, + 37.747417 + ], + [ + -78.880834, + 37.748391 + ], + [ + -78.88003, + 37.749038 + ], + [ + -78.879751, + 37.749271 + ], + [ + -78.879568, + 37.74942 + ], + [ + -78.879376, + 37.749569 + ], + [ + -78.878419, + 37.750353 + ], + [ + -78.877854, + 37.750804 + ], + [ + -78.877584, + 37.751037 + ], + [ + -78.877286, + 37.751315 + ], + [ + -78.877004, + 37.751598 + ], + [ + -78.876844, + 37.751774 + ], + [ + -78.876626, + 37.752042 + ], + [ + -78.876378, + 37.752385 + ], + [ + -78.876192, + 37.752665 + ], + [ + -78.876061, + 37.752882 + ], + [ + -78.875814, + 37.753345 + ], + [ + -78.875209, + 37.754691 + ], + [ + -78.874619, + 37.756931 + ], + [ + -78.874501, + 37.757307 + ], + [ + -78.874339, + 37.757855 + ], + [ + -78.873994, + 37.758979 + ], + [ + -78.873789, + 37.759637 + ], + [ + -78.873696, + 37.75991 + ], + [ + -78.873541, + 37.760318 + ], + [ + -78.873332, + 37.760834 + ], + [ + -78.873094, + 37.761337 + ], + [ + -78.872847, + 37.761808 + ], + [ + -78.872451, + 37.762468 + ], + [ + -78.872257, + 37.76277 + ], + [ + -78.871993, + 37.763172 + ], + [ + -78.871574, + 37.763799 + ], + [ + -78.871327, + 37.764167 + ], + [ + -78.871012, + 37.764642 + ], + [ + -78.870469, + 37.765468 + ], + [ + -78.870316, + 37.765702 + ], + [ + -78.870042, + 37.766126 + ], + [ + -78.869873, + 37.766412 + ], + [ + -78.869781, + 37.766589 + ], + [ + -78.869687, + 37.766814 + ], + [ + -78.869585, + 37.76708 + ], + [ + -78.869516, + 37.767314 + ], + [ + -78.869424, + 37.767698 + ], + [ + -78.869391, + 37.767942 + ], + [ + -78.86938, + 37.768238 + ], + [ + -78.869389, + 37.768459 + ], + [ + -78.869415, + 37.768673 + ], + [ + -78.869485, + 37.768991 + ], + [ + -78.869567, + 37.769255 + ], + [ + -78.86966, + 37.769515 + ], + [ + -78.869743, + 37.769714 + ], + [ + -78.869793, + 37.769822 + ], + [ + -78.870127, + 37.770634 + ], + [ + -78.870244, + 37.770938 + ], + [ + -78.870299, + 37.771157 + ], + [ + -78.870337, + 37.771378 + ], + [ + -78.870379, + 37.771605 + ], + [ + -78.870392, + 37.771879 + ], + [ + -78.870378, + 37.772127 + ], + [ + -78.870337, + 37.772397 + ], + [ + -78.870272, + 37.77267 + ], + [ + -78.870248, + 37.772764 + ], + [ + -78.87004, + 37.773562 + ], + [ + -78.869728, + 37.774718 + ], + [ + -78.869574, + 37.775264 + ], + [ + -78.869411, + 37.775864 + ], + [ + -78.869234, + 37.776522 + ], + [ + -78.869061, + 37.777151 + ], + [ + -78.868889, + 37.777735 + ], + [ + -78.868643, + 37.778648 + ], + [ + -78.868399, + 37.779571 + ], + [ + -78.868224, + 37.780198 + ], + [ + -78.868067, + 37.780782 + ], + [ + -78.867497, + 37.782893 + ], + [ + -78.867434, + 37.783141 + ], + [ + -78.867364, + 37.783414 + ], + [ + -78.867185, + 37.784047 + ], + [ + -78.867156, + 37.784152 + ], + [ + -78.867042, + 37.784562 + ], + [ + -78.866921, + 37.785054 + ], + [ + -78.866779, + 37.785508 + ], + [ + -78.866518, + 37.786333 + ], + [ + -78.866458, + 37.786501 + ], + [ + -78.866348, + 37.786832 + ], + [ + -78.866066, + 37.787709 + ], + [ + -78.865703, + 37.788816 + ], + [ + -78.865457, + 37.789659 + ], + [ + -78.865164, + 37.790592 + ], + [ + -78.864927, + 37.791345 + ], + [ + -78.864619, + 37.792175 + ], + [ + -78.864507, + 37.792484 + ], + [ + -78.864363, + 37.792792 + ], + [ + -78.864228, + 37.793041 + ], + [ + -78.864067, + 37.7933 + ], + [ + -78.863882, + 37.793548 + ], + [ + -78.863684, + 37.793797 + ], + [ + -78.863319, + 37.794211 + ], + [ + -78.863117, + 37.794344 + ], + [ + -78.86295, + 37.794541 + ], + [ + -78.862701, + 37.794857 + ], + [ + -78.86248, + 37.795184 + ], + [ + -78.862275, + 37.795518 + ], + [ + -78.862199, + 37.795651 + ], + [ + -78.862007, + 37.796159 + ], + [ + -78.861989, + 37.79622 + ], + [ + -78.861909, + 37.796548 + ], + [ + -78.861883, + 37.796687 + ], + [ + -78.861846, + 37.796942 + ], + [ + -78.861828, + 37.797235 + ], + [ + -78.861827, + 37.797529 + ], + [ + -78.861837, + 37.797754 + ], + [ + -78.861844, + 37.797901 + ], + [ + -78.861878, + 37.798631 + ], + [ + -78.861919, + 37.799738 + ], + [ + -78.861971, + 37.800826 + ], + [ + -78.862007, + 37.801869 + ], + [ + -78.862081, + 37.803303 + ], + [ + -78.862104, + 37.80423 + ], + [ + -78.86209, + 37.804437 + ], + [ + -78.862063, + 37.804642 + ], + [ + -78.862038, + 37.804754 + ], + [ + -78.862023, + 37.804816 + ], + [ + -78.861947, + 37.805046 + ], + [ + -78.861861, + 37.805246 + ], + [ + -78.861771, + 37.805437 + ], + [ + -78.86165, + 37.805634 + ], + [ + -78.861512, + 37.805817 + ], + [ + -78.861343, + 37.806004 + ], + [ + -78.860353, + 37.806994 + ], + [ + -78.859848, + 37.807481 + ], + [ + -78.858512, + 37.808821 + ], + [ + -78.858367, + 37.808958 + ], + [ + -78.858079, + 37.809211 + ], + [ + -78.857729, + 37.809505 + ], + [ + -78.857293, + 37.80986 + ], + [ + -78.856987, + 37.81009 + ], + [ + -78.856658, + 37.810338 + ], + [ + -78.855693, + 37.81105 + ], + [ + -78.85561, + 37.811115 + ], + [ + -78.855262, + 37.811371 + ], + [ + -78.854965, + 37.811605 + ], + [ + -78.853694, + 37.812587 + ], + [ + -78.853389, + 37.812818 + ], + [ + -78.852362, + 37.813637 + ], + [ + -78.851981, + 37.813912 + ], + [ + -78.851517, + 37.814266 + ], + [ + -78.851057, + 37.81462 + ], + [ + -78.85085, + 37.814768 + ], + [ + -78.850729, + 37.814859 + ], + [ + -78.850652, + 37.81492 + ], + [ + -78.850085, + 37.815369 + ], + [ + -78.848637, + 37.81648 + ], + [ + -78.846503, + 37.818117 + ], + [ + -78.846263, + 37.818303 + ], + [ + -78.845641, + 37.818784 + ], + [ + -78.845198, + 37.81912 + ], + [ + -78.844287, + 37.819835 + ], + [ + -78.843809, + 37.820229 + ], + [ + -78.841255, + 37.822413 + ], + [ + -78.840635, + 37.822925 + ], + [ + -78.840114, + 37.823377 + ], + [ + -78.839772, + 37.823685 + ], + [ + -78.839408, + 37.824047 + ], + [ + -78.839049, + 37.824425 + ], + [ + -78.838766, + 37.824737 + ], + [ + -78.838386, + 37.825182 + ], + [ + -78.838147, + 37.825481 + ], + [ + -78.837849, + 37.82588 + ], + [ + -78.837407, + 37.826506 + ], + [ + -78.837204, + 37.826823 + ], + [ + -78.837053, + 37.827081 + ], + [ + -78.836731, + 37.827595 + ], + [ + -78.836452, + 37.828104 + ], + [ + -78.836275, + 37.828399 + ], + [ + -78.836111, + 37.828667 + ], + [ + -78.835849, + 37.82912 + ], + [ + -78.835504, + 37.829691 + ], + [ + -78.835352, + 37.829945 + ], + [ + -78.83498, + 37.830568 + ], + [ + -78.834935, + 37.830642 + ], + [ + -78.834826, + 37.830821 + ], + [ + -78.834646, + 37.831137 + ], + [ + -78.834377, + 37.831577 + ], + [ + -78.833853, + 37.832462 + ], + [ + -78.833724, + 37.832692 + ], + [ + -78.833217, + 37.833546 + ], + [ + -78.831919, + 37.835713 + ], + [ + -78.831568, + 37.836263 + ], + [ + -78.831293, + 37.836637 + ], + [ + -78.831013, + 37.836981 + ], + [ + -78.83077, + 37.837252 + ], + [ + -78.829687, + 37.838434 + ], + [ + -78.829526, + 37.8386 + ], + [ + -78.829353, + 37.838766 + ], + [ + -78.828845, + 37.839208 + ], + [ + -78.828553, + 37.839442 + ], + [ + -78.828248, + 37.839665 + ], + [ + -78.827736, + 37.840071 + ], + [ + -78.82744, + 37.840316 + ], + [ + -78.827359, + 37.840393 + ], + [ + -78.827219, + 37.840526 + ], + [ + -78.827033, + 37.840723 + ], + [ + -78.82681, + 37.840985 + ], + [ + -78.826636, + 37.841213 + ], + [ + -78.826324, + 37.841668 + ], + [ + -78.825848, + 37.842321 + ], + [ + -78.825635, + 37.842569 + ], + [ + -78.825481, + 37.842727 + ], + [ + -78.825276, + 37.842917 + ], + [ + -78.825211, + 37.842971 + ], + [ + -78.825103, + 37.843062 + ], + [ + -78.824902, + 37.843225 + ], + [ + -78.824735, + 37.84334 + ], + [ + -78.824467, + 37.843502 + ], + [ + -78.824206, + 37.843652 + ], + [ + -78.82312, + 37.844198 + ], + [ + -78.822611, + 37.844456 + ], + [ + -78.821878, + 37.84482 + ], + [ + -78.820981, + 37.845244 + ], + [ + -78.82067, + 37.845389 + ], + [ + -78.820264, + 37.845536 + ], + [ + -78.820038, + 37.845598 + ], + [ + -78.819873, + 37.845635 + ], + [ + -78.81967, + 37.845683 + ], + [ + -78.819501, + 37.845707 + ], + [ + -78.819221, + 37.845735 + ], + [ + -78.818871, + 37.845752 + ], + [ + -78.818684, + 37.845746 + ], + [ + -78.818377, + 37.845729 + ], + [ + -78.818065, + 37.845689 + ], + [ + -78.817748, + 37.845635 + ], + [ + -78.817461, + 37.845563 + ], + [ + -78.817089, + 37.845456 + ], + [ + -78.81664, + 37.845308 + ], + [ + -78.816094, + 37.845137 + ], + [ + -78.815801, + 37.845042 + ], + [ + -78.815106, + 37.844835 + ], + [ + -78.814203, + 37.844545 + ], + [ + -78.813661, + 37.844372 + ], + [ + -78.813194, + 37.844227 + ], + [ + -78.812793, + 37.844119 + ], + [ + -78.812466, + 37.844059 + ], + [ + -78.812161, + 37.844015 + ], + [ + -78.811899, + 37.843994 + ], + [ + -78.811692, + 37.843985 + ], + [ + -78.81145, + 37.844002 + ], + [ + -78.811288, + 37.844022 + ], + [ + -78.810966, + 37.84409 + ], + [ + -78.810704, + 37.844162 + ], + [ + -78.810498, + 37.844229 + ], + [ + -78.810246, + 37.844336 + ], + [ + -78.80993, + 37.84449 + ], + [ + -78.809727, + 37.844605 + ], + [ + -78.809573, + 37.844705 + ], + [ + -78.809276, + 37.84492 + ], + [ + -78.809029, + 37.845076 + ], + [ + -78.808807, + 37.845199 + ], + [ + -78.808527, + 37.845332 + ], + [ + -78.808311, + 37.845419 + ], + [ + -78.808089, + 37.845498 + ], + [ + -78.807811, + 37.845579 + ], + [ + -78.807589, + 37.845643 + ], + [ + -78.807297, + 37.845708 + ], + [ + -78.807, + 37.845759 + ], + [ + -78.806691, + 37.845797 + ], + [ + -78.806302, + 37.845837 + ], + [ + -78.805184, + 37.845933 + ], + [ + -78.80503, + 37.845945 + ], + [ + -78.804012, + 37.846026 + ], + [ + -78.800837, + 37.846324 + ], + [ + -78.800537, + 37.846339 + ], + [ + -78.800237, + 37.846355 + ], + [ + -78.800014, + 37.846352 + ], + [ + -78.79976, + 37.846345 + ], + [ + -78.799425, + 37.846321 + ], + [ + -78.799048, + 37.846276 + ], + [ + -78.79881, + 37.846227 + ], + [ + -78.798587, + 37.846183 + ], + [ + -78.798334, + 37.846121 + ], + [ + -78.798127, + 37.846044 + ], + [ + -78.797833, + 37.845932 + ], + [ + -78.797473, + 37.845765 + ], + [ + -78.797183, + 37.845617 + ], + [ + -78.796923, + 37.845465 + ], + [ + -78.796357, + 37.845082 + ], + [ + -78.795818, + 37.844712 + ], + [ + -78.795607, + 37.84458 + ], + [ + -78.795352, + 37.844427 + ], + [ + -78.795147, + 37.84431 + ], + [ + -78.794915, + 37.844201 + ], + [ + -78.794645, + 37.844085 + ], + [ + -78.794419, + 37.843996 + ], + [ + -78.794095, + 37.843903 + ], + [ + -78.793805, + 37.843828 + ], + [ + -78.793467, + 37.843774 + ], + [ + -78.793125, + 37.84374 + ], + [ + -78.792933, + 37.843732 + ], + [ + -78.792722, + 37.843723 + ], + [ + -78.792238, + 37.84372 + ], + [ + -78.791688, + 37.843732 + ], + [ + -78.791137, + 37.843731 + ], + [ + -78.790713, + 37.843712 + ], + [ + -78.790444, + 37.843693 + ], + [ + -78.79016, + 37.843657 + ], + [ + -78.78988, + 37.843607 + ], + [ + -78.789604, + 37.843542 + ], + [ + -78.789363, + 37.843478 + ], + [ + -78.789067, + 37.843389 + ], + [ + -78.788706, + 37.843253 + ], + [ + -78.78839, + 37.843125 + ], + [ + -78.788101, + 37.843016 + ], + [ + -78.78765, + 37.842857 + ], + [ + -78.787324, + 37.842748 + ], + [ + -78.787056, + 37.84268 + ], + [ + -78.786677, + 37.842606 + ], + [ + -78.786459, + 37.842568 + ], + [ + -78.786292, + 37.842537 + ], + [ + -78.785994, + 37.842501 + ], + [ + -78.785649, + 37.842467 + ], + [ + -78.785267, + 37.842457 + ], + [ + -78.784945, + 37.842456 + ], + [ + -78.784589, + 37.842468 + ], + [ + -78.782212, + 37.842633 + ], + [ + -78.780497, + 37.842776 + ], + [ + -78.779987, + 37.842814 + ], + [ + -78.778924, + 37.842896 + ], + [ + -78.77812, + 37.842986 + ], + [ + -78.777773, + 37.843042 + ], + [ + -78.777066, + 37.843144 + ], + [ + -78.776444, + 37.84325 + ], + [ + -78.775647, + 37.843402 + ], + [ + -78.774632, + 37.843601 + ], + [ + -78.773646, + 37.843786 + ], + [ + -78.773282, + 37.843855 + ], + [ + -78.772981, + 37.843912 + ], + [ + -78.772128, + 37.844091 + ], + [ + -78.771161, + 37.844316 + ], + [ + -78.770651, + 37.844441 + ], + [ + -78.769991, + 37.844616 + ], + [ + -78.768859, + 37.844941 + ], + [ + -78.768162, + 37.845142 + ], + [ + -78.767015, + 37.845472 + ], + [ + -78.76637, + 37.845658 + ], + [ + -78.765119, + 37.846012 + ], + [ + -78.761663, + 37.84701 + ], + [ + -78.760903, + 37.847224 + ], + [ + -78.760298, + 37.847402 + ], + [ + -78.75996, + 37.847506 + ], + [ + -78.7597, + 37.847596 + ], + [ + -78.759532, + 37.84765 + ], + [ + -78.759113, + 37.847806 + ], + [ + -78.758783, + 37.847948 + ], + [ + -78.758412, + 37.84812 + ], + [ + -78.758057, + 37.848288 + ], + [ + -78.757154, + 37.848747 + ], + [ + -78.756986, + 37.848829 + ], + [ + -78.756546, + 37.849062 + ], + [ + -78.756115, + 37.849306 + ], + [ + -78.755862, + 37.849458 + ], + [ + -78.755244, + 37.849843 + ], + [ + -78.754769, + 37.85013 + ], + [ + -78.754377, + 37.85038 + ], + [ + -78.753945, + 37.850672 + ], + [ + -78.753673, + 37.850873 + ], + [ + -78.753364, + 37.851127 + ], + [ + -78.753217, + 37.851259 + ], + [ + -78.752739, + 37.851715 + ], + [ + -78.752046, + 37.852374 + ], + [ + -78.75166, + 37.852719 + ], + [ + -78.751401, + 37.852929 + ], + [ + -78.751134, + 37.853132 + ], + [ + -78.750789, + 37.853376 + ], + [ + -78.750504, + 37.853564 + ], + [ + -78.750081, + 37.853824 + ], + [ + -78.74973, + 37.854021 + ], + [ + -78.749369, + 37.854207 + ], + [ + -78.748998, + 37.85438 + ], + [ + -78.748624, + 37.854531 + ], + [ + -78.748053, + 37.854743 + ], + [ + -78.747045, + 37.85508 + ], + [ + -78.746537, + 37.855262 + ], + [ + -78.746473, + 37.855285 + ], + [ + -78.745985, + 37.855474 + ], + [ + -78.7456, + 37.855635 + ], + [ + -78.744986, + 37.855911 + ], + [ + -78.744673, + 37.856064 + ], + [ + -78.744246, + 37.856299 + ], + [ + -78.743761, + 37.856591 + ], + [ + -78.743416, + 37.856817 + ], + [ + -78.742954, + 37.857145 + ], + [ + -78.742639, + 37.857387 + ], + [ + -78.742337, + 37.85764 + ], + [ + -78.742294, + 37.85768 + ], + [ + -78.741896, + 37.858045 + ], + [ + -78.741503, + 37.85843 + ], + [ + -78.741291, + 37.858648 + ], + [ + -78.741254, + 37.858686 + ], + [ + -78.740963, + 37.859027 + ], + [ + -78.740705, + 37.859351 + ], + [ + -78.740668, + 37.859398 + ], + [ + -78.740453, + 37.85968 + ], + [ + -78.739901, + 37.860385 + ], + [ + -78.739675, + 37.860647 + ], + [ + -78.739434, + 37.860902 + ], + [ + -78.739176, + 37.861151 + ], + [ + -78.73895, + 37.861357 + ], + [ + -78.738655, + 37.861604 + ], + [ + -78.738411, + 37.861795 + ], + [ + -78.738094, + 37.862025 + ], + [ + -78.737733, + 37.862262 + ], + [ + -78.737429, + 37.862445 + ], + [ + -78.73708, + 37.862638 + ], + [ + -78.73657, + 37.862893 + ], + [ + -78.736186, + 37.863088 + ], + [ + -78.735435, + 37.86348 + ], + [ + -78.734529, + 37.863942 + ], + [ + -78.733874, + 37.864271 + ], + [ + -78.733562, + 37.864427 + ], + [ + -78.733042, + 37.864704 + ], + [ + -78.732039, + 37.865214 + ], + [ + -78.731948, + 37.865258 + ], + [ + -78.731785, + 37.865335 + ], + [ + -78.731411, + 37.86553 + ], + [ + -78.730148, + 37.866169 + ], + [ + -78.729986, + 37.866254 + ], + [ + -78.729722, + 37.866391 + ], + [ + -78.728688, + 37.866913 + ], + [ + -78.727888, + 37.86733 + ], + [ + -78.727529, + 37.86751 + ], + [ + -78.726765, + 37.867904 + ], + [ + -78.726166, + 37.868202 + ], + [ + -78.725869, + 37.868361 + ], + [ + -78.725428, + 37.868579 + ], + [ + -78.725084, + 37.868757 + ], + [ + -78.724518, + 37.869049 + ], + [ + -78.723898, + 37.869354 + ], + [ + -78.722779, + 37.869945 + ], + [ + -78.721592, + 37.870542 + ], + [ + -78.720481, + 37.87111 + ], + [ + -78.719958, + 37.871373 + ], + [ + -78.719701, + 37.871497 + ], + [ + -78.719365, + 37.871672 + ], + [ + -78.718719, + 37.872028 + ], + [ + -78.71847, + 37.872183 + ], + [ + -78.718164, + 37.872388 + ], + [ + -78.717945, + 37.872553 + ], + [ + -78.717592, + 37.872851 + ], + [ + -78.717285, + 37.873139 + ], + [ + -78.717049, + 37.873363 + ], + [ + -78.716739, + 37.873728 + ], + [ + -78.716536, + 37.874002 + ], + [ + -78.716395, + 37.874221 + ], + [ + -78.716144, + 37.874657 + ], + [ + -78.71604, + 37.87487 + ], + [ + -78.715888, + 37.875212 + ], + [ + -78.715814, + 37.875401 + ], + [ + -78.715694, + 37.87571 + ], + [ + -78.715495, + 37.876238 + ], + [ + -78.715377, + 37.876548 + ], + [ + -78.715275, + 37.876817 + ], + [ + -78.71521, + 37.877013 + ], + [ + -78.715136, + 37.877211 + ], + [ + -78.715081, + 37.877371 + ], + [ + -78.714995, + 37.877587 + ], + [ + -78.71492, + 37.877787 + ], + [ + -78.7148, + 37.878131 + ], + [ + -78.714687, + 37.878428 + ], + [ + -78.714533, + 37.878796 + ], + [ + -78.714454, + 37.879009 + ], + [ + -78.714417, + 37.879116 + ], + [ + -78.714256, + 37.879549 + ], + [ + -78.714141, + 37.879854 + ], + [ + -78.713896, + 37.880594 + ], + [ + -78.713756, + 37.881038 + ], + [ + -78.713682, + 37.88126 + ], + [ + -78.713617, + 37.881457 + ], + [ + -78.713533, + 37.881697 + ], + [ + -78.713446, + 37.881943 + ], + [ + -78.713394, + 37.882108 + ], + [ + -78.713314, + 37.882336 + ], + [ + -78.713184, + 37.882655 + ], + [ + -78.713006, + 37.883053 + ], + [ + -78.712892, + 37.883274 + ], + [ + -78.712733, + 37.88355 + ], + [ + -78.712558, + 37.88384 + ], + [ + -78.712369, + 37.884119 + ], + [ + -78.712275, + 37.884257 + ], + [ + -78.712136, + 37.884449 + ], + [ + -78.711974, + 37.884667 + ], + [ + -78.711814, + 37.884876 + ], + [ + -78.711641, + 37.885085 + ], + [ + -78.711418, + 37.885345 + ], + [ + -78.711139, + 37.885644 + ], + [ + -78.710798, + 37.88599 + ], + [ + -78.710465, + 37.886309 + ], + [ + -78.710195, + 37.886555 + ], + [ + -78.709928, + 37.886781 + ], + [ + -78.709577, + 37.88706 + ], + [ + -78.709406, + 37.887199 + ], + [ + -78.709211, + 37.887345 + ], + [ + -78.708778, + 37.887648 + ], + [ + -78.707968, + 37.888179 + ], + [ + -78.707642, + 37.888399 + ], + [ + -78.707473, + 37.88851 + ], + [ + -78.707244, + 37.888663 + ], + [ + -78.706965, + 37.888843 + ], + [ + -78.706601, + 37.889083 + ], + [ + -78.706088, + 37.889425 + ], + [ + -78.705712, + 37.889669 + ], + [ + -78.705189, + 37.890019 + ], + [ + -78.704893, + 37.890211 + ], + [ + -78.703445, + 37.891162 + ], + [ + -78.703041, + 37.891429 + ], + [ + -78.702721, + 37.891638 + ], + [ + -78.702327, + 37.891905 + ], + [ + -78.70184, + 37.892223 + ], + [ + -78.701163, + 37.892662 + ], + [ + -78.700778, + 37.892933 + ], + [ + -78.70071, + 37.892981 + ], + [ + -78.700622, + 37.893046 + ], + [ + -78.700337, + 37.893272 + ], + [ + -78.69999, + 37.89357 + ], + [ + -78.699755, + 37.8938 + ], + [ + -78.699482, + 37.894099 + ], + [ + -78.699289, + 37.894329 + ], + [ + -78.698787, + 37.894984 + ], + [ + -78.698558, + 37.895284 + ], + [ + -78.69837, + 37.895519 + ], + [ + -78.698116, + 37.895851 + ], + [ + -78.697966, + 37.896055 + ], + [ + -78.697696, + 37.896407 + ], + [ + -78.697057, + 37.897242 + ], + [ + -78.696439, + 37.898041 + ], + [ + -78.695681, + 37.899035 + ], + [ + -78.695049, + 37.899863 + ], + [ + -78.694658, + 37.900403 + ], + [ + -78.694519, + 37.900599 + ], + [ + -78.694429, + 37.900733 + ], + [ + -78.693954, + 37.901464 + ], + [ + -78.693721, + 37.901862 + ], + [ + -78.693473, + 37.902275 + ], + [ + -78.693102, + 37.902981 + ], + [ + -78.692879, + 37.903439 + ], + [ + -78.692797, + 37.903623 + ], + [ + -78.692129, + 37.905105 + ], + [ + -78.691808, + 37.905817 + ], + [ + -78.691268, + 37.906984 + ], + [ + -78.690987, + 37.907549 + ], + [ + -78.690814, + 37.907874 + ], + [ + -78.690688, + 37.908089 + ], + [ + -78.690521, + 37.908372 + ], + [ + -78.690275, + 37.908767 + ], + [ + -78.689663, + 37.909657 + ], + [ + -78.689078, + 37.910492 + ], + [ + -78.685485, + 37.915666 + ], + [ + -78.684467, + 37.917131 + ], + [ + -78.682047, + 37.920608 + ], + [ + -78.681785, + 37.92095 + ], + [ + -78.681517, + 37.921272 + ], + [ + -78.681241, + 37.921578 + ], + [ + -78.68101, + 37.921818 + ], + [ + -78.680605, + 37.922194 + ], + [ + -78.68013, + 37.922617 + ], + [ + -78.679566, + 37.923137 + ], + [ + -78.679307, + 37.923403 + ], + [ + -78.678986, + 37.92374 + ], + [ + -78.678605, + 37.924203 + ], + [ + -78.678345, + 37.924561 + ], + [ + -78.678124, + 37.924891 + ], + [ + -78.677903, + 37.925227 + ], + [ + -78.677688, + 37.925589 + ], + [ + -78.677544, + 37.925878 + ], + [ + -78.67731, + 37.926442 + ], + [ + -78.676551, + 37.928284 + ], + [ + -78.676404, + 37.928595 + ], + [ + -78.676242, + 37.928949 + ], + [ + -78.676148, + 37.929122 + ], + [ + -78.675977, + 37.929377 + ], + [ + -78.675612, + 37.929807 + ], + [ + -78.675385, + 37.930086 + ], + [ + -78.675213, + 37.930312 + ], + [ + -78.675004, + 37.930559 + ], + [ + -78.674617, + 37.931044 + ], + [ + -78.67407, + 37.931702 + ], + [ + -78.673673, + 37.932201 + ], + [ + -78.673281, + 37.9327 + ], + [ + -78.672994, + 37.933082 + ], + [ + -78.672166, + 37.934227 + ], + [ + -78.671112, + 37.935771 + ], + [ + -78.670762, + 37.936281 + ], + [ + -78.670385, + 37.936817 + ], + [ + -78.669877, + 37.937599 + ], + [ + -78.668999, + 37.93886 + ], + [ + -78.667671, + 37.940789 + ], + [ + -78.666721, + 37.942158 + ], + [ + -78.666126, + 37.943118 + ], + [ + -78.665597, + 37.944014 + ], + [ + -78.665125, + 37.944827 + ], + [ + -78.664642, + 37.945633 + ], + [ + -78.664087, + 37.946602 + ], + [ + -78.663665, + 37.947366 + ], + [ + -78.663523, + 37.947648 + ], + [ + -78.663363, + 37.948007 + ], + [ + -78.66312, + 37.948581 + ], + [ + -78.662992, + 37.948919 + ], + [ + -78.662788, + 37.949511 + ], + [ + -78.662392, + 37.950794 + ], + [ + -78.662127, + 37.951686 + ], + [ + -78.661907, + 37.952368 + ], + [ + -78.6618, + 37.952667 + ], + [ + -78.661673, + 37.952964 + ], + [ + -78.661549, + 37.953229 + ], + [ + -78.661377, + 37.953546 + ], + [ + -78.661172, + 37.953875 + ], + [ + -78.660975, + 37.954168 + ], + [ + -78.660712, + 37.954527 + ], + [ + -78.660589, + 37.954686 + ], + [ + -78.660525, + 37.954768 + ], + [ + -78.660204, + 37.955161 + ], + [ + -78.659899, + 37.955515 + ], + [ + -78.65946, + 37.956045 + ], + [ + -78.659107, + 37.956472 + ], + [ + -78.658939, + 37.95668 + ], + [ + -78.658404, + 37.957325 + ], + [ + -78.658185, + 37.957583 + ], + [ + -78.657413, + 37.958505 + ], + [ + -78.65713, + 37.958855 + ], + [ + -78.65677, + 37.959264 + ], + [ + -78.656612, + 37.959431 + ], + [ + -78.656439, + 37.95959 + ], + [ + -78.656251, + 37.959739 + ], + [ + -78.656068, + 37.959867 + ], + [ + -78.655989, + 37.959917 + ], + [ + -78.655752, + 37.960052 + ], + [ + -78.655575, + 37.96015 + ], + [ + -78.655228, + 37.960289 + ], + [ + -78.654931, + 37.960405 + ], + [ + -78.653275, + 37.960978 + ], + [ + -78.652399, + 37.961277 + ], + [ + -78.651659, + 37.961545 + ], + [ + -78.651372, + 37.96167 + ], + [ + -78.651131, + 37.961788 + ], + [ + -78.650953, + 37.961888 + ], + [ + -78.65077, + 37.962003 + ], + [ + -78.650655, + 37.962074 + ], + [ + -78.650545, + 37.96215 + ], + [ + -78.650369, + 37.962277 + ], + [ + -78.650124, + 37.962492 + ], + [ + -78.649827, + 37.962781 + ], + [ + -78.649528, + 37.963082 + ], + [ + -78.649157, + 37.963468 + ], + [ + -78.648771, + 37.96385 + ], + [ + -78.648569, + 37.964042 + ], + [ + -78.648236, + 37.964318 + ], + [ + -78.647928, + 37.964546 + ], + [ + -78.647355, + 37.964951 + ], + [ + -78.646421, + 37.965624 + ], + [ + -78.646034, + 37.965897 + ], + [ + -78.645591, + 37.966218 + ], + [ + -78.645351, + 37.966376 + ], + [ + -78.645051, + 37.966569 + ], + [ + -78.644735, + 37.966754 + ], + [ + -78.644581, + 37.96684 + ], + [ + -78.6444, + 37.966936 + ], + [ + -78.643915, + 37.967163 + ], + [ + -78.643555, + 37.967319 + ], + [ + -78.643147, + 37.967465 + ], + [ + -78.642853, + 37.967561 + ], + [ + -78.642519, + 37.96766 + ], + [ + -78.642395, + 37.967695 + ], + [ + -78.642095, + 37.967768 + ], + [ + -78.641871, + 37.967823 + ], + [ + -78.641449, + 37.967916 + ], + [ + -78.640993, + 37.967991 + ], + [ + -78.640408, + 37.968066 + ], + [ + -78.639997, + 37.968103 + ], + [ + -78.639496, + 37.96813 + ], + [ + -78.638995, + 37.968136 + ], + [ + -78.638434, + 37.968125 + ], + [ + -78.637944, + 37.9681 + ], + [ + -78.63612, + 37.967958 + ], + [ + -78.635136, + 37.967873 + ], + [ + -78.633802, + 37.96777 + ], + [ + -78.632073, + 37.967631 + ], + [ + -78.631801, + 37.967611 + ], + [ + -78.630935, + 37.967546 + ], + [ + -78.630424, + 37.967503 + ], + [ + -78.629697, + 37.967442 + ], + [ + -78.628686, + 37.967361 + ], + [ + -78.626167, + 37.967159 + ], + [ + -78.623282, + 37.966927 + ], + [ + -78.622258, + 37.96685 + ], + [ + -78.621932, + 37.966824 + ], + [ + -78.620819, + 37.966736 + ], + [ + -78.620381, + 37.966716 + ], + [ + -78.620004, + 37.966712 + ], + [ + -78.619679, + 37.966717 + ], + [ + -78.61937, + 37.966745 + ], + [ + -78.619064, + 37.966787 + ], + [ + -78.618761, + 37.966844 + ], + [ + -78.618523, + 37.9669 + ], + [ + -78.618222, + 37.966977 + ], + [ + -78.617837, + 37.967103 + ], + [ + -78.617525, + 37.967224 + ], + [ + -78.617264, + 37.967333 + ], + [ + -78.616866, + 37.967526 + ], + [ + -78.61666, + 37.96764 + ], + [ + -78.616487, + 37.967735 + ], + [ + -78.616266, + 37.967872 + ], + [ + -78.615844, + 37.968137 + ], + [ + -78.615555, + 37.968338 + ], + [ + -78.615229, + 37.968577 + ], + [ + -78.614931, + 37.968831 + ], + [ + -78.614607, + 37.969142 + ], + [ + -78.614381, + 37.96937 + ], + [ + -78.614151, + 37.969646 + ], + [ + -78.613964, + 37.96988 + ], + [ + -78.613494, + 37.970554 + ], + [ + -78.61301, + 37.971246 + ], + [ + -78.612831, + 37.971512 + ], + [ + -78.612279, + 37.972333 + ], + [ + -78.611229, + 37.97389 + ], + [ + -78.610819, + 37.974494 + ], + [ + -78.610719, + 37.974624 + ], + [ + -78.610499, + 37.974897 + ], + [ + -78.610319, + 37.975118 + ], + [ + -78.610116, + 37.975331 + ], + [ + -78.609966, + 37.975469 + ], + [ + -78.609796, + 37.975624 + ], + [ + -78.609591, + 37.975796 + ], + [ + -78.609317, + 37.976004 + ], + [ + -78.609071, + 37.976176 + ], + [ + -78.608849, + 37.976327 + ], + [ + -78.608744, + 37.97639 + ], + [ + -78.608365, + 37.976619 + ], + [ + -78.608101, + 37.976752 + ], + [ + -78.607845, + 37.976869 + ], + [ + -78.607584, + 37.976978 + ], + [ + -78.60725, + 37.977103 + ], + [ + -78.606977, + 37.977192 + ], + [ + -78.606625, + 37.977297 + ], + [ + -78.606266, + 37.977388 + ], + [ + -78.606123, + 37.977418 + ], + [ + -78.605902, + 37.977465 + ], + [ + -78.605646, + 37.97752 + ], + [ + -78.605621, + 37.977522 + ], + [ + -78.605549, + 37.977538 + ], + [ + -78.60423, + 37.977756 + ], + [ + -78.602588, + 37.978034 + ], + [ + -78.602162, + 37.978122 + ], + [ + -78.601825, + 37.978203 + ], + [ + -78.601492, + 37.978293 + ], + [ + -78.601094, + 37.978414 + ], + [ + -78.60071, + 37.978547 + ], + [ + -78.600334, + 37.978694 + ], + [ + -78.599967, + 37.978854 + ], + [ + -78.599486, + 37.979083 + ], + [ + -78.599163, + 37.979252 + ], + [ + -78.598789, + 37.97947 + ], + [ + -78.598549, + 37.979624 + ], + [ + -78.597946, + 37.980033 + ], + [ + -78.596889, + 37.98075 + ], + [ + -78.595137, + 37.981939 + ], + [ + -78.593704, + 37.982911 + ], + [ + -78.592376, + 37.98382 + ], + [ + -78.590854, + 37.984906 + ], + [ + -78.590225, + 37.985373 + ], + [ + -78.588999, + 37.98631 + ], + [ + -78.588012, + 37.9871 + ], + [ + -78.587089, + 37.987859 + ], + [ + -78.586722, + 37.988171 + ], + [ + -78.586183, + 37.988631 + ], + [ + -78.585023, + 37.989655 + ], + [ + -78.583908, + 37.990662 + ], + [ + -78.583686, + 37.990885 + ], + [ + -78.583478, + 37.991116 + ], + [ + -78.583203, + 37.991447 + ], + [ + -78.583057, + 37.991641 + ], + [ + -78.582889, + 37.99189 + ], + [ + -78.582734, + 37.992152 + ], + [ + -78.582584, + 37.992445 + ], + [ + -78.582451, + 37.992743 + ], + [ + -78.582318, + 37.993104 + ], + [ + -78.582229, + 37.993396 + ], + [ + -78.582158, + 37.993692 + ], + [ + -78.582061, + 37.994255 + ], + [ + -78.581989, + 37.994788 + ], + [ + -78.581919, + 37.9952 + ], + [ + -78.581831, + 37.99573 + ], + [ + -78.581596, + 37.997239 + ], + [ + -78.581525, + 37.997665 + ], + [ + -78.58147, + 37.998088 + ], + [ + -78.581083, + 38.000517 + ], + [ + -78.580993, + 38.001016 + ], + [ + -78.580912, + 38.001332 + ], + [ + -78.580857, + 38.001514 + ], + [ + -78.580851, + 38.001532 + ], + [ + -78.580827, + 38.001607 + ], + [ + -78.580788, + 38.001711 + ], + [ + -78.580764, + 38.001783 + ], + [ + -78.580638, + 38.002087 + ], + [ + -78.580501, + 38.002397 + ], + [ + -78.580338, + 38.002682 + ], + [ + -78.580176, + 38.002939 + ], + [ + -78.580026, + 38.003155 + ], + [ + -78.57984, + 38.003394 + ], + [ + -78.579631, + 38.003641 + ], + [ + -78.579528, + 38.003748 + ], + [ + -78.579258, + 38.004014 + ], + [ + -78.578985, + 38.00426 + ], + [ + -78.578784, + 38.004426 + ], + [ + -78.578575, + 38.004584 + ], + [ + -78.578379, + 38.004723 + ], + [ + -78.578122, + 38.004899 + ], + [ + -78.577709, + 38.005151 + ], + [ + -78.577431, + 38.005306 + ], + [ + -78.577141, + 38.005444 + ], + [ + -78.576923, + 38.005542 + ], + [ + -78.576628, + 38.005666 + ], + [ + -78.576327, + 38.005766 + ], + [ + -78.576154, + 38.005828 + ], + [ + -78.575371, + 38.006031 + ], + [ + -78.574274, + 38.006313 + ], + [ + -78.573929, + 38.006397 + ], + [ + -78.573678, + 38.006459 + ], + [ + -78.5731, + 38.006602 + ], + [ + -78.572544, + 38.006742 + ], + [ + -78.570845, + 38.007165 + ], + [ + -78.570536, + 38.007245 + ], + [ + -78.570147, + 38.007346 + ], + [ + -78.569511, + 38.007502 + ], + [ + -78.568866, + 38.007677 + ], + [ + -78.568449, + 38.007795 + ], + [ + -78.568216, + 38.007865 + ], + [ + -78.567861, + 38.007984 + ], + [ + -78.567483, + 38.008116 + ], + [ + -78.567008, + 38.00831 + ], + [ + -78.566642, + 38.008471 + ], + [ + -78.566222, + 38.008672 + ], + [ + -78.565813, + 38.008887 + ], + [ + -78.565381, + 38.009126 + ], + [ + -78.564818, + 38.009422 + ], + [ + -78.564544, + 38.009563 + ], + [ + -78.564196, + 38.009735 + ], + [ + -78.564075, + 38.009787 + ], + [ + -78.56369, + 38.009944 + ], + [ + -78.56326, + 38.010103 + ], + [ + -78.562849, + 38.010238 + ], + [ + -78.562529, + 38.010332 + ], + [ + -78.562124, + 38.010438 + ], + [ + -78.561805, + 38.010515 + ], + [ + -78.561564, + 38.010564 + ], + [ + -78.56093, + 38.010675 + ], + [ + -78.560028, + 38.010845 + ], + [ + -78.558824, + 38.011064 + ], + [ + -78.558024, + 38.011219 + ], + [ + -78.557648, + 38.011286 + ], + [ + -78.557386, + 38.011333 + ], + [ + -78.557058, + 38.011387 + ], + [ + -78.555118, + 38.011755 + ], + [ + -78.554112, + 38.011931 + ], + [ + -78.552878, + 38.012156 + ], + [ + -78.552449, + 38.01225 + ], + [ + -78.552186, + 38.012316 + ], + [ + -78.551829, + 38.012417 + ], + [ + -78.551365, + 38.012562 + ], + [ + -78.55109, + 38.012655 + ], + [ + -78.550658, + 38.012829 + ], + [ + -78.550236, + 38.013017 + ], + [ + -78.549599, + 38.013364 + ], + [ + -78.549376, + 38.013492 + ], + [ + -78.549058, + 38.013698 + ], + [ + -78.548469, + 38.01411 + ], + [ + -78.547659, + 38.014674 + ], + [ + -78.547468, + 38.014808 + ], + [ + -78.54736, + 38.014884 + ], + [ + -78.547042, + 38.015096 + ], + [ + -78.546611, + 38.015362 + ], + [ + -78.546269, + 38.015559 + ], + [ + -78.54592, + 38.01574 + ], + [ + -78.545223, + 38.016069 + ], + [ + -78.544841, + 38.016247 + ], + [ + -78.543906, + 38.016682 + ], + [ + -78.543654, + 38.016806 + ], + [ + -78.54333, + 38.016982 + ], + [ + -78.542733, + 38.017318 + ], + [ + -78.542466, + 38.017467 + ], + [ + -78.539711, + 38.018979 + ], + [ + -78.536725, + 38.020664 + ], + [ + -78.535885, + 38.021132 + ], + [ + -78.535518, + 38.021335 + ], + [ + -78.534742, + 38.021766 + ], + [ + -78.534188, + 38.022073 + ], + [ + -78.532955, + 38.02276 + ], + [ + -78.532173, + 38.023196 + ], + [ + -78.531193, + 38.023747 + ], + [ + -78.531125, + 38.023792 + ], + [ + -78.53075, + 38.024045 + ], + [ + -78.530445, + 38.024274 + ], + [ + -78.530203, + 38.024476 + ], + [ + -78.530016, + 38.024649 + ], + [ + -78.529931, + 38.024733 + ], + [ + -78.52985, + 38.024806 + ], + [ + -78.529798, + 38.024854 + ], + [ + -78.529758, + 38.024894 + ], + [ + -78.529598, + 38.025065 + ], + [ + -78.529327, + 38.025386 + ], + [ + -78.52916, + 38.025608 + ], + [ + -78.528945, + 38.025933 + ], + [ + -78.5288, + 38.026176 + ], + [ + -78.528672, + 38.026426 + ], + [ + -78.52861, + 38.026566 + ], + [ + -78.528405, + 38.027066 + ], + [ + -78.52833, + 38.027311 + ], + [ + -78.528283, + 38.02751 + ], + [ + -78.528235, + 38.027689 + ], + [ + -78.528151, + 38.028145 + ], + [ + -78.527582, + 38.03105 + ], + [ + -78.527126, + 38.033402 + ], + [ + -78.52703, + 38.033972 + ], + [ + -78.526914, + 38.034782 + ], + [ + -78.526868, + 38.035166 + ], + [ + -78.52679, + 38.036035 + ], + [ + -78.526753, + 38.036647 + ], + [ + -78.526715, + 38.03781 + ], + [ + -78.526642, + 38.040878 + ], + [ + -78.526607, + 38.042081 + ], + [ + -78.526584, + 38.042473 + ], + [ + -78.526544, + 38.042863 + ], + [ + -78.52645, + 38.043462 + ], + [ + -78.526353, + 38.043907 + ], + [ + -78.526306, + 38.044099 + ], + [ + -78.526225, + 38.044382 + ], + [ + -78.526103, + 38.044762 + ], + [ + -78.525978, + 38.045116 + ], + [ + -78.52595, + 38.045183 + ], + [ + -78.525619, + 38.045973 + ], + [ + -78.525226, + 38.046882 + ], + [ + -78.524837, + 38.047794 + ], + [ + -78.524807, + 38.047861 + ], + [ + -78.524712, + 38.048073 + ], + [ + -78.523664, + 38.050524 + ], + [ + -78.523608, + 38.050633 + ], + [ + -78.523449, + 38.050945 + ], + [ + -78.523194, + 38.051371 + ], + [ + -78.522992, + 38.051667 + ], + [ + -78.522896, + 38.051793 + ], + [ + -78.522708, + 38.052033 + ], + [ + -78.522379, + 38.052403 + ], + [ + -78.522049, + 38.052728 + ], + [ + -78.521736, + 38.053004 + ], + [ + -78.521375, + 38.053289 + ], + [ + -78.521061, + 38.053512 + ], + [ + -78.520792, + 38.053687 + ], + [ + -78.520433, + 38.053898 + ], + [ + -78.5202, + 38.054028 + ], + [ + -78.519924, + 38.054166 + ], + [ + -78.519561, + 38.054329 + ], + [ + -78.519179, + 38.054486 + ], + [ + -78.518827, + 38.054612 + ], + [ + -78.518437, + 38.054736 + ], + [ + -78.518106, + 38.054829 + ], + [ + -78.517883, + 38.054877 + ], + [ + -78.517638, + 38.05494 + ], + [ + -78.517298, + 38.055006 + ], + [ + -78.51674, + 38.055093 + ], + [ + -78.515503, + 38.055228 + ], + [ + -78.513125, + 38.055506 + ], + [ + -78.51298, + 38.05552 + ], + [ + -78.511721, + 38.055664 + ], + [ + -78.510089, + 38.05585 + ], + [ + -78.509444, + 38.055931 + ], + [ + -78.508892, + 38.056018 + ], + [ + -78.508324, + 38.056121 + ], + [ + -78.50762, + 38.056269 + ], + [ + -78.507101, + 38.056364 + ], + [ + -78.5063, + 38.056529 + ], + [ + -78.504207, + 38.056975 + ], + [ + -78.503544, + 38.057129 + ], + [ + -78.50332, + 38.057173 + ], + [ + -78.50218, + 38.05739 + ], + [ + -78.501769, + 38.057476 + ], + [ + -78.501588, + 38.057518 + ], + [ + -78.501288, + 38.05758 + ], + [ + -78.500918, + 38.057644 + ], + [ + -78.50053, + 38.057699 + ], + [ + -78.50025, + 38.057721 + ], + [ + -78.49999, + 38.057731 + ], + [ + -78.4996, + 38.057738 + ], + [ + -78.499258, + 38.057729 + ], + [ + -78.499228, + 38.057727 + ], + [ + -78.498789, + 38.057695 + ], + [ + -78.498509, + 38.057667 + ], + [ + -78.498249, + 38.05764 + ], + [ + -78.497868, + 38.057604 + ], + [ + -78.497658, + 38.057584 + ], + [ + -78.497235, + 38.057537 + ], + [ + -78.496848, + 38.057489 + ], + [ + -78.495893, + 38.057371 + ], + [ + -78.494978, + 38.057279 + ], + [ + -78.49472, + 38.057173 + ], + [ + -78.494659, + 38.057142 + ], + [ + -78.494592, + 38.057093 + ], + [ + -78.494549, + 38.057047 + ], + [ + -78.494516, + 38.056995 + ], + [ + -78.494502, + 38.05695 + ], + [ + -78.494493, + 38.056874 + ], + [ + -78.494502, + 38.056798 + ], + [ + -78.494522, + 38.056739 + ], + [ + -78.494562, + 38.056669 + ], + [ + -78.494623, + 38.05661 + ], + [ + -78.494697, + 38.056562 + ], + [ + -78.494781, + 38.056525 + ], + [ + -78.494872, + 38.056502 + ], + [ + -78.49496, + 38.056493 + ], + [ + -78.495044, + 38.0565 + ], + [ + -78.495109, + 38.056516 + ], + [ + -78.495169, + 38.056541 + ], + [ + -78.495238, + 38.056584 + ], + [ + -78.49528, + 38.056617 + ], + [ + -78.495339, + 38.05668 + ], + [ + -78.495381, + 38.056751 + ], + [ + -78.495402, + 38.056811 + ], + [ + -78.495415, + 38.056894 + ], + [ + -78.495413, + 38.056998 + ], + [ + -78.495388, + 38.057116 + ], + [ + -78.49528, + 38.057239 + ], + [ + -78.495007, + 38.057577 + ], + [ + -78.494845, + 38.057747 + ], + [ + -78.494782, + 38.057825 + ], + [ + -78.494593, + 38.05807 + ], + [ + -78.494413, + 38.058298 + ], + [ + -78.494268, + 38.05847 + ], + [ + -78.494235, + 38.058509 + ], + [ + -78.494159, + 38.058601 + ], + [ + -78.493967, + 38.058833 + ], + [ + -78.493505, + 38.059401 + ], + [ + -78.493364, + 38.059586 + ], + [ + -78.492889, + 38.060182 + ], + [ + -78.492564, + 38.060616 + ], + [ + -78.492196, + 38.061101 + ], + [ + -78.491916, + 38.061468 + ], + [ + -78.491724, + 38.061722 + ], + [ + -78.491723, + 38.061722 + ], + [ + -78.491578, + 38.061897 + ], + [ + -78.491244, + 38.062293 + ], + [ + -78.490863, + 38.062734 + ], + [ + -78.490477, + 38.063153 + ], + [ + -78.490269, + 38.06338 + ], + [ + -78.489937, + 38.063742 + ], + [ + -78.48969, + 38.064008 + ], + [ + -78.489478, + 38.064259 + ], + [ + -78.489344, + 38.064409 + ], + [ + -78.489289, + 38.06447 + ], + [ + -78.489212, + 38.064554 + ], + [ + -78.488761, + 38.065053 + ], + [ + -78.48815, + 38.065739 + ], + [ + -78.488116, + 38.065779 + ], + [ + -78.487867, + 38.06605 + ], + [ + -78.48713, + 38.06686 + ], + [ + -78.486995, + 38.067008 + ], + [ + -78.486825, + 38.067194 + ], + [ + -78.486343, + 38.067727 + ], + [ + -78.486218, + 38.067866 + ], + [ + -78.486208, + 38.067877 + ], + [ + -78.486134, + 38.067959 + ], + [ + -78.48576, + 38.068363 + ], + [ + -78.485475, + 38.06867 + ], + [ + -78.485154, + 38.069027 + ], + [ + -78.484295, + 38.070023 + ], + [ + -78.484063, + 38.070271 + ], + [ + -78.483776, + 38.070614 + ], + [ + -78.483281, + 38.071164 + ], + [ + -78.482433, + 38.07211 + ], + [ + -78.480968, + 38.073741 + ], + [ + -78.480778, + 38.073943 + ], + [ + -78.480706, + 38.07403 + ], + [ + -78.480376, + 38.074401 + ], + [ + -78.479882, + 38.074956 + ], + [ + -78.479801, + 38.075034 + ], + [ + -78.479272, + 38.075634 + ], + [ + -78.478606, + 38.076375 + ], + [ + -78.478527, + 38.076469 + ], + [ + -78.478367, + 38.076647 + ], + [ + -78.477091, + 38.078062 + ], + [ + -78.476397, + 38.078846 + ], + [ + -78.475743, + 38.079571 + ], + [ + -78.474543, + 38.08091 + ], + [ + -78.474163, + 38.081335 + ], + [ + -78.473969, + 38.081577 + ], + [ + -78.473788, + 38.081788 + ], + [ + -78.473613, + 38.082014 + ], + [ + -78.47347, + 38.082218 + ], + [ + -78.472971, + 38.083082 + ], + [ + -78.472639, + 38.083666 + ], + [ + -78.472264, + 38.084319 + ], + [ + -78.471709, + 38.085285 + ], + [ + -78.471146, + 38.086271 + ], + [ + -78.47079, + 38.086895 + ], + [ + -78.470583, + 38.087258 + ], + [ + -78.47026, + 38.087825 + ], + [ + -78.469568, + 38.089039 + ], + [ + -78.468607, + 38.090712 + ], + [ + -78.468501, + 38.090897 + ], + [ + -78.468139, + 38.091557 + ], + [ + -78.468043, + 38.091733 + ], + [ + -78.467922, + 38.09192 + ], + [ + -78.467732, + 38.092218 + ], + [ + -78.46735, + 38.0929 + ], + [ + -78.466766, + 38.093924 + ], + [ + -78.466497, + 38.09437 + ], + [ + -78.466369, + 38.094558 + ], + [ + -78.46599, + 38.095057 + ], + [ + -78.465526, + 38.09564 + ], + [ + -78.465381, + 38.095816 + ], + [ + -78.464933, + 38.096381 + ], + [ + -78.464463, + 38.096962 + ], + [ + -78.464049, + 38.097474 + ], + [ + -78.463974, + 38.097573 + ], + [ + -78.463441, + 38.098232 + ], + [ + -78.46294, + 38.098874 + ], + [ + -78.462231, + 38.099765 + ], + [ + -78.461478, + 38.100721 + ], + [ + -78.460943, + 38.101395 + ], + [ + -78.460544, + 38.101882 + ], + [ + -78.460009, + 38.102564 + ], + [ + -78.459568, + 38.103126 + ], + [ + -78.459337, + 38.103403 + ], + [ + -78.458603, + 38.10429 + ], + [ + -78.457804, + 38.105297 + ], + [ + -78.45751, + 38.105695 + ], + [ + -78.4569, + 38.106619 + ], + [ + -78.456598, + 38.107068 + ], + [ + -78.45544, + 38.108845 + ], + [ + -78.454988, + 38.109578 + ], + [ + -78.454476, + 38.110311 + ], + [ + -78.454296, + 38.110569 + ], + [ + -78.454206, + 38.110708 + ], + [ + -78.454093, + 38.110899 + ], + [ + -78.453942, + 38.111128 + ], + [ + -78.453769, + 38.111409 + ], + [ + -78.453294, + 38.112125 + ], + [ + -78.453172, + 38.112318 + ], + [ + -78.452856, + 38.112817 + ], + [ + -78.452688, + 38.11307 + ], + [ + -78.452602, + 38.113223 + ], + [ + -78.451975, + 38.114186 + ], + [ + -78.451686, + 38.11461 + ], + [ + -78.45106, + 38.115568 + ], + [ + -78.450908, + 38.115798 + ], + [ + -78.450496, + 38.11642 + ], + [ + -78.450419, + 38.116537 + ], + [ + -78.45032, + 38.116697 + ], + [ + -78.450137, + 38.116993 + ], + [ + -78.449702, + 38.117634 + ], + [ + -78.449172, + 38.118448 + ], + [ + -78.448773, + 38.119065 + ], + [ + -78.448006, + 38.120242 + ], + [ + -78.447677, + 38.120726 + ], + [ + -78.447299, + 38.121219 + ], + [ + -78.44692, + 38.121631 + ], + [ + -78.446411, + 38.122124 + ], + [ + -78.4458, + 38.12267 + ], + [ + -78.444661, + 38.123687 + ], + [ + -78.442392, + 38.125724 + ], + [ + -78.441529, + 38.126494 + ], + [ + -78.440922, + 38.127044 + ], + [ + -78.440006, + 38.127866 + ], + [ + -78.439371, + 38.128436 + ], + [ + -78.437997, + 38.129669 + ], + [ + -78.437902, + 38.129754 + ], + [ + -78.437019, + 38.130549 + ], + [ + -78.436453, + 38.131059 + ], + [ + -78.436187, + 38.131299 + ], + [ + -78.435995, + 38.13147 + ], + [ + -78.435251, + 38.132172 + ], + [ + -78.435106, + 38.132303 + ], + [ + -78.434673, + 38.132753 + ], + [ + -78.434293, + 38.13317 + ], + [ + -78.433695, + 38.133887 + ], + [ + -78.433416, + 38.134269 + ], + [ + -78.433195, + 38.134572 + ], + [ + -78.432173, + 38.13616 + ], + [ + -78.430917, + 38.138131 + ], + [ + -78.430468, + 38.138847 + ], + [ + -78.429836, + 38.139833 + ], + [ + -78.429464, + 38.140424 + ], + [ + -78.428859, + 38.141359 + ], + [ + -78.428348, + 38.142178 + ], + [ + -78.428275, + 38.142291 + ], + [ + -78.427887, + 38.14289 + ], + [ + -78.427641, + 38.143278 + ], + [ + -78.427277, + 38.143851 + ], + [ + -78.427263, + 38.143873 + ], + [ + -78.425718, + 38.146293 + ], + [ + -78.4249, + 38.147586 + ], + [ + -78.423982, + 38.149017 + ], + [ + -78.423879, + 38.149181 + ], + [ + -78.4234, + 38.149936 + ], + [ + -78.422346, + 38.1516 + ], + [ + -78.42208, + 38.151996 + ], + [ + -78.421684, + 38.152621 + ], + [ + -78.421337, + 38.15319 + ], + [ + -78.420383, + 38.154692 + ], + [ + -78.419605, + 38.155908 + ], + [ + -78.417659, + 38.158962 + ], + [ + -78.415009, + 38.163121 + ], + [ + -78.414626, + 38.163716 + ], + [ + -78.414541, + 38.163851 + ], + [ + -78.414293, + 38.164245 + ], + [ + -78.412771, + 38.16663 + ], + [ + -78.41231, + 38.167345 + ], + [ + -78.411781, + 38.168185 + ], + [ + -78.410521, + 38.170164 + ], + [ + -78.410064, + 38.170881 + ], + [ + -78.408661, + 38.173081 + ], + [ + -78.408289, + 38.173661 + ], + [ + -78.406754, + 38.176057 + ], + [ + -78.405791, + 38.177582 + ], + [ + -78.405633, + 38.177824 + ], + [ + -78.404819, + 38.179105 + ], + [ + -78.40451, + 38.179581 + ], + [ + -78.403702, + 38.180857 + ], + [ + -78.403534, + 38.181116 + ], + [ + -78.40229, + 38.183084 + ], + [ + -78.402, + 38.183534 + ], + [ + -78.401567, + 38.184219 + ], + [ + -78.401491, + 38.184329 + ], + [ + -78.400918, + 38.18523 + ], + [ + -78.400512, + 38.185861 + ], + [ + -78.399321, + 38.187671 + ], + [ + -78.399195, + 38.187856 + ], + [ + -78.399077, + 38.188041 + ], + [ + -78.398689, + 38.188617 + ], + [ + -78.398558, + 38.18882 + ], + [ + -78.397589, + 38.190295 + ], + [ + -78.3974, + 38.190566 + ], + [ + -78.397207, + 38.19086 + ], + [ + -78.396877, + 38.191349 + ], + [ + -78.396731, + 38.191574 + ], + [ + -78.396016, + 38.192652 + ], + [ + -78.395969, + 38.192724 + ], + [ + -78.395198, + 38.193895 + ], + [ + -78.395145, + 38.193978 + ], + [ + -78.395092, + 38.194057 + ], + [ + -78.395078, + 38.194078 + ], + [ + -78.394787, + 38.194511 + ], + [ + -78.394461, + 38.19501 + ], + [ + -78.394425, + 38.195065 + ], + [ + -78.393867, + 38.195904 + ], + [ + -78.393697, + 38.196162 + ], + [ + -78.392569, + 38.197862 + ], + [ + -78.392356, + 38.198186 + ], + [ + -78.391791, + 38.199049 + ], + [ + -78.3916, + 38.199341 + ], + [ + -78.391424, + 38.19959 + ], + [ + -78.391056, + 38.200141 + ], + [ + -78.390364, + 38.201178 + ], + [ + -78.388697, + 38.203713 + ], + [ + -78.387884, + 38.204937 + ], + [ + -78.387682, + 38.20524 + ], + [ + -78.387424, + 38.205639 + ], + [ + -78.386997, + 38.206278 + ], + [ + -78.386781, + 38.206604 + ], + [ + -78.386138, + 38.207581 + ], + [ + -78.385992, + 38.207804 + ], + [ + -78.385531, + 38.2085 + ], + [ + -78.38498, + 38.209334 + ], + [ + -78.384853, + 38.209537 + ], + [ + -78.383889, + 38.210987 + ], + [ + -78.383519, + 38.211533 + ], + [ + -78.383408, + 38.211705 + ], + [ + -78.383194, + 38.212041 + ], + [ + -78.382209, + 38.213531 + ], + [ + -78.381949, + 38.213932 + ], + [ + -78.381401, + 38.214759 + ], + [ + -78.380953, + 38.215433 + ], + [ + -78.380697, + 38.215818 + ], + [ + -78.380472, + 38.216158 + ], + [ + -78.379118, + 38.218196 + ], + [ + -78.378999, + 38.218384 + ], + [ + -78.37862, + 38.21895 + ], + [ + -78.377882, + 38.220071 + ], + [ + -78.377739, + 38.220289 + ], + [ + -78.377587, + 38.220523 + ], + [ + -78.376908, + 38.221535 + ], + [ + -78.376698, + 38.221851 + ], + [ + -78.376516, + 38.222128 + ], + [ + -78.375966, + 38.222959 + ], + [ + -78.375503, + 38.223658 + ], + [ + -78.374143, + 38.225716 + ], + [ + -78.373741, + 38.226317 + ], + [ + -78.372465, + 38.228246 + ], + [ + -78.371604, + 38.229546 + ], + [ + -78.371224, + 38.230126 + ], + [ + -78.37075, + 38.230832 + ], + [ + -78.370117, + 38.231792 + ], + [ + -78.369796, + 38.23229 + ], + [ + -78.369344, + 38.233031 + ], + [ + -78.369247, + 38.233202 + ], + [ + -78.369201, + 38.233285 + ], + [ + -78.369089, + 38.233499 + ], + [ + -78.368757, + 38.234191 + ], + [ + -78.368537, + 38.23469 + ], + [ + -78.368285, + 38.235273 + ], + [ + -78.367348, + 38.237406 + ], + [ + -78.367125, + 38.237924 + ], + [ + -78.366876, + 38.23848 + ], + [ + -78.366632, + 38.239054 + ], + [ + -78.366538, + 38.239263 + ], + [ + -78.366315, + 38.239761 + ], + [ + -78.365981, + 38.240523 + ], + [ + -78.365112, + 38.242495 + ], + [ + -78.364536, + 38.243815 + ], + [ + -78.364277, + 38.244425 + ], + [ + -78.363872, + 38.245322 + ], + [ + -78.363644, + 38.245831 + ], + [ + -78.363475, + 38.246227 + ], + [ + -78.363324, + 38.246579 + ], + [ + -78.363065, + 38.24716 + ], + [ + -78.362399, + 38.248697 + ], + [ + -78.362213, + 38.249115 + ], + [ + -78.36185, + 38.249928 + ], + [ + -78.360994, + 38.251906 + ], + [ + -78.360894, + 38.252122 + ], + [ + -78.360732, + 38.252472 + ], + [ + -78.359818, + 38.254556 + ], + [ + -78.359604, + 38.255032 + ], + [ + -78.358451, + 38.257672 + ], + [ + -78.35837, + 38.257854 + ], + [ + -78.357235, + 38.260418 + ], + [ + -78.35697, + 38.261034 + ], + [ + -78.356749, + 38.261526 + ], + [ + -78.356328, + 38.262487 + ], + [ + -78.3557, + 38.26392 + ], + [ + -78.355441, + 38.264489 + ], + [ + -78.354985, + 38.265534 + ], + [ + -78.354199, + 38.267311 + ], + [ + -78.354014, + 38.267697 + ], + [ + -78.353899, + 38.267927 + ], + [ + -78.353632, + 38.268419 + ], + [ + -78.353386, + 38.268835 + ], + [ + -78.353012, + 38.269405 + ], + [ + -78.352727, + 38.269807 + ], + [ + -78.352433, + 38.270193 + ], + [ + -78.351176, + 38.271816 + ], + [ + -78.35069, + 38.272444 + ], + [ + -78.350332, + 38.272914 + ], + [ + -78.349867, + 38.273496 + ], + [ + -78.349659, + 38.273731 + ], + [ + -78.349448, + 38.273949 + ], + [ + -78.349246, + 38.274133 + ], + [ + -78.348925, + 38.274393 + ], + [ + -78.348653, + 38.274592 + ], + [ + -78.348309, + 38.274816 + ], + [ + -78.346752, + 38.275754 + ], + [ + -78.345609, + 38.276449 + ], + [ + -78.34394, + 38.277447 + ], + [ + -78.343411, + 38.277789 + ], + [ + -78.343205, + 38.277938 + ], + [ + -78.342906, + 38.278167 + ], + [ + -78.342692, + 38.278348 + ], + [ + -78.342621, + 38.27841 + ], + [ + -78.342399, + 38.278622 + ], + [ + -78.342335, + 38.278686 + ], + [ + -78.342171, + 38.278857 + ], + [ + -78.341631, + 38.279482 + ], + [ + -78.341204, + 38.280003 + ], + [ + -78.341139, + 38.280089 + ], + [ + -78.341053, + 38.280202 + ], + [ + -78.340551, + 38.280804 + ], + [ + -78.34033, + 38.281097 + ], + [ + -78.339739, + 38.281771 + ], + [ + -78.337121, + 38.284947 + ], + [ + -78.335554, + 38.286807 + ], + [ + -78.334912, + 38.287652 + ], + [ + -78.334363, + 38.288479 + ], + [ + -78.333901, + 38.289321 + ], + [ + -78.332891, + 38.291302 + ], + [ + -78.33264, + 38.291856 + ], + [ + -78.332046, + 38.29316 + ], + [ + -78.331547, + 38.294091 + ], + [ + -78.33002, + 38.297253 + ], + [ + -78.328705, + 38.299896 + ], + [ + -78.328454, + 38.300437 + ], + [ + -78.327604, + 38.302025 + ], + [ + -78.326529, + 38.303681 + ], + [ + -78.325643, + 38.304891 + ], + [ + -78.325058, + 38.305662 + ], + [ + -78.32399, + 38.30691 + ], + [ + -78.3236, + 38.307359 + ], + [ + -78.323233, + 38.30771 + ], + [ + -78.322626, + 38.308335 + ], + [ + -78.320591, + 38.310229 + ], + [ + -78.317859, + 38.312439 + ], + [ + -78.317136, + 38.313055 + ], + [ + -78.314274, + 38.315396 + ], + [ + -78.313204, + 38.316275 + ], + [ + -78.313084, + 38.316374 + ], + [ + -78.312238, + 38.317069 + ], + [ + -78.31127, + 38.317874 + ], + [ + -78.310555, + 38.318624 + ], + [ + -78.308339, + 38.321068 + ], + [ + -78.307189, + 38.322326 + ], + [ + -78.306432, + 38.323147 + ], + [ + -78.305157, + 38.324565 + ], + [ + -78.299683, + 38.33067 + ], + [ + -78.296227, + 38.334366 + ], + [ + -78.294775, + 38.336025 + ], + [ + -78.294422, + 38.336434 + ], + [ + -78.293518, + 38.337393 + ], + [ + -78.292283, + 38.338774 + ], + [ + -78.290905, + 38.340301 + ], + [ + -78.289054, + 38.34231 + ], + [ + -78.287698, + 38.343781 + ], + [ + -78.286127, + 38.345511 + ], + [ + -78.284805, + 38.346961 + ], + [ + -78.284197, + 38.347653 + ], + [ + -78.281261, + 38.350904 + ], + [ + -78.27928, + 38.353063 + ], + [ + -78.277989, + 38.354462 + ], + [ + -78.276967, + 38.355626 + ], + [ + -78.275482, + 38.357205 + ], + [ + -78.275108, + 38.357686 + ], + [ + -78.273995, + 38.359116 + ], + [ + -78.272612, + 38.361053 + ], + [ + -78.269402, + 38.365549 + ], + [ + -78.268281, + 38.367067 + ], + [ + -78.26707, + 38.368543 + ], + [ + -78.266209, + 38.369424 + ], + [ + -78.26463, + 38.370803 + ], + [ + -78.263855, + 38.371431 + ], + [ + -78.262777, + 38.372178 + ], + [ + -78.262167, + 38.372601 + ], + [ + -78.258589, + 38.375046 + ], + [ + -78.253931, + 38.378242 + ], + [ + -78.253419, + 38.378585 + ], + [ + -78.252722, + 38.379065 + ], + [ + -78.251038, + 38.380279 + ], + [ + -78.249725, + 38.3814 + ], + [ + -78.248824, + 38.38242 + ], + [ + -78.247019, + 38.384778 + ], + [ + -78.243045, + 38.39007 + ], + [ + -78.242379, + 38.390835 + ], + [ + -78.241798, + 38.391304 + ], + [ + -78.241358, + 38.391649 + ], + [ + -78.240659, + 38.392107 + ], + [ + -78.239791, + 38.392562 + ], + [ + -78.236781, + 38.394134 + ], + [ + -78.234618, + 38.395478 + ], + [ + -78.233524, + 38.396238 + ], + [ + -78.231366, + 38.397688 + ], + [ + -78.230593, + 38.398159 + ], + [ + -78.229713, + 38.398631 + ], + [ + -78.22927, + 38.398846 + ], + [ + -78.227176, + 38.399941 + ], + [ + -78.224001, + 38.401573 + ], + [ + -78.221687, + 38.402762 + ], + [ + -78.220927, + 38.403115 + ], + [ + -78.219583, + 38.403494 + ], + [ + -78.217956, + 38.403869 + ], + [ + -78.216834, + 38.404329 + ], + [ + -78.216198, + 38.404653 + ], + [ + -78.215673, + 38.404943 + ], + [ + -78.2147, + 38.405692 + ], + [ + -78.214341, + 38.406017 + ], + [ + -78.211846, + 38.409013 + ], + [ + -78.211205, + 38.409859 + ], + [ + -78.208931, + 38.412831 + ], + [ + -78.207891, + 38.413946 + ], + [ + -78.207388, + 38.414459 + ], + [ + -78.206848, + 38.414885 + ], + [ + -78.20502, + 38.416246 + ], + [ + -78.204339, + 38.416746 + ], + [ + -78.203587, + 38.417231 + ], + [ + -78.201789, + 38.418025 + ], + [ + -78.199931, + 38.418788 + ], + [ + -78.198775, + 38.419213 + ], + [ + -78.197516, + 38.419599 + ], + [ + -78.196891, + 38.419728 + ], + [ + -78.193593, + 38.420311 + ], + [ + -78.192656, + 38.420508 + ], + [ + -78.191772, + 38.420736 + ], + [ + -78.190615, + 38.421137 + ], + [ + -78.189756, + 38.421485 + ], + [ + -78.189131, + 38.421795 + ], + [ + -78.188009, + 38.422501 + ], + [ + -78.186635, + 38.423265 + ], + [ + -78.185396, + 38.423841 + ], + [ + -78.184545, + 38.424162 + ], + [ + -78.179643, + 38.425692 + ], + [ + -78.176595, + 38.426575 + ], + [ + -78.175037, + 38.427149 + ], + [ + -78.174014, + 38.427529 + ], + [ + -78.171007, + 38.428688 + ], + [ + -78.169272, + 38.429381 + ], + [ + -78.165511, + 38.430827 + ], + [ + -78.164119, + 38.431371 + ], + [ + -78.162591, + 38.431967 + ], + [ + -78.161653, + 38.432308 + ], + [ + -78.160661, + 38.43271 + ], + [ + -78.160269, + 38.432865 + ], + [ + -78.159874, + 38.433009 + ], + [ + -78.157491, + 38.433942 + ], + [ + -78.157022, + 38.434133 + ], + [ + -78.156281, + 38.434403 + ], + [ + -78.154122, + 38.435214 + ], + [ + -78.152887, + 38.435503 + ], + [ + -78.151935, + 38.435645 + ], + [ + -78.151237, + 38.435723 + ], + [ + -78.149391, + 38.435895 + ], + [ + -78.145341, + 38.436294 + ], + [ + -78.143178, + 38.436516 + ], + [ + -78.141588, + 38.436723 + ], + [ + -78.140742, + 38.436927 + ], + [ + -78.139967, + 38.43716 + ], + [ + -78.139029, + 38.437478 + ], + [ + -78.138213, + 38.437833 + ], + [ + -78.13673, + 38.438732 + ], + [ + -78.135769, + 38.439493 + ], + [ + -78.133667, + 38.441543 + ], + [ + -78.13309, + 38.442092 + ], + [ + -78.132637, + 38.442565 + ], + [ + -78.131362, + 38.443807 + ], + [ + -78.131197, + 38.443972 + ], + [ + -78.13069, + 38.444456 + ], + [ + -78.13004, + 38.445093 + ], + [ + -78.129654, + 38.445515 + ], + [ + -78.129431, + 38.445788 + ], + [ + -78.129306, + 38.445939 + ], + [ + -78.129135, + 38.446147 + ], + [ + -78.126535, + 38.449414 + ], + [ + -78.12559, + 38.450596 + ], + [ + -78.124937, + 38.451403 + ], + [ + -78.12463, + 38.451786 + ], + [ + -78.122999, + 38.453819 + ], + [ + -78.12268, + 38.454222 + ], + [ + -78.122212, + 38.454799 + ], + [ + -78.122012, + 38.455018 + ], + [ + -78.121815, + 38.455209 + ], + [ + -78.121657, + 38.455346 + ], + [ + -78.121484, + 38.455481 + ], + [ + -78.121283, + 38.455622 + ], + [ + -78.121072, + 38.455755 + ], + [ + -78.120838, + 38.455889 + ], + [ + -78.120605, + 38.456007 + ], + [ + -78.120411, + 38.456093 + ], + [ + -78.120081, + 38.45622 + ], + [ + -78.11988, + 38.456286 + ], + [ + -78.119617, + 38.456362 + ], + [ + -78.119481, + 38.456395 + ], + [ + -78.119029, + 38.456484 + ], + [ + -78.118859, + 38.456513 + ], + [ + -78.118556, + 38.456543 + ], + [ + -78.118252, + 38.456558 + ], + [ + -78.117886, + 38.45656 + ], + [ + -78.117582, + 38.456545 + ], + [ + -78.117215, + 38.456509 + ], + [ + -78.11691, + 38.456463 + ], + [ + -78.116669, + 38.456417 + ], + [ + -78.116299, + 38.456332 + ], + [ + -78.114395, + 38.455867 + ], + [ + -78.113075, + 38.455549 + ], + [ + -78.112183, + 38.455337 + ], + [ + -78.111983, + 38.455288 + ], + [ + -78.110622, + 38.454956 + ], + [ + -78.109647, + 38.454713 + ], + [ + -78.109318, + 38.454619 + ], + [ + -78.108646, + 38.454427 + ], + [ + -78.108148, + 38.454266 + ], + [ + -78.107826, + 38.454152 + ], + [ + -78.107433, + 38.454006 + ], + [ + -78.106215, + 38.453523 + ], + [ + -78.103244, + 38.452284 + ], + [ + -78.103113, + 38.45223 + ], + [ + -78.101465, + 38.451517 + ], + [ + -78.100793, + 38.451267 + ], + [ + -78.099999, + 38.450965 + ], + [ + -78.099633, + 38.450843 + ], + [ + -78.099366, + 38.450762 + ], + [ + -78.098981, + 38.450649 + ], + [ + -78.098604, + 38.450547 + ], + [ + -78.098262, + 38.45046 + ], + [ + -78.09792, + 38.450384 + ], + [ + -78.096808, + 38.450181 + ], + [ + -78.096151, + 38.450083 + ], + [ + -78.095446, + 38.449969 + ], + [ + -78.093727, + 38.449707 + ], + [ + -78.092677, + 38.449547 + ], + [ + -78.092158, + 38.449481 + ], + [ + -78.091766, + 38.449445 + ], + [ + -78.091635, + 38.449437 + ], + [ + -78.091391, + 38.44943 + ], + [ + -78.09088, + 38.449437 + ], + [ + -78.090541, + 38.449459 + ], + [ + -78.090154, + 38.449505 + ], + [ + -78.090027, + 38.449526 + ], + [ + -78.089761, + 38.44957 + ], + [ + -78.089091, + 38.449707 + ], + [ + -78.08849, + 38.449845 + ], + [ + -78.087312, + 38.450134 + ], + [ + -78.086546, + 38.450314 + ], + [ + -78.086092, + 38.450427 + ], + [ + -78.085716, + 38.450516 + ], + [ + -78.085217, + 38.45064 + ], + [ + -78.083614, + 38.45102 + ], + [ + -78.082588, + 38.451268 + ], + [ + -78.081682, + 38.451496 + ], + [ + -78.080934, + 38.451707 + ], + [ + -78.080808, + 38.451743 + ], + [ + -78.080252, + 38.451928 + ], + [ + -78.080061, + 38.451995 + ], + [ + -78.079356, + 38.452244 + ], + [ + -78.079056, + 38.452366 + ], + [ + -78.077758, + 38.452899 + ], + [ + -78.07693, + 38.453218 + ], + [ + -78.07648, + 38.453363 + ], + [ + -78.075972, + 38.453504 + ], + [ + -78.075519, + 38.453613 + ], + [ + -78.075245, + 38.453672 + ], + [ + -78.074633, + 38.453773 + ], + [ + -78.073634, + 38.453917 + ], + [ + -78.073086, + 38.453985 + ], + [ + -78.071708, + 38.454165 + ], + [ + -78.070367, + 38.45434 + ], + [ + -78.069606, + 38.454439 + ], + [ + -78.065196, + 38.455001 + ], + [ + -78.0636, + 38.455212 + ], + [ + -78.062967, + 38.455296 + ], + [ + -78.062279, + 38.455383 + ], + [ + -78.061807, + 38.45545 + ], + [ + -78.061375, + 38.455516 + ], + [ + -78.060496, + 38.455651 + ], + [ + -78.059099, + 38.455874 + ], + [ + -78.058415, + 38.455997 + ], + [ + -78.057861, + 38.456107 + ], + [ + -78.057398, + 38.456211 + ], + [ + -78.057094, + 38.456284 + ], + [ + -78.055369, + 38.456762 + ], + [ + -78.054558, + 38.456978 + ], + [ + -78.05416, + 38.457057 + ], + [ + -78.053923, + 38.4571 + ], + [ + -78.053692, + 38.457137 + ], + [ + -78.053464, + 38.457172 + ], + [ + -78.052965, + 38.457229 + ], + [ + -78.052547, + 38.457266 + ], + [ + -78.05168, + 38.457327 + ], + [ + -78.051381, + 38.457343 + ], + [ + -78.051209, + 38.457356 + ], + [ + -78.050231, + 38.457415 + ], + [ + -78.049522, + 38.45745 + ], + [ + -78.049115, + 38.457457 + ], + [ + -78.048707, + 38.45745 + ], + [ + -78.048107, + 38.457414 + ], + [ + -78.046583, + 38.457296 + ], + [ + -78.045473, + 38.457209 + ], + [ + -78.043615, + 38.457066 + ], + [ + -78.04299, + 38.457014 + ], + [ + -78.041948, + 38.456934 + ], + [ + -78.041564, + 38.4569 + ], + [ + -78.040447, + 38.456809 + ], + [ + -78.039807, + 38.456752 + ], + [ + -78.039565, + 38.456722 + ], + [ + -78.038614, + 38.456586 + ], + [ + -78.037992, + 38.45648 + ], + [ + -78.036619, + 38.456229 + ], + [ + -78.036312, + 38.456174 + ], + [ + -78.035316, + 38.455996 + ], + [ + -78.033993, + 38.455756 + ], + [ + -78.033455, + 38.455659 + ], + [ + -78.032995, + 38.455576 + ], + [ + -78.032344, + 38.455462 + ], + [ + -78.032225, + 38.455441 + ], + [ + -78.032071, + 38.455411 + ], + [ + -78.031918, + 38.455381 + ], + [ + -78.030629, + 38.455156 + ], + [ + -78.030487, + 38.455136 + ], + [ + -78.02993, + 38.455035 + ], + [ + -78.029397, + 38.454939 + ], + [ + -78.027154, + 38.454551 + ], + [ + -78.026507, + 38.454439 + ], + [ + -78.026143, + 38.454368 + ], + [ + -78.025005, + 38.454171 + ], + [ + -78.024336, + 38.45404 + ], + [ + -78.023622, + 38.453878 + ], + [ + -78.02312, + 38.453727 + ], + [ + -78.02273, + 38.453603 + ], + [ + -78.022384, + 38.453473 + ], + [ + -78.021945, + 38.453293 + ], + [ + -78.021688, + 38.453179 + ], + [ + -78.02141, + 38.45304 + ], + [ + -78.020949, + 38.452794 + ], + [ + -78.020606, + 38.452593 + ], + [ + -78.018376, + 38.451156 + ], + [ + -78.015052, + 38.449001 + ], + [ + -78.013038, + 38.447702 + ], + [ + -78.012718, + 38.447476 + ], + [ + -78.012365, + 38.447314 + ], + [ + -78.011913, + 38.44707 + ], + [ + -78.011467, + 38.446849 + ], + [ + -78.011017, + 38.446646 + ], + [ + -78.010785, + 38.446548 + ], + [ + -78.01041, + 38.446389 + ], + [ + -78.009947, + 38.446212 + ], + [ + -78.009475, + 38.446047 + ], + [ + -78.009032, + 38.44592 + ], + [ + -78.008198, + 38.445668 + ], + [ + -78.007806, + 38.445574 + ], + [ + -78.007536, + 38.445509 + ], + [ + -78.00704, + 38.445404 + ], + [ + -78.006541, + 38.445314 + ], + [ + -78.006039, + 38.445234 + ], + [ + -78.005535, + 38.445168 + ], + [ + -78.004882, + 38.445103 + ], + [ + -78.00427, + 38.44506 + ], + [ + -78.003857, + 38.445042 + ], + [ + -78.003259, + 38.445032 + ], + [ + -77.996098, + 38.445039 + ], + [ + -77.995524, + 38.445052 + ], + [ + -77.995083, + 38.445072 + ], + [ + -77.9946, + 38.445108 + ], + [ + -77.994291, + 38.44514 + ], + [ + -77.994119, + 38.445159 + ], + [ + -77.993562, + 38.445235 + ], + [ + -77.993077, + 38.445314 + ], + [ + -77.992738, + 38.44538 + ], + [ + -77.992304, + 38.445476 + ], + [ + -77.991774, + 38.445609 + ], + [ + -77.991277, + 38.445754 + ], + [ + -77.990885, + 38.44588 + ], + [ + -77.990401, + 38.446049 + ], + [ + -77.989902, + 38.446248 + ], + [ + -77.98951, + 38.446417 + ], + [ + -77.989127, + 38.446595 + ], + [ + -77.988671, + 38.446826 + ], + [ + -77.988226, + 38.44707 + ], + [ + -77.988015, + 38.447193 + ], + [ + -77.987964, + 38.447222 + ], + [ + -77.986229, + 38.448266 + ], + [ + -77.982377, + 38.450578 + ], + [ + -77.980067, + 38.451965 + ], + [ + -77.978396, + 38.452971 + ], + [ + -77.976723, + 38.453978 + ], + [ + -77.971729, + 38.456974 + ], + [ + -77.970854, + 38.457513 + ], + [ + -77.970447, + 38.457776 + ], + [ + -77.969812, + 38.458205 + ], + [ + -77.969672, + 38.458304 + ], + [ + -77.969294, + 38.458571 + ], + [ + -77.968878, + 38.458872 + ], + [ + -77.968162, + 38.459423 + ], + [ + -77.967696, + 38.459799 + ], + [ + -77.967125, + 38.46028 + ], + [ + -77.966325, + 38.460982 + ], + [ + -77.965258, + 38.461918 + ], + [ + -77.964866, + 38.462267 + ], + [ + -77.960196, + 38.466376 + ], + [ + -77.955939, + 38.470123 + ], + [ + -77.954947, + 38.470996 + ], + [ + -77.954533, + 38.471358 + ], + [ + -77.953922, + 38.471893 + ], + [ + -77.953458, + 38.472304 + ], + [ + -77.953176, + 38.472548 + ], + [ + -77.952583, + 38.473072 + ], + [ + -77.951119, + 38.474355 + ], + [ + -77.950943, + 38.474509 + ], + [ + -77.949669, + 38.47563 + ], + [ + -77.948949, + 38.476265 + ], + [ + -77.948002, + 38.477098 + ], + [ + -77.940672, + 38.483548 + ], + [ + -77.940481, + 38.483731 + ], + [ + -77.940188, + 38.484012 + ], + [ + -77.939893, + 38.484318 + ], + [ + -77.939484, + 38.484776 + ], + [ + -77.93926, + 38.485054 + ], + [ + -77.939039, + 38.48534 + ], + [ + -77.938835, + 38.485618 + ], + [ + -77.938574, + 38.486003 + ], + [ + -77.938385, + 38.4863 + ], + [ + -77.938154, + 38.486695 + ], + [ + -77.936929, + 38.489071 + ], + [ + -77.936476, + 38.48995 + ], + [ + -77.936307, + 38.490277 + ], + [ + -77.936213, + 38.490449 + ], + [ + -77.936032, + 38.490779 + ], + [ + -77.935797, + 38.491168 + ], + [ + -77.935515, + 38.491593 + ], + [ + -77.935238, + 38.491981 + ], + [ + -77.934904, + 38.492412 + ], + [ + -77.934836, + 38.492493 + ], + [ + -77.93462, + 38.492753 + ], + [ + -77.934238, + 38.493183 + ], + [ + -77.933985, + 38.493449 + ], + [ + -77.933681, + 38.493753 + ], + [ + -77.933395, + 38.494018 + ], + [ + -77.933018, + 38.494354 + ], + [ + -77.932749, + 38.494585 + ], + [ + -77.932252, + 38.494973 + ], + [ + -77.93171, + 38.495374 + ], + [ + -77.931341, + 38.495628 + ], + [ + -77.930966, + 38.495866 + ], + [ + -77.930194, + 38.496327 + ], + [ + -77.929795, + 38.496546 + ], + [ + -77.929468, + 38.496713 + ], + [ + -77.928898, + 38.496989 + ], + [ + -77.928401, + 38.497211 + ], + [ + -77.927814, + 38.497454 + ], + [ + -77.927352, + 38.49763 + ], + [ + -77.926883, + 38.497792 + ], + [ + -77.92627, + 38.497988 + ], + [ + -77.925745, + 38.498139 + ], + [ + -77.925688, + 38.498154 + ], + [ + -77.925207, + 38.498279 + ], + [ + -77.924635, + 38.498412 + ], + [ + -77.924059, + 38.498531 + ], + [ + -77.923478, + 38.498637 + ], + [ + -77.923244, + 38.498675 + ], + [ + -77.9209, + 38.499106 + ], + [ + -77.920407, + 38.499196 + ], + [ + -77.916265, + 38.499951 + ], + [ + -77.914897, + 38.500194 + ], + [ + -77.913262, + 38.500498 + ], + [ + -77.912906, + 38.500563 + ], + [ + -77.911059, + 38.5009 + ], + [ + -77.910401, + 38.501012 + ], + [ + -77.909308, + 38.501222 + ], + [ + -77.90816, + 38.501425 + ], + [ + -77.906956, + 38.501647 + ], + [ + -77.902649, + 38.502433 + ], + [ + -77.901836, + 38.502578 + ], + [ + -77.901383, + 38.502661 + ], + [ + -77.899056, + 38.503088 + ], + [ + -77.897887, + 38.503302 + ], + [ + -77.896932, + 38.503454 + ], + [ + -77.896481, + 38.503514 + ], + [ + -77.896026, + 38.50356 + ], + [ + -77.89557, + 38.503592 + ], + [ + -77.895091, + 38.503613 + ], + [ + -77.894605, + 38.503621 + ], + [ + -77.894338, + 38.503619 + ], + [ + -77.894023, + 38.503612 + ], + [ + -77.893539, + 38.503589 + ], + [ + -77.893152, + 38.50356 + ], + [ + -77.891645, + 38.503392 + ], + [ + -77.891145, + 38.503351 + ], + [ + -77.890705, + 38.503331 + ], + [ + -77.890264, + 38.503325 + ], + [ + -77.89, + 38.503328 + ], + [ + -77.889421, + 38.503346 + ], + [ + -77.888918, + 38.503375 + ], + [ + -77.888578, + 38.503406 + ], + [ + -77.888318, + 38.503429 + ], + [ + -77.887823, + 38.50349 + ], + [ + -77.887334, + 38.503566 + ], + [ + -77.886849, + 38.503655 + ], + [ + -77.886369, + 38.503759 + ], + [ + -77.885701, + 38.503929 + ], + [ + -77.88504, + 38.504114 + ], + [ + -77.883872, + 38.504451 + ], + [ + -77.882026, + 38.504972 + ], + [ + -77.880726, + 38.50535 + ], + [ + -77.879756, + 38.505628 + ], + [ + -77.879416, + 38.505726 + ], + [ + -77.878734, + 38.505916 + ], + [ + -77.87665, + 38.506514 + ], + [ + -77.873295, + 38.507467 + ], + [ + -77.870872, + 38.508164 + ], + [ + -77.867574, + 38.509112 + ], + [ + -77.86643, + 38.509426 + ], + [ + -77.865139, + 38.509804 + ], + [ + -77.864878, + 38.509875 + ], + [ + -77.864614, + 38.509946 + ], + [ + -77.864004, + 38.510124 + ], + [ + -77.863963, + 38.510136 + ], + [ + -77.863243, + 38.510359 + ], + [ + -77.862776, + 38.510515 + ], + [ + -77.862313, + 38.51068 + ], + [ + -77.86153, + 38.510992 + ], + [ + -77.86091, + 38.511252 + ], + [ + -77.860341, + 38.511504 + ], + [ + -77.860101, + 38.511597 + ], + [ + -77.859873, + 38.511706 + ], + [ + -77.859049, + 38.512033 + ], + [ + -77.858596, + 38.512199 + ], + [ + -77.85801, + 38.512393 + ], + [ + -77.85641, + 38.512859 + ], + [ + -77.85546, + 38.513131 + ], + [ + -77.853636, + 38.513652 + ], + [ + -77.852939, + 38.513842 + ], + [ + -77.85189, + 38.514117 + ], + [ + -77.851773, + 38.514147 + ], + [ + -77.851155, + 38.514282 + ], + [ + -77.850783, + 38.514355 + ], + [ + -77.850158, + 38.514468 + ], + [ + -77.849529, + 38.514566 + ], + [ + -77.848611, + 38.514673 + ], + [ + -77.847601, + 38.514814 + ], + [ + -77.847219, + 38.514874 + ], + [ + -77.846744, + 38.514961 + ], + [ + -77.846275, + 38.515063 + ], + [ + -77.845622, + 38.515227 + ], + [ + -77.843493, + 38.515828 + ], + [ + -77.840926, + 38.516554 + ], + [ + -77.838953, + 38.517123 + ], + [ + -77.838611, + 38.51724 + ], + [ + -77.838276, + 38.51737 + ], + [ + -77.838087, + 38.517452 + ], + [ + -77.837878, + 38.517559 + ], + [ + -77.837641, + 38.517698 + ], + [ + -77.837371, + 38.517879 + ], + [ + -77.837159, + 38.518042 + ], + [ + -77.836631, + 38.518508 + ], + [ + -77.833939, + 38.52107 + ], + [ + -77.833536, + 38.521444 + ], + [ + -77.832859, + 38.52207 + ], + [ + -77.832618, + 38.52227 + ], + [ + -77.832363, + 38.52246 + ], + [ + -77.832151, + 38.522605 + ], + [ + -77.831761, + 38.52284 + ], + [ + -77.831645, + 38.522905 + ], + [ + -77.831341, + 38.523059 + ], + [ + -77.831027, + 38.523201 + ], + [ + -77.830705, + 38.52333 + ], + [ + -77.830375, + 38.523446 + ], + [ + -77.82725, + 38.524408 + ], + [ + -77.825282, + 38.525005 + ], + [ + -77.824825, + 38.525153 + ], + [ + -77.824766, + 38.525172 + ], + [ + -77.82414, + 38.525403 + ], + [ + -77.823904, + 38.525501 + ], + [ + -77.823444, + 38.525707 + ], + [ + -77.823161, + 38.525842 + ], + [ + -77.822816, + 38.526023 + ], + [ + -77.822483, + 38.526216 + ], + [ + -77.82216, + 38.526429 + ], + [ + -77.821905, + 38.526618 + ], + [ + -77.821824, + 38.526681 + ], + [ + -77.821661, + 38.526816 + ], + [ + -77.82143, + 38.527024 + ], + [ + -77.821026, + 38.527454 + ], + [ + -77.820758, + 38.527783 + ], + [ + -77.820516, + 38.528112 + ], + [ + -77.820197, + 38.52856 + ], + [ + -77.819895, + 38.529029 + ], + [ + -77.81945, + 38.529798 + ], + [ + -77.818541, + 38.531386 + ], + [ + -77.817476, + 38.533249 + ], + [ + -77.817174, + 38.533749 + ], + [ + -77.815779, + 38.536111 + ], + [ + -77.812836, + 38.541042 + ], + [ + -77.812145, + 38.542152 + ], + [ + -77.811443, + 38.543345 + ], + [ + -77.81107, + 38.543916 + ], + [ + -77.809169, + 38.54677 + ], + [ + -77.807061, + 38.549912 + ], + [ + -77.805801, + 38.55177 + ], + [ + -77.803189, + 38.555743 + ], + [ + -77.802664, + 38.55653 + ], + [ + -77.802442, + 38.556869 + ], + [ + -77.802253, + 38.557175 + ], + [ + -77.802079, + 38.557492 + ], + [ + -77.801838, + 38.557971 + ], + [ + -77.801782, + 38.55809 + ], + [ + -77.801657, + 38.55838 + ], + [ + -77.801522, + 38.558722 + ], + [ + -77.801429, + 38.558994 + ], + [ + -77.801302, + 38.559432 + ], + [ + -77.801209, + 38.559822 + ], + [ + -77.801144, + 38.560169 + ], + [ + -77.801065, + 38.560727 + ], + [ + -77.801025, + 38.56131 + ], + [ + -77.801027, + 38.561813 + ], + [ + -77.801049, + 38.562487 + ], + [ + -77.801069, + 38.562893 + ], + [ + -77.801213, + 38.565749 + ], + [ + -77.801305, + 38.567636 + ], + [ + -77.80137, + 38.568961 + ], + [ + -77.801541, + 38.572402 + ], + [ + -77.801599, + 38.573623 + ], + [ + -77.801669, + 38.575224 + ], + [ + -77.801707, + 38.575829 + ], + [ + -77.801772, + 38.577117 + ], + [ + -77.801874, + 38.579138 + ], + [ + -77.801902, + 38.579759 + ], + [ + -77.801914, + 38.579914 + ], + [ + -77.801945, + 38.580642 + ], + [ + -77.801977, + 38.581198 + ], + [ + -77.802036, + 38.582417 + ], + [ + -77.802118, + 38.584113 + ], + [ + -77.802126, + 38.584391 + ], + [ + -77.802131, + 38.584986 + ], + [ + -77.802118, + 38.585525 + ], + [ + -77.802088, + 38.586052 + ], + [ + -77.802017, + 38.586791 + ], + [ + -77.801743, + 38.589112 + ], + [ + -77.801725, + 38.589268 + ], + [ + -77.801437, + 38.591698 + ], + [ + -77.801342, + 38.5925 + ], + [ + -77.801281, + 38.593006 + ], + [ + -77.800994, + 38.595455 + ], + [ + -77.800644, + 38.598437 + ], + [ + -77.800492, + 38.599704 + ], + [ + -77.800457, + 38.599972 + ], + [ + -77.800268, + 38.601612 + ], + [ + -77.800209, + 38.602305 + ], + [ + -77.80017, + 38.602992 + ], + [ + -77.800152, + 38.603904 + ], + [ + -77.800152, + 38.604035 + ], + [ + -77.800152, + 38.604483 + ], + [ + -77.800172, + 38.60559 + ], + [ + -77.800187, + 38.606551 + ], + [ + -77.800205, + 38.607644 + ], + [ + -77.80022, + 38.608813 + ], + [ + -77.800237, + 38.609384 + ], + [ + -77.800232, + 38.610093 + ], + [ + -77.800248, + 38.611162 + ], + [ + -77.80027, + 38.611781 + ], + [ + -77.800276, + 38.611972 + ], + [ + -77.800298, + 38.612639 + ], + [ + -77.800312, + 38.613039 + ], + [ + -77.800332, + 38.613399 + ], + [ + -77.800397, + 38.614527 + ], + [ + -77.800421, + 38.615203 + ], + [ + -77.800432, + 38.61575 + ], + [ + -77.800444, + 38.616559 + ], + [ + -77.800478, + 38.618723 + ], + [ + -77.8005, + 38.619601 + ], + [ + -77.800525, + 38.620811 + ], + [ + -77.800527, + 38.620908 + ], + [ + -77.800548, + 38.62192 + ], + [ + -77.80058, + 38.623403 + ], + [ + -77.800594, + 38.624213 + ], + [ + -77.800603, + 38.625413 + ], + [ + -77.80062, + 38.627386 + ], + [ + -77.800629, + 38.627856 + ], + [ + -77.800651, + 38.62934 + ], + [ + -77.800658, + 38.629863 + ], + [ + -77.800688, + 38.631295 + ], + [ + -77.800701, + 38.63219 + ], + [ + -77.800708, + 38.632656 + ], + [ + -77.800729, + 38.632937 + ], + [ + -77.800749, + 38.6331 + ], + [ + -77.800764, + 38.633194 + ], + [ + -77.800824, + 38.633493 + ], + [ + -77.8009, + 38.63375 + ], + [ + -77.801033, + 38.634132 + ], + [ + -77.801091, + 38.634277 + ], + [ + -77.801339, + 38.634852 + ], + [ + -77.801526, + 38.635289 + ], + [ + -77.801703, + 38.635692 + ], + [ + -77.801752, + 38.635808 + ], + [ + -77.801965, + 38.636295 + ], + [ + -77.802897, + 38.638462 + ], + [ + -77.802996, + 38.638693 + ], + [ + -77.803206, + 38.639174 + ], + [ + -77.803351, + 38.639505 + ], + [ + -77.803635, + 38.640158 + ], + [ + -77.803774, + 38.640485 + ], + [ + -77.80405, + 38.641121 + ], + [ + -77.804137, + 38.641325 + ], + [ + -77.804199, + 38.641471 + ], + [ + -77.804367, + 38.641868 + ], + [ + -77.804398, + 38.641941 + ], + [ + -77.804535, + 38.642359 + ], + [ + -77.804602, + 38.642621 + ], + [ + -77.804642, + 38.642832 + ], + [ + -77.804669, + 38.643038 + ], + [ + -77.804677, + 38.643118 + ], + [ + -77.804687, + 38.643291 + ], + [ + -77.804696, + 38.643722 + ], + [ + -77.804696, + 38.644409 + ], + [ + -77.804677, + 38.644766 + ], + [ + -77.804636, + 38.645023 + ], + [ + -77.804576, + 38.645279 + ], + [ + -77.804498, + 38.645531 + ], + [ + -77.804445, + 38.645671 + ], + [ + -77.804179, + 38.646296 + ], + [ + -77.803976, + 38.646795 + ], + [ + -77.803645, + 38.647584 + ], + [ + -77.803607, + 38.647672 + ], + [ + -77.803037, + 38.649027 + ], + [ + -77.802582, + 38.650099 + ], + [ + -77.802488, + 38.65032 + ], + [ + -77.80226, + 38.650816 + ], + [ + -77.802226, + 38.650891 + ], + [ + -77.801705, + 38.651973 + ], + [ + -77.801524, + 38.652348 + ], + [ + -77.800517, + 38.654435 + ], + [ + -77.800311, + 38.654856 + ], + [ + -77.800109, + 38.655223 + ], + [ + -77.799504, + 38.656216 + ], + [ + -77.799258, + 38.656629 + ], + [ + -77.799064, + 38.656995 + ], + [ + -77.798952, + 38.657238 + ], + [ + -77.798593, + 38.658126 + ], + [ + -77.798524, + 38.658287 + ], + [ + -77.798395, + 38.658591 + ], + [ + -77.798266, + 38.658901 + ] + ] + } + } + ] +} \ No newline at end of file diff --git a/packages/turf-line-slice/test/out/route2_out.geojson b/packages/turf-line-slice/test/out/route2_out.geojson new file mode 100644 index 0000000000..ecc42c4e9f --- /dev/null +++ b/packages/turf-line-slice/test/out/route2_out.geojson @@ -0,0 +1,25349 @@ +{ + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "properties": { + "name": null, + "cmt": null, + "desc": null, + "src": null, + "link1_href": null, + "link1_text": null, + "link1_type": null, + "link2_href": null, + "link2_text": null, + "link2_type": null, + "number": null, + "type": null + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -113.928988, + 50.814121 + ], + [ + -113.928993, + 50.813067 + ], + [ + -113.928994, + 50.811043 + ], + [ + -113.928995, + 50.807418 + ], + [ + -113.929029, + 50.804989 + ], + [ + -113.951995, + 50.804953 + ], + [ + -113.956813, + 50.804931 + ], + [ + -113.957629, + 50.804917 + ], + [ + -113.958021, + 50.804876 + ], + [ + -113.958575, + 50.804779 + ], + [ + -113.959011, + 50.804687 + ], + [ + -113.959367, + 50.804572 + ], + [ + -113.959858, + 50.804414 + ], + [ + -113.960433, + 50.804102 + ], + [ + -113.960932, + 50.803769 + ], + [ + -113.961563, + 50.803306 + ], + [ + -113.961754, + 50.803166 + ], + [ + -113.962486, + 50.802753 + ], + [ + -113.9641, + 50.801549 + ], + [ + -113.966048, + 50.800154 + ], + [ + -113.967597, + 50.799082 + ], + [ + -113.968657, + 50.798289 + ], + [ + -113.969382, + 50.79779 + ], + [ + -113.969303, + 50.797653 + ], + [ + -113.968833, + 50.797177 + ], + [ + -113.968399, + 50.796832 + ], + [ + -113.96652, + 50.796071 + ], + [ + -113.965325, + 50.795579 + ], + [ + -113.964608, + 50.795229 + ], + [ + -113.963373, + 50.794321 + ], + [ + -113.962094, + 50.793355 + ], + [ + -113.956995, + 50.789049 + ], + [ + -113.951125, + 50.784098 + ], + [ + -113.948573, + 50.78194 + ], + [ + -113.941011, + 50.775626 + ], + [ + -113.933724, + 50.769538 + ], + [ + -113.914584, + 50.753577 + ], + [ + -113.906521, + 50.746803 + ], + [ + -113.896774, + 50.738614 + ], + [ + -113.886275, + 50.729779 + ], + [ + -113.88594, + 50.729474 + ], + [ + -113.885307, + 50.728898 + ], + [ + -113.884903, + 50.728477 + ], + [ + -113.884523, + 50.728028 + ], + [ + -113.884201, + 50.727599 + ], + [ + -113.883986, + 50.727298 + ], + [ + -113.883696, + 50.726863 + ], + [ + -113.883482, + 50.72648 + ], + [ + -113.883314, + 50.726156 + ], + [ + -113.883153, + 50.725767 + ], + [ + -113.883094, + 50.725646 + ], + [ + -113.883031, + 50.725465 + ], + [ + -113.882906, + 50.725155 + ], + [ + -113.882792, + 50.724718 + ], + [ + -113.882641, + 50.7241 + ], + [ + -113.882584, + 50.723735 + ], + [ + -113.88255, + 50.723367 + ], + [ + -113.882523, + 50.72258 + ], + [ + -113.882495, + 50.717709 + ], + [ + -113.882486, + 50.713302 + ], + [ + -113.882476, + 50.712125 + ], + [ + -113.882468, + 50.702531 + ], + [ + -113.882456, + 50.699815 + ], + [ + -113.882434, + 50.698229 + ], + [ + -113.882445, + 50.693791 + ], + [ + -113.882419, + 50.692602 + ], + [ + -113.882412, + 50.692077 + ], + [ + -113.882405, + 50.691705 + ], + [ + -113.882365, + 50.691331 + ], + [ + -113.882289, + 50.690878 + ], + [ + -113.882163, + 50.690282 + ], + [ + -113.882074, + 50.689985 + ], + [ + -113.881908, + 50.689517 + ], + [ + -113.881705, + 50.689095 + ], + [ + -113.881622, + 50.688959 + ], + [ + -113.881501, + 50.688721 + ], + [ + -113.881281, + 50.688347 + ], + [ + -113.88097, + 50.687826 + ], + [ + -113.880715, + 50.687491 + ], + [ + -113.880385, + 50.687085 + ], + [ + -113.878859, + 50.685206 + ], + [ + -113.877456, + 50.68348 + ], + [ + -113.875929, + 50.68157 + ], + [ + -113.873357, + 50.67843 + ], + [ + -113.871364, + 50.675999 + ], + [ + -113.869142, + 50.673289 + ], + [ + -113.868358, + 50.672328 + ], + [ + -113.868037, + 50.671943 + ], + [ + -113.867467, + 50.671232 + ], + [ + -113.866987, + 50.670734 + ], + [ + -113.866668, + 50.670424 + ], + [ + -113.866296, + 50.670141 + ], + [ + -113.865816, + 50.669814 + ], + [ + -113.865451, + 50.6696 + ], + [ + -113.8651, + 50.669419 + ], + [ + -113.864667, + 50.669203 + ], + [ + -113.864079, + 50.668945 + ], + [ + -113.863436, + 50.668716 + ], + [ + -113.862804, + 50.66849 + ], + [ + -113.861739, + 50.668114 + ], + [ + -113.853421, + 50.665144 + ], + [ + -113.842891, + 50.661554 + ], + [ + -113.842171, + 50.661197 + ], + [ + -113.841049, + 50.660571 + ], + [ + -113.840156, + 50.659997 + ], + [ + -113.839716, + 50.65961 + ], + [ + -113.839157, + 50.659132 + ], + [ + -113.838847, + 50.658805 + ], + [ + -113.838358, + 50.658284 + ], + [ + -113.837938, + 50.657723 + ], + [ + -113.837609, + 50.657111 + ], + [ + -113.837268, + 50.656259 + ], + [ + -113.83703, + 50.655665 + ], + [ + -113.836937, + 50.654919 + ], + [ + -113.836909, + 50.654144 + ], + [ + -113.836859, + 50.650724 + ], + [ + -113.836826, + 50.647581 + ], + [ + -113.836828, + 50.646677 + ], + [ + -113.836945, + 50.631237 + ], + [ + -113.836945, + 50.630338 + ], + [ + -113.83681, + 50.620833 + ], + [ + -113.836809, + 50.615002 + ], + [ + -113.836748, + 50.614363 + ], + [ + -113.836695, + 50.613902 + ], + [ + -113.836544, + 50.613327 + ], + [ + -113.836395, + 50.612865 + ], + [ + -113.836165, + 50.612347 + ], + [ + -113.835974, + 50.611908 + ], + [ + -113.835688, + 50.611368 + ], + [ + -113.834199, + 50.609116 + ], + [ + -113.831975, + 50.605815 + ], + [ + -113.830597, + 50.603738 + ], + [ + -113.830194, + 50.603006 + ], + [ + -113.829862, + 50.60236 + ], + [ + -113.829623, + 50.601865 + ], + [ + -113.829361, + 50.601178 + ], + [ + -113.829199, + 50.600699 + ], + [ + -113.829001, + 50.600003 + ], + [ + -113.828688, + 50.598264 + ], + [ + -113.828653, + 50.597525 + ], + [ + -113.828653, + 50.596741 + ], + [ + -113.828659, + 50.589493 + ], + [ + -113.828615, + 50.584393 + ], + [ + -113.82855, + 50.57625 + ], + [ + -113.82857, + 50.572186 + ], + [ + -113.82858, + 50.57189 + ], + [ + -113.828436, + 50.567929 + ], + [ + -113.828262, + 50.565198 + ], + [ + -113.82828, + 50.550181 + ], + [ + -113.82829, + 50.541809 + ], + [ + -113.828291, + 50.541417 + ], + [ + -113.828359, + 50.484565 + ], + [ + -113.828388, + 50.473188 + ], + [ + -113.82839, + 50.426319 + ], + [ + -113.828391, + 50.410937 + ], + [ + -113.828495, + 50.409031 + ], + [ + -113.828495, + 50.408255 + ], + [ + -113.828326, + 50.404708 + ], + [ + -113.827868, + 50.402523 + ], + [ + -113.827189, + 50.400367 + ], + [ + -113.82573, + 50.397464 + ], + [ + -113.824909, + 50.396393 + ], + [ + -113.823811, + 50.394869 + ], + [ + -113.82128, + 50.391895 + ], + [ + -113.801481, + 50.376398 + ], + [ + -113.797907, + 50.371872 + ], + [ + -113.796297, + 50.369858 + ], + [ + -113.795351, + 50.368139 + ], + [ + -113.790726, + 50.359724 + ], + [ + -113.789384, + 50.358382 + ], + [ + -113.78784, + 50.357509 + ], + [ + -113.782077, + 50.355219 + ], + [ + -113.781868, + 50.355163 + ], + [ + -113.780696, + 50.354643 + ], + [ + -113.779832, + 50.354058 + ], + [ + -113.779376, + 50.353709 + ], + [ + -113.779034, + 50.353447 + ], + [ + -113.777779, + 50.352208 + ], + [ + -113.776476, + 50.350971 + ], + [ + -113.775669, + 50.350156 + ], + [ + -113.774903, + 50.349363 + ], + [ + -113.774528, + 50.349008 + ], + [ + -113.774139, + 50.348641 + ], + [ + -113.773752, + 50.348267 + ], + [ + -113.773367, + 50.347894 + ], + [ + -113.772991, + 50.347521 + ], + [ + -113.77261, + 50.347144 + ], + [ + -113.77224, + 50.346771 + ], + [ + -113.771866, + 50.346393 + ], + [ + -113.771491, + 50.346021 + ], + [ + -113.771101, + 50.345634 + ], + [ + -113.770724, + 50.345257 + ], + [ + -113.770334, + 50.344868 + ], + [ + -113.769256, + 50.343852 + ], + [ + -113.767134, + 50.341669 + ], + [ + -113.764647, + 50.339182 + ], + [ + -113.764438, + 50.338973 + ], + [ + -113.761597, + 50.336333 + ], + [ + -113.758593, + 50.33458 + ], + [ + -113.755546, + 50.333429 + ], + [ + -113.751856, + 50.33269 + ], + [ + -113.745118, + 50.331594 + ], + [ + -113.742286, + 50.330717 + ], + [ + -113.739453, + 50.329347 + ], + [ + -113.731213, + 50.32247 + ], + [ + -113.723532, + 50.315976 + ], + [ + -113.722158, + 50.313619 + ], + [ + -113.718768, + 50.300682 + ], + [ + -113.714948, + 50.295611 + ], + [ + -113.70452, + 50.282916 + ], + [ + -113.688985, + 50.273536 + ], + [ + -113.671647, + 50.26314 + ], + [ + -113.665976, + 50.259608 + ], + [ + -113.661862, + 50.256884 + ], + [ + -113.66006, + 50.254964 + ], + [ + -113.659379, + 50.253877 + ], + [ + -113.658858, + 50.252741 + ], + [ + -113.658676, + 50.251733 + ], + [ + -113.656669, + 50.241627 + ], + [ + -113.656154, + 50.237592 + ], + [ + -113.655983, + 50.234435 + ], + [ + -113.656026, + 50.226446 + ], + [ + -113.656001, + 50.222848 + ], + [ + -113.655983, + 50.212634 + ], + [ + -113.655983, + 50.198956 + ], + [ + -113.656026, + 50.187774 + ], + [ + -113.655725, + 50.180189 + ], + [ + -113.654781, + 50.177056 + ], + [ + -113.650834, + 50.16488 + ], + [ + -113.648988, + 50.159931 + ], + [ + -113.648171, + 50.158673 + ], + [ + -113.647041, + 50.157055 + ], + [ + -113.642675, + 50.151639 + ], + [ + -113.639814, + 50.147556 + ], + [ + -113.634175, + 50.135735 + ], + [ + -113.632251, + 50.131741 + ], + [ + -113.620363, + 50.106626 + ], + [ + -113.619376, + 50.104527 + ], + [ + -113.61384, + 50.092744 + ], + [ + -113.608561, + 50.081675 + ], + [ + -113.606581, + 50.077494 + ], + [ + -113.603669, + 50.071347 + ], + [ + -113.596202, + 50.055589 + ], + [ + -113.589593, + 50.041645 + ], + [ + -113.585973, + 50.034075 + ], + [ + -113.583284, + 50.028469 + ], + [ + -113.578879, + 50.019214 + ], + [ + -113.577072, + 50.015416 + ], + [ + -113.576933, + 50.015123 + ], + [ + -113.575461, + 50.01195 + ], + [ + -113.56968, + 49.999485 + ], + [ + -113.565276, + 49.990109 + ], + [ + -113.562856, + 49.984972 + ], + [ + -113.558388, + 49.975529 + ], + [ + -113.556763, + 49.972084 + ], + [ + -113.551497, + 49.960982 + ], + [ + -113.550282, + 49.958226 + ], + [ + -113.543115, + 49.943177 + ], + [ + -113.537579, + 49.93141 + ], + [ + -113.531657, + 49.91895 + ], + [ + -113.528868, + 49.913112 + ], + [ + -113.52852, + 49.912237 + ], + [ + -113.528209, + 49.911247 + ], + [ + -113.528013, + 49.910313 + ], + [ + -113.527878, + 49.909552 + ], + [ + -113.527877, + 49.908805 + ], + [ + -113.528009, + 49.904496 + ], + [ + -113.527999, + 49.902765 + ], + [ + -113.527923, + 49.890232 + ], + [ + -113.527923, + 49.878148 + ], + [ + -113.527237, + 49.875493 + ], + [ + -113.526537, + 49.873052 + ], + [ + -113.52449, + 49.865701 + ], + [ + -113.524447, + 49.856267 + ], + [ + -113.52449, + 49.841269 + ], + [ + -113.524447, + 49.826764 + ], + [ + -113.52437, + 49.815239 + ], + [ + -113.524361, + 49.813862 + ], + [ + -113.524357, + 49.801088 + ], + [ + -113.524347, + 49.798401 + ], + [ + -113.524359, + 49.795748 + ], + [ + -113.524362, + 49.795059 + ], + [ + -113.524404, + 49.785441 + ], + [ + -113.524345, + 49.778892 + ], + [ + -113.524361, + 49.771945 + ], + [ + -113.523632, + 49.77031 + ], + [ + -113.522087, + 49.769007 + ], + [ + -113.520199, + 49.768287 + ], + [ + -113.514319, + 49.76643 + ], + [ + -113.510629, + 49.764933 + ], + [ + -113.50771, + 49.763048 + ], + [ + -113.494964, + 49.752901 + ], + [ + -113.479476, + 49.742059 + ], + [ + -113.460012, + 49.728293 + ], + [ + -113.455597, + 49.725235 + ], + [ + -113.454572, + 49.72442 + ], + [ + -113.45366, + 49.723598 + ], + [ + -113.452976, + 49.722915 + ], + [ + -113.45129, + 49.720944 + ], + [ + -113.450256, + 49.719782 + ], + [ + -113.447746, + 49.716986 + ], + [ + -113.447289, + 49.716417 + ], + [ + -113.443365, + 49.71203 + ], + [ + -113.443141, + 49.711789 + ], + [ + -113.442819, + 49.711601 + ], + [ + -113.442606, + 49.711479 + ], + [ + -113.44236, + 49.711374 + ], + [ + -113.442103, + 49.711279 + ], + [ + -113.441837, + 49.711197 + ], + [ + -113.441458, + 49.711124 + ], + [ + -113.441117, + 49.711086 + ], + [ + -113.440779, + 49.711071 + ], + [ + -113.440369, + 49.71109 + ], + [ + -113.439978, + 49.71114 + ], + [ + -113.439697, + 49.711196 + ], + [ + -113.439397, + 49.711273 + ], + [ + -113.439102, + 49.71139 + ], + [ + -113.438862, + 49.711498 + ], + [ + -113.438591, + 49.711635 + ], + [ + -113.438391, + 49.711766 + ], + [ + -113.438075, + 49.712061 + ], + [ + -113.437745, + 49.712489 + ], + [ + -113.43745, + 49.712915 + ], + [ + -113.43721, + 49.713212 + ], + [ + -113.436932, + 49.713495 + ], + [ + -113.436629, + 49.713751 + ], + [ + -113.436287, + 49.713988 + ], + [ + -113.435908, + 49.714204 + ], + [ + -113.435538, + 49.714393 + ], + [ + -113.431814, + 49.715951 + ], + [ + -113.423934, + 49.718913 + ], + [ + -113.423148, + 49.719208 + ], + [ + -113.419515, + 49.720574 + ], + [ + -113.418553, + 49.720884 + ], + [ + -113.417353, + 49.721191 + ], + [ + -113.416622, + 49.721378 + ], + [ + -113.415189, + 49.721933 + ], + [ + -113.414887, + 49.722092 + ], + [ + -113.414553, + 49.722328 + ], + [ + -113.414204, + 49.722586 + ], + [ + -113.413109, + 49.723458 + ], + [ + -113.412313, + 49.724209 + ], + [ + -113.412068, + 49.724385 + ], + [ + -113.411871, + 49.724508 + ], + [ + -113.41169, + 49.724585 + ], + [ + -113.411456, + 49.724665 + ], + [ + -113.411213, + 49.724721 + ], + [ + -113.410939, + 49.724758 + ], + [ + -113.410649, + 49.724769 + ], + [ + -113.408706, + 49.724761 + ], + [ + -113.405913, + 49.724764 + ], + [ + -113.403119, + 49.724754 + ], + [ + -113.400316, + 49.724758 + ], + [ + -113.397541, + 49.724759 + ], + [ + -113.396042, + 49.724769 + ], + [ + -113.395455, + 49.724758 + ], + [ + -113.395172, + 49.724734 + ], + [ + -113.394938, + 49.724709 + ], + [ + -113.394729, + 49.724678 + ], + [ + -113.394467, + 49.724619 + ], + [ + -113.394209, + 49.724544 + ], + [ + -113.393974, + 49.724469 + ], + [ + -113.393696, + 49.724366 + ], + [ + -113.393468, + 49.724249 + ], + [ + -113.393241, + 49.72412 + ], + [ + -113.393012, + 49.723965 + ], + [ + -113.39289, + 49.723864 + ], + [ + -113.391771, + 49.722807 + ], + [ + -113.391196, + 49.722209 + ], + [ + -113.390266, + 49.721242 + ], + [ + -113.389586, + 49.720567 + ], + [ + -113.388246, + 49.71917 + ], + [ + -113.387068, + 49.717968 + ], + [ + -113.386688, + 49.717602 + ], + [ + -113.386617, + 49.717518 + ], + [ + -113.386398, + 49.717254 + ], + [ + -113.386209, + 49.717057 + ], + [ + -113.385914, + 49.716751 + ], + [ + -113.385697, + 49.71658 + ], + [ + -113.385459, + 49.716404 + ], + [ + -113.385223, + 49.716267 + ], + [ + -113.384941, + 49.716121 + ], + [ + -113.384654, + 49.716013 + ], + [ + -113.384337, + 49.715925 + ], + [ + -113.383953, + 49.715848 + ], + [ + -113.383617, + 49.715803 + ], + [ + -113.383303, + 49.715777 + ], + [ + -113.382948, + 49.715769 + ], + [ + -113.382593, + 49.71579 + ], + [ + -113.382269, + 49.715822 + ], + [ + -113.381923, + 49.715886 + ], + [ + -113.381566, + 49.715981 + ], + [ + -113.381244, + 49.716092 + ], + [ + -113.380957, + 49.716219 + ], + [ + -113.380551, + 49.716436 + ], + [ + -113.380035, + 49.71673 + ], + [ + -113.379484, + 49.717081 + ], + [ + -113.378419, + 49.71777 + ], + [ + -113.377851, + 49.718172 + ], + [ + -113.376955, + 49.718849 + ], + [ + -113.376472, + 49.719244 + ], + [ + -113.375953, + 49.719695 + ], + [ + -113.375418, + 49.720164 + ], + [ + -113.374752, + 49.720812 + ], + [ + -113.373389, + 49.722261 + ], + [ + -113.372553, + 49.723172 + ], + [ + -113.371753, + 49.724069 + ], + [ + -113.371091, + 49.724816 + ], + [ + -113.370703, + 49.725251 + ], + [ + -113.370292, + 49.725659 + ], + [ + -113.36989, + 49.726068 + ], + [ + -113.369354, + 49.726543 + ], + [ + -113.368728, + 49.727064 + ], + [ + -113.368135, + 49.727526 + ], + [ + -113.367567, + 49.727939 + ], + [ + -113.366419, + 49.728699 + ], + [ + -113.366091, + 49.728877 + ], + [ + -113.365827, + 49.729022 + ], + [ + -113.365501, + 49.729201 + ], + [ + -113.362951, + 49.730439 + ], + [ + -113.358468, + 49.732139 + ], + [ + -113.3397, + 49.739588 + ], + [ + -113.335475, + 49.741364 + ], + [ + -113.327488, + 49.744425 + ], + [ + -113.318052, + 49.748192 + ], + [ + -113.313869, + 49.749882 + ], + [ + -113.31224, + 49.750619 + ], + [ + -113.310651, + 49.75165 + ], + [ + -113.307682, + 49.753879 + ], + [ + -113.302921, + 49.757409 + ], + [ + -113.297078, + 49.761832 + ], + [ + -113.293465, + 49.764507 + ], + [ + -113.274088, + 49.778989 + ], + [ + -113.273227, + 49.779697 + ], + [ + -113.272213, + 49.780484 + ], + [ + -113.270309, + 49.781807 + ], + [ + -113.269287, + 49.782542 + ], + [ + -113.268506, + 49.783052 + ], + [ + -113.267549, + 49.783577 + ], + [ + -113.266355, + 49.784155 + ], + [ + -113.264867, + 49.784696 + ], + [ + -113.26421, + 49.78488 + ], + [ + -113.263279, + 49.785126 + ], + [ + -113.262406, + 49.785321 + ], + [ + -113.261535, + 49.785468 + ], + [ + -113.260247, + 49.785632 + ], + [ + -113.2584, + 49.785752 + ], + [ + -113.253189, + 49.785761 + ], + [ + -113.2503, + 49.785759 + ], + [ + -113.246741, + 49.785753 + ], + [ + -113.243803, + 49.785748 + ], + [ + -113.24168, + 49.785746 + ], + [ + -113.239441, + 49.785743 + ], + [ + -113.235416, + 49.785738 + ], + [ + -113.232546, + 49.785734 + ], + [ + -113.230542, + 49.78573 + ], + [ + -113.207916, + 49.785665 + ], + [ + -113.188962, + 49.785585 + ], + [ + -113.187421, + 49.785394 + ], + [ + -113.185955, + 49.785084 + ], + [ + -113.182069, + 49.784248 + ], + [ + -113.178433, + 49.783545 + ], + [ + -113.175537, + 49.783555 + ], + [ + -113.172403, + 49.784002 + ], + [ + -113.169876, + 49.784514 + ], + [ + -113.165425, + 49.785057 + ], + [ + -113.162661, + 49.785308 + ], + [ + -113.158491, + 49.785468 + ], + [ + -113.154009, + 49.785249 + ], + [ + -113.150706, + 49.7849 + ], + [ + -113.138727, + 49.78387 + ], + [ + -113.137918, + 49.7838 + ], + [ + -113.132484, + 49.783537 + ], + [ + -113.127139, + 49.783666 + ], + [ + -113.121522, + 49.784134 + ], + [ + -113.116401, + 49.784873 + ], + [ + -113.108878, + 49.786479 + ], + [ + -113.10643, + 49.787036 + ], + [ + -113.100519, + 49.78837 + ], + [ + -113.099817, + 49.78851 + ], + [ + -113.099069, + 49.788664 + ], + [ + -113.098414, + 49.788796 + ], + [ + -113.097678, + 49.788933 + ], + [ + -113.096947, + 49.789058 + ], + [ + -113.096124, + 49.78919 + ], + [ + -113.095087, + 49.789365 + ], + [ + -113.093946, + 49.789519 + ], + [ + -113.092851, + 49.789655 + ], + [ + -113.091995, + 49.789773 + ], + [ + -113.091108, + 49.78988 + ], + [ + -113.090105, + 49.789981 + ], + [ + -113.089148, + 49.790064 + ], + [ + -113.088464, + 49.790125 + ], + [ + -113.087728, + 49.790181 + ], + [ + -113.08695, + 49.790229 + ], + [ + -113.08621, + 49.790281 + ], + [ + -113.085391, + 49.790327 + ], + [ + -113.084622, + 49.790364 + ], + [ + -113.083774, + 49.790396 + ], + [ + -113.082731, + 49.790426 + ], + [ + -113.081849, + 49.790441 + ], + [ + -113.080915, + 49.790449 + ], + [ + -113.080041, + 49.790455 + ], + [ + -113.079132, + 49.790458 + ], + [ + -113.078156, + 49.790437 + ], + [ + -113.077306, + 49.790416 + ], + [ + -113.076308, + 49.790386 + ], + [ + -113.075035, + 49.79033 + ], + [ + -113.073984, + 49.790268 + ], + [ + -113.073014, + 49.790204 + ], + [ + -113.072411, + 49.790162 + ], + [ + -113.071942, + 49.790123 + ], + [ + -113.069874, + 49.789921 + ], + [ + -113.06869, + 49.789793 + ], + [ + -113.067583, + 49.789667 + ], + [ + -113.066892, + 49.789578 + ], + [ + -113.066126, + 49.789472 + ], + [ + -113.064972, + 49.789301 + ], + [ + -113.04876, + 49.786854 + ], + [ + -113.048, + 49.78674 + ], + [ + -113.047462, + 49.78667 + ], + [ + -113.046933, + 49.786601 + ], + [ + -113.046365, + 49.786543 + ], + [ + -113.041994, + 49.786136 + ], + [ + -113.038418, + 49.786047 + ], + [ + -113.028911, + 49.786062 + ], + [ + -113.013026, + 49.786042 + ], + [ + -113.003977, + 49.786038 + ], + [ + -113.002681, + 49.785962 + ], + [ + -113.001644, + 49.785864 + ], + [ + -113.00048, + 49.785713 + ], + [ + -112.999756, + 49.785611 + ], + [ + -112.9987, + 49.785408 + ], + [ + -112.997454, + 49.785132 + ], + [ + -112.995534, + 49.784581 + ], + [ + -112.99125, + 49.783007 + ], + [ + -112.98295, + 49.779625 + ], + [ + -112.980557, + 49.778522 + ], + [ + -112.979018, + 49.777554 + ], + [ + -112.976341, + 49.775651 + ], + [ + -112.973797, + 49.773044 + ], + [ + -112.965769, + 49.764644 + ], + [ + -112.960895, + 49.75933 + ], + [ + -112.960092, + 49.758465 + ], + [ + -112.959726, + 49.75808 + ], + [ + -112.959447, + 49.757828 + ], + [ + -112.959069, + 49.757507 + ], + [ + -112.958709, + 49.757166 + ], + [ + -112.958281, + 49.756793 + ], + [ + -112.95762, + 49.756294 + ], + [ + -112.956931, + 49.755799 + ], + [ + -112.956159, + 49.755282 + ], + [ + -112.955682, + 49.754998 + ], + [ + -112.955151, + 49.754703 + ], + [ + -112.952858, + 49.753509 + ], + [ + -112.949354, + 49.752075 + ], + [ + -112.94544, + 49.749962 + ], + [ + -112.938188, + 49.743931 + ], + [ + -112.931304, + 49.738228 + ], + [ + -112.926731, + 49.73422 + ], + [ + -112.925384, + 49.732989 + ], + [ + -112.924479, + 49.731925 + ], + [ + -112.923468, + 49.730575 + ], + [ + -112.922298, + 49.729055 + ], + [ + -112.921036, + 49.7277 + ], + [ + -112.918917, + 49.725859 + ], + [ + -112.918155, + 49.725203 + ], + [ + -112.916619, + 49.723846 + ], + [ + -112.915487, + 49.723018 + ], + [ + -112.915163, + 49.72283 + ], + [ + -112.914796, + 49.722631 + ], + [ + -112.914432, + 49.722464 + ], + [ + -112.914031, + 49.722286 + ], + [ + -112.913669, + 49.722145 + ], + [ + -112.913246, + 49.722004 + ], + [ + -112.912907, + 49.721891 + ], + [ + -112.912605, + 49.721797 + ], + [ + -112.912248, + 49.721697 + ], + [ + -112.911203, + 49.721427 + ], + [ + -112.910101, + 49.721135 + ], + [ + -112.906937, + 49.720299 + ], + [ + -112.903215, + 49.719342 + ], + [ + -112.900165, + 49.718558 + ], + [ + -112.897476, + 49.717852 + ], + [ + -112.895936, + 49.717459 + ], + [ + -112.895282, + 49.717281 + ], + [ + -112.894243, + 49.71701 + ], + [ + -112.893141, + 49.716728 + ], + [ + -112.892426, + 49.716529 + ], + [ + -112.89165, + 49.716338 + ], + [ + -112.891198, + 49.71622 + ], + [ + -112.890633, + 49.716083 + ], + [ + -112.889897, + 49.715934 + ], + [ + -112.889174, + 49.715796 + ], + [ + -112.888532, + 49.715689 + ], + [ + -112.887541, + 49.715558 + ], + [ + -112.88613, + 49.71536 + ], + [ + -112.885501, + 49.715271 + ], + [ + -112.884833, + 49.715175 + ], + [ + -112.884308, + 49.715088 + ], + [ + -112.883816, + 49.71495 + ], + [ + -112.883277, + 49.714832 + ], + [ + -112.882696, + 49.714691 + ], + [ + -112.88207, + 49.714542 + ], + [ + -112.881531, + 49.714385 + ], + [ + -112.881025, + 49.714222 + ], + [ + -112.880522, + 49.714039 + ], + [ + -112.879986, + 49.713834 + ], + [ + -112.879529, + 49.71365 + ], + [ + -112.87903, + 49.713431 + ], + [ + -112.878502, + 49.713173 + ], + [ + -112.877609, + 49.712649 + ], + [ + -112.875259, + 49.711284 + ], + [ + -112.873228, + 49.710141 + ], + [ + -112.872763, + 49.709872 + ], + [ + -112.87224, + 49.709593 + ], + [ + -112.871848, + 49.709384 + ], + [ + -112.871432, + 49.709188 + ], + [ + -112.871061, + 49.709022 + ], + [ + -112.870716, + 49.708873 + ], + [ + -112.870311, + 49.708723 + ], + [ + -112.869954, + 49.708592 + ], + [ + -112.869443, + 49.708436 + ], + [ + -112.868983, + 49.708311 + ], + [ + -112.868462, + 49.708183 + ], + [ + -112.86782, + 49.708055 + ], + [ + -112.867368, + 49.707982 + ], + [ + -112.866939, + 49.707916 + ], + [ + -112.86545, + 49.707716 + ], + [ + -112.861762, + 49.707191 + ], + [ + -112.86017, + 49.706981 + ], + [ + -112.85809, + 49.706677 + ], + [ + -112.85777, + 49.706622 + ], + [ + -112.857467, + 49.706553 + ], + [ + -112.857076, + 49.706452 + ], + [ + -112.856698, + 49.706338 + ], + [ + -112.854212, + 49.705528 + ], + [ + -112.85381, + 49.705386 + ], + [ + -112.853466, + 49.70523 + ], + [ + -112.853137, + 49.705049 + ], + [ + -112.852839, + 49.704853 + ], + [ + -112.851852, + 49.704221 + ], + [ + -112.851516, + 49.704031 + ], + [ + -112.851207, + 49.703872 + ], + [ + -112.850867, + 49.70373 + ], + [ + -112.850433, + 49.703565 + ], + [ + -112.84992, + 49.703388 + ], + [ + -112.847903, + 49.702792 + ], + [ + -112.845724, + 49.702167 + ], + [ + -112.844077, + 49.701628 + ], + [ + -112.8432, + 49.701369 + ], + [ + -112.842649, + 49.701218 + ], + [ + -112.842201, + 49.701114 + ], + [ + -112.841728, + 49.701025 + ], + [ + -112.840794, + 49.700856 + ], + [ + -112.838125, + 49.700426 + ], + [ + -112.834609, + 49.699873 + ], + [ + -112.832064, + 49.699465 + ], + [ + -112.828981, + 49.698964 + ], + [ + -112.828552, + 49.698904 + ], + [ + -112.827826, + 49.698813 + ], + [ + -112.827096, + 49.698728 + ], + [ + -112.826436, + 49.698665 + ], + [ + -112.825387, + 49.6986 + ], + [ + -112.824515, + 49.698555 + ], + [ + -112.823879, + 49.698527 + ], + [ + -112.822719, + 49.698465 + ], + [ + -112.820041, + 49.698338 + ], + [ + -112.818601, + 49.69826 + ], + [ + -112.817659, + 49.698214 + ], + [ + -112.817451, + 49.698208 + ], + [ + -112.816791, + 49.698174 + ], + [ + -112.81589, + 49.698112 + ], + [ + -112.814861, + 49.698029 + ], + [ + -112.814224, + 49.697963 + ], + [ + -112.813253, + 49.697849 + ], + [ + -112.813147, + 49.697836 + ], + [ + -112.811952, + 49.697672 + ], + [ + -112.811842, + 49.697656 + ], + [ + -112.811502, + 49.697615 + ], + [ + -112.811227, + 49.697581 + ], + [ + -112.810773, + 49.697561 + ], + [ + -112.810352, + 49.69755 + ], + [ + -112.810002, + 49.697537 + ], + [ + -112.809403, + 49.697532 + ], + [ + -112.806575, + 49.697613 + ], + [ + -112.805437, + 49.69765 + ], + [ + -112.804522, + 49.697685 + ], + [ + -112.80393, + 49.697707 + ], + [ + -112.80238, + 49.69777 + ], + [ + -112.802025, + 49.697788 + ], + [ + -112.801625, + 49.697812 + ], + [ + -112.800653, + 49.697888 + ], + [ + -112.799723, + 49.697967 + ], + [ + -112.79867, + 49.698052 + ], + [ + -112.798046, + 49.698084 + ], + [ + -112.797631, + 49.698102 + ], + [ + -112.797077, + 49.698117 + ], + [ + -112.796376, + 49.698135 + ], + [ + -112.79554, + 49.698135 + ], + [ + -112.794414, + 49.698135 + ], + [ + -112.793544, + 49.698131 + ], + [ + -112.788404, + 49.698111 + ], + [ + -112.787759, + 49.698108 + ], + [ + -112.787623, + 49.698109 + ], + [ + -112.786794, + 49.698114 + ], + [ + -112.785574, + 49.698121 + ], + [ + -112.784545, + 49.69817 + ], + [ + -112.784282, + 49.698206 + ], + [ + -112.783264, + 49.698348 + ], + [ + -112.782977, + 49.69837 + ], + [ + -112.782674, + 49.69837 + ], + [ + -112.782377, + 49.69836 + ], + [ + -112.781976, + 49.698324 + ], + [ + -112.781573, + 49.698283 + ], + [ + -112.780374, + 49.698174 + ], + [ + -112.779856, + 49.698084 + ], + [ + -112.77969, + 49.698039 + ], + [ + -112.779534, + 49.697963 + ], + [ + -112.779416, + 49.697879 + ], + [ + -112.779336, + 49.697779 + ], + [ + -112.779293, + 49.697678 + ], + [ + -112.779266, + 49.697588 + ], + [ + -112.779277, + 49.697432 + ], + [ + -112.779309, + 49.697054 + ], + [ + -112.779557, + 49.695985 + ], + [ + -112.779657, + 49.695544 + ], + [ + -112.779736, + 49.695225 + ], + [ + -112.779761, + 49.695101 + ], + [ + -112.779809, + 49.694922 + ], + [ + -112.779952, + 49.69441 + ], + [ + -112.780019, + 49.694125 + ], + [ + -112.780058, + 49.69387 + ], + [ + -112.780085, + 49.693604 + ], + [ + -112.78011, + 49.693292 + ], + [ + -112.780165, + 49.692652 + ], + [ + -112.780169, + 49.692372 + ], + [ + -112.780165, + 49.692154 + ], + [ + -112.780164, + 49.692098 + ], + [ + -112.780144, + 49.691862 + ], + [ + -112.780143, + 49.691843 + ], + [ + -112.780133, + 49.69176 + ], + [ + -112.780037, + 49.691006 + ], + [ + -112.779822, + 49.689657 + ], + [ + -112.77979, + 49.689308 + ], + [ + -112.779748, + 49.688889 + ], + [ + -112.779749, + 49.688478 + ], + [ + -112.779739, + 49.688031 + ], + [ + -112.779748, + 49.687622 + ], + [ + -112.779769, + 49.687159 + ], + [ + -112.779816, + 49.686494 + ], + [ + -112.779896, + 49.685531 + ], + [ + -112.779868, + 49.68512 + ], + [ + -112.779875, + 49.684881 + ], + [ + -112.779863, + 49.684535 + ], + [ + -112.77986, + 49.684358 + ], + [ + -112.779847, + 49.684121 + ], + [ + -112.779816, + 49.683702 + ], + [ + -112.779801, + 49.683613 + ], + [ + -112.779746, + 49.683344 + ], + [ + -112.779688, + 49.682957 + ], + [ + -112.779596, + 49.68252 + ], + [ + -112.779542, + 49.68228 + ], + [ + -112.7794, + 49.681732 + ], + [ + -112.779248, + 49.681225 + ], + [ + -112.779016, + 49.680478 + ], + [ + -112.778857, + 49.679737 + ], + [ + -112.778724, + 49.678803 + ], + [ + -112.778685, + 49.678481 + ], + [ + -112.77867, + 49.678161 + ], + [ + -112.778679, + 49.677477 + ], + [ + -112.778716, + 49.676815 + ], + [ + -112.77879, + 49.676373 + ], + [ + -112.778793, + 49.676281 + ], + [ + -112.778809, + 49.67613 + ], + [ + -112.778826, + 49.675962 + ], + [ + -112.779009, + 49.67502 + ], + [ + -112.779283, + 49.674077 + ], + [ + -112.779324, + 49.67372 + ], + [ + -112.779398, + 49.673084 + ], + [ + -112.779441, + 49.672708 + ], + [ + -112.779445, + 49.672624 + ], + [ + -112.779457, + 49.6724 + ], + [ + -112.779474, + 49.670433 + ], + [ + -112.779525, + 49.669583 + ], + [ + -112.779531, + 49.668796 + ], + [ + -112.779522, + 49.66867 + ], + [ + -112.779234, + 49.66867 + ], + [ + -112.778749, + 49.66867 + ], + [ + -112.773523, + 49.668658 + ], + [ + -112.769369, + 49.668649 + ], + [ + -112.763756, + 49.668637 + ], + [ + -112.7565, + 49.668622 + ], + [ + -112.75294, + 49.668604 + ], + [ + -112.752507, + 49.668609 + ], + [ + -112.751647, + 49.668588 + ], + [ + -112.750485, + 49.668477 + ], + [ + -112.748828, + 49.668137 + ], + [ + -112.747424, + 49.667643 + ], + [ + -112.746405, + 49.667117 + ], + [ + -112.745658, + 49.666544 + ], + [ + -112.743059, + 49.663524 + ], + [ + -112.742076, + 49.662492 + ], + [ + -112.741004, + 49.661674 + ], + [ + -112.73773, + 49.659519 + ], + [ + -112.735465, + 49.657989 + ], + [ + -112.733655, + 49.656859 + ], + [ + -112.718533, + 49.646941 + ], + [ + -112.708401, + 49.640314 + ], + [ + -112.699223, + 49.634317 + ], + [ + -112.697367, + 49.633097 + ], + [ + -112.696977, + 49.632838 + ], + [ + -112.688059, + 49.626979 + ], + [ + -112.68302, + 49.623675 + ], + [ + -112.676625, + 49.619483 + ], + [ + -112.667074, + 49.613228 + ], + [ + -112.658988, + 49.607908 + ], + [ + -112.655248, + 49.605484 + ], + [ + -112.650972, + 49.603234 + ], + [ + -112.646487, + 49.600778 + ], + [ + -112.644902, + 49.599632 + ], + [ + -112.643248, + 49.598383 + ], + [ + -112.641103, + 49.596798 + ], + [ + -112.639355, + 49.595616 + ], + [ + -112.637, + 49.594133 + ], + [ + -112.627891, + 49.588425 + ], + [ + -112.602707, + 49.572537 + ], + [ + -112.600552, + 49.571077 + ], + [ + -112.598617, + 49.5692 + ], + [ + -112.59449, + 49.564228 + ], + [ + -112.593913, + 49.5636 + ], + [ + -112.593075, + 49.562994 + ], + [ + -112.592311, + 49.562392 + ], + [ + -112.591327, + 49.561818 + ], + [ + -112.589132, + 49.56091 + ], + [ + -112.585717, + 49.559813 + ], + [ + -112.580643, + 49.558189 + ], + [ + -112.579135, + 49.557557 + ], + [ + -112.577853, + 49.55687 + ], + [ + -112.576584, + 49.555934 + ], + [ + -112.573576, + 49.55323 + ], + [ + -112.570447, + 49.550424 + ], + [ + -112.569232, + 49.549564 + ], + [ + -112.567477, + 49.548436 + ], + [ + -112.556735, + 49.541871 + ], + [ + -112.550446, + 49.538028 + ], + [ + -112.546175, + 49.535345 + ], + [ + -112.543195, + 49.53355 + ], + [ + -112.541943, + 49.532867 + ], + [ + -112.522018, + 49.522571 + ], + [ + -112.51966, + 49.521328 + ], + [ + -112.515058, + 49.518953 + ], + [ + -112.512595, + 49.517628 + ], + [ + -112.51096, + 49.516524 + ], + [ + -112.50948, + 49.515214 + ], + [ + -112.508358, + 49.513958 + ], + [ + -112.507396, + 49.512646 + ], + [ + -112.504667, + 49.506398 + ], + [ + -112.503772, + 49.504449 + ], + [ + -112.502829, + 49.502755 + ], + [ + -112.502134, + 49.501789 + ], + [ + -112.500323, + 49.499793 + ], + [ + -112.498242, + 49.497945 + ], + [ + -112.491937, + 49.492826 + ], + [ + -112.472122, + 49.477074 + ], + [ + -112.46972, + 49.475443 + ], + [ + -112.458697, + 49.468584 + ], + [ + -112.452076, + 49.464789 + ], + [ + -112.441426, + 49.458313 + ], + [ + -112.440081, + 49.457555 + ], + [ + -112.439154, + 49.45711 + ], + [ + -112.437692, + 49.456507 + ], + [ + -112.428185, + 49.452715 + ], + [ + -112.42567, + 49.451509 + ], + [ + -112.421872, + 49.448943 + ], + [ + -112.416852, + 49.445256 + ], + [ + -112.415374, + 49.444112 + ], + [ + -112.413757, + 49.443067 + ], + [ + -112.41199, + 49.442277 + ], + [ + -112.408866, + 49.441094 + ], + [ + -112.403355, + 49.439005 + ], + [ + -112.400426, + 49.437907 + ], + [ + -112.395624, + 49.436024 + ], + [ + -112.393366, + 49.43506 + ], + [ + -112.391141, + 49.43401 + ], + [ + -112.389667, + 49.433278 + ], + [ + -112.387242, + 49.431857 + ], + [ + -112.380495, + 49.427283 + ], + [ + -112.377371, + 49.425166 + ], + [ + -112.370769, + 49.420228 + ], + [ + -112.369213, + 49.419103 + ], + [ + -112.368029, + 49.418322 + ], + [ + -112.366868, + 49.417688 + ], + [ + -112.365853, + 49.417109 + ], + [ + -112.364196, + 49.416279 + ], + [ + -112.358645, + 49.413606 + ], + [ + -112.345069, + 49.40697 + ], + [ + -112.313601, + 49.391666 + ], + [ + -112.293379, + 49.381796 + ], + [ + -112.280866, + 49.375648 + ], + [ + -112.275641, + 49.37312 + ], + [ + -112.27415, + 49.372357 + ], + [ + -112.272971, + 49.371647 + ], + [ + -112.272087, + 49.371077 + ], + [ + -112.271197, + 49.370405 + ], + [ + -112.270258, + 49.369532 + ], + [ + -112.269242, + 49.36847 + ], + [ + -112.263635, + 49.361606 + ], + [ + -112.261762, + 49.359287 + ], + [ + -112.252776, + 49.348158 + ], + [ + -112.236226, + 49.327356 + ], + [ + -112.231602, + 49.321856 + ], + [ + -112.231504, + 49.32174 + ], + [ + -112.22954, + 49.319363 + ], + [ + -112.227247, + 49.316403 + ], + [ + -112.224225, + 49.312727 + ], + [ + -112.22224, + 49.310555 + ], + [ + -112.216986, + 49.304836 + ], + [ + -112.215307, + 49.3031 + ], + [ + -112.213887, + 49.301877 + ], + [ + -112.213028, + 49.301145 + ], + [ + -112.204369, + 49.294474 + ], + [ + -112.201434, + 49.291851 + ], + [ + -112.200807, + 49.291228 + ], + [ + -112.200423, + 49.290767 + ], + [ + -112.200161, + 49.290419 + ], + [ + -112.199859, + 49.289985 + ], + [ + -112.199566, + 49.2895 + ], + [ + -112.199306, + 49.289012 + ], + [ + -112.199053, + 49.288493 + ], + [ + -112.198839, + 49.287999 + ], + [ + -112.198721, + 49.287648 + ], + [ + -112.198561, + 49.28716 + ], + [ + -112.198436, + 49.286692 + ], + [ + -112.198364, + 49.286224 + ], + [ + -112.198303, + 49.285775 + ], + [ + -112.198271, + 49.285347 + ], + [ + -112.198256, + 49.282987 + ], + [ + -112.198269, + 49.279832 + ], + [ + -112.197949, + 49.277457 + ], + [ + -112.196565, + 49.273803 + ], + [ + -112.189342, + 49.264663 + ], + [ + -112.187679, + 49.262625 + ], + [ + -112.187029, + 49.261975 + ], + [ + -112.185766, + 49.260758 + ], + [ + -112.185003, + 49.259994 + ], + [ + -112.184046, + 49.259256 + ], + [ + -112.182999, + 49.258515 + ], + [ + -112.181937, + 49.257797 + ], + [ + -112.180185, + 49.2566 + ], + [ + -112.179314, + 49.25606 + ], + [ + -112.178353, + 49.255415 + ], + [ + -112.177525, + 49.254853 + ], + [ + -112.176769, + 49.254313 + ], + [ + -112.176125, + 49.253788 + ], + [ + -112.174746, + 49.252496 + ], + [ + -112.173897, + 49.251682 + ], + [ + -112.173107, + 49.250905 + ], + [ + -112.153316, + 49.231556 + ], + [ + -112.145266, + 49.223554 + ], + [ + -112.137196, + 49.215571 + ], + [ + -112.13617, + 49.214714 + ], + [ + -112.134956, + 49.213742 + ], + [ + -112.134168, + 49.213187 + ], + [ + -112.132859, + 49.212334 + ], + [ + -112.13166, + 49.211607 + ], + [ + -112.12957, + 49.210494 + ], + [ + -112.126976, + 49.209298 + ], + [ + -112.123065, + 49.207555 + ], + [ + -112.121541, + 49.206848 + ], + [ + -112.120052, + 49.206151 + ], + [ + -112.118948, + 49.205619 + ], + [ + -112.117869, + 49.205062 + ], + [ + -112.11706, + 49.204623 + ], + [ + -112.115236, + 49.203546 + ], + [ + -112.112919, + 49.201989 + ], + [ + -112.111625, + 49.201012 + ], + [ + -112.109029, + 49.198836 + ], + [ + -112.106118, + 49.195686 + ], + [ + -112.105716, + 49.195156 + ], + [ + -112.10511, + 49.194341 + ], + [ + -112.102212, + 49.189769 + ], + [ + -112.099016, + 49.184803 + ], + [ + -112.097293, + 49.182034 + ], + [ + -112.09607, + 49.179971 + ], + [ + -112.093881, + 49.176527 + ], + [ + -112.093098, + 49.175222 + ], + [ + -112.092754, + 49.174577 + ], + [ + -112.092518, + 49.174107 + ], + [ + -112.092368, + 49.173658 + ], + [ + -112.092271, + 49.173279 + ], + [ + -112.092175, + 49.172816 + ], + [ + -112.092083, + 49.172436 + ], + [ + -112.092105, + 49.171924 + ], + [ + -112.092116, + 49.171461 + ], + [ + -112.092153, + 49.170923 + ], + [ + -112.092303, + 49.169933 + ], + [ + -112.092797, + 49.166924 + ], + [ + -112.093183, + 49.164483 + ], + [ + -112.093425, + 49.163015 + ], + [ + -112.094079, + 49.159023 + ], + [ + -112.094508, + 49.156383 + ], + [ + -112.094555, + 49.155953 + ], + [ + -112.094556, + 49.155221 + ], + [ + -112.094514, + 49.154793 + ], + [ + -112.094503, + 49.154492 + ], + [ + -112.094385, + 49.153874 + ], + [ + -112.094213, + 49.153187 + ], + [ + -112.094063, + 49.152773 + ], + [ + -112.093902, + 49.152351 + ], + [ + -112.093602, + 49.151853 + ], + [ + -112.093237, + 49.151257 + ], + [ + -112.092797, + 49.15078 + ], + [ + -112.092443, + 49.150366 + ], + [ + -112.09211, + 49.150043 + ], + [ + -112.09144, + 49.149473 + ], + [ + -112.090329, + 49.148576 + ], + [ + -112.087872, + 49.146674 + ], + [ + -112.085019, + 49.144442 + ], + [ + -112.08445, + 49.144014 + ], + [ + -112.083795, + 49.143488 + ], + [ + -112.083195, + 49.142934 + ], + [ + -112.082218, + 49.142021 + ], + [ + -112.081255, + 49.140863 + ], + [ + -112.080652, + 49.140161 + ], + [ + -112.079815, + 49.139052 + ], + [ + -112.079375, + 49.138315 + ], + [ + -112.078935, + 49.137592 + ], + [ + -112.078367, + 49.136469 + ], + [ + -112.077562, + 49.134475 + ], + [ + -112.07679, + 49.132524 + ], + [ + -112.076328, + 49.131429 + ], + [ + -112.07591, + 49.130565 + ], + [ + -112.075325, + 49.129377 + ], + [ + -112.074891, + 49.128684 + ], + [ + -112.074472, + 49.128059 + ], + [ + -112.073582, + 49.12674 + ], + [ + -112.072631, + 49.125499 + ], + [ + -112.071973, + 49.124711 + ], + [ + -112.071054, + 49.123645 + ], + [ + -112.069784, + 49.122387 + ], + [ + -112.068512, + 49.121237 + ], + [ + -112.066629, + 49.119662 + ], + [ + -112.062677, + 49.116351 + ], + [ + -112.055397, + 49.110231 + ], + [ + -112.054528, + 49.109557 + ], + [ + -112.053423, + 49.108763 + ], + [ + -112.052461, + 49.108147 + ], + [ + -112.045612, + 49.103924 + ], + [ + -112.04278, + 49.102161 + ], + [ + -112.042125, + 49.101683 + ], + [ + -112.041514, + 49.101163 + ], + [ + -112.040923, + 49.100503 + ], + [ + -112.040258, + 49.099716 + ], + [ + -112.039046, + 49.09777 + ], + [ + -112.036761, + 49.094883 + ], + [ + -112.034383, + 49.091688 + ], + [ + -112.032973, + 49.089733 + ], + [ + -112.032072, + 49.088525 + ], + [ + -112.031257, + 49.087397 + ], + [ + -112.027952, + 49.082826 + ], + [ + -112.025918, + 49.080115 + ], + [ + -112.023929, + 49.077471 + ], + [ + -112.021412, + 49.07398 + ], + [ + -112.01924, + 49.070443 + ], + [ + -112.016505, + 49.066092 + ], + [ + -112.014616, + 49.062914 + ], + [ + -112.010898, + 49.056849 + ], + [ + -112.010336, + 49.056053 + ], + [ + -112.009981, + 49.05549 + ], + [ + -112.009595, + 49.055054 + ], + [ + -112.008383, + 49.053913 + ], + [ + -112.004081, + 49.049886 + ], + [ + -112.003484, + 49.049323 + ], + [ + -112.002241, + 49.048061 + ], + [ + -112.000186, + 49.046131 + ], + [ + -111.998352, + 49.044419 + ], + [ + -111.997649, + 49.043715 + ], + [ + -111.997014, + 49.042914 + ], + [ + -111.996531, + 49.042236 + ], + [ + -111.996215, + 49.041782 + ], + [ + -111.995927, + 49.041307 + ], + [ + -111.995594, + 49.040698 + ], + [ + -111.995321, + 49.040118 + ], + [ + -111.994693, + 49.038673 + ], + [ + -111.994001, + 49.037108 + ], + [ + -111.992996, + 49.034801 + ], + [ + -111.992369, + 49.033409 + ], + [ + -111.99149, + 49.031403 + ], + [ + -111.99082, + 49.029866 + ], + [ + -111.990004, + 49.02802 + ], + [ + -111.98936, + 49.026568 + ], + [ + -111.988769, + 49.025185 + ], + [ + -111.988218, + 49.023936 + ], + [ + -111.987589, + 49.022536 + ], + [ + -111.987371, + 49.021885 + ], + [ + -111.987235, + 49.021333 + ], + [ + -111.987097, + 49.020858 + ], + [ + -111.986995, + 49.020386 + ], + [ + -111.98692, + 49.019658 + ], + [ + -111.986872, + 49.018979 + ], + [ + -111.986866, + 49.017199 + ], + [ + -111.986872, + 49.015542 + ], + [ + -111.98686, + 49.013841 + ], + [ + -111.986847, + 49.01231 + ], + [ + -111.98685, + 49.011137 + ], + [ + -111.986861, + 49.010352 + ], + [ + -111.986797, + 49.009758 + ], + [ + -111.986645, + 49.009206 + ], + [ + -111.986377, + 49.008696 + ], + [ + -111.986147, + 49.008354 + ], + [ + -111.985836, + 49.007998 + ], + [ + -111.985337, + 49.007558 + ], + [ + -111.984989, + 49.007266 + ], + [ + -111.984301, + 49.006795 + ], + [ + -111.983474, + 49.00638 + ], + [ + -111.982516, + 49.005993 + ], + [ + -111.981765, + 49.005715 + ], + [ + -111.980942, + 49.005514 + ], + [ + -111.980129, + 49.005334 + ], + [ + -111.979328, + 49.005194 + ], + [ + -111.978062, + 49.005092 + ], + [ + -111.976985, + 49.005074 + ], + [ + -111.974918, + 49.005173 + ], + [ + -111.973139, + 49.005292 + ], + [ + -111.97154, + 49.00538 + ], + [ + -111.969019, + 49.005514 + ], + [ + -111.967562, + 49.005617 + ], + [ + -111.966045, + 49.005705 + ], + [ + -111.96469, + 49.005725 + ], + [ + -111.963991, + 49.005648 + ], + [ + -111.96346, + 49.005567 + ], + [ + -111.96295, + 49.005448 + ], + [ + -111.962485, + 49.005296 + ], + [ + -111.962163, + 49.005187 + ], + [ + -111.961761, + 49.005004 + ], + [ + -111.961293, + 49.004765 + ], + [ + -111.960951, + 49.004554 + ], + [ + -111.960789, + 49.004426 + ], + [ + -111.960561, + 49.004236 + ], + [ + -111.960215, + 49.003866 + ], + [ + -111.959973, + 49.003571 + ], + [ + -111.959774, + 49.003265 + ], + [ + -111.959681, + 49.003043 + ], + [ + -111.959581, + 49.002794 + ], + [ + -111.95951, + 49.002452 + ], + [ + -111.959584, + 49.002087 + ], + [ + -111.959768, + 49.001731 + ], + [ + -111.96008, + 49.00139 + ], + [ + -111.960323, + 49.001097 + ], + [ + -111.960993, + 49.000276 + ], + [ + -111.961147, + 48.999913 + ], + [ + -111.961177, + 48.999675 + ], + [ + -111.961154, + 48.999405 + ], + [ + -111.96075, + 48.998378 + ], + [ + -111.960537, + 48.997835 + ], + [ + -111.960261, + 48.997296 + ], + [ + -111.959961, + 48.996969 + ], + [ + -111.959772, + 48.996485 + ], + [ + -111.959789, + 48.99582 + ], + [ + -111.959918, + 48.995443 + ], + [ + -111.960048, + 48.994907 + ], + [ + -111.960094, + 48.994603 + ], + [ + -111.960084, + 48.994414 + ], + [ + -111.960109, + 48.993824 + ], + [ + -111.959994, + 48.990856 + ], + [ + -111.95827, + 48.98094 + ], + [ + -111.958253, + 48.980705 + ], + [ + -111.958185, + 48.980405 + ], + [ + -111.958073, + 48.980015 + ], + [ + -111.957973, + 48.979662 + ], + [ + -111.957788, + 48.979177 + ], + [ + -111.957579, + 48.978688 + ], + [ + -111.957393, + 48.978342 + ], + [ + -111.957182, + 48.977986 + ], + [ + -111.956929, + 48.977617 + ], + [ + -111.956287, + 48.976872 + ], + [ + -111.955429, + 48.975932 + ], + [ + -111.940434, + 48.960617 + ], + [ + -111.939756, + 48.959862 + ], + [ + -111.939258, + 48.959163 + ], + [ + -111.938864, + 48.958475 + ], + [ + -111.938589, + 48.957934 + ], + [ + -111.935242, + 48.950139 + ], + [ + -111.933705, + 48.946469 + ], + [ + -111.930948, + 48.939956 + ], + [ + -111.927211, + 48.931012 + ], + [ + -111.924522, + 48.924688 + ], + [ + -111.916608, + 48.906188 + ], + [ + -111.9112, + 48.893335 + ], + [ + -111.910969, + 48.892844 + ], + [ + -111.910694, + 48.892325 + ], + [ + -111.910265, + 48.891676 + ], + [ + -111.909921, + 48.891247 + ], + [ + -111.909492, + 48.890711 + ], + [ + -111.909046, + 48.890237 + ], + [ + -111.908119, + 48.889328 + ], + [ + -111.907385, + 48.88863 + ], + [ + -111.906844, + 48.888116 + ], + [ + -111.903694, + 48.88508 + ], + [ + -111.903291, + 48.88469 + ], + [ + -111.901737, + 48.883161 + ], + [ + -111.878176, + 48.860393 + ], + [ + -111.867242, + 48.849753 + ], + [ + -111.866486, + 48.849013 + ], + [ + -111.865877, + 48.848301 + ], + [ + -111.86531, + 48.847533 + ], + [ + -111.864675, + 48.846613 + ], + [ + -111.86392, + 48.845195 + ], + [ + -111.863594, + 48.84437 + ], + [ + -111.863233, + 48.843167 + ], + [ + -111.863139, + 48.842738 + ], + [ + -111.863019, + 48.842026 + ], + [ + -111.86295, + 48.841071 + ], + [ + -111.862942, + 48.830326 + ], + [ + -111.862942, + 48.823285 + ], + [ + -111.86289, + 48.769261 + ], + [ + -111.862864, + 48.764515 + ], + [ + -111.862813, + 48.763474 + ], + [ + -111.862718, + 48.761743 + ], + [ + -111.861611, + 48.743809 + ], + [ + -111.861439, + 48.740289 + ], + [ + -111.861439, + 48.739949 + ], + [ + -111.861594, + 48.737176 + ], + [ + -111.862178, + 48.726719 + ], + [ + -111.862229, + 48.723792 + ], + [ + -111.862083, + 48.656639 + ], + [ + -111.8621, + 48.64979 + ], + [ + -111.861997, + 48.598701 + ], + [ + -111.86198, + 48.592185 + ], + [ + -111.86198, + 48.57272 + ], + [ + -111.861912, + 48.57163 + ], + [ + -111.861817, + 48.570494 + ], + [ + -111.861697, + 48.569205 + ], + [ + -111.860581, + 48.557657 + ], + [ + -111.860077, + 48.552231 + ], + [ + -111.859663, + 48.54801 + ], + [ + -111.859594, + 48.546805 + ], + [ + -111.859611, + 48.545322 + ], + [ + -111.859792, + 48.535383 + ], + [ + -111.8598, + 48.533888 + ], + [ + -111.859886, + 48.533121 + ], + [ + -111.860015, + 48.532581 + ], + [ + -111.860246, + 48.531939 + ], + [ + -111.860598, + 48.531387 + ], + [ + -111.860942, + 48.530899 + ], + [ + -111.861688, + 48.530109 + ], + [ + -111.866109, + 48.525755 + ], + [ + -111.875953, + 48.516192 + ], + [ + -111.876929, + 48.515247 + ], + [ + -111.877241, + 48.514954 + ], + [ + -111.879228, + 48.513021 + ], + [ + -111.879759, + 48.512467 + ], + [ + -111.88006, + 48.512124 + ], + [ + -111.880267, + 48.511881 + ], + [ + -111.88042, + 48.511679 + ], + [ + -111.880571, + 48.511473 + ], + [ + -111.88094, + 48.510956 + ], + [ + -111.881292, + 48.510376 + ], + [ + -111.881653, + 48.509733 + ], + [ + -111.881996, + 48.50904 + ], + [ + -111.882305, + 48.508346 + ], + [ + -111.882562, + 48.507572 + ], + [ + -111.882777, + 48.506828 + ], + [ + -111.882931, + 48.506134 + ], + [ + -111.883026, + 48.505588 + ], + [ + -111.883441, + 48.502992 + ], + [ + -111.883604, + 48.499975 + ], + [ + -111.883614, + 48.499767 + ], + [ + -111.883635, + 48.496433 + ], + [ + -111.883673, + 48.495815 + ], + [ + -111.883734, + 48.49503 + ], + [ + -111.883798, + 48.494396 + ], + [ + -111.883866, + 48.493802 + ], + [ + -111.883999, + 48.493 + ], + [ + -111.884209, + 48.492103 + ], + [ + -111.884377, + 48.49147 + ], + [ + -111.884557, + 48.490837 + ], + [ + -111.885112, + 48.489088 + ], + [ + -111.885489, + 48.48824 + ], + [ + -111.886605, + 48.485897 + ], + [ + -111.88682, + 48.485299 + ], + [ + -111.887034, + 48.484679 + ], + [ + -111.887197, + 48.484099 + ], + [ + -111.887389, + 48.483433 + ], + [ + -111.88747, + 48.482928 + ], + [ + -111.887522, + 48.482349 + ], + [ + -111.887575, + 48.481425 + ], + [ + -111.887554, + 48.480643 + ], + [ + -111.887506, + 48.480113 + ], + [ + -111.887418, + 48.479516 + ], + [ + -111.887265, + 48.478742 + ], + [ + -111.887056, + 48.477974 + ], + [ + -111.886845, + 48.47746 + ], + [ + -111.886472, + 48.476607 + ], + [ + -111.885635, + 48.474831 + ], + [ + -111.885441, + 48.474274 + ], + [ + -111.885165, + 48.473591 + ], + [ + -111.884897, + 48.472862 + ], + [ + -111.884674, + 48.47215 + ], + [ + -111.884502, + 48.471564 + ], + [ + -111.884279, + 48.470409 + ], + [ + -111.884082, + 48.46926 + ], + [ + -111.883953, + 48.468281 + ], + [ + -111.883906, + 48.467423 + ], + [ + -111.883878, + 48.46663 + ], + [ + -111.883976, + 48.454446 + ], + [ + -111.884028, + 48.447094 + ], + [ + -111.884036, + 48.443164 + ], + [ + -111.884023, + 48.441546 + ], + [ + -111.884017, + 48.440681 + ], + [ + -111.884026, + 48.43968 + ], + [ + -111.884018, + 48.438945 + ], + [ + -111.88402, + 48.438457 + ], + [ + -111.884058, + 48.438059 + ], + [ + -111.884092, + 48.43776 + ], + [ + -111.884134, + 48.437455 + ], + [ + -111.884195, + 48.437091 + ], + [ + -111.884275, + 48.436739 + ], + [ + -111.884339, + 48.436455 + ], + [ + -111.884422, + 48.436153 + ], + [ + -111.884528, + 48.435768 + ], + [ + -111.884674, + 48.435354 + ], + [ + -111.884745, + 48.435206 + ], + [ + -111.884871, + 48.43486 + ], + [ + -111.885003, + 48.434574 + ], + [ + -111.885207, + 48.434157 + ], + [ + -111.885417, + 48.433746 + ], + [ + -111.885596, + 48.433441 + ], + [ + -111.88582, + 48.433061 + ], + [ + -111.886029, + 48.43273 + ], + [ + -111.886203, + 48.432492 + ], + [ + -111.886412, + 48.432197 + ], + [ + -111.886586, + 48.431954 + ], + [ + -111.886816, + 48.431663 + ], + [ + -111.887079, + 48.431357 + ], + [ + -111.887401, + 48.430981 + ], + [ + -111.887774, + 48.430593 + ], + [ + -111.888127, + 48.430257 + ], + [ + -111.888437, + 48.429955 + ], + [ + -111.889099, + 48.429374 + ], + [ + -111.889756, + 48.428824 + ], + [ + -111.890912, + 48.427857 + ], + [ + -111.892165, + 48.426838 + ], + [ + -111.905659, + 48.415636 + ], + [ + -111.90626, + 48.415157 + ], + [ + -111.906861, + 48.41457 + ], + [ + -111.907333, + 48.414081 + ], + [ + -111.907814, + 48.413528 + ], + [ + -111.908406, + 48.412776 + ], + [ + -111.909015, + 48.411824 + ], + [ + -111.909633, + 48.410907 + ], + [ + -111.920752, + 48.392582 + ], + [ + -111.927417, + 48.381543 + ], + [ + -111.93346, + 48.371538 + ], + [ + -111.933846, + 48.37086 + ], + [ + -111.934235, + 48.370068 + ], + [ + -111.934546, + 48.369396 + ], + [ + -111.934939, + 48.368399 + ], + [ + -111.935227, + 48.367613 + ], + [ + -111.935586, + 48.366493 + ], + [ + -111.935831, + 48.365544 + ], + [ + -111.936026, + 48.364601 + ], + [ + -111.936138, + 48.363831 + ], + [ + -111.936258, + 48.362885 + ], + [ + -111.936438, + 48.360792 + ], + [ + -111.936415, + 48.329088 + ], + [ + -111.936407, + 48.310354 + ], + [ + -111.936413, + 48.303031 + ], + [ + -111.936412, + 48.300795 + ], + [ + -111.936402, + 48.300483 + ], + [ + -111.936381, + 48.271331 + ], + [ + -111.936384, + 48.26711 + ], + [ + -111.936382, + 48.259592 + ], + [ + -111.936296, + 48.241832 + ], + [ + -111.936359, + 48.224045 + ], + [ + -111.936352, + 48.223792 + ], + [ + -111.936325, + 48.223208 + ], + [ + -111.936251, + 48.222646 + ], + [ + -111.936138, + 48.222131 + ], + [ + -111.936009, + 48.221594 + ], + [ + -111.935863, + 48.221148 + ], + [ + -111.935674, + 48.220724 + ], + [ + -111.935554, + 48.220438 + ], + [ + -111.935323, + 48.219975 + ], + [ + -111.934809, + 48.219106 + ], + [ + -111.93372, + 48.217503 + ], + [ + -111.933233, + 48.216812 + ], + [ + -111.932738, + 48.21609 + ], + [ + -111.932429, + 48.215627 + ], + [ + -111.931294, + 48.214006 + ], + [ + -111.927397, + 48.208419 + ], + [ + -111.925603, + 48.205843 + ], + [ + -111.925208, + 48.205217 + ], + [ + -111.92491, + 48.204712 + ], + [ + -111.924771, + 48.204436 + ], + [ + -111.924661, + 48.204188 + ], + [ + -111.924567, + 48.203923 + ], + [ + -111.924475, + 48.203592 + ], + [ + -111.924434, + 48.203298 + ], + [ + -111.924418, + 48.202753 + ], + [ + -111.924413, + 48.20226 + ], + [ + -111.924452, + 48.201981 + ], + [ + -111.924528, + 48.20166 + ], + [ + -111.924607, + 48.201399 + ], + [ + -111.924686, + 48.201185 + ], + [ + -111.924808, + 48.200887 + ], + [ + -111.92494, + 48.200634 + ], + [ + -111.925143, + 48.200322 + ], + [ + -111.925478, + 48.199721 + ], + [ + -111.929307, + 48.193399 + ], + [ + -111.931749, + 48.18936 + ], + [ + -111.932143, + 48.188696 + ], + [ + -111.932455, + 48.188174 + ], + [ + -111.933068, + 48.187161 + ], + [ + -111.933601, + 48.186274 + ], + [ + -111.933896, + 48.185797 + ], + [ + -111.934176, + 48.185351 + ], + [ + -111.934674, + 48.184441 + ], + [ + -111.934869, + 48.184038 + ], + [ + -111.935015, + 48.183702 + ], + [ + -111.935133, + 48.183407 + ], + [ + -111.935235, + 48.183131 + ], + [ + -111.935317, + 48.182855 + ], + [ + -111.935435, + 48.182454 + ], + [ + -111.935517, + 48.18214 + ], + [ + -111.935563, + 48.181903 + ], + [ + -111.935605, + 48.181629 + ], + [ + -111.935654, + 48.181347 + ], + [ + -111.935672, + 48.181134 + ], + [ + -111.935695, + 48.180837 + ], + [ + -111.93571, + 48.180431 + ], + [ + -111.935711, + 48.179913 + ], + [ + -111.935689, + 48.179699 + ], + [ + -111.935666, + 48.179392 + ], + [ + -111.935641, + 48.179193 + ], + [ + -111.935605, + 48.178954 + ], + [ + -111.935551, + 48.17862 + ], + [ + -111.935494, + 48.178341 + ], + [ + -111.935425, + 48.178065 + ], + [ + -111.935362, + 48.177851 + ], + [ + -111.935271, + 48.177512 + ], + [ + -111.935083, + 48.177015 + ], + [ + -111.93498, + 48.176751 + ], + [ + -111.934859, + 48.176484 + ], + [ + -111.934688, + 48.176141 + ], + [ + -111.934489, + 48.175789 + ], + [ + -111.934239, + 48.175377 + ], + [ + -111.933859, + 48.174812 + ], + [ + -111.933189, + 48.173765 + ], + [ + -111.928027, + 48.165762 + ], + [ + -111.927735, + 48.165321 + ], + [ + -111.92603, + 48.162726 + ], + [ + -111.925093, + 48.161247 + ], + [ + -111.924008, + 48.159611 + ], + [ + -111.922175, + 48.156783 + ], + [ + -111.920615, + 48.154387 + ], + [ + -111.919007, + 48.151911 + ], + [ + -111.91822, + 48.150663 + ], + [ + -111.916601, + 48.148144 + ], + [ + -111.915551, + 48.146568 + ], + [ + -111.914312, + 48.144665 + ], + [ + -111.913624, + 48.143606 + ], + [ + -111.912311, + 48.141567 + ], + [ + -111.911974, + 48.141065 + ], + [ + -111.911504, + 48.140381 + ], + [ + -111.910989, + 48.139656 + ], + [ + -111.91031, + 48.138734 + ], + [ + -111.909273, + 48.1374 + ], + [ + -111.907928, + 48.135653 + ], + [ + -111.906666, + 48.13405 + ], + [ + -111.905997, + 48.133172 + ], + [ + -111.904722, + 48.131516 + ], + [ + -111.901655, + 48.127581 + ], + [ + -111.900048, + 48.125516 + ], + [ + -111.898729, + 48.123822 + ], + [ + -111.894029, + 48.117798 + ], + [ + -111.893315, + 48.116857 + ], + [ + -111.892001, + 48.115177 + ], + [ + -111.889638, + 48.112132 + ], + [ + -111.887413, + 48.109275 + ], + [ + -111.884717, + 48.105808 + ], + [ + -111.876044, + 48.094626 + ], + [ + -111.87031, + 48.087229 + ], + [ + -111.862959, + 48.077764 + ], + [ + -111.861332, + 48.075665 + ], + [ + -111.858755, + 48.072362 + ], + [ + -111.857125, + 48.070241 + ], + [ + -111.854834, + 48.06729 + ], + [ + -111.850948, + 48.062304 + ], + [ + -111.85011, + 48.061229 + ], + [ + -111.849084, + 48.059917 + ], + [ + -111.845348, + 48.055071 + ], + [ + -111.836461, + 48.043589 + ], + [ + -111.832454, + 48.038401 + ], + [ + -111.828116, + 48.032803 + ], + [ + -111.825147, + 48.028974 + ], + [ + -111.816587, + 48.017942 + ], + [ + -111.816087, + 48.017289 + ], + [ + -111.815305, + 48.016376 + ], + [ + -111.814473, + 48.015423 + ], + [ + -111.813623, + 48.014499 + ], + [ + -111.812937, + 48.013816 + ], + [ + -111.811984, + 48.012851 + ], + [ + -111.810868, + 48.011863 + ], + [ + -111.809752, + 48.010882 + ], + [ + -111.808825, + 48.010101 + ], + [ + -111.807598, + 48.009153 + ], + [ + -111.806388, + 48.008229 + ], + [ + -111.805238, + 48.007408 + ], + [ + -111.784158, + 47.992286 + ], + [ + -111.782561, + 47.991143 + ], + [ + -111.767146, + 47.980084 + ], + [ + -111.766219, + 47.979354 + ], + [ + -111.765283, + 47.978504 + ], + [ + -111.764288, + 47.977544 + ], + [ + -111.763404, + 47.976585 + ], + [ + -111.762691, + 47.975723 + ], + [ + -111.762193, + 47.97501 + ], + [ + -111.761653, + 47.974154 + ], + [ + -111.761121, + 47.973252 + ], + [ + -111.753336, + 47.959718 + ], + [ + -111.749036, + 47.952205 + ], + [ + -111.736505, + 47.930384 + ], + [ + -111.736106, + 47.92965 + ], + [ + -111.735644, + 47.928853 + ], + [ + -111.735343, + 47.928305 + ], + [ + -111.733592, + 47.925244 + ], + [ + -111.733306, + 47.924769 + ], + [ + -111.732599, + 47.923554 + ], + [ + -111.732395, + 47.923205 + ], + [ + -111.731718, + 47.922093 + ], + [ + -111.731538, + 47.921738 + ], + [ + -111.73117, + 47.921043 + ], + [ + -111.726112, + 47.912262 + ], + [ + -111.71442, + 47.89173 + ], + [ + -111.713776, + 47.890608 + ], + [ + -111.713253, + 47.889578 + ], + [ + -111.712927, + 47.888864 + ], + [ + -111.71254, + 47.888058 + ], + [ + -111.712146, + 47.88689 + ], + [ + -111.711811, + 47.885744 + ], + [ + -111.711519, + 47.884564 + ], + [ + -111.711253, + 47.883125 + ], + [ + -111.711124, + 47.881922 + ], + [ + -111.71103, + 47.880834 + ], + [ + -111.71103, + 47.879792 + ], + [ + -111.711129, + 47.869762 + ], + [ + -111.711004, + 47.867783 + ], + [ + -111.710901, + 47.866758 + ], + [ + -111.710781, + 47.865716 + ], + [ + -111.710618, + 47.864547 + ], + [ + -111.710438, + 47.863447 + ], + [ + -111.710283, + 47.862537 + ], + [ + -111.709991, + 47.861213 + ], + [ + -111.709756, + 47.860259 + ], + [ + -111.709335, + 47.858847 + ], + [ + -111.708841, + 47.857285 + ], + [ + -111.70727, + 47.852822 + ], + [ + -111.706867, + 47.851704 + ], + [ + -111.706498, + 47.850875 + ], + [ + -111.706077, + 47.850017 + ], + [ + -111.705434, + 47.848819 + ], + [ + -111.705305, + 47.848582 + ], + [ + -111.704816, + 47.847747 + ], + [ + -111.704215, + 47.846849 + ], + [ + -111.703623, + 47.846054 + ], + [ + -111.702678, + 47.844833 + ], + [ + -111.701983, + 47.843986 + ], + [ + -111.700902, + 47.842828 + ], + [ + -111.699923, + 47.841889 + ], + [ + -111.698979, + 47.841013 + ], + [ + -111.698052, + 47.84023 + ], + [ + -111.696893, + 47.839291 + ], + [ + -111.668363, + 47.817267 + ], + [ + -111.667479, + 47.816472 + ], + [ + -111.667042, + 47.815942 + ], + [ + -111.666647, + 47.815434 + ], + [ + -111.666226, + 47.81476 + ], + [ + -111.665943, + 47.814143 + ], + [ + -111.66578, + 47.813619 + ], + [ + -111.665625, + 47.812887 + ], + [ + -111.6656, + 47.812391 + ], + [ + -111.665591, + 47.811797 + ], + [ + -111.666429, + 47.79584 + ], + [ + -111.666535, + 47.793822 + ], + [ + -111.666492, + 47.791308 + ], + [ + -111.666439, + 47.750802 + ], + [ + -111.666442, + 47.741317 + ], + [ + -111.666445, + 47.740989 + ], + [ + -111.666406, + 47.723306 + ], + [ + -111.666381, + 47.72244 + ], + [ + -111.666295, + 47.721684 + ], + [ + -111.666158, + 47.720881 + ], + [ + -111.665986, + 47.72024 + ], + [ + -111.665746, + 47.719547 + ], + [ + -111.665419, + 47.71871 + ], + [ + -111.665042, + 47.717925 + ], + [ + -111.664647, + 47.717243 + ], + [ + -111.664132, + 47.716493 + ], + [ + -111.663789, + 47.716008 + ], + [ + -111.663359, + 47.715528 + ], + [ + -111.662432, + 47.714581 + ], + [ + -111.658081, + 47.710071 + ], + [ + -111.647285, + 47.699031 + ], + [ + -111.646085, + 47.697836 + ], + [ + -111.632275, + 47.683698 + ], + [ + -111.631949, + 47.683351 + ], + [ + -111.606663, + 47.657441 + ], + [ + -111.60117, + 47.651798 + ], + [ + -111.590415, + 47.64073 + ], + [ + -111.589918, + 47.640187 + ], + [ + -111.589463, + 47.639655 + ], + [ + -111.589068, + 47.639157 + ], + [ + -111.588707, + 47.638689 + ], + [ + -111.588287, + 47.638139 + ], + [ + -111.587849, + 47.637538 + ], + [ + -111.587549, + 47.637104 + ], + [ + -111.587231, + 47.636624 + ], + [ + -111.58627, + 47.63501 + ], + [ + -111.585369, + 47.633136 + ], + [ + -111.570511, + 47.6019 + ], + [ + -111.569945, + 47.600818 + ], + [ + -111.56955, + 47.600169 + ], + [ + -111.569224, + 47.599643 + ], + [ + -111.568846, + 47.599047 + ], + [ + -111.568546, + 47.598607 + ], + [ + -111.568168, + 47.598051 + ], + [ + -111.567747, + 47.597472 + ], + [ + -111.567335, + 47.596928 + ], + [ + -111.566915, + 47.59643 + ], + [ + -111.566537, + 47.595991 + ], + [ + -111.552899, + 47.581183 + ], + [ + -111.552633, + 47.580911 + ], + [ + -111.537629, + 47.564691 + ], + [ + -111.536514, + 47.563515 + ], + [ + -111.535904, + 47.562901 + ], + [ + -111.535175, + 47.56227 + ], + [ + -111.534437, + 47.561691 + ], + [ + -111.533656, + 47.561129 + ], + [ + -111.532711, + 47.560504 + ], + [ + -111.531647, + 47.559884 + ], + [ + -111.53048, + 47.559311 + ], + [ + -111.529184, + 47.558737 + ], + [ + -111.528008, + 47.558285 + ], + [ + -111.526806, + 47.557897 + ], + [ + -111.525424, + 47.557503 + ], + [ + -111.524008, + 47.557162 + ], + [ + -111.522824, + 47.556953 + ], + [ + -111.521734, + 47.556779 + ], + [ + -111.509679, + 47.554952 + ], + [ + -111.484251, + 47.551039 + ], + [ + -111.477299, + 47.54995 + ], + [ + -111.455614, + 47.546631 + ], + [ + -111.452477, + 47.546143 + ], + [ + -111.452005, + 47.546074 + ], + [ + -111.448496, + 47.545531 + ], + [ + -111.445301, + 47.545037 + ], + [ + -111.443894, + 47.544799 + ], + [ + -111.442357, + 47.544492 + ], + [ + -111.440907, + 47.544162 + ], + [ + -111.439173, + 47.543716 + ], + [ + -111.437894, + 47.543368 + ], + [ + -111.436512, + 47.542957 + ], + [ + -111.435045, + 47.54247 + ], + [ + -111.385349, + 47.526175 + ], + [ + -111.384241, + 47.525793 + ], + [ + -111.383478, + 47.52541 + ], + [ + -111.382928, + 47.525097 + ], + [ + -111.382499, + 47.524784 + ], + [ + -111.382036, + 47.524384 + ], + [ + -111.381709, + 47.524025 + ], + [ + -111.381452, + 47.523741 + ], + [ + -111.380053, + 47.521909 + ], + [ + -111.379298, + 47.520959 + ], + [ + -111.379152, + 47.520779 + ], + [ + -111.378714, + 47.520286 + ], + [ + -111.378268, + 47.519857 + ], + [ + -111.377555, + 47.519394 + ], + [ + -111.376774, + 47.518994 + ], + [ + -111.376096, + 47.518733 + ], + [ + -111.375409, + 47.51853 + ], + [ + -111.374294, + 47.518234 + ], + [ + -111.351059, + 47.512362 + ], + [ + -111.350081, + 47.512055 + ], + [ + -111.348914, + 47.511632 + ], + [ + -111.348184, + 47.511255 + ], + [ + -111.347446, + 47.510878 + ], + [ + -111.346914, + 47.510553 + ], + [ + -111.346356, + 47.510147 + ], + [ + -111.345832, + 47.509759 + ], + [ + -111.345309, + 47.509295 + ], + [ + -111.344914, + 47.508884 + ], + [ + -111.344605, + 47.508542 + ], + [ + -111.344193, + 47.50802 + ], + [ + -111.34391, + 47.507591 + ], + [ + -111.343618, + 47.507133 + ], + [ + -111.343352, + 47.506535 + ], + [ + -111.343137, + 47.505921 + ], + [ + -111.343, + 47.505254 + ], + [ + -111.342914, + 47.504779 + ], + [ + -111.342871, + 47.504205 + ], + [ + -111.342884, + 47.503714 + ], + [ + -111.343017, + 47.501337 + ], + [ + -111.343037, + 47.500922 + ], + [ + -111.343074, + 47.500247 + ], + [ + -111.343153, + 47.498866 + ], + [ + -111.343699, + 47.489338 + ], + [ + -111.343837, + 47.488347 + ], + [ + -111.344051, + 47.487517 + ], + [ + -111.344326, + 47.486746 + ], + [ + -111.344695, + 47.485795 + ], + [ + -111.345184, + 47.484855 + ], + [ + -111.345493, + 47.484356 + ], + [ + -111.346068, + 47.483527 + ], + [ + -111.34715, + 47.48221 + ], + [ + -111.347948, + 47.481392 + ], + [ + -111.348765, + 47.480715 + ], + [ + -111.349751, + 47.479978 + ], + [ + -111.350866, + 47.47913 + ], + [ + -111.356582, + 47.475347 + ], + [ + -111.365214, + 47.469592 + ], + [ + -111.367419, + 47.46813 + ], + [ + -111.367934, + 47.467829 + ], + [ + -111.368578, + 47.467492 + ], + [ + -111.36923, + 47.467144 + ], + [ + -111.369994, + 47.466807 + ], + [ + -111.370973, + 47.466407 + ], + [ + -111.371926, + 47.466042 + ], + [ + -111.372818, + 47.465746 + ], + [ + -111.373522, + 47.465525 + ], + [ + -111.374509, + 47.465258 + ], + [ + -111.429286, + 47.452445 + ], + [ + -111.429621, + 47.452364 + ], + [ + -111.473508, + 47.442064 + ], + [ + -111.50183, + 47.435384 + ], + [ + -111.502749, + 47.435175 + ], + [ + -111.503701, + 47.434961 + ], + [ + -111.504362, + 47.434792 + ], + [ + -111.505221, + 47.434543 + ], + [ + -111.506045, + 47.434299 + ], + [ + -111.506663, + 47.434095 + ], + [ + -111.507143, + 47.433927 + ], + [ + -111.507907, + 47.433648 + ], + [ + -111.508654, + 47.433312 + ], + [ + -111.509255, + 47.433045 + ], + [ + -111.509933, + 47.432725 + ], + [ + -111.510534, + 47.432412 + ], + [ + -111.51122, + 47.432029 + ], + [ + -111.51183, + 47.431674 + ], + [ + -111.512954, + 47.430931 + ], + [ + -111.513546, + 47.43049 + ], + [ + -111.524011, + 47.422011 + ], + [ + -111.569141, + 47.385345 + ], + [ + -111.6142, + 47.348685 + ], + [ + -111.614466, + 47.34847 + ], + [ + -111.634341, + 47.332266 + ], + [ + -111.69101, + 47.285965 + ], + [ + -111.692683, + 47.284596 + ], + [ + -111.694151, + 47.283461 + ], + [ + -111.694838, + 47.282943 + ], + [ + -111.696432, + 47.281863 + ], + [ + -111.698123, + 47.280815 + ], + [ + -111.699024, + 47.280297 + ], + [ + -111.699436, + 47.280064 + ], + [ + -111.703522, + 47.277671 + ], + [ + -111.704183, + 47.27728 + ], + [ + -111.704689, + 47.276966 + ], + [ + -111.70511, + 47.276686 + ], + [ + -111.705436, + 47.276442 + ], + [ + -111.705788, + 47.276139 + ], + [ + -111.706182, + 47.275766 + ], + [ + -111.706612, + 47.275289 + ], + [ + -111.706989, + 47.274806 + ], + [ + -111.707367, + 47.274264 + ], + [ + -111.707573, + 47.273856 + ], + [ + -111.707813, + 47.273379 + ], + [ + -111.707933, + 47.273047 + ], + [ + -111.708045, + 47.272651 + ], + [ + -111.708122, + 47.272307 + ], + [ + -111.708199, + 47.271911 + ], + [ + -111.708234, + 47.271544 + ], + [ + -111.708234, + 47.271212 + ], + [ + -111.708157, + 47.264538 + ], + [ + -111.708114, + 47.262342 + ], + [ + -111.708122, + 47.261794 + ], + [ + -111.708157, + 47.261369 + ], + [ + -111.708234, + 47.260851 + ], + [ + -111.708268, + 47.260653 + ], + [ + -111.708337, + 47.260257 + ], + [ + -111.708508, + 47.259511 + ], + [ + -111.708637, + 47.258923 + ], + [ + -111.708783, + 47.258241 + ], + [ + -111.70898, + 47.257536 + ], + [ + -111.709152, + 47.256942 + ], + [ + -111.709298, + 47.256383 + ], + [ + -111.710079, + 47.25333 + ], + [ + -111.710328, + 47.252363 + ], + [ + -111.710474, + 47.251833 + ], + [ + -111.710637, + 47.251332 + ], + [ + -111.710834, + 47.250889 + ], + [ + -111.71104, + 47.250545 + ], + [ + -111.711367, + 47.250085 + ], + [ + -111.711658, + 47.249753 + ], + [ + -111.711942, + 47.249444 + ], + [ + -111.712345, + 47.249089 + ], + [ + -111.712766, + 47.248751 + ], + [ + -111.71316, + 47.248494 + ], + [ + -111.713624, + 47.248221 + ], + [ + -111.714147, + 47.247958 + ], + [ + -111.714834, + 47.247655 + ], + [ + -111.729726, + 47.241112 + ], + [ + -111.73291, + 47.239807 + ], + [ + -111.75169, + 47.232534 + ], + [ + -111.754093, + 47.231624 + ], + [ + -111.75635, + 47.230861 + ], + [ + -111.75676, + 47.230739 + ], + [ + -111.765002, + 47.228413 + ], + [ + -111.765835, + 47.228157 + ], + [ + -111.766633, + 47.227877 + ], + [ + -111.767345, + 47.227597 + ], + [ + -111.768092, + 47.227306 + ], + [ + -111.768719, + 47.227026 + ], + [ + -111.769474, + 47.226676 + ], + [ + -111.770058, + 47.226361 + ], + [ + -111.770727, + 47.225988 + ], + [ + -111.771448, + 47.225534 + ], + [ + -111.772118, + 47.225096 + ], + [ + -111.772693, + 47.224688 + ], + [ + -111.773405, + 47.22417 + ], + [ + -111.773714, + 47.223936 + ], + [ + -111.774169, + 47.223575 + ], + [ + -111.774641, + 47.223103 + ], + [ + -111.775104, + 47.222619 + ], + [ + -111.775499, + 47.222211 + ], + [ + -111.775885, + 47.221774 + ], + [ + -111.776306, + 47.221255 + ], + [ + -111.776658, + 47.220777 + ], + [ + -111.77695, + 47.220369 + ], + [ + -111.777422, + 47.219611 + ], + [ + -111.777722, + 47.219057 + ], + [ + -111.778014, + 47.218422 + ], + [ + -111.778289, + 47.217746 + ], + [ + -111.778503, + 47.217104 + ], + [ + -111.778675, + 47.216428 + ], + [ + -111.778881, + 47.215694 + ], + [ + -111.779061, + 47.214988 + ], + [ + -111.780057, + 47.210796 + ], + [ + -111.780203, + 47.210213 + ], + [ + -111.780323, + 47.209758 + ], + [ + -111.780435, + 47.209397 + ], + [ + -111.780641, + 47.208808 + ], + [ + -111.780907, + 47.208201 + ], + [ + -111.78113, + 47.207729 + ], + [ + -111.781301, + 47.207438 + ], + [ + -111.781499, + 47.207129 + ], + [ + -111.78228, + 47.205916 + ], + [ + -111.783293, + 47.204645 + ], + [ + -111.783936, + 47.203974 + ], + [ + -111.784735, + 47.203146 + ], + [ + -111.785593, + 47.202225 + ], + [ + -111.786314, + 47.201466 + ], + [ + -111.786872, + 47.200883 + ], + [ + -111.787902, + 47.199845 + ], + [ + -111.788254, + 47.199507 + ], + [ + -111.788674, + 47.19914 + ], + [ + -111.789086, + 47.19879 + ], + [ + -111.789584, + 47.198387 + ], + [ + -111.790168, + 47.197921 + ], + [ + -111.790605, + 47.197618 + ], + [ + -111.791249, + 47.197227 + ], + [ + -111.791824, + 47.196877 + ], + [ + -111.792545, + 47.196474 + ], + [ + -111.793198, + 47.196136 + ], + [ + -111.79397, + 47.195769 + ], + [ + -111.794805, + 47.195425 + ], + [ + -111.801248, + 47.192835 + ], + [ + -111.801575, + 47.192701 + ], + [ + -111.802656, + 47.192287 + ], + [ + -111.803514, + 47.191937 + ], + [ + -111.804167, + 47.191628 + ], + [ + -111.804665, + 47.191394 + ], + [ + -111.8053, + 47.191045 + ], + [ + -111.805723, + 47.190797 + ], + [ + -111.805997, + 47.190634 + ], + [ + -111.806478, + 47.190323 + ], + [ + -111.806732, + 47.190144 + ], + [ + -111.80699, + 47.189955 + ], + [ + -111.807242, + 47.189755 + ], + [ + -111.807499, + 47.189537 + ], + [ + -111.807978, + 47.189108 + ], + [ + -111.808309, + 47.188784 + ], + [ + -111.808738, + 47.188316 + ], + [ + -111.809145, + 47.187831 + ], + [ + -111.809375, + 47.187515 + ], + [ + -111.809578, + 47.187207 + ], + [ + -111.809725, + 47.186968 + ], + [ + -111.809941, + 47.18658 + ], + [ + -111.810196, + 47.186052 + ], + [ + -111.810485, + 47.185392 + ], + [ + -111.810582, + 47.185034 + ], + [ + -111.810757, + 47.184458 + ], + [ + -111.81087, + 47.184068 + ], + [ + -111.811288, + 47.182591 + ], + [ + -111.811466, + 47.182023 + ], + [ + -111.811592, + 47.181562 + ], + [ + -111.811725, + 47.181068 + ], + [ + -111.811881, + 47.18053 + ], + [ + -111.812016, + 47.179972 + ], + [ + -111.812133, + 47.179486 + ], + [ + -111.812304, + 47.178698 + ], + [ + -111.812475, + 47.177933 + ], + [ + -111.812795, + 47.176671 + ], + [ + -111.813022, + 47.175805 + ], + [ + -111.813143, + 47.175313 + ], + [ + -111.813289, + 47.174743 + ], + [ + -111.813451, + 47.174086 + ], + [ + -111.813587, + 47.173603 + ], + [ + -111.813709, + 47.173199 + ], + [ + -111.813868, + 47.172742 + ], + [ + -111.814052, + 47.172177 + ], + [ + -111.81431, + 47.171374 + ], + [ + -111.814446, + 47.170953 + ], + [ + -111.814555, + 47.170592 + ], + [ + -111.814621, + 47.170315 + ], + [ + -111.814724, + 47.169845 + ], + [ + -111.814867, + 47.169286 + ], + [ + -111.814924, + 47.169023 + ], + [ + -111.815005, + 47.168585 + ], + [ + -111.81512, + 47.168075 + ], + [ + -111.815267, + 47.167513 + ], + [ + -111.81537, + 47.167124 + ], + [ + -111.815534, + 47.166596 + ], + [ + -111.815743, + 47.165879 + ], + [ + -111.815883, + 47.165407 + ], + [ + -111.816017, + 47.16497 + ], + [ + -111.816151, + 47.164499 + ], + [ + -111.816299, + 47.164102 + ], + [ + -111.816455, + 47.163605 + ], + [ + -111.816606, + 47.163233 + ], + [ + -111.81675, + 47.162929 + ], + [ + -111.8169, + 47.16265 + ], + [ + -111.817163, + 47.162234 + ], + [ + -111.817461, + 47.161792 + ], + [ + -111.817707, + 47.161428 + ], + [ + -111.817918, + 47.161172 + ], + [ + -111.818109, + 47.160939 + ], + [ + -111.81826, + 47.160773 + ], + [ + -111.818436, + 47.160598 + ], + [ + -111.818713, + 47.160322 + ], + [ + -111.819137, + 47.159916 + ], + [ + -111.819338, + 47.159742 + ], + [ + -111.819615, + 47.159506 + ], + [ + -111.819811, + 47.159353 + ], + [ + -111.820101, + 47.159137 + ], + [ + -111.820886, + 47.158653 + ], + [ + -111.821347, + 47.158391 + ], + [ + -111.821709, + 47.158179 + ], + [ + -111.82215, + 47.157949 + ], + [ + -111.822792, + 47.157656 + ], + [ + -111.823291, + 47.157407 + ], + [ + -111.823951, + 47.157074 + ], + [ + -111.824604, + 47.156773 + ], + [ + -111.824926, + 47.156618 + ], + [ + -111.826016, + 47.156075 + ], + [ + -111.826777, + 47.155704 + ], + [ + -111.827118, + 47.155527 + ], + [ + -111.827632, + 47.155278 + ], + [ + -111.828833, + 47.154684 + ], + [ + -111.830331, + 47.153967 + ], + [ + -111.83092, + 47.153679 + ], + [ + -111.831417, + 47.153485 + ], + [ + -111.831694, + 47.153394 + ], + [ + -111.831937, + 47.15332 + ], + [ + -111.832157, + 47.153261 + ], + [ + -111.832517, + 47.15318 + ], + [ + -111.832892, + 47.153117 + ], + [ + -111.833253, + 47.153076 + ], + [ + -111.833573, + 47.153049 + ], + [ + -111.833993, + 47.153025 + ], + [ + -111.834559, + 47.153049 + ], + [ + -111.835126, + 47.153113 + ], + [ + -111.835701, + 47.1532 + ], + [ + -111.83595, + 47.153259 + ], + [ + -111.841856, + 47.154858 + ], + [ + -111.842362, + 47.155002 + ], + [ + -111.842712, + 47.155094 + ], + [ + -111.843019, + 47.155158 + ], + [ + -111.843672, + 47.155257 + ], + [ + -111.8438, + 47.155267 + ], + [ + -111.844087, + 47.155287 + ], + [ + -111.844399, + 47.155286 + ], + [ + -111.844699, + 47.15528 + ], + [ + -111.845058, + 47.15526 + ], + [ + -111.845509, + 47.155193 + ], + [ + -111.845869, + 47.155122 + ], + [ + -111.846291, + 47.155019 + ], + [ + -111.846644, + 47.154905 + ], + [ + -111.846928, + 47.154785 + ], + [ + -111.847126, + 47.154685 + ], + [ + -111.847479, + 47.154504 + ], + [ + -111.847736, + 47.154346 + ], + [ + -111.847908, + 47.15421 + ], + [ + -111.848115, + 47.154036 + ], + [ + -111.848251, + 47.153894 + ], + [ + -111.848342, + 47.153792 + ], + [ + -111.84847, + 47.153647 + ], + [ + -111.848543, + 47.153546 + ], + [ + -111.848649, + 47.153419 + ], + [ + -111.848764, + 47.153232 + ], + [ + -111.848861, + 47.153032 + ], + [ + -111.848947, + 47.152823 + ], + [ + -111.848973, + 47.152708 + ], + [ + -111.849021, + 47.152541 + ], + [ + -111.849042, + 47.152364 + ], + [ + -111.849077, + 47.152131 + ], + [ + -111.849103, + 47.151825 + ], + [ + -111.849333, + 47.149062 + ], + [ + -111.849393, + 47.148406 + ], + [ + -111.8494, + 47.148192 + ], + [ + -111.849408, + 47.147987 + ], + [ + -111.8494, + 47.147824 + ], + [ + -111.84939, + 47.147698 + ], + [ + -111.849374, + 47.147556 + ], + [ + -111.849347, + 47.147435 + ], + [ + -111.849331, + 47.147351 + ], + [ + -111.849245, + 47.146966 + ], + [ + -111.849142, + 47.146674 + ], + [ + -111.849059, + 47.146434 + ], + [ + -111.848943, + 47.146212 + ], + [ + -111.84886, + 47.146053 + ], + [ + -111.848767, + 47.145896 + ], + [ + -111.848673, + 47.145762 + ], + [ + -111.848566, + 47.14562 + ], + [ + -111.847025, + 47.143717 + ], + [ + -111.846887, + 47.143525 + ], + [ + -111.846766, + 47.143353 + ], + [ + -111.846661, + 47.14319 + ], + [ + -111.846521, + 47.142953 + ], + [ + -111.846415, + 47.142749 + ], + [ + -111.846343, + 47.142591 + ], + [ + -111.846269, + 47.14237 + ], + [ + -111.846241, + 47.142263 + ], + [ + -111.846223, + 47.14217 + ], + [ + -111.846209, + 47.142062 + ], + [ + -111.84619, + 47.141876 + ], + [ + -111.846192, + 47.141745 + ], + [ + -111.846217, + 47.141528 + ], + [ + -111.846242, + 47.141353 + ], + [ + -111.84627, + 47.141184 + ], + [ + -111.846324, + 47.141016 + ], + [ + -111.846398, + 47.140797 + ], + [ + -111.846525, + 47.140531 + ], + [ + -111.846604, + 47.14041 + ], + [ + -111.846676, + 47.14029 + ], + [ + -111.846846, + 47.140059 + ], + [ + -111.847142, + 47.139751 + ], + [ + -111.847281, + 47.13963 + ], + [ + -111.84746, + 47.139479 + ], + [ + -111.847678, + 47.139323 + ], + [ + -111.84791, + 47.139171 + ], + [ + -111.848186, + 47.139013 + ], + [ + -111.848438, + 47.138891 + ], + [ + -111.848706, + 47.138772 + ], + [ + -111.848984, + 47.138674 + ], + [ + -111.849267, + 47.138581 + ], + [ + -111.849592, + 47.138477 + ], + [ + -111.849947, + 47.138393 + ], + [ + -111.850257, + 47.138331 + ], + [ + -111.850556, + 47.138292 + ], + [ + -111.850908, + 47.138241 + ], + [ + -111.851241, + 47.13822 + ], + [ + -111.85164, + 47.138209 + ], + [ + -111.851974, + 47.13821 + ], + [ + -111.852237, + 47.138223 + ], + [ + -111.852532, + 47.138247 + ], + [ + -111.852795, + 47.138276 + ], + [ + -111.853123, + 47.13833 + ], + [ + -111.853394, + 47.138374 + ], + [ + -111.853787, + 47.138457 + ], + [ + -111.854766, + 47.138667 + ], + [ + -111.855826, + 47.138884 + ], + [ + -111.856179, + 47.13897 + ], + [ + -111.856565, + 47.139029 + ], + [ + -111.856792, + 47.139068 + ], + [ + -111.857173, + 47.13911 + ], + [ + -111.857431, + 47.139137 + ], + [ + -111.857676, + 47.139157 + ], + [ + -111.858048, + 47.139176 + ], + [ + -111.858338, + 47.139177 + ], + [ + -111.858762, + 47.139167 + ], + [ + -111.859155, + 47.139148 + ], + [ + -111.85955, + 47.139117 + ], + [ + -111.859805, + 47.139089 + ], + [ + -111.860245, + 47.139022 + ], + [ + -111.860491, + 47.13898 + ], + [ + -111.860683, + 47.138944 + ], + [ + -111.860973, + 47.138885 + ], + [ + -111.861214, + 47.138829 + ], + [ + -111.861479, + 47.138758 + ], + [ + -111.861743, + 47.138677 + ], + [ + -111.862069, + 47.138562 + ], + [ + -111.862344, + 47.138449 + ], + [ + -111.862687, + 47.138297 + ], + [ + -111.862931, + 47.138175 + ], + [ + -111.863114, + 47.138087 + ], + [ + -111.863314, + 47.137975 + ], + [ + -111.863599, + 47.137807 + ], + [ + -111.863972, + 47.13756 + ], + [ + -111.864261, + 47.137341 + ], + [ + -111.864442, + 47.137202 + ], + [ + -111.864674, + 47.137005 + ], + [ + -111.864969, + 47.136736 + ], + [ + -111.865258, + 47.13642 + ], + [ + -111.867853, + 47.13324 + ], + [ + -111.868102, + 47.13296 + ], + [ + -111.868445, + 47.132657 + ], + [ + -111.868909, + 47.132347 + ], + [ + -111.869372, + 47.132096 + ], + [ + -111.869776, + 47.131938 + ], + [ + -111.870291, + 47.131792 + ], + [ + -111.870754, + 47.131687 + ], + [ + -111.871286, + 47.131623 + ], + [ + -111.87181, + 47.131605 + ], + [ + -111.872359, + 47.131617 + ], + [ + -111.873389, + 47.131705 + ], + [ + -111.875681, + 47.131897 + ], + [ + -111.885054, + 47.132785 + ], + [ + -111.886566, + 47.132886 + ], + [ + -111.888607, + 47.1331 + ], + [ + -111.888985, + 47.133135 + ], + [ + -111.889766, + 47.133217 + ], + [ + -111.890444, + 47.133281 + ], + [ + -111.891225, + 47.133322 + ], + [ + -111.891886, + 47.133334 + ], + [ + -111.892598, + 47.133334 + ], + [ + -111.893242, + 47.133316 + ], + [ + -111.8938, + 47.133305 + ], + [ + -111.894512, + 47.133246 + ], + [ + -111.89513, + 47.133194 + ], + [ + -111.89563, + 47.133132 + ], + [ + -111.896274, + 47.133044 + ], + [ + -111.89678, + 47.132974 + ], + [ + -111.898531, + 47.132636 + ], + [ + -111.899656, + 47.132344 + ], + [ + -111.900711, + 47.132022 + ], + [ + -111.901398, + 47.131783 + ], + [ + -111.902445, + 47.131403 + ], + [ + -111.904162, + 47.130755 + ], + [ + -111.909034, + 47.128927 + ], + [ + -111.913729, + 47.127181 + ], + [ + -111.917251, + 47.125878 + ], + [ + -111.92071, + 47.1247 + ], + [ + -111.921698, + 47.124251 + ], + [ + -111.922387, + 47.123838 + ], + [ + -111.922806, + 47.123526 + ], + [ + -111.924809, + 47.121884 + ], + [ + -111.925527, + 47.121467 + ], + [ + -111.926631, + 47.121045 + ], + [ + -111.927545, + 47.120838 + ], + [ + -111.928844, + 47.120679 + ], + [ + -111.939954, + 47.119561 + ], + [ + -111.940893, + 47.119375 + ], + [ + -111.941491, + 47.119193 + ], + [ + -111.94258, + 47.118694 + ], + [ + -111.94328, + 47.118205 + ], + [ + -111.943682, + 47.117842 + ], + [ + -111.944167, + 47.117216 + ], + [ + -111.94437, + 47.116782 + ], + [ + -111.94452, + 47.116283 + ], + [ + -111.944594, + 47.115646 + ], + [ + -111.944471, + 47.113184 + ], + [ + -111.944519, + 47.112085 + ], + [ + -111.944699, + 47.111164 + ], + [ + -111.9451, + 47.109855 + ], + [ + -111.94519, + 47.109613 + ], + [ + -111.946818, + 47.104798 + ], + [ + -111.947185, + 47.103915 + ], + [ + -111.94757, + 47.103215 + ], + [ + -111.948705, + 47.101708 + ], + [ + -111.95025, + 47.099859 + ], + [ + -111.951568, + 47.098237 + ], + [ + -111.952318, + 47.097326 + ], + [ + -111.952866, + 47.096646 + ], + [ + -111.954165, + 47.094457 + ], + [ + -111.954536, + 47.093996 + ], + [ + -111.955001, + 47.093573 + ], + [ + -111.95538, + 47.093283 + ], + [ + -111.95597, + 47.092921 + ], + [ + -111.958022, + 47.092174 + ], + [ + -111.958929, + 47.091665 + ], + [ + -111.959563, + 47.091145 + ], + [ + -111.959918, + 47.090782 + ], + [ + -111.960199, + 47.090406 + ], + [ + -111.960514, + 47.089782 + ], + [ + -111.960679, + 47.089121 + ], + [ + -111.961076, + 47.083974 + ], + [ + -111.961218, + 47.083113 + ], + [ + -111.961515, + 47.082259 + ], + [ + -111.962027, + 47.081188 + ], + [ + -111.962536, + 47.080367 + ], + [ + -111.963148, + 47.079581 + ], + [ + -111.964601, + 47.078023 + ], + [ + -111.966718, + 47.075826 + ], + [ + -111.967024, + 47.075517 + ], + [ + -111.969094, + 47.073375 + ], + [ + -111.970437, + 47.07194 + ], + [ + -111.972154, + 47.070032 + ], + [ + -111.973432, + 47.068542 + ], + [ + -111.974103, + 47.067809 + ], + [ + -111.974604, + 47.067107 + ], + [ + -111.976616, + 47.064731 + ], + [ + -111.98105, + 47.059331 + ], + [ + -111.981811, + 47.058552 + ], + [ + -111.982905, + 47.057585 + ], + [ + -111.983864, + 47.057007 + ], + [ + -111.985011, + 47.056354 + ], + [ + -111.986314, + 47.055712 + ], + [ + -111.986853, + 47.055504 + ], + [ + -111.987827, + 47.055224 + ], + [ + -111.990272, + 47.054577 + ], + [ + -111.991627, + 47.053954 + ], + [ + -111.992491, + 47.053494 + ], + [ + -111.993301, + 47.052977 + ], + [ + -111.994268, + 47.05221 + ], + [ + -111.994901, + 47.051592 + ], + [ + -112.00108, + 47.045261 + ], + [ + -112.002131, + 47.044014 + ], + [ + -112.002341, + 47.043639 + ], + [ + -112.002459, + 47.043291 + ], + [ + -112.00254, + 47.04249 + ], + [ + -112.002551, + 47.041633 + ], + [ + -112.002802, + 47.040468 + ], + [ + -112.003031, + 47.039996 + ], + [ + -112.003311, + 47.039629 + ], + [ + -112.00408, + 47.038901 + ], + [ + -112.004669, + 47.038537 + ], + [ + -112.005381, + 47.038191 + ], + [ + -112.006132, + 47.03787 + ], + [ + -112.007591, + 47.037508 + ], + [ + -112.008057, + 47.037437 + ], + [ + -112.009475, + 47.037313 + ], + [ + -112.012696, + 47.037258 + ], + [ + -112.01489, + 47.037245 + ], + [ + -112.016275, + 47.037163 + ], + [ + -112.0192, + 47.037033 + ], + [ + -112.020595, + 47.036893 + ], + [ + -112.021841, + 47.036661 + ], + [ + -112.023428, + 47.036288 + ], + [ + -112.024543, + 47.035923 + ], + [ + -112.025634, + 47.03549 + ], + [ + -112.026621, + 47.035004 + ], + [ + -112.027875, + 47.034259 + ], + [ + -112.04368, + 47.024236 + ], + [ + -112.044909, + 47.023441 + ], + [ + -112.04544, + 47.023036 + ], + [ + -112.04608, + 47.022418 + ], + [ + -112.046528, + 47.021863 + ], + [ + -112.046751, + 47.021531 + ], + [ + -112.046895, + 47.021189 + ], + [ + -112.048457, + 47.017223 + ], + [ + -112.049379, + 47.014861 + ], + [ + -112.04961, + 47.014335 + ], + [ + -112.049878, + 47.013819 + ], + [ + -112.050194, + 47.013314 + ], + [ + -112.050556, + 47.012813 + ], + [ + -112.050955, + 47.01233 + ], + [ + -112.051351, + 47.011873 + ], + [ + -112.051809, + 47.011423 + ], + [ + -112.052303, + 47.010991 + ], + [ + -112.05283, + 47.010576 + ], + [ + -112.053387, + 47.010182 + ], + [ + -112.053972, + 47.009806 + ], + [ + -112.056998, + 47.008006 + ], + [ + -112.058515, + 47.007109 + ], + [ + -112.060333, + 47.006031 + ], + [ + -112.061846, + 47.00513 + ], + [ + -112.062472, + 47.004869 + ], + [ + -112.062889, + 47.004741 + ], + [ + -112.063358, + 47.004645 + ], + [ + -112.063683, + 47.004606 + ], + [ + -112.064074, + 47.004561 + ], + [ + -112.064445, + 47.004519 + ], + [ + -112.06488, + 47.004576 + ], + [ + -112.06527, + 47.004629 + ], + [ + -112.065565, + 47.004697 + ], + [ + -112.065974, + 47.004792 + ], + [ + -112.066808, + 47.004991 + ], + [ + -112.06824, + 47.005361 + ], + [ + -112.0686, + 47.005467 + ], + [ + -112.069096, + 47.005596 + ], + [ + -112.069473, + 47.005688 + ], + [ + -112.069732, + 47.005745 + ], + [ + -112.070266, + 47.005855 + ], + [ + -112.070699, + 47.005951 + ], + [ + -112.071253, + 47.006048 + ], + [ + -112.071642, + 47.006114 + ], + [ + -112.071928, + 47.006158 + ], + [ + -112.072302, + 47.006209 + ], + [ + -112.072735, + 47.006263 + ], + [ + -112.072984, + 47.006287 + ], + [ + -112.073367, + 47.006318 + ], + [ + -112.073792, + 47.006352 + ], + [ + -112.074219, + 47.006372 + ], + [ + -112.074542, + 47.006382 + ], + [ + -112.074829, + 47.00639 + ], + [ + -112.075178, + 47.006392 + ], + [ + -112.075603, + 47.006393 + ], + [ + -112.076788, + 47.006332 + ], + [ + -112.077271, + 47.006281 + ], + [ + -112.077628, + 47.006225 + ], + [ + -112.078026, + 47.006153 + ], + [ + -112.078436, + 47.006074 + ], + [ + -112.078755, + 47.005996 + ], + [ + -112.079201, + 47.005866 + ], + [ + -112.079533, + 47.005747 + ], + [ + -112.079812, + 47.00563 + ], + [ + -112.080082, + 47.005495 + ], + [ + -112.080379, + 47.005332 + ], + [ + -112.080635, + 47.005164 + ], + [ + -112.080953, + 47.004927 + ], + [ + -112.081049, + 47.004826 + ], + [ + -112.081198, + 47.004689 + ], + [ + -112.081316, + 47.004562 + ], + [ + -112.081449, + 47.004379 + ], + [ + -112.081568, + 47.004191 + ], + [ + -112.081674, + 47.003987 + ], + [ + -112.08174, + 47.003858 + ], + [ + -112.081806, + 47.003692 + ], + [ + -112.081884, + 47.003438 + ], + [ + -112.08191, + 47.003275 + ], + [ + -112.081934, + 47.003066 + ], + [ + -112.08193, + 47.002831 + ], + [ + -112.081896, + 47.002597 + ], + [ + -112.081853, + 47.002371 + ], + [ + -112.081798, + 47.002194 + ], + [ + -112.081607, + 47.00176 + ], + [ + -112.081184, + 47.001198 + ], + [ + -112.079559, + 46.99968 + ], + [ + -112.078016, + 46.99838 + ], + [ + -112.07758, + 46.997912 + ], + [ + -112.077288, + 46.997532 + ], + [ + -112.076986, + 46.99693 + ], + [ + -112.076889, + 46.996514 + ], + [ + -112.076886, + 46.996116 + ], + [ + -112.076984, + 46.995478 + ], + [ + -112.07795, + 46.992584 + ], + [ + -112.078047, + 46.991994 + ], + [ + -112.078024, + 46.991594 + ], + [ + -112.077935, + 46.9912 + ], + [ + -112.077672, + 46.990627 + ], + [ + -112.076129, + 46.988425 + ], + [ + -112.075762, + 46.987771 + ], + [ + -112.075646, + 46.98742 + ], + [ + -112.075619, + 46.987055 + ], + [ + -112.075663, + 46.986679 + ], + [ + -112.075796, + 46.986299 + ], + [ + -112.076008, + 46.985921 + ], + [ + -112.076502, + 46.98539 + ], + [ + -112.077181, + 46.984932 + ], + [ + -112.081242, + 46.982494 + ], + [ + -112.081853, + 46.981972 + ], + [ + -112.082104, + 46.981646 + ], + [ + -112.082346, + 46.981245 + ], + [ + -112.082526, + 46.98074 + ], + [ + -112.082567, + 46.980266 + ], + [ + -112.082681, + 46.977427 + ], + [ + -112.082826, + 46.974499 + ], + [ + -112.083032, + 46.973709 + ], + [ + -112.083438, + 46.973098 + ], + [ + -112.083941, + 46.972667 + ], + [ + -112.084536, + 46.97225 + ], + [ + -112.093815, + 46.965771 + ], + [ + -112.094034, + 46.965596 + ], + [ + -112.094318, + 46.965306 + ], + [ + -112.094501, + 46.965085 + ], + [ + -112.094642, + 46.964864 + ], + [ + -112.094785, + 46.964575 + ], + [ + -112.094868, + 46.964338 + ], + [ + -112.094926, + 46.964081 + ], + [ + -112.094952, + 46.963813 + ], + [ + -112.094963, + 46.963562 + ], + [ + -112.094964, + 46.963005 + ], + [ + -112.094945, + 46.962147 + ], + [ + -112.095064, + 46.961322 + ], + [ + -112.095315, + 46.960775 + ], + [ + -112.095663, + 46.960328 + ], + [ + -112.098599, + 46.957746 + ], + [ + -112.098975, + 46.957432 + ], + [ + -112.099726, + 46.956946 + ], + [ + -112.100314, + 46.956644 + ], + [ + -112.101038, + 46.956326 + ], + [ + -112.103946, + 46.955297 + ], + [ + -112.107802, + 46.953955 + ], + [ + -112.108475, + 46.953671 + ], + [ + -112.108901, + 46.953445 + ], + [ + -112.109465, + 46.953038 + ], + [ + -112.109979, + 46.952469 + ], + [ + -112.110197, + 46.952042 + ], + [ + -112.111502, + 46.949682 + ], + [ + -112.112324, + 46.948952 + ], + [ + -112.113184, + 46.948533 + ], + [ + -112.114208, + 46.948308 + ], + [ + -112.116111, + 46.948021 + ], + [ + -112.117289, + 46.947669 + ], + [ + -112.118334, + 46.94705 + ], + [ + -112.119549, + 46.946068 + ], + [ + -112.122402, + 46.943642 + ], + [ + -112.123133, + 46.943013 + ], + [ + -112.123553, + 46.942583 + ], + [ + -112.12389, + 46.942171 + ], + [ + -112.124619, + 46.941266 + ], + [ + -112.125571, + 46.939982 + ], + [ + -112.126015, + 46.939377 + ], + [ + -112.1265, + 46.938749 + ], + [ + -112.126751, + 46.938397 + ], + [ + -112.126995, + 46.938014 + ], + [ + -112.127231, + 46.93766 + ], + [ + -112.127472, + 46.93708 + ], + [ + -112.127553, + 46.936521 + ], + [ + -112.127485, + 46.935878 + ], + [ + -112.126037, + 46.931011 + ], + [ + -112.125843, + 46.930596 + ], + [ + -112.125614, + 46.930288 + ], + [ + -112.125356, + 46.930017 + ], + [ + -112.125, + 46.92973 + ], + [ + -112.122981, + 46.928549 + ], + [ + -112.122668, + 46.928293 + ], + [ + -112.122315, + 46.927871 + ], + [ + -112.122099, + 46.927296 + ], + [ + -112.122093, + 46.926792 + ], + [ + -112.122341, + 46.926128 + ], + [ + -112.12333, + 46.924835 + ], + [ + -112.123628, + 46.924404 + ], + [ + -112.123835, + 46.923877 + ], + [ + -112.123883, + 46.923325 + ], + [ + -112.123775, + 46.9228 + ], + [ + -112.123494, + 46.922251 + ], + [ + -112.123242, + 46.921939 + ], + [ + -112.123161, + 46.921857 + ], + [ + -112.12174, + 46.920823 + ], + [ + -112.121416, + 46.920602 + ], + [ + -112.120977, + 46.920179 + ], + [ + -112.120697, + 46.919775 + ], + [ + -112.120503, + 46.919327 + ], + [ + -112.120322, + 46.918471 + ], + [ + -112.119667, + 46.915666 + ], + [ + -112.11939, + 46.915074 + ], + [ + -112.119062, + 46.914644 + ], + [ + -112.118506, + 46.91421 + ], + [ + -112.116708, + 46.913328 + ], + [ + -112.116193, + 46.912968 + ], + [ + -112.115472, + 46.912187 + ], + [ + -112.115356, + 46.911933 + ], + [ + -112.115279, + 46.911728 + ], + [ + -112.115241, + 46.911454 + ], + [ + -112.11523, + 46.911175 + ], + [ + -112.115266, + 46.910915 + ], + [ + -112.115368, + 46.910602 + ], + [ + -112.115446, + 46.910438 + ], + [ + -112.115662, + 46.910084 + ], + [ + -112.11604, + 46.909673 + ], + [ + -112.119395, + 46.907257 + ], + [ + -112.119896, + 46.906695 + ], + [ + -112.120633, + 46.90538 + ], + [ + -112.120979, + 46.904986 + ], + [ + -112.122506, + 46.903673 + ], + [ + -112.12294, + 46.903177 + ], + [ + -112.123172, + 46.902727 + ], + [ + -112.123344, + 46.902186 + ], + [ + -112.12337, + 46.901665 + ], + [ + -112.12326, + 46.90114 + ], + [ + -112.123004, + 46.900542 + ], + [ + -112.122296, + 46.899463 + ], + [ + -112.118791, + 46.893932 + ], + [ + -112.118077, + 46.892887 + ], + [ + -112.117488, + 46.892253 + ], + [ + -112.11672, + 46.891638 + ], + [ + -112.11608, + 46.891253 + ], + [ + -112.114112, + 46.89021 + ], + [ + -112.110716, + 46.888379 + ], + [ + -112.110338, + 46.888159 + ], + [ + -112.106096, + 46.885885 + ], + [ + -112.101398, + 46.88336 + ], + [ + -112.094609, + 46.879651 + ], + [ + -112.0931, + 46.878959 + ], + [ + -112.091311, + 46.878288 + ], + [ + -112.089958, + 46.877867 + ], + [ + -112.088521, + 46.877511 + ], + [ + -112.069016, + 46.872724 + ], + [ + -112.049279, + 46.867857 + ], + [ + -112.047103, + 46.867189 + ], + [ + -112.044993, + 46.866382 + ], + [ + -112.043719, + 46.865827 + ], + [ + -112.042541, + 46.865241 + ], + [ + -112.040586, + 46.864168 + ], + [ + -112.039263, + 46.863298 + ], + [ + -112.037988, + 46.862365 + ], + [ + -112.036738, + 46.86133 + ], + [ + -112.014076, + 46.842104 + ], + [ + -112.012788, + 46.840941 + ], + [ + -112.011749, + 46.839918 + ], + [ + -112.010445, + 46.83844 + ], + [ + -112.009025, + 46.83667 + ], + [ + -112.007922, + 46.83499 + ], + [ + -112.007123, + 46.833605 + ], + [ + -112.006361, + 46.832073 + ], + [ + -112.005882, + 46.830963 + ], + [ + -112.003109, + 46.824179 + ], + [ + -112.002795, + 46.823308 + ], + [ + -112.001559, + 46.820272 + ], + [ + -112.001405, + 46.819943 + ], + [ + -112.001005, + 46.818846 + ], + [ + -112.000667, + 46.817632 + ], + [ + -112.000578, + 46.816809 + ], + [ + -112.000493, + 46.815794 + ], + [ + -112.000516, + 46.814928 + ], + [ + -112.000693, + 46.813761 + ], + [ + -112.001162, + 46.812127 + ], + [ + -112.001628, + 46.811112 + ], + [ + -112.002462, + 46.809713 + ], + [ + -112.003317, + 46.808598 + ], + [ + -112.004049, + 46.80782 + ], + [ + -112.005118, + 46.806834 + ], + [ + -112.006592, + 46.805739 + ], + [ + -112.028016, + 46.792156 + ], + [ + -112.029741, + 46.790912 + ], + [ + -112.030745, + 46.79008 + ], + [ + -112.031484, + 46.78938 + ], + [ + -112.032257, + 46.788498 + ], + [ + -112.033266, + 46.787176 + ], + [ + -112.033873, + 46.786179 + ], + [ + -112.034356, + 46.785153 + ], + [ + -112.03474, + 46.784222 + ], + [ + -112.035041, + 46.783106 + ], + [ + -112.035281, + 46.78179 + ], + [ + -112.035332, + 46.780429 + ], + [ + -112.035162, + 46.778932 + ], + [ + -112.034994, + 46.7781 + ], + [ + -112.034623, + 46.77676 + ], + [ + -112.031439, + 46.767593 + ], + [ + -112.030872, + 46.766116 + ], + [ + -112.03058, + 46.765566 + ], + [ + -112.0298, + 46.76452 + ], + [ + -112.029051, + 46.763776 + ], + [ + -112.027625, + 46.762715 + ], + [ + -112.021142, + 46.759474 + ], + [ + -112.019784, + 46.758674 + ], + [ + -112.018427, + 46.757701 + ], + [ + -112.017026, + 46.756401 + ], + [ + -112.01646, + 46.75581 + ], + [ + -112.015787, + 46.754949 + ], + [ + -112.015034, + 46.753726 + ], + [ + -112.014675, + 46.752957 + ], + [ + -112.014369, + 46.752178 + ], + [ + -112.014113, + 46.751252 + ], + [ + -112.013978, + 46.7503 + ], + [ + -112.013965, + 46.748917 + ], + [ + -112.01407, + 46.747974 + ], + [ + -112.014425, + 46.74657 + ], + [ + -112.017111, + 46.737855 + ], + [ + -112.017375, + 46.736784 + ], + [ + -112.017607, + 46.735355 + ], + [ + -112.017673, + 46.734409 + ], + [ + -112.017685, + 46.733581 + ], + [ + -112.017588, + 46.732104 + ], + [ + -112.017413, + 46.730961 + ], + [ + -112.016851, + 46.728893 + ], + [ + -112.016052, + 46.726997 + ], + [ + -112.015229, + 46.725474 + ], + [ + -112.014031, + 46.723297 + ], + [ + -112.013406, + 46.721963 + ], + [ + -112.012932, + 46.720654 + ], + [ + -112.012536, + 46.719097 + ], + [ + -112.012339, + 46.717599 + ], + [ + -112.012283, + 46.716345 + ], + [ + -112.012185, + 46.707222 + ], + [ + -112.012075, + 46.70024 + ], + [ + -112.011602, + 46.660701 + ], + [ + -112.011601, + 46.660313 + ], + [ + -112.011436, + 46.648193 + ], + [ + -112.011441, + 46.648028 + ], + [ + -112.011427, + 46.646569 + ], + [ + -112.011246, + 46.631754 + ], + [ + -112.011146, + 46.621062 + ], + [ + -112.011132, + 46.619553 + ], + [ + -112.01109, + 46.616805 + ], + [ + -112.011059, + 46.614798 + ], + [ + -112.011048, + 46.61406 + ], + [ + -112.011037, + 46.613709 + ], + [ + -112.010993, + 46.613319 + ], + [ + -112.010941, + 46.613077 + ], + [ + -112.010877, + 46.612674 + ], + [ + -112.010838, + 46.612474 + ], + [ + -112.010746, + 46.61207 + ], + [ + -112.01064, + 46.611666 + ], + [ + -112.010587, + 46.611464 + ], + [ + -112.010508, + 46.611263 + ], + [ + -112.010314, + 46.610728 + ], + [ + -112.010256, + 46.610545 + ], + [ + -112.010198, + 46.610369 + ], + [ + -112.009915, + 46.609824 + ], + [ + -112.009739, + 46.609444 + ], + [ + -112.009564, + 46.609128 + ], + [ + -112.009295, + 46.608718 + ], + [ + -112.006524, + 46.603944 + ], + [ + -112.003906, + 46.599455 + ], + [ + -112.002681, + 46.597363 + ], + [ + -112.001205, + 46.594784 + ], + [ + -112, + 46.592799 + ], + [ + -111.999632, + 46.592286 + ], + [ + -111.999301, + 46.591861 + ], + [ + -111.998522, + 46.590983 + ], + [ + -111.99828, + 46.590699 + ], + [ + -111.997972, + 46.590398 + ], + [ + -111.996867, + 46.589396 + ], + [ + -111.996488, + 46.589096 + ], + [ + -111.995735, + 46.58854 + ], + [ + -111.988743, + 46.583855 + ], + [ + -111.983795, + 46.580551 + ], + [ + -111.98049, + 46.578347 + ], + [ + -111.978312, + 46.576892 + ], + [ + -111.976196, + 46.575478 + ], + [ + -111.970612, + 46.571744 + ], + [ + -111.969019, + 46.570651 + ], + [ + -111.966637, + 46.569071 + ], + [ + -111.957631, + 46.563066 + ], + [ + -111.956867, + 46.562459 + ], + [ + -111.956078, + 46.56178 + ], + [ + -111.955528, + 46.561278 + ], + [ + -111.95503, + 46.560765 + ], + [ + -111.954464, + 46.560133 + ], + [ + -111.953992, + 46.559508 + ], + [ + -111.953623, + 46.558994 + ], + [ + -111.953365, + 46.558587 + ], + [ + -111.953022, + 46.558003 + ], + [ + -111.95261, + 46.557224 + ], + [ + -111.951443, + 46.55468 + ], + [ + -111.946695, + 46.544203 + ], + [ + -111.946304, + 46.54331 + ], + [ + -111.945744, + 46.542172 + ], + [ + -111.945185, + 46.540831 + ], + [ + -111.944611, + 46.539567 + ], + [ + -111.943999, + 46.538252 + ], + [ + -111.943392, + 46.536869 + ], + [ + -111.941186, + 46.532081 + ], + [ + -111.940903, + 46.53142 + ], + [ + -111.940559, + 46.530629 + ], + [ + -111.940379, + 46.530109 + ], + [ + -111.940293, + 46.529684 + ], + [ + -111.940268, + 46.529241 + ], + [ + -111.940319, + 46.528857 + ], + [ + -111.940422, + 46.528432 + ], + [ + -111.940568, + 46.528025 + ], + [ + -111.94074, + 46.527676 + ], + [ + -111.940971, + 46.527322 + ], + [ + -111.941246, + 46.527003 + ], + [ + -111.941667, + 46.526619 + ], + [ + -111.943134, + 46.525497 + ], + [ + -111.943589, + 46.525125 + ], + [ + -111.94401, + 46.524718 + ], + [ + -111.944344, + 46.524346 + ], + [ + -111.944662, + 46.523974 + ], + [ + -111.944902, + 46.523625 + ], + [ + -111.945151, + 46.52323 + ], + [ + -111.9454, + 46.522775 + ], + [ + -111.945606, + 46.522326 + ], + [ + -111.945744, + 46.521966 + ], + [ + -111.945855, + 46.521511 + ], + [ + -111.947984, + 46.511742 + ], + [ + -111.948095, + 46.51137 + ], + [ + -111.948361, + 46.510661 + ], + [ + -111.949408, + 46.508074 + ], + [ + -111.952344, + 46.500837 + ], + [ + -111.952541, + 46.500393 + ], + [ + -111.952825, + 46.499944 + ], + [ + -111.953168, + 46.49946 + ], + [ + -111.953494, + 46.499105 + ], + [ + -111.953932, + 46.498775 + ], + [ + -111.954764, + 46.49819 + ], + [ + -111.958575, + 46.495909 + ], + [ + -111.959245, + 46.495501 + ], + [ + -111.960052, + 46.495017 + ], + [ + -111.961021, + 46.494414 + ], + [ + -111.961871, + 46.493912 + ], + [ + -111.962729, + 46.493415 + ], + [ + -111.963579, + 46.492825 + ], + [ + -111.964025, + 46.4925 + ], + [ + -111.964661, + 46.492015 + ], + [ + -111.965124, + 46.491625 + ], + [ + -111.965656, + 46.491123 + ], + [ + -111.966369, + 46.49042 + ], + [ + -111.96709, + 46.489651 + ], + [ + -111.976325, + 46.479522 + ], + [ + -111.976891, + 46.478848 + ], + [ + -111.977312, + 46.47834 + ], + [ + -111.977733, + 46.477808 + ], + [ + -111.977973, + 46.477465 + ], + [ + -111.978127, + 46.477211 + ], + [ + -111.978282, + 46.476974 + ], + [ + -111.97884, + 46.475928 + ], + [ + -111.979217, + 46.475042 + ], + [ + -111.980033, + 46.473044 + ], + [ + -111.980271, + 46.472374 + ], + [ + -111.980435, + 46.471976 + ], + [ + -111.980677, + 46.471349 + ], + [ + -111.980952, + 46.470648 + ], + [ + -111.981239, + 46.4699 + ], + [ + -111.981493, + 46.46921 + ], + [ + -111.981736, + 46.468592 + ], + [ + -111.981874, + 46.468256 + ], + [ + -111.982316, + 46.467018 + ], + [ + -111.982732, + 46.465939 + ], + [ + -111.982851, + 46.465572 + ], + [ + -111.983251, + 46.464294 + ], + [ + -111.983315, + 46.464025 + ], + [ + -111.983475, + 46.463313 + ], + [ + -111.983818, + 46.462054 + ], + [ + -111.98424, + 46.460487 + ], + [ + -111.985346, + 46.456259 + ], + [ + -111.985844, + 46.45432 + ], + [ + -111.986814, + 46.450701 + ], + [ + -111.986994, + 46.449938 + ], + [ + -111.987251, + 46.449004 + ], + [ + -111.987543, + 46.4483 + ], + [ + -111.987809, + 46.447709 + ], + [ + -111.988255, + 46.446833 + ], + [ + -111.990024, + 46.443882 + ], + [ + -111.990719, + 46.44254 + ], + [ + -111.99283, + 46.438169 + ], + [ + -111.995886, + 46.431816 + ], + [ + -111.996143, + 46.431165 + ], + [ + -111.996341, + 46.430644 + ], + [ + -111.996598, + 46.42984 + ], + [ + -111.996753, + 46.429213 + ], + [ + -111.99689, + 46.428609 + ], + [ + -111.997405, + 46.425385 + ], + [ + -111.997642, + 46.424314 + ], + [ + -111.997932, + 46.423545 + ], + [ + -111.998107, + 46.423114 + ], + [ + -111.99835, + 46.422586 + ], + [ + -111.998575, + 46.422164 + ], + [ + -111.998884, + 46.421653 + ], + [ + -111.999228, + 46.421145 + ], + [ + -111.999447, + 46.420848 + ], + [ + -111.999923, + 46.420267 + ], + [ + -112.000156, + 46.42 + ], + [ + -112.000433, + 46.41971 + ], + [ + -112.00089, + 46.419258 + ], + [ + -112.001482, + 46.418746 + ], + [ + -112.002113, + 46.418226 + ], + [ + -112.00272, + 46.417745 + ], + [ + -112.002961, + 46.417554 + ], + [ + -112.003548, + 46.417078 + ], + [ + -112.004211, + 46.41654 + ], + [ + -112.004746, + 46.416099 + ], + [ + -112.005461, + 46.41553 + ], + [ + -112.005985, + 46.415112 + ], + [ + -112.006394, + 46.414775 + ], + [ + -112.006854, + 46.414405 + ], + [ + -112.007245, + 46.4141 + ], + [ + -112.00765, + 46.413758 + ], + [ + -112.00797, + 46.413501 + ], + [ + -112.008169, + 46.413338 + ], + [ + -112.008593, + 46.412997 + ], + [ + -112.009014, + 46.412645 + ], + [ + -112.009385, + 46.412341 + ], + [ + -112.009697, + 46.412025 + ], + [ + -112.010255, + 46.411528 + ], + [ + -112.010946, + 46.410853 + ], + [ + -112.011431, + 46.410352 + ], + [ + -112.011895, + 46.409867 + ], + [ + -112.012165, + 46.409569 + ], + [ + -112.012675, + 46.408992 + ], + [ + -112.013067, + 46.408517 + ], + [ + -112.013404, + 46.408107 + ], + [ + -112.013911, + 46.407447 + ], + [ + -112.014218, + 46.407046 + ], + [ + -112.014492, + 46.406653 + ], + [ + -112.015033, + 46.405845 + ], + [ + -112.01524, + 46.405542 + ], + [ + -112.015368, + 46.405329 + ], + [ + -112.015741, + 46.40471 + ], + [ + -112.015972, + 46.404308 + ], + [ + -112.016318, + 46.403688 + ], + [ + -112.016624, + 46.403056 + ], + [ + -112.01703, + 46.402204 + ], + [ + -112.017522, + 46.401159 + ], + [ + -112.017917, + 46.400311 + ], + [ + -112.019197, + 46.397512 + ], + [ + -112.019961, + 46.395938 + ], + [ + -112.020503, + 46.394858 + ], + [ + -112.020846, + 46.394173 + ], + [ + -112.021172, + 46.393579 + ], + [ + -112.021321, + 46.393351 + ], + [ + -112.021496, + 46.393063 + ], + [ + -112.021714, + 46.392713 + ], + [ + -112.021925, + 46.392391 + ], + [ + -112.022307, + 46.391799 + ], + [ + -112.022576, + 46.391431 + ], + [ + -112.02269, + 46.391255 + ], + [ + -112.022776, + 46.391138 + ], + [ + -112.023072, + 46.390745 + ], + [ + -112.023396, + 46.390333 + ], + [ + -112.023636, + 46.390016 + ], + [ + -112.02407, + 46.389472 + ], + [ + -112.02447, + 46.388962 + ], + [ + -112.025293, + 46.387893 + ], + [ + -112.025518, + 46.387587 + ], + [ + -112.025835, + 46.387153 + ], + [ + -112.02604, + 46.386874 + ], + [ + -112.026296, + 46.386489 + ], + [ + -112.026502, + 46.386192 + ], + [ + -112.026698, + 46.385898 + ], + [ + -112.027204, + 46.385069 + ], + [ + -112.027659, + 46.384252 + ], + [ + -112.027743, + 46.384088 + ], + [ + -112.0278, + 46.383963 + ], + [ + -112.02782, + 46.383925 + ], + [ + -112.027998, + 46.383561 + ], + [ + -112.028106, + 46.383379 + ], + [ + -112.028359, + 46.382926 + ], + [ + -112.028737, + 46.382022 + ], + [ + -112.029617, + 46.379591 + ], + [ + -112.030115, + 46.378271 + ], + [ + -112.030424, + 46.377365 + ], + [ + -112.030767, + 46.376572 + ], + [ + -112.031059, + 46.375944 + ], + [ + -112.033059, + 46.372077 + ], + [ + -112.033626, + 46.37091 + ], + [ + -112.033917, + 46.370342 + ], + [ + -112.034252, + 46.369714 + ], + [ + -112.034492, + 46.369293 + ], + [ + -112.03481, + 46.368766 + ], + [ + -112.035136, + 46.368298 + ], + [ + -112.035445, + 46.367848 + ], + [ + -112.03584, + 46.367386 + ], + [ + -112.036295, + 46.366877 + ], + [ + -112.036879, + 46.366249 + ], + [ + -112.043015, + 46.359532 + ], + [ + -112.043436, + 46.359053 + ], + [ + -112.043754, + 46.358638 + ], + [ + -112.044011, + 46.358283 + ], + [ + -112.044234, + 46.357927 + ], + [ + -112.044475, + 46.357501 + ], + [ + -112.044698, + 46.357062 + ], + [ + -112.044852, + 46.356719 + ], + [ + -112.044972, + 46.356357 + ], + [ + -112.045093, + 46.355972 + ], + [ + -112.045204, + 46.355534 + ], + [ + -112.045281, + 46.355173 + ], + [ + -112.04535, + 46.354693 + ], + [ + -112.045384, + 46.354284 + ], + [ + -112.045376, + 46.353828 + ], + [ + -112.045359, + 46.353206 + ], + [ + -112.045058, + 46.350658 + ], + [ + -112.045032, + 46.350072 + ], + [ + -112.045075, + 46.349545 + ], + [ + -112.045178, + 46.349154 + ], + [ + -112.045317, + 46.348787 + ], + [ + -112.045481, + 46.348449 + ], + [ + -112.045687, + 46.348135 + ], + [ + -112.04591, + 46.347851 + ], + [ + -112.046202, + 46.347519 + ], + [ + -112.048562, + 46.345392 + ], + [ + -112.048862, + 46.34509 + ], + [ + -112.049146, + 46.34477 + ], + [ + -112.04936, + 46.344467 + ], + [ + -112.04954, + 46.344153 + ], + [ + -112.049738, + 46.343721 + ], + [ + -112.049849, + 46.343241 + ], + [ + -112.049884, + 46.343028 + ], + [ + -112.049892, + 46.342755 + ], + [ + -112.049884, + 46.3424 + ], + [ + -112.049806, + 46.341931 + ], + [ + -112.049396, + 46.34035 + ], + [ + -112.049218, + 46.339673 + ], + [ + -112.049159, + 46.33933 + ], + [ + -112.049143, + 46.339002 + ], + [ + -112.049168, + 46.338597 + ], + [ + -112.049229, + 46.338284 + ], + [ + -112.049292, + 46.338051 + ], + [ + -112.049341, + 46.337839 + ], + [ + -112.049439, + 46.337616 + ], + [ + -112.049559, + 46.337404 + ], + [ + -112.0497, + 46.337162 + ], + [ + -112.049936, + 46.33687 + ], + [ + -112.05015, + 46.336595 + ], + [ + -112.054836, + 46.331763 + ], + [ + -112.055497, + 46.33117 + ], + [ + -112.055875, + 46.33085 + ], + [ + -112.056372, + 46.33053 + ], + [ + -112.05687, + 46.330263 + ], + [ + -112.057445, + 46.330044 + ], + [ + -112.058132, + 46.329789 + ], + [ + -112.060261, + 46.329273 + ], + [ + -112.060879, + 46.329137 + ], + [ + -112.061445, + 46.328959 + ], + [ + -112.061994, + 46.328752 + ], + [ + -112.062561, + 46.32845 + ], + [ + -112.06317, + 46.3281 + ], + [ + -112.063625, + 46.327786 + ], + [ + -112.064054, + 46.327371 + ], + [ + -112.064466, + 46.326891 + ], + [ + -112.06523, + 46.325741 + ], + [ + -112.065677, + 46.325125 + ], + [ + -112.066028, + 46.324674 + ], + [ + -112.06638, + 46.324318 + ], + [ + -112.066904, + 46.323868 + ], + [ + -112.067505, + 46.323501 + ], + [ + -112.06826, + 46.323109 + ], + [ + -112.069642, + 46.322445 + ], + [ + -112.070509, + 46.322007 + ], + [ + -112.071195, + 46.321663 + ], + [ + -112.071728, + 46.321378 + ], + [ + -112.07238, + 46.320958 + ], + [ + -112.073067, + 46.320519 + ], + [ + -112.073762, + 46.320045 + ], + [ + -112.074277, + 46.319582 + ], + [ + -112.074732, + 46.319138 + ], + [ + -112.075169, + 46.318705 + ], + [ + -112.075599, + 46.318189 + ], + [ + -112.076053, + 46.317626 + ], + [ + -112.076371, + 46.317182 + ], + [ + -112.076732, + 46.316589 + ], + [ + -112.077058, + 46.315949 + ], + [ + -112.077616, + 46.31452 + ], + [ + -112.077985, + 46.313459 + ], + [ + -112.078268, + 46.312795 + ], + [ + -112.078491, + 46.31232 + ], + [ + -112.0788, + 46.311751 + ], + [ + -112.079212, + 46.31117 + ], + [ + -112.079718, + 46.310435 + ], + [ + -112.0808, + 46.308627 + ], + [ + -112.081126, + 46.30801 + ], + [ + -112.081375, + 46.307316 + ], + [ + -112.081512, + 46.306724 + ], + [ + -112.081607, + 46.306131 + ], + [ + -112.081735, + 46.304998 + ], + [ + -112.081856, + 46.304358 + ], + [ + -112.082079, + 46.303688 + ], + [ + -112.082319, + 46.303172 + ], + [ + -112.082594, + 46.302692 + ], + [ + -112.082946, + 46.302205 + ], + [ + -112.083306, + 46.301814 + ], + [ + -112.083804, + 46.301334 + ], + [ + -112.08447, + 46.300831 + ], + [ + -112.085263, + 46.300355 + ], + [ + -112.086027, + 46.299964 + ], + [ + -112.089752, + 46.298446 + ], + [ + -112.090979, + 46.297859 + ], + [ + -112.091958, + 46.297337 + ], + [ + -112.092799, + 46.296756 + ], + [ + -112.093486, + 46.296287 + ], + [ + -112.094104, + 46.295694 + ], + [ + -112.09473, + 46.295036 + ], + [ + -112.095159, + 46.294538 + ], + [ + -112.09558, + 46.293992 + ], + [ + -112.09594, + 46.293381 + ], + [ + -112.096445, + 46.292397 + ], + [ + -112.096685, + 46.291614 + ], + [ + -112.09702, + 46.290422 + ], + [ + -112.097449, + 46.288406 + ], + [ + -112.097724, + 46.287409 + ], + [ + -112.098136, + 46.286312 + ], + [ + -112.099116, + 46.284397 + ], + [ + -112.099274, + 46.284063 + ], + [ + -112.10053, + 46.281349 + ], + [ + -112.101118, + 46.280084 + ], + [ + -112.102891, + 46.276318 + ], + [ + -112.104027, + 46.273935 + ], + [ + -112.104859, + 46.272141 + ], + [ + -112.105342, + 46.271125 + ], + [ + -112.106274, + 46.269146 + ], + [ + -112.107087, + 46.267404 + ], + [ + -112.111234, + 46.258546 + ], + [ + -112.112659, + 46.255466 + ], + [ + -112.114521, + 46.251525 + ], + [ + -112.114976, + 46.250676 + ], + [ + -112.115508, + 46.249899 + ], + [ + -112.115937, + 46.249329 + ], + [ + -112.116633, + 46.248581 + ], + [ + -112.117748, + 46.247554 + ], + [ + -112.11925, + 46.246504 + ], + [ + -112.12022, + 46.245934 + ], + [ + -112.120967, + 46.245566 + ], + [ + -112.121954, + 46.245133 + ], + [ + -112.124992, + 46.244052 + ], + [ + -112.13288, + 46.241298 + ], + [ + -112.133387, + 46.24112 + ], + [ + -112.138622, + 46.239291 + ], + [ + -112.145034, + 46.237065 + ], + [ + -112.146141, + 46.236745 + ], + [ + -112.147008, + 46.236519 + ], + [ + -112.147806, + 46.236394 + ], + [ + -112.148459, + 46.236305 + ], + [ + -112.149265, + 46.236246 + ], + [ + -112.150089, + 46.236222 + ], + [ + -112.151042, + 46.236246 + ], + [ + -112.151883, + 46.236317 + ], + [ + -112.152699, + 46.236436 + ], + [ + -112.153471, + 46.236584 + ], + [ + -112.154474, + 46.236837 + ], + [ + -112.15899, + 46.238152 + ], + [ + -112.160595, + 46.238543 + ], + [ + -112.162483, + 46.238947 + ], + [ + -112.163367, + 46.23922 + ], + [ + -112.164054, + 46.239529 + ], + [ + -112.164698, + 46.239897 + ], + [ + -112.165273, + 46.24033 + ], + [ + -112.166844, + 46.241642 + ], + [ + -112.167307, + 46.241963 + ], + [ + -112.1685, + 46.242669 + ], + [ + -112.169144, + 46.243085 + ], + [ + -112.169659, + 46.24356 + ], + [ + -112.170912, + 46.244966 + ], + [ + -112.171367, + 46.245364 + ], + [ + -112.172131, + 46.245898 + ], + [ + -112.173204, + 46.246522 + ], + [ + -112.174276, + 46.247169 + ], + [ + -112.174817, + 46.24762 + ], + [ + -112.175298, + 46.24816 + ], + [ + -112.175555, + 46.248587 + ], + [ + -112.17577, + 46.248973 + ], + [ + -112.175924, + 46.249424 + ], + [ + -112.176336, + 46.250552 + ], + [ + -112.176517, + 46.25092 + ], + [ + -112.17674, + 46.251276 + ], + [ + -112.176997, + 46.251626 + ], + [ + -112.177418, + 46.252083 + ], + [ + -112.177787, + 46.252344 + ], + [ + -112.178165, + 46.252617 + ], + [ + -112.180775, + 46.254129 + ], + [ + -112.181007, + 46.254269 + ], + [ + -112.183097, + 46.255454 + ], + [ + -112.183493, + 46.255702 + ], + [ + -112.184164, + 46.256171 + ], + [ + -112.184905, + 46.256737 + ], + [ + -112.185365, + 46.257141 + ], + [ + -112.185885, + 46.257562 + ], + [ + -112.186185, + 46.2578 + ], + [ + -112.186531, + 46.258043 + ], + [ + -112.186972, + 46.258275 + ], + [ + -112.187322, + 46.258422 + ], + [ + -112.187774, + 46.258598 + ], + [ + -112.188155, + 46.258726 + ], + [ + -112.188842, + 46.25893 + ], + [ + -112.190061, + 46.259233 + ], + [ + -112.194417, + 46.260296 + ], + [ + -112.194914, + 46.260425 + ], + [ + -112.197467, + 46.261049 + ], + [ + -112.198131, + 46.261215 + ], + [ + -112.198816, + 46.261348 + ], + [ + -112.200563, + 46.261639 + ], + [ + -112.2012, + 46.261735 + ], + [ + -112.201697, + 46.261796 + ], + [ + -112.202216, + 46.261831 + ], + [ + -112.202661, + 46.261847 + ], + [ + -112.203293, + 46.261844 + ], + [ + -112.203843, + 46.26181 + ], + [ + -112.204643, + 46.261713 + ], + [ + -112.205502, + 46.261541 + ], + [ + -112.206283, + 46.261328 + ], + [ + -112.207158, + 46.260978 + ], + [ + -112.20773, + 46.260725 + ], + [ + -112.208199, + 46.260464 + ], + [ + -112.209872, + 46.259361 + ], + [ + -112.210845, + 46.258723 + ], + [ + -112.211437, + 46.258407 + ], + [ + -112.21171, + 46.258294 + ], + [ + -112.211974, + 46.258207 + ], + [ + -112.212216, + 46.258142 + ], + [ + -112.212463, + 46.258092 + ], + [ + -112.212751, + 46.258048 + ], + [ + -112.213051, + 46.258024 + ], + [ + -112.213334, + 46.258019 + ], + [ + -112.213692, + 46.258035 + ], + [ + -112.213988, + 46.258065 + ], + [ + -112.214247, + 46.258108 + ], + [ + -112.214549, + 46.258186 + ], + [ + -112.21472, + 46.258241 + ], + [ + -112.214928, + 46.258313 + ], + [ + -112.21526, + 46.258456 + ], + [ + -112.215539, + 46.258605 + ], + [ + -112.215859, + 46.258826 + ], + [ + -112.216123, + 46.259059 + ], + [ + -112.216344, + 46.259307 + ], + [ + -112.216538, + 46.259564 + ], + [ + -112.217304, + 46.260578 + ], + [ + -112.217586, + 46.260888 + ], + [ + -112.217887, + 46.26118 + ], + [ + -112.218436, + 46.261654 + ], + [ + -112.219097, + 46.262058 + ], + [ + -112.219818, + 46.262508 + ], + [ + -112.220179, + 46.262823 + ], + [ + -112.220462, + 46.263203 + ], + [ + -112.220625, + 46.263654 + ], + [ + -112.220625, + 46.264105 + ], + [ + -112.220513, + 46.26455 + ], + [ + -112.220273, + 46.264918 + ], + [ + -112.21993, + 46.265238 + ], + [ + -112.219466, + 46.265558 + ], + [ + -112.218514, + 46.266039 + ], + [ + -112.218288, + 46.266167 + ], + [ + -112.218079, + 46.266291 + ], + [ + -112.217885, + 46.266411 + ], + [ + -112.217737, + 46.266539 + ], + [ + -112.217605, + 46.266696 + ], + [ + -112.217501, + 46.266818 + ], + [ + -112.217396, + 46.266989 + ], + [ + -112.21734, + 46.267123 + ], + [ + -112.217303, + 46.267314 + ], + [ + -112.217283, + 46.267445 + ], + [ + -112.217325, + 46.267714 + ], + [ + -112.217476, + 46.26824 + ], + [ + -112.217544, + 46.268438 + ], + [ + -112.217592, + 46.268538 + ], + [ + -112.217628, + 46.268615 + ], + [ + -112.217724, + 46.268751 + ], + [ + -112.217818, + 46.268858 + ], + [ + -112.217936, + 46.268959 + ], + [ + -112.21813, + 46.269104 + ], + [ + -112.218353, + 46.26922 + ], + [ + -112.218727, + 46.26937 + ], + [ + -112.219166, + 46.269489 + ], + [ + -112.219721, + 46.269609 + ], + [ + -112.220202, + 46.269698 + ], + [ + -112.220646, + 46.269797 + ], + [ + -112.220996, + 46.2699 + ], + [ + -112.22144, + 46.27005 + ], + [ + -112.222711, + 46.270631 + ], + [ + -112.223277, + 46.270851 + ], + [ + -112.22399, + 46.271017 + ], + [ + -112.224668, + 46.271076 + ], + [ + -112.225371, + 46.270993 + ], + [ + -112.227174, + 46.270608 + ], + [ + -112.227989, + 46.270507 + ], + [ + -112.22883, + 46.270519 + ], + [ + -112.229611, + 46.270726 + ], + [ + -112.232341, + 46.271693 + ], + [ + -112.232993, + 46.27186 + ], + [ + -112.233723, + 46.271966 + ], + [ + -112.234744, + 46.271978 + ], + [ + -112.239606, + 46.271805 + ], + [ + -112.242182, + 46.271693 + ], + [ + -112.246347, + 46.271502 + ], + [ + -112.246967, + 46.271459 + ], + [ + -112.247491, + 46.271415 + ], + [ + -112.247911, + 46.271379 + ], + [ + -112.248545, + 46.271312 + ], + [ + -112.249143, + 46.271217 + ], + [ + -112.250763, + 46.270938 + ], + [ + -112.251919, + 46.270715 + ], + [ + -112.254271, + 46.270264 + ], + [ + -112.255138, + 46.270086 + ], + [ + -112.255979, + 46.269973 + ], + [ + -112.256923, + 46.269854 + ], + [ + -112.257798, + 46.269753 + ], + [ + -112.258871, + 46.269706 + ], + [ + -112.259953, + 46.269694 + ], + [ + -112.260408, + 46.269688 + ], + [ + -112.260811, + 46.269688 + ], + [ + -112.265927, + 46.269838 + ], + [ + -112.266364, + 46.269845 + ], + [ + -112.268516, + 46.269903 + ], + [ + -112.26928, + 46.269923 + ], + [ + -112.269822, + 46.269932 + ], + [ + -112.270297, + 46.269936 + ], + [ + -112.270632, + 46.269932 + ], + [ + -112.271986, + 46.269899 + ], + [ + -112.272496, + 46.269882 + ], + [ + -112.272871, + 46.269875 + ], + [ + -112.273201, + 46.26988 + ], + [ + -112.273496, + 46.269893 + ], + [ + -112.273848, + 46.269921 + ], + [ + -112.274451, + 46.269986 + ], + [ + -112.275304, + 46.270084 + ], + [ + -112.275736, + 46.270129 + ], + [ + -112.276214, + 46.270171 + ], + [ + -112.276581, + 46.270192 + ], + [ + -112.276954, + 46.270201 + ], + [ + -112.277383, + 46.270195 + ], + [ + -112.277783, + 46.270179 + ], + [ + -112.278217, + 46.270151 + ], + [ + -112.278636, + 46.270112 + ], + [ + -112.27903, + 46.270058 + ], + [ + -112.279521, + 46.269977 + ], + [ + -112.280084, + 46.269869 + ], + [ + -112.280575, + 46.269771 + ], + [ + -112.281036, + 46.269673 + ], + [ + -112.281492, + 46.269558 + ], + [ + -112.281919, + 46.269443 + ], + [ + -112.282407, + 46.269304 + ], + [ + -112.28289, + 46.269153 + ], + [ + -112.283292, + 46.269013 + ], + [ + -112.283616, + 46.26889 + ], + [ + -112.283914, + 46.268764 + ], + [ + -112.284169, + 46.268638 + ], + [ + -112.284394, + 46.268516 + ], + [ + -112.284601, + 46.268394 + ], + [ + -112.284775, + 46.268275 + ], + [ + -112.284955, + 46.268131 + ], + [ + -112.285087, + 46.268013 + ], + [ + -112.285191, + 46.267897 + ], + [ + -112.285277, + 46.267793 + ], + [ + -112.285357, + 46.267683 + ], + [ + -112.28543, + 46.267542 + ], + [ + -112.285505, + 46.267379 + ], + [ + -112.285561, + 46.267208 + ], + [ + -112.285596, + 46.267049 + ], + [ + -112.28561, + 46.266897 + ], + [ + -112.285612, + 46.266763 + ], + [ + -112.285599, + 46.266613 + ], + [ + -112.285569, + 46.266448 + ], + [ + -112.285505, + 46.266261 + ], + [ + -112.28543, + 46.266096 + ], + [ + -112.285194, + 46.265664 + ], + [ + -112.285025, + 46.265406 + ], + [ + -112.284866, + 46.265152 + ], + [ + -112.284775, + 46.264974 + ], + [ + -112.284703, + 46.264813 + ], + [ + -112.284646, + 46.264655 + ], + [ + -112.284614, + 46.264507 + ], + [ + -112.284598, + 46.264379 + ], + [ + -112.284598, + 46.26421 + ], + [ + -112.284617, + 46.264062 + ], + [ + -112.284665, + 46.263899 + ], + [ + -112.284727, + 46.263728 + ], + [ + -112.284759, + 46.263669 + ], + [ + -112.284821, + 46.263548 + ], + [ + -112.284909, + 46.263418 + ], + [ + -112.284995, + 46.263313 + ], + [ + -112.285121, + 46.263177 + ], + [ + -112.285277, + 46.263038 + ], + [ + -112.285408, + 46.262932 + ], + [ + -112.285591, + 46.262814 + ], + [ + -112.285765, + 46.262716 + ], + [ + -112.285998, + 46.262614 + ], + [ + -112.286237, + 46.262523 + ], + [ + -112.286454, + 46.262454 + ], + [ + -112.286722, + 46.262397 + ], + [ + -112.286953, + 46.262358 + ], + [ + -112.287205, + 46.262334 + ], + [ + -112.287431, + 46.262324 + ], + [ + -112.287599, + 46.262324 + ], + [ + -112.287755, + 46.262332 + ], + [ + -112.287908, + 46.262343 + ], + [ + -112.28809, + 46.262371 + ], + [ + -112.288289, + 46.262408 + ], + [ + -112.288533, + 46.262469 + ], + [ + -112.28878, + 46.262545 + ], + [ + -112.289056, + 46.262641 + ], + [ + -112.28941, + 46.262779 + ], + [ + -112.292288, + 46.263915 + ], + [ + -112.295423, + 46.265141 + ], + [ + -112.295772, + 46.265276 + ], + [ + -112.296799, + 46.265681 + ], + [ + -112.297288, + 46.265857 + ], + [ + -112.29766, + 46.26597 + ], + [ + -112.297998, + 46.266064 + ], + [ + -112.298326, + 46.266135 + ], + [ + -112.298693, + 46.266202 + ], + [ + -112.29902, + 46.266252 + ], + [ + -112.299407, + 46.266294 + ], + [ + -112.299973, + 46.26635 + ], + [ + -112.301962, + 46.266518 + ], + [ + -112.303677, + 46.266665 + ], + [ + -112.30416, + 46.266715 + ], + [ + -112.304799, + 46.266799 + ], + [ + -112.305829, + 46.266965 + ], + [ + -112.307302, + 46.26725 + ], + [ + -112.307798, + 46.267339 + ], + [ + -112.308222, + 46.267413 + ], + [ + -112.308627, + 46.267476 + ], + [ + -112.308997, + 46.267518 + ], + [ + -112.309343, + 46.267554 + ], + [ + -112.309617, + 46.267578 + ], + [ + -112.309941, + 46.267591 + ], + [ + -112.310258, + 46.267602 + ], + [ + -112.310641, + 46.267611 + ], + [ + -112.310985, + 46.267613 + ], + [ + -112.311296, + 46.267607 + ], + [ + -112.311658, + 46.267591 + ], + [ + -112.312055, + 46.267565 + ], + [ + -112.312425, + 46.267535 + ], + [ + -112.312795, + 46.267492 + ], + [ + -112.313219, + 46.267435 + ], + [ + -112.313683, + 46.267359 + ], + [ + -112.31408, + 46.267281 + ], + [ + -112.314484, + 46.267191 + ], + [ + -112.314867, + 46.26709 + ], + [ + -112.315256, + 46.26698 + ], + [ + -112.315717, + 46.266837 + ], + [ + -112.316613, + 46.266561 + ], + [ + -112.317018, + 46.266437 + ], + [ + -112.317471, + 46.266313 + ], + [ + -112.317997, + 46.266179 + ], + [ + -112.318925, + 46.265949 + ], + [ + -112.320151, + 46.265632 + ], + [ + -112.321393, + 46.265313 + ], + [ + -112.325427, + 46.26428 + ], + [ + -112.326138, + 46.264095 + ], + [ + -112.326859, + 46.263917 + ], + [ + -112.327936, + 46.263635 + ], + [ + -112.330428, + 46.263002 + ], + [ + -112.333211, + 46.262287 + ], + [ + -112.334007, + 46.262079 + ], + [ + -112.335292, + 46.261753 + ], + [ + -112.335686, + 46.261652 + ], + [ + -112.336028, + 46.261559 + ], + [ + -112.33637, + 46.261454 + ], + [ + -112.33667, + 46.261355 + ], + [ + -112.336988, + 46.261243 + ], + [ + -112.337325, + 46.261115 + ], + [ + -112.33768, + 46.260971 + ], + [ + -112.338038, + 46.260813 + ], + [ + -112.338363, + 46.260662 + ], + [ + -112.338625, + 46.26053 + ], + [ + -112.338933, + 46.260366 + ], + [ + -112.340256, + 46.259429 + ], + [ + -112.341003, + 46.258829 + ], + [ + -112.341337, + 46.25845 + ], + [ + -112.341646, + 46.258088 + ], + [ + -112.342041, + 46.257506 + ], + [ + -112.342264, + 46.257085 + ], + [ + -112.342513, + 46.256616 + ], + [ + -112.342736, + 46.256052 + ], + [ + -112.343048, + 46.25519 + ], + [ + -112.343088, + 46.254628 + ], + [ + -112.343114, + 46.25404 + ], + [ + -112.342997, + 46.253333 + ], + [ + -112.342814, + 46.252527 + ], + [ + -112.342556, + 46.25188 + ], + [ + -112.341586, + 46.249939 + ], + [ + -112.341209, + 46.248971 + ], + [ + -112.340942, + 46.248152 + ], + [ + -112.340797, + 46.247393 + ], + [ + -112.340711, + 46.246752 + ], + [ + -112.340698, + 46.245956 + ], + [ + -112.340797, + 46.24509 + ], + [ + -112.340934, + 46.2443 + ], + [ + -112.341088, + 46.243617 + ], + [ + -112.341363, + 46.242745 + ], + [ + -112.343732, + 46.236132 + ], + [ + -112.343955, + 46.235443 + ], + [ + -112.344213, + 46.23479 + ], + [ + -112.34459, + 46.234178 + ], + [ + -112.345088, + 46.233513 + ], + [ + -112.346384, + 46.231827 + ], + [ + -112.346848, + 46.231067 + ], + [ + -112.347062, + 46.230402 + ], + [ + -112.347208, + 46.229666 + ], + [ + -112.34738, + 46.228247 + ], + [ + -112.347457, + 46.227659 + ], + [ + -112.347706, + 46.22662 + ], + [ + -112.348072, + 46.225486 + ], + [ + -112.348787, + 46.223592 + ], + [ + -112.349165, + 46.22241 + ], + [ + -112.349268, + 46.221798 + ], + [ + -112.349251, + 46.221163 + ], + [ + -112.348908, + 46.218621 + ], + [ + -112.348822, + 46.218081 + ], + [ + -112.348822, + 46.217392 + ], + [ + -112.348959, + 46.216762 + ], + [ + -112.34944, + 46.215301 + ], + [ + -112.349521, + 46.214586 + ], + [ + -112.349491, + 46.214013 + ], + [ + -112.349328, + 46.213591 + ], + [ + -112.349028, + 46.213021 + ], + [ + -112.348633, + 46.212492 + ], + [ + -112.348169, + 46.211999 + ], + [ + -112.34762, + 46.211619 + ], + [ + -112.346856, + 46.211156 + ], + [ + -112.345869, + 46.21058 + ], + [ + -112.3452, + 46.210051 + ], + [ + -112.344728, + 46.209576 + ], + [ + -112.343234, + 46.207925 + ], + [ + -112.342659, + 46.207307 + ], + [ + -112.341921, + 46.206677 + ], + [ + -112.340814, + 46.205816 + ], + [ + -112.34041, + 46.205465 + ], + [ + -112.340067, + 46.205085 + ], + [ + -112.339802, + 46.204693 + ], + [ + -112.339704, + 46.204467 + ], + [ + -112.339636, + 46.204269 + ], + [ + -112.339591, + 46.204027 + ], + [ + -112.339612, + 46.20382 + ], + [ + -112.339732, + 46.203256 + ], + [ + -112.340033, + 46.20262 + ], + [ + -112.340582, + 46.201913 + ], + [ + -112.341621, + 46.200885 + ], + [ + -112.342062, + 46.200298 + ], + [ + -112.342242, + 46.199944 + ], + [ + -112.342396, + 46.199584 + ], + [ + -112.342597, + 46.199091 + ], + [ + -112.342775, + 46.198631 + ], + [ + -112.343062, + 46.198034 + ], + [ + -112.343303, + 46.197541 + ], + [ + -112.343792, + 46.196904 + ], + [ + -112.344693, + 46.196127 + ], + [ + -112.345387, + 46.19542 + ], + [ + -112.345729, + 46.194938 + ], + [ + -112.345917, + 46.194643 + ], + [ + -112.346069, + 46.194349 + ], + [ + -112.346166, + 46.194045 + ], + [ + -112.346238, + 46.193697 + ], + [ + -112.34623, + 46.193103 + ], + [ + -112.345941, + 46.190673 + ], + [ + -112.345878, + 46.189902 + ], + [ + -112.345728, + 46.189213 + ], + [ + -112.345709, + 46.188344 + ], + [ + -112.345571, + 46.187533 + ], + [ + -112.345558, + 46.186912 + ], + [ + -112.345564, + 46.185992 + ], + [ + -112.345749, + 46.183453 + ], + [ + -112.346234, + 46.177623 + ], + [ + -112.346347, + 46.176821 + ], + [ + -112.346473, + 46.176275 + ], + [ + -112.34671, + 46.175728 + ], + [ + -112.347062, + 46.17511 + ], + [ + -112.347483, + 46.174486 + ], + [ + -112.34822, + 46.173702 + ], + [ + -112.349208, + 46.17291 + ], + [ + -112.3521, + 46.171121 + ], + [ + -112.352701, + 46.170843 + ], + [ + -112.353354, + 46.170627 + ], + [ + -112.354238, + 46.170443 + ], + [ + -112.355396, + 46.170378 + ], + [ + -112.356246, + 46.170461 + ], + [ + -112.358186, + 46.170764 + ], + [ + -112.359293, + 46.170788 + ], + [ + -112.360246, + 46.170669 + ], + [ + -112.361216, + 46.170425 + ], + [ + -112.362177, + 46.170093 + ], + [ + -112.362941, + 46.16973 + ], + [ + -112.363559, + 46.169296 + ], + [ + -112.364125, + 46.168743 + ], + [ + -112.364529, + 46.168119 + ], + [ + -112.365267, + 46.167103 + ], + [ + -112.365816, + 46.166663 + ], + [ + -112.3664, + 46.166336 + ], + [ + -112.367129, + 46.166098 + ], + [ + -112.367868, + 46.165967 + ], + [ + -112.368692, + 46.165944 + ], + [ + -112.371773, + 46.166039 + ], + [ + -112.372811, + 46.166015 + ], + [ + -112.37367, + 46.165902 + ], + [ + -112.374588, + 46.165706 + ], + [ + -112.375592, + 46.165379 + ], + [ + -112.376571, + 46.164951 + ], + [ + -112.377318, + 46.164529 + ], + [ + -112.378076, + 46.163952 + ], + [ + -112.378262, + 46.163762 + ], + [ + -112.378614, + 46.163364 + ], + [ + -112.378914, + 46.162965 + ], + [ + -112.379469, + 46.162169 + ], + [ + -112.382055, + 46.158245 + ], + [ + -112.384021, + 46.155308 + ], + [ + -112.385566, + 46.152959 + ], + [ + -112.387334, + 46.150272 + ], + [ + -112.388458, + 46.14862 + ], + [ + -112.389451, + 46.147108 + ], + [ + -112.391789, + 46.143594 + ], + [ + -112.398669, + 46.133222 + ], + [ + -112.400972, + 46.129712 + ], + [ + -112.4066, + 46.121302 + ], + [ + -112.407393, + 46.120004 + ], + [ + -112.408182, + 46.118582 + ], + [ + -112.408541, + 46.117899 + ], + [ + -112.409937, + 46.114817 + ], + [ + -112.411055, + 46.112333 + ], + [ + -112.412388, + 46.109365 + ], + [ + -112.413655, + 46.106653 + ], + [ + -112.414778, + 46.10418 + ], + [ + -112.415206, + 46.103314 + ], + [ + -112.415668, + 46.102487 + ], + [ + -112.415895, + 46.102106 + ], + [ + -112.416464, + 46.101176 + ], + [ + -112.417083, + 46.100254 + ], + [ + -112.418499, + 46.098356 + ], + [ + -112.418915, + 46.09769 + ], + [ + -112.419526, + 46.096677 + ], + [ + -112.420233, + 46.095398 + ], + [ + -112.422479, + 46.091058 + ], + [ + -112.424336, + 46.087469 + ], + [ + -112.429652, + 46.0772 + ], + [ + -112.429822, + 46.076884 + ], + [ + -112.431392, + 46.07384 + ], + [ + -112.436257, + 46.064391 + ], + [ + -112.436937, + 46.063074 + ], + [ + -112.438079, + 46.061044 + ], + [ + -112.438376, + 46.060532 + ], + [ + -112.438666, + 46.060066 + ], + [ + -112.43881, + 46.05984 + ], + [ + -112.439098, + 46.05943 + ], + [ + -112.43934, + 46.059064 + ], + [ + -112.439532, + 46.058774 + ], + [ + -112.440107, + 46.058002 + ], + [ + -112.44038, + 46.05765 + ], + [ + -112.441731, + 46.056019 + ], + [ + -112.443485, + 46.053949 + ], + [ + -112.447802, + 46.048851 + ], + [ + -112.45155, + 46.044489 + ], + [ + -112.452423, + 46.043435 + ], + [ + -112.452928, + 46.042858 + ], + [ + -112.453336, + 46.042363 + ], + [ + -112.453672, + 46.041989 + ], + [ + -112.454055, + 46.041551 + ], + [ + -112.454342, + 46.04125 + ], + [ + -112.454665, + 46.040886 + ], + [ + -112.456067, + 46.039558 + ], + [ + -112.457335, + 46.038587 + ], + [ + -112.457987, + 46.038059 + ], + [ + -112.458512, + 46.037625 + ], + [ + -112.458842, + 46.037329 + ], + [ + -112.459071, + 46.03709 + ], + [ + -112.459314, + 46.036842 + ], + [ + -112.459518, + 46.03659 + ], + [ + -112.459678, + 46.03639 + ], + [ + -112.4598, + 46.036215 + ], + [ + -112.459891, + 46.036045 + ], + [ + -112.460007, + 46.03582 + ], + [ + -112.460114, + 46.03551 + ], + [ + -112.460172, + 46.035281 + ], + [ + -112.460249, + 46.034999 + ], + [ + -112.460282, + 46.034713 + ], + [ + -112.460289, + 46.034622 + ], + [ + -112.460306, + 46.034393 + ], + [ + -112.46034, + 46.034001 + ], + [ + -112.460377, + 46.033494 + ], + [ + -112.460788, + 46.024225 + ], + [ + -112.460858, + 46.022999 + ], + [ + -112.461034, + 46.021707 + ], + [ + -112.461139, + 46.019417 + ], + [ + -112.461174, + 46.018182 + ], + [ + -112.461374, + 46.013939 + ], + [ + -112.461433, + 46.012326 + ], + [ + -112.461598, + 46.009767 + ], + [ + -112.46173, + 46.007706 + ], + [ + -112.461826, + 46.006592 + ], + [ + -112.461968, + 46.00602 + ], + [ + -112.462225, + 46.00538 + ], + [ + -112.462565, + 46.004722 + ], + [ + -112.463191, + 46.004036 + ], + [ + -112.464072, + 46.003225 + ], + [ + -112.465792, + 46.001872 + ], + [ + -112.466856, + 46.001037 + ], + [ + -112.469268, + 45.999189 + ], + [ + -112.469946, + 45.998682 + ], + [ + -112.470667, + 45.998003 + ], + [ + -112.47113, + 45.997502 + ], + [ + -112.47156, + 45.996917 + ], + [ + -112.471963, + 45.99622 + ], + [ + -112.473459, + 45.993424 + ], + [ + -112.474051, + 45.992464 + ], + [ + -112.474317, + 45.992004 + ], + [ + -112.475276, + 45.990233 + ], + [ + -112.475566, + 45.989642 + ], + [ + -112.476695, + 45.987673 + ], + [ + -112.477014, + 45.987068 + ], + [ + -112.477395, + 45.986399 + ], + [ + -112.477976, + 45.985327 + ], + [ + -112.478243, + 45.984818 + ], + [ + -112.478421, + 45.98455 + ], + [ + -112.478851, + 45.983744 + ], + [ + -112.479177, + 45.983218 + ], + [ + -112.479374, + 45.982981 + ], + [ + -112.479538, + 45.982795 + ], + [ + -112.47971, + 45.982636 + ], + [ + -112.479894, + 45.982492 + ], + [ + -112.480132, + 45.982326 + ], + [ + -112.48042, + 45.982142 + ], + [ + -112.480713, + 45.981993 + ], + [ + -112.481018, + 45.981862 + ], + [ + -112.481235, + 45.981784 + ], + [ + -112.481491, + 45.981708 + ], + [ + -112.481819, + 45.981612 + ], + [ + -112.482235, + 45.981526 + ], + [ + -112.482576, + 45.981485 + ], + [ + -112.482792, + 45.981468 + ], + [ + -112.483106, + 45.981448 + ], + [ + -112.484674, + 45.981411 + ], + [ + -112.485533, + 45.981393 + ], + [ + -112.486142, + 45.981346 + ], + [ + -112.486888, + 45.981343 + ], + [ + -112.488415, + 45.981329 + ], + [ + -112.48942, + 45.981323 + ], + [ + -112.489915, + 45.981311 + ], + [ + -112.490321, + 45.981291 + ], + [ + -112.491262, + 45.981187 + ], + [ + -112.492077, + 45.981092 + ], + [ + -112.492755, + 45.980966 + ], + [ + -112.49327, + 45.980829 + ], + [ + -112.494197, + 45.980567 + ], + [ + -112.495345, + 45.9802 + ], + [ + -112.496229, + 45.979974 + ], + [ + -112.496927, + 45.979831 + ], + [ + -112.497708, + 45.979756 + ], + [ + -112.4986, + 45.979744 + ], + [ + -112.499484, + 45.979774 + ], + [ + -112.500257, + 45.979863 + ], + [ + -112.501047, + 45.980042 + ], + [ + -112.501432, + 45.980146 + ], + [ + -112.501772, + 45.980251 + ], + [ + -112.502162, + 45.980391 + ], + [ + -112.502441, + 45.980505 + ], + [ + -112.502715, + 45.980622 + ], + [ + -112.503036, + 45.980793 + ], + [ + -112.503323, + 45.980946 + ], + [ + -112.503646, + 45.981153 + ], + [ + -112.503934, + 45.981351 + ], + [ + -112.504203, + 45.981566 + ], + [ + -112.504427, + 45.981757 + ], + [ + -112.504926, + 45.982217 + ], + [ + -112.505529, + 45.982793 + ], + [ + -112.505933, + 45.983132 + ], + [ + -112.506153, + 45.983296 + ], + [ + -112.506336, + 45.983431 + ], + [ + -112.506571, + 45.983586 + ], + [ + -112.506888, + 45.983789 + ], + [ + -112.507196, + 45.983956 + ], + [ + -112.507471, + 45.984097 + ], + [ + -112.507799, + 45.984272 + ], + [ + -112.508512, + 45.98456 + ], + [ + -112.508794, + 45.984651 + ], + [ + -112.50906, + 45.984738 + ], + [ + -112.509415, + 45.984842 + ], + [ + -112.509964, + 45.984998 + ], + [ + -112.512836, + 45.985714 + ], + [ + -112.514063, + 45.986044 + ], + [ + -112.515749, + 45.986501 + ], + [ + -112.516874, + 45.986847 + ], + [ + -112.529602, + 45.991803 + ], + [ + -112.530598, + 45.992131 + ], + [ + -112.531516, + 45.992333 + ], + [ + -112.5324, + 45.992476 + ], + [ + -112.533044, + 45.992536 + ], + [ + -112.533894, + 45.992542 + ], + [ + -112.538675, + 45.992548 + ], + [ + -112.539481, + 45.992542 + ], + [ + -112.544571, + 45.992548 + ], + [ + -112.54755, + 45.9925 + ], + [ + -112.549472, + 45.992518 + ], + [ + -112.552176, + 45.992548 + ], + [ + -112.553189, + 45.992614 + ], + [ + -112.554167, + 45.992739 + ], + [ + -112.555008, + 45.992942 + ], + [ + -112.559798, + 45.994337 + ], + [ + -112.560613, + 45.994587 + ], + [ + -112.561471, + 45.994951 + ], + [ + -112.562235, + 45.995404 + ], + [ + -112.562816, + 45.995834 + ], + [ + -112.563071, + 45.996064 + ], + [ + -112.563323, + 45.996326 + ], + [ + -112.563586, + 45.996638 + ], + [ + -112.563846, + 45.996975 + ], + [ + -112.564136, + 45.997384 + ], + [ + -112.564414, + 45.997764 + ], + [ + -112.565162, + 45.998934 + ], + [ + -112.565743, + 45.999683 + ], + [ + -112.566655, + 46.000955 + ], + [ + -112.567437, + 46.001903 + ], + [ + -112.56802, + 46.002517 + ], + [ + -112.568741, + 46.003096 + ], + [ + -112.569419, + 46.003525 + ], + [ + -112.570063, + 46.003859 + ], + [ + -112.570964, + 46.004318 + ], + [ + -112.571822, + 46.004693 + ], + [ + -112.572895, + 46.005009 + ], + [ + -112.573848, + 46.00523 + ], + [ + -112.574775, + 46.005379 + ], + [ + -112.575728, + 46.005463 + ], + [ + -112.577187, + 46.005504 + ], + [ + -112.577788, + 46.005522 + ], + [ + -112.582056, + 46.005676 + ], + [ + -112.594885, + 46.006166 + ], + [ + -112.604584, + 46.006524 + ], + [ + -112.605451, + 46.006619 + ], + [ + -112.607283, + 46.006843 + ], + [ + -112.610896, + 46.007381 + ], + [ + -112.611152, + 46.005948 + ], + [ + -112.61121, + 46.005792 + ], + [ + -112.611238, + 46.005609 + ], + [ + -112.608284, + 46.004266 + ], + [ + -112.607739, + 46.003921 + ], + [ + -112.607191, + 46.003516 + ], + [ + -112.606953, + 46.003377 + ], + [ + -112.606693, + 46.003274 + ], + [ + -112.606342, + 46.003193 + ], + [ + -112.606239, + 46.00317 + ], + [ + -112.604638, + 46.002827 + ], + [ + -112.603223, + 46.002511 + ], + [ + -112.603052, + 46.002473 + ], + [ + -112.60203, + 46.002278 + ], + [ + -112.601516, + 46.002219 + ], + [ + -112.601276, + 46.00221 + ], + [ + -112.600883, + 46.002212 + ], + [ + -112.600496, + 46.00223 + ], + [ + -112.600404, + 46.002208 + ], + [ + -112.60036, + 46.002173 + ], + [ + -112.600327, + 46.002117 + ], + [ + -112.600314, + 46.002059 + ], + [ + -112.600333, + 46.001927 + ], + [ + -112.600381, + 46.001853 + ], + [ + -112.60049, + 46.001777 + ], + [ + -112.600599, + 46.001745 + ], + [ + -112.600713, + 46.001737 + ], + [ + -112.600862, + 46.001739 + ], + [ + -112.601544, + 46.001798 + ], + [ + -112.601657, + 46.001792 + ], + [ + -112.601804, + 46.001767 + ], + [ + -112.601918, + 46.001724 + ], + [ + -112.602008, + 46.001673 + ], + [ + -112.602239, + 46.001528 + ], + [ + -112.602389, + 46.001412 + ], + [ + -112.602658, + 46.001185 + ], + [ + -112.60307, + 46.000822 + ], + [ + -112.603218, + 46.000656 + ], + [ + -112.603405, + 46.000474 + ], + [ + -112.60366, + 46.000513 + ], + [ + -112.603842, + 46.000532 + ], + [ + -112.604078, + 46.000549 + ], + [ + -112.604254, + 46.000547 + ], + [ + -112.605018, + 46.00043 + ], + [ + -112.605491, + 46.000395 + ], + [ + -112.605766, + 46.000402 + ], + [ + -112.606076, + 46.000466 + ], + [ + -112.606209, + 46.00049 + ], + [ + -112.606364, + 46.000494 + ], + [ + -112.606548, + 46.000466 + ], + [ + -112.607005, + 46.000359 + ], + [ + -112.607412, + 46.000312 + ], + [ + -112.611416, + 46.000299 + ], + [ + -112.611653, + 46.000242 + ], + [ + -112.611812, + 46.000145 + ], + [ + -112.611932, + 45.999965 + ], + [ + -112.611906, + 45.993731 + ], + [ + -112.611956, + 45.990322 + ], + [ + -112.611963, + 45.987384 + ], + [ + -112.611945, + 45.986839 + ], + [ + -112.611983, + 45.986517 + ], + [ + -112.612211, + 45.985826 + ], + [ + -112.612974, + 45.983191 + ], + [ + -112.613351, + 45.982047 + ], + [ + -112.613508, + 45.981723 + ], + [ + -112.613655, + 45.98152 + ], + [ + -112.613973, + 45.981284 + ], + [ + -112.61573, + 45.980235 + ], + [ + -112.61642, + 45.979923 + ], + [ + -112.617405, + 45.979519 + ], + [ + -112.618068, + 45.979213 + ], + [ + -112.618669, + 45.978865 + ], + [ + -112.620246, + 45.977619 + ], + [ + -112.620586, + 45.977289 + ], + [ + -112.621106, + 45.976592 + ], + [ + -112.622154, + 45.975079 + ], + [ + -112.622235, + 45.974699 + ], + [ + -112.622281, + 45.973317 + ], + [ + -112.622078, + 45.970234 + ], + [ + -112.619831, + 45.970225 + ], + [ + -112.614288, + 45.970203 + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -112.60660171508789, + 45.96021963947196 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -111.97265625, + 48.84302835299516 + ] + } + }, + { + "type": "Feature", + "properties": { + "stroke": "#f0f", + "stroke-width": 6 + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -111.901737, + 48.883161 + ], + [ + -111.901737, + 48.883161 + ], + [ + -111.878176, + 48.860393 + ], + [ + -111.867242, + 48.849753 + ], + [ + -111.866486, + 48.849013 + ], + [ + -111.865877, + 48.848301 + ], + [ + -111.86531, + 48.847533 + ], + [ + -111.864675, + 48.846613 + ], + [ + -111.86392, + 48.845195 + ], + [ + -111.863594, + 48.84437 + ], + [ + -111.863233, + 48.843167 + ], + [ + -111.863139, + 48.842738 + ], + [ + -111.863019, + 48.842026 + ], + [ + -111.86295, + 48.841071 + ], + [ + -111.862942, + 48.830326 + ], + [ + -111.862942, + 48.823285 + ], + [ + -111.86289, + 48.769261 + ], + [ + -111.862864, + 48.764515 + ], + [ + -111.862813, + 48.763474 + ], + [ + -111.862718, + 48.761743 + ], + [ + -111.861611, + 48.743809 + ], + [ + -111.861439, + 48.740289 + ], + [ + -111.861439, + 48.739949 + ], + [ + -111.861594, + 48.737176 + ], + [ + -111.862178, + 48.726719 + ], + [ + -111.862229, + 48.723792 + ], + [ + -111.862083, + 48.656639 + ], + [ + -111.8621, + 48.64979 + ], + [ + -111.861997, + 48.598701 + ], + [ + -111.86198, + 48.592185 + ], + [ + -111.86198, + 48.57272 + ], + [ + -111.861912, + 48.57163 + ], + [ + -111.861817, + 48.570494 + ], + [ + -111.861697, + 48.569205 + ], + [ + -111.860581, + 48.557657 + ], + [ + -111.860077, + 48.552231 + ], + [ + -111.859663, + 48.54801 + ], + [ + -111.859594, + 48.546805 + ], + [ + -111.859611, + 48.545322 + ], + [ + -111.859792, + 48.535383 + ], + [ + -111.8598, + 48.533888 + ], + [ + -111.859886, + 48.533121 + ], + [ + -111.860015, + 48.532581 + ], + [ + -111.860246, + 48.531939 + ], + [ + -111.860598, + 48.531387 + ], + [ + -111.860942, + 48.530899 + ], + [ + -111.861688, + 48.530109 + ], + [ + -111.866109, + 48.525755 + ], + [ + -111.875953, + 48.516192 + ], + [ + -111.876929, + 48.515247 + ], + [ + -111.877241, + 48.514954 + ], + [ + -111.879228, + 48.513021 + ], + [ + -111.879759, + 48.512467 + ], + [ + -111.88006, + 48.512124 + ], + [ + -111.880267, + 48.511881 + ], + [ + -111.88042, + 48.511679 + ], + [ + -111.880571, + 48.511473 + ], + [ + -111.88094, + 48.510956 + ], + [ + -111.881292, + 48.510376 + ], + [ + -111.881653, + 48.509733 + ], + [ + -111.881996, + 48.50904 + ], + [ + -111.882305, + 48.508346 + ], + [ + -111.882562, + 48.507572 + ], + [ + -111.882777, + 48.506828 + ], + [ + -111.882931, + 48.506134 + ], + [ + -111.883026, + 48.505588 + ], + [ + -111.883441, + 48.502992 + ], + [ + -111.883604, + 48.499975 + ], + [ + -111.883614, + 48.499767 + ], + [ + -111.883635, + 48.496433 + ], + [ + -111.883673, + 48.495815 + ], + [ + -111.883734, + 48.49503 + ], + [ + -111.883798, + 48.494396 + ], + [ + -111.883866, + 48.493802 + ], + [ + -111.883999, + 48.493 + ], + [ + -111.884209, + 48.492103 + ], + [ + -111.884377, + 48.49147 + ], + [ + -111.884557, + 48.490837 + ], + [ + -111.885112, + 48.489088 + ], + [ + -111.885489, + 48.48824 + ], + [ + -111.886605, + 48.485897 + ], + [ + -111.88682, + 48.485299 + ], + [ + -111.887034, + 48.484679 + ], + [ + -111.887197, + 48.484099 + ], + [ + -111.887389, + 48.483433 + ], + [ + -111.88747, + 48.482928 + ], + [ + -111.887522, + 48.482349 + ], + [ + -111.887575, + 48.481425 + ], + [ + -111.887554, + 48.480643 + ], + [ + -111.887506, + 48.480113 + ], + [ + -111.887418, + 48.479516 + ], + [ + -111.887265, + 48.478742 + ], + [ + -111.887056, + 48.477974 + ], + [ + -111.886845, + 48.47746 + ], + [ + -111.886472, + 48.476607 + ], + [ + -111.885635, + 48.474831 + ], + [ + -111.885441, + 48.474274 + ], + [ + -111.885165, + 48.473591 + ], + [ + -111.884897, + 48.472862 + ], + [ + -111.884674, + 48.47215 + ], + [ + -111.884502, + 48.471564 + ], + [ + -111.884279, + 48.470409 + ], + [ + -111.884082, + 48.46926 + ], + [ + -111.883953, + 48.468281 + ], + [ + -111.883906, + 48.467423 + ], + [ + -111.883878, + 48.46663 + ], + [ + -111.883976, + 48.454446 + ], + [ + -111.884028, + 48.447094 + ], + [ + -111.884036, + 48.443164 + ], + [ + -111.884023, + 48.441546 + ], + [ + -111.884017, + 48.440681 + ], + [ + -111.884026, + 48.43968 + ], + [ + -111.884018, + 48.438945 + ], + [ + -111.88402, + 48.438457 + ], + [ + -111.884058, + 48.438059 + ], + [ + -111.884092, + 48.43776 + ], + [ + -111.884134, + 48.437455 + ], + [ + -111.884195, + 48.437091 + ], + [ + -111.884275, + 48.436739 + ], + [ + -111.884339, + 48.436455 + ], + [ + -111.884422, + 48.436153 + ], + [ + -111.884528, + 48.435768 + ], + [ + -111.884674, + 48.435354 + ], + [ + -111.884745, + 48.435206 + ], + [ + -111.884871, + 48.43486 + ], + [ + -111.885003, + 48.434574 + ], + [ + -111.885207, + 48.434157 + ], + [ + -111.885417, + 48.433746 + ], + [ + -111.885596, + 48.433441 + ], + [ + -111.88582, + 48.433061 + ], + [ + -111.886029, + 48.43273 + ], + [ + -111.886203, + 48.432492 + ], + [ + -111.886412, + 48.432197 + ], + [ + -111.886586, + 48.431954 + ], + [ + -111.886816, + 48.431663 + ], + [ + -111.887079, + 48.431357 + ], + [ + -111.887401, + 48.430981 + ], + [ + -111.887774, + 48.430593 + ], + [ + -111.888127, + 48.430257 + ], + [ + -111.888437, + 48.429955 + ], + [ + -111.889099, + 48.429374 + ], + [ + -111.889756, + 48.428824 + ], + [ + -111.890912, + 48.427857 + ], + [ + -111.892165, + 48.426838 + ], + [ + -111.905659, + 48.415636 + ], + [ + -111.90626, + 48.415157 + ], + [ + -111.906861, + 48.41457 + ], + [ + -111.907333, + 48.414081 + ], + [ + -111.907814, + 48.413528 + ], + [ + -111.908406, + 48.412776 + ], + [ + -111.909015, + 48.411824 + ], + [ + -111.909633, + 48.410907 + ], + [ + -111.920752, + 48.392582 + ], + [ + -111.927417, + 48.381543 + ], + [ + -111.93346, + 48.371538 + ], + [ + -111.933846, + 48.37086 + ], + [ + -111.934235, + 48.370068 + ], + [ + -111.934546, + 48.369396 + ], + [ + -111.934939, + 48.368399 + ], + [ + -111.935227, + 48.367613 + ], + [ + -111.935586, + 48.366493 + ], + [ + -111.935831, + 48.365544 + ], + [ + -111.936026, + 48.364601 + ], + [ + -111.936138, + 48.363831 + ], + [ + -111.936258, + 48.362885 + ], + [ + -111.936438, + 48.360792 + ], + [ + -111.936415, + 48.329088 + ], + [ + -111.936407, + 48.310354 + ], + [ + -111.936413, + 48.303031 + ], + [ + -111.936412, + 48.300795 + ], + [ + -111.936402, + 48.300483 + ], + [ + -111.936381, + 48.271331 + ], + [ + -111.936384, + 48.26711 + ], + [ + -111.936382, + 48.259592 + ], + [ + -111.936296, + 48.241832 + ], + [ + -111.936359, + 48.224045 + ], + [ + -111.936352, + 48.223792 + ], + [ + -111.936325, + 48.223208 + ], + [ + -111.936251, + 48.222646 + ], + [ + -111.936138, + 48.222131 + ], + [ + -111.936009, + 48.221594 + ], + [ + -111.935863, + 48.221148 + ], + [ + -111.935674, + 48.220724 + ], + [ + -111.935554, + 48.220438 + ], + [ + -111.935323, + 48.219975 + ], + [ + -111.934809, + 48.219106 + ], + [ + -111.93372, + 48.217503 + ], + [ + -111.933233, + 48.216812 + ], + [ + -111.932738, + 48.21609 + ], + [ + -111.932429, + 48.215627 + ], + [ + -111.931294, + 48.214006 + ], + [ + -111.927397, + 48.208419 + ], + [ + -111.925603, + 48.205843 + ], + [ + -111.925208, + 48.205217 + ], + [ + -111.92491, + 48.204712 + ], + [ + -111.924771, + 48.204436 + ], + [ + -111.924661, + 48.204188 + ], + [ + -111.924567, + 48.203923 + ], + [ + -111.924475, + 48.203592 + ], + [ + -111.924434, + 48.203298 + ], + [ + -111.924418, + 48.202753 + ], + [ + -111.924413, + 48.20226 + ], + [ + -111.924452, + 48.201981 + ], + [ + -111.924528, + 48.20166 + ], + [ + -111.924607, + 48.201399 + ], + [ + -111.924686, + 48.201185 + ], + [ + -111.924808, + 48.200887 + ], + [ + -111.92494, + 48.200634 + ], + [ + -111.925143, + 48.200322 + ], + [ + -111.925478, + 48.199721 + ], + [ + -111.929307, + 48.193399 + ], + [ + -111.931749, + 48.18936 + ], + [ + -111.932143, + 48.188696 + ], + [ + -111.932455, + 48.188174 + ], + [ + -111.933068, + 48.187161 + ], + [ + -111.933601, + 48.186274 + ], + [ + -111.933896, + 48.185797 + ], + [ + -111.934176, + 48.185351 + ], + [ + -111.934674, + 48.184441 + ], + [ + -111.934869, + 48.184038 + ], + [ + -111.935015, + 48.183702 + ], + [ + -111.935133, + 48.183407 + ], + [ + -111.935235, + 48.183131 + ], + [ + -111.935317, + 48.182855 + ], + [ + -111.935435, + 48.182454 + ], + [ + -111.935517, + 48.18214 + ], + [ + -111.935563, + 48.181903 + ], + [ + -111.935605, + 48.181629 + ], + [ + -111.935654, + 48.181347 + ], + [ + -111.935672, + 48.181134 + ], + [ + -111.935695, + 48.180837 + ], + [ + -111.93571, + 48.180431 + ], + [ + -111.935711, + 48.179913 + ], + [ + -111.935689, + 48.179699 + ], + [ + -111.935666, + 48.179392 + ], + [ + -111.935641, + 48.179193 + ], + [ + -111.935605, + 48.178954 + ], + [ + -111.935551, + 48.17862 + ], + [ + -111.935494, + 48.178341 + ], + [ + -111.935425, + 48.178065 + ], + [ + -111.935362, + 48.177851 + ], + [ + -111.935271, + 48.177512 + ], + [ + -111.935083, + 48.177015 + ], + [ + -111.93498, + 48.176751 + ], + [ + -111.934859, + 48.176484 + ], + [ + -111.934688, + 48.176141 + ], + [ + -111.934489, + 48.175789 + ], + [ + -111.934239, + 48.175377 + ], + [ + -111.933859, + 48.174812 + ], + [ + -111.933189, + 48.173765 + ], + [ + -111.928027, + 48.165762 + ], + [ + -111.927735, + 48.165321 + ], + [ + -111.92603, + 48.162726 + ], + [ + -111.925093, + 48.161247 + ], + [ + -111.924008, + 48.159611 + ], + [ + -111.922175, + 48.156783 + ], + [ + -111.920615, + 48.154387 + ], + [ + -111.919007, + 48.151911 + ], + [ + -111.91822, + 48.150663 + ], + [ + -111.916601, + 48.148144 + ], + [ + -111.915551, + 48.146568 + ], + [ + -111.914312, + 48.144665 + ], + [ + -111.913624, + 48.143606 + ], + [ + -111.912311, + 48.141567 + ], + [ + -111.911974, + 48.141065 + ], + [ + -111.911504, + 48.140381 + ], + [ + -111.910989, + 48.139656 + ], + [ + -111.91031, + 48.138734 + ], + [ + -111.909273, + 48.1374 + ], + [ + -111.907928, + 48.135653 + ], + [ + -111.906666, + 48.13405 + ], + [ + -111.905997, + 48.133172 + ], + [ + -111.904722, + 48.131516 + ], + [ + -111.901655, + 48.127581 + ], + [ + -111.900048, + 48.125516 + ], + [ + -111.898729, + 48.123822 + ], + [ + -111.894029, + 48.117798 + ], + [ + -111.893315, + 48.116857 + ], + [ + -111.892001, + 48.115177 + ], + [ + -111.889638, + 48.112132 + ], + [ + -111.887413, + 48.109275 + ], + [ + -111.884717, + 48.105808 + ], + [ + -111.876044, + 48.094626 + ], + [ + -111.87031, + 48.087229 + ], + [ + -111.862959, + 48.077764 + ], + [ + -111.861332, + 48.075665 + ], + [ + -111.858755, + 48.072362 + ], + [ + -111.857125, + 48.070241 + ], + [ + -111.854834, + 48.06729 + ], + [ + -111.850948, + 48.062304 + ], + [ + -111.85011, + 48.061229 + ], + [ + -111.849084, + 48.059917 + ], + [ + -111.845348, + 48.055071 + ], + [ + -111.836461, + 48.043589 + ], + [ + -111.832454, + 48.038401 + ], + [ + -111.828116, + 48.032803 + ], + [ + -111.825147, + 48.028974 + ], + [ + -111.816587, + 48.017942 + ], + [ + -111.816087, + 48.017289 + ], + [ + -111.815305, + 48.016376 + ], + [ + -111.814473, + 48.015423 + ], + [ + -111.813623, + 48.014499 + ], + [ + -111.812937, + 48.013816 + ], + [ + -111.811984, + 48.012851 + ], + [ + -111.810868, + 48.011863 + ], + [ + -111.809752, + 48.010882 + ], + [ + -111.808825, + 48.010101 + ], + [ + -111.807598, + 48.009153 + ], + [ + -111.806388, + 48.008229 + ], + [ + -111.805238, + 48.007408 + ], + [ + -111.784158, + 47.992286 + ], + [ + -111.782561, + 47.991143 + ], + [ + -111.767146, + 47.980084 + ], + [ + -111.766219, + 47.979354 + ], + [ + -111.765283, + 47.978504 + ], + [ + -111.764288, + 47.977544 + ], + [ + -111.763404, + 47.976585 + ], + [ + -111.762691, + 47.975723 + ], + [ + -111.762193, + 47.97501 + ], + [ + -111.761653, + 47.974154 + ], + [ + -111.761121, + 47.973252 + ], + [ + -111.753336, + 47.959718 + ], + [ + -111.749036, + 47.952205 + ], + [ + -111.736505, + 47.930384 + ], + [ + -111.736106, + 47.92965 + ], + [ + -111.735644, + 47.928853 + ], + [ + -111.735343, + 47.928305 + ], + [ + -111.733592, + 47.925244 + ], + [ + -111.733306, + 47.924769 + ], + [ + -111.732599, + 47.923554 + ], + [ + -111.732395, + 47.923205 + ], + [ + -111.731718, + 47.922093 + ], + [ + -111.731538, + 47.921738 + ], + [ + -111.73117, + 47.921043 + ], + [ + -111.726112, + 47.912262 + ], + [ + -111.71442, + 47.89173 + ], + [ + -111.713776, + 47.890608 + ], + [ + -111.713253, + 47.889578 + ], + [ + -111.712927, + 47.888864 + ], + [ + -111.71254, + 47.888058 + ], + [ + -111.712146, + 47.88689 + ], + [ + -111.711811, + 47.885744 + ], + [ + -111.711519, + 47.884564 + ], + [ + -111.711253, + 47.883125 + ], + [ + -111.711124, + 47.881922 + ], + [ + -111.71103, + 47.880834 + ], + [ + -111.71103, + 47.879792 + ], + [ + -111.711129, + 47.869762 + ], + [ + -111.711004, + 47.867783 + ], + [ + -111.710901, + 47.866758 + ], + [ + -111.710781, + 47.865716 + ], + [ + -111.710618, + 47.864547 + ], + [ + -111.710438, + 47.863447 + ], + [ + -111.710283, + 47.862537 + ], + [ + -111.709991, + 47.861213 + ], + [ + -111.709756, + 47.860259 + ], + [ + -111.709335, + 47.858847 + ], + [ + -111.708841, + 47.857285 + ], + [ + -111.70727, + 47.852822 + ], + [ + -111.706867, + 47.851704 + ], + [ + -111.706498, + 47.850875 + ], + [ + -111.706077, + 47.850017 + ], + [ + -111.705434, + 47.848819 + ], + [ + -111.705305, + 47.848582 + ], + [ + -111.704816, + 47.847747 + ], + [ + -111.704215, + 47.846849 + ], + [ + -111.703623, + 47.846054 + ], + [ + -111.702678, + 47.844833 + ], + [ + -111.701983, + 47.843986 + ], + [ + -111.700902, + 47.842828 + ], + [ + -111.699923, + 47.841889 + ], + [ + -111.698979, + 47.841013 + ], + [ + -111.698052, + 47.84023 + ], + [ + -111.696893, + 47.839291 + ], + [ + -111.668363, + 47.817267 + ], + [ + -111.667479, + 47.816472 + ], + [ + -111.667042, + 47.815942 + ], + [ + -111.666647, + 47.815434 + ], + [ + -111.666226, + 47.81476 + ], + [ + -111.665943, + 47.814143 + ], + [ + -111.66578, + 47.813619 + ], + [ + -111.665625, + 47.812887 + ], + [ + -111.6656, + 47.812391 + ], + [ + -111.665591, + 47.811797 + ], + [ + -111.666429, + 47.79584 + ], + [ + -111.666535, + 47.793822 + ], + [ + -111.666492, + 47.791308 + ], + [ + -111.666439, + 47.750802 + ], + [ + -111.666442, + 47.741317 + ], + [ + -111.666445, + 47.740989 + ], + [ + -111.666406, + 47.723306 + ], + [ + -111.666381, + 47.72244 + ], + [ + -111.666295, + 47.721684 + ], + [ + -111.666158, + 47.720881 + ], + [ + -111.665986, + 47.72024 + ], + [ + -111.665746, + 47.719547 + ], + [ + -111.665419, + 47.71871 + ], + [ + -111.665042, + 47.717925 + ], + [ + -111.664647, + 47.717243 + ], + [ + -111.664132, + 47.716493 + ], + [ + -111.663789, + 47.716008 + ], + [ + -111.663359, + 47.715528 + ], + [ + -111.662432, + 47.714581 + ], + [ + -111.658081, + 47.710071 + ], + [ + -111.647285, + 47.699031 + ], + [ + -111.646085, + 47.697836 + ], + [ + -111.632275, + 47.683698 + ], + [ + -111.631949, + 47.683351 + ], + [ + -111.606663, + 47.657441 + ], + [ + -111.60117, + 47.651798 + ], + [ + -111.590415, + 47.64073 + ], + [ + -111.589918, + 47.640187 + ], + [ + -111.589463, + 47.639655 + ], + [ + -111.589068, + 47.639157 + ], + [ + -111.588707, + 47.638689 + ], + [ + -111.588287, + 47.638139 + ], + [ + -111.587849, + 47.637538 + ], + [ + -111.587549, + 47.637104 + ], + [ + -111.587231, + 47.636624 + ], + [ + -111.58627, + 47.63501 + ], + [ + -111.585369, + 47.633136 + ], + [ + -111.570511, + 47.6019 + ], + [ + -111.569945, + 47.600818 + ], + [ + -111.56955, + 47.600169 + ], + [ + -111.569224, + 47.599643 + ], + [ + -111.568846, + 47.599047 + ], + [ + -111.568546, + 47.598607 + ], + [ + -111.568168, + 47.598051 + ], + [ + -111.567747, + 47.597472 + ], + [ + -111.567335, + 47.596928 + ], + [ + -111.566915, + 47.59643 + ], + [ + -111.566537, + 47.595991 + ], + [ + -111.552899, + 47.581183 + ], + [ + -111.552633, + 47.580911 + ], + [ + -111.537629, + 47.564691 + ], + [ + -111.536514, + 47.563515 + ], + [ + -111.535904, + 47.562901 + ], + [ + -111.535175, + 47.56227 + ], + [ + -111.534437, + 47.561691 + ], + [ + -111.533656, + 47.561129 + ], + [ + -111.532711, + 47.560504 + ], + [ + -111.531647, + 47.559884 + ], + [ + -111.53048, + 47.559311 + ], + [ + -111.529184, + 47.558737 + ], + [ + -111.528008, + 47.558285 + ], + [ + -111.526806, + 47.557897 + ], + [ + -111.525424, + 47.557503 + ], + [ + -111.524008, + 47.557162 + ], + [ + -111.522824, + 47.556953 + ], + [ + -111.521734, + 47.556779 + ], + [ + -111.509679, + 47.554952 + ], + [ + -111.484251, + 47.551039 + ], + [ + -111.477299, + 47.54995 + ], + [ + -111.455614, + 47.546631 + ], + [ + -111.452477, + 47.546143 + ], + [ + -111.452005, + 47.546074 + ], + [ + -111.448496, + 47.545531 + ], + [ + -111.445301, + 47.545037 + ], + [ + -111.443894, + 47.544799 + ], + [ + -111.442357, + 47.544492 + ], + [ + -111.440907, + 47.544162 + ], + [ + -111.439173, + 47.543716 + ], + [ + -111.437894, + 47.543368 + ], + [ + -111.436512, + 47.542957 + ], + [ + -111.435045, + 47.54247 + ], + [ + -111.385349, + 47.526175 + ], + [ + -111.384241, + 47.525793 + ], + [ + -111.383478, + 47.52541 + ], + [ + -111.382928, + 47.525097 + ], + [ + -111.382499, + 47.524784 + ], + [ + -111.382036, + 47.524384 + ], + [ + -111.381709, + 47.524025 + ], + [ + -111.381452, + 47.523741 + ], + [ + -111.380053, + 47.521909 + ], + [ + -111.379298, + 47.520959 + ], + [ + -111.379152, + 47.520779 + ], + [ + -111.378714, + 47.520286 + ], + [ + -111.378268, + 47.519857 + ], + [ + -111.377555, + 47.519394 + ], + [ + -111.376774, + 47.518994 + ], + [ + -111.376096, + 47.518733 + ], + [ + -111.375409, + 47.51853 + ], + [ + -111.374294, + 47.518234 + ], + [ + -111.351059, + 47.512362 + ], + [ + -111.350081, + 47.512055 + ], + [ + -111.348914, + 47.511632 + ], + [ + -111.348184, + 47.511255 + ], + [ + -111.347446, + 47.510878 + ], + [ + -111.346914, + 47.510553 + ], + [ + -111.346356, + 47.510147 + ], + [ + -111.345832, + 47.509759 + ], + [ + -111.345309, + 47.509295 + ], + [ + -111.344914, + 47.508884 + ], + [ + -111.344605, + 47.508542 + ], + [ + -111.344193, + 47.50802 + ], + [ + -111.34391, + 47.507591 + ], + [ + -111.343618, + 47.507133 + ], + [ + -111.343352, + 47.506535 + ], + [ + -111.343137, + 47.505921 + ], + [ + -111.343, + 47.505254 + ], + [ + -111.342914, + 47.504779 + ], + [ + -111.342871, + 47.504205 + ], + [ + -111.342884, + 47.503714 + ], + [ + -111.343017, + 47.501337 + ], + [ + -111.343037, + 47.500922 + ], + [ + -111.343074, + 47.500247 + ], + [ + -111.343153, + 47.498866 + ], + [ + -111.343699, + 47.489338 + ], + [ + -111.343837, + 47.488347 + ], + [ + -111.344051, + 47.487517 + ], + [ + -111.344326, + 47.486746 + ], + [ + -111.344695, + 47.485795 + ], + [ + -111.345184, + 47.484855 + ], + [ + -111.345493, + 47.484356 + ], + [ + -111.346068, + 47.483527 + ], + [ + -111.34715, + 47.48221 + ], + [ + -111.347948, + 47.481392 + ], + [ + -111.348765, + 47.480715 + ], + [ + -111.349751, + 47.479978 + ], + [ + -111.350866, + 47.47913 + ], + [ + -111.356582, + 47.475347 + ], + [ + -111.365214, + 47.469592 + ], + [ + -111.367419, + 47.46813 + ], + [ + -111.367934, + 47.467829 + ], + [ + -111.368578, + 47.467492 + ], + [ + -111.36923, + 47.467144 + ], + [ + -111.369994, + 47.466807 + ], + [ + -111.370973, + 47.466407 + ], + [ + -111.371926, + 47.466042 + ], + [ + -111.372818, + 47.465746 + ], + [ + -111.373522, + 47.465525 + ], + [ + -111.374509, + 47.465258 + ], + [ + -111.429286, + 47.452445 + ], + [ + -111.429621, + 47.452364 + ], + [ + -111.473508, + 47.442064 + ], + [ + -111.50183, + 47.435384 + ], + [ + -111.502749, + 47.435175 + ], + [ + -111.503701, + 47.434961 + ], + [ + -111.504362, + 47.434792 + ], + [ + -111.505221, + 47.434543 + ], + [ + -111.506045, + 47.434299 + ], + [ + -111.506663, + 47.434095 + ], + [ + -111.507143, + 47.433927 + ], + [ + -111.507907, + 47.433648 + ], + [ + -111.508654, + 47.433312 + ], + [ + -111.509255, + 47.433045 + ], + [ + -111.509933, + 47.432725 + ], + [ + -111.510534, + 47.432412 + ], + [ + -111.51122, + 47.432029 + ], + [ + -111.51183, + 47.431674 + ], + [ + -111.512954, + 47.430931 + ], + [ + -111.513546, + 47.43049 + ], + [ + -111.524011, + 47.422011 + ], + [ + -111.569141, + 47.385345 + ], + [ + -111.6142, + 47.348685 + ], + [ + -111.614466, + 47.34847 + ], + [ + -111.634341, + 47.332266 + ], + [ + -111.69101, + 47.285965 + ], + [ + -111.692683, + 47.284596 + ], + [ + -111.694151, + 47.283461 + ], + [ + -111.694838, + 47.282943 + ], + [ + -111.696432, + 47.281863 + ], + [ + -111.698123, + 47.280815 + ], + [ + -111.699024, + 47.280297 + ], + [ + -111.699436, + 47.280064 + ], + [ + -111.703522, + 47.277671 + ], + [ + -111.704183, + 47.27728 + ], + [ + -111.704689, + 47.276966 + ], + [ + -111.70511, + 47.276686 + ], + [ + -111.705436, + 47.276442 + ], + [ + -111.705788, + 47.276139 + ], + [ + -111.706182, + 47.275766 + ], + [ + -111.706612, + 47.275289 + ], + [ + -111.706989, + 47.274806 + ], + [ + -111.707367, + 47.274264 + ], + [ + -111.707573, + 47.273856 + ], + [ + -111.707813, + 47.273379 + ], + [ + -111.707933, + 47.273047 + ], + [ + -111.708045, + 47.272651 + ], + [ + -111.708122, + 47.272307 + ], + [ + -111.708199, + 47.271911 + ], + [ + -111.708234, + 47.271544 + ], + [ + -111.708234, + 47.271212 + ], + [ + -111.708157, + 47.264538 + ], + [ + -111.708114, + 47.262342 + ], + [ + -111.708122, + 47.261794 + ], + [ + -111.708157, + 47.261369 + ], + [ + -111.708234, + 47.260851 + ], + [ + -111.708268, + 47.260653 + ], + [ + -111.708337, + 47.260257 + ], + [ + -111.708508, + 47.259511 + ], + [ + -111.708637, + 47.258923 + ], + [ + -111.708783, + 47.258241 + ], + [ + -111.70898, + 47.257536 + ], + [ + -111.709152, + 47.256942 + ], + [ + -111.709298, + 47.256383 + ], + [ + -111.710079, + 47.25333 + ], + [ + -111.710328, + 47.252363 + ], + [ + -111.710474, + 47.251833 + ], + [ + -111.710637, + 47.251332 + ], + [ + -111.710834, + 47.250889 + ], + [ + -111.71104, + 47.250545 + ], + [ + -111.711367, + 47.250085 + ], + [ + -111.711658, + 47.249753 + ], + [ + -111.711942, + 47.249444 + ], + [ + -111.712345, + 47.249089 + ], + [ + -111.712766, + 47.248751 + ], + [ + -111.71316, + 47.248494 + ], + [ + -111.713624, + 47.248221 + ], + [ + -111.714147, + 47.247958 + ], + [ + -111.714834, + 47.247655 + ], + [ + -111.729726, + 47.241112 + ], + [ + -111.73291, + 47.239807 + ], + [ + -111.75169, + 47.232534 + ], + [ + -111.754093, + 47.231624 + ], + [ + -111.75635, + 47.230861 + ], + [ + -111.75676, + 47.230739 + ], + [ + -111.765002, + 47.228413 + ], + [ + -111.765835, + 47.228157 + ], + [ + -111.766633, + 47.227877 + ], + [ + -111.767345, + 47.227597 + ], + [ + -111.768092, + 47.227306 + ], + [ + -111.768719, + 47.227026 + ], + [ + -111.769474, + 47.226676 + ], + [ + -111.770058, + 47.226361 + ], + [ + -111.770727, + 47.225988 + ], + [ + -111.771448, + 47.225534 + ], + [ + -111.772118, + 47.225096 + ], + [ + -111.772693, + 47.224688 + ], + [ + -111.773405, + 47.22417 + ], + [ + -111.773714, + 47.223936 + ], + [ + -111.774169, + 47.223575 + ], + [ + -111.774641, + 47.223103 + ], + [ + -111.775104, + 47.222619 + ], + [ + -111.775499, + 47.222211 + ], + [ + -111.775885, + 47.221774 + ], + [ + -111.776306, + 47.221255 + ], + [ + -111.776658, + 47.220777 + ], + [ + -111.77695, + 47.220369 + ], + [ + -111.777422, + 47.219611 + ], + [ + -111.777722, + 47.219057 + ], + [ + -111.778014, + 47.218422 + ], + [ + -111.778289, + 47.217746 + ], + [ + -111.778503, + 47.217104 + ], + [ + -111.778675, + 47.216428 + ], + [ + -111.778881, + 47.215694 + ], + [ + -111.779061, + 47.214988 + ], + [ + -111.780057, + 47.210796 + ], + [ + -111.780203, + 47.210213 + ], + [ + -111.780323, + 47.209758 + ], + [ + -111.780435, + 47.209397 + ], + [ + -111.780641, + 47.208808 + ], + [ + -111.780907, + 47.208201 + ], + [ + -111.78113, + 47.207729 + ], + [ + -111.781301, + 47.207438 + ], + [ + -111.781499, + 47.207129 + ], + [ + -111.78228, + 47.205916 + ], + [ + -111.783293, + 47.204645 + ], + [ + -111.783936, + 47.203974 + ], + [ + -111.784735, + 47.203146 + ], + [ + -111.785593, + 47.202225 + ], + [ + -111.786314, + 47.201466 + ], + [ + -111.786872, + 47.200883 + ], + [ + -111.787902, + 47.199845 + ], + [ + -111.788254, + 47.199507 + ], + [ + -111.788674, + 47.19914 + ], + [ + -111.789086, + 47.19879 + ], + [ + -111.789584, + 47.198387 + ], + [ + -111.790168, + 47.197921 + ], + [ + -111.790605, + 47.197618 + ], + [ + -111.791249, + 47.197227 + ], + [ + -111.791824, + 47.196877 + ], + [ + -111.792545, + 47.196474 + ], + [ + -111.793198, + 47.196136 + ], + [ + -111.79397, + 47.195769 + ], + [ + -111.794805, + 47.195425 + ], + [ + -111.801248, + 47.192835 + ], + [ + -111.801575, + 47.192701 + ], + [ + -111.802656, + 47.192287 + ], + [ + -111.803514, + 47.191937 + ], + [ + -111.804167, + 47.191628 + ], + [ + -111.804665, + 47.191394 + ], + [ + -111.8053, + 47.191045 + ], + [ + -111.805723, + 47.190797 + ], + [ + -111.805997, + 47.190634 + ], + [ + -111.806478, + 47.190323 + ], + [ + -111.806732, + 47.190144 + ], + [ + -111.80699, + 47.189955 + ], + [ + -111.807242, + 47.189755 + ], + [ + -111.807499, + 47.189537 + ], + [ + -111.807978, + 47.189108 + ], + [ + -111.808309, + 47.188784 + ], + [ + -111.808738, + 47.188316 + ], + [ + -111.809145, + 47.187831 + ], + [ + -111.809375, + 47.187515 + ], + [ + -111.809578, + 47.187207 + ], + [ + -111.809725, + 47.186968 + ], + [ + -111.809941, + 47.18658 + ], + [ + -111.810196, + 47.186052 + ], + [ + -111.810485, + 47.185392 + ], + [ + -111.810582, + 47.185034 + ], + [ + -111.810757, + 47.184458 + ], + [ + -111.81087, + 47.184068 + ], + [ + -111.811288, + 47.182591 + ], + [ + -111.811466, + 47.182023 + ], + [ + -111.811592, + 47.181562 + ], + [ + -111.811725, + 47.181068 + ], + [ + -111.811881, + 47.18053 + ], + [ + -111.812016, + 47.179972 + ], + [ + -111.812133, + 47.179486 + ], + [ + -111.812304, + 47.178698 + ], + [ + -111.812475, + 47.177933 + ], + [ + -111.812795, + 47.176671 + ], + [ + -111.813022, + 47.175805 + ], + [ + -111.813143, + 47.175313 + ], + [ + -111.813289, + 47.174743 + ], + [ + -111.813451, + 47.174086 + ], + [ + -111.813587, + 47.173603 + ], + [ + -111.813709, + 47.173199 + ], + [ + -111.813868, + 47.172742 + ], + [ + -111.814052, + 47.172177 + ], + [ + -111.81431, + 47.171374 + ], + [ + -111.814446, + 47.170953 + ], + [ + -111.814555, + 47.170592 + ], + [ + -111.814621, + 47.170315 + ], + [ + -111.814724, + 47.169845 + ], + [ + -111.814867, + 47.169286 + ], + [ + -111.814924, + 47.169023 + ], + [ + -111.815005, + 47.168585 + ], + [ + -111.81512, + 47.168075 + ], + [ + -111.815267, + 47.167513 + ], + [ + -111.81537, + 47.167124 + ], + [ + -111.815534, + 47.166596 + ], + [ + -111.815743, + 47.165879 + ], + [ + -111.815883, + 47.165407 + ], + [ + -111.816017, + 47.16497 + ], + [ + -111.816151, + 47.164499 + ], + [ + -111.816299, + 47.164102 + ], + [ + -111.816455, + 47.163605 + ], + [ + -111.816606, + 47.163233 + ], + [ + -111.81675, + 47.162929 + ], + [ + -111.8169, + 47.16265 + ], + [ + -111.817163, + 47.162234 + ], + [ + -111.817461, + 47.161792 + ], + [ + -111.817707, + 47.161428 + ], + [ + -111.817918, + 47.161172 + ], + [ + -111.818109, + 47.160939 + ], + [ + -111.81826, + 47.160773 + ], + [ + -111.818436, + 47.160598 + ], + [ + -111.818713, + 47.160322 + ], + [ + -111.819137, + 47.159916 + ], + [ + -111.819338, + 47.159742 + ], + [ + -111.819615, + 47.159506 + ], + [ + -111.819811, + 47.159353 + ], + [ + -111.820101, + 47.159137 + ], + [ + -111.820886, + 47.158653 + ], + [ + -111.821347, + 47.158391 + ], + [ + -111.821709, + 47.158179 + ], + [ + -111.82215, + 47.157949 + ], + [ + -111.822792, + 47.157656 + ], + [ + -111.823291, + 47.157407 + ], + [ + -111.823951, + 47.157074 + ], + [ + -111.824604, + 47.156773 + ], + [ + -111.824926, + 47.156618 + ], + [ + -111.826016, + 47.156075 + ], + [ + -111.826777, + 47.155704 + ], + [ + -111.827118, + 47.155527 + ], + [ + -111.827632, + 47.155278 + ], + [ + -111.828833, + 47.154684 + ], + [ + -111.830331, + 47.153967 + ], + [ + -111.83092, + 47.153679 + ], + [ + -111.831417, + 47.153485 + ], + [ + -111.831694, + 47.153394 + ], + [ + -111.831937, + 47.15332 + ], + [ + -111.832157, + 47.153261 + ], + [ + -111.832517, + 47.15318 + ], + [ + -111.832892, + 47.153117 + ], + [ + -111.833253, + 47.153076 + ], + [ + -111.833573, + 47.153049 + ], + [ + -111.833993, + 47.153025 + ], + [ + -111.834559, + 47.153049 + ], + [ + -111.835126, + 47.153113 + ], + [ + -111.835701, + 47.1532 + ], + [ + -111.83595, + 47.153259 + ], + [ + -111.841856, + 47.154858 + ], + [ + -111.842362, + 47.155002 + ], + [ + -111.842712, + 47.155094 + ], + [ + -111.843019, + 47.155158 + ], + [ + -111.843672, + 47.155257 + ], + [ + -111.8438, + 47.155267 + ], + [ + -111.844087, + 47.155287 + ], + [ + -111.844399, + 47.155286 + ], + [ + -111.844699, + 47.15528 + ], + [ + -111.845058, + 47.15526 + ], + [ + -111.845509, + 47.155193 + ], + [ + -111.845869, + 47.155122 + ], + [ + -111.846291, + 47.155019 + ], + [ + -111.846644, + 47.154905 + ], + [ + -111.846928, + 47.154785 + ], + [ + -111.847126, + 47.154685 + ], + [ + -111.847479, + 47.154504 + ], + [ + -111.847736, + 47.154346 + ], + [ + -111.847908, + 47.15421 + ], + [ + -111.848115, + 47.154036 + ], + [ + -111.848251, + 47.153894 + ], + [ + -111.848342, + 47.153792 + ], + [ + -111.84847, + 47.153647 + ], + [ + -111.848543, + 47.153546 + ], + [ + -111.848649, + 47.153419 + ], + [ + -111.848764, + 47.153232 + ], + [ + -111.848861, + 47.153032 + ], + [ + -111.848947, + 47.152823 + ], + [ + -111.848973, + 47.152708 + ], + [ + -111.849021, + 47.152541 + ], + [ + -111.849042, + 47.152364 + ], + [ + -111.849077, + 47.152131 + ], + [ + -111.849103, + 47.151825 + ], + [ + -111.849333, + 47.149062 + ], + [ + -111.849393, + 47.148406 + ], + [ + -111.8494, + 47.148192 + ], + [ + -111.849408, + 47.147987 + ], + [ + -111.8494, + 47.147824 + ], + [ + -111.84939, + 47.147698 + ], + [ + -111.849374, + 47.147556 + ], + [ + -111.849347, + 47.147435 + ], + [ + -111.849331, + 47.147351 + ], + [ + -111.849245, + 47.146966 + ], + [ + -111.849142, + 47.146674 + ], + [ + -111.849059, + 47.146434 + ], + [ + -111.848943, + 47.146212 + ], + [ + -111.84886, + 47.146053 + ], + [ + -111.848767, + 47.145896 + ], + [ + -111.848673, + 47.145762 + ], + [ + -111.848566, + 47.14562 + ], + [ + -111.847025, + 47.143717 + ], + [ + -111.846887, + 47.143525 + ], + [ + -111.846766, + 47.143353 + ], + [ + -111.846661, + 47.14319 + ], + [ + -111.846521, + 47.142953 + ], + [ + -111.846415, + 47.142749 + ], + [ + -111.846343, + 47.142591 + ], + [ + -111.846269, + 47.14237 + ], + [ + -111.846241, + 47.142263 + ], + [ + -111.846223, + 47.14217 + ], + [ + -111.846209, + 47.142062 + ], + [ + -111.84619, + 47.141876 + ], + [ + -111.846192, + 47.141745 + ], + [ + -111.846217, + 47.141528 + ], + [ + -111.846242, + 47.141353 + ], + [ + -111.84627, + 47.141184 + ], + [ + -111.846324, + 47.141016 + ], + [ + -111.846398, + 47.140797 + ], + [ + -111.846525, + 47.140531 + ], + [ + -111.846604, + 47.14041 + ], + [ + -111.846676, + 47.14029 + ], + [ + -111.846846, + 47.140059 + ], + [ + -111.847142, + 47.139751 + ], + [ + -111.847281, + 47.13963 + ], + [ + -111.84746, + 47.139479 + ], + [ + -111.847678, + 47.139323 + ], + [ + -111.84791, + 47.139171 + ], + [ + -111.848186, + 47.139013 + ], + [ + -111.848438, + 47.138891 + ], + [ + -111.848706, + 47.138772 + ], + [ + -111.848984, + 47.138674 + ], + [ + -111.849267, + 47.138581 + ], + [ + -111.849592, + 47.138477 + ], + [ + -111.849947, + 47.138393 + ], + [ + -111.850257, + 47.138331 + ], + [ + -111.850556, + 47.138292 + ], + [ + -111.850908, + 47.138241 + ], + [ + -111.851241, + 47.13822 + ], + [ + -111.85164, + 47.138209 + ], + [ + -111.851974, + 47.13821 + ], + [ + -111.852237, + 47.138223 + ], + [ + -111.852532, + 47.138247 + ], + [ + -111.852795, + 47.138276 + ], + [ + -111.853123, + 47.13833 + ], + [ + -111.853394, + 47.138374 + ], + [ + -111.853787, + 47.138457 + ], + [ + -111.854766, + 47.138667 + ], + [ + -111.855826, + 47.138884 + ], + [ + -111.856179, + 47.13897 + ], + [ + -111.856565, + 47.139029 + ], + [ + -111.856792, + 47.139068 + ], + [ + -111.857173, + 47.13911 + ], + [ + -111.857431, + 47.139137 + ], + [ + -111.857676, + 47.139157 + ], + [ + -111.858048, + 47.139176 + ], + [ + -111.858338, + 47.139177 + ], + [ + -111.858762, + 47.139167 + ], + [ + -111.859155, + 47.139148 + ], + [ + -111.85955, + 47.139117 + ], + [ + -111.859805, + 47.139089 + ], + [ + -111.860245, + 47.139022 + ], + [ + -111.860491, + 47.13898 + ], + [ + -111.860683, + 47.138944 + ], + [ + -111.860973, + 47.138885 + ], + [ + -111.861214, + 47.138829 + ], + [ + -111.861479, + 47.138758 + ], + [ + -111.861743, + 47.138677 + ], + [ + -111.862069, + 47.138562 + ], + [ + -111.862344, + 47.138449 + ], + [ + -111.862687, + 47.138297 + ], + [ + -111.862931, + 47.138175 + ], + [ + -111.863114, + 47.138087 + ], + [ + -111.863314, + 47.137975 + ], + [ + -111.863599, + 47.137807 + ], + [ + -111.863972, + 47.13756 + ], + [ + -111.864261, + 47.137341 + ], + [ + -111.864442, + 47.137202 + ], + [ + -111.864674, + 47.137005 + ], + [ + -111.864969, + 47.136736 + ], + [ + -111.865258, + 47.13642 + ], + [ + -111.867853, + 47.13324 + ], + [ + -111.868102, + 47.13296 + ], + [ + -111.868445, + 47.132657 + ], + [ + -111.868909, + 47.132347 + ], + [ + -111.869372, + 47.132096 + ], + [ + -111.869776, + 47.131938 + ], + [ + -111.870291, + 47.131792 + ], + [ + -111.870754, + 47.131687 + ], + [ + -111.871286, + 47.131623 + ], + [ + -111.87181, + 47.131605 + ], + [ + -111.872359, + 47.131617 + ], + [ + -111.873389, + 47.131705 + ], + [ + -111.875681, + 47.131897 + ], + [ + -111.885054, + 47.132785 + ], + [ + -111.886566, + 47.132886 + ], + [ + -111.888607, + 47.1331 + ], + [ + -111.888985, + 47.133135 + ], + [ + -111.889766, + 47.133217 + ], + [ + -111.890444, + 47.133281 + ], + [ + -111.891225, + 47.133322 + ], + [ + -111.891886, + 47.133334 + ], + [ + -111.892598, + 47.133334 + ], + [ + -111.893242, + 47.133316 + ], + [ + -111.8938, + 47.133305 + ], + [ + -111.894512, + 47.133246 + ], + [ + -111.89513, + 47.133194 + ], + [ + -111.89563, + 47.133132 + ], + [ + -111.896274, + 47.133044 + ], + [ + -111.89678, + 47.132974 + ], + [ + -111.898531, + 47.132636 + ], + [ + -111.899656, + 47.132344 + ], + [ + -111.900711, + 47.132022 + ], + [ + -111.901398, + 47.131783 + ], + [ + -111.902445, + 47.131403 + ], + [ + -111.904162, + 47.130755 + ], + [ + -111.909034, + 47.128927 + ], + [ + -111.913729, + 47.127181 + ], + [ + -111.917251, + 47.125878 + ], + [ + -111.92071, + 47.1247 + ], + [ + -111.921698, + 47.124251 + ], + [ + -111.922387, + 47.123838 + ], + [ + -111.922806, + 47.123526 + ], + [ + -111.924809, + 47.121884 + ], + [ + -111.925527, + 47.121467 + ], + [ + -111.926631, + 47.121045 + ], + [ + -111.927545, + 47.120838 + ], + [ + -111.928844, + 47.120679 + ], + [ + -111.939954, + 47.119561 + ], + [ + -111.940893, + 47.119375 + ], + [ + -111.941491, + 47.119193 + ], + [ + -111.94258, + 47.118694 + ], + [ + -111.94328, + 47.118205 + ], + [ + -111.943682, + 47.117842 + ], + [ + -111.944167, + 47.117216 + ], + [ + -111.94437, + 47.116782 + ], + [ + -111.94452, + 47.116283 + ], + [ + -111.944594, + 47.115646 + ], + [ + -111.944471, + 47.113184 + ], + [ + -111.944519, + 47.112085 + ], + [ + -111.944699, + 47.111164 + ], + [ + -111.9451, + 47.109855 + ], + [ + -111.94519, + 47.109613 + ], + [ + -111.946818, + 47.104798 + ], + [ + -111.947185, + 47.103915 + ], + [ + -111.94757, + 47.103215 + ], + [ + -111.948705, + 47.101708 + ], + [ + -111.95025, + 47.099859 + ], + [ + -111.951568, + 47.098237 + ], + [ + -111.952318, + 47.097326 + ], + [ + -111.952866, + 47.096646 + ], + [ + -111.954165, + 47.094457 + ], + [ + -111.954536, + 47.093996 + ], + [ + -111.955001, + 47.093573 + ], + [ + -111.95538, + 47.093283 + ], + [ + -111.95597, + 47.092921 + ], + [ + -111.958022, + 47.092174 + ], + [ + -111.958929, + 47.091665 + ], + [ + -111.959563, + 47.091145 + ], + [ + -111.959918, + 47.090782 + ], + [ + -111.960199, + 47.090406 + ], + [ + -111.960514, + 47.089782 + ], + [ + -111.960679, + 47.089121 + ], + [ + -111.961076, + 47.083974 + ], + [ + -111.961218, + 47.083113 + ], + [ + -111.961515, + 47.082259 + ], + [ + -111.962027, + 47.081188 + ], + [ + -111.962536, + 47.080367 + ], + [ + -111.963148, + 47.079581 + ], + [ + -111.964601, + 47.078023 + ], + [ + -111.966718, + 47.075826 + ], + [ + -111.967024, + 47.075517 + ], + [ + -111.969094, + 47.073375 + ], + [ + -111.970437, + 47.07194 + ], + [ + -111.972154, + 47.070032 + ], + [ + -111.973432, + 47.068542 + ], + [ + -111.974103, + 47.067809 + ], + [ + -111.974604, + 47.067107 + ], + [ + -111.976616, + 47.064731 + ], + [ + -111.98105, + 47.059331 + ], + [ + -111.981811, + 47.058552 + ], + [ + -111.982905, + 47.057585 + ], + [ + -111.983864, + 47.057007 + ], + [ + -111.985011, + 47.056354 + ], + [ + -111.986314, + 47.055712 + ], + [ + -111.986853, + 47.055504 + ], + [ + -111.987827, + 47.055224 + ], + [ + -111.990272, + 47.054577 + ], + [ + -111.991627, + 47.053954 + ], + [ + -111.992491, + 47.053494 + ], + [ + -111.993301, + 47.052977 + ], + [ + -111.994268, + 47.05221 + ], + [ + -111.994901, + 47.051592 + ], + [ + -112.00108, + 47.045261 + ], + [ + -112.002131, + 47.044014 + ], + [ + -112.002341, + 47.043639 + ], + [ + -112.002459, + 47.043291 + ], + [ + -112.00254, + 47.04249 + ], + [ + -112.002551, + 47.041633 + ], + [ + -112.002802, + 47.040468 + ], + [ + -112.003031, + 47.039996 + ], + [ + -112.003311, + 47.039629 + ], + [ + -112.00408, + 47.038901 + ], + [ + -112.004669, + 47.038537 + ], + [ + -112.005381, + 47.038191 + ], + [ + -112.006132, + 47.03787 + ], + [ + -112.007591, + 47.037508 + ], + [ + -112.008057, + 47.037437 + ], + [ + -112.009475, + 47.037313 + ], + [ + -112.012696, + 47.037258 + ], + [ + -112.01489, + 47.037245 + ], + [ + -112.016275, + 47.037163 + ], + [ + -112.0192, + 47.037033 + ], + [ + -112.020595, + 47.036893 + ], + [ + -112.021841, + 47.036661 + ], + [ + -112.023428, + 47.036288 + ], + [ + -112.024543, + 47.035923 + ], + [ + -112.025634, + 47.03549 + ], + [ + -112.026621, + 47.035004 + ], + [ + -112.027875, + 47.034259 + ], + [ + -112.04368, + 47.024236 + ], + [ + -112.044909, + 47.023441 + ], + [ + -112.04544, + 47.023036 + ], + [ + -112.04608, + 47.022418 + ], + [ + -112.046528, + 47.021863 + ], + [ + -112.046751, + 47.021531 + ], + [ + -112.046895, + 47.021189 + ], + [ + -112.048457, + 47.017223 + ], + [ + -112.049379, + 47.014861 + ], + [ + -112.04961, + 47.014335 + ], + [ + -112.049878, + 47.013819 + ], + [ + -112.050194, + 47.013314 + ], + [ + -112.050556, + 47.012813 + ], + [ + -112.050955, + 47.01233 + ], + [ + -112.051351, + 47.011873 + ], + [ + -112.051809, + 47.011423 + ], + [ + -112.052303, + 47.010991 + ], + [ + -112.05283, + 47.010576 + ], + [ + -112.053387, + 47.010182 + ], + [ + -112.053972, + 47.009806 + ], + [ + -112.056998, + 47.008006 + ], + [ + -112.058515, + 47.007109 + ], + [ + -112.060333, + 47.006031 + ], + [ + -112.061846, + 47.00513 + ], + [ + -112.062472, + 47.004869 + ], + [ + -112.062889, + 47.004741 + ], + [ + -112.063358, + 47.004645 + ], + [ + -112.063683, + 47.004606 + ], + [ + -112.064074, + 47.004561 + ], + [ + -112.064445, + 47.004519 + ], + [ + -112.06488, + 47.004576 + ], + [ + -112.06527, + 47.004629 + ], + [ + -112.065565, + 47.004697 + ], + [ + -112.065974, + 47.004792 + ], + [ + -112.066808, + 47.004991 + ], + [ + -112.06824, + 47.005361 + ], + [ + -112.0686, + 47.005467 + ], + [ + -112.069096, + 47.005596 + ], + [ + -112.069473, + 47.005688 + ], + [ + -112.069732, + 47.005745 + ], + [ + -112.070266, + 47.005855 + ], + [ + -112.070699, + 47.005951 + ], + [ + -112.071253, + 47.006048 + ], + [ + -112.071642, + 47.006114 + ], + [ + -112.071928, + 47.006158 + ], + [ + -112.072302, + 47.006209 + ], + [ + -112.072735, + 47.006263 + ], + [ + -112.072984, + 47.006287 + ], + [ + -112.073367, + 47.006318 + ], + [ + -112.073792, + 47.006352 + ], + [ + -112.074219, + 47.006372 + ], + [ + -112.074542, + 47.006382 + ], + [ + -112.074829, + 47.00639 + ], + [ + -112.075178, + 47.006392 + ], + [ + -112.075603, + 47.006393 + ], + [ + -112.076788, + 47.006332 + ], + [ + -112.077271, + 47.006281 + ], + [ + -112.077628, + 47.006225 + ], + [ + -112.078026, + 47.006153 + ], + [ + -112.078436, + 47.006074 + ], + [ + -112.078755, + 47.005996 + ], + [ + -112.079201, + 47.005866 + ], + [ + -112.079533, + 47.005747 + ], + [ + -112.079812, + 47.00563 + ], + [ + -112.080082, + 47.005495 + ], + [ + -112.080379, + 47.005332 + ], + [ + -112.080635, + 47.005164 + ], + [ + -112.080953, + 47.004927 + ], + [ + -112.081049, + 47.004826 + ], + [ + -112.081198, + 47.004689 + ], + [ + -112.081316, + 47.004562 + ], + [ + -112.081449, + 47.004379 + ], + [ + -112.081568, + 47.004191 + ], + [ + -112.081674, + 47.003987 + ], + [ + -112.08174, + 47.003858 + ], + [ + -112.081806, + 47.003692 + ], + [ + -112.081884, + 47.003438 + ], + [ + -112.08191, + 47.003275 + ], + [ + -112.081934, + 47.003066 + ], + [ + -112.08193, + 47.002831 + ], + [ + -112.081896, + 47.002597 + ], + [ + -112.081853, + 47.002371 + ], + [ + -112.081798, + 47.002194 + ], + [ + -112.081607, + 47.00176 + ], + [ + -112.081184, + 47.001198 + ], + [ + -112.079559, + 46.99968 + ], + [ + -112.078016, + 46.99838 + ], + [ + -112.07758, + 46.997912 + ], + [ + -112.077288, + 46.997532 + ], + [ + -112.076986, + 46.99693 + ], + [ + -112.076889, + 46.996514 + ], + [ + -112.076886, + 46.996116 + ], + [ + -112.076984, + 46.995478 + ], + [ + -112.07795, + 46.992584 + ], + [ + -112.078047, + 46.991994 + ], + [ + -112.078024, + 46.991594 + ], + [ + -112.077935, + 46.9912 + ], + [ + -112.077672, + 46.990627 + ], + [ + -112.076129, + 46.988425 + ], + [ + -112.075762, + 46.987771 + ], + [ + -112.075646, + 46.98742 + ], + [ + -112.075619, + 46.987055 + ], + [ + -112.075663, + 46.986679 + ], + [ + -112.075796, + 46.986299 + ], + [ + -112.076008, + 46.985921 + ], + [ + -112.076502, + 46.98539 + ], + [ + -112.077181, + 46.984932 + ], + [ + -112.081242, + 46.982494 + ], + [ + -112.081853, + 46.981972 + ], + [ + -112.082104, + 46.981646 + ], + [ + -112.082346, + 46.981245 + ], + [ + -112.082526, + 46.98074 + ], + [ + -112.082567, + 46.980266 + ], + [ + -112.082681, + 46.977427 + ], + [ + -112.082826, + 46.974499 + ], + [ + -112.083032, + 46.973709 + ], + [ + -112.083438, + 46.973098 + ], + [ + -112.083941, + 46.972667 + ], + [ + -112.084536, + 46.97225 + ], + [ + -112.093815, + 46.965771 + ], + [ + -112.094034, + 46.965596 + ], + [ + -112.094318, + 46.965306 + ], + [ + -112.094501, + 46.965085 + ], + [ + -112.094642, + 46.964864 + ], + [ + -112.094785, + 46.964575 + ], + [ + -112.094868, + 46.964338 + ], + [ + -112.094926, + 46.964081 + ], + [ + -112.094952, + 46.963813 + ], + [ + -112.094963, + 46.963562 + ], + [ + -112.094964, + 46.963005 + ], + [ + -112.094945, + 46.962147 + ], + [ + -112.095064, + 46.961322 + ], + [ + -112.095315, + 46.960775 + ], + [ + -112.095663, + 46.960328 + ], + [ + -112.098599, + 46.957746 + ], + [ + -112.098975, + 46.957432 + ], + [ + -112.099726, + 46.956946 + ], + [ + -112.100314, + 46.956644 + ], + [ + -112.101038, + 46.956326 + ], + [ + -112.103946, + 46.955297 + ], + [ + -112.107802, + 46.953955 + ], + [ + -112.108475, + 46.953671 + ], + [ + -112.108901, + 46.953445 + ], + [ + -112.109465, + 46.953038 + ], + [ + -112.109979, + 46.952469 + ], + [ + -112.110197, + 46.952042 + ], + [ + -112.111502, + 46.949682 + ], + [ + -112.112324, + 46.948952 + ], + [ + -112.113184, + 46.948533 + ], + [ + -112.114208, + 46.948308 + ], + [ + -112.116111, + 46.948021 + ], + [ + -112.117289, + 46.947669 + ], + [ + -112.118334, + 46.94705 + ], + [ + -112.119549, + 46.946068 + ], + [ + -112.122402, + 46.943642 + ], + [ + -112.123133, + 46.943013 + ], + [ + -112.123553, + 46.942583 + ], + [ + -112.12389, + 46.942171 + ], + [ + -112.124619, + 46.941266 + ], + [ + -112.125571, + 46.939982 + ], + [ + -112.126015, + 46.939377 + ], + [ + -112.1265, + 46.938749 + ], + [ + -112.126751, + 46.938397 + ], + [ + -112.126995, + 46.938014 + ], + [ + -112.127231, + 46.93766 + ], + [ + -112.127472, + 46.93708 + ], + [ + -112.127553, + 46.936521 + ], + [ + -112.127485, + 46.935878 + ], + [ + -112.126037, + 46.931011 + ], + [ + -112.125843, + 46.930596 + ], + [ + -112.125614, + 46.930288 + ], + [ + -112.125356, + 46.930017 + ], + [ + -112.125, + 46.92973 + ], + [ + -112.122981, + 46.928549 + ], + [ + -112.122668, + 46.928293 + ], + [ + -112.122315, + 46.927871 + ], + [ + -112.122099, + 46.927296 + ], + [ + -112.122093, + 46.926792 + ], + [ + -112.122341, + 46.926128 + ], + [ + -112.12333, + 46.924835 + ], + [ + -112.123628, + 46.924404 + ], + [ + -112.123835, + 46.923877 + ], + [ + -112.123883, + 46.923325 + ], + [ + -112.123775, + 46.9228 + ], + [ + -112.123494, + 46.922251 + ], + [ + -112.123242, + 46.921939 + ], + [ + -112.123161, + 46.921857 + ], + [ + -112.12174, + 46.920823 + ], + [ + -112.121416, + 46.920602 + ], + [ + -112.120977, + 46.920179 + ], + [ + -112.120697, + 46.919775 + ], + [ + -112.120503, + 46.919327 + ], + [ + -112.120322, + 46.918471 + ], + [ + -112.119667, + 46.915666 + ], + [ + -112.11939, + 46.915074 + ], + [ + -112.119062, + 46.914644 + ], + [ + -112.118506, + 46.91421 + ], + [ + -112.116708, + 46.913328 + ], + [ + -112.116193, + 46.912968 + ], + [ + -112.115472, + 46.912187 + ], + [ + -112.115356, + 46.911933 + ], + [ + -112.115279, + 46.911728 + ], + [ + -112.115241, + 46.911454 + ], + [ + -112.11523, + 46.911175 + ], + [ + -112.115266, + 46.910915 + ], + [ + -112.115368, + 46.910602 + ], + [ + -112.115446, + 46.910438 + ], + [ + -112.115662, + 46.910084 + ], + [ + -112.11604, + 46.909673 + ], + [ + -112.119395, + 46.907257 + ], + [ + -112.119896, + 46.906695 + ], + [ + -112.120633, + 46.90538 + ], + [ + -112.120979, + 46.904986 + ], + [ + -112.122506, + 46.903673 + ], + [ + -112.12294, + 46.903177 + ], + [ + -112.123172, + 46.902727 + ], + [ + -112.123344, + 46.902186 + ], + [ + -112.12337, + 46.901665 + ], + [ + -112.12326, + 46.90114 + ], + [ + -112.123004, + 46.900542 + ], + [ + -112.122296, + 46.899463 + ], + [ + -112.118791, + 46.893932 + ], + [ + -112.118077, + 46.892887 + ], + [ + -112.117488, + 46.892253 + ], + [ + -112.11672, + 46.891638 + ], + [ + -112.11608, + 46.891253 + ], + [ + -112.114112, + 46.89021 + ], + [ + -112.110716, + 46.888379 + ], + [ + -112.110338, + 46.888159 + ], + [ + -112.106096, + 46.885885 + ], + [ + -112.101398, + 46.88336 + ], + [ + -112.094609, + 46.879651 + ], + [ + -112.0931, + 46.878959 + ], + [ + -112.091311, + 46.878288 + ], + [ + -112.089958, + 46.877867 + ], + [ + -112.088521, + 46.877511 + ], + [ + -112.069016, + 46.872724 + ], + [ + -112.049279, + 46.867857 + ], + [ + -112.047103, + 46.867189 + ], + [ + -112.044993, + 46.866382 + ], + [ + -112.043719, + 46.865827 + ], + [ + -112.042541, + 46.865241 + ], + [ + -112.040586, + 46.864168 + ], + [ + -112.039263, + 46.863298 + ], + [ + -112.037988, + 46.862365 + ], + [ + -112.036738, + 46.86133 + ], + [ + -112.014076, + 46.842104 + ], + [ + -112.012788, + 46.840941 + ], + [ + -112.011749, + 46.839918 + ], + [ + -112.010445, + 46.83844 + ], + [ + -112.009025, + 46.83667 + ], + [ + -112.007922, + 46.83499 + ], + [ + -112.007123, + 46.833605 + ], + [ + -112.006361, + 46.832073 + ], + [ + -112.005882, + 46.830963 + ], + [ + -112.003109, + 46.824179 + ], + [ + -112.002795, + 46.823308 + ], + [ + -112.001559, + 46.820272 + ], + [ + -112.001405, + 46.819943 + ], + [ + -112.001005, + 46.818846 + ], + [ + -112.000667, + 46.817632 + ], + [ + -112.000578, + 46.816809 + ], + [ + -112.000493, + 46.815794 + ], + [ + -112.000516, + 46.814928 + ], + [ + -112.000693, + 46.813761 + ], + [ + -112.001162, + 46.812127 + ], + [ + -112.001628, + 46.811112 + ], + [ + -112.002462, + 46.809713 + ], + [ + -112.003317, + 46.808598 + ], + [ + -112.004049, + 46.80782 + ], + [ + -112.005118, + 46.806834 + ], + [ + -112.006592, + 46.805739 + ], + [ + -112.028016, + 46.792156 + ], + [ + -112.029741, + 46.790912 + ], + [ + -112.030745, + 46.79008 + ], + [ + -112.031484, + 46.78938 + ], + [ + -112.032257, + 46.788498 + ], + [ + -112.033266, + 46.787176 + ], + [ + -112.033873, + 46.786179 + ], + [ + -112.034356, + 46.785153 + ], + [ + -112.03474, + 46.784222 + ], + [ + -112.035041, + 46.783106 + ], + [ + -112.035281, + 46.78179 + ], + [ + -112.035332, + 46.780429 + ], + [ + -112.035162, + 46.778932 + ], + [ + -112.034994, + 46.7781 + ], + [ + -112.034623, + 46.77676 + ], + [ + -112.031439, + 46.767593 + ], + [ + -112.030872, + 46.766116 + ], + [ + -112.03058, + 46.765566 + ], + [ + -112.0298, + 46.76452 + ], + [ + -112.029051, + 46.763776 + ], + [ + -112.027625, + 46.762715 + ], + [ + -112.021142, + 46.759474 + ], + [ + -112.019784, + 46.758674 + ], + [ + -112.018427, + 46.757701 + ], + [ + -112.017026, + 46.756401 + ], + [ + -112.01646, + 46.75581 + ], + [ + -112.015787, + 46.754949 + ], + [ + -112.015034, + 46.753726 + ], + [ + -112.014675, + 46.752957 + ], + [ + -112.014369, + 46.752178 + ], + [ + -112.014113, + 46.751252 + ], + [ + -112.013978, + 46.7503 + ], + [ + -112.013965, + 46.748917 + ], + [ + -112.01407, + 46.747974 + ], + [ + -112.014425, + 46.74657 + ], + [ + -112.017111, + 46.737855 + ], + [ + -112.017375, + 46.736784 + ], + [ + -112.017607, + 46.735355 + ], + [ + -112.017673, + 46.734409 + ], + [ + -112.017685, + 46.733581 + ], + [ + -112.017588, + 46.732104 + ], + [ + -112.017413, + 46.730961 + ], + [ + -112.016851, + 46.728893 + ], + [ + -112.016052, + 46.726997 + ], + [ + -112.015229, + 46.725474 + ], + [ + -112.014031, + 46.723297 + ], + [ + -112.013406, + 46.721963 + ], + [ + -112.012932, + 46.720654 + ], + [ + -112.012536, + 46.719097 + ], + [ + -112.012339, + 46.717599 + ], + [ + -112.012283, + 46.716345 + ], + [ + -112.012185, + 46.707222 + ], + [ + -112.012075, + 46.70024 + ], + [ + -112.011602, + 46.660701 + ], + [ + -112.011601, + 46.660313 + ], + [ + -112.011436, + 46.648193 + ], + [ + -112.011441, + 46.648028 + ], + [ + -112.011427, + 46.646569 + ], + [ + -112.011246, + 46.631754 + ], + [ + -112.011146, + 46.621062 + ], + [ + -112.011132, + 46.619553 + ], + [ + -112.01109, + 46.616805 + ], + [ + -112.011059, + 46.614798 + ], + [ + -112.011048, + 46.61406 + ], + [ + -112.011037, + 46.613709 + ], + [ + -112.010993, + 46.613319 + ], + [ + -112.010941, + 46.613077 + ], + [ + -112.010877, + 46.612674 + ], + [ + -112.010838, + 46.612474 + ], + [ + -112.010746, + 46.61207 + ], + [ + -112.01064, + 46.611666 + ], + [ + -112.010587, + 46.611464 + ], + [ + -112.010508, + 46.611263 + ], + [ + -112.010314, + 46.610728 + ], + [ + -112.010256, + 46.610545 + ], + [ + -112.010198, + 46.610369 + ], + [ + -112.009915, + 46.609824 + ], + [ + -112.009739, + 46.609444 + ], + [ + -112.009564, + 46.609128 + ], + [ + -112.009295, + 46.608718 + ], + [ + -112.006524, + 46.603944 + ], + [ + -112.003906, + 46.599455 + ], + [ + -112.002681, + 46.597363 + ], + [ + -112.001205, + 46.594784 + ], + [ + -112, + 46.592799 + ], + [ + -111.999632, + 46.592286 + ], + [ + -111.999301, + 46.591861 + ], + [ + -111.998522, + 46.590983 + ], + [ + -111.99828, + 46.590699 + ], + [ + -111.997972, + 46.590398 + ], + [ + -111.996867, + 46.589396 + ], + [ + -111.996488, + 46.589096 + ], + [ + -111.995735, + 46.58854 + ], + [ + -111.988743, + 46.583855 + ], + [ + -111.983795, + 46.580551 + ], + [ + -111.98049, + 46.578347 + ], + [ + -111.978312, + 46.576892 + ], + [ + -111.976196, + 46.575478 + ], + [ + -111.970612, + 46.571744 + ], + [ + -111.969019, + 46.570651 + ], + [ + -111.966637, + 46.569071 + ], + [ + -111.957631, + 46.563066 + ], + [ + -111.956867, + 46.562459 + ], + [ + -111.956078, + 46.56178 + ], + [ + -111.955528, + 46.561278 + ], + [ + -111.95503, + 46.560765 + ], + [ + -111.954464, + 46.560133 + ], + [ + -111.953992, + 46.559508 + ], + [ + -111.953623, + 46.558994 + ], + [ + -111.953365, + 46.558587 + ], + [ + -111.953022, + 46.558003 + ], + [ + -111.95261, + 46.557224 + ], + [ + -111.951443, + 46.55468 + ], + [ + -111.946695, + 46.544203 + ], + [ + -111.946304, + 46.54331 + ], + [ + -111.945744, + 46.542172 + ], + [ + -111.945185, + 46.540831 + ], + [ + -111.944611, + 46.539567 + ], + [ + -111.943999, + 46.538252 + ], + [ + -111.943392, + 46.536869 + ], + [ + -111.941186, + 46.532081 + ], + [ + -111.940903, + 46.53142 + ], + [ + -111.940559, + 46.530629 + ], + [ + -111.940379, + 46.530109 + ], + [ + -111.940293, + 46.529684 + ], + [ + -111.940268, + 46.529241 + ], + [ + -111.940319, + 46.528857 + ], + [ + -111.940422, + 46.528432 + ], + [ + -111.940568, + 46.528025 + ], + [ + -111.94074, + 46.527676 + ], + [ + -111.940971, + 46.527322 + ], + [ + -111.941246, + 46.527003 + ], + [ + -111.941667, + 46.526619 + ], + [ + -111.943134, + 46.525497 + ], + [ + -111.943589, + 46.525125 + ], + [ + -111.94401, + 46.524718 + ], + [ + -111.944344, + 46.524346 + ], + [ + -111.944662, + 46.523974 + ], + [ + -111.944902, + 46.523625 + ], + [ + -111.945151, + 46.52323 + ], + [ + -111.9454, + 46.522775 + ], + [ + -111.945606, + 46.522326 + ], + [ + -111.945744, + 46.521966 + ], + [ + -111.945855, + 46.521511 + ], + [ + -111.947984, + 46.511742 + ], + [ + -111.948095, + 46.51137 + ], + [ + -111.948361, + 46.510661 + ], + [ + -111.949408, + 46.508074 + ], + [ + -111.952344, + 46.500837 + ], + [ + -111.952541, + 46.500393 + ], + [ + -111.952825, + 46.499944 + ], + [ + -111.953168, + 46.49946 + ], + [ + -111.953494, + 46.499105 + ], + [ + -111.953932, + 46.498775 + ], + [ + -111.954764, + 46.49819 + ], + [ + -111.958575, + 46.495909 + ], + [ + -111.959245, + 46.495501 + ], + [ + -111.960052, + 46.495017 + ], + [ + -111.961021, + 46.494414 + ], + [ + -111.961871, + 46.493912 + ], + [ + -111.962729, + 46.493415 + ], + [ + -111.963579, + 46.492825 + ], + [ + -111.964025, + 46.4925 + ], + [ + -111.964661, + 46.492015 + ], + [ + -111.965124, + 46.491625 + ], + [ + -111.965656, + 46.491123 + ], + [ + -111.966369, + 46.49042 + ], + [ + -111.96709, + 46.489651 + ], + [ + -111.976325, + 46.479522 + ], + [ + -111.976891, + 46.478848 + ], + [ + -111.977312, + 46.47834 + ], + [ + -111.977733, + 46.477808 + ], + [ + -111.977973, + 46.477465 + ], + [ + -111.978127, + 46.477211 + ], + [ + -111.978282, + 46.476974 + ], + [ + -111.97884, + 46.475928 + ], + [ + -111.979217, + 46.475042 + ], + [ + -111.980033, + 46.473044 + ], + [ + -111.980271, + 46.472374 + ], + [ + -111.980435, + 46.471976 + ], + [ + -111.980677, + 46.471349 + ], + [ + -111.980952, + 46.470648 + ], + [ + -111.981239, + 46.4699 + ], + [ + -111.981493, + 46.46921 + ], + [ + -111.981736, + 46.468592 + ], + [ + -111.981874, + 46.468256 + ], + [ + -111.982316, + 46.467018 + ], + [ + -111.982732, + 46.465939 + ], + [ + -111.982851, + 46.465572 + ], + [ + -111.983251, + 46.464294 + ], + [ + -111.983315, + 46.464025 + ], + [ + -111.983475, + 46.463313 + ], + [ + -111.983818, + 46.462054 + ], + [ + -111.98424, + 46.460487 + ], + [ + -111.985346, + 46.456259 + ], + [ + -111.985844, + 46.45432 + ], + [ + -111.986814, + 46.450701 + ], + [ + -111.986994, + 46.449938 + ], + [ + -111.987251, + 46.449004 + ], + [ + -111.987543, + 46.4483 + ], + [ + -111.987809, + 46.447709 + ], + [ + -111.988255, + 46.446833 + ], + [ + -111.990024, + 46.443882 + ], + [ + -111.990719, + 46.44254 + ], + [ + -111.99283, + 46.438169 + ], + [ + -111.995886, + 46.431816 + ], + [ + -111.996143, + 46.431165 + ], + [ + -111.996341, + 46.430644 + ], + [ + -111.996598, + 46.42984 + ], + [ + -111.996753, + 46.429213 + ], + [ + -111.99689, + 46.428609 + ], + [ + -111.997405, + 46.425385 + ], + [ + -111.997642, + 46.424314 + ], + [ + -111.997932, + 46.423545 + ], + [ + -111.998107, + 46.423114 + ], + [ + -111.99835, + 46.422586 + ], + [ + -111.998575, + 46.422164 + ], + [ + -111.998884, + 46.421653 + ], + [ + -111.999228, + 46.421145 + ], + [ + -111.999447, + 46.420848 + ], + [ + -111.999923, + 46.420267 + ], + [ + -112.000156, + 46.42 + ], + [ + -112.000433, + 46.41971 + ], + [ + -112.00089, + 46.419258 + ], + [ + -112.001482, + 46.418746 + ], + [ + -112.002113, + 46.418226 + ], + [ + -112.00272, + 46.417745 + ], + [ + -112.002961, + 46.417554 + ], + [ + -112.003548, + 46.417078 + ], + [ + -112.004211, + 46.41654 + ], + [ + -112.004746, + 46.416099 + ], + [ + -112.005461, + 46.41553 + ], + [ + -112.005985, + 46.415112 + ], + [ + -112.006394, + 46.414775 + ], + [ + -112.006854, + 46.414405 + ], + [ + -112.007245, + 46.4141 + ], + [ + -112.00765, + 46.413758 + ], + [ + -112.00797, + 46.413501 + ], + [ + -112.008169, + 46.413338 + ], + [ + -112.008593, + 46.412997 + ], + [ + -112.009014, + 46.412645 + ], + [ + -112.009385, + 46.412341 + ], + [ + -112.009697, + 46.412025 + ], + [ + -112.010255, + 46.411528 + ], + [ + -112.010946, + 46.410853 + ], + [ + -112.011431, + 46.410352 + ], + [ + -112.011895, + 46.409867 + ], + [ + -112.012165, + 46.409569 + ], + [ + -112.012675, + 46.408992 + ], + [ + -112.013067, + 46.408517 + ], + [ + -112.013404, + 46.408107 + ], + [ + -112.013911, + 46.407447 + ], + [ + -112.014218, + 46.407046 + ], + [ + -112.014492, + 46.406653 + ], + [ + -112.015033, + 46.405845 + ], + [ + -112.01524, + 46.405542 + ], + [ + -112.015368, + 46.405329 + ], + [ + -112.015741, + 46.40471 + ], + [ + -112.015972, + 46.404308 + ], + [ + -112.016318, + 46.403688 + ], + [ + -112.016624, + 46.403056 + ], + [ + -112.01703, + 46.402204 + ], + [ + -112.017522, + 46.401159 + ], + [ + -112.017917, + 46.400311 + ], + [ + -112.019197, + 46.397512 + ], + [ + -112.019961, + 46.395938 + ], + [ + -112.020503, + 46.394858 + ], + [ + -112.020846, + 46.394173 + ], + [ + -112.021172, + 46.393579 + ], + [ + -112.021321, + 46.393351 + ], + [ + -112.021496, + 46.393063 + ], + [ + -112.021714, + 46.392713 + ], + [ + -112.021925, + 46.392391 + ], + [ + -112.022307, + 46.391799 + ], + [ + -112.022576, + 46.391431 + ], + [ + -112.02269, + 46.391255 + ], + [ + -112.022776, + 46.391138 + ], + [ + -112.023072, + 46.390745 + ], + [ + -112.023396, + 46.390333 + ], + [ + -112.023636, + 46.390016 + ], + [ + -112.02407, + 46.389472 + ], + [ + -112.02447, + 46.388962 + ], + [ + -112.025293, + 46.387893 + ], + [ + -112.025518, + 46.387587 + ], + [ + -112.025835, + 46.387153 + ], + [ + -112.02604, + 46.386874 + ], + [ + -112.026296, + 46.386489 + ], + [ + -112.026502, + 46.386192 + ], + [ + -112.026698, + 46.385898 + ], + [ + -112.027204, + 46.385069 + ], + [ + -112.027659, + 46.384252 + ], + [ + -112.027743, + 46.384088 + ], + [ + -112.0278, + 46.383963 + ], + [ + -112.02782, + 46.383925 + ], + [ + -112.027998, + 46.383561 + ], + [ + -112.028106, + 46.383379 + ], + [ + -112.028359, + 46.382926 + ], + [ + -112.028737, + 46.382022 + ], + [ + -112.029617, + 46.379591 + ], + [ + -112.030115, + 46.378271 + ], + [ + -112.030424, + 46.377365 + ], + [ + -112.030767, + 46.376572 + ], + [ + -112.031059, + 46.375944 + ], + [ + -112.033059, + 46.372077 + ], + [ + -112.033626, + 46.37091 + ], + [ + -112.033917, + 46.370342 + ], + [ + -112.034252, + 46.369714 + ], + [ + -112.034492, + 46.369293 + ], + [ + -112.03481, + 46.368766 + ], + [ + -112.035136, + 46.368298 + ], + [ + -112.035445, + 46.367848 + ], + [ + -112.03584, + 46.367386 + ], + [ + -112.036295, + 46.366877 + ], + [ + -112.036879, + 46.366249 + ], + [ + -112.043015, + 46.359532 + ], + [ + -112.043436, + 46.359053 + ], + [ + -112.043754, + 46.358638 + ], + [ + -112.044011, + 46.358283 + ], + [ + -112.044234, + 46.357927 + ], + [ + -112.044475, + 46.357501 + ], + [ + -112.044698, + 46.357062 + ], + [ + -112.044852, + 46.356719 + ], + [ + -112.044972, + 46.356357 + ], + [ + -112.045093, + 46.355972 + ], + [ + -112.045204, + 46.355534 + ], + [ + -112.045281, + 46.355173 + ], + [ + -112.04535, + 46.354693 + ], + [ + -112.045384, + 46.354284 + ], + [ + -112.045376, + 46.353828 + ], + [ + -112.045359, + 46.353206 + ], + [ + -112.045058, + 46.350658 + ], + [ + -112.045032, + 46.350072 + ], + [ + -112.045075, + 46.349545 + ], + [ + -112.045178, + 46.349154 + ], + [ + -112.045317, + 46.348787 + ], + [ + -112.045481, + 46.348449 + ], + [ + -112.045687, + 46.348135 + ], + [ + -112.04591, + 46.347851 + ], + [ + -112.046202, + 46.347519 + ], + [ + -112.048562, + 46.345392 + ], + [ + -112.048862, + 46.34509 + ], + [ + -112.049146, + 46.34477 + ], + [ + -112.04936, + 46.344467 + ], + [ + -112.04954, + 46.344153 + ], + [ + -112.049738, + 46.343721 + ], + [ + -112.049849, + 46.343241 + ], + [ + -112.049884, + 46.343028 + ], + [ + -112.049892, + 46.342755 + ], + [ + -112.049884, + 46.3424 + ], + [ + -112.049806, + 46.341931 + ], + [ + -112.049396, + 46.34035 + ], + [ + -112.049218, + 46.339673 + ], + [ + -112.049159, + 46.33933 + ], + [ + -112.049143, + 46.339002 + ], + [ + -112.049168, + 46.338597 + ], + [ + -112.049229, + 46.338284 + ], + [ + -112.049292, + 46.338051 + ], + [ + -112.049341, + 46.337839 + ], + [ + -112.049439, + 46.337616 + ], + [ + -112.049559, + 46.337404 + ], + [ + -112.0497, + 46.337162 + ], + [ + -112.049936, + 46.33687 + ], + [ + -112.05015, + 46.336595 + ], + [ + -112.054836, + 46.331763 + ], + [ + -112.055497, + 46.33117 + ], + [ + -112.055875, + 46.33085 + ], + [ + -112.056372, + 46.33053 + ], + [ + -112.05687, + 46.330263 + ], + [ + -112.057445, + 46.330044 + ], + [ + -112.058132, + 46.329789 + ], + [ + -112.060261, + 46.329273 + ], + [ + -112.060879, + 46.329137 + ], + [ + -112.061445, + 46.328959 + ], + [ + -112.061994, + 46.328752 + ], + [ + -112.062561, + 46.32845 + ], + [ + -112.06317, + 46.3281 + ], + [ + -112.063625, + 46.327786 + ], + [ + -112.064054, + 46.327371 + ], + [ + -112.064466, + 46.326891 + ], + [ + -112.06523, + 46.325741 + ], + [ + -112.065677, + 46.325125 + ], + [ + -112.066028, + 46.324674 + ], + [ + -112.06638, + 46.324318 + ], + [ + -112.066904, + 46.323868 + ], + [ + -112.067505, + 46.323501 + ], + [ + -112.06826, + 46.323109 + ], + [ + -112.069642, + 46.322445 + ], + [ + -112.070509, + 46.322007 + ], + [ + -112.071195, + 46.321663 + ], + [ + -112.071728, + 46.321378 + ], + [ + -112.07238, + 46.320958 + ], + [ + -112.073067, + 46.320519 + ], + [ + -112.073762, + 46.320045 + ], + [ + -112.074277, + 46.319582 + ], + [ + -112.074732, + 46.319138 + ], + [ + -112.075169, + 46.318705 + ], + [ + -112.075599, + 46.318189 + ], + [ + -112.076053, + 46.317626 + ], + [ + -112.076371, + 46.317182 + ], + [ + -112.076732, + 46.316589 + ], + [ + -112.077058, + 46.315949 + ], + [ + -112.077616, + 46.31452 + ], + [ + -112.077985, + 46.313459 + ], + [ + -112.078268, + 46.312795 + ], + [ + -112.078491, + 46.31232 + ], + [ + -112.0788, + 46.311751 + ], + [ + -112.079212, + 46.31117 + ], + [ + -112.079718, + 46.310435 + ], + [ + -112.0808, + 46.308627 + ], + [ + -112.081126, + 46.30801 + ], + [ + -112.081375, + 46.307316 + ], + [ + -112.081512, + 46.306724 + ], + [ + -112.081607, + 46.306131 + ], + [ + -112.081735, + 46.304998 + ], + [ + -112.081856, + 46.304358 + ], + [ + -112.082079, + 46.303688 + ], + [ + -112.082319, + 46.303172 + ], + [ + -112.082594, + 46.302692 + ], + [ + -112.082946, + 46.302205 + ], + [ + -112.083306, + 46.301814 + ], + [ + -112.083804, + 46.301334 + ], + [ + -112.08447, + 46.300831 + ], + [ + -112.085263, + 46.300355 + ], + [ + -112.086027, + 46.299964 + ], + [ + -112.089752, + 46.298446 + ], + [ + -112.090979, + 46.297859 + ], + [ + -112.091958, + 46.297337 + ], + [ + -112.092799, + 46.296756 + ], + [ + -112.093486, + 46.296287 + ], + [ + -112.094104, + 46.295694 + ], + [ + -112.09473, + 46.295036 + ], + [ + -112.095159, + 46.294538 + ], + [ + -112.09558, + 46.293992 + ], + [ + -112.09594, + 46.293381 + ], + [ + -112.096445, + 46.292397 + ], + [ + -112.096685, + 46.291614 + ], + [ + -112.09702, + 46.290422 + ], + [ + -112.097449, + 46.288406 + ], + [ + -112.097724, + 46.287409 + ], + [ + -112.098136, + 46.286312 + ], + [ + -112.099116, + 46.284397 + ], + [ + -112.099274, + 46.284063 + ], + [ + -112.10053, + 46.281349 + ], + [ + -112.101118, + 46.280084 + ], + [ + -112.102891, + 46.276318 + ], + [ + -112.104027, + 46.273935 + ], + [ + -112.104859, + 46.272141 + ], + [ + -112.105342, + 46.271125 + ], + [ + -112.106274, + 46.269146 + ], + [ + -112.107087, + 46.267404 + ], + [ + -112.111234, + 46.258546 + ], + [ + -112.112659, + 46.255466 + ], + [ + -112.114521, + 46.251525 + ], + [ + -112.114976, + 46.250676 + ], + [ + -112.115508, + 46.249899 + ], + [ + -112.115937, + 46.249329 + ], + [ + -112.116633, + 46.248581 + ], + [ + -112.117748, + 46.247554 + ], + [ + -112.11925, + 46.246504 + ], + [ + -112.12022, + 46.245934 + ], + [ + -112.120967, + 46.245566 + ], + [ + -112.121954, + 46.245133 + ], + [ + -112.124992, + 46.244052 + ], + [ + -112.13288, + 46.241298 + ], + [ + -112.133387, + 46.24112 + ], + [ + -112.138622, + 46.239291 + ], + [ + -112.145034, + 46.237065 + ], + [ + -112.146141, + 46.236745 + ], + [ + -112.147008, + 46.236519 + ], + [ + -112.147806, + 46.236394 + ], + [ + -112.148459, + 46.236305 + ], + [ + -112.149265, + 46.236246 + ], + [ + -112.150089, + 46.236222 + ], + [ + -112.151042, + 46.236246 + ], + [ + -112.151883, + 46.236317 + ], + [ + -112.152699, + 46.236436 + ], + [ + -112.153471, + 46.236584 + ], + [ + -112.154474, + 46.236837 + ], + [ + -112.15899, + 46.238152 + ], + [ + -112.160595, + 46.238543 + ], + [ + -112.162483, + 46.238947 + ], + [ + -112.163367, + 46.23922 + ], + [ + -112.164054, + 46.239529 + ], + [ + -112.164698, + 46.239897 + ], + [ + -112.165273, + 46.24033 + ], + [ + -112.166844, + 46.241642 + ], + [ + -112.167307, + 46.241963 + ], + [ + -112.1685, + 46.242669 + ], + [ + -112.169144, + 46.243085 + ], + [ + -112.169659, + 46.24356 + ], + [ + -112.170912, + 46.244966 + ], + [ + -112.171367, + 46.245364 + ], + [ + -112.172131, + 46.245898 + ], + [ + -112.173204, + 46.246522 + ], + [ + -112.174276, + 46.247169 + ], + [ + -112.174817, + 46.24762 + ], + [ + -112.175298, + 46.24816 + ], + [ + -112.175555, + 46.248587 + ], + [ + -112.17577, + 46.248973 + ], + [ + -112.175924, + 46.249424 + ], + [ + -112.176336, + 46.250552 + ], + [ + -112.176517, + 46.25092 + ], + [ + -112.17674, + 46.251276 + ], + [ + -112.176997, + 46.251626 + ], + [ + -112.177418, + 46.252083 + ], + [ + -112.177787, + 46.252344 + ], + [ + -112.178165, + 46.252617 + ], + [ + -112.180775, + 46.254129 + ], + [ + -112.181007, + 46.254269 + ], + [ + -112.183097, + 46.255454 + ], + [ + -112.183493, + 46.255702 + ], + [ + -112.184164, + 46.256171 + ], + [ + -112.184905, + 46.256737 + ], + [ + -112.185365, + 46.257141 + ], + [ + -112.185885, + 46.257562 + ], + [ + -112.186185, + 46.2578 + ], + [ + -112.186531, + 46.258043 + ], + [ + -112.186972, + 46.258275 + ], + [ + -112.187322, + 46.258422 + ], + [ + -112.187774, + 46.258598 + ], + [ + -112.188155, + 46.258726 + ], + [ + -112.188842, + 46.25893 + ], + [ + -112.190061, + 46.259233 + ], + [ + -112.194417, + 46.260296 + ], + [ + -112.194914, + 46.260425 + ], + [ + -112.197467, + 46.261049 + ], + [ + -112.198131, + 46.261215 + ], + [ + -112.198816, + 46.261348 + ], + [ + -112.200563, + 46.261639 + ], + [ + -112.2012, + 46.261735 + ], + [ + -112.201697, + 46.261796 + ], + [ + -112.202216, + 46.261831 + ], + [ + -112.202661, + 46.261847 + ], + [ + -112.203293, + 46.261844 + ], + [ + -112.203843, + 46.26181 + ], + [ + -112.204643, + 46.261713 + ], + [ + -112.205502, + 46.261541 + ], + [ + -112.206283, + 46.261328 + ], + [ + -112.207158, + 46.260978 + ], + [ + -112.20773, + 46.260725 + ], + [ + -112.208199, + 46.260464 + ], + [ + -112.209872, + 46.259361 + ], + [ + -112.210845, + 46.258723 + ], + [ + -112.211437, + 46.258407 + ], + [ + -112.21171, + 46.258294 + ], + [ + -112.211974, + 46.258207 + ], + [ + -112.212216, + 46.258142 + ], + [ + -112.212463, + 46.258092 + ], + [ + -112.212751, + 46.258048 + ], + [ + -112.213051, + 46.258024 + ], + [ + -112.213334, + 46.258019 + ], + [ + -112.213692, + 46.258035 + ], + [ + -112.213988, + 46.258065 + ], + [ + -112.214247, + 46.258108 + ], + [ + -112.214549, + 46.258186 + ], + [ + -112.21472, + 46.258241 + ], + [ + -112.214928, + 46.258313 + ], + [ + -112.21526, + 46.258456 + ], + [ + -112.215539, + 46.258605 + ], + [ + -112.215859, + 46.258826 + ], + [ + -112.216123, + 46.259059 + ], + [ + -112.216344, + 46.259307 + ], + [ + -112.216538, + 46.259564 + ], + [ + -112.217304, + 46.260578 + ], + [ + -112.217586, + 46.260888 + ], + [ + -112.217887, + 46.26118 + ], + [ + -112.218436, + 46.261654 + ], + [ + -112.219097, + 46.262058 + ], + [ + -112.219818, + 46.262508 + ], + [ + -112.220179, + 46.262823 + ], + [ + -112.220462, + 46.263203 + ], + [ + -112.220625, + 46.263654 + ], + [ + -112.220625, + 46.264105 + ], + [ + -112.220513, + 46.26455 + ], + [ + -112.220273, + 46.264918 + ], + [ + -112.21993, + 46.265238 + ], + [ + -112.219466, + 46.265558 + ], + [ + -112.218514, + 46.266039 + ], + [ + -112.218288, + 46.266167 + ], + [ + -112.218079, + 46.266291 + ], + [ + -112.217885, + 46.266411 + ], + [ + -112.217737, + 46.266539 + ], + [ + -112.217605, + 46.266696 + ], + [ + -112.217501, + 46.266818 + ], + [ + -112.217396, + 46.266989 + ], + [ + -112.21734, + 46.267123 + ], + [ + -112.217303, + 46.267314 + ], + [ + -112.217283, + 46.267445 + ], + [ + -112.217325, + 46.267714 + ], + [ + -112.217476, + 46.26824 + ], + [ + -112.217544, + 46.268438 + ], + [ + -112.217592, + 46.268538 + ], + [ + -112.217628, + 46.268615 + ], + [ + -112.217724, + 46.268751 + ], + [ + -112.217818, + 46.268858 + ], + [ + -112.217936, + 46.268959 + ], + [ + -112.21813, + 46.269104 + ], + [ + -112.218353, + 46.26922 + ], + [ + -112.218727, + 46.26937 + ], + [ + -112.219166, + 46.269489 + ], + [ + -112.219721, + 46.269609 + ], + [ + -112.220202, + 46.269698 + ], + [ + -112.220646, + 46.269797 + ], + [ + -112.220996, + 46.2699 + ], + [ + -112.22144, + 46.27005 + ], + [ + -112.222711, + 46.270631 + ], + [ + -112.223277, + 46.270851 + ], + [ + -112.22399, + 46.271017 + ], + [ + -112.224668, + 46.271076 + ], + [ + -112.225371, + 46.270993 + ], + [ + -112.227174, + 46.270608 + ], + [ + -112.227989, + 46.270507 + ], + [ + -112.22883, + 46.270519 + ], + [ + -112.229611, + 46.270726 + ], + [ + -112.232341, + 46.271693 + ], + [ + -112.232993, + 46.27186 + ], + [ + -112.233723, + 46.271966 + ], + [ + -112.234744, + 46.271978 + ], + [ + -112.239606, + 46.271805 + ], + [ + -112.242182, + 46.271693 + ], + [ + -112.246347, + 46.271502 + ], + [ + -112.246967, + 46.271459 + ], + [ + -112.247491, + 46.271415 + ], + [ + -112.247911, + 46.271379 + ], + [ + -112.248545, + 46.271312 + ], + [ + -112.249143, + 46.271217 + ], + [ + -112.250763, + 46.270938 + ], + [ + -112.251919, + 46.270715 + ], + [ + -112.254271, + 46.270264 + ], + [ + -112.255138, + 46.270086 + ], + [ + -112.255979, + 46.269973 + ], + [ + -112.256923, + 46.269854 + ], + [ + -112.257798, + 46.269753 + ], + [ + -112.258871, + 46.269706 + ], + [ + -112.259953, + 46.269694 + ], + [ + -112.260408, + 46.269688 + ], + [ + -112.260811, + 46.269688 + ], + [ + -112.265927, + 46.269838 + ], + [ + -112.266364, + 46.269845 + ], + [ + -112.268516, + 46.269903 + ], + [ + -112.26928, + 46.269923 + ], + [ + -112.269822, + 46.269932 + ], + [ + -112.270297, + 46.269936 + ], + [ + -112.270632, + 46.269932 + ], + [ + -112.271986, + 46.269899 + ], + [ + -112.272496, + 46.269882 + ], + [ + -112.272871, + 46.269875 + ], + [ + -112.273201, + 46.26988 + ], + [ + -112.273496, + 46.269893 + ], + [ + -112.273848, + 46.269921 + ], + [ + -112.274451, + 46.269986 + ], + [ + -112.275304, + 46.270084 + ], + [ + -112.275736, + 46.270129 + ], + [ + -112.276214, + 46.270171 + ], + [ + -112.276581, + 46.270192 + ], + [ + -112.276954, + 46.270201 + ], + [ + -112.277383, + 46.270195 + ], + [ + -112.277783, + 46.270179 + ], + [ + -112.278217, + 46.270151 + ], + [ + -112.278636, + 46.270112 + ], + [ + -112.27903, + 46.270058 + ], + [ + -112.279521, + 46.269977 + ], + [ + -112.280084, + 46.269869 + ], + [ + -112.280575, + 46.269771 + ], + [ + -112.281036, + 46.269673 + ], + [ + -112.281492, + 46.269558 + ], + [ + -112.281919, + 46.269443 + ], + [ + -112.282407, + 46.269304 + ], + [ + -112.28289, + 46.269153 + ], + [ + -112.283292, + 46.269013 + ], + [ + -112.283616, + 46.26889 + ], + [ + -112.283914, + 46.268764 + ], + [ + -112.284169, + 46.268638 + ], + [ + -112.284394, + 46.268516 + ], + [ + -112.284601, + 46.268394 + ], + [ + -112.284775, + 46.268275 + ], + [ + -112.284955, + 46.268131 + ], + [ + -112.285087, + 46.268013 + ], + [ + -112.285191, + 46.267897 + ], + [ + -112.285277, + 46.267793 + ], + [ + -112.285357, + 46.267683 + ], + [ + -112.28543, + 46.267542 + ], + [ + -112.285505, + 46.267379 + ], + [ + -112.285561, + 46.267208 + ], + [ + -112.285596, + 46.267049 + ], + [ + -112.28561, + 46.266897 + ], + [ + -112.285612, + 46.266763 + ], + [ + -112.285599, + 46.266613 + ], + [ + -112.285569, + 46.266448 + ], + [ + -112.285505, + 46.266261 + ], + [ + -112.28543, + 46.266096 + ], + [ + -112.285194, + 46.265664 + ], + [ + -112.285025, + 46.265406 + ], + [ + -112.284866, + 46.265152 + ], + [ + -112.284775, + 46.264974 + ], + [ + -112.284703, + 46.264813 + ], + [ + -112.284646, + 46.264655 + ], + [ + -112.284614, + 46.264507 + ], + [ + -112.284598, + 46.264379 + ], + [ + -112.284598, + 46.26421 + ], + [ + -112.284617, + 46.264062 + ], + [ + -112.284665, + 46.263899 + ], + [ + -112.284727, + 46.263728 + ], + [ + -112.284759, + 46.263669 + ], + [ + -112.284821, + 46.263548 + ], + [ + -112.284909, + 46.263418 + ], + [ + -112.284995, + 46.263313 + ], + [ + -112.285121, + 46.263177 + ], + [ + -112.285277, + 46.263038 + ], + [ + -112.285408, + 46.262932 + ], + [ + -112.285591, + 46.262814 + ], + [ + -112.285765, + 46.262716 + ], + [ + -112.285998, + 46.262614 + ], + [ + -112.286237, + 46.262523 + ], + [ + -112.286454, + 46.262454 + ], + [ + -112.286722, + 46.262397 + ], + [ + -112.286953, + 46.262358 + ], + [ + -112.287205, + 46.262334 + ], + [ + -112.287431, + 46.262324 + ], + [ + -112.287599, + 46.262324 + ], + [ + -112.287755, + 46.262332 + ], + [ + -112.287908, + 46.262343 + ], + [ + -112.28809, + 46.262371 + ], + [ + -112.288289, + 46.262408 + ], + [ + -112.288533, + 46.262469 + ], + [ + -112.28878, + 46.262545 + ], + [ + -112.289056, + 46.262641 + ], + [ + -112.28941, + 46.262779 + ], + [ + -112.292288, + 46.263915 + ], + [ + -112.295423, + 46.265141 + ], + [ + -112.295772, + 46.265276 + ], + [ + -112.296799, + 46.265681 + ], + [ + -112.297288, + 46.265857 + ], + [ + -112.29766, + 46.26597 + ], + [ + -112.297998, + 46.266064 + ], + [ + -112.298326, + 46.266135 + ], + [ + -112.298693, + 46.266202 + ], + [ + -112.29902, + 46.266252 + ], + [ + -112.299407, + 46.266294 + ], + [ + -112.299973, + 46.26635 + ], + [ + -112.301962, + 46.266518 + ], + [ + -112.303677, + 46.266665 + ], + [ + -112.30416, + 46.266715 + ], + [ + -112.304799, + 46.266799 + ], + [ + -112.305829, + 46.266965 + ], + [ + -112.307302, + 46.26725 + ], + [ + -112.307798, + 46.267339 + ], + [ + -112.308222, + 46.267413 + ], + [ + -112.308627, + 46.267476 + ], + [ + -112.308997, + 46.267518 + ], + [ + -112.309343, + 46.267554 + ], + [ + -112.309617, + 46.267578 + ], + [ + -112.309941, + 46.267591 + ], + [ + -112.310258, + 46.267602 + ], + [ + -112.310641, + 46.267611 + ], + [ + -112.310985, + 46.267613 + ], + [ + -112.311296, + 46.267607 + ], + [ + -112.311658, + 46.267591 + ], + [ + -112.312055, + 46.267565 + ], + [ + -112.312425, + 46.267535 + ], + [ + -112.312795, + 46.267492 + ], + [ + -112.313219, + 46.267435 + ], + [ + -112.313683, + 46.267359 + ], + [ + -112.31408, + 46.267281 + ], + [ + -112.314484, + 46.267191 + ], + [ + -112.314867, + 46.26709 + ], + [ + -112.315256, + 46.26698 + ], + [ + -112.315717, + 46.266837 + ], + [ + -112.316613, + 46.266561 + ], + [ + -112.317018, + 46.266437 + ], + [ + -112.317471, + 46.266313 + ], + [ + -112.317997, + 46.266179 + ], + [ + -112.318925, + 46.265949 + ], + [ + -112.320151, + 46.265632 + ], + [ + -112.321393, + 46.265313 + ], + [ + -112.325427, + 46.26428 + ], + [ + -112.326138, + 46.264095 + ], + [ + -112.326859, + 46.263917 + ], + [ + -112.327936, + 46.263635 + ], + [ + -112.330428, + 46.263002 + ], + [ + -112.333211, + 46.262287 + ], + [ + -112.334007, + 46.262079 + ], + [ + -112.335292, + 46.261753 + ], + [ + -112.335686, + 46.261652 + ], + [ + -112.336028, + 46.261559 + ], + [ + -112.33637, + 46.261454 + ], + [ + -112.33667, + 46.261355 + ], + [ + -112.336988, + 46.261243 + ], + [ + -112.337325, + 46.261115 + ], + [ + -112.33768, + 46.260971 + ], + [ + -112.338038, + 46.260813 + ], + [ + -112.338363, + 46.260662 + ], + [ + -112.338625, + 46.26053 + ], + [ + -112.338933, + 46.260366 + ], + [ + -112.340256, + 46.259429 + ], + [ + -112.341003, + 46.258829 + ], + [ + -112.341337, + 46.25845 + ], + [ + -112.341646, + 46.258088 + ], + [ + -112.342041, + 46.257506 + ], + [ + -112.342264, + 46.257085 + ], + [ + -112.342513, + 46.256616 + ], + [ + -112.342736, + 46.256052 + ], + [ + -112.343048, + 46.25519 + ], + [ + -112.343088, + 46.254628 + ], + [ + -112.343114, + 46.25404 + ], + [ + -112.342997, + 46.253333 + ], + [ + -112.342814, + 46.252527 + ], + [ + -112.342556, + 46.25188 + ], + [ + -112.341586, + 46.249939 + ], + [ + -112.341209, + 46.248971 + ], + [ + -112.340942, + 46.248152 + ], + [ + -112.340797, + 46.247393 + ], + [ + -112.340711, + 46.246752 + ], + [ + -112.340698, + 46.245956 + ], + [ + -112.340797, + 46.24509 + ], + [ + -112.340934, + 46.2443 + ], + [ + -112.341088, + 46.243617 + ], + [ + -112.341363, + 46.242745 + ], + [ + -112.343732, + 46.236132 + ], + [ + -112.343955, + 46.235443 + ], + [ + -112.344213, + 46.23479 + ], + [ + -112.34459, + 46.234178 + ], + [ + -112.345088, + 46.233513 + ], + [ + -112.346384, + 46.231827 + ], + [ + -112.346848, + 46.231067 + ], + [ + -112.347062, + 46.230402 + ], + [ + -112.347208, + 46.229666 + ], + [ + -112.34738, + 46.228247 + ], + [ + -112.347457, + 46.227659 + ], + [ + -112.347706, + 46.22662 + ], + [ + -112.348072, + 46.225486 + ], + [ + -112.348787, + 46.223592 + ], + [ + -112.349165, + 46.22241 + ], + [ + -112.349268, + 46.221798 + ], + [ + -112.349251, + 46.221163 + ], + [ + -112.348908, + 46.218621 + ], + [ + -112.348822, + 46.218081 + ], + [ + -112.348822, + 46.217392 + ], + [ + -112.348959, + 46.216762 + ], + [ + -112.34944, + 46.215301 + ], + [ + -112.349521, + 46.214586 + ], + [ + -112.349491, + 46.214013 + ], + [ + -112.349328, + 46.213591 + ], + [ + -112.349028, + 46.213021 + ], + [ + -112.348633, + 46.212492 + ], + [ + -112.348169, + 46.211999 + ], + [ + -112.34762, + 46.211619 + ], + [ + -112.346856, + 46.211156 + ], + [ + -112.345869, + 46.21058 + ], + [ + -112.3452, + 46.210051 + ], + [ + -112.344728, + 46.209576 + ], + [ + -112.343234, + 46.207925 + ], + [ + -112.342659, + 46.207307 + ], + [ + -112.341921, + 46.206677 + ], + [ + -112.340814, + 46.205816 + ], + [ + -112.34041, + 46.205465 + ], + [ + -112.340067, + 46.205085 + ], + [ + -112.339802, + 46.204693 + ], + [ + -112.339704, + 46.204467 + ], + [ + -112.339636, + 46.204269 + ], + [ + -112.339591, + 46.204027 + ], + [ + -112.339612, + 46.20382 + ], + [ + -112.339732, + 46.203256 + ], + [ + -112.340033, + 46.20262 + ], + [ + -112.340582, + 46.201913 + ], + [ + -112.341621, + 46.200885 + ], + [ + -112.342062, + 46.200298 + ], + [ + -112.342242, + 46.199944 + ], + [ + -112.342396, + 46.199584 + ], + [ + -112.342597, + 46.199091 + ], + [ + -112.342775, + 46.198631 + ], + [ + -112.343062, + 46.198034 + ], + [ + -112.343303, + 46.197541 + ], + [ + -112.343792, + 46.196904 + ], + [ + -112.344693, + 46.196127 + ], + [ + -112.345387, + 46.19542 + ], + [ + -112.345729, + 46.194938 + ], + [ + -112.345917, + 46.194643 + ], + [ + -112.346069, + 46.194349 + ], + [ + -112.346166, + 46.194045 + ], + [ + -112.346238, + 46.193697 + ], + [ + -112.34623, + 46.193103 + ], + [ + -112.345941, + 46.190673 + ], + [ + -112.345878, + 46.189902 + ], + [ + -112.345728, + 46.189213 + ], + [ + -112.345709, + 46.188344 + ], + [ + -112.345571, + 46.187533 + ], + [ + -112.345558, + 46.186912 + ], + [ + -112.345564, + 46.185992 + ], + [ + -112.345749, + 46.183453 + ], + [ + -112.346234, + 46.177623 + ], + [ + -112.346347, + 46.176821 + ], + [ + -112.346473, + 46.176275 + ], + [ + -112.34671, + 46.175728 + ], + [ + -112.347062, + 46.17511 + ], + [ + -112.347483, + 46.174486 + ], + [ + -112.34822, + 46.173702 + ], + [ + -112.349208, + 46.17291 + ], + [ + -112.3521, + 46.171121 + ], + [ + -112.352701, + 46.170843 + ], + [ + -112.353354, + 46.170627 + ], + [ + -112.354238, + 46.170443 + ], + [ + -112.355396, + 46.170378 + ], + [ + -112.356246, + 46.170461 + ], + [ + -112.358186, + 46.170764 + ], + [ + -112.359293, + 46.170788 + ], + [ + -112.360246, + 46.170669 + ], + [ + -112.361216, + 46.170425 + ], + [ + -112.362177, + 46.170093 + ], + [ + -112.362941, + 46.16973 + ], + [ + -112.363559, + 46.169296 + ], + [ + -112.364125, + 46.168743 + ], + [ + -112.364529, + 46.168119 + ], + [ + -112.365267, + 46.167103 + ], + [ + -112.365816, + 46.166663 + ], + [ + -112.3664, + 46.166336 + ], + [ + -112.367129, + 46.166098 + ], + [ + -112.367868, + 46.165967 + ], + [ + -112.368692, + 46.165944 + ], + [ + -112.371773, + 46.166039 + ], + [ + -112.372811, + 46.166015 + ], + [ + -112.37367, + 46.165902 + ], + [ + -112.374588, + 46.165706 + ], + [ + -112.375592, + 46.165379 + ], + [ + -112.376571, + 46.164951 + ], + [ + -112.377318, + 46.164529 + ], + [ + -112.378076, + 46.163952 + ], + [ + -112.378262, + 46.163762 + ], + [ + -112.378614, + 46.163364 + ], + [ + -112.378914, + 46.162965 + ], + [ + -112.379469, + 46.162169 + ], + [ + -112.382055, + 46.158245 + ], + [ + -112.384021, + 46.155308 + ], + [ + -112.385566, + 46.152959 + ], + [ + -112.387334, + 46.150272 + ], + [ + -112.388458, + 46.14862 + ], + [ + -112.389451, + 46.147108 + ], + [ + -112.391789, + 46.143594 + ], + [ + -112.398669, + 46.133222 + ], + [ + -112.400972, + 46.129712 + ], + [ + -112.4066, + 46.121302 + ], + [ + -112.407393, + 46.120004 + ], + [ + -112.408182, + 46.118582 + ], + [ + -112.408541, + 46.117899 + ], + [ + -112.409937, + 46.114817 + ], + [ + -112.411055, + 46.112333 + ], + [ + -112.412388, + 46.109365 + ], + [ + -112.413655, + 46.106653 + ], + [ + -112.414778, + 46.10418 + ], + [ + -112.415206, + 46.103314 + ], + [ + -112.415668, + 46.102487 + ], + [ + -112.415895, + 46.102106 + ], + [ + -112.416464, + 46.101176 + ], + [ + -112.417083, + 46.100254 + ], + [ + -112.418499, + 46.098356 + ], + [ + -112.418915, + 46.09769 + ], + [ + -112.419526, + 46.096677 + ], + [ + -112.420233, + 46.095398 + ], + [ + -112.422479, + 46.091058 + ], + [ + -112.424336, + 46.087469 + ], + [ + -112.429652, + 46.0772 + ], + [ + -112.429822, + 46.076884 + ], + [ + -112.431392, + 46.07384 + ], + [ + -112.436257, + 46.064391 + ], + [ + -112.436937, + 46.063074 + ], + [ + -112.438079, + 46.061044 + ], + [ + -112.438376, + 46.060532 + ], + [ + -112.438666, + 46.060066 + ], + [ + -112.43881, + 46.05984 + ], + [ + -112.439098, + 46.05943 + ], + [ + -112.43934, + 46.059064 + ], + [ + -112.439532, + 46.058774 + ], + [ + -112.440107, + 46.058002 + ], + [ + -112.44038, + 46.05765 + ], + [ + -112.441731, + 46.056019 + ], + [ + -112.443485, + 46.053949 + ], + [ + -112.447802, + 46.048851 + ], + [ + -112.45155, + 46.044489 + ], + [ + -112.452423, + 46.043435 + ], + [ + -112.452928, + 46.042858 + ], + [ + -112.453336, + 46.042363 + ], + [ + -112.453672, + 46.041989 + ], + [ + -112.454055, + 46.041551 + ], + [ + -112.454342, + 46.04125 + ], + [ + -112.454665, + 46.040886 + ], + [ + -112.456067, + 46.039558 + ], + [ + -112.457335, + 46.038587 + ], + [ + -112.457987, + 46.038059 + ], + [ + -112.458512, + 46.037625 + ], + [ + -112.458842, + 46.037329 + ], + [ + -112.459071, + 46.03709 + ], + [ + -112.459314, + 46.036842 + ], + [ + -112.459518, + 46.03659 + ], + [ + -112.459678, + 46.03639 + ], + [ + -112.4598, + 46.036215 + ], + [ + -112.459891, + 46.036045 + ], + [ + -112.460007, + 46.03582 + ], + [ + -112.460114, + 46.03551 + ], + [ + -112.460172, + 46.035281 + ], + [ + -112.460249, + 46.034999 + ], + [ + -112.460282, + 46.034713 + ], + [ + -112.460289, + 46.034622 + ], + [ + -112.460306, + 46.034393 + ], + [ + -112.46034, + 46.034001 + ], + [ + -112.460377, + 46.033494 + ], + [ + -112.460788, + 46.024225 + ], + [ + -112.460858, + 46.022999 + ], + [ + -112.461034, + 46.021707 + ], + [ + -112.461139, + 46.019417 + ], + [ + -112.461174, + 46.018182 + ], + [ + -112.461374, + 46.013939 + ], + [ + -112.461433, + 46.012326 + ], + [ + -112.461598, + 46.009767 + ], + [ + -112.46173, + 46.007706 + ], + [ + -112.461826, + 46.006592 + ], + [ + -112.461968, + 46.00602 + ], + [ + -112.462225, + 46.00538 + ], + [ + -112.462565, + 46.004722 + ], + [ + -112.463191, + 46.004036 + ], + [ + -112.464072, + 46.003225 + ], + [ + -112.465792, + 46.001872 + ], + [ + -112.466856, + 46.001037 + ], + [ + -112.469268, + 45.999189 + ], + [ + -112.469946, + 45.998682 + ], + [ + -112.470667, + 45.998003 + ], + [ + -112.47113, + 45.997502 + ], + [ + -112.47156, + 45.996917 + ], + [ + -112.471963, + 45.99622 + ], + [ + -112.473459, + 45.993424 + ], + [ + -112.474051, + 45.992464 + ], + [ + -112.474317, + 45.992004 + ], + [ + -112.475276, + 45.990233 + ], + [ + -112.475566, + 45.989642 + ], + [ + -112.476695, + 45.987673 + ], + [ + -112.477014, + 45.987068 + ], + [ + -112.477395, + 45.986399 + ], + [ + -112.477976, + 45.985327 + ], + [ + -112.478243, + 45.984818 + ], + [ + -112.478421, + 45.98455 + ], + [ + -112.478851, + 45.983744 + ], + [ + -112.479177, + 45.983218 + ], + [ + -112.479374, + 45.982981 + ], + [ + -112.479538, + 45.982795 + ], + [ + -112.47971, + 45.982636 + ], + [ + -112.479894, + 45.982492 + ], + [ + -112.480132, + 45.982326 + ], + [ + -112.48042, + 45.982142 + ], + [ + -112.480713, + 45.981993 + ], + [ + -112.481018, + 45.981862 + ], + [ + -112.481235, + 45.981784 + ], + [ + -112.481491, + 45.981708 + ], + [ + -112.481819, + 45.981612 + ], + [ + -112.482235, + 45.981526 + ], + [ + -112.482576, + 45.981485 + ], + [ + -112.482792, + 45.981468 + ], + [ + -112.483106, + 45.981448 + ], + [ + -112.484674, + 45.981411 + ], + [ + -112.485533, + 45.981393 + ], + [ + -112.486142, + 45.981346 + ], + [ + -112.486888, + 45.981343 + ], + [ + -112.488415, + 45.981329 + ], + [ + -112.48942, + 45.981323 + ], + [ + -112.489915, + 45.981311 + ], + [ + -112.490321, + 45.981291 + ], + [ + -112.491262, + 45.981187 + ], + [ + -112.492077, + 45.981092 + ], + [ + -112.492755, + 45.980966 + ], + [ + -112.49327, + 45.980829 + ], + [ + -112.494197, + 45.980567 + ], + [ + -112.495345, + 45.9802 + ], + [ + -112.496229, + 45.979974 + ], + [ + -112.496927, + 45.979831 + ], + [ + -112.497708, + 45.979756 + ], + [ + -112.4986, + 45.979744 + ], + [ + -112.499484, + 45.979774 + ], + [ + -112.500257, + 45.979863 + ], + [ + -112.501047, + 45.980042 + ], + [ + -112.501432, + 45.980146 + ], + [ + -112.501772, + 45.980251 + ], + [ + -112.502162, + 45.980391 + ], + [ + -112.502441, + 45.980505 + ], + [ + -112.502715, + 45.980622 + ], + [ + -112.503036, + 45.980793 + ], + [ + -112.503323, + 45.980946 + ], + [ + -112.503646, + 45.981153 + ], + [ + -112.503934, + 45.981351 + ], + [ + -112.504203, + 45.981566 + ], + [ + -112.504427, + 45.981757 + ], + [ + -112.504926, + 45.982217 + ], + [ + -112.505529, + 45.982793 + ], + [ + -112.505933, + 45.983132 + ], + [ + -112.506153, + 45.983296 + ], + [ + -112.506336, + 45.983431 + ], + [ + -112.506571, + 45.983586 + ], + [ + -112.506888, + 45.983789 + ], + [ + -112.507196, + 45.983956 + ], + [ + -112.507471, + 45.984097 + ], + [ + -112.507799, + 45.984272 + ], + [ + -112.508512, + 45.98456 + ], + [ + -112.508794, + 45.984651 + ], + [ + -112.50906, + 45.984738 + ], + [ + -112.509415, + 45.984842 + ], + [ + -112.509964, + 45.984998 + ], + [ + -112.512836, + 45.985714 + ], + [ + -112.514063, + 45.986044 + ], + [ + -112.515749, + 45.986501 + ], + [ + -112.516874, + 45.986847 + ], + [ + -112.529602, + 45.991803 + ], + [ + -112.530598, + 45.992131 + ], + [ + -112.531516, + 45.992333 + ], + [ + -112.5324, + 45.992476 + ], + [ + -112.533044, + 45.992536 + ], + [ + -112.533894, + 45.992542 + ], + [ + -112.538675, + 45.992548 + ], + [ + -112.539481, + 45.992542 + ], + [ + -112.544571, + 45.992548 + ], + [ + -112.54755, + 45.9925 + ], + [ + -112.549472, + 45.992518 + ], + [ + -112.552176, + 45.992548 + ], + [ + -112.553189, + 45.992614 + ], + [ + -112.554167, + 45.992739 + ], + [ + -112.555008, + 45.992942 + ], + [ + -112.559798, + 45.994337 + ], + [ + -112.560613, + 45.994587 + ], + [ + -112.561471, + 45.994951 + ], + [ + -112.562235, + 45.995404 + ], + [ + -112.562816, + 45.995834 + ], + [ + -112.563071, + 45.996064 + ], + [ + -112.563323, + 45.996326 + ], + [ + -112.563586, + 45.996638 + ], + [ + -112.563846, + 45.996975 + ], + [ + -112.564136, + 45.997384 + ], + [ + -112.564414, + 45.997764 + ], + [ + -112.565162, + 45.998934 + ], + [ + -112.565743, + 45.999683 + ], + [ + -112.566655, + 46.000955 + ], + [ + -112.567437, + 46.001903 + ], + [ + -112.56802, + 46.002517 + ], + [ + -112.568741, + 46.003096 + ], + [ + -112.569419, + 46.003525 + ], + [ + -112.570063, + 46.003859 + ], + [ + -112.570964, + 46.004318 + ], + [ + -112.571822, + 46.004693 + ], + [ + -112.572895, + 46.005009 + ], + [ + -112.573848, + 46.00523 + ], + [ + -112.574775, + 46.005379 + ], + [ + -112.575728, + 46.005463 + ], + [ + -112.577187, + 46.005504 + ], + [ + -112.577788, + 46.005522 + ], + [ + -112.582056, + 46.005676 + ], + [ + -112.594885, + 46.006166 + ], + [ + -112.604584, + 46.006524 + ], + [ + -112.605451, + 46.006619 + ], + [ + -112.607283, + 46.006843 + ], + [ + -112.610896, + 46.007381 + ], + [ + -112.611152, + 46.005948 + ], + [ + -112.61121, + 46.005792 + ], + [ + -112.611238, + 46.005609 + ], + [ + -112.608284, + 46.004266 + ], + [ + -112.607739, + 46.003921 + ], + [ + -112.607191, + 46.003516 + ], + [ + -112.606953, + 46.003377 + ], + [ + -112.606693, + 46.003274 + ], + [ + -112.606342, + 46.003193 + ], + [ + -112.606239, + 46.00317 + ], + [ + -112.604638, + 46.002827 + ], + [ + -112.603223, + 46.002511 + ], + [ + -112.603052, + 46.002473 + ], + [ + -112.60203, + 46.002278 + ], + [ + -112.601516, + 46.002219 + ], + [ + -112.601276, + 46.00221 + ], + [ + -112.600883, + 46.002212 + ], + [ + -112.600496, + 46.00223 + ], + [ + -112.600404, + 46.002208 + ], + [ + -112.60036, + 46.002173 + ], + [ + -112.600327, + 46.002117 + ], + [ + -112.600314, + 46.002059 + ], + [ + -112.600333, + 46.001927 + ], + [ + -112.600381, + 46.001853 + ], + [ + -112.60049, + 46.001777 + ], + [ + -112.600599, + 46.001745 + ], + [ + -112.600713, + 46.001737 + ], + [ + -112.600862, + 46.001739 + ], + [ + -112.601544, + 46.001798 + ], + [ + -112.601657, + 46.001792 + ], + [ + -112.601804, + 46.001767 + ], + [ + -112.601918, + 46.001724 + ], + [ + -112.602008, + 46.001673 + ], + [ + -112.602239, + 46.001528 + ], + [ + -112.602389, + 46.001412 + ], + [ + -112.602658, + 46.001185 + ], + [ + -112.60307, + 46.000822 + ], + [ + -112.603218, + 46.000656 + ], + [ + -112.603405, + 46.000474 + ], + [ + -112.60366, + 46.000513 + ], + [ + -112.603842, + 46.000532 + ], + [ + -112.604078, + 46.000549 + ], + [ + -112.604254, + 46.000547 + ], + [ + -112.605018, + 46.00043 + ], + [ + -112.605491, + 46.000395 + ], + [ + -112.605766, + 46.000402 + ], + [ + -112.606076, + 46.000466 + ], + [ + -112.606209, + 46.00049 + ], + [ + -112.606364, + 46.000494 + ], + [ + -112.606548, + 46.000466 + ], + [ + -112.607005, + 46.000359 + ], + [ + -112.607412, + 46.000312 + ], + [ + -112.611416, + 46.000299 + ], + [ + -112.611653, + 46.000242 + ], + [ + -112.611812, + 46.000145 + ], + [ + -112.611932, + 45.999965 + ], + [ + -112.611906, + 45.993731 + ], + [ + -112.611956, + 45.990322 + ], + [ + -112.611963, + 45.987384 + ], + [ + -112.611945, + 45.986839 + ], + [ + -112.611983, + 45.986517 + ], + [ + -112.612211, + 45.985826 + ], + [ + -112.612974, + 45.983191 + ], + [ + -112.613351, + 45.982047 + ], + [ + -112.613508, + 45.981723 + ], + [ + -112.613655, + 45.98152 + ], + [ + -112.613973, + 45.981284 + ], + [ + -112.61573, + 45.980235 + ], + [ + -112.61642, + 45.979923 + ], + [ + -112.617405, + 45.979519 + ], + [ + -112.618068, + 45.979213 + ], + [ + -112.618669, + 45.978865 + ], + [ + -112.620246, + 45.977619 + ], + [ + -112.620586, + 45.977289 + ], + [ + -112.621106, + 45.976592 + ], + [ + -112.622154, + 45.975079 + ], + [ + -112.622235, + 45.974699 + ], + [ + -112.622281, + 45.973317 + ], + [ + -112.622078, + 45.970234 + ], + [ + -112.619831, + 45.970225 + ], + [ + -112.614288, + 45.970203 + ] + ] + } + } + ] +} \ No newline at end of file diff --git a/packages/turf-meta/.npmignore b/packages/turf-meta/.npmignore new file mode 100644 index 0000000000..bb3c08c09a --- /dev/null +++ b/packages/turf-meta/.npmignore @@ -0,0 +1,2 @@ +test +coverage diff --git a/packages/turf-meta/README.md b/packages/turf-meta/README.md new file mode 100644 index 0000000000..529374ef76 --- /dev/null +++ b/packages/turf-meta/README.md @@ -0,0 +1,57 @@ +# turf-meta + +[![build status](https://secure.travis-ci.org/Turfjs/turf-meta.png)](http://travis-ci.org/Turfjs/turf-meta) + +Functional helpers for Turf modules. + +**Why?** Because many turf modules have a similar pattern of running some operation +over every coordinate or property object, etc. This module unifies those patterns +into one structure and make sure that turf is able to handle unusual structures +(geometry roots, null geometries, geometrycollections, and so on). It's also +quite fast - it uses monomorphic functions as much as possible and avoids copying +data unnecessarily. + +## coordEach(layer, callback) + +Lazily iterate over coordinates in any GeoJSON object, similar to Array.forEach. + +* `layer` (`Object`): any GeoJSON object +* `callback` (`Function`): a method that takes (value) + +```js +var point = { type: 'Point', coordinates: [0, 0] }; +coordEach(point, function(coords) { + // coords is equal to [0, 0] +}); +``` + +## coordReduce(layer, callback, memo) + +Lazily reduce coordinates in any GeoJSON object into a single value, similar to how Array.reduce works. However, in this case we lazily runthe reduction, so an array of all coordinates is unnecessary. + +* `layer` (`Object`): any GeoJSON object +* `callback` (`Function`): a method that takes (memo, value) and returns a new memo +* `memo` (``): the starting value of memo: can be any type. + +## propEach(layer, callback) + +Lazily iterate over property objects in any GeoJSON object, similar to Array.forEach. + +* `layer` (`Object`): any GeoJSON object +* `callback` (`Function`): a method that takes (value) + +```js +var point = { type: 'Feature', geometry: null, properties: { foo: 1 } }; +propEach(point, function(props) { + // props is equal to { foo: 1} +}); +``` + + +## propReduce(layer, callback, memo) + +Lazily reduce properties in any GeoJSON object into a single value, similar to how Array.reduce works. However, in this case we lazily runthe reduction, so an array of all properties is unnecessary. + +* `layer` (`Object`): any GeoJSON object +* `callback` (`Function`): a method that takes (memo, coord) and returns a new memo +* `memo` (``): the starting value of memo: can be any type. diff --git a/packages/turf-meta/bench.js b/packages/turf-meta/bench.js new file mode 100644 index 0000000000..bf2cdab821 --- /dev/null +++ b/packages/turf-meta/bench.js @@ -0,0 +1,38 @@ +var meta = require('./'); +var meta2 = require('./'); +var random = require('turf-random'); + +var n = 100000; +var pnts = random('points', n).features; +var plys = random('polygons', n).features; +var combined = []; + +while (pnts.length && plys.length) { + var pt = pnts.pop(); + var pl = plys.pop(); + combined.push(pt); + combined.push({ type: 'GeometryCollection', geometries: [pt.geometry, pl.geometry] }); + combined.push(pt.geometry); + combined.push({ type: 'FeatureCollection', features: [pt] }); + combined.push(pl); + combined.push(pl.geometry); + combined.push({ type: 'FeatureCollection', features: [pl] }); +} + +console.time('coordEach#1'); +var sum = 0; +combined.forEach(function(c) { + meta.coordEach(c, function(coord) { + sum += coord[0]; + }); +}); +console.timeEnd('coordEach#1'); + +console.time('coordEach#2'); +var sum = 0; +combined.forEach(function(c) { + meta2.coordEach(c, function(coord) { + sum += coord[0]; + }); +}); +console.timeEnd('coordEach#2'); diff --git a/packages/turf-meta/index.js b/packages/turf-meta/index.js new file mode 100644 index 0000000000..71ef1980ea --- /dev/null +++ b/packages/turf-meta/index.js @@ -0,0 +1,175 @@ +/** + * Iterate over coordinates in any GeoJSON object, similar to + * Array.forEach. + * + * @param {Object} layer any GeoJSON object + * @param {Function} callback a method that takes (value) + * @param {boolean=} excludeWrapCoord whether or not to include + * the final coordinate of LinearRings that wraps the ring in its iteration. + * @example + * var point = { type: 'Point', coordinates: [0, 0] }; + * coordEach(point, function(coords) { + * // coords is equal to [0, 0] + * }); + */ +function coordEach(layer, callback, excludeWrapCoord) { + var i, j, k, g, l, geometry, stopG, coords, + geometryMaybeCollection, + wrapShrink = 0, + isGeometryCollection, + isFeatureCollection = layer.type === 'FeatureCollection', + isFeature = layer.type === 'Feature', + stop = isFeatureCollection ? layer.features.length : 1; + + // This logic may look a little weird. The reason why it is that way + // is because it's trying to be fast. GeoJSON supports multiple kinds + // of objects at its root: FeatureCollection, Features, Geometries. + // This function has the responsibility of handling all of them, and that + // means that some of the `for` loops you see below actually just don't apply + // to certain inputs. For instance, if you give this just a + // Point geometry, then both loops are short-circuited and all we do + // is gradually rename the input until it's called 'geometry'. + // + // This also aims to allocate as few resources as possible: just a + // few numbers and booleans, rather than any temporary arrays as would + // be required with the normalization approach. + for (i = 0; i < stop; i++) { + + geometryMaybeCollection = (isFeatureCollection ? layer.features[i].geometry : + (isFeature ? layer.geometry : layer)); + isGeometryCollection = geometryMaybeCollection.type === 'GeometryCollection'; + stopG = isGeometryCollection ? geometryMaybeCollection.geometries.length : 1; + + for (g = 0; g < stopG; g++) { + geometry = isGeometryCollection ? + geometryMaybeCollection.geometries[g] : geometryMaybeCollection; + coords = geometry.coordinates; + + wrapShrink = (excludeWrapCoord && + (geometry.type === 'Polygon' || geometry.type === 'MultiPolygon')) ? + 1 : 0; + + if (geometry.type === 'Point') { + callback(coords); + } else if (geometry.type === 'LineString' || geometry.type === 'MultiPoint') { + for (j = 0; j < coords.length; j++) callback(coords[j]); + } else if (geometry.type === 'Polygon' || geometry.type === 'MultiLineString') { + for (j = 0; j < coords.length; j++) + for (k = 0; k < coords[j].length - wrapShrink; k++) + callback(coords[j][k]); + } else if (geometry.type === 'MultiPolygon') { + for (j = 0; j < coords.length; j++) + for (k = 0; k < coords[j].length; k++) + for (l = 0; l < coords[j][k].length - wrapShrink; l++) + callback(coords[j][k][l]); + } else { + throw new Error('Unknown Geometry Type'); + } + } + } +} +module.exports.coordEach = coordEach; + +/** + * Reduce coordinates in any GeoJSON object into a single value, + * similar to how Array.reduce works. However, in this case we lazily run + * the reduction, so an array of all coordinates is unnecessary. + * + * @param {Object} layer any GeoJSON object + * @param {Function} callback a method that takes (memo, value) and returns + * a new memo + * @param {boolean=} excludeWrapCoord whether or not to include + * the final coordinate of LinearRings that wraps the ring in its iteration. + * @param {*} memo the starting value of memo: can be any type. + */ +function coordReduce(layer, callback, memo, excludeWrapCoord) { + coordEach(layer, function (coord) { + memo = callback(memo, coord); + }, excludeWrapCoord); + return memo; +} +module.exports.coordReduce = coordReduce; + +/** + * Iterate over property objects in any GeoJSON object, similar to + * Array.forEach. + * + * @param {Object} layer any GeoJSON object + * @param {Function} callback a method that takes (value) + * @example + * var point = { type: 'Feature', geometry: null, properties: { foo: 1 } }; + * propEach(point, function(props) { + * // props is equal to { foo: 1} + * }); + */ +function propEach(layer, callback) { + var i; + switch (layer.type) { + case 'FeatureCollection': + for (i = 0; i < layer.features.length; i++) { + callback(layer.features[i].properties); + } + break; + case 'Feature': + callback(layer.properties); + break; + } +} +module.exports.propEach = propEach; + +/** + * Reduce properties in any GeoJSON object into a single value, + * similar to how Array.reduce works. However, in this case we lazily run + * the reduction, so an array of all properties is unnecessary. + * + * @param {Object} layer any GeoJSON object + * @param {Function} callback a method that takes (memo, coord) and returns + * a new memo + * @param {*} memo the starting value of memo: can be any type. + */ +function propReduce(layer, callback, memo) { + propEach(layer, function (prop) { + memo = callback(memo, prop); + }); + return memo; +} +module.exports.propReduce = propReduce; + +/** + * Iterate over features in any GeoJSON object, similar to + * Array.forEach. + * + * @param {Object} layer any GeoJSON object + * @param {Function} callback a method that takes (value) + * @example + * var feature = { type: 'Feature', geometry: null, properties: {} }; + * featureEach(feature, function(feature) { + * // feature == feature + * }); + */ +function featureEach(layer, callback) { + if (layer.type === 'Feature') { + return callback(layer); + } + if (layer.type === 'FeatureCollection') { + for (var i = 0; i < layer.features.length; i++) { + callback(layer.features[i]); + } + } +} +module.exports.featureEach = featureEach; + +/** + * Get all coordinates from any GeoJSON object, returning an array of coordinate + * arrays. + * @param {Object} layer any GeoJSON object + * @return {Array>} coordinate position array + */ +function coordAll(layer) { + var coords = []; + coordEach(layer, function (coord) { + coords.push(coord); + }); + return coords; +} +module.exports.coordAll = coordAll; diff --git a/packages/turf-meta/package.json b/packages/turf-meta/package.json new file mode 100644 index 0000000000..5c4131f83e --- /dev/null +++ b/packages/turf-meta/package.json @@ -0,0 +1,24 @@ +{ + "name": "turf-meta", + "version": "3.0.1", + "description": "meta and functional programming helpers for turf modules", + "main": "index.js", + "scripts": { + "test": "tape test.js" + }, + "keywords": [ + "functional", + "programming", + "turfjs" + ], + "author": "Tom MacWright", + "license": "ISC", + "devDependencies": { + "tape": "^3.4.0", + "turf-random": "^3.0.1" + }, + "repository": { + "type": "git", + "url": "git@github.com:Turfjs/turf-meta.git" + } +} diff --git a/packages/turf-meta/test.js b/packages/turf-meta/test.js new file mode 100644 index 0000000000..24739ad574 --- /dev/null +++ b/packages/turf-meta/test.js @@ -0,0 +1,141 @@ +var test = require('tape'), + fs = require('fs'), + meta = require('./'); + +var pointGeometry = { + type: 'Point', + coordinates: [0, 0] +}; + +var lineStringGeometry = { + type: 'LineString', + coordinates: [[0, 0], [1, 1]] +}; + +var polygonGeometry = { + type: 'Polygon', + coordinates: [[[0, 0], [1, 1], [0, 1], [0, 0]]] +}; + +var multiPolygonGeometry = { + type: 'MultiPolygon', + coordinates: [[[[0, 0], [1, 1], [0, 1], [0, 0]]]] +}; + +var geometryCollection = { + type: 'GeometryCollection', + geometries: [pointGeometry, lineStringGeometry] +}; + +var pointFeature = { + type: 'Feature', + properties: { a: 1}, + geometry: pointGeometry +}; + +function collection(feature) { + var featureCollection = { + type: 'FeatureCollection', + features: [feature] + }; + + return [feature, featureCollection]; +} + +function featureAndCollection(geometry) { + var feature = { + type: 'Feature', + geometry: geometry, + properties: { a: 1 } + }; + + var featureCollection = { + type: 'FeatureCollection', + features: [feature] + }; + + return [geometry, feature, featureCollection]; +} + + +collection(pointFeature).forEach(function(input) { + test('propEach', function(t) { + meta.propEach(input, function(prop) { + t.deepEqual(prop, { a: 1 }); + t.end(); + }); + }); +}); + +featureAndCollection(pointGeometry).forEach(function(input) { + test('coordEach#Point', function(t) { + meta.coordEach(input, function(coord) { + t.deepEqual(coord, [0, 0]); + t.end(); + }); + }); +}); + +featureAndCollection(lineStringGeometry).forEach(function(input) { + test('coordEach#LineString', function(t) { + var output = []; + meta.coordEach(input, function(coord) { + output.push(coord); + }); + t.deepEqual(output, [[0, 0], [1, 1]]); + t.end(); + }); +}); + +featureAndCollection(polygonGeometry).forEach(function(input) { + test('coordEach#Polygon', function(t) { + var output = []; + meta.coordEach(input, function(coord) { + output.push(coord); + }); + t.deepEqual(output, [[0, 0], [1, 1], [0, 1], [0, 0]]); + t.end(); + }); +}); + +featureAndCollection(polygonGeometry).forEach(function(input) { + test('coordEach#Polygon excludeWrapCoord', function(t) { + var output = []; + meta.coordEach(input, function(coord) { + output.push(coord); + }, true); + t.deepEqual(output, [[0, 0], [1, 1], [0, 1]]); + t.end(); + }); +}); + + + +featureAndCollection(multiPolygonGeometry).forEach(function(input) { + test('coordEach#MultiPolygon', function(t) { + var output = []; + meta.coordEach(input, function(coord) { + output.push(coord); + }); + t.deepEqual(output, [[0, 0], [1, 1], [0, 1], [0, 0]]); + t.end(); + }); +}); + +featureAndCollection(geometryCollection).forEach(function(input) { + test('coordEach#GeometryCollection', function(t) { + var output = []; + meta.coordEach(input, function(coord) { + output.push(coord); + }); + t.deepEqual(output, [[0, 0], [0, 0], [1, 1]]); + t.end(); + }); +}); + +test('unknown', function(t) { + t.throws(function() { + meta.coordEach({}); + }); + t.end(); +}); diff --git a/packages/turf-midpoint/.npmignore b/packages/turf-midpoint/.npmignore new file mode 100644 index 0000000000..bb3c08c09a --- /dev/null +++ b/packages/turf-midpoint/.npmignore @@ -0,0 +1,2 @@ +test +coverage diff --git a/packages/turf-midpoint/LICENSE b/packages/turf-midpoint/LICENSE new file mode 100644 index 0000000000..64fb8e99a3 --- /dev/null +++ b/packages/turf-midpoint/LICENSE @@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) 2014 Morgan Herlocker + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. \ No newline at end of file diff --git a/packages/turf-midpoint/README.md b/packages/turf-midpoint/README.md new file mode 100644 index 0000000000..d390837f73 --- /dev/null +++ b/packages/turf-midpoint/README.md @@ -0,0 +1,70 @@ +# turf-midpoint + +[![build status](https://secure.travis-ci.org/Turfjs/turf-midpoint.png)](http://travis-ci.org/Turfjs/turf-midpoint) + +turf midpoint module + + +### `turf.midpoint(pt1, pt2)` + +Takes two Point|points and returns a point midway between them. + + +### Parameters + +| parameter | type | description | +| --------- | ------------------ | ------------ | +| `pt1` | Feature\.\ | first point | +| `pt2` | Feature\.\ | second point | + + +### Example + +```js +var pt1 = { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [144.834823, -37.771257] + } +}; +var pt2 = { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [145.14244, -37.830937] + } +}; + +var midpointed = turf.midpoint(pt1, pt2); +midpointed.properties['marker-color'] = '#f00'; + + +var result = { + "type": "FeatureCollection", + "features": [pt1, pt2, midpointed] +}; + +//=result +``` + + +**Returns** `Feature.`, a point midway between `pt1` and `pt2` + +## Installation + +Requires [nodejs](http://nodejs.org/). + +```sh +$ npm install turf-midpoint +``` + +## Tests + +```sh +$ npm test +``` + + diff --git a/packages/turf-midpoint/bench.js b/packages/turf-midpoint/bench.js new file mode 100644 index 0000000000..dd92ad7979 --- /dev/null +++ b/packages/turf-midpoint/bench.js @@ -0,0 +1,20 @@ +var midpoint = require('./'); +var Benchmark = require('benchmark'); +var fs = require('fs'); +var point = require('turf-helpers').point; + +var pt1 = point(0,0); +var pt2 = point(10,0); + +var suite = new Benchmark.Suite('turf-midpoint'); +suite + .add('turf-midpoint',function () { + midpoint(pt1, pt2); + }) + .on('cycle', function (event) { + console.log(String(event.target)); + }) + .on('complete', function () { + + }) + .run(); \ No newline at end of file diff --git a/packages/turf-midpoint/index.js b/packages/turf-midpoint/index.js new file mode 100644 index 0000000000..c3a917484a --- /dev/null +++ b/packages/turf-midpoint/index.js @@ -0,0 +1,55 @@ +// http://cs.selu.edu/~rbyrd/math/midpoint/ +// ((x1+x2)/2), ((y1+y2)/2) +var invariant = require('turf-invariant'); + +/** + * Takes two {@link Point|points} and returns a point midway between them. + * This gives the middle point in terms of latitude and longitude averaging, + * so the midpoint is guaranteed to fall on the line on an equirectangular + * projection, but may not be halfway between the points on the globe. + * + * @name midpoint + * @category measurement + * @param {Feature} pt1 first point + * @param {Feature} pt2 second point + * @return {Feature} a point midway between `pt1` and `pt2` + * @example + * var pt1 = { + * "type": "Feature", + * "properties": {}, + * "geometry": { + * "type": "Point", + * "coordinates": [144.834823, -37.771257] + * } + * }; + * var pt2 = { + * "type": "Feature", + * "properties": {}, + * "geometry": { + * "type": "Point", + * "coordinates": [145.14244, -37.830937] + * } + * }; + * + * var midpointed = turf.midpoint(pt1, pt2); + * midpointed.properties['marker-color'] = '#f00'; + * + * + * var result = { + * "type": "FeatureCollection", + * "features": [pt1, pt2, midpointed] + * }; + * + * //=result + */ +module.exports = function (point1, point2) { + var coords1 = invariant.getCoord(point1); + var coords2 = invariant.getCoord(point2); + return { + type: 'Point', + coordinates: [ + (coords1[0] + coords2[0]) / 2, + (coords1[1] + coords2[1]) / 2 + ] + }; +}; diff --git a/packages/turf-midpoint/package.json b/packages/turf-midpoint/package.json new file mode 100644 index 0000000000..afe2467fc4 --- /dev/null +++ b/packages/turf-midpoint/package.json @@ -0,0 +1,33 @@ +{ + "name": "turf-midpoint", + "version": "3.0.1", + "description": "turf midpoint module", + "main": "index.js", + "scripts": { + "test": "node test.js" + }, + "repository": { + "type": "git", + "url": "https://github.com/Turfjs/turf-midpoint.git" + }, + "keywords": [ + "turf", + "midpoint", + "bisect", + "geojson", + "line" + ], + "author": "morganherlocker", + "license": "MIT", + "bugs": { + "url": "https://github.com/Turfjs/turf-midpoint/issues" + }, + "homepage": "https://github.com/Turfjs/turf-midpoint", + "devDependencies": { + "benchmark": "^1.0.0", + "tape": "^3.5.0" + }, + "dependencies": { + "turf-invariant": "^3.0.1" + } +} diff --git a/packages/turf-midpoint/test.js b/packages/turf-midpoint/test.js new file mode 100644 index 0000000000..76ca7f518b --- /dev/null +++ b/packages/turf-midpoint/test.js @@ -0,0 +1,24 @@ +var test = require('tape'); +var midpoint = require('./'); + +test('midpoint', function(t){ + var pt1 = { type: 'Point', coordinates: [0,0] }; + var pt2 = { type: 'Point', coordinates: [10, 0] }; + var expectedMidPoint = { type: 'Point', coordinates: [5, 0] }; + var actualMidPoint = midpoint(pt1, pt2); + t.deepEqual(actualMidPoint, expectedMidPoint, 'should return the halfway point of a horizontal line starting off 0,0'); + + var pt1 = { type: 'Point', coordinates: [0,0] }; + var pt2 = { type: 'Point', coordinates: [0,10] }; + var expectedMidPoint = { type: 'Point', coordinates: [0, 5] }; + var actualMidPoint = midpoint(pt1, pt2); + t.deepEqual(actualMidPoint, expectedMidPoint, 'should return the halfway point of a vertical line starting off 0,0'); + + var pt1 = { type: 'Point', coordinates: [1,1] }; + var pt2 = { type: 'Point', coordinates: [11,11] }; + var expectedMidPoint = { type: 'Point', coordinates: [6, 6] }; + var actualMidPoint = midpoint(pt1, pt2); + t.deepEqual(actualMidPoint, expectedMidPoint, 'should return the halfway point of a diagonal line starting off 1,1'); + + t.end(); +}); diff --git a/packages/turf-nearest/.npmignore b/packages/turf-nearest/.npmignore new file mode 100644 index 0000000000..bb3c08c09a --- /dev/null +++ b/packages/turf-nearest/.npmignore @@ -0,0 +1,2 @@ +test +coverage diff --git a/packages/turf-nearest/LICENSE b/packages/turf-nearest/LICENSE new file mode 100644 index 0000000000..64fb8e99a3 --- /dev/null +++ b/packages/turf-nearest/LICENSE @@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) 2014 Morgan Herlocker + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. \ No newline at end of file diff --git a/packages/turf-nearest/README.md b/packages/turf-nearest/README.md new file mode 100644 index 0000000000..238e91e3ad --- /dev/null +++ b/packages/turf-nearest/README.md @@ -0,0 +1,91 @@ +# turf-nearest + +[![build status](https://secure.travis-ci.org/Turfjs/turf-nearest.png)](http://travis-ci.org/Turfjs/turf-nearest) + +turf nearest module + + +### `turf.nearest(point, against)` + +Takes a reference Point|point and a set of points and returns the point from the set closest to the reference. + + +### Parameters + +| parameter | type | description | +| --------- | ---------------------------- | ------------------- | +| `point` | Feature\.\ | the reference point | +| `against` | FeatureCollection\.\ | input point set | + + +### Example + +```js +var point = { + "type": "Feature", + "properties": { + "marker-color": "#0f0" + }, + "geometry": { + "type": "Point", + "coordinates": [28.965797, 41.010086] + } +}; +var against = { + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [28.973865, 41.011122] + } + }, { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [28.948459, 41.024204] + } + }, { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [28.938674, 41.013324] + } + } + ] +}; + +var nearest = turf.nearest(point, against); +nearest.properties['marker-color'] = '#f00'; + +var resultFeatures = against.features.concat(point); +var result = { + "type": "FeatureCollection", + "features": resultFeatures +}; + +//=result +``` + + +**Returns** `Feature.`, the closest point in the set to the reference point + +## Installation + +Requires [nodejs](http://nodejs.org/). + +```sh +$ npm install turf-nearest +``` + +## Tests + +```sh +$ npm test +``` + + diff --git a/packages/turf-nearest/bench.js b/packages/turf-nearest/bench.js new file mode 100644 index 0000000000..b9a9871730 --- /dev/null +++ b/packages/turf-nearest/bench.js @@ -0,0 +1,19 @@ +var nearest = require('./'); +var Benchmark = require('benchmark'); +var fs = require('fs'); + +var pt = JSON.parse(fs.readFileSync(__dirname+'/test/pt.geojson')); +var pts = JSON.parse(fs.readFileSync(__dirname+'/test/pts.geojson')); + +var suite = new Benchmark.Suite('turf-nearest'); +suite + .add('turf-nearest',function () { + nearest(pt, pts); + }) + .on('cycle', function (event) { + console.log(String(event.target)); + }) + .on('complete', function () { + + }) + .run(); diff --git a/packages/turf-nearest/index.js b/packages/turf-nearest/index.js new file mode 100644 index 0000000000..573c72a0df --- /dev/null +++ b/packages/turf-nearest/index.js @@ -0,0 +1,74 @@ +var distance = require('turf-distance'); + +/** + * Takes a reference {@link Point|point} and a FeatureCollection of Features + * with Point geometries and returns the + * point from the FeatureCollection closest to the reference. This calculation + * is geodesic. + * + * @name nearest + * @category classification + * @param {Feature} point the reference point + * @param {FeatureCollection} against input point set + * @return {Feature} the closest point in the set to the reference point + * @example + * var point = { + * "type": "Feature", + * "properties": { + * "marker-color": "#0f0" + * }, + * "geometry": { + * "type": "Point", + * "coordinates": [28.965797, 41.010086] + * } + * }; + * var against = { + * "type": "FeatureCollection", + * "features": [ + * { + * "type": "Feature", + * "properties": {}, + * "geometry": { + * "type": "Point", + * "coordinates": [28.973865, 41.011122] + * } + * }, { + * "type": "Feature", + * "properties": {}, + * "geometry": { + * "type": "Point", + * "coordinates": [28.948459, 41.024204] + * } + * }, { + * "type": "Feature", + * "properties": {}, + * "geometry": { + * "type": "Point", + * "coordinates": [28.938674, 41.013324] + * } + * } + * ] + * }; + * + * var nearest = turf.nearest(point, against); + * nearest.properties['marker-color'] = '#f00'; + * + * var resultFeatures = against.features.concat(point); + * var result = { + * "type": "FeatureCollection", + * "features": resultFeatures + * }; + * + * //=result + */ +module.exports = function (targetPoint, points) { + var nearestPoint, minDist = Infinity; + for (var i = 0; i < points.features.length; i++) { + var distanceToPoint = distance(targetPoint, points.features[i], 'miles'); + if (distanceToPoint < minDist) { + nearestPoint = points.features[i]; + minDist = distanceToPoint; + } + } + return nearestPoint; +}; diff --git a/packages/turf-nearest/package.json b/packages/turf-nearest/package.json new file mode 100644 index 0000000000..3465b4f71b --- /dev/null +++ b/packages/turf-nearest/package.json @@ -0,0 +1,32 @@ +{ + "name": "turf-nearest", + "version": "3.0.5", + "description": "turf nearest module", + "main": "index.js", + "scripts": { + "test": "node test.js" + }, + "repository": { + "type": "git", + "url": "https://github.com/Turfjs/turf-nearest.git" + }, + "keywords": [ + "turf", + "geojson", + "gis", + "near" + ], + "author": "morganherlocker", + "license": "MIT", + "bugs": { + "url": "https://github.com/Turfjs/turf-nearest/issues" + }, + "homepage": "https://github.com/Turfjs/turf-nearest", + "devDependencies": { + "benchmark": "^1.0.0", + "tape": "^3.5.0" + }, + "dependencies": { + "turf-distance": "^3.0.5" + } +} diff --git a/packages/turf-nearest/test.js b/packages/turf-nearest/test.js new file mode 100644 index 0000000000..95cb476b38 --- /dev/null +++ b/packages/turf-nearest/test.js @@ -0,0 +1,16 @@ +var test = require('tape'); +var nearest = require('./'); +var fs = require('fs'); + +test('distance', function(t){ + var pt = JSON.parse(fs.readFileSync(__dirname+'/test/pt.geojson')); + var pts = JSON.parse(fs.readFileSync(__dirname+'/test/pts.geojson')); + + var closestPt = nearest(pt, pts); + + t.ok(closestPt, 'should return a point'); + t.equal(closestPt.geometry.type, 'Point', 'should be a point'); + t.equal(closestPt.geometry.coordinates[0], -75.33, 'lon -75.33'); + t.equal(closestPt.geometry.coordinates[1], 39.44, 'lat 39.44'); + t.end(); +}); diff --git a/packages/turf-nearest/test/pt.geojson b/packages/turf-nearest/test/pt.geojson new file mode 100644 index 0000000000..8c290bfe3f --- /dev/null +++ b/packages/turf-nearest/test/pt.geojson @@ -0,0 +1,8 @@ +{ + "type": "Feature", + "geometry": {"type": "Point", "coordinates": [-75.4, 39.4]}, + "properties": { + "name": "Location A", + "category": "Store" + } +} \ No newline at end of file diff --git a/packages/turf-nearest/test/pts.geojson b/packages/turf-nearest/test/pts.geojson new file mode 100644 index 0000000000..966478da70 --- /dev/null +++ b/packages/turf-nearest/test/pts.geojson @@ -0,0 +1,141 @@ + { + "type": "FeatureCollection", + "features": [ + { "type": "Feature", + "geometry": {"type": "Point", "coordinates": [-75.833, 39.284]}, + "properties": { + "name": "Location B", + "category": "House", + "elevation": 25 + } + }, + { "type": "Feature", + "geometry": {"type": "Point", "coordinates": [-75.6, 39.984]}, + "properties": { + "name": "Location A", + "category": "Store", + "elevation": 23 + } + }, + { "type": "Feature", + "geometry": {"type": "Point", "coordinates": [ -75.221, 39.125]}, + "properties": { + "name": "Location C", + "category": "Office", + "elevation": 29 + } + }, + { "type": "Feature", + "geometry": {"type": "Point", "coordinates": [-75.358, 39.987]}, + "properties": { + "name": "Location A", + "category": "Store", + "elevation": 12 + } + }, + { "type": "Feature", + "geometry": {"type": "Point", "coordinates": [-75.9221, 39.27]}, + "properties": { + "name": "Location B", + "category": "House", + "elevation": 11 + } + }, + { "type": "Feature", + "geometry": {"type": "Point", "coordinates": [ -75.534, 39.123]}, + "properties": { + "name": "Location C", + "category": "Office", + "elevation": 49 + } + }, + { "type": "Feature", + "geometry": {"type": "Point", "coordinates": [-75.21, 39.12]}, + "properties": { + "name": "Location A", + "category": "Store", + "elevation": 50 + } + }, + { "type": "Feature", + "geometry": {"type": "Point", "coordinates": [-75.22, 39.33]}, + "properties": { + "name": "Location B", + "category": "House", + "elevation": 90 + } + }, + { "type": "Feature", + "geometry": {"type": "Point", "coordinates": [ -75.44, 39.55]}, + "properties": { + "name": "Location C", + "category": "Office", + "elevation": 22 + } + }, + { "type": "Feature", + "geometry": {"type": "Point", "coordinates": [-75.77, 39.66]}, + "properties": { + "name": "Location A", + "category": "Store", + "elevation": 99 + } + }, + { "type": "Feature", + "geometry": {"type": "Point", "coordinates": [-75.44, 39.11]}, + "properties": { + "name": "Location B", + "category": "House", + "elevation": 55 + } + }, + { "type": "Feature", + "geometry": {"type": "Point", "coordinates": [ -75.05, 39.92]}, + "properties": { + "name": "Location C", + "category": "Office", + "elevation": 41 + } + }, + { "type": "Feature", + "geometry": {"type": "Point", "coordinates": [-75.88, 39.98]}, + "properties": { + "name": "Location A", + "category": "Store", + "elevation": 52 + } + }, + { "type": "Feature", + "geometry": {"type": "Point", "coordinates": [-75.55, 39.55]}, + "properties": { + "name": "Location B", + "category": "House", + "elevation": 143 + } + }, + { "type": "Feature", + "geometry": {"type": "Point", "coordinates": [ -75.33, 39.44]}, + "properties": { + "name": "Location C", + "category": "Office", + "elevation": 76 + } + }, + { "type": "Feature", + "geometry": {"type": "Point", "coordinates": [ -75.56, 39.24]}, + "properties": { + "name": "Location C", + "category": "Office", + "elevation": 18 + } + }, + { "type": "Feature", + "geometry": {"type": "Point", "coordinates": [ -75.56, 39.36]}, + "properties": { + "name": "Location C", + "category": "Office", + "elevation": 52 + } + } + ] + } \ No newline at end of file diff --git a/packages/turf-planepoint/.npmignore b/packages/turf-planepoint/.npmignore new file mode 100644 index 0000000000..bb3c08c09a --- /dev/null +++ b/packages/turf-planepoint/.npmignore @@ -0,0 +1,2 @@ +test +coverage diff --git a/packages/turf-planepoint/LICENSE b/packages/turf-planepoint/LICENSE new file mode 100644 index 0000000000..64fb8e99a3 --- /dev/null +++ b/packages/turf-planepoint/LICENSE @@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) 2014 Morgan Herlocker + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. \ No newline at end of file diff --git a/packages/turf-planepoint/README.md b/packages/turf-planepoint/README.md new file mode 100644 index 0000000000..dcbc48bc0d --- /dev/null +++ b/packages/turf-planepoint/README.md @@ -0,0 +1,86 @@ +# turf-planepoint + +[![build status](https://secure.travis-ci.org/Turfjs/turf-planepoint.png)](http://travis-ci.org/Turfjs/turf-planepoint) + +turf planepoint module + + +### `turf.planepoint(interpolatedPoint, triangle)` + +Takes a triangular plane as a Polygon +and a Point within that triangle and returns the z-value +at that point. The Polygon needs to have properties `a`, `b`, and `c` +that define the values at its three corners. + + +### Parameters + +| parameter | type | description | +| ------------------- | -------------------- | ------------------------------------------------ | +| `interpolatedPoint` | Feature\.\ | the Point for which a z-value will be calculated | +| `triangle` | Feature\.\ | a Polygon feature with three vertices | + + +### Example + +```js +var point = { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [-75.3221, 39.529] + } +}; +var point = turf.point([-75.3221, 39.529]); +// triangle is a polygon with "a", "b", +// and "c" values representing +// the values of the coordinates in order. +var triangle = { + "type": "Feature", + "properties": { + "a": 11, + "b": 122, + "c": 44 + }, + "geometry": { + "type": "Polygon", + "coordinates": [[ + [-75.1221, 39.57], + [-75.58, 39.18], + [-75.97, 39.86], + [-75.1221, 39.57] + ]] + } +}; + +var features = { + "type": "FeatureCollection", + "features": [triangle, point] +}; + +var zValue = turf.planepoint(point, triangle); + +//=features + +//=zValue +``` + + +**Returns** `Number`, the z-value for `interpolatedPoint` + +## Installation + +Requires [nodejs](http://nodejs.org/). + +```sh +$ npm install turf-planepoint +``` + +## Tests + +```sh +$ npm test +``` + + diff --git a/packages/turf-planepoint/bench.js b/packages/turf-planepoint/bench.js new file mode 100644 index 0000000000..eda1edd225 --- /dev/null +++ b/packages/turf-planepoint/bench.js @@ -0,0 +1,28 @@ +var planepoint = require('./'); +var Benchmark = require('benchmark'); +var fs = require('fs'); + +var triangle = JSON.parse(fs.readFileSync(__dirname+'/test/Triangle.geojson')); +var point = { + type: "Feature", + geometry: { + type: "Point", + coordinates: [ + -75.3221, + 39.529 + ] + } +}; + +var suite = new Benchmark.Suite('turf-planepoint'); +suite + .add('turf-planepoint',function () { + planepoint(point, triangle); + }) + .on('cycle', function (event) { + console.log(String(event.target)); + }) + .on('complete', function () { + + }) + .run(); diff --git a/packages/turf-planepoint/index.js b/packages/turf-planepoint/index.js new file mode 100644 index 0000000000..df686e8334 --- /dev/null +++ b/packages/turf-planepoint/index.js @@ -0,0 +1,73 @@ +/** + * Takes a triangular plane as a {@link Polygon} + * and a {@link Point} within that triangle and returns the z-value + * at that point. The Polygon needs to have properties `a`, `b`, and `c` + * that define the values at its three corners. + * + * @name planepoint + * @category interpolation + * @param {Feature} interpolatedPoint the Point for which a z-value will be calculated + * @param {Feature} triangle a Polygon feature with three vertices + * @return {Number} the z-value for `interpolatedPoint` + * @example + * var point = { + * "type": "Feature", + * "properties": {}, + * "geometry": { + * "type": "Point", + * "coordinates": [-75.3221, 39.529] + * } + * }; + * var point = turf.point([-75.3221, 39.529]); + * // triangle is a polygon with "a", "b", + * // and "c" values representing + * // the values of the coordinates in order. + * var triangle = { + * "type": "Feature", + * "properties": { + * "a": 11, + * "b": 122, + * "c": 44 + * }, + * "geometry": { + * "type": "Polygon", + * "coordinates": [[ + * [-75.1221, 39.57], + * [-75.58, 39.18], + * [-75.97, 39.86], + * [-75.1221, 39.57] + * ]] + * } + * }; + * + * var features = { + * "type": "FeatureCollection", + * "features": [triangle, point] + * }; + * + * var zValue = turf.planepoint(point, triangle); + * + * //=features + * + * //=zValue + */ +module.exports = function (point, triangle) { + var x = point.geometry.coordinates[0], + y = point.geometry.coordinates[1], + x1 = triangle.geometry.coordinates[0][0][0], + y1 = triangle.geometry.coordinates[0][0][1], + z1 = triangle.properties.a, + x2 = triangle.geometry.coordinates[0][1][0], + y2 = triangle.geometry.coordinates[0][1][1], + z2 = triangle.properties.b, + x3 = triangle.geometry.coordinates[0][2][0], + y3 = triangle.geometry.coordinates[0][2][1], + z3 = triangle.properties.c; + + var z = (z3 * (x - x1) * (y - y2) + z1 * (x - x2) * (y - y3) + z2 * (x - x3) * (y - y1) - + z2 * (x - x1) * (y - y3) - z3 * (x - x2) * (y - y1) - z1 * (x - x3) * (y - y2)) / + ((x - x1) * (y - y2) + (x - x2) * (y - y3) + (x - x3) * (y - y1) - + (x - x1) * (y - y3) - (x - x2) * (y - y1) - (x - x3) * (y - y2)); + + return z; +}; diff --git a/packages/turf-planepoint/package.json b/packages/turf-planepoint/package.json new file mode 100644 index 0000000000..cdb858ce34 --- /dev/null +++ b/packages/turf-planepoint/package.json @@ -0,0 +1,30 @@ +{ + "name": "turf-planepoint", + "version": "3.0.1", + "description": "turf planepoint module", + "main": "index.js", + "scripts": { + "test": "tape test.js" + }, + "repository": { + "type": "git", + "url": "https://github.com/Turfjs/turf-planepoint.git" + }, + "keywords": [ + "turf", + "geojson", + "plane", + "point", + "interpolation" + ], + "author": "morganherlocker", + "license": "MIT", + "bugs": { + "url": "https://github.com/Turfjs/turf-planepoint/issues" + }, + "homepage": "https://github.com/Turfjs/turf-planepoint", + "devDependencies": { + "benchmark": "^1.0.0", + "tape": "^3.5.0" + } +} diff --git a/packages/turf-planepoint/test.js b/packages/turf-planepoint/test.js new file mode 100644 index 0000000000..f26ea19eda --- /dev/null +++ b/packages/turf-planepoint/test.js @@ -0,0 +1,26 @@ +// http://math.stackexchange.com/questions/28043/finding-the-z-value-on-a-plane-with-x-y-values +// http://stackoverflow.com/a/13916669/461015 +var test = require('tape'); +var fs = require('fs'); +var planepoint = require('./'); + +test('planepoint', function(t){ + var triangle = JSON.parse(fs.readFileSync(__dirname+'/test/Triangle.geojson')); + var point = { + type: "Feature", + geometry: { + type: "Point", + coordinates: [ + -75.3221, + 39.529 + ] + } + }; + + var z = planepoint(point, triangle); + + t.ok(z, 'should return the z value of a point on a plane'); + + t.end(); +}); + diff --git a/packages/turf-planepoint/test/Triangle.geojson b/packages/turf-planepoint/test/Triangle.geojson new file mode 100644 index 0000000000..a9568ca058 --- /dev/null +++ b/packages/turf-planepoint/test/Triangle.geojson @@ -0,0 +1,27 @@ +{ + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -75.1221, + 39.57 + ], + [ + -75.58, + 39.18 + ], + [ + -75.97, + 39.86 + ] + ] + ] + }, + "properties": { + "a": 11, + "b": 122, + "c": 44 + } +} \ No newline at end of file diff --git a/packages/turf-point-grid/.npmignore b/packages/turf-point-grid/.npmignore new file mode 100644 index 0000000000..bb3c08c09a --- /dev/null +++ b/packages/turf-point-grid/.npmignore @@ -0,0 +1,2 @@ +test +coverage diff --git a/packages/turf-point-grid/LICENSE b/packages/turf-point-grid/LICENSE new file mode 100644 index 0000000000..64fb8e99a3 --- /dev/null +++ b/packages/turf-point-grid/LICENSE @@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) 2014 Morgan Herlocker + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. \ No newline at end of file diff --git a/packages/turf-point-grid/README.md b/packages/turf-point-grid/README.md new file mode 100644 index 0000000000..69d1bdf1f2 --- /dev/null +++ b/packages/turf-point-grid/README.md @@ -0,0 +1,51 @@ +# turf-point-grid + +[![build status](https://secure.travis-ci.org/Turfjs/turf-point-grid.png)](http://travis-ci.org/Turfjs/turf-point-grid) + + + + +### `turf.point-grid(extent, cellWidth, units)` + +Takes a bounding box and a cell depth and returns a set of Point|points in a grid. + + +### Parameters + +| parameter | type | description | +| ----------- | ----------------- | ------------------------------------------------------- | +| `extent` | Array\.\ | extent in [minX, minY, maxX, maxY] order | +| `cellWidth` | Number | the distance across each cell | +| `units` | String | used in calculating cellWidth ('miles' or 'kilometers') | + + +### Example + +```js +var extent = [-70.823364, -33.553984, -70.473175, -33.302986]; +var cellWidth = 3; +var units = 'miles'; + +var grid = turf.pointGrid(extent, cellWidth, units); + +//=grid +``` + + +**Returns** `FeatureCollection.`, grid of points + +## Installation + +Requires [nodejs](http://nodejs.org/). + +```sh +$ npm install turf-point-grid +``` + +## Tests + +```sh +$ npm test +``` + + diff --git a/packages/turf-point-grid/bench.js b/packages/turf-point-grid/bench.js new file mode 100644 index 0000000000..3ab013cc7f --- /dev/null +++ b/packages/turf-point-grid/bench.js @@ -0,0 +1,33 @@ +var grid = require('./'); +var Benchmark = require('benchmark'); +var fs = require('fs'); + +var bbox1 = [ + -96.6357421875, + 31.12819929911196, + -84.9462890625, + 40.58058466412764 + ]; + +var highres = grid(bbox1, 100, 'miles').features.length; +var midres = grid(bbox1, 10, 'miles').features.length; +var lowres = grid(bbox1, 1, 'miles').features.length; + +var suite = new Benchmark.Suite('turf-point-grid'); +suite + .add('turf-point-grid -- '+highres+' cells',function () { + grid(bbox1, 100, 'miles'); + }) + .add('turf-point-grid -- '+midres+' cells',function () { + grid(bbox1, 10, 'miles'); + }) + .add('turf-point-grid -- '+lowres+' cells',function () { + grid(bbox1, 1, 'miles'); + }) + .on('cycle', function (event) { + console.log(String(event.target)); + }) + .on('complete', function () { + + }) + .run(); \ No newline at end of file diff --git a/packages/turf-point-grid/index.js b/packages/turf-point-grid/index.js new file mode 100644 index 0000000000..accfe792d3 --- /dev/null +++ b/packages/turf-point-grid/index.js @@ -0,0 +1,41 @@ +var point = require('turf-helpers').point; +var featurecollection = require('turf-helpers').featureCollection; +var distance = require('turf-distance'); +/** + * Takes a bounding box and a cell depth and returns a set of {@link Point|points} in a grid. + * + * @name pointGrid + * @category interpolation + * @param {Array} extent extent in [minX, minY, maxX, maxY] order + * @param {Number} cellWidth the distance across each cell + * @param {String=kilometers} units used in calculating cellWidth + * @return {FeatureCollection} grid of points + * @example + * var extent = [-70.823364, -33.553984, -70.473175, -33.302986]; + * var cellWidth = 3; + * var units = 'miles'; + * + * var grid = turf.pointGrid(extent, cellWidth, units); + * + * //=grid + */ +module.exports = function pointGrid(bbox, cell, units) { + var fc = featurecollection([]); + var xFraction = cell / (distance(point([bbox[0], bbox[1]]), point([bbox[2], bbox[1]]), units)); + var cellWidth = xFraction * (bbox[2] - bbox[0]); + var yFraction = cell / (distance(point([bbox[0], bbox[1]]), point([bbox[0], bbox[3]]), units)); + var cellHeight = yFraction * (bbox[3] - bbox[1]); + + var currentX = bbox[0]; + while (currentX <= bbox[2]) { + var currentY = bbox[1]; + while (currentY <= bbox[3]) { + fc.features.push(point([currentX, currentY])); + + currentY += cellHeight; + } + currentX += cellWidth; + } + + return fc; +}; diff --git a/packages/turf-point-grid/package.json b/packages/turf-point-grid/package.json new file mode 100644 index 0000000000..a1ac25dd4e --- /dev/null +++ b/packages/turf-point-grid/package.json @@ -0,0 +1,34 @@ +{ + "name": "turf-point-grid", + "version": "3.0.5", + "description": "", + "main": "index.js", + "scripts": { + "test": "tape test.js" + }, + "repository": { + "type": "git", + "url": "https://github.com/Turfjs/turf-point-grid.git" + }, + "keywords": [ + "turf", + "grid", + "points", + "geojson" + ], + "author": "morganherlocker", + "license": "MIT", + "bugs": { + "url": "https://github.com/Turfjs/turf-point-grid/issues" + }, + "homepage": "https://github.com/Turfjs/turf-point-grid", + "devDependencies": { + "benchmark": "^1.0.0", + "tape": "^3.5.0", + "turf-bbox-polygon": "^3.0.5" + }, + "dependencies": { + "turf-distance": "^3.0.5", + "turf-helpers": "^3.0.5" + } +} diff --git a/packages/turf-point-grid/test.js b/packages/turf-point-grid/test.js new file mode 100644 index 0000000000..86314140c3 --- /dev/null +++ b/packages/turf-point-grid/test.js @@ -0,0 +1,62 @@ +var test = require('tape'); +var grid = require('./'); +var fs = require('fs'); +var bboxPolygon = require('turf-bbox-polygon'); + +test('point-grid', function (t) { + var bbox1 = [ + -96.6357421875, + 31.12819929911196, + -84.9462890625, + 40.58058466412764 + ]; + var bbox2 = [ + -81.650390625, + 24.926294766395593, + -79.8486328125, + 26.43122806450644 + ]; + var bbox3 = [ + -77.3876953125, + 38.71980474264239, + -76.9482421875, + 39.027718840211605 + ]; + var bbox4 = [ + 63.6328125, + 11.867350911459308, + 75.234375, + 47.754097979680026 + ]; + + var grid1 = grid(bbox1, 50, 'miles'); + var grid2 = grid(bbox2, 5, 'miles'); + var grid3 = grid(bbox3, 2, 'miles'); + var grid4 = grid(bbox4, 50, 'miles'); + + t.ok(grid1.features.length); + t.ok(grid2.features.length); + t.ok(grid3.features.length); + t.ok(grid4.features.length); + + grid1.features.push(referencePoly(bbox1)); + grid2.features.push(referencePoly(bbox2)); + grid3.features.push(referencePoly(bbox3)); + grid4.features.push(referencePoly(bbox4)); + + fs.writeFileSync(__dirname+'/test/out/grid1.geojson', JSON.stringify(grid1,null,2)); + fs.writeFileSync(__dirname+'/test/out/grid2.geojson', JSON.stringify(grid2,null,2)); + fs.writeFileSync(__dirname+'/test/out/grid3.geojson', JSON.stringify(grid3,null,2)); + fs.writeFileSync(__dirname+'/test/out/grid4.geojson', JSON.stringify(grid4,null,2)); + + t.end(); +}); + +function referencePoly (bbox) { + var poly = bboxPolygon(bbox); + poly.properties = { + 'fill-opacity': 0, + stroke: '#0ff' + }; + return poly; +} diff --git a/packages/turf-point-grid/test/out/grid1.geojson b/packages/turf-point-grid/test/out/grid1.geojson new file mode 100644 index 0000000000..c73f63f782 --- /dev/null +++ b/packages/turf-point-grid/test/out/grid1.geojson @@ -0,0 +1,2195 @@ +{ + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -96.6357421875, + 31.12819929911196 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -96.6357421875, + 31.851630858620574 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -96.6357421875, + 32.57506241812919 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -96.6357421875, + 33.298493977637804 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -96.6357421875, + 34.021925537146416 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -96.6357421875, + 34.74535709665503 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -96.6357421875, + 35.46878865616364 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -96.6357421875, + 36.19222021567225 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -96.6357421875, + 36.91565177518086 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -96.6357421875, + 37.639083334689474 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -96.6357421875, + 38.362514894198085 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -96.6357421875, + 39.0859464537067 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -96.6357421875, + 39.80937801321531 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -96.6357421875, + 40.53280957272392 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -95.79023143095539, + 31.12819929911196 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -95.79023143095539, + 31.851630858620574 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -95.79023143095539, + 32.57506241812919 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -95.79023143095539, + 33.298493977637804 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -95.79023143095539, + 34.021925537146416 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -95.79023143095539, + 34.74535709665503 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -95.79023143095539, + 35.46878865616364 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -95.79023143095539, + 36.19222021567225 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -95.79023143095539, + 36.91565177518086 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -95.79023143095539, + 37.639083334689474 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -95.79023143095539, + 38.362514894198085 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -95.79023143095539, + 39.0859464537067 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -95.79023143095539, + 39.80937801321531 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -95.79023143095539, + 40.53280957272392 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -94.94472067441077, + 31.12819929911196 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -94.94472067441077, + 31.851630858620574 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -94.94472067441077, + 32.57506241812919 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -94.94472067441077, + 33.298493977637804 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -94.94472067441077, + 34.021925537146416 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -94.94472067441077, + 34.74535709665503 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -94.94472067441077, + 35.46878865616364 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -94.94472067441077, + 36.19222021567225 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -94.94472067441077, + 36.91565177518086 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -94.94472067441077, + 37.639083334689474 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -94.94472067441077, + 38.362514894198085 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -94.94472067441077, + 39.0859464537067 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -94.94472067441077, + 39.80937801321531 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -94.94472067441077, + 40.53280957272392 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -94.09920991786616, + 31.12819929911196 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -94.09920991786616, + 31.851630858620574 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -94.09920991786616, + 32.57506241812919 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -94.09920991786616, + 33.298493977637804 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -94.09920991786616, + 34.021925537146416 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -94.09920991786616, + 34.74535709665503 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -94.09920991786616, + 35.46878865616364 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -94.09920991786616, + 36.19222021567225 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -94.09920991786616, + 36.91565177518086 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -94.09920991786616, + 37.639083334689474 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -94.09920991786616, + 38.362514894198085 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -94.09920991786616, + 39.0859464537067 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -94.09920991786616, + 39.80937801321531 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -94.09920991786616, + 40.53280957272392 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -93.25369916132155, + 31.12819929911196 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -93.25369916132155, + 31.851630858620574 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -93.25369916132155, + 32.57506241812919 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -93.25369916132155, + 33.298493977637804 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -93.25369916132155, + 34.021925537146416 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -93.25369916132155, + 34.74535709665503 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -93.25369916132155, + 35.46878865616364 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -93.25369916132155, + 36.19222021567225 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -93.25369916132155, + 36.91565177518086 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -93.25369916132155, + 37.639083334689474 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -93.25369916132155, + 38.362514894198085 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -93.25369916132155, + 39.0859464537067 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -93.25369916132155, + 39.80937801321531 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -93.25369916132155, + 40.53280957272392 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -92.40818840477694, + 31.12819929911196 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -92.40818840477694, + 31.851630858620574 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -92.40818840477694, + 32.57506241812919 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -92.40818840477694, + 33.298493977637804 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -92.40818840477694, + 34.021925537146416 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -92.40818840477694, + 34.74535709665503 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -92.40818840477694, + 35.46878865616364 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -92.40818840477694, + 36.19222021567225 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -92.40818840477694, + 36.91565177518086 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -92.40818840477694, + 37.639083334689474 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -92.40818840477694, + 38.362514894198085 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -92.40818840477694, + 39.0859464537067 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -92.40818840477694, + 39.80937801321531 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -92.40818840477694, + 40.53280957272392 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -91.56267764823232, + 31.12819929911196 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -91.56267764823232, + 31.851630858620574 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -91.56267764823232, + 32.57506241812919 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -91.56267764823232, + 33.298493977637804 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -91.56267764823232, + 34.021925537146416 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -91.56267764823232, + 34.74535709665503 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -91.56267764823232, + 35.46878865616364 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -91.56267764823232, + 36.19222021567225 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -91.56267764823232, + 36.91565177518086 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -91.56267764823232, + 37.639083334689474 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -91.56267764823232, + 38.362514894198085 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -91.56267764823232, + 39.0859464537067 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -91.56267764823232, + 39.80937801321531 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -91.56267764823232, + 40.53280957272392 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -90.71716689168771, + 31.12819929911196 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -90.71716689168771, + 31.851630858620574 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -90.71716689168771, + 32.57506241812919 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -90.71716689168771, + 33.298493977637804 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -90.71716689168771, + 34.021925537146416 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -90.71716689168771, + 34.74535709665503 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -90.71716689168771, + 35.46878865616364 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -90.71716689168771, + 36.19222021567225 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -90.71716689168771, + 36.91565177518086 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -90.71716689168771, + 37.639083334689474 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -90.71716689168771, + 38.362514894198085 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -90.71716689168771, + 39.0859464537067 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -90.71716689168771, + 39.80937801321531 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -90.71716689168771, + 40.53280957272392 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -89.8716561351431, + 31.12819929911196 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -89.8716561351431, + 31.851630858620574 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -89.8716561351431, + 32.57506241812919 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -89.8716561351431, + 33.298493977637804 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -89.8716561351431, + 34.021925537146416 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -89.8716561351431, + 34.74535709665503 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -89.8716561351431, + 35.46878865616364 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -89.8716561351431, + 36.19222021567225 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -89.8716561351431, + 36.91565177518086 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -89.8716561351431, + 37.639083334689474 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -89.8716561351431, + 38.362514894198085 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -89.8716561351431, + 39.0859464537067 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -89.8716561351431, + 39.80937801321531 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -89.8716561351431, + 40.53280957272392 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -89.02614537859849, + 31.12819929911196 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -89.02614537859849, + 31.851630858620574 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -89.02614537859849, + 32.57506241812919 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -89.02614537859849, + 33.298493977637804 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -89.02614537859849, + 34.021925537146416 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -89.02614537859849, + 34.74535709665503 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -89.02614537859849, + 35.46878865616364 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -89.02614537859849, + 36.19222021567225 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -89.02614537859849, + 36.91565177518086 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -89.02614537859849, + 37.639083334689474 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -89.02614537859849, + 38.362514894198085 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -89.02614537859849, + 39.0859464537067 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -89.02614537859849, + 39.80937801321531 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -89.02614537859849, + 40.53280957272392 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -88.18063462205387, + 31.12819929911196 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -88.18063462205387, + 31.851630858620574 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -88.18063462205387, + 32.57506241812919 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -88.18063462205387, + 33.298493977637804 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -88.18063462205387, + 34.021925537146416 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -88.18063462205387, + 34.74535709665503 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -88.18063462205387, + 35.46878865616364 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -88.18063462205387, + 36.19222021567225 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -88.18063462205387, + 36.91565177518086 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -88.18063462205387, + 37.639083334689474 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -88.18063462205387, + 38.362514894198085 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -88.18063462205387, + 39.0859464537067 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -88.18063462205387, + 39.80937801321531 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -88.18063462205387, + 40.53280957272392 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -87.33512386550926, + 31.12819929911196 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -87.33512386550926, + 31.851630858620574 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -87.33512386550926, + 32.57506241812919 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -87.33512386550926, + 33.298493977637804 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -87.33512386550926, + 34.021925537146416 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -87.33512386550926, + 34.74535709665503 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -87.33512386550926, + 35.46878865616364 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -87.33512386550926, + 36.19222021567225 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -87.33512386550926, + 36.91565177518086 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -87.33512386550926, + 37.639083334689474 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -87.33512386550926, + 38.362514894198085 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -87.33512386550926, + 39.0859464537067 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -87.33512386550926, + 39.80937801321531 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -87.33512386550926, + 40.53280957272392 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -86.48961310896465, + 31.12819929911196 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -86.48961310896465, + 31.851630858620574 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -86.48961310896465, + 32.57506241812919 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -86.48961310896465, + 33.298493977637804 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -86.48961310896465, + 34.021925537146416 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -86.48961310896465, + 34.74535709665503 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -86.48961310896465, + 35.46878865616364 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -86.48961310896465, + 36.19222021567225 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -86.48961310896465, + 36.91565177518086 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -86.48961310896465, + 37.639083334689474 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -86.48961310896465, + 38.362514894198085 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -86.48961310896465, + 39.0859464537067 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -86.48961310896465, + 39.80937801321531 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -86.48961310896465, + 40.53280957272392 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -85.64410235242003, + 31.12819929911196 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -85.64410235242003, + 31.851630858620574 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -85.64410235242003, + 32.57506241812919 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -85.64410235242003, + 33.298493977637804 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -85.64410235242003, + 34.021925537146416 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -85.64410235242003, + 34.74535709665503 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -85.64410235242003, + 35.46878865616364 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -85.64410235242003, + 36.19222021567225 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -85.64410235242003, + 36.91565177518086 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -85.64410235242003, + 37.639083334689474 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -85.64410235242003, + 38.362514894198085 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -85.64410235242003, + 39.0859464537067 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -85.64410235242003, + 39.80937801321531 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -85.64410235242003, + 40.53280957272392 + ] + } + }, + { + "type": "Feature", + "properties": { + "fill-opacity": 0, + "stroke": "#0ff" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.6357421875, + 31.12819929911196 + ], + [ + -84.9462890625, + 31.12819929911196 + ], + [ + -84.9462890625, + 40.58058466412764 + ], + [ + -96.6357421875, + 40.58058466412764 + ], + [ + -96.6357421875, + 31.12819929911196 + ] + ] + ] + } + } + ] +} \ No newline at end of file diff --git a/packages/turf-point-grid/test/out/grid2.geojson b/packages/turf-point-grid/test/out/grid2.geojson new file mode 100644 index 0000000000..2c302eccc5 --- /dev/null +++ b/packages/turf-point-grid/test/out/grid2.geojson @@ -0,0 +1,5352 @@ +{ + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -81.650390625, + 24.926294766395593 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -81.650390625, + 24.998637922346454 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -81.650390625, + 25.070981078297315 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -81.650390625, + 25.143324234248176 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -81.650390625, + 25.215667390199037 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -81.650390625, + 25.2880105461499 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -81.650390625, + 25.36035370210076 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -81.650390625, + 25.43269685805162 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -81.650390625, + 25.505040014002482 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -81.650390625, + 25.577383169953343 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -81.650390625, + 25.649726325904204 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -81.650390625, + 25.722069481855065 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -81.650390625, + 25.794412637805927 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -81.650390625, + 25.866755793756788 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -81.650390625, + 25.93909894970765 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -81.650390625, + 26.01144210565851 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -81.650390625, + 26.08378526160937 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -81.650390625, + 26.156128417560232 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -81.650390625, + 26.228471573511094 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -81.650390625, + 26.300814729461955 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -81.650390625, + 26.373157885412816 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -81.57061598730647, + 24.926294766395593 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -81.57061598730647, + 24.998637922346454 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -81.57061598730647, + 25.070981078297315 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -81.57061598730647, + 25.143324234248176 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -81.57061598730647, + 25.215667390199037 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -81.57061598730647, + 25.2880105461499 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -81.57061598730647, + 25.36035370210076 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -81.57061598730647, + 25.43269685805162 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -81.57061598730647, + 25.505040014002482 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -81.57061598730647, + 25.577383169953343 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -81.57061598730647, + 25.649726325904204 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -81.57061598730647, + 25.722069481855065 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -81.57061598730647, + 25.794412637805927 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -81.57061598730647, + 25.866755793756788 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -81.57061598730647, + 25.93909894970765 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -81.57061598730647, + 26.01144210565851 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -81.57061598730647, + 26.08378526160937 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -81.57061598730647, + 26.156128417560232 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -81.57061598730647, + 26.228471573511094 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -81.57061598730647, + 26.300814729461955 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -81.57061598730647, + 26.373157885412816 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -81.49084134961294, + 24.926294766395593 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -81.49084134961294, + 24.998637922346454 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -81.49084134961294, + 25.070981078297315 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -81.49084134961294, + 25.143324234248176 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -81.49084134961294, + 25.215667390199037 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -81.49084134961294, + 25.2880105461499 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -81.49084134961294, + 25.36035370210076 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -81.49084134961294, + 25.43269685805162 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -81.49084134961294, + 25.505040014002482 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -81.49084134961294, + 25.577383169953343 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -81.49084134961294, + 25.649726325904204 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -81.49084134961294, + 25.722069481855065 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -81.49084134961294, + 25.794412637805927 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -81.49084134961294, + 25.866755793756788 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -81.49084134961294, + 25.93909894970765 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -81.49084134961294, + 26.01144210565851 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -81.49084134961294, + 26.08378526160937 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -81.49084134961294, + 26.156128417560232 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -81.49084134961294, + 26.228471573511094 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -81.49084134961294, + 26.300814729461955 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -81.49084134961294, + 26.373157885412816 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -81.4110667119194, + 24.926294766395593 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -81.4110667119194, + 24.998637922346454 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -81.4110667119194, + 25.070981078297315 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -81.4110667119194, + 25.143324234248176 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -81.4110667119194, + 25.215667390199037 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -81.4110667119194, + 25.2880105461499 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -81.4110667119194, + 25.36035370210076 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -81.4110667119194, + 25.43269685805162 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -81.4110667119194, + 25.505040014002482 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -81.4110667119194, + 25.577383169953343 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -81.4110667119194, + 25.649726325904204 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -81.4110667119194, + 25.722069481855065 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -81.4110667119194, + 25.794412637805927 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -81.4110667119194, + 25.866755793756788 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -81.4110667119194, + 25.93909894970765 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -81.4110667119194, + 26.01144210565851 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -81.4110667119194, + 26.08378526160937 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -81.4110667119194, + 26.156128417560232 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -81.4110667119194, + 26.228471573511094 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -81.4110667119194, + 26.300814729461955 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -81.4110667119194, + 26.373157885412816 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -81.33129207422587, + 24.926294766395593 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -81.33129207422587, + 24.998637922346454 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -81.33129207422587, + 25.070981078297315 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -81.33129207422587, + 25.143324234248176 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -81.33129207422587, + 25.215667390199037 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -81.33129207422587, + 25.2880105461499 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -81.33129207422587, + 25.36035370210076 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -81.33129207422587, + 25.43269685805162 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -81.33129207422587, + 25.505040014002482 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -81.33129207422587, + 25.577383169953343 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -81.33129207422587, + 25.649726325904204 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -81.33129207422587, + 25.722069481855065 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -81.33129207422587, + 25.794412637805927 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -81.33129207422587, + 25.866755793756788 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -81.33129207422587, + 25.93909894970765 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -81.33129207422587, + 26.01144210565851 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -81.33129207422587, + 26.08378526160937 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -81.33129207422587, + 26.156128417560232 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -81.33129207422587, + 26.228471573511094 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -81.33129207422587, + 26.300814729461955 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -81.33129207422587, + 26.373157885412816 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -81.25151743653234, + 24.926294766395593 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -81.25151743653234, + 24.998637922346454 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -81.25151743653234, + 25.070981078297315 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -81.25151743653234, + 25.143324234248176 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -81.25151743653234, + 25.215667390199037 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -81.25151743653234, + 25.2880105461499 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -81.25151743653234, + 25.36035370210076 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -81.25151743653234, + 25.43269685805162 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -81.25151743653234, + 25.505040014002482 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -81.25151743653234, + 25.577383169953343 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -81.25151743653234, + 25.649726325904204 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -81.25151743653234, + 25.722069481855065 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -81.25151743653234, + 25.794412637805927 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -81.25151743653234, + 25.866755793756788 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -81.25151743653234, + 25.93909894970765 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -81.25151743653234, + 26.01144210565851 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -81.25151743653234, + 26.08378526160937 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -81.25151743653234, + 26.156128417560232 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -81.25151743653234, + 26.228471573511094 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -81.25151743653234, + 26.300814729461955 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -81.25151743653234, + 26.373157885412816 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -81.1717427988388, + 24.926294766395593 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -81.1717427988388, + 24.998637922346454 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -81.1717427988388, + 25.070981078297315 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -81.1717427988388, + 25.143324234248176 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -81.1717427988388, + 25.215667390199037 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -81.1717427988388, + 25.2880105461499 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -81.1717427988388, + 25.36035370210076 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -81.1717427988388, + 25.43269685805162 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -81.1717427988388, + 25.505040014002482 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -81.1717427988388, + 25.577383169953343 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -81.1717427988388, + 25.649726325904204 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -81.1717427988388, + 25.722069481855065 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -81.1717427988388, + 25.794412637805927 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -81.1717427988388, + 25.866755793756788 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -81.1717427988388, + 25.93909894970765 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -81.1717427988388, + 26.01144210565851 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -81.1717427988388, + 26.08378526160937 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -81.1717427988388, + 26.156128417560232 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -81.1717427988388, + 26.228471573511094 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -81.1717427988388, + 26.300814729461955 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -81.1717427988388, + 26.373157885412816 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -81.09196816114527, + 24.926294766395593 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -81.09196816114527, + 24.998637922346454 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -81.09196816114527, + 25.070981078297315 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -81.09196816114527, + 25.143324234248176 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -81.09196816114527, + 25.215667390199037 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -81.09196816114527, + 25.2880105461499 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -81.09196816114527, + 25.36035370210076 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -81.09196816114527, + 25.43269685805162 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -81.09196816114527, + 25.505040014002482 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -81.09196816114527, + 25.577383169953343 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -81.09196816114527, + 25.649726325904204 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -81.09196816114527, + 25.722069481855065 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -81.09196816114527, + 25.794412637805927 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -81.09196816114527, + 25.866755793756788 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -81.09196816114527, + 25.93909894970765 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -81.09196816114527, + 26.01144210565851 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -81.09196816114527, + 26.08378526160937 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -81.09196816114527, + 26.156128417560232 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -81.09196816114527, + 26.228471573511094 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -81.09196816114527, + 26.300814729461955 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -81.09196816114527, + 26.373157885412816 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -81.01219352345174, + 24.926294766395593 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -81.01219352345174, + 24.998637922346454 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -81.01219352345174, + 25.070981078297315 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -81.01219352345174, + 25.143324234248176 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -81.01219352345174, + 25.215667390199037 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -81.01219352345174, + 25.2880105461499 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -81.01219352345174, + 25.36035370210076 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -81.01219352345174, + 25.43269685805162 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -81.01219352345174, + 25.505040014002482 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -81.01219352345174, + 25.577383169953343 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -81.01219352345174, + 25.649726325904204 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -81.01219352345174, + 25.722069481855065 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -81.01219352345174, + 25.794412637805927 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -81.01219352345174, + 25.866755793756788 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -81.01219352345174, + 25.93909894970765 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -81.01219352345174, + 26.01144210565851 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -81.01219352345174, + 26.08378526160937 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -81.01219352345174, + 26.156128417560232 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -81.01219352345174, + 26.228471573511094 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -81.01219352345174, + 26.300814729461955 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -81.01219352345174, + 26.373157885412816 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.93241888575821, + 24.926294766395593 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.93241888575821, + 24.998637922346454 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.93241888575821, + 25.070981078297315 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.93241888575821, + 25.143324234248176 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.93241888575821, + 25.215667390199037 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.93241888575821, + 25.2880105461499 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.93241888575821, + 25.36035370210076 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.93241888575821, + 25.43269685805162 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.93241888575821, + 25.505040014002482 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.93241888575821, + 25.577383169953343 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.93241888575821, + 25.649726325904204 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.93241888575821, + 25.722069481855065 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.93241888575821, + 25.794412637805927 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.93241888575821, + 25.866755793756788 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.93241888575821, + 25.93909894970765 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.93241888575821, + 26.01144210565851 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.93241888575821, + 26.08378526160937 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.93241888575821, + 26.156128417560232 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.93241888575821, + 26.228471573511094 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.93241888575821, + 26.300814729461955 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.93241888575821, + 26.373157885412816 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.85264424806468, + 24.926294766395593 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.85264424806468, + 24.998637922346454 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.85264424806468, + 25.070981078297315 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.85264424806468, + 25.143324234248176 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.85264424806468, + 25.215667390199037 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.85264424806468, + 25.2880105461499 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.85264424806468, + 25.36035370210076 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.85264424806468, + 25.43269685805162 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.85264424806468, + 25.505040014002482 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.85264424806468, + 25.577383169953343 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.85264424806468, + 25.649726325904204 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.85264424806468, + 25.722069481855065 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.85264424806468, + 25.794412637805927 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.85264424806468, + 25.866755793756788 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.85264424806468, + 25.93909894970765 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.85264424806468, + 26.01144210565851 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.85264424806468, + 26.08378526160937 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.85264424806468, + 26.156128417560232 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.85264424806468, + 26.228471573511094 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.85264424806468, + 26.300814729461955 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.85264424806468, + 26.373157885412816 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.77286961037115, + 24.926294766395593 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.77286961037115, + 24.998637922346454 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.77286961037115, + 25.070981078297315 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.77286961037115, + 25.143324234248176 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.77286961037115, + 25.215667390199037 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.77286961037115, + 25.2880105461499 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.77286961037115, + 25.36035370210076 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.77286961037115, + 25.43269685805162 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.77286961037115, + 25.505040014002482 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.77286961037115, + 25.577383169953343 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.77286961037115, + 25.649726325904204 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.77286961037115, + 25.722069481855065 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.77286961037115, + 25.794412637805927 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.77286961037115, + 25.866755793756788 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.77286961037115, + 25.93909894970765 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.77286961037115, + 26.01144210565851 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.77286961037115, + 26.08378526160937 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.77286961037115, + 26.156128417560232 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.77286961037115, + 26.228471573511094 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.77286961037115, + 26.300814729461955 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.77286961037115, + 26.373157885412816 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.69309497267761, + 24.926294766395593 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.69309497267761, + 24.998637922346454 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.69309497267761, + 25.070981078297315 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.69309497267761, + 25.143324234248176 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.69309497267761, + 25.215667390199037 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.69309497267761, + 25.2880105461499 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.69309497267761, + 25.36035370210076 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.69309497267761, + 25.43269685805162 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.69309497267761, + 25.505040014002482 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.69309497267761, + 25.577383169953343 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.69309497267761, + 25.649726325904204 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.69309497267761, + 25.722069481855065 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.69309497267761, + 25.794412637805927 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.69309497267761, + 25.866755793756788 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.69309497267761, + 25.93909894970765 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.69309497267761, + 26.01144210565851 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.69309497267761, + 26.08378526160937 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.69309497267761, + 26.156128417560232 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.69309497267761, + 26.228471573511094 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.69309497267761, + 26.300814729461955 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.69309497267761, + 26.373157885412816 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.61332033498408, + 24.926294766395593 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.61332033498408, + 24.998637922346454 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.61332033498408, + 25.070981078297315 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.61332033498408, + 25.143324234248176 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.61332033498408, + 25.215667390199037 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.61332033498408, + 25.2880105461499 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.61332033498408, + 25.36035370210076 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.61332033498408, + 25.43269685805162 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.61332033498408, + 25.505040014002482 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.61332033498408, + 25.577383169953343 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.61332033498408, + 25.649726325904204 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.61332033498408, + 25.722069481855065 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.61332033498408, + 25.794412637805927 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.61332033498408, + 25.866755793756788 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.61332033498408, + 25.93909894970765 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.61332033498408, + 26.01144210565851 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.61332033498408, + 26.08378526160937 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.61332033498408, + 26.156128417560232 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.61332033498408, + 26.228471573511094 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.61332033498408, + 26.300814729461955 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.61332033498408, + 26.373157885412816 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.53354569729055, + 24.926294766395593 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.53354569729055, + 24.998637922346454 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.53354569729055, + 25.070981078297315 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.53354569729055, + 25.143324234248176 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.53354569729055, + 25.215667390199037 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.53354569729055, + 25.2880105461499 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.53354569729055, + 25.36035370210076 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.53354569729055, + 25.43269685805162 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.53354569729055, + 25.505040014002482 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.53354569729055, + 25.577383169953343 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.53354569729055, + 25.649726325904204 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.53354569729055, + 25.722069481855065 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.53354569729055, + 25.794412637805927 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.53354569729055, + 25.866755793756788 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.53354569729055, + 25.93909894970765 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.53354569729055, + 26.01144210565851 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.53354569729055, + 26.08378526160937 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.53354569729055, + 26.156128417560232 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.53354569729055, + 26.228471573511094 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.53354569729055, + 26.300814729461955 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.53354569729055, + 26.373157885412816 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.45377105959702, + 24.926294766395593 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.45377105959702, + 24.998637922346454 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.45377105959702, + 25.070981078297315 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.45377105959702, + 25.143324234248176 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.45377105959702, + 25.215667390199037 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.45377105959702, + 25.2880105461499 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.45377105959702, + 25.36035370210076 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.45377105959702, + 25.43269685805162 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.45377105959702, + 25.505040014002482 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.45377105959702, + 25.577383169953343 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.45377105959702, + 25.649726325904204 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.45377105959702, + 25.722069481855065 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.45377105959702, + 25.794412637805927 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.45377105959702, + 25.866755793756788 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.45377105959702, + 25.93909894970765 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.45377105959702, + 26.01144210565851 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.45377105959702, + 26.08378526160937 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.45377105959702, + 26.156128417560232 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.45377105959702, + 26.228471573511094 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.45377105959702, + 26.300814729461955 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.45377105959702, + 26.373157885412816 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.37399642190348, + 24.926294766395593 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.37399642190348, + 24.998637922346454 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.37399642190348, + 25.070981078297315 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.37399642190348, + 25.143324234248176 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.37399642190348, + 25.215667390199037 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.37399642190348, + 25.2880105461499 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.37399642190348, + 25.36035370210076 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.37399642190348, + 25.43269685805162 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.37399642190348, + 25.505040014002482 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.37399642190348, + 25.577383169953343 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.37399642190348, + 25.649726325904204 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.37399642190348, + 25.722069481855065 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.37399642190348, + 25.794412637805927 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.37399642190348, + 25.866755793756788 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.37399642190348, + 25.93909894970765 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.37399642190348, + 26.01144210565851 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.37399642190348, + 26.08378526160937 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.37399642190348, + 26.156128417560232 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.37399642190348, + 26.228471573511094 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.37399642190348, + 26.300814729461955 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.37399642190348, + 26.373157885412816 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.29422178420995, + 24.926294766395593 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.29422178420995, + 24.998637922346454 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.29422178420995, + 25.070981078297315 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.29422178420995, + 25.143324234248176 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.29422178420995, + 25.215667390199037 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.29422178420995, + 25.2880105461499 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.29422178420995, + 25.36035370210076 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.29422178420995, + 25.43269685805162 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.29422178420995, + 25.505040014002482 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.29422178420995, + 25.577383169953343 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.29422178420995, + 25.649726325904204 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.29422178420995, + 25.722069481855065 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.29422178420995, + 25.794412637805927 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.29422178420995, + 25.866755793756788 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.29422178420995, + 25.93909894970765 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.29422178420995, + 26.01144210565851 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.29422178420995, + 26.08378526160937 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.29422178420995, + 26.156128417560232 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.29422178420995, + 26.228471573511094 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.29422178420995, + 26.300814729461955 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.29422178420995, + 26.373157885412816 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.21444714651642, + 24.926294766395593 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.21444714651642, + 24.998637922346454 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.21444714651642, + 25.070981078297315 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.21444714651642, + 25.143324234248176 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.21444714651642, + 25.215667390199037 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.21444714651642, + 25.2880105461499 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.21444714651642, + 25.36035370210076 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.21444714651642, + 25.43269685805162 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.21444714651642, + 25.505040014002482 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.21444714651642, + 25.577383169953343 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.21444714651642, + 25.649726325904204 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.21444714651642, + 25.722069481855065 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.21444714651642, + 25.794412637805927 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.21444714651642, + 25.866755793756788 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.21444714651642, + 25.93909894970765 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.21444714651642, + 26.01144210565851 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.21444714651642, + 26.08378526160937 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.21444714651642, + 26.156128417560232 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.21444714651642, + 26.228471573511094 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.21444714651642, + 26.300814729461955 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.21444714651642, + 26.373157885412816 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.13467250882289, + 24.926294766395593 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.13467250882289, + 24.998637922346454 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.13467250882289, + 25.070981078297315 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.13467250882289, + 25.143324234248176 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.13467250882289, + 25.215667390199037 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.13467250882289, + 25.2880105461499 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.13467250882289, + 25.36035370210076 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.13467250882289, + 25.43269685805162 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.13467250882289, + 25.505040014002482 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.13467250882289, + 25.577383169953343 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.13467250882289, + 25.649726325904204 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.13467250882289, + 25.722069481855065 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.13467250882289, + 25.794412637805927 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.13467250882289, + 25.866755793756788 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.13467250882289, + 25.93909894970765 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.13467250882289, + 26.01144210565851 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.13467250882289, + 26.08378526160937 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.13467250882289, + 26.156128417560232 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.13467250882289, + 26.228471573511094 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.13467250882289, + 26.300814729461955 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.13467250882289, + 26.373157885412816 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.05489787112936, + 24.926294766395593 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.05489787112936, + 24.998637922346454 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.05489787112936, + 25.070981078297315 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.05489787112936, + 25.143324234248176 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.05489787112936, + 25.215667390199037 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.05489787112936, + 25.2880105461499 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.05489787112936, + 25.36035370210076 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.05489787112936, + 25.43269685805162 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.05489787112936, + 25.505040014002482 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.05489787112936, + 25.577383169953343 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.05489787112936, + 25.649726325904204 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.05489787112936, + 25.722069481855065 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.05489787112936, + 25.794412637805927 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.05489787112936, + 25.866755793756788 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.05489787112936, + 25.93909894970765 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.05489787112936, + 26.01144210565851 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.05489787112936, + 26.08378526160937 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.05489787112936, + 26.156128417560232 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.05489787112936, + 26.228471573511094 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.05489787112936, + 26.300814729461955 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -80.05489787112936, + 26.373157885412816 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -79.97512323343582, + 24.926294766395593 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -79.97512323343582, + 24.998637922346454 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -79.97512323343582, + 25.070981078297315 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -79.97512323343582, + 25.143324234248176 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -79.97512323343582, + 25.215667390199037 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -79.97512323343582, + 25.2880105461499 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -79.97512323343582, + 25.36035370210076 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -79.97512323343582, + 25.43269685805162 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -79.97512323343582, + 25.505040014002482 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -79.97512323343582, + 25.577383169953343 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -79.97512323343582, + 25.649726325904204 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -79.97512323343582, + 25.722069481855065 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -79.97512323343582, + 25.794412637805927 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -79.97512323343582, + 25.866755793756788 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -79.97512323343582, + 25.93909894970765 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -79.97512323343582, + 26.01144210565851 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -79.97512323343582, + 26.08378526160937 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -79.97512323343582, + 26.156128417560232 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -79.97512323343582, + 26.228471573511094 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -79.97512323343582, + 26.300814729461955 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -79.97512323343582, + 26.373157885412816 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -79.89534859574229, + 24.926294766395593 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -79.89534859574229, + 24.998637922346454 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -79.89534859574229, + 25.070981078297315 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -79.89534859574229, + 25.143324234248176 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -79.89534859574229, + 25.215667390199037 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -79.89534859574229, + 25.2880105461499 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -79.89534859574229, + 25.36035370210076 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -79.89534859574229, + 25.43269685805162 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -79.89534859574229, + 25.505040014002482 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -79.89534859574229, + 25.577383169953343 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -79.89534859574229, + 25.649726325904204 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -79.89534859574229, + 25.722069481855065 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -79.89534859574229, + 25.794412637805927 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -79.89534859574229, + 25.866755793756788 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -79.89534859574229, + 25.93909894970765 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -79.89534859574229, + 26.01144210565851 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -79.89534859574229, + 26.08378526160937 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -79.89534859574229, + 26.156128417560232 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -79.89534859574229, + 26.228471573511094 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -79.89534859574229, + 26.300814729461955 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -79.89534859574229, + 26.373157885412816 + ] + } + }, + { + "type": "Feature", + "properties": { + "fill-opacity": 0, + "stroke": "#0ff" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.650390625, + 24.926294766395593 + ], + [ + -79.8486328125, + 24.926294766395593 + ], + [ + -79.8486328125, + 26.43122806450644 + ], + [ + -81.650390625, + 26.43122806450644 + ], + [ + -81.650390625, + 24.926294766395593 + ] + ] + ] + } + } + ] +} \ No newline at end of file diff --git a/packages/turf-point-grid/test/out/grid3.geojson b/packages/turf-point-grid/test/out/grid3.geojson new file mode 100644 index 0000000000..a712018021 --- /dev/null +++ b/packages/turf-point-grid/test/out/grid3.geojson @@ -0,0 +1,1491 @@ +{ + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -77.3876953125, + 38.71980474264239 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -77.3876953125, + 38.748742005022734 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -77.3876953125, + 38.77767926740308 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -77.3876953125, + 38.806616529783426 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -77.3876953125, + 38.83555379216377 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -77.3876953125, + 38.86449105454412 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -77.3876953125, + 38.893428316924464 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -77.3876953125, + 38.92236557930481 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -77.3876953125, + 38.951302841685155 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -77.3876953125, + 38.9802401040655 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -77.3876953125, + 39.00917736644585 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -77.35060640970083, + 38.71980474264239 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -77.35060640970083, + 38.748742005022734 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -77.35060640970083, + 38.77767926740308 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -77.35060640970083, + 38.806616529783426 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -77.35060640970083, + 38.83555379216377 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -77.35060640970083, + 38.86449105454412 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -77.35060640970083, + 38.893428316924464 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -77.35060640970083, + 38.92236557930481 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -77.35060640970083, + 38.951302841685155 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -77.35060640970083, + 38.9802401040655 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -77.35060640970083, + 39.00917736644585 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -77.31351750690166, + 38.71980474264239 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -77.31351750690166, + 38.748742005022734 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -77.31351750690166, + 38.77767926740308 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -77.31351750690166, + 38.806616529783426 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -77.31351750690166, + 38.83555379216377 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -77.31351750690166, + 38.86449105454412 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -77.31351750690166, + 38.893428316924464 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -77.31351750690166, + 38.92236557930481 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -77.31351750690166, + 38.951302841685155 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -77.31351750690166, + 38.9802401040655 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -77.31351750690166, + 39.00917736644585 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -77.27642860410249, + 38.71980474264239 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -77.27642860410249, + 38.748742005022734 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -77.27642860410249, + 38.77767926740308 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -77.27642860410249, + 38.806616529783426 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -77.27642860410249, + 38.83555379216377 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -77.27642860410249, + 38.86449105454412 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -77.27642860410249, + 38.893428316924464 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -77.27642860410249, + 38.92236557930481 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -77.27642860410249, + 38.951302841685155 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -77.27642860410249, + 38.9802401040655 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -77.27642860410249, + 39.00917736644585 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -77.23933970130332, + 38.71980474264239 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -77.23933970130332, + 38.748742005022734 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -77.23933970130332, + 38.77767926740308 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -77.23933970130332, + 38.806616529783426 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -77.23933970130332, + 38.83555379216377 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -77.23933970130332, + 38.86449105454412 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -77.23933970130332, + 38.893428316924464 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -77.23933970130332, + 38.92236557930481 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -77.23933970130332, + 38.951302841685155 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -77.23933970130332, + 38.9802401040655 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -77.23933970130332, + 39.00917736644585 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -77.20225079850415, + 38.71980474264239 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -77.20225079850415, + 38.748742005022734 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -77.20225079850415, + 38.77767926740308 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -77.20225079850415, + 38.806616529783426 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -77.20225079850415, + 38.83555379216377 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -77.20225079850415, + 38.86449105454412 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -77.20225079850415, + 38.893428316924464 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -77.20225079850415, + 38.92236557930481 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -77.20225079850415, + 38.951302841685155 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -77.20225079850415, + 38.9802401040655 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -77.20225079850415, + 39.00917736644585 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -77.16516189570498, + 38.71980474264239 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -77.16516189570498, + 38.748742005022734 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -77.16516189570498, + 38.77767926740308 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -77.16516189570498, + 38.806616529783426 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -77.16516189570498, + 38.83555379216377 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -77.16516189570498, + 38.86449105454412 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -77.16516189570498, + 38.893428316924464 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -77.16516189570498, + 38.92236557930481 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -77.16516189570498, + 38.951302841685155 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -77.16516189570498, + 38.9802401040655 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -77.16516189570498, + 39.00917736644585 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -77.12807299290581, + 38.71980474264239 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -77.12807299290581, + 38.748742005022734 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -77.12807299290581, + 38.77767926740308 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -77.12807299290581, + 38.806616529783426 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -77.12807299290581, + 38.83555379216377 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -77.12807299290581, + 38.86449105454412 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -77.12807299290581, + 38.893428316924464 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -77.12807299290581, + 38.92236557930481 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -77.12807299290581, + 38.951302841685155 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -77.12807299290581, + 38.9802401040655 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -77.12807299290581, + 39.00917736644585 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -77.09098409010664, + 38.71980474264239 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -77.09098409010664, + 38.748742005022734 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -77.09098409010664, + 38.77767926740308 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -77.09098409010664, + 38.806616529783426 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -77.09098409010664, + 38.83555379216377 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -77.09098409010664, + 38.86449105454412 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -77.09098409010664, + 38.893428316924464 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -77.09098409010664, + 38.92236557930481 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -77.09098409010664, + 38.951302841685155 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -77.09098409010664, + 38.9802401040655 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -77.09098409010664, + 39.00917736644585 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -77.05389518730748, + 38.71980474264239 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -77.05389518730748, + 38.748742005022734 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -77.05389518730748, + 38.77767926740308 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -77.05389518730748, + 38.806616529783426 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -77.05389518730748, + 38.83555379216377 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -77.05389518730748, + 38.86449105454412 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -77.05389518730748, + 38.893428316924464 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -77.05389518730748, + 38.92236557930481 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -77.05389518730748, + 38.951302841685155 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -77.05389518730748, + 38.9802401040655 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -77.05389518730748, + 39.00917736644585 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -77.0168062845083, + 38.71980474264239 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -77.0168062845083, + 38.748742005022734 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -77.0168062845083, + 38.77767926740308 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -77.0168062845083, + 38.806616529783426 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -77.0168062845083, + 38.83555379216377 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -77.0168062845083, + 38.86449105454412 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -77.0168062845083, + 38.893428316924464 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -77.0168062845083, + 38.92236557930481 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -77.0168062845083, + 38.951302841685155 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -77.0168062845083, + 38.9802401040655 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -77.0168062845083, + 39.00917736644585 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -76.97971738170914, + 38.71980474264239 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -76.97971738170914, + 38.748742005022734 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -76.97971738170914, + 38.77767926740308 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -76.97971738170914, + 38.806616529783426 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -76.97971738170914, + 38.83555379216377 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -76.97971738170914, + 38.86449105454412 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -76.97971738170914, + 38.893428316924464 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -76.97971738170914, + 38.92236557930481 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -76.97971738170914, + 38.951302841685155 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -76.97971738170914, + 38.9802401040655 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -76.97971738170914, + 39.00917736644585 + ] + } + }, + { + "type": "Feature", + "properties": { + "fill-opacity": 0, + "stroke": "#0ff" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.3876953125, + 38.71980474264239 + ], + [ + -76.9482421875, + 38.71980474264239 + ], + [ + -76.9482421875, + 39.027718840211605 + ], + [ + -77.3876953125, + 39.027718840211605 + ], + [ + -77.3876953125, + 38.71980474264239 + ] + ] + ] + } + } + ] +} \ No newline at end of file diff --git a/packages/turf-point-grid/test/out/grid4.geojson b/packages/turf-point-grid/test/out/grid4.geojson new file mode 100644 index 0000000000..6a2db5b15e --- /dev/null +++ b/packages/turf-point-grid/test/out/grid4.geojson @@ -0,0 +1,8839 @@ +{ + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 63.6328125, + 11.867350911459308 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 63.6328125, + 12.590782470967923 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 63.6328125, + 13.314214030476538 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 63.6328125, + 14.037645589985154 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 63.6328125, + 14.761077149493769 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 63.6328125, + 15.484508709002384 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 63.6328125, + 16.207940268511 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 63.6328125, + 16.931371828019614 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 63.6328125, + 17.65480338752823 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 63.6328125, + 18.378234947036844 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 63.6328125, + 19.10166650654546 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 63.6328125, + 19.825098066054075 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 63.6328125, + 20.54852962556269 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 63.6328125, + 21.271961185071305 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 63.6328125, + 21.99539274457992 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 63.6328125, + 22.718824304088535 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 63.6328125, + 23.44225586359715 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 63.6328125, + 24.165687423105766 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 63.6328125, + 24.88911898261438 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 63.6328125, + 25.612550542122996 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 63.6328125, + 26.33598210163161 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 63.6328125, + 27.059413661140226 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 63.6328125, + 27.78284522064884 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 63.6328125, + 28.506276780157457 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 63.6328125, + 29.22970833966607 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 63.6328125, + 29.953139899174687 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 63.6328125, + 30.676571458683302 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 63.6328125, + 31.400003018191917 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 63.6328125, + 32.123434577700536 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 63.6328125, + 32.84686613720915 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 63.6328125, + 33.57029769671776 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 63.6328125, + 34.29372925622637 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 63.6328125, + 35.01716081573498 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 63.6328125, + 35.740592375243594 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 63.6328125, + 36.464023934752205 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 63.6328125, + 37.18745549426082 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 63.6328125, + 37.91088705376943 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 63.6328125, + 38.63431861327804 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 63.6328125, + 39.35775017278665 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 63.6328125, + 40.08118173229526 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 63.6328125, + 40.804613291803875 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 63.6328125, + 41.52804485131249 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 63.6328125, + 42.2514764108211 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 63.6328125, + 42.97490797032971 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 63.6328125, + 43.69833952983832 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 63.6328125, + 44.42177108934693 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 63.6328125, + 45.145202648855545 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 63.6328125, + 45.868634208364156 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 63.6328125, + 46.59206576787277 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 63.6328125, + 47.31549732738138 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 64.37209777458736, + 11.867350911459308 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 64.37209777458736, + 12.590782470967923 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 64.37209777458736, + 13.314214030476538 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 64.37209777458736, + 14.037645589985154 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 64.37209777458736, + 14.761077149493769 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 64.37209777458736, + 15.484508709002384 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 64.37209777458736, + 16.207940268511 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 64.37209777458736, + 16.931371828019614 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 64.37209777458736, + 17.65480338752823 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 64.37209777458736, + 18.378234947036844 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 64.37209777458736, + 19.10166650654546 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 64.37209777458736, + 19.825098066054075 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 64.37209777458736, + 20.54852962556269 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 64.37209777458736, + 21.271961185071305 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 64.37209777458736, + 21.99539274457992 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 64.37209777458736, + 22.718824304088535 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 64.37209777458736, + 23.44225586359715 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 64.37209777458736, + 24.165687423105766 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 64.37209777458736, + 24.88911898261438 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 64.37209777458736, + 25.612550542122996 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 64.37209777458736, + 26.33598210163161 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 64.37209777458736, + 27.059413661140226 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 64.37209777458736, + 27.78284522064884 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 64.37209777458736, + 28.506276780157457 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 64.37209777458736, + 29.22970833966607 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 64.37209777458736, + 29.953139899174687 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 64.37209777458736, + 30.676571458683302 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 64.37209777458736, + 31.400003018191917 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 64.37209777458736, + 32.123434577700536 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 64.37209777458736, + 32.84686613720915 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 64.37209777458736, + 33.57029769671776 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 64.37209777458736, + 34.29372925622637 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 64.37209777458736, + 35.01716081573498 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 64.37209777458736, + 35.740592375243594 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 64.37209777458736, + 36.464023934752205 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 64.37209777458736, + 37.18745549426082 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 64.37209777458736, + 37.91088705376943 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 64.37209777458736, + 38.63431861327804 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 64.37209777458736, + 39.35775017278665 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 64.37209777458736, + 40.08118173229526 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 64.37209777458736, + 40.804613291803875 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 64.37209777458736, + 41.52804485131249 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 64.37209777458736, + 42.2514764108211 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 64.37209777458736, + 42.97490797032971 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 64.37209777458736, + 43.69833952983832 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 64.37209777458736, + 44.42177108934693 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 64.37209777458736, + 45.145202648855545 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 64.37209777458736, + 45.868634208364156 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 64.37209777458736, + 46.59206576787277 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 64.37209777458736, + 47.31549732738138 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 65.11138304917472, + 11.867350911459308 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 65.11138304917472, + 12.590782470967923 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 65.11138304917472, + 13.314214030476538 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 65.11138304917472, + 14.037645589985154 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 65.11138304917472, + 14.761077149493769 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 65.11138304917472, + 15.484508709002384 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 65.11138304917472, + 16.207940268511 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 65.11138304917472, + 16.931371828019614 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 65.11138304917472, + 17.65480338752823 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 65.11138304917472, + 18.378234947036844 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 65.11138304917472, + 19.10166650654546 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 65.11138304917472, + 19.825098066054075 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 65.11138304917472, + 20.54852962556269 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 65.11138304917472, + 21.271961185071305 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 65.11138304917472, + 21.99539274457992 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 65.11138304917472, + 22.718824304088535 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 65.11138304917472, + 23.44225586359715 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 65.11138304917472, + 24.165687423105766 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 65.11138304917472, + 24.88911898261438 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 65.11138304917472, + 25.612550542122996 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 65.11138304917472, + 26.33598210163161 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 65.11138304917472, + 27.059413661140226 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 65.11138304917472, + 27.78284522064884 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 65.11138304917472, + 28.506276780157457 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 65.11138304917472, + 29.22970833966607 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 65.11138304917472, + 29.953139899174687 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 65.11138304917472, + 30.676571458683302 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 65.11138304917472, + 31.400003018191917 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 65.11138304917472, + 32.123434577700536 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 65.11138304917472, + 32.84686613720915 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 65.11138304917472, + 33.57029769671776 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 65.11138304917472, + 34.29372925622637 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 65.11138304917472, + 35.01716081573498 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 65.11138304917472, + 35.740592375243594 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 65.11138304917472, + 36.464023934752205 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 65.11138304917472, + 37.18745549426082 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 65.11138304917472, + 37.91088705376943 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 65.11138304917472, + 38.63431861327804 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 65.11138304917472, + 39.35775017278665 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 65.11138304917472, + 40.08118173229526 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 65.11138304917472, + 40.804613291803875 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 65.11138304917472, + 41.52804485131249 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 65.11138304917472, + 42.2514764108211 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 65.11138304917472, + 42.97490797032971 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 65.11138304917472, + 43.69833952983832 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 65.11138304917472, + 44.42177108934693 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 65.11138304917472, + 45.145202648855545 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 65.11138304917472, + 45.868634208364156 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 65.11138304917472, + 46.59206576787277 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 65.11138304917472, + 47.31549732738138 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 65.85066832376208, + 11.867350911459308 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 65.85066832376208, + 12.590782470967923 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 65.85066832376208, + 13.314214030476538 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 65.85066832376208, + 14.037645589985154 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 65.85066832376208, + 14.761077149493769 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 65.85066832376208, + 15.484508709002384 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 65.85066832376208, + 16.207940268511 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 65.85066832376208, + 16.931371828019614 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 65.85066832376208, + 17.65480338752823 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 65.85066832376208, + 18.378234947036844 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 65.85066832376208, + 19.10166650654546 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 65.85066832376208, + 19.825098066054075 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 65.85066832376208, + 20.54852962556269 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 65.85066832376208, + 21.271961185071305 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 65.85066832376208, + 21.99539274457992 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 65.85066832376208, + 22.718824304088535 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 65.85066832376208, + 23.44225586359715 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 65.85066832376208, + 24.165687423105766 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 65.85066832376208, + 24.88911898261438 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 65.85066832376208, + 25.612550542122996 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 65.85066832376208, + 26.33598210163161 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 65.85066832376208, + 27.059413661140226 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 65.85066832376208, + 27.78284522064884 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 65.85066832376208, + 28.506276780157457 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 65.85066832376208, + 29.22970833966607 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 65.85066832376208, + 29.953139899174687 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 65.85066832376208, + 30.676571458683302 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 65.85066832376208, + 31.400003018191917 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 65.85066832376208, + 32.123434577700536 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 65.85066832376208, + 32.84686613720915 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 65.85066832376208, + 33.57029769671776 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 65.85066832376208, + 34.29372925622637 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 65.85066832376208, + 35.01716081573498 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 65.85066832376208, + 35.740592375243594 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 65.85066832376208, + 36.464023934752205 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 65.85066832376208, + 37.18745549426082 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 65.85066832376208, + 37.91088705376943 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 65.85066832376208, + 38.63431861327804 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 65.85066832376208, + 39.35775017278665 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 65.85066832376208, + 40.08118173229526 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 65.85066832376208, + 40.804613291803875 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 65.85066832376208, + 41.52804485131249 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 65.85066832376208, + 42.2514764108211 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 65.85066832376208, + 42.97490797032971 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 65.85066832376208, + 43.69833952983832 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 65.85066832376208, + 44.42177108934693 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 65.85066832376208, + 45.145202648855545 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 65.85066832376208, + 45.868634208364156 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 65.85066832376208, + 46.59206576787277 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 65.85066832376208, + 47.31549732738138 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 66.58995359834944, + 11.867350911459308 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 66.58995359834944, + 12.590782470967923 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 66.58995359834944, + 13.314214030476538 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 66.58995359834944, + 14.037645589985154 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 66.58995359834944, + 14.761077149493769 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 66.58995359834944, + 15.484508709002384 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 66.58995359834944, + 16.207940268511 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 66.58995359834944, + 16.931371828019614 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 66.58995359834944, + 17.65480338752823 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 66.58995359834944, + 18.378234947036844 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 66.58995359834944, + 19.10166650654546 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 66.58995359834944, + 19.825098066054075 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 66.58995359834944, + 20.54852962556269 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 66.58995359834944, + 21.271961185071305 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 66.58995359834944, + 21.99539274457992 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 66.58995359834944, + 22.718824304088535 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 66.58995359834944, + 23.44225586359715 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 66.58995359834944, + 24.165687423105766 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 66.58995359834944, + 24.88911898261438 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 66.58995359834944, + 25.612550542122996 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 66.58995359834944, + 26.33598210163161 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 66.58995359834944, + 27.059413661140226 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 66.58995359834944, + 27.78284522064884 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 66.58995359834944, + 28.506276780157457 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 66.58995359834944, + 29.22970833966607 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 66.58995359834944, + 29.953139899174687 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 66.58995359834944, + 30.676571458683302 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 66.58995359834944, + 31.400003018191917 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 66.58995359834944, + 32.123434577700536 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 66.58995359834944, + 32.84686613720915 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 66.58995359834944, + 33.57029769671776 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 66.58995359834944, + 34.29372925622637 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 66.58995359834944, + 35.01716081573498 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 66.58995359834944, + 35.740592375243594 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 66.58995359834944, + 36.464023934752205 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 66.58995359834944, + 37.18745549426082 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 66.58995359834944, + 37.91088705376943 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 66.58995359834944, + 38.63431861327804 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 66.58995359834944, + 39.35775017278665 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 66.58995359834944, + 40.08118173229526 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 66.58995359834944, + 40.804613291803875 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 66.58995359834944, + 41.52804485131249 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 66.58995359834944, + 42.2514764108211 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 66.58995359834944, + 42.97490797032971 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 66.58995359834944, + 43.69833952983832 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 66.58995359834944, + 44.42177108934693 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 66.58995359834944, + 45.145202648855545 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 66.58995359834944, + 45.868634208364156 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 66.58995359834944, + 46.59206576787277 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 66.58995359834944, + 47.31549732738138 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 67.3292388729368, + 11.867350911459308 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 67.3292388729368, + 12.590782470967923 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 67.3292388729368, + 13.314214030476538 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 67.3292388729368, + 14.037645589985154 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 67.3292388729368, + 14.761077149493769 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 67.3292388729368, + 15.484508709002384 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 67.3292388729368, + 16.207940268511 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 67.3292388729368, + 16.931371828019614 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 67.3292388729368, + 17.65480338752823 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 67.3292388729368, + 18.378234947036844 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 67.3292388729368, + 19.10166650654546 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 67.3292388729368, + 19.825098066054075 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 67.3292388729368, + 20.54852962556269 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 67.3292388729368, + 21.271961185071305 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 67.3292388729368, + 21.99539274457992 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 67.3292388729368, + 22.718824304088535 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 67.3292388729368, + 23.44225586359715 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 67.3292388729368, + 24.165687423105766 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 67.3292388729368, + 24.88911898261438 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 67.3292388729368, + 25.612550542122996 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 67.3292388729368, + 26.33598210163161 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 67.3292388729368, + 27.059413661140226 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 67.3292388729368, + 27.78284522064884 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 67.3292388729368, + 28.506276780157457 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 67.3292388729368, + 29.22970833966607 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 67.3292388729368, + 29.953139899174687 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 67.3292388729368, + 30.676571458683302 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 67.3292388729368, + 31.400003018191917 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 67.3292388729368, + 32.123434577700536 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 67.3292388729368, + 32.84686613720915 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 67.3292388729368, + 33.57029769671776 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 67.3292388729368, + 34.29372925622637 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 67.3292388729368, + 35.01716081573498 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 67.3292388729368, + 35.740592375243594 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 67.3292388729368, + 36.464023934752205 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 67.3292388729368, + 37.18745549426082 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 67.3292388729368, + 37.91088705376943 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 67.3292388729368, + 38.63431861327804 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 67.3292388729368, + 39.35775017278665 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 67.3292388729368, + 40.08118173229526 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 67.3292388729368, + 40.804613291803875 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 67.3292388729368, + 41.52804485131249 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 67.3292388729368, + 42.2514764108211 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 67.3292388729368, + 42.97490797032971 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 67.3292388729368, + 43.69833952983832 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 67.3292388729368, + 44.42177108934693 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 67.3292388729368, + 45.145202648855545 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 67.3292388729368, + 45.868634208364156 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 67.3292388729368, + 46.59206576787277 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 67.3292388729368, + 47.31549732738138 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 68.06852414752416, + 11.867350911459308 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 68.06852414752416, + 12.590782470967923 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 68.06852414752416, + 13.314214030476538 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 68.06852414752416, + 14.037645589985154 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 68.06852414752416, + 14.761077149493769 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 68.06852414752416, + 15.484508709002384 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 68.06852414752416, + 16.207940268511 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 68.06852414752416, + 16.931371828019614 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 68.06852414752416, + 17.65480338752823 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 68.06852414752416, + 18.378234947036844 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 68.06852414752416, + 19.10166650654546 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 68.06852414752416, + 19.825098066054075 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 68.06852414752416, + 20.54852962556269 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 68.06852414752416, + 21.271961185071305 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 68.06852414752416, + 21.99539274457992 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 68.06852414752416, + 22.718824304088535 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 68.06852414752416, + 23.44225586359715 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 68.06852414752416, + 24.165687423105766 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 68.06852414752416, + 24.88911898261438 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 68.06852414752416, + 25.612550542122996 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 68.06852414752416, + 26.33598210163161 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 68.06852414752416, + 27.059413661140226 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 68.06852414752416, + 27.78284522064884 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 68.06852414752416, + 28.506276780157457 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 68.06852414752416, + 29.22970833966607 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 68.06852414752416, + 29.953139899174687 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 68.06852414752416, + 30.676571458683302 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 68.06852414752416, + 31.400003018191917 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 68.06852414752416, + 32.123434577700536 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 68.06852414752416, + 32.84686613720915 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 68.06852414752416, + 33.57029769671776 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 68.06852414752416, + 34.29372925622637 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 68.06852414752416, + 35.01716081573498 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 68.06852414752416, + 35.740592375243594 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 68.06852414752416, + 36.464023934752205 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 68.06852414752416, + 37.18745549426082 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 68.06852414752416, + 37.91088705376943 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 68.06852414752416, + 38.63431861327804 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 68.06852414752416, + 39.35775017278665 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 68.06852414752416, + 40.08118173229526 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 68.06852414752416, + 40.804613291803875 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 68.06852414752416, + 41.52804485131249 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 68.06852414752416, + 42.2514764108211 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 68.06852414752416, + 42.97490797032971 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 68.06852414752416, + 43.69833952983832 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 68.06852414752416, + 44.42177108934693 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 68.06852414752416, + 45.145202648855545 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 68.06852414752416, + 45.868634208364156 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 68.06852414752416, + 46.59206576787277 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 68.06852414752416, + 47.31549732738138 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 68.80780942211152, + 11.867350911459308 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 68.80780942211152, + 12.590782470967923 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 68.80780942211152, + 13.314214030476538 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 68.80780942211152, + 14.037645589985154 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 68.80780942211152, + 14.761077149493769 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 68.80780942211152, + 15.484508709002384 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 68.80780942211152, + 16.207940268511 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 68.80780942211152, + 16.931371828019614 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 68.80780942211152, + 17.65480338752823 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 68.80780942211152, + 18.378234947036844 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 68.80780942211152, + 19.10166650654546 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 68.80780942211152, + 19.825098066054075 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 68.80780942211152, + 20.54852962556269 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 68.80780942211152, + 21.271961185071305 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 68.80780942211152, + 21.99539274457992 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 68.80780942211152, + 22.718824304088535 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 68.80780942211152, + 23.44225586359715 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 68.80780942211152, + 24.165687423105766 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 68.80780942211152, + 24.88911898261438 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 68.80780942211152, + 25.612550542122996 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 68.80780942211152, + 26.33598210163161 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 68.80780942211152, + 27.059413661140226 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 68.80780942211152, + 27.78284522064884 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 68.80780942211152, + 28.506276780157457 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 68.80780942211152, + 29.22970833966607 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 68.80780942211152, + 29.953139899174687 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 68.80780942211152, + 30.676571458683302 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 68.80780942211152, + 31.400003018191917 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 68.80780942211152, + 32.123434577700536 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 68.80780942211152, + 32.84686613720915 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 68.80780942211152, + 33.57029769671776 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 68.80780942211152, + 34.29372925622637 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 68.80780942211152, + 35.01716081573498 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 68.80780942211152, + 35.740592375243594 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 68.80780942211152, + 36.464023934752205 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 68.80780942211152, + 37.18745549426082 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 68.80780942211152, + 37.91088705376943 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 68.80780942211152, + 38.63431861327804 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 68.80780942211152, + 39.35775017278665 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 68.80780942211152, + 40.08118173229526 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 68.80780942211152, + 40.804613291803875 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 68.80780942211152, + 41.52804485131249 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 68.80780942211152, + 42.2514764108211 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 68.80780942211152, + 42.97490797032971 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 68.80780942211152, + 43.69833952983832 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 68.80780942211152, + 44.42177108934693 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 68.80780942211152, + 45.145202648855545 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 68.80780942211152, + 45.868634208364156 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 68.80780942211152, + 46.59206576787277 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 68.80780942211152, + 47.31549732738138 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 69.54709469669888, + 11.867350911459308 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 69.54709469669888, + 12.590782470967923 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 69.54709469669888, + 13.314214030476538 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 69.54709469669888, + 14.037645589985154 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 69.54709469669888, + 14.761077149493769 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 69.54709469669888, + 15.484508709002384 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 69.54709469669888, + 16.207940268511 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 69.54709469669888, + 16.931371828019614 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 69.54709469669888, + 17.65480338752823 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 69.54709469669888, + 18.378234947036844 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 69.54709469669888, + 19.10166650654546 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 69.54709469669888, + 19.825098066054075 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 69.54709469669888, + 20.54852962556269 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 69.54709469669888, + 21.271961185071305 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 69.54709469669888, + 21.99539274457992 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 69.54709469669888, + 22.718824304088535 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 69.54709469669888, + 23.44225586359715 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 69.54709469669888, + 24.165687423105766 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 69.54709469669888, + 24.88911898261438 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 69.54709469669888, + 25.612550542122996 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 69.54709469669888, + 26.33598210163161 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 69.54709469669888, + 27.059413661140226 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 69.54709469669888, + 27.78284522064884 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 69.54709469669888, + 28.506276780157457 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 69.54709469669888, + 29.22970833966607 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 69.54709469669888, + 29.953139899174687 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 69.54709469669888, + 30.676571458683302 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 69.54709469669888, + 31.400003018191917 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 69.54709469669888, + 32.123434577700536 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 69.54709469669888, + 32.84686613720915 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 69.54709469669888, + 33.57029769671776 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 69.54709469669888, + 34.29372925622637 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 69.54709469669888, + 35.01716081573498 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 69.54709469669888, + 35.740592375243594 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 69.54709469669888, + 36.464023934752205 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 69.54709469669888, + 37.18745549426082 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 69.54709469669888, + 37.91088705376943 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 69.54709469669888, + 38.63431861327804 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 69.54709469669888, + 39.35775017278665 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 69.54709469669888, + 40.08118173229526 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 69.54709469669888, + 40.804613291803875 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 69.54709469669888, + 41.52804485131249 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 69.54709469669888, + 42.2514764108211 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 69.54709469669888, + 42.97490797032971 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 69.54709469669888, + 43.69833952983832 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 69.54709469669888, + 44.42177108934693 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 69.54709469669888, + 45.145202648855545 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 69.54709469669888, + 45.868634208364156 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 69.54709469669888, + 46.59206576787277 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 69.54709469669888, + 47.31549732738138 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 70.28637997128624, + 11.867350911459308 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 70.28637997128624, + 12.590782470967923 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 70.28637997128624, + 13.314214030476538 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 70.28637997128624, + 14.037645589985154 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 70.28637997128624, + 14.761077149493769 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 70.28637997128624, + 15.484508709002384 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 70.28637997128624, + 16.207940268511 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 70.28637997128624, + 16.931371828019614 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 70.28637997128624, + 17.65480338752823 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 70.28637997128624, + 18.378234947036844 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 70.28637997128624, + 19.10166650654546 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 70.28637997128624, + 19.825098066054075 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 70.28637997128624, + 20.54852962556269 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 70.28637997128624, + 21.271961185071305 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 70.28637997128624, + 21.99539274457992 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 70.28637997128624, + 22.718824304088535 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 70.28637997128624, + 23.44225586359715 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 70.28637997128624, + 24.165687423105766 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 70.28637997128624, + 24.88911898261438 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 70.28637997128624, + 25.612550542122996 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 70.28637997128624, + 26.33598210163161 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 70.28637997128624, + 27.059413661140226 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 70.28637997128624, + 27.78284522064884 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 70.28637997128624, + 28.506276780157457 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 70.28637997128624, + 29.22970833966607 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 70.28637997128624, + 29.953139899174687 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 70.28637997128624, + 30.676571458683302 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 70.28637997128624, + 31.400003018191917 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 70.28637997128624, + 32.123434577700536 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 70.28637997128624, + 32.84686613720915 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 70.28637997128624, + 33.57029769671776 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 70.28637997128624, + 34.29372925622637 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 70.28637997128624, + 35.01716081573498 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 70.28637997128624, + 35.740592375243594 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 70.28637997128624, + 36.464023934752205 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 70.28637997128624, + 37.18745549426082 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 70.28637997128624, + 37.91088705376943 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 70.28637997128624, + 38.63431861327804 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 70.28637997128624, + 39.35775017278665 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 70.28637997128624, + 40.08118173229526 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 70.28637997128624, + 40.804613291803875 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 70.28637997128624, + 41.52804485131249 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 70.28637997128624, + 42.2514764108211 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 70.28637997128624, + 42.97490797032971 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 70.28637997128624, + 43.69833952983832 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 70.28637997128624, + 44.42177108934693 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 70.28637997128624, + 45.145202648855545 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 70.28637997128624, + 45.868634208364156 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 70.28637997128624, + 46.59206576787277 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 70.28637997128624, + 47.31549732738138 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 71.0256652458736, + 11.867350911459308 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 71.0256652458736, + 12.590782470967923 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 71.0256652458736, + 13.314214030476538 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 71.0256652458736, + 14.037645589985154 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 71.0256652458736, + 14.761077149493769 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 71.0256652458736, + 15.484508709002384 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 71.0256652458736, + 16.207940268511 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 71.0256652458736, + 16.931371828019614 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 71.0256652458736, + 17.65480338752823 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 71.0256652458736, + 18.378234947036844 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 71.0256652458736, + 19.10166650654546 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 71.0256652458736, + 19.825098066054075 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 71.0256652458736, + 20.54852962556269 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 71.0256652458736, + 21.271961185071305 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 71.0256652458736, + 21.99539274457992 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 71.0256652458736, + 22.718824304088535 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 71.0256652458736, + 23.44225586359715 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 71.0256652458736, + 24.165687423105766 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 71.0256652458736, + 24.88911898261438 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 71.0256652458736, + 25.612550542122996 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 71.0256652458736, + 26.33598210163161 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 71.0256652458736, + 27.059413661140226 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 71.0256652458736, + 27.78284522064884 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 71.0256652458736, + 28.506276780157457 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 71.0256652458736, + 29.22970833966607 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 71.0256652458736, + 29.953139899174687 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 71.0256652458736, + 30.676571458683302 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 71.0256652458736, + 31.400003018191917 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 71.0256652458736, + 32.123434577700536 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 71.0256652458736, + 32.84686613720915 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 71.0256652458736, + 33.57029769671776 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 71.0256652458736, + 34.29372925622637 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 71.0256652458736, + 35.01716081573498 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 71.0256652458736, + 35.740592375243594 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 71.0256652458736, + 36.464023934752205 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 71.0256652458736, + 37.18745549426082 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 71.0256652458736, + 37.91088705376943 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 71.0256652458736, + 38.63431861327804 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 71.0256652458736, + 39.35775017278665 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 71.0256652458736, + 40.08118173229526 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 71.0256652458736, + 40.804613291803875 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 71.0256652458736, + 41.52804485131249 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 71.0256652458736, + 42.2514764108211 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 71.0256652458736, + 42.97490797032971 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 71.0256652458736, + 43.69833952983832 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 71.0256652458736, + 44.42177108934693 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 71.0256652458736, + 45.145202648855545 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 71.0256652458736, + 45.868634208364156 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 71.0256652458736, + 46.59206576787277 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 71.0256652458736, + 47.31549732738138 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 71.76495052046096, + 11.867350911459308 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 71.76495052046096, + 12.590782470967923 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 71.76495052046096, + 13.314214030476538 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 71.76495052046096, + 14.037645589985154 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 71.76495052046096, + 14.761077149493769 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 71.76495052046096, + 15.484508709002384 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 71.76495052046096, + 16.207940268511 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 71.76495052046096, + 16.931371828019614 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 71.76495052046096, + 17.65480338752823 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 71.76495052046096, + 18.378234947036844 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 71.76495052046096, + 19.10166650654546 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 71.76495052046096, + 19.825098066054075 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 71.76495052046096, + 20.54852962556269 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 71.76495052046096, + 21.271961185071305 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 71.76495052046096, + 21.99539274457992 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 71.76495052046096, + 22.718824304088535 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 71.76495052046096, + 23.44225586359715 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 71.76495052046096, + 24.165687423105766 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 71.76495052046096, + 24.88911898261438 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 71.76495052046096, + 25.612550542122996 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 71.76495052046096, + 26.33598210163161 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 71.76495052046096, + 27.059413661140226 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 71.76495052046096, + 27.78284522064884 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 71.76495052046096, + 28.506276780157457 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 71.76495052046096, + 29.22970833966607 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 71.76495052046096, + 29.953139899174687 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 71.76495052046096, + 30.676571458683302 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 71.76495052046096, + 31.400003018191917 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 71.76495052046096, + 32.123434577700536 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 71.76495052046096, + 32.84686613720915 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 71.76495052046096, + 33.57029769671776 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 71.76495052046096, + 34.29372925622637 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 71.76495052046096, + 35.01716081573498 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 71.76495052046096, + 35.740592375243594 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 71.76495052046096, + 36.464023934752205 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 71.76495052046096, + 37.18745549426082 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 71.76495052046096, + 37.91088705376943 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 71.76495052046096, + 38.63431861327804 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 71.76495052046096, + 39.35775017278665 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 71.76495052046096, + 40.08118173229526 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 71.76495052046096, + 40.804613291803875 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 71.76495052046096, + 41.52804485131249 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 71.76495052046096, + 42.2514764108211 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 71.76495052046096, + 42.97490797032971 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 71.76495052046096, + 43.69833952983832 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 71.76495052046096, + 44.42177108934693 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 71.76495052046096, + 45.145202648855545 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 71.76495052046096, + 45.868634208364156 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 71.76495052046096, + 46.59206576787277 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 71.76495052046096, + 47.31549732738138 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 72.50423579504832, + 11.867350911459308 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 72.50423579504832, + 12.590782470967923 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 72.50423579504832, + 13.314214030476538 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 72.50423579504832, + 14.037645589985154 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 72.50423579504832, + 14.761077149493769 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 72.50423579504832, + 15.484508709002384 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 72.50423579504832, + 16.207940268511 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 72.50423579504832, + 16.931371828019614 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 72.50423579504832, + 17.65480338752823 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 72.50423579504832, + 18.378234947036844 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 72.50423579504832, + 19.10166650654546 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 72.50423579504832, + 19.825098066054075 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 72.50423579504832, + 20.54852962556269 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 72.50423579504832, + 21.271961185071305 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 72.50423579504832, + 21.99539274457992 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 72.50423579504832, + 22.718824304088535 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 72.50423579504832, + 23.44225586359715 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 72.50423579504832, + 24.165687423105766 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 72.50423579504832, + 24.88911898261438 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 72.50423579504832, + 25.612550542122996 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 72.50423579504832, + 26.33598210163161 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 72.50423579504832, + 27.059413661140226 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 72.50423579504832, + 27.78284522064884 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 72.50423579504832, + 28.506276780157457 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 72.50423579504832, + 29.22970833966607 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 72.50423579504832, + 29.953139899174687 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 72.50423579504832, + 30.676571458683302 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 72.50423579504832, + 31.400003018191917 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 72.50423579504832, + 32.123434577700536 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 72.50423579504832, + 32.84686613720915 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 72.50423579504832, + 33.57029769671776 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 72.50423579504832, + 34.29372925622637 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 72.50423579504832, + 35.01716081573498 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 72.50423579504832, + 35.740592375243594 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 72.50423579504832, + 36.464023934752205 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 72.50423579504832, + 37.18745549426082 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 72.50423579504832, + 37.91088705376943 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 72.50423579504832, + 38.63431861327804 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 72.50423579504832, + 39.35775017278665 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 72.50423579504832, + 40.08118173229526 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 72.50423579504832, + 40.804613291803875 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 72.50423579504832, + 41.52804485131249 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 72.50423579504832, + 42.2514764108211 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 72.50423579504832, + 42.97490797032971 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 72.50423579504832, + 43.69833952983832 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 72.50423579504832, + 44.42177108934693 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 72.50423579504832, + 45.145202648855545 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 72.50423579504832, + 45.868634208364156 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 72.50423579504832, + 46.59206576787277 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 72.50423579504832, + 47.31549732738138 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 73.24352106963568, + 11.867350911459308 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 73.24352106963568, + 12.590782470967923 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 73.24352106963568, + 13.314214030476538 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 73.24352106963568, + 14.037645589985154 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 73.24352106963568, + 14.761077149493769 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 73.24352106963568, + 15.484508709002384 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 73.24352106963568, + 16.207940268511 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 73.24352106963568, + 16.931371828019614 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 73.24352106963568, + 17.65480338752823 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 73.24352106963568, + 18.378234947036844 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 73.24352106963568, + 19.10166650654546 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 73.24352106963568, + 19.825098066054075 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 73.24352106963568, + 20.54852962556269 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 73.24352106963568, + 21.271961185071305 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 73.24352106963568, + 21.99539274457992 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 73.24352106963568, + 22.718824304088535 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 73.24352106963568, + 23.44225586359715 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 73.24352106963568, + 24.165687423105766 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 73.24352106963568, + 24.88911898261438 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 73.24352106963568, + 25.612550542122996 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 73.24352106963568, + 26.33598210163161 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 73.24352106963568, + 27.059413661140226 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 73.24352106963568, + 27.78284522064884 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 73.24352106963568, + 28.506276780157457 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 73.24352106963568, + 29.22970833966607 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 73.24352106963568, + 29.953139899174687 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 73.24352106963568, + 30.676571458683302 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 73.24352106963568, + 31.400003018191917 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 73.24352106963568, + 32.123434577700536 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 73.24352106963568, + 32.84686613720915 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 73.24352106963568, + 33.57029769671776 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 73.24352106963568, + 34.29372925622637 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 73.24352106963568, + 35.01716081573498 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 73.24352106963568, + 35.740592375243594 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 73.24352106963568, + 36.464023934752205 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 73.24352106963568, + 37.18745549426082 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 73.24352106963568, + 37.91088705376943 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 73.24352106963568, + 38.63431861327804 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 73.24352106963568, + 39.35775017278665 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 73.24352106963568, + 40.08118173229526 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 73.24352106963568, + 40.804613291803875 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 73.24352106963568, + 41.52804485131249 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 73.24352106963568, + 42.2514764108211 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 73.24352106963568, + 42.97490797032971 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 73.24352106963568, + 43.69833952983832 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 73.24352106963568, + 44.42177108934693 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 73.24352106963568, + 45.145202648855545 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 73.24352106963568, + 45.868634208364156 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 73.24352106963568, + 46.59206576787277 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 73.24352106963568, + 47.31549732738138 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 73.98280634422304, + 11.867350911459308 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 73.98280634422304, + 12.590782470967923 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 73.98280634422304, + 13.314214030476538 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 73.98280634422304, + 14.037645589985154 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 73.98280634422304, + 14.761077149493769 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 73.98280634422304, + 15.484508709002384 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 73.98280634422304, + 16.207940268511 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 73.98280634422304, + 16.931371828019614 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 73.98280634422304, + 17.65480338752823 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 73.98280634422304, + 18.378234947036844 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 73.98280634422304, + 19.10166650654546 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 73.98280634422304, + 19.825098066054075 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 73.98280634422304, + 20.54852962556269 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 73.98280634422304, + 21.271961185071305 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 73.98280634422304, + 21.99539274457992 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 73.98280634422304, + 22.718824304088535 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 73.98280634422304, + 23.44225586359715 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 73.98280634422304, + 24.165687423105766 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 73.98280634422304, + 24.88911898261438 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 73.98280634422304, + 25.612550542122996 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 73.98280634422304, + 26.33598210163161 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 73.98280634422304, + 27.059413661140226 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 73.98280634422304, + 27.78284522064884 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 73.98280634422304, + 28.506276780157457 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 73.98280634422304, + 29.22970833966607 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 73.98280634422304, + 29.953139899174687 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 73.98280634422304, + 30.676571458683302 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 73.98280634422304, + 31.400003018191917 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 73.98280634422304, + 32.123434577700536 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 73.98280634422304, + 32.84686613720915 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 73.98280634422304, + 33.57029769671776 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 73.98280634422304, + 34.29372925622637 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 73.98280634422304, + 35.01716081573498 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 73.98280634422304, + 35.740592375243594 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 73.98280634422304, + 36.464023934752205 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 73.98280634422304, + 37.18745549426082 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 73.98280634422304, + 37.91088705376943 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 73.98280634422304, + 38.63431861327804 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 73.98280634422304, + 39.35775017278665 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 73.98280634422304, + 40.08118173229526 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 73.98280634422304, + 40.804613291803875 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 73.98280634422304, + 41.52804485131249 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 73.98280634422304, + 42.2514764108211 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 73.98280634422304, + 42.97490797032971 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 73.98280634422304, + 43.69833952983832 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 73.98280634422304, + 44.42177108934693 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 73.98280634422304, + 45.145202648855545 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 73.98280634422304, + 45.868634208364156 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 73.98280634422304, + 46.59206576787277 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 73.98280634422304, + 47.31549732738138 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 74.7220916188104, + 11.867350911459308 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 74.7220916188104, + 12.590782470967923 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 74.7220916188104, + 13.314214030476538 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 74.7220916188104, + 14.037645589985154 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 74.7220916188104, + 14.761077149493769 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 74.7220916188104, + 15.484508709002384 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 74.7220916188104, + 16.207940268511 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 74.7220916188104, + 16.931371828019614 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 74.7220916188104, + 17.65480338752823 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 74.7220916188104, + 18.378234947036844 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 74.7220916188104, + 19.10166650654546 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 74.7220916188104, + 19.825098066054075 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 74.7220916188104, + 20.54852962556269 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 74.7220916188104, + 21.271961185071305 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 74.7220916188104, + 21.99539274457992 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 74.7220916188104, + 22.718824304088535 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 74.7220916188104, + 23.44225586359715 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 74.7220916188104, + 24.165687423105766 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 74.7220916188104, + 24.88911898261438 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 74.7220916188104, + 25.612550542122996 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 74.7220916188104, + 26.33598210163161 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 74.7220916188104, + 27.059413661140226 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 74.7220916188104, + 27.78284522064884 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 74.7220916188104, + 28.506276780157457 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 74.7220916188104, + 29.22970833966607 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 74.7220916188104, + 29.953139899174687 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 74.7220916188104, + 30.676571458683302 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 74.7220916188104, + 31.400003018191917 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 74.7220916188104, + 32.123434577700536 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 74.7220916188104, + 32.84686613720915 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 74.7220916188104, + 33.57029769671776 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 74.7220916188104, + 34.29372925622637 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 74.7220916188104, + 35.01716081573498 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 74.7220916188104, + 35.740592375243594 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 74.7220916188104, + 36.464023934752205 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 74.7220916188104, + 37.18745549426082 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 74.7220916188104, + 37.91088705376943 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 74.7220916188104, + 38.63431861327804 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 74.7220916188104, + 39.35775017278665 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 74.7220916188104, + 40.08118173229526 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 74.7220916188104, + 40.804613291803875 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 74.7220916188104, + 41.52804485131249 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 74.7220916188104, + 42.2514764108211 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 74.7220916188104, + 42.97490797032971 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 74.7220916188104, + 43.69833952983832 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 74.7220916188104, + 44.42177108934693 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 74.7220916188104, + 45.145202648855545 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 74.7220916188104, + 45.868634208364156 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 74.7220916188104, + 46.59206576787277 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 74.7220916188104, + 47.31549732738138 + ] + } + }, + { + "type": "Feature", + "properties": { + "fill-opacity": 0, + "stroke": "#0ff" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.6328125, + 11.867350911459308 + ], + [ + 75.234375, + 11.867350911459308 + ], + [ + 75.234375, + 47.754097979680026 + ], + [ + 63.6328125, + 47.754097979680026 + ], + [ + 63.6328125, + 11.867350911459308 + ] + ] + ] + } + } + ] +} \ No newline at end of file diff --git a/packages/turf-point-on-line/.npmignore b/packages/turf-point-on-line/.npmignore new file mode 100644 index 0000000000..bb3c08c09a --- /dev/null +++ b/packages/turf-point-on-line/.npmignore @@ -0,0 +1,2 @@ +test +coverage diff --git a/packages/turf-point-on-line/LICENSE b/packages/turf-point-on-line/LICENSE new file mode 100644 index 0000000000..77d1c4e7ee --- /dev/null +++ b/packages/turf-point-on-line/LICENSE @@ -0,0 +1,22 @@ +The MIT License (MIT) + +Copyright (c) 2015 Morgan Herlocker + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + diff --git a/packages/turf-point-on-line/README.md b/packages/turf-point-on-line/README.md new file mode 100644 index 0000000000..0c3bafef29 --- /dev/null +++ b/packages/turf-point-on-line/README.md @@ -0,0 +1,69 @@ +# turf-point-on-line + +[![build status](https://secure.travis-ci.org/Turfjs/turf-point-on-line.png)](http://travis-ci.org/Turfjs/turf-point-on-line) + + + + +### `turf.point-on-line (Line, Point)` + +Takes a Point and a LineString and calculates the closest Point on the LineString + + +### Parameters + +| parameter | type | description | +| --------- | ---------- | ------------ | +| `Line` | LineString | to snap to | +| `Point` | Point | to snap from | + + +### Example + +```js +var line = turf.linestring([ + [ + -77.0316696166992, + 38.878605901789236 + ], + [ + -77.02960968017578, + 38.88194668656296 + ], + [ + -77.02033996582031, + 38.88408470638821 + ], + [ + -77.02566146850586, + 38.885821800123196 + ], + [ + -77.02188491821289, + 38.88956308852534 + ], + [ + -77.01982498168944, + 38.89236892551996 + ] + ]); +var pt = turf.point([-77.02544689178467,38.88689075977245]); + +var snapped = turf.pointOnLine(line, pt); +//=snapped +``` + +## Installation + +Requires [nodejs](http://nodejs.org/). + +```sh +$ npm install turf-point-on-line +``` + +## Tests + +```sh +$ npm test +``` + diff --git a/packages/turf-point-on-line/bench.js b/packages/turf-point-on-line/bench.js new file mode 100644 index 0000000000..115df09758 --- /dev/null +++ b/packages/turf-point-on-line/bench.js @@ -0,0 +1,31 @@ +var pointOnLine = require('./'); +var Benchmark = require('benchmark'); +var fs = require('fs'); +var point = require('turf-helpers').point; + +var route1 = JSON.parse(fs.readFileSync(__dirname + '/test/in/route1.geojson')); +var route2 = JSON.parse(fs.readFileSync(__dirname + '/test/in/route2.geojson')); +var line1 = JSON.parse(fs.readFileSync(__dirname + '/test/in/line1.geojson')); + +var pt1 = point([-97.79617309570312,22.254624939561698]); +var pt2 = point([-79.0850830078125,37.60117623656667]); +var pt3 = point([-112.60660171508789,45.96021963947196]); + +var suite = new Benchmark.Suite('turf-point-on-line'); +suite + .add('turf-point-on-line#simple',function () { + pointOnLine(line1, pt1); + }) + .add('turf-point-on-line#route1',function () { + pointOnLine(route1, pt2); + }) + .add('turf-point-on-line#route2',function () { + pointOnLine(route2, pt3); + }) + .on('cycle', function (event) { + console.log(String(event.target)); + }) + .on('complete', function () { + + }) + .run(); diff --git a/packages/turf-point-on-line/index.js b/packages/turf-point-on-line/index.js new file mode 100644 index 0000000000..7a0b582af2 --- /dev/null +++ b/packages/turf-point-on-line/index.js @@ -0,0 +1,156 @@ +var distance = require('turf-distance'); +var point = require('turf-helpers').point; +var bearing = require('turf-bearing'); +var destination = require('turf-destination'); + +/** + * Takes a {@link Point} and a {@link LineString} and calculates the closest Point on the LineString. + * + * @name pointOnLine + * @category misc + * @param {Feature} line line to snap to + * @param {Feature} point point to snap from + * @return {Feature} closest point on the `line` to `point` + * @example + * var line = { + * "type": "Feature", + * "properties": {}, + * "geometry": { + * "type": "LineString", + * "coordinates": [ + * [-77.031669, 38.878605], + * [-77.029609, 38.881946], + * [-77.020339, 38.884084], + * [-77.025661, 38.885821], + * [-77.021884, 38.889563], + * [-77.019824, 38.892368] + * ] + * } + * }; + * var pt = { + * "type": "Feature", + * "properties": {}, + * "geometry": { + * "type": "Point", + * "coordinates": [-77.037076, 38.884017] + * } + * }; + * + * var snapped = turf.pointOnLine(line, pt); + * snapped.properties['marker-color'] = '#00f' + * + * var result = { + * "type": "FeatureCollection", + * "features": [line, pt, snapped] + * }; + * + * //=result + */ + +module.exports = function (line, pt) { + var coords; + if (line.type === 'Feature') { + coords = line.geometry.coordinates; + } else if (line.type === 'LineString') { + coords = line.geometry.coordinates; + } else { + throw new Error('input must be a LineString Feature or Geometry'); + } + + return pointOnLine(pt, coords); +}; + +function pointOnLine(pt, coords) { + var units = 'miles'; + var closestPt = point([Infinity, Infinity], { + dist: Infinity + }); + for (var i = 0; i < coords.length - 1; i++) { + var start = point(coords[i]); + var stop = point(coords[i + 1]); + //start + start.properties.dist = distance(pt, start, units); + //stop + stop.properties.dist = distance(pt, stop, units); + //perpendicular + var heightDistance = Math.max(start.properties.dist, stop.properties.dist); + var direction = bearing(start, stop); + var perpendicularPt1 = destination(pt, heightDistance, direction + 90, units); + var perpendicularPt2 = destination(pt, heightDistance, direction - 90, units); + var intersect = lineIntersects( + perpendicularPt1.geometry.coordinates[0], + perpendicularPt1.geometry.coordinates[1], + perpendicularPt2.geometry.coordinates[0], + perpendicularPt2.geometry.coordinates[1], + start.geometry.coordinates[0], + start.geometry.coordinates[1], + stop.geometry.coordinates[0], + stop.geometry.coordinates[1] + ); + var intersectPt; + if (intersect) { + intersectPt = point(intersect); + intersectPt.properties.dist = distance(pt, intersectPt, units); + } + + if (start.properties.dist < closestPt.properties.dist) { + closestPt = start; + closestPt.properties.index = i; + } + if (stop.properties.dist < closestPt.properties.dist) { + closestPt = stop; + closestPt.properties.index = i; + } + if (intersectPt && intersectPt.properties.dist < closestPt.properties.dist) { + closestPt = intersectPt; + closestPt.properties.index = i; + } + } + + return closestPt; +} + +// modified from http://jsfiddle.net/justin_c_rounds/Gd2S2/light/ +function lineIntersects(line1StartX, line1StartY, line1EndX, line1EndY, line2StartX, line2StartY, line2EndX, line2EndY) { + // if the lines intersect, the result contains the x and y of the intersection (treating the lines as infinite) and booleans for whether line segment 1 or line segment 2 contain the point + var denominator, a, b, numerator1, numerator2; + var result = { + x: null, + y: null, + onLine1: false, + onLine2: false + }; + denominator = ((line2EndY - line2StartY) * (line1EndX - line1StartX)) - ((line2EndX - line2StartX) * (line1EndY - line1StartY)); + if (denominator === 0) { + if (result.x !== null && result.y !== null) { + return result; + } else { + return false; + } + } + a = line1StartY - line2StartY; + b = line1StartX - line2StartX; + numerator1 = ((line2EndX - line2StartX) * a) - ((line2EndY - line2StartY) * b); + numerator2 = ((line1EndX - line1StartX) * a) - ((line1EndY - line1StartY) * b); + a = numerator1 / denominator; + b = numerator2 / denominator; + + // if we cast these lines infinitely in both directions, they intersect here: + result.x = line1StartX + (a * (line1EndX - line1StartX)); + result.y = line1StartY + (a * (line1EndY - line1StartY)); + + // if line1 is a segment and line2 is infinite, they intersect if: + if (a > 0 && a < 1) { + result.onLine1 = true; + } + // if line2 is a segment and line1 is infinite, they intersect if: + if (b > 0 && b < 1) { + result.onLine2 = true; + } + // if line1 and line2 are segments, they intersect if both of the above are true + if (result.onLine1 && result.onLine2) { + return [result.x, result.y]; + } else { + return false; + } +} diff --git a/packages/turf-point-on-line/package.json b/packages/turf-point-on-line/package.json new file mode 100644 index 0000000000..20c174ce19 --- /dev/null +++ b/packages/turf-point-on-line/package.json @@ -0,0 +1,30 @@ +{ + "name": "turf-point-on-line", + "version": "3.0.5", + "description": "", + "main": "index.js", + "scripts": { + "test": "node test.js" + }, + "repository": { + "type": "git", + "url": "https://github.com/Turfjs/turf-point-on-line.git" + }, + "author": "morganherlocker", + "license": "MIT", + "bugs": { + "url": "https://github.com/Turfjs/turf-point-on-line/issues" + }, + "homepage": "https://github.com/Turfjs/turf-point-on-line", + "devDependencies": { + "benchmark": "^1.0.0", + "tape": "^3.5.0", + "turf-helpers": "^3.0.5" + }, + "dependencies": { + "turf-bearing": "^3.0.1", + "turf-destination": "^3.0.5", + "turf-distance": "^3.0.5", + "turf-helpers": "^3.0.5" + } +} diff --git a/packages/turf-point-on-line/test.js b/packages/turf-point-on-line/test.js new file mode 100644 index 0000000000..6db562ed13 --- /dev/null +++ b/packages/turf-point-on-line/test.js @@ -0,0 +1,76 @@ +var test = require('tape'); +var fs = require('fs'); +var pointOnLine = require('./'); +var point = require('turf-helpers').point; +var featurecollection = require('turf-helpers').featureCollection; +var linestring = require('turf-helpers').lineString; + +var route1 = JSON.parse(fs.readFileSync(__dirname + '/test/in/route1.geojson')); +var route2 = JSON.parse(fs.readFileSync(__dirname + '/test/in/route2.geojson')); +var line1 = JSON.parse(fs.readFileSync(__dirname + '/test/in/line1.geojson')); + +test('turf-point-on-line -- line1', function (t) { + var pt = point([-97.79617309570312,22.254624939561698]); + + var snapped = pointOnLine(line1, pt); + snapped.properties['marker-color'] = '#f0f'; + + t.equal(snapped.geometry.type, 'Point'); + + fs.writeFileSync(__dirname+ '/test/out/line1_out.geojson', + JSON.stringify(featurecollection([ + line1, pt, snapped + ]), null, 2)); + + t.end(); +}); + +test('turf-point-on-line -- line2', function (t) { + var pt = point([0.4,0.1]); + var line2 = linestring([[0,0], [1,1]]); + + var snapped = pointOnLine(line2, pt); + snapped.properties['marker-color'] = '#f0f'; + + t.equal(snapped.geometry.type, 'Point'); + + fs.writeFileSync(__dirname+ '/test/out/line2_out.geojson', + JSON.stringify(featurecollection([ + line2, pt, snapped + ]), null, 2)); + + t.end(); +}); + + +test('turf-point-on-line -- route1', function (t) { + var pt = point([-79.0850830078125,37.60117623656667]); + + var snapped = pointOnLine(route1, pt); + snapped.properties['marker-color'] = '#f0f'; + + t.equal(snapped.geometry.type, 'Point'); + + fs.writeFileSync(__dirname+ '/test/out/route1_out.geojson', + JSON.stringify(featurecollection([ + route1, pt, snapped + ]), null, 2)); + + t.end(); +}); + +test('turf-point-on-line -- route2', function (t) { + var pt = point([-112.60660171508789,45.96021963947196]); + + var snapped = pointOnLine(route2, pt); + snapped.properties['marker-color'] = '#f0f'; + + t.equal(snapped.geometry.type, 'Point'); + + fs.writeFileSync(__dirname+ '/test/out/route2_out.geojson', + JSON.stringify(featurecollection([ + route2, pt, snapped + ]), null, 2)); + + t.end(); +}); diff --git a/packages/turf-point-on-line/test/in/line1.geojson b/packages/turf-point-on-line/test/in/line1.geojson new file mode 100644 index 0000000000..1626c3ffa2 --- /dev/null +++ b/packages/turf-point-on-line/test/in/line1.geojson @@ -0,0 +1,21 @@ +{ + "type": "Feature", + "properties": {}, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -97.88131713867188, + 22.466878364528448 + ], + [ + -97.82089233398438, + 22.175960091218524 + ], + [ + -97.6190185546875, + 21.8704201873689 + ] + ] + } +} \ No newline at end of file diff --git a/packages/turf-point-on-line/test/in/route1.geojson b/packages/turf-point-on-line/test/in/route1.geojson new file mode 100644 index 0000000000..8c19389b35 --- /dev/null +++ b/packages/turf-point-on-line/test/in/route1.geojson @@ -0,0 +1,2 @@ + +{ "type": "Feature", "properties": { "name": null, "cmt": null, "desc": null, "src": null, "link1_href": null, "link1_text": null, "link1_type": null, "link2_href": null, "link2_text": null, "link2_type": null, "number": null, "type": null }, "geometry": { "type": "LineString", "coordinates": [ [ -79.254923, 36.98394 ], [ -79.254923, 36.983939 ], [ -79.255326, 36.9838 ], [ -79.255401, 36.983774 ], [ -79.25576, 36.983664 ], [ -79.256795, 36.984137 ], [ -79.257537, 36.984478 ], [ -79.258539, 36.984925 ], [ -79.259498, 36.985353 ], [ -79.260286, 36.985712 ], [ -79.261405, 36.986222 ], [ -79.262933, 36.986928 ], [ -79.263237, 36.987071 ], [ -79.263755, 36.987296 ], [ -79.264086, 36.987423 ], [ -79.264167, 36.987446 ], [ -79.264338, 36.987486 ], [ -79.264414, 36.987501 ], [ -79.264618, 36.987531 ], [ -79.2648, 36.987542 ], [ -79.264982, 36.987537 ], [ -79.265163, 36.987517 ], [ -79.26703, 36.987355 ], [ -79.267952, 36.98726 ], [ -79.268404, 36.987226 ], [ -79.268771, 36.987197 ], [ -79.26955, 36.987117 ], [ -79.271398, 36.986946 ], [ -79.271488, 36.986941 ], [ -79.271698, 36.986925 ], [ -79.271936, 36.986898 ], [ -79.272231, 36.986852 ], [ -79.272474, 36.986785 ], [ -79.272711, 36.986705 ], [ -79.272895, 36.986632 ], [ -79.273059, 36.986552 ], [ -79.273646, 36.986245 ], [ -79.274224, 36.985925 ], [ -79.274887, 36.985592 ], [ -79.275308, 36.985365 ], [ -79.275672, 36.98517 ], [ -79.276249, 36.984876 ], [ -79.277101, 36.984433 ], [ -79.277425, 36.984259 ], [ -79.277918, 36.983982 ], [ -79.27799, 36.98395 ], [ -79.278179, 36.98385 ], [ -79.278261, 36.9838 ], [ -79.278335, 36.983745 ], [ -79.278421, 36.983666 ], [ -79.27844, 36.983647 ], [ -79.278502, 36.983577 ], [ -79.278548, 36.983511 ], [ -79.278614, 36.983381 ], [ -79.278654, 36.983273 ], [ -79.278711, 36.983011 ], [ -79.278763, 36.98269 ], [ -79.278806, 36.982485 ], [ -79.278866, 36.982282 ], [ -79.278952, 36.982101 ], [ -79.279023, 36.981984 ], [ -79.280178, 36.980418 ], [ -79.280259, 36.980319 ], [ -79.280355, 36.980229 ], [ -79.280419, 36.98018 ], [ -79.280578, 36.980082 ], [ -79.280666, 36.980038 ], [ -79.280783, 36.979994 ], [ -79.280908, 36.979963 ], [ -79.281301, 36.979913 ], [ -79.281646, 36.979874 ], [ -79.282145, 36.979835 ], [ -79.282797, 36.97977 ], [ -79.283144, 36.979743 ], [ -79.283618, 36.97972 ], [ -79.28399, 36.979706 ], [ -79.284447, 36.979695 ], [ -79.284904, 36.979697 ], [ -79.286913, 36.979638 ], [ -79.287201, 36.979628 ], [ -79.287954, 36.979612 ], [ -79.288037, 36.979611 ], [ -79.288397, 36.97962 ], [ -79.288697, 36.979643 ], [ -79.289908, 36.979722 ], [ -79.289994, 36.979724 ], [ -79.290136, 36.979716 ], [ -79.290248, 36.979699 ], [ -79.290503, 36.979632 ], [ -79.291043, 36.979454 ], [ -79.291563, 36.979269 ], [ -79.292467, 36.97896 ], [ -79.292759, 36.978877 ], [ -79.292963, 36.978832 ], [ -79.293286, 36.978778 ], [ -79.293549, 36.978746 ], [ -79.293649, 36.978738 ], [ -79.293755, 36.978729 ], [ -79.293858, 36.978731 ], [ -79.294028, 36.978747 ], [ -79.294162, 36.978771 ], [ -79.294243, 36.9788 ], [ -79.294439, 36.978883 ], [ -79.294626, 36.978979 ], [ -79.294782, 36.979072 ], [ -79.294921, 36.979174 ], [ -79.295023, 36.979263 ], [ -79.295281, 36.979534 ], [ -79.295458, 36.979739 ], [ -79.296347, 36.980843 ], [ -79.296549, 36.981064 ], [ -79.296594, 36.981095 ], [ -79.296695, 36.981144 ], [ -79.296788, 36.98117 ], [ -79.296916, 36.981184 ], [ -79.297032, 36.981182 ], [ -79.297147, 36.981165 ], [ -79.297933, 36.980962 ], [ -79.298145, 36.980893 ], [ -79.298401, 36.98079 ], [ -79.298602, 36.980696 ], [ -79.298795, 36.980593 ], [ -79.299134, 36.980402 ], [ -79.299407, 36.980244 ], [ -79.299963, 36.9799 ], [ -79.301767, 36.97881 ], [ -79.301976, 36.978691 ], [ -79.3021, 36.978619 ], [ -79.302508, 36.978369 ], [ -79.302614, 36.978309 ], [ -79.3028, 36.97822 ], [ -79.302995, 36.978145 ], [ -79.303113, 36.978114 ], [ -79.303153, 36.978249 ], [ -79.303232, 36.978565 ], [ -79.303319, 36.978989 ], [ -79.303326, 36.979184 ], [ -79.303313, 36.979346 ], [ -79.30324, 36.979748 ], [ -79.303136, 36.980362 ], [ -79.303088, 36.980609 ], [ -79.302996, 36.981143 ], [ -79.302982, 36.981226 ], [ -79.302977, 36.981321 ], [ -79.302986, 36.98144 ], [ -79.303013, 36.981556 ], [ -79.303057, 36.98167 ], [ -79.303191, 36.9819 ], [ -79.303336, 36.982126 ], [ -79.303702, 36.982652 ], [ -79.304322, 36.983486 ], [ -79.304588, 36.98382 ], [ -79.304756, 36.984051 ], [ -79.304903, 36.984229 ], [ -79.305059, 36.984403 ], [ -79.305145, 36.984487 ], [ -79.305336, 36.984648 ], [ -79.305612, 36.98486 ], [ -79.30569, 36.984915 ], [ -79.305765, 36.984974 ], [ -79.305944, 36.98513 ], [ -79.306108, 36.985295 ], [ -79.306259, 36.985469 ], [ -79.306333, 36.98557 ], [ -79.306437, 36.985737 ], [ -79.306524, 36.985911 ], [ -79.306595, 36.98609 ], [ -79.306677, 36.986365 ], [ -79.306734, 36.98662 ], [ -79.306773, 36.986878 ], [ -79.306759, 36.986998 ], [ -79.306724, 36.987146 ], [ -79.306621, 36.987426 ], [ -79.306591, 36.987545 ], [ -79.306555, 36.987745 ], [ -79.306536, 36.987984 ], [ -79.30653, 36.988172 ], [ -79.306539, 36.988321 ], [ -79.30655, 36.988398 ], [ -79.306566, 36.988507 ], [ -79.306673, 36.988967 ], [ -79.306789, 36.989416 ], [ -79.30681, 36.989518 ], [ -79.306831, 36.98969 ], [ -79.306833, 36.989828 ], [ -79.306822, 36.989888 ], [ -79.306771, 36.990067 ], [ -79.306696, 36.99024 ], [ -79.306569, 36.990463 ], [ -79.306374, 36.99078 ], [ -79.30633, 36.990863 ], [ -79.306292, 36.990972 ], [ -79.306271, 36.991084 ], [ -79.306268, 36.991229 ], [ -79.306282, 36.991421 ], [ -79.306323, 36.991648 ], [ -79.30657, 36.992516 ], [ -79.306601, 36.992703 ], [ -79.306614, 36.992892 ], [ -79.306598, 36.993111 ], [ -79.306569, 36.993287 ], [ -79.306553, 36.993345 ], [ -79.306526, 36.993432 ], [ -79.306466, 36.993574 ], [ -79.306313, 36.993848 ], [ -79.305971, 36.994382 ], [ -79.305826, 36.994647 ], [ -79.305382, 36.995598 ], [ -79.305197, 36.995963 ], [ -79.305065, 36.996284 ], [ -79.304983, 36.996521 ], [ -79.304954, 36.99668 ], [ -79.30495, 36.996815 ], [ -79.304959, 36.996932 ], [ -79.304988, 36.997077 ], [ -79.305024, 36.99719 ], [ -79.305111, 36.99739 ], [ -79.305197, 36.997567 ], [ -79.30532, 36.997782 ], [ -79.305429, 36.997949 ], [ -79.305577, 36.998153 ], [ -79.306017, 36.99873 ], [ -79.306204, 36.998965 ], [ -79.306407, 36.999192 ], [ -79.306624, 36.999411 ], [ -79.30672, 36.999489 ], [ -79.306828, 36.999557 ], [ -79.306922, 36.999602 ], [ -79.307072, 36.999656 ], [ -79.307354, 36.999723 ], [ -79.307628, 36.999778 ], [ -79.308892, 36.999988 ], [ -79.309029, 37.00002 ], [ -79.309135, 37.000056 ], [ -79.30926, 37.000112 ], [ -79.309374, 37.00018 ], [ -79.309478, 37.000259 ], [ -79.30959, 37.000372 ], [ -79.309743, 37.000552 ], [ -79.31029, 37.001344 ], [ -79.31037, 37.001451 ], [ -79.310486, 37.001568 ], [ -79.310598, 37.001654 ], [ -79.310697, 37.001714 ], [ -79.310838, 37.001785 ], [ -79.310991, 37.001844 ], [ -79.31115, 37.001891 ], [ -79.311632, 37.001979 ], [ -79.312359, 37.002135 ], [ -79.312455, 37.002156 ], [ -79.312915, 37.002271 ], [ -79.313026, 37.002296 ], [ -79.313639, 37.002422 ], [ -79.314311, 37.002515 ], [ -79.314769, 37.002553 ], [ -79.315227, 37.002582 ], [ -79.315352, 37.002604 ], [ -79.315472, 37.002641 ], [ -79.315543, 37.002685 ], [ -79.315621, 37.00275 ], [ -79.315685, 37.002824 ], [ -79.315725, 37.002889 ], [ -79.315888, 37.002832 ], [ -79.316221, 37.002733 ], [ -79.316448, 37.002678 ], [ -79.31752, 37.002455 ], [ -79.318524, 37.002275 ], [ -79.319059, 37.002211 ], [ -79.319268, 37.002199 ], [ -79.319435, 37.0022 ], [ -79.319651, 37.002214 ], [ -79.319786, 37.002226 ], [ -79.320258, 37.002279 ], [ -79.320522, 37.002298 ], [ -79.320786, 37.002302 ], [ -79.320953, 37.002288 ], [ -79.321116, 37.002258 ], [ -79.321274, 37.002213 ], [ -79.321381, 37.00217 ], [ -79.321762, 37.002001 ], [ -79.322382, 37.001698 ], [ -79.322844, 37.001466 ], [ -79.323023, 37.001376 ], [ -79.323292, 37.001249 ], [ -79.32357, 37.001134 ], [ -79.323943, 37.001003 ], [ -79.324098, 37.000958 ], [ -79.324162, 37.000945 ], [ -79.32513, 37.000843 ], [ -79.325325, 37.000814 ], [ -79.325517, 37.000777 ], [ -79.325753, 37.000719 ], [ -79.327186, 37.000266 ], [ -79.327482, 37.000173 ], [ -79.327802, 37.00008 ], [ -79.328598, 36.999838 ], [ -79.329158, 36.999654 ], [ -79.329204, 36.999715 ], [ -79.329343, 36.999894 ], [ -79.32942, 36.999975 ], [ -79.329588, 37.000125 ], [ -79.329742, 37.000239 ], [ -79.329777, 37.000256 ], [ -79.329869, 37.000291 ], [ -79.329988, 37.000315 ], [ -79.330091, 37.000318 ], [ -79.33027, 37.000316 ], [ -79.330449, 37.000298 ], [ -79.331035, 37.000223 ], [ -79.331427, 37.000184 ], [ -79.331855, 37.000129 ], [ -79.333009, 37.000023 ], [ -79.334568, 36.999869 ], [ -79.335002, 36.999826 ], [ -79.33552, 36.999806 ], [ -79.33606, 36.999814 ], [ -79.336208, 36.999833 ], [ -79.336352, 36.999866 ], [ -79.33649, 36.999913 ], [ -79.336644, 36.999986 ], [ -79.336856, 37.000123 ], [ -79.336962, 37.000203 ], [ -79.337096, 37.000316 ], [ -79.337325, 37.000539 ], [ -79.337519, 37.000761 ], [ -79.338522, 37.001965 ], [ -79.339126, 37.002688 ], [ -79.339574, 37.003185 ], [ -79.340385, 37.004106 ], [ -79.340479, 37.004212 ], [ -79.340603, 37.004341 ], [ -79.340773, 37.00449 ], [ -79.340929, 37.004602 ], [ -79.341131, 37.004723 ], [ -79.341632, 37.004968 ], [ -79.341875, 37.005087 ], [ -79.342172, 37.005233 ], [ -79.342594, 37.00542 ], [ -79.343189, 37.005708 ], [ -79.343817, 37.006011 ], [ -79.344455, 37.006335 ], [ -79.344712, 37.00647 ], [ -79.345697, 37.006916 ], [ -79.345837, 37.006985 ], [ -79.346006, 37.00708 ], [ -79.346221, 37.007218 ], [ -79.347403, 37.008016 ], [ -79.347493, 37.008071 ], [ -79.347634, 37.008171 ], [ -79.347763, 37.008281 ], [ -79.347971, 37.008497 ], [ -79.348051, 37.008623 ], [ -79.348135, 37.008786 ], [ -79.348201, 37.008954 ], [ -79.34825, 37.009126 ], [ -79.348316, 37.00954 ], [ -79.348397, 37.010196 ], [ -79.34854, 37.01111 ], [ -79.348616, 37.011496 ], [ -79.348778, 37.012266 ], [ -79.349159, 37.013946 ], [ -79.349315, 37.014628 ], [ -79.349636, 37.015919 ], [ -79.349688, 37.016183 ], [ -79.349795, 37.016628 ], [ -79.349854, 37.016827 ], [ -79.349915, 37.01701 ], [ -79.350064, 37.017337 ], [ -79.350135, 37.017464 ], [ -79.350159, 37.017499 ], [ -79.350325, 37.017735 ], [ -79.35042, 37.017865 ], [ -79.350584, 37.018129 ], [ -79.35072, 37.01842 ], [ -79.350808, 37.018683 ], [ -79.35089, 37.018981 ], [ -79.350968, 37.019317 ], [ -79.35119, 37.020219 ], [ -79.351251, 37.020445 ], [ -79.351346, 37.020719 ], [ -79.351414, 37.020888 ], [ -79.351505, 37.021079 ], [ -79.351682, 37.021459 ], [ -79.351825, 37.02176 ], [ -79.352185, 37.022473 ], [ -79.352628, 37.023433 ], [ -79.352751, 37.023743 ], [ -79.35282, 37.023863 ], [ -79.352895, 37.023965 ], [ -79.353012, 37.024078 ], [ -79.353078, 37.024127 ], [ -79.353186, 37.024186 ], [ -79.353325, 37.024244 ], [ -79.353398, 37.024265 ], [ -79.353421, 37.02427 ], [ -79.353621, 37.024315 ], [ -79.353675, 37.024321 ], [ -79.35392, 37.024336 ], [ -79.354286, 37.024379 ], [ -79.354423, 37.024385 ], [ -79.354844, 37.024375 ], [ -79.355058, 37.024359 ], [ -79.355214, 37.024339 ], [ -79.355354, 37.024308 ], [ -79.355614, 37.024238 ], [ -79.355718, 37.024209 ], [ -79.355965, 37.024125 ], [ -79.356147, 37.024057 ], [ -79.356485, 37.02394 ], [ -79.356546, 37.023919 ], [ -79.356797, 37.023824 ], [ -79.356964, 37.023769 ], [ -79.357077, 37.023757 ], [ -79.357196, 37.023767 ], [ -79.357262, 37.023786 ], [ -79.357309, 37.023811 ], [ -79.35735, 37.023849 ], [ -79.357388, 37.023905 ], [ -79.357541, 37.024317 ], [ -79.357583, 37.024391 ], [ -79.357634, 37.024438 ], [ -79.357685, 37.024467 ], [ -79.357747, 37.024487 ], [ -79.35783, 37.024497 ], [ -79.357899, 37.024495 ], [ -79.35801, 37.02448 ], [ -79.358102, 37.02446 ], [ -79.358409, 37.025941 ], [ -79.358471, 37.026316 ], [ -79.358502, 37.026637 ], [ -79.358517, 37.026844 ], [ -79.358519, 37.027185 ], [ -79.358497, 37.027679 ], [ -79.358457, 37.028033 ], [ -79.358398, 37.028378 ], [ -79.358301, 37.028779 ], [ -79.358082, 37.029574 ], [ -79.357957, 37.030026 ], [ -79.357813, 37.030609 ], [ -79.357745, 37.03095 ], [ -79.357685, 37.031344 ], [ -79.357656, 37.031612 ], [ -79.357621, 37.032199 ], [ -79.357619, 37.032445 ], [ -79.357631, 37.032766 ], [ -79.357637, 37.032893 ], [ -79.357666, 37.033258 ], [ -79.357711, 37.033639 ], [ -79.357789, 37.034066 ], [ -79.357875, 37.034441 ], [ -79.357922, 37.034622 ], [ -79.358521, 37.036938 ], [ -79.358613, 37.037315 ], [ -79.358687, 37.037658 ], [ -79.358786, 37.038217 ], [ -79.358856, 37.038791 ], [ -79.358911, 37.039356 ], [ -79.358965, 37.0401 ], [ -79.359051, 37.041306 ], [ -79.359073, 37.041825 ], [ -79.359059, 37.042471 ], [ -79.359012, 37.042954 ], [ -79.35899, 37.04313 ], [ -79.358922, 37.043537 ], [ -79.358829, 37.043973 ], [ -79.358773, 37.044171 ], [ -79.358704, 37.044417 ], [ -79.358541, 37.044914 ], [ -79.358352, 37.045429 ], [ -79.357856, 37.04678 ], [ -79.357794, 37.046961 ], [ -79.357564, 37.047556 ], [ -79.357409, 37.047915 ], [ -79.357338, 37.048062 ], [ -79.357278, 37.048184 ], [ -79.356942, 37.048801 ], [ -79.356841, 37.048967 ], [ -79.356589, 37.049349 ], [ -79.356363, 37.049677 ], [ -79.354212, 37.052783 ], [ -79.353972, 37.053148 ], [ -79.353865, 37.053295 ], [ -79.353452, 37.053889 ], [ -79.352197, 37.055711 ], [ -79.352126, 37.055808 ], [ -79.351983, 37.056023 ], [ -79.351596, 37.056539 ], [ -79.351413, 37.056761 ], [ -79.35122, 37.056979 ], [ -79.351018, 37.057191 ], [ -79.35075, 37.057445 ], [ -79.350603, 37.057584 ], [ -79.35029, 37.057856 ], [ -79.348032, 37.059645 ], [ -79.346954, 37.060488 ], [ -79.345892, 37.06133 ], [ -79.345295, 37.061797 ], [ -79.344778, 37.062208 ], [ -79.344716, 37.062258 ], [ -79.343942, 37.062866 ], [ -79.343259, 37.06342 ], [ -79.342925, 37.063722 ], [ -79.342732, 37.063907 ], [ -79.342302, 37.064351 ], [ -79.342055, 37.06463 ], [ -79.341843, 37.064885 ], [ -79.341424, 37.065452 ], [ -79.341048, 37.066036 ], [ -79.340718, 37.066647 ], [ -79.340066, 37.068047 ], [ -79.338982, 37.070343 ], [ -79.336951, 37.074656 ], [ -79.336672, 37.075265 ], [ -79.335622, 37.077497 ], [ -79.335265, 37.078252 ], [ -79.33489, 37.079062 ], [ -79.334833, 37.079182 ], [ -79.334222, 37.080477 ], [ -79.333262, 37.082521 ], [ -79.333001, 37.083079 ], [ -79.332628, 37.084028 ], [ -79.332548, 37.084278 ], [ -79.332388, 37.08478 ], [ -79.332201, 37.085539 ], [ -79.33204, 37.086421 ], [ -79.33196, 37.086978 ], [ -79.331907, 37.087757 ], [ -79.331871, 37.088536 ], [ -79.33185, 37.089317 ], [ -79.331805, 37.090324 ], [ -79.331772, 37.091338 ], [ -79.331768, 37.092235 ], [ -79.33183, 37.093576 ], [ -79.331943, 37.095022 ], [ -79.332045, 37.096198 ], [ -79.332341, 37.099713 ], [ -79.332397, 37.100421 ], [ -79.332436, 37.101086 ], [ -79.332443, 37.1013 ], [ -79.332438, 37.10199 ], [ -79.332418, 37.102426 ], [ -79.332391, 37.102795 ], [ -79.332337, 37.103324 ], [ -79.332244, 37.103966 ], [ -79.332205, 37.104185 ], [ -79.332175, 37.104355 ], [ -79.332056, 37.104907 ], [ -79.332041, 37.104978 ], [ -79.331903, 37.105494 ], [ -79.331733, 37.106053 ], [ -79.331559, 37.106562 ], [ -79.33131, 37.107195 ], [ -79.331178, 37.107501 ], [ -79.330959, 37.107973 ], [ -79.330748, 37.108399 ], [ -79.330489, 37.108876 ], [ -79.330365, 37.109093 ], [ -79.330155, 37.10944 ], [ -79.329757, 37.110058 ], [ -79.328813, 37.111446 ], [ -79.328701, 37.111611 ], [ -79.327118, 37.113932 ], [ -79.327107, 37.113947 ], [ -79.326498, 37.114802 ], [ -79.326178, 37.115223 ], [ -79.326128, 37.115289 ], [ -79.32568, 37.115855 ], [ -79.325061, 37.116595 ], [ -79.324816, 37.116878 ], [ -79.324497, 37.117235 ], [ -79.324161, 37.117601 ], [ -79.323816, 37.117964 ], [ -79.323589, 37.118194 ], [ -79.323104, 37.118678 ], [ -79.322015, 37.119732 ], [ -79.320826, 37.12089 ], [ -79.320279, 37.121415 ], [ -79.31993, 37.121729 ], [ -79.319276, 37.122271 ], [ -79.318828, 37.122609 ], [ -79.318377, 37.122925 ], [ -79.317535, 37.123462 ], [ -79.316595, 37.123987 ], [ -79.315586, 37.124473 ], [ -79.314958, 37.124742 ], [ -79.311931, 37.125973 ], [ -79.303986, 37.129196 ], [ -79.303177, 37.129555 ], [ -79.302367, 37.129915 ], [ -79.30095, 37.130617 ], [ -79.298871, 37.131691 ], [ -79.298008, 37.132146 ], [ -79.293574, 37.134491 ], [ -79.293108, 37.134749 ], [ -79.292712, 37.134937 ], [ -79.292278, 37.135125 ], [ -79.291836, 37.1353 ], [ -79.291351, 37.135473 ], [ -79.290905, 37.135615 ], [ -79.290365, 37.135772 ], [ -79.289641, 37.135941 ], [ -79.289078, 37.136055 ], [ -79.288222, 37.136184 ], [ -79.287781, 37.136228 ], [ -79.287205, 37.136269 ], [ -79.281895, 37.136526 ], [ -79.280512, 37.136607 ], [ -79.279731, 37.13667 ], [ -79.278968, 37.136747 ], [ -79.277922, 37.136872 ], [ -79.276244, 37.13712 ], [ -79.273494, 37.137624 ], [ -79.272005, 37.137904 ], [ -79.271794, 37.137944 ], [ -79.266159, 37.138985 ], [ -79.265643, 37.139056 ], [ -79.265084, 37.139119 ], [ -79.264404, 37.139177 ], [ -79.263826, 37.139213 ], [ -79.263263, 37.139234 ], [ -79.262666, 37.139241 ], [ -79.262103, 37.139234 ], [ -79.26149, 37.139213 ], [ -79.260895, 37.13918 ], [ -79.260488, 37.139149 ], [ -79.257811, 37.138859 ], [ -79.253283, 37.138354 ], [ -79.251817, 37.138189 ], [ -79.251311, 37.138138 ], [ -79.25082, 37.138104 ], [ -79.250344, 37.138087 ], [ -79.249949, 37.138091 ], [ -79.249141, 37.138125 ], [ -79.248701, 37.138169 ], [ -79.248255, 37.138232 ], [ -79.247815, 37.138303 ], [ -79.247404, 37.138388 ], [ -79.246983, 37.138492 ], [ -79.24619, 37.138741 ], [ -79.246034, 37.138799 ], [ -79.245567, 37.138991 ], [ -79.243639, 37.139795 ], [ -79.242121, 37.140435 ], [ -79.241618, 37.140648 ], [ -79.241125, 37.14089 ], [ -79.240755, 37.141103 ], [ -79.240471, 37.141293 ], [ -79.240237, 37.141475 ], [ -79.240023, 37.141661 ], [ -79.239659, 37.142024 ], [ -79.238717, 37.143115 ], [ -79.238653, 37.143189 ], [ -79.238443, 37.143404 ], [ -79.23822, 37.14361 ], [ -79.237972, 37.143817 ], [ -79.237711, 37.144013 ], [ -79.237424, 37.144206 ], [ -79.237139, 37.144378 ], [ -79.236846, 37.144536 ], [ -79.23672, 37.144599 ], [ -79.235366, 37.145185 ], [ -79.235031, 37.145327 ], [ -79.233118, 37.146139 ], [ -79.232943, 37.146214 ], [ -79.23213, 37.146559 ], [ -79.23159, 37.146789 ], [ -79.231268, 37.146943 ], [ -79.230971, 37.147103 ], [ -79.230723, 37.147248 ], [ -79.230589, 37.147333 ], [ -79.230303, 37.147527 ], [ -79.230067, 37.147704 ], [ -79.229831, 37.147902 ], [ -79.229608, 37.148108 ], [ -79.229398, 37.148324 ], [ -79.229192, 37.148559 ], [ -79.229002, 37.148802 ], [ -79.228823, 37.149065 ], [ -79.228683, 37.149299 ], [ -79.228557, 37.149537 ], [ -79.228436, 37.149807 ], [ -79.228332, 37.15008 ], [ -79.22824, 37.150371 ], [ -79.228165, 37.150679 ], [ -79.228144, 37.150787 ], [ -79.22795, 37.1522 ], [ -79.227939, 37.152282 ], [ -79.227922, 37.152405 ], [ -79.227831, 37.1531 ], [ -79.227768, 37.153577 ], [ -79.22775, 37.153704 ], [ -79.227707, 37.153951 ], [ -79.227614, 37.154338 ], [ -79.227519, 37.154642 ], [ -79.227394, 37.154981 ], [ -79.227259, 37.155289 ], [ -79.227113, 37.155579 ], [ -79.227008, 37.155764 ], [ -79.226979, 37.155814 ], [ -79.226931, 37.155892 ], [ -79.22673, 37.156196 ], [ -79.226531, 37.156466 ], [ -79.226359, 37.156679 ], [ -79.226091, 37.156981 ], [ -79.225836, 37.157239 ], [ -79.225577, 37.157477 ], [ -79.225307, 37.157704 ], [ -79.225033, 37.15791 ], [ -79.224838, 37.158043 ], [ -79.223223, 37.159106 ], [ -79.222625, 37.159494 ], [ -79.222577, 37.159525 ], [ -79.222526, 37.159559 ], [ -79.222269, 37.159725 ], [ -79.221758, 37.160065 ], [ -79.219427, 37.161585 ], [ -79.218294, 37.162324 ], [ -79.218211, 37.162378 ], [ -79.216923, 37.163217 ], [ -79.216426, 37.163539 ], [ -79.215909, 37.16389 ], [ -79.215531, 37.164171 ], [ -79.215221, 37.164425 ], [ -79.214936, 37.164678 ], [ -79.214674, 37.164929 ], [ -79.214292, 37.165324 ], [ -79.214244, 37.165374 ], [ -79.213081, 37.166582 ], [ -79.212642, 37.167038 ], [ -79.212368, 37.167324 ], [ -79.212048, 37.167658 ], [ -79.211768, 37.16795 ], [ -79.211486, 37.168245 ], [ -79.211416, 37.168318 ], [ -79.211008, 37.168744 ], [ -79.210963, 37.168791 ], [ -79.210689, 37.16908 ], [ -79.210304, 37.16953 ], [ -79.2101, 37.169782 ], [ -79.209923, 37.170006 ], [ -79.209526, 37.170538 ], [ -79.209343, 37.170798 ], [ -79.207037, 37.174039 ], [ -79.206764, 37.174435 ], [ -79.206634, 37.174641 ], [ -79.206469, 37.174929 ], [ -79.206273, 37.17532 ], [ -79.20615, 37.175603 ], [ -79.206073, 37.175802 ], [ -79.206026, 37.175929 ], [ -79.205916, 37.176273 ], [ -79.205845, 37.176539 ], [ -79.205757, 37.176917 ], [ -79.205696, 37.177164 ], [ -79.205658, 37.177349 ], [ -79.205603, 37.177589 ], [ -79.205562, 37.177759 ], [ -79.205539, 37.177863 ], [ -79.205487, 37.178091 ], [ -79.205427, 37.178344 ], [ -79.205364, 37.178607 ], [ -79.205297, 37.178889 ], [ -79.205253, 37.179068 ], [ -79.20519, 37.179332 ], [ -79.205122, 37.179618 ], [ -79.205055, 37.179895 ], [ -79.204997, 37.180138 ], [ -79.204614, 37.181773 ], [ -79.204588, 37.181883 ], [ -79.204488, 37.182314 ], [ -79.204319, 37.183043 ], [ -79.204265, 37.183268 ], [ -79.204123, 37.18388 ], [ -79.203924, 37.184747 ], [ -79.203855, 37.185167 ], [ -79.203781, 37.185725 ], [ -79.203767, 37.185869 ], [ -79.203714, 37.186727 ], [ -79.203688, 37.188358 ], [ -79.203665, 37.189574 ], [ -79.203624, 37.192626 ], [ -79.203627, 37.192665 ], [ -79.203588, 37.193792 ], [ -79.203572, 37.194229 ], [ -79.203568, 37.194309 ], [ -79.203559, 37.194539 ], [ -79.203553, 37.194676 ], [ -79.203543, 37.194919 ], [ -79.203531, 37.195199 ], [ -79.203502, 37.195859 ], [ -79.203483, 37.196276 ], [ -79.203468, 37.196579 ], [ -79.203458, 37.196792 ], [ -79.203433, 37.197322 ], [ -79.203422, 37.197563 ], [ -79.20341, 37.197824 ], [ -79.203397, 37.198095 ], [ -79.20339, 37.198254 ], [ -79.203379, 37.19847 ], [ -79.203358, 37.198936 ], [ -79.20334, 37.19935 ], [ -79.203304, 37.200071 ], [ -79.203262, 37.200536 ], [ -79.203244, 37.200686 ], [ -79.203162, 37.201241 ], [ -79.203073, 37.201722 ], [ -79.20306, 37.201793 ], [ -79.203026, 37.201977 ], [ -79.202836, 37.203003 ], [ -79.202752, 37.203459 ], [ -79.202563, 37.204478 ], [ -79.202452, 37.205079 ], [ -79.202395, 37.205385 ], [ -79.201856, 37.208299 ], [ -79.201805, 37.208574 ], [ -79.201702, 37.209126 ], [ -79.201673, 37.209268 ], [ -79.201619, 37.209479 ], [ -79.201573, 37.209638 ], [ -79.201505, 37.209836 ], [ -79.201407, 37.210085 ], [ -79.201284, 37.210341 ], [ -79.201114, 37.21064 ], [ -79.201026, 37.210776 ], [ -79.200882, 37.21098 ], [ -79.200649, 37.211282 ], [ -79.200396, 37.211554 ], [ -79.199727, 37.212167 ], [ -79.199637, 37.212249 ], [ -79.199553, 37.212325 ], [ -79.199391, 37.212473 ], [ -79.199159, 37.212684 ], [ -79.19865, 37.213144 ], [ -79.197756, 37.213946 ], [ -79.197588, 37.214097 ], [ -79.197252, 37.214415 ], [ -79.196922, 37.214731 ], [ -79.196487, 37.215166 ], [ -79.196055, 37.215596 ], [ -79.195714, 37.216042 ], [ -79.195395, 37.216449 ], [ -79.194175, 37.218086 ], [ -79.193942, 37.2184 ], [ -79.193714, 37.218705 ], [ -79.193339, 37.219208 ], [ -79.193103, 37.219523 ], [ -79.192804, 37.219924 ], [ -79.192465, 37.220384 ], [ -79.191972, 37.221056 ], [ -79.191665, 37.221486 ], [ -79.191271, 37.222039 ], [ -79.191066, 37.222328 ], [ -79.190837, 37.222648 ], [ -79.190786, 37.222724 ], [ -79.190591, 37.223024 ], [ -79.190561, 37.223069 ], [ -79.190114, 37.223762 ], [ -79.189976, 37.223994 ], [ -79.189786, 37.224314 ], [ -79.189538, 37.224731 ], [ -79.189441, 37.224896 ], [ -79.189231, 37.225287 ], [ -79.188873, 37.225949 ], [ -79.188647, 37.226369 ], [ -79.188578, 37.226497 ], [ -79.188422, 37.22682 ], [ -79.187747, 37.228226 ], [ -79.187638, 37.228454 ], [ -79.186752, 37.230317 ], [ -79.186236, 37.23142 ], [ -79.186183, 37.231531 ], [ -79.186143, 37.231633 ], [ -79.186012, 37.231905 ], [ -79.185971, 37.232009 ], [ -79.185901, 37.232204 ], [ -79.185821, 37.232467 ], [ -79.185783, 37.232629 ], [ -79.185746, 37.232787 ], [ -79.185712, 37.232989 ], [ -79.185564, 37.234115 ], [ -79.18554, 37.234342 ], [ -79.185535, 37.234388 ], [ -79.185527, 37.234464 ], [ -79.185489, 37.234824 ], [ -79.185459, 37.235133 ], [ -79.185442, 37.235447 ], [ -79.185444, 37.235802 ], [ -79.185467, 37.236157 ], [ -79.185494, 37.236478 ], [ -79.185509, 37.236629 ], [ -79.185568, 37.237037 ], [ -79.185613, 37.237268 ], [ -79.185642, 37.237403 ], [ -79.185719, 37.237706 ], [ -79.185791, 37.237965 ], [ -79.185811, 37.238037 ], [ -79.185899, 37.238345 ], [ -79.185952, 37.238527 ], [ -79.18597, 37.23859 ], [ -79.186042, 37.238834 ], [ -79.186525, 37.240494 ], [ -79.186638, 37.240882 ], [ -79.186786, 37.241392 ], [ -79.186995, 37.242108 ], [ -79.187061, 37.242336 ], [ -79.187075, 37.242384 ], [ -79.187298, 37.243149 ], [ -79.187378, 37.243422 ], [ -79.187527, 37.243936 ], [ -79.187774, 37.244774 ], [ -79.187853, 37.245008 ], [ -79.187949, 37.245331 ], [ -79.187975, 37.245426 ], [ -79.18809, 37.245933 ], [ -79.188158, 37.246339 ], [ -79.188193, 37.246639 ], [ -79.188214, 37.246935 ], [ -79.188219, 37.247189 ], [ -79.188219, 37.247284 ], [ -79.188204, 37.247624 ], [ -79.188173, 37.24795 ], [ -79.188121, 37.248287 ], [ -79.188078, 37.248502 ], [ -79.188012, 37.248777 ], [ -79.187964, 37.248948 ], [ -79.18752, 37.250322 ], [ -79.187502, 37.250377 ], [ -79.187461, 37.250489 ], [ -79.187101, 37.251604 ], [ -79.186977, 37.251986 ], [ -79.186803, 37.252487 ], [ -79.186647, 37.252862 ], [ -79.186473, 37.253233 ], [ -79.1864, 37.253375 ], [ -79.186369, 37.253435 ], [ -79.186196, 37.253727 ], [ -79.186096, 37.253883 ], [ -79.185846, 37.254253 ], [ -79.185619, 37.254587 ], [ -79.184816, 37.255765 ], [ -79.184332, 37.256471 ], [ -79.184251, 37.256583 ], [ -79.183919, 37.257073 ], [ -79.183282, 37.258009 ], [ -79.183273, 37.258023 ], [ -79.182658, 37.258928 ], [ -79.182428, 37.259266 ], [ -79.182236, 37.259548 ], [ -79.182189, 37.259617 ], [ -79.181677, 37.260371 ], [ -79.180889, 37.261527 ], [ -79.180329, 37.262346 ], [ -79.179966, 37.262877 ], [ -79.178561, 37.264935 ], [ -79.177834, 37.265998 ], [ -79.17762, 37.266312 ], [ -79.177577, 37.266375 ], [ -79.177344, 37.266717 ], [ -79.177268, 37.266828 ], [ -79.175738, 37.269066 ], [ -79.175293, 37.269718 ], [ -79.175059, 37.270062 ], [ -79.175024, 37.270113 ], [ -79.174746, 37.27052 ], [ -79.174499, 37.270885 ], [ -79.174225, 37.271286 ], [ -79.17318, 37.27282 ], [ -79.172596, 37.273676 ], [ -79.172062, 37.274457 ], [ -79.17205, 37.274476 ], [ -79.171892, 37.274707 ], [ -79.171746, 37.274919 ], [ -79.170612, 37.276581 ], [ -79.170091, 37.277344 ], [ -79.170074, 37.277368 ], [ -79.169014, 37.27887 ], [ -79.168768, 37.279279 ], [ -79.168446, 37.279751 ], [ -79.168095, 37.28026 ], [ -79.167791, 37.280704 ], [ -79.167004, 37.281854 ], [ -79.166839, 37.282126 ], [ -79.166686, 37.282417 ], [ -79.166553, 37.282715 ], [ -79.166455, 37.282978 ], [ -79.166365, 37.283271 ], [ -79.166331, 37.283406 ], [ -79.166277, 37.283662 ], [ -79.166236, 37.283934 ], [ -79.166211, 37.284233 ], [ -79.166208, 37.284331 ], [ -79.16621, 37.284606 ], [ -79.166232, 37.284894 ], [ -79.166273, 37.28518 ], [ -79.166341, 37.285491 ], [ -79.166394, 37.28568 ], [ -79.166419, 37.28576 ], [ -79.16653, 37.286061 ], [ -79.16656, 37.286133 ], [ -79.166601, 37.286228 ], [ -79.167073, 37.287187 ], [ -79.167342, 37.287727 ], [ -79.167647, 37.288335 ], [ -79.167961, 37.288961 ], [ -79.168213, 37.289466 ], [ -79.168669, 37.290363 ], [ -79.169252, 37.291516 ], [ -79.169707, 37.292425 ], [ -79.170019, 37.293049 ], [ -79.170164, 37.293337 ], [ -79.170762, 37.294525 ], [ -79.171017, 37.295032 ], [ -79.171197, 37.29539 ], [ -79.171228, 37.295451 ], [ -79.171707, 37.296402 ], [ -79.171854, 37.296694 ], [ -79.172057, 37.297099 ], [ -79.172329, 37.297639 ], [ -79.172756, 37.298485 ], [ -79.172921, 37.29877 ], [ -79.173118, 37.299071 ], [ -79.173326, 37.299351 ], [ -79.1734, 37.299443 ], [ -79.173711, 37.299824 ], [ -79.174643, 37.300928 ], [ -79.177789, 37.304649 ], [ -79.17841, 37.305383 ], [ -79.179563, 37.306751 ], [ -79.18128, 37.308787 ], [ -79.181492, 37.309036 ], [ -79.181949, 37.309573 ], [ -79.182599, 37.310336 ], [ -79.183198, 37.311046 ], [ -79.183775, 37.311729 ], [ -79.183964, 37.311947 ], [ -79.18428, 37.312314 ], [ -79.18536, 37.313557 ], [ -79.18553, 37.313753 ], [ -79.18588, 37.314159 ], [ -79.186286, 37.314624 ], [ -79.186592, 37.314975 ], [ -79.186893, 37.31532 ], [ -79.187155, 37.315623 ], [ -79.187287, 37.315796 ], [ -79.187433, 37.315958 ], [ -79.187603, 37.316193 ], [ -79.187705, 37.316348 ], [ -79.187781, 37.316469 ], [ -79.187895, 37.316666 ], [ -79.188063, 37.316995 ], [ -79.188211, 37.31734 ], [ -79.188267, 37.317488 ], [ -79.188574, 37.31828 ], [ -79.18873, 37.318682 ], [ -79.188773, 37.318793 ], [ -79.188818, 37.318907 ], [ -79.188983, 37.319332 ], [ -79.189167, 37.319817 ], [ -79.18919, 37.319881 ], [ -79.189276, 37.320122 ], [ -79.189293, 37.320183 ], [ -79.189372, 37.320484 ], [ -79.189407, 37.320635 ], [ -79.189445, 37.320825 ], [ -79.189477, 37.321015 ], [ -79.189492, 37.321115 ], [ -79.189533, 37.321458 ], [ -79.189536, 37.321492 ], [ -79.189586, 37.322119 ], [ -79.189602, 37.322319 ], [ -79.189637, 37.32275 ], [ -79.189647, 37.322876 ], [ -79.189704, 37.323523 ], [ -79.189737, 37.323892 ], [ -79.189747, 37.323997 ], [ -79.189761, 37.324147 ], [ -79.189781, 37.324375 ], [ -79.189798, 37.324545 ], [ -79.189823, 37.324722 ], [ -79.189861, 37.324935 ], [ -79.189896, 37.325095 ], [ -79.189922, 37.3252 ], [ -79.190034, 37.325593 ], [ -79.190115, 37.325884 ], [ -79.190279, 37.326471 ], [ -79.190558, 37.327468 ], [ -79.190626, 37.327737 ], [ -79.190656, 37.327855 ], [ -79.190719, 37.328102 ], [ -79.190893, 37.328783 ], [ -79.19093, 37.328914 ], [ -79.19114, 37.329665 ], [ -79.191197, 37.329849 ], [ -79.191289, 37.330174 ], [ -79.191411, 37.330604 ], [ -79.191427, 37.330662 ], [ -79.191549, 37.331144 ], [ -79.191612, 37.331407 ], [ -79.191674, 37.33166 ], [ -79.191713, 37.331945 ], [ -79.191731, 37.332216 ], [ -79.191727, 37.3324 ], [ -79.191718, 37.332618 ], [ -79.191688, 37.333114 ], [ -79.191671, 37.333265 ], [ -79.191652, 37.333506 ], [ -79.191625, 37.33369 ], [ -79.191591, 37.333978 ], [ -79.191586, 37.334109 ], [ -79.191605, 37.334336 ], [ -79.19161, 37.334672 ], [ -79.191612, 37.334771 ], [ -79.191619, 37.335165 ], [ -79.191615, 37.335425 ], [ -79.191612, 37.335464 ], [ -79.191591, 37.335798 ], [ -79.191573, 37.33597 ], [ -79.19153, 37.336198 ], [ -79.191511, 37.3363 ], [ -79.191476, 37.336481 ], [ -79.191396, 37.336901 ], [ -79.191254, 37.33724 ], [ -79.191108, 37.337564 ], [ -79.190891, 37.337852 ], [ -79.190707, 37.338004 ], [ -79.190446, 37.338136 ], [ -79.190159, 37.338232 ], [ -79.189809, 37.338303 ], [ -79.189504, 37.338343 ], [ -79.189039, 37.338414 ], [ -79.188663, 37.33847 ], [ -79.188351, 37.338526 ], [ -79.18802, 37.338571 ], [ -79.18767, 37.338617 ], [ -79.187276, 37.338677 ], [ -79.18683, 37.338758 ], [ -79.186448, 37.338854 ], [ -79.186232, 37.338986 ], [ -79.186034, 37.339158 ], [ -79.185913, 37.339381 ], [ -79.185862, 37.339654 ], [ -79.185792, 37.339958 ], [ -79.185735, 37.340246 ], [ -79.185608, 37.340565 ], [ -79.185474, 37.340849 ], [ -79.185264, 37.341152 ], [ -79.185009, 37.341421 ], [ -79.184748, 37.341658 ], [ -79.184399, 37.341989 ], [ -79.184093, 37.342254 ], [ -79.183658, 37.342682 ], [ -79.18294, 37.343536 ], [ -79.182113, 37.344505 ], [ -79.181077, 37.345699 ], [ -79.180004, 37.346871 ], [ -79.178729, 37.348196 ], [ -79.177389, 37.349407 ], [ -79.177129, 37.349621 ], [ -79.176626, 37.350036 ], [ -79.173129, 37.353092 ], [ -79.169752, 37.356318 ], [ -79.169186, 37.356859 ], [ -79.166439, 37.359647 ], [ -79.165165, 37.360856 ], [ -79.164528, 37.361444 ], [ -79.163946, 37.361878 ], [ -79.162943, 37.362614 ], [ -79.161891, 37.363349 ], [ -79.159885, 37.364693 ], [ -79.158866, 37.365389 ], [ -79.157915, 37.36609 ], [ -79.156262, 37.367299 ], [ -79.153378, 37.36939 ], [ -79.1513, 37.370777 ], [ -79.148798, 37.372337 ], [ -79.146813, 37.373529 ], [ -79.146135, 37.37394 ], [ -79.145298, 37.374385 ], [ -79.144399, 37.374808 ], [ -79.143032, 37.375351 ], [ -79.142887, 37.375396 ], [ -79.141407, 37.375861 ], [ -79.13952, 37.376309 ], [ -79.137442, 37.376753 ], [ -79.136385, 37.376976 ], [ -79.135221, 37.37722 ], [ -79.134065, 37.377456 ], [ -79.132756, 37.377733 ], [ -79.131505, 37.377997 ], [ -79.130701, 37.378165 ], [ -79.129655, 37.378385 ], [ -79.128812, 37.378561 ], [ -79.127809, 37.378776 ], [ -79.127166, 37.378891 ], [ -79.124907, 37.379433 ], [ -79.122351, 37.380007 ], [ -79.119924, 37.380555 ], [ -79.118369, 37.380958 ], [ -79.116892, 37.381492 ], [ -79.11429, 37.382508 ], [ -79.111589, 37.383564 ], [ -79.110432, 37.384015 ], [ -79.108723, 37.384663 ], [ -79.107004, 37.385341 ], [ -79.10533, 37.38597 ], [ -79.10529, 37.385969 ], [ -79.104874, 37.386095 ], [ -79.104406, 37.386191 ], [ -79.103958, 37.38624 ], [ -79.103328, 37.386271 ], [ -79.101681, 37.386155 ], [ -79.101144, 37.386117 ], [ -79.100418, 37.386038 ], [ -79.097991, 37.385843 ], [ -79.09636, 37.385744 ], [ -79.095982, 37.385658 ], [ -79.095845, 37.385614 ], [ -79.09571, 37.385555 ], [ -79.095567, 37.38548 ], [ -79.095427, 37.38539 ], [ -79.095308, 37.385296 ], [ -79.09517, 37.385161 ], [ -79.09509, 37.385054 ], [ -79.094998, 37.384905 ], [ -79.094916, 37.384737 ], [ -79.094844, 37.384528 ], [ -79.094656, 37.383845 ], [ -79.094531, 37.38345 ], [ -79.094325, 37.383054 ], [ -79.094038, 37.38276 ], [ -79.093621, 37.382467 ], [ -79.093187, 37.382294 ], [ -79.092689, 37.382201 ], [ -79.092284, 37.382201 ], [ -79.091903, 37.382257 ], [ -79.091551, 37.382364 ], [ -79.091187, 37.382541 ], [ -79.090959, 37.382723 ], [ -79.090789, 37.382882 ], [ -79.090589, 37.383115 ], [ -79.090443, 37.383376 ], [ -79.090284, 37.383744 ], [ -79.090225, 37.384 ], [ -79.090179, 37.384541 ], [ -79.090062, 37.385779 ], [ -79.089925, 37.386644 ], [ -79.089849, 37.387226 ], [ -79.089779, 37.387541 ], [ -79.089689, 37.387836 ], [ -79.0895, 37.38838 ], [ -79.089436, 37.388633 ], [ -79.089405, 37.388841 ], [ -79.089289, 37.389685 ], [ -79.089161, 37.39093 ], [ -79.089008, 37.392008 ], [ -79.08881, 37.394069 ], [ -79.088768, 37.394579 ], [ -79.088645, 37.395885 ], [ -79.088477, 37.397207 ], [ -79.087956, 37.401181 ], [ -79.087825, 37.401823 ], [ -79.087665, 37.402308 ], [ -79.087554, 37.402629 ], [ -79.08736, 37.403142 ], [ -79.087142, 37.403562 ], [ -79.086923, 37.403937 ], [ -79.086762, 37.404195 ], [ -79.086439, 37.404708 ], [ -79.086251, 37.405002 ], [ -79.085982, 37.405393 ], [ -79.085647, 37.405896 ], [ -79.085037, 37.406824 ], [ -79.084691, 37.407346 ], [ -79.084239, 37.407998 ], [ -79.084081, 37.408208 ], [ -79.083969, 37.408376 ], [ -79.083852, 37.408534 ], [ -79.083752, 37.408705 ], [ -79.083641, 37.408893 ], [ -79.08253, 37.41059 ], [ -79.082107, 37.41155 ], [ -79.081937, 37.412163 ], [ -79.081833, 37.412538 ], [ -79.081757, 37.413176 ], [ -79.08171, 37.413903 ], [ -79.081751, 37.414774 ], [ -79.081781, 37.415758 ], [ -79.081777, 37.417393 ], [ -79.081646, 37.41901 ], [ -79.081485, 37.420256 ], [ -79.081292, 37.421219 ], [ -79.081057, 37.422257 ], [ -79.080513, 37.424117 ], [ -79.07951, 37.427155 ], [ -79.078061, 37.431195 ], [ -79.077269, 37.433524 ], [ -79.076993, 37.434391 ], [ -79.076647, 37.435495 ], [ -79.076395, 37.436608 ], [ -79.076304, 37.437254 ], [ -79.076229, 37.438019 ], [ -79.076213, 37.439312 ], [ -79.076213, 37.439413 ], [ -79.076155, 37.442774 ], [ -79.07614, 37.443179 ], [ -79.076116, 37.443841 ], [ -79.076046, 37.446058 ], [ -79.075976, 37.449173 ], [ -79.076002, 37.451689 ], [ -79.076065, 37.4523 ], [ -79.076262, 37.453 ], [ -79.076579, 37.453683 ], [ -79.076982, 37.454312 ], [ -79.077536, 37.45501 ], [ -79.079739, 37.457229 ], [ -79.080689, 37.458217 ], [ -79.081531, 37.459252 ], [ -79.082085, 37.460038 ], [ -79.082441, 37.460738 ], [ -79.082708, 37.461304 ], [ -79.082968, 37.461981 ], [ -79.083137, 37.462694 ], [ -79.083265, 37.463513 ], [ -79.083293, 37.464338 ], [ -79.083287, 37.464745 ], [ -79.083277, 37.465166 ], [ -79.083236, 37.465743 ], [ -79.083136, 37.466259 ], [ -79.082678, 37.468029 ], [ -79.082438, 37.469156 ], [ -79.08215, 37.470371 ], [ -79.081963, 37.471033 ], [ -79.081827, 37.471415 ], [ -79.081408, 37.472342 ], [ -79.081005, 37.47309 ], [ -79.080296, 37.474045 ], [ -79.079641, 37.474751 ], [ -79.078249, 37.476094 ], [ -79.077451, 37.477058 ], [ -79.076776, 37.477863 ], [ -79.076213, 37.478711 ], [ -79.075638, 37.479763 ], [ -79.075274, 37.480624 ], [ -79.074869, 37.481821 ], [ -79.074675, 37.482594 ], [ -79.074634, 37.482892 ], [ -79.074593, 37.483204 ], [ -79.07457, 37.483627 ], [ -79.074448, 37.484732 ], [ -79.074331, 37.485753 ], [ -79.074167, 37.486518 ], [ -79.073888, 37.487326 ], [ -79.073467, 37.488074 ], [ -79.07305, 37.488846 ], [ -79.072616, 37.489619 ], [ -79.072018, 37.490699 ], [ -79.07163, 37.49136 ], [ -79.070791, 37.492896 ], [ -79.070146, 37.494186 ], [ -79.06953, 37.495438 ], [ -79.068703, 37.497026 ], [ -79.067817, 37.498799 ], [ -79.067177, 37.500098 ], [ -79.066497, 37.501471 ], [ -79.066168, 37.502341 ], [ -79.065974, 37.503063 ], [ -79.065895, 37.503746 ], [ -79.065857, 37.504329 ], [ -79.065851, 37.505804 ], [ -79.065851, 37.506847 ], [ -79.065828, 37.508187 ], [ -79.065831, 37.509824 ], [ -79.0658, 37.510657 ], [ -79.065769, 37.511273 ], [ -79.065628, 37.51191 ], [ -79.065455, 37.512506 ], [ -79.065165, 37.513111 ], [ -79.064807, 37.513823 ], [ -79.064426, 37.514512 ], [ -79.063986, 37.515424 ], [ -79.063804, 37.515903 ], [ -79.063545, 37.516788 ], [ -79.063328, 37.51796 ], [ -79.063264, 37.519296 ], [ -79.063311, 37.520208 ], [ -79.063487, 37.521209 ], [ -79.063645, 37.522214 ], [ -79.063845, 37.523275 ], [ -79.06425, 37.525364 ], [ -79.064871, 37.528602 ], [ -79.065376, 37.531264 ], [ -79.066057, 37.534819 ], [ -79.066725, 37.538252 ], [ -79.0674, 37.541904 ], [ -79.06794, 37.544546 ], [ -79.068021, 37.545221 ], [ -79.068093, 37.545891 ], [ -79.068075, 37.546616 ], [ -79.067977, 37.547323 ], [ -79.067805, 37.547989 ], [ -79.06729, 37.549617 ], [ -79.066508, 37.552189 ], [ -79.066203, 37.55312 ], [ -79.065916, 37.554199 ], [ -79.06571, 37.554864 ], [ -79.065358, 37.555901 ], [ -79.06462, 37.558162 ], [ -79.064236, 37.559374 ], [ -79.064086, 37.559848 ], [ -79.063835, 37.560896 ], [ -79.063609, 37.561383 ], [ -79.063256, 37.561986 ], [ -79.062896, 37.562503 ], [ -79.062134, 37.563345 ], [ -79.061625, 37.563753 ], [ -79.06094, 37.564213 ], [ -79.058641, 37.565583 ], [ -79.05758, 37.566208 ], [ -79.056639, 37.566768 ], [ -79.055935, 37.567192 ], [ -79.055742, 37.567302 ], [ -79.055553, 37.567416 ], [ -79.055246, 37.567615 ], [ -79.054927, 37.567838 ], [ -79.054748, 37.567977 ], [ -79.054525, 37.568169 ], [ -79.05429, 37.568391 ], [ -79.054239, 37.568442 ], [ -79.054034, 37.568657 ], [ -79.053873, 37.56885 ], [ -79.053657, 37.569143 ], [ -79.053524, 37.569347 ], [ -79.053368, 37.569618 ], [ -79.053228, 37.569894 ], [ -79.053172, 37.570026 ], [ -79.053043, 37.570358 ], [ -79.05286, 37.57095 ], [ -79.052677, 37.571527 ], [ -79.052485, 37.572133 ], [ -79.052132, 37.573261 ], [ -79.051632, 37.57486 ], [ -79.051348, 37.57574 ], [ -79.051123, 37.576286 ], [ -79.051087, 37.576361 ], [ -79.050788, 37.576916 ], [ -79.050662, 37.577116 ], [ -79.050472, 37.577395 ], [ -79.050278, 37.577652 ], [ -79.050057, 37.577924 ], [ -79.049759, 37.578262 ], [ -79.049412, 37.578608 ], [ -79.049047, 37.578931 ], [ -79.047001, 37.580602 ], [ -79.046515, 37.580994 ], [ -79.046166, 37.58126 ], [ -79.045909, 37.581455 ], [ -79.04561, 37.58167 ], [ -79.045264, 37.581887 ], [ -79.044961, 37.582077 ], [ -79.044149, 37.582573 ], [ -79.04353, 37.582927 ], [ -79.04291, 37.58327 ], [ -79.042129, 37.58371 ], [ -79.041873, 37.583864 ], [ -79.041806, 37.58391 ], [ -79.041621, 37.584017 ], [ -79.041414, 37.584155 ], [ -79.041178, 37.58431 ], [ -79.040635, 37.584689 ], [ -79.039894, 37.585255 ], [ -79.039608, 37.585491 ], [ -79.03912, 37.585904 ], [ -79.038845, 37.586155 ], [ -79.038474, 37.586513 ], [ -79.03781, 37.587198 ], [ -79.037358, 37.587719 ], [ -79.037086, 37.588056 ], [ -79.036877, 37.588331 ], [ -79.036498, 37.588836 ], [ -79.036258, 37.589205 ], [ -79.035926, 37.589739 ], [ -79.034645, 37.591992 ], [ -79.034482, 37.592286 ], [ -79.034097, 37.592957 ], [ -79.033913, 37.593255 ], [ -79.033669, 37.593669 ], [ -79.033006, 37.594819 ], [ -79.032654, 37.595452 ], [ -79.032044, 37.596522 ], [ -79.031678, 37.597159 ], [ -79.031353, 37.597735 ], [ -79.03004, 37.600074 ], [ -79.029644, 37.600763 ], [ -79.028963, 37.601951 ], [ -79.028685, 37.602397 ], [ -79.02851, 37.602662 ], [ -79.028221, 37.603043 ], [ -79.027978, 37.603341 ], [ -79.027692, 37.60368 ], [ -79.027548, 37.60383 ], [ -79.027306, 37.604072 ], [ -79.027105, 37.604269 ], [ -79.02697, 37.604392 ], [ -79.026652, 37.60468 ], [ -79.026083, 37.605207 ], [ -79.026036, 37.60525 ], [ -79.025989, 37.605294 ], [ -79.025872, 37.605402 ], [ -79.02555, 37.605685 ], [ -79.025303, 37.605893 ], [ -79.025239, 37.605951 ], [ -79.025075, 37.606102 ], [ -79.024795, 37.606358 ], [ -79.024408, 37.606702 ], [ -79.024072, 37.607013 ], [ -79.024053, 37.607031 ], [ -79.023787, 37.607264 ], [ -79.023498, 37.607516 ], [ -79.023027, 37.607911 ], [ -79.022811, 37.60807 ], [ -79.022583, 37.608218 ], [ -79.022393, 37.608329 ], [ -79.022103, 37.608478 ], [ -79.021864, 37.608585 ], [ -79.021424, 37.608752 ], [ -79.020855, 37.608965 ], [ -79.020271, 37.609195 ], [ -79.020171, 37.609236 ], [ -79.019921, 37.609348 ], [ -79.019569, 37.609526 ], [ -79.019341, 37.609661 ], [ -79.019134, 37.609801 ], [ -79.018938, 37.609951 ], [ -79.018736, 37.61013 ], [ -79.018557, 37.610318 ], [ -79.018408, 37.6105 ], [ -79.018273, 37.610689 ], [ -79.018177, 37.610845 ], [ -79.018077, 37.611005 ], [ -79.017942, 37.61127 ], [ -79.01775, 37.611733 ], [ -79.017583, 37.612195 ], [ -79.017453, 37.612536 ], [ -79.01736, 37.612779 ], [ -79.017077, 37.613518 ], [ -79.016316, 37.615651 ], [ -79.016211, 37.615921 ], [ -79.015957, 37.616661 ], [ -79.015442, 37.618041 ], [ -79.015171, 37.618767 ], [ -79.015044, 37.619085 ], [ -79.014896, 37.619401 ], [ -79.014725, 37.619699 ], [ -79.014609, 37.619891 ], [ -79.014507, 37.620046 ], [ -79.014326, 37.620291 ], [ -79.014076, 37.620611 ], [ -79.013882, 37.620808 ], [ -79.013583, 37.621079 ], [ -79.012998, 37.621504 ], [ -79.01238, 37.621893 ], [ -79.010646, 37.622959 ], [ -79.01003, 37.623323 ], [ -79.009112, 37.623886 ], [ -79.007841, 37.62468 ], [ -79.007669, 37.624786 ], [ -79.00613, 37.625753 ], [ -79.00574, 37.625992 ], [ -79.004933, 37.626484 ], [ -79.004251, 37.626912 ], [ -79.004139, 37.626981 ], [ -79.003154, 37.627592 ], [ -79.001641, 37.628516 ], [ -79.001111, 37.628835 ], [ -79.00072, 37.62907 ], [ -79.000623, 37.62914 ], [ -79.000217, 37.629394 ], [ -78.998912, 37.630202 ], [ -78.998196, 37.630645 ], [ -78.997598, 37.631025 ], [ -78.997526, 37.631071 ], [ -78.997241, 37.631274 ], [ -78.996875, 37.631534 ], [ -78.996217, 37.63205 ], [ -78.995656, 37.632525 ], [ -78.995017, 37.633129 ], [ -78.994464, 37.633668 ], [ -78.993794, 37.634338 ], [ -78.992582, 37.635539 ], [ -78.99241, 37.635715 ], [ -78.992112, 37.636 ], [ -78.991971, 37.636127 ], [ -78.991598, 37.636454 ], [ -78.991319, 37.636676 ], [ -78.991111, 37.636827 ], [ -78.990724, 37.637089 ], [ -78.990344, 37.637324 ], [ -78.989967, 37.637537 ], [ -78.989578, 37.637737 ], [ -78.988855, 37.638052 ], [ -78.98807, 37.638382 ], [ -78.986736, 37.63892 ], [ -78.986454, 37.639034 ], [ -78.985803, 37.639316 ], [ -78.984897, 37.639687 ], [ -78.98388, 37.640096 ], [ -78.983117, 37.640414 ], [ -78.982726, 37.640573 ], [ -78.981774, 37.640959 ], [ -78.979687, 37.64182 ], [ -78.978231, 37.642417 ], [ -78.977005, 37.64291 ], [ -78.97646, 37.643116 ], [ -78.975777, 37.643333 ], [ -78.975711, 37.643354 ], [ -78.97542, 37.643425 ], [ -78.974834, 37.643551 ], [ -78.974604, 37.64359 ], [ -78.974067, 37.643681 ], [ -78.973393, 37.643752 ], [ -78.972559, 37.643813 ], [ -78.972242, 37.643839 ], [ -78.970006, 37.64399 ], [ -78.96903, 37.64406 ], [ -78.968589, 37.644095 ], [ -78.968224, 37.644136 ], [ -78.967889, 37.644182 ], [ -78.967664, 37.644226 ], [ -78.967387, 37.644293 ], [ -78.967224, 37.644341 ], [ -78.966957, 37.64443 ], [ -78.966688, 37.644536 ], [ -78.966474, 37.644631 ], [ -78.966164, 37.644789 ], [ -78.965983, 37.644902 ], [ -78.965692, 37.645098 ], [ -78.965428, 37.645294 ], [ -78.965238, 37.645456 ], [ -78.965063, 37.645628 ], [ -78.964898, 37.645816 ], [ -78.964762, 37.645992 ], [ -78.964605, 37.646219 ], [ -78.964465, 37.646453 ], [ -78.964354, 37.646672 ], [ -78.96426, 37.646896 ], [ -78.964184, 37.647124 ], [ -78.964105, 37.647472 ], [ -78.964045, 37.647822 ], [ -78.963795, 37.650137 ], [ -78.963771, 37.650446 ], [ -78.963726, 37.650831 ], [ -78.963699, 37.651104 ], [ -78.963637, 37.651545 ], [ -78.963559, 37.651968 ], [ -78.963475, 37.652244 ], [ -78.963403, 37.652439 ], [ -78.963343, 37.65259 ], [ -78.963259, 37.652771 ], [ -78.963211, 37.652855 ], [ -78.963159, 37.652948 ], [ -78.963044, 37.653119 ], [ -78.962876, 37.65334 ], [ -78.962692, 37.653554 ], [ -78.961989, 37.654258 ], [ -78.961507, 37.654728 ], [ -78.961039, 37.655181 ], [ -78.960337, 37.655875 ], [ -78.96023, 37.655972 ], [ -78.960126, 37.656071 ], [ -78.959777, 37.656385 ], [ -78.959596, 37.656559 ], [ -78.959428, 37.656733 ], [ -78.95894, 37.657212 ], [ -78.958347, 37.65781 ], [ -78.957955, 37.658265 ], [ -78.957902, 37.65834 ], [ -78.957703, 37.658582 ], [ -78.956957, 37.659613 ], [ -78.956, 37.660952 ], [ -78.95555, 37.661601 ], [ -78.95521, 37.662149 ], [ -78.955078, 37.662367 ], [ -78.954742, 37.662988 ], [ -78.954584, 37.663297 ], [ -78.954305, 37.663917 ], [ -78.954148, 37.6643 ], [ -78.953981, 37.664751 ], [ -78.953842, 37.665162 ], [ -78.953791, 37.665348 ], [ -78.953693, 37.665702 ], [ -78.953658, 37.665836 ], [ -78.953519, 37.666441 ], [ -78.953449, 37.666806 ], [ -78.953407, 37.667104 ], [ -78.953324, 37.667763 ], [ -78.953292, 37.668183 ], [ -78.953221, 37.669156 ], [ -78.953153, 37.670098 ], [ -78.953142, 37.670264 ], [ -78.953141, 37.6704 ], [ -78.953072, 37.671177 ], [ -78.95304, 37.671615 ], [ -78.952995, 37.672174 ], [ -78.952947, 37.672942 ], [ -78.95292, 37.673225 ], [ -78.952878, 37.673819 ], [ -78.952829, 37.674339 ], [ -78.952797, 37.674686 ], [ -78.952784, 37.674804 ], [ -78.952747, 37.675024 ], [ -78.952692, 37.675301 ], [ -78.952624, 37.675578 ], [ -78.952561, 37.675784 ], [ -78.952486, 37.675985 ], [ -78.952442, 37.676122 ], [ -78.952386, 37.676257 ], [ -78.95232, 37.676433 ], [ -78.952115, 37.676852 ], [ -78.952045, 37.676981 ], [ -78.951895, 37.677259 ], [ -78.951765, 37.677478 ], [ -78.951015, 37.678688 ], [ -78.950642, 37.679294 ], [ -78.950106, 37.680167 ], [ -78.949932, 37.680439 ], [ -78.949555, 37.681057 ], [ -78.948514, 37.682749 ], [ -78.948346, 37.683014 ], [ -78.94819, 37.68327 ], [ -78.947933, 37.683687 ], [ -78.947735, 37.683997 ], [ -78.946949, 37.685284 ], [ -78.946763, 37.685577 ], [ -78.946171, 37.686544 ], [ -78.946077, 37.686718 ], [ -78.945972, 37.686928 ], [ -78.945848, 37.687201 ], [ -78.945794, 37.687349 ], [ -78.945689, 37.687661 ], [ -78.945632, 37.687901 ], [ -78.945568, 37.688266 ], [ -78.945541, 37.688542 ], [ -78.945537, 37.688659 ], [ -78.945545, 37.689126 ], [ -78.945579, 37.689434 ], [ -78.945664, 37.689907 ], [ -78.945683, 37.68999 ], [ -78.945776, 37.690456 ], [ -78.945835, 37.69071 ], [ -78.945961, 37.691323 ], [ -78.946182, 37.69241 ], [ -78.946237, 37.692788 ], [ -78.946274, 37.693085 ], [ -78.946296, 37.693491 ], [ -78.946303, 37.694022 ], [ -78.946301, 37.694057 ], [ -78.946287, 37.694387 ], [ -78.946261, 37.694709 ], [ -78.946249, 37.694805 ], [ -78.946182, 37.695293 ], [ -78.946055, 37.695876 ], [ -78.945864, 37.696567 ], [ -78.945405, 37.698162 ], [ -78.945298, 37.698548 ], [ -78.944826, 37.700186 ], [ -78.944719, 37.700501 ], [ -78.94458, 37.700835 ], [ -78.944457, 37.701074 ], [ -78.944324, 37.701307 ], [ -78.944135, 37.701595 ], [ -78.944026, 37.701738 ], [ -78.943778, 37.70202 ], [ -78.943504, 37.702305 ], [ -78.943214, 37.702564 ], [ -78.94302, 37.702719 ], [ -78.942935, 37.702779 ], [ -78.942809, 37.702868 ], [ -78.942485, 37.703077 ], [ -78.942218, 37.703232 ], [ -78.9405, 37.704132 ], [ -78.940455, 37.704155 ], [ -78.940006, 37.704381 ], [ -78.938227, 37.705302 ], [ -78.93698, 37.705948 ], [ -78.93647, 37.706225 ], [ -78.93488, 37.707122 ], [ -78.934646, 37.707256 ], [ -78.93388, 37.707679 ], [ -78.933448, 37.707924 ], [ -78.932774, 37.708305 ], [ -78.931107, 37.709235 ], [ -78.929365, 37.710215 ], [ -78.928987, 37.710423 ], [ -78.928188, 37.710873 ], [ -78.927848, 37.711058 ], [ -78.927739, 37.711117 ], [ -78.927286, 37.71134 ], [ -78.927035, 37.711449 ], [ -78.926705, 37.711572 ], [ -78.926357, 37.711684 ], [ -78.926015, 37.711773 ], [ -78.925764, 37.711831 ], [ -78.925742, 37.711836 ], [ -78.925395, 37.711899 ], [ -78.925098, 37.711943 ], [ -78.92463, 37.712006 ], [ -78.924358, 37.71204 ], [ -78.9241, 37.712072 ], [ -78.923317, 37.712168 ], [ -78.922673, 37.712257 ], [ -78.921644, 37.712386 ], [ -78.920771, 37.712503 ], [ -78.91879, 37.712755 ], [ -78.917763, 37.712894 ], [ -78.916758, 37.713029 ], [ -78.916316, 37.713107 ], [ -78.915891, 37.713204 ], [ -78.915614, 37.71328 ], [ -78.915324, 37.713372 ], [ -78.915274, 37.713388 ], [ -78.914912, 37.71352 ], [ -78.91455, 37.71367 ], [ -78.914179, 37.713842 ], [ -78.913675, 37.714085 ], [ -78.912967, 37.714415 ], [ -78.910226, 37.715714 ], [ -78.90939, 37.716116 ], [ -78.908844, 37.716378 ], [ -78.908565, 37.716525 ], [ -78.908344, 37.716654 ], [ -78.908223, 37.716733 ], [ -78.907898, 37.716972 ], [ -78.907709, 37.71712 ], [ -78.907284, 37.717479 ], [ -78.905705, 37.718784 ], [ -78.905314, 37.719084 ], [ -78.90491, 37.719372 ], [ -78.904525, 37.719604 ], [ -78.904033, 37.719882 ], [ -78.903337, 37.720265 ], [ -78.902528, 37.720722 ], [ -78.902455, 37.720766 ], [ -78.902055, 37.720998 ], [ -78.901704, 37.721237 ], [ -78.901372, 37.721492 ], [ -78.901207, 37.721632 ], [ -78.901102, 37.721732 ], [ -78.90093, 37.721897 ], [ -78.900791, 37.722043 ], [ -78.900736, 37.722103 ], [ -78.900601, 37.722261 ], [ -78.900394, 37.722523 ], [ -78.900222, 37.722764 ], [ -78.900079, 37.722992 ], [ -78.900004, 37.723131 ], [ -78.899716, 37.723665 ], [ -78.899467, 37.724145 ], [ -78.899406, 37.724274 ], [ -78.89922, 37.72461 ], [ -78.899008, 37.725016 ], [ -78.898838, 37.725322 ], [ -78.898749, 37.725462 ], [ -78.898619, 37.725684 ], [ -78.898501, 37.725886 ], [ -78.898424, 37.726009 ], [ -78.898396, 37.726054 ], [ -78.89823, 37.726333 ], [ -78.897785, 37.72702 ], [ -78.897326, 37.727687 ], [ -78.897029, 37.728104 ], [ -78.896755, 37.72847 ], [ -78.896087, 37.729327 ], [ -78.895376, 37.730223 ], [ -78.89492, 37.73078 ], [ -78.894224, 37.731648 ], [ -78.893951, 37.731982 ], [ -78.893208, 37.732922 ], [ -78.893101, 37.733073 ], [ -78.892951, 37.733284 ], [ -78.892829, 37.733486 ], [ -78.892725, 37.733694 ], [ -78.892653, 37.733852 ], [ -78.892395, 37.734583 ], [ -78.892264, 37.735006 ], [ -78.891874, 37.73617 ], [ -78.891809, 37.736394 ], [ -78.891615, 37.736972 ], [ -78.891508, 37.737307 ], [ -78.891316, 37.737819 ], [ -78.891154, 37.738191 ], [ -78.891075, 37.738356 ], [ -78.891011, 37.738485 ], [ -78.890701, 37.739024 ], [ -78.890539, 37.739262 ], [ -78.890353, 37.739521 ], [ -78.890119, 37.739847 ], [ -78.889796, 37.740253 ], [ -78.889491, 37.740645 ], [ -78.889217, 37.740996 ], [ -78.888944, 37.74133 ], [ -78.888623, 37.741743 ], [ -78.888513, 37.741886 ], [ -78.888267, 37.742188 ], [ -78.887876, 37.742653 ], [ -78.887675, 37.74287 ], [ -78.887504, 37.743037 ], [ -78.887277, 37.743237 ], [ -78.887216, 37.743287 ], [ -78.887135, 37.743353 ], [ -78.886534, 37.743824 ], [ -78.886162, 37.744125 ], [ -78.8861, 37.744182 ], [ -78.885899, 37.744355 ], [ -78.885622, 37.744575 ], [ -78.885356, 37.74478 ], [ -78.884605, 37.745388 ], [ -78.884042, 37.74585 ], [ -78.882882, 37.746752 ], [ -78.882051, 37.747417 ], [ -78.880834, 37.748391 ], [ -78.88003, 37.749038 ], [ -78.879751, 37.749271 ], [ -78.879568, 37.74942 ], [ -78.879376, 37.749569 ], [ -78.878419, 37.750353 ], [ -78.877854, 37.750804 ], [ -78.877584, 37.751037 ], [ -78.877286, 37.751315 ], [ -78.877004, 37.751598 ], [ -78.876844, 37.751774 ], [ -78.876626, 37.752042 ], [ -78.876378, 37.752385 ], [ -78.876192, 37.752665 ], [ -78.876061, 37.752882 ], [ -78.875814, 37.753345 ], [ -78.875209, 37.754691 ], [ -78.874619, 37.756931 ], [ -78.874501, 37.757307 ], [ -78.874339, 37.757855 ], [ -78.873994, 37.758979 ], [ -78.873789, 37.759637 ], [ -78.873696, 37.75991 ], [ -78.873541, 37.760318 ], [ -78.873332, 37.760834 ], [ -78.873094, 37.761337 ], [ -78.872847, 37.761808 ], [ -78.872451, 37.762468 ], [ -78.872257, 37.76277 ], [ -78.871993, 37.763172 ], [ -78.871574, 37.763799 ], [ -78.871327, 37.764167 ], [ -78.871012, 37.764642 ], [ -78.870469, 37.765468 ], [ -78.870316, 37.765702 ], [ -78.870042, 37.766126 ], [ -78.869873, 37.766412 ], [ -78.869781, 37.766589 ], [ -78.869687, 37.766814 ], [ -78.869585, 37.76708 ], [ -78.869516, 37.767314 ], [ -78.869424, 37.767698 ], [ -78.869391, 37.767942 ], [ -78.86938, 37.768238 ], [ -78.869389, 37.768459 ], [ -78.869415, 37.768673 ], [ -78.869485, 37.768991 ], [ -78.869567, 37.769255 ], [ -78.86966, 37.769515 ], [ -78.869743, 37.769714 ], [ -78.869793, 37.769822 ], [ -78.870127, 37.770634 ], [ -78.870244, 37.770938 ], [ -78.870299, 37.771157 ], [ -78.870337, 37.771378 ], [ -78.870379, 37.771605 ], [ -78.870392, 37.771879 ], [ -78.870378, 37.772127 ], [ -78.870337, 37.772397 ], [ -78.870272, 37.77267 ], [ -78.870248, 37.772764 ], [ -78.87004, 37.773562 ], [ -78.869728, 37.774718 ], [ -78.869574, 37.775264 ], [ -78.869411, 37.775864 ], [ -78.869234, 37.776522 ], [ -78.869061, 37.777151 ], [ -78.868889, 37.777735 ], [ -78.868643, 37.778648 ], [ -78.868399, 37.779571 ], [ -78.868224, 37.780198 ], [ -78.868067, 37.780782 ], [ -78.867497, 37.782893 ], [ -78.867434, 37.783141 ], [ -78.867364, 37.783414 ], [ -78.867185, 37.784047 ], [ -78.867156, 37.784152 ], [ -78.867042, 37.784562 ], [ -78.866921, 37.785054 ], [ -78.866779, 37.785508 ], [ -78.866518, 37.786333 ], [ -78.866458, 37.786501 ], [ -78.866348, 37.786832 ], [ -78.866066, 37.787709 ], [ -78.865703, 37.788816 ], [ -78.865457, 37.789659 ], [ -78.865164, 37.790592 ], [ -78.864927, 37.791345 ], [ -78.864619, 37.792175 ], [ -78.864507, 37.792484 ], [ -78.864363, 37.792792 ], [ -78.864228, 37.793041 ], [ -78.864067, 37.7933 ], [ -78.863882, 37.793548 ], [ -78.863684, 37.793797 ], [ -78.863319, 37.794211 ], [ -78.863117, 37.794344 ], [ -78.86295, 37.794541 ], [ -78.862701, 37.794857 ], [ -78.86248, 37.795184 ], [ -78.862275, 37.795518 ], [ -78.862199, 37.795651 ], [ -78.862007, 37.796159 ], [ -78.861989, 37.79622 ], [ -78.861909, 37.796548 ], [ -78.861883, 37.796687 ], [ -78.861846, 37.796942 ], [ -78.861828, 37.797235 ], [ -78.861827, 37.797529 ], [ -78.861837, 37.797754 ], [ -78.861844, 37.797901 ], [ -78.861878, 37.798631 ], [ -78.861919, 37.799738 ], [ -78.861971, 37.800826 ], [ -78.862007, 37.801869 ], [ -78.862081, 37.803303 ], [ -78.862104, 37.80423 ], [ -78.86209, 37.804437 ], [ -78.862063, 37.804642 ], [ -78.862038, 37.804754 ], [ -78.862023, 37.804816 ], [ -78.861947, 37.805046 ], [ -78.861861, 37.805246 ], [ -78.861771, 37.805437 ], [ -78.86165, 37.805634 ], [ -78.861512, 37.805817 ], [ -78.861343, 37.806004 ], [ -78.860353, 37.806994 ], [ -78.859848, 37.807481 ], [ -78.858512, 37.808821 ], [ -78.858367, 37.808958 ], [ -78.858079, 37.809211 ], [ -78.857729, 37.809505 ], [ -78.857293, 37.80986 ], [ -78.856987, 37.81009 ], [ -78.856658, 37.810338 ], [ -78.855693, 37.81105 ], [ -78.85561, 37.811115 ], [ -78.855262, 37.811371 ], [ -78.854965, 37.811605 ], [ -78.853694, 37.812587 ], [ -78.853389, 37.812818 ], [ -78.852362, 37.813637 ], [ -78.851981, 37.813912 ], [ -78.851517, 37.814266 ], [ -78.851057, 37.81462 ], [ -78.85085, 37.814768 ], [ -78.850729, 37.814859 ], [ -78.850652, 37.81492 ], [ -78.850085, 37.815369 ], [ -78.848637, 37.81648 ], [ -78.846503, 37.818117 ], [ -78.846263, 37.818303 ], [ -78.845641, 37.818784 ], [ -78.845198, 37.81912 ], [ -78.844287, 37.819835 ], [ -78.843809, 37.820229 ], [ -78.841255, 37.822413 ], [ -78.840635, 37.822925 ], [ -78.840114, 37.823377 ], [ -78.839772, 37.823685 ], [ -78.839408, 37.824047 ], [ -78.839049, 37.824425 ], [ -78.838766, 37.824737 ], [ -78.838386, 37.825182 ], [ -78.838147, 37.825481 ], [ -78.837849, 37.82588 ], [ -78.837407, 37.826506 ], [ -78.837204, 37.826823 ], [ -78.837053, 37.827081 ], [ -78.836731, 37.827595 ], [ -78.836452, 37.828104 ], [ -78.836275, 37.828399 ], [ -78.836111, 37.828667 ], [ -78.835849, 37.82912 ], [ -78.835504, 37.829691 ], [ -78.835352, 37.829945 ], [ -78.83498, 37.830568 ], [ -78.834935, 37.830642 ], [ -78.834826, 37.830821 ], [ -78.834646, 37.831137 ], [ -78.834377, 37.831577 ], [ -78.833853, 37.832462 ], [ -78.833724, 37.832692 ], [ -78.833217, 37.833546 ], [ -78.831919, 37.835713 ], [ -78.831568, 37.836263 ], [ -78.831293, 37.836637 ], [ -78.831013, 37.836981 ], [ -78.83077, 37.837252 ], [ -78.829687, 37.838434 ], [ -78.829526, 37.8386 ], [ -78.829353, 37.838766 ], [ -78.828845, 37.839208 ], [ -78.828553, 37.839442 ], [ -78.828248, 37.839665 ], [ -78.827736, 37.840071 ], [ -78.82744, 37.840316 ], [ -78.827359, 37.840393 ], [ -78.827219, 37.840526 ], [ -78.827033, 37.840723 ], [ -78.82681, 37.840985 ], [ -78.826636, 37.841213 ], [ -78.826324, 37.841668 ], [ -78.825848, 37.842321 ], [ -78.825635, 37.842569 ], [ -78.825481, 37.842727 ], [ -78.825276, 37.842917 ], [ -78.825211, 37.842971 ], [ -78.825103, 37.843062 ], [ -78.824902, 37.843225 ], [ -78.824735, 37.84334 ], [ -78.824467, 37.843502 ], [ -78.824206, 37.843652 ], [ -78.82312, 37.844198 ], [ -78.822611, 37.844456 ], [ -78.821878, 37.84482 ], [ -78.820981, 37.845244 ], [ -78.82067, 37.845389 ], [ -78.820264, 37.845536 ], [ -78.820038, 37.845598 ], [ -78.819873, 37.845635 ], [ -78.81967, 37.845683 ], [ -78.819501, 37.845707 ], [ -78.819221, 37.845735 ], [ -78.818871, 37.845752 ], [ -78.818684, 37.845746 ], [ -78.818377, 37.845729 ], [ -78.818065, 37.845689 ], [ -78.817748, 37.845635 ], [ -78.817461, 37.845563 ], [ -78.817089, 37.845456 ], [ -78.81664, 37.845308 ], [ -78.816094, 37.845137 ], [ -78.815801, 37.845042 ], [ -78.815106, 37.844835 ], [ -78.814203, 37.844545 ], [ -78.813661, 37.844372 ], [ -78.813194, 37.844227 ], [ -78.812793, 37.844119 ], [ -78.812466, 37.844059 ], [ -78.812161, 37.844015 ], [ -78.811899, 37.843994 ], [ -78.811692, 37.843985 ], [ -78.81145, 37.844002 ], [ -78.811288, 37.844022 ], [ -78.810966, 37.84409 ], [ -78.810704, 37.844162 ], [ -78.810498, 37.844229 ], [ -78.810246, 37.844336 ], [ -78.80993, 37.84449 ], [ -78.809727, 37.844605 ], [ -78.809573, 37.844705 ], [ -78.809276, 37.84492 ], [ -78.809029, 37.845076 ], [ -78.808807, 37.845199 ], [ -78.808527, 37.845332 ], [ -78.808311, 37.845419 ], [ -78.808089, 37.845498 ], [ -78.807811, 37.845579 ], [ -78.807589, 37.845643 ], [ -78.807297, 37.845708 ], [ -78.807, 37.845759 ], [ -78.806691, 37.845797 ], [ -78.806302, 37.845837 ], [ -78.805184, 37.845933 ], [ -78.80503, 37.845945 ], [ -78.804012, 37.846026 ], [ -78.800837, 37.846324 ], [ -78.800537, 37.846339 ], [ -78.800237, 37.846355 ], [ -78.800014, 37.846352 ], [ -78.79976, 37.846345 ], [ -78.799425, 37.846321 ], [ -78.799048, 37.846276 ], [ -78.79881, 37.846227 ], [ -78.798587, 37.846183 ], [ -78.798334, 37.846121 ], [ -78.798127, 37.846044 ], [ -78.797833, 37.845932 ], [ -78.797473, 37.845765 ], [ -78.797183, 37.845617 ], [ -78.796923, 37.845465 ], [ -78.796357, 37.845082 ], [ -78.795818, 37.844712 ], [ -78.795607, 37.84458 ], [ -78.795352, 37.844427 ], [ -78.795147, 37.84431 ], [ -78.794915, 37.844201 ], [ -78.794645, 37.844085 ], [ -78.794419, 37.843996 ], [ -78.794095, 37.843903 ], [ -78.793805, 37.843828 ], [ -78.793467, 37.843774 ], [ -78.793125, 37.84374 ], [ -78.792933, 37.843732 ], [ -78.792722, 37.843723 ], [ -78.792238, 37.84372 ], [ -78.791688, 37.843732 ], [ -78.791137, 37.843731 ], [ -78.790713, 37.843712 ], [ -78.790444, 37.843693 ], [ -78.79016, 37.843657 ], [ -78.78988, 37.843607 ], [ -78.789604, 37.843542 ], [ -78.789363, 37.843478 ], [ -78.789067, 37.843389 ], [ -78.788706, 37.843253 ], [ -78.78839, 37.843125 ], [ -78.788101, 37.843016 ], [ -78.78765, 37.842857 ], [ -78.787324, 37.842748 ], [ -78.787056, 37.84268 ], [ -78.786677, 37.842606 ], [ -78.786459, 37.842568 ], [ -78.786292, 37.842537 ], [ -78.785994, 37.842501 ], [ -78.785649, 37.842467 ], [ -78.785267, 37.842457 ], [ -78.784945, 37.842456 ], [ -78.784589, 37.842468 ], [ -78.782212, 37.842633 ], [ -78.780497, 37.842776 ], [ -78.779987, 37.842814 ], [ -78.778924, 37.842896 ], [ -78.77812, 37.842986 ], [ -78.777773, 37.843042 ], [ -78.777066, 37.843144 ], [ -78.776444, 37.84325 ], [ -78.775647, 37.843402 ], [ -78.774632, 37.843601 ], [ -78.773646, 37.843786 ], [ -78.773282, 37.843855 ], [ -78.772981, 37.843912 ], [ -78.772128, 37.844091 ], [ -78.771161, 37.844316 ], [ -78.770651, 37.844441 ], [ -78.769991, 37.844616 ], [ -78.768859, 37.844941 ], [ -78.768162, 37.845142 ], [ -78.767015, 37.845472 ], [ -78.76637, 37.845658 ], [ -78.765119, 37.846012 ], [ -78.761663, 37.84701 ], [ -78.760903, 37.847224 ], [ -78.760298, 37.847402 ], [ -78.75996, 37.847506 ], [ -78.7597, 37.847596 ], [ -78.759532, 37.84765 ], [ -78.759113, 37.847806 ], [ -78.758783, 37.847948 ], [ -78.758412, 37.84812 ], [ -78.758057, 37.848288 ], [ -78.757154, 37.848747 ], [ -78.756986, 37.848829 ], [ -78.756546, 37.849062 ], [ -78.756115, 37.849306 ], [ -78.755862, 37.849458 ], [ -78.755244, 37.849843 ], [ -78.754769, 37.85013 ], [ -78.754377, 37.85038 ], [ -78.753945, 37.850672 ], [ -78.753673, 37.850873 ], [ -78.753364, 37.851127 ], [ -78.753217, 37.851259 ], [ -78.752739, 37.851715 ], [ -78.752046, 37.852374 ], [ -78.75166, 37.852719 ], [ -78.751401, 37.852929 ], [ -78.751134, 37.853132 ], [ -78.750789, 37.853376 ], [ -78.750504, 37.853564 ], [ -78.750081, 37.853824 ], [ -78.74973, 37.854021 ], [ -78.749369, 37.854207 ], [ -78.748998, 37.85438 ], [ -78.748624, 37.854531 ], [ -78.748053, 37.854743 ], [ -78.747045, 37.85508 ], [ -78.746537, 37.855262 ], [ -78.746473, 37.855285 ], [ -78.745985, 37.855474 ], [ -78.7456, 37.855635 ], [ -78.744986, 37.855911 ], [ -78.744673, 37.856064 ], [ -78.744246, 37.856299 ], [ -78.743761, 37.856591 ], [ -78.743416, 37.856817 ], [ -78.742954, 37.857145 ], [ -78.742639, 37.857387 ], [ -78.742337, 37.85764 ], [ -78.742294, 37.85768 ], [ -78.741896, 37.858045 ], [ -78.741503, 37.85843 ], [ -78.741291, 37.858648 ], [ -78.741254, 37.858686 ], [ -78.740963, 37.859027 ], [ -78.740705, 37.859351 ], [ -78.740668, 37.859398 ], [ -78.740453, 37.85968 ], [ -78.739901, 37.860385 ], [ -78.739675, 37.860647 ], [ -78.739434, 37.860902 ], [ -78.739176, 37.861151 ], [ -78.73895, 37.861357 ], [ -78.738655, 37.861604 ], [ -78.738411, 37.861795 ], [ -78.738094, 37.862025 ], [ -78.737733, 37.862262 ], [ -78.737429, 37.862445 ], [ -78.73708, 37.862638 ], [ -78.73657, 37.862893 ], [ -78.736186, 37.863088 ], [ -78.735435, 37.86348 ], [ -78.734529, 37.863942 ], [ -78.733874, 37.864271 ], [ -78.733562, 37.864427 ], [ -78.733042, 37.864704 ], [ -78.732039, 37.865214 ], [ -78.731948, 37.865258 ], [ -78.731785, 37.865335 ], [ -78.731411, 37.86553 ], [ -78.730148, 37.866169 ], [ -78.729986, 37.866254 ], [ -78.729722, 37.866391 ], [ -78.728688, 37.866913 ], [ -78.727888, 37.86733 ], [ -78.727529, 37.86751 ], [ -78.726765, 37.867904 ], [ -78.726166, 37.868202 ], [ -78.725869, 37.868361 ], [ -78.725428, 37.868579 ], [ -78.725084, 37.868757 ], [ -78.724518, 37.869049 ], [ -78.723898, 37.869354 ], [ -78.722779, 37.869945 ], [ -78.721592, 37.870542 ], [ -78.720481, 37.87111 ], [ -78.719958, 37.871373 ], [ -78.719701, 37.871497 ], [ -78.719365, 37.871672 ], [ -78.718719, 37.872028 ], [ -78.71847, 37.872183 ], [ -78.718164, 37.872388 ], [ -78.717945, 37.872553 ], [ -78.717592, 37.872851 ], [ -78.717285, 37.873139 ], [ -78.717049, 37.873363 ], [ -78.716739, 37.873728 ], [ -78.716536, 37.874002 ], [ -78.716395, 37.874221 ], [ -78.716144, 37.874657 ], [ -78.71604, 37.87487 ], [ -78.715888, 37.875212 ], [ -78.715814, 37.875401 ], [ -78.715694, 37.87571 ], [ -78.715495, 37.876238 ], [ -78.715377, 37.876548 ], [ -78.715275, 37.876817 ], [ -78.71521, 37.877013 ], [ -78.715136, 37.877211 ], [ -78.715081, 37.877371 ], [ -78.714995, 37.877587 ], [ -78.71492, 37.877787 ], [ -78.7148, 37.878131 ], [ -78.714687, 37.878428 ], [ -78.714533, 37.878796 ], [ -78.714454, 37.879009 ], [ -78.714417, 37.879116 ], [ -78.714256, 37.879549 ], [ -78.714141, 37.879854 ], [ -78.713896, 37.880594 ], [ -78.713756, 37.881038 ], [ -78.713682, 37.88126 ], [ -78.713617, 37.881457 ], [ -78.713533, 37.881697 ], [ -78.713446, 37.881943 ], [ -78.713394, 37.882108 ], [ -78.713314, 37.882336 ], [ -78.713184, 37.882655 ], [ -78.713006, 37.883053 ], [ -78.712892, 37.883274 ], [ -78.712733, 37.88355 ], [ -78.712558, 37.88384 ], [ -78.712369, 37.884119 ], [ -78.712275, 37.884257 ], [ -78.712136, 37.884449 ], [ -78.711974, 37.884667 ], [ -78.711814, 37.884876 ], [ -78.711641, 37.885085 ], [ -78.711418, 37.885345 ], [ -78.711139, 37.885644 ], [ -78.710798, 37.88599 ], [ -78.710465, 37.886309 ], [ -78.710195, 37.886555 ], [ -78.709928, 37.886781 ], [ -78.709577, 37.88706 ], [ -78.709406, 37.887199 ], [ -78.709211, 37.887345 ], [ -78.708778, 37.887648 ], [ -78.707968, 37.888179 ], [ -78.707642, 37.888399 ], [ -78.707473, 37.88851 ], [ -78.707244, 37.888663 ], [ -78.706965, 37.888843 ], [ -78.706601, 37.889083 ], [ -78.706088, 37.889425 ], [ -78.705712, 37.889669 ], [ -78.705189, 37.890019 ], [ -78.704893, 37.890211 ], [ -78.703445, 37.891162 ], [ -78.703041, 37.891429 ], [ -78.702721, 37.891638 ], [ -78.702327, 37.891905 ], [ -78.70184, 37.892223 ], [ -78.701163, 37.892662 ], [ -78.700778, 37.892933 ], [ -78.70071, 37.892981 ], [ -78.700622, 37.893046 ], [ -78.700337, 37.893272 ], [ -78.69999, 37.89357 ], [ -78.699755, 37.8938 ], [ -78.699482, 37.894099 ], [ -78.699289, 37.894329 ], [ -78.698787, 37.894984 ], [ -78.698558, 37.895284 ], [ -78.69837, 37.895519 ], [ -78.698116, 37.895851 ], [ -78.697966, 37.896055 ], [ -78.697696, 37.896407 ], [ -78.697057, 37.897242 ], [ -78.696439, 37.898041 ], [ -78.695681, 37.899035 ], [ -78.695049, 37.899863 ], [ -78.694658, 37.900403 ], [ -78.694519, 37.900599 ], [ -78.694429, 37.900733 ], [ -78.693954, 37.901464 ], [ -78.693721, 37.901862 ], [ -78.693473, 37.902275 ], [ -78.693102, 37.902981 ], [ -78.692879, 37.903439 ], [ -78.692797, 37.903623 ], [ -78.692129, 37.905105 ], [ -78.691808, 37.905817 ], [ -78.691268, 37.906984 ], [ -78.690987, 37.907549 ], [ -78.690814, 37.907874 ], [ -78.690688, 37.908089 ], [ -78.690521, 37.908372 ], [ -78.690275, 37.908767 ], [ -78.689663, 37.909657 ], [ -78.689078, 37.910492 ], [ -78.685485, 37.915666 ], [ -78.684467, 37.917131 ], [ -78.682047, 37.920608 ], [ -78.681785, 37.92095 ], [ -78.681517, 37.921272 ], [ -78.681241, 37.921578 ], [ -78.68101, 37.921818 ], [ -78.680605, 37.922194 ], [ -78.68013, 37.922617 ], [ -78.679566, 37.923137 ], [ -78.679307, 37.923403 ], [ -78.678986, 37.92374 ], [ -78.678605, 37.924203 ], [ -78.678345, 37.924561 ], [ -78.678124, 37.924891 ], [ -78.677903, 37.925227 ], [ -78.677688, 37.925589 ], [ -78.677544, 37.925878 ], [ -78.67731, 37.926442 ], [ -78.676551, 37.928284 ], [ -78.676404, 37.928595 ], [ -78.676242, 37.928949 ], [ -78.676148, 37.929122 ], [ -78.675977, 37.929377 ], [ -78.675612, 37.929807 ], [ -78.675385, 37.930086 ], [ -78.675213, 37.930312 ], [ -78.675004, 37.930559 ], [ -78.674617, 37.931044 ], [ -78.67407, 37.931702 ], [ -78.673673, 37.932201 ], [ -78.673281, 37.9327 ], [ -78.672994, 37.933082 ], [ -78.672166, 37.934227 ], [ -78.671112, 37.935771 ], [ -78.670762, 37.936281 ], [ -78.670385, 37.936817 ], [ -78.669877, 37.937599 ], [ -78.668999, 37.93886 ], [ -78.667671, 37.940789 ], [ -78.666721, 37.942158 ], [ -78.666126, 37.943118 ], [ -78.665597, 37.944014 ], [ -78.665125, 37.944827 ], [ -78.664642, 37.945633 ], [ -78.664087, 37.946602 ], [ -78.663665, 37.947366 ], [ -78.663523, 37.947648 ], [ -78.663363, 37.948007 ], [ -78.66312, 37.948581 ], [ -78.662992, 37.948919 ], [ -78.662788, 37.949511 ], [ -78.662392, 37.950794 ], [ -78.662127, 37.951686 ], [ -78.661907, 37.952368 ], [ -78.6618, 37.952667 ], [ -78.661673, 37.952964 ], [ -78.661549, 37.953229 ], [ -78.661377, 37.953546 ], [ -78.661172, 37.953875 ], [ -78.660975, 37.954168 ], [ -78.660712, 37.954527 ], [ -78.660589, 37.954686 ], [ -78.660525, 37.954768 ], [ -78.660204, 37.955161 ], [ -78.659899, 37.955515 ], [ -78.65946, 37.956045 ], [ -78.659107, 37.956472 ], [ -78.658939, 37.95668 ], [ -78.658404, 37.957325 ], [ -78.658185, 37.957583 ], [ -78.657413, 37.958505 ], [ -78.65713, 37.958855 ], [ -78.65677, 37.959264 ], [ -78.656612, 37.959431 ], [ -78.656439, 37.95959 ], [ -78.656251, 37.959739 ], [ -78.656068, 37.959867 ], [ -78.655989, 37.959917 ], [ -78.655752, 37.960052 ], [ -78.655575, 37.96015 ], [ -78.655228, 37.960289 ], [ -78.654931, 37.960405 ], [ -78.653275, 37.960978 ], [ -78.652399, 37.961277 ], [ -78.651659, 37.961545 ], [ -78.651372, 37.96167 ], [ -78.651131, 37.961788 ], [ -78.650953, 37.961888 ], [ -78.65077, 37.962003 ], [ -78.650655, 37.962074 ], [ -78.650545, 37.96215 ], [ -78.650369, 37.962277 ], [ -78.650124, 37.962492 ], [ -78.649827, 37.962781 ], [ -78.649528, 37.963082 ], [ -78.649157, 37.963468 ], [ -78.648771, 37.96385 ], [ -78.648569, 37.964042 ], [ -78.648236, 37.964318 ], [ -78.647928, 37.964546 ], [ -78.647355, 37.964951 ], [ -78.646421, 37.965624 ], [ -78.646034, 37.965897 ], [ -78.645591, 37.966218 ], [ -78.645351, 37.966376 ], [ -78.645051, 37.966569 ], [ -78.644735, 37.966754 ], [ -78.644581, 37.96684 ], [ -78.6444, 37.966936 ], [ -78.643915, 37.967163 ], [ -78.643555, 37.967319 ], [ -78.643147, 37.967465 ], [ -78.642853, 37.967561 ], [ -78.642519, 37.96766 ], [ -78.642395, 37.967695 ], [ -78.642095, 37.967768 ], [ -78.641871, 37.967823 ], [ -78.641449, 37.967916 ], [ -78.640993, 37.967991 ], [ -78.640408, 37.968066 ], [ -78.639997, 37.968103 ], [ -78.639496, 37.96813 ], [ -78.638995, 37.968136 ], [ -78.638434, 37.968125 ], [ -78.637944, 37.9681 ], [ -78.63612, 37.967958 ], [ -78.635136, 37.967873 ], [ -78.633802, 37.96777 ], [ -78.632073, 37.967631 ], [ -78.631801, 37.967611 ], [ -78.630935, 37.967546 ], [ -78.630424, 37.967503 ], [ -78.629697, 37.967442 ], [ -78.628686, 37.967361 ], [ -78.626167, 37.967159 ], [ -78.623282, 37.966927 ], [ -78.622258, 37.96685 ], [ -78.621932, 37.966824 ], [ -78.620819, 37.966736 ], [ -78.620381, 37.966716 ], [ -78.620004, 37.966712 ], [ -78.619679, 37.966717 ], [ -78.61937, 37.966745 ], [ -78.619064, 37.966787 ], [ -78.618761, 37.966844 ], [ -78.618523, 37.9669 ], [ -78.618222, 37.966977 ], [ -78.617837, 37.967103 ], [ -78.617525, 37.967224 ], [ -78.617264, 37.967333 ], [ -78.616866, 37.967526 ], [ -78.61666, 37.96764 ], [ -78.616487, 37.967735 ], [ -78.616266, 37.967872 ], [ -78.615844, 37.968137 ], [ -78.615555, 37.968338 ], [ -78.615229, 37.968577 ], [ -78.614931, 37.968831 ], [ -78.614607, 37.969142 ], [ -78.614381, 37.96937 ], [ -78.614151, 37.969646 ], [ -78.613964, 37.96988 ], [ -78.613494, 37.970554 ], [ -78.61301, 37.971246 ], [ -78.612831, 37.971512 ], [ -78.612279, 37.972333 ], [ -78.611229, 37.97389 ], [ -78.610819, 37.974494 ], [ -78.610719, 37.974624 ], [ -78.610499, 37.974897 ], [ -78.610319, 37.975118 ], [ -78.610116, 37.975331 ], [ -78.609966, 37.975469 ], [ -78.609796, 37.975624 ], [ -78.609591, 37.975796 ], [ -78.609317, 37.976004 ], [ -78.609071, 37.976176 ], [ -78.608849, 37.976327 ], [ -78.608744, 37.97639 ], [ -78.608365, 37.976619 ], [ -78.608101, 37.976752 ], [ -78.607845, 37.976869 ], [ -78.607584, 37.976978 ], [ -78.60725, 37.977103 ], [ -78.606977, 37.977192 ], [ -78.606625, 37.977297 ], [ -78.606266, 37.977388 ], [ -78.606123, 37.977418 ], [ -78.605902, 37.977465 ], [ -78.605646, 37.97752 ], [ -78.605621, 37.977522 ], [ -78.605549, 37.977538 ], [ -78.60423, 37.977756 ], [ -78.602588, 37.978034 ], [ -78.602162, 37.978122 ], [ -78.601825, 37.978203 ], [ -78.601492, 37.978293 ], [ -78.601094, 37.978414 ], [ -78.60071, 37.978547 ], [ -78.600334, 37.978694 ], [ -78.599967, 37.978854 ], [ -78.599486, 37.979083 ], [ -78.599163, 37.979252 ], [ -78.598789, 37.97947 ], [ -78.598549, 37.979624 ], [ -78.597946, 37.980033 ], [ -78.596889, 37.98075 ], [ -78.595137, 37.981939 ], [ -78.593704, 37.982911 ], [ -78.592376, 37.98382 ], [ -78.590854, 37.984906 ], [ -78.590225, 37.985373 ], [ -78.588999, 37.98631 ], [ -78.588012, 37.9871 ], [ -78.587089, 37.987859 ], [ -78.586722, 37.988171 ], [ -78.586183, 37.988631 ], [ -78.585023, 37.989655 ], [ -78.583908, 37.990662 ], [ -78.583686, 37.990885 ], [ -78.583478, 37.991116 ], [ -78.583203, 37.991447 ], [ -78.583057, 37.991641 ], [ -78.582889, 37.99189 ], [ -78.582734, 37.992152 ], [ -78.582584, 37.992445 ], [ -78.582451, 37.992743 ], [ -78.582318, 37.993104 ], [ -78.582229, 37.993396 ], [ -78.582158, 37.993692 ], [ -78.582061, 37.994255 ], [ -78.581989, 37.994788 ], [ -78.581919, 37.9952 ], [ -78.581831, 37.99573 ], [ -78.581596, 37.997239 ], [ -78.581525, 37.997665 ], [ -78.58147, 37.998088 ], [ -78.581083, 38.000517 ], [ -78.580993, 38.001016 ], [ -78.580912, 38.001332 ], [ -78.580857, 38.001514 ], [ -78.580851, 38.001532 ], [ -78.580827, 38.001607 ], [ -78.580788, 38.001711 ], [ -78.580764, 38.001783 ], [ -78.580638, 38.002087 ], [ -78.580501, 38.002397 ], [ -78.580338, 38.002682 ], [ -78.580176, 38.002939 ], [ -78.580026, 38.003155 ], [ -78.57984, 38.003394 ], [ -78.579631, 38.003641 ], [ -78.579528, 38.003748 ], [ -78.579258, 38.004014 ], [ -78.578985, 38.00426 ], [ -78.578784, 38.004426 ], [ -78.578575, 38.004584 ], [ -78.578379, 38.004723 ], [ -78.578122, 38.004899 ], [ -78.577709, 38.005151 ], [ -78.577431, 38.005306 ], [ -78.577141, 38.005444 ], [ -78.576923, 38.005542 ], [ -78.576628, 38.005666 ], [ -78.576327, 38.005766 ], [ -78.576154, 38.005828 ], [ -78.575371, 38.006031 ], [ -78.574274, 38.006313 ], [ -78.573929, 38.006397 ], [ -78.573678, 38.006459 ], [ -78.5731, 38.006602 ], [ -78.572544, 38.006742 ], [ -78.570845, 38.007165 ], [ -78.570536, 38.007245 ], [ -78.570147, 38.007346 ], [ -78.569511, 38.007502 ], [ -78.568866, 38.007677 ], [ -78.568449, 38.007795 ], [ -78.568216, 38.007865 ], [ -78.567861, 38.007984 ], [ -78.567483, 38.008116 ], [ -78.567008, 38.00831 ], [ -78.566642, 38.008471 ], [ -78.566222, 38.008672 ], [ -78.565813, 38.008887 ], [ -78.565381, 38.009126 ], [ -78.564818, 38.009422 ], [ -78.564544, 38.009563 ], [ -78.564196, 38.009735 ], [ -78.564075, 38.009787 ], [ -78.56369, 38.009944 ], [ -78.56326, 38.010103 ], [ -78.562849, 38.010238 ], [ -78.562529, 38.010332 ], [ -78.562124, 38.010438 ], [ -78.561805, 38.010515 ], [ -78.561564, 38.010564 ], [ -78.56093, 38.010675 ], [ -78.560028, 38.010845 ], [ -78.558824, 38.011064 ], [ -78.558024, 38.011219 ], [ -78.557648, 38.011286 ], [ -78.557386, 38.011333 ], [ -78.557058, 38.011387 ], [ -78.555118, 38.011755 ], [ -78.554112, 38.011931 ], [ -78.552878, 38.012156 ], [ -78.552449, 38.01225 ], [ -78.552186, 38.012316 ], [ -78.551829, 38.012417 ], [ -78.551365, 38.012562 ], [ -78.55109, 38.012655 ], [ -78.550658, 38.012829 ], [ -78.550236, 38.013017 ], [ -78.549599, 38.013364 ], [ -78.549376, 38.013492 ], [ -78.549058, 38.013698 ], [ -78.548469, 38.01411 ], [ -78.547659, 38.014674 ], [ -78.547468, 38.014808 ], [ -78.54736, 38.014884 ], [ -78.547042, 38.015096 ], [ -78.546611, 38.015362 ], [ -78.546269, 38.015559 ], [ -78.54592, 38.01574 ], [ -78.545223, 38.016069 ], [ -78.544841, 38.016247 ], [ -78.543906, 38.016682 ], [ -78.543654, 38.016806 ], [ -78.54333, 38.016982 ], [ -78.542733, 38.017318 ], [ -78.542466, 38.017467 ], [ -78.539711, 38.018979 ], [ -78.536725, 38.020664 ], [ -78.535885, 38.021132 ], [ -78.535518, 38.021335 ], [ -78.534742, 38.021766 ], [ -78.534188, 38.022073 ], [ -78.532955, 38.02276 ], [ -78.532173, 38.023196 ], [ -78.531193, 38.023747 ], [ -78.531125, 38.023792 ], [ -78.53075, 38.024045 ], [ -78.530445, 38.024274 ], [ -78.530203, 38.024476 ], [ -78.530016, 38.024649 ], [ -78.529931, 38.024733 ], [ -78.52985, 38.024806 ], [ -78.529798, 38.024854 ], [ -78.529758, 38.024894 ], [ -78.529598, 38.025065 ], [ -78.529327, 38.025386 ], [ -78.52916, 38.025608 ], [ -78.528945, 38.025933 ], [ -78.5288, 38.026176 ], [ -78.528672, 38.026426 ], [ -78.52861, 38.026566 ], [ -78.528405, 38.027066 ], [ -78.52833, 38.027311 ], [ -78.528283, 38.02751 ], [ -78.528235, 38.027689 ], [ -78.528151, 38.028145 ], [ -78.527582, 38.03105 ], [ -78.527126, 38.033402 ], [ -78.52703, 38.033972 ], [ -78.526914, 38.034782 ], [ -78.526868, 38.035166 ], [ -78.52679, 38.036035 ], [ -78.526753, 38.036647 ], [ -78.526715, 38.03781 ], [ -78.526642, 38.040878 ], [ -78.526607, 38.042081 ], [ -78.526584, 38.042473 ], [ -78.526544, 38.042863 ], [ -78.52645, 38.043462 ], [ -78.526353, 38.043907 ], [ -78.526306, 38.044099 ], [ -78.526225, 38.044382 ], [ -78.526103, 38.044762 ], [ -78.525978, 38.045116 ], [ -78.52595, 38.045183 ], [ -78.525619, 38.045973 ], [ -78.525226, 38.046882 ], [ -78.524837, 38.047794 ], [ -78.524807, 38.047861 ], [ -78.524712, 38.048073 ], [ -78.523664, 38.050524 ], [ -78.523608, 38.050633 ], [ -78.523449, 38.050945 ], [ -78.523194, 38.051371 ], [ -78.522992, 38.051667 ], [ -78.522896, 38.051793 ], [ -78.522708, 38.052033 ], [ -78.522379, 38.052403 ], [ -78.522049, 38.052728 ], [ -78.521736, 38.053004 ], [ -78.521375, 38.053289 ], [ -78.521061, 38.053512 ], [ -78.520792, 38.053687 ], [ -78.520433, 38.053898 ], [ -78.5202, 38.054028 ], [ -78.519924, 38.054166 ], [ -78.519561, 38.054329 ], [ -78.519179, 38.054486 ], [ -78.518827, 38.054612 ], [ -78.518437, 38.054736 ], [ -78.518106, 38.054829 ], [ -78.517883, 38.054877 ], [ -78.517638, 38.05494 ], [ -78.517298, 38.055006 ], [ -78.51674, 38.055093 ], [ -78.515503, 38.055228 ], [ -78.513125, 38.055506 ], [ -78.51298, 38.05552 ], [ -78.511721, 38.055664 ], [ -78.510089, 38.05585 ], [ -78.509444, 38.055931 ], [ -78.508892, 38.056018 ], [ -78.508324, 38.056121 ], [ -78.50762, 38.056269 ], [ -78.507101, 38.056364 ], [ -78.5063, 38.056529 ], [ -78.504207, 38.056975 ], [ -78.503544, 38.057129 ], [ -78.50332, 38.057173 ], [ -78.50218, 38.05739 ], [ -78.501769, 38.057476 ], [ -78.501588, 38.057518 ], [ -78.501288, 38.05758 ], [ -78.500918, 38.057644 ], [ -78.50053, 38.057699 ], [ -78.50025, 38.057721 ], [ -78.49999, 38.057731 ], [ -78.4996, 38.057738 ], [ -78.499258, 38.057729 ], [ -78.499228, 38.057727 ], [ -78.498789, 38.057695 ], [ -78.498509, 38.057667 ], [ -78.498249, 38.05764 ], [ -78.497868, 38.057604 ], [ -78.497658, 38.057584 ], [ -78.497235, 38.057537 ], [ -78.496848, 38.057489 ], [ -78.495893, 38.057371 ], [ -78.494978, 38.057279 ], [ -78.49472, 38.057173 ], [ -78.494659, 38.057142 ], [ -78.494592, 38.057093 ], [ -78.494549, 38.057047 ], [ -78.494516, 38.056995 ], [ -78.494502, 38.05695 ], [ -78.494493, 38.056874 ], [ -78.494502, 38.056798 ], [ -78.494522, 38.056739 ], [ -78.494562, 38.056669 ], [ -78.494623, 38.05661 ], [ -78.494697, 38.056562 ], [ -78.494781, 38.056525 ], [ -78.494872, 38.056502 ], [ -78.49496, 38.056493 ], [ -78.495044, 38.0565 ], [ -78.495109, 38.056516 ], [ -78.495169, 38.056541 ], [ -78.495238, 38.056584 ], [ -78.49528, 38.056617 ], [ -78.495339, 38.05668 ], [ -78.495381, 38.056751 ], [ -78.495402, 38.056811 ], [ -78.495415, 38.056894 ], [ -78.495413, 38.056998 ], [ -78.495388, 38.057116 ], [ -78.49528, 38.057239 ], [ -78.495007, 38.057577 ], [ -78.494845, 38.057747 ], [ -78.494782, 38.057825 ], [ -78.494593, 38.05807 ], [ -78.494413, 38.058298 ], [ -78.494268, 38.05847 ], [ -78.494235, 38.058509 ], [ -78.494159, 38.058601 ], [ -78.493967, 38.058833 ], [ -78.493505, 38.059401 ], [ -78.493364, 38.059586 ], [ -78.492889, 38.060182 ], [ -78.492564, 38.060616 ], [ -78.492196, 38.061101 ], [ -78.491916, 38.061468 ], [ -78.491724, 38.061722 ], [ -78.491723, 38.061722 ], [ -78.491578, 38.061897 ], [ -78.491244, 38.062293 ], [ -78.490863, 38.062734 ], [ -78.490477, 38.063153 ], [ -78.490269, 38.06338 ], [ -78.489937, 38.063742 ], [ -78.48969, 38.064008 ], [ -78.489478, 38.064259 ], [ -78.489344, 38.064409 ], [ -78.489289, 38.06447 ], [ -78.489212, 38.064554 ], [ -78.488761, 38.065053 ], [ -78.48815, 38.065739 ], [ -78.488116, 38.065779 ], [ -78.487867, 38.06605 ], [ -78.48713, 38.06686 ], [ -78.486995, 38.067008 ], [ -78.486825, 38.067194 ], [ -78.486343, 38.067727 ], [ -78.486218, 38.067866 ], [ -78.486208, 38.067877 ], [ -78.486134, 38.067959 ], [ -78.48576, 38.068363 ], [ -78.485475, 38.06867 ], [ -78.485154, 38.069027 ], [ -78.484295, 38.070023 ], [ -78.484063, 38.070271 ], [ -78.483776, 38.070614 ], [ -78.483281, 38.071164 ], [ -78.482433, 38.07211 ], [ -78.480968, 38.073741 ], [ -78.480778, 38.073943 ], [ -78.480706, 38.07403 ], [ -78.480376, 38.074401 ], [ -78.479882, 38.074956 ], [ -78.479801, 38.075034 ], [ -78.479272, 38.075634 ], [ -78.478606, 38.076375 ], [ -78.478527, 38.076469 ], [ -78.478367, 38.076647 ], [ -78.477091, 38.078062 ], [ -78.476397, 38.078846 ], [ -78.475743, 38.079571 ], [ -78.474543, 38.08091 ], [ -78.474163, 38.081335 ], [ -78.473969, 38.081577 ], [ -78.473788, 38.081788 ], [ -78.473613, 38.082014 ], [ -78.47347, 38.082218 ], [ -78.472971, 38.083082 ], [ -78.472639, 38.083666 ], [ -78.472264, 38.084319 ], [ -78.471709, 38.085285 ], [ -78.471146, 38.086271 ], [ -78.47079, 38.086895 ], [ -78.470583, 38.087258 ], [ -78.47026, 38.087825 ], [ -78.469568, 38.089039 ], [ -78.468607, 38.090712 ], [ -78.468501, 38.090897 ], [ -78.468139, 38.091557 ], [ -78.468043, 38.091733 ], [ -78.467922, 38.09192 ], [ -78.467732, 38.092218 ], [ -78.46735, 38.0929 ], [ -78.466766, 38.093924 ], [ -78.466497, 38.09437 ], [ -78.466369, 38.094558 ], [ -78.46599, 38.095057 ], [ -78.465526, 38.09564 ], [ -78.465381, 38.095816 ], [ -78.464933, 38.096381 ], [ -78.464463, 38.096962 ], [ -78.464049, 38.097474 ], [ -78.463974, 38.097573 ], [ -78.463441, 38.098232 ], [ -78.46294, 38.098874 ], [ -78.462231, 38.099765 ], [ -78.461478, 38.100721 ], [ -78.460943, 38.101395 ], [ -78.460544, 38.101882 ], [ -78.460009, 38.102564 ], [ -78.459568, 38.103126 ], [ -78.459337, 38.103403 ], [ -78.458603, 38.10429 ], [ -78.457804, 38.105297 ], [ -78.45751, 38.105695 ], [ -78.4569, 38.106619 ], [ -78.456598, 38.107068 ], [ -78.45544, 38.108845 ], [ -78.454988, 38.109578 ], [ -78.454476, 38.110311 ], [ -78.454296, 38.110569 ], [ -78.454206, 38.110708 ], [ -78.454093, 38.110899 ], [ -78.453942, 38.111128 ], [ -78.453769, 38.111409 ], [ -78.453294, 38.112125 ], [ -78.453172, 38.112318 ], [ -78.452856, 38.112817 ], [ -78.452688, 38.11307 ], [ -78.452602, 38.113223 ], [ -78.451975, 38.114186 ], [ -78.451686, 38.11461 ], [ -78.45106, 38.115568 ], [ -78.450908, 38.115798 ], [ -78.450496, 38.11642 ], [ -78.450419, 38.116537 ], [ -78.45032, 38.116697 ], [ -78.450137, 38.116993 ], [ -78.449702, 38.117634 ], [ -78.449172, 38.118448 ], [ -78.448773, 38.119065 ], [ -78.448006, 38.120242 ], [ -78.447677, 38.120726 ], [ -78.447299, 38.121219 ], [ -78.44692, 38.121631 ], [ -78.446411, 38.122124 ], [ -78.4458, 38.12267 ], [ -78.444661, 38.123687 ], [ -78.442392, 38.125724 ], [ -78.441529, 38.126494 ], [ -78.440922, 38.127044 ], [ -78.440006, 38.127866 ], [ -78.439371, 38.128436 ], [ -78.437997, 38.129669 ], [ -78.437902, 38.129754 ], [ -78.437019, 38.130549 ], [ -78.436453, 38.131059 ], [ -78.436187, 38.131299 ], [ -78.435995, 38.13147 ], [ -78.435251, 38.132172 ], [ -78.435106, 38.132303 ], [ -78.434673, 38.132753 ], [ -78.434293, 38.13317 ], [ -78.433695, 38.133887 ], [ -78.433416, 38.134269 ], [ -78.433195, 38.134572 ], [ -78.432173, 38.13616 ], [ -78.430917, 38.138131 ], [ -78.430468, 38.138847 ], [ -78.429836, 38.139833 ], [ -78.429464, 38.140424 ], [ -78.428859, 38.141359 ], [ -78.428348, 38.142178 ], [ -78.428275, 38.142291 ], [ -78.427887, 38.14289 ], [ -78.427641, 38.143278 ], [ -78.427277, 38.143851 ], [ -78.427263, 38.143873 ], [ -78.425718, 38.146293 ], [ -78.4249, 38.147586 ], [ -78.423982, 38.149017 ], [ -78.423879, 38.149181 ], [ -78.4234, 38.149936 ], [ -78.422346, 38.1516 ], [ -78.42208, 38.151996 ], [ -78.421684, 38.152621 ], [ -78.421337, 38.15319 ], [ -78.420383, 38.154692 ], [ -78.419605, 38.155908 ], [ -78.417659, 38.158962 ], [ -78.415009, 38.163121 ], [ -78.414626, 38.163716 ], [ -78.414541, 38.163851 ], [ -78.414293, 38.164245 ], [ -78.412771, 38.16663 ], [ -78.41231, 38.167345 ], [ -78.411781, 38.168185 ], [ -78.410521, 38.170164 ], [ -78.410064, 38.170881 ], [ -78.408661, 38.173081 ], [ -78.408289, 38.173661 ], [ -78.406754, 38.176057 ], [ -78.405791, 38.177582 ], [ -78.405633, 38.177824 ], [ -78.404819, 38.179105 ], [ -78.40451, 38.179581 ], [ -78.403702, 38.180857 ], [ -78.403534, 38.181116 ], [ -78.40229, 38.183084 ], [ -78.402, 38.183534 ], [ -78.401567, 38.184219 ], [ -78.401491, 38.184329 ], [ -78.400918, 38.18523 ], [ -78.400512, 38.185861 ], [ -78.399321, 38.187671 ], [ -78.399195, 38.187856 ], [ -78.399077, 38.188041 ], [ -78.398689, 38.188617 ], [ -78.398558, 38.18882 ], [ -78.397589, 38.190295 ], [ -78.3974, 38.190566 ], [ -78.397207, 38.19086 ], [ -78.396877, 38.191349 ], [ -78.396731, 38.191574 ], [ -78.396016, 38.192652 ], [ -78.395969, 38.192724 ], [ -78.395198, 38.193895 ], [ -78.395145, 38.193978 ], [ -78.395092, 38.194057 ], [ -78.395078, 38.194078 ], [ -78.394787, 38.194511 ], [ -78.394461, 38.19501 ], [ -78.394425, 38.195065 ], [ -78.393867, 38.195904 ], [ -78.393697, 38.196162 ], [ -78.392569, 38.197862 ], [ -78.392356, 38.198186 ], [ -78.391791, 38.199049 ], [ -78.3916, 38.199341 ], [ -78.391424, 38.19959 ], [ -78.391056, 38.200141 ], [ -78.390364, 38.201178 ], [ -78.388697, 38.203713 ], [ -78.387884, 38.204937 ], [ -78.387682, 38.20524 ], [ -78.387424, 38.205639 ], [ -78.386997, 38.206278 ], [ -78.386781, 38.206604 ], [ -78.386138, 38.207581 ], [ -78.385992, 38.207804 ], [ -78.385531, 38.2085 ], [ -78.38498, 38.209334 ], [ -78.384853, 38.209537 ], [ -78.383889, 38.210987 ], [ -78.383519, 38.211533 ], [ -78.383408, 38.211705 ], [ -78.383194, 38.212041 ], [ -78.382209, 38.213531 ], [ -78.381949, 38.213932 ], [ -78.381401, 38.214759 ], [ -78.380953, 38.215433 ], [ -78.380697, 38.215818 ], [ -78.380472, 38.216158 ], [ -78.379118, 38.218196 ], [ -78.378999, 38.218384 ], [ -78.37862, 38.21895 ], [ -78.377882, 38.220071 ], [ -78.377739, 38.220289 ], [ -78.377587, 38.220523 ], [ -78.376908, 38.221535 ], [ -78.376698, 38.221851 ], [ -78.376516, 38.222128 ], [ -78.375966, 38.222959 ], [ -78.375503, 38.223658 ], [ -78.374143, 38.225716 ], [ -78.373741, 38.226317 ], [ -78.372465, 38.228246 ], [ -78.371604, 38.229546 ], [ -78.371224, 38.230126 ], [ -78.37075, 38.230832 ], [ -78.370117, 38.231792 ], [ -78.369796, 38.23229 ], [ -78.369344, 38.233031 ], [ -78.369247, 38.233202 ], [ -78.369201, 38.233285 ], [ -78.369089, 38.233499 ], [ -78.368757, 38.234191 ], [ -78.368537, 38.23469 ], [ -78.368285, 38.235273 ], [ -78.367348, 38.237406 ], [ -78.367125, 38.237924 ], [ -78.366876, 38.23848 ], [ -78.366632, 38.239054 ], [ -78.366538, 38.239263 ], [ -78.366315, 38.239761 ], [ -78.365981, 38.240523 ], [ -78.365112, 38.242495 ], [ -78.364536, 38.243815 ], [ -78.364277, 38.244425 ], [ -78.363872, 38.245322 ], [ -78.363644, 38.245831 ], [ -78.363475, 38.246227 ], [ -78.363324, 38.246579 ], [ -78.363065, 38.24716 ], [ -78.362399, 38.248697 ], [ -78.362213, 38.249115 ], [ -78.36185, 38.249928 ], [ -78.360994, 38.251906 ], [ -78.360894, 38.252122 ], [ -78.360732, 38.252472 ], [ -78.359818, 38.254556 ], [ -78.359604, 38.255032 ], [ -78.358451, 38.257672 ], [ -78.35837, 38.257854 ], [ -78.357235, 38.260418 ], [ -78.35697, 38.261034 ], [ -78.356749, 38.261526 ], [ -78.356328, 38.262487 ], [ -78.3557, 38.26392 ], [ -78.355441, 38.264489 ], [ -78.354985, 38.265534 ], [ -78.354199, 38.267311 ], [ -78.354014, 38.267697 ], [ -78.353899, 38.267927 ], [ -78.353632, 38.268419 ], [ -78.353386, 38.268835 ], [ -78.353012, 38.269405 ], [ -78.352727, 38.269807 ], [ -78.352433, 38.270193 ], [ -78.351176, 38.271816 ], [ -78.35069, 38.272444 ], [ -78.350332, 38.272914 ], [ -78.349867, 38.273496 ], [ -78.349659, 38.273731 ], [ -78.349448, 38.273949 ], [ -78.349246, 38.274133 ], [ -78.348925, 38.274393 ], [ -78.348653, 38.274592 ], [ -78.348309, 38.274816 ], [ -78.346752, 38.275754 ], [ -78.345609, 38.276449 ], [ -78.34394, 38.277447 ], [ -78.343411, 38.277789 ], [ -78.343205, 38.277938 ], [ -78.342906, 38.278167 ], [ -78.342692, 38.278348 ], [ -78.342621, 38.27841 ], [ -78.342399, 38.278622 ], [ -78.342335, 38.278686 ], [ -78.342171, 38.278857 ], [ -78.341631, 38.279482 ], [ -78.341204, 38.280003 ], [ -78.341139, 38.280089 ], [ -78.341053, 38.280202 ], [ -78.340551, 38.280804 ], [ -78.34033, 38.281097 ], [ -78.339739, 38.281771 ], [ -78.337121, 38.284947 ], [ -78.335554, 38.286807 ], [ -78.334912, 38.287652 ], [ -78.334363, 38.288479 ], [ -78.333901, 38.289321 ], [ -78.332891, 38.291302 ], [ -78.33264, 38.291856 ], [ -78.332046, 38.29316 ], [ -78.331547, 38.294091 ], [ -78.33002, 38.297253 ], [ -78.328705, 38.299896 ], [ -78.328454, 38.300437 ], [ -78.327604, 38.302025 ], [ -78.326529, 38.303681 ], [ -78.325643, 38.304891 ], [ -78.325058, 38.305662 ], [ -78.32399, 38.30691 ], [ -78.3236, 38.307359 ], [ -78.323233, 38.30771 ], [ -78.322626, 38.308335 ], [ -78.320591, 38.310229 ], [ -78.317859, 38.312439 ], [ -78.317136, 38.313055 ], [ -78.314274, 38.315396 ], [ -78.313204, 38.316275 ], [ -78.313084, 38.316374 ], [ -78.312238, 38.317069 ], [ -78.31127, 38.317874 ], [ -78.310555, 38.318624 ], [ -78.308339, 38.321068 ], [ -78.307189, 38.322326 ], [ -78.306432, 38.323147 ], [ -78.305157, 38.324565 ], [ -78.299683, 38.33067 ], [ -78.296227, 38.334366 ], [ -78.294775, 38.336025 ], [ -78.294422, 38.336434 ], [ -78.293518, 38.337393 ], [ -78.292283, 38.338774 ], [ -78.290905, 38.340301 ], [ -78.289054, 38.34231 ], [ -78.287698, 38.343781 ], [ -78.286127, 38.345511 ], [ -78.284805, 38.346961 ], [ -78.284197, 38.347653 ], [ -78.281261, 38.350904 ], [ -78.27928, 38.353063 ], [ -78.277989, 38.354462 ], [ -78.276967, 38.355626 ], [ -78.275482, 38.357205 ], [ -78.275108, 38.357686 ], [ -78.273995, 38.359116 ], [ -78.272612, 38.361053 ], [ -78.269402, 38.365549 ], [ -78.268281, 38.367067 ], [ -78.26707, 38.368543 ], [ -78.266209, 38.369424 ], [ -78.26463, 38.370803 ], [ -78.263855, 38.371431 ], [ -78.262777, 38.372178 ], [ -78.262167, 38.372601 ], [ -78.258589, 38.375046 ], [ -78.253931, 38.378242 ], [ -78.253419, 38.378585 ], [ -78.252722, 38.379065 ], [ -78.251038, 38.380279 ], [ -78.249725, 38.3814 ], [ -78.248824, 38.38242 ], [ -78.247019, 38.384778 ], [ -78.243045, 38.39007 ], [ -78.242379, 38.390835 ], [ -78.241798, 38.391304 ], [ -78.241358, 38.391649 ], [ -78.240659, 38.392107 ], [ -78.239791, 38.392562 ], [ -78.236781, 38.394134 ], [ -78.234618, 38.395478 ], [ -78.233524, 38.396238 ], [ -78.231366, 38.397688 ], [ -78.230593, 38.398159 ], [ -78.229713, 38.398631 ], [ -78.22927, 38.398846 ], [ -78.227176, 38.399941 ], [ -78.224001, 38.401573 ], [ -78.221687, 38.402762 ], [ -78.220927, 38.403115 ], [ -78.219583, 38.403494 ], [ -78.217956, 38.403869 ], [ -78.216834, 38.404329 ], [ -78.216198, 38.404653 ], [ -78.215673, 38.404943 ], [ -78.2147, 38.405692 ], [ -78.214341, 38.406017 ], [ -78.211846, 38.409013 ], [ -78.211205, 38.409859 ], [ -78.208931, 38.412831 ], [ -78.207891, 38.413946 ], [ -78.207388, 38.414459 ], [ -78.206848, 38.414885 ], [ -78.20502, 38.416246 ], [ -78.204339, 38.416746 ], [ -78.203587, 38.417231 ], [ -78.201789, 38.418025 ], [ -78.199931, 38.418788 ], [ -78.198775, 38.419213 ], [ -78.197516, 38.419599 ], [ -78.196891, 38.419728 ], [ -78.193593, 38.420311 ], [ -78.192656, 38.420508 ], [ -78.191772, 38.420736 ], [ -78.190615, 38.421137 ], [ -78.189756, 38.421485 ], [ -78.189131, 38.421795 ], [ -78.188009, 38.422501 ], [ -78.186635, 38.423265 ], [ -78.185396, 38.423841 ], [ -78.184545, 38.424162 ], [ -78.179643, 38.425692 ], [ -78.176595, 38.426575 ], [ -78.175037, 38.427149 ], [ -78.174014, 38.427529 ], [ -78.171007, 38.428688 ], [ -78.169272, 38.429381 ], [ -78.165511, 38.430827 ], [ -78.164119, 38.431371 ], [ -78.162591, 38.431967 ], [ -78.161653, 38.432308 ], [ -78.160661, 38.43271 ], [ -78.160269, 38.432865 ], [ -78.159874, 38.433009 ], [ -78.157491, 38.433942 ], [ -78.157022, 38.434133 ], [ -78.156281, 38.434403 ], [ -78.154122, 38.435214 ], [ -78.152887, 38.435503 ], [ -78.151935, 38.435645 ], [ -78.151237, 38.435723 ], [ -78.149391, 38.435895 ], [ -78.145341, 38.436294 ], [ -78.143178, 38.436516 ], [ -78.141588, 38.436723 ], [ -78.140742, 38.436927 ], [ -78.139967, 38.43716 ], [ -78.139029, 38.437478 ], [ -78.138213, 38.437833 ], [ -78.13673, 38.438732 ], [ -78.135769, 38.439493 ], [ -78.133667, 38.441543 ], [ -78.13309, 38.442092 ], [ -78.132637, 38.442565 ], [ -78.131362, 38.443807 ], [ -78.131197, 38.443972 ], [ -78.13069, 38.444456 ], [ -78.13004, 38.445093 ], [ -78.129654, 38.445515 ], [ -78.129431, 38.445788 ], [ -78.129306, 38.445939 ], [ -78.129135, 38.446147 ], [ -78.126535, 38.449414 ], [ -78.12559, 38.450596 ], [ -78.124937, 38.451403 ], [ -78.12463, 38.451786 ], [ -78.122999, 38.453819 ], [ -78.12268, 38.454222 ], [ -78.122212, 38.454799 ], [ -78.122012, 38.455018 ], [ -78.121815, 38.455209 ], [ -78.121657, 38.455346 ], [ -78.121484, 38.455481 ], [ -78.121283, 38.455622 ], [ -78.121072, 38.455755 ], [ -78.120838, 38.455889 ], [ -78.120605, 38.456007 ], [ -78.120411, 38.456093 ], [ -78.120081, 38.45622 ], [ -78.11988, 38.456286 ], [ -78.119617, 38.456362 ], [ -78.119481, 38.456395 ], [ -78.119029, 38.456484 ], [ -78.118859, 38.456513 ], [ -78.118556, 38.456543 ], [ -78.118252, 38.456558 ], [ -78.117886, 38.45656 ], [ -78.117582, 38.456545 ], [ -78.117215, 38.456509 ], [ -78.11691, 38.456463 ], [ -78.116669, 38.456417 ], [ -78.116299, 38.456332 ], [ -78.114395, 38.455867 ], [ -78.113075, 38.455549 ], [ -78.112183, 38.455337 ], [ -78.111983, 38.455288 ], [ -78.110622, 38.454956 ], [ -78.109647, 38.454713 ], [ -78.109318, 38.454619 ], [ -78.108646, 38.454427 ], [ -78.108148, 38.454266 ], [ -78.107826, 38.454152 ], [ -78.107433, 38.454006 ], [ -78.106215, 38.453523 ], [ -78.103244, 38.452284 ], [ -78.103113, 38.45223 ], [ -78.101465, 38.451517 ], [ -78.100793, 38.451267 ], [ -78.099999, 38.450965 ], [ -78.099633, 38.450843 ], [ -78.099366, 38.450762 ], [ -78.098981, 38.450649 ], [ -78.098604, 38.450547 ], [ -78.098262, 38.45046 ], [ -78.09792, 38.450384 ], [ -78.096808, 38.450181 ], [ -78.096151, 38.450083 ], [ -78.095446, 38.449969 ], [ -78.093727, 38.449707 ], [ -78.092677, 38.449547 ], [ -78.092158, 38.449481 ], [ -78.091766, 38.449445 ], [ -78.091635, 38.449437 ], [ -78.091391, 38.44943 ], [ -78.09088, 38.449437 ], [ -78.090541, 38.449459 ], [ -78.090154, 38.449505 ], [ -78.090027, 38.449526 ], [ -78.089761, 38.44957 ], [ -78.089091, 38.449707 ], [ -78.08849, 38.449845 ], [ -78.087312, 38.450134 ], [ -78.086546, 38.450314 ], [ -78.086092, 38.450427 ], [ -78.085716, 38.450516 ], [ -78.085217, 38.45064 ], [ -78.083614, 38.45102 ], [ -78.082588, 38.451268 ], [ -78.081682, 38.451496 ], [ -78.080934, 38.451707 ], [ -78.080808, 38.451743 ], [ -78.080252, 38.451928 ], [ -78.080061, 38.451995 ], [ -78.079356, 38.452244 ], [ -78.079056, 38.452366 ], [ -78.077758, 38.452899 ], [ -78.07693, 38.453218 ], [ -78.07648, 38.453363 ], [ -78.075972, 38.453504 ], [ -78.075519, 38.453613 ], [ -78.075245, 38.453672 ], [ -78.074633, 38.453773 ], [ -78.073634, 38.453917 ], [ -78.073086, 38.453985 ], [ -78.071708, 38.454165 ], [ -78.070367, 38.45434 ], [ -78.069606, 38.454439 ], [ -78.065196, 38.455001 ], [ -78.0636, 38.455212 ], [ -78.062967, 38.455296 ], [ -78.062279, 38.455383 ], [ -78.061807, 38.45545 ], [ -78.061375, 38.455516 ], [ -78.060496, 38.455651 ], [ -78.059099, 38.455874 ], [ -78.058415, 38.455997 ], [ -78.057861, 38.456107 ], [ -78.057398, 38.456211 ], [ -78.057094, 38.456284 ], [ -78.055369, 38.456762 ], [ -78.054558, 38.456978 ], [ -78.05416, 38.457057 ], [ -78.053923, 38.4571 ], [ -78.053692, 38.457137 ], [ -78.053464, 38.457172 ], [ -78.052965, 38.457229 ], [ -78.052547, 38.457266 ], [ -78.05168, 38.457327 ], [ -78.051381, 38.457343 ], [ -78.051209, 38.457356 ], [ -78.050231, 38.457415 ], [ -78.049522, 38.45745 ], [ -78.049115, 38.457457 ], [ -78.048707, 38.45745 ], [ -78.048107, 38.457414 ], [ -78.046583, 38.457296 ], [ -78.045473, 38.457209 ], [ -78.043615, 38.457066 ], [ -78.04299, 38.457014 ], [ -78.041948, 38.456934 ], [ -78.041564, 38.4569 ], [ -78.040447, 38.456809 ], [ -78.039807, 38.456752 ], [ -78.039565, 38.456722 ], [ -78.038614, 38.456586 ], [ -78.037992, 38.45648 ], [ -78.036619, 38.456229 ], [ -78.036312, 38.456174 ], [ -78.035316, 38.455996 ], [ -78.033993, 38.455756 ], [ -78.033455, 38.455659 ], [ -78.032995, 38.455576 ], [ -78.032344, 38.455462 ], [ -78.032225, 38.455441 ], [ -78.032071, 38.455411 ], [ -78.031918, 38.455381 ], [ -78.030629, 38.455156 ], [ -78.030487, 38.455136 ], [ -78.02993, 38.455035 ], [ -78.029397, 38.454939 ], [ -78.027154, 38.454551 ], [ -78.026507, 38.454439 ], [ -78.026143, 38.454368 ], [ -78.025005, 38.454171 ], [ -78.024336, 38.45404 ], [ -78.023622, 38.453878 ], [ -78.02312, 38.453727 ], [ -78.02273, 38.453603 ], [ -78.022384, 38.453473 ], [ -78.021945, 38.453293 ], [ -78.021688, 38.453179 ], [ -78.02141, 38.45304 ], [ -78.020949, 38.452794 ], [ -78.020606, 38.452593 ], [ -78.018376, 38.451156 ], [ -78.015052, 38.449001 ], [ -78.013038, 38.447702 ], [ -78.012718, 38.447476 ], [ -78.012365, 38.447314 ], [ -78.011913, 38.44707 ], [ -78.011467, 38.446849 ], [ -78.011017, 38.446646 ], [ -78.010785, 38.446548 ], [ -78.01041, 38.446389 ], [ -78.009947, 38.446212 ], [ -78.009475, 38.446047 ], [ -78.009032, 38.44592 ], [ -78.008198, 38.445668 ], [ -78.007806, 38.445574 ], [ -78.007536, 38.445509 ], [ -78.00704, 38.445404 ], [ -78.006541, 38.445314 ], [ -78.006039, 38.445234 ], [ -78.005535, 38.445168 ], [ -78.004882, 38.445103 ], [ -78.00427, 38.44506 ], [ -78.003857, 38.445042 ], [ -78.003259, 38.445032 ], [ -77.996098, 38.445039 ], [ -77.995524, 38.445052 ], [ -77.995083, 38.445072 ], [ -77.9946, 38.445108 ], [ -77.994291, 38.44514 ], [ -77.994119, 38.445159 ], [ -77.993562, 38.445235 ], [ -77.993077, 38.445314 ], [ -77.992738, 38.44538 ], [ -77.992304, 38.445476 ], [ -77.991774, 38.445609 ], [ -77.991277, 38.445754 ], [ -77.990885, 38.44588 ], [ -77.990401, 38.446049 ], [ -77.989902, 38.446248 ], [ -77.98951, 38.446417 ], [ -77.989127, 38.446595 ], [ -77.988671, 38.446826 ], [ -77.988226, 38.44707 ], [ -77.988015, 38.447193 ], [ -77.987964, 38.447222 ], [ -77.986229, 38.448266 ], [ -77.982377, 38.450578 ], [ -77.980067, 38.451965 ], [ -77.978396, 38.452971 ], [ -77.976723, 38.453978 ], [ -77.971729, 38.456974 ], [ -77.970854, 38.457513 ], [ -77.970447, 38.457776 ], [ -77.969812, 38.458205 ], [ -77.969672, 38.458304 ], [ -77.969294, 38.458571 ], [ -77.968878, 38.458872 ], [ -77.968162, 38.459423 ], [ -77.967696, 38.459799 ], [ -77.967125, 38.46028 ], [ -77.966325, 38.460982 ], [ -77.965258, 38.461918 ], [ -77.964866, 38.462267 ], [ -77.960196, 38.466376 ], [ -77.955939, 38.470123 ], [ -77.954947, 38.470996 ], [ -77.954533, 38.471358 ], [ -77.953922, 38.471893 ], [ -77.953458, 38.472304 ], [ -77.953176, 38.472548 ], [ -77.952583, 38.473072 ], [ -77.951119, 38.474355 ], [ -77.950943, 38.474509 ], [ -77.949669, 38.47563 ], [ -77.948949, 38.476265 ], [ -77.948002, 38.477098 ], [ -77.940672, 38.483548 ], [ -77.940481, 38.483731 ], [ -77.940188, 38.484012 ], [ -77.939893, 38.484318 ], [ -77.939484, 38.484776 ], [ -77.93926, 38.485054 ], [ -77.939039, 38.48534 ], [ -77.938835, 38.485618 ], [ -77.938574, 38.486003 ], [ -77.938385, 38.4863 ], [ -77.938154, 38.486695 ], [ -77.936929, 38.489071 ], [ -77.936476, 38.48995 ], [ -77.936307, 38.490277 ], [ -77.936213, 38.490449 ], [ -77.936032, 38.490779 ], [ -77.935797, 38.491168 ], [ -77.935515, 38.491593 ], [ -77.935238, 38.491981 ], [ -77.934904, 38.492412 ], [ -77.934836, 38.492493 ], [ -77.93462, 38.492753 ], [ -77.934238, 38.493183 ], [ -77.933985, 38.493449 ], [ -77.933681, 38.493753 ], [ -77.933395, 38.494018 ], [ -77.933018, 38.494354 ], [ -77.932749, 38.494585 ], [ -77.932252, 38.494973 ], [ -77.93171, 38.495374 ], [ -77.931341, 38.495628 ], [ -77.930966, 38.495866 ], [ -77.930194, 38.496327 ], [ -77.929795, 38.496546 ], [ -77.929468, 38.496713 ], [ -77.928898, 38.496989 ], [ -77.928401, 38.497211 ], [ -77.927814, 38.497454 ], [ -77.927352, 38.49763 ], [ -77.926883, 38.497792 ], [ -77.92627, 38.497988 ], [ -77.925745, 38.498139 ], [ -77.925688, 38.498154 ], [ -77.925207, 38.498279 ], [ -77.924635, 38.498412 ], [ -77.924059, 38.498531 ], [ -77.923478, 38.498637 ], [ -77.923244, 38.498675 ], [ -77.9209, 38.499106 ], [ -77.920407, 38.499196 ], [ -77.916265, 38.499951 ], [ -77.914897, 38.500194 ], [ -77.913262, 38.500498 ], [ -77.912906, 38.500563 ], [ -77.911059, 38.5009 ], [ -77.910401, 38.501012 ], [ -77.909308, 38.501222 ], [ -77.90816, 38.501425 ], [ -77.906956, 38.501647 ], [ -77.902649, 38.502433 ], [ -77.901836, 38.502578 ], [ -77.901383, 38.502661 ], [ -77.899056, 38.503088 ], [ -77.897887, 38.503302 ], [ -77.896932, 38.503454 ], [ -77.896481, 38.503514 ], [ -77.896026, 38.50356 ], [ -77.89557, 38.503592 ], [ -77.895091, 38.503613 ], [ -77.894605, 38.503621 ], [ -77.894338, 38.503619 ], [ -77.894023, 38.503612 ], [ -77.893539, 38.503589 ], [ -77.893152, 38.50356 ], [ -77.891645, 38.503392 ], [ -77.891145, 38.503351 ], [ -77.890705, 38.503331 ], [ -77.890264, 38.503325 ], [ -77.89, 38.503328 ], [ -77.889421, 38.503346 ], [ -77.888918, 38.503375 ], [ -77.888578, 38.503406 ], [ -77.888318, 38.503429 ], [ -77.887823, 38.50349 ], [ -77.887334, 38.503566 ], [ -77.886849, 38.503655 ], [ -77.886369, 38.503759 ], [ -77.885701, 38.503929 ], [ -77.88504, 38.504114 ], [ -77.883872, 38.504451 ], [ -77.882026, 38.504972 ], [ -77.880726, 38.50535 ], [ -77.879756, 38.505628 ], [ -77.879416, 38.505726 ], [ -77.878734, 38.505916 ], [ -77.87665, 38.506514 ], [ -77.873295, 38.507467 ], [ -77.870872, 38.508164 ], [ -77.867574, 38.509112 ], [ -77.86643, 38.509426 ], [ -77.865139, 38.509804 ], [ -77.864878, 38.509875 ], [ -77.864614, 38.509946 ], [ -77.864004, 38.510124 ], [ -77.863963, 38.510136 ], [ -77.863243, 38.510359 ], [ -77.862776, 38.510515 ], [ -77.862313, 38.51068 ], [ -77.86153, 38.510992 ], [ -77.86091, 38.511252 ], [ -77.860341, 38.511504 ], [ -77.860101, 38.511597 ], [ -77.859873, 38.511706 ], [ -77.859049, 38.512033 ], [ -77.858596, 38.512199 ], [ -77.85801, 38.512393 ], [ -77.85641, 38.512859 ], [ -77.85546, 38.513131 ], [ -77.853636, 38.513652 ], [ -77.852939, 38.513842 ], [ -77.85189, 38.514117 ], [ -77.851773, 38.514147 ], [ -77.851155, 38.514282 ], [ -77.850783, 38.514355 ], [ -77.850158, 38.514468 ], [ -77.849529, 38.514566 ], [ -77.848611, 38.514673 ], [ -77.847601, 38.514814 ], [ -77.847219, 38.514874 ], [ -77.846744, 38.514961 ], [ -77.846275, 38.515063 ], [ -77.845622, 38.515227 ], [ -77.843493, 38.515828 ], [ -77.840926, 38.516554 ], [ -77.838953, 38.517123 ], [ -77.838611, 38.51724 ], [ -77.838276, 38.51737 ], [ -77.838087, 38.517452 ], [ -77.837878, 38.517559 ], [ -77.837641, 38.517698 ], [ -77.837371, 38.517879 ], [ -77.837159, 38.518042 ], [ -77.836631, 38.518508 ], [ -77.833939, 38.52107 ], [ -77.833536, 38.521444 ], [ -77.832859, 38.52207 ], [ -77.832618, 38.52227 ], [ -77.832363, 38.52246 ], [ -77.832151, 38.522605 ], [ -77.831761, 38.52284 ], [ -77.831645, 38.522905 ], [ -77.831341, 38.523059 ], [ -77.831027, 38.523201 ], [ -77.830705, 38.52333 ], [ -77.830375, 38.523446 ], [ -77.82725, 38.524408 ], [ -77.825282, 38.525005 ], [ -77.824825, 38.525153 ], [ -77.824766, 38.525172 ], [ -77.82414, 38.525403 ], [ -77.823904, 38.525501 ], [ -77.823444, 38.525707 ], [ -77.823161, 38.525842 ], [ -77.822816, 38.526023 ], [ -77.822483, 38.526216 ], [ -77.82216, 38.526429 ], [ -77.821905, 38.526618 ], [ -77.821824, 38.526681 ], [ -77.821661, 38.526816 ], [ -77.82143, 38.527024 ], [ -77.821026, 38.527454 ], [ -77.820758, 38.527783 ], [ -77.820516, 38.528112 ], [ -77.820197, 38.52856 ], [ -77.819895, 38.529029 ], [ -77.81945, 38.529798 ], [ -77.818541, 38.531386 ], [ -77.817476, 38.533249 ], [ -77.817174, 38.533749 ], [ -77.815779, 38.536111 ], [ -77.812836, 38.541042 ], [ -77.812145, 38.542152 ], [ -77.811443, 38.543345 ], [ -77.81107, 38.543916 ], [ -77.809169, 38.54677 ], [ -77.807061, 38.549912 ], [ -77.805801, 38.55177 ], [ -77.803189, 38.555743 ], [ -77.802664, 38.55653 ], [ -77.802442, 38.556869 ], [ -77.802253, 38.557175 ], [ -77.802079, 38.557492 ], [ -77.801838, 38.557971 ], [ -77.801782, 38.55809 ], [ -77.801657, 38.55838 ], [ -77.801522, 38.558722 ], [ -77.801429, 38.558994 ], [ -77.801302, 38.559432 ], [ -77.801209, 38.559822 ], [ -77.801144, 38.560169 ], [ -77.801065, 38.560727 ], [ -77.801025, 38.56131 ], [ -77.801027, 38.561813 ], [ -77.801049, 38.562487 ], [ -77.801069, 38.562893 ], [ -77.801213, 38.565749 ], [ -77.801305, 38.567636 ], [ -77.80137, 38.568961 ], [ -77.801541, 38.572402 ], [ -77.801599, 38.573623 ], [ -77.801669, 38.575224 ], [ -77.801707, 38.575829 ], [ -77.801772, 38.577117 ], [ -77.801874, 38.579138 ], [ -77.801902, 38.579759 ], [ -77.801914, 38.579914 ], [ -77.801945, 38.580642 ], [ -77.801977, 38.581198 ], [ -77.802036, 38.582417 ], [ -77.802118, 38.584113 ], [ -77.802126, 38.584391 ], [ -77.802131, 38.584986 ], [ -77.802118, 38.585525 ], [ -77.802088, 38.586052 ], [ -77.802017, 38.586791 ], [ -77.801743, 38.589112 ], [ -77.801725, 38.589268 ], [ -77.801437, 38.591698 ], [ -77.801342, 38.5925 ], [ -77.801281, 38.593006 ], [ -77.800994, 38.595455 ], [ -77.800644, 38.598437 ], [ -77.800492, 38.599704 ], [ -77.800457, 38.599972 ], [ -77.800268, 38.601612 ], [ -77.800209, 38.602305 ], [ -77.80017, 38.602992 ], [ -77.800152, 38.603904 ], [ -77.800152, 38.604035 ], [ -77.800152, 38.604483 ], [ -77.800172, 38.60559 ], [ -77.800187, 38.606551 ], [ -77.800205, 38.607644 ], [ -77.80022, 38.608813 ], [ -77.800237, 38.609384 ], [ -77.800232, 38.610093 ], [ -77.800248, 38.611162 ], [ -77.80027, 38.611781 ], [ -77.800276, 38.611972 ], [ -77.800298, 38.612639 ], [ -77.800312, 38.613039 ], [ -77.800332, 38.613399 ], [ -77.800397, 38.614527 ], [ -77.800421, 38.615203 ], [ -77.800432, 38.61575 ], [ -77.800444, 38.616559 ], [ -77.800478, 38.618723 ], [ -77.8005, 38.619601 ], [ -77.800525, 38.620811 ], [ -77.800527, 38.620908 ], [ -77.800548, 38.62192 ], [ -77.80058, 38.623403 ], [ -77.800594, 38.624213 ], [ -77.800603, 38.625413 ], [ -77.80062, 38.627386 ], [ -77.800629, 38.627856 ], [ -77.800651, 38.62934 ], [ -77.800658, 38.629863 ], [ -77.800688, 38.631295 ], [ -77.800701, 38.63219 ], [ -77.800708, 38.632656 ], [ -77.800729, 38.632937 ], [ -77.800749, 38.6331 ], [ -77.800764, 38.633194 ], [ -77.800824, 38.633493 ], [ -77.8009, 38.63375 ], [ -77.801033, 38.634132 ], [ -77.801091, 38.634277 ], [ -77.801339, 38.634852 ], [ -77.801526, 38.635289 ], [ -77.801703, 38.635692 ], [ -77.801752, 38.635808 ], [ -77.801965, 38.636295 ], [ -77.802897, 38.638462 ], [ -77.802996, 38.638693 ], [ -77.803206, 38.639174 ], [ -77.803351, 38.639505 ], [ -77.803635, 38.640158 ], [ -77.803774, 38.640485 ], [ -77.80405, 38.641121 ], [ -77.804137, 38.641325 ], [ -77.804199, 38.641471 ], [ -77.804367, 38.641868 ], [ -77.804398, 38.641941 ], [ -77.804535, 38.642359 ], [ -77.804602, 38.642621 ], [ -77.804642, 38.642832 ], [ -77.804669, 38.643038 ], [ -77.804677, 38.643118 ], [ -77.804687, 38.643291 ], [ -77.804696, 38.643722 ], [ -77.804696, 38.644409 ], [ -77.804677, 38.644766 ], [ -77.804636, 38.645023 ], [ -77.804576, 38.645279 ], [ -77.804498, 38.645531 ], [ -77.804445, 38.645671 ], [ -77.804179, 38.646296 ], [ -77.803976, 38.646795 ], [ -77.803645, 38.647584 ], [ -77.803607, 38.647672 ], [ -77.803037, 38.649027 ], [ -77.802582, 38.650099 ], [ -77.802488, 38.65032 ], [ -77.80226, 38.650816 ], [ -77.802226, 38.650891 ], [ -77.801705, 38.651973 ], [ -77.801524, 38.652348 ], [ -77.800517, 38.654435 ], [ -77.800311, 38.654856 ], [ -77.800109, 38.655223 ], [ -77.799504, 38.656216 ], [ -77.799258, 38.656629 ], [ -77.799064, 38.656995 ], [ -77.798952, 38.657238 ], [ -77.798593, 38.658126 ], [ -77.798524, 38.658287 ], [ -77.798395, 38.658591 ], [ -77.798266, 38.658901 ], [ -77.798049, 38.659428 ], [ -77.797829, 38.659963 ], [ -77.79736, 38.661105 ], [ -77.797075, 38.661795 ], [ -77.796724, 38.662641 ], [ -77.79625, 38.663783 ], [ -77.796094, 38.664161 ], [ -77.795637, 38.665271 ], [ -77.79528, 38.666132 ], [ -77.795248, 38.66621 ], [ -77.794069, 38.669063 ], [ -77.793674, 38.670024 ], [ -77.793379, 38.670723 ], [ -77.793244, 38.671036 ], [ -77.793103, 38.671307 ], [ -77.792943, 38.671571 ], [ -77.792813, 38.671755 ], [ -77.792641, 38.671968 ], [ -77.792454, 38.672174 ], [ -77.792251, 38.672371 ], [ -77.791496, 38.673047 ], [ -77.791134, 38.673372 ], [ -77.790643, 38.673809 ], [ -77.789269, 38.675032 ], [ -77.788765, 38.675507 ], [ -77.788692, 38.675576 ], [ -77.788181, 38.676104 ], [ -77.787807, 38.676549 ], [ -77.787668, 38.676743 ], [ -77.787501, 38.677031 ], [ -77.78738, 38.677265 ], [ -77.78733, 38.677383 ], [ -77.787232, 38.677659 ], [ -77.787165, 38.677911 ], [ -77.787115, 38.678177 ], [ -77.787085, 38.678445 ], [ -77.787079, 38.678552 ], [ -77.787095, 38.67913 ], [ -77.787153, 38.679798 ], [ -77.787259, 38.680924 ], [ -77.787331, 38.681886 ], [ -77.787363, 38.682419 ], [ -77.787413, 38.683635 ], [ -77.787401, 38.684203 ], [ -77.787392, 38.684611 ], [ -77.78735, 38.685019 ], [ -77.787315, 38.685264 ], [ -77.787231, 38.685728 ], [ -77.787136, 38.686251 ], [ -77.787114, 38.686332 ], [ -77.78692, 38.686986 ], [ -77.786696, 38.687619 ], [ -77.786501, 38.688074 ], [ -77.786277, 38.68855 ], [ -77.786098, 38.688888 ], [ -77.785944, 38.689154 ], [ -77.785576, 38.689748 ], [ -77.784818, 38.690938 ], [ -77.784516, 38.691425 ], [ -77.784271, 38.691807 ], [ -77.783827, 38.692506 ], [ -77.783401, 38.6932 ], [ -77.783246, 38.693444 ], [ -77.782384, 38.694802 ], [ -77.782205, 38.695084 ], [ -77.781593, 38.696059 ], [ -77.781243, 38.69667 ], [ -77.78108, 38.696994 ], [ -77.780923, 38.697347 ], [ -77.780812, 38.697637 ], [ -77.780687, 38.698004 ], [ -77.780614, 38.698231 ], [ -77.780587, 38.698314 ], [ -77.780392, 38.699181 ], [ -77.780333, 38.699659 ], [ -77.780298, 38.700094 ], [ -77.780287, 38.700389 ], [ -77.780289, 38.700757 ], [ -77.780315, 38.701452 ], [ -77.780365, 38.702797 ], [ -77.780397, 38.703509 ], [ -77.780462, 38.705131 ], [ -77.780535, 38.706895 ], [ -77.780587, 38.708144 ], [ -77.780612, 38.708911 ], [ -77.780675, 38.710324 ], [ -77.780782, 38.713019 ], [ -77.780806, 38.713639 ], [ -77.780906, 38.716128 ], [ -77.780923, 38.716557 ], [ -77.780985, 38.71812 ], [ -77.781094, 38.720811 ], [ -77.781111, 38.721348 ], [ -77.78117, 38.722771 ], [ -77.781205, 38.723428 ], [ -77.781207, 38.723933 ], [ -77.781141, 38.724638 ], [ -77.781062, 38.725028 ], [ -77.780986, 38.725313 ], [ -77.780873, 38.725651 ], [ -77.780799, 38.725838 ], [ -77.780763, 38.72593 ], [ -77.780608, 38.726258 ], [ -77.780457, 38.726537 ], [ -77.78029, 38.726814 ], [ -77.780067, 38.727137 ], [ -77.779841, 38.727426 ], [ -77.779593, 38.727712 ], [ -77.779535, 38.727773 ], [ -77.779432, 38.727882 ], [ -77.779137, 38.728163 ], [ -77.778889, 38.728379 ], [ -77.778564, 38.728638 ], [ -77.777988, 38.729064 ], [ -77.777903, 38.729128 ], [ -77.777813, 38.729195 ], [ -77.777751, 38.72924 ], [ -77.777544, 38.729395 ], [ -77.776507, 38.73018 ], [ -77.77534, 38.731069 ], [ -77.775049, 38.73127 ], [ -77.774364, 38.73177 ], [ -77.774051, 38.732009 ], [ -77.773303, 38.732554 ], [ -77.772496, 38.733155 ], [ -77.772444, 38.733192 ], [ -77.771424, 38.733941 ], [ -77.770375, 38.73472 ], [ -77.769774, 38.735166 ], [ -77.766501, 38.737595 ], [ -77.766092, 38.7379 ], [ -77.766013, 38.737957 ], [ -77.764613, 38.738973 ], [ -77.763699, 38.739647 ], [ -77.760294, 38.742188 ], [ -77.759475, 38.742805 ], [ -77.758292, 38.743704 ], [ -77.757242, 38.744507 ], [ -77.756734, 38.744888 ], [ -77.75607, 38.745394 ], [ -77.755332, 38.74595 ], [ -77.753869, 38.747051 ], [ -77.753512, 38.747317 ], [ -77.752239, 38.748266 ], [ -77.751486, 38.748835 ], [ -77.749304, 38.750477 ], [ -77.747696, 38.751677 ], [ -77.747175, 38.752069 ], [ -77.746636, 38.752468 ], [ -77.746089, 38.752858 ], [ -77.745719, 38.753113 ], [ -77.745109, 38.753534 ], [ -77.744529, 38.753946 ], [ -77.744441, 38.754016 ], [ -77.743143, 38.755039 ], [ -77.742369, 38.755648 ], [ -77.741019, 38.756723 ], [ -77.740302, 38.757289 ], [ -77.74012, 38.757439 ], [ -77.739869, 38.757633 ], [ -77.739452, 38.757933 ], [ -77.738896, 38.758325 ], [ -77.738458, 38.758616 ], [ -77.737994, 38.758912 ], [ -77.737675, 38.759109 ], [ -77.736928, 38.759546 ], [ -77.736529, 38.759764 ], [ -77.73598, 38.760062 ], [ -77.735512, 38.760302 ], [ -77.734641, 38.760749 ], [ -77.731871, 38.762168 ], [ -77.730354, 38.762946 ], [ -77.726563, 38.764904 ], [ -77.726297, 38.765042 ], [ -77.725494, 38.765462 ], [ -77.724993, 38.765717 ], [ -77.724283, 38.76606 ], [ -77.724155, 38.766114 ], [ -77.723683, 38.766274 ], [ -77.723631, 38.766287 ], [ -77.723461, 38.76633 ], [ -77.723208, 38.766384 ], [ -77.722948, 38.766425 ], [ -77.722732, 38.766449 ], [ -77.722439, 38.766466 ], [ -77.722204, 38.76647 ], [ -77.721761, 38.76645 ], [ -77.721338, 38.766416 ], [ -77.720827, 38.766373 ], [ -77.71958, 38.766268 ], [ -77.718945, 38.766226 ], [ -77.71829, 38.766214 ], [ -77.717886, 38.766231 ], [ -77.717644, 38.766248 ], [ -77.717238, 38.766296 ], [ -77.716986, 38.766333 ], [ -77.716478, 38.766426 ], [ -77.715933, 38.766539 ], [ -77.71313, 38.767126 ], [ -77.71253, 38.76725 ], [ -77.711446, 38.767475 ], [ -77.711213, 38.767521 ], [ -77.709832, 38.76781 ], [ -77.709246, 38.767933 ], [ -77.708584, 38.768078 ], [ -77.708134, 38.768177 ], [ -77.707984, 38.768211 ], [ -77.707651, 38.768287 ], [ -77.707208, 38.768389 ], [ -77.707037, 38.768429 ], [ -77.706966, 38.768445 ], [ -77.706604, 38.768529 ], [ -77.705724, 38.768733 ], [ -77.704884, 38.768928 ], [ -77.704008, 38.769125 ], [ -77.703413, 38.769266 ], [ -77.703044, 38.769359 ], [ -77.702667, 38.769454 ], [ -77.702289, 38.769565 ], [ -77.701922, 38.769687 ], [ -77.701705, 38.769766 ], [ -77.701294, 38.769925 ], [ -77.700381, 38.770277 ], [ -77.698624, 38.770957 ], [ -77.69792, 38.771222 ], [ -77.696779, 38.771656 ], [ -77.696286, 38.771839 ], [ -77.694688, 38.772451 ], [ -77.693388, 38.772942 ], [ -77.69338, 38.772945 ], [ -77.69299, 38.773092 ], [ -77.691828, 38.773541 ], [ -77.689985, 38.774273 ], [ -77.689184, 38.774593 ], [ -77.687947, 38.775099 ], [ -77.68652, 38.775696 ], [ -77.686093, 38.775875 ], [ -77.685013, 38.776323 ], [ -77.684548, 38.776508 ], [ -77.683617, 38.77688 ], [ -77.682281, 38.77742 ], [ -77.681906, 38.77757 ], [ -77.680152, 38.778273 ], [ -77.680071, 38.778309 ], [ -77.679964, 38.778348 ], [ -77.67944, 38.778559 ], [ -77.679135, 38.778682 ], [ -77.679008, 38.778733 ], [ -77.678765, 38.778831 ], [ -77.678322, 38.779011 ], [ -77.677302, 38.779417 ], [ -77.677036, 38.779514 ], [ -77.676871, 38.779569 ], [ -77.676375, 38.779711 ], [ -77.675903, 38.779834 ], [ -77.675739, 38.779874 ], [ -77.675282, 38.779966 ], [ -77.675165, 38.77999 ], [ -77.673681, 38.780291 ], [ -77.67245, 38.780538 ], [ -77.671784, 38.780666 ], [ -77.671623, 38.780699 ], [ -77.671392, 38.780752 ], [ -77.670977, 38.780857 ], [ -77.67067, 38.780949 ], [ -77.669909, 38.781181 ], [ -77.669755, 38.781229 ], [ -77.668691, 38.781557 ], [ -77.668105, 38.781729 ], [ -77.66717, 38.781984 ], [ -77.665556, 38.7824 ], [ -77.665397, 38.782443 ], [ -77.66509, 38.782528 ], [ -77.663117, 38.783041 ], [ -77.662729, 38.783142 ], [ -77.658982, 38.784122 ], [ -77.658234, 38.784318 ], [ -77.657487, 38.784515 ], [ -77.656903, 38.784668 ], [ -77.656444, 38.784785 ], [ -77.655772, 38.784954 ], [ -77.655488, 38.785028 ], [ -77.654149, 38.78538 ], [ -77.653073, 38.785665 ], [ -77.652817, 38.785732 ], [ -77.652723, 38.785757 ], [ -77.652335, 38.78586 ], [ -77.650432, 38.786358 ], [ -77.650292, 38.786394 ], [ -77.648546, 38.786845 ], [ -77.648132, 38.786953 ], [ -77.6471, 38.787217 ], [ -77.646912, 38.787266 ], [ -77.646792, 38.787296 ], [ -77.646475, 38.787378 ], [ -77.643862, 38.788066 ], [ -77.643514, 38.788151 ], [ -77.642956, 38.788288 ], [ -77.641845, 38.788545 ], [ -77.641256, 38.788678 ], [ -77.640668, 38.788812 ], [ -77.637878, 38.789456 ], [ -77.637724, 38.789491 ], [ -77.635026, 38.790112 ], [ -77.633026, 38.790572 ], [ -77.631672, 38.790883 ], [ -77.630391, 38.791179 ], [ -77.630168, 38.791231 ], [ -77.629412, 38.791414 ], [ -77.629006, 38.791523 ], [ -77.628982, 38.791529 ], [ -77.628275, 38.791722 ], [ -77.626219, 38.792284 ], [ -77.625465, 38.792483 ], [ -77.624741, 38.792675 ], [ -77.624567, 38.792721 ], [ -77.624468, 38.792748 ], [ -77.624067, 38.792856 ], [ -77.622821, 38.793191 ], [ -77.622323, 38.793326 ], [ -77.622182, 38.793359 ], [ -77.62157, 38.793529 ], [ -77.621412, 38.793572 ], [ -77.620477, 38.793825 ], [ -77.620443, 38.793835 ], [ -77.619193, 38.794171 ], [ -77.619018, 38.794213 ], [ -77.617763, 38.794556 ], [ -77.617092, 38.79473 ], [ -77.616747, 38.794832 ], [ -77.614017, 38.7956 ], [ -77.613309, 38.7958 ], [ -77.613097, 38.795859 ], [ -77.611965, 38.796178 ], [ -77.611011, 38.796432 ], [ -77.609519, 38.79683 ], [ -77.609066, 38.796955 ], [ -77.60887, 38.79701 ], [ -77.608124, 38.797223 ], [ -77.607861, 38.79729 ], [ -77.60659, 38.797608 ], [ -77.604759, 38.798106 ], [ -77.603341, 38.798433 ], [ -77.602615, 38.798623 ], [ -77.60217, 38.798681 ], [ -77.60178, 38.798726 ], [ -77.60159, 38.798739 ], [ -77.601338, 38.79876 ], [ -77.601043, 38.798748 ], [ -77.600761, 38.798726 ], [ -77.600475, 38.798685 ], [ -77.600088, 38.798626 ], [ -77.598701, 38.798329 ], [ -77.598447, 38.798288 ], [ -77.598168, 38.798263 ], [ -77.597945, 38.798266 ], [ -77.597733, 38.798267 ], [ -77.597515, 38.798295 ], [ -77.597295, 38.798329 ], [ -77.59709, 38.79838 ], [ -77.596838, 38.798472 ], [ -77.596056, 38.79873 ], [ -77.595792, 38.798802 ], [ -77.595557, 38.798839 ], [ -77.595321, 38.798872 ], [ -77.595123, 38.798893 ], [ -77.594903, 38.798906 ], [ -77.594606, 38.798902 ], [ -77.592349, 38.798571 ], [ -77.589853, 38.798246 ], [ -77.587564, 38.797961 ], [ -77.584659, 38.797708 ], [ -77.583518, 38.797592 ], [ -77.582596, 38.797507 ], [ -77.581727, 38.797465 ], [ -77.580645, 38.797422 ], [ -77.579853, 38.797408 ], [ -77.579381, 38.797391 ], [ -77.579328, 38.797391 ], [ -77.578346, 38.797391 ], [ -77.576989, 38.797404 ], [ -77.576007, 38.797446 ], [ -77.575373, 38.797504 ], [ -77.571144, 38.797797 ], [ -77.569287, 38.79792 ], [ -77.56555, 38.798187 ], [ -77.561659, 38.798447 ], [ -77.555891, 38.7988 ], [ -77.553755, 38.798951 ], [ -77.550887, 38.799152 ], [ -77.550295, 38.799193 ], [ -77.548407, 38.799331 ], [ -77.54595, 38.799494 ], [ -77.541063, 38.799812 ], [ -77.539341, 38.799946 ], [ -77.536546, 38.800151 ], [ -77.532281, 38.800448 ], [ -77.529135, 38.800667 ], [ -77.525861, 38.800895 ], [ -77.523173, 38.801079 ], [ -77.520134, 38.801324 ], [ -77.519426, 38.801374 ], [ -77.518588, 38.801436 ], [ -77.514662, 38.801698 ], [ -77.51275, 38.801833 ], [ -77.512257, 38.801883 ], [ -77.51176, 38.801949 ], [ -77.511242, 38.802033 ], [ -77.510728, 38.802133 ], [ -77.510237, 38.802245 ], [ -77.509757, 38.802371 ], [ -77.509283, 38.802511 ], [ -77.508762, 38.802686 ], [ -77.508249, 38.802874 ], [ -77.503238, 38.804849 ], [ -77.501867, 38.805383 ], [ -77.49854, 38.806696 ], [ -77.492854, 38.808929 ], [ -77.492586, 38.809039 ], [ -77.491408, 38.809499 ], [ -77.490728, 38.809768 ], [ -77.490387, 38.809903 ], [ -77.489846, 38.810125 ], [ -77.48976, 38.810159 ], [ -77.489588, 38.810228 ], [ -77.488128, 38.810814 ], [ -77.487975, 38.810876 ], [ -77.487938, 38.810891 ], [ -77.487614, 38.811027 ], [ -77.486889, 38.811312 ], [ -77.485515, 38.811841 ], [ -77.481021, 38.813606 ], [ -77.480031, 38.813987 ], [ -77.479528, 38.81418 ], [ -77.478278, 38.814671 ], [ -77.477784, 38.814859 ], [ -77.476696, 38.815283 ], [ -77.476308, 38.815444 ], [ -77.470849, 38.817587 ], [ -77.469997, 38.817934 ], [ -77.469107, 38.818314 ], [ -77.468263, 38.818692 ], [ -77.467788, 38.818912 ], [ -77.466824, 38.819384 ], [ -77.466481, 38.819559 ], [ -77.465978, 38.819814 ], [ -77.465888, 38.819862 ], [ -77.465082, 38.820299 ], [ -77.464689, 38.820516 ], [ -77.463916, 38.820976 ], [ -77.463568, 38.821184 ], [ -77.462817, 38.82165 ], [ -77.462169, 38.822067 ], [ -77.461524, 38.822499 ], [ -77.460742, 38.823046 ], [ -77.459971, 38.823615 ], [ -77.459453, 38.824009 ], [ -77.458829, 38.824505 ], [ -77.458041, 38.825157 ], [ -77.457989, 38.825199 ], [ -77.457719, 38.825436 ], [ -77.457456, 38.825667 ], [ -77.457174, 38.825914 ], [ -77.456485, 38.82655 ], [ -77.455925, 38.827089 ], [ -77.455609, 38.827408 ], [ -77.455354, 38.827664 ], [ -77.455286, 38.827736 ], [ -77.454763, 38.828288 ], [ -77.453687, 38.829492 ], [ -77.45117, 38.83231 ], [ -77.450091, 38.833546 ], [ -77.449603, 38.834072 ], [ -77.4484, 38.835411 ], [ -77.448317, 38.835496 ], [ -77.447073, 38.836883 ], [ -77.446568, 38.837456 ], [ -77.444983, 38.839239 ], [ -77.444962, 38.839261 ], [ -77.44448, 38.839771 ], [ -77.443925, 38.840374 ], [ -77.443121, 38.841151 ], [ -77.442523, 38.841683 ], [ -77.442048, 38.842083 ], [ -77.441563, 38.842472 ], [ -77.44121, 38.842729 ], [ -77.440835, 38.842989 ], [ -77.440353, 38.843301 ], [ -77.439357, 38.843895 ], [ -77.438808, 38.844189 ], [ -77.438412, 38.844388 ], [ -77.438154, 38.844513 ], [ -77.437585, 38.844773 ], [ -77.43695, 38.845042 ], [ -77.436125, 38.845358 ], [ -77.435386, 38.845611 ], [ -77.434841, 38.845778 ], [ -77.434461, 38.845886 ], [ -77.434065, 38.845989 ], [ -77.433588, 38.846102 ], [ -77.432595, 38.846311 ], [ -77.431976, 38.846424 ], [ -77.431894, 38.846439 ], [ -77.43166, 38.846482 ], [ -77.43013, 38.84677 ], [ -77.428638, 38.847052 ], [ -77.427672, 38.847201 ], [ -77.426895, 38.847336 ], [ -77.426613, 38.847387 ], [ -77.423954, 38.847868 ], [ -77.42318, 38.84802 ], [ -77.422578, 38.848129 ], [ -77.421734, 38.848284 ], [ -77.419777, 38.84865 ], [ -77.418032, 38.848977 ], [ -77.416532, 38.849246 ], [ -77.415198, 38.849482 ], [ -77.414151, 38.849672 ], [ -77.413692, 38.849756 ], [ -77.413004, 38.849886 ], [ -77.41025, 38.850388 ], [ -77.408348, 38.850725 ], [ -77.406003, 38.851167 ], [ -77.404553, 38.851419 ], [ -77.403103, 38.851676 ], [ -77.402433, 38.851803 ], [ -77.401513, 38.851954 ], [ -77.399882, 38.852249 ], [ -77.399048, 38.852319 ], [ -77.398718, 38.852375 ], [ -77.397996, 38.852492 ], [ -77.397318, 38.852624 ], [ -77.396752, 38.852714 ], [ -77.396348, 38.852749 ], [ -77.395658, 38.852767 ], [ -77.395009, 38.8528 ], [ -77.394695, 38.852837 ], [ -77.39433, 38.852891 ], [ -77.393802, 38.852984 ], [ -77.393126, 38.853114 ], [ -77.392725, 38.85318 ], [ -77.392095, 38.853297 ], [ -77.391904, 38.853339 ], [ -77.391134, 38.853478 ], [ -77.389836, 38.853723 ], [ -77.389215, 38.853845 ], [ -77.38892, 38.853895 ], [ -77.388716, 38.853941 ], [ -77.388024, 38.854062 ], [ -77.387165, 38.854196 ], [ -77.386771, 38.854162 ], [ -77.386529, 38.854111 ], [ -77.386343, 38.854055 ], [ -77.386187, 38.853987 ], [ -77.386127, 38.853954 ], [ -77.386079, 38.85392 ], [ -77.385986, 38.853839 ], [ -77.385938, 38.853785 ], [ -77.385904, 38.853738 ], [ -77.385849, 38.853638 ], [ -77.385829, 38.853585 ], [ -77.385812, 38.853521 ], [ -77.3858, 38.853402 ], [ -77.385805, 38.853336 ], [ -77.385817, 38.853271 ], [ -77.38586, 38.853155 ], [ -77.385888, 38.853105 ], [ -77.385929, 38.853047 ], [ -77.38601, 38.852959 ], [ -77.386068, 38.85291 ], [ -77.386119, 38.852873 ], [ -77.386233, 38.85281 ], [ -77.386292, 38.852784 ], [ -77.386367, 38.852757 ], [ -77.386444, 38.852736 ], [ -77.386551, 38.852715 ], [ -77.386695, 38.852705 ], [ -77.38684, 38.852711 ], [ -77.386899, 38.85272 ], [ -77.386985, 38.852739 ], [ -77.387131, 38.852784 ], [ -77.387234, 38.852827 ], [ -77.387327, 38.852872 ], [ -77.387501, 38.852977 ], [ -77.387596, 38.853046 ], [ -77.387689, 38.853125 ], [ -77.387869, 38.853301 ], [ -77.388005, 38.8535 ], [ -77.388211, 38.853861 ], [ -77.388248, 38.853958 ], [ -77.38834, 38.854202 ], [ -77.388434, 38.854509 ], [ -77.388512, 38.85483 ], [ -77.388556, 38.855045 ], [ -77.388563, 38.855077 ], [ -77.388615, 38.855398 ], [ -77.38864, 38.855726 ], [ -77.388657, 38.85606 ], [ -77.388632, 38.856494 ], [ -77.388606, 38.856728 ], [ -77.388546, 38.857062 ], [ -77.388494, 38.857283 ], [ -77.388383, 38.85759 ], [ -77.388245, 38.857898 ], [ -77.387962, 38.858392 ], [ -77.387722, 38.858713 ], [ -77.387587, 38.858842 ], [ -77.387448, 38.858992 ], [ -77.38738, 38.859049 ], [ -77.387049, 38.859315 ], [ -77.387001, 38.859355 ], [ -77.386572, 38.859616 ], [ -77.386057, 38.859876 ], [ -77.385696, 38.860037 ], [ -77.385104, 38.860297 ], [ -77.384246, 38.860678 ], [ -77.383311, 38.861091 ], [ -77.382484, 38.861549 ], [ -77.381927, 38.861964 ], [ -77.381649, 38.862271 ], [ -77.381472, 38.862656 ], [ -77.38114, 38.86254 ], [ -77.380676, 38.862336 ], [ -77.380373, 38.862167 ], [ -77.380144, 38.862016 ], [ -77.379932, 38.861857 ], [ -77.379724, 38.861669 ], [ -77.379541, 38.861495 ], [ -77.379299, 38.861256 ], [ -77.379174, 38.86114 ], [ -77.378963, 38.86097 ], [ -77.378779, 38.860822 ], [ -77.378622, 38.860715 ], [ -77.378375, 38.860584 ], [ -77.37825, 38.860526 ], [ -77.377901, 38.860354 ], [ -77.377674, 38.860258 ], [ -77.377503, 38.860194 ], [ -77.376982, 38.860031 ], [ -77.376724, 38.859968 ], [ -77.376465, 38.859908 ], [ -77.376139, 38.859843 ], [ -77.375957, 38.859809 ], [ -77.375449, 38.859704 ], [ -77.37477, 38.859591 ], [ -77.373992, 38.859482 ], [ -77.373385, 38.859411 ], [ -77.373319, 38.859405 ], [ -77.371684, 38.859251 ], [ -77.371331, 38.859226 ], [ -77.37112, 38.859211 ], [ -77.371099, 38.85942 ], [ -77.371098, 38.859619 ], [ -77.371033, 38.860102 ], [ -77.370993, 38.860407 ], [ -77.370953, 38.86073 ], [ -77.370894, 38.86095 ], [ -77.370816, 38.861165 ], [ -77.370757, 38.861296 ], [ -77.370665, 38.861443 ], [ -77.370575, 38.861587 ], [ -77.370384, 38.861875 ], [ -77.370116, 38.862301 ], [ -77.369869, 38.862675 ], [ -77.369695, 38.862937 ], [ -77.369553, 38.863149 ], [ -77.369282, 38.863562 ], [ -77.369075, 38.863878 ], [ -77.369003, 38.863978 ], [ -77.368943, 38.864053 ], [ -77.368872, 38.864143 ], [ -77.368754, 38.864281 ], [ -77.368648, 38.864383 ], [ -77.368548, 38.86448 ], [ -77.368413, 38.864611 ], [ -77.368244, 38.864751 ], [ -77.368139, 38.86483 ], [ -77.368096, 38.864859 ], [ -77.367962, 38.864949 ], [ -77.367753, 38.865087 ], [ -77.36752, 38.865221 ], [ -77.36716, 38.865425 ], [ -77.366916, 38.865565 ], [ -77.366749, 38.865664 ], [ -77.366693, 38.865696 ], [ -77.366603, 38.865757 ], [ -77.36621, 38.865941 ], [ -77.365964, 38.866096 ], [ -77.365677, 38.866275 ], [ -77.365412, 38.86648 ], [ -77.365205, 38.866666 ], [ -77.365092, 38.866802 ], [ -77.364926, 38.867027 ], [ -77.364819, 38.867215 ], [ -77.364795, 38.867271 ], [ -77.364687, 38.867526 ], [ -77.364631, 38.867731 ], [ -77.364602, 38.867885 ], [ -77.364585, 38.868103 ], [ -77.364599, 38.86833 ], [ -77.364602, 38.868416 ], [ -77.364653, 38.868646 ], [ -77.364749, 38.868903 ], [ -77.364915, 38.869232 ], [ -77.365031, 38.869489 ], [ -77.36519, 38.869811 ], [ -77.365353, 38.870145 ], [ -77.365541, 38.870577 ], [ -77.365608, 38.870714 ], [ -77.36564, 38.87078 ], [ -77.365767, 38.871048 ], [ -77.365858, 38.871232 ], [ -77.365914, 38.871335 ], [ -77.366032, 38.871546 ], [ -77.366196, 38.871805 ], [ -77.366355, 38.872046 ], [ -77.366507, 38.872259 ], [ -77.366678, 38.872501 ], [ -77.366856, 38.872754 ], [ -77.366963, 38.872925 ], [ -77.367022, 38.873039 ], [ -77.367081, 38.873163 ], [ -77.367145, 38.873344 ], [ -77.367182, 38.87346 ], [ -77.367204, 38.873534 ], [ -77.367233, 38.873695 ], [ -77.36726, 38.873889 ], [ -77.367273, 38.874003 ], [ -77.367165, 38.874012 ], [ -77.366994, 38.874012 ], [ -77.366779, 38.873999 ], [ -77.366666, 38.873986 ], [ -77.366501, 38.873968 ], [ -77.366313, 38.873934 ], [ -77.366155, 38.873897 ], [ -77.365932, 38.873832 ], [ -77.36562, 38.873728 ], [ -77.365375, 38.873647 ], [ -77.36552, 38.873752 ], [ -77.365645, 38.873824 ], [ -77.365759, 38.873875 ] ] } } diff --git a/packages/turf-point-on-line/test/in/route2.geojson b/packages/turf-point-on-line/test/in/route2.geojson new file mode 100644 index 0000000000..b1f962e8e6 --- /dev/null +++ b/packages/turf-point-on-line/test/in/route2.geojson @@ -0,0 +1,2 @@ + +{ "type": "Feature", "properties": { "name": null, "cmt": null, "desc": null, "src": null, "link1_href": null, "link1_text": null, "link1_type": null, "link2_href": null, "link2_text": null, "link2_type": null, "number": null, "type": null }, "geometry": { "type": "LineString", "coordinates": [ [ -113.928988, 50.814121 ], [ -113.928993, 50.813067 ], [ -113.928994, 50.811043 ], [ -113.928995, 50.807418 ], [ -113.929029, 50.804989 ], [ -113.951995, 50.804953 ], [ -113.956813, 50.804931 ], [ -113.957629, 50.804917 ], [ -113.958021, 50.804876 ], [ -113.958575, 50.804779 ], [ -113.959011, 50.804687 ], [ -113.959367, 50.804572 ], [ -113.959858, 50.804414 ], [ -113.960433, 50.804102 ], [ -113.960932, 50.803769 ], [ -113.961563, 50.803306 ], [ -113.961754, 50.803166 ], [ -113.962486, 50.802753 ], [ -113.9641, 50.801549 ], [ -113.966048, 50.800154 ], [ -113.967597, 50.799082 ], [ -113.968657, 50.798289 ], [ -113.969382, 50.79779 ], [ -113.969303, 50.797653 ], [ -113.968833, 50.797177 ], [ -113.968399, 50.796832 ], [ -113.96652, 50.796071 ], [ -113.965325, 50.795579 ], [ -113.964608, 50.795229 ], [ -113.963373, 50.794321 ], [ -113.962094, 50.793355 ], [ -113.956995, 50.789049 ], [ -113.951125, 50.784098 ], [ -113.948573, 50.78194 ], [ -113.941011, 50.775626 ], [ -113.933724, 50.769538 ], [ -113.914584, 50.753577 ], [ -113.906521, 50.746803 ], [ -113.896774, 50.738614 ], [ -113.886275, 50.729779 ], [ -113.88594, 50.729474 ], [ -113.885307, 50.728898 ], [ -113.884903, 50.728477 ], [ -113.884523, 50.728028 ], [ -113.884201, 50.727599 ], [ -113.883986, 50.727298 ], [ -113.883696, 50.726863 ], [ -113.883482, 50.72648 ], [ -113.883314, 50.726156 ], [ -113.883153, 50.725767 ], [ -113.883094, 50.725646 ], [ -113.883031, 50.725465 ], [ -113.882906, 50.725155 ], [ -113.882792, 50.724718 ], [ -113.882641, 50.7241 ], [ -113.882584, 50.723735 ], [ -113.88255, 50.723367 ], [ -113.882523, 50.72258 ], [ -113.882495, 50.717709 ], [ -113.882486, 50.713302 ], [ -113.882476, 50.712125 ], [ -113.882468, 50.702531 ], [ -113.882456, 50.699815 ], [ -113.882434, 50.698229 ], [ -113.882445, 50.693791 ], [ -113.882419, 50.692602 ], [ -113.882412, 50.692077 ], [ -113.882405, 50.691705 ], [ -113.882365, 50.691331 ], [ -113.882289, 50.690878 ], [ -113.882163, 50.690282 ], [ -113.882074, 50.689985 ], [ -113.881908, 50.689517 ], [ -113.881705, 50.689095 ], [ -113.881622, 50.688959 ], [ -113.881501, 50.688721 ], [ -113.881281, 50.688347 ], [ -113.88097, 50.687826 ], [ -113.880715, 50.687491 ], [ -113.880385, 50.687085 ], [ -113.878859, 50.685206 ], [ -113.877456, 50.68348 ], [ -113.875929, 50.68157 ], [ -113.873357, 50.67843 ], [ -113.871364, 50.675999 ], [ -113.869142, 50.673289 ], [ -113.868358, 50.672328 ], [ -113.868037, 50.671943 ], [ -113.867467, 50.671232 ], [ -113.866987, 50.670734 ], [ -113.866668, 50.670424 ], [ -113.866296, 50.670141 ], [ -113.865816, 50.669814 ], [ -113.865451, 50.6696 ], [ -113.8651, 50.669419 ], [ -113.864667, 50.669203 ], [ -113.864079, 50.668945 ], [ -113.863436, 50.668716 ], [ -113.862804, 50.66849 ], [ -113.861739, 50.668114 ], [ -113.853421, 50.665144 ], [ -113.842891, 50.661554 ], [ -113.842171, 50.661197 ], [ -113.841049, 50.660571 ], [ -113.840156, 50.659997 ], [ -113.839716, 50.65961 ], [ -113.839157, 50.659132 ], [ -113.838847, 50.658805 ], [ -113.838358, 50.658284 ], [ -113.837938, 50.657723 ], [ -113.837609, 50.657111 ], [ -113.837268, 50.656259 ], [ -113.83703, 50.655665 ], [ -113.836937, 50.654919 ], [ -113.836909, 50.654144 ], [ -113.836859, 50.650724 ], [ -113.836826, 50.647581 ], [ -113.836828, 50.646677 ], [ -113.836945, 50.631237 ], [ -113.836945, 50.630338 ], [ -113.83681, 50.620833 ], [ -113.836809, 50.615002 ], [ -113.836748, 50.614363 ], [ -113.836695, 50.613902 ], [ -113.836544, 50.613327 ], [ -113.836395, 50.612865 ], [ -113.836165, 50.612347 ], [ -113.835974, 50.611908 ], [ -113.835688, 50.611368 ], [ -113.834199, 50.609116 ], [ -113.831975, 50.605815 ], [ -113.830597, 50.603738 ], [ -113.830194, 50.603006 ], [ -113.829862, 50.60236 ], [ -113.829623, 50.601865 ], [ -113.829361, 50.601178 ], [ -113.829199, 50.600699 ], [ -113.829001, 50.600003 ], [ -113.828688, 50.598264 ], [ -113.828653, 50.597525 ], [ -113.828653, 50.596741 ], [ -113.828659, 50.589493 ], [ -113.828615, 50.584393 ], [ -113.82855, 50.57625 ], [ -113.82857, 50.572186 ], [ -113.82858, 50.57189 ], [ -113.828436, 50.567929 ], [ -113.828262, 50.565198 ], [ -113.82828, 50.550181 ], [ -113.82829, 50.541809 ], [ -113.828291, 50.541417 ], [ -113.828359, 50.484565 ], [ -113.828388, 50.473188 ], [ -113.82839, 50.426319 ], [ -113.828391, 50.410937 ], [ -113.828495, 50.409031 ], [ -113.828495, 50.408255 ], [ -113.828326, 50.404708 ], [ -113.827868, 50.402523 ], [ -113.827189, 50.400367 ], [ -113.82573, 50.397464 ], [ -113.824909, 50.396393 ], [ -113.823811, 50.394869 ], [ -113.82128, 50.391895 ], [ -113.801481, 50.376398 ], [ -113.797907, 50.371872 ], [ -113.796297, 50.369858 ], [ -113.795351, 50.368139 ], [ -113.790726, 50.359724 ], [ -113.789384, 50.358382 ], [ -113.78784, 50.357509 ], [ -113.782077, 50.355219 ], [ -113.781868, 50.355163 ], [ -113.780696, 50.354643 ], [ -113.779832, 50.354058 ], [ -113.779376, 50.353709 ], [ -113.779034, 50.353447 ], [ -113.777779, 50.352208 ], [ -113.776476, 50.350971 ], [ -113.775669, 50.350156 ], [ -113.774903, 50.349363 ], [ -113.774528, 50.349008 ], [ -113.774139, 50.348641 ], [ -113.773752, 50.348267 ], [ -113.773367, 50.347894 ], [ -113.772991, 50.347521 ], [ -113.77261, 50.347144 ], [ -113.77224, 50.346771 ], [ -113.771866, 50.346393 ], [ -113.771491, 50.346021 ], [ -113.771101, 50.345634 ], [ -113.770724, 50.345257 ], [ -113.770334, 50.344868 ], [ -113.769256, 50.343852 ], [ -113.767134, 50.341669 ], [ -113.764647, 50.339182 ], [ -113.764438, 50.338973 ], [ -113.761597, 50.336333 ], [ -113.758593, 50.33458 ], [ -113.755546, 50.333429 ], [ -113.751856, 50.33269 ], [ -113.745118, 50.331594 ], [ -113.742286, 50.330717 ], [ -113.739453, 50.329347 ], [ -113.731213, 50.32247 ], [ -113.723532, 50.315976 ], [ -113.722158, 50.313619 ], [ -113.718768, 50.300682 ], [ -113.714948, 50.295611 ], [ -113.70452, 50.282916 ], [ -113.688985, 50.273536 ], [ -113.671647, 50.26314 ], [ -113.665976, 50.259608 ], [ -113.661862, 50.256884 ], [ -113.66006, 50.254964 ], [ -113.659379, 50.253877 ], [ -113.658858, 50.252741 ], [ -113.658676, 50.251733 ], [ -113.656669, 50.241627 ], [ -113.656154, 50.237592 ], [ -113.655983, 50.234435 ], [ -113.656026, 50.226446 ], [ -113.656001, 50.222848 ], [ -113.655983, 50.212634 ], [ -113.655983, 50.198956 ], [ -113.656026, 50.187774 ], [ -113.655725, 50.180189 ], [ -113.654781, 50.177056 ], [ -113.650834, 50.16488 ], [ -113.648988, 50.159931 ], [ -113.648171, 50.158673 ], [ -113.647041, 50.157055 ], [ -113.642675, 50.151639 ], [ -113.639814, 50.147556 ], [ -113.634175, 50.135735 ], [ -113.632251, 50.131741 ], [ -113.620363, 50.106626 ], [ -113.619376, 50.104527 ], [ -113.61384, 50.092744 ], [ -113.608561, 50.081675 ], [ -113.606581, 50.077494 ], [ -113.603669, 50.071347 ], [ -113.596202, 50.055589 ], [ -113.589593, 50.041645 ], [ -113.585973, 50.034075 ], [ -113.583284, 50.028469 ], [ -113.578879, 50.019214 ], [ -113.577072, 50.015416 ], [ -113.576933, 50.015123 ], [ -113.575461, 50.01195 ], [ -113.56968, 49.999485 ], [ -113.565276, 49.990109 ], [ -113.562856, 49.984972 ], [ -113.558388, 49.975529 ], [ -113.556763, 49.972084 ], [ -113.551497, 49.960982 ], [ -113.550282, 49.958226 ], [ -113.543115, 49.943177 ], [ -113.537579, 49.93141 ], [ -113.531657, 49.91895 ], [ -113.528868, 49.913112 ], [ -113.52852, 49.912237 ], [ -113.528209, 49.911247 ], [ -113.528013, 49.910313 ], [ -113.527878, 49.909552 ], [ -113.527877, 49.908805 ], [ -113.528009, 49.904496 ], [ -113.527999, 49.902765 ], [ -113.527923, 49.890232 ], [ -113.527923, 49.878148 ], [ -113.527237, 49.875493 ], [ -113.526537, 49.873052 ], [ -113.52449, 49.865701 ], [ -113.524447, 49.856267 ], [ -113.52449, 49.841269 ], [ -113.524447, 49.826764 ], [ -113.52437, 49.815239 ], [ -113.524361, 49.813862 ], [ -113.524357, 49.801088 ], [ -113.524347, 49.798401 ], [ -113.524359, 49.795748 ], [ -113.524362, 49.795059 ], [ -113.524404, 49.785441 ], [ -113.524345, 49.778892 ], [ -113.524361, 49.771945 ], [ -113.523632, 49.77031 ], [ -113.522087, 49.769007 ], [ -113.520199, 49.768287 ], [ -113.514319, 49.76643 ], [ -113.510629, 49.764933 ], [ -113.50771, 49.763048 ], [ -113.494964, 49.752901 ], [ -113.479476, 49.742059 ], [ -113.460012, 49.728293 ], [ -113.455597, 49.725235 ], [ -113.454572, 49.72442 ], [ -113.45366, 49.723598 ], [ -113.452976, 49.722915 ], [ -113.45129, 49.720944 ], [ -113.450256, 49.719782 ], [ -113.447746, 49.716986 ], [ -113.447289, 49.716417 ], [ -113.443365, 49.71203 ], [ -113.443141, 49.711789 ], [ -113.442819, 49.711601 ], [ -113.442606, 49.711479 ], [ -113.44236, 49.711374 ], [ -113.442103, 49.711279 ], [ -113.441837, 49.711197 ], [ -113.441458, 49.711124 ], [ -113.441117, 49.711086 ], [ -113.440779, 49.711071 ], [ -113.440369, 49.71109 ], [ -113.439978, 49.71114 ], [ -113.439697, 49.711196 ], [ -113.439397, 49.711273 ], [ -113.439102, 49.71139 ], [ -113.438862, 49.711498 ], [ -113.438591, 49.711635 ], [ -113.438391, 49.711766 ], [ -113.438075, 49.712061 ], [ -113.437745, 49.712489 ], [ -113.43745, 49.712915 ], [ -113.43721, 49.713212 ], [ -113.436932, 49.713495 ], [ -113.436629, 49.713751 ], [ -113.436287, 49.713988 ], [ -113.435908, 49.714204 ], [ -113.435538, 49.714393 ], [ -113.431814, 49.715951 ], [ -113.423934, 49.718913 ], [ -113.423148, 49.719208 ], [ -113.419515, 49.720574 ], [ -113.418553, 49.720884 ], [ -113.417353, 49.721191 ], [ -113.416622, 49.721378 ], [ -113.415189, 49.721933 ], [ -113.414887, 49.722092 ], [ -113.414553, 49.722328 ], [ -113.414204, 49.722586 ], [ -113.413109, 49.723458 ], [ -113.412313, 49.724209 ], [ -113.412068, 49.724385 ], [ -113.411871, 49.724508 ], [ -113.41169, 49.724585 ], [ -113.411456, 49.724665 ], [ -113.411213, 49.724721 ], [ -113.410939, 49.724758 ], [ -113.410649, 49.724769 ], [ -113.408706, 49.724761 ], [ -113.405913, 49.724764 ], [ -113.403119, 49.724754 ], [ -113.400316, 49.724758 ], [ -113.397541, 49.724759 ], [ -113.396042, 49.724769 ], [ -113.395455, 49.724758 ], [ -113.395172, 49.724734 ], [ -113.394938, 49.724709 ], [ -113.394729, 49.724678 ], [ -113.394467, 49.724619 ], [ -113.394209, 49.724544 ], [ -113.393974, 49.724469 ], [ -113.393696, 49.724366 ], [ -113.393468, 49.724249 ], [ -113.393241, 49.72412 ], [ -113.393012, 49.723965 ], [ -113.39289, 49.723864 ], [ -113.391771, 49.722807 ], [ -113.391196, 49.722209 ], [ -113.390266, 49.721242 ], [ -113.389586, 49.720567 ], [ -113.388246, 49.71917 ], [ -113.387068, 49.717968 ], [ -113.386688, 49.717602 ], [ -113.386617, 49.717518 ], [ -113.386398, 49.717254 ], [ -113.386209, 49.717057 ], [ -113.385914, 49.716751 ], [ -113.385697, 49.71658 ], [ -113.385459, 49.716404 ], [ -113.385223, 49.716267 ], [ -113.384941, 49.716121 ], [ -113.384654, 49.716013 ], [ -113.384337, 49.715925 ], [ -113.383953, 49.715848 ], [ -113.383617, 49.715803 ], [ -113.383303, 49.715777 ], [ -113.382948, 49.715769 ], [ -113.382593, 49.71579 ], [ -113.382269, 49.715822 ], [ -113.381923, 49.715886 ], [ -113.381566, 49.715981 ], [ -113.381244, 49.716092 ], [ -113.380957, 49.716219 ], [ -113.380551, 49.716436 ], [ -113.380035, 49.71673 ], [ -113.379484, 49.717081 ], [ -113.378419, 49.71777 ], [ -113.377851, 49.718172 ], [ -113.376955, 49.718849 ], [ -113.376472, 49.719244 ], [ -113.375953, 49.719695 ], [ -113.375418, 49.720164 ], [ -113.374752, 49.720812 ], [ -113.373389, 49.722261 ], [ -113.372553, 49.723172 ], [ -113.371753, 49.724069 ], [ -113.371091, 49.724816 ], [ -113.370703, 49.725251 ], [ -113.370292, 49.725659 ], [ -113.36989, 49.726068 ], [ -113.369354, 49.726543 ], [ -113.368728, 49.727064 ], [ -113.368135, 49.727526 ], [ -113.367567, 49.727939 ], [ -113.366419, 49.728699 ], [ -113.366091, 49.728877 ], [ -113.365827, 49.729022 ], [ -113.365501, 49.729201 ], [ -113.362951, 49.730439 ], [ -113.358468, 49.732139 ], [ -113.3397, 49.739588 ], [ -113.335475, 49.741364 ], [ -113.327488, 49.744425 ], [ -113.318052, 49.748192 ], [ -113.313869, 49.749882 ], [ -113.31224, 49.750619 ], [ -113.310651, 49.75165 ], [ -113.307682, 49.753879 ], [ -113.302921, 49.757409 ], [ -113.297078, 49.761832 ], [ -113.293465, 49.764507 ], [ -113.274088, 49.778989 ], [ -113.273227, 49.779697 ], [ -113.272213, 49.780484 ], [ -113.270309, 49.781807 ], [ -113.269287, 49.782542 ], [ -113.268506, 49.783052 ], [ -113.267549, 49.783577 ], [ -113.266355, 49.784155 ], [ -113.264867, 49.784696 ], [ -113.26421, 49.78488 ], [ -113.263279, 49.785126 ], [ -113.262406, 49.785321 ], [ -113.261535, 49.785468 ], [ -113.260247, 49.785632 ], [ -113.2584, 49.785752 ], [ -113.253189, 49.785761 ], [ -113.2503, 49.785759 ], [ -113.246741, 49.785753 ], [ -113.243803, 49.785748 ], [ -113.24168, 49.785746 ], [ -113.239441, 49.785743 ], [ -113.235416, 49.785738 ], [ -113.232546, 49.785734 ], [ -113.230542, 49.78573 ], [ -113.207916, 49.785665 ], [ -113.188962, 49.785585 ], [ -113.187421, 49.785394 ], [ -113.185955, 49.785084 ], [ -113.182069, 49.784248 ], [ -113.178433, 49.783545 ], [ -113.175537, 49.783555 ], [ -113.172403, 49.784002 ], [ -113.169876, 49.784514 ], [ -113.165425, 49.785057 ], [ -113.162661, 49.785308 ], [ -113.158491, 49.785468 ], [ -113.154009, 49.785249 ], [ -113.150706, 49.7849 ], [ -113.138727, 49.78387 ], [ -113.137918, 49.7838 ], [ -113.132484, 49.783537 ], [ -113.127139, 49.783666 ], [ -113.121522, 49.784134 ], [ -113.116401, 49.784873 ], [ -113.108878, 49.786479 ], [ -113.10643, 49.787036 ], [ -113.100519, 49.78837 ], [ -113.099817, 49.78851 ], [ -113.099069, 49.788664 ], [ -113.098414, 49.788796 ], [ -113.097678, 49.788933 ], [ -113.096947, 49.789058 ], [ -113.096124, 49.78919 ], [ -113.095087, 49.789365 ], [ -113.093946, 49.789519 ], [ -113.092851, 49.789655 ], [ -113.091995, 49.789773 ], [ -113.091108, 49.78988 ], [ -113.090105, 49.789981 ], [ -113.089148, 49.790064 ], [ -113.088464, 49.790125 ], [ -113.087728, 49.790181 ], [ -113.08695, 49.790229 ], [ -113.08621, 49.790281 ], [ -113.085391, 49.790327 ], [ -113.084622, 49.790364 ], [ -113.083774, 49.790396 ], [ -113.082731, 49.790426 ], [ -113.081849, 49.790441 ], [ -113.080915, 49.790449 ], [ -113.080041, 49.790455 ], [ -113.079132, 49.790458 ], [ -113.078156, 49.790437 ], [ -113.077306, 49.790416 ], [ -113.076308, 49.790386 ], [ -113.075035, 49.79033 ], [ -113.073984, 49.790268 ], [ -113.073014, 49.790204 ], [ -113.072411, 49.790162 ], [ -113.071942, 49.790123 ], [ -113.069874, 49.789921 ], [ -113.06869, 49.789793 ], [ -113.067583, 49.789667 ], [ -113.066892, 49.789578 ], [ -113.066126, 49.789472 ], [ -113.064972, 49.789301 ], [ -113.04876, 49.786854 ], [ -113.048, 49.78674 ], [ -113.047462, 49.78667 ], [ -113.046933, 49.786601 ], [ -113.046365, 49.786543 ], [ -113.041994, 49.786136 ], [ -113.038418, 49.786047 ], [ -113.028911, 49.786062 ], [ -113.013026, 49.786042 ], [ -113.003977, 49.786038 ], [ -113.002681, 49.785962 ], [ -113.001644, 49.785864 ], [ -113.00048, 49.785713 ], [ -112.999756, 49.785611 ], [ -112.9987, 49.785408 ], [ -112.997454, 49.785132 ], [ -112.995534, 49.784581 ], [ -112.99125, 49.783007 ], [ -112.98295, 49.779625 ], [ -112.980557, 49.778522 ], [ -112.979018, 49.777554 ], [ -112.976341, 49.775651 ], [ -112.973797, 49.773044 ], [ -112.965769, 49.764644 ], [ -112.960895, 49.75933 ], [ -112.960092, 49.758465 ], [ -112.959726, 49.75808 ], [ -112.959447, 49.757828 ], [ -112.959069, 49.757507 ], [ -112.958709, 49.757166 ], [ -112.958281, 49.756793 ], [ -112.95762, 49.756294 ], [ -112.956931, 49.755799 ], [ -112.956159, 49.755282 ], [ -112.955682, 49.754998 ], [ -112.955151, 49.754703 ], [ -112.952858, 49.753509 ], [ -112.949354, 49.752075 ], [ -112.94544, 49.749962 ], [ -112.938188, 49.743931 ], [ -112.931304, 49.738228 ], [ -112.926731, 49.73422 ], [ -112.925384, 49.732989 ], [ -112.924479, 49.731925 ], [ -112.923468, 49.730575 ], [ -112.922298, 49.729055 ], [ -112.921036, 49.7277 ], [ -112.918917, 49.725859 ], [ -112.918155, 49.725203 ], [ -112.916619, 49.723846 ], [ -112.915487, 49.723018 ], [ -112.915163, 49.72283 ], [ -112.914796, 49.722631 ], [ -112.914432, 49.722464 ], [ -112.914031, 49.722286 ], [ -112.913669, 49.722145 ], [ -112.913246, 49.722004 ], [ -112.912907, 49.721891 ], [ -112.912605, 49.721797 ], [ -112.912248, 49.721697 ], [ -112.911203, 49.721427 ], [ -112.910101, 49.721135 ], [ -112.906937, 49.720299 ], [ -112.903215, 49.719342 ], [ -112.900165, 49.718558 ], [ -112.897476, 49.717852 ], [ -112.895936, 49.717459 ], [ -112.895282, 49.717281 ], [ -112.894243, 49.71701 ], [ -112.893141, 49.716728 ], [ -112.892426, 49.716529 ], [ -112.89165, 49.716338 ], [ -112.891198, 49.71622 ], [ -112.890633, 49.716083 ], [ -112.889897, 49.715934 ], [ -112.889174, 49.715796 ], [ -112.888532, 49.715689 ], [ -112.887541, 49.715558 ], [ -112.88613, 49.71536 ], [ -112.885501, 49.715271 ], [ -112.884833, 49.715175 ], [ -112.884308, 49.715088 ], [ -112.883816, 49.71495 ], [ -112.883277, 49.714832 ], [ -112.882696, 49.714691 ], [ -112.88207, 49.714542 ], [ -112.881531, 49.714385 ], [ -112.881025, 49.714222 ], [ -112.880522, 49.714039 ], [ -112.879986, 49.713834 ], [ -112.879529, 49.71365 ], [ -112.87903, 49.713431 ], [ -112.878502, 49.713173 ], [ -112.877609, 49.712649 ], [ -112.875259, 49.711284 ], [ -112.873228, 49.710141 ], [ -112.872763, 49.709872 ], [ -112.87224, 49.709593 ], [ -112.871848, 49.709384 ], [ -112.871432, 49.709188 ], [ -112.871061, 49.709022 ], [ -112.870716, 49.708873 ], [ -112.870311, 49.708723 ], [ -112.869954, 49.708592 ], [ -112.869443, 49.708436 ], [ -112.868983, 49.708311 ], [ -112.868462, 49.708183 ], [ -112.86782, 49.708055 ], [ -112.867368, 49.707982 ], [ -112.866939, 49.707916 ], [ -112.86545, 49.707716 ], [ -112.861762, 49.707191 ], [ -112.86017, 49.706981 ], [ -112.85809, 49.706677 ], [ -112.85777, 49.706622 ], [ -112.857467, 49.706553 ], [ -112.857076, 49.706452 ], [ -112.856698, 49.706338 ], [ -112.854212, 49.705528 ], [ -112.85381, 49.705386 ], [ -112.853466, 49.70523 ], [ -112.853137, 49.705049 ], [ -112.852839, 49.704853 ], [ -112.851852, 49.704221 ], [ -112.851516, 49.704031 ], [ -112.851207, 49.703872 ], [ -112.850867, 49.70373 ], [ -112.850433, 49.703565 ], [ -112.84992, 49.703388 ], [ -112.847903, 49.702792 ], [ -112.845724, 49.702167 ], [ -112.844077, 49.701628 ], [ -112.8432, 49.701369 ], [ -112.842649, 49.701218 ], [ -112.842201, 49.701114 ], [ -112.841728, 49.701025 ], [ -112.840794, 49.700856 ], [ -112.838125, 49.700426 ], [ -112.834609, 49.699873 ], [ -112.832064, 49.699465 ], [ -112.828981, 49.698964 ], [ -112.828552, 49.698904 ], [ -112.827826, 49.698813 ], [ -112.827096, 49.698728 ], [ -112.826436, 49.698665 ], [ -112.825387, 49.6986 ], [ -112.824515, 49.698555 ], [ -112.823879, 49.698527 ], [ -112.822719, 49.698465 ], [ -112.820041, 49.698338 ], [ -112.818601, 49.69826 ], [ -112.817659, 49.698214 ], [ -112.817451, 49.698208 ], [ -112.816791, 49.698174 ], [ -112.81589, 49.698112 ], [ -112.814861, 49.698029 ], [ -112.814224, 49.697963 ], [ -112.813253, 49.697849 ], [ -112.813147, 49.697836 ], [ -112.811952, 49.697672 ], [ -112.811842, 49.697656 ], [ -112.811502, 49.697615 ], [ -112.811227, 49.697581 ], [ -112.810773, 49.697561 ], [ -112.810352, 49.69755 ], [ -112.810002, 49.697537 ], [ -112.809403, 49.697532 ], [ -112.806575, 49.697613 ], [ -112.805437, 49.69765 ], [ -112.804522, 49.697685 ], [ -112.80393, 49.697707 ], [ -112.80238, 49.69777 ], [ -112.802025, 49.697788 ], [ -112.801625, 49.697812 ], [ -112.800653, 49.697888 ], [ -112.799723, 49.697967 ], [ -112.79867, 49.698052 ], [ -112.798046, 49.698084 ], [ -112.797631, 49.698102 ], [ -112.797077, 49.698117 ], [ -112.796376, 49.698135 ], [ -112.79554, 49.698135 ], [ -112.794414, 49.698135 ], [ -112.793544, 49.698131 ], [ -112.788404, 49.698111 ], [ -112.787759, 49.698108 ], [ -112.787623, 49.698109 ], [ -112.786794, 49.698114 ], [ -112.785574, 49.698121 ], [ -112.784545, 49.69817 ], [ -112.784282, 49.698206 ], [ -112.783264, 49.698348 ], [ -112.782977, 49.69837 ], [ -112.782674, 49.69837 ], [ -112.782377, 49.69836 ], [ -112.781976, 49.698324 ], [ -112.781573, 49.698283 ], [ -112.780374, 49.698174 ], [ -112.779856, 49.698084 ], [ -112.77969, 49.698039 ], [ -112.779534, 49.697963 ], [ -112.779416, 49.697879 ], [ -112.779336, 49.697779 ], [ -112.779293, 49.697678 ], [ -112.779266, 49.697588 ], [ -112.779277, 49.697432 ], [ -112.779309, 49.697054 ], [ -112.779557, 49.695985 ], [ -112.779657, 49.695544 ], [ -112.779736, 49.695225 ], [ -112.779761, 49.695101 ], [ -112.779809, 49.694922 ], [ -112.779952, 49.69441 ], [ -112.780019, 49.694125 ], [ -112.780058, 49.69387 ], [ -112.780085, 49.693604 ], [ -112.78011, 49.693292 ], [ -112.780165, 49.692652 ], [ -112.780169, 49.692372 ], [ -112.780165, 49.692154 ], [ -112.780164, 49.692098 ], [ -112.780144, 49.691862 ], [ -112.780143, 49.691843 ], [ -112.780133, 49.69176 ], [ -112.780037, 49.691006 ], [ -112.779822, 49.689657 ], [ -112.77979, 49.689308 ], [ -112.779748, 49.688889 ], [ -112.779749, 49.688478 ], [ -112.779739, 49.688031 ], [ -112.779748, 49.687622 ], [ -112.779769, 49.687159 ], [ -112.779816, 49.686494 ], [ -112.779896, 49.685531 ], [ -112.779868, 49.68512 ], [ -112.779875, 49.684881 ], [ -112.779863, 49.684535 ], [ -112.77986, 49.684358 ], [ -112.779847, 49.684121 ], [ -112.779816, 49.683702 ], [ -112.779801, 49.683613 ], [ -112.779746, 49.683344 ], [ -112.779688, 49.682957 ], [ -112.779596, 49.68252 ], [ -112.779542, 49.68228 ], [ -112.7794, 49.681732 ], [ -112.779248, 49.681225 ], [ -112.779016, 49.680478 ], [ -112.778857, 49.679737 ], [ -112.778724, 49.678803 ], [ -112.778685, 49.678481 ], [ -112.77867, 49.678161 ], [ -112.778679, 49.677477 ], [ -112.778716, 49.676815 ], [ -112.77879, 49.676373 ], [ -112.778793, 49.676281 ], [ -112.778809, 49.67613 ], [ -112.778826, 49.675962 ], [ -112.779009, 49.67502 ], [ -112.779283, 49.674077 ], [ -112.779324, 49.67372 ], [ -112.779398, 49.673084 ], [ -112.779441, 49.672708 ], [ -112.779445, 49.672624 ], [ -112.779457, 49.6724 ], [ -112.779474, 49.670433 ], [ -112.779525, 49.669583 ], [ -112.779531, 49.668796 ], [ -112.779522, 49.66867 ], [ -112.779234, 49.66867 ], [ -112.778749, 49.66867 ], [ -112.773523, 49.668658 ], [ -112.769369, 49.668649 ], [ -112.763756, 49.668637 ], [ -112.7565, 49.668622 ], [ -112.75294, 49.668604 ], [ -112.752507, 49.668609 ], [ -112.751647, 49.668588 ], [ -112.750485, 49.668477 ], [ -112.748828, 49.668137 ], [ -112.747424, 49.667643 ], [ -112.746405, 49.667117 ], [ -112.745658, 49.666544 ], [ -112.743059, 49.663524 ], [ -112.742076, 49.662492 ], [ -112.741004, 49.661674 ], [ -112.73773, 49.659519 ], [ -112.735465, 49.657989 ], [ -112.733655, 49.656859 ], [ -112.718533, 49.646941 ], [ -112.708401, 49.640314 ], [ -112.699223, 49.634317 ], [ -112.697367, 49.633097 ], [ -112.696977, 49.632838 ], [ -112.688059, 49.626979 ], [ -112.68302, 49.623675 ], [ -112.676625, 49.619483 ], [ -112.667074, 49.613228 ], [ -112.658988, 49.607908 ], [ -112.655248, 49.605484 ], [ -112.650972, 49.603234 ], [ -112.646487, 49.600778 ], [ -112.644902, 49.599632 ], [ -112.643248, 49.598383 ], [ -112.641103, 49.596798 ], [ -112.639355, 49.595616 ], [ -112.637, 49.594133 ], [ -112.627891, 49.588425 ], [ -112.602707, 49.572537 ], [ -112.600552, 49.571077 ], [ -112.598617, 49.5692 ], [ -112.59449, 49.564228 ], [ -112.593913, 49.5636 ], [ -112.593075, 49.562994 ], [ -112.592311, 49.562392 ], [ -112.591327, 49.561818 ], [ -112.589132, 49.56091 ], [ -112.585717, 49.559813 ], [ -112.580643, 49.558189 ], [ -112.579135, 49.557557 ], [ -112.577853, 49.55687 ], [ -112.576584, 49.555934 ], [ -112.573576, 49.55323 ], [ -112.570447, 49.550424 ], [ -112.569232, 49.549564 ], [ -112.567477, 49.548436 ], [ -112.556735, 49.541871 ], [ -112.550446, 49.538028 ], [ -112.546175, 49.535345 ], [ -112.543195, 49.53355 ], [ -112.541943, 49.532867 ], [ -112.522018, 49.522571 ], [ -112.51966, 49.521328 ], [ -112.515058, 49.518953 ], [ -112.512595, 49.517628 ], [ -112.51096, 49.516524 ], [ -112.50948, 49.515214 ], [ -112.508358, 49.513958 ], [ -112.507396, 49.512646 ], [ -112.504667, 49.506398 ], [ -112.503772, 49.504449 ], [ -112.502829, 49.502755 ], [ -112.502134, 49.501789 ], [ -112.500323, 49.499793 ], [ -112.498242, 49.497945 ], [ -112.491937, 49.492826 ], [ -112.472122, 49.477074 ], [ -112.46972, 49.475443 ], [ -112.458697, 49.468584 ], [ -112.452076, 49.464789 ], [ -112.441426, 49.458313 ], [ -112.440081, 49.457555 ], [ -112.439154, 49.45711 ], [ -112.437692, 49.456507 ], [ -112.428185, 49.452715 ], [ -112.42567, 49.451509 ], [ -112.421872, 49.448943 ], [ -112.416852, 49.445256 ], [ -112.415374, 49.444112 ], [ -112.413757, 49.443067 ], [ -112.41199, 49.442277 ], [ -112.408866, 49.441094 ], [ -112.403355, 49.439005 ], [ -112.400426, 49.437907 ], [ -112.395624, 49.436024 ], [ -112.393366, 49.43506 ], [ -112.391141, 49.43401 ], [ -112.389667, 49.433278 ], [ -112.387242, 49.431857 ], [ -112.380495, 49.427283 ], [ -112.377371, 49.425166 ], [ -112.370769, 49.420228 ], [ -112.369213, 49.419103 ], [ -112.368029, 49.418322 ], [ -112.366868, 49.417688 ], [ -112.365853, 49.417109 ], [ -112.364196, 49.416279 ], [ -112.358645, 49.413606 ], [ -112.345069, 49.40697 ], [ -112.313601, 49.391666 ], [ -112.293379, 49.381796 ], [ -112.280866, 49.375648 ], [ -112.275641, 49.37312 ], [ -112.27415, 49.372357 ], [ -112.272971, 49.371647 ], [ -112.272087, 49.371077 ], [ -112.271197, 49.370405 ], [ -112.270258, 49.369532 ], [ -112.269242, 49.36847 ], [ -112.263635, 49.361606 ], [ -112.261762, 49.359287 ], [ -112.252776, 49.348158 ], [ -112.236226, 49.327356 ], [ -112.231602, 49.321856 ], [ -112.231504, 49.32174 ], [ -112.22954, 49.319363 ], [ -112.227247, 49.316403 ], [ -112.224225, 49.312727 ], [ -112.22224, 49.310555 ], [ -112.216986, 49.304836 ], [ -112.215307, 49.3031 ], [ -112.213887, 49.301877 ], [ -112.213028, 49.301145 ], [ -112.204369, 49.294474 ], [ -112.201434, 49.291851 ], [ -112.200807, 49.291228 ], [ -112.200423, 49.290767 ], [ -112.200161, 49.290419 ], [ -112.199859, 49.289985 ], [ -112.199566, 49.2895 ], [ -112.199306, 49.289012 ], [ -112.199053, 49.288493 ], [ -112.198839, 49.287999 ], [ -112.198721, 49.287648 ], [ -112.198561, 49.28716 ], [ -112.198436, 49.286692 ], [ -112.198364, 49.286224 ], [ -112.198303, 49.285775 ], [ -112.198271, 49.285347 ], [ -112.198256, 49.282987 ], [ -112.198269, 49.279832 ], [ -112.197949, 49.277457 ], [ -112.196565, 49.273803 ], [ -112.189342, 49.264663 ], [ -112.187679, 49.262625 ], [ -112.187029, 49.261975 ], [ -112.185766, 49.260758 ], [ -112.185003, 49.259994 ], [ -112.184046, 49.259256 ], [ -112.182999, 49.258515 ], [ -112.181937, 49.257797 ], [ -112.180185, 49.2566 ], [ -112.179314, 49.25606 ], [ -112.178353, 49.255415 ], [ -112.177525, 49.254853 ], [ -112.176769, 49.254313 ], [ -112.176125, 49.253788 ], [ -112.174746, 49.252496 ], [ -112.173897, 49.251682 ], [ -112.173107, 49.250905 ], [ -112.153316, 49.231556 ], [ -112.145266, 49.223554 ], [ -112.137196, 49.215571 ], [ -112.13617, 49.214714 ], [ -112.134956, 49.213742 ], [ -112.134168, 49.213187 ], [ -112.132859, 49.212334 ], [ -112.13166, 49.211607 ], [ -112.12957, 49.210494 ], [ -112.126976, 49.209298 ], [ -112.123065, 49.207555 ], [ -112.121541, 49.206848 ], [ -112.120052, 49.206151 ], [ -112.118948, 49.205619 ], [ -112.117869, 49.205062 ], [ -112.11706, 49.204623 ], [ -112.115236, 49.203546 ], [ -112.112919, 49.201989 ], [ -112.111625, 49.201012 ], [ -112.109029, 49.198836 ], [ -112.106118, 49.195686 ], [ -112.105716, 49.195156 ], [ -112.10511, 49.194341 ], [ -112.102212, 49.189769 ], [ -112.099016, 49.184803 ], [ -112.097293, 49.182034 ], [ -112.09607, 49.179971 ], [ -112.093881, 49.176527 ], [ -112.093098, 49.175222 ], [ -112.092754, 49.174577 ], [ -112.092518, 49.174107 ], [ -112.092368, 49.173658 ], [ -112.092271, 49.173279 ], [ -112.092175, 49.172816 ], [ -112.092083, 49.172436 ], [ -112.092105, 49.171924 ], [ -112.092116, 49.171461 ], [ -112.092153, 49.170923 ], [ -112.092303, 49.169933 ], [ -112.092797, 49.166924 ], [ -112.093183, 49.164483 ], [ -112.093425, 49.163015 ], [ -112.094079, 49.159023 ], [ -112.094508, 49.156383 ], [ -112.094555, 49.155953 ], [ -112.094556, 49.155221 ], [ -112.094514, 49.154793 ], [ -112.094503, 49.154492 ], [ -112.094385, 49.153874 ], [ -112.094213, 49.153187 ], [ -112.094063, 49.152773 ], [ -112.093902, 49.152351 ], [ -112.093602, 49.151853 ], [ -112.093237, 49.151257 ], [ -112.092797, 49.15078 ], [ -112.092443, 49.150366 ], [ -112.09211, 49.150043 ], [ -112.09144, 49.149473 ], [ -112.090329, 49.148576 ], [ -112.087872, 49.146674 ], [ -112.085019, 49.144442 ], [ -112.08445, 49.144014 ], [ -112.083795, 49.143488 ], [ -112.083195, 49.142934 ], [ -112.082218, 49.142021 ], [ -112.081255, 49.140863 ], [ -112.080652, 49.140161 ], [ -112.079815, 49.139052 ], [ -112.079375, 49.138315 ], [ -112.078935, 49.137592 ], [ -112.078367, 49.136469 ], [ -112.077562, 49.134475 ], [ -112.07679, 49.132524 ], [ -112.076328, 49.131429 ], [ -112.07591, 49.130565 ], [ -112.075325, 49.129377 ], [ -112.074891, 49.128684 ], [ -112.074472, 49.128059 ], [ -112.073582, 49.12674 ], [ -112.072631, 49.125499 ], [ -112.071973, 49.124711 ], [ -112.071054, 49.123645 ], [ -112.069784, 49.122387 ], [ -112.068512, 49.121237 ], [ -112.066629, 49.119662 ], [ -112.062677, 49.116351 ], [ -112.055397, 49.110231 ], [ -112.054528, 49.109557 ], [ -112.053423, 49.108763 ], [ -112.052461, 49.108147 ], [ -112.045612, 49.103924 ], [ -112.04278, 49.102161 ], [ -112.042125, 49.101683 ], [ -112.041514, 49.101163 ], [ -112.040923, 49.100503 ], [ -112.040258, 49.099716 ], [ -112.039046, 49.09777 ], [ -112.036761, 49.094883 ], [ -112.034383, 49.091688 ], [ -112.032973, 49.089733 ], [ -112.032072, 49.088525 ], [ -112.031257, 49.087397 ], [ -112.027952, 49.082826 ], [ -112.025918, 49.080115 ], [ -112.023929, 49.077471 ], [ -112.021412, 49.07398 ], [ -112.01924, 49.070443 ], [ -112.016505, 49.066092 ], [ -112.014616, 49.062914 ], [ -112.010898, 49.056849 ], [ -112.010336, 49.056053 ], [ -112.009981, 49.05549 ], [ -112.009595, 49.055054 ], [ -112.008383, 49.053913 ], [ -112.004081, 49.049886 ], [ -112.003484, 49.049323 ], [ -112.002241, 49.048061 ], [ -112.000186, 49.046131 ], [ -111.998352, 49.044419 ], [ -111.997649, 49.043715 ], [ -111.997014, 49.042914 ], [ -111.996531, 49.042236 ], [ -111.996215, 49.041782 ], [ -111.995927, 49.041307 ], [ -111.995594, 49.040698 ], [ -111.995321, 49.040118 ], [ -111.994693, 49.038673 ], [ -111.994001, 49.037108 ], [ -111.992996, 49.034801 ], [ -111.992369, 49.033409 ], [ -111.99149, 49.031403 ], [ -111.99082, 49.029866 ], [ -111.990004, 49.02802 ], [ -111.98936, 49.026568 ], [ -111.988769, 49.025185 ], [ -111.988218, 49.023936 ], [ -111.987589, 49.022536 ], [ -111.987371, 49.021885 ], [ -111.987235, 49.021333 ], [ -111.987097, 49.020858 ], [ -111.986995, 49.020386 ], [ -111.98692, 49.019658 ], [ -111.986872, 49.018979 ], [ -111.986866, 49.017199 ], [ -111.986872, 49.015542 ], [ -111.98686, 49.013841 ], [ -111.986847, 49.01231 ], [ -111.98685, 49.011137 ], [ -111.986861, 49.010352 ], [ -111.986797, 49.009758 ], [ -111.986645, 49.009206 ], [ -111.986377, 49.008696 ], [ -111.986147, 49.008354 ], [ -111.985836, 49.007998 ], [ -111.985337, 49.007558 ], [ -111.984989, 49.007266 ], [ -111.984301, 49.006795 ], [ -111.983474, 49.00638 ], [ -111.982516, 49.005993 ], [ -111.981765, 49.005715 ], [ -111.980942, 49.005514 ], [ -111.980129, 49.005334 ], [ -111.979328, 49.005194 ], [ -111.978062, 49.005092 ], [ -111.976985, 49.005074 ], [ -111.974918, 49.005173 ], [ -111.973139, 49.005292 ], [ -111.97154, 49.00538 ], [ -111.969019, 49.005514 ], [ -111.967562, 49.005617 ], [ -111.966045, 49.005705 ], [ -111.96469, 49.005725 ], [ -111.963991, 49.005648 ], [ -111.96346, 49.005567 ], [ -111.96295, 49.005448 ], [ -111.962485, 49.005296 ], [ -111.962163, 49.005187 ], [ -111.961761, 49.005004 ], [ -111.961293, 49.004765 ], [ -111.960951, 49.004554 ], [ -111.960789, 49.004426 ], [ -111.960561, 49.004236 ], [ -111.960215, 49.003866 ], [ -111.959973, 49.003571 ], [ -111.959774, 49.003265 ], [ -111.959681, 49.003043 ], [ -111.959581, 49.002794 ], [ -111.95951, 49.002452 ], [ -111.959584, 49.002087 ], [ -111.959768, 49.001731 ], [ -111.96008, 49.00139 ], [ -111.960323, 49.001097 ], [ -111.960993, 49.000276 ], [ -111.961147, 48.999913 ], [ -111.961177, 48.999675 ], [ -111.961154, 48.999405 ], [ -111.96075, 48.998378 ], [ -111.960537, 48.997835 ], [ -111.960261, 48.997296 ], [ -111.959961, 48.996969 ], [ -111.959772, 48.996485 ], [ -111.959789, 48.99582 ], [ -111.959918, 48.995443 ], [ -111.960048, 48.994907 ], [ -111.960094, 48.994603 ], [ -111.960084, 48.994414 ], [ -111.960109, 48.993824 ], [ -111.959994, 48.990856 ], [ -111.95827, 48.98094 ], [ -111.958253, 48.980705 ], [ -111.958185, 48.980405 ], [ -111.958073, 48.980015 ], [ -111.957973, 48.979662 ], [ -111.957788, 48.979177 ], [ -111.957579, 48.978688 ], [ -111.957393, 48.978342 ], [ -111.957182, 48.977986 ], [ -111.956929, 48.977617 ], [ -111.956287, 48.976872 ], [ -111.955429, 48.975932 ], [ -111.940434, 48.960617 ], [ -111.939756, 48.959862 ], [ -111.939258, 48.959163 ], [ -111.938864, 48.958475 ], [ -111.938589, 48.957934 ], [ -111.935242, 48.950139 ], [ -111.933705, 48.946469 ], [ -111.930948, 48.939956 ], [ -111.927211, 48.931012 ], [ -111.924522, 48.924688 ], [ -111.916608, 48.906188 ], [ -111.9112, 48.893335 ], [ -111.910969, 48.892844 ], [ -111.910694, 48.892325 ], [ -111.910265, 48.891676 ], [ -111.909921, 48.891247 ], [ -111.909492, 48.890711 ], [ -111.909046, 48.890237 ], [ -111.908119, 48.889328 ], [ -111.907385, 48.88863 ], [ -111.906844, 48.888116 ], [ -111.903694, 48.88508 ], [ -111.903291, 48.88469 ], [ -111.901737, 48.883161 ], [ -111.878176, 48.860393 ], [ -111.867242, 48.849753 ], [ -111.866486, 48.849013 ], [ -111.865877, 48.848301 ], [ -111.86531, 48.847533 ], [ -111.864675, 48.846613 ], [ -111.86392, 48.845195 ], [ -111.863594, 48.84437 ], [ -111.863233, 48.843167 ], [ -111.863139, 48.842738 ], [ -111.863019, 48.842026 ], [ -111.86295, 48.841071 ], [ -111.862942, 48.830326 ], [ -111.862942, 48.823285 ], [ -111.86289, 48.769261 ], [ -111.862864, 48.764515 ], [ -111.862813, 48.763474 ], [ -111.862718, 48.761743 ], [ -111.861611, 48.743809 ], [ -111.861439, 48.740289 ], [ -111.861439, 48.739949 ], [ -111.861594, 48.737176 ], [ -111.862178, 48.726719 ], [ -111.862229, 48.723792 ], [ -111.862083, 48.656639 ], [ -111.8621, 48.64979 ], [ -111.861997, 48.598701 ], [ -111.86198, 48.592185 ], [ -111.86198, 48.57272 ], [ -111.861912, 48.57163 ], [ -111.861817, 48.570494 ], [ -111.861697, 48.569205 ], [ -111.860581, 48.557657 ], [ -111.860077, 48.552231 ], [ -111.859663, 48.54801 ], [ -111.859594, 48.546805 ], [ -111.859611, 48.545322 ], [ -111.859792, 48.535383 ], [ -111.8598, 48.533888 ], [ -111.859886, 48.533121 ], [ -111.860015, 48.532581 ], [ -111.860246, 48.531939 ], [ -111.860598, 48.531387 ], [ -111.860942, 48.530899 ], [ -111.861688, 48.530109 ], [ -111.866109, 48.525755 ], [ -111.875953, 48.516192 ], [ -111.876929, 48.515247 ], [ -111.877241, 48.514954 ], [ -111.879228, 48.513021 ], [ -111.879759, 48.512467 ], [ -111.88006, 48.512124 ], [ -111.880267, 48.511881 ], [ -111.88042, 48.511679 ], [ -111.880571, 48.511473 ], [ -111.88094, 48.510956 ], [ -111.881292, 48.510376 ], [ -111.881653, 48.509733 ], [ -111.881996, 48.50904 ], [ -111.882305, 48.508346 ], [ -111.882562, 48.507572 ], [ -111.882777, 48.506828 ], [ -111.882931, 48.506134 ], [ -111.883026, 48.505588 ], [ -111.883441, 48.502992 ], [ -111.883604, 48.499975 ], [ -111.883614, 48.499767 ], [ -111.883635, 48.496433 ], [ -111.883673, 48.495815 ], [ -111.883734, 48.49503 ], [ -111.883798, 48.494396 ], [ -111.883866, 48.493802 ], [ -111.883999, 48.493 ], [ -111.884209, 48.492103 ], [ -111.884377, 48.49147 ], [ -111.884557, 48.490837 ], [ -111.885112, 48.489088 ], [ -111.885489, 48.48824 ], [ -111.886605, 48.485897 ], [ -111.88682, 48.485299 ], [ -111.887034, 48.484679 ], [ -111.887197, 48.484099 ], [ -111.887389, 48.483433 ], [ -111.88747, 48.482928 ], [ -111.887522, 48.482349 ], [ -111.887575, 48.481425 ], [ -111.887554, 48.480643 ], [ -111.887506, 48.480113 ], [ -111.887418, 48.479516 ], [ -111.887265, 48.478742 ], [ -111.887056, 48.477974 ], [ -111.886845, 48.47746 ], [ -111.886472, 48.476607 ], [ -111.885635, 48.474831 ], [ -111.885441, 48.474274 ], [ -111.885165, 48.473591 ], [ -111.884897, 48.472862 ], [ -111.884674, 48.47215 ], [ -111.884502, 48.471564 ], [ -111.884279, 48.470409 ], [ -111.884082, 48.46926 ], [ -111.883953, 48.468281 ], [ -111.883906, 48.467423 ], [ -111.883878, 48.46663 ], [ -111.883976, 48.454446 ], [ -111.884028, 48.447094 ], [ -111.884036, 48.443164 ], [ -111.884023, 48.441546 ], [ -111.884017, 48.440681 ], [ -111.884026, 48.43968 ], [ -111.884018, 48.438945 ], [ -111.88402, 48.438457 ], [ -111.884058, 48.438059 ], [ -111.884092, 48.43776 ], [ -111.884134, 48.437455 ], [ -111.884195, 48.437091 ], [ -111.884275, 48.436739 ], [ -111.884339, 48.436455 ], [ -111.884422, 48.436153 ], [ -111.884528, 48.435768 ], [ -111.884674, 48.435354 ], [ -111.884745, 48.435206 ], [ -111.884871, 48.43486 ], [ -111.885003, 48.434574 ], [ -111.885207, 48.434157 ], [ -111.885417, 48.433746 ], [ -111.885596, 48.433441 ], [ -111.88582, 48.433061 ], [ -111.886029, 48.43273 ], [ -111.886203, 48.432492 ], [ -111.886412, 48.432197 ], [ -111.886586, 48.431954 ], [ -111.886816, 48.431663 ], [ -111.887079, 48.431357 ], [ -111.887401, 48.430981 ], [ -111.887774, 48.430593 ], [ -111.888127, 48.430257 ], [ -111.888437, 48.429955 ], [ -111.889099, 48.429374 ], [ -111.889756, 48.428824 ], [ -111.890912, 48.427857 ], [ -111.892165, 48.426838 ], [ -111.905659, 48.415636 ], [ -111.90626, 48.415157 ], [ -111.906861, 48.41457 ], [ -111.907333, 48.414081 ], [ -111.907814, 48.413528 ], [ -111.908406, 48.412776 ], [ -111.909015, 48.411824 ], [ -111.909633, 48.410907 ], [ -111.920752, 48.392582 ], [ -111.927417, 48.381543 ], [ -111.93346, 48.371538 ], [ -111.933846, 48.37086 ], [ -111.934235, 48.370068 ], [ -111.934546, 48.369396 ], [ -111.934939, 48.368399 ], [ -111.935227, 48.367613 ], [ -111.935586, 48.366493 ], [ -111.935831, 48.365544 ], [ -111.936026, 48.364601 ], [ -111.936138, 48.363831 ], [ -111.936258, 48.362885 ], [ -111.936438, 48.360792 ], [ -111.936415, 48.329088 ], [ -111.936407, 48.310354 ], [ -111.936413, 48.303031 ], [ -111.936412, 48.300795 ], [ -111.936402, 48.300483 ], [ -111.936381, 48.271331 ], [ -111.936384, 48.26711 ], [ -111.936382, 48.259592 ], [ -111.936296, 48.241832 ], [ -111.936359, 48.224045 ], [ -111.936352, 48.223792 ], [ -111.936325, 48.223208 ], [ -111.936251, 48.222646 ], [ -111.936138, 48.222131 ], [ -111.936009, 48.221594 ], [ -111.935863, 48.221148 ], [ -111.935674, 48.220724 ], [ -111.935554, 48.220438 ], [ -111.935323, 48.219975 ], [ -111.934809, 48.219106 ], [ -111.93372, 48.217503 ], [ -111.933233, 48.216812 ], [ -111.932738, 48.21609 ], [ -111.932429, 48.215627 ], [ -111.931294, 48.214006 ], [ -111.927397, 48.208419 ], [ -111.925603, 48.205843 ], [ -111.925208, 48.205217 ], [ -111.92491, 48.204712 ], [ -111.924771, 48.204436 ], [ -111.924661, 48.204188 ], [ -111.924567, 48.203923 ], [ -111.924475, 48.203592 ], [ -111.924434, 48.203298 ], [ -111.924418, 48.202753 ], [ -111.924413, 48.20226 ], [ -111.924452, 48.201981 ], [ -111.924528, 48.20166 ], [ -111.924607, 48.201399 ], [ -111.924686, 48.201185 ], [ -111.924808, 48.200887 ], [ -111.92494, 48.200634 ], [ -111.925143, 48.200322 ], [ -111.925478, 48.199721 ], [ -111.929307, 48.193399 ], [ -111.931749, 48.18936 ], [ -111.932143, 48.188696 ], [ -111.932455, 48.188174 ], [ -111.933068, 48.187161 ], [ -111.933601, 48.186274 ], [ -111.933896, 48.185797 ], [ -111.934176, 48.185351 ], [ -111.934674, 48.184441 ], [ -111.934869, 48.184038 ], [ -111.935015, 48.183702 ], [ -111.935133, 48.183407 ], [ -111.935235, 48.183131 ], [ -111.935317, 48.182855 ], [ -111.935435, 48.182454 ], [ -111.935517, 48.18214 ], [ -111.935563, 48.181903 ], [ -111.935605, 48.181629 ], [ -111.935654, 48.181347 ], [ -111.935672, 48.181134 ], [ -111.935695, 48.180837 ], [ -111.93571, 48.180431 ], [ -111.935711, 48.179913 ], [ -111.935689, 48.179699 ], [ -111.935666, 48.179392 ], [ -111.935641, 48.179193 ], [ -111.935605, 48.178954 ], [ -111.935551, 48.17862 ], [ -111.935494, 48.178341 ], [ -111.935425, 48.178065 ], [ -111.935362, 48.177851 ], [ -111.935271, 48.177512 ], [ -111.935083, 48.177015 ], [ -111.93498, 48.176751 ], [ -111.934859, 48.176484 ], [ -111.934688, 48.176141 ], [ -111.934489, 48.175789 ], [ -111.934239, 48.175377 ], [ -111.933859, 48.174812 ], [ -111.933189, 48.173765 ], [ -111.928027, 48.165762 ], [ -111.927735, 48.165321 ], [ -111.92603, 48.162726 ], [ -111.925093, 48.161247 ], [ -111.924008, 48.159611 ], [ -111.922175, 48.156783 ], [ -111.920615, 48.154387 ], [ -111.919007, 48.151911 ], [ -111.91822, 48.150663 ], [ -111.916601, 48.148144 ], [ -111.915551, 48.146568 ], [ -111.914312, 48.144665 ], [ -111.913624, 48.143606 ], [ -111.912311, 48.141567 ], [ -111.911974, 48.141065 ], [ -111.911504, 48.140381 ], [ -111.910989, 48.139656 ], [ -111.91031, 48.138734 ], [ -111.909273, 48.1374 ], [ -111.907928, 48.135653 ], [ -111.906666, 48.13405 ], [ -111.905997, 48.133172 ], [ -111.904722, 48.131516 ], [ -111.901655, 48.127581 ], [ -111.900048, 48.125516 ], [ -111.898729, 48.123822 ], [ -111.894029, 48.117798 ], [ -111.893315, 48.116857 ], [ -111.892001, 48.115177 ], [ -111.889638, 48.112132 ], [ -111.887413, 48.109275 ], [ -111.884717, 48.105808 ], [ -111.876044, 48.094626 ], [ -111.87031, 48.087229 ], [ -111.862959, 48.077764 ], [ -111.861332, 48.075665 ], [ -111.858755, 48.072362 ], [ -111.857125, 48.070241 ], [ -111.854834, 48.06729 ], [ -111.850948, 48.062304 ], [ -111.85011, 48.061229 ], [ -111.849084, 48.059917 ], [ -111.845348, 48.055071 ], [ -111.836461, 48.043589 ], [ -111.832454, 48.038401 ], [ -111.828116, 48.032803 ], [ -111.825147, 48.028974 ], [ -111.816587, 48.017942 ], [ -111.816087, 48.017289 ], [ -111.815305, 48.016376 ], [ -111.814473, 48.015423 ], [ -111.813623, 48.014499 ], [ -111.812937, 48.013816 ], [ -111.811984, 48.012851 ], [ -111.810868, 48.011863 ], [ -111.809752, 48.010882 ], [ -111.808825, 48.010101 ], [ -111.807598, 48.009153 ], [ -111.806388, 48.008229 ], [ -111.805238, 48.007408 ], [ -111.784158, 47.992286 ], [ -111.782561, 47.991143 ], [ -111.767146, 47.980084 ], [ -111.766219, 47.979354 ], [ -111.765283, 47.978504 ], [ -111.764288, 47.977544 ], [ -111.763404, 47.976585 ], [ -111.762691, 47.975723 ], [ -111.762193, 47.97501 ], [ -111.761653, 47.974154 ], [ -111.761121, 47.973252 ], [ -111.753336, 47.959718 ], [ -111.749036, 47.952205 ], [ -111.736505, 47.930384 ], [ -111.736106, 47.92965 ], [ -111.735644, 47.928853 ], [ -111.735343, 47.928305 ], [ -111.733592, 47.925244 ], [ -111.733306, 47.924769 ], [ -111.732599, 47.923554 ], [ -111.732395, 47.923205 ], [ -111.731718, 47.922093 ], [ -111.731538, 47.921738 ], [ -111.73117, 47.921043 ], [ -111.726112, 47.912262 ], [ -111.71442, 47.89173 ], [ -111.713776, 47.890608 ], [ -111.713253, 47.889578 ], [ -111.712927, 47.888864 ], [ -111.71254, 47.888058 ], [ -111.712146, 47.88689 ], [ -111.711811, 47.885744 ], [ -111.711519, 47.884564 ], [ -111.711253, 47.883125 ], [ -111.711124, 47.881922 ], [ -111.71103, 47.880834 ], [ -111.71103, 47.879792 ], [ -111.711129, 47.869762 ], [ -111.711004, 47.867783 ], [ -111.710901, 47.866758 ], [ -111.710781, 47.865716 ], [ -111.710618, 47.864547 ], [ -111.710438, 47.863447 ], [ -111.710283, 47.862537 ], [ -111.709991, 47.861213 ], [ -111.709756, 47.860259 ], [ -111.709335, 47.858847 ], [ -111.708841, 47.857285 ], [ -111.70727, 47.852822 ], [ -111.706867, 47.851704 ], [ -111.706498, 47.850875 ], [ -111.706077, 47.850017 ], [ -111.705434, 47.848819 ], [ -111.705305, 47.848582 ], [ -111.704816, 47.847747 ], [ -111.704215, 47.846849 ], [ -111.703623, 47.846054 ], [ -111.702678, 47.844833 ], [ -111.701983, 47.843986 ], [ -111.700902, 47.842828 ], [ -111.699923, 47.841889 ], [ -111.698979, 47.841013 ], [ -111.698052, 47.84023 ], [ -111.696893, 47.839291 ], [ -111.668363, 47.817267 ], [ -111.667479, 47.816472 ], [ -111.667042, 47.815942 ], [ -111.666647, 47.815434 ], [ -111.666226, 47.81476 ], [ -111.665943, 47.814143 ], [ -111.66578, 47.813619 ], [ -111.665625, 47.812887 ], [ -111.6656, 47.812391 ], [ -111.665591, 47.811797 ], [ -111.666429, 47.79584 ], [ -111.666535, 47.793822 ], [ -111.666492, 47.791308 ], [ -111.666439, 47.750802 ], [ -111.666442, 47.741317 ], [ -111.666445, 47.740989 ], [ -111.666406, 47.723306 ], [ -111.666381, 47.72244 ], [ -111.666295, 47.721684 ], [ -111.666158, 47.720881 ], [ -111.665986, 47.72024 ], [ -111.665746, 47.719547 ], [ -111.665419, 47.71871 ], [ -111.665042, 47.717925 ], [ -111.664647, 47.717243 ], [ -111.664132, 47.716493 ], [ -111.663789, 47.716008 ], [ -111.663359, 47.715528 ], [ -111.662432, 47.714581 ], [ -111.658081, 47.710071 ], [ -111.647285, 47.699031 ], [ -111.646085, 47.697836 ], [ -111.632275, 47.683698 ], [ -111.631949, 47.683351 ], [ -111.606663, 47.657441 ], [ -111.60117, 47.651798 ], [ -111.590415, 47.64073 ], [ -111.589918, 47.640187 ], [ -111.589463, 47.639655 ], [ -111.589068, 47.639157 ], [ -111.588707, 47.638689 ], [ -111.588287, 47.638139 ], [ -111.587849, 47.637538 ], [ -111.587549, 47.637104 ], [ -111.587231, 47.636624 ], [ -111.58627, 47.63501 ], [ -111.585369, 47.633136 ], [ -111.570511, 47.6019 ], [ -111.569945, 47.600818 ], [ -111.56955, 47.600169 ], [ -111.569224, 47.599643 ], [ -111.568846, 47.599047 ], [ -111.568546, 47.598607 ], [ -111.568168, 47.598051 ], [ -111.567747, 47.597472 ], [ -111.567335, 47.596928 ], [ -111.566915, 47.59643 ], [ -111.566537, 47.595991 ], [ -111.552899, 47.581183 ], [ -111.552633, 47.580911 ], [ -111.537629, 47.564691 ], [ -111.536514, 47.563515 ], [ -111.535904, 47.562901 ], [ -111.535175, 47.56227 ], [ -111.534437, 47.561691 ], [ -111.533656, 47.561129 ], [ -111.532711, 47.560504 ], [ -111.531647, 47.559884 ], [ -111.53048, 47.559311 ], [ -111.529184, 47.558737 ], [ -111.528008, 47.558285 ], [ -111.526806, 47.557897 ], [ -111.525424, 47.557503 ], [ -111.524008, 47.557162 ], [ -111.522824, 47.556953 ], [ -111.521734, 47.556779 ], [ -111.509679, 47.554952 ], [ -111.484251, 47.551039 ], [ -111.477299, 47.54995 ], [ -111.455614, 47.546631 ], [ -111.452477, 47.546143 ], [ -111.452005, 47.546074 ], [ -111.448496, 47.545531 ], [ -111.445301, 47.545037 ], [ -111.443894, 47.544799 ], [ -111.442357, 47.544492 ], [ -111.440907, 47.544162 ], [ -111.439173, 47.543716 ], [ -111.437894, 47.543368 ], [ -111.436512, 47.542957 ], [ -111.435045, 47.54247 ], [ -111.385349, 47.526175 ], [ -111.384241, 47.525793 ], [ -111.383478, 47.52541 ], [ -111.382928, 47.525097 ], [ -111.382499, 47.524784 ], [ -111.382036, 47.524384 ], [ -111.381709, 47.524025 ], [ -111.381452, 47.523741 ], [ -111.380053, 47.521909 ], [ -111.379298, 47.520959 ], [ -111.379152, 47.520779 ], [ -111.378714, 47.520286 ], [ -111.378268, 47.519857 ], [ -111.377555, 47.519394 ], [ -111.376774, 47.518994 ], [ -111.376096, 47.518733 ], [ -111.375409, 47.51853 ], [ -111.374294, 47.518234 ], [ -111.351059, 47.512362 ], [ -111.350081, 47.512055 ], [ -111.348914, 47.511632 ], [ -111.348184, 47.511255 ], [ -111.347446, 47.510878 ], [ -111.346914, 47.510553 ], [ -111.346356, 47.510147 ], [ -111.345832, 47.509759 ], [ -111.345309, 47.509295 ], [ -111.344914, 47.508884 ], [ -111.344605, 47.508542 ], [ -111.344193, 47.50802 ], [ -111.34391, 47.507591 ], [ -111.343618, 47.507133 ], [ -111.343352, 47.506535 ], [ -111.343137, 47.505921 ], [ -111.343, 47.505254 ], [ -111.342914, 47.504779 ], [ -111.342871, 47.504205 ], [ -111.342884, 47.503714 ], [ -111.343017, 47.501337 ], [ -111.343037, 47.500922 ], [ -111.343074, 47.500247 ], [ -111.343153, 47.498866 ], [ -111.343699, 47.489338 ], [ -111.343837, 47.488347 ], [ -111.344051, 47.487517 ], [ -111.344326, 47.486746 ], [ -111.344695, 47.485795 ], [ -111.345184, 47.484855 ], [ -111.345493, 47.484356 ], [ -111.346068, 47.483527 ], [ -111.34715, 47.48221 ], [ -111.347948, 47.481392 ], [ -111.348765, 47.480715 ], [ -111.349751, 47.479978 ], [ -111.350866, 47.47913 ], [ -111.356582, 47.475347 ], [ -111.365214, 47.469592 ], [ -111.367419, 47.46813 ], [ -111.367934, 47.467829 ], [ -111.368578, 47.467492 ], [ -111.36923, 47.467144 ], [ -111.369994, 47.466807 ], [ -111.370973, 47.466407 ], [ -111.371926, 47.466042 ], [ -111.372818, 47.465746 ], [ -111.373522, 47.465525 ], [ -111.374509, 47.465258 ], [ -111.429286, 47.452445 ], [ -111.429621, 47.452364 ], [ -111.473508, 47.442064 ], [ -111.50183, 47.435384 ], [ -111.502749, 47.435175 ], [ -111.503701, 47.434961 ], [ -111.504362, 47.434792 ], [ -111.505221, 47.434543 ], [ -111.506045, 47.434299 ], [ -111.506663, 47.434095 ], [ -111.507143, 47.433927 ], [ -111.507907, 47.433648 ], [ -111.508654, 47.433312 ], [ -111.509255, 47.433045 ], [ -111.509933, 47.432725 ], [ -111.510534, 47.432412 ], [ -111.51122, 47.432029 ], [ -111.51183, 47.431674 ], [ -111.512954, 47.430931 ], [ -111.513546, 47.43049 ], [ -111.524011, 47.422011 ], [ -111.569141, 47.385345 ], [ -111.6142, 47.348685 ], [ -111.614466, 47.34847 ], [ -111.634341, 47.332266 ], [ -111.69101, 47.285965 ], [ -111.692683, 47.284596 ], [ -111.694151, 47.283461 ], [ -111.694838, 47.282943 ], [ -111.696432, 47.281863 ], [ -111.698123, 47.280815 ], [ -111.699024, 47.280297 ], [ -111.699436, 47.280064 ], [ -111.703522, 47.277671 ], [ -111.704183, 47.27728 ], [ -111.704689, 47.276966 ], [ -111.70511, 47.276686 ], [ -111.705436, 47.276442 ], [ -111.705788, 47.276139 ], [ -111.706182, 47.275766 ], [ -111.706612, 47.275289 ], [ -111.706989, 47.274806 ], [ -111.707367, 47.274264 ], [ -111.707573, 47.273856 ], [ -111.707813, 47.273379 ], [ -111.707933, 47.273047 ], [ -111.708045, 47.272651 ], [ -111.708122, 47.272307 ], [ -111.708199, 47.271911 ], [ -111.708234, 47.271544 ], [ -111.708234, 47.271212 ], [ -111.708157, 47.264538 ], [ -111.708114, 47.262342 ], [ -111.708122, 47.261794 ], [ -111.708157, 47.261369 ], [ -111.708234, 47.260851 ], [ -111.708268, 47.260653 ], [ -111.708337, 47.260257 ], [ -111.708508, 47.259511 ], [ -111.708637, 47.258923 ], [ -111.708783, 47.258241 ], [ -111.70898, 47.257536 ], [ -111.709152, 47.256942 ], [ -111.709298, 47.256383 ], [ -111.710079, 47.25333 ], [ -111.710328, 47.252363 ], [ -111.710474, 47.251833 ], [ -111.710637, 47.251332 ], [ -111.710834, 47.250889 ], [ -111.71104, 47.250545 ], [ -111.711367, 47.250085 ], [ -111.711658, 47.249753 ], [ -111.711942, 47.249444 ], [ -111.712345, 47.249089 ], [ -111.712766, 47.248751 ], [ -111.71316, 47.248494 ], [ -111.713624, 47.248221 ], [ -111.714147, 47.247958 ], [ -111.714834, 47.247655 ], [ -111.729726, 47.241112 ], [ -111.73291, 47.239807 ], [ -111.75169, 47.232534 ], [ -111.754093, 47.231624 ], [ -111.75635, 47.230861 ], [ -111.75676, 47.230739 ], [ -111.765002, 47.228413 ], [ -111.765835, 47.228157 ], [ -111.766633, 47.227877 ], [ -111.767345, 47.227597 ], [ -111.768092, 47.227306 ], [ -111.768719, 47.227026 ], [ -111.769474, 47.226676 ], [ -111.770058, 47.226361 ], [ -111.770727, 47.225988 ], [ -111.771448, 47.225534 ], [ -111.772118, 47.225096 ], [ -111.772693, 47.224688 ], [ -111.773405, 47.22417 ], [ -111.773714, 47.223936 ], [ -111.774169, 47.223575 ], [ -111.774641, 47.223103 ], [ -111.775104, 47.222619 ], [ -111.775499, 47.222211 ], [ -111.775885, 47.221774 ], [ -111.776306, 47.221255 ], [ -111.776658, 47.220777 ], [ -111.77695, 47.220369 ], [ -111.777422, 47.219611 ], [ -111.777722, 47.219057 ], [ -111.778014, 47.218422 ], [ -111.778289, 47.217746 ], [ -111.778503, 47.217104 ], [ -111.778675, 47.216428 ], [ -111.778881, 47.215694 ], [ -111.779061, 47.214988 ], [ -111.780057, 47.210796 ], [ -111.780203, 47.210213 ], [ -111.780323, 47.209758 ], [ -111.780435, 47.209397 ], [ -111.780641, 47.208808 ], [ -111.780907, 47.208201 ], [ -111.78113, 47.207729 ], [ -111.781301, 47.207438 ], [ -111.781499, 47.207129 ], [ -111.78228, 47.205916 ], [ -111.783293, 47.204645 ], [ -111.783936, 47.203974 ], [ -111.784735, 47.203146 ], [ -111.785593, 47.202225 ], [ -111.786314, 47.201466 ], [ -111.786872, 47.200883 ], [ -111.787902, 47.199845 ], [ -111.788254, 47.199507 ], [ -111.788674, 47.19914 ], [ -111.789086, 47.19879 ], [ -111.789584, 47.198387 ], [ -111.790168, 47.197921 ], [ -111.790605, 47.197618 ], [ -111.791249, 47.197227 ], [ -111.791824, 47.196877 ], [ -111.792545, 47.196474 ], [ -111.793198, 47.196136 ], [ -111.79397, 47.195769 ], [ -111.794805, 47.195425 ], [ -111.801248, 47.192835 ], [ -111.801575, 47.192701 ], [ -111.802656, 47.192287 ], [ -111.803514, 47.191937 ], [ -111.804167, 47.191628 ], [ -111.804665, 47.191394 ], [ -111.8053, 47.191045 ], [ -111.805723, 47.190797 ], [ -111.805997, 47.190634 ], [ -111.806478, 47.190323 ], [ -111.806732, 47.190144 ], [ -111.80699, 47.189955 ], [ -111.807242, 47.189755 ], [ -111.807499, 47.189537 ], [ -111.807978, 47.189108 ], [ -111.808309, 47.188784 ], [ -111.808738, 47.188316 ], [ -111.809145, 47.187831 ], [ -111.809375, 47.187515 ], [ -111.809578, 47.187207 ], [ -111.809725, 47.186968 ], [ -111.809941, 47.18658 ], [ -111.810196, 47.186052 ], [ -111.810485, 47.185392 ], [ -111.810582, 47.185034 ], [ -111.810757, 47.184458 ], [ -111.81087, 47.184068 ], [ -111.811288, 47.182591 ], [ -111.811466, 47.182023 ], [ -111.811592, 47.181562 ], [ -111.811725, 47.181068 ], [ -111.811881, 47.18053 ], [ -111.812016, 47.179972 ], [ -111.812133, 47.179486 ], [ -111.812304, 47.178698 ], [ -111.812475, 47.177933 ], [ -111.812795, 47.176671 ], [ -111.813022, 47.175805 ], [ -111.813143, 47.175313 ], [ -111.813289, 47.174743 ], [ -111.813451, 47.174086 ], [ -111.813587, 47.173603 ], [ -111.813709, 47.173199 ], [ -111.813868, 47.172742 ], [ -111.814052, 47.172177 ], [ -111.81431, 47.171374 ], [ -111.814446, 47.170953 ], [ -111.814555, 47.170592 ], [ -111.814621, 47.170315 ], [ -111.814724, 47.169845 ], [ -111.814867, 47.169286 ], [ -111.814924, 47.169023 ], [ -111.815005, 47.168585 ], [ -111.81512, 47.168075 ], [ -111.815267, 47.167513 ], [ -111.81537, 47.167124 ], [ -111.815534, 47.166596 ], [ -111.815743, 47.165879 ], [ -111.815883, 47.165407 ], [ -111.816017, 47.16497 ], [ -111.816151, 47.164499 ], [ -111.816299, 47.164102 ], [ -111.816455, 47.163605 ], [ -111.816606, 47.163233 ], [ -111.81675, 47.162929 ], [ -111.8169, 47.16265 ], [ -111.817163, 47.162234 ], [ -111.817461, 47.161792 ], [ -111.817707, 47.161428 ], [ -111.817918, 47.161172 ], [ -111.818109, 47.160939 ], [ -111.81826, 47.160773 ], [ -111.818436, 47.160598 ], [ -111.818713, 47.160322 ], [ -111.819137, 47.159916 ], [ -111.819338, 47.159742 ], [ -111.819615, 47.159506 ], [ -111.819811, 47.159353 ], [ -111.820101, 47.159137 ], [ -111.820886, 47.158653 ], [ -111.821347, 47.158391 ], [ -111.821709, 47.158179 ], [ -111.82215, 47.157949 ], [ -111.822792, 47.157656 ], [ -111.823291, 47.157407 ], [ -111.823951, 47.157074 ], [ -111.824604, 47.156773 ], [ -111.824926, 47.156618 ], [ -111.826016, 47.156075 ], [ -111.826777, 47.155704 ], [ -111.827118, 47.155527 ], [ -111.827632, 47.155278 ], [ -111.828833, 47.154684 ], [ -111.830331, 47.153967 ], [ -111.83092, 47.153679 ], [ -111.831417, 47.153485 ], [ -111.831694, 47.153394 ], [ -111.831937, 47.15332 ], [ -111.832157, 47.153261 ], [ -111.832517, 47.15318 ], [ -111.832892, 47.153117 ], [ -111.833253, 47.153076 ], [ -111.833573, 47.153049 ], [ -111.833993, 47.153025 ], [ -111.834559, 47.153049 ], [ -111.835126, 47.153113 ], [ -111.835701, 47.1532 ], [ -111.83595, 47.153259 ], [ -111.841856, 47.154858 ], [ -111.842362, 47.155002 ], [ -111.842712, 47.155094 ], [ -111.843019, 47.155158 ], [ -111.843672, 47.155257 ], [ -111.8438, 47.155267 ], [ -111.844087, 47.155287 ], [ -111.844399, 47.155286 ], [ -111.844699, 47.15528 ], [ -111.845058, 47.15526 ], [ -111.845509, 47.155193 ], [ -111.845869, 47.155122 ], [ -111.846291, 47.155019 ], [ -111.846644, 47.154905 ], [ -111.846928, 47.154785 ], [ -111.847126, 47.154685 ], [ -111.847479, 47.154504 ], [ -111.847736, 47.154346 ], [ -111.847908, 47.15421 ], [ -111.848115, 47.154036 ], [ -111.848251, 47.153894 ], [ -111.848342, 47.153792 ], [ -111.84847, 47.153647 ], [ -111.848543, 47.153546 ], [ -111.848649, 47.153419 ], [ -111.848764, 47.153232 ], [ -111.848861, 47.153032 ], [ -111.848947, 47.152823 ], [ -111.848973, 47.152708 ], [ -111.849021, 47.152541 ], [ -111.849042, 47.152364 ], [ -111.849077, 47.152131 ], [ -111.849103, 47.151825 ], [ -111.849333, 47.149062 ], [ -111.849393, 47.148406 ], [ -111.8494, 47.148192 ], [ -111.849408, 47.147987 ], [ -111.8494, 47.147824 ], [ -111.84939, 47.147698 ], [ -111.849374, 47.147556 ], [ -111.849347, 47.147435 ], [ -111.849331, 47.147351 ], [ -111.849245, 47.146966 ], [ -111.849142, 47.146674 ], [ -111.849059, 47.146434 ], [ -111.848943, 47.146212 ], [ -111.84886, 47.146053 ], [ -111.848767, 47.145896 ], [ -111.848673, 47.145762 ], [ -111.848566, 47.14562 ], [ -111.847025, 47.143717 ], [ -111.846887, 47.143525 ], [ -111.846766, 47.143353 ], [ -111.846661, 47.14319 ], [ -111.846521, 47.142953 ], [ -111.846415, 47.142749 ], [ -111.846343, 47.142591 ], [ -111.846269, 47.14237 ], [ -111.846241, 47.142263 ], [ -111.846223, 47.14217 ], [ -111.846209, 47.142062 ], [ -111.84619, 47.141876 ], [ -111.846192, 47.141745 ], [ -111.846217, 47.141528 ], [ -111.846242, 47.141353 ], [ -111.84627, 47.141184 ], [ -111.846324, 47.141016 ], [ -111.846398, 47.140797 ], [ -111.846525, 47.140531 ], [ -111.846604, 47.14041 ], [ -111.846676, 47.14029 ], [ -111.846846, 47.140059 ], [ -111.847142, 47.139751 ], [ -111.847281, 47.13963 ], [ -111.84746, 47.139479 ], [ -111.847678, 47.139323 ], [ -111.84791, 47.139171 ], [ -111.848186, 47.139013 ], [ -111.848438, 47.138891 ], [ -111.848706, 47.138772 ], [ -111.848984, 47.138674 ], [ -111.849267, 47.138581 ], [ -111.849592, 47.138477 ], [ -111.849947, 47.138393 ], [ -111.850257, 47.138331 ], [ -111.850556, 47.138292 ], [ -111.850908, 47.138241 ], [ -111.851241, 47.13822 ], [ -111.85164, 47.138209 ], [ -111.851974, 47.13821 ], [ -111.852237, 47.138223 ], [ -111.852532, 47.138247 ], [ -111.852795, 47.138276 ], [ -111.853123, 47.13833 ], [ -111.853394, 47.138374 ], [ -111.853787, 47.138457 ], [ -111.854766, 47.138667 ], [ -111.855826, 47.138884 ], [ -111.856179, 47.13897 ], [ -111.856565, 47.139029 ], [ -111.856792, 47.139068 ], [ -111.857173, 47.13911 ], [ -111.857431, 47.139137 ], [ -111.857676, 47.139157 ], [ -111.858048, 47.139176 ], [ -111.858338, 47.139177 ], [ -111.858762, 47.139167 ], [ -111.859155, 47.139148 ], [ -111.85955, 47.139117 ], [ -111.859805, 47.139089 ], [ -111.860245, 47.139022 ], [ -111.860491, 47.13898 ], [ -111.860683, 47.138944 ], [ -111.860973, 47.138885 ], [ -111.861214, 47.138829 ], [ -111.861479, 47.138758 ], [ -111.861743, 47.138677 ], [ -111.862069, 47.138562 ], [ -111.862344, 47.138449 ], [ -111.862687, 47.138297 ], [ -111.862931, 47.138175 ], [ -111.863114, 47.138087 ], [ -111.863314, 47.137975 ], [ -111.863599, 47.137807 ], [ -111.863972, 47.13756 ], [ -111.864261, 47.137341 ], [ -111.864442, 47.137202 ], [ -111.864674, 47.137005 ], [ -111.864969, 47.136736 ], [ -111.865258, 47.13642 ], [ -111.867853, 47.13324 ], [ -111.868102, 47.13296 ], [ -111.868445, 47.132657 ], [ -111.868909, 47.132347 ], [ -111.869372, 47.132096 ], [ -111.869776, 47.131938 ], [ -111.870291, 47.131792 ], [ -111.870754, 47.131687 ], [ -111.871286, 47.131623 ], [ -111.87181, 47.131605 ], [ -111.872359, 47.131617 ], [ -111.873389, 47.131705 ], [ -111.875681, 47.131897 ], [ -111.885054, 47.132785 ], [ -111.886566, 47.132886 ], [ -111.888607, 47.1331 ], [ -111.888985, 47.133135 ], [ -111.889766, 47.133217 ], [ -111.890444, 47.133281 ], [ -111.891225, 47.133322 ], [ -111.891886, 47.133334 ], [ -111.892598, 47.133334 ], [ -111.893242, 47.133316 ], [ -111.8938, 47.133305 ], [ -111.894512, 47.133246 ], [ -111.89513, 47.133194 ], [ -111.89563, 47.133132 ], [ -111.896274, 47.133044 ], [ -111.89678, 47.132974 ], [ -111.898531, 47.132636 ], [ -111.899656, 47.132344 ], [ -111.900711, 47.132022 ], [ -111.901398, 47.131783 ], [ -111.902445, 47.131403 ], [ -111.904162, 47.130755 ], [ -111.909034, 47.128927 ], [ -111.913729, 47.127181 ], [ -111.917251, 47.125878 ], [ -111.92071, 47.1247 ], [ -111.921698, 47.124251 ], [ -111.922387, 47.123838 ], [ -111.922806, 47.123526 ], [ -111.924809, 47.121884 ], [ -111.925527, 47.121467 ], [ -111.926631, 47.121045 ], [ -111.927545, 47.120838 ], [ -111.928844, 47.120679 ], [ -111.939954, 47.119561 ], [ -111.940893, 47.119375 ], [ -111.941491, 47.119193 ], [ -111.94258, 47.118694 ], [ -111.94328, 47.118205 ], [ -111.943682, 47.117842 ], [ -111.944167, 47.117216 ], [ -111.94437, 47.116782 ], [ -111.94452, 47.116283 ], [ -111.944594, 47.115646 ], [ -111.944471, 47.113184 ], [ -111.944519, 47.112085 ], [ -111.944699, 47.111164 ], [ -111.9451, 47.109855 ], [ -111.94519, 47.109613 ], [ -111.946818, 47.104798 ], [ -111.947185, 47.103915 ], [ -111.94757, 47.103215 ], [ -111.948705, 47.101708 ], [ -111.95025, 47.099859 ], [ -111.951568, 47.098237 ], [ -111.952318, 47.097326 ], [ -111.952866, 47.096646 ], [ -111.954165, 47.094457 ], [ -111.954536, 47.093996 ], [ -111.955001, 47.093573 ], [ -111.95538, 47.093283 ], [ -111.95597, 47.092921 ], [ -111.958022, 47.092174 ], [ -111.958929, 47.091665 ], [ -111.959563, 47.091145 ], [ -111.959918, 47.090782 ], [ -111.960199, 47.090406 ], [ -111.960514, 47.089782 ], [ -111.960679, 47.089121 ], [ -111.961076, 47.083974 ], [ -111.961218, 47.083113 ], [ -111.961515, 47.082259 ], [ -111.962027, 47.081188 ], [ -111.962536, 47.080367 ], [ -111.963148, 47.079581 ], [ -111.964601, 47.078023 ], [ -111.966718, 47.075826 ], [ -111.967024, 47.075517 ], [ -111.969094, 47.073375 ], [ -111.970437, 47.07194 ], [ -111.972154, 47.070032 ], [ -111.973432, 47.068542 ], [ -111.974103, 47.067809 ], [ -111.974604, 47.067107 ], [ -111.976616, 47.064731 ], [ -111.98105, 47.059331 ], [ -111.981811, 47.058552 ], [ -111.982905, 47.057585 ], [ -111.983864, 47.057007 ], [ -111.985011, 47.056354 ], [ -111.986314, 47.055712 ], [ -111.986853, 47.055504 ], [ -111.987827, 47.055224 ], [ -111.990272, 47.054577 ], [ -111.991627, 47.053954 ], [ -111.992491, 47.053494 ], [ -111.993301, 47.052977 ], [ -111.994268, 47.05221 ], [ -111.994901, 47.051592 ], [ -112.00108, 47.045261 ], [ -112.002131, 47.044014 ], [ -112.002341, 47.043639 ], [ -112.002459, 47.043291 ], [ -112.00254, 47.04249 ], [ -112.002551, 47.041633 ], [ -112.002802, 47.040468 ], [ -112.003031, 47.039996 ], [ -112.003311, 47.039629 ], [ -112.00408, 47.038901 ], [ -112.004669, 47.038537 ], [ -112.005381, 47.038191 ], [ -112.006132, 47.03787 ], [ -112.007591, 47.037508 ], [ -112.008057, 47.037437 ], [ -112.009475, 47.037313 ], [ -112.012696, 47.037258 ], [ -112.01489, 47.037245 ], [ -112.016275, 47.037163 ], [ -112.0192, 47.037033 ], [ -112.020595, 47.036893 ], [ -112.021841, 47.036661 ], [ -112.023428, 47.036288 ], [ -112.024543, 47.035923 ], [ -112.025634, 47.03549 ], [ -112.026621, 47.035004 ], [ -112.027875, 47.034259 ], [ -112.04368, 47.024236 ], [ -112.044909, 47.023441 ], [ -112.04544, 47.023036 ], [ -112.04608, 47.022418 ], [ -112.046528, 47.021863 ], [ -112.046751, 47.021531 ], [ -112.046895, 47.021189 ], [ -112.048457, 47.017223 ], [ -112.049379, 47.014861 ], [ -112.04961, 47.014335 ], [ -112.049878, 47.013819 ], [ -112.050194, 47.013314 ], [ -112.050556, 47.012813 ], [ -112.050955, 47.01233 ], [ -112.051351, 47.011873 ], [ -112.051809, 47.011423 ], [ -112.052303, 47.010991 ], [ -112.05283, 47.010576 ], [ -112.053387, 47.010182 ], [ -112.053972, 47.009806 ], [ -112.056998, 47.008006 ], [ -112.058515, 47.007109 ], [ -112.060333, 47.006031 ], [ -112.061846, 47.00513 ], [ -112.062472, 47.004869 ], [ -112.062889, 47.004741 ], [ -112.063358, 47.004645 ], [ -112.063683, 47.004606 ], [ -112.064074, 47.004561 ], [ -112.064445, 47.004519 ], [ -112.06488, 47.004576 ], [ -112.06527, 47.004629 ], [ -112.065565, 47.004697 ], [ -112.065974, 47.004792 ], [ -112.066808, 47.004991 ], [ -112.06824, 47.005361 ], [ -112.0686, 47.005467 ], [ -112.069096, 47.005596 ], [ -112.069473, 47.005688 ], [ -112.069732, 47.005745 ], [ -112.070266, 47.005855 ], [ -112.070699, 47.005951 ], [ -112.071253, 47.006048 ], [ -112.071642, 47.006114 ], [ -112.071928, 47.006158 ], [ -112.072302, 47.006209 ], [ -112.072735, 47.006263 ], [ -112.072984, 47.006287 ], [ -112.073367, 47.006318 ], [ -112.073792, 47.006352 ], [ -112.074219, 47.006372 ], [ -112.074542, 47.006382 ], [ -112.074829, 47.00639 ], [ -112.075178, 47.006392 ], [ -112.075603, 47.006393 ], [ -112.076788, 47.006332 ], [ -112.077271, 47.006281 ], [ -112.077628, 47.006225 ], [ -112.078026, 47.006153 ], [ -112.078436, 47.006074 ], [ -112.078755, 47.005996 ], [ -112.079201, 47.005866 ], [ -112.079533, 47.005747 ], [ -112.079812, 47.00563 ], [ -112.080082, 47.005495 ], [ -112.080379, 47.005332 ], [ -112.080635, 47.005164 ], [ -112.080953, 47.004927 ], [ -112.081049, 47.004826 ], [ -112.081198, 47.004689 ], [ -112.081316, 47.004562 ], [ -112.081449, 47.004379 ], [ -112.081568, 47.004191 ], [ -112.081674, 47.003987 ], [ -112.08174, 47.003858 ], [ -112.081806, 47.003692 ], [ -112.081884, 47.003438 ], [ -112.08191, 47.003275 ], [ -112.081934, 47.003066 ], [ -112.08193, 47.002831 ], [ -112.081896, 47.002597 ], [ -112.081853, 47.002371 ], [ -112.081798, 47.002194 ], [ -112.081607, 47.00176 ], [ -112.081184, 47.001198 ], [ -112.079559, 46.99968 ], [ -112.078016, 46.99838 ], [ -112.07758, 46.997912 ], [ -112.077288, 46.997532 ], [ -112.076986, 46.99693 ], [ -112.076889, 46.996514 ], [ -112.076886, 46.996116 ], [ -112.076984, 46.995478 ], [ -112.07795, 46.992584 ], [ -112.078047, 46.991994 ], [ -112.078024, 46.991594 ], [ -112.077935, 46.9912 ], [ -112.077672, 46.990627 ], [ -112.076129, 46.988425 ], [ -112.075762, 46.987771 ], [ -112.075646, 46.98742 ], [ -112.075619, 46.987055 ], [ -112.075663, 46.986679 ], [ -112.075796, 46.986299 ], [ -112.076008, 46.985921 ], [ -112.076502, 46.98539 ], [ -112.077181, 46.984932 ], [ -112.081242, 46.982494 ], [ -112.081853, 46.981972 ], [ -112.082104, 46.981646 ], [ -112.082346, 46.981245 ], [ -112.082526, 46.98074 ], [ -112.082567, 46.980266 ], [ -112.082681, 46.977427 ], [ -112.082826, 46.974499 ], [ -112.083032, 46.973709 ], [ -112.083438, 46.973098 ], [ -112.083941, 46.972667 ], [ -112.084536, 46.97225 ], [ -112.093815, 46.965771 ], [ -112.094034, 46.965596 ], [ -112.094318, 46.965306 ], [ -112.094501, 46.965085 ], [ -112.094642, 46.964864 ], [ -112.094785, 46.964575 ], [ -112.094868, 46.964338 ], [ -112.094926, 46.964081 ], [ -112.094952, 46.963813 ], [ -112.094963, 46.963562 ], [ -112.094964, 46.963005 ], [ -112.094945, 46.962147 ], [ -112.095064, 46.961322 ], [ -112.095315, 46.960775 ], [ -112.095663, 46.960328 ], [ -112.098599, 46.957746 ], [ -112.098975, 46.957432 ], [ -112.099726, 46.956946 ], [ -112.100314, 46.956644 ], [ -112.101038, 46.956326 ], [ -112.103946, 46.955297 ], [ -112.107802, 46.953955 ], [ -112.108475, 46.953671 ], [ -112.108901, 46.953445 ], [ -112.109465, 46.953038 ], [ -112.109979, 46.952469 ], [ -112.110197, 46.952042 ], [ -112.111502, 46.949682 ], [ -112.112324, 46.948952 ], [ -112.113184, 46.948533 ], [ -112.114208, 46.948308 ], [ -112.116111, 46.948021 ], [ -112.117289, 46.947669 ], [ -112.118334, 46.94705 ], [ -112.119549, 46.946068 ], [ -112.122402, 46.943642 ], [ -112.123133, 46.943013 ], [ -112.123553, 46.942583 ], [ -112.12389, 46.942171 ], [ -112.124619, 46.941266 ], [ -112.125571, 46.939982 ], [ -112.126015, 46.939377 ], [ -112.1265, 46.938749 ], [ -112.126751, 46.938397 ], [ -112.126995, 46.938014 ], [ -112.127231, 46.93766 ], [ -112.127472, 46.93708 ], [ -112.127553, 46.936521 ], [ -112.127485, 46.935878 ], [ -112.126037, 46.931011 ], [ -112.125843, 46.930596 ], [ -112.125614, 46.930288 ], [ -112.125356, 46.930017 ], [ -112.125, 46.92973 ], [ -112.122981, 46.928549 ], [ -112.122668, 46.928293 ], [ -112.122315, 46.927871 ], [ -112.122099, 46.927296 ], [ -112.122093, 46.926792 ], [ -112.122341, 46.926128 ], [ -112.12333, 46.924835 ], [ -112.123628, 46.924404 ], [ -112.123835, 46.923877 ], [ -112.123883, 46.923325 ], [ -112.123775, 46.9228 ], [ -112.123494, 46.922251 ], [ -112.123242, 46.921939 ], [ -112.123161, 46.921857 ], [ -112.12174, 46.920823 ], [ -112.121416, 46.920602 ], [ -112.120977, 46.920179 ], [ -112.120697, 46.919775 ], [ -112.120503, 46.919327 ], [ -112.120322, 46.918471 ], [ -112.119667, 46.915666 ], [ -112.11939, 46.915074 ], [ -112.119062, 46.914644 ], [ -112.118506, 46.91421 ], [ -112.116708, 46.913328 ], [ -112.116193, 46.912968 ], [ -112.115472, 46.912187 ], [ -112.115356, 46.911933 ], [ -112.115279, 46.911728 ], [ -112.115241, 46.911454 ], [ -112.11523, 46.911175 ], [ -112.115266, 46.910915 ], [ -112.115368, 46.910602 ], [ -112.115446, 46.910438 ], [ -112.115662, 46.910084 ], [ -112.11604, 46.909673 ], [ -112.119395, 46.907257 ], [ -112.119896, 46.906695 ], [ -112.120633, 46.90538 ], [ -112.120979, 46.904986 ], [ -112.122506, 46.903673 ], [ -112.12294, 46.903177 ], [ -112.123172, 46.902727 ], [ -112.123344, 46.902186 ], [ -112.12337, 46.901665 ], [ -112.12326, 46.90114 ], [ -112.123004, 46.900542 ], [ -112.122296, 46.899463 ], [ -112.118791, 46.893932 ], [ -112.118077, 46.892887 ], [ -112.117488, 46.892253 ], [ -112.11672, 46.891638 ], [ -112.11608, 46.891253 ], [ -112.114112, 46.89021 ], [ -112.110716, 46.888379 ], [ -112.110338, 46.888159 ], [ -112.106096, 46.885885 ], [ -112.101398, 46.88336 ], [ -112.094609, 46.879651 ], [ -112.0931, 46.878959 ], [ -112.091311, 46.878288 ], [ -112.089958, 46.877867 ], [ -112.088521, 46.877511 ], [ -112.069016, 46.872724 ], [ -112.049279, 46.867857 ], [ -112.047103, 46.867189 ], [ -112.044993, 46.866382 ], [ -112.043719, 46.865827 ], [ -112.042541, 46.865241 ], [ -112.040586, 46.864168 ], [ -112.039263, 46.863298 ], [ -112.037988, 46.862365 ], [ -112.036738, 46.86133 ], [ -112.014076, 46.842104 ], [ -112.012788, 46.840941 ], [ -112.011749, 46.839918 ], [ -112.010445, 46.83844 ], [ -112.009025, 46.83667 ], [ -112.007922, 46.83499 ], [ -112.007123, 46.833605 ], [ -112.006361, 46.832073 ], [ -112.005882, 46.830963 ], [ -112.003109, 46.824179 ], [ -112.002795, 46.823308 ], [ -112.001559, 46.820272 ], [ -112.001405, 46.819943 ], [ -112.001005, 46.818846 ], [ -112.000667, 46.817632 ], [ -112.000578, 46.816809 ], [ -112.000493, 46.815794 ], [ -112.000516, 46.814928 ], [ -112.000693, 46.813761 ], [ -112.001162, 46.812127 ], [ -112.001628, 46.811112 ], [ -112.002462, 46.809713 ], [ -112.003317, 46.808598 ], [ -112.004049, 46.80782 ], [ -112.005118, 46.806834 ], [ -112.006592, 46.805739 ], [ -112.028016, 46.792156 ], [ -112.029741, 46.790912 ], [ -112.030745, 46.79008 ], [ -112.031484, 46.78938 ], [ -112.032257, 46.788498 ], [ -112.033266, 46.787176 ], [ -112.033873, 46.786179 ], [ -112.034356, 46.785153 ], [ -112.03474, 46.784222 ], [ -112.035041, 46.783106 ], [ -112.035281, 46.78179 ], [ -112.035332, 46.780429 ], [ -112.035162, 46.778932 ], [ -112.034994, 46.7781 ], [ -112.034623, 46.77676 ], [ -112.031439, 46.767593 ], [ -112.030872, 46.766116 ], [ -112.03058, 46.765566 ], [ -112.0298, 46.76452 ], [ -112.029051, 46.763776 ], [ -112.027625, 46.762715 ], [ -112.021142, 46.759474 ], [ -112.019784, 46.758674 ], [ -112.018427, 46.757701 ], [ -112.017026, 46.756401 ], [ -112.01646, 46.75581 ], [ -112.015787, 46.754949 ], [ -112.015034, 46.753726 ], [ -112.014675, 46.752957 ], [ -112.014369, 46.752178 ], [ -112.014113, 46.751252 ], [ -112.013978, 46.7503 ], [ -112.013965, 46.748917 ], [ -112.01407, 46.747974 ], [ -112.014425, 46.74657 ], [ -112.017111, 46.737855 ], [ -112.017375, 46.736784 ], [ -112.017607, 46.735355 ], [ -112.017673, 46.734409 ], [ -112.017685, 46.733581 ], [ -112.017588, 46.732104 ], [ -112.017413, 46.730961 ], [ -112.016851, 46.728893 ], [ -112.016052, 46.726997 ], [ -112.015229, 46.725474 ], [ -112.014031, 46.723297 ], [ -112.013406, 46.721963 ], [ -112.012932, 46.720654 ], [ -112.012536, 46.719097 ], [ -112.012339, 46.717599 ], [ -112.012283, 46.716345 ], [ -112.012185, 46.707222 ], [ -112.012075, 46.70024 ], [ -112.011602, 46.660701 ], [ -112.011601, 46.660313 ], [ -112.011436, 46.648193 ], [ -112.011441, 46.648028 ], [ -112.011427, 46.646569 ], [ -112.011246, 46.631754 ], [ -112.011146, 46.621062 ], [ -112.011132, 46.619553 ], [ -112.01109, 46.616805 ], [ -112.011059, 46.614798 ], [ -112.011048, 46.61406 ], [ -112.011037, 46.613709 ], [ -112.010993, 46.613319 ], [ -112.010941, 46.613077 ], [ -112.010877, 46.612674 ], [ -112.010838, 46.612474 ], [ -112.010746, 46.61207 ], [ -112.01064, 46.611666 ], [ -112.010587, 46.611464 ], [ -112.010508, 46.611263 ], [ -112.010314, 46.610728 ], [ -112.010256, 46.610545 ], [ -112.010198, 46.610369 ], [ -112.009915, 46.609824 ], [ -112.009739, 46.609444 ], [ -112.009564, 46.609128 ], [ -112.009295, 46.608718 ], [ -112.006524, 46.603944 ], [ -112.003906, 46.599455 ], [ -112.002681, 46.597363 ], [ -112.001205, 46.594784 ], [ -112.0, 46.592799 ], [ -111.999632, 46.592286 ], [ -111.999301, 46.591861 ], [ -111.998522, 46.590983 ], [ -111.99828, 46.590699 ], [ -111.997972, 46.590398 ], [ -111.996867, 46.589396 ], [ -111.996488, 46.589096 ], [ -111.995735, 46.58854 ], [ -111.988743, 46.583855 ], [ -111.983795, 46.580551 ], [ -111.98049, 46.578347 ], [ -111.978312, 46.576892 ], [ -111.976196, 46.575478 ], [ -111.970612, 46.571744 ], [ -111.969019, 46.570651 ], [ -111.966637, 46.569071 ], [ -111.957631, 46.563066 ], [ -111.956867, 46.562459 ], [ -111.956078, 46.56178 ], [ -111.955528, 46.561278 ], [ -111.95503, 46.560765 ], [ -111.954464, 46.560133 ], [ -111.953992, 46.559508 ], [ -111.953623, 46.558994 ], [ -111.953365, 46.558587 ], [ -111.953022, 46.558003 ], [ -111.95261, 46.557224 ], [ -111.951443, 46.55468 ], [ -111.946695, 46.544203 ], [ -111.946304, 46.54331 ], [ -111.945744, 46.542172 ], [ -111.945185, 46.540831 ], [ -111.944611, 46.539567 ], [ -111.943999, 46.538252 ], [ -111.943392, 46.536869 ], [ -111.941186, 46.532081 ], [ -111.940903, 46.53142 ], [ -111.940559, 46.530629 ], [ -111.940379, 46.530109 ], [ -111.940293, 46.529684 ], [ -111.940268, 46.529241 ], [ -111.940319, 46.528857 ], [ -111.940422, 46.528432 ], [ -111.940568, 46.528025 ], [ -111.94074, 46.527676 ], [ -111.940971, 46.527322 ], [ -111.941246, 46.527003 ], [ -111.941667, 46.526619 ], [ -111.943134, 46.525497 ], [ -111.943589, 46.525125 ], [ -111.94401, 46.524718 ], [ -111.944344, 46.524346 ], [ -111.944662, 46.523974 ], [ -111.944902, 46.523625 ], [ -111.945151, 46.52323 ], [ -111.9454, 46.522775 ], [ -111.945606, 46.522326 ], [ -111.945744, 46.521966 ], [ -111.945855, 46.521511 ], [ -111.947984, 46.511742 ], [ -111.948095, 46.51137 ], [ -111.948361, 46.510661 ], [ -111.949408, 46.508074 ], [ -111.952344, 46.500837 ], [ -111.952541, 46.500393 ], [ -111.952825, 46.499944 ], [ -111.953168, 46.49946 ], [ -111.953494, 46.499105 ], [ -111.953932, 46.498775 ], [ -111.954764, 46.49819 ], [ -111.958575, 46.495909 ], [ -111.959245, 46.495501 ], [ -111.960052, 46.495017 ], [ -111.961021, 46.494414 ], [ -111.961871, 46.493912 ], [ -111.962729, 46.493415 ], [ -111.963579, 46.492825 ], [ -111.964025, 46.4925 ], [ -111.964661, 46.492015 ], [ -111.965124, 46.491625 ], [ -111.965656, 46.491123 ], [ -111.966369, 46.49042 ], [ -111.96709, 46.489651 ], [ -111.976325, 46.479522 ], [ -111.976891, 46.478848 ], [ -111.977312, 46.47834 ], [ -111.977733, 46.477808 ], [ -111.977973, 46.477465 ], [ -111.978127, 46.477211 ], [ -111.978282, 46.476974 ], [ -111.97884, 46.475928 ], [ -111.979217, 46.475042 ], [ -111.980033, 46.473044 ], [ -111.980271, 46.472374 ], [ -111.980435, 46.471976 ], [ -111.980677, 46.471349 ], [ -111.980952, 46.470648 ], [ -111.981239, 46.4699 ], [ -111.981493, 46.46921 ], [ -111.981736, 46.468592 ], [ -111.981874, 46.468256 ], [ -111.982316, 46.467018 ], [ -111.982732, 46.465939 ], [ -111.982851, 46.465572 ], [ -111.983251, 46.464294 ], [ -111.983315, 46.464025 ], [ -111.983475, 46.463313 ], [ -111.983818, 46.462054 ], [ -111.98424, 46.460487 ], [ -111.985346, 46.456259 ], [ -111.985844, 46.45432 ], [ -111.986814, 46.450701 ], [ -111.986994, 46.449938 ], [ -111.987251, 46.449004 ], [ -111.987543, 46.4483 ], [ -111.987809, 46.447709 ], [ -111.988255, 46.446833 ], [ -111.990024, 46.443882 ], [ -111.990719, 46.44254 ], [ -111.99283, 46.438169 ], [ -111.995886, 46.431816 ], [ -111.996143, 46.431165 ], [ -111.996341, 46.430644 ], [ -111.996598, 46.42984 ], [ -111.996753, 46.429213 ], [ -111.99689, 46.428609 ], [ -111.997405, 46.425385 ], [ -111.997642, 46.424314 ], [ -111.997932, 46.423545 ], [ -111.998107, 46.423114 ], [ -111.99835, 46.422586 ], [ -111.998575, 46.422164 ], [ -111.998884, 46.421653 ], [ -111.999228, 46.421145 ], [ -111.999447, 46.420848 ], [ -111.999923, 46.420267 ], [ -112.000156, 46.42 ], [ -112.000433, 46.41971 ], [ -112.00089, 46.419258 ], [ -112.001482, 46.418746 ], [ -112.002113, 46.418226 ], [ -112.00272, 46.417745 ], [ -112.002961, 46.417554 ], [ -112.003548, 46.417078 ], [ -112.004211, 46.41654 ], [ -112.004746, 46.416099 ], [ -112.005461, 46.41553 ], [ -112.005985, 46.415112 ], [ -112.006394, 46.414775 ], [ -112.006854, 46.414405 ], [ -112.007245, 46.4141 ], [ -112.00765, 46.413758 ], [ -112.00797, 46.413501 ], [ -112.008169, 46.413338 ], [ -112.008593, 46.412997 ], [ -112.009014, 46.412645 ], [ -112.009385, 46.412341 ], [ -112.009697, 46.412025 ], [ -112.010255, 46.411528 ], [ -112.010946, 46.410853 ], [ -112.011431, 46.410352 ], [ -112.011895, 46.409867 ], [ -112.012165, 46.409569 ], [ -112.012675, 46.408992 ], [ -112.013067, 46.408517 ], [ -112.013404, 46.408107 ], [ -112.013911, 46.407447 ], [ -112.014218, 46.407046 ], [ -112.014492, 46.406653 ], [ -112.015033, 46.405845 ], [ -112.01524, 46.405542 ], [ -112.015368, 46.405329 ], [ -112.015741, 46.40471 ], [ -112.015972, 46.404308 ], [ -112.016318, 46.403688 ], [ -112.016624, 46.403056 ], [ -112.01703, 46.402204 ], [ -112.017522, 46.401159 ], [ -112.017917, 46.400311 ], [ -112.019197, 46.397512 ], [ -112.019961, 46.395938 ], [ -112.020503, 46.394858 ], [ -112.020846, 46.394173 ], [ -112.021172, 46.393579 ], [ -112.021321, 46.393351 ], [ -112.021496, 46.393063 ], [ -112.021714, 46.392713 ], [ -112.021925, 46.392391 ], [ -112.022307, 46.391799 ], [ -112.022576, 46.391431 ], [ -112.02269, 46.391255 ], [ -112.022776, 46.391138 ], [ -112.023072, 46.390745 ], [ -112.023396, 46.390333 ], [ -112.023636, 46.390016 ], [ -112.02407, 46.389472 ], [ -112.02447, 46.388962 ], [ -112.025293, 46.387893 ], [ -112.025518, 46.387587 ], [ -112.025835, 46.387153 ], [ -112.02604, 46.386874 ], [ -112.026296, 46.386489 ], [ -112.026502, 46.386192 ], [ -112.026698, 46.385898 ], [ -112.027204, 46.385069 ], [ -112.027659, 46.384252 ], [ -112.027743, 46.384088 ], [ -112.0278, 46.383963 ], [ -112.02782, 46.383925 ], [ -112.027998, 46.383561 ], [ -112.028106, 46.383379 ], [ -112.028359, 46.382926 ], [ -112.028737, 46.382022 ], [ -112.029617, 46.379591 ], [ -112.030115, 46.378271 ], [ -112.030424, 46.377365 ], [ -112.030767, 46.376572 ], [ -112.031059, 46.375944 ], [ -112.033059, 46.372077 ], [ -112.033626, 46.37091 ], [ -112.033917, 46.370342 ], [ -112.034252, 46.369714 ], [ -112.034492, 46.369293 ], [ -112.03481, 46.368766 ], [ -112.035136, 46.368298 ], [ -112.035445, 46.367848 ], [ -112.03584, 46.367386 ], [ -112.036295, 46.366877 ], [ -112.036879, 46.366249 ], [ -112.043015, 46.359532 ], [ -112.043436, 46.359053 ], [ -112.043754, 46.358638 ], [ -112.044011, 46.358283 ], [ -112.044234, 46.357927 ], [ -112.044475, 46.357501 ], [ -112.044698, 46.357062 ], [ -112.044852, 46.356719 ], [ -112.044972, 46.356357 ], [ -112.045093, 46.355972 ], [ -112.045204, 46.355534 ], [ -112.045281, 46.355173 ], [ -112.04535, 46.354693 ], [ -112.045384, 46.354284 ], [ -112.045376, 46.353828 ], [ -112.045359, 46.353206 ], [ -112.045058, 46.350658 ], [ -112.045032, 46.350072 ], [ -112.045075, 46.349545 ], [ -112.045178, 46.349154 ], [ -112.045317, 46.348787 ], [ -112.045481, 46.348449 ], [ -112.045687, 46.348135 ], [ -112.04591, 46.347851 ], [ -112.046202, 46.347519 ], [ -112.048562, 46.345392 ], [ -112.048862, 46.34509 ], [ -112.049146, 46.34477 ], [ -112.04936, 46.344467 ], [ -112.04954, 46.344153 ], [ -112.049738, 46.343721 ], [ -112.049849, 46.343241 ], [ -112.049884, 46.343028 ], [ -112.049892, 46.342755 ], [ -112.049884, 46.3424 ], [ -112.049806, 46.341931 ], [ -112.049396, 46.34035 ], [ -112.049218, 46.339673 ], [ -112.049159, 46.33933 ], [ -112.049143, 46.339002 ], [ -112.049168, 46.338597 ], [ -112.049229, 46.338284 ], [ -112.049292, 46.338051 ], [ -112.049341, 46.337839 ], [ -112.049439, 46.337616 ], [ -112.049559, 46.337404 ], [ -112.0497, 46.337162 ], [ -112.049936, 46.33687 ], [ -112.05015, 46.336595 ], [ -112.054836, 46.331763 ], [ -112.055497, 46.33117 ], [ -112.055875, 46.33085 ], [ -112.056372, 46.33053 ], [ -112.05687, 46.330263 ], [ -112.057445, 46.330044 ], [ -112.058132, 46.329789 ], [ -112.060261, 46.329273 ], [ -112.060879, 46.329137 ], [ -112.061445, 46.328959 ], [ -112.061994, 46.328752 ], [ -112.062561, 46.32845 ], [ -112.06317, 46.3281 ], [ -112.063625, 46.327786 ], [ -112.064054, 46.327371 ], [ -112.064466, 46.326891 ], [ -112.06523, 46.325741 ], [ -112.065677, 46.325125 ], [ -112.066028, 46.324674 ], [ -112.06638, 46.324318 ], [ -112.066904, 46.323868 ], [ -112.067505, 46.323501 ], [ -112.06826, 46.323109 ], [ -112.069642, 46.322445 ], [ -112.070509, 46.322007 ], [ -112.071195, 46.321663 ], [ -112.071728, 46.321378 ], [ -112.07238, 46.320958 ], [ -112.073067, 46.320519 ], [ -112.073762, 46.320045 ], [ -112.074277, 46.319582 ], [ -112.074732, 46.319138 ], [ -112.075169, 46.318705 ], [ -112.075599, 46.318189 ], [ -112.076053, 46.317626 ], [ -112.076371, 46.317182 ], [ -112.076732, 46.316589 ], [ -112.077058, 46.315949 ], [ -112.077616, 46.31452 ], [ -112.077985, 46.313459 ], [ -112.078268, 46.312795 ], [ -112.078491, 46.31232 ], [ -112.0788, 46.311751 ], [ -112.079212, 46.31117 ], [ -112.079718, 46.310435 ], [ -112.0808, 46.308627 ], [ -112.081126, 46.30801 ], [ -112.081375, 46.307316 ], [ -112.081512, 46.306724 ], [ -112.081607, 46.306131 ], [ -112.081735, 46.304998 ], [ -112.081856, 46.304358 ], [ -112.082079, 46.303688 ], [ -112.082319, 46.303172 ], [ -112.082594, 46.302692 ], [ -112.082946, 46.302205 ], [ -112.083306, 46.301814 ], [ -112.083804, 46.301334 ], [ -112.08447, 46.300831 ], [ -112.085263, 46.300355 ], [ -112.086027, 46.299964 ], [ -112.089752, 46.298446 ], [ -112.090979, 46.297859 ], [ -112.091958, 46.297337 ], [ -112.092799, 46.296756 ], [ -112.093486, 46.296287 ], [ -112.094104, 46.295694 ], [ -112.09473, 46.295036 ], [ -112.095159, 46.294538 ], [ -112.09558, 46.293992 ], [ -112.09594, 46.293381 ], [ -112.096445, 46.292397 ], [ -112.096685, 46.291614 ], [ -112.09702, 46.290422 ], [ -112.097449, 46.288406 ], [ -112.097724, 46.287409 ], [ -112.098136, 46.286312 ], [ -112.099116, 46.284397 ], [ -112.099274, 46.284063 ], [ -112.10053, 46.281349 ], [ -112.101118, 46.280084 ], [ -112.102891, 46.276318 ], [ -112.104027, 46.273935 ], [ -112.104859, 46.272141 ], [ -112.105342, 46.271125 ], [ -112.106274, 46.269146 ], [ -112.107087, 46.267404 ], [ -112.111234, 46.258546 ], [ -112.112659, 46.255466 ], [ -112.114521, 46.251525 ], [ -112.114976, 46.250676 ], [ -112.115508, 46.249899 ], [ -112.115937, 46.249329 ], [ -112.116633, 46.248581 ], [ -112.117748, 46.247554 ], [ -112.11925, 46.246504 ], [ -112.12022, 46.245934 ], [ -112.120967, 46.245566 ], [ -112.121954, 46.245133 ], [ -112.124992, 46.244052 ], [ -112.13288, 46.241298 ], [ -112.133387, 46.24112 ], [ -112.138622, 46.239291 ], [ -112.145034, 46.237065 ], [ -112.146141, 46.236745 ], [ -112.147008, 46.236519 ], [ -112.147806, 46.236394 ], [ -112.148459, 46.236305 ], [ -112.149265, 46.236246 ], [ -112.150089, 46.236222 ], [ -112.151042, 46.236246 ], [ -112.151883, 46.236317 ], [ -112.152699, 46.236436 ], [ -112.153471, 46.236584 ], [ -112.154474, 46.236837 ], [ -112.15899, 46.238152 ], [ -112.160595, 46.238543 ], [ -112.162483, 46.238947 ], [ -112.163367, 46.23922 ], [ -112.164054, 46.239529 ], [ -112.164698, 46.239897 ], [ -112.165273, 46.24033 ], [ -112.166844, 46.241642 ], [ -112.167307, 46.241963 ], [ -112.1685, 46.242669 ], [ -112.169144, 46.243085 ], [ -112.169659, 46.24356 ], [ -112.170912, 46.244966 ], [ -112.171367, 46.245364 ], [ -112.172131, 46.245898 ], [ -112.173204, 46.246522 ], [ -112.174276, 46.247169 ], [ -112.174817, 46.24762 ], [ -112.175298, 46.24816 ], [ -112.175555, 46.248587 ], [ -112.17577, 46.248973 ], [ -112.175924, 46.249424 ], [ -112.176336, 46.250552 ], [ -112.176517, 46.25092 ], [ -112.17674, 46.251276 ], [ -112.176997, 46.251626 ], [ -112.177418, 46.252083 ], [ -112.177787, 46.252344 ], [ -112.178165, 46.252617 ], [ -112.180775, 46.254129 ], [ -112.181007, 46.254269 ], [ -112.183097, 46.255454 ], [ -112.183493, 46.255702 ], [ -112.184164, 46.256171 ], [ -112.184905, 46.256737 ], [ -112.185365, 46.257141 ], [ -112.185885, 46.257562 ], [ -112.186185, 46.2578 ], [ -112.186531, 46.258043 ], [ -112.186972, 46.258275 ], [ -112.187322, 46.258422 ], [ -112.187774, 46.258598 ], [ -112.188155, 46.258726 ], [ -112.188842, 46.25893 ], [ -112.190061, 46.259233 ], [ -112.194417, 46.260296 ], [ -112.194914, 46.260425 ], [ -112.197467, 46.261049 ], [ -112.198131, 46.261215 ], [ -112.198816, 46.261348 ], [ -112.200563, 46.261639 ], [ -112.2012, 46.261735 ], [ -112.201697, 46.261796 ], [ -112.202216, 46.261831 ], [ -112.202661, 46.261847 ], [ -112.203293, 46.261844 ], [ -112.203843, 46.26181 ], [ -112.204643, 46.261713 ], [ -112.205502, 46.261541 ], [ -112.206283, 46.261328 ], [ -112.207158, 46.260978 ], [ -112.20773, 46.260725 ], [ -112.208199, 46.260464 ], [ -112.209872, 46.259361 ], [ -112.210845, 46.258723 ], [ -112.211437, 46.258407 ], [ -112.21171, 46.258294 ], [ -112.211974, 46.258207 ], [ -112.212216, 46.258142 ], [ -112.212463, 46.258092 ], [ -112.212751, 46.258048 ], [ -112.213051, 46.258024 ], [ -112.213334, 46.258019 ], [ -112.213692, 46.258035 ], [ -112.213988, 46.258065 ], [ -112.214247, 46.258108 ], [ -112.214549, 46.258186 ], [ -112.21472, 46.258241 ], [ -112.214928, 46.258313 ], [ -112.21526, 46.258456 ], [ -112.215539, 46.258605 ], [ -112.215859, 46.258826 ], [ -112.216123, 46.259059 ], [ -112.216344, 46.259307 ], [ -112.216538, 46.259564 ], [ -112.217304, 46.260578 ], [ -112.217586, 46.260888 ], [ -112.217887, 46.26118 ], [ -112.218436, 46.261654 ], [ -112.219097, 46.262058 ], [ -112.219818, 46.262508 ], [ -112.220179, 46.262823 ], [ -112.220462, 46.263203 ], [ -112.220625, 46.263654 ], [ -112.220625, 46.264105 ], [ -112.220513, 46.26455 ], [ -112.220273, 46.264918 ], [ -112.21993, 46.265238 ], [ -112.219466, 46.265558 ], [ -112.218514, 46.266039 ], [ -112.218288, 46.266167 ], [ -112.218079, 46.266291 ], [ -112.217885, 46.266411 ], [ -112.217737, 46.266539 ], [ -112.217605, 46.266696 ], [ -112.217501, 46.266818 ], [ -112.217396, 46.266989 ], [ -112.21734, 46.267123 ], [ -112.217303, 46.267314 ], [ -112.217283, 46.267445 ], [ -112.217325, 46.267714 ], [ -112.217476, 46.26824 ], [ -112.217544, 46.268438 ], [ -112.217592, 46.268538 ], [ -112.217628, 46.268615 ], [ -112.217724, 46.268751 ], [ -112.217818, 46.268858 ], [ -112.217936, 46.268959 ], [ -112.21813, 46.269104 ], [ -112.218353, 46.26922 ], [ -112.218727, 46.26937 ], [ -112.219166, 46.269489 ], [ -112.219721, 46.269609 ], [ -112.220202, 46.269698 ], [ -112.220646, 46.269797 ], [ -112.220996, 46.2699 ], [ -112.22144, 46.27005 ], [ -112.222711, 46.270631 ], [ -112.223277, 46.270851 ], [ -112.22399, 46.271017 ], [ -112.224668, 46.271076 ], [ -112.225371, 46.270993 ], [ -112.227174, 46.270608 ], [ -112.227989, 46.270507 ], [ -112.22883, 46.270519 ], [ -112.229611, 46.270726 ], [ -112.232341, 46.271693 ], [ -112.232993, 46.27186 ], [ -112.233723, 46.271966 ], [ -112.234744, 46.271978 ], [ -112.239606, 46.271805 ], [ -112.242182, 46.271693 ], [ -112.246347, 46.271502 ], [ -112.246967, 46.271459 ], [ -112.247491, 46.271415 ], [ -112.247911, 46.271379 ], [ -112.248545, 46.271312 ], [ -112.249143, 46.271217 ], [ -112.250763, 46.270938 ], [ -112.251919, 46.270715 ], [ -112.254271, 46.270264 ], [ -112.255138, 46.270086 ], [ -112.255979, 46.269973 ], [ -112.256923, 46.269854 ], [ -112.257798, 46.269753 ], [ -112.258871, 46.269706 ], [ -112.259953, 46.269694 ], [ -112.260408, 46.269688 ], [ -112.260811, 46.269688 ], [ -112.265927, 46.269838 ], [ -112.266364, 46.269845 ], [ -112.268516, 46.269903 ], [ -112.26928, 46.269923 ], [ -112.269822, 46.269932 ], [ -112.270297, 46.269936 ], [ -112.270632, 46.269932 ], [ -112.271986, 46.269899 ], [ -112.272496, 46.269882 ], [ -112.272871, 46.269875 ], [ -112.273201, 46.26988 ], [ -112.273496, 46.269893 ], [ -112.273848, 46.269921 ], [ -112.274451, 46.269986 ], [ -112.275304, 46.270084 ], [ -112.275736, 46.270129 ], [ -112.276214, 46.270171 ], [ -112.276581, 46.270192 ], [ -112.276954, 46.270201 ], [ -112.277383, 46.270195 ], [ -112.277783, 46.270179 ], [ -112.278217, 46.270151 ], [ -112.278636, 46.270112 ], [ -112.27903, 46.270058 ], [ -112.279521, 46.269977 ], [ -112.280084, 46.269869 ], [ -112.280575, 46.269771 ], [ -112.281036, 46.269673 ], [ -112.281492, 46.269558 ], [ -112.281919, 46.269443 ], [ -112.282407, 46.269304 ], [ -112.28289, 46.269153 ], [ -112.283292, 46.269013 ], [ -112.283616, 46.26889 ], [ -112.283914, 46.268764 ], [ -112.284169, 46.268638 ], [ -112.284394, 46.268516 ], [ -112.284601, 46.268394 ], [ -112.284775, 46.268275 ], [ -112.284955, 46.268131 ], [ -112.285087, 46.268013 ], [ -112.285191, 46.267897 ], [ -112.285277, 46.267793 ], [ -112.285357, 46.267683 ], [ -112.28543, 46.267542 ], [ -112.285505, 46.267379 ], [ -112.285561, 46.267208 ], [ -112.285596, 46.267049 ], [ -112.28561, 46.266897 ], [ -112.285612, 46.266763 ], [ -112.285599, 46.266613 ], [ -112.285569, 46.266448 ], [ -112.285505, 46.266261 ], [ -112.28543, 46.266096 ], [ -112.285194, 46.265664 ], [ -112.285025, 46.265406 ], [ -112.284866, 46.265152 ], [ -112.284775, 46.264974 ], [ -112.284703, 46.264813 ], [ -112.284646, 46.264655 ], [ -112.284614, 46.264507 ], [ -112.284598, 46.264379 ], [ -112.284598, 46.26421 ], [ -112.284617, 46.264062 ], [ -112.284665, 46.263899 ], [ -112.284727, 46.263728 ], [ -112.284759, 46.263669 ], [ -112.284821, 46.263548 ], [ -112.284909, 46.263418 ], [ -112.284995, 46.263313 ], [ -112.285121, 46.263177 ], [ -112.285277, 46.263038 ], [ -112.285408, 46.262932 ], [ -112.285591, 46.262814 ], [ -112.285765, 46.262716 ], [ -112.285998, 46.262614 ], [ -112.286237, 46.262523 ], [ -112.286454, 46.262454 ], [ -112.286722, 46.262397 ], [ -112.286953, 46.262358 ], [ -112.287205, 46.262334 ], [ -112.287431, 46.262324 ], [ -112.287599, 46.262324 ], [ -112.287755, 46.262332 ], [ -112.287908, 46.262343 ], [ -112.28809, 46.262371 ], [ -112.288289, 46.262408 ], [ -112.288533, 46.262469 ], [ -112.28878, 46.262545 ], [ -112.289056, 46.262641 ], [ -112.28941, 46.262779 ], [ -112.292288, 46.263915 ], [ -112.295423, 46.265141 ], [ -112.295772, 46.265276 ], [ -112.296799, 46.265681 ], [ -112.297288, 46.265857 ], [ -112.29766, 46.26597 ], [ -112.297998, 46.266064 ], [ -112.298326, 46.266135 ], [ -112.298693, 46.266202 ], [ -112.29902, 46.266252 ], [ -112.299407, 46.266294 ], [ -112.299973, 46.26635 ], [ -112.301962, 46.266518 ], [ -112.303677, 46.266665 ], [ -112.30416, 46.266715 ], [ -112.304799, 46.266799 ], [ -112.305829, 46.266965 ], [ -112.307302, 46.26725 ], [ -112.307798, 46.267339 ], [ -112.308222, 46.267413 ], [ -112.308627, 46.267476 ], [ -112.308997, 46.267518 ], [ -112.309343, 46.267554 ], [ -112.309617, 46.267578 ], [ -112.309941, 46.267591 ], [ -112.310258, 46.267602 ], [ -112.310641, 46.267611 ], [ -112.310985, 46.267613 ], [ -112.311296, 46.267607 ], [ -112.311658, 46.267591 ], [ -112.312055, 46.267565 ], [ -112.312425, 46.267535 ], [ -112.312795, 46.267492 ], [ -112.313219, 46.267435 ], [ -112.313683, 46.267359 ], [ -112.31408, 46.267281 ], [ -112.314484, 46.267191 ], [ -112.314867, 46.26709 ], [ -112.315256, 46.26698 ], [ -112.315717, 46.266837 ], [ -112.316613, 46.266561 ], [ -112.317018, 46.266437 ], [ -112.317471, 46.266313 ], [ -112.317997, 46.266179 ], [ -112.318925, 46.265949 ], [ -112.320151, 46.265632 ], [ -112.321393, 46.265313 ], [ -112.325427, 46.26428 ], [ -112.326138, 46.264095 ], [ -112.326859, 46.263917 ], [ -112.327936, 46.263635 ], [ -112.330428, 46.263002 ], [ -112.333211, 46.262287 ], [ -112.334007, 46.262079 ], [ -112.335292, 46.261753 ], [ -112.335686, 46.261652 ], [ -112.336028, 46.261559 ], [ -112.33637, 46.261454 ], [ -112.33667, 46.261355 ], [ -112.336988, 46.261243 ], [ -112.337325, 46.261115 ], [ -112.33768, 46.260971 ], [ -112.338038, 46.260813 ], [ -112.338363, 46.260662 ], [ -112.338625, 46.26053 ], [ -112.338933, 46.260366 ], [ -112.340256, 46.259429 ], [ -112.341003, 46.258829 ], [ -112.341337, 46.25845 ], [ -112.341646, 46.258088 ], [ -112.342041, 46.257506 ], [ -112.342264, 46.257085 ], [ -112.342513, 46.256616 ], [ -112.342736, 46.256052 ], [ -112.343048, 46.25519 ], [ -112.343088, 46.254628 ], [ -112.343114, 46.25404 ], [ -112.342997, 46.253333 ], [ -112.342814, 46.252527 ], [ -112.342556, 46.25188 ], [ -112.341586, 46.249939 ], [ -112.341209, 46.248971 ], [ -112.340942, 46.248152 ], [ -112.340797, 46.247393 ], [ -112.340711, 46.246752 ], [ -112.340698, 46.245956 ], [ -112.340797, 46.24509 ], [ -112.340934, 46.2443 ], [ -112.341088, 46.243617 ], [ -112.341363, 46.242745 ], [ -112.343732, 46.236132 ], [ -112.343955, 46.235443 ], [ -112.344213, 46.23479 ], [ -112.34459, 46.234178 ], [ -112.345088, 46.233513 ], [ -112.346384, 46.231827 ], [ -112.346848, 46.231067 ], [ -112.347062, 46.230402 ], [ -112.347208, 46.229666 ], [ -112.34738, 46.228247 ], [ -112.347457, 46.227659 ], [ -112.347706, 46.22662 ], [ -112.348072, 46.225486 ], [ -112.348787, 46.223592 ], [ -112.349165, 46.22241 ], [ -112.349268, 46.221798 ], [ -112.349251, 46.221163 ], [ -112.348908, 46.218621 ], [ -112.348822, 46.218081 ], [ -112.348822, 46.217392 ], [ -112.348959, 46.216762 ], [ -112.34944, 46.215301 ], [ -112.349521, 46.214586 ], [ -112.349491, 46.214013 ], [ -112.349328, 46.213591 ], [ -112.349028, 46.213021 ], [ -112.348633, 46.212492 ], [ -112.348169, 46.211999 ], [ -112.34762, 46.211619 ], [ -112.346856, 46.211156 ], [ -112.345869, 46.21058 ], [ -112.3452, 46.210051 ], [ -112.344728, 46.209576 ], [ -112.343234, 46.207925 ], [ -112.342659, 46.207307 ], [ -112.341921, 46.206677 ], [ -112.340814, 46.205816 ], [ -112.34041, 46.205465 ], [ -112.340067, 46.205085 ], [ -112.339802, 46.204693 ], [ -112.339704, 46.204467 ], [ -112.339636, 46.204269 ], [ -112.339591, 46.204027 ], [ -112.339612, 46.20382 ], [ -112.339732, 46.203256 ], [ -112.340033, 46.20262 ], [ -112.340582, 46.201913 ], [ -112.341621, 46.200885 ], [ -112.342062, 46.200298 ], [ -112.342242, 46.199944 ], [ -112.342396, 46.199584 ], [ -112.342597, 46.199091 ], [ -112.342775, 46.198631 ], [ -112.343062, 46.198034 ], [ -112.343303, 46.197541 ], [ -112.343792, 46.196904 ], [ -112.344693, 46.196127 ], [ -112.345387, 46.19542 ], [ -112.345729, 46.194938 ], [ -112.345917, 46.194643 ], [ -112.346069, 46.194349 ], [ -112.346166, 46.194045 ], [ -112.346238, 46.193697 ], [ -112.34623, 46.193103 ], [ -112.345941, 46.190673 ], [ -112.345878, 46.189902 ], [ -112.345728, 46.189213 ], [ -112.345709, 46.188344 ], [ -112.345571, 46.187533 ], [ -112.345558, 46.186912 ], [ -112.345564, 46.185992 ], [ -112.345749, 46.183453 ], [ -112.346234, 46.177623 ], [ -112.346347, 46.176821 ], [ -112.346473, 46.176275 ], [ -112.34671, 46.175728 ], [ -112.347062, 46.17511 ], [ -112.347483, 46.174486 ], [ -112.34822, 46.173702 ], [ -112.349208, 46.17291 ], [ -112.3521, 46.171121 ], [ -112.352701, 46.170843 ], [ -112.353354, 46.170627 ], [ -112.354238, 46.170443 ], [ -112.355396, 46.170378 ], [ -112.356246, 46.170461 ], [ -112.358186, 46.170764 ], [ -112.359293, 46.170788 ], [ -112.360246, 46.170669 ], [ -112.361216, 46.170425 ], [ -112.362177, 46.170093 ], [ -112.362941, 46.16973 ], [ -112.363559, 46.169296 ], [ -112.364125, 46.168743 ], [ -112.364529, 46.168119 ], [ -112.365267, 46.167103 ], [ -112.365816, 46.166663 ], [ -112.3664, 46.166336 ], [ -112.367129, 46.166098 ], [ -112.367868, 46.165967 ], [ -112.368692, 46.165944 ], [ -112.371773, 46.166039 ], [ -112.372811, 46.166015 ], [ -112.37367, 46.165902 ], [ -112.374588, 46.165706 ], [ -112.375592, 46.165379 ], [ -112.376571, 46.164951 ], [ -112.377318, 46.164529 ], [ -112.378076, 46.163952 ], [ -112.378262, 46.163762 ], [ -112.378614, 46.163364 ], [ -112.378914, 46.162965 ], [ -112.379469, 46.162169 ], [ -112.382055, 46.158245 ], [ -112.384021, 46.155308 ], [ -112.385566, 46.152959 ], [ -112.387334, 46.150272 ], [ -112.388458, 46.14862 ], [ -112.389451, 46.147108 ], [ -112.391789, 46.143594 ], [ -112.398669, 46.133222 ], [ -112.400972, 46.129712 ], [ -112.4066, 46.121302 ], [ -112.407393, 46.120004 ], [ -112.408182, 46.118582 ], [ -112.408541, 46.117899 ], [ -112.409937, 46.114817 ], [ -112.411055, 46.112333 ], [ -112.412388, 46.109365 ], [ -112.413655, 46.106653 ], [ -112.414778, 46.10418 ], [ -112.415206, 46.103314 ], [ -112.415668, 46.102487 ], [ -112.415895, 46.102106 ], [ -112.416464, 46.101176 ], [ -112.417083, 46.100254 ], [ -112.418499, 46.098356 ], [ -112.418915, 46.09769 ], [ -112.419526, 46.096677 ], [ -112.420233, 46.095398 ], [ -112.422479, 46.091058 ], [ -112.424336, 46.087469 ], [ -112.429652, 46.0772 ], [ -112.429822, 46.076884 ], [ -112.431392, 46.07384 ], [ -112.436257, 46.064391 ], [ -112.436937, 46.063074 ], [ -112.438079, 46.061044 ], [ -112.438376, 46.060532 ], [ -112.438666, 46.060066 ], [ -112.43881, 46.05984 ], [ -112.439098, 46.05943 ], [ -112.43934, 46.059064 ], [ -112.439532, 46.058774 ], [ -112.440107, 46.058002 ], [ -112.44038, 46.05765 ], [ -112.441731, 46.056019 ], [ -112.443485, 46.053949 ], [ -112.447802, 46.048851 ], [ -112.45155, 46.044489 ], [ -112.452423, 46.043435 ], [ -112.452928, 46.042858 ], [ -112.453336, 46.042363 ], [ -112.453672, 46.041989 ], [ -112.454055, 46.041551 ], [ -112.454342, 46.04125 ], [ -112.454665, 46.040886 ], [ -112.456067, 46.039558 ], [ -112.457335, 46.038587 ], [ -112.457987, 46.038059 ], [ -112.458512, 46.037625 ], [ -112.458842, 46.037329 ], [ -112.459071, 46.03709 ], [ -112.459314, 46.036842 ], [ -112.459518, 46.03659 ], [ -112.459678, 46.03639 ], [ -112.4598, 46.036215 ], [ -112.459891, 46.036045 ], [ -112.460007, 46.03582 ], [ -112.460114, 46.03551 ], [ -112.460172, 46.035281 ], [ -112.460249, 46.034999 ], [ -112.460282, 46.034713 ], [ -112.460289, 46.034622 ], [ -112.460306, 46.034393 ], [ -112.46034, 46.034001 ], [ -112.460377, 46.033494 ], [ -112.460788, 46.024225 ], [ -112.460858, 46.022999 ], [ -112.461034, 46.021707 ], [ -112.461139, 46.019417 ], [ -112.461174, 46.018182 ], [ -112.461374, 46.013939 ], [ -112.461433, 46.012326 ], [ -112.461598, 46.009767 ], [ -112.46173, 46.007706 ], [ -112.461826, 46.006592 ], [ -112.461968, 46.00602 ], [ -112.462225, 46.00538 ], [ -112.462565, 46.004722 ], [ -112.463191, 46.004036 ], [ -112.464072, 46.003225 ], [ -112.465792, 46.001872 ], [ -112.466856, 46.001037 ], [ -112.469268, 45.999189 ], [ -112.469946, 45.998682 ], [ -112.470667, 45.998003 ], [ -112.47113, 45.997502 ], [ -112.47156, 45.996917 ], [ -112.471963, 45.99622 ], [ -112.473459, 45.993424 ], [ -112.474051, 45.992464 ], [ -112.474317, 45.992004 ], [ -112.475276, 45.990233 ], [ -112.475566, 45.989642 ], [ -112.476695, 45.987673 ], [ -112.477014, 45.987068 ], [ -112.477395, 45.986399 ], [ -112.477976, 45.985327 ], [ -112.478243, 45.984818 ], [ -112.478421, 45.98455 ], [ -112.478851, 45.983744 ], [ -112.479177, 45.983218 ], [ -112.479374, 45.982981 ], [ -112.479538, 45.982795 ], [ -112.47971, 45.982636 ], [ -112.479894, 45.982492 ], [ -112.480132, 45.982326 ], [ -112.48042, 45.982142 ], [ -112.480713, 45.981993 ], [ -112.481018, 45.981862 ], [ -112.481235, 45.981784 ], [ -112.481491, 45.981708 ], [ -112.481819, 45.981612 ], [ -112.482235, 45.981526 ], [ -112.482576, 45.981485 ], [ -112.482792, 45.981468 ], [ -112.483106, 45.981448 ], [ -112.484674, 45.981411 ], [ -112.485533, 45.981393 ], [ -112.486142, 45.981346 ], [ -112.486888, 45.981343 ], [ -112.488415, 45.981329 ], [ -112.48942, 45.981323 ], [ -112.489915, 45.981311 ], [ -112.490321, 45.981291 ], [ -112.491262, 45.981187 ], [ -112.492077, 45.981092 ], [ -112.492755, 45.980966 ], [ -112.49327, 45.980829 ], [ -112.494197, 45.980567 ], [ -112.495345, 45.9802 ], [ -112.496229, 45.979974 ], [ -112.496927, 45.979831 ], [ -112.497708, 45.979756 ], [ -112.4986, 45.979744 ], [ -112.499484, 45.979774 ], [ -112.500257, 45.979863 ], [ -112.501047, 45.980042 ], [ -112.501432, 45.980146 ], [ -112.501772, 45.980251 ], [ -112.502162, 45.980391 ], [ -112.502441, 45.980505 ], [ -112.502715, 45.980622 ], [ -112.503036, 45.980793 ], [ -112.503323, 45.980946 ], [ -112.503646, 45.981153 ], [ -112.503934, 45.981351 ], [ -112.504203, 45.981566 ], [ -112.504427, 45.981757 ], [ -112.504926, 45.982217 ], [ -112.505529, 45.982793 ], [ -112.505933, 45.983132 ], [ -112.506153, 45.983296 ], [ -112.506336, 45.983431 ], [ -112.506571, 45.983586 ], [ -112.506888, 45.983789 ], [ -112.507196, 45.983956 ], [ -112.507471, 45.984097 ], [ -112.507799, 45.984272 ], [ -112.508512, 45.98456 ], [ -112.508794, 45.984651 ], [ -112.50906, 45.984738 ], [ -112.509415, 45.984842 ], [ -112.509964, 45.984998 ], [ -112.512836, 45.985714 ], [ -112.514063, 45.986044 ], [ -112.515749, 45.986501 ], [ -112.516874, 45.986847 ], [ -112.529602, 45.991803 ], [ -112.530598, 45.992131 ], [ -112.531516, 45.992333 ], [ -112.5324, 45.992476 ], [ -112.533044, 45.992536 ], [ -112.533894, 45.992542 ], [ -112.538675, 45.992548 ], [ -112.539481, 45.992542 ], [ -112.544571, 45.992548 ], [ -112.54755, 45.9925 ], [ -112.549472, 45.992518 ], [ -112.552176, 45.992548 ], [ -112.553189, 45.992614 ], [ -112.554167, 45.992739 ], [ -112.555008, 45.992942 ], [ -112.559798, 45.994337 ], [ -112.560613, 45.994587 ], [ -112.561471, 45.994951 ], [ -112.562235, 45.995404 ], [ -112.562816, 45.995834 ], [ -112.563071, 45.996064 ], [ -112.563323, 45.996326 ], [ -112.563586, 45.996638 ], [ -112.563846, 45.996975 ], [ -112.564136, 45.997384 ], [ -112.564414, 45.997764 ], [ -112.565162, 45.998934 ], [ -112.565743, 45.999683 ], [ -112.566655, 46.000955 ], [ -112.567437, 46.001903 ], [ -112.56802, 46.002517 ], [ -112.568741, 46.003096 ], [ -112.569419, 46.003525 ], [ -112.570063, 46.003859 ], [ -112.570964, 46.004318 ], [ -112.571822, 46.004693 ], [ -112.572895, 46.005009 ], [ -112.573848, 46.00523 ], [ -112.574775, 46.005379 ], [ -112.575728, 46.005463 ], [ -112.577187, 46.005504 ], [ -112.577788, 46.005522 ], [ -112.582056, 46.005676 ], [ -112.594885, 46.006166 ], [ -112.604584, 46.006524 ], [ -112.605451, 46.006619 ], [ -112.607283, 46.006843 ], [ -112.610896, 46.007381 ], [ -112.611152, 46.005948 ], [ -112.61121, 46.005792 ], [ -112.611238, 46.005609 ], [ -112.608284, 46.004266 ], [ -112.607739, 46.003921 ], [ -112.607191, 46.003516 ], [ -112.606953, 46.003377 ], [ -112.606693, 46.003274 ], [ -112.606342, 46.003193 ], [ -112.606239, 46.00317 ], [ -112.604638, 46.002827 ], [ -112.603223, 46.002511 ], [ -112.603052, 46.002473 ], [ -112.60203, 46.002278 ], [ -112.601516, 46.002219 ], [ -112.601276, 46.00221 ], [ -112.600883, 46.002212 ], [ -112.600496, 46.00223 ], [ -112.600404, 46.002208 ], [ -112.60036, 46.002173 ], [ -112.600327, 46.002117 ], [ -112.600314, 46.002059 ], [ -112.600333, 46.001927 ], [ -112.600381, 46.001853 ], [ -112.60049, 46.001777 ], [ -112.600599, 46.001745 ], [ -112.600713, 46.001737 ], [ -112.600862, 46.001739 ], [ -112.601544, 46.001798 ], [ -112.601657, 46.001792 ], [ -112.601804, 46.001767 ], [ -112.601918, 46.001724 ], [ -112.602008, 46.001673 ], [ -112.602239, 46.001528 ], [ -112.602389, 46.001412 ], [ -112.602658, 46.001185 ], [ -112.60307, 46.000822 ], [ -112.603218, 46.000656 ], [ -112.603405, 46.000474 ], [ -112.60366, 46.000513 ], [ -112.603842, 46.000532 ], [ -112.604078, 46.000549 ], [ -112.604254, 46.000547 ], [ -112.605018, 46.00043 ], [ -112.605491, 46.000395 ], [ -112.605766, 46.000402 ], [ -112.606076, 46.000466 ], [ -112.606209, 46.00049 ], [ -112.606364, 46.000494 ], [ -112.606548, 46.000466 ], [ -112.607005, 46.000359 ], [ -112.607412, 46.000312 ], [ -112.611416, 46.000299 ], [ -112.611653, 46.000242 ], [ -112.611812, 46.000145 ], [ -112.611932, 45.999965 ], [ -112.611906, 45.993731 ], [ -112.611956, 45.990322 ], [ -112.611963, 45.987384 ], [ -112.611945, 45.986839 ], [ -112.611983, 45.986517 ], [ -112.612211, 45.985826 ], [ -112.612974, 45.983191 ], [ -112.613351, 45.982047 ], [ -112.613508, 45.981723 ], [ -112.613655, 45.98152 ], [ -112.613973, 45.981284 ], [ -112.61573, 45.980235 ], [ -112.61642, 45.979923 ], [ -112.617405, 45.979519 ], [ -112.618068, 45.979213 ], [ -112.618669, 45.978865 ], [ -112.620246, 45.977619 ], [ -112.620586, 45.977289 ], [ -112.621106, 45.976592 ], [ -112.622154, 45.975079 ], [ -112.622235, 45.974699 ], [ -112.622281, 45.973317 ], [ -112.622078, 45.970234 ], [ -112.619831, 45.970225 ], [ -112.614288, 45.970203 ] ] } } diff --git a/packages/turf-point-on-line/test/out/line1_out.geojson b/packages/turf-point-on-line/test/out/line1_out.geojson new file mode 100644 index 0000000000..2ee3127647 --- /dev/null +++ b/packages/turf-point-on-line/test/out/line1_out.geojson @@ -0,0 +1,52 @@ +{ + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -97.88131713867188, + 22.466878364528448 + ], + [ + -97.82089233398438, + 22.175960091218524 + ], + [ + -97.6190185546875, + 21.8704201873689 + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -97.79617309570312, + 22.254624939561698 + ] + } + }, + { + "type": "Feature", + "properties": { + "dist": 2.5792333253298962, + "index": 0, + "marker-color": "#f0f" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -97.83572934173804, + 22.247393614241204 + ] + } + } + ] +} \ No newline at end of file diff --git a/packages/turf-point-on-line/test/out/line2_out.geojson b/packages/turf-point-on-line/test/out/line2_out.geojson new file mode 100644 index 0000000000..63cc5ec47e --- /dev/null +++ b/packages/turf-point-on-line/test/out/line2_out.geojson @@ -0,0 +1,48 @@ +{ + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 0, + 0 + ], + [ + 1, + 1 + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 0.4, + 0.1 + ] + } + }, + { + "type": "Feature", + "properties": { + "dist": 14.6614777252623, + "index": 0, + "marker-color": "#f0f" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.2499684140334102, + 0.2499684140334103 + ] + } + } + ] +} \ No newline at end of file diff --git a/packages/turf-point-on-line/test/out/route1_out.geojson b/packages/turf-point-on-line/test/out/route1_out.geojson new file mode 100644 index 0000000000..0afb982ed0 --- /dev/null +++ b/packages/turf-point-on-line/test/out/route1_out.geojson @@ -0,0 +1,19081 @@ +{ + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "properties": { + "name": null, + "cmt": null, + "desc": null, + "src": null, + "link1_href": null, + "link1_text": null, + "link1_type": null, + "link2_href": null, + "link2_text": null, + "link2_type": null, + "number": null, + "type": null + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -79.254923, + 36.98394 + ], + [ + -79.254923, + 36.983939 + ], + [ + -79.255326, + 36.9838 + ], + [ + -79.255401, + 36.983774 + ], + [ + -79.25576, + 36.983664 + ], + [ + -79.256795, + 36.984137 + ], + [ + -79.257537, + 36.984478 + ], + [ + -79.258539, + 36.984925 + ], + [ + -79.259498, + 36.985353 + ], + [ + -79.260286, + 36.985712 + ], + [ + -79.261405, + 36.986222 + ], + [ + -79.262933, + 36.986928 + ], + [ + -79.263237, + 36.987071 + ], + [ + -79.263755, + 36.987296 + ], + [ + -79.264086, + 36.987423 + ], + [ + -79.264167, + 36.987446 + ], + [ + -79.264338, + 36.987486 + ], + [ + -79.264414, + 36.987501 + ], + [ + -79.264618, + 36.987531 + ], + [ + -79.2648, + 36.987542 + ], + [ + -79.264982, + 36.987537 + ], + [ + -79.265163, + 36.987517 + ], + [ + -79.26703, + 36.987355 + ], + [ + -79.267952, + 36.98726 + ], + [ + -79.268404, + 36.987226 + ], + [ + -79.268771, + 36.987197 + ], + [ + -79.26955, + 36.987117 + ], + [ + -79.271398, + 36.986946 + ], + [ + -79.271488, + 36.986941 + ], + [ + -79.271698, + 36.986925 + ], + [ + -79.271936, + 36.986898 + ], + [ + -79.272231, + 36.986852 + ], + [ + -79.272474, + 36.986785 + ], + [ + -79.272711, + 36.986705 + ], + [ + -79.272895, + 36.986632 + ], + [ + -79.273059, + 36.986552 + ], + [ + -79.273646, + 36.986245 + ], + [ + -79.274224, + 36.985925 + ], + [ + -79.274887, + 36.985592 + ], + [ + -79.275308, + 36.985365 + ], + [ + -79.275672, + 36.98517 + ], + [ + -79.276249, + 36.984876 + ], + [ + -79.277101, + 36.984433 + ], + [ + -79.277425, + 36.984259 + ], + [ + -79.277918, + 36.983982 + ], + [ + -79.27799, + 36.98395 + ], + [ + -79.278179, + 36.98385 + ], + [ + -79.278261, + 36.9838 + ], + [ + -79.278335, + 36.983745 + ], + [ + -79.278421, + 36.983666 + ], + [ + -79.27844, + 36.983647 + ], + [ + -79.278502, + 36.983577 + ], + [ + -79.278548, + 36.983511 + ], + [ + -79.278614, + 36.983381 + ], + [ + -79.278654, + 36.983273 + ], + [ + -79.278711, + 36.983011 + ], + [ + -79.278763, + 36.98269 + ], + [ + -79.278806, + 36.982485 + ], + [ + -79.278866, + 36.982282 + ], + [ + -79.278952, + 36.982101 + ], + [ + -79.279023, + 36.981984 + ], + [ + -79.280178, + 36.980418 + ], + [ + -79.280259, + 36.980319 + ], + [ + -79.280355, + 36.980229 + ], + [ + -79.280419, + 36.98018 + ], + [ + -79.280578, + 36.980082 + ], + [ + -79.280666, + 36.980038 + ], + [ + -79.280783, + 36.979994 + ], + [ + -79.280908, + 36.979963 + ], + [ + -79.281301, + 36.979913 + ], + [ + -79.281646, + 36.979874 + ], + [ + -79.282145, + 36.979835 + ], + [ + -79.282797, + 36.97977 + ], + [ + -79.283144, + 36.979743 + ], + [ + -79.283618, + 36.97972 + ], + [ + -79.28399, + 36.979706 + ], + [ + -79.284447, + 36.979695 + ], + [ + -79.284904, + 36.979697 + ], + [ + -79.286913, + 36.979638 + ], + [ + -79.287201, + 36.979628 + ], + [ + -79.287954, + 36.979612 + ], + [ + -79.288037, + 36.979611 + ], + [ + -79.288397, + 36.97962 + ], + [ + -79.288697, + 36.979643 + ], + [ + -79.289908, + 36.979722 + ], + [ + -79.289994, + 36.979724 + ], + [ + -79.290136, + 36.979716 + ], + [ + -79.290248, + 36.979699 + ], + [ + -79.290503, + 36.979632 + ], + [ + -79.291043, + 36.979454 + ], + [ + -79.291563, + 36.979269 + ], + [ + -79.292467, + 36.97896 + ], + [ + -79.292759, + 36.978877 + ], + [ + -79.292963, + 36.978832 + ], + [ + -79.293286, + 36.978778 + ], + [ + -79.293549, + 36.978746 + ], + [ + -79.293649, + 36.978738 + ], + [ + -79.293755, + 36.978729 + ], + [ + -79.293858, + 36.978731 + ], + [ + -79.294028, + 36.978747 + ], + [ + -79.294162, + 36.978771 + ], + [ + -79.294243, + 36.9788 + ], + [ + -79.294439, + 36.978883 + ], + [ + -79.294626, + 36.978979 + ], + [ + -79.294782, + 36.979072 + ], + [ + -79.294921, + 36.979174 + ], + [ + -79.295023, + 36.979263 + ], + [ + -79.295281, + 36.979534 + ], + [ + -79.295458, + 36.979739 + ], + [ + -79.296347, + 36.980843 + ], + [ + -79.296549, + 36.981064 + ], + [ + -79.296594, + 36.981095 + ], + [ + -79.296695, + 36.981144 + ], + [ + -79.296788, + 36.98117 + ], + [ + -79.296916, + 36.981184 + ], + [ + -79.297032, + 36.981182 + ], + [ + -79.297147, + 36.981165 + ], + [ + -79.297933, + 36.980962 + ], + [ + -79.298145, + 36.980893 + ], + [ + -79.298401, + 36.98079 + ], + [ + -79.298602, + 36.980696 + ], + [ + -79.298795, + 36.980593 + ], + [ + -79.299134, + 36.980402 + ], + [ + -79.299407, + 36.980244 + ], + [ + -79.299963, + 36.9799 + ], + [ + -79.301767, + 36.97881 + ], + [ + -79.301976, + 36.978691 + ], + [ + -79.3021, + 36.978619 + ], + [ + -79.302508, + 36.978369 + ], + [ + -79.302614, + 36.978309 + ], + [ + -79.3028, + 36.97822 + ], + [ + -79.302995, + 36.978145 + ], + [ + -79.303113, + 36.978114 + ], + [ + -79.303153, + 36.978249 + ], + [ + -79.303232, + 36.978565 + ], + [ + -79.303319, + 36.978989 + ], + [ + -79.303326, + 36.979184 + ], + [ + -79.303313, + 36.979346 + ], + [ + -79.30324, + 36.979748 + ], + [ + -79.303136, + 36.980362 + ], + [ + -79.303088, + 36.980609 + ], + [ + -79.302996, + 36.981143 + ], + [ + -79.302982, + 36.981226 + ], + [ + -79.302977, + 36.981321 + ], + [ + -79.302986, + 36.98144 + ], + [ + -79.303013, + 36.981556 + ], + [ + -79.303057, + 36.98167 + ], + [ + -79.303191, + 36.9819 + ], + [ + -79.303336, + 36.982126 + ], + [ + -79.303702, + 36.982652 + ], + [ + -79.304322, + 36.983486 + ], + [ + -79.304588, + 36.98382 + ], + [ + -79.304756, + 36.984051 + ], + [ + -79.304903, + 36.984229 + ], + [ + -79.305059, + 36.984403 + ], + [ + -79.305145, + 36.984487 + ], + [ + -79.305336, + 36.984648 + ], + [ + -79.305612, + 36.98486 + ], + [ + -79.30569, + 36.984915 + ], + [ + -79.305765, + 36.984974 + ], + [ + -79.305944, + 36.98513 + ], + [ + -79.306108, + 36.985295 + ], + [ + -79.306259, + 36.985469 + ], + [ + -79.306333, + 36.98557 + ], + [ + -79.306437, + 36.985737 + ], + [ + -79.306524, + 36.985911 + ], + [ + -79.306595, + 36.98609 + ], + [ + -79.306677, + 36.986365 + ], + [ + -79.306734, + 36.98662 + ], + [ + -79.306773, + 36.986878 + ], + [ + -79.306759, + 36.986998 + ], + [ + -79.306724, + 36.987146 + ], + [ + -79.306621, + 36.987426 + ], + [ + -79.306591, + 36.987545 + ], + [ + -79.306555, + 36.987745 + ], + [ + -79.306536, + 36.987984 + ], + [ + -79.30653, + 36.988172 + ], + [ + -79.306539, + 36.988321 + ], + [ + -79.30655, + 36.988398 + ], + [ + -79.306566, + 36.988507 + ], + [ + -79.306673, + 36.988967 + ], + [ + -79.306789, + 36.989416 + ], + [ + -79.30681, + 36.989518 + ], + [ + -79.306831, + 36.98969 + ], + [ + -79.306833, + 36.989828 + ], + [ + -79.306822, + 36.989888 + ], + [ + -79.306771, + 36.990067 + ], + [ + -79.306696, + 36.99024 + ], + [ + -79.306569, + 36.990463 + ], + [ + -79.306374, + 36.99078 + ], + [ + -79.30633, + 36.990863 + ], + [ + -79.306292, + 36.990972 + ], + [ + -79.306271, + 36.991084 + ], + [ + -79.306268, + 36.991229 + ], + [ + -79.306282, + 36.991421 + ], + [ + -79.306323, + 36.991648 + ], + [ + -79.30657, + 36.992516 + ], + [ + -79.306601, + 36.992703 + ], + [ + -79.306614, + 36.992892 + ], + [ + -79.306598, + 36.993111 + ], + [ + -79.306569, + 36.993287 + ], + [ + -79.306553, + 36.993345 + ], + [ + -79.306526, + 36.993432 + ], + [ + -79.306466, + 36.993574 + ], + [ + -79.306313, + 36.993848 + ], + [ + -79.305971, + 36.994382 + ], + [ + -79.305826, + 36.994647 + ], + [ + -79.305382, + 36.995598 + ], + [ + -79.305197, + 36.995963 + ], + [ + -79.305065, + 36.996284 + ], + [ + -79.304983, + 36.996521 + ], + [ + -79.304954, + 36.99668 + ], + [ + -79.30495, + 36.996815 + ], + [ + -79.304959, + 36.996932 + ], + [ + -79.304988, + 36.997077 + ], + [ + -79.305024, + 36.99719 + ], + [ + -79.305111, + 36.99739 + ], + [ + -79.305197, + 36.997567 + ], + [ + -79.30532, + 36.997782 + ], + [ + -79.305429, + 36.997949 + ], + [ + -79.305577, + 36.998153 + ], + [ + -79.306017, + 36.99873 + ], + [ + -79.306204, + 36.998965 + ], + [ + -79.306407, + 36.999192 + ], + [ + -79.306624, + 36.999411 + ], + [ + -79.30672, + 36.999489 + ], + [ + -79.306828, + 36.999557 + ], + [ + -79.306922, + 36.999602 + ], + [ + -79.307072, + 36.999656 + ], + [ + -79.307354, + 36.999723 + ], + [ + -79.307628, + 36.999778 + ], + [ + -79.308892, + 36.999988 + ], + [ + -79.309029, + 37.00002 + ], + [ + -79.309135, + 37.000056 + ], + [ + -79.30926, + 37.000112 + ], + [ + -79.309374, + 37.00018 + ], + [ + -79.309478, + 37.000259 + ], + [ + -79.30959, + 37.000372 + ], + [ + -79.309743, + 37.000552 + ], + [ + -79.31029, + 37.001344 + ], + [ + -79.31037, + 37.001451 + ], + [ + -79.310486, + 37.001568 + ], + [ + -79.310598, + 37.001654 + ], + [ + -79.310697, + 37.001714 + ], + [ + -79.310838, + 37.001785 + ], + [ + -79.310991, + 37.001844 + ], + [ + -79.31115, + 37.001891 + ], + [ + -79.311632, + 37.001979 + ], + [ + -79.312359, + 37.002135 + ], + [ + -79.312455, + 37.002156 + ], + [ + -79.312915, + 37.002271 + ], + [ + -79.313026, + 37.002296 + ], + [ + -79.313639, + 37.002422 + ], + [ + -79.314311, + 37.002515 + ], + [ + -79.314769, + 37.002553 + ], + [ + -79.315227, + 37.002582 + ], + [ + -79.315352, + 37.002604 + ], + [ + -79.315472, + 37.002641 + ], + [ + -79.315543, + 37.002685 + ], + [ + -79.315621, + 37.00275 + ], + [ + -79.315685, + 37.002824 + ], + [ + -79.315725, + 37.002889 + ], + [ + -79.315888, + 37.002832 + ], + [ + -79.316221, + 37.002733 + ], + [ + -79.316448, + 37.002678 + ], + [ + -79.31752, + 37.002455 + ], + [ + -79.318524, + 37.002275 + ], + [ + -79.319059, + 37.002211 + ], + [ + -79.319268, + 37.002199 + ], + [ + -79.319435, + 37.0022 + ], + [ + -79.319651, + 37.002214 + ], + [ + -79.319786, + 37.002226 + ], + [ + -79.320258, + 37.002279 + ], + [ + -79.320522, + 37.002298 + ], + [ + -79.320786, + 37.002302 + ], + [ + -79.320953, + 37.002288 + ], + [ + -79.321116, + 37.002258 + ], + [ + -79.321274, + 37.002213 + ], + [ + -79.321381, + 37.00217 + ], + [ + -79.321762, + 37.002001 + ], + [ + -79.322382, + 37.001698 + ], + [ + -79.322844, + 37.001466 + ], + [ + -79.323023, + 37.001376 + ], + [ + -79.323292, + 37.001249 + ], + [ + -79.32357, + 37.001134 + ], + [ + -79.323943, + 37.001003 + ], + [ + -79.324098, + 37.000958 + ], + [ + -79.324162, + 37.000945 + ], + [ + -79.32513, + 37.000843 + ], + [ + -79.325325, + 37.000814 + ], + [ + -79.325517, + 37.000777 + ], + [ + -79.325753, + 37.000719 + ], + [ + -79.327186, + 37.000266 + ], + [ + -79.327482, + 37.000173 + ], + [ + -79.327802, + 37.00008 + ], + [ + -79.328598, + 36.999838 + ], + [ + -79.329158, + 36.999654 + ], + [ + -79.329204, + 36.999715 + ], + [ + -79.329343, + 36.999894 + ], + [ + -79.32942, + 36.999975 + ], + [ + -79.329588, + 37.000125 + ], + [ + -79.329742, + 37.000239 + ], + [ + -79.329777, + 37.000256 + ], + [ + -79.329869, + 37.000291 + ], + [ + -79.329988, + 37.000315 + ], + [ + -79.330091, + 37.000318 + ], + [ + -79.33027, + 37.000316 + ], + [ + -79.330449, + 37.000298 + ], + [ + -79.331035, + 37.000223 + ], + [ + -79.331427, + 37.000184 + ], + [ + -79.331855, + 37.000129 + ], + [ + -79.333009, + 37.000023 + ], + [ + -79.334568, + 36.999869 + ], + [ + -79.335002, + 36.999826 + ], + [ + -79.33552, + 36.999806 + ], + [ + -79.33606, + 36.999814 + ], + [ + -79.336208, + 36.999833 + ], + [ + -79.336352, + 36.999866 + ], + [ + -79.33649, + 36.999913 + ], + [ + -79.336644, + 36.999986 + ], + [ + -79.336856, + 37.000123 + ], + [ + -79.336962, + 37.000203 + ], + [ + -79.337096, + 37.000316 + ], + [ + -79.337325, + 37.000539 + ], + [ + -79.337519, + 37.000761 + ], + [ + -79.338522, + 37.001965 + ], + [ + -79.339126, + 37.002688 + ], + [ + -79.339574, + 37.003185 + ], + [ + -79.340385, + 37.004106 + ], + [ + -79.340479, + 37.004212 + ], + [ + -79.340603, + 37.004341 + ], + [ + -79.340773, + 37.00449 + ], + [ + -79.340929, + 37.004602 + ], + [ + -79.341131, + 37.004723 + ], + [ + -79.341632, + 37.004968 + ], + [ + -79.341875, + 37.005087 + ], + [ + -79.342172, + 37.005233 + ], + [ + -79.342594, + 37.00542 + ], + [ + -79.343189, + 37.005708 + ], + [ + -79.343817, + 37.006011 + ], + [ + -79.344455, + 37.006335 + ], + [ + -79.344712, + 37.00647 + ], + [ + -79.345697, + 37.006916 + ], + [ + -79.345837, + 37.006985 + ], + [ + -79.346006, + 37.00708 + ], + [ + -79.346221, + 37.007218 + ], + [ + -79.347403, + 37.008016 + ], + [ + -79.347493, + 37.008071 + ], + [ + -79.347634, + 37.008171 + ], + [ + -79.347763, + 37.008281 + ], + [ + -79.347971, + 37.008497 + ], + [ + -79.348051, + 37.008623 + ], + [ + -79.348135, + 37.008786 + ], + [ + -79.348201, + 37.008954 + ], + [ + -79.34825, + 37.009126 + ], + [ + -79.348316, + 37.00954 + ], + [ + -79.348397, + 37.010196 + ], + [ + -79.34854, + 37.01111 + ], + [ + -79.348616, + 37.011496 + ], + [ + -79.348778, + 37.012266 + ], + [ + -79.349159, + 37.013946 + ], + [ + -79.349315, + 37.014628 + ], + [ + -79.349636, + 37.015919 + ], + [ + -79.349688, + 37.016183 + ], + [ + -79.349795, + 37.016628 + ], + [ + -79.349854, + 37.016827 + ], + [ + -79.349915, + 37.01701 + ], + [ + -79.350064, + 37.017337 + ], + [ + -79.350135, + 37.017464 + ], + [ + -79.350159, + 37.017499 + ], + [ + -79.350325, + 37.017735 + ], + [ + -79.35042, + 37.017865 + ], + [ + -79.350584, + 37.018129 + ], + [ + -79.35072, + 37.01842 + ], + [ + -79.350808, + 37.018683 + ], + [ + -79.35089, + 37.018981 + ], + [ + -79.350968, + 37.019317 + ], + [ + -79.35119, + 37.020219 + ], + [ + -79.351251, + 37.020445 + ], + [ + -79.351346, + 37.020719 + ], + [ + -79.351414, + 37.020888 + ], + [ + -79.351505, + 37.021079 + ], + [ + -79.351682, + 37.021459 + ], + [ + -79.351825, + 37.02176 + ], + [ + -79.352185, + 37.022473 + ], + [ + -79.352628, + 37.023433 + ], + [ + -79.352751, + 37.023743 + ], + [ + -79.35282, + 37.023863 + ], + [ + -79.352895, + 37.023965 + ], + [ + -79.353012, + 37.024078 + ], + [ + -79.353078, + 37.024127 + ], + [ + -79.353186, + 37.024186 + ], + [ + -79.353325, + 37.024244 + ], + [ + -79.353398, + 37.024265 + ], + [ + -79.353421, + 37.02427 + ], + [ + -79.353621, + 37.024315 + ], + [ + -79.353675, + 37.024321 + ], + [ + -79.35392, + 37.024336 + ], + [ + -79.354286, + 37.024379 + ], + [ + -79.354423, + 37.024385 + ], + [ + -79.354844, + 37.024375 + ], + [ + -79.355058, + 37.024359 + ], + [ + -79.355214, + 37.024339 + ], + [ + -79.355354, + 37.024308 + ], + [ + -79.355614, + 37.024238 + ], + [ + -79.355718, + 37.024209 + ], + [ + -79.355965, + 37.024125 + ], + [ + -79.356147, + 37.024057 + ], + [ + -79.356485, + 37.02394 + ], + [ + -79.356546, + 37.023919 + ], + [ + -79.356797, + 37.023824 + ], + [ + -79.356964, + 37.023769 + ], + [ + -79.357077, + 37.023757 + ], + [ + -79.357196, + 37.023767 + ], + [ + -79.357262, + 37.023786 + ], + [ + -79.357309, + 37.023811 + ], + [ + -79.35735, + 37.023849 + ], + [ + -79.357388, + 37.023905 + ], + [ + -79.357541, + 37.024317 + ], + [ + -79.357583, + 37.024391 + ], + [ + -79.357634, + 37.024438 + ], + [ + -79.357685, + 37.024467 + ], + [ + -79.357747, + 37.024487 + ], + [ + -79.35783, + 37.024497 + ], + [ + -79.357899, + 37.024495 + ], + [ + -79.35801, + 37.02448 + ], + [ + -79.358102, + 37.02446 + ], + [ + -79.358409, + 37.025941 + ], + [ + -79.358471, + 37.026316 + ], + [ + -79.358502, + 37.026637 + ], + [ + -79.358517, + 37.026844 + ], + [ + -79.358519, + 37.027185 + ], + [ + -79.358497, + 37.027679 + ], + [ + -79.358457, + 37.028033 + ], + [ + -79.358398, + 37.028378 + ], + [ + -79.358301, + 37.028779 + ], + [ + -79.358082, + 37.029574 + ], + [ + -79.357957, + 37.030026 + ], + [ + -79.357813, + 37.030609 + ], + [ + -79.357745, + 37.03095 + ], + [ + -79.357685, + 37.031344 + ], + [ + -79.357656, + 37.031612 + ], + [ + -79.357621, + 37.032199 + ], + [ + -79.357619, + 37.032445 + ], + [ + -79.357631, + 37.032766 + ], + [ + -79.357637, + 37.032893 + ], + [ + -79.357666, + 37.033258 + ], + [ + -79.357711, + 37.033639 + ], + [ + -79.357789, + 37.034066 + ], + [ + -79.357875, + 37.034441 + ], + [ + -79.357922, + 37.034622 + ], + [ + -79.358521, + 37.036938 + ], + [ + -79.358613, + 37.037315 + ], + [ + -79.358687, + 37.037658 + ], + [ + -79.358786, + 37.038217 + ], + [ + -79.358856, + 37.038791 + ], + [ + -79.358911, + 37.039356 + ], + [ + -79.358965, + 37.0401 + ], + [ + -79.359051, + 37.041306 + ], + [ + -79.359073, + 37.041825 + ], + [ + -79.359059, + 37.042471 + ], + [ + -79.359012, + 37.042954 + ], + [ + -79.35899, + 37.04313 + ], + [ + -79.358922, + 37.043537 + ], + [ + -79.358829, + 37.043973 + ], + [ + -79.358773, + 37.044171 + ], + [ + -79.358704, + 37.044417 + ], + [ + -79.358541, + 37.044914 + ], + [ + -79.358352, + 37.045429 + ], + [ + -79.357856, + 37.04678 + ], + [ + -79.357794, + 37.046961 + ], + [ + -79.357564, + 37.047556 + ], + [ + -79.357409, + 37.047915 + ], + [ + -79.357338, + 37.048062 + ], + [ + -79.357278, + 37.048184 + ], + [ + -79.356942, + 37.048801 + ], + [ + -79.356841, + 37.048967 + ], + [ + -79.356589, + 37.049349 + ], + [ + -79.356363, + 37.049677 + ], + [ + -79.354212, + 37.052783 + ], + [ + -79.353972, + 37.053148 + ], + [ + -79.353865, + 37.053295 + ], + [ + -79.353452, + 37.053889 + ], + [ + -79.352197, + 37.055711 + ], + [ + -79.352126, + 37.055808 + ], + [ + -79.351983, + 37.056023 + ], + [ + -79.351596, + 37.056539 + ], + [ + -79.351413, + 37.056761 + ], + [ + -79.35122, + 37.056979 + ], + [ + -79.351018, + 37.057191 + ], + [ + -79.35075, + 37.057445 + ], + [ + -79.350603, + 37.057584 + ], + [ + -79.35029, + 37.057856 + ], + [ + -79.348032, + 37.059645 + ], + [ + -79.346954, + 37.060488 + ], + [ + -79.345892, + 37.06133 + ], + [ + -79.345295, + 37.061797 + ], + [ + -79.344778, + 37.062208 + ], + [ + -79.344716, + 37.062258 + ], + [ + -79.343942, + 37.062866 + ], + [ + -79.343259, + 37.06342 + ], + [ + -79.342925, + 37.063722 + ], + [ + -79.342732, + 37.063907 + ], + [ + -79.342302, + 37.064351 + ], + [ + -79.342055, + 37.06463 + ], + [ + -79.341843, + 37.064885 + ], + [ + -79.341424, + 37.065452 + ], + [ + -79.341048, + 37.066036 + ], + [ + -79.340718, + 37.066647 + ], + [ + -79.340066, + 37.068047 + ], + [ + -79.338982, + 37.070343 + ], + [ + -79.336951, + 37.074656 + ], + [ + -79.336672, + 37.075265 + ], + [ + -79.335622, + 37.077497 + ], + [ + -79.335265, + 37.078252 + ], + [ + -79.33489, + 37.079062 + ], + [ + -79.334833, + 37.079182 + ], + [ + -79.334222, + 37.080477 + ], + [ + -79.333262, + 37.082521 + ], + [ + -79.333001, + 37.083079 + ], + [ + -79.332628, + 37.084028 + ], + [ + -79.332548, + 37.084278 + ], + [ + -79.332388, + 37.08478 + ], + [ + -79.332201, + 37.085539 + ], + [ + -79.33204, + 37.086421 + ], + [ + -79.33196, + 37.086978 + ], + [ + -79.331907, + 37.087757 + ], + [ + -79.331871, + 37.088536 + ], + [ + -79.33185, + 37.089317 + ], + [ + -79.331805, + 37.090324 + ], + [ + -79.331772, + 37.091338 + ], + [ + -79.331768, + 37.092235 + ], + [ + -79.33183, + 37.093576 + ], + [ + -79.331943, + 37.095022 + ], + [ + -79.332045, + 37.096198 + ], + [ + -79.332341, + 37.099713 + ], + [ + -79.332397, + 37.100421 + ], + [ + -79.332436, + 37.101086 + ], + [ + -79.332443, + 37.1013 + ], + [ + -79.332438, + 37.10199 + ], + [ + -79.332418, + 37.102426 + ], + [ + -79.332391, + 37.102795 + ], + [ + -79.332337, + 37.103324 + ], + [ + -79.332244, + 37.103966 + ], + [ + -79.332205, + 37.104185 + ], + [ + -79.332175, + 37.104355 + ], + [ + -79.332056, + 37.104907 + ], + [ + -79.332041, + 37.104978 + ], + [ + -79.331903, + 37.105494 + ], + [ + -79.331733, + 37.106053 + ], + [ + -79.331559, + 37.106562 + ], + [ + -79.33131, + 37.107195 + ], + [ + -79.331178, + 37.107501 + ], + [ + -79.330959, + 37.107973 + ], + [ + -79.330748, + 37.108399 + ], + [ + -79.330489, + 37.108876 + ], + [ + -79.330365, + 37.109093 + ], + [ + -79.330155, + 37.10944 + ], + [ + -79.329757, + 37.110058 + ], + [ + -79.328813, + 37.111446 + ], + [ + -79.328701, + 37.111611 + ], + [ + -79.327118, + 37.113932 + ], + [ + -79.327107, + 37.113947 + ], + [ + -79.326498, + 37.114802 + ], + [ + -79.326178, + 37.115223 + ], + [ + -79.326128, + 37.115289 + ], + [ + -79.32568, + 37.115855 + ], + [ + -79.325061, + 37.116595 + ], + [ + -79.324816, + 37.116878 + ], + [ + -79.324497, + 37.117235 + ], + [ + -79.324161, + 37.117601 + ], + [ + -79.323816, + 37.117964 + ], + [ + -79.323589, + 37.118194 + ], + [ + -79.323104, + 37.118678 + ], + [ + -79.322015, + 37.119732 + ], + [ + -79.320826, + 37.12089 + ], + [ + -79.320279, + 37.121415 + ], + [ + -79.31993, + 37.121729 + ], + [ + -79.319276, + 37.122271 + ], + [ + -79.318828, + 37.122609 + ], + [ + -79.318377, + 37.122925 + ], + [ + -79.317535, + 37.123462 + ], + [ + -79.316595, + 37.123987 + ], + [ + -79.315586, + 37.124473 + ], + [ + -79.314958, + 37.124742 + ], + [ + -79.311931, + 37.125973 + ], + [ + -79.303986, + 37.129196 + ], + [ + -79.303177, + 37.129555 + ], + [ + -79.302367, + 37.129915 + ], + [ + -79.30095, + 37.130617 + ], + [ + -79.298871, + 37.131691 + ], + [ + -79.298008, + 37.132146 + ], + [ + -79.293574, + 37.134491 + ], + [ + -79.293108, + 37.134749 + ], + [ + -79.292712, + 37.134937 + ], + [ + -79.292278, + 37.135125 + ], + [ + -79.291836, + 37.1353 + ], + [ + -79.291351, + 37.135473 + ], + [ + -79.290905, + 37.135615 + ], + [ + -79.290365, + 37.135772 + ], + [ + -79.289641, + 37.135941 + ], + [ + -79.289078, + 37.136055 + ], + [ + -79.288222, + 37.136184 + ], + [ + -79.287781, + 37.136228 + ], + [ + -79.287205, + 37.136269 + ], + [ + -79.281895, + 37.136526 + ], + [ + -79.280512, + 37.136607 + ], + [ + -79.279731, + 37.13667 + ], + [ + -79.278968, + 37.136747 + ], + [ + -79.277922, + 37.136872 + ], + [ + -79.276244, + 37.13712 + ], + [ + -79.273494, + 37.137624 + ], + [ + -79.272005, + 37.137904 + ], + [ + -79.271794, + 37.137944 + ], + [ + -79.266159, + 37.138985 + ], + [ + -79.265643, + 37.139056 + ], + [ + -79.265084, + 37.139119 + ], + [ + -79.264404, + 37.139177 + ], + [ + -79.263826, + 37.139213 + ], + [ + -79.263263, + 37.139234 + ], + [ + -79.262666, + 37.139241 + ], + [ + -79.262103, + 37.139234 + ], + [ + -79.26149, + 37.139213 + ], + [ + -79.260895, + 37.13918 + ], + [ + -79.260488, + 37.139149 + ], + [ + -79.257811, + 37.138859 + ], + [ + -79.253283, + 37.138354 + ], + [ + -79.251817, + 37.138189 + ], + [ + -79.251311, + 37.138138 + ], + [ + -79.25082, + 37.138104 + ], + [ + -79.250344, + 37.138087 + ], + [ + -79.249949, + 37.138091 + ], + [ + -79.249141, + 37.138125 + ], + [ + -79.248701, + 37.138169 + ], + [ + -79.248255, + 37.138232 + ], + [ + -79.247815, + 37.138303 + ], + [ + -79.247404, + 37.138388 + ], + [ + -79.246983, + 37.138492 + ], + [ + -79.24619, + 37.138741 + ], + [ + -79.246034, + 37.138799 + ], + [ + -79.245567, + 37.138991 + ], + [ + -79.243639, + 37.139795 + ], + [ + -79.242121, + 37.140435 + ], + [ + -79.241618, + 37.140648 + ], + [ + -79.241125, + 37.14089 + ], + [ + -79.240755, + 37.141103 + ], + [ + -79.240471, + 37.141293 + ], + [ + -79.240237, + 37.141475 + ], + [ + -79.240023, + 37.141661 + ], + [ + -79.239659, + 37.142024 + ], + [ + -79.238717, + 37.143115 + ], + [ + -79.238653, + 37.143189 + ], + [ + -79.238443, + 37.143404 + ], + [ + -79.23822, + 37.14361 + ], + [ + -79.237972, + 37.143817 + ], + [ + -79.237711, + 37.144013 + ], + [ + -79.237424, + 37.144206 + ], + [ + -79.237139, + 37.144378 + ], + [ + -79.236846, + 37.144536 + ], + [ + -79.23672, + 37.144599 + ], + [ + -79.235366, + 37.145185 + ], + [ + -79.235031, + 37.145327 + ], + [ + -79.233118, + 37.146139 + ], + [ + -79.232943, + 37.146214 + ], + [ + -79.23213, + 37.146559 + ], + [ + -79.23159, + 37.146789 + ], + [ + -79.231268, + 37.146943 + ], + [ + -79.230971, + 37.147103 + ], + [ + -79.230723, + 37.147248 + ], + [ + -79.230589, + 37.147333 + ], + [ + -79.230303, + 37.147527 + ], + [ + -79.230067, + 37.147704 + ], + [ + -79.229831, + 37.147902 + ], + [ + -79.229608, + 37.148108 + ], + [ + -79.229398, + 37.148324 + ], + [ + -79.229192, + 37.148559 + ], + [ + -79.229002, + 37.148802 + ], + [ + -79.228823, + 37.149065 + ], + [ + -79.228683, + 37.149299 + ], + [ + -79.228557, + 37.149537 + ], + [ + -79.228436, + 37.149807 + ], + [ + -79.228332, + 37.15008 + ], + [ + -79.22824, + 37.150371 + ], + [ + -79.228165, + 37.150679 + ], + [ + -79.228144, + 37.150787 + ], + [ + -79.22795, + 37.1522 + ], + [ + -79.227939, + 37.152282 + ], + [ + -79.227922, + 37.152405 + ], + [ + -79.227831, + 37.1531 + ], + [ + -79.227768, + 37.153577 + ], + [ + -79.22775, + 37.153704 + ], + [ + -79.227707, + 37.153951 + ], + [ + -79.227614, + 37.154338 + ], + [ + -79.227519, + 37.154642 + ], + [ + -79.227394, + 37.154981 + ], + [ + -79.227259, + 37.155289 + ], + [ + -79.227113, + 37.155579 + ], + [ + -79.227008, + 37.155764 + ], + [ + -79.226979, + 37.155814 + ], + [ + -79.226931, + 37.155892 + ], + [ + -79.22673, + 37.156196 + ], + [ + -79.226531, + 37.156466 + ], + [ + -79.226359, + 37.156679 + ], + [ + -79.226091, + 37.156981 + ], + [ + -79.225836, + 37.157239 + ], + [ + -79.225577, + 37.157477 + ], + [ + -79.225307, + 37.157704 + ], + [ + -79.225033, + 37.15791 + ], + [ + -79.224838, + 37.158043 + ], + [ + -79.223223, + 37.159106 + ], + [ + -79.222625, + 37.159494 + ], + [ + -79.222577, + 37.159525 + ], + [ + -79.222526, + 37.159559 + ], + [ + -79.222269, + 37.159725 + ], + [ + -79.221758, + 37.160065 + ], + [ + -79.219427, + 37.161585 + ], + [ + -79.218294, + 37.162324 + ], + [ + -79.218211, + 37.162378 + ], + [ + -79.216923, + 37.163217 + ], + [ + -79.216426, + 37.163539 + ], + [ + -79.215909, + 37.16389 + ], + [ + -79.215531, + 37.164171 + ], + [ + -79.215221, + 37.164425 + ], + [ + -79.214936, + 37.164678 + ], + [ + -79.214674, + 37.164929 + ], + [ + -79.214292, + 37.165324 + ], + [ + -79.214244, + 37.165374 + ], + [ + -79.213081, + 37.166582 + ], + [ + -79.212642, + 37.167038 + ], + [ + -79.212368, + 37.167324 + ], + [ + -79.212048, + 37.167658 + ], + [ + -79.211768, + 37.16795 + ], + [ + -79.211486, + 37.168245 + ], + [ + -79.211416, + 37.168318 + ], + [ + -79.211008, + 37.168744 + ], + [ + -79.210963, + 37.168791 + ], + [ + -79.210689, + 37.16908 + ], + [ + -79.210304, + 37.16953 + ], + [ + -79.2101, + 37.169782 + ], + [ + -79.209923, + 37.170006 + ], + [ + -79.209526, + 37.170538 + ], + [ + -79.209343, + 37.170798 + ], + [ + -79.207037, + 37.174039 + ], + [ + -79.206764, + 37.174435 + ], + [ + -79.206634, + 37.174641 + ], + [ + -79.206469, + 37.174929 + ], + [ + -79.206273, + 37.17532 + ], + [ + -79.20615, + 37.175603 + ], + [ + -79.206073, + 37.175802 + ], + [ + -79.206026, + 37.175929 + ], + [ + -79.205916, + 37.176273 + ], + [ + -79.205845, + 37.176539 + ], + [ + -79.205757, + 37.176917 + ], + [ + -79.205696, + 37.177164 + ], + [ + -79.205658, + 37.177349 + ], + [ + -79.205603, + 37.177589 + ], + [ + -79.205562, + 37.177759 + ], + [ + -79.205539, + 37.177863 + ], + [ + -79.205487, + 37.178091 + ], + [ + -79.205427, + 37.178344 + ], + [ + -79.205364, + 37.178607 + ], + [ + -79.205297, + 37.178889 + ], + [ + -79.205253, + 37.179068 + ], + [ + -79.20519, + 37.179332 + ], + [ + -79.205122, + 37.179618 + ], + [ + -79.205055, + 37.179895 + ], + [ + -79.204997, + 37.180138 + ], + [ + -79.204614, + 37.181773 + ], + [ + -79.204588, + 37.181883 + ], + [ + -79.204488, + 37.182314 + ], + [ + -79.204319, + 37.183043 + ], + [ + -79.204265, + 37.183268 + ], + [ + -79.204123, + 37.18388 + ], + [ + -79.203924, + 37.184747 + ], + [ + -79.203855, + 37.185167 + ], + [ + -79.203781, + 37.185725 + ], + [ + -79.203767, + 37.185869 + ], + [ + -79.203714, + 37.186727 + ], + [ + -79.203688, + 37.188358 + ], + [ + -79.203665, + 37.189574 + ], + [ + -79.203624, + 37.192626 + ], + [ + -79.203627, + 37.192665 + ], + [ + -79.203588, + 37.193792 + ], + [ + -79.203572, + 37.194229 + ], + [ + -79.203568, + 37.194309 + ], + [ + -79.203559, + 37.194539 + ], + [ + -79.203553, + 37.194676 + ], + [ + -79.203543, + 37.194919 + ], + [ + -79.203531, + 37.195199 + ], + [ + -79.203502, + 37.195859 + ], + [ + -79.203483, + 37.196276 + ], + [ + -79.203468, + 37.196579 + ], + [ + -79.203458, + 37.196792 + ], + [ + -79.203433, + 37.197322 + ], + [ + -79.203422, + 37.197563 + ], + [ + -79.20341, + 37.197824 + ], + [ + -79.203397, + 37.198095 + ], + [ + -79.20339, + 37.198254 + ], + [ + -79.203379, + 37.19847 + ], + [ + -79.203358, + 37.198936 + ], + [ + -79.20334, + 37.19935 + ], + [ + -79.203304, + 37.200071 + ], + [ + -79.203262, + 37.200536 + ], + [ + -79.203244, + 37.200686 + ], + [ + -79.203162, + 37.201241 + ], + [ + -79.203073, + 37.201722 + ], + [ + -79.20306, + 37.201793 + ], + [ + -79.203026, + 37.201977 + ], + [ + -79.202836, + 37.203003 + ], + [ + -79.202752, + 37.203459 + ], + [ + -79.202563, + 37.204478 + ], + [ + -79.202452, + 37.205079 + ], + [ + -79.202395, + 37.205385 + ], + [ + -79.201856, + 37.208299 + ], + [ + -79.201805, + 37.208574 + ], + [ + -79.201702, + 37.209126 + ], + [ + -79.201673, + 37.209268 + ], + [ + -79.201619, + 37.209479 + ], + [ + -79.201573, + 37.209638 + ], + [ + -79.201505, + 37.209836 + ], + [ + -79.201407, + 37.210085 + ], + [ + -79.201284, + 37.210341 + ], + [ + -79.201114, + 37.21064 + ], + [ + -79.201026, + 37.210776 + ], + [ + -79.200882, + 37.21098 + ], + [ + -79.200649, + 37.211282 + ], + [ + -79.200396, + 37.211554 + ], + [ + -79.199727, + 37.212167 + ], + [ + -79.199637, + 37.212249 + ], + [ + -79.199553, + 37.212325 + ], + [ + -79.199391, + 37.212473 + ], + [ + -79.199159, + 37.212684 + ], + [ + -79.19865, + 37.213144 + ], + [ + -79.197756, + 37.213946 + ], + [ + -79.197588, + 37.214097 + ], + [ + -79.197252, + 37.214415 + ], + [ + -79.196922, + 37.214731 + ], + [ + -79.196487, + 37.215166 + ], + [ + -79.196055, + 37.215596 + ], + [ + -79.195714, + 37.216042 + ], + [ + -79.195395, + 37.216449 + ], + [ + -79.194175, + 37.218086 + ], + [ + -79.193942, + 37.2184 + ], + [ + -79.193714, + 37.218705 + ], + [ + -79.193339, + 37.219208 + ], + [ + -79.193103, + 37.219523 + ], + [ + -79.192804, + 37.219924 + ], + [ + -79.192465, + 37.220384 + ], + [ + -79.191972, + 37.221056 + ], + [ + -79.191665, + 37.221486 + ], + [ + -79.191271, + 37.222039 + ], + [ + -79.191066, + 37.222328 + ], + [ + -79.190837, + 37.222648 + ], + [ + -79.190786, + 37.222724 + ], + [ + -79.190591, + 37.223024 + ], + [ + -79.190561, + 37.223069 + ], + [ + -79.190114, + 37.223762 + ], + [ + -79.189976, + 37.223994 + ], + [ + -79.189786, + 37.224314 + ], + [ + -79.189538, + 37.224731 + ], + [ + -79.189441, + 37.224896 + ], + [ + -79.189231, + 37.225287 + ], + [ + -79.188873, + 37.225949 + ], + [ + -79.188647, + 37.226369 + ], + [ + -79.188578, + 37.226497 + ], + [ + -79.188422, + 37.22682 + ], + [ + -79.187747, + 37.228226 + ], + [ + -79.187638, + 37.228454 + ], + [ + -79.186752, + 37.230317 + ], + [ + -79.186236, + 37.23142 + ], + [ + -79.186183, + 37.231531 + ], + [ + -79.186143, + 37.231633 + ], + [ + -79.186012, + 37.231905 + ], + [ + -79.185971, + 37.232009 + ], + [ + -79.185901, + 37.232204 + ], + [ + -79.185821, + 37.232467 + ], + [ + -79.185783, + 37.232629 + ], + [ + -79.185746, + 37.232787 + ], + [ + -79.185712, + 37.232989 + ], + [ + -79.185564, + 37.234115 + ], + [ + -79.18554, + 37.234342 + ], + [ + -79.185535, + 37.234388 + ], + [ + -79.185527, + 37.234464 + ], + [ + -79.185489, + 37.234824 + ], + [ + -79.185459, + 37.235133 + ], + [ + -79.185442, + 37.235447 + ], + [ + -79.185444, + 37.235802 + ], + [ + -79.185467, + 37.236157 + ], + [ + -79.185494, + 37.236478 + ], + [ + -79.185509, + 37.236629 + ], + [ + -79.185568, + 37.237037 + ], + [ + -79.185613, + 37.237268 + ], + [ + -79.185642, + 37.237403 + ], + [ + -79.185719, + 37.237706 + ], + [ + -79.185791, + 37.237965 + ], + [ + -79.185811, + 37.238037 + ], + [ + -79.185899, + 37.238345 + ], + [ + -79.185952, + 37.238527 + ], + [ + -79.18597, + 37.23859 + ], + [ + -79.186042, + 37.238834 + ], + [ + -79.186525, + 37.240494 + ], + [ + -79.186638, + 37.240882 + ], + [ + -79.186786, + 37.241392 + ], + [ + -79.186995, + 37.242108 + ], + [ + -79.187061, + 37.242336 + ], + [ + -79.187075, + 37.242384 + ], + [ + -79.187298, + 37.243149 + ], + [ + -79.187378, + 37.243422 + ], + [ + -79.187527, + 37.243936 + ], + [ + -79.187774, + 37.244774 + ], + [ + -79.187853, + 37.245008 + ], + [ + -79.187949, + 37.245331 + ], + [ + -79.187975, + 37.245426 + ], + [ + -79.18809, + 37.245933 + ], + [ + -79.188158, + 37.246339 + ], + [ + -79.188193, + 37.246639 + ], + [ + -79.188214, + 37.246935 + ], + [ + -79.188219, + 37.247189 + ], + [ + -79.188219, + 37.247284 + ], + [ + -79.188204, + 37.247624 + ], + [ + -79.188173, + 37.24795 + ], + [ + -79.188121, + 37.248287 + ], + [ + -79.188078, + 37.248502 + ], + [ + -79.188012, + 37.248777 + ], + [ + -79.187964, + 37.248948 + ], + [ + -79.18752, + 37.250322 + ], + [ + -79.187502, + 37.250377 + ], + [ + -79.187461, + 37.250489 + ], + [ + -79.187101, + 37.251604 + ], + [ + -79.186977, + 37.251986 + ], + [ + -79.186803, + 37.252487 + ], + [ + -79.186647, + 37.252862 + ], + [ + -79.186473, + 37.253233 + ], + [ + -79.1864, + 37.253375 + ], + [ + -79.186369, + 37.253435 + ], + [ + -79.186196, + 37.253727 + ], + [ + -79.186096, + 37.253883 + ], + [ + -79.185846, + 37.254253 + ], + [ + -79.185619, + 37.254587 + ], + [ + -79.184816, + 37.255765 + ], + [ + -79.184332, + 37.256471 + ], + [ + -79.184251, + 37.256583 + ], + [ + -79.183919, + 37.257073 + ], + [ + -79.183282, + 37.258009 + ], + [ + -79.183273, + 37.258023 + ], + [ + -79.182658, + 37.258928 + ], + [ + -79.182428, + 37.259266 + ], + [ + -79.182236, + 37.259548 + ], + [ + -79.182189, + 37.259617 + ], + [ + -79.181677, + 37.260371 + ], + [ + -79.180889, + 37.261527 + ], + [ + -79.180329, + 37.262346 + ], + [ + -79.179966, + 37.262877 + ], + [ + -79.178561, + 37.264935 + ], + [ + -79.177834, + 37.265998 + ], + [ + -79.17762, + 37.266312 + ], + [ + -79.177577, + 37.266375 + ], + [ + -79.177344, + 37.266717 + ], + [ + -79.177268, + 37.266828 + ], + [ + -79.175738, + 37.269066 + ], + [ + -79.175293, + 37.269718 + ], + [ + -79.175059, + 37.270062 + ], + [ + -79.175024, + 37.270113 + ], + [ + -79.174746, + 37.27052 + ], + [ + -79.174499, + 37.270885 + ], + [ + -79.174225, + 37.271286 + ], + [ + -79.17318, + 37.27282 + ], + [ + -79.172596, + 37.273676 + ], + [ + -79.172062, + 37.274457 + ], + [ + -79.17205, + 37.274476 + ], + [ + -79.171892, + 37.274707 + ], + [ + -79.171746, + 37.274919 + ], + [ + -79.170612, + 37.276581 + ], + [ + -79.170091, + 37.277344 + ], + [ + -79.170074, + 37.277368 + ], + [ + -79.169014, + 37.27887 + ], + [ + -79.168768, + 37.279279 + ], + [ + -79.168446, + 37.279751 + ], + [ + -79.168095, + 37.28026 + ], + [ + -79.167791, + 37.280704 + ], + [ + -79.167004, + 37.281854 + ], + [ + -79.166839, + 37.282126 + ], + [ + -79.166686, + 37.282417 + ], + [ + -79.166553, + 37.282715 + ], + [ + -79.166455, + 37.282978 + ], + [ + -79.166365, + 37.283271 + ], + [ + -79.166331, + 37.283406 + ], + [ + -79.166277, + 37.283662 + ], + [ + -79.166236, + 37.283934 + ], + [ + -79.166211, + 37.284233 + ], + [ + -79.166208, + 37.284331 + ], + [ + -79.16621, + 37.284606 + ], + [ + -79.166232, + 37.284894 + ], + [ + -79.166273, + 37.28518 + ], + [ + -79.166341, + 37.285491 + ], + [ + -79.166394, + 37.28568 + ], + [ + -79.166419, + 37.28576 + ], + [ + -79.16653, + 37.286061 + ], + [ + -79.16656, + 37.286133 + ], + [ + -79.166601, + 37.286228 + ], + [ + -79.167073, + 37.287187 + ], + [ + -79.167342, + 37.287727 + ], + [ + -79.167647, + 37.288335 + ], + [ + -79.167961, + 37.288961 + ], + [ + -79.168213, + 37.289466 + ], + [ + -79.168669, + 37.290363 + ], + [ + -79.169252, + 37.291516 + ], + [ + -79.169707, + 37.292425 + ], + [ + -79.170019, + 37.293049 + ], + [ + -79.170164, + 37.293337 + ], + [ + -79.170762, + 37.294525 + ], + [ + -79.171017, + 37.295032 + ], + [ + -79.171197, + 37.29539 + ], + [ + -79.171228, + 37.295451 + ], + [ + -79.171707, + 37.296402 + ], + [ + -79.171854, + 37.296694 + ], + [ + -79.172057, + 37.297099 + ], + [ + -79.172329, + 37.297639 + ], + [ + -79.172756, + 37.298485 + ], + [ + -79.172921, + 37.29877 + ], + [ + -79.173118, + 37.299071 + ], + [ + -79.173326, + 37.299351 + ], + [ + -79.1734, + 37.299443 + ], + [ + -79.173711, + 37.299824 + ], + [ + -79.174643, + 37.300928 + ], + [ + -79.177789, + 37.304649 + ], + [ + -79.17841, + 37.305383 + ], + [ + -79.179563, + 37.306751 + ], + [ + -79.18128, + 37.308787 + ], + [ + -79.181492, + 37.309036 + ], + [ + -79.181949, + 37.309573 + ], + [ + -79.182599, + 37.310336 + ], + [ + -79.183198, + 37.311046 + ], + [ + -79.183775, + 37.311729 + ], + [ + -79.183964, + 37.311947 + ], + [ + -79.18428, + 37.312314 + ], + [ + -79.18536, + 37.313557 + ], + [ + -79.18553, + 37.313753 + ], + [ + -79.18588, + 37.314159 + ], + [ + -79.186286, + 37.314624 + ], + [ + -79.186592, + 37.314975 + ], + [ + -79.186893, + 37.31532 + ], + [ + -79.187155, + 37.315623 + ], + [ + -79.187287, + 37.315796 + ], + [ + -79.187433, + 37.315958 + ], + [ + -79.187603, + 37.316193 + ], + [ + -79.187705, + 37.316348 + ], + [ + -79.187781, + 37.316469 + ], + [ + -79.187895, + 37.316666 + ], + [ + -79.188063, + 37.316995 + ], + [ + -79.188211, + 37.31734 + ], + [ + -79.188267, + 37.317488 + ], + [ + -79.188574, + 37.31828 + ], + [ + -79.18873, + 37.318682 + ], + [ + -79.188773, + 37.318793 + ], + [ + -79.188818, + 37.318907 + ], + [ + -79.188983, + 37.319332 + ], + [ + -79.189167, + 37.319817 + ], + [ + -79.18919, + 37.319881 + ], + [ + -79.189276, + 37.320122 + ], + [ + -79.189293, + 37.320183 + ], + [ + -79.189372, + 37.320484 + ], + [ + -79.189407, + 37.320635 + ], + [ + -79.189445, + 37.320825 + ], + [ + -79.189477, + 37.321015 + ], + [ + -79.189492, + 37.321115 + ], + [ + -79.189533, + 37.321458 + ], + [ + -79.189536, + 37.321492 + ], + [ + -79.189586, + 37.322119 + ], + [ + -79.189602, + 37.322319 + ], + [ + -79.189637, + 37.32275 + ], + [ + -79.189647, + 37.322876 + ], + [ + -79.189704, + 37.323523 + ], + [ + -79.189737, + 37.323892 + ], + [ + -79.189747, + 37.323997 + ], + [ + -79.189761, + 37.324147 + ], + [ + -79.189781, + 37.324375 + ], + [ + -79.189798, + 37.324545 + ], + [ + -79.189823, + 37.324722 + ], + [ + -79.189861, + 37.324935 + ], + [ + -79.189896, + 37.325095 + ], + [ + -79.189922, + 37.3252 + ], + [ + -79.190034, + 37.325593 + ], + [ + -79.190115, + 37.325884 + ], + [ + -79.190279, + 37.326471 + ], + [ + -79.190558, + 37.327468 + ], + [ + -79.190626, + 37.327737 + ], + [ + -79.190656, + 37.327855 + ], + [ + -79.190719, + 37.328102 + ], + [ + -79.190893, + 37.328783 + ], + [ + -79.19093, + 37.328914 + ], + [ + -79.19114, + 37.329665 + ], + [ + -79.191197, + 37.329849 + ], + [ + -79.191289, + 37.330174 + ], + [ + -79.191411, + 37.330604 + ], + [ + -79.191427, + 37.330662 + ], + [ + -79.191549, + 37.331144 + ], + [ + -79.191612, + 37.331407 + ], + [ + -79.191674, + 37.33166 + ], + [ + -79.191713, + 37.331945 + ], + [ + -79.191731, + 37.332216 + ], + [ + -79.191727, + 37.3324 + ], + [ + -79.191718, + 37.332618 + ], + [ + -79.191688, + 37.333114 + ], + [ + -79.191671, + 37.333265 + ], + [ + -79.191652, + 37.333506 + ], + [ + -79.191625, + 37.33369 + ], + [ + -79.191591, + 37.333978 + ], + [ + -79.191586, + 37.334109 + ], + [ + -79.191605, + 37.334336 + ], + [ + -79.19161, + 37.334672 + ], + [ + -79.191612, + 37.334771 + ], + [ + -79.191619, + 37.335165 + ], + [ + -79.191615, + 37.335425 + ], + [ + -79.191612, + 37.335464 + ], + [ + -79.191591, + 37.335798 + ], + [ + -79.191573, + 37.33597 + ], + [ + -79.19153, + 37.336198 + ], + [ + -79.191511, + 37.3363 + ], + [ + -79.191476, + 37.336481 + ], + [ + -79.191396, + 37.336901 + ], + [ + -79.191254, + 37.33724 + ], + [ + -79.191108, + 37.337564 + ], + [ + -79.190891, + 37.337852 + ], + [ + -79.190707, + 37.338004 + ], + [ + -79.190446, + 37.338136 + ], + [ + -79.190159, + 37.338232 + ], + [ + -79.189809, + 37.338303 + ], + [ + -79.189504, + 37.338343 + ], + [ + -79.189039, + 37.338414 + ], + [ + -79.188663, + 37.33847 + ], + [ + -79.188351, + 37.338526 + ], + [ + -79.18802, + 37.338571 + ], + [ + -79.18767, + 37.338617 + ], + [ + -79.187276, + 37.338677 + ], + [ + -79.18683, + 37.338758 + ], + [ + -79.186448, + 37.338854 + ], + [ + -79.186232, + 37.338986 + ], + [ + -79.186034, + 37.339158 + ], + [ + -79.185913, + 37.339381 + ], + [ + -79.185862, + 37.339654 + ], + [ + -79.185792, + 37.339958 + ], + [ + -79.185735, + 37.340246 + ], + [ + -79.185608, + 37.340565 + ], + [ + -79.185474, + 37.340849 + ], + [ + -79.185264, + 37.341152 + ], + [ + -79.185009, + 37.341421 + ], + [ + -79.184748, + 37.341658 + ], + [ + -79.184399, + 37.341989 + ], + [ + -79.184093, + 37.342254 + ], + [ + -79.183658, + 37.342682 + ], + [ + -79.18294, + 37.343536 + ], + [ + -79.182113, + 37.344505 + ], + [ + -79.181077, + 37.345699 + ], + [ + -79.180004, + 37.346871 + ], + [ + -79.178729, + 37.348196 + ], + [ + -79.177389, + 37.349407 + ], + [ + -79.177129, + 37.349621 + ], + [ + -79.176626, + 37.350036 + ], + [ + -79.173129, + 37.353092 + ], + [ + -79.169752, + 37.356318 + ], + [ + -79.169186, + 37.356859 + ], + [ + -79.166439, + 37.359647 + ], + [ + -79.165165, + 37.360856 + ], + [ + -79.164528, + 37.361444 + ], + [ + -79.163946, + 37.361878 + ], + [ + -79.162943, + 37.362614 + ], + [ + -79.161891, + 37.363349 + ], + [ + -79.159885, + 37.364693 + ], + [ + -79.158866, + 37.365389 + ], + [ + -79.157915, + 37.36609 + ], + [ + -79.156262, + 37.367299 + ], + [ + -79.153378, + 37.36939 + ], + [ + -79.1513, + 37.370777 + ], + [ + -79.148798, + 37.372337 + ], + [ + -79.146813, + 37.373529 + ], + [ + -79.146135, + 37.37394 + ], + [ + -79.145298, + 37.374385 + ], + [ + -79.144399, + 37.374808 + ], + [ + -79.143032, + 37.375351 + ], + [ + -79.142887, + 37.375396 + ], + [ + -79.141407, + 37.375861 + ], + [ + -79.13952, + 37.376309 + ], + [ + -79.137442, + 37.376753 + ], + [ + -79.136385, + 37.376976 + ], + [ + -79.135221, + 37.37722 + ], + [ + -79.134065, + 37.377456 + ], + [ + -79.132756, + 37.377733 + ], + [ + -79.131505, + 37.377997 + ], + [ + -79.130701, + 37.378165 + ], + [ + -79.129655, + 37.378385 + ], + [ + -79.128812, + 37.378561 + ], + [ + -79.127809, + 37.378776 + ], + [ + -79.127166, + 37.378891 + ], + [ + -79.124907, + 37.379433 + ], + [ + -79.122351, + 37.380007 + ], + [ + -79.119924, + 37.380555 + ], + [ + -79.118369, + 37.380958 + ], + [ + -79.116892, + 37.381492 + ], + [ + -79.11429, + 37.382508 + ], + [ + -79.111589, + 37.383564 + ], + [ + -79.110432, + 37.384015 + ], + [ + -79.108723, + 37.384663 + ], + [ + -79.107004, + 37.385341 + ], + [ + -79.10533, + 37.38597 + ], + [ + -79.10529, + 37.385969 + ], + [ + -79.104874, + 37.386095 + ], + [ + -79.104406, + 37.386191 + ], + [ + -79.103958, + 37.38624 + ], + [ + -79.103328, + 37.386271 + ], + [ + -79.101681, + 37.386155 + ], + [ + -79.101144, + 37.386117 + ], + [ + -79.100418, + 37.386038 + ], + [ + -79.097991, + 37.385843 + ], + [ + -79.09636, + 37.385744 + ], + [ + -79.095982, + 37.385658 + ], + [ + -79.095845, + 37.385614 + ], + [ + -79.09571, + 37.385555 + ], + [ + -79.095567, + 37.38548 + ], + [ + -79.095427, + 37.38539 + ], + [ + -79.095308, + 37.385296 + ], + [ + -79.09517, + 37.385161 + ], + [ + -79.09509, + 37.385054 + ], + [ + -79.094998, + 37.384905 + ], + [ + -79.094916, + 37.384737 + ], + [ + -79.094844, + 37.384528 + ], + [ + -79.094656, + 37.383845 + ], + [ + -79.094531, + 37.38345 + ], + [ + -79.094325, + 37.383054 + ], + [ + -79.094038, + 37.38276 + ], + [ + -79.093621, + 37.382467 + ], + [ + -79.093187, + 37.382294 + ], + [ + -79.092689, + 37.382201 + ], + [ + -79.092284, + 37.382201 + ], + [ + -79.091903, + 37.382257 + ], + [ + -79.091551, + 37.382364 + ], + [ + -79.091187, + 37.382541 + ], + [ + -79.090959, + 37.382723 + ], + [ + -79.090789, + 37.382882 + ], + [ + -79.090589, + 37.383115 + ], + [ + -79.090443, + 37.383376 + ], + [ + -79.090284, + 37.383744 + ], + [ + -79.090225, + 37.384 + ], + [ + -79.090179, + 37.384541 + ], + [ + -79.090062, + 37.385779 + ], + [ + -79.089925, + 37.386644 + ], + [ + -79.089849, + 37.387226 + ], + [ + -79.089779, + 37.387541 + ], + [ + -79.089689, + 37.387836 + ], + [ + -79.0895, + 37.38838 + ], + [ + -79.089436, + 37.388633 + ], + [ + -79.089405, + 37.388841 + ], + [ + -79.089289, + 37.389685 + ], + [ + -79.089161, + 37.39093 + ], + [ + -79.089008, + 37.392008 + ], + [ + -79.08881, + 37.394069 + ], + [ + -79.088768, + 37.394579 + ], + [ + -79.088645, + 37.395885 + ], + [ + -79.088477, + 37.397207 + ], + [ + -79.087956, + 37.401181 + ], + [ + -79.087825, + 37.401823 + ], + [ + -79.087665, + 37.402308 + ], + [ + -79.087554, + 37.402629 + ], + [ + -79.08736, + 37.403142 + ], + [ + -79.087142, + 37.403562 + ], + [ + -79.086923, + 37.403937 + ], + [ + -79.086762, + 37.404195 + ], + [ + -79.086439, + 37.404708 + ], + [ + -79.086251, + 37.405002 + ], + [ + -79.085982, + 37.405393 + ], + [ + -79.085647, + 37.405896 + ], + [ + -79.085037, + 37.406824 + ], + [ + -79.084691, + 37.407346 + ], + [ + -79.084239, + 37.407998 + ], + [ + -79.084081, + 37.408208 + ], + [ + -79.083969, + 37.408376 + ], + [ + -79.083852, + 37.408534 + ], + [ + -79.083752, + 37.408705 + ], + [ + -79.083641, + 37.408893 + ], + [ + -79.08253, + 37.41059 + ], + [ + -79.082107, + 37.41155 + ], + [ + -79.081937, + 37.412163 + ], + [ + -79.081833, + 37.412538 + ], + [ + -79.081757, + 37.413176 + ], + [ + -79.08171, + 37.413903 + ], + [ + -79.081751, + 37.414774 + ], + [ + -79.081781, + 37.415758 + ], + [ + -79.081777, + 37.417393 + ], + [ + -79.081646, + 37.41901 + ], + [ + -79.081485, + 37.420256 + ], + [ + -79.081292, + 37.421219 + ], + [ + -79.081057, + 37.422257 + ], + [ + -79.080513, + 37.424117 + ], + [ + -79.07951, + 37.427155 + ], + [ + -79.078061, + 37.431195 + ], + [ + -79.077269, + 37.433524 + ], + [ + -79.076993, + 37.434391 + ], + [ + -79.076647, + 37.435495 + ], + [ + -79.076395, + 37.436608 + ], + [ + -79.076304, + 37.437254 + ], + [ + -79.076229, + 37.438019 + ], + [ + -79.076213, + 37.439312 + ], + [ + -79.076213, + 37.439413 + ], + [ + -79.076155, + 37.442774 + ], + [ + -79.07614, + 37.443179 + ], + [ + -79.076116, + 37.443841 + ], + [ + -79.076046, + 37.446058 + ], + [ + -79.075976, + 37.449173 + ], + [ + -79.076002, + 37.451689 + ], + [ + -79.076065, + 37.4523 + ], + [ + -79.076262, + 37.453 + ], + [ + -79.076579, + 37.453683 + ], + [ + -79.076982, + 37.454312 + ], + [ + -79.077536, + 37.45501 + ], + [ + -79.079739, + 37.457229 + ], + [ + -79.080689, + 37.458217 + ], + [ + -79.081531, + 37.459252 + ], + [ + -79.082085, + 37.460038 + ], + [ + -79.082441, + 37.460738 + ], + [ + -79.082708, + 37.461304 + ], + [ + -79.082968, + 37.461981 + ], + [ + -79.083137, + 37.462694 + ], + [ + -79.083265, + 37.463513 + ], + [ + -79.083293, + 37.464338 + ], + [ + -79.083287, + 37.464745 + ], + [ + -79.083277, + 37.465166 + ], + [ + -79.083236, + 37.465743 + ], + [ + -79.083136, + 37.466259 + ], + [ + -79.082678, + 37.468029 + ], + [ + -79.082438, + 37.469156 + ], + [ + -79.08215, + 37.470371 + ], + [ + -79.081963, + 37.471033 + ], + [ + -79.081827, + 37.471415 + ], + [ + -79.081408, + 37.472342 + ], + [ + -79.081005, + 37.47309 + ], + [ + -79.080296, + 37.474045 + ], + [ + -79.079641, + 37.474751 + ], + [ + -79.078249, + 37.476094 + ], + [ + -79.077451, + 37.477058 + ], + [ + -79.076776, + 37.477863 + ], + [ + -79.076213, + 37.478711 + ], + [ + -79.075638, + 37.479763 + ], + [ + -79.075274, + 37.480624 + ], + [ + -79.074869, + 37.481821 + ], + [ + -79.074675, + 37.482594 + ], + [ + -79.074634, + 37.482892 + ], + [ + -79.074593, + 37.483204 + ], + [ + -79.07457, + 37.483627 + ], + [ + -79.074448, + 37.484732 + ], + [ + -79.074331, + 37.485753 + ], + [ + -79.074167, + 37.486518 + ], + [ + -79.073888, + 37.487326 + ], + [ + -79.073467, + 37.488074 + ], + [ + -79.07305, + 37.488846 + ], + [ + -79.072616, + 37.489619 + ], + [ + -79.072018, + 37.490699 + ], + [ + -79.07163, + 37.49136 + ], + [ + -79.070791, + 37.492896 + ], + [ + -79.070146, + 37.494186 + ], + [ + -79.06953, + 37.495438 + ], + [ + -79.068703, + 37.497026 + ], + [ + -79.067817, + 37.498799 + ], + [ + -79.067177, + 37.500098 + ], + [ + -79.066497, + 37.501471 + ], + [ + -79.066168, + 37.502341 + ], + [ + -79.065974, + 37.503063 + ], + [ + -79.065895, + 37.503746 + ], + [ + -79.065857, + 37.504329 + ], + [ + -79.065851, + 37.505804 + ], + [ + -79.065851, + 37.506847 + ], + [ + -79.065828, + 37.508187 + ], + [ + -79.065831, + 37.509824 + ], + [ + -79.0658, + 37.510657 + ], + [ + -79.065769, + 37.511273 + ], + [ + -79.065628, + 37.51191 + ], + [ + -79.065455, + 37.512506 + ], + [ + -79.065165, + 37.513111 + ], + [ + -79.064807, + 37.513823 + ], + [ + -79.064426, + 37.514512 + ], + [ + -79.063986, + 37.515424 + ], + [ + -79.063804, + 37.515903 + ], + [ + -79.063545, + 37.516788 + ], + [ + -79.063328, + 37.51796 + ], + [ + -79.063264, + 37.519296 + ], + [ + -79.063311, + 37.520208 + ], + [ + -79.063487, + 37.521209 + ], + [ + -79.063645, + 37.522214 + ], + [ + -79.063845, + 37.523275 + ], + [ + -79.06425, + 37.525364 + ], + [ + -79.064871, + 37.528602 + ], + [ + -79.065376, + 37.531264 + ], + [ + -79.066057, + 37.534819 + ], + [ + -79.066725, + 37.538252 + ], + [ + -79.0674, + 37.541904 + ], + [ + -79.06794, + 37.544546 + ], + [ + -79.068021, + 37.545221 + ], + [ + -79.068093, + 37.545891 + ], + [ + -79.068075, + 37.546616 + ], + [ + -79.067977, + 37.547323 + ], + [ + -79.067805, + 37.547989 + ], + [ + -79.06729, + 37.549617 + ], + [ + -79.066508, + 37.552189 + ], + [ + -79.066203, + 37.55312 + ], + [ + -79.065916, + 37.554199 + ], + [ + -79.06571, + 37.554864 + ], + [ + -79.065358, + 37.555901 + ], + [ + -79.06462, + 37.558162 + ], + [ + -79.064236, + 37.559374 + ], + [ + -79.064086, + 37.559848 + ], + [ + -79.063835, + 37.560896 + ], + [ + -79.063609, + 37.561383 + ], + [ + -79.063256, + 37.561986 + ], + [ + -79.062896, + 37.562503 + ], + [ + -79.062134, + 37.563345 + ], + [ + -79.061625, + 37.563753 + ], + [ + -79.06094, + 37.564213 + ], + [ + -79.058641, + 37.565583 + ], + [ + -79.05758, + 37.566208 + ], + [ + -79.056639, + 37.566768 + ], + [ + -79.055935, + 37.567192 + ], + [ + -79.055742, + 37.567302 + ], + [ + -79.055553, + 37.567416 + ], + [ + -79.055246, + 37.567615 + ], + [ + -79.054927, + 37.567838 + ], + [ + -79.054748, + 37.567977 + ], + [ + -79.054525, + 37.568169 + ], + [ + -79.05429, + 37.568391 + ], + [ + -79.054239, + 37.568442 + ], + [ + -79.054034, + 37.568657 + ], + [ + -79.053873, + 37.56885 + ], + [ + -79.053657, + 37.569143 + ], + [ + -79.053524, + 37.569347 + ], + [ + -79.053368, + 37.569618 + ], + [ + -79.053228, + 37.569894 + ], + [ + -79.053172, + 37.570026 + ], + [ + -79.053043, + 37.570358 + ], + [ + -79.05286, + 37.57095 + ], + [ + -79.052677, + 37.571527 + ], + [ + -79.052485, + 37.572133 + ], + [ + -79.052132, + 37.573261 + ], + [ + -79.051632, + 37.57486 + ], + [ + -79.051348, + 37.57574 + ], + [ + -79.051123, + 37.576286 + ], + [ + -79.051087, + 37.576361 + ], + [ + -79.050788, + 37.576916 + ], + [ + -79.050662, + 37.577116 + ], + [ + -79.050472, + 37.577395 + ], + [ + -79.050278, + 37.577652 + ], + [ + -79.050057, + 37.577924 + ], + [ + -79.049759, + 37.578262 + ], + [ + -79.049412, + 37.578608 + ], + [ + -79.049047, + 37.578931 + ], + [ + -79.047001, + 37.580602 + ], + [ + -79.046515, + 37.580994 + ], + [ + -79.046166, + 37.58126 + ], + [ + -79.045909, + 37.581455 + ], + [ + -79.04561, + 37.58167 + ], + [ + -79.045264, + 37.581887 + ], + [ + -79.044961, + 37.582077 + ], + [ + -79.044149, + 37.582573 + ], + [ + -79.04353, + 37.582927 + ], + [ + -79.04291, + 37.58327 + ], + [ + -79.042129, + 37.58371 + ], + [ + -79.041873, + 37.583864 + ], + [ + -79.041806, + 37.58391 + ], + [ + -79.041621, + 37.584017 + ], + [ + -79.041414, + 37.584155 + ], + [ + -79.041178, + 37.58431 + ], + [ + -79.040635, + 37.584689 + ], + [ + -79.039894, + 37.585255 + ], + [ + -79.039608, + 37.585491 + ], + [ + -79.03912, + 37.585904 + ], + [ + -79.038845, + 37.586155 + ], + [ + -79.038474, + 37.586513 + ], + [ + -79.03781, + 37.587198 + ], + [ + -79.037358, + 37.587719 + ], + [ + -79.037086, + 37.588056 + ], + [ + -79.036877, + 37.588331 + ], + [ + -79.036498, + 37.588836 + ], + [ + -79.036258, + 37.589205 + ], + [ + -79.035926, + 37.589739 + ], + [ + -79.034645, + 37.591992 + ], + [ + -79.034482, + 37.592286 + ], + [ + -79.034097, + 37.592957 + ], + [ + -79.033913, + 37.593255 + ], + [ + -79.033669, + 37.593669 + ], + [ + -79.033006, + 37.594819 + ], + [ + -79.032654, + 37.595452 + ], + [ + -79.032044, + 37.596522 + ], + [ + -79.031678, + 37.597159 + ], + [ + -79.031353, + 37.597735 + ], + [ + -79.03004, + 37.600074 + ], + [ + -79.029644, + 37.600763 + ], + [ + -79.028963, + 37.601951 + ], + [ + -79.028685, + 37.602397 + ], + [ + -79.02851, + 37.602662 + ], + [ + -79.028221, + 37.603043 + ], + [ + -79.027978, + 37.603341 + ], + [ + -79.027692, + 37.60368 + ], + [ + -79.027548, + 37.60383 + ], + [ + -79.027306, + 37.604072 + ], + [ + -79.027105, + 37.604269 + ], + [ + -79.02697, + 37.604392 + ], + [ + -79.026652, + 37.60468 + ], + [ + -79.026083, + 37.605207 + ], + [ + -79.026036, + 37.60525 + ], + [ + -79.025989, + 37.605294 + ], + [ + -79.025872, + 37.605402 + ], + [ + -79.02555, + 37.605685 + ], + [ + -79.025303, + 37.605893 + ], + [ + -79.025239, + 37.605951 + ], + [ + -79.025075, + 37.606102 + ], + [ + -79.024795, + 37.606358 + ], + [ + -79.024408, + 37.606702 + ], + [ + -79.024072, + 37.607013 + ], + [ + -79.024053, + 37.607031 + ], + [ + -79.023787, + 37.607264 + ], + [ + -79.023498, + 37.607516 + ], + [ + -79.023027, + 37.607911 + ], + [ + -79.022811, + 37.60807 + ], + [ + -79.022583, + 37.608218 + ], + [ + -79.022393, + 37.608329 + ], + [ + -79.022103, + 37.608478 + ], + [ + -79.021864, + 37.608585 + ], + [ + -79.021424, + 37.608752 + ], + [ + -79.020855, + 37.608965 + ], + [ + -79.020271, + 37.609195 + ], + [ + -79.020171, + 37.609236 + ], + [ + -79.019921, + 37.609348 + ], + [ + -79.019569, + 37.609526 + ], + [ + -79.019341, + 37.609661 + ], + [ + -79.019134, + 37.609801 + ], + [ + -79.018938, + 37.609951 + ], + [ + -79.018736, + 37.61013 + ], + [ + -79.018557, + 37.610318 + ], + [ + -79.018408, + 37.6105 + ], + [ + -79.018273, + 37.610689 + ], + [ + -79.018177, + 37.610845 + ], + [ + -79.018077, + 37.611005 + ], + [ + -79.017942, + 37.61127 + ], + [ + -79.01775, + 37.611733 + ], + [ + -79.017583, + 37.612195 + ], + [ + -79.017453, + 37.612536 + ], + [ + -79.01736, + 37.612779 + ], + [ + -79.017077, + 37.613518 + ], + [ + -79.016316, + 37.615651 + ], + [ + -79.016211, + 37.615921 + ], + [ + -79.015957, + 37.616661 + ], + [ + -79.015442, + 37.618041 + ], + [ + -79.015171, + 37.618767 + ], + [ + -79.015044, + 37.619085 + ], + [ + -79.014896, + 37.619401 + ], + [ + -79.014725, + 37.619699 + ], + [ + -79.014609, + 37.619891 + ], + [ + -79.014507, + 37.620046 + ], + [ + -79.014326, + 37.620291 + ], + [ + -79.014076, + 37.620611 + ], + [ + -79.013882, + 37.620808 + ], + [ + -79.013583, + 37.621079 + ], + [ + -79.012998, + 37.621504 + ], + [ + -79.01238, + 37.621893 + ], + [ + -79.010646, + 37.622959 + ], + [ + -79.01003, + 37.623323 + ], + [ + -79.009112, + 37.623886 + ], + [ + -79.007841, + 37.62468 + ], + [ + -79.007669, + 37.624786 + ], + [ + -79.00613, + 37.625753 + ], + [ + -79.00574, + 37.625992 + ], + [ + -79.004933, + 37.626484 + ], + [ + -79.004251, + 37.626912 + ], + [ + -79.004139, + 37.626981 + ], + [ + -79.003154, + 37.627592 + ], + [ + -79.001641, + 37.628516 + ], + [ + -79.001111, + 37.628835 + ], + [ + -79.00072, + 37.62907 + ], + [ + -79.000623, + 37.62914 + ], + [ + -79.000217, + 37.629394 + ], + [ + -78.998912, + 37.630202 + ], + [ + -78.998196, + 37.630645 + ], + [ + -78.997598, + 37.631025 + ], + [ + -78.997526, + 37.631071 + ], + [ + -78.997241, + 37.631274 + ], + [ + -78.996875, + 37.631534 + ], + [ + -78.996217, + 37.63205 + ], + [ + -78.995656, + 37.632525 + ], + [ + -78.995017, + 37.633129 + ], + [ + -78.994464, + 37.633668 + ], + [ + -78.993794, + 37.634338 + ], + [ + -78.992582, + 37.635539 + ], + [ + -78.99241, + 37.635715 + ], + [ + -78.992112, + 37.636 + ], + [ + -78.991971, + 37.636127 + ], + [ + -78.991598, + 37.636454 + ], + [ + -78.991319, + 37.636676 + ], + [ + -78.991111, + 37.636827 + ], + [ + -78.990724, + 37.637089 + ], + [ + -78.990344, + 37.637324 + ], + [ + -78.989967, + 37.637537 + ], + [ + -78.989578, + 37.637737 + ], + [ + -78.988855, + 37.638052 + ], + [ + -78.98807, + 37.638382 + ], + [ + -78.986736, + 37.63892 + ], + [ + -78.986454, + 37.639034 + ], + [ + -78.985803, + 37.639316 + ], + [ + -78.984897, + 37.639687 + ], + [ + -78.98388, + 37.640096 + ], + [ + -78.983117, + 37.640414 + ], + [ + -78.982726, + 37.640573 + ], + [ + -78.981774, + 37.640959 + ], + [ + -78.979687, + 37.64182 + ], + [ + -78.978231, + 37.642417 + ], + [ + -78.977005, + 37.64291 + ], + [ + -78.97646, + 37.643116 + ], + [ + -78.975777, + 37.643333 + ], + [ + -78.975711, + 37.643354 + ], + [ + -78.97542, + 37.643425 + ], + [ + -78.974834, + 37.643551 + ], + [ + -78.974604, + 37.64359 + ], + [ + -78.974067, + 37.643681 + ], + [ + -78.973393, + 37.643752 + ], + [ + -78.972559, + 37.643813 + ], + [ + -78.972242, + 37.643839 + ], + [ + -78.970006, + 37.64399 + ], + [ + -78.96903, + 37.64406 + ], + [ + -78.968589, + 37.644095 + ], + [ + -78.968224, + 37.644136 + ], + [ + -78.967889, + 37.644182 + ], + [ + -78.967664, + 37.644226 + ], + [ + -78.967387, + 37.644293 + ], + [ + -78.967224, + 37.644341 + ], + [ + -78.966957, + 37.64443 + ], + [ + -78.966688, + 37.644536 + ], + [ + -78.966474, + 37.644631 + ], + [ + -78.966164, + 37.644789 + ], + [ + -78.965983, + 37.644902 + ], + [ + -78.965692, + 37.645098 + ], + [ + -78.965428, + 37.645294 + ], + [ + -78.965238, + 37.645456 + ], + [ + -78.965063, + 37.645628 + ], + [ + -78.964898, + 37.645816 + ], + [ + -78.964762, + 37.645992 + ], + [ + -78.964605, + 37.646219 + ], + [ + -78.964465, + 37.646453 + ], + [ + -78.964354, + 37.646672 + ], + [ + -78.96426, + 37.646896 + ], + [ + -78.964184, + 37.647124 + ], + [ + -78.964105, + 37.647472 + ], + [ + -78.964045, + 37.647822 + ], + [ + -78.963795, + 37.650137 + ], + [ + -78.963771, + 37.650446 + ], + [ + -78.963726, + 37.650831 + ], + [ + -78.963699, + 37.651104 + ], + [ + -78.963637, + 37.651545 + ], + [ + -78.963559, + 37.651968 + ], + [ + -78.963475, + 37.652244 + ], + [ + -78.963403, + 37.652439 + ], + [ + -78.963343, + 37.65259 + ], + [ + -78.963259, + 37.652771 + ], + [ + -78.963211, + 37.652855 + ], + [ + -78.963159, + 37.652948 + ], + [ + -78.963044, + 37.653119 + ], + [ + -78.962876, + 37.65334 + ], + [ + -78.962692, + 37.653554 + ], + [ + -78.961989, + 37.654258 + ], + [ + -78.961507, + 37.654728 + ], + [ + -78.961039, + 37.655181 + ], + [ + -78.960337, + 37.655875 + ], + [ + -78.96023, + 37.655972 + ], + [ + -78.960126, + 37.656071 + ], + [ + -78.959777, + 37.656385 + ], + [ + -78.959596, + 37.656559 + ], + [ + -78.959428, + 37.656733 + ], + [ + -78.95894, + 37.657212 + ], + [ + -78.958347, + 37.65781 + ], + [ + -78.957955, + 37.658265 + ], + [ + -78.957902, + 37.65834 + ], + [ + -78.957703, + 37.658582 + ], + [ + -78.956957, + 37.659613 + ], + [ + -78.956, + 37.660952 + ], + [ + -78.95555, + 37.661601 + ], + [ + -78.95521, + 37.662149 + ], + [ + -78.955078, + 37.662367 + ], + [ + -78.954742, + 37.662988 + ], + [ + -78.954584, + 37.663297 + ], + [ + -78.954305, + 37.663917 + ], + [ + -78.954148, + 37.6643 + ], + [ + -78.953981, + 37.664751 + ], + [ + -78.953842, + 37.665162 + ], + [ + -78.953791, + 37.665348 + ], + [ + -78.953693, + 37.665702 + ], + [ + -78.953658, + 37.665836 + ], + [ + -78.953519, + 37.666441 + ], + [ + -78.953449, + 37.666806 + ], + [ + -78.953407, + 37.667104 + ], + [ + -78.953324, + 37.667763 + ], + [ + -78.953292, + 37.668183 + ], + [ + -78.953221, + 37.669156 + ], + [ + -78.953153, + 37.670098 + ], + [ + -78.953142, + 37.670264 + ], + [ + -78.953141, + 37.6704 + ], + [ + -78.953072, + 37.671177 + ], + [ + -78.95304, + 37.671615 + ], + [ + -78.952995, + 37.672174 + ], + [ + -78.952947, + 37.672942 + ], + [ + -78.95292, + 37.673225 + ], + [ + -78.952878, + 37.673819 + ], + [ + -78.952829, + 37.674339 + ], + [ + -78.952797, + 37.674686 + ], + [ + -78.952784, + 37.674804 + ], + [ + -78.952747, + 37.675024 + ], + [ + -78.952692, + 37.675301 + ], + [ + -78.952624, + 37.675578 + ], + [ + -78.952561, + 37.675784 + ], + [ + -78.952486, + 37.675985 + ], + [ + -78.952442, + 37.676122 + ], + [ + -78.952386, + 37.676257 + ], + [ + -78.95232, + 37.676433 + ], + [ + -78.952115, + 37.676852 + ], + [ + -78.952045, + 37.676981 + ], + [ + -78.951895, + 37.677259 + ], + [ + -78.951765, + 37.677478 + ], + [ + -78.951015, + 37.678688 + ], + [ + -78.950642, + 37.679294 + ], + [ + -78.950106, + 37.680167 + ], + [ + -78.949932, + 37.680439 + ], + [ + -78.949555, + 37.681057 + ], + [ + -78.948514, + 37.682749 + ], + [ + -78.948346, + 37.683014 + ], + [ + -78.94819, + 37.68327 + ], + [ + -78.947933, + 37.683687 + ], + [ + -78.947735, + 37.683997 + ], + [ + -78.946949, + 37.685284 + ], + [ + -78.946763, + 37.685577 + ], + [ + -78.946171, + 37.686544 + ], + [ + -78.946077, + 37.686718 + ], + [ + -78.945972, + 37.686928 + ], + [ + -78.945848, + 37.687201 + ], + [ + -78.945794, + 37.687349 + ], + [ + -78.945689, + 37.687661 + ], + [ + -78.945632, + 37.687901 + ], + [ + -78.945568, + 37.688266 + ], + [ + -78.945541, + 37.688542 + ], + [ + -78.945537, + 37.688659 + ], + [ + -78.945545, + 37.689126 + ], + [ + -78.945579, + 37.689434 + ], + [ + -78.945664, + 37.689907 + ], + [ + -78.945683, + 37.68999 + ], + [ + -78.945776, + 37.690456 + ], + [ + -78.945835, + 37.69071 + ], + [ + -78.945961, + 37.691323 + ], + [ + -78.946182, + 37.69241 + ], + [ + -78.946237, + 37.692788 + ], + [ + -78.946274, + 37.693085 + ], + [ + -78.946296, + 37.693491 + ], + [ + -78.946303, + 37.694022 + ], + [ + -78.946301, + 37.694057 + ], + [ + -78.946287, + 37.694387 + ], + [ + -78.946261, + 37.694709 + ], + [ + -78.946249, + 37.694805 + ], + [ + -78.946182, + 37.695293 + ], + [ + -78.946055, + 37.695876 + ], + [ + -78.945864, + 37.696567 + ], + [ + -78.945405, + 37.698162 + ], + [ + -78.945298, + 37.698548 + ], + [ + -78.944826, + 37.700186 + ], + [ + -78.944719, + 37.700501 + ], + [ + -78.94458, + 37.700835 + ], + [ + -78.944457, + 37.701074 + ], + [ + -78.944324, + 37.701307 + ], + [ + -78.944135, + 37.701595 + ], + [ + -78.944026, + 37.701738 + ], + [ + -78.943778, + 37.70202 + ], + [ + -78.943504, + 37.702305 + ], + [ + -78.943214, + 37.702564 + ], + [ + -78.94302, + 37.702719 + ], + [ + -78.942935, + 37.702779 + ], + [ + -78.942809, + 37.702868 + ], + [ + -78.942485, + 37.703077 + ], + [ + -78.942218, + 37.703232 + ], + [ + -78.9405, + 37.704132 + ], + [ + -78.940455, + 37.704155 + ], + [ + -78.940006, + 37.704381 + ], + [ + -78.938227, + 37.705302 + ], + [ + -78.93698, + 37.705948 + ], + [ + -78.93647, + 37.706225 + ], + [ + -78.93488, + 37.707122 + ], + [ + -78.934646, + 37.707256 + ], + [ + -78.93388, + 37.707679 + ], + [ + -78.933448, + 37.707924 + ], + [ + -78.932774, + 37.708305 + ], + [ + -78.931107, + 37.709235 + ], + [ + -78.929365, + 37.710215 + ], + [ + -78.928987, + 37.710423 + ], + [ + -78.928188, + 37.710873 + ], + [ + -78.927848, + 37.711058 + ], + [ + -78.927739, + 37.711117 + ], + [ + -78.927286, + 37.71134 + ], + [ + -78.927035, + 37.711449 + ], + [ + -78.926705, + 37.711572 + ], + [ + -78.926357, + 37.711684 + ], + [ + -78.926015, + 37.711773 + ], + [ + -78.925764, + 37.711831 + ], + [ + -78.925742, + 37.711836 + ], + [ + -78.925395, + 37.711899 + ], + [ + -78.925098, + 37.711943 + ], + [ + -78.92463, + 37.712006 + ], + [ + -78.924358, + 37.71204 + ], + [ + -78.9241, + 37.712072 + ], + [ + -78.923317, + 37.712168 + ], + [ + -78.922673, + 37.712257 + ], + [ + -78.921644, + 37.712386 + ], + [ + -78.920771, + 37.712503 + ], + [ + -78.91879, + 37.712755 + ], + [ + -78.917763, + 37.712894 + ], + [ + -78.916758, + 37.713029 + ], + [ + -78.916316, + 37.713107 + ], + [ + -78.915891, + 37.713204 + ], + [ + -78.915614, + 37.71328 + ], + [ + -78.915324, + 37.713372 + ], + [ + -78.915274, + 37.713388 + ], + [ + -78.914912, + 37.71352 + ], + [ + -78.91455, + 37.71367 + ], + [ + -78.914179, + 37.713842 + ], + [ + -78.913675, + 37.714085 + ], + [ + -78.912967, + 37.714415 + ], + [ + -78.910226, + 37.715714 + ], + [ + -78.90939, + 37.716116 + ], + [ + -78.908844, + 37.716378 + ], + [ + -78.908565, + 37.716525 + ], + [ + -78.908344, + 37.716654 + ], + [ + -78.908223, + 37.716733 + ], + [ + -78.907898, + 37.716972 + ], + [ + -78.907709, + 37.71712 + ], + [ + -78.907284, + 37.717479 + ], + [ + -78.905705, + 37.718784 + ], + [ + -78.905314, + 37.719084 + ], + [ + -78.90491, + 37.719372 + ], + [ + -78.904525, + 37.719604 + ], + [ + -78.904033, + 37.719882 + ], + [ + -78.903337, + 37.720265 + ], + [ + -78.902528, + 37.720722 + ], + [ + -78.902455, + 37.720766 + ], + [ + -78.902055, + 37.720998 + ], + [ + -78.901704, + 37.721237 + ], + [ + -78.901372, + 37.721492 + ], + [ + -78.901207, + 37.721632 + ], + [ + -78.901102, + 37.721732 + ], + [ + -78.90093, + 37.721897 + ], + [ + -78.900791, + 37.722043 + ], + [ + -78.900736, + 37.722103 + ], + [ + -78.900601, + 37.722261 + ], + [ + -78.900394, + 37.722523 + ], + [ + -78.900222, + 37.722764 + ], + [ + -78.900079, + 37.722992 + ], + [ + -78.900004, + 37.723131 + ], + [ + -78.899716, + 37.723665 + ], + [ + -78.899467, + 37.724145 + ], + [ + -78.899406, + 37.724274 + ], + [ + -78.89922, + 37.72461 + ], + [ + -78.899008, + 37.725016 + ], + [ + -78.898838, + 37.725322 + ], + [ + -78.898749, + 37.725462 + ], + [ + -78.898619, + 37.725684 + ], + [ + -78.898501, + 37.725886 + ], + [ + -78.898424, + 37.726009 + ], + [ + -78.898396, + 37.726054 + ], + [ + -78.89823, + 37.726333 + ], + [ + -78.897785, + 37.72702 + ], + [ + -78.897326, + 37.727687 + ], + [ + -78.897029, + 37.728104 + ], + [ + -78.896755, + 37.72847 + ], + [ + -78.896087, + 37.729327 + ], + [ + -78.895376, + 37.730223 + ], + [ + -78.89492, + 37.73078 + ], + [ + -78.894224, + 37.731648 + ], + [ + -78.893951, + 37.731982 + ], + [ + -78.893208, + 37.732922 + ], + [ + -78.893101, + 37.733073 + ], + [ + -78.892951, + 37.733284 + ], + [ + -78.892829, + 37.733486 + ], + [ + -78.892725, + 37.733694 + ], + [ + -78.892653, + 37.733852 + ], + [ + -78.892395, + 37.734583 + ], + [ + -78.892264, + 37.735006 + ], + [ + -78.891874, + 37.73617 + ], + [ + -78.891809, + 37.736394 + ], + [ + -78.891615, + 37.736972 + ], + [ + -78.891508, + 37.737307 + ], + [ + -78.891316, + 37.737819 + ], + [ + -78.891154, + 37.738191 + ], + [ + -78.891075, + 37.738356 + ], + [ + -78.891011, + 37.738485 + ], + [ + -78.890701, + 37.739024 + ], + [ + -78.890539, + 37.739262 + ], + [ + -78.890353, + 37.739521 + ], + [ + -78.890119, + 37.739847 + ], + [ + -78.889796, + 37.740253 + ], + [ + -78.889491, + 37.740645 + ], + [ + -78.889217, + 37.740996 + ], + [ + -78.888944, + 37.74133 + ], + [ + -78.888623, + 37.741743 + ], + [ + -78.888513, + 37.741886 + ], + [ + -78.888267, + 37.742188 + ], + [ + -78.887876, + 37.742653 + ], + [ + -78.887675, + 37.74287 + ], + [ + -78.887504, + 37.743037 + ], + [ + -78.887277, + 37.743237 + ], + [ + -78.887216, + 37.743287 + ], + [ + -78.887135, + 37.743353 + ], + [ + -78.886534, + 37.743824 + ], + [ + -78.886162, + 37.744125 + ], + [ + -78.8861, + 37.744182 + ], + [ + -78.885899, + 37.744355 + ], + [ + -78.885622, + 37.744575 + ], + [ + -78.885356, + 37.74478 + ], + [ + -78.884605, + 37.745388 + ], + [ + -78.884042, + 37.74585 + ], + [ + -78.882882, + 37.746752 + ], + [ + -78.882051, + 37.747417 + ], + [ + -78.880834, + 37.748391 + ], + [ + -78.88003, + 37.749038 + ], + [ + -78.879751, + 37.749271 + ], + [ + -78.879568, + 37.74942 + ], + [ + -78.879376, + 37.749569 + ], + [ + -78.878419, + 37.750353 + ], + [ + -78.877854, + 37.750804 + ], + [ + -78.877584, + 37.751037 + ], + [ + -78.877286, + 37.751315 + ], + [ + -78.877004, + 37.751598 + ], + [ + -78.876844, + 37.751774 + ], + [ + -78.876626, + 37.752042 + ], + [ + -78.876378, + 37.752385 + ], + [ + -78.876192, + 37.752665 + ], + [ + -78.876061, + 37.752882 + ], + [ + -78.875814, + 37.753345 + ], + [ + -78.875209, + 37.754691 + ], + [ + -78.874619, + 37.756931 + ], + [ + -78.874501, + 37.757307 + ], + [ + -78.874339, + 37.757855 + ], + [ + -78.873994, + 37.758979 + ], + [ + -78.873789, + 37.759637 + ], + [ + -78.873696, + 37.75991 + ], + [ + -78.873541, + 37.760318 + ], + [ + -78.873332, + 37.760834 + ], + [ + -78.873094, + 37.761337 + ], + [ + -78.872847, + 37.761808 + ], + [ + -78.872451, + 37.762468 + ], + [ + -78.872257, + 37.76277 + ], + [ + -78.871993, + 37.763172 + ], + [ + -78.871574, + 37.763799 + ], + [ + -78.871327, + 37.764167 + ], + [ + -78.871012, + 37.764642 + ], + [ + -78.870469, + 37.765468 + ], + [ + -78.870316, + 37.765702 + ], + [ + -78.870042, + 37.766126 + ], + [ + -78.869873, + 37.766412 + ], + [ + -78.869781, + 37.766589 + ], + [ + -78.869687, + 37.766814 + ], + [ + -78.869585, + 37.76708 + ], + [ + -78.869516, + 37.767314 + ], + [ + -78.869424, + 37.767698 + ], + [ + -78.869391, + 37.767942 + ], + [ + -78.86938, + 37.768238 + ], + [ + -78.869389, + 37.768459 + ], + [ + -78.869415, + 37.768673 + ], + [ + -78.869485, + 37.768991 + ], + [ + -78.869567, + 37.769255 + ], + [ + -78.86966, + 37.769515 + ], + [ + -78.869743, + 37.769714 + ], + [ + -78.869793, + 37.769822 + ], + [ + -78.870127, + 37.770634 + ], + [ + -78.870244, + 37.770938 + ], + [ + -78.870299, + 37.771157 + ], + [ + -78.870337, + 37.771378 + ], + [ + -78.870379, + 37.771605 + ], + [ + -78.870392, + 37.771879 + ], + [ + -78.870378, + 37.772127 + ], + [ + -78.870337, + 37.772397 + ], + [ + -78.870272, + 37.77267 + ], + [ + -78.870248, + 37.772764 + ], + [ + -78.87004, + 37.773562 + ], + [ + -78.869728, + 37.774718 + ], + [ + -78.869574, + 37.775264 + ], + [ + -78.869411, + 37.775864 + ], + [ + -78.869234, + 37.776522 + ], + [ + -78.869061, + 37.777151 + ], + [ + -78.868889, + 37.777735 + ], + [ + -78.868643, + 37.778648 + ], + [ + -78.868399, + 37.779571 + ], + [ + -78.868224, + 37.780198 + ], + [ + -78.868067, + 37.780782 + ], + [ + -78.867497, + 37.782893 + ], + [ + -78.867434, + 37.783141 + ], + [ + -78.867364, + 37.783414 + ], + [ + -78.867185, + 37.784047 + ], + [ + -78.867156, + 37.784152 + ], + [ + -78.867042, + 37.784562 + ], + [ + -78.866921, + 37.785054 + ], + [ + -78.866779, + 37.785508 + ], + [ + -78.866518, + 37.786333 + ], + [ + -78.866458, + 37.786501 + ], + [ + -78.866348, + 37.786832 + ], + [ + -78.866066, + 37.787709 + ], + [ + -78.865703, + 37.788816 + ], + [ + -78.865457, + 37.789659 + ], + [ + -78.865164, + 37.790592 + ], + [ + -78.864927, + 37.791345 + ], + [ + -78.864619, + 37.792175 + ], + [ + -78.864507, + 37.792484 + ], + [ + -78.864363, + 37.792792 + ], + [ + -78.864228, + 37.793041 + ], + [ + -78.864067, + 37.7933 + ], + [ + -78.863882, + 37.793548 + ], + [ + -78.863684, + 37.793797 + ], + [ + -78.863319, + 37.794211 + ], + [ + -78.863117, + 37.794344 + ], + [ + -78.86295, + 37.794541 + ], + [ + -78.862701, + 37.794857 + ], + [ + -78.86248, + 37.795184 + ], + [ + -78.862275, + 37.795518 + ], + [ + -78.862199, + 37.795651 + ], + [ + -78.862007, + 37.796159 + ], + [ + -78.861989, + 37.79622 + ], + [ + -78.861909, + 37.796548 + ], + [ + -78.861883, + 37.796687 + ], + [ + -78.861846, + 37.796942 + ], + [ + -78.861828, + 37.797235 + ], + [ + -78.861827, + 37.797529 + ], + [ + -78.861837, + 37.797754 + ], + [ + -78.861844, + 37.797901 + ], + [ + -78.861878, + 37.798631 + ], + [ + -78.861919, + 37.799738 + ], + [ + -78.861971, + 37.800826 + ], + [ + -78.862007, + 37.801869 + ], + [ + -78.862081, + 37.803303 + ], + [ + -78.862104, + 37.80423 + ], + [ + -78.86209, + 37.804437 + ], + [ + -78.862063, + 37.804642 + ], + [ + -78.862038, + 37.804754 + ], + [ + -78.862023, + 37.804816 + ], + [ + -78.861947, + 37.805046 + ], + [ + -78.861861, + 37.805246 + ], + [ + -78.861771, + 37.805437 + ], + [ + -78.86165, + 37.805634 + ], + [ + -78.861512, + 37.805817 + ], + [ + -78.861343, + 37.806004 + ], + [ + -78.860353, + 37.806994 + ], + [ + -78.859848, + 37.807481 + ], + [ + -78.858512, + 37.808821 + ], + [ + -78.858367, + 37.808958 + ], + [ + -78.858079, + 37.809211 + ], + [ + -78.857729, + 37.809505 + ], + [ + -78.857293, + 37.80986 + ], + [ + -78.856987, + 37.81009 + ], + [ + -78.856658, + 37.810338 + ], + [ + -78.855693, + 37.81105 + ], + [ + -78.85561, + 37.811115 + ], + [ + -78.855262, + 37.811371 + ], + [ + -78.854965, + 37.811605 + ], + [ + -78.853694, + 37.812587 + ], + [ + -78.853389, + 37.812818 + ], + [ + -78.852362, + 37.813637 + ], + [ + -78.851981, + 37.813912 + ], + [ + -78.851517, + 37.814266 + ], + [ + -78.851057, + 37.81462 + ], + [ + -78.85085, + 37.814768 + ], + [ + -78.850729, + 37.814859 + ], + [ + -78.850652, + 37.81492 + ], + [ + -78.850085, + 37.815369 + ], + [ + -78.848637, + 37.81648 + ], + [ + -78.846503, + 37.818117 + ], + [ + -78.846263, + 37.818303 + ], + [ + -78.845641, + 37.818784 + ], + [ + -78.845198, + 37.81912 + ], + [ + -78.844287, + 37.819835 + ], + [ + -78.843809, + 37.820229 + ], + [ + -78.841255, + 37.822413 + ], + [ + -78.840635, + 37.822925 + ], + [ + -78.840114, + 37.823377 + ], + [ + -78.839772, + 37.823685 + ], + [ + -78.839408, + 37.824047 + ], + [ + -78.839049, + 37.824425 + ], + [ + -78.838766, + 37.824737 + ], + [ + -78.838386, + 37.825182 + ], + [ + -78.838147, + 37.825481 + ], + [ + -78.837849, + 37.82588 + ], + [ + -78.837407, + 37.826506 + ], + [ + -78.837204, + 37.826823 + ], + [ + -78.837053, + 37.827081 + ], + [ + -78.836731, + 37.827595 + ], + [ + -78.836452, + 37.828104 + ], + [ + -78.836275, + 37.828399 + ], + [ + -78.836111, + 37.828667 + ], + [ + -78.835849, + 37.82912 + ], + [ + -78.835504, + 37.829691 + ], + [ + -78.835352, + 37.829945 + ], + [ + -78.83498, + 37.830568 + ], + [ + -78.834935, + 37.830642 + ], + [ + -78.834826, + 37.830821 + ], + [ + -78.834646, + 37.831137 + ], + [ + -78.834377, + 37.831577 + ], + [ + -78.833853, + 37.832462 + ], + [ + -78.833724, + 37.832692 + ], + [ + -78.833217, + 37.833546 + ], + [ + -78.831919, + 37.835713 + ], + [ + -78.831568, + 37.836263 + ], + [ + -78.831293, + 37.836637 + ], + [ + -78.831013, + 37.836981 + ], + [ + -78.83077, + 37.837252 + ], + [ + -78.829687, + 37.838434 + ], + [ + -78.829526, + 37.8386 + ], + [ + -78.829353, + 37.838766 + ], + [ + -78.828845, + 37.839208 + ], + [ + -78.828553, + 37.839442 + ], + [ + -78.828248, + 37.839665 + ], + [ + -78.827736, + 37.840071 + ], + [ + -78.82744, + 37.840316 + ], + [ + -78.827359, + 37.840393 + ], + [ + -78.827219, + 37.840526 + ], + [ + -78.827033, + 37.840723 + ], + [ + -78.82681, + 37.840985 + ], + [ + -78.826636, + 37.841213 + ], + [ + -78.826324, + 37.841668 + ], + [ + -78.825848, + 37.842321 + ], + [ + -78.825635, + 37.842569 + ], + [ + -78.825481, + 37.842727 + ], + [ + -78.825276, + 37.842917 + ], + [ + -78.825211, + 37.842971 + ], + [ + -78.825103, + 37.843062 + ], + [ + -78.824902, + 37.843225 + ], + [ + -78.824735, + 37.84334 + ], + [ + -78.824467, + 37.843502 + ], + [ + -78.824206, + 37.843652 + ], + [ + -78.82312, + 37.844198 + ], + [ + -78.822611, + 37.844456 + ], + [ + -78.821878, + 37.84482 + ], + [ + -78.820981, + 37.845244 + ], + [ + -78.82067, + 37.845389 + ], + [ + -78.820264, + 37.845536 + ], + [ + -78.820038, + 37.845598 + ], + [ + -78.819873, + 37.845635 + ], + [ + -78.81967, + 37.845683 + ], + [ + -78.819501, + 37.845707 + ], + [ + -78.819221, + 37.845735 + ], + [ + -78.818871, + 37.845752 + ], + [ + -78.818684, + 37.845746 + ], + [ + -78.818377, + 37.845729 + ], + [ + -78.818065, + 37.845689 + ], + [ + -78.817748, + 37.845635 + ], + [ + -78.817461, + 37.845563 + ], + [ + -78.817089, + 37.845456 + ], + [ + -78.81664, + 37.845308 + ], + [ + -78.816094, + 37.845137 + ], + [ + -78.815801, + 37.845042 + ], + [ + -78.815106, + 37.844835 + ], + [ + -78.814203, + 37.844545 + ], + [ + -78.813661, + 37.844372 + ], + [ + -78.813194, + 37.844227 + ], + [ + -78.812793, + 37.844119 + ], + [ + -78.812466, + 37.844059 + ], + [ + -78.812161, + 37.844015 + ], + [ + -78.811899, + 37.843994 + ], + [ + -78.811692, + 37.843985 + ], + [ + -78.81145, + 37.844002 + ], + [ + -78.811288, + 37.844022 + ], + [ + -78.810966, + 37.84409 + ], + [ + -78.810704, + 37.844162 + ], + [ + -78.810498, + 37.844229 + ], + [ + -78.810246, + 37.844336 + ], + [ + -78.80993, + 37.84449 + ], + [ + -78.809727, + 37.844605 + ], + [ + -78.809573, + 37.844705 + ], + [ + -78.809276, + 37.84492 + ], + [ + -78.809029, + 37.845076 + ], + [ + -78.808807, + 37.845199 + ], + [ + -78.808527, + 37.845332 + ], + [ + -78.808311, + 37.845419 + ], + [ + -78.808089, + 37.845498 + ], + [ + -78.807811, + 37.845579 + ], + [ + -78.807589, + 37.845643 + ], + [ + -78.807297, + 37.845708 + ], + [ + -78.807, + 37.845759 + ], + [ + -78.806691, + 37.845797 + ], + [ + -78.806302, + 37.845837 + ], + [ + -78.805184, + 37.845933 + ], + [ + -78.80503, + 37.845945 + ], + [ + -78.804012, + 37.846026 + ], + [ + -78.800837, + 37.846324 + ], + [ + -78.800537, + 37.846339 + ], + [ + -78.800237, + 37.846355 + ], + [ + -78.800014, + 37.846352 + ], + [ + -78.79976, + 37.846345 + ], + [ + -78.799425, + 37.846321 + ], + [ + -78.799048, + 37.846276 + ], + [ + -78.79881, + 37.846227 + ], + [ + -78.798587, + 37.846183 + ], + [ + -78.798334, + 37.846121 + ], + [ + -78.798127, + 37.846044 + ], + [ + -78.797833, + 37.845932 + ], + [ + -78.797473, + 37.845765 + ], + [ + -78.797183, + 37.845617 + ], + [ + -78.796923, + 37.845465 + ], + [ + -78.796357, + 37.845082 + ], + [ + -78.795818, + 37.844712 + ], + [ + -78.795607, + 37.84458 + ], + [ + -78.795352, + 37.844427 + ], + [ + -78.795147, + 37.84431 + ], + [ + -78.794915, + 37.844201 + ], + [ + -78.794645, + 37.844085 + ], + [ + -78.794419, + 37.843996 + ], + [ + -78.794095, + 37.843903 + ], + [ + -78.793805, + 37.843828 + ], + [ + -78.793467, + 37.843774 + ], + [ + -78.793125, + 37.84374 + ], + [ + -78.792933, + 37.843732 + ], + [ + -78.792722, + 37.843723 + ], + [ + -78.792238, + 37.84372 + ], + [ + -78.791688, + 37.843732 + ], + [ + -78.791137, + 37.843731 + ], + [ + -78.790713, + 37.843712 + ], + [ + -78.790444, + 37.843693 + ], + [ + -78.79016, + 37.843657 + ], + [ + -78.78988, + 37.843607 + ], + [ + -78.789604, + 37.843542 + ], + [ + -78.789363, + 37.843478 + ], + [ + -78.789067, + 37.843389 + ], + [ + -78.788706, + 37.843253 + ], + [ + -78.78839, + 37.843125 + ], + [ + -78.788101, + 37.843016 + ], + [ + -78.78765, + 37.842857 + ], + [ + -78.787324, + 37.842748 + ], + [ + -78.787056, + 37.84268 + ], + [ + -78.786677, + 37.842606 + ], + [ + -78.786459, + 37.842568 + ], + [ + -78.786292, + 37.842537 + ], + [ + -78.785994, + 37.842501 + ], + [ + -78.785649, + 37.842467 + ], + [ + -78.785267, + 37.842457 + ], + [ + -78.784945, + 37.842456 + ], + [ + -78.784589, + 37.842468 + ], + [ + -78.782212, + 37.842633 + ], + [ + -78.780497, + 37.842776 + ], + [ + -78.779987, + 37.842814 + ], + [ + -78.778924, + 37.842896 + ], + [ + -78.77812, + 37.842986 + ], + [ + -78.777773, + 37.843042 + ], + [ + -78.777066, + 37.843144 + ], + [ + -78.776444, + 37.84325 + ], + [ + -78.775647, + 37.843402 + ], + [ + -78.774632, + 37.843601 + ], + [ + -78.773646, + 37.843786 + ], + [ + -78.773282, + 37.843855 + ], + [ + -78.772981, + 37.843912 + ], + [ + -78.772128, + 37.844091 + ], + [ + -78.771161, + 37.844316 + ], + [ + -78.770651, + 37.844441 + ], + [ + -78.769991, + 37.844616 + ], + [ + -78.768859, + 37.844941 + ], + [ + -78.768162, + 37.845142 + ], + [ + -78.767015, + 37.845472 + ], + [ + -78.76637, + 37.845658 + ], + [ + -78.765119, + 37.846012 + ], + [ + -78.761663, + 37.84701 + ], + [ + -78.760903, + 37.847224 + ], + [ + -78.760298, + 37.847402 + ], + [ + -78.75996, + 37.847506 + ], + [ + -78.7597, + 37.847596 + ], + [ + -78.759532, + 37.84765 + ], + [ + -78.759113, + 37.847806 + ], + [ + -78.758783, + 37.847948 + ], + [ + -78.758412, + 37.84812 + ], + [ + -78.758057, + 37.848288 + ], + [ + -78.757154, + 37.848747 + ], + [ + -78.756986, + 37.848829 + ], + [ + -78.756546, + 37.849062 + ], + [ + -78.756115, + 37.849306 + ], + [ + -78.755862, + 37.849458 + ], + [ + -78.755244, + 37.849843 + ], + [ + -78.754769, + 37.85013 + ], + [ + -78.754377, + 37.85038 + ], + [ + -78.753945, + 37.850672 + ], + [ + -78.753673, + 37.850873 + ], + [ + -78.753364, + 37.851127 + ], + [ + -78.753217, + 37.851259 + ], + [ + -78.752739, + 37.851715 + ], + [ + -78.752046, + 37.852374 + ], + [ + -78.75166, + 37.852719 + ], + [ + -78.751401, + 37.852929 + ], + [ + -78.751134, + 37.853132 + ], + [ + -78.750789, + 37.853376 + ], + [ + -78.750504, + 37.853564 + ], + [ + -78.750081, + 37.853824 + ], + [ + -78.74973, + 37.854021 + ], + [ + -78.749369, + 37.854207 + ], + [ + -78.748998, + 37.85438 + ], + [ + -78.748624, + 37.854531 + ], + [ + -78.748053, + 37.854743 + ], + [ + -78.747045, + 37.85508 + ], + [ + -78.746537, + 37.855262 + ], + [ + -78.746473, + 37.855285 + ], + [ + -78.745985, + 37.855474 + ], + [ + -78.7456, + 37.855635 + ], + [ + -78.744986, + 37.855911 + ], + [ + -78.744673, + 37.856064 + ], + [ + -78.744246, + 37.856299 + ], + [ + -78.743761, + 37.856591 + ], + [ + -78.743416, + 37.856817 + ], + [ + -78.742954, + 37.857145 + ], + [ + -78.742639, + 37.857387 + ], + [ + -78.742337, + 37.85764 + ], + [ + -78.742294, + 37.85768 + ], + [ + -78.741896, + 37.858045 + ], + [ + -78.741503, + 37.85843 + ], + [ + -78.741291, + 37.858648 + ], + [ + -78.741254, + 37.858686 + ], + [ + -78.740963, + 37.859027 + ], + [ + -78.740705, + 37.859351 + ], + [ + -78.740668, + 37.859398 + ], + [ + -78.740453, + 37.85968 + ], + [ + -78.739901, + 37.860385 + ], + [ + -78.739675, + 37.860647 + ], + [ + -78.739434, + 37.860902 + ], + [ + -78.739176, + 37.861151 + ], + [ + -78.73895, + 37.861357 + ], + [ + -78.738655, + 37.861604 + ], + [ + -78.738411, + 37.861795 + ], + [ + -78.738094, + 37.862025 + ], + [ + -78.737733, + 37.862262 + ], + [ + -78.737429, + 37.862445 + ], + [ + -78.73708, + 37.862638 + ], + [ + -78.73657, + 37.862893 + ], + [ + -78.736186, + 37.863088 + ], + [ + -78.735435, + 37.86348 + ], + [ + -78.734529, + 37.863942 + ], + [ + -78.733874, + 37.864271 + ], + [ + -78.733562, + 37.864427 + ], + [ + -78.733042, + 37.864704 + ], + [ + -78.732039, + 37.865214 + ], + [ + -78.731948, + 37.865258 + ], + [ + -78.731785, + 37.865335 + ], + [ + -78.731411, + 37.86553 + ], + [ + -78.730148, + 37.866169 + ], + [ + -78.729986, + 37.866254 + ], + [ + -78.729722, + 37.866391 + ], + [ + -78.728688, + 37.866913 + ], + [ + -78.727888, + 37.86733 + ], + [ + -78.727529, + 37.86751 + ], + [ + -78.726765, + 37.867904 + ], + [ + -78.726166, + 37.868202 + ], + [ + -78.725869, + 37.868361 + ], + [ + -78.725428, + 37.868579 + ], + [ + -78.725084, + 37.868757 + ], + [ + -78.724518, + 37.869049 + ], + [ + -78.723898, + 37.869354 + ], + [ + -78.722779, + 37.869945 + ], + [ + -78.721592, + 37.870542 + ], + [ + -78.720481, + 37.87111 + ], + [ + -78.719958, + 37.871373 + ], + [ + -78.719701, + 37.871497 + ], + [ + -78.719365, + 37.871672 + ], + [ + -78.718719, + 37.872028 + ], + [ + -78.71847, + 37.872183 + ], + [ + -78.718164, + 37.872388 + ], + [ + -78.717945, + 37.872553 + ], + [ + -78.717592, + 37.872851 + ], + [ + -78.717285, + 37.873139 + ], + [ + -78.717049, + 37.873363 + ], + [ + -78.716739, + 37.873728 + ], + [ + -78.716536, + 37.874002 + ], + [ + -78.716395, + 37.874221 + ], + [ + -78.716144, + 37.874657 + ], + [ + -78.71604, + 37.87487 + ], + [ + -78.715888, + 37.875212 + ], + [ + -78.715814, + 37.875401 + ], + [ + -78.715694, + 37.87571 + ], + [ + -78.715495, + 37.876238 + ], + [ + -78.715377, + 37.876548 + ], + [ + -78.715275, + 37.876817 + ], + [ + -78.71521, + 37.877013 + ], + [ + -78.715136, + 37.877211 + ], + [ + -78.715081, + 37.877371 + ], + [ + -78.714995, + 37.877587 + ], + [ + -78.71492, + 37.877787 + ], + [ + -78.7148, + 37.878131 + ], + [ + -78.714687, + 37.878428 + ], + [ + -78.714533, + 37.878796 + ], + [ + -78.714454, + 37.879009 + ], + [ + -78.714417, + 37.879116 + ], + [ + -78.714256, + 37.879549 + ], + [ + -78.714141, + 37.879854 + ], + [ + -78.713896, + 37.880594 + ], + [ + -78.713756, + 37.881038 + ], + [ + -78.713682, + 37.88126 + ], + [ + -78.713617, + 37.881457 + ], + [ + -78.713533, + 37.881697 + ], + [ + -78.713446, + 37.881943 + ], + [ + -78.713394, + 37.882108 + ], + [ + -78.713314, + 37.882336 + ], + [ + -78.713184, + 37.882655 + ], + [ + -78.713006, + 37.883053 + ], + [ + -78.712892, + 37.883274 + ], + [ + -78.712733, + 37.88355 + ], + [ + -78.712558, + 37.88384 + ], + [ + -78.712369, + 37.884119 + ], + [ + -78.712275, + 37.884257 + ], + [ + -78.712136, + 37.884449 + ], + [ + -78.711974, + 37.884667 + ], + [ + -78.711814, + 37.884876 + ], + [ + -78.711641, + 37.885085 + ], + [ + -78.711418, + 37.885345 + ], + [ + -78.711139, + 37.885644 + ], + [ + -78.710798, + 37.88599 + ], + [ + -78.710465, + 37.886309 + ], + [ + -78.710195, + 37.886555 + ], + [ + -78.709928, + 37.886781 + ], + [ + -78.709577, + 37.88706 + ], + [ + -78.709406, + 37.887199 + ], + [ + -78.709211, + 37.887345 + ], + [ + -78.708778, + 37.887648 + ], + [ + -78.707968, + 37.888179 + ], + [ + -78.707642, + 37.888399 + ], + [ + -78.707473, + 37.88851 + ], + [ + -78.707244, + 37.888663 + ], + [ + -78.706965, + 37.888843 + ], + [ + -78.706601, + 37.889083 + ], + [ + -78.706088, + 37.889425 + ], + [ + -78.705712, + 37.889669 + ], + [ + -78.705189, + 37.890019 + ], + [ + -78.704893, + 37.890211 + ], + [ + -78.703445, + 37.891162 + ], + [ + -78.703041, + 37.891429 + ], + [ + -78.702721, + 37.891638 + ], + [ + -78.702327, + 37.891905 + ], + [ + -78.70184, + 37.892223 + ], + [ + -78.701163, + 37.892662 + ], + [ + -78.700778, + 37.892933 + ], + [ + -78.70071, + 37.892981 + ], + [ + -78.700622, + 37.893046 + ], + [ + -78.700337, + 37.893272 + ], + [ + -78.69999, + 37.89357 + ], + [ + -78.699755, + 37.8938 + ], + [ + -78.699482, + 37.894099 + ], + [ + -78.699289, + 37.894329 + ], + [ + -78.698787, + 37.894984 + ], + [ + -78.698558, + 37.895284 + ], + [ + -78.69837, + 37.895519 + ], + [ + -78.698116, + 37.895851 + ], + [ + -78.697966, + 37.896055 + ], + [ + -78.697696, + 37.896407 + ], + [ + -78.697057, + 37.897242 + ], + [ + -78.696439, + 37.898041 + ], + [ + -78.695681, + 37.899035 + ], + [ + -78.695049, + 37.899863 + ], + [ + -78.694658, + 37.900403 + ], + [ + -78.694519, + 37.900599 + ], + [ + -78.694429, + 37.900733 + ], + [ + -78.693954, + 37.901464 + ], + [ + -78.693721, + 37.901862 + ], + [ + -78.693473, + 37.902275 + ], + [ + -78.693102, + 37.902981 + ], + [ + -78.692879, + 37.903439 + ], + [ + -78.692797, + 37.903623 + ], + [ + -78.692129, + 37.905105 + ], + [ + -78.691808, + 37.905817 + ], + [ + -78.691268, + 37.906984 + ], + [ + -78.690987, + 37.907549 + ], + [ + -78.690814, + 37.907874 + ], + [ + -78.690688, + 37.908089 + ], + [ + -78.690521, + 37.908372 + ], + [ + -78.690275, + 37.908767 + ], + [ + -78.689663, + 37.909657 + ], + [ + -78.689078, + 37.910492 + ], + [ + -78.685485, + 37.915666 + ], + [ + -78.684467, + 37.917131 + ], + [ + -78.682047, + 37.920608 + ], + [ + -78.681785, + 37.92095 + ], + [ + -78.681517, + 37.921272 + ], + [ + -78.681241, + 37.921578 + ], + [ + -78.68101, + 37.921818 + ], + [ + -78.680605, + 37.922194 + ], + [ + -78.68013, + 37.922617 + ], + [ + -78.679566, + 37.923137 + ], + [ + -78.679307, + 37.923403 + ], + [ + -78.678986, + 37.92374 + ], + [ + -78.678605, + 37.924203 + ], + [ + -78.678345, + 37.924561 + ], + [ + -78.678124, + 37.924891 + ], + [ + -78.677903, + 37.925227 + ], + [ + -78.677688, + 37.925589 + ], + [ + -78.677544, + 37.925878 + ], + [ + -78.67731, + 37.926442 + ], + [ + -78.676551, + 37.928284 + ], + [ + -78.676404, + 37.928595 + ], + [ + -78.676242, + 37.928949 + ], + [ + -78.676148, + 37.929122 + ], + [ + -78.675977, + 37.929377 + ], + [ + -78.675612, + 37.929807 + ], + [ + -78.675385, + 37.930086 + ], + [ + -78.675213, + 37.930312 + ], + [ + -78.675004, + 37.930559 + ], + [ + -78.674617, + 37.931044 + ], + [ + -78.67407, + 37.931702 + ], + [ + -78.673673, + 37.932201 + ], + [ + -78.673281, + 37.9327 + ], + [ + -78.672994, + 37.933082 + ], + [ + -78.672166, + 37.934227 + ], + [ + -78.671112, + 37.935771 + ], + [ + -78.670762, + 37.936281 + ], + [ + -78.670385, + 37.936817 + ], + [ + -78.669877, + 37.937599 + ], + [ + -78.668999, + 37.93886 + ], + [ + -78.667671, + 37.940789 + ], + [ + -78.666721, + 37.942158 + ], + [ + -78.666126, + 37.943118 + ], + [ + -78.665597, + 37.944014 + ], + [ + -78.665125, + 37.944827 + ], + [ + -78.664642, + 37.945633 + ], + [ + -78.664087, + 37.946602 + ], + [ + -78.663665, + 37.947366 + ], + [ + -78.663523, + 37.947648 + ], + [ + -78.663363, + 37.948007 + ], + [ + -78.66312, + 37.948581 + ], + [ + -78.662992, + 37.948919 + ], + [ + -78.662788, + 37.949511 + ], + [ + -78.662392, + 37.950794 + ], + [ + -78.662127, + 37.951686 + ], + [ + -78.661907, + 37.952368 + ], + [ + -78.6618, + 37.952667 + ], + [ + -78.661673, + 37.952964 + ], + [ + -78.661549, + 37.953229 + ], + [ + -78.661377, + 37.953546 + ], + [ + -78.661172, + 37.953875 + ], + [ + -78.660975, + 37.954168 + ], + [ + -78.660712, + 37.954527 + ], + [ + -78.660589, + 37.954686 + ], + [ + -78.660525, + 37.954768 + ], + [ + -78.660204, + 37.955161 + ], + [ + -78.659899, + 37.955515 + ], + [ + -78.65946, + 37.956045 + ], + [ + -78.659107, + 37.956472 + ], + [ + -78.658939, + 37.95668 + ], + [ + -78.658404, + 37.957325 + ], + [ + -78.658185, + 37.957583 + ], + [ + -78.657413, + 37.958505 + ], + [ + -78.65713, + 37.958855 + ], + [ + -78.65677, + 37.959264 + ], + [ + -78.656612, + 37.959431 + ], + [ + -78.656439, + 37.95959 + ], + [ + -78.656251, + 37.959739 + ], + [ + -78.656068, + 37.959867 + ], + [ + -78.655989, + 37.959917 + ], + [ + -78.655752, + 37.960052 + ], + [ + -78.655575, + 37.96015 + ], + [ + -78.655228, + 37.960289 + ], + [ + -78.654931, + 37.960405 + ], + [ + -78.653275, + 37.960978 + ], + [ + -78.652399, + 37.961277 + ], + [ + -78.651659, + 37.961545 + ], + [ + -78.651372, + 37.96167 + ], + [ + -78.651131, + 37.961788 + ], + [ + -78.650953, + 37.961888 + ], + [ + -78.65077, + 37.962003 + ], + [ + -78.650655, + 37.962074 + ], + [ + -78.650545, + 37.96215 + ], + [ + -78.650369, + 37.962277 + ], + [ + -78.650124, + 37.962492 + ], + [ + -78.649827, + 37.962781 + ], + [ + -78.649528, + 37.963082 + ], + [ + -78.649157, + 37.963468 + ], + [ + -78.648771, + 37.96385 + ], + [ + -78.648569, + 37.964042 + ], + [ + -78.648236, + 37.964318 + ], + [ + -78.647928, + 37.964546 + ], + [ + -78.647355, + 37.964951 + ], + [ + -78.646421, + 37.965624 + ], + [ + -78.646034, + 37.965897 + ], + [ + -78.645591, + 37.966218 + ], + [ + -78.645351, + 37.966376 + ], + [ + -78.645051, + 37.966569 + ], + [ + -78.644735, + 37.966754 + ], + [ + -78.644581, + 37.96684 + ], + [ + -78.6444, + 37.966936 + ], + [ + -78.643915, + 37.967163 + ], + [ + -78.643555, + 37.967319 + ], + [ + -78.643147, + 37.967465 + ], + [ + -78.642853, + 37.967561 + ], + [ + -78.642519, + 37.96766 + ], + [ + -78.642395, + 37.967695 + ], + [ + -78.642095, + 37.967768 + ], + [ + -78.641871, + 37.967823 + ], + [ + -78.641449, + 37.967916 + ], + [ + -78.640993, + 37.967991 + ], + [ + -78.640408, + 37.968066 + ], + [ + -78.639997, + 37.968103 + ], + [ + -78.639496, + 37.96813 + ], + [ + -78.638995, + 37.968136 + ], + [ + -78.638434, + 37.968125 + ], + [ + -78.637944, + 37.9681 + ], + [ + -78.63612, + 37.967958 + ], + [ + -78.635136, + 37.967873 + ], + [ + -78.633802, + 37.96777 + ], + [ + -78.632073, + 37.967631 + ], + [ + -78.631801, + 37.967611 + ], + [ + -78.630935, + 37.967546 + ], + [ + -78.630424, + 37.967503 + ], + [ + -78.629697, + 37.967442 + ], + [ + -78.628686, + 37.967361 + ], + [ + -78.626167, + 37.967159 + ], + [ + -78.623282, + 37.966927 + ], + [ + -78.622258, + 37.96685 + ], + [ + -78.621932, + 37.966824 + ], + [ + -78.620819, + 37.966736 + ], + [ + -78.620381, + 37.966716 + ], + [ + -78.620004, + 37.966712 + ], + [ + -78.619679, + 37.966717 + ], + [ + -78.61937, + 37.966745 + ], + [ + -78.619064, + 37.966787 + ], + [ + -78.618761, + 37.966844 + ], + [ + -78.618523, + 37.9669 + ], + [ + -78.618222, + 37.966977 + ], + [ + -78.617837, + 37.967103 + ], + [ + -78.617525, + 37.967224 + ], + [ + -78.617264, + 37.967333 + ], + [ + -78.616866, + 37.967526 + ], + [ + -78.61666, + 37.96764 + ], + [ + -78.616487, + 37.967735 + ], + [ + -78.616266, + 37.967872 + ], + [ + -78.615844, + 37.968137 + ], + [ + -78.615555, + 37.968338 + ], + [ + -78.615229, + 37.968577 + ], + [ + -78.614931, + 37.968831 + ], + [ + -78.614607, + 37.969142 + ], + [ + -78.614381, + 37.96937 + ], + [ + -78.614151, + 37.969646 + ], + [ + -78.613964, + 37.96988 + ], + [ + -78.613494, + 37.970554 + ], + [ + -78.61301, + 37.971246 + ], + [ + -78.612831, + 37.971512 + ], + [ + -78.612279, + 37.972333 + ], + [ + -78.611229, + 37.97389 + ], + [ + -78.610819, + 37.974494 + ], + [ + -78.610719, + 37.974624 + ], + [ + -78.610499, + 37.974897 + ], + [ + -78.610319, + 37.975118 + ], + [ + -78.610116, + 37.975331 + ], + [ + -78.609966, + 37.975469 + ], + [ + -78.609796, + 37.975624 + ], + [ + -78.609591, + 37.975796 + ], + [ + -78.609317, + 37.976004 + ], + [ + -78.609071, + 37.976176 + ], + [ + -78.608849, + 37.976327 + ], + [ + -78.608744, + 37.97639 + ], + [ + -78.608365, + 37.976619 + ], + [ + -78.608101, + 37.976752 + ], + [ + -78.607845, + 37.976869 + ], + [ + -78.607584, + 37.976978 + ], + [ + -78.60725, + 37.977103 + ], + [ + -78.606977, + 37.977192 + ], + [ + -78.606625, + 37.977297 + ], + [ + -78.606266, + 37.977388 + ], + [ + -78.606123, + 37.977418 + ], + [ + -78.605902, + 37.977465 + ], + [ + -78.605646, + 37.97752 + ], + [ + -78.605621, + 37.977522 + ], + [ + -78.605549, + 37.977538 + ], + [ + -78.60423, + 37.977756 + ], + [ + -78.602588, + 37.978034 + ], + [ + -78.602162, + 37.978122 + ], + [ + -78.601825, + 37.978203 + ], + [ + -78.601492, + 37.978293 + ], + [ + -78.601094, + 37.978414 + ], + [ + -78.60071, + 37.978547 + ], + [ + -78.600334, + 37.978694 + ], + [ + -78.599967, + 37.978854 + ], + [ + -78.599486, + 37.979083 + ], + [ + -78.599163, + 37.979252 + ], + [ + -78.598789, + 37.97947 + ], + [ + -78.598549, + 37.979624 + ], + [ + -78.597946, + 37.980033 + ], + [ + -78.596889, + 37.98075 + ], + [ + -78.595137, + 37.981939 + ], + [ + -78.593704, + 37.982911 + ], + [ + -78.592376, + 37.98382 + ], + [ + -78.590854, + 37.984906 + ], + [ + -78.590225, + 37.985373 + ], + [ + -78.588999, + 37.98631 + ], + [ + -78.588012, + 37.9871 + ], + [ + -78.587089, + 37.987859 + ], + [ + -78.586722, + 37.988171 + ], + [ + -78.586183, + 37.988631 + ], + [ + -78.585023, + 37.989655 + ], + [ + -78.583908, + 37.990662 + ], + [ + -78.583686, + 37.990885 + ], + [ + -78.583478, + 37.991116 + ], + [ + -78.583203, + 37.991447 + ], + [ + -78.583057, + 37.991641 + ], + [ + -78.582889, + 37.99189 + ], + [ + -78.582734, + 37.992152 + ], + [ + -78.582584, + 37.992445 + ], + [ + -78.582451, + 37.992743 + ], + [ + -78.582318, + 37.993104 + ], + [ + -78.582229, + 37.993396 + ], + [ + -78.582158, + 37.993692 + ], + [ + -78.582061, + 37.994255 + ], + [ + -78.581989, + 37.994788 + ], + [ + -78.581919, + 37.9952 + ], + [ + -78.581831, + 37.99573 + ], + [ + -78.581596, + 37.997239 + ], + [ + -78.581525, + 37.997665 + ], + [ + -78.58147, + 37.998088 + ], + [ + -78.581083, + 38.000517 + ], + [ + -78.580993, + 38.001016 + ], + [ + -78.580912, + 38.001332 + ], + [ + -78.580857, + 38.001514 + ], + [ + -78.580851, + 38.001532 + ], + [ + -78.580827, + 38.001607 + ], + [ + -78.580788, + 38.001711 + ], + [ + -78.580764, + 38.001783 + ], + [ + -78.580638, + 38.002087 + ], + [ + -78.580501, + 38.002397 + ], + [ + -78.580338, + 38.002682 + ], + [ + -78.580176, + 38.002939 + ], + [ + -78.580026, + 38.003155 + ], + [ + -78.57984, + 38.003394 + ], + [ + -78.579631, + 38.003641 + ], + [ + -78.579528, + 38.003748 + ], + [ + -78.579258, + 38.004014 + ], + [ + -78.578985, + 38.00426 + ], + [ + -78.578784, + 38.004426 + ], + [ + -78.578575, + 38.004584 + ], + [ + -78.578379, + 38.004723 + ], + [ + -78.578122, + 38.004899 + ], + [ + -78.577709, + 38.005151 + ], + [ + -78.577431, + 38.005306 + ], + [ + -78.577141, + 38.005444 + ], + [ + -78.576923, + 38.005542 + ], + [ + -78.576628, + 38.005666 + ], + [ + -78.576327, + 38.005766 + ], + [ + -78.576154, + 38.005828 + ], + [ + -78.575371, + 38.006031 + ], + [ + -78.574274, + 38.006313 + ], + [ + -78.573929, + 38.006397 + ], + [ + -78.573678, + 38.006459 + ], + [ + -78.5731, + 38.006602 + ], + [ + -78.572544, + 38.006742 + ], + [ + -78.570845, + 38.007165 + ], + [ + -78.570536, + 38.007245 + ], + [ + -78.570147, + 38.007346 + ], + [ + -78.569511, + 38.007502 + ], + [ + -78.568866, + 38.007677 + ], + [ + -78.568449, + 38.007795 + ], + [ + -78.568216, + 38.007865 + ], + [ + -78.567861, + 38.007984 + ], + [ + -78.567483, + 38.008116 + ], + [ + -78.567008, + 38.00831 + ], + [ + -78.566642, + 38.008471 + ], + [ + -78.566222, + 38.008672 + ], + [ + -78.565813, + 38.008887 + ], + [ + -78.565381, + 38.009126 + ], + [ + -78.564818, + 38.009422 + ], + [ + -78.564544, + 38.009563 + ], + [ + -78.564196, + 38.009735 + ], + [ + -78.564075, + 38.009787 + ], + [ + -78.56369, + 38.009944 + ], + [ + -78.56326, + 38.010103 + ], + [ + -78.562849, + 38.010238 + ], + [ + -78.562529, + 38.010332 + ], + [ + -78.562124, + 38.010438 + ], + [ + -78.561805, + 38.010515 + ], + [ + -78.561564, + 38.010564 + ], + [ + -78.56093, + 38.010675 + ], + [ + -78.560028, + 38.010845 + ], + [ + -78.558824, + 38.011064 + ], + [ + -78.558024, + 38.011219 + ], + [ + -78.557648, + 38.011286 + ], + [ + -78.557386, + 38.011333 + ], + [ + -78.557058, + 38.011387 + ], + [ + -78.555118, + 38.011755 + ], + [ + -78.554112, + 38.011931 + ], + [ + -78.552878, + 38.012156 + ], + [ + -78.552449, + 38.01225 + ], + [ + -78.552186, + 38.012316 + ], + [ + -78.551829, + 38.012417 + ], + [ + -78.551365, + 38.012562 + ], + [ + -78.55109, + 38.012655 + ], + [ + -78.550658, + 38.012829 + ], + [ + -78.550236, + 38.013017 + ], + [ + -78.549599, + 38.013364 + ], + [ + -78.549376, + 38.013492 + ], + [ + -78.549058, + 38.013698 + ], + [ + -78.548469, + 38.01411 + ], + [ + -78.547659, + 38.014674 + ], + [ + -78.547468, + 38.014808 + ], + [ + -78.54736, + 38.014884 + ], + [ + -78.547042, + 38.015096 + ], + [ + -78.546611, + 38.015362 + ], + [ + -78.546269, + 38.015559 + ], + [ + -78.54592, + 38.01574 + ], + [ + -78.545223, + 38.016069 + ], + [ + -78.544841, + 38.016247 + ], + [ + -78.543906, + 38.016682 + ], + [ + -78.543654, + 38.016806 + ], + [ + -78.54333, + 38.016982 + ], + [ + -78.542733, + 38.017318 + ], + [ + -78.542466, + 38.017467 + ], + [ + -78.539711, + 38.018979 + ], + [ + -78.536725, + 38.020664 + ], + [ + -78.535885, + 38.021132 + ], + [ + -78.535518, + 38.021335 + ], + [ + -78.534742, + 38.021766 + ], + [ + -78.534188, + 38.022073 + ], + [ + -78.532955, + 38.02276 + ], + [ + -78.532173, + 38.023196 + ], + [ + -78.531193, + 38.023747 + ], + [ + -78.531125, + 38.023792 + ], + [ + -78.53075, + 38.024045 + ], + [ + -78.530445, + 38.024274 + ], + [ + -78.530203, + 38.024476 + ], + [ + -78.530016, + 38.024649 + ], + [ + -78.529931, + 38.024733 + ], + [ + -78.52985, + 38.024806 + ], + [ + -78.529798, + 38.024854 + ], + [ + -78.529758, + 38.024894 + ], + [ + -78.529598, + 38.025065 + ], + [ + -78.529327, + 38.025386 + ], + [ + -78.52916, + 38.025608 + ], + [ + -78.528945, + 38.025933 + ], + [ + -78.5288, + 38.026176 + ], + [ + -78.528672, + 38.026426 + ], + [ + -78.52861, + 38.026566 + ], + [ + -78.528405, + 38.027066 + ], + [ + -78.52833, + 38.027311 + ], + [ + -78.528283, + 38.02751 + ], + [ + -78.528235, + 38.027689 + ], + [ + -78.528151, + 38.028145 + ], + [ + -78.527582, + 38.03105 + ], + [ + -78.527126, + 38.033402 + ], + [ + -78.52703, + 38.033972 + ], + [ + -78.526914, + 38.034782 + ], + [ + -78.526868, + 38.035166 + ], + [ + -78.52679, + 38.036035 + ], + [ + -78.526753, + 38.036647 + ], + [ + -78.526715, + 38.03781 + ], + [ + -78.526642, + 38.040878 + ], + [ + -78.526607, + 38.042081 + ], + [ + -78.526584, + 38.042473 + ], + [ + -78.526544, + 38.042863 + ], + [ + -78.52645, + 38.043462 + ], + [ + -78.526353, + 38.043907 + ], + [ + -78.526306, + 38.044099 + ], + [ + -78.526225, + 38.044382 + ], + [ + -78.526103, + 38.044762 + ], + [ + -78.525978, + 38.045116 + ], + [ + -78.52595, + 38.045183 + ], + [ + -78.525619, + 38.045973 + ], + [ + -78.525226, + 38.046882 + ], + [ + -78.524837, + 38.047794 + ], + [ + -78.524807, + 38.047861 + ], + [ + -78.524712, + 38.048073 + ], + [ + -78.523664, + 38.050524 + ], + [ + -78.523608, + 38.050633 + ], + [ + -78.523449, + 38.050945 + ], + [ + -78.523194, + 38.051371 + ], + [ + -78.522992, + 38.051667 + ], + [ + -78.522896, + 38.051793 + ], + [ + -78.522708, + 38.052033 + ], + [ + -78.522379, + 38.052403 + ], + [ + -78.522049, + 38.052728 + ], + [ + -78.521736, + 38.053004 + ], + [ + -78.521375, + 38.053289 + ], + [ + -78.521061, + 38.053512 + ], + [ + -78.520792, + 38.053687 + ], + [ + -78.520433, + 38.053898 + ], + [ + -78.5202, + 38.054028 + ], + [ + -78.519924, + 38.054166 + ], + [ + -78.519561, + 38.054329 + ], + [ + -78.519179, + 38.054486 + ], + [ + -78.518827, + 38.054612 + ], + [ + -78.518437, + 38.054736 + ], + [ + -78.518106, + 38.054829 + ], + [ + -78.517883, + 38.054877 + ], + [ + -78.517638, + 38.05494 + ], + [ + -78.517298, + 38.055006 + ], + [ + -78.51674, + 38.055093 + ], + [ + -78.515503, + 38.055228 + ], + [ + -78.513125, + 38.055506 + ], + [ + -78.51298, + 38.05552 + ], + [ + -78.511721, + 38.055664 + ], + [ + -78.510089, + 38.05585 + ], + [ + -78.509444, + 38.055931 + ], + [ + -78.508892, + 38.056018 + ], + [ + -78.508324, + 38.056121 + ], + [ + -78.50762, + 38.056269 + ], + [ + -78.507101, + 38.056364 + ], + [ + -78.5063, + 38.056529 + ], + [ + -78.504207, + 38.056975 + ], + [ + -78.503544, + 38.057129 + ], + [ + -78.50332, + 38.057173 + ], + [ + -78.50218, + 38.05739 + ], + [ + -78.501769, + 38.057476 + ], + [ + -78.501588, + 38.057518 + ], + [ + -78.501288, + 38.05758 + ], + [ + -78.500918, + 38.057644 + ], + [ + -78.50053, + 38.057699 + ], + [ + -78.50025, + 38.057721 + ], + [ + -78.49999, + 38.057731 + ], + [ + -78.4996, + 38.057738 + ], + [ + -78.499258, + 38.057729 + ], + [ + -78.499228, + 38.057727 + ], + [ + -78.498789, + 38.057695 + ], + [ + -78.498509, + 38.057667 + ], + [ + -78.498249, + 38.05764 + ], + [ + -78.497868, + 38.057604 + ], + [ + -78.497658, + 38.057584 + ], + [ + -78.497235, + 38.057537 + ], + [ + -78.496848, + 38.057489 + ], + [ + -78.495893, + 38.057371 + ], + [ + -78.494978, + 38.057279 + ], + [ + -78.49472, + 38.057173 + ], + [ + -78.494659, + 38.057142 + ], + [ + -78.494592, + 38.057093 + ], + [ + -78.494549, + 38.057047 + ], + [ + -78.494516, + 38.056995 + ], + [ + -78.494502, + 38.05695 + ], + [ + -78.494493, + 38.056874 + ], + [ + -78.494502, + 38.056798 + ], + [ + -78.494522, + 38.056739 + ], + [ + -78.494562, + 38.056669 + ], + [ + -78.494623, + 38.05661 + ], + [ + -78.494697, + 38.056562 + ], + [ + -78.494781, + 38.056525 + ], + [ + -78.494872, + 38.056502 + ], + [ + -78.49496, + 38.056493 + ], + [ + -78.495044, + 38.0565 + ], + [ + -78.495109, + 38.056516 + ], + [ + -78.495169, + 38.056541 + ], + [ + -78.495238, + 38.056584 + ], + [ + -78.49528, + 38.056617 + ], + [ + -78.495339, + 38.05668 + ], + [ + -78.495381, + 38.056751 + ], + [ + -78.495402, + 38.056811 + ], + [ + -78.495415, + 38.056894 + ], + [ + -78.495413, + 38.056998 + ], + [ + -78.495388, + 38.057116 + ], + [ + -78.49528, + 38.057239 + ], + [ + -78.495007, + 38.057577 + ], + [ + -78.494845, + 38.057747 + ], + [ + -78.494782, + 38.057825 + ], + [ + -78.494593, + 38.05807 + ], + [ + -78.494413, + 38.058298 + ], + [ + -78.494268, + 38.05847 + ], + [ + -78.494235, + 38.058509 + ], + [ + -78.494159, + 38.058601 + ], + [ + -78.493967, + 38.058833 + ], + [ + -78.493505, + 38.059401 + ], + [ + -78.493364, + 38.059586 + ], + [ + -78.492889, + 38.060182 + ], + [ + -78.492564, + 38.060616 + ], + [ + -78.492196, + 38.061101 + ], + [ + -78.491916, + 38.061468 + ], + [ + -78.491724, + 38.061722 + ], + [ + -78.491723, + 38.061722 + ], + [ + -78.491578, + 38.061897 + ], + [ + -78.491244, + 38.062293 + ], + [ + -78.490863, + 38.062734 + ], + [ + -78.490477, + 38.063153 + ], + [ + -78.490269, + 38.06338 + ], + [ + -78.489937, + 38.063742 + ], + [ + -78.48969, + 38.064008 + ], + [ + -78.489478, + 38.064259 + ], + [ + -78.489344, + 38.064409 + ], + [ + -78.489289, + 38.06447 + ], + [ + -78.489212, + 38.064554 + ], + [ + -78.488761, + 38.065053 + ], + [ + -78.48815, + 38.065739 + ], + [ + -78.488116, + 38.065779 + ], + [ + -78.487867, + 38.06605 + ], + [ + -78.48713, + 38.06686 + ], + [ + -78.486995, + 38.067008 + ], + [ + -78.486825, + 38.067194 + ], + [ + -78.486343, + 38.067727 + ], + [ + -78.486218, + 38.067866 + ], + [ + -78.486208, + 38.067877 + ], + [ + -78.486134, + 38.067959 + ], + [ + -78.48576, + 38.068363 + ], + [ + -78.485475, + 38.06867 + ], + [ + -78.485154, + 38.069027 + ], + [ + -78.484295, + 38.070023 + ], + [ + -78.484063, + 38.070271 + ], + [ + -78.483776, + 38.070614 + ], + [ + -78.483281, + 38.071164 + ], + [ + -78.482433, + 38.07211 + ], + [ + -78.480968, + 38.073741 + ], + [ + -78.480778, + 38.073943 + ], + [ + -78.480706, + 38.07403 + ], + [ + -78.480376, + 38.074401 + ], + [ + -78.479882, + 38.074956 + ], + [ + -78.479801, + 38.075034 + ], + [ + -78.479272, + 38.075634 + ], + [ + -78.478606, + 38.076375 + ], + [ + -78.478527, + 38.076469 + ], + [ + -78.478367, + 38.076647 + ], + [ + -78.477091, + 38.078062 + ], + [ + -78.476397, + 38.078846 + ], + [ + -78.475743, + 38.079571 + ], + [ + -78.474543, + 38.08091 + ], + [ + -78.474163, + 38.081335 + ], + [ + -78.473969, + 38.081577 + ], + [ + -78.473788, + 38.081788 + ], + [ + -78.473613, + 38.082014 + ], + [ + -78.47347, + 38.082218 + ], + [ + -78.472971, + 38.083082 + ], + [ + -78.472639, + 38.083666 + ], + [ + -78.472264, + 38.084319 + ], + [ + -78.471709, + 38.085285 + ], + [ + -78.471146, + 38.086271 + ], + [ + -78.47079, + 38.086895 + ], + [ + -78.470583, + 38.087258 + ], + [ + -78.47026, + 38.087825 + ], + [ + -78.469568, + 38.089039 + ], + [ + -78.468607, + 38.090712 + ], + [ + -78.468501, + 38.090897 + ], + [ + -78.468139, + 38.091557 + ], + [ + -78.468043, + 38.091733 + ], + [ + -78.467922, + 38.09192 + ], + [ + -78.467732, + 38.092218 + ], + [ + -78.46735, + 38.0929 + ], + [ + -78.466766, + 38.093924 + ], + [ + -78.466497, + 38.09437 + ], + [ + -78.466369, + 38.094558 + ], + [ + -78.46599, + 38.095057 + ], + [ + -78.465526, + 38.09564 + ], + [ + -78.465381, + 38.095816 + ], + [ + -78.464933, + 38.096381 + ], + [ + -78.464463, + 38.096962 + ], + [ + -78.464049, + 38.097474 + ], + [ + -78.463974, + 38.097573 + ], + [ + -78.463441, + 38.098232 + ], + [ + -78.46294, + 38.098874 + ], + [ + -78.462231, + 38.099765 + ], + [ + -78.461478, + 38.100721 + ], + [ + -78.460943, + 38.101395 + ], + [ + -78.460544, + 38.101882 + ], + [ + -78.460009, + 38.102564 + ], + [ + -78.459568, + 38.103126 + ], + [ + -78.459337, + 38.103403 + ], + [ + -78.458603, + 38.10429 + ], + [ + -78.457804, + 38.105297 + ], + [ + -78.45751, + 38.105695 + ], + [ + -78.4569, + 38.106619 + ], + [ + -78.456598, + 38.107068 + ], + [ + -78.45544, + 38.108845 + ], + [ + -78.454988, + 38.109578 + ], + [ + -78.454476, + 38.110311 + ], + [ + -78.454296, + 38.110569 + ], + [ + -78.454206, + 38.110708 + ], + [ + -78.454093, + 38.110899 + ], + [ + -78.453942, + 38.111128 + ], + [ + -78.453769, + 38.111409 + ], + [ + -78.453294, + 38.112125 + ], + [ + -78.453172, + 38.112318 + ], + [ + -78.452856, + 38.112817 + ], + [ + -78.452688, + 38.11307 + ], + [ + -78.452602, + 38.113223 + ], + [ + -78.451975, + 38.114186 + ], + [ + -78.451686, + 38.11461 + ], + [ + -78.45106, + 38.115568 + ], + [ + -78.450908, + 38.115798 + ], + [ + -78.450496, + 38.11642 + ], + [ + -78.450419, + 38.116537 + ], + [ + -78.45032, + 38.116697 + ], + [ + -78.450137, + 38.116993 + ], + [ + -78.449702, + 38.117634 + ], + [ + -78.449172, + 38.118448 + ], + [ + -78.448773, + 38.119065 + ], + [ + -78.448006, + 38.120242 + ], + [ + -78.447677, + 38.120726 + ], + [ + -78.447299, + 38.121219 + ], + [ + -78.44692, + 38.121631 + ], + [ + -78.446411, + 38.122124 + ], + [ + -78.4458, + 38.12267 + ], + [ + -78.444661, + 38.123687 + ], + [ + -78.442392, + 38.125724 + ], + [ + -78.441529, + 38.126494 + ], + [ + -78.440922, + 38.127044 + ], + [ + -78.440006, + 38.127866 + ], + [ + -78.439371, + 38.128436 + ], + [ + -78.437997, + 38.129669 + ], + [ + -78.437902, + 38.129754 + ], + [ + -78.437019, + 38.130549 + ], + [ + -78.436453, + 38.131059 + ], + [ + -78.436187, + 38.131299 + ], + [ + -78.435995, + 38.13147 + ], + [ + -78.435251, + 38.132172 + ], + [ + -78.435106, + 38.132303 + ], + [ + -78.434673, + 38.132753 + ], + [ + -78.434293, + 38.13317 + ], + [ + -78.433695, + 38.133887 + ], + [ + -78.433416, + 38.134269 + ], + [ + -78.433195, + 38.134572 + ], + [ + -78.432173, + 38.13616 + ], + [ + -78.430917, + 38.138131 + ], + [ + -78.430468, + 38.138847 + ], + [ + -78.429836, + 38.139833 + ], + [ + -78.429464, + 38.140424 + ], + [ + -78.428859, + 38.141359 + ], + [ + -78.428348, + 38.142178 + ], + [ + -78.428275, + 38.142291 + ], + [ + -78.427887, + 38.14289 + ], + [ + -78.427641, + 38.143278 + ], + [ + -78.427277, + 38.143851 + ], + [ + -78.427263, + 38.143873 + ], + [ + -78.425718, + 38.146293 + ], + [ + -78.4249, + 38.147586 + ], + [ + -78.423982, + 38.149017 + ], + [ + -78.423879, + 38.149181 + ], + [ + -78.4234, + 38.149936 + ], + [ + -78.422346, + 38.1516 + ], + [ + -78.42208, + 38.151996 + ], + [ + -78.421684, + 38.152621 + ], + [ + -78.421337, + 38.15319 + ], + [ + -78.420383, + 38.154692 + ], + [ + -78.419605, + 38.155908 + ], + [ + -78.417659, + 38.158962 + ], + [ + -78.415009, + 38.163121 + ], + [ + -78.414626, + 38.163716 + ], + [ + -78.414541, + 38.163851 + ], + [ + -78.414293, + 38.164245 + ], + [ + -78.412771, + 38.16663 + ], + [ + -78.41231, + 38.167345 + ], + [ + -78.411781, + 38.168185 + ], + [ + -78.410521, + 38.170164 + ], + [ + -78.410064, + 38.170881 + ], + [ + -78.408661, + 38.173081 + ], + [ + -78.408289, + 38.173661 + ], + [ + -78.406754, + 38.176057 + ], + [ + -78.405791, + 38.177582 + ], + [ + -78.405633, + 38.177824 + ], + [ + -78.404819, + 38.179105 + ], + [ + -78.40451, + 38.179581 + ], + [ + -78.403702, + 38.180857 + ], + [ + -78.403534, + 38.181116 + ], + [ + -78.40229, + 38.183084 + ], + [ + -78.402, + 38.183534 + ], + [ + -78.401567, + 38.184219 + ], + [ + -78.401491, + 38.184329 + ], + [ + -78.400918, + 38.18523 + ], + [ + -78.400512, + 38.185861 + ], + [ + -78.399321, + 38.187671 + ], + [ + -78.399195, + 38.187856 + ], + [ + -78.399077, + 38.188041 + ], + [ + -78.398689, + 38.188617 + ], + [ + -78.398558, + 38.18882 + ], + [ + -78.397589, + 38.190295 + ], + [ + -78.3974, + 38.190566 + ], + [ + -78.397207, + 38.19086 + ], + [ + -78.396877, + 38.191349 + ], + [ + -78.396731, + 38.191574 + ], + [ + -78.396016, + 38.192652 + ], + [ + -78.395969, + 38.192724 + ], + [ + -78.395198, + 38.193895 + ], + [ + -78.395145, + 38.193978 + ], + [ + -78.395092, + 38.194057 + ], + [ + -78.395078, + 38.194078 + ], + [ + -78.394787, + 38.194511 + ], + [ + -78.394461, + 38.19501 + ], + [ + -78.394425, + 38.195065 + ], + [ + -78.393867, + 38.195904 + ], + [ + -78.393697, + 38.196162 + ], + [ + -78.392569, + 38.197862 + ], + [ + -78.392356, + 38.198186 + ], + [ + -78.391791, + 38.199049 + ], + [ + -78.3916, + 38.199341 + ], + [ + -78.391424, + 38.19959 + ], + [ + -78.391056, + 38.200141 + ], + [ + -78.390364, + 38.201178 + ], + [ + -78.388697, + 38.203713 + ], + [ + -78.387884, + 38.204937 + ], + [ + -78.387682, + 38.20524 + ], + [ + -78.387424, + 38.205639 + ], + [ + -78.386997, + 38.206278 + ], + [ + -78.386781, + 38.206604 + ], + [ + -78.386138, + 38.207581 + ], + [ + -78.385992, + 38.207804 + ], + [ + -78.385531, + 38.2085 + ], + [ + -78.38498, + 38.209334 + ], + [ + -78.384853, + 38.209537 + ], + [ + -78.383889, + 38.210987 + ], + [ + -78.383519, + 38.211533 + ], + [ + -78.383408, + 38.211705 + ], + [ + -78.383194, + 38.212041 + ], + [ + -78.382209, + 38.213531 + ], + [ + -78.381949, + 38.213932 + ], + [ + -78.381401, + 38.214759 + ], + [ + -78.380953, + 38.215433 + ], + [ + -78.380697, + 38.215818 + ], + [ + -78.380472, + 38.216158 + ], + [ + -78.379118, + 38.218196 + ], + [ + -78.378999, + 38.218384 + ], + [ + -78.37862, + 38.21895 + ], + [ + -78.377882, + 38.220071 + ], + [ + -78.377739, + 38.220289 + ], + [ + -78.377587, + 38.220523 + ], + [ + -78.376908, + 38.221535 + ], + [ + -78.376698, + 38.221851 + ], + [ + -78.376516, + 38.222128 + ], + [ + -78.375966, + 38.222959 + ], + [ + -78.375503, + 38.223658 + ], + [ + -78.374143, + 38.225716 + ], + [ + -78.373741, + 38.226317 + ], + [ + -78.372465, + 38.228246 + ], + [ + -78.371604, + 38.229546 + ], + [ + -78.371224, + 38.230126 + ], + [ + -78.37075, + 38.230832 + ], + [ + -78.370117, + 38.231792 + ], + [ + -78.369796, + 38.23229 + ], + [ + -78.369344, + 38.233031 + ], + [ + -78.369247, + 38.233202 + ], + [ + -78.369201, + 38.233285 + ], + [ + -78.369089, + 38.233499 + ], + [ + -78.368757, + 38.234191 + ], + [ + -78.368537, + 38.23469 + ], + [ + -78.368285, + 38.235273 + ], + [ + -78.367348, + 38.237406 + ], + [ + -78.367125, + 38.237924 + ], + [ + -78.366876, + 38.23848 + ], + [ + -78.366632, + 38.239054 + ], + [ + -78.366538, + 38.239263 + ], + [ + -78.366315, + 38.239761 + ], + [ + -78.365981, + 38.240523 + ], + [ + -78.365112, + 38.242495 + ], + [ + -78.364536, + 38.243815 + ], + [ + -78.364277, + 38.244425 + ], + [ + -78.363872, + 38.245322 + ], + [ + -78.363644, + 38.245831 + ], + [ + -78.363475, + 38.246227 + ], + [ + -78.363324, + 38.246579 + ], + [ + -78.363065, + 38.24716 + ], + [ + -78.362399, + 38.248697 + ], + [ + -78.362213, + 38.249115 + ], + [ + -78.36185, + 38.249928 + ], + [ + -78.360994, + 38.251906 + ], + [ + -78.360894, + 38.252122 + ], + [ + -78.360732, + 38.252472 + ], + [ + -78.359818, + 38.254556 + ], + [ + -78.359604, + 38.255032 + ], + [ + -78.358451, + 38.257672 + ], + [ + -78.35837, + 38.257854 + ], + [ + -78.357235, + 38.260418 + ], + [ + -78.35697, + 38.261034 + ], + [ + -78.356749, + 38.261526 + ], + [ + -78.356328, + 38.262487 + ], + [ + -78.3557, + 38.26392 + ], + [ + -78.355441, + 38.264489 + ], + [ + -78.354985, + 38.265534 + ], + [ + -78.354199, + 38.267311 + ], + [ + -78.354014, + 38.267697 + ], + [ + -78.353899, + 38.267927 + ], + [ + -78.353632, + 38.268419 + ], + [ + -78.353386, + 38.268835 + ], + [ + -78.353012, + 38.269405 + ], + [ + -78.352727, + 38.269807 + ], + [ + -78.352433, + 38.270193 + ], + [ + -78.351176, + 38.271816 + ], + [ + -78.35069, + 38.272444 + ], + [ + -78.350332, + 38.272914 + ], + [ + -78.349867, + 38.273496 + ], + [ + -78.349659, + 38.273731 + ], + [ + -78.349448, + 38.273949 + ], + [ + -78.349246, + 38.274133 + ], + [ + -78.348925, + 38.274393 + ], + [ + -78.348653, + 38.274592 + ], + [ + -78.348309, + 38.274816 + ], + [ + -78.346752, + 38.275754 + ], + [ + -78.345609, + 38.276449 + ], + [ + -78.34394, + 38.277447 + ], + [ + -78.343411, + 38.277789 + ], + [ + -78.343205, + 38.277938 + ], + [ + -78.342906, + 38.278167 + ], + [ + -78.342692, + 38.278348 + ], + [ + -78.342621, + 38.27841 + ], + [ + -78.342399, + 38.278622 + ], + [ + -78.342335, + 38.278686 + ], + [ + -78.342171, + 38.278857 + ], + [ + -78.341631, + 38.279482 + ], + [ + -78.341204, + 38.280003 + ], + [ + -78.341139, + 38.280089 + ], + [ + -78.341053, + 38.280202 + ], + [ + -78.340551, + 38.280804 + ], + [ + -78.34033, + 38.281097 + ], + [ + -78.339739, + 38.281771 + ], + [ + -78.337121, + 38.284947 + ], + [ + -78.335554, + 38.286807 + ], + [ + -78.334912, + 38.287652 + ], + [ + -78.334363, + 38.288479 + ], + [ + -78.333901, + 38.289321 + ], + [ + -78.332891, + 38.291302 + ], + [ + -78.33264, + 38.291856 + ], + [ + -78.332046, + 38.29316 + ], + [ + -78.331547, + 38.294091 + ], + [ + -78.33002, + 38.297253 + ], + [ + -78.328705, + 38.299896 + ], + [ + -78.328454, + 38.300437 + ], + [ + -78.327604, + 38.302025 + ], + [ + -78.326529, + 38.303681 + ], + [ + -78.325643, + 38.304891 + ], + [ + -78.325058, + 38.305662 + ], + [ + -78.32399, + 38.30691 + ], + [ + -78.3236, + 38.307359 + ], + [ + -78.323233, + 38.30771 + ], + [ + -78.322626, + 38.308335 + ], + [ + -78.320591, + 38.310229 + ], + [ + -78.317859, + 38.312439 + ], + [ + -78.317136, + 38.313055 + ], + [ + -78.314274, + 38.315396 + ], + [ + -78.313204, + 38.316275 + ], + [ + -78.313084, + 38.316374 + ], + [ + -78.312238, + 38.317069 + ], + [ + -78.31127, + 38.317874 + ], + [ + -78.310555, + 38.318624 + ], + [ + -78.308339, + 38.321068 + ], + [ + -78.307189, + 38.322326 + ], + [ + -78.306432, + 38.323147 + ], + [ + -78.305157, + 38.324565 + ], + [ + -78.299683, + 38.33067 + ], + [ + -78.296227, + 38.334366 + ], + [ + -78.294775, + 38.336025 + ], + [ + -78.294422, + 38.336434 + ], + [ + -78.293518, + 38.337393 + ], + [ + -78.292283, + 38.338774 + ], + [ + -78.290905, + 38.340301 + ], + [ + -78.289054, + 38.34231 + ], + [ + -78.287698, + 38.343781 + ], + [ + -78.286127, + 38.345511 + ], + [ + -78.284805, + 38.346961 + ], + [ + -78.284197, + 38.347653 + ], + [ + -78.281261, + 38.350904 + ], + [ + -78.27928, + 38.353063 + ], + [ + -78.277989, + 38.354462 + ], + [ + -78.276967, + 38.355626 + ], + [ + -78.275482, + 38.357205 + ], + [ + -78.275108, + 38.357686 + ], + [ + -78.273995, + 38.359116 + ], + [ + -78.272612, + 38.361053 + ], + [ + -78.269402, + 38.365549 + ], + [ + -78.268281, + 38.367067 + ], + [ + -78.26707, + 38.368543 + ], + [ + -78.266209, + 38.369424 + ], + [ + -78.26463, + 38.370803 + ], + [ + -78.263855, + 38.371431 + ], + [ + -78.262777, + 38.372178 + ], + [ + -78.262167, + 38.372601 + ], + [ + -78.258589, + 38.375046 + ], + [ + -78.253931, + 38.378242 + ], + [ + -78.253419, + 38.378585 + ], + [ + -78.252722, + 38.379065 + ], + [ + -78.251038, + 38.380279 + ], + [ + -78.249725, + 38.3814 + ], + [ + -78.248824, + 38.38242 + ], + [ + -78.247019, + 38.384778 + ], + [ + -78.243045, + 38.39007 + ], + [ + -78.242379, + 38.390835 + ], + [ + -78.241798, + 38.391304 + ], + [ + -78.241358, + 38.391649 + ], + [ + -78.240659, + 38.392107 + ], + [ + -78.239791, + 38.392562 + ], + [ + -78.236781, + 38.394134 + ], + [ + -78.234618, + 38.395478 + ], + [ + -78.233524, + 38.396238 + ], + [ + -78.231366, + 38.397688 + ], + [ + -78.230593, + 38.398159 + ], + [ + -78.229713, + 38.398631 + ], + [ + -78.22927, + 38.398846 + ], + [ + -78.227176, + 38.399941 + ], + [ + -78.224001, + 38.401573 + ], + [ + -78.221687, + 38.402762 + ], + [ + -78.220927, + 38.403115 + ], + [ + -78.219583, + 38.403494 + ], + [ + -78.217956, + 38.403869 + ], + [ + -78.216834, + 38.404329 + ], + [ + -78.216198, + 38.404653 + ], + [ + -78.215673, + 38.404943 + ], + [ + -78.2147, + 38.405692 + ], + [ + -78.214341, + 38.406017 + ], + [ + -78.211846, + 38.409013 + ], + [ + -78.211205, + 38.409859 + ], + [ + -78.208931, + 38.412831 + ], + [ + -78.207891, + 38.413946 + ], + [ + -78.207388, + 38.414459 + ], + [ + -78.206848, + 38.414885 + ], + [ + -78.20502, + 38.416246 + ], + [ + -78.204339, + 38.416746 + ], + [ + -78.203587, + 38.417231 + ], + [ + -78.201789, + 38.418025 + ], + [ + -78.199931, + 38.418788 + ], + [ + -78.198775, + 38.419213 + ], + [ + -78.197516, + 38.419599 + ], + [ + -78.196891, + 38.419728 + ], + [ + -78.193593, + 38.420311 + ], + [ + -78.192656, + 38.420508 + ], + [ + -78.191772, + 38.420736 + ], + [ + -78.190615, + 38.421137 + ], + [ + -78.189756, + 38.421485 + ], + [ + -78.189131, + 38.421795 + ], + [ + -78.188009, + 38.422501 + ], + [ + -78.186635, + 38.423265 + ], + [ + -78.185396, + 38.423841 + ], + [ + -78.184545, + 38.424162 + ], + [ + -78.179643, + 38.425692 + ], + [ + -78.176595, + 38.426575 + ], + [ + -78.175037, + 38.427149 + ], + [ + -78.174014, + 38.427529 + ], + [ + -78.171007, + 38.428688 + ], + [ + -78.169272, + 38.429381 + ], + [ + -78.165511, + 38.430827 + ], + [ + -78.164119, + 38.431371 + ], + [ + -78.162591, + 38.431967 + ], + [ + -78.161653, + 38.432308 + ], + [ + -78.160661, + 38.43271 + ], + [ + -78.160269, + 38.432865 + ], + [ + -78.159874, + 38.433009 + ], + [ + -78.157491, + 38.433942 + ], + [ + -78.157022, + 38.434133 + ], + [ + -78.156281, + 38.434403 + ], + [ + -78.154122, + 38.435214 + ], + [ + -78.152887, + 38.435503 + ], + [ + -78.151935, + 38.435645 + ], + [ + -78.151237, + 38.435723 + ], + [ + -78.149391, + 38.435895 + ], + [ + -78.145341, + 38.436294 + ], + [ + -78.143178, + 38.436516 + ], + [ + -78.141588, + 38.436723 + ], + [ + -78.140742, + 38.436927 + ], + [ + -78.139967, + 38.43716 + ], + [ + -78.139029, + 38.437478 + ], + [ + -78.138213, + 38.437833 + ], + [ + -78.13673, + 38.438732 + ], + [ + -78.135769, + 38.439493 + ], + [ + -78.133667, + 38.441543 + ], + [ + -78.13309, + 38.442092 + ], + [ + -78.132637, + 38.442565 + ], + [ + -78.131362, + 38.443807 + ], + [ + -78.131197, + 38.443972 + ], + [ + -78.13069, + 38.444456 + ], + [ + -78.13004, + 38.445093 + ], + [ + -78.129654, + 38.445515 + ], + [ + -78.129431, + 38.445788 + ], + [ + -78.129306, + 38.445939 + ], + [ + -78.129135, + 38.446147 + ], + [ + -78.126535, + 38.449414 + ], + [ + -78.12559, + 38.450596 + ], + [ + -78.124937, + 38.451403 + ], + [ + -78.12463, + 38.451786 + ], + [ + -78.122999, + 38.453819 + ], + [ + -78.12268, + 38.454222 + ], + [ + -78.122212, + 38.454799 + ], + [ + -78.122012, + 38.455018 + ], + [ + -78.121815, + 38.455209 + ], + [ + -78.121657, + 38.455346 + ], + [ + -78.121484, + 38.455481 + ], + [ + -78.121283, + 38.455622 + ], + [ + -78.121072, + 38.455755 + ], + [ + -78.120838, + 38.455889 + ], + [ + -78.120605, + 38.456007 + ], + [ + -78.120411, + 38.456093 + ], + [ + -78.120081, + 38.45622 + ], + [ + -78.11988, + 38.456286 + ], + [ + -78.119617, + 38.456362 + ], + [ + -78.119481, + 38.456395 + ], + [ + -78.119029, + 38.456484 + ], + [ + -78.118859, + 38.456513 + ], + [ + -78.118556, + 38.456543 + ], + [ + -78.118252, + 38.456558 + ], + [ + -78.117886, + 38.45656 + ], + [ + -78.117582, + 38.456545 + ], + [ + -78.117215, + 38.456509 + ], + [ + -78.11691, + 38.456463 + ], + [ + -78.116669, + 38.456417 + ], + [ + -78.116299, + 38.456332 + ], + [ + -78.114395, + 38.455867 + ], + [ + -78.113075, + 38.455549 + ], + [ + -78.112183, + 38.455337 + ], + [ + -78.111983, + 38.455288 + ], + [ + -78.110622, + 38.454956 + ], + [ + -78.109647, + 38.454713 + ], + [ + -78.109318, + 38.454619 + ], + [ + -78.108646, + 38.454427 + ], + [ + -78.108148, + 38.454266 + ], + [ + -78.107826, + 38.454152 + ], + [ + -78.107433, + 38.454006 + ], + [ + -78.106215, + 38.453523 + ], + [ + -78.103244, + 38.452284 + ], + [ + -78.103113, + 38.45223 + ], + [ + -78.101465, + 38.451517 + ], + [ + -78.100793, + 38.451267 + ], + [ + -78.099999, + 38.450965 + ], + [ + -78.099633, + 38.450843 + ], + [ + -78.099366, + 38.450762 + ], + [ + -78.098981, + 38.450649 + ], + [ + -78.098604, + 38.450547 + ], + [ + -78.098262, + 38.45046 + ], + [ + -78.09792, + 38.450384 + ], + [ + -78.096808, + 38.450181 + ], + [ + -78.096151, + 38.450083 + ], + [ + -78.095446, + 38.449969 + ], + [ + -78.093727, + 38.449707 + ], + [ + -78.092677, + 38.449547 + ], + [ + -78.092158, + 38.449481 + ], + [ + -78.091766, + 38.449445 + ], + [ + -78.091635, + 38.449437 + ], + [ + -78.091391, + 38.44943 + ], + [ + -78.09088, + 38.449437 + ], + [ + -78.090541, + 38.449459 + ], + [ + -78.090154, + 38.449505 + ], + [ + -78.090027, + 38.449526 + ], + [ + -78.089761, + 38.44957 + ], + [ + -78.089091, + 38.449707 + ], + [ + -78.08849, + 38.449845 + ], + [ + -78.087312, + 38.450134 + ], + [ + -78.086546, + 38.450314 + ], + [ + -78.086092, + 38.450427 + ], + [ + -78.085716, + 38.450516 + ], + [ + -78.085217, + 38.45064 + ], + [ + -78.083614, + 38.45102 + ], + [ + -78.082588, + 38.451268 + ], + [ + -78.081682, + 38.451496 + ], + [ + -78.080934, + 38.451707 + ], + [ + -78.080808, + 38.451743 + ], + [ + -78.080252, + 38.451928 + ], + [ + -78.080061, + 38.451995 + ], + [ + -78.079356, + 38.452244 + ], + [ + -78.079056, + 38.452366 + ], + [ + -78.077758, + 38.452899 + ], + [ + -78.07693, + 38.453218 + ], + [ + -78.07648, + 38.453363 + ], + [ + -78.075972, + 38.453504 + ], + [ + -78.075519, + 38.453613 + ], + [ + -78.075245, + 38.453672 + ], + [ + -78.074633, + 38.453773 + ], + [ + -78.073634, + 38.453917 + ], + [ + -78.073086, + 38.453985 + ], + [ + -78.071708, + 38.454165 + ], + [ + -78.070367, + 38.45434 + ], + [ + -78.069606, + 38.454439 + ], + [ + -78.065196, + 38.455001 + ], + [ + -78.0636, + 38.455212 + ], + [ + -78.062967, + 38.455296 + ], + [ + -78.062279, + 38.455383 + ], + [ + -78.061807, + 38.45545 + ], + [ + -78.061375, + 38.455516 + ], + [ + -78.060496, + 38.455651 + ], + [ + -78.059099, + 38.455874 + ], + [ + -78.058415, + 38.455997 + ], + [ + -78.057861, + 38.456107 + ], + [ + -78.057398, + 38.456211 + ], + [ + -78.057094, + 38.456284 + ], + [ + -78.055369, + 38.456762 + ], + [ + -78.054558, + 38.456978 + ], + [ + -78.05416, + 38.457057 + ], + [ + -78.053923, + 38.4571 + ], + [ + -78.053692, + 38.457137 + ], + [ + -78.053464, + 38.457172 + ], + [ + -78.052965, + 38.457229 + ], + [ + -78.052547, + 38.457266 + ], + [ + -78.05168, + 38.457327 + ], + [ + -78.051381, + 38.457343 + ], + [ + -78.051209, + 38.457356 + ], + [ + -78.050231, + 38.457415 + ], + [ + -78.049522, + 38.45745 + ], + [ + -78.049115, + 38.457457 + ], + [ + -78.048707, + 38.45745 + ], + [ + -78.048107, + 38.457414 + ], + [ + -78.046583, + 38.457296 + ], + [ + -78.045473, + 38.457209 + ], + [ + -78.043615, + 38.457066 + ], + [ + -78.04299, + 38.457014 + ], + [ + -78.041948, + 38.456934 + ], + [ + -78.041564, + 38.4569 + ], + [ + -78.040447, + 38.456809 + ], + [ + -78.039807, + 38.456752 + ], + [ + -78.039565, + 38.456722 + ], + [ + -78.038614, + 38.456586 + ], + [ + -78.037992, + 38.45648 + ], + [ + -78.036619, + 38.456229 + ], + [ + -78.036312, + 38.456174 + ], + [ + -78.035316, + 38.455996 + ], + [ + -78.033993, + 38.455756 + ], + [ + -78.033455, + 38.455659 + ], + [ + -78.032995, + 38.455576 + ], + [ + -78.032344, + 38.455462 + ], + [ + -78.032225, + 38.455441 + ], + [ + -78.032071, + 38.455411 + ], + [ + -78.031918, + 38.455381 + ], + [ + -78.030629, + 38.455156 + ], + [ + -78.030487, + 38.455136 + ], + [ + -78.02993, + 38.455035 + ], + [ + -78.029397, + 38.454939 + ], + [ + -78.027154, + 38.454551 + ], + [ + -78.026507, + 38.454439 + ], + [ + -78.026143, + 38.454368 + ], + [ + -78.025005, + 38.454171 + ], + [ + -78.024336, + 38.45404 + ], + [ + -78.023622, + 38.453878 + ], + [ + -78.02312, + 38.453727 + ], + [ + -78.02273, + 38.453603 + ], + [ + -78.022384, + 38.453473 + ], + [ + -78.021945, + 38.453293 + ], + [ + -78.021688, + 38.453179 + ], + [ + -78.02141, + 38.45304 + ], + [ + -78.020949, + 38.452794 + ], + [ + -78.020606, + 38.452593 + ], + [ + -78.018376, + 38.451156 + ], + [ + -78.015052, + 38.449001 + ], + [ + -78.013038, + 38.447702 + ], + [ + -78.012718, + 38.447476 + ], + [ + -78.012365, + 38.447314 + ], + [ + -78.011913, + 38.44707 + ], + [ + -78.011467, + 38.446849 + ], + [ + -78.011017, + 38.446646 + ], + [ + -78.010785, + 38.446548 + ], + [ + -78.01041, + 38.446389 + ], + [ + -78.009947, + 38.446212 + ], + [ + -78.009475, + 38.446047 + ], + [ + -78.009032, + 38.44592 + ], + [ + -78.008198, + 38.445668 + ], + [ + -78.007806, + 38.445574 + ], + [ + -78.007536, + 38.445509 + ], + [ + -78.00704, + 38.445404 + ], + [ + -78.006541, + 38.445314 + ], + [ + -78.006039, + 38.445234 + ], + [ + -78.005535, + 38.445168 + ], + [ + -78.004882, + 38.445103 + ], + [ + -78.00427, + 38.44506 + ], + [ + -78.003857, + 38.445042 + ], + [ + -78.003259, + 38.445032 + ], + [ + -77.996098, + 38.445039 + ], + [ + -77.995524, + 38.445052 + ], + [ + -77.995083, + 38.445072 + ], + [ + -77.9946, + 38.445108 + ], + [ + -77.994291, + 38.44514 + ], + [ + -77.994119, + 38.445159 + ], + [ + -77.993562, + 38.445235 + ], + [ + -77.993077, + 38.445314 + ], + [ + -77.992738, + 38.44538 + ], + [ + -77.992304, + 38.445476 + ], + [ + -77.991774, + 38.445609 + ], + [ + -77.991277, + 38.445754 + ], + [ + -77.990885, + 38.44588 + ], + [ + -77.990401, + 38.446049 + ], + [ + -77.989902, + 38.446248 + ], + [ + -77.98951, + 38.446417 + ], + [ + -77.989127, + 38.446595 + ], + [ + -77.988671, + 38.446826 + ], + [ + -77.988226, + 38.44707 + ], + [ + -77.988015, + 38.447193 + ], + [ + -77.987964, + 38.447222 + ], + [ + -77.986229, + 38.448266 + ], + [ + -77.982377, + 38.450578 + ], + [ + -77.980067, + 38.451965 + ], + [ + -77.978396, + 38.452971 + ], + [ + -77.976723, + 38.453978 + ], + [ + -77.971729, + 38.456974 + ], + [ + -77.970854, + 38.457513 + ], + [ + -77.970447, + 38.457776 + ], + [ + -77.969812, + 38.458205 + ], + [ + -77.969672, + 38.458304 + ], + [ + -77.969294, + 38.458571 + ], + [ + -77.968878, + 38.458872 + ], + [ + -77.968162, + 38.459423 + ], + [ + -77.967696, + 38.459799 + ], + [ + -77.967125, + 38.46028 + ], + [ + -77.966325, + 38.460982 + ], + [ + -77.965258, + 38.461918 + ], + [ + -77.964866, + 38.462267 + ], + [ + -77.960196, + 38.466376 + ], + [ + -77.955939, + 38.470123 + ], + [ + -77.954947, + 38.470996 + ], + [ + -77.954533, + 38.471358 + ], + [ + -77.953922, + 38.471893 + ], + [ + -77.953458, + 38.472304 + ], + [ + -77.953176, + 38.472548 + ], + [ + -77.952583, + 38.473072 + ], + [ + -77.951119, + 38.474355 + ], + [ + -77.950943, + 38.474509 + ], + [ + -77.949669, + 38.47563 + ], + [ + -77.948949, + 38.476265 + ], + [ + -77.948002, + 38.477098 + ], + [ + -77.940672, + 38.483548 + ], + [ + -77.940481, + 38.483731 + ], + [ + -77.940188, + 38.484012 + ], + [ + -77.939893, + 38.484318 + ], + [ + -77.939484, + 38.484776 + ], + [ + -77.93926, + 38.485054 + ], + [ + -77.939039, + 38.48534 + ], + [ + -77.938835, + 38.485618 + ], + [ + -77.938574, + 38.486003 + ], + [ + -77.938385, + 38.4863 + ], + [ + -77.938154, + 38.486695 + ], + [ + -77.936929, + 38.489071 + ], + [ + -77.936476, + 38.48995 + ], + [ + -77.936307, + 38.490277 + ], + [ + -77.936213, + 38.490449 + ], + [ + -77.936032, + 38.490779 + ], + [ + -77.935797, + 38.491168 + ], + [ + -77.935515, + 38.491593 + ], + [ + -77.935238, + 38.491981 + ], + [ + -77.934904, + 38.492412 + ], + [ + -77.934836, + 38.492493 + ], + [ + -77.93462, + 38.492753 + ], + [ + -77.934238, + 38.493183 + ], + [ + -77.933985, + 38.493449 + ], + [ + -77.933681, + 38.493753 + ], + [ + -77.933395, + 38.494018 + ], + [ + -77.933018, + 38.494354 + ], + [ + -77.932749, + 38.494585 + ], + [ + -77.932252, + 38.494973 + ], + [ + -77.93171, + 38.495374 + ], + [ + -77.931341, + 38.495628 + ], + [ + -77.930966, + 38.495866 + ], + [ + -77.930194, + 38.496327 + ], + [ + -77.929795, + 38.496546 + ], + [ + -77.929468, + 38.496713 + ], + [ + -77.928898, + 38.496989 + ], + [ + -77.928401, + 38.497211 + ], + [ + -77.927814, + 38.497454 + ], + [ + -77.927352, + 38.49763 + ], + [ + -77.926883, + 38.497792 + ], + [ + -77.92627, + 38.497988 + ], + [ + -77.925745, + 38.498139 + ], + [ + -77.925688, + 38.498154 + ], + [ + -77.925207, + 38.498279 + ], + [ + -77.924635, + 38.498412 + ], + [ + -77.924059, + 38.498531 + ], + [ + -77.923478, + 38.498637 + ], + [ + -77.923244, + 38.498675 + ], + [ + -77.9209, + 38.499106 + ], + [ + -77.920407, + 38.499196 + ], + [ + -77.916265, + 38.499951 + ], + [ + -77.914897, + 38.500194 + ], + [ + -77.913262, + 38.500498 + ], + [ + -77.912906, + 38.500563 + ], + [ + -77.911059, + 38.5009 + ], + [ + -77.910401, + 38.501012 + ], + [ + -77.909308, + 38.501222 + ], + [ + -77.90816, + 38.501425 + ], + [ + -77.906956, + 38.501647 + ], + [ + -77.902649, + 38.502433 + ], + [ + -77.901836, + 38.502578 + ], + [ + -77.901383, + 38.502661 + ], + [ + -77.899056, + 38.503088 + ], + [ + -77.897887, + 38.503302 + ], + [ + -77.896932, + 38.503454 + ], + [ + -77.896481, + 38.503514 + ], + [ + -77.896026, + 38.50356 + ], + [ + -77.89557, + 38.503592 + ], + [ + -77.895091, + 38.503613 + ], + [ + -77.894605, + 38.503621 + ], + [ + -77.894338, + 38.503619 + ], + [ + -77.894023, + 38.503612 + ], + [ + -77.893539, + 38.503589 + ], + [ + -77.893152, + 38.50356 + ], + [ + -77.891645, + 38.503392 + ], + [ + -77.891145, + 38.503351 + ], + [ + -77.890705, + 38.503331 + ], + [ + -77.890264, + 38.503325 + ], + [ + -77.89, + 38.503328 + ], + [ + -77.889421, + 38.503346 + ], + [ + -77.888918, + 38.503375 + ], + [ + -77.888578, + 38.503406 + ], + [ + -77.888318, + 38.503429 + ], + [ + -77.887823, + 38.50349 + ], + [ + -77.887334, + 38.503566 + ], + [ + -77.886849, + 38.503655 + ], + [ + -77.886369, + 38.503759 + ], + [ + -77.885701, + 38.503929 + ], + [ + -77.88504, + 38.504114 + ], + [ + -77.883872, + 38.504451 + ], + [ + -77.882026, + 38.504972 + ], + [ + -77.880726, + 38.50535 + ], + [ + -77.879756, + 38.505628 + ], + [ + -77.879416, + 38.505726 + ], + [ + -77.878734, + 38.505916 + ], + [ + -77.87665, + 38.506514 + ], + [ + -77.873295, + 38.507467 + ], + [ + -77.870872, + 38.508164 + ], + [ + -77.867574, + 38.509112 + ], + [ + -77.86643, + 38.509426 + ], + [ + -77.865139, + 38.509804 + ], + [ + -77.864878, + 38.509875 + ], + [ + -77.864614, + 38.509946 + ], + [ + -77.864004, + 38.510124 + ], + [ + -77.863963, + 38.510136 + ], + [ + -77.863243, + 38.510359 + ], + [ + -77.862776, + 38.510515 + ], + [ + -77.862313, + 38.51068 + ], + [ + -77.86153, + 38.510992 + ], + [ + -77.86091, + 38.511252 + ], + [ + -77.860341, + 38.511504 + ], + [ + -77.860101, + 38.511597 + ], + [ + -77.859873, + 38.511706 + ], + [ + -77.859049, + 38.512033 + ], + [ + -77.858596, + 38.512199 + ], + [ + -77.85801, + 38.512393 + ], + [ + -77.85641, + 38.512859 + ], + [ + -77.85546, + 38.513131 + ], + [ + -77.853636, + 38.513652 + ], + [ + -77.852939, + 38.513842 + ], + [ + -77.85189, + 38.514117 + ], + [ + -77.851773, + 38.514147 + ], + [ + -77.851155, + 38.514282 + ], + [ + -77.850783, + 38.514355 + ], + [ + -77.850158, + 38.514468 + ], + [ + -77.849529, + 38.514566 + ], + [ + -77.848611, + 38.514673 + ], + [ + -77.847601, + 38.514814 + ], + [ + -77.847219, + 38.514874 + ], + [ + -77.846744, + 38.514961 + ], + [ + -77.846275, + 38.515063 + ], + [ + -77.845622, + 38.515227 + ], + [ + -77.843493, + 38.515828 + ], + [ + -77.840926, + 38.516554 + ], + [ + -77.838953, + 38.517123 + ], + [ + -77.838611, + 38.51724 + ], + [ + -77.838276, + 38.51737 + ], + [ + -77.838087, + 38.517452 + ], + [ + -77.837878, + 38.517559 + ], + [ + -77.837641, + 38.517698 + ], + [ + -77.837371, + 38.517879 + ], + [ + -77.837159, + 38.518042 + ], + [ + -77.836631, + 38.518508 + ], + [ + -77.833939, + 38.52107 + ], + [ + -77.833536, + 38.521444 + ], + [ + -77.832859, + 38.52207 + ], + [ + -77.832618, + 38.52227 + ], + [ + -77.832363, + 38.52246 + ], + [ + -77.832151, + 38.522605 + ], + [ + -77.831761, + 38.52284 + ], + [ + -77.831645, + 38.522905 + ], + [ + -77.831341, + 38.523059 + ], + [ + -77.831027, + 38.523201 + ], + [ + -77.830705, + 38.52333 + ], + [ + -77.830375, + 38.523446 + ], + [ + -77.82725, + 38.524408 + ], + [ + -77.825282, + 38.525005 + ], + [ + -77.824825, + 38.525153 + ], + [ + -77.824766, + 38.525172 + ], + [ + -77.82414, + 38.525403 + ], + [ + -77.823904, + 38.525501 + ], + [ + -77.823444, + 38.525707 + ], + [ + -77.823161, + 38.525842 + ], + [ + -77.822816, + 38.526023 + ], + [ + -77.822483, + 38.526216 + ], + [ + -77.82216, + 38.526429 + ], + [ + -77.821905, + 38.526618 + ], + [ + -77.821824, + 38.526681 + ], + [ + -77.821661, + 38.526816 + ], + [ + -77.82143, + 38.527024 + ], + [ + -77.821026, + 38.527454 + ], + [ + -77.820758, + 38.527783 + ], + [ + -77.820516, + 38.528112 + ], + [ + -77.820197, + 38.52856 + ], + [ + -77.819895, + 38.529029 + ], + [ + -77.81945, + 38.529798 + ], + [ + -77.818541, + 38.531386 + ], + [ + -77.817476, + 38.533249 + ], + [ + -77.817174, + 38.533749 + ], + [ + -77.815779, + 38.536111 + ], + [ + -77.812836, + 38.541042 + ], + [ + -77.812145, + 38.542152 + ], + [ + -77.811443, + 38.543345 + ], + [ + -77.81107, + 38.543916 + ], + [ + -77.809169, + 38.54677 + ], + [ + -77.807061, + 38.549912 + ], + [ + -77.805801, + 38.55177 + ], + [ + -77.803189, + 38.555743 + ], + [ + -77.802664, + 38.55653 + ], + [ + -77.802442, + 38.556869 + ], + [ + -77.802253, + 38.557175 + ], + [ + -77.802079, + 38.557492 + ], + [ + -77.801838, + 38.557971 + ], + [ + -77.801782, + 38.55809 + ], + [ + -77.801657, + 38.55838 + ], + [ + -77.801522, + 38.558722 + ], + [ + -77.801429, + 38.558994 + ], + [ + -77.801302, + 38.559432 + ], + [ + -77.801209, + 38.559822 + ], + [ + -77.801144, + 38.560169 + ], + [ + -77.801065, + 38.560727 + ], + [ + -77.801025, + 38.56131 + ], + [ + -77.801027, + 38.561813 + ], + [ + -77.801049, + 38.562487 + ], + [ + -77.801069, + 38.562893 + ], + [ + -77.801213, + 38.565749 + ], + [ + -77.801305, + 38.567636 + ], + [ + -77.80137, + 38.568961 + ], + [ + -77.801541, + 38.572402 + ], + [ + -77.801599, + 38.573623 + ], + [ + -77.801669, + 38.575224 + ], + [ + -77.801707, + 38.575829 + ], + [ + -77.801772, + 38.577117 + ], + [ + -77.801874, + 38.579138 + ], + [ + -77.801902, + 38.579759 + ], + [ + -77.801914, + 38.579914 + ], + [ + -77.801945, + 38.580642 + ], + [ + -77.801977, + 38.581198 + ], + [ + -77.802036, + 38.582417 + ], + [ + -77.802118, + 38.584113 + ], + [ + -77.802126, + 38.584391 + ], + [ + -77.802131, + 38.584986 + ], + [ + -77.802118, + 38.585525 + ], + [ + -77.802088, + 38.586052 + ], + [ + -77.802017, + 38.586791 + ], + [ + -77.801743, + 38.589112 + ], + [ + -77.801725, + 38.589268 + ], + [ + -77.801437, + 38.591698 + ], + [ + -77.801342, + 38.5925 + ], + [ + -77.801281, + 38.593006 + ], + [ + -77.800994, + 38.595455 + ], + [ + -77.800644, + 38.598437 + ], + [ + -77.800492, + 38.599704 + ], + [ + -77.800457, + 38.599972 + ], + [ + -77.800268, + 38.601612 + ], + [ + -77.800209, + 38.602305 + ], + [ + -77.80017, + 38.602992 + ], + [ + -77.800152, + 38.603904 + ], + [ + -77.800152, + 38.604035 + ], + [ + -77.800152, + 38.604483 + ], + [ + -77.800172, + 38.60559 + ], + [ + -77.800187, + 38.606551 + ], + [ + -77.800205, + 38.607644 + ], + [ + -77.80022, + 38.608813 + ], + [ + -77.800237, + 38.609384 + ], + [ + -77.800232, + 38.610093 + ], + [ + -77.800248, + 38.611162 + ], + [ + -77.80027, + 38.611781 + ], + [ + -77.800276, + 38.611972 + ], + [ + -77.800298, + 38.612639 + ], + [ + -77.800312, + 38.613039 + ], + [ + -77.800332, + 38.613399 + ], + [ + -77.800397, + 38.614527 + ], + [ + -77.800421, + 38.615203 + ], + [ + -77.800432, + 38.61575 + ], + [ + -77.800444, + 38.616559 + ], + [ + -77.800478, + 38.618723 + ], + [ + -77.8005, + 38.619601 + ], + [ + -77.800525, + 38.620811 + ], + [ + -77.800527, + 38.620908 + ], + [ + -77.800548, + 38.62192 + ], + [ + -77.80058, + 38.623403 + ], + [ + -77.800594, + 38.624213 + ], + [ + -77.800603, + 38.625413 + ], + [ + -77.80062, + 38.627386 + ], + [ + -77.800629, + 38.627856 + ], + [ + -77.800651, + 38.62934 + ], + [ + -77.800658, + 38.629863 + ], + [ + -77.800688, + 38.631295 + ], + [ + -77.800701, + 38.63219 + ], + [ + -77.800708, + 38.632656 + ], + [ + -77.800729, + 38.632937 + ], + [ + -77.800749, + 38.6331 + ], + [ + -77.800764, + 38.633194 + ], + [ + -77.800824, + 38.633493 + ], + [ + -77.8009, + 38.63375 + ], + [ + -77.801033, + 38.634132 + ], + [ + -77.801091, + 38.634277 + ], + [ + -77.801339, + 38.634852 + ], + [ + -77.801526, + 38.635289 + ], + [ + -77.801703, + 38.635692 + ], + [ + -77.801752, + 38.635808 + ], + [ + -77.801965, + 38.636295 + ], + [ + -77.802897, + 38.638462 + ], + [ + -77.802996, + 38.638693 + ], + [ + -77.803206, + 38.639174 + ], + [ + -77.803351, + 38.639505 + ], + [ + -77.803635, + 38.640158 + ], + [ + -77.803774, + 38.640485 + ], + [ + -77.80405, + 38.641121 + ], + [ + -77.804137, + 38.641325 + ], + [ + -77.804199, + 38.641471 + ], + [ + -77.804367, + 38.641868 + ], + [ + -77.804398, + 38.641941 + ], + [ + -77.804535, + 38.642359 + ], + [ + -77.804602, + 38.642621 + ], + [ + -77.804642, + 38.642832 + ], + [ + -77.804669, + 38.643038 + ], + [ + -77.804677, + 38.643118 + ], + [ + -77.804687, + 38.643291 + ], + [ + -77.804696, + 38.643722 + ], + [ + -77.804696, + 38.644409 + ], + [ + -77.804677, + 38.644766 + ], + [ + -77.804636, + 38.645023 + ], + [ + -77.804576, + 38.645279 + ], + [ + -77.804498, + 38.645531 + ], + [ + -77.804445, + 38.645671 + ], + [ + -77.804179, + 38.646296 + ], + [ + -77.803976, + 38.646795 + ], + [ + -77.803645, + 38.647584 + ], + [ + -77.803607, + 38.647672 + ], + [ + -77.803037, + 38.649027 + ], + [ + -77.802582, + 38.650099 + ], + [ + -77.802488, + 38.65032 + ], + [ + -77.80226, + 38.650816 + ], + [ + -77.802226, + 38.650891 + ], + [ + -77.801705, + 38.651973 + ], + [ + -77.801524, + 38.652348 + ], + [ + -77.800517, + 38.654435 + ], + [ + -77.800311, + 38.654856 + ], + [ + -77.800109, + 38.655223 + ], + [ + -77.799504, + 38.656216 + ], + [ + -77.799258, + 38.656629 + ], + [ + -77.799064, + 38.656995 + ], + [ + -77.798952, + 38.657238 + ], + [ + -77.798593, + 38.658126 + ], + [ + -77.798524, + 38.658287 + ], + [ + -77.798395, + 38.658591 + ], + [ + -77.798266, + 38.658901 + ], + [ + -77.798049, + 38.659428 + ], + [ + -77.797829, + 38.659963 + ], + [ + -77.79736, + 38.661105 + ], + [ + -77.797075, + 38.661795 + ], + [ + -77.796724, + 38.662641 + ], + [ + -77.79625, + 38.663783 + ], + [ + -77.796094, + 38.664161 + ], + [ + -77.795637, + 38.665271 + ], + [ + -77.79528, + 38.666132 + ], + [ + -77.795248, + 38.66621 + ], + [ + -77.794069, + 38.669063 + ], + [ + -77.793674, + 38.670024 + ], + [ + -77.793379, + 38.670723 + ], + [ + -77.793244, + 38.671036 + ], + [ + -77.793103, + 38.671307 + ], + [ + -77.792943, + 38.671571 + ], + [ + -77.792813, + 38.671755 + ], + [ + -77.792641, + 38.671968 + ], + [ + -77.792454, + 38.672174 + ], + [ + -77.792251, + 38.672371 + ], + [ + -77.791496, + 38.673047 + ], + [ + -77.791134, + 38.673372 + ], + [ + -77.790643, + 38.673809 + ], + [ + -77.789269, + 38.675032 + ], + [ + -77.788765, + 38.675507 + ], + [ + -77.788692, + 38.675576 + ], + [ + -77.788181, + 38.676104 + ], + [ + -77.787807, + 38.676549 + ], + [ + -77.787668, + 38.676743 + ], + [ + -77.787501, + 38.677031 + ], + [ + -77.78738, + 38.677265 + ], + [ + -77.78733, + 38.677383 + ], + [ + -77.787232, + 38.677659 + ], + [ + -77.787165, + 38.677911 + ], + [ + -77.787115, + 38.678177 + ], + [ + -77.787085, + 38.678445 + ], + [ + -77.787079, + 38.678552 + ], + [ + -77.787095, + 38.67913 + ], + [ + -77.787153, + 38.679798 + ], + [ + -77.787259, + 38.680924 + ], + [ + -77.787331, + 38.681886 + ], + [ + -77.787363, + 38.682419 + ], + [ + -77.787413, + 38.683635 + ], + [ + -77.787401, + 38.684203 + ], + [ + -77.787392, + 38.684611 + ], + [ + -77.78735, + 38.685019 + ], + [ + -77.787315, + 38.685264 + ], + [ + -77.787231, + 38.685728 + ], + [ + -77.787136, + 38.686251 + ], + [ + -77.787114, + 38.686332 + ], + [ + -77.78692, + 38.686986 + ], + [ + -77.786696, + 38.687619 + ], + [ + -77.786501, + 38.688074 + ], + [ + -77.786277, + 38.68855 + ], + [ + -77.786098, + 38.688888 + ], + [ + -77.785944, + 38.689154 + ], + [ + -77.785576, + 38.689748 + ], + [ + -77.784818, + 38.690938 + ], + [ + -77.784516, + 38.691425 + ], + [ + -77.784271, + 38.691807 + ], + [ + -77.783827, + 38.692506 + ], + [ + -77.783401, + 38.6932 + ], + [ + -77.783246, + 38.693444 + ], + [ + -77.782384, + 38.694802 + ], + [ + -77.782205, + 38.695084 + ], + [ + -77.781593, + 38.696059 + ], + [ + -77.781243, + 38.69667 + ], + [ + -77.78108, + 38.696994 + ], + [ + -77.780923, + 38.697347 + ], + [ + -77.780812, + 38.697637 + ], + [ + -77.780687, + 38.698004 + ], + [ + -77.780614, + 38.698231 + ], + [ + -77.780587, + 38.698314 + ], + [ + -77.780392, + 38.699181 + ], + [ + -77.780333, + 38.699659 + ], + [ + -77.780298, + 38.700094 + ], + [ + -77.780287, + 38.700389 + ], + [ + -77.780289, + 38.700757 + ], + [ + -77.780315, + 38.701452 + ], + [ + -77.780365, + 38.702797 + ], + [ + -77.780397, + 38.703509 + ], + [ + -77.780462, + 38.705131 + ], + [ + -77.780535, + 38.706895 + ], + [ + -77.780587, + 38.708144 + ], + [ + -77.780612, + 38.708911 + ], + [ + -77.780675, + 38.710324 + ], + [ + -77.780782, + 38.713019 + ], + [ + -77.780806, + 38.713639 + ], + [ + -77.780906, + 38.716128 + ], + [ + -77.780923, + 38.716557 + ], + [ + -77.780985, + 38.71812 + ], + [ + -77.781094, + 38.720811 + ], + [ + -77.781111, + 38.721348 + ], + [ + -77.78117, + 38.722771 + ], + [ + -77.781205, + 38.723428 + ], + [ + -77.781207, + 38.723933 + ], + [ + -77.781141, + 38.724638 + ], + [ + -77.781062, + 38.725028 + ], + [ + -77.780986, + 38.725313 + ], + [ + -77.780873, + 38.725651 + ], + [ + -77.780799, + 38.725838 + ], + [ + -77.780763, + 38.72593 + ], + [ + -77.780608, + 38.726258 + ], + [ + -77.780457, + 38.726537 + ], + [ + -77.78029, + 38.726814 + ], + [ + -77.780067, + 38.727137 + ], + [ + -77.779841, + 38.727426 + ], + [ + -77.779593, + 38.727712 + ], + [ + -77.779535, + 38.727773 + ], + [ + -77.779432, + 38.727882 + ], + [ + -77.779137, + 38.728163 + ], + [ + -77.778889, + 38.728379 + ], + [ + -77.778564, + 38.728638 + ], + [ + -77.777988, + 38.729064 + ], + [ + -77.777903, + 38.729128 + ], + [ + -77.777813, + 38.729195 + ], + [ + -77.777751, + 38.72924 + ], + [ + -77.777544, + 38.729395 + ], + [ + -77.776507, + 38.73018 + ], + [ + -77.77534, + 38.731069 + ], + [ + -77.775049, + 38.73127 + ], + [ + -77.774364, + 38.73177 + ], + [ + -77.774051, + 38.732009 + ], + [ + -77.773303, + 38.732554 + ], + [ + -77.772496, + 38.733155 + ], + [ + -77.772444, + 38.733192 + ], + [ + -77.771424, + 38.733941 + ], + [ + -77.770375, + 38.73472 + ], + [ + -77.769774, + 38.735166 + ], + [ + -77.766501, + 38.737595 + ], + [ + -77.766092, + 38.7379 + ], + [ + -77.766013, + 38.737957 + ], + [ + -77.764613, + 38.738973 + ], + [ + -77.763699, + 38.739647 + ], + [ + -77.760294, + 38.742188 + ], + [ + -77.759475, + 38.742805 + ], + [ + -77.758292, + 38.743704 + ], + [ + -77.757242, + 38.744507 + ], + [ + -77.756734, + 38.744888 + ], + [ + -77.75607, + 38.745394 + ], + [ + -77.755332, + 38.74595 + ], + [ + -77.753869, + 38.747051 + ], + [ + -77.753512, + 38.747317 + ], + [ + -77.752239, + 38.748266 + ], + [ + -77.751486, + 38.748835 + ], + [ + -77.749304, + 38.750477 + ], + [ + -77.747696, + 38.751677 + ], + [ + -77.747175, + 38.752069 + ], + [ + -77.746636, + 38.752468 + ], + [ + -77.746089, + 38.752858 + ], + [ + -77.745719, + 38.753113 + ], + [ + -77.745109, + 38.753534 + ], + [ + -77.744529, + 38.753946 + ], + [ + -77.744441, + 38.754016 + ], + [ + -77.743143, + 38.755039 + ], + [ + -77.742369, + 38.755648 + ], + [ + -77.741019, + 38.756723 + ], + [ + -77.740302, + 38.757289 + ], + [ + -77.74012, + 38.757439 + ], + [ + -77.739869, + 38.757633 + ], + [ + -77.739452, + 38.757933 + ], + [ + -77.738896, + 38.758325 + ], + [ + -77.738458, + 38.758616 + ], + [ + -77.737994, + 38.758912 + ], + [ + -77.737675, + 38.759109 + ], + [ + -77.736928, + 38.759546 + ], + [ + -77.736529, + 38.759764 + ], + [ + -77.73598, + 38.760062 + ], + [ + -77.735512, + 38.760302 + ], + [ + -77.734641, + 38.760749 + ], + [ + -77.731871, + 38.762168 + ], + [ + -77.730354, + 38.762946 + ], + [ + -77.726563, + 38.764904 + ], + [ + -77.726297, + 38.765042 + ], + [ + -77.725494, + 38.765462 + ], + [ + -77.724993, + 38.765717 + ], + [ + -77.724283, + 38.76606 + ], + [ + -77.724155, + 38.766114 + ], + [ + -77.723683, + 38.766274 + ], + [ + -77.723631, + 38.766287 + ], + [ + -77.723461, + 38.76633 + ], + [ + -77.723208, + 38.766384 + ], + [ + -77.722948, + 38.766425 + ], + [ + -77.722732, + 38.766449 + ], + [ + -77.722439, + 38.766466 + ], + [ + -77.722204, + 38.76647 + ], + [ + -77.721761, + 38.76645 + ], + [ + -77.721338, + 38.766416 + ], + [ + -77.720827, + 38.766373 + ], + [ + -77.71958, + 38.766268 + ], + [ + -77.718945, + 38.766226 + ], + [ + -77.71829, + 38.766214 + ], + [ + -77.717886, + 38.766231 + ], + [ + -77.717644, + 38.766248 + ], + [ + -77.717238, + 38.766296 + ], + [ + -77.716986, + 38.766333 + ], + [ + -77.716478, + 38.766426 + ], + [ + -77.715933, + 38.766539 + ], + [ + -77.71313, + 38.767126 + ], + [ + -77.71253, + 38.76725 + ], + [ + -77.711446, + 38.767475 + ], + [ + -77.711213, + 38.767521 + ], + [ + -77.709832, + 38.76781 + ], + [ + -77.709246, + 38.767933 + ], + [ + -77.708584, + 38.768078 + ], + [ + -77.708134, + 38.768177 + ], + [ + -77.707984, + 38.768211 + ], + [ + -77.707651, + 38.768287 + ], + [ + -77.707208, + 38.768389 + ], + [ + -77.707037, + 38.768429 + ], + [ + -77.706966, + 38.768445 + ], + [ + -77.706604, + 38.768529 + ], + [ + -77.705724, + 38.768733 + ], + [ + -77.704884, + 38.768928 + ], + [ + -77.704008, + 38.769125 + ], + [ + -77.703413, + 38.769266 + ], + [ + -77.703044, + 38.769359 + ], + [ + -77.702667, + 38.769454 + ], + [ + -77.702289, + 38.769565 + ], + [ + -77.701922, + 38.769687 + ], + [ + -77.701705, + 38.769766 + ], + [ + -77.701294, + 38.769925 + ], + [ + -77.700381, + 38.770277 + ], + [ + -77.698624, + 38.770957 + ], + [ + -77.69792, + 38.771222 + ], + [ + -77.696779, + 38.771656 + ], + [ + -77.696286, + 38.771839 + ], + [ + -77.694688, + 38.772451 + ], + [ + -77.693388, + 38.772942 + ], + [ + -77.69338, + 38.772945 + ], + [ + -77.69299, + 38.773092 + ], + [ + -77.691828, + 38.773541 + ], + [ + -77.689985, + 38.774273 + ], + [ + -77.689184, + 38.774593 + ], + [ + -77.687947, + 38.775099 + ], + [ + -77.68652, + 38.775696 + ], + [ + -77.686093, + 38.775875 + ], + [ + -77.685013, + 38.776323 + ], + [ + -77.684548, + 38.776508 + ], + [ + -77.683617, + 38.77688 + ], + [ + -77.682281, + 38.77742 + ], + [ + -77.681906, + 38.77757 + ], + [ + -77.680152, + 38.778273 + ], + [ + -77.680071, + 38.778309 + ], + [ + -77.679964, + 38.778348 + ], + [ + -77.67944, + 38.778559 + ], + [ + -77.679135, + 38.778682 + ], + [ + -77.679008, + 38.778733 + ], + [ + -77.678765, + 38.778831 + ], + [ + -77.678322, + 38.779011 + ], + [ + -77.677302, + 38.779417 + ], + [ + -77.677036, + 38.779514 + ], + [ + -77.676871, + 38.779569 + ], + [ + -77.676375, + 38.779711 + ], + [ + -77.675903, + 38.779834 + ], + [ + -77.675739, + 38.779874 + ], + [ + -77.675282, + 38.779966 + ], + [ + -77.675165, + 38.77999 + ], + [ + -77.673681, + 38.780291 + ], + [ + -77.67245, + 38.780538 + ], + [ + -77.671784, + 38.780666 + ], + [ + -77.671623, + 38.780699 + ], + [ + -77.671392, + 38.780752 + ], + [ + -77.670977, + 38.780857 + ], + [ + -77.67067, + 38.780949 + ], + [ + -77.669909, + 38.781181 + ], + [ + -77.669755, + 38.781229 + ], + [ + -77.668691, + 38.781557 + ], + [ + -77.668105, + 38.781729 + ], + [ + -77.66717, + 38.781984 + ], + [ + -77.665556, + 38.7824 + ], + [ + -77.665397, + 38.782443 + ], + [ + -77.66509, + 38.782528 + ], + [ + -77.663117, + 38.783041 + ], + [ + -77.662729, + 38.783142 + ], + [ + -77.658982, + 38.784122 + ], + [ + -77.658234, + 38.784318 + ], + [ + -77.657487, + 38.784515 + ], + [ + -77.656903, + 38.784668 + ], + [ + -77.656444, + 38.784785 + ], + [ + -77.655772, + 38.784954 + ], + [ + -77.655488, + 38.785028 + ], + [ + -77.654149, + 38.78538 + ], + [ + -77.653073, + 38.785665 + ], + [ + -77.652817, + 38.785732 + ], + [ + -77.652723, + 38.785757 + ], + [ + -77.652335, + 38.78586 + ], + [ + -77.650432, + 38.786358 + ], + [ + -77.650292, + 38.786394 + ], + [ + -77.648546, + 38.786845 + ], + [ + -77.648132, + 38.786953 + ], + [ + -77.6471, + 38.787217 + ], + [ + -77.646912, + 38.787266 + ], + [ + -77.646792, + 38.787296 + ], + [ + -77.646475, + 38.787378 + ], + [ + -77.643862, + 38.788066 + ], + [ + -77.643514, + 38.788151 + ], + [ + -77.642956, + 38.788288 + ], + [ + -77.641845, + 38.788545 + ], + [ + -77.641256, + 38.788678 + ], + [ + -77.640668, + 38.788812 + ], + [ + -77.637878, + 38.789456 + ], + [ + -77.637724, + 38.789491 + ], + [ + -77.635026, + 38.790112 + ], + [ + -77.633026, + 38.790572 + ], + [ + -77.631672, + 38.790883 + ], + [ + -77.630391, + 38.791179 + ], + [ + -77.630168, + 38.791231 + ], + [ + -77.629412, + 38.791414 + ], + [ + -77.629006, + 38.791523 + ], + [ + -77.628982, + 38.791529 + ], + [ + -77.628275, + 38.791722 + ], + [ + -77.626219, + 38.792284 + ], + [ + -77.625465, + 38.792483 + ], + [ + -77.624741, + 38.792675 + ], + [ + -77.624567, + 38.792721 + ], + [ + -77.624468, + 38.792748 + ], + [ + -77.624067, + 38.792856 + ], + [ + -77.622821, + 38.793191 + ], + [ + -77.622323, + 38.793326 + ], + [ + -77.622182, + 38.793359 + ], + [ + -77.62157, + 38.793529 + ], + [ + -77.621412, + 38.793572 + ], + [ + -77.620477, + 38.793825 + ], + [ + -77.620443, + 38.793835 + ], + [ + -77.619193, + 38.794171 + ], + [ + -77.619018, + 38.794213 + ], + [ + -77.617763, + 38.794556 + ], + [ + -77.617092, + 38.79473 + ], + [ + -77.616747, + 38.794832 + ], + [ + -77.614017, + 38.7956 + ], + [ + -77.613309, + 38.7958 + ], + [ + -77.613097, + 38.795859 + ], + [ + -77.611965, + 38.796178 + ], + [ + -77.611011, + 38.796432 + ], + [ + -77.609519, + 38.79683 + ], + [ + -77.609066, + 38.796955 + ], + [ + -77.60887, + 38.79701 + ], + [ + -77.608124, + 38.797223 + ], + [ + -77.607861, + 38.79729 + ], + [ + -77.60659, + 38.797608 + ], + [ + -77.604759, + 38.798106 + ], + [ + -77.603341, + 38.798433 + ], + [ + -77.602615, + 38.798623 + ], + [ + -77.60217, + 38.798681 + ], + [ + -77.60178, + 38.798726 + ], + [ + -77.60159, + 38.798739 + ], + [ + -77.601338, + 38.79876 + ], + [ + -77.601043, + 38.798748 + ], + [ + -77.600761, + 38.798726 + ], + [ + -77.600475, + 38.798685 + ], + [ + -77.600088, + 38.798626 + ], + [ + -77.598701, + 38.798329 + ], + [ + -77.598447, + 38.798288 + ], + [ + -77.598168, + 38.798263 + ], + [ + -77.597945, + 38.798266 + ], + [ + -77.597733, + 38.798267 + ], + [ + -77.597515, + 38.798295 + ], + [ + -77.597295, + 38.798329 + ], + [ + -77.59709, + 38.79838 + ], + [ + -77.596838, + 38.798472 + ], + [ + -77.596056, + 38.79873 + ], + [ + -77.595792, + 38.798802 + ], + [ + -77.595557, + 38.798839 + ], + [ + -77.595321, + 38.798872 + ], + [ + -77.595123, + 38.798893 + ], + [ + -77.594903, + 38.798906 + ], + [ + -77.594606, + 38.798902 + ], + [ + -77.592349, + 38.798571 + ], + [ + -77.589853, + 38.798246 + ], + [ + -77.587564, + 38.797961 + ], + [ + -77.584659, + 38.797708 + ], + [ + -77.583518, + 38.797592 + ], + [ + -77.582596, + 38.797507 + ], + [ + -77.581727, + 38.797465 + ], + [ + -77.580645, + 38.797422 + ], + [ + -77.579853, + 38.797408 + ], + [ + -77.579381, + 38.797391 + ], + [ + -77.579328, + 38.797391 + ], + [ + -77.578346, + 38.797391 + ], + [ + -77.576989, + 38.797404 + ], + [ + -77.576007, + 38.797446 + ], + [ + -77.575373, + 38.797504 + ], + [ + -77.571144, + 38.797797 + ], + [ + -77.569287, + 38.79792 + ], + [ + -77.56555, + 38.798187 + ], + [ + -77.561659, + 38.798447 + ], + [ + -77.555891, + 38.7988 + ], + [ + -77.553755, + 38.798951 + ], + [ + -77.550887, + 38.799152 + ], + [ + -77.550295, + 38.799193 + ], + [ + -77.548407, + 38.799331 + ], + [ + -77.54595, + 38.799494 + ], + [ + -77.541063, + 38.799812 + ], + [ + -77.539341, + 38.799946 + ], + [ + -77.536546, + 38.800151 + ], + [ + -77.532281, + 38.800448 + ], + [ + -77.529135, + 38.800667 + ], + [ + -77.525861, + 38.800895 + ], + [ + -77.523173, + 38.801079 + ], + [ + -77.520134, + 38.801324 + ], + [ + -77.519426, + 38.801374 + ], + [ + -77.518588, + 38.801436 + ], + [ + -77.514662, + 38.801698 + ], + [ + -77.51275, + 38.801833 + ], + [ + -77.512257, + 38.801883 + ], + [ + -77.51176, + 38.801949 + ], + [ + -77.511242, + 38.802033 + ], + [ + -77.510728, + 38.802133 + ], + [ + -77.510237, + 38.802245 + ], + [ + -77.509757, + 38.802371 + ], + [ + -77.509283, + 38.802511 + ], + [ + -77.508762, + 38.802686 + ], + [ + -77.508249, + 38.802874 + ], + [ + -77.503238, + 38.804849 + ], + [ + -77.501867, + 38.805383 + ], + [ + -77.49854, + 38.806696 + ], + [ + -77.492854, + 38.808929 + ], + [ + -77.492586, + 38.809039 + ], + [ + -77.491408, + 38.809499 + ], + [ + -77.490728, + 38.809768 + ], + [ + -77.490387, + 38.809903 + ], + [ + -77.489846, + 38.810125 + ], + [ + -77.48976, + 38.810159 + ], + [ + -77.489588, + 38.810228 + ], + [ + -77.488128, + 38.810814 + ], + [ + -77.487975, + 38.810876 + ], + [ + -77.487938, + 38.810891 + ], + [ + -77.487614, + 38.811027 + ], + [ + -77.486889, + 38.811312 + ], + [ + -77.485515, + 38.811841 + ], + [ + -77.481021, + 38.813606 + ], + [ + -77.480031, + 38.813987 + ], + [ + -77.479528, + 38.81418 + ], + [ + -77.478278, + 38.814671 + ], + [ + -77.477784, + 38.814859 + ], + [ + -77.476696, + 38.815283 + ], + [ + -77.476308, + 38.815444 + ], + [ + -77.470849, + 38.817587 + ], + [ + -77.469997, + 38.817934 + ], + [ + -77.469107, + 38.818314 + ], + [ + -77.468263, + 38.818692 + ], + [ + -77.467788, + 38.818912 + ], + [ + -77.466824, + 38.819384 + ], + [ + -77.466481, + 38.819559 + ], + [ + -77.465978, + 38.819814 + ], + [ + -77.465888, + 38.819862 + ], + [ + -77.465082, + 38.820299 + ], + [ + -77.464689, + 38.820516 + ], + [ + -77.463916, + 38.820976 + ], + [ + -77.463568, + 38.821184 + ], + [ + -77.462817, + 38.82165 + ], + [ + -77.462169, + 38.822067 + ], + [ + -77.461524, + 38.822499 + ], + [ + -77.460742, + 38.823046 + ], + [ + -77.459971, + 38.823615 + ], + [ + -77.459453, + 38.824009 + ], + [ + -77.458829, + 38.824505 + ], + [ + -77.458041, + 38.825157 + ], + [ + -77.457989, + 38.825199 + ], + [ + -77.457719, + 38.825436 + ], + [ + -77.457456, + 38.825667 + ], + [ + -77.457174, + 38.825914 + ], + [ + -77.456485, + 38.82655 + ], + [ + -77.455925, + 38.827089 + ], + [ + -77.455609, + 38.827408 + ], + [ + -77.455354, + 38.827664 + ], + [ + -77.455286, + 38.827736 + ], + [ + -77.454763, + 38.828288 + ], + [ + -77.453687, + 38.829492 + ], + [ + -77.45117, + 38.83231 + ], + [ + -77.450091, + 38.833546 + ], + [ + -77.449603, + 38.834072 + ], + [ + -77.4484, + 38.835411 + ], + [ + -77.448317, + 38.835496 + ], + [ + -77.447073, + 38.836883 + ], + [ + -77.446568, + 38.837456 + ], + [ + -77.444983, + 38.839239 + ], + [ + -77.444962, + 38.839261 + ], + [ + -77.44448, + 38.839771 + ], + [ + -77.443925, + 38.840374 + ], + [ + -77.443121, + 38.841151 + ], + [ + -77.442523, + 38.841683 + ], + [ + -77.442048, + 38.842083 + ], + [ + -77.441563, + 38.842472 + ], + [ + -77.44121, + 38.842729 + ], + [ + -77.440835, + 38.842989 + ], + [ + -77.440353, + 38.843301 + ], + [ + -77.439357, + 38.843895 + ], + [ + -77.438808, + 38.844189 + ], + [ + -77.438412, + 38.844388 + ], + [ + -77.438154, + 38.844513 + ], + [ + -77.437585, + 38.844773 + ], + [ + -77.43695, + 38.845042 + ], + [ + -77.436125, + 38.845358 + ], + [ + -77.435386, + 38.845611 + ], + [ + -77.434841, + 38.845778 + ], + [ + -77.434461, + 38.845886 + ], + [ + -77.434065, + 38.845989 + ], + [ + -77.433588, + 38.846102 + ], + [ + -77.432595, + 38.846311 + ], + [ + -77.431976, + 38.846424 + ], + [ + -77.431894, + 38.846439 + ], + [ + -77.43166, + 38.846482 + ], + [ + -77.43013, + 38.84677 + ], + [ + -77.428638, + 38.847052 + ], + [ + -77.427672, + 38.847201 + ], + [ + -77.426895, + 38.847336 + ], + [ + -77.426613, + 38.847387 + ], + [ + -77.423954, + 38.847868 + ], + [ + -77.42318, + 38.84802 + ], + [ + -77.422578, + 38.848129 + ], + [ + -77.421734, + 38.848284 + ], + [ + -77.419777, + 38.84865 + ], + [ + -77.418032, + 38.848977 + ], + [ + -77.416532, + 38.849246 + ], + [ + -77.415198, + 38.849482 + ], + [ + -77.414151, + 38.849672 + ], + [ + -77.413692, + 38.849756 + ], + [ + -77.413004, + 38.849886 + ], + [ + -77.41025, + 38.850388 + ], + [ + -77.408348, + 38.850725 + ], + [ + -77.406003, + 38.851167 + ], + [ + -77.404553, + 38.851419 + ], + [ + -77.403103, + 38.851676 + ], + [ + -77.402433, + 38.851803 + ], + [ + -77.401513, + 38.851954 + ], + [ + -77.399882, + 38.852249 + ], + [ + -77.399048, + 38.852319 + ], + [ + -77.398718, + 38.852375 + ], + [ + -77.397996, + 38.852492 + ], + [ + -77.397318, + 38.852624 + ], + [ + -77.396752, + 38.852714 + ], + [ + -77.396348, + 38.852749 + ], + [ + -77.395658, + 38.852767 + ], + [ + -77.395009, + 38.8528 + ], + [ + -77.394695, + 38.852837 + ], + [ + -77.39433, + 38.852891 + ], + [ + -77.393802, + 38.852984 + ], + [ + -77.393126, + 38.853114 + ], + [ + -77.392725, + 38.85318 + ], + [ + -77.392095, + 38.853297 + ], + [ + -77.391904, + 38.853339 + ], + [ + -77.391134, + 38.853478 + ], + [ + -77.389836, + 38.853723 + ], + [ + -77.389215, + 38.853845 + ], + [ + -77.38892, + 38.853895 + ], + [ + -77.388716, + 38.853941 + ], + [ + -77.388024, + 38.854062 + ], + [ + -77.387165, + 38.854196 + ], + [ + -77.386771, + 38.854162 + ], + [ + -77.386529, + 38.854111 + ], + [ + -77.386343, + 38.854055 + ], + [ + -77.386187, + 38.853987 + ], + [ + -77.386127, + 38.853954 + ], + [ + -77.386079, + 38.85392 + ], + [ + -77.385986, + 38.853839 + ], + [ + -77.385938, + 38.853785 + ], + [ + -77.385904, + 38.853738 + ], + [ + -77.385849, + 38.853638 + ], + [ + -77.385829, + 38.853585 + ], + [ + -77.385812, + 38.853521 + ], + [ + -77.3858, + 38.853402 + ], + [ + -77.385805, + 38.853336 + ], + [ + -77.385817, + 38.853271 + ], + [ + -77.38586, + 38.853155 + ], + [ + -77.385888, + 38.853105 + ], + [ + -77.385929, + 38.853047 + ], + [ + -77.38601, + 38.852959 + ], + [ + -77.386068, + 38.85291 + ], + [ + -77.386119, + 38.852873 + ], + [ + -77.386233, + 38.85281 + ], + [ + -77.386292, + 38.852784 + ], + [ + -77.386367, + 38.852757 + ], + [ + -77.386444, + 38.852736 + ], + [ + -77.386551, + 38.852715 + ], + [ + -77.386695, + 38.852705 + ], + [ + -77.38684, + 38.852711 + ], + [ + -77.386899, + 38.85272 + ], + [ + -77.386985, + 38.852739 + ], + [ + -77.387131, + 38.852784 + ], + [ + -77.387234, + 38.852827 + ], + [ + -77.387327, + 38.852872 + ], + [ + -77.387501, + 38.852977 + ], + [ + -77.387596, + 38.853046 + ], + [ + -77.387689, + 38.853125 + ], + [ + -77.387869, + 38.853301 + ], + [ + -77.388005, + 38.8535 + ], + [ + -77.388211, + 38.853861 + ], + [ + -77.388248, + 38.853958 + ], + [ + -77.38834, + 38.854202 + ], + [ + -77.388434, + 38.854509 + ], + [ + -77.388512, + 38.85483 + ], + [ + -77.388556, + 38.855045 + ], + [ + -77.388563, + 38.855077 + ], + [ + -77.388615, + 38.855398 + ], + [ + -77.38864, + 38.855726 + ], + [ + -77.388657, + 38.85606 + ], + [ + -77.388632, + 38.856494 + ], + [ + -77.388606, + 38.856728 + ], + [ + -77.388546, + 38.857062 + ], + [ + -77.388494, + 38.857283 + ], + [ + -77.388383, + 38.85759 + ], + [ + -77.388245, + 38.857898 + ], + [ + -77.387962, + 38.858392 + ], + [ + -77.387722, + 38.858713 + ], + [ + -77.387587, + 38.858842 + ], + [ + -77.387448, + 38.858992 + ], + [ + -77.38738, + 38.859049 + ], + [ + -77.387049, + 38.859315 + ], + [ + -77.387001, + 38.859355 + ], + [ + -77.386572, + 38.859616 + ], + [ + -77.386057, + 38.859876 + ], + [ + -77.385696, + 38.860037 + ], + [ + -77.385104, + 38.860297 + ], + [ + -77.384246, + 38.860678 + ], + [ + -77.383311, + 38.861091 + ], + [ + -77.382484, + 38.861549 + ], + [ + -77.381927, + 38.861964 + ], + [ + -77.381649, + 38.862271 + ], + [ + -77.381472, + 38.862656 + ], + [ + -77.38114, + 38.86254 + ], + [ + -77.380676, + 38.862336 + ], + [ + -77.380373, + 38.862167 + ], + [ + -77.380144, + 38.862016 + ], + [ + -77.379932, + 38.861857 + ], + [ + -77.379724, + 38.861669 + ], + [ + -77.379541, + 38.861495 + ], + [ + -77.379299, + 38.861256 + ], + [ + -77.379174, + 38.86114 + ], + [ + -77.378963, + 38.86097 + ], + [ + -77.378779, + 38.860822 + ], + [ + -77.378622, + 38.860715 + ], + [ + -77.378375, + 38.860584 + ], + [ + -77.37825, + 38.860526 + ], + [ + -77.377901, + 38.860354 + ], + [ + -77.377674, + 38.860258 + ], + [ + -77.377503, + 38.860194 + ], + [ + -77.376982, + 38.860031 + ], + [ + -77.376724, + 38.859968 + ], + [ + -77.376465, + 38.859908 + ], + [ + -77.376139, + 38.859843 + ], + [ + -77.375957, + 38.859809 + ], + [ + -77.375449, + 38.859704 + ], + [ + -77.37477, + 38.859591 + ], + [ + -77.373992, + 38.859482 + ], + [ + -77.373385, + 38.859411 + ], + [ + -77.373319, + 38.859405 + ], + [ + -77.371684, + 38.859251 + ], + [ + -77.371331, + 38.859226 + ], + [ + -77.37112, + 38.859211 + ], + [ + -77.371099, + 38.85942 + ], + [ + -77.371098, + 38.859619 + ], + [ + -77.371033, + 38.860102 + ], + [ + -77.370993, + 38.860407 + ], + [ + -77.370953, + 38.86073 + ], + [ + -77.370894, + 38.86095 + ], + [ + -77.370816, + 38.861165 + ], + [ + -77.370757, + 38.861296 + ], + [ + -77.370665, + 38.861443 + ], + [ + -77.370575, + 38.861587 + ], + [ + -77.370384, + 38.861875 + ], + [ + -77.370116, + 38.862301 + ], + [ + -77.369869, + 38.862675 + ], + [ + -77.369695, + 38.862937 + ], + [ + -77.369553, + 38.863149 + ], + [ + -77.369282, + 38.863562 + ], + [ + -77.369075, + 38.863878 + ], + [ + -77.369003, + 38.863978 + ], + [ + -77.368943, + 38.864053 + ], + [ + -77.368872, + 38.864143 + ], + [ + -77.368754, + 38.864281 + ], + [ + -77.368648, + 38.864383 + ], + [ + -77.368548, + 38.86448 + ], + [ + -77.368413, + 38.864611 + ], + [ + -77.368244, + 38.864751 + ], + [ + -77.368139, + 38.86483 + ], + [ + -77.368096, + 38.864859 + ], + [ + -77.367962, + 38.864949 + ], + [ + -77.367753, + 38.865087 + ], + [ + -77.36752, + 38.865221 + ], + [ + -77.36716, + 38.865425 + ], + [ + -77.366916, + 38.865565 + ], + [ + -77.366749, + 38.865664 + ], + [ + -77.366693, + 38.865696 + ], + [ + -77.366603, + 38.865757 + ], + [ + -77.36621, + 38.865941 + ], + [ + -77.365964, + 38.866096 + ], + [ + -77.365677, + 38.866275 + ], + [ + -77.365412, + 38.86648 + ], + [ + -77.365205, + 38.866666 + ], + [ + -77.365092, + 38.866802 + ], + [ + -77.364926, + 38.867027 + ], + [ + -77.364819, + 38.867215 + ], + [ + -77.364795, + 38.867271 + ], + [ + -77.364687, + 38.867526 + ], + [ + -77.364631, + 38.867731 + ], + [ + -77.364602, + 38.867885 + ], + [ + -77.364585, + 38.868103 + ], + [ + -77.364599, + 38.86833 + ], + [ + -77.364602, + 38.868416 + ], + [ + -77.364653, + 38.868646 + ], + [ + -77.364749, + 38.868903 + ], + [ + -77.364915, + 38.869232 + ], + [ + -77.365031, + 38.869489 + ], + [ + -77.36519, + 38.869811 + ], + [ + -77.365353, + 38.870145 + ], + [ + -77.365541, + 38.870577 + ], + [ + -77.365608, + 38.870714 + ], + [ + -77.36564, + 38.87078 + ], + [ + -77.365767, + 38.871048 + ], + [ + -77.365858, + 38.871232 + ], + [ + -77.365914, + 38.871335 + ], + [ + -77.366032, + 38.871546 + ], + [ + -77.366196, + 38.871805 + ], + [ + -77.366355, + 38.872046 + ], + [ + -77.366507, + 38.872259 + ], + [ + -77.366678, + 38.872501 + ], + [ + -77.366856, + 38.872754 + ], + [ + -77.366963, + 38.872925 + ], + [ + -77.367022, + 38.873039 + ], + [ + -77.367081, + 38.873163 + ], + [ + -77.367145, + 38.873344 + ], + [ + -77.367182, + 38.87346 + ], + [ + -77.367204, + 38.873534 + ], + [ + -77.367233, + 38.873695 + ], + [ + -77.36726, + 38.873889 + ], + [ + -77.367273, + 38.874003 + ], + [ + -77.367165, + 38.874012 + ], + [ + -77.366994, + 38.874012 + ], + [ + -77.366779, + 38.873999 + ], + [ + -77.366666, + 38.873986 + ], + [ + -77.366501, + 38.873968 + ], + [ + -77.366313, + 38.873934 + ], + [ + -77.366155, + 38.873897 + ], + [ + -77.365932, + 38.873832 + ], + [ + -77.36562, + 38.873728 + ], + [ + -77.365375, + 38.873647 + ], + [ + -77.36552, + 38.873752 + ], + [ + -77.365645, + 38.873824 + ], + [ + -77.365759, + 38.873875 + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -79.0850830078125, + 37.60117623656667 + ] + } + }, + { + "type": "Feature", + "properties": { + "dist": 2.4998919202861694, + "index": 1449, + "marker-color": "#f0f" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -79.049412, + 37.578608 + ] + } + } + ] +} \ No newline at end of file diff --git a/packages/turf-point-on-line/test/out/route2_out.geojson b/packages/turf-point-on-line/test/out/route2_out.geojson new file mode 100644 index 0000000000..a523e3da05 --- /dev/null +++ b/packages/turf-point-on-line/test/out/route2_out.geojson @@ -0,0 +1,15097 @@ +{ + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "properties": { + "name": null, + "cmt": null, + "desc": null, + "src": null, + "link1_href": null, + "link1_text": null, + "link1_type": null, + "link2_href": null, + "link2_text": null, + "link2_type": null, + "number": null, + "type": null + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -113.928988, + 50.814121 + ], + [ + -113.928993, + 50.813067 + ], + [ + -113.928994, + 50.811043 + ], + [ + -113.928995, + 50.807418 + ], + [ + -113.929029, + 50.804989 + ], + [ + -113.951995, + 50.804953 + ], + [ + -113.956813, + 50.804931 + ], + [ + -113.957629, + 50.804917 + ], + [ + -113.958021, + 50.804876 + ], + [ + -113.958575, + 50.804779 + ], + [ + -113.959011, + 50.804687 + ], + [ + -113.959367, + 50.804572 + ], + [ + -113.959858, + 50.804414 + ], + [ + -113.960433, + 50.804102 + ], + [ + -113.960932, + 50.803769 + ], + [ + -113.961563, + 50.803306 + ], + [ + -113.961754, + 50.803166 + ], + [ + -113.962486, + 50.802753 + ], + [ + -113.9641, + 50.801549 + ], + [ + -113.966048, + 50.800154 + ], + [ + -113.967597, + 50.799082 + ], + [ + -113.968657, + 50.798289 + ], + [ + -113.969382, + 50.79779 + ], + [ + -113.969303, + 50.797653 + ], + [ + -113.968833, + 50.797177 + ], + [ + -113.968399, + 50.796832 + ], + [ + -113.96652, + 50.796071 + ], + [ + -113.965325, + 50.795579 + ], + [ + -113.964608, + 50.795229 + ], + [ + -113.963373, + 50.794321 + ], + [ + -113.962094, + 50.793355 + ], + [ + -113.956995, + 50.789049 + ], + [ + -113.951125, + 50.784098 + ], + [ + -113.948573, + 50.78194 + ], + [ + -113.941011, + 50.775626 + ], + [ + -113.933724, + 50.769538 + ], + [ + -113.914584, + 50.753577 + ], + [ + -113.906521, + 50.746803 + ], + [ + -113.896774, + 50.738614 + ], + [ + -113.886275, + 50.729779 + ], + [ + -113.88594, + 50.729474 + ], + [ + -113.885307, + 50.728898 + ], + [ + -113.884903, + 50.728477 + ], + [ + -113.884523, + 50.728028 + ], + [ + -113.884201, + 50.727599 + ], + [ + -113.883986, + 50.727298 + ], + [ + -113.883696, + 50.726863 + ], + [ + -113.883482, + 50.72648 + ], + [ + -113.883314, + 50.726156 + ], + [ + -113.883153, + 50.725767 + ], + [ + -113.883094, + 50.725646 + ], + [ + -113.883031, + 50.725465 + ], + [ + -113.882906, + 50.725155 + ], + [ + -113.882792, + 50.724718 + ], + [ + -113.882641, + 50.7241 + ], + [ + -113.882584, + 50.723735 + ], + [ + -113.88255, + 50.723367 + ], + [ + -113.882523, + 50.72258 + ], + [ + -113.882495, + 50.717709 + ], + [ + -113.882486, + 50.713302 + ], + [ + -113.882476, + 50.712125 + ], + [ + -113.882468, + 50.702531 + ], + [ + -113.882456, + 50.699815 + ], + [ + -113.882434, + 50.698229 + ], + [ + -113.882445, + 50.693791 + ], + [ + -113.882419, + 50.692602 + ], + [ + -113.882412, + 50.692077 + ], + [ + -113.882405, + 50.691705 + ], + [ + -113.882365, + 50.691331 + ], + [ + -113.882289, + 50.690878 + ], + [ + -113.882163, + 50.690282 + ], + [ + -113.882074, + 50.689985 + ], + [ + -113.881908, + 50.689517 + ], + [ + -113.881705, + 50.689095 + ], + [ + -113.881622, + 50.688959 + ], + [ + -113.881501, + 50.688721 + ], + [ + -113.881281, + 50.688347 + ], + [ + -113.88097, + 50.687826 + ], + [ + -113.880715, + 50.687491 + ], + [ + -113.880385, + 50.687085 + ], + [ + -113.878859, + 50.685206 + ], + [ + -113.877456, + 50.68348 + ], + [ + -113.875929, + 50.68157 + ], + [ + -113.873357, + 50.67843 + ], + [ + -113.871364, + 50.675999 + ], + [ + -113.869142, + 50.673289 + ], + [ + -113.868358, + 50.672328 + ], + [ + -113.868037, + 50.671943 + ], + [ + -113.867467, + 50.671232 + ], + [ + -113.866987, + 50.670734 + ], + [ + -113.866668, + 50.670424 + ], + [ + -113.866296, + 50.670141 + ], + [ + -113.865816, + 50.669814 + ], + [ + -113.865451, + 50.6696 + ], + [ + -113.8651, + 50.669419 + ], + [ + -113.864667, + 50.669203 + ], + [ + -113.864079, + 50.668945 + ], + [ + -113.863436, + 50.668716 + ], + [ + -113.862804, + 50.66849 + ], + [ + -113.861739, + 50.668114 + ], + [ + -113.853421, + 50.665144 + ], + [ + -113.842891, + 50.661554 + ], + [ + -113.842171, + 50.661197 + ], + [ + -113.841049, + 50.660571 + ], + [ + -113.840156, + 50.659997 + ], + [ + -113.839716, + 50.65961 + ], + [ + -113.839157, + 50.659132 + ], + [ + -113.838847, + 50.658805 + ], + [ + -113.838358, + 50.658284 + ], + [ + -113.837938, + 50.657723 + ], + [ + -113.837609, + 50.657111 + ], + [ + -113.837268, + 50.656259 + ], + [ + -113.83703, + 50.655665 + ], + [ + -113.836937, + 50.654919 + ], + [ + -113.836909, + 50.654144 + ], + [ + -113.836859, + 50.650724 + ], + [ + -113.836826, + 50.647581 + ], + [ + -113.836828, + 50.646677 + ], + [ + -113.836945, + 50.631237 + ], + [ + -113.836945, + 50.630338 + ], + [ + -113.83681, + 50.620833 + ], + [ + -113.836809, + 50.615002 + ], + [ + -113.836748, + 50.614363 + ], + [ + -113.836695, + 50.613902 + ], + [ + -113.836544, + 50.613327 + ], + [ + -113.836395, + 50.612865 + ], + [ + -113.836165, + 50.612347 + ], + [ + -113.835974, + 50.611908 + ], + [ + -113.835688, + 50.611368 + ], + [ + -113.834199, + 50.609116 + ], + [ + -113.831975, + 50.605815 + ], + [ + -113.830597, + 50.603738 + ], + [ + -113.830194, + 50.603006 + ], + [ + -113.829862, + 50.60236 + ], + [ + -113.829623, + 50.601865 + ], + [ + -113.829361, + 50.601178 + ], + [ + -113.829199, + 50.600699 + ], + [ + -113.829001, + 50.600003 + ], + [ + -113.828688, + 50.598264 + ], + [ + -113.828653, + 50.597525 + ], + [ + -113.828653, + 50.596741 + ], + [ + -113.828659, + 50.589493 + ], + [ + -113.828615, + 50.584393 + ], + [ + -113.82855, + 50.57625 + ], + [ + -113.82857, + 50.572186 + ], + [ + -113.82858, + 50.57189 + ], + [ + -113.828436, + 50.567929 + ], + [ + -113.828262, + 50.565198 + ], + [ + -113.82828, + 50.550181 + ], + [ + -113.82829, + 50.541809 + ], + [ + -113.828291, + 50.541417 + ], + [ + -113.828359, + 50.484565 + ], + [ + -113.828388, + 50.473188 + ], + [ + -113.82839, + 50.426319 + ], + [ + -113.828391, + 50.410937 + ], + [ + -113.828495, + 50.409031 + ], + [ + -113.828495, + 50.408255 + ], + [ + -113.828326, + 50.404708 + ], + [ + -113.827868, + 50.402523 + ], + [ + -113.827189, + 50.400367 + ], + [ + -113.82573, + 50.397464 + ], + [ + -113.824909, + 50.396393 + ], + [ + -113.823811, + 50.394869 + ], + [ + -113.82128, + 50.391895 + ], + [ + -113.801481, + 50.376398 + ], + [ + -113.797907, + 50.371872 + ], + [ + -113.796297, + 50.369858 + ], + [ + -113.795351, + 50.368139 + ], + [ + -113.790726, + 50.359724 + ], + [ + -113.789384, + 50.358382 + ], + [ + -113.78784, + 50.357509 + ], + [ + -113.782077, + 50.355219 + ], + [ + -113.781868, + 50.355163 + ], + [ + -113.780696, + 50.354643 + ], + [ + -113.779832, + 50.354058 + ], + [ + -113.779376, + 50.353709 + ], + [ + -113.779034, + 50.353447 + ], + [ + -113.777779, + 50.352208 + ], + [ + -113.776476, + 50.350971 + ], + [ + -113.775669, + 50.350156 + ], + [ + -113.774903, + 50.349363 + ], + [ + -113.774528, + 50.349008 + ], + [ + -113.774139, + 50.348641 + ], + [ + -113.773752, + 50.348267 + ], + [ + -113.773367, + 50.347894 + ], + [ + -113.772991, + 50.347521 + ], + [ + -113.77261, + 50.347144 + ], + [ + -113.77224, + 50.346771 + ], + [ + -113.771866, + 50.346393 + ], + [ + -113.771491, + 50.346021 + ], + [ + -113.771101, + 50.345634 + ], + [ + -113.770724, + 50.345257 + ], + [ + -113.770334, + 50.344868 + ], + [ + -113.769256, + 50.343852 + ], + [ + -113.767134, + 50.341669 + ], + [ + -113.764647, + 50.339182 + ], + [ + -113.764438, + 50.338973 + ], + [ + -113.761597, + 50.336333 + ], + [ + -113.758593, + 50.33458 + ], + [ + -113.755546, + 50.333429 + ], + [ + -113.751856, + 50.33269 + ], + [ + -113.745118, + 50.331594 + ], + [ + -113.742286, + 50.330717 + ], + [ + -113.739453, + 50.329347 + ], + [ + -113.731213, + 50.32247 + ], + [ + -113.723532, + 50.315976 + ], + [ + -113.722158, + 50.313619 + ], + [ + -113.718768, + 50.300682 + ], + [ + -113.714948, + 50.295611 + ], + [ + -113.70452, + 50.282916 + ], + [ + -113.688985, + 50.273536 + ], + [ + -113.671647, + 50.26314 + ], + [ + -113.665976, + 50.259608 + ], + [ + -113.661862, + 50.256884 + ], + [ + -113.66006, + 50.254964 + ], + [ + -113.659379, + 50.253877 + ], + [ + -113.658858, + 50.252741 + ], + [ + -113.658676, + 50.251733 + ], + [ + -113.656669, + 50.241627 + ], + [ + -113.656154, + 50.237592 + ], + [ + -113.655983, + 50.234435 + ], + [ + -113.656026, + 50.226446 + ], + [ + -113.656001, + 50.222848 + ], + [ + -113.655983, + 50.212634 + ], + [ + -113.655983, + 50.198956 + ], + [ + -113.656026, + 50.187774 + ], + [ + -113.655725, + 50.180189 + ], + [ + -113.654781, + 50.177056 + ], + [ + -113.650834, + 50.16488 + ], + [ + -113.648988, + 50.159931 + ], + [ + -113.648171, + 50.158673 + ], + [ + -113.647041, + 50.157055 + ], + [ + -113.642675, + 50.151639 + ], + [ + -113.639814, + 50.147556 + ], + [ + -113.634175, + 50.135735 + ], + [ + -113.632251, + 50.131741 + ], + [ + -113.620363, + 50.106626 + ], + [ + -113.619376, + 50.104527 + ], + [ + -113.61384, + 50.092744 + ], + [ + -113.608561, + 50.081675 + ], + [ + -113.606581, + 50.077494 + ], + [ + -113.603669, + 50.071347 + ], + [ + -113.596202, + 50.055589 + ], + [ + -113.589593, + 50.041645 + ], + [ + -113.585973, + 50.034075 + ], + [ + -113.583284, + 50.028469 + ], + [ + -113.578879, + 50.019214 + ], + [ + -113.577072, + 50.015416 + ], + [ + -113.576933, + 50.015123 + ], + [ + -113.575461, + 50.01195 + ], + [ + -113.56968, + 49.999485 + ], + [ + -113.565276, + 49.990109 + ], + [ + -113.562856, + 49.984972 + ], + [ + -113.558388, + 49.975529 + ], + [ + -113.556763, + 49.972084 + ], + [ + -113.551497, + 49.960982 + ], + [ + -113.550282, + 49.958226 + ], + [ + -113.543115, + 49.943177 + ], + [ + -113.537579, + 49.93141 + ], + [ + -113.531657, + 49.91895 + ], + [ + -113.528868, + 49.913112 + ], + [ + -113.52852, + 49.912237 + ], + [ + -113.528209, + 49.911247 + ], + [ + -113.528013, + 49.910313 + ], + [ + -113.527878, + 49.909552 + ], + [ + -113.527877, + 49.908805 + ], + [ + -113.528009, + 49.904496 + ], + [ + -113.527999, + 49.902765 + ], + [ + -113.527923, + 49.890232 + ], + [ + -113.527923, + 49.878148 + ], + [ + -113.527237, + 49.875493 + ], + [ + -113.526537, + 49.873052 + ], + [ + -113.52449, + 49.865701 + ], + [ + -113.524447, + 49.856267 + ], + [ + -113.52449, + 49.841269 + ], + [ + -113.524447, + 49.826764 + ], + [ + -113.52437, + 49.815239 + ], + [ + -113.524361, + 49.813862 + ], + [ + -113.524357, + 49.801088 + ], + [ + -113.524347, + 49.798401 + ], + [ + -113.524359, + 49.795748 + ], + [ + -113.524362, + 49.795059 + ], + [ + -113.524404, + 49.785441 + ], + [ + -113.524345, + 49.778892 + ], + [ + -113.524361, + 49.771945 + ], + [ + -113.523632, + 49.77031 + ], + [ + -113.522087, + 49.769007 + ], + [ + -113.520199, + 49.768287 + ], + [ + -113.514319, + 49.76643 + ], + [ + -113.510629, + 49.764933 + ], + [ + -113.50771, + 49.763048 + ], + [ + -113.494964, + 49.752901 + ], + [ + -113.479476, + 49.742059 + ], + [ + -113.460012, + 49.728293 + ], + [ + -113.455597, + 49.725235 + ], + [ + -113.454572, + 49.72442 + ], + [ + -113.45366, + 49.723598 + ], + [ + -113.452976, + 49.722915 + ], + [ + -113.45129, + 49.720944 + ], + [ + -113.450256, + 49.719782 + ], + [ + -113.447746, + 49.716986 + ], + [ + -113.447289, + 49.716417 + ], + [ + -113.443365, + 49.71203 + ], + [ + -113.443141, + 49.711789 + ], + [ + -113.442819, + 49.711601 + ], + [ + -113.442606, + 49.711479 + ], + [ + -113.44236, + 49.711374 + ], + [ + -113.442103, + 49.711279 + ], + [ + -113.441837, + 49.711197 + ], + [ + -113.441458, + 49.711124 + ], + [ + -113.441117, + 49.711086 + ], + [ + -113.440779, + 49.711071 + ], + [ + -113.440369, + 49.71109 + ], + [ + -113.439978, + 49.71114 + ], + [ + -113.439697, + 49.711196 + ], + [ + -113.439397, + 49.711273 + ], + [ + -113.439102, + 49.71139 + ], + [ + -113.438862, + 49.711498 + ], + [ + -113.438591, + 49.711635 + ], + [ + -113.438391, + 49.711766 + ], + [ + -113.438075, + 49.712061 + ], + [ + -113.437745, + 49.712489 + ], + [ + -113.43745, + 49.712915 + ], + [ + -113.43721, + 49.713212 + ], + [ + -113.436932, + 49.713495 + ], + [ + -113.436629, + 49.713751 + ], + [ + -113.436287, + 49.713988 + ], + [ + -113.435908, + 49.714204 + ], + [ + -113.435538, + 49.714393 + ], + [ + -113.431814, + 49.715951 + ], + [ + -113.423934, + 49.718913 + ], + [ + -113.423148, + 49.719208 + ], + [ + -113.419515, + 49.720574 + ], + [ + -113.418553, + 49.720884 + ], + [ + -113.417353, + 49.721191 + ], + [ + -113.416622, + 49.721378 + ], + [ + -113.415189, + 49.721933 + ], + [ + -113.414887, + 49.722092 + ], + [ + -113.414553, + 49.722328 + ], + [ + -113.414204, + 49.722586 + ], + [ + -113.413109, + 49.723458 + ], + [ + -113.412313, + 49.724209 + ], + [ + -113.412068, + 49.724385 + ], + [ + -113.411871, + 49.724508 + ], + [ + -113.41169, + 49.724585 + ], + [ + -113.411456, + 49.724665 + ], + [ + -113.411213, + 49.724721 + ], + [ + -113.410939, + 49.724758 + ], + [ + -113.410649, + 49.724769 + ], + [ + -113.408706, + 49.724761 + ], + [ + -113.405913, + 49.724764 + ], + [ + -113.403119, + 49.724754 + ], + [ + -113.400316, + 49.724758 + ], + [ + -113.397541, + 49.724759 + ], + [ + -113.396042, + 49.724769 + ], + [ + -113.395455, + 49.724758 + ], + [ + -113.395172, + 49.724734 + ], + [ + -113.394938, + 49.724709 + ], + [ + -113.394729, + 49.724678 + ], + [ + -113.394467, + 49.724619 + ], + [ + -113.394209, + 49.724544 + ], + [ + -113.393974, + 49.724469 + ], + [ + -113.393696, + 49.724366 + ], + [ + -113.393468, + 49.724249 + ], + [ + -113.393241, + 49.72412 + ], + [ + -113.393012, + 49.723965 + ], + [ + -113.39289, + 49.723864 + ], + [ + -113.391771, + 49.722807 + ], + [ + -113.391196, + 49.722209 + ], + [ + -113.390266, + 49.721242 + ], + [ + -113.389586, + 49.720567 + ], + [ + -113.388246, + 49.71917 + ], + [ + -113.387068, + 49.717968 + ], + [ + -113.386688, + 49.717602 + ], + [ + -113.386617, + 49.717518 + ], + [ + -113.386398, + 49.717254 + ], + [ + -113.386209, + 49.717057 + ], + [ + -113.385914, + 49.716751 + ], + [ + -113.385697, + 49.71658 + ], + [ + -113.385459, + 49.716404 + ], + [ + -113.385223, + 49.716267 + ], + [ + -113.384941, + 49.716121 + ], + [ + -113.384654, + 49.716013 + ], + [ + -113.384337, + 49.715925 + ], + [ + -113.383953, + 49.715848 + ], + [ + -113.383617, + 49.715803 + ], + [ + -113.383303, + 49.715777 + ], + [ + -113.382948, + 49.715769 + ], + [ + -113.382593, + 49.71579 + ], + [ + -113.382269, + 49.715822 + ], + [ + -113.381923, + 49.715886 + ], + [ + -113.381566, + 49.715981 + ], + [ + -113.381244, + 49.716092 + ], + [ + -113.380957, + 49.716219 + ], + [ + -113.380551, + 49.716436 + ], + [ + -113.380035, + 49.71673 + ], + [ + -113.379484, + 49.717081 + ], + [ + -113.378419, + 49.71777 + ], + [ + -113.377851, + 49.718172 + ], + [ + -113.376955, + 49.718849 + ], + [ + -113.376472, + 49.719244 + ], + [ + -113.375953, + 49.719695 + ], + [ + -113.375418, + 49.720164 + ], + [ + -113.374752, + 49.720812 + ], + [ + -113.373389, + 49.722261 + ], + [ + -113.372553, + 49.723172 + ], + [ + -113.371753, + 49.724069 + ], + [ + -113.371091, + 49.724816 + ], + [ + -113.370703, + 49.725251 + ], + [ + -113.370292, + 49.725659 + ], + [ + -113.36989, + 49.726068 + ], + [ + -113.369354, + 49.726543 + ], + [ + -113.368728, + 49.727064 + ], + [ + -113.368135, + 49.727526 + ], + [ + -113.367567, + 49.727939 + ], + [ + -113.366419, + 49.728699 + ], + [ + -113.366091, + 49.728877 + ], + [ + -113.365827, + 49.729022 + ], + [ + -113.365501, + 49.729201 + ], + [ + -113.362951, + 49.730439 + ], + [ + -113.358468, + 49.732139 + ], + [ + -113.3397, + 49.739588 + ], + [ + -113.335475, + 49.741364 + ], + [ + -113.327488, + 49.744425 + ], + [ + -113.318052, + 49.748192 + ], + [ + -113.313869, + 49.749882 + ], + [ + -113.31224, + 49.750619 + ], + [ + -113.310651, + 49.75165 + ], + [ + -113.307682, + 49.753879 + ], + [ + -113.302921, + 49.757409 + ], + [ + -113.297078, + 49.761832 + ], + [ + -113.293465, + 49.764507 + ], + [ + -113.274088, + 49.778989 + ], + [ + -113.273227, + 49.779697 + ], + [ + -113.272213, + 49.780484 + ], + [ + -113.270309, + 49.781807 + ], + [ + -113.269287, + 49.782542 + ], + [ + -113.268506, + 49.783052 + ], + [ + -113.267549, + 49.783577 + ], + [ + -113.266355, + 49.784155 + ], + [ + -113.264867, + 49.784696 + ], + [ + -113.26421, + 49.78488 + ], + [ + -113.263279, + 49.785126 + ], + [ + -113.262406, + 49.785321 + ], + [ + -113.261535, + 49.785468 + ], + [ + -113.260247, + 49.785632 + ], + [ + -113.2584, + 49.785752 + ], + [ + -113.253189, + 49.785761 + ], + [ + -113.2503, + 49.785759 + ], + [ + -113.246741, + 49.785753 + ], + [ + -113.243803, + 49.785748 + ], + [ + -113.24168, + 49.785746 + ], + [ + -113.239441, + 49.785743 + ], + [ + -113.235416, + 49.785738 + ], + [ + -113.232546, + 49.785734 + ], + [ + -113.230542, + 49.78573 + ], + [ + -113.207916, + 49.785665 + ], + [ + -113.188962, + 49.785585 + ], + [ + -113.187421, + 49.785394 + ], + [ + -113.185955, + 49.785084 + ], + [ + -113.182069, + 49.784248 + ], + [ + -113.178433, + 49.783545 + ], + [ + -113.175537, + 49.783555 + ], + [ + -113.172403, + 49.784002 + ], + [ + -113.169876, + 49.784514 + ], + [ + -113.165425, + 49.785057 + ], + [ + -113.162661, + 49.785308 + ], + [ + -113.158491, + 49.785468 + ], + [ + -113.154009, + 49.785249 + ], + [ + -113.150706, + 49.7849 + ], + [ + -113.138727, + 49.78387 + ], + [ + -113.137918, + 49.7838 + ], + [ + -113.132484, + 49.783537 + ], + [ + -113.127139, + 49.783666 + ], + [ + -113.121522, + 49.784134 + ], + [ + -113.116401, + 49.784873 + ], + [ + -113.108878, + 49.786479 + ], + [ + -113.10643, + 49.787036 + ], + [ + -113.100519, + 49.78837 + ], + [ + -113.099817, + 49.78851 + ], + [ + -113.099069, + 49.788664 + ], + [ + -113.098414, + 49.788796 + ], + [ + -113.097678, + 49.788933 + ], + [ + -113.096947, + 49.789058 + ], + [ + -113.096124, + 49.78919 + ], + [ + -113.095087, + 49.789365 + ], + [ + -113.093946, + 49.789519 + ], + [ + -113.092851, + 49.789655 + ], + [ + -113.091995, + 49.789773 + ], + [ + -113.091108, + 49.78988 + ], + [ + -113.090105, + 49.789981 + ], + [ + -113.089148, + 49.790064 + ], + [ + -113.088464, + 49.790125 + ], + [ + -113.087728, + 49.790181 + ], + [ + -113.08695, + 49.790229 + ], + [ + -113.08621, + 49.790281 + ], + [ + -113.085391, + 49.790327 + ], + [ + -113.084622, + 49.790364 + ], + [ + -113.083774, + 49.790396 + ], + [ + -113.082731, + 49.790426 + ], + [ + -113.081849, + 49.790441 + ], + [ + -113.080915, + 49.790449 + ], + [ + -113.080041, + 49.790455 + ], + [ + -113.079132, + 49.790458 + ], + [ + -113.078156, + 49.790437 + ], + [ + -113.077306, + 49.790416 + ], + [ + -113.076308, + 49.790386 + ], + [ + -113.075035, + 49.79033 + ], + [ + -113.073984, + 49.790268 + ], + [ + -113.073014, + 49.790204 + ], + [ + -113.072411, + 49.790162 + ], + [ + -113.071942, + 49.790123 + ], + [ + -113.069874, + 49.789921 + ], + [ + -113.06869, + 49.789793 + ], + [ + -113.067583, + 49.789667 + ], + [ + -113.066892, + 49.789578 + ], + [ + -113.066126, + 49.789472 + ], + [ + -113.064972, + 49.789301 + ], + [ + -113.04876, + 49.786854 + ], + [ + -113.048, + 49.78674 + ], + [ + -113.047462, + 49.78667 + ], + [ + -113.046933, + 49.786601 + ], + [ + -113.046365, + 49.786543 + ], + [ + -113.041994, + 49.786136 + ], + [ + -113.038418, + 49.786047 + ], + [ + -113.028911, + 49.786062 + ], + [ + -113.013026, + 49.786042 + ], + [ + -113.003977, + 49.786038 + ], + [ + -113.002681, + 49.785962 + ], + [ + -113.001644, + 49.785864 + ], + [ + -113.00048, + 49.785713 + ], + [ + -112.999756, + 49.785611 + ], + [ + -112.9987, + 49.785408 + ], + [ + -112.997454, + 49.785132 + ], + [ + -112.995534, + 49.784581 + ], + [ + -112.99125, + 49.783007 + ], + [ + -112.98295, + 49.779625 + ], + [ + -112.980557, + 49.778522 + ], + [ + -112.979018, + 49.777554 + ], + [ + -112.976341, + 49.775651 + ], + [ + -112.973797, + 49.773044 + ], + [ + -112.965769, + 49.764644 + ], + [ + -112.960895, + 49.75933 + ], + [ + -112.960092, + 49.758465 + ], + [ + -112.959726, + 49.75808 + ], + [ + -112.959447, + 49.757828 + ], + [ + -112.959069, + 49.757507 + ], + [ + -112.958709, + 49.757166 + ], + [ + -112.958281, + 49.756793 + ], + [ + -112.95762, + 49.756294 + ], + [ + -112.956931, + 49.755799 + ], + [ + -112.956159, + 49.755282 + ], + [ + -112.955682, + 49.754998 + ], + [ + -112.955151, + 49.754703 + ], + [ + -112.952858, + 49.753509 + ], + [ + -112.949354, + 49.752075 + ], + [ + -112.94544, + 49.749962 + ], + [ + -112.938188, + 49.743931 + ], + [ + -112.931304, + 49.738228 + ], + [ + -112.926731, + 49.73422 + ], + [ + -112.925384, + 49.732989 + ], + [ + -112.924479, + 49.731925 + ], + [ + -112.923468, + 49.730575 + ], + [ + -112.922298, + 49.729055 + ], + [ + -112.921036, + 49.7277 + ], + [ + -112.918917, + 49.725859 + ], + [ + -112.918155, + 49.725203 + ], + [ + -112.916619, + 49.723846 + ], + [ + -112.915487, + 49.723018 + ], + [ + -112.915163, + 49.72283 + ], + [ + -112.914796, + 49.722631 + ], + [ + -112.914432, + 49.722464 + ], + [ + -112.914031, + 49.722286 + ], + [ + -112.913669, + 49.722145 + ], + [ + -112.913246, + 49.722004 + ], + [ + -112.912907, + 49.721891 + ], + [ + -112.912605, + 49.721797 + ], + [ + -112.912248, + 49.721697 + ], + [ + -112.911203, + 49.721427 + ], + [ + -112.910101, + 49.721135 + ], + [ + -112.906937, + 49.720299 + ], + [ + -112.903215, + 49.719342 + ], + [ + -112.900165, + 49.718558 + ], + [ + -112.897476, + 49.717852 + ], + [ + -112.895936, + 49.717459 + ], + [ + -112.895282, + 49.717281 + ], + [ + -112.894243, + 49.71701 + ], + [ + -112.893141, + 49.716728 + ], + [ + -112.892426, + 49.716529 + ], + [ + -112.89165, + 49.716338 + ], + [ + -112.891198, + 49.71622 + ], + [ + -112.890633, + 49.716083 + ], + [ + -112.889897, + 49.715934 + ], + [ + -112.889174, + 49.715796 + ], + [ + -112.888532, + 49.715689 + ], + [ + -112.887541, + 49.715558 + ], + [ + -112.88613, + 49.71536 + ], + [ + -112.885501, + 49.715271 + ], + [ + -112.884833, + 49.715175 + ], + [ + -112.884308, + 49.715088 + ], + [ + -112.883816, + 49.71495 + ], + [ + -112.883277, + 49.714832 + ], + [ + -112.882696, + 49.714691 + ], + [ + -112.88207, + 49.714542 + ], + [ + -112.881531, + 49.714385 + ], + [ + -112.881025, + 49.714222 + ], + [ + -112.880522, + 49.714039 + ], + [ + -112.879986, + 49.713834 + ], + [ + -112.879529, + 49.71365 + ], + [ + -112.87903, + 49.713431 + ], + [ + -112.878502, + 49.713173 + ], + [ + -112.877609, + 49.712649 + ], + [ + -112.875259, + 49.711284 + ], + [ + -112.873228, + 49.710141 + ], + [ + -112.872763, + 49.709872 + ], + [ + -112.87224, + 49.709593 + ], + [ + -112.871848, + 49.709384 + ], + [ + -112.871432, + 49.709188 + ], + [ + -112.871061, + 49.709022 + ], + [ + -112.870716, + 49.708873 + ], + [ + -112.870311, + 49.708723 + ], + [ + -112.869954, + 49.708592 + ], + [ + -112.869443, + 49.708436 + ], + [ + -112.868983, + 49.708311 + ], + [ + -112.868462, + 49.708183 + ], + [ + -112.86782, + 49.708055 + ], + [ + -112.867368, + 49.707982 + ], + [ + -112.866939, + 49.707916 + ], + [ + -112.86545, + 49.707716 + ], + [ + -112.861762, + 49.707191 + ], + [ + -112.86017, + 49.706981 + ], + [ + -112.85809, + 49.706677 + ], + [ + -112.85777, + 49.706622 + ], + [ + -112.857467, + 49.706553 + ], + [ + -112.857076, + 49.706452 + ], + [ + -112.856698, + 49.706338 + ], + [ + -112.854212, + 49.705528 + ], + [ + -112.85381, + 49.705386 + ], + [ + -112.853466, + 49.70523 + ], + [ + -112.853137, + 49.705049 + ], + [ + -112.852839, + 49.704853 + ], + [ + -112.851852, + 49.704221 + ], + [ + -112.851516, + 49.704031 + ], + [ + -112.851207, + 49.703872 + ], + [ + -112.850867, + 49.70373 + ], + [ + -112.850433, + 49.703565 + ], + [ + -112.84992, + 49.703388 + ], + [ + -112.847903, + 49.702792 + ], + [ + -112.845724, + 49.702167 + ], + [ + -112.844077, + 49.701628 + ], + [ + -112.8432, + 49.701369 + ], + [ + -112.842649, + 49.701218 + ], + [ + -112.842201, + 49.701114 + ], + [ + -112.841728, + 49.701025 + ], + [ + -112.840794, + 49.700856 + ], + [ + -112.838125, + 49.700426 + ], + [ + -112.834609, + 49.699873 + ], + [ + -112.832064, + 49.699465 + ], + [ + -112.828981, + 49.698964 + ], + [ + -112.828552, + 49.698904 + ], + [ + -112.827826, + 49.698813 + ], + [ + -112.827096, + 49.698728 + ], + [ + -112.826436, + 49.698665 + ], + [ + -112.825387, + 49.6986 + ], + [ + -112.824515, + 49.698555 + ], + [ + -112.823879, + 49.698527 + ], + [ + -112.822719, + 49.698465 + ], + [ + -112.820041, + 49.698338 + ], + [ + -112.818601, + 49.69826 + ], + [ + -112.817659, + 49.698214 + ], + [ + -112.817451, + 49.698208 + ], + [ + -112.816791, + 49.698174 + ], + [ + -112.81589, + 49.698112 + ], + [ + -112.814861, + 49.698029 + ], + [ + -112.814224, + 49.697963 + ], + [ + -112.813253, + 49.697849 + ], + [ + -112.813147, + 49.697836 + ], + [ + -112.811952, + 49.697672 + ], + [ + -112.811842, + 49.697656 + ], + [ + -112.811502, + 49.697615 + ], + [ + -112.811227, + 49.697581 + ], + [ + -112.810773, + 49.697561 + ], + [ + -112.810352, + 49.69755 + ], + [ + -112.810002, + 49.697537 + ], + [ + -112.809403, + 49.697532 + ], + [ + -112.806575, + 49.697613 + ], + [ + -112.805437, + 49.69765 + ], + [ + -112.804522, + 49.697685 + ], + [ + -112.80393, + 49.697707 + ], + [ + -112.80238, + 49.69777 + ], + [ + -112.802025, + 49.697788 + ], + [ + -112.801625, + 49.697812 + ], + [ + -112.800653, + 49.697888 + ], + [ + -112.799723, + 49.697967 + ], + [ + -112.79867, + 49.698052 + ], + [ + -112.798046, + 49.698084 + ], + [ + -112.797631, + 49.698102 + ], + [ + -112.797077, + 49.698117 + ], + [ + -112.796376, + 49.698135 + ], + [ + -112.79554, + 49.698135 + ], + [ + -112.794414, + 49.698135 + ], + [ + -112.793544, + 49.698131 + ], + [ + -112.788404, + 49.698111 + ], + [ + -112.787759, + 49.698108 + ], + [ + -112.787623, + 49.698109 + ], + [ + -112.786794, + 49.698114 + ], + [ + -112.785574, + 49.698121 + ], + [ + -112.784545, + 49.69817 + ], + [ + -112.784282, + 49.698206 + ], + [ + -112.783264, + 49.698348 + ], + [ + -112.782977, + 49.69837 + ], + [ + -112.782674, + 49.69837 + ], + [ + -112.782377, + 49.69836 + ], + [ + -112.781976, + 49.698324 + ], + [ + -112.781573, + 49.698283 + ], + [ + -112.780374, + 49.698174 + ], + [ + -112.779856, + 49.698084 + ], + [ + -112.77969, + 49.698039 + ], + [ + -112.779534, + 49.697963 + ], + [ + -112.779416, + 49.697879 + ], + [ + -112.779336, + 49.697779 + ], + [ + -112.779293, + 49.697678 + ], + [ + -112.779266, + 49.697588 + ], + [ + -112.779277, + 49.697432 + ], + [ + -112.779309, + 49.697054 + ], + [ + -112.779557, + 49.695985 + ], + [ + -112.779657, + 49.695544 + ], + [ + -112.779736, + 49.695225 + ], + [ + -112.779761, + 49.695101 + ], + [ + -112.779809, + 49.694922 + ], + [ + -112.779952, + 49.69441 + ], + [ + -112.780019, + 49.694125 + ], + [ + -112.780058, + 49.69387 + ], + [ + -112.780085, + 49.693604 + ], + [ + -112.78011, + 49.693292 + ], + [ + -112.780165, + 49.692652 + ], + [ + -112.780169, + 49.692372 + ], + [ + -112.780165, + 49.692154 + ], + [ + -112.780164, + 49.692098 + ], + [ + -112.780144, + 49.691862 + ], + [ + -112.780143, + 49.691843 + ], + [ + -112.780133, + 49.69176 + ], + [ + -112.780037, + 49.691006 + ], + [ + -112.779822, + 49.689657 + ], + [ + -112.77979, + 49.689308 + ], + [ + -112.779748, + 49.688889 + ], + [ + -112.779749, + 49.688478 + ], + [ + -112.779739, + 49.688031 + ], + [ + -112.779748, + 49.687622 + ], + [ + -112.779769, + 49.687159 + ], + [ + -112.779816, + 49.686494 + ], + [ + -112.779896, + 49.685531 + ], + [ + -112.779868, + 49.68512 + ], + [ + -112.779875, + 49.684881 + ], + [ + -112.779863, + 49.684535 + ], + [ + -112.77986, + 49.684358 + ], + [ + -112.779847, + 49.684121 + ], + [ + -112.779816, + 49.683702 + ], + [ + -112.779801, + 49.683613 + ], + [ + -112.779746, + 49.683344 + ], + [ + -112.779688, + 49.682957 + ], + [ + -112.779596, + 49.68252 + ], + [ + -112.779542, + 49.68228 + ], + [ + -112.7794, + 49.681732 + ], + [ + -112.779248, + 49.681225 + ], + [ + -112.779016, + 49.680478 + ], + [ + -112.778857, + 49.679737 + ], + [ + -112.778724, + 49.678803 + ], + [ + -112.778685, + 49.678481 + ], + [ + -112.77867, + 49.678161 + ], + [ + -112.778679, + 49.677477 + ], + [ + -112.778716, + 49.676815 + ], + [ + -112.77879, + 49.676373 + ], + [ + -112.778793, + 49.676281 + ], + [ + -112.778809, + 49.67613 + ], + [ + -112.778826, + 49.675962 + ], + [ + -112.779009, + 49.67502 + ], + [ + -112.779283, + 49.674077 + ], + [ + -112.779324, + 49.67372 + ], + [ + -112.779398, + 49.673084 + ], + [ + -112.779441, + 49.672708 + ], + [ + -112.779445, + 49.672624 + ], + [ + -112.779457, + 49.6724 + ], + [ + -112.779474, + 49.670433 + ], + [ + -112.779525, + 49.669583 + ], + [ + -112.779531, + 49.668796 + ], + [ + -112.779522, + 49.66867 + ], + [ + -112.779234, + 49.66867 + ], + [ + -112.778749, + 49.66867 + ], + [ + -112.773523, + 49.668658 + ], + [ + -112.769369, + 49.668649 + ], + [ + -112.763756, + 49.668637 + ], + [ + -112.7565, + 49.668622 + ], + [ + -112.75294, + 49.668604 + ], + [ + -112.752507, + 49.668609 + ], + [ + -112.751647, + 49.668588 + ], + [ + -112.750485, + 49.668477 + ], + [ + -112.748828, + 49.668137 + ], + [ + -112.747424, + 49.667643 + ], + [ + -112.746405, + 49.667117 + ], + [ + -112.745658, + 49.666544 + ], + [ + -112.743059, + 49.663524 + ], + [ + -112.742076, + 49.662492 + ], + [ + -112.741004, + 49.661674 + ], + [ + -112.73773, + 49.659519 + ], + [ + -112.735465, + 49.657989 + ], + [ + -112.733655, + 49.656859 + ], + [ + -112.718533, + 49.646941 + ], + [ + -112.708401, + 49.640314 + ], + [ + -112.699223, + 49.634317 + ], + [ + -112.697367, + 49.633097 + ], + [ + -112.696977, + 49.632838 + ], + [ + -112.688059, + 49.626979 + ], + [ + -112.68302, + 49.623675 + ], + [ + -112.676625, + 49.619483 + ], + [ + -112.667074, + 49.613228 + ], + [ + -112.658988, + 49.607908 + ], + [ + -112.655248, + 49.605484 + ], + [ + -112.650972, + 49.603234 + ], + [ + -112.646487, + 49.600778 + ], + [ + -112.644902, + 49.599632 + ], + [ + -112.643248, + 49.598383 + ], + [ + -112.641103, + 49.596798 + ], + [ + -112.639355, + 49.595616 + ], + [ + -112.637, + 49.594133 + ], + [ + -112.627891, + 49.588425 + ], + [ + -112.602707, + 49.572537 + ], + [ + -112.600552, + 49.571077 + ], + [ + -112.598617, + 49.5692 + ], + [ + -112.59449, + 49.564228 + ], + [ + -112.593913, + 49.5636 + ], + [ + -112.593075, + 49.562994 + ], + [ + -112.592311, + 49.562392 + ], + [ + -112.591327, + 49.561818 + ], + [ + -112.589132, + 49.56091 + ], + [ + -112.585717, + 49.559813 + ], + [ + -112.580643, + 49.558189 + ], + [ + -112.579135, + 49.557557 + ], + [ + -112.577853, + 49.55687 + ], + [ + -112.576584, + 49.555934 + ], + [ + -112.573576, + 49.55323 + ], + [ + -112.570447, + 49.550424 + ], + [ + -112.569232, + 49.549564 + ], + [ + -112.567477, + 49.548436 + ], + [ + -112.556735, + 49.541871 + ], + [ + -112.550446, + 49.538028 + ], + [ + -112.546175, + 49.535345 + ], + [ + -112.543195, + 49.53355 + ], + [ + -112.541943, + 49.532867 + ], + [ + -112.522018, + 49.522571 + ], + [ + -112.51966, + 49.521328 + ], + [ + -112.515058, + 49.518953 + ], + [ + -112.512595, + 49.517628 + ], + [ + -112.51096, + 49.516524 + ], + [ + -112.50948, + 49.515214 + ], + [ + -112.508358, + 49.513958 + ], + [ + -112.507396, + 49.512646 + ], + [ + -112.504667, + 49.506398 + ], + [ + -112.503772, + 49.504449 + ], + [ + -112.502829, + 49.502755 + ], + [ + -112.502134, + 49.501789 + ], + [ + -112.500323, + 49.499793 + ], + [ + -112.498242, + 49.497945 + ], + [ + -112.491937, + 49.492826 + ], + [ + -112.472122, + 49.477074 + ], + [ + -112.46972, + 49.475443 + ], + [ + -112.458697, + 49.468584 + ], + [ + -112.452076, + 49.464789 + ], + [ + -112.441426, + 49.458313 + ], + [ + -112.440081, + 49.457555 + ], + [ + -112.439154, + 49.45711 + ], + [ + -112.437692, + 49.456507 + ], + [ + -112.428185, + 49.452715 + ], + [ + -112.42567, + 49.451509 + ], + [ + -112.421872, + 49.448943 + ], + [ + -112.416852, + 49.445256 + ], + [ + -112.415374, + 49.444112 + ], + [ + -112.413757, + 49.443067 + ], + [ + -112.41199, + 49.442277 + ], + [ + -112.408866, + 49.441094 + ], + [ + -112.403355, + 49.439005 + ], + [ + -112.400426, + 49.437907 + ], + [ + -112.395624, + 49.436024 + ], + [ + -112.393366, + 49.43506 + ], + [ + -112.391141, + 49.43401 + ], + [ + -112.389667, + 49.433278 + ], + [ + -112.387242, + 49.431857 + ], + [ + -112.380495, + 49.427283 + ], + [ + -112.377371, + 49.425166 + ], + [ + -112.370769, + 49.420228 + ], + [ + -112.369213, + 49.419103 + ], + [ + -112.368029, + 49.418322 + ], + [ + -112.366868, + 49.417688 + ], + [ + -112.365853, + 49.417109 + ], + [ + -112.364196, + 49.416279 + ], + [ + -112.358645, + 49.413606 + ], + [ + -112.345069, + 49.40697 + ], + [ + -112.313601, + 49.391666 + ], + [ + -112.293379, + 49.381796 + ], + [ + -112.280866, + 49.375648 + ], + [ + -112.275641, + 49.37312 + ], + [ + -112.27415, + 49.372357 + ], + [ + -112.272971, + 49.371647 + ], + [ + -112.272087, + 49.371077 + ], + [ + -112.271197, + 49.370405 + ], + [ + -112.270258, + 49.369532 + ], + [ + -112.269242, + 49.36847 + ], + [ + -112.263635, + 49.361606 + ], + [ + -112.261762, + 49.359287 + ], + [ + -112.252776, + 49.348158 + ], + [ + -112.236226, + 49.327356 + ], + [ + -112.231602, + 49.321856 + ], + [ + -112.231504, + 49.32174 + ], + [ + -112.22954, + 49.319363 + ], + [ + -112.227247, + 49.316403 + ], + [ + -112.224225, + 49.312727 + ], + [ + -112.22224, + 49.310555 + ], + [ + -112.216986, + 49.304836 + ], + [ + -112.215307, + 49.3031 + ], + [ + -112.213887, + 49.301877 + ], + [ + -112.213028, + 49.301145 + ], + [ + -112.204369, + 49.294474 + ], + [ + -112.201434, + 49.291851 + ], + [ + -112.200807, + 49.291228 + ], + [ + -112.200423, + 49.290767 + ], + [ + -112.200161, + 49.290419 + ], + [ + -112.199859, + 49.289985 + ], + [ + -112.199566, + 49.2895 + ], + [ + -112.199306, + 49.289012 + ], + [ + -112.199053, + 49.288493 + ], + [ + -112.198839, + 49.287999 + ], + [ + -112.198721, + 49.287648 + ], + [ + -112.198561, + 49.28716 + ], + [ + -112.198436, + 49.286692 + ], + [ + -112.198364, + 49.286224 + ], + [ + -112.198303, + 49.285775 + ], + [ + -112.198271, + 49.285347 + ], + [ + -112.198256, + 49.282987 + ], + [ + -112.198269, + 49.279832 + ], + [ + -112.197949, + 49.277457 + ], + [ + -112.196565, + 49.273803 + ], + [ + -112.189342, + 49.264663 + ], + [ + -112.187679, + 49.262625 + ], + [ + -112.187029, + 49.261975 + ], + [ + -112.185766, + 49.260758 + ], + [ + -112.185003, + 49.259994 + ], + [ + -112.184046, + 49.259256 + ], + [ + -112.182999, + 49.258515 + ], + [ + -112.181937, + 49.257797 + ], + [ + -112.180185, + 49.2566 + ], + [ + -112.179314, + 49.25606 + ], + [ + -112.178353, + 49.255415 + ], + [ + -112.177525, + 49.254853 + ], + [ + -112.176769, + 49.254313 + ], + [ + -112.176125, + 49.253788 + ], + [ + -112.174746, + 49.252496 + ], + [ + -112.173897, + 49.251682 + ], + [ + -112.173107, + 49.250905 + ], + [ + -112.153316, + 49.231556 + ], + [ + -112.145266, + 49.223554 + ], + [ + -112.137196, + 49.215571 + ], + [ + -112.13617, + 49.214714 + ], + [ + -112.134956, + 49.213742 + ], + [ + -112.134168, + 49.213187 + ], + [ + -112.132859, + 49.212334 + ], + [ + -112.13166, + 49.211607 + ], + [ + -112.12957, + 49.210494 + ], + [ + -112.126976, + 49.209298 + ], + [ + -112.123065, + 49.207555 + ], + [ + -112.121541, + 49.206848 + ], + [ + -112.120052, + 49.206151 + ], + [ + -112.118948, + 49.205619 + ], + [ + -112.117869, + 49.205062 + ], + [ + -112.11706, + 49.204623 + ], + [ + -112.115236, + 49.203546 + ], + [ + -112.112919, + 49.201989 + ], + [ + -112.111625, + 49.201012 + ], + [ + -112.109029, + 49.198836 + ], + [ + -112.106118, + 49.195686 + ], + [ + -112.105716, + 49.195156 + ], + [ + -112.10511, + 49.194341 + ], + [ + -112.102212, + 49.189769 + ], + [ + -112.099016, + 49.184803 + ], + [ + -112.097293, + 49.182034 + ], + [ + -112.09607, + 49.179971 + ], + [ + -112.093881, + 49.176527 + ], + [ + -112.093098, + 49.175222 + ], + [ + -112.092754, + 49.174577 + ], + [ + -112.092518, + 49.174107 + ], + [ + -112.092368, + 49.173658 + ], + [ + -112.092271, + 49.173279 + ], + [ + -112.092175, + 49.172816 + ], + [ + -112.092083, + 49.172436 + ], + [ + -112.092105, + 49.171924 + ], + [ + -112.092116, + 49.171461 + ], + [ + -112.092153, + 49.170923 + ], + [ + -112.092303, + 49.169933 + ], + [ + -112.092797, + 49.166924 + ], + [ + -112.093183, + 49.164483 + ], + [ + -112.093425, + 49.163015 + ], + [ + -112.094079, + 49.159023 + ], + [ + -112.094508, + 49.156383 + ], + [ + -112.094555, + 49.155953 + ], + [ + -112.094556, + 49.155221 + ], + [ + -112.094514, + 49.154793 + ], + [ + -112.094503, + 49.154492 + ], + [ + -112.094385, + 49.153874 + ], + [ + -112.094213, + 49.153187 + ], + [ + -112.094063, + 49.152773 + ], + [ + -112.093902, + 49.152351 + ], + [ + -112.093602, + 49.151853 + ], + [ + -112.093237, + 49.151257 + ], + [ + -112.092797, + 49.15078 + ], + [ + -112.092443, + 49.150366 + ], + [ + -112.09211, + 49.150043 + ], + [ + -112.09144, + 49.149473 + ], + [ + -112.090329, + 49.148576 + ], + [ + -112.087872, + 49.146674 + ], + [ + -112.085019, + 49.144442 + ], + [ + -112.08445, + 49.144014 + ], + [ + -112.083795, + 49.143488 + ], + [ + -112.083195, + 49.142934 + ], + [ + -112.082218, + 49.142021 + ], + [ + -112.081255, + 49.140863 + ], + [ + -112.080652, + 49.140161 + ], + [ + -112.079815, + 49.139052 + ], + [ + -112.079375, + 49.138315 + ], + [ + -112.078935, + 49.137592 + ], + [ + -112.078367, + 49.136469 + ], + [ + -112.077562, + 49.134475 + ], + [ + -112.07679, + 49.132524 + ], + [ + -112.076328, + 49.131429 + ], + [ + -112.07591, + 49.130565 + ], + [ + -112.075325, + 49.129377 + ], + [ + -112.074891, + 49.128684 + ], + [ + -112.074472, + 49.128059 + ], + [ + -112.073582, + 49.12674 + ], + [ + -112.072631, + 49.125499 + ], + [ + -112.071973, + 49.124711 + ], + [ + -112.071054, + 49.123645 + ], + [ + -112.069784, + 49.122387 + ], + [ + -112.068512, + 49.121237 + ], + [ + -112.066629, + 49.119662 + ], + [ + -112.062677, + 49.116351 + ], + [ + -112.055397, + 49.110231 + ], + [ + -112.054528, + 49.109557 + ], + [ + -112.053423, + 49.108763 + ], + [ + -112.052461, + 49.108147 + ], + [ + -112.045612, + 49.103924 + ], + [ + -112.04278, + 49.102161 + ], + [ + -112.042125, + 49.101683 + ], + [ + -112.041514, + 49.101163 + ], + [ + -112.040923, + 49.100503 + ], + [ + -112.040258, + 49.099716 + ], + [ + -112.039046, + 49.09777 + ], + [ + -112.036761, + 49.094883 + ], + [ + -112.034383, + 49.091688 + ], + [ + -112.032973, + 49.089733 + ], + [ + -112.032072, + 49.088525 + ], + [ + -112.031257, + 49.087397 + ], + [ + -112.027952, + 49.082826 + ], + [ + -112.025918, + 49.080115 + ], + [ + -112.023929, + 49.077471 + ], + [ + -112.021412, + 49.07398 + ], + [ + -112.01924, + 49.070443 + ], + [ + -112.016505, + 49.066092 + ], + [ + -112.014616, + 49.062914 + ], + [ + -112.010898, + 49.056849 + ], + [ + -112.010336, + 49.056053 + ], + [ + -112.009981, + 49.05549 + ], + [ + -112.009595, + 49.055054 + ], + [ + -112.008383, + 49.053913 + ], + [ + -112.004081, + 49.049886 + ], + [ + -112.003484, + 49.049323 + ], + [ + -112.002241, + 49.048061 + ], + [ + -112.000186, + 49.046131 + ], + [ + -111.998352, + 49.044419 + ], + [ + -111.997649, + 49.043715 + ], + [ + -111.997014, + 49.042914 + ], + [ + -111.996531, + 49.042236 + ], + [ + -111.996215, + 49.041782 + ], + [ + -111.995927, + 49.041307 + ], + [ + -111.995594, + 49.040698 + ], + [ + -111.995321, + 49.040118 + ], + [ + -111.994693, + 49.038673 + ], + [ + -111.994001, + 49.037108 + ], + [ + -111.992996, + 49.034801 + ], + [ + -111.992369, + 49.033409 + ], + [ + -111.99149, + 49.031403 + ], + [ + -111.99082, + 49.029866 + ], + [ + -111.990004, + 49.02802 + ], + [ + -111.98936, + 49.026568 + ], + [ + -111.988769, + 49.025185 + ], + [ + -111.988218, + 49.023936 + ], + [ + -111.987589, + 49.022536 + ], + [ + -111.987371, + 49.021885 + ], + [ + -111.987235, + 49.021333 + ], + [ + -111.987097, + 49.020858 + ], + [ + -111.986995, + 49.020386 + ], + [ + -111.98692, + 49.019658 + ], + [ + -111.986872, + 49.018979 + ], + [ + -111.986866, + 49.017199 + ], + [ + -111.986872, + 49.015542 + ], + [ + -111.98686, + 49.013841 + ], + [ + -111.986847, + 49.01231 + ], + [ + -111.98685, + 49.011137 + ], + [ + -111.986861, + 49.010352 + ], + [ + -111.986797, + 49.009758 + ], + [ + -111.986645, + 49.009206 + ], + [ + -111.986377, + 49.008696 + ], + [ + -111.986147, + 49.008354 + ], + [ + -111.985836, + 49.007998 + ], + [ + -111.985337, + 49.007558 + ], + [ + -111.984989, + 49.007266 + ], + [ + -111.984301, + 49.006795 + ], + [ + -111.983474, + 49.00638 + ], + [ + -111.982516, + 49.005993 + ], + [ + -111.981765, + 49.005715 + ], + [ + -111.980942, + 49.005514 + ], + [ + -111.980129, + 49.005334 + ], + [ + -111.979328, + 49.005194 + ], + [ + -111.978062, + 49.005092 + ], + [ + -111.976985, + 49.005074 + ], + [ + -111.974918, + 49.005173 + ], + [ + -111.973139, + 49.005292 + ], + [ + -111.97154, + 49.00538 + ], + [ + -111.969019, + 49.005514 + ], + [ + -111.967562, + 49.005617 + ], + [ + -111.966045, + 49.005705 + ], + [ + -111.96469, + 49.005725 + ], + [ + -111.963991, + 49.005648 + ], + [ + -111.96346, + 49.005567 + ], + [ + -111.96295, + 49.005448 + ], + [ + -111.962485, + 49.005296 + ], + [ + -111.962163, + 49.005187 + ], + [ + -111.961761, + 49.005004 + ], + [ + -111.961293, + 49.004765 + ], + [ + -111.960951, + 49.004554 + ], + [ + -111.960789, + 49.004426 + ], + [ + -111.960561, + 49.004236 + ], + [ + -111.960215, + 49.003866 + ], + [ + -111.959973, + 49.003571 + ], + [ + -111.959774, + 49.003265 + ], + [ + -111.959681, + 49.003043 + ], + [ + -111.959581, + 49.002794 + ], + [ + -111.95951, + 49.002452 + ], + [ + -111.959584, + 49.002087 + ], + [ + -111.959768, + 49.001731 + ], + [ + -111.96008, + 49.00139 + ], + [ + -111.960323, + 49.001097 + ], + [ + -111.960993, + 49.000276 + ], + [ + -111.961147, + 48.999913 + ], + [ + -111.961177, + 48.999675 + ], + [ + -111.961154, + 48.999405 + ], + [ + -111.96075, + 48.998378 + ], + [ + -111.960537, + 48.997835 + ], + [ + -111.960261, + 48.997296 + ], + [ + -111.959961, + 48.996969 + ], + [ + -111.959772, + 48.996485 + ], + [ + -111.959789, + 48.99582 + ], + [ + -111.959918, + 48.995443 + ], + [ + -111.960048, + 48.994907 + ], + [ + -111.960094, + 48.994603 + ], + [ + -111.960084, + 48.994414 + ], + [ + -111.960109, + 48.993824 + ], + [ + -111.959994, + 48.990856 + ], + [ + -111.95827, + 48.98094 + ], + [ + -111.958253, + 48.980705 + ], + [ + -111.958185, + 48.980405 + ], + [ + -111.958073, + 48.980015 + ], + [ + -111.957973, + 48.979662 + ], + [ + -111.957788, + 48.979177 + ], + [ + -111.957579, + 48.978688 + ], + [ + -111.957393, + 48.978342 + ], + [ + -111.957182, + 48.977986 + ], + [ + -111.956929, + 48.977617 + ], + [ + -111.956287, + 48.976872 + ], + [ + -111.955429, + 48.975932 + ], + [ + -111.940434, + 48.960617 + ], + [ + -111.939756, + 48.959862 + ], + [ + -111.939258, + 48.959163 + ], + [ + -111.938864, + 48.958475 + ], + [ + -111.938589, + 48.957934 + ], + [ + -111.935242, + 48.950139 + ], + [ + -111.933705, + 48.946469 + ], + [ + -111.930948, + 48.939956 + ], + [ + -111.927211, + 48.931012 + ], + [ + -111.924522, + 48.924688 + ], + [ + -111.916608, + 48.906188 + ], + [ + -111.9112, + 48.893335 + ], + [ + -111.910969, + 48.892844 + ], + [ + -111.910694, + 48.892325 + ], + [ + -111.910265, + 48.891676 + ], + [ + -111.909921, + 48.891247 + ], + [ + -111.909492, + 48.890711 + ], + [ + -111.909046, + 48.890237 + ], + [ + -111.908119, + 48.889328 + ], + [ + -111.907385, + 48.88863 + ], + [ + -111.906844, + 48.888116 + ], + [ + -111.903694, + 48.88508 + ], + [ + -111.903291, + 48.88469 + ], + [ + -111.901737, + 48.883161 + ], + [ + -111.878176, + 48.860393 + ], + [ + -111.867242, + 48.849753 + ], + [ + -111.866486, + 48.849013 + ], + [ + -111.865877, + 48.848301 + ], + [ + -111.86531, + 48.847533 + ], + [ + -111.864675, + 48.846613 + ], + [ + -111.86392, + 48.845195 + ], + [ + -111.863594, + 48.84437 + ], + [ + -111.863233, + 48.843167 + ], + [ + -111.863139, + 48.842738 + ], + [ + -111.863019, + 48.842026 + ], + [ + -111.86295, + 48.841071 + ], + [ + -111.862942, + 48.830326 + ], + [ + -111.862942, + 48.823285 + ], + [ + -111.86289, + 48.769261 + ], + [ + -111.862864, + 48.764515 + ], + [ + -111.862813, + 48.763474 + ], + [ + -111.862718, + 48.761743 + ], + [ + -111.861611, + 48.743809 + ], + [ + -111.861439, + 48.740289 + ], + [ + -111.861439, + 48.739949 + ], + [ + -111.861594, + 48.737176 + ], + [ + -111.862178, + 48.726719 + ], + [ + -111.862229, + 48.723792 + ], + [ + -111.862083, + 48.656639 + ], + [ + -111.8621, + 48.64979 + ], + [ + -111.861997, + 48.598701 + ], + [ + -111.86198, + 48.592185 + ], + [ + -111.86198, + 48.57272 + ], + [ + -111.861912, + 48.57163 + ], + [ + -111.861817, + 48.570494 + ], + [ + -111.861697, + 48.569205 + ], + [ + -111.860581, + 48.557657 + ], + [ + -111.860077, + 48.552231 + ], + [ + -111.859663, + 48.54801 + ], + [ + -111.859594, + 48.546805 + ], + [ + -111.859611, + 48.545322 + ], + [ + -111.859792, + 48.535383 + ], + [ + -111.8598, + 48.533888 + ], + [ + -111.859886, + 48.533121 + ], + [ + -111.860015, + 48.532581 + ], + [ + -111.860246, + 48.531939 + ], + [ + -111.860598, + 48.531387 + ], + [ + -111.860942, + 48.530899 + ], + [ + -111.861688, + 48.530109 + ], + [ + -111.866109, + 48.525755 + ], + [ + -111.875953, + 48.516192 + ], + [ + -111.876929, + 48.515247 + ], + [ + -111.877241, + 48.514954 + ], + [ + -111.879228, + 48.513021 + ], + [ + -111.879759, + 48.512467 + ], + [ + -111.88006, + 48.512124 + ], + [ + -111.880267, + 48.511881 + ], + [ + -111.88042, + 48.511679 + ], + [ + -111.880571, + 48.511473 + ], + [ + -111.88094, + 48.510956 + ], + [ + -111.881292, + 48.510376 + ], + [ + -111.881653, + 48.509733 + ], + [ + -111.881996, + 48.50904 + ], + [ + -111.882305, + 48.508346 + ], + [ + -111.882562, + 48.507572 + ], + [ + -111.882777, + 48.506828 + ], + [ + -111.882931, + 48.506134 + ], + [ + -111.883026, + 48.505588 + ], + [ + -111.883441, + 48.502992 + ], + [ + -111.883604, + 48.499975 + ], + [ + -111.883614, + 48.499767 + ], + [ + -111.883635, + 48.496433 + ], + [ + -111.883673, + 48.495815 + ], + [ + -111.883734, + 48.49503 + ], + [ + -111.883798, + 48.494396 + ], + [ + -111.883866, + 48.493802 + ], + [ + -111.883999, + 48.493 + ], + [ + -111.884209, + 48.492103 + ], + [ + -111.884377, + 48.49147 + ], + [ + -111.884557, + 48.490837 + ], + [ + -111.885112, + 48.489088 + ], + [ + -111.885489, + 48.48824 + ], + [ + -111.886605, + 48.485897 + ], + [ + -111.88682, + 48.485299 + ], + [ + -111.887034, + 48.484679 + ], + [ + -111.887197, + 48.484099 + ], + [ + -111.887389, + 48.483433 + ], + [ + -111.88747, + 48.482928 + ], + [ + -111.887522, + 48.482349 + ], + [ + -111.887575, + 48.481425 + ], + [ + -111.887554, + 48.480643 + ], + [ + -111.887506, + 48.480113 + ], + [ + -111.887418, + 48.479516 + ], + [ + -111.887265, + 48.478742 + ], + [ + -111.887056, + 48.477974 + ], + [ + -111.886845, + 48.47746 + ], + [ + -111.886472, + 48.476607 + ], + [ + -111.885635, + 48.474831 + ], + [ + -111.885441, + 48.474274 + ], + [ + -111.885165, + 48.473591 + ], + [ + -111.884897, + 48.472862 + ], + [ + -111.884674, + 48.47215 + ], + [ + -111.884502, + 48.471564 + ], + [ + -111.884279, + 48.470409 + ], + [ + -111.884082, + 48.46926 + ], + [ + -111.883953, + 48.468281 + ], + [ + -111.883906, + 48.467423 + ], + [ + -111.883878, + 48.46663 + ], + [ + -111.883976, + 48.454446 + ], + [ + -111.884028, + 48.447094 + ], + [ + -111.884036, + 48.443164 + ], + [ + -111.884023, + 48.441546 + ], + [ + -111.884017, + 48.440681 + ], + [ + -111.884026, + 48.43968 + ], + [ + -111.884018, + 48.438945 + ], + [ + -111.88402, + 48.438457 + ], + [ + -111.884058, + 48.438059 + ], + [ + -111.884092, + 48.43776 + ], + [ + -111.884134, + 48.437455 + ], + [ + -111.884195, + 48.437091 + ], + [ + -111.884275, + 48.436739 + ], + [ + -111.884339, + 48.436455 + ], + [ + -111.884422, + 48.436153 + ], + [ + -111.884528, + 48.435768 + ], + [ + -111.884674, + 48.435354 + ], + [ + -111.884745, + 48.435206 + ], + [ + -111.884871, + 48.43486 + ], + [ + -111.885003, + 48.434574 + ], + [ + -111.885207, + 48.434157 + ], + [ + -111.885417, + 48.433746 + ], + [ + -111.885596, + 48.433441 + ], + [ + -111.88582, + 48.433061 + ], + [ + -111.886029, + 48.43273 + ], + [ + -111.886203, + 48.432492 + ], + [ + -111.886412, + 48.432197 + ], + [ + -111.886586, + 48.431954 + ], + [ + -111.886816, + 48.431663 + ], + [ + -111.887079, + 48.431357 + ], + [ + -111.887401, + 48.430981 + ], + [ + -111.887774, + 48.430593 + ], + [ + -111.888127, + 48.430257 + ], + [ + -111.888437, + 48.429955 + ], + [ + -111.889099, + 48.429374 + ], + [ + -111.889756, + 48.428824 + ], + [ + -111.890912, + 48.427857 + ], + [ + -111.892165, + 48.426838 + ], + [ + -111.905659, + 48.415636 + ], + [ + -111.90626, + 48.415157 + ], + [ + -111.906861, + 48.41457 + ], + [ + -111.907333, + 48.414081 + ], + [ + -111.907814, + 48.413528 + ], + [ + -111.908406, + 48.412776 + ], + [ + -111.909015, + 48.411824 + ], + [ + -111.909633, + 48.410907 + ], + [ + -111.920752, + 48.392582 + ], + [ + -111.927417, + 48.381543 + ], + [ + -111.93346, + 48.371538 + ], + [ + -111.933846, + 48.37086 + ], + [ + -111.934235, + 48.370068 + ], + [ + -111.934546, + 48.369396 + ], + [ + -111.934939, + 48.368399 + ], + [ + -111.935227, + 48.367613 + ], + [ + -111.935586, + 48.366493 + ], + [ + -111.935831, + 48.365544 + ], + [ + -111.936026, + 48.364601 + ], + [ + -111.936138, + 48.363831 + ], + [ + -111.936258, + 48.362885 + ], + [ + -111.936438, + 48.360792 + ], + [ + -111.936415, + 48.329088 + ], + [ + -111.936407, + 48.310354 + ], + [ + -111.936413, + 48.303031 + ], + [ + -111.936412, + 48.300795 + ], + [ + -111.936402, + 48.300483 + ], + [ + -111.936381, + 48.271331 + ], + [ + -111.936384, + 48.26711 + ], + [ + -111.936382, + 48.259592 + ], + [ + -111.936296, + 48.241832 + ], + [ + -111.936359, + 48.224045 + ], + [ + -111.936352, + 48.223792 + ], + [ + -111.936325, + 48.223208 + ], + [ + -111.936251, + 48.222646 + ], + [ + -111.936138, + 48.222131 + ], + [ + -111.936009, + 48.221594 + ], + [ + -111.935863, + 48.221148 + ], + [ + -111.935674, + 48.220724 + ], + [ + -111.935554, + 48.220438 + ], + [ + -111.935323, + 48.219975 + ], + [ + -111.934809, + 48.219106 + ], + [ + -111.93372, + 48.217503 + ], + [ + -111.933233, + 48.216812 + ], + [ + -111.932738, + 48.21609 + ], + [ + -111.932429, + 48.215627 + ], + [ + -111.931294, + 48.214006 + ], + [ + -111.927397, + 48.208419 + ], + [ + -111.925603, + 48.205843 + ], + [ + -111.925208, + 48.205217 + ], + [ + -111.92491, + 48.204712 + ], + [ + -111.924771, + 48.204436 + ], + [ + -111.924661, + 48.204188 + ], + [ + -111.924567, + 48.203923 + ], + [ + -111.924475, + 48.203592 + ], + [ + -111.924434, + 48.203298 + ], + [ + -111.924418, + 48.202753 + ], + [ + -111.924413, + 48.20226 + ], + [ + -111.924452, + 48.201981 + ], + [ + -111.924528, + 48.20166 + ], + [ + -111.924607, + 48.201399 + ], + [ + -111.924686, + 48.201185 + ], + [ + -111.924808, + 48.200887 + ], + [ + -111.92494, + 48.200634 + ], + [ + -111.925143, + 48.200322 + ], + [ + -111.925478, + 48.199721 + ], + [ + -111.929307, + 48.193399 + ], + [ + -111.931749, + 48.18936 + ], + [ + -111.932143, + 48.188696 + ], + [ + -111.932455, + 48.188174 + ], + [ + -111.933068, + 48.187161 + ], + [ + -111.933601, + 48.186274 + ], + [ + -111.933896, + 48.185797 + ], + [ + -111.934176, + 48.185351 + ], + [ + -111.934674, + 48.184441 + ], + [ + -111.934869, + 48.184038 + ], + [ + -111.935015, + 48.183702 + ], + [ + -111.935133, + 48.183407 + ], + [ + -111.935235, + 48.183131 + ], + [ + -111.935317, + 48.182855 + ], + [ + -111.935435, + 48.182454 + ], + [ + -111.935517, + 48.18214 + ], + [ + -111.935563, + 48.181903 + ], + [ + -111.935605, + 48.181629 + ], + [ + -111.935654, + 48.181347 + ], + [ + -111.935672, + 48.181134 + ], + [ + -111.935695, + 48.180837 + ], + [ + -111.93571, + 48.180431 + ], + [ + -111.935711, + 48.179913 + ], + [ + -111.935689, + 48.179699 + ], + [ + -111.935666, + 48.179392 + ], + [ + -111.935641, + 48.179193 + ], + [ + -111.935605, + 48.178954 + ], + [ + -111.935551, + 48.17862 + ], + [ + -111.935494, + 48.178341 + ], + [ + -111.935425, + 48.178065 + ], + [ + -111.935362, + 48.177851 + ], + [ + -111.935271, + 48.177512 + ], + [ + -111.935083, + 48.177015 + ], + [ + -111.93498, + 48.176751 + ], + [ + -111.934859, + 48.176484 + ], + [ + -111.934688, + 48.176141 + ], + [ + -111.934489, + 48.175789 + ], + [ + -111.934239, + 48.175377 + ], + [ + -111.933859, + 48.174812 + ], + [ + -111.933189, + 48.173765 + ], + [ + -111.928027, + 48.165762 + ], + [ + -111.927735, + 48.165321 + ], + [ + -111.92603, + 48.162726 + ], + [ + -111.925093, + 48.161247 + ], + [ + -111.924008, + 48.159611 + ], + [ + -111.922175, + 48.156783 + ], + [ + -111.920615, + 48.154387 + ], + [ + -111.919007, + 48.151911 + ], + [ + -111.91822, + 48.150663 + ], + [ + -111.916601, + 48.148144 + ], + [ + -111.915551, + 48.146568 + ], + [ + -111.914312, + 48.144665 + ], + [ + -111.913624, + 48.143606 + ], + [ + -111.912311, + 48.141567 + ], + [ + -111.911974, + 48.141065 + ], + [ + -111.911504, + 48.140381 + ], + [ + -111.910989, + 48.139656 + ], + [ + -111.91031, + 48.138734 + ], + [ + -111.909273, + 48.1374 + ], + [ + -111.907928, + 48.135653 + ], + [ + -111.906666, + 48.13405 + ], + [ + -111.905997, + 48.133172 + ], + [ + -111.904722, + 48.131516 + ], + [ + -111.901655, + 48.127581 + ], + [ + -111.900048, + 48.125516 + ], + [ + -111.898729, + 48.123822 + ], + [ + -111.894029, + 48.117798 + ], + [ + -111.893315, + 48.116857 + ], + [ + -111.892001, + 48.115177 + ], + [ + -111.889638, + 48.112132 + ], + [ + -111.887413, + 48.109275 + ], + [ + -111.884717, + 48.105808 + ], + [ + -111.876044, + 48.094626 + ], + [ + -111.87031, + 48.087229 + ], + [ + -111.862959, + 48.077764 + ], + [ + -111.861332, + 48.075665 + ], + [ + -111.858755, + 48.072362 + ], + [ + -111.857125, + 48.070241 + ], + [ + -111.854834, + 48.06729 + ], + [ + -111.850948, + 48.062304 + ], + [ + -111.85011, + 48.061229 + ], + [ + -111.849084, + 48.059917 + ], + [ + -111.845348, + 48.055071 + ], + [ + -111.836461, + 48.043589 + ], + [ + -111.832454, + 48.038401 + ], + [ + -111.828116, + 48.032803 + ], + [ + -111.825147, + 48.028974 + ], + [ + -111.816587, + 48.017942 + ], + [ + -111.816087, + 48.017289 + ], + [ + -111.815305, + 48.016376 + ], + [ + -111.814473, + 48.015423 + ], + [ + -111.813623, + 48.014499 + ], + [ + -111.812937, + 48.013816 + ], + [ + -111.811984, + 48.012851 + ], + [ + -111.810868, + 48.011863 + ], + [ + -111.809752, + 48.010882 + ], + [ + -111.808825, + 48.010101 + ], + [ + -111.807598, + 48.009153 + ], + [ + -111.806388, + 48.008229 + ], + [ + -111.805238, + 48.007408 + ], + [ + -111.784158, + 47.992286 + ], + [ + -111.782561, + 47.991143 + ], + [ + -111.767146, + 47.980084 + ], + [ + -111.766219, + 47.979354 + ], + [ + -111.765283, + 47.978504 + ], + [ + -111.764288, + 47.977544 + ], + [ + -111.763404, + 47.976585 + ], + [ + -111.762691, + 47.975723 + ], + [ + -111.762193, + 47.97501 + ], + [ + -111.761653, + 47.974154 + ], + [ + -111.761121, + 47.973252 + ], + [ + -111.753336, + 47.959718 + ], + [ + -111.749036, + 47.952205 + ], + [ + -111.736505, + 47.930384 + ], + [ + -111.736106, + 47.92965 + ], + [ + -111.735644, + 47.928853 + ], + [ + -111.735343, + 47.928305 + ], + [ + -111.733592, + 47.925244 + ], + [ + -111.733306, + 47.924769 + ], + [ + -111.732599, + 47.923554 + ], + [ + -111.732395, + 47.923205 + ], + [ + -111.731718, + 47.922093 + ], + [ + -111.731538, + 47.921738 + ], + [ + -111.73117, + 47.921043 + ], + [ + -111.726112, + 47.912262 + ], + [ + -111.71442, + 47.89173 + ], + [ + -111.713776, + 47.890608 + ], + [ + -111.713253, + 47.889578 + ], + [ + -111.712927, + 47.888864 + ], + [ + -111.71254, + 47.888058 + ], + [ + -111.712146, + 47.88689 + ], + [ + -111.711811, + 47.885744 + ], + [ + -111.711519, + 47.884564 + ], + [ + -111.711253, + 47.883125 + ], + [ + -111.711124, + 47.881922 + ], + [ + -111.71103, + 47.880834 + ], + [ + -111.71103, + 47.879792 + ], + [ + -111.711129, + 47.869762 + ], + [ + -111.711004, + 47.867783 + ], + [ + -111.710901, + 47.866758 + ], + [ + -111.710781, + 47.865716 + ], + [ + -111.710618, + 47.864547 + ], + [ + -111.710438, + 47.863447 + ], + [ + -111.710283, + 47.862537 + ], + [ + -111.709991, + 47.861213 + ], + [ + -111.709756, + 47.860259 + ], + [ + -111.709335, + 47.858847 + ], + [ + -111.708841, + 47.857285 + ], + [ + -111.70727, + 47.852822 + ], + [ + -111.706867, + 47.851704 + ], + [ + -111.706498, + 47.850875 + ], + [ + -111.706077, + 47.850017 + ], + [ + -111.705434, + 47.848819 + ], + [ + -111.705305, + 47.848582 + ], + [ + -111.704816, + 47.847747 + ], + [ + -111.704215, + 47.846849 + ], + [ + -111.703623, + 47.846054 + ], + [ + -111.702678, + 47.844833 + ], + [ + -111.701983, + 47.843986 + ], + [ + -111.700902, + 47.842828 + ], + [ + -111.699923, + 47.841889 + ], + [ + -111.698979, + 47.841013 + ], + [ + -111.698052, + 47.84023 + ], + [ + -111.696893, + 47.839291 + ], + [ + -111.668363, + 47.817267 + ], + [ + -111.667479, + 47.816472 + ], + [ + -111.667042, + 47.815942 + ], + [ + -111.666647, + 47.815434 + ], + [ + -111.666226, + 47.81476 + ], + [ + -111.665943, + 47.814143 + ], + [ + -111.66578, + 47.813619 + ], + [ + -111.665625, + 47.812887 + ], + [ + -111.6656, + 47.812391 + ], + [ + -111.665591, + 47.811797 + ], + [ + -111.666429, + 47.79584 + ], + [ + -111.666535, + 47.793822 + ], + [ + -111.666492, + 47.791308 + ], + [ + -111.666439, + 47.750802 + ], + [ + -111.666442, + 47.741317 + ], + [ + -111.666445, + 47.740989 + ], + [ + -111.666406, + 47.723306 + ], + [ + -111.666381, + 47.72244 + ], + [ + -111.666295, + 47.721684 + ], + [ + -111.666158, + 47.720881 + ], + [ + -111.665986, + 47.72024 + ], + [ + -111.665746, + 47.719547 + ], + [ + -111.665419, + 47.71871 + ], + [ + -111.665042, + 47.717925 + ], + [ + -111.664647, + 47.717243 + ], + [ + -111.664132, + 47.716493 + ], + [ + -111.663789, + 47.716008 + ], + [ + -111.663359, + 47.715528 + ], + [ + -111.662432, + 47.714581 + ], + [ + -111.658081, + 47.710071 + ], + [ + -111.647285, + 47.699031 + ], + [ + -111.646085, + 47.697836 + ], + [ + -111.632275, + 47.683698 + ], + [ + -111.631949, + 47.683351 + ], + [ + -111.606663, + 47.657441 + ], + [ + -111.60117, + 47.651798 + ], + [ + -111.590415, + 47.64073 + ], + [ + -111.589918, + 47.640187 + ], + [ + -111.589463, + 47.639655 + ], + [ + -111.589068, + 47.639157 + ], + [ + -111.588707, + 47.638689 + ], + [ + -111.588287, + 47.638139 + ], + [ + -111.587849, + 47.637538 + ], + [ + -111.587549, + 47.637104 + ], + [ + -111.587231, + 47.636624 + ], + [ + -111.58627, + 47.63501 + ], + [ + -111.585369, + 47.633136 + ], + [ + -111.570511, + 47.6019 + ], + [ + -111.569945, + 47.600818 + ], + [ + -111.56955, + 47.600169 + ], + [ + -111.569224, + 47.599643 + ], + [ + -111.568846, + 47.599047 + ], + [ + -111.568546, + 47.598607 + ], + [ + -111.568168, + 47.598051 + ], + [ + -111.567747, + 47.597472 + ], + [ + -111.567335, + 47.596928 + ], + [ + -111.566915, + 47.59643 + ], + [ + -111.566537, + 47.595991 + ], + [ + -111.552899, + 47.581183 + ], + [ + -111.552633, + 47.580911 + ], + [ + -111.537629, + 47.564691 + ], + [ + -111.536514, + 47.563515 + ], + [ + -111.535904, + 47.562901 + ], + [ + -111.535175, + 47.56227 + ], + [ + -111.534437, + 47.561691 + ], + [ + -111.533656, + 47.561129 + ], + [ + -111.532711, + 47.560504 + ], + [ + -111.531647, + 47.559884 + ], + [ + -111.53048, + 47.559311 + ], + [ + -111.529184, + 47.558737 + ], + [ + -111.528008, + 47.558285 + ], + [ + -111.526806, + 47.557897 + ], + [ + -111.525424, + 47.557503 + ], + [ + -111.524008, + 47.557162 + ], + [ + -111.522824, + 47.556953 + ], + [ + -111.521734, + 47.556779 + ], + [ + -111.509679, + 47.554952 + ], + [ + -111.484251, + 47.551039 + ], + [ + -111.477299, + 47.54995 + ], + [ + -111.455614, + 47.546631 + ], + [ + -111.452477, + 47.546143 + ], + [ + -111.452005, + 47.546074 + ], + [ + -111.448496, + 47.545531 + ], + [ + -111.445301, + 47.545037 + ], + [ + -111.443894, + 47.544799 + ], + [ + -111.442357, + 47.544492 + ], + [ + -111.440907, + 47.544162 + ], + [ + -111.439173, + 47.543716 + ], + [ + -111.437894, + 47.543368 + ], + [ + -111.436512, + 47.542957 + ], + [ + -111.435045, + 47.54247 + ], + [ + -111.385349, + 47.526175 + ], + [ + -111.384241, + 47.525793 + ], + [ + -111.383478, + 47.52541 + ], + [ + -111.382928, + 47.525097 + ], + [ + -111.382499, + 47.524784 + ], + [ + -111.382036, + 47.524384 + ], + [ + -111.381709, + 47.524025 + ], + [ + -111.381452, + 47.523741 + ], + [ + -111.380053, + 47.521909 + ], + [ + -111.379298, + 47.520959 + ], + [ + -111.379152, + 47.520779 + ], + [ + -111.378714, + 47.520286 + ], + [ + -111.378268, + 47.519857 + ], + [ + -111.377555, + 47.519394 + ], + [ + -111.376774, + 47.518994 + ], + [ + -111.376096, + 47.518733 + ], + [ + -111.375409, + 47.51853 + ], + [ + -111.374294, + 47.518234 + ], + [ + -111.351059, + 47.512362 + ], + [ + -111.350081, + 47.512055 + ], + [ + -111.348914, + 47.511632 + ], + [ + -111.348184, + 47.511255 + ], + [ + -111.347446, + 47.510878 + ], + [ + -111.346914, + 47.510553 + ], + [ + -111.346356, + 47.510147 + ], + [ + -111.345832, + 47.509759 + ], + [ + -111.345309, + 47.509295 + ], + [ + -111.344914, + 47.508884 + ], + [ + -111.344605, + 47.508542 + ], + [ + -111.344193, + 47.50802 + ], + [ + -111.34391, + 47.507591 + ], + [ + -111.343618, + 47.507133 + ], + [ + -111.343352, + 47.506535 + ], + [ + -111.343137, + 47.505921 + ], + [ + -111.343, + 47.505254 + ], + [ + -111.342914, + 47.504779 + ], + [ + -111.342871, + 47.504205 + ], + [ + -111.342884, + 47.503714 + ], + [ + -111.343017, + 47.501337 + ], + [ + -111.343037, + 47.500922 + ], + [ + -111.343074, + 47.500247 + ], + [ + -111.343153, + 47.498866 + ], + [ + -111.343699, + 47.489338 + ], + [ + -111.343837, + 47.488347 + ], + [ + -111.344051, + 47.487517 + ], + [ + -111.344326, + 47.486746 + ], + [ + -111.344695, + 47.485795 + ], + [ + -111.345184, + 47.484855 + ], + [ + -111.345493, + 47.484356 + ], + [ + -111.346068, + 47.483527 + ], + [ + -111.34715, + 47.48221 + ], + [ + -111.347948, + 47.481392 + ], + [ + -111.348765, + 47.480715 + ], + [ + -111.349751, + 47.479978 + ], + [ + -111.350866, + 47.47913 + ], + [ + -111.356582, + 47.475347 + ], + [ + -111.365214, + 47.469592 + ], + [ + -111.367419, + 47.46813 + ], + [ + -111.367934, + 47.467829 + ], + [ + -111.368578, + 47.467492 + ], + [ + -111.36923, + 47.467144 + ], + [ + -111.369994, + 47.466807 + ], + [ + -111.370973, + 47.466407 + ], + [ + -111.371926, + 47.466042 + ], + [ + -111.372818, + 47.465746 + ], + [ + -111.373522, + 47.465525 + ], + [ + -111.374509, + 47.465258 + ], + [ + -111.429286, + 47.452445 + ], + [ + -111.429621, + 47.452364 + ], + [ + -111.473508, + 47.442064 + ], + [ + -111.50183, + 47.435384 + ], + [ + -111.502749, + 47.435175 + ], + [ + -111.503701, + 47.434961 + ], + [ + -111.504362, + 47.434792 + ], + [ + -111.505221, + 47.434543 + ], + [ + -111.506045, + 47.434299 + ], + [ + -111.506663, + 47.434095 + ], + [ + -111.507143, + 47.433927 + ], + [ + -111.507907, + 47.433648 + ], + [ + -111.508654, + 47.433312 + ], + [ + -111.509255, + 47.433045 + ], + [ + -111.509933, + 47.432725 + ], + [ + -111.510534, + 47.432412 + ], + [ + -111.51122, + 47.432029 + ], + [ + -111.51183, + 47.431674 + ], + [ + -111.512954, + 47.430931 + ], + [ + -111.513546, + 47.43049 + ], + [ + -111.524011, + 47.422011 + ], + [ + -111.569141, + 47.385345 + ], + [ + -111.6142, + 47.348685 + ], + [ + -111.614466, + 47.34847 + ], + [ + -111.634341, + 47.332266 + ], + [ + -111.69101, + 47.285965 + ], + [ + -111.692683, + 47.284596 + ], + [ + -111.694151, + 47.283461 + ], + [ + -111.694838, + 47.282943 + ], + [ + -111.696432, + 47.281863 + ], + [ + -111.698123, + 47.280815 + ], + [ + -111.699024, + 47.280297 + ], + [ + -111.699436, + 47.280064 + ], + [ + -111.703522, + 47.277671 + ], + [ + -111.704183, + 47.27728 + ], + [ + -111.704689, + 47.276966 + ], + [ + -111.70511, + 47.276686 + ], + [ + -111.705436, + 47.276442 + ], + [ + -111.705788, + 47.276139 + ], + [ + -111.706182, + 47.275766 + ], + [ + -111.706612, + 47.275289 + ], + [ + -111.706989, + 47.274806 + ], + [ + -111.707367, + 47.274264 + ], + [ + -111.707573, + 47.273856 + ], + [ + -111.707813, + 47.273379 + ], + [ + -111.707933, + 47.273047 + ], + [ + -111.708045, + 47.272651 + ], + [ + -111.708122, + 47.272307 + ], + [ + -111.708199, + 47.271911 + ], + [ + -111.708234, + 47.271544 + ], + [ + -111.708234, + 47.271212 + ], + [ + -111.708157, + 47.264538 + ], + [ + -111.708114, + 47.262342 + ], + [ + -111.708122, + 47.261794 + ], + [ + -111.708157, + 47.261369 + ], + [ + -111.708234, + 47.260851 + ], + [ + -111.708268, + 47.260653 + ], + [ + -111.708337, + 47.260257 + ], + [ + -111.708508, + 47.259511 + ], + [ + -111.708637, + 47.258923 + ], + [ + -111.708783, + 47.258241 + ], + [ + -111.70898, + 47.257536 + ], + [ + -111.709152, + 47.256942 + ], + [ + -111.709298, + 47.256383 + ], + [ + -111.710079, + 47.25333 + ], + [ + -111.710328, + 47.252363 + ], + [ + -111.710474, + 47.251833 + ], + [ + -111.710637, + 47.251332 + ], + [ + -111.710834, + 47.250889 + ], + [ + -111.71104, + 47.250545 + ], + [ + -111.711367, + 47.250085 + ], + [ + -111.711658, + 47.249753 + ], + [ + -111.711942, + 47.249444 + ], + [ + -111.712345, + 47.249089 + ], + [ + -111.712766, + 47.248751 + ], + [ + -111.71316, + 47.248494 + ], + [ + -111.713624, + 47.248221 + ], + [ + -111.714147, + 47.247958 + ], + [ + -111.714834, + 47.247655 + ], + [ + -111.729726, + 47.241112 + ], + [ + -111.73291, + 47.239807 + ], + [ + -111.75169, + 47.232534 + ], + [ + -111.754093, + 47.231624 + ], + [ + -111.75635, + 47.230861 + ], + [ + -111.75676, + 47.230739 + ], + [ + -111.765002, + 47.228413 + ], + [ + -111.765835, + 47.228157 + ], + [ + -111.766633, + 47.227877 + ], + [ + -111.767345, + 47.227597 + ], + [ + -111.768092, + 47.227306 + ], + [ + -111.768719, + 47.227026 + ], + [ + -111.769474, + 47.226676 + ], + [ + -111.770058, + 47.226361 + ], + [ + -111.770727, + 47.225988 + ], + [ + -111.771448, + 47.225534 + ], + [ + -111.772118, + 47.225096 + ], + [ + -111.772693, + 47.224688 + ], + [ + -111.773405, + 47.22417 + ], + [ + -111.773714, + 47.223936 + ], + [ + -111.774169, + 47.223575 + ], + [ + -111.774641, + 47.223103 + ], + [ + -111.775104, + 47.222619 + ], + [ + -111.775499, + 47.222211 + ], + [ + -111.775885, + 47.221774 + ], + [ + -111.776306, + 47.221255 + ], + [ + -111.776658, + 47.220777 + ], + [ + -111.77695, + 47.220369 + ], + [ + -111.777422, + 47.219611 + ], + [ + -111.777722, + 47.219057 + ], + [ + -111.778014, + 47.218422 + ], + [ + -111.778289, + 47.217746 + ], + [ + -111.778503, + 47.217104 + ], + [ + -111.778675, + 47.216428 + ], + [ + -111.778881, + 47.215694 + ], + [ + -111.779061, + 47.214988 + ], + [ + -111.780057, + 47.210796 + ], + [ + -111.780203, + 47.210213 + ], + [ + -111.780323, + 47.209758 + ], + [ + -111.780435, + 47.209397 + ], + [ + -111.780641, + 47.208808 + ], + [ + -111.780907, + 47.208201 + ], + [ + -111.78113, + 47.207729 + ], + [ + -111.781301, + 47.207438 + ], + [ + -111.781499, + 47.207129 + ], + [ + -111.78228, + 47.205916 + ], + [ + -111.783293, + 47.204645 + ], + [ + -111.783936, + 47.203974 + ], + [ + -111.784735, + 47.203146 + ], + [ + -111.785593, + 47.202225 + ], + [ + -111.786314, + 47.201466 + ], + [ + -111.786872, + 47.200883 + ], + [ + -111.787902, + 47.199845 + ], + [ + -111.788254, + 47.199507 + ], + [ + -111.788674, + 47.19914 + ], + [ + -111.789086, + 47.19879 + ], + [ + -111.789584, + 47.198387 + ], + [ + -111.790168, + 47.197921 + ], + [ + -111.790605, + 47.197618 + ], + [ + -111.791249, + 47.197227 + ], + [ + -111.791824, + 47.196877 + ], + [ + -111.792545, + 47.196474 + ], + [ + -111.793198, + 47.196136 + ], + [ + -111.79397, + 47.195769 + ], + [ + -111.794805, + 47.195425 + ], + [ + -111.801248, + 47.192835 + ], + [ + -111.801575, + 47.192701 + ], + [ + -111.802656, + 47.192287 + ], + [ + -111.803514, + 47.191937 + ], + [ + -111.804167, + 47.191628 + ], + [ + -111.804665, + 47.191394 + ], + [ + -111.8053, + 47.191045 + ], + [ + -111.805723, + 47.190797 + ], + [ + -111.805997, + 47.190634 + ], + [ + -111.806478, + 47.190323 + ], + [ + -111.806732, + 47.190144 + ], + [ + -111.80699, + 47.189955 + ], + [ + -111.807242, + 47.189755 + ], + [ + -111.807499, + 47.189537 + ], + [ + -111.807978, + 47.189108 + ], + [ + -111.808309, + 47.188784 + ], + [ + -111.808738, + 47.188316 + ], + [ + -111.809145, + 47.187831 + ], + [ + -111.809375, + 47.187515 + ], + [ + -111.809578, + 47.187207 + ], + [ + -111.809725, + 47.186968 + ], + [ + -111.809941, + 47.18658 + ], + [ + -111.810196, + 47.186052 + ], + [ + -111.810485, + 47.185392 + ], + [ + -111.810582, + 47.185034 + ], + [ + -111.810757, + 47.184458 + ], + [ + -111.81087, + 47.184068 + ], + [ + -111.811288, + 47.182591 + ], + [ + -111.811466, + 47.182023 + ], + [ + -111.811592, + 47.181562 + ], + [ + -111.811725, + 47.181068 + ], + [ + -111.811881, + 47.18053 + ], + [ + -111.812016, + 47.179972 + ], + [ + -111.812133, + 47.179486 + ], + [ + -111.812304, + 47.178698 + ], + [ + -111.812475, + 47.177933 + ], + [ + -111.812795, + 47.176671 + ], + [ + -111.813022, + 47.175805 + ], + [ + -111.813143, + 47.175313 + ], + [ + -111.813289, + 47.174743 + ], + [ + -111.813451, + 47.174086 + ], + [ + -111.813587, + 47.173603 + ], + [ + -111.813709, + 47.173199 + ], + [ + -111.813868, + 47.172742 + ], + [ + -111.814052, + 47.172177 + ], + [ + -111.81431, + 47.171374 + ], + [ + -111.814446, + 47.170953 + ], + [ + -111.814555, + 47.170592 + ], + [ + -111.814621, + 47.170315 + ], + [ + -111.814724, + 47.169845 + ], + [ + -111.814867, + 47.169286 + ], + [ + -111.814924, + 47.169023 + ], + [ + -111.815005, + 47.168585 + ], + [ + -111.81512, + 47.168075 + ], + [ + -111.815267, + 47.167513 + ], + [ + -111.81537, + 47.167124 + ], + [ + -111.815534, + 47.166596 + ], + [ + -111.815743, + 47.165879 + ], + [ + -111.815883, + 47.165407 + ], + [ + -111.816017, + 47.16497 + ], + [ + -111.816151, + 47.164499 + ], + [ + -111.816299, + 47.164102 + ], + [ + -111.816455, + 47.163605 + ], + [ + -111.816606, + 47.163233 + ], + [ + -111.81675, + 47.162929 + ], + [ + -111.8169, + 47.16265 + ], + [ + -111.817163, + 47.162234 + ], + [ + -111.817461, + 47.161792 + ], + [ + -111.817707, + 47.161428 + ], + [ + -111.817918, + 47.161172 + ], + [ + -111.818109, + 47.160939 + ], + [ + -111.81826, + 47.160773 + ], + [ + -111.818436, + 47.160598 + ], + [ + -111.818713, + 47.160322 + ], + [ + -111.819137, + 47.159916 + ], + [ + -111.819338, + 47.159742 + ], + [ + -111.819615, + 47.159506 + ], + [ + -111.819811, + 47.159353 + ], + [ + -111.820101, + 47.159137 + ], + [ + -111.820886, + 47.158653 + ], + [ + -111.821347, + 47.158391 + ], + [ + -111.821709, + 47.158179 + ], + [ + -111.82215, + 47.157949 + ], + [ + -111.822792, + 47.157656 + ], + [ + -111.823291, + 47.157407 + ], + [ + -111.823951, + 47.157074 + ], + [ + -111.824604, + 47.156773 + ], + [ + -111.824926, + 47.156618 + ], + [ + -111.826016, + 47.156075 + ], + [ + -111.826777, + 47.155704 + ], + [ + -111.827118, + 47.155527 + ], + [ + -111.827632, + 47.155278 + ], + [ + -111.828833, + 47.154684 + ], + [ + -111.830331, + 47.153967 + ], + [ + -111.83092, + 47.153679 + ], + [ + -111.831417, + 47.153485 + ], + [ + -111.831694, + 47.153394 + ], + [ + -111.831937, + 47.15332 + ], + [ + -111.832157, + 47.153261 + ], + [ + -111.832517, + 47.15318 + ], + [ + -111.832892, + 47.153117 + ], + [ + -111.833253, + 47.153076 + ], + [ + -111.833573, + 47.153049 + ], + [ + -111.833993, + 47.153025 + ], + [ + -111.834559, + 47.153049 + ], + [ + -111.835126, + 47.153113 + ], + [ + -111.835701, + 47.1532 + ], + [ + -111.83595, + 47.153259 + ], + [ + -111.841856, + 47.154858 + ], + [ + -111.842362, + 47.155002 + ], + [ + -111.842712, + 47.155094 + ], + [ + -111.843019, + 47.155158 + ], + [ + -111.843672, + 47.155257 + ], + [ + -111.8438, + 47.155267 + ], + [ + -111.844087, + 47.155287 + ], + [ + -111.844399, + 47.155286 + ], + [ + -111.844699, + 47.15528 + ], + [ + -111.845058, + 47.15526 + ], + [ + -111.845509, + 47.155193 + ], + [ + -111.845869, + 47.155122 + ], + [ + -111.846291, + 47.155019 + ], + [ + -111.846644, + 47.154905 + ], + [ + -111.846928, + 47.154785 + ], + [ + -111.847126, + 47.154685 + ], + [ + -111.847479, + 47.154504 + ], + [ + -111.847736, + 47.154346 + ], + [ + -111.847908, + 47.15421 + ], + [ + -111.848115, + 47.154036 + ], + [ + -111.848251, + 47.153894 + ], + [ + -111.848342, + 47.153792 + ], + [ + -111.84847, + 47.153647 + ], + [ + -111.848543, + 47.153546 + ], + [ + -111.848649, + 47.153419 + ], + [ + -111.848764, + 47.153232 + ], + [ + -111.848861, + 47.153032 + ], + [ + -111.848947, + 47.152823 + ], + [ + -111.848973, + 47.152708 + ], + [ + -111.849021, + 47.152541 + ], + [ + -111.849042, + 47.152364 + ], + [ + -111.849077, + 47.152131 + ], + [ + -111.849103, + 47.151825 + ], + [ + -111.849333, + 47.149062 + ], + [ + -111.849393, + 47.148406 + ], + [ + -111.8494, + 47.148192 + ], + [ + -111.849408, + 47.147987 + ], + [ + -111.8494, + 47.147824 + ], + [ + -111.84939, + 47.147698 + ], + [ + -111.849374, + 47.147556 + ], + [ + -111.849347, + 47.147435 + ], + [ + -111.849331, + 47.147351 + ], + [ + -111.849245, + 47.146966 + ], + [ + -111.849142, + 47.146674 + ], + [ + -111.849059, + 47.146434 + ], + [ + -111.848943, + 47.146212 + ], + [ + -111.84886, + 47.146053 + ], + [ + -111.848767, + 47.145896 + ], + [ + -111.848673, + 47.145762 + ], + [ + -111.848566, + 47.14562 + ], + [ + -111.847025, + 47.143717 + ], + [ + -111.846887, + 47.143525 + ], + [ + -111.846766, + 47.143353 + ], + [ + -111.846661, + 47.14319 + ], + [ + -111.846521, + 47.142953 + ], + [ + -111.846415, + 47.142749 + ], + [ + -111.846343, + 47.142591 + ], + [ + -111.846269, + 47.14237 + ], + [ + -111.846241, + 47.142263 + ], + [ + -111.846223, + 47.14217 + ], + [ + -111.846209, + 47.142062 + ], + [ + -111.84619, + 47.141876 + ], + [ + -111.846192, + 47.141745 + ], + [ + -111.846217, + 47.141528 + ], + [ + -111.846242, + 47.141353 + ], + [ + -111.84627, + 47.141184 + ], + [ + -111.846324, + 47.141016 + ], + [ + -111.846398, + 47.140797 + ], + [ + -111.846525, + 47.140531 + ], + [ + -111.846604, + 47.14041 + ], + [ + -111.846676, + 47.14029 + ], + [ + -111.846846, + 47.140059 + ], + [ + -111.847142, + 47.139751 + ], + [ + -111.847281, + 47.13963 + ], + [ + -111.84746, + 47.139479 + ], + [ + -111.847678, + 47.139323 + ], + [ + -111.84791, + 47.139171 + ], + [ + -111.848186, + 47.139013 + ], + [ + -111.848438, + 47.138891 + ], + [ + -111.848706, + 47.138772 + ], + [ + -111.848984, + 47.138674 + ], + [ + -111.849267, + 47.138581 + ], + [ + -111.849592, + 47.138477 + ], + [ + -111.849947, + 47.138393 + ], + [ + -111.850257, + 47.138331 + ], + [ + -111.850556, + 47.138292 + ], + [ + -111.850908, + 47.138241 + ], + [ + -111.851241, + 47.13822 + ], + [ + -111.85164, + 47.138209 + ], + [ + -111.851974, + 47.13821 + ], + [ + -111.852237, + 47.138223 + ], + [ + -111.852532, + 47.138247 + ], + [ + -111.852795, + 47.138276 + ], + [ + -111.853123, + 47.13833 + ], + [ + -111.853394, + 47.138374 + ], + [ + -111.853787, + 47.138457 + ], + [ + -111.854766, + 47.138667 + ], + [ + -111.855826, + 47.138884 + ], + [ + -111.856179, + 47.13897 + ], + [ + -111.856565, + 47.139029 + ], + [ + -111.856792, + 47.139068 + ], + [ + -111.857173, + 47.13911 + ], + [ + -111.857431, + 47.139137 + ], + [ + -111.857676, + 47.139157 + ], + [ + -111.858048, + 47.139176 + ], + [ + -111.858338, + 47.139177 + ], + [ + -111.858762, + 47.139167 + ], + [ + -111.859155, + 47.139148 + ], + [ + -111.85955, + 47.139117 + ], + [ + -111.859805, + 47.139089 + ], + [ + -111.860245, + 47.139022 + ], + [ + -111.860491, + 47.13898 + ], + [ + -111.860683, + 47.138944 + ], + [ + -111.860973, + 47.138885 + ], + [ + -111.861214, + 47.138829 + ], + [ + -111.861479, + 47.138758 + ], + [ + -111.861743, + 47.138677 + ], + [ + -111.862069, + 47.138562 + ], + [ + -111.862344, + 47.138449 + ], + [ + -111.862687, + 47.138297 + ], + [ + -111.862931, + 47.138175 + ], + [ + -111.863114, + 47.138087 + ], + [ + -111.863314, + 47.137975 + ], + [ + -111.863599, + 47.137807 + ], + [ + -111.863972, + 47.13756 + ], + [ + -111.864261, + 47.137341 + ], + [ + -111.864442, + 47.137202 + ], + [ + -111.864674, + 47.137005 + ], + [ + -111.864969, + 47.136736 + ], + [ + -111.865258, + 47.13642 + ], + [ + -111.867853, + 47.13324 + ], + [ + -111.868102, + 47.13296 + ], + [ + -111.868445, + 47.132657 + ], + [ + -111.868909, + 47.132347 + ], + [ + -111.869372, + 47.132096 + ], + [ + -111.869776, + 47.131938 + ], + [ + -111.870291, + 47.131792 + ], + [ + -111.870754, + 47.131687 + ], + [ + -111.871286, + 47.131623 + ], + [ + -111.87181, + 47.131605 + ], + [ + -111.872359, + 47.131617 + ], + [ + -111.873389, + 47.131705 + ], + [ + -111.875681, + 47.131897 + ], + [ + -111.885054, + 47.132785 + ], + [ + -111.886566, + 47.132886 + ], + [ + -111.888607, + 47.1331 + ], + [ + -111.888985, + 47.133135 + ], + [ + -111.889766, + 47.133217 + ], + [ + -111.890444, + 47.133281 + ], + [ + -111.891225, + 47.133322 + ], + [ + -111.891886, + 47.133334 + ], + [ + -111.892598, + 47.133334 + ], + [ + -111.893242, + 47.133316 + ], + [ + -111.8938, + 47.133305 + ], + [ + -111.894512, + 47.133246 + ], + [ + -111.89513, + 47.133194 + ], + [ + -111.89563, + 47.133132 + ], + [ + -111.896274, + 47.133044 + ], + [ + -111.89678, + 47.132974 + ], + [ + -111.898531, + 47.132636 + ], + [ + -111.899656, + 47.132344 + ], + [ + -111.900711, + 47.132022 + ], + [ + -111.901398, + 47.131783 + ], + [ + -111.902445, + 47.131403 + ], + [ + -111.904162, + 47.130755 + ], + [ + -111.909034, + 47.128927 + ], + [ + -111.913729, + 47.127181 + ], + [ + -111.917251, + 47.125878 + ], + [ + -111.92071, + 47.1247 + ], + [ + -111.921698, + 47.124251 + ], + [ + -111.922387, + 47.123838 + ], + [ + -111.922806, + 47.123526 + ], + [ + -111.924809, + 47.121884 + ], + [ + -111.925527, + 47.121467 + ], + [ + -111.926631, + 47.121045 + ], + [ + -111.927545, + 47.120838 + ], + [ + -111.928844, + 47.120679 + ], + [ + -111.939954, + 47.119561 + ], + [ + -111.940893, + 47.119375 + ], + [ + -111.941491, + 47.119193 + ], + [ + -111.94258, + 47.118694 + ], + [ + -111.94328, + 47.118205 + ], + [ + -111.943682, + 47.117842 + ], + [ + -111.944167, + 47.117216 + ], + [ + -111.94437, + 47.116782 + ], + [ + -111.94452, + 47.116283 + ], + [ + -111.944594, + 47.115646 + ], + [ + -111.944471, + 47.113184 + ], + [ + -111.944519, + 47.112085 + ], + [ + -111.944699, + 47.111164 + ], + [ + -111.9451, + 47.109855 + ], + [ + -111.94519, + 47.109613 + ], + [ + -111.946818, + 47.104798 + ], + [ + -111.947185, + 47.103915 + ], + [ + -111.94757, + 47.103215 + ], + [ + -111.948705, + 47.101708 + ], + [ + -111.95025, + 47.099859 + ], + [ + -111.951568, + 47.098237 + ], + [ + -111.952318, + 47.097326 + ], + [ + -111.952866, + 47.096646 + ], + [ + -111.954165, + 47.094457 + ], + [ + -111.954536, + 47.093996 + ], + [ + -111.955001, + 47.093573 + ], + [ + -111.95538, + 47.093283 + ], + [ + -111.95597, + 47.092921 + ], + [ + -111.958022, + 47.092174 + ], + [ + -111.958929, + 47.091665 + ], + [ + -111.959563, + 47.091145 + ], + [ + -111.959918, + 47.090782 + ], + [ + -111.960199, + 47.090406 + ], + [ + -111.960514, + 47.089782 + ], + [ + -111.960679, + 47.089121 + ], + [ + -111.961076, + 47.083974 + ], + [ + -111.961218, + 47.083113 + ], + [ + -111.961515, + 47.082259 + ], + [ + -111.962027, + 47.081188 + ], + [ + -111.962536, + 47.080367 + ], + [ + -111.963148, + 47.079581 + ], + [ + -111.964601, + 47.078023 + ], + [ + -111.966718, + 47.075826 + ], + [ + -111.967024, + 47.075517 + ], + [ + -111.969094, + 47.073375 + ], + [ + -111.970437, + 47.07194 + ], + [ + -111.972154, + 47.070032 + ], + [ + -111.973432, + 47.068542 + ], + [ + -111.974103, + 47.067809 + ], + [ + -111.974604, + 47.067107 + ], + [ + -111.976616, + 47.064731 + ], + [ + -111.98105, + 47.059331 + ], + [ + -111.981811, + 47.058552 + ], + [ + -111.982905, + 47.057585 + ], + [ + -111.983864, + 47.057007 + ], + [ + -111.985011, + 47.056354 + ], + [ + -111.986314, + 47.055712 + ], + [ + -111.986853, + 47.055504 + ], + [ + -111.987827, + 47.055224 + ], + [ + -111.990272, + 47.054577 + ], + [ + -111.991627, + 47.053954 + ], + [ + -111.992491, + 47.053494 + ], + [ + -111.993301, + 47.052977 + ], + [ + -111.994268, + 47.05221 + ], + [ + -111.994901, + 47.051592 + ], + [ + -112.00108, + 47.045261 + ], + [ + -112.002131, + 47.044014 + ], + [ + -112.002341, + 47.043639 + ], + [ + -112.002459, + 47.043291 + ], + [ + -112.00254, + 47.04249 + ], + [ + -112.002551, + 47.041633 + ], + [ + -112.002802, + 47.040468 + ], + [ + -112.003031, + 47.039996 + ], + [ + -112.003311, + 47.039629 + ], + [ + -112.00408, + 47.038901 + ], + [ + -112.004669, + 47.038537 + ], + [ + -112.005381, + 47.038191 + ], + [ + -112.006132, + 47.03787 + ], + [ + -112.007591, + 47.037508 + ], + [ + -112.008057, + 47.037437 + ], + [ + -112.009475, + 47.037313 + ], + [ + -112.012696, + 47.037258 + ], + [ + -112.01489, + 47.037245 + ], + [ + -112.016275, + 47.037163 + ], + [ + -112.0192, + 47.037033 + ], + [ + -112.020595, + 47.036893 + ], + [ + -112.021841, + 47.036661 + ], + [ + -112.023428, + 47.036288 + ], + [ + -112.024543, + 47.035923 + ], + [ + -112.025634, + 47.03549 + ], + [ + -112.026621, + 47.035004 + ], + [ + -112.027875, + 47.034259 + ], + [ + -112.04368, + 47.024236 + ], + [ + -112.044909, + 47.023441 + ], + [ + -112.04544, + 47.023036 + ], + [ + -112.04608, + 47.022418 + ], + [ + -112.046528, + 47.021863 + ], + [ + -112.046751, + 47.021531 + ], + [ + -112.046895, + 47.021189 + ], + [ + -112.048457, + 47.017223 + ], + [ + -112.049379, + 47.014861 + ], + [ + -112.04961, + 47.014335 + ], + [ + -112.049878, + 47.013819 + ], + [ + -112.050194, + 47.013314 + ], + [ + -112.050556, + 47.012813 + ], + [ + -112.050955, + 47.01233 + ], + [ + -112.051351, + 47.011873 + ], + [ + -112.051809, + 47.011423 + ], + [ + -112.052303, + 47.010991 + ], + [ + -112.05283, + 47.010576 + ], + [ + -112.053387, + 47.010182 + ], + [ + -112.053972, + 47.009806 + ], + [ + -112.056998, + 47.008006 + ], + [ + -112.058515, + 47.007109 + ], + [ + -112.060333, + 47.006031 + ], + [ + -112.061846, + 47.00513 + ], + [ + -112.062472, + 47.004869 + ], + [ + -112.062889, + 47.004741 + ], + [ + -112.063358, + 47.004645 + ], + [ + -112.063683, + 47.004606 + ], + [ + -112.064074, + 47.004561 + ], + [ + -112.064445, + 47.004519 + ], + [ + -112.06488, + 47.004576 + ], + [ + -112.06527, + 47.004629 + ], + [ + -112.065565, + 47.004697 + ], + [ + -112.065974, + 47.004792 + ], + [ + -112.066808, + 47.004991 + ], + [ + -112.06824, + 47.005361 + ], + [ + -112.0686, + 47.005467 + ], + [ + -112.069096, + 47.005596 + ], + [ + -112.069473, + 47.005688 + ], + [ + -112.069732, + 47.005745 + ], + [ + -112.070266, + 47.005855 + ], + [ + -112.070699, + 47.005951 + ], + [ + -112.071253, + 47.006048 + ], + [ + -112.071642, + 47.006114 + ], + [ + -112.071928, + 47.006158 + ], + [ + -112.072302, + 47.006209 + ], + [ + -112.072735, + 47.006263 + ], + [ + -112.072984, + 47.006287 + ], + [ + -112.073367, + 47.006318 + ], + [ + -112.073792, + 47.006352 + ], + [ + -112.074219, + 47.006372 + ], + [ + -112.074542, + 47.006382 + ], + [ + -112.074829, + 47.00639 + ], + [ + -112.075178, + 47.006392 + ], + [ + -112.075603, + 47.006393 + ], + [ + -112.076788, + 47.006332 + ], + [ + -112.077271, + 47.006281 + ], + [ + -112.077628, + 47.006225 + ], + [ + -112.078026, + 47.006153 + ], + [ + -112.078436, + 47.006074 + ], + [ + -112.078755, + 47.005996 + ], + [ + -112.079201, + 47.005866 + ], + [ + -112.079533, + 47.005747 + ], + [ + -112.079812, + 47.00563 + ], + [ + -112.080082, + 47.005495 + ], + [ + -112.080379, + 47.005332 + ], + [ + -112.080635, + 47.005164 + ], + [ + -112.080953, + 47.004927 + ], + [ + -112.081049, + 47.004826 + ], + [ + -112.081198, + 47.004689 + ], + [ + -112.081316, + 47.004562 + ], + [ + -112.081449, + 47.004379 + ], + [ + -112.081568, + 47.004191 + ], + [ + -112.081674, + 47.003987 + ], + [ + -112.08174, + 47.003858 + ], + [ + -112.081806, + 47.003692 + ], + [ + -112.081884, + 47.003438 + ], + [ + -112.08191, + 47.003275 + ], + [ + -112.081934, + 47.003066 + ], + [ + -112.08193, + 47.002831 + ], + [ + -112.081896, + 47.002597 + ], + [ + -112.081853, + 47.002371 + ], + [ + -112.081798, + 47.002194 + ], + [ + -112.081607, + 47.00176 + ], + [ + -112.081184, + 47.001198 + ], + [ + -112.079559, + 46.99968 + ], + [ + -112.078016, + 46.99838 + ], + [ + -112.07758, + 46.997912 + ], + [ + -112.077288, + 46.997532 + ], + [ + -112.076986, + 46.99693 + ], + [ + -112.076889, + 46.996514 + ], + [ + -112.076886, + 46.996116 + ], + [ + -112.076984, + 46.995478 + ], + [ + -112.07795, + 46.992584 + ], + [ + -112.078047, + 46.991994 + ], + [ + -112.078024, + 46.991594 + ], + [ + -112.077935, + 46.9912 + ], + [ + -112.077672, + 46.990627 + ], + [ + -112.076129, + 46.988425 + ], + [ + -112.075762, + 46.987771 + ], + [ + -112.075646, + 46.98742 + ], + [ + -112.075619, + 46.987055 + ], + [ + -112.075663, + 46.986679 + ], + [ + -112.075796, + 46.986299 + ], + [ + -112.076008, + 46.985921 + ], + [ + -112.076502, + 46.98539 + ], + [ + -112.077181, + 46.984932 + ], + [ + -112.081242, + 46.982494 + ], + [ + -112.081853, + 46.981972 + ], + [ + -112.082104, + 46.981646 + ], + [ + -112.082346, + 46.981245 + ], + [ + -112.082526, + 46.98074 + ], + [ + -112.082567, + 46.980266 + ], + [ + -112.082681, + 46.977427 + ], + [ + -112.082826, + 46.974499 + ], + [ + -112.083032, + 46.973709 + ], + [ + -112.083438, + 46.973098 + ], + [ + -112.083941, + 46.972667 + ], + [ + -112.084536, + 46.97225 + ], + [ + -112.093815, + 46.965771 + ], + [ + -112.094034, + 46.965596 + ], + [ + -112.094318, + 46.965306 + ], + [ + -112.094501, + 46.965085 + ], + [ + -112.094642, + 46.964864 + ], + [ + -112.094785, + 46.964575 + ], + [ + -112.094868, + 46.964338 + ], + [ + -112.094926, + 46.964081 + ], + [ + -112.094952, + 46.963813 + ], + [ + -112.094963, + 46.963562 + ], + [ + -112.094964, + 46.963005 + ], + [ + -112.094945, + 46.962147 + ], + [ + -112.095064, + 46.961322 + ], + [ + -112.095315, + 46.960775 + ], + [ + -112.095663, + 46.960328 + ], + [ + -112.098599, + 46.957746 + ], + [ + -112.098975, + 46.957432 + ], + [ + -112.099726, + 46.956946 + ], + [ + -112.100314, + 46.956644 + ], + [ + -112.101038, + 46.956326 + ], + [ + -112.103946, + 46.955297 + ], + [ + -112.107802, + 46.953955 + ], + [ + -112.108475, + 46.953671 + ], + [ + -112.108901, + 46.953445 + ], + [ + -112.109465, + 46.953038 + ], + [ + -112.109979, + 46.952469 + ], + [ + -112.110197, + 46.952042 + ], + [ + -112.111502, + 46.949682 + ], + [ + -112.112324, + 46.948952 + ], + [ + -112.113184, + 46.948533 + ], + [ + -112.114208, + 46.948308 + ], + [ + -112.116111, + 46.948021 + ], + [ + -112.117289, + 46.947669 + ], + [ + -112.118334, + 46.94705 + ], + [ + -112.119549, + 46.946068 + ], + [ + -112.122402, + 46.943642 + ], + [ + -112.123133, + 46.943013 + ], + [ + -112.123553, + 46.942583 + ], + [ + -112.12389, + 46.942171 + ], + [ + -112.124619, + 46.941266 + ], + [ + -112.125571, + 46.939982 + ], + [ + -112.126015, + 46.939377 + ], + [ + -112.1265, + 46.938749 + ], + [ + -112.126751, + 46.938397 + ], + [ + -112.126995, + 46.938014 + ], + [ + -112.127231, + 46.93766 + ], + [ + -112.127472, + 46.93708 + ], + [ + -112.127553, + 46.936521 + ], + [ + -112.127485, + 46.935878 + ], + [ + -112.126037, + 46.931011 + ], + [ + -112.125843, + 46.930596 + ], + [ + -112.125614, + 46.930288 + ], + [ + -112.125356, + 46.930017 + ], + [ + -112.125, + 46.92973 + ], + [ + -112.122981, + 46.928549 + ], + [ + -112.122668, + 46.928293 + ], + [ + -112.122315, + 46.927871 + ], + [ + -112.122099, + 46.927296 + ], + [ + -112.122093, + 46.926792 + ], + [ + -112.122341, + 46.926128 + ], + [ + -112.12333, + 46.924835 + ], + [ + -112.123628, + 46.924404 + ], + [ + -112.123835, + 46.923877 + ], + [ + -112.123883, + 46.923325 + ], + [ + -112.123775, + 46.9228 + ], + [ + -112.123494, + 46.922251 + ], + [ + -112.123242, + 46.921939 + ], + [ + -112.123161, + 46.921857 + ], + [ + -112.12174, + 46.920823 + ], + [ + -112.121416, + 46.920602 + ], + [ + -112.120977, + 46.920179 + ], + [ + -112.120697, + 46.919775 + ], + [ + -112.120503, + 46.919327 + ], + [ + -112.120322, + 46.918471 + ], + [ + -112.119667, + 46.915666 + ], + [ + -112.11939, + 46.915074 + ], + [ + -112.119062, + 46.914644 + ], + [ + -112.118506, + 46.91421 + ], + [ + -112.116708, + 46.913328 + ], + [ + -112.116193, + 46.912968 + ], + [ + -112.115472, + 46.912187 + ], + [ + -112.115356, + 46.911933 + ], + [ + -112.115279, + 46.911728 + ], + [ + -112.115241, + 46.911454 + ], + [ + -112.11523, + 46.911175 + ], + [ + -112.115266, + 46.910915 + ], + [ + -112.115368, + 46.910602 + ], + [ + -112.115446, + 46.910438 + ], + [ + -112.115662, + 46.910084 + ], + [ + -112.11604, + 46.909673 + ], + [ + -112.119395, + 46.907257 + ], + [ + -112.119896, + 46.906695 + ], + [ + -112.120633, + 46.90538 + ], + [ + -112.120979, + 46.904986 + ], + [ + -112.122506, + 46.903673 + ], + [ + -112.12294, + 46.903177 + ], + [ + -112.123172, + 46.902727 + ], + [ + -112.123344, + 46.902186 + ], + [ + -112.12337, + 46.901665 + ], + [ + -112.12326, + 46.90114 + ], + [ + -112.123004, + 46.900542 + ], + [ + -112.122296, + 46.899463 + ], + [ + -112.118791, + 46.893932 + ], + [ + -112.118077, + 46.892887 + ], + [ + -112.117488, + 46.892253 + ], + [ + -112.11672, + 46.891638 + ], + [ + -112.11608, + 46.891253 + ], + [ + -112.114112, + 46.89021 + ], + [ + -112.110716, + 46.888379 + ], + [ + -112.110338, + 46.888159 + ], + [ + -112.106096, + 46.885885 + ], + [ + -112.101398, + 46.88336 + ], + [ + -112.094609, + 46.879651 + ], + [ + -112.0931, + 46.878959 + ], + [ + -112.091311, + 46.878288 + ], + [ + -112.089958, + 46.877867 + ], + [ + -112.088521, + 46.877511 + ], + [ + -112.069016, + 46.872724 + ], + [ + -112.049279, + 46.867857 + ], + [ + -112.047103, + 46.867189 + ], + [ + -112.044993, + 46.866382 + ], + [ + -112.043719, + 46.865827 + ], + [ + -112.042541, + 46.865241 + ], + [ + -112.040586, + 46.864168 + ], + [ + -112.039263, + 46.863298 + ], + [ + -112.037988, + 46.862365 + ], + [ + -112.036738, + 46.86133 + ], + [ + -112.014076, + 46.842104 + ], + [ + -112.012788, + 46.840941 + ], + [ + -112.011749, + 46.839918 + ], + [ + -112.010445, + 46.83844 + ], + [ + -112.009025, + 46.83667 + ], + [ + -112.007922, + 46.83499 + ], + [ + -112.007123, + 46.833605 + ], + [ + -112.006361, + 46.832073 + ], + [ + -112.005882, + 46.830963 + ], + [ + -112.003109, + 46.824179 + ], + [ + -112.002795, + 46.823308 + ], + [ + -112.001559, + 46.820272 + ], + [ + -112.001405, + 46.819943 + ], + [ + -112.001005, + 46.818846 + ], + [ + -112.000667, + 46.817632 + ], + [ + -112.000578, + 46.816809 + ], + [ + -112.000493, + 46.815794 + ], + [ + -112.000516, + 46.814928 + ], + [ + -112.000693, + 46.813761 + ], + [ + -112.001162, + 46.812127 + ], + [ + -112.001628, + 46.811112 + ], + [ + -112.002462, + 46.809713 + ], + [ + -112.003317, + 46.808598 + ], + [ + -112.004049, + 46.80782 + ], + [ + -112.005118, + 46.806834 + ], + [ + -112.006592, + 46.805739 + ], + [ + -112.028016, + 46.792156 + ], + [ + -112.029741, + 46.790912 + ], + [ + -112.030745, + 46.79008 + ], + [ + -112.031484, + 46.78938 + ], + [ + -112.032257, + 46.788498 + ], + [ + -112.033266, + 46.787176 + ], + [ + -112.033873, + 46.786179 + ], + [ + -112.034356, + 46.785153 + ], + [ + -112.03474, + 46.784222 + ], + [ + -112.035041, + 46.783106 + ], + [ + -112.035281, + 46.78179 + ], + [ + -112.035332, + 46.780429 + ], + [ + -112.035162, + 46.778932 + ], + [ + -112.034994, + 46.7781 + ], + [ + -112.034623, + 46.77676 + ], + [ + -112.031439, + 46.767593 + ], + [ + -112.030872, + 46.766116 + ], + [ + -112.03058, + 46.765566 + ], + [ + -112.0298, + 46.76452 + ], + [ + -112.029051, + 46.763776 + ], + [ + -112.027625, + 46.762715 + ], + [ + -112.021142, + 46.759474 + ], + [ + -112.019784, + 46.758674 + ], + [ + -112.018427, + 46.757701 + ], + [ + -112.017026, + 46.756401 + ], + [ + -112.01646, + 46.75581 + ], + [ + -112.015787, + 46.754949 + ], + [ + -112.015034, + 46.753726 + ], + [ + -112.014675, + 46.752957 + ], + [ + -112.014369, + 46.752178 + ], + [ + -112.014113, + 46.751252 + ], + [ + -112.013978, + 46.7503 + ], + [ + -112.013965, + 46.748917 + ], + [ + -112.01407, + 46.747974 + ], + [ + -112.014425, + 46.74657 + ], + [ + -112.017111, + 46.737855 + ], + [ + -112.017375, + 46.736784 + ], + [ + -112.017607, + 46.735355 + ], + [ + -112.017673, + 46.734409 + ], + [ + -112.017685, + 46.733581 + ], + [ + -112.017588, + 46.732104 + ], + [ + -112.017413, + 46.730961 + ], + [ + -112.016851, + 46.728893 + ], + [ + -112.016052, + 46.726997 + ], + [ + -112.015229, + 46.725474 + ], + [ + -112.014031, + 46.723297 + ], + [ + -112.013406, + 46.721963 + ], + [ + -112.012932, + 46.720654 + ], + [ + -112.012536, + 46.719097 + ], + [ + -112.012339, + 46.717599 + ], + [ + -112.012283, + 46.716345 + ], + [ + -112.012185, + 46.707222 + ], + [ + -112.012075, + 46.70024 + ], + [ + -112.011602, + 46.660701 + ], + [ + -112.011601, + 46.660313 + ], + [ + -112.011436, + 46.648193 + ], + [ + -112.011441, + 46.648028 + ], + [ + -112.011427, + 46.646569 + ], + [ + -112.011246, + 46.631754 + ], + [ + -112.011146, + 46.621062 + ], + [ + -112.011132, + 46.619553 + ], + [ + -112.01109, + 46.616805 + ], + [ + -112.011059, + 46.614798 + ], + [ + -112.011048, + 46.61406 + ], + [ + -112.011037, + 46.613709 + ], + [ + -112.010993, + 46.613319 + ], + [ + -112.010941, + 46.613077 + ], + [ + -112.010877, + 46.612674 + ], + [ + -112.010838, + 46.612474 + ], + [ + -112.010746, + 46.61207 + ], + [ + -112.01064, + 46.611666 + ], + [ + -112.010587, + 46.611464 + ], + [ + -112.010508, + 46.611263 + ], + [ + -112.010314, + 46.610728 + ], + [ + -112.010256, + 46.610545 + ], + [ + -112.010198, + 46.610369 + ], + [ + -112.009915, + 46.609824 + ], + [ + -112.009739, + 46.609444 + ], + [ + -112.009564, + 46.609128 + ], + [ + -112.009295, + 46.608718 + ], + [ + -112.006524, + 46.603944 + ], + [ + -112.003906, + 46.599455 + ], + [ + -112.002681, + 46.597363 + ], + [ + -112.001205, + 46.594784 + ], + [ + -112, + 46.592799 + ], + [ + -111.999632, + 46.592286 + ], + [ + -111.999301, + 46.591861 + ], + [ + -111.998522, + 46.590983 + ], + [ + -111.99828, + 46.590699 + ], + [ + -111.997972, + 46.590398 + ], + [ + -111.996867, + 46.589396 + ], + [ + -111.996488, + 46.589096 + ], + [ + -111.995735, + 46.58854 + ], + [ + -111.988743, + 46.583855 + ], + [ + -111.983795, + 46.580551 + ], + [ + -111.98049, + 46.578347 + ], + [ + -111.978312, + 46.576892 + ], + [ + -111.976196, + 46.575478 + ], + [ + -111.970612, + 46.571744 + ], + [ + -111.969019, + 46.570651 + ], + [ + -111.966637, + 46.569071 + ], + [ + -111.957631, + 46.563066 + ], + [ + -111.956867, + 46.562459 + ], + [ + -111.956078, + 46.56178 + ], + [ + -111.955528, + 46.561278 + ], + [ + -111.95503, + 46.560765 + ], + [ + -111.954464, + 46.560133 + ], + [ + -111.953992, + 46.559508 + ], + [ + -111.953623, + 46.558994 + ], + [ + -111.953365, + 46.558587 + ], + [ + -111.953022, + 46.558003 + ], + [ + -111.95261, + 46.557224 + ], + [ + -111.951443, + 46.55468 + ], + [ + -111.946695, + 46.544203 + ], + [ + -111.946304, + 46.54331 + ], + [ + -111.945744, + 46.542172 + ], + [ + -111.945185, + 46.540831 + ], + [ + -111.944611, + 46.539567 + ], + [ + -111.943999, + 46.538252 + ], + [ + -111.943392, + 46.536869 + ], + [ + -111.941186, + 46.532081 + ], + [ + -111.940903, + 46.53142 + ], + [ + -111.940559, + 46.530629 + ], + [ + -111.940379, + 46.530109 + ], + [ + -111.940293, + 46.529684 + ], + [ + -111.940268, + 46.529241 + ], + [ + -111.940319, + 46.528857 + ], + [ + -111.940422, + 46.528432 + ], + [ + -111.940568, + 46.528025 + ], + [ + -111.94074, + 46.527676 + ], + [ + -111.940971, + 46.527322 + ], + [ + -111.941246, + 46.527003 + ], + [ + -111.941667, + 46.526619 + ], + [ + -111.943134, + 46.525497 + ], + [ + -111.943589, + 46.525125 + ], + [ + -111.94401, + 46.524718 + ], + [ + -111.944344, + 46.524346 + ], + [ + -111.944662, + 46.523974 + ], + [ + -111.944902, + 46.523625 + ], + [ + -111.945151, + 46.52323 + ], + [ + -111.9454, + 46.522775 + ], + [ + -111.945606, + 46.522326 + ], + [ + -111.945744, + 46.521966 + ], + [ + -111.945855, + 46.521511 + ], + [ + -111.947984, + 46.511742 + ], + [ + -111.948095, + 46.51137 + ], + [ + -111.948361, + 46.510661 + ], + [ + -111.949408, + 46.508074 + ], + [ + -111.952344, + 46.500837 + ], + [ + -111.952541, + 46.500393 + ], + [ + -111.952825, + 46.499944 + ], + [ + -111.953168, + 46.49946 + ], + [ + -111.953494, + 46.499105 + ], + [ + -111.953932, + 46.498775 + ], + [ + -111.954764, + 46.49819 + ], + [ + -111.958575, + 46.495909 + ], + [ + -111.959245, + 46.495501 + ], + [ + -111.960052, + 46.495017 + ], + [ + -111.961021, + 46.494414 + ], + [ + -111.961871, + 46.493912 + ], + [ + -111.962729, + 46.493415 + ], + [ + -111.963579, + 46.492825 + ], + [ + -111.964025, + 46.4925 + ], + [ + -111.964661, + 46.492015 + ], + [ + -111.965124, + 46.491625 + ], + [ + -111.965656, + 46.491123 + ], + [ + -111.966369, + 46.49042 + ], + [ + -111.96709, + 46.489651 + ], + [ + -111.976325, + 46.479522 + ], + [ + -111.976891, + 46.478848 + ], + [ + -111.977312, + 46.47834 + ], + [ + -111.977733, + 46.477808 + ], + [ + -111.977973, + 46.477465 + ], + [ + -111.978127, + 46.477211 + ], + [ + -111.978282, + 46.476974 + ], + [ + -111.97884, + 46.475928 + ], + [ + -111.979217, + 46.475042 + ], + [ + -111.980033, + 46.473044 + ], + [ + -111.980271, + 46.472374 + ], + [ + -111.980435, + 46.471976 + ], + [ + -111.980677, + 46.471349 + ], + [ + -111.980952, + 46.470648 + ], + [ + -111.981239, + 46.4699 + ], + [ + -111.981493, + 46.46921 + ], + [ + -111.981736, + 46.468592 + ], + [ + -111.981874, + 46.468256 + ], + [ + -111.982316, + 46.467018 + ], + [ + -111.982732, + 46.465939 + ], + [ + -111.982851, + 46.465572 + ], + [ + -111.983251, + 46.464294 + ], + [ + -111.983315, + 46.464025 + ], + [ + -111.983475, + 46.463313 + ], + [ + -111.983818, + 46.462054 + ], + [ + -111.98424, + 46.460487 + ], + [ + -111.985346, + 46.456259 + ], + [ + -111.985844, + 46.45432 + ], + [ + -111.986814, + 46.450701 + ], + [ + -111.986994, + 46.449938 + ], + [ + -111.987251, + 46.449004 + ], + [ + -111.987543, + 46.4483 + ], + [ + -111.987809, + 46.447709 + ], + [ + -111.988255, + 46.446833 + ], + [ + -111.990024, + 46.443882 + ], + [ + -111.990719, + 46.44254 + ], + [ + -111.99283, + 46.438169 + ], + [ + -111.995886, + 46.431816 + ], + [ + -111.996143, + 46.431165 + ], + [ + -111.996341, + 46.430644 + ], + [ + -111.996598, + 46.42984 + ], + [ + -111.996753, + 46.429213 + ], + [ + -111.99689, + 46.428609 + ], + [ + -111.997405, + 46.425385 + ], + [ + -111.997642, + 46.424314 + ], + [ + -111.997932, + 46.423545 + ], + [ + -111.998107, + 46.423114 + ], + [ + -111.99835, + 46.422586 + ], + [ + -111.998575, + 46.422164 + ], + [ + -111.998884, + 46.421653 + ], + [ + -111.999228, + 46.421145 + ], + [ + -111.999447, + 46.420848 + ], + [ + -111.999923, + 46.420267 + ], + [ + -112.000156, + 46.42 + ], + [ + -112.000433, + 46.41971 + ], + [ + -112.00089, + 46.419258 + ], + [ + -112.001482, + 46.418746 + ], + [ + -112.002113, + 46.418226 + ], + [ + -112.00272, + 46.417745 + ], + [ + -112.002961, + 46.417554 + ], + [ + -112.003548, + 46.417078 + ], + [ + -112.004211, + 46.41654 + ], + [ + -112.004746, + 46.416099 + ], + [ + -112.005461, + 46.41553 + ], + [ + -112.005985, + 46.415112 + ], + [ + -112.006394, + 46.414775 + ], + [ + -112.006854, + 46.414405 + ], + [ + -112.007245, + 46.4141 + ], + [ + -112.00765, + 46.413758 + ], + [ + -112.00797, + 46.413501 + ], + [ + -112.008169, + 46.413338 + ], + [ + -112.008593, + 46.412997 + ], + [ + -112.009014, + 46.412645 + ], + [ + -112.009385, + 46.412341 + ], + [ + -112.009697, + 46.412025 + ], + [ + -112.010255, + 46.411528 + ], + [ + -112.010946, + 46.410853 + ], + [ + -112.011431, + 46.410352 + ], + [ + -112.011895, + 46.409867 + ], + [ + -112.012165, + 46.409569 + ], + [ + -112.012675, + 46.408992 + ], + [ + -112.013067, + 46.408517 + ], + [ + -112.013404, + 46.408107 + ], + [ + -112.013911, + 46.407447 + ], + [ + -112.014218, + 46.407046 + ], + [ + -112.014492, + 46.406653 + ], + [ + -112.015033, + 46.405845 + ], + [ + -112.01524, + 46.405542 + ], + [ + -112.015368, + 46.405329 + ], + [ + -112.015741, + 46.40471 + ], + [ + -112.015972, + 46.404308 + ], + [ + -112.016318, + 46.403688 + ], + [ + -112.016624, + 46.403056 + ], + [ + -112.01703, + 46.402204 + ], + [ + -112.017522, + 46.401159 + ], + [ + -112.017917, + 46.400311 + ], + [ + -112.019197, + 46.397512 + ], + [ + -112.019961, + 46.395938 + ], + [ + -112.020503, + 46.394858 + ], + [ + -112.020846, + 46.394173 + ], + [ + -112.021172, + 46.393579 + ], + [ + -112.021321, + 46.393351 + ], + [ + -112.021496, + 46.393063 + ], + [ + -112.021714, + 46.392713 + ], + [ + -112.021925, + 46.392391 + ], + [ + -112.022307, + 46.391799 + ], + [ + -112.022576, + 46.391431 + ], + [ + -112.02269, + 46.391255 + ], + [ + -112.022776, + 46.391138 + ], + [ + -112.023072, + 46.390745 + ], + [ + -112.023396, + 46.390333 + ], + [ + -112.023636, + 46.390016 + ], + [ + -112.02407, + 46.389472 + ], + [ + -112.02447, + 46.388962 + ], + [ + -112.025293, + 46.387893 + ], + [ + -112.025518, + 46.387587 + ], + [ + -112.025835, + 46.387153 + ], + [ + -112.02604, + 46.386874 + ], + [ + -112.026296, + 46.386489 + ], + [ + -112.026502, + 46.386192 + ], + [ + -112.026698, + 46.385898 + ], + [ + -112.027204, + 46.385069 + ], + [ + -112.027659, + 46.384252 + ], + [ + -112.027743, + 46.384088 + ], + [ + -112.0278, + 46.383963 + ], + [ + -112.02782, + 46.383925 + ], + [ + -112.027998, + 46.383561 + ], + [ + -112.028106, + 46.383379 + ], + [ + -112.028359, + 46.382926 + ], + [ + -112.028737, + 46.382022 + ], + [ + -112.029617, + 46.379591 + ], + [ + -112.030115, + 46.378271 + ], + [ + -112.030424, + 46.377365 + ], + [ + -112.030767, + 46.376572 + ], + [ + -112.031059, + 46.375944 + ], + [ + -112.033059, + 46.372077 + ], + [ + -112.033626, + 46.37091 + ], + [ + -112.033917, + 46.370342 + ], + [ + -112.034252, + 46.369714 + ], + [ + -112.034492, + 46.369293 + ], + [ + -112.03481, + 46.368766 + ], + [ + -112.035136, + 46.368298 + ], + [ + -112.035445, + 46.367848 + ], + [ + -112.03584, + 46.367386 + ], + [ + -112.036295, + 46.366877 + ], + [ + -112.036879, + 46.366249 + ], + [ + -112.043015, + 46.359532 + ], + [ + -112.043436, + 46.359053 + ], + [ + -112.043754, + 46.358638 + ], + [ + -112.044011, + 46.358283 + ], + [ + -112.044234, + 46.357927 + ], + [ + -112.044475, + 46.357501 + ], + [ + -112.044698, + 46.357062 + ], + [ + -112.044852, + 46.356719 + ], + [ + -112.044972, + 46.356357 + ], + [ + -112.045093, + 46.355972 + ], + [ + -112.045204, + 46.355534 + ], + [ + -112.045281, + 46.355173 + ], + [ + -112.04535, + 46.354693 + ], + [ + -112.045384, + 46.354284 + ], + [ + -112.045376, + 46.353828 + ], + [ + -112.045359, + 46.353206 + ], + [ + -112.045058, + 46.350658 + ], + [ + -112.045032, + 46.350072 + ], + [ + -112.045075, + 46.349545 + ], + [ + -112.045178, + 46.349154 + ], + [ + -112.045317, + 46.348787 + ], + [ + -112.045481, + 46.348449 + ], + [ + -112.045687, + 46.348135 + ], + [ + -112.04591, + 46.347851 + ], + [ + -112.046202, + 46.347519 + ], + [ + -112.048562, + 46.345392 + ], + [ + -112.048862, + 46.34509 + ], + [ + -112.049146, + 46.34477 + ], + [ + -112.04936, + 46.344467 + ], + [ + -112.04954, + 46.344153 + ], + [ + -112.049738, + 46.343721 + ], + [ + -112.049849, + 46.343241 + ], + [ + -112.049884, + 46.343028 + ], + [ + -112.049892, + 46.342755 + ], + [ + -112.049884, + 46.3424 + ], + [ + -112.049806, + 46.341931 + ], + [ + -112.049396, + 46.34035 + ], + [ + -112.049218, + 46.339673 + ], + [ + -112.049159, + 46.33933 + ], + [ + -112.049143, + 46.339002 + ], + [ + -112.049168, + 46.338597 + ], + [ + -112.049229, + 46.338284 + ], + [ + -112.049292, + 46.338051 + ], + [ + -112.049341, + 46.337839 + ], + [ + -112.049439, + 46.337616 + ], + [ + -112.049559, + 46.337404 + ], + [ + -112.0497, + 46.337162 + ], + [ + -112.049936, + 46.33687 + ], + [ + -112.05015, + 46.336595 + ], + [ + -112.054836, + 46.331763 + ], + [ + -112.055497, + 46.33117 + ], + [ + -112.055875, + 46.33085 + ], + [ + -112.056372, + 46.33053 + ], + [ + -112.05687, + 46.330263 + ], + [ + -112.057445, + 46.330044 + ], + [ + -112.058132, + 46.329789 + ], + [ + -112.060261, + 46.329273 + ], + [ + -112.060879, + 46.329137 + ], + [ + -112.061445, + 46.328959 + ], + [ + -112.061994, + 46.328752 + ], + [ + -112.062561, + 46.32845 + ], + [ + -112.06317, + 46.3281 + ], + [ + -112.063625, + 46.327786 + ], + [ + -112.064054, + 46.327371 + ], + [ + -112.064466, + 46.326891 + ], + [ + -112.06523, + 46.325741 + ], + [ + -112.065677, + 46.325125 + ], + [ + -112.066028, + 46.324674 + ], + [ + -112.06638, + 46.324318 + ], + [ + -112.066904, + 46.323868 + ], + [ + -112.067505, + 46.323501 + ], + [ + -112.06826, + 46.323109 + ], + [ + -112.069642, + 46.322445 + ], + [ + -112.070509, + 46.322007 + ], + [ + -112.071195, + 46.321663 + ], + [ + -112.071728, + 46.321378 + ], + [ + -112.07238, + 46.320958 + ], + [ + -112.073067, + 46.320519 + ], + [ + -112.073762, + 46.320045 + ], + [ + -112.074277, + 46.319582 + ], + [ + -112.074732, + 46.319138 + ], + [ + -112.075169, + 46.318705 + ], + [ + -112.075599, + 46.318189 + ], + [ + -112.076053, + 46.317626 + ], + [ + -112.076371, + 46.317182 + ], + [ + -112.076732, + 46.316589 + ], + [ + -112.077058, + 46.315949 + ], + [ + -112.077616, + 46.31452 + ], + [ + -112.077985, + 46.313459 + ], + [ + -112.078268, + 46.312795 + ], + [ + -112.078491, + 46.31232 + ], + [ + -112.0788, + 46.311751 + ], + [ + -112.079212, + 46.31117 + ], + [ + -112.079718, + 46.310435 + ], + [ + -112.0808, + 46.308627 + ], + [ + -112.081126, + 46.30801 + ], + [ + -112.081375, + 46.307316 + ], + [ + -112.081512, + 46.306724 + ], + [ + -112.081607, + 46.306131 + ], + [ + -112.081735, + 46.304998 + ], + [ + -112.081856, + 46.304358 + ], + [ + -112.082079, + 46.303688 + ], + [ + -112.082319, + 46.303172 + ], + [ + -112.082594, + 46.302692 + ], + [ + -112.082946, + 46.302205 + ], + [ + -112.083306, + 46.301814 + ], + [ + -112.083804, + 46.301334 + ], + [ + -112.08447, + 46.300831 + ], + [ + -112.085263, + 46.300355 + ], + [ + -112.086027, + 46.299964 + ], + [ + -112.089752, + 46.298446 + ], + [ + -112.090979, + 46.297859 + ], + [ + -112.091958, + 46.297337 + ], + [ + -112.092799, + 46.296756 + ], + [ + -112.093486, + 46.296287 + ], + [ + -112.094104, + 46.295694 + ], + [ + -112.09473, + 46.295036 + ], + [ + -112.095159, + 46.294538 + ], + [ + -112.09558, + 46.293992 + ], + [ + -112.09594, + 46.293381 + ], + [ + -112.096445, + 46.292397 + ], + [ + -112.096685, + 46.291614 + ], + [ + -112.09702, + 46.290422 + ], + [ + -112.097449, + 46.288406 + ], + [ + -112.097724, + 46.287409 + ], + [ + -112.098136, + 46.286312 + ], + [ + -112.099116, + 46.284397 + ], + [ + -112.099274, + 46.284063 + ], + [ + -112.10053, + 46.281349 + ], + [ + -112.101118, + 46.280084 + ], + [ + -112.102891, + 46.276318 + ], + [ + -112.104027, + 46.273935 + ], + [ + -112.104859, + 46.272141 + ], + [ + -112.105342, + 46.271125 + ], + [ + -112.106274, + 46.269146 + ], + [ + -112.107087, + 46.267404 + ], + [ + -112.111234, + 46.258546 + ], + [ + -112.112659, + 46.255466 + ], + [ + -112.114521, + 46.251525 + ], + [ + -112.114976, + 46.250676 + ], + [ + -112.115508, + 46.249899 + ], + [ + -112.115937, + 46.249329 + ], + [ + -112.116633, + 46.248581 + ], + [ + -112.117748, + 46.247554 + ], + [ + -112.11925, + 46.246504 + ], + [ + -112.12022, + 46.245934 + ], + [ + -112.120967, + 46.245566 + ], + [ + -112.121954, + 46.245133 + ], + [ + -112.124992, + 46.244052 + ], + [ + -112.13288, + 46.241298 + ], + [ + -112.133387, + 46.24112 + ], + [ + -112.138622, + 46.239291 + ], + [ + -112.145034, + 46.237065 + ], + [ + -112.146141, + 46.236745 + ], + [ + -112.147008, + 46.236519 + ], + [ + -112.147806, + 46.236394 + ], + [ + -112.148459, + 46.236305 + ], + [ + -112.149265, + 46.236246 + ], + [ + -112.150089, + 46.236222 + ], + [ + -112.151042, + 46.236246 + ], + [ + -112.151883, + 46.236317 + ], + [ + -112.152699, + 46.236436 + ], + [ + -112.153471, + 46.236584 + ], + [ + -112.154474, + 46.236837 + ], + [ + -112.15899, + 46.238152 + ], + [ + -112.160595, + 46.238543 + ], + [ + -112.162483, + 46.238947 + ], + [ + -112.163367, + 46.23922 + ], + [ + -112.164054, + 46.239529 + ], + [ + -112.164698, + 46.239897 + ], + [ + -112.165273, + 46.24033 + ], + [ + -112.166844, + 46.241642 + ], + [ + -112.167307, + 46.241963 + ], + [ + -112.1685, + 46.242669 + ], + [ + -112.169144, + 46.243085 + ], + [ + -112.169659, + 46.24356 + ], + [ + -112.170912, + 46.244966 + ], + [ + -112.171367, + 46.245364 + ], + [ + -112.172131, + 46.245898 + ], + [ + -112.173204, + 46.246522 + ], + [ + -112.174276, + 46.247169 + ], + [ + -112.174817, + 46.24762 + ], + [ + -112.175298, + 46.24816 + ], + [ + -112.175555, + 46.248587 + ], + [ + -112.17577, + 46.248973 + ], + [ + -112.175924, + 46.249424 + ], + [ + -112.176336, + 46.250552 + ], + [ + -112.176517, + 46.25092 + ], + [ + -112.17674, + 46.251276 + ], + [ + -112.176997, + 46.251626 + ], + [ + -112.177418, + 46.252083 + ], + [ + -112.177787, + 46.252344 + ], + [ + -112.178165, + 46.252617 + ], + [ + -112.180775, + 46.254129 + ], + [ + -112.181007, + 46.254269 + ], + [ + -112.183097, + 46.255454 + ], + [ + -112.183493, + 46.255702 + ], + [ + -112.184164, + 46.256171 + ], + [ + -112.184905, + 46.256737 + ], + [ + -112.185365, + 46.257141 + ], + [ + -112.185885, + 46.257562 + ], + [ + -112.186185, + 46.2578 + ], + [ + -112.186531, + 46.258043 + ], + [ + -112.186972, + 46.258275 + ], + [ + -112.187322, + 46.258422 + ], + [ + -112.187774, + 46.258598 + ], + [ + -112.188155, + 46.258726 + ], + [ + -112.188842, + 46.25893 + ], + [ + -112.190061, + 46.259233 + ], + [ + -112.194417, + 46.260296 + ], + [ + -112.194914, + 46.260425 + ], + [ + -112.197467, + 46.261049 + ], + [ + -112.198131, + 46.261215 + ], + [ + -112.198816, + 46.261348 + ], + [ + -112.200563, + 46.261639 + ], + [ + -112.2012, + 46.261735 + ], + [ + -112.201697, + 46.261796 + ], + [ + -112.202216, + 46.261831 + ], + [ + -112.202661, + 46.261847 + ], + [ + -112.203293, + 46.261844 + ], + [ + -112.203843, + 46.26181 + ], + [ + -112.204643, + 46.261713 + ], + [ + -112.205502, + 46.261541 + ], + [ + -112.206283, + 46.261328 + ], + [ + -112.207158, + 46.260978 + ], + [ + -112.20773, + 46.260725 + ], + [ + -112.208199, + 46.260464 + ], + [ + -112.209872, + 46.259361 + ], + [ + -112.210845, + 46.258723 + ], + [ + -112.211437, + 46.258407 + ], + [ + -112.21171, + 46.258294 + ], + [ + -112.211974, + 46.258207 + ], + [ + -112.212216, + 46.258142 + ], + [ + -112.212463, + 46.258092 + ], + [ + -112.212751, + 46.258048 + ], + [ + -112.213051, + 46.258024 + ], + [ + -112.213334, + 46.258019 + ], + [ + -112.213692, + 46.258035 + ], + [ + -112.213988, + 46.258065 + ], + [ + -112.214247, + 46.258108 + ], + [ + -112.214549, + 46.258186 + ], + [ + -112.21472, + 46.258241 + ], + [ + -112.214928, + 46.258313 + ], + [ + -112.21526, + 46.258456 + ], + [ + -112.215539, + 46.258605 + ], + [ + -112.215859, + 46.258826 + ], + [ + -112.216123, + 46.259059 + ], + [ + -112.216344, + 46.259307 + ], + [ + -112.216538, + 46.259564 + ], + [ + -112.217304, + 46.260578 + ], + [ + -112.217586, + 46.260888 + ], + [ + -112.217887, + 46.26118 + ], + [ + -112.218436, + 46.261654 + ], + [ + -112.219097, + 46.262058 + ], + [ + -112.219818, + 46.262508 + ], + [ + -112.220179, + 46.262823 + ], + [ + -112.220462, + 46.263203 + ], + [ + -112.220625, + 46.263654 + ], + [ + -112.220625, + 46.264105 + ], + [ + -112.220513, + 46.26455 + ], + [ + -112.220273, + 46.264918 + ], + [ + -112.21993, + 46.265238 + ], + [ + -112.219466, + 46.265558 + ], + [ + -112.218514, + 46.266039 + ], + [ + -112.218288, + 46.266167 + ], + [ + -112.218079, + 46.266291 + ], + [ + -112.217885, + 46.266411 + ], + [ + -112.217737, + 46.266539 + ], + [ + -112.217605, + 46.266696 + ], + [ + -112.217501, + 46.266818 + ], + [ + -112.217396, + 46.266989 + ], + [ + -112.21734, + 46.267123 + ], + [ + -112.217303, + 46.267314 + ], + [ + -112.217283, + 46.267445 + ], + [ + -112.217325, + 46.267714 + ], + [ + -112.217476, + 46.26824 + ], + [ + -112.217544, + 46.268438 + ], + [ + -112.217592, + 46.268538 + ], + [ + -112.217628, + 46.268615 + ], + [ + -112.217724, + 46.268751 + ], + [ + -112.217818, + 46.268858 + ], + [ + -112.217936, + 46.268959 + ], + [ + -112.21813, + 46.269104 + ], + [ + -112.218353, + 46.26922 + ], + [ + -112.218727, + 46.26937 + ], + [ + -112.219166, + 46.269489 + ], + [ + -112.219721, + 46.269609 + ], + [ + -112.220202, + 46.269698 + ], + [ + -112.220646, + 46.269797 + ], + [ + -112.220996, + 46.2699 + ], + [ + -112.22144, + 46.27005 + ], + [ + -112.222711, + 46.270631 + ], + [ + -112.223277, + 46.270851 + ], + [ + -112.22399, + 46.271017 + ], + [ + -112.224668, + 46.271076 + ], + [ + -112.225371, + 46.270993 + ], + [ + -112.227174, + 46.270608 + ], + [ + -112.227989, + 46.270507 + ], + [ + -112.22883, + 46.270519 + ], + [ + -112.229611, + 46.270726 + ], + [ + -112.232341, + 46.271693 + ], + [ + -112.232993, + 46.27186 + ], + [ + -112.233723, + 46.271966 + ], + [ + -112.234744, + 46.271978 + ], + [ + -112.239606, + 46.271805 + ], + [ + -112.242182, + 46.271693 + ], + [ + -112.246347, + 46.271502 + ], + [ + -112.246967, + 46.271459 + ], + [ + -112.247491, + 46.271415 + ], + [ + -112.247911, + 46.271379 + ], + [ + -112.248545, + 46.271312 + ], + [ + -112.249143, + 46.271217 + ], + [ + -112.250763, + 46.270938 + ], + [ + -112.251919, + 46.270715 + ], + [ + -112.254271, + 46.270264 + ], + [ + -112.255138, + 46.270086 + ], + [ + -112.255979, + 46.269973 + ], + [ + -112.256923, + 46.269854 + ], + [ + -112.257798, + 46.269753 + ], + [ + -112.258871, + 46.269706 + ], + [ + -112.259953, + 46.269694 + ], + [ + -112.260408, + 46.269688 + ], + [ + -112.260811, + 46.269688 + ], + [ + -112.265927, + 46.269838 + ], + [ + -112.266364, + 46.269845 + ], + [ + -112.268516, + 46.269903 + ], + [ + -112.26928, + 46.269923 + ], + [ + -112.269822, + 46.269932 + ], + [ + -112.270297, + 46.269936 + ], + [ + -112.270632, + 46.269932 + ], + [ + -112.271986, + 46.269899 + ], + [ + -112.272496, + 46.269882 + ], + [ + -112.272871, + 46.269875 + ], + [ + -112.273201, + 46.26988 + ], + [ + -112.273496, + 46.269893 + ], + [ + -112.273848, + 46.269921 + ], + [ + -112.274451, + 46.269986 + ], + [ + -112.275304, + 46.270084 + ], + [ + -112.275736, + 46.270129 + ], + [ + -112.276214, + 46.270171 + ], + [ + -112.276581, + 46.270192 + ], + [ + -112.276954, + 46.270201 + ], + [ + -112.277383, + 46.270195 + ], + [ + -112.277783, + 46.270179 + ], + [ + -112.278217, + 46.270151 + ], + [ + -112.278636, + 46.270112 + ], + [ + -112.27903, + 46.270058 + ], + [ + -112.279521, + 46.269977 + ], + [ + -112.280084, + 46.269869 + ], + [ + -112.280575, + 46.269771 + ], + [ + -112.281036, + 46.269673 + ], + [ + -112.281492, + 46.269558 + ], + [ + -112.281919, + 46.269443 + ], + [ + -112.282407, + 46.269304 + ], + [ + -112.28289, + 46.269153 + ], + [ + -112.283292, + 46.269013 + ], + [ + -112.283616, + 46.26889 + ], + [ + -112.283914, + 46.268764 + ], + [ + -112.284169, + 46.268638 + ], + [ + -112.284394, + 46.268516 + ], + [ + -112.284601, + 46.268394 + ], + [ + -112.284775, + 46.268275 + ], + [ + -112.284955, + 46.268131 + ], + [ + -112.285087, + 46.268013 + ], + [ + -112.285191, + 46.267897 + ], + [ + -112.285277, + 46.267793 + ], + [ + -112.285357, + 46.267683 + ], + [ + -112.28543, + 46.267542 + ], + [ + -112.285505, + 46.267379 + ], + [ + -112.285561, + 46.267208 + ], + [ + -112.285596, + 46.267049 + ], + [ + -112.28561, + 46.266897 + ], + [ + -112.285612, + 46.266763 + ], + [ + -112.285599, + 46.266613 + ], + [ + -112.285569, + 46.266448 + ], + [ + -112.285505, + 46.266261 + ], + [ + -112.28543, + 46.266096 + ], + [ + -112.285194, + 46.265664 + ], + [ + -112.285025, + 46.265406 + ], + [ + -112.284866, + 46.265152 + ], + [ + -112.284775, + 46.264974 + ], + [ + -112.284703, + 46.264813 + ], + [ + -112.284646, + 46.264655 + ], + [ + -112.284614, + 46.264507 + ], + [ + -112.284598, + 46.264379 + ], + [ + -112.284598, + 46.26421 + ], + [ + -112.284617, + 46.264062 + ], + [ + -112.284665, + 46.263899 + ], + [ + -112.284727, + 46.263728 + ], + [ + -112.284759, + 46.263669 + ], + [ + -112.284821, + 46.263548 + ], + [ + -112.284909, + 46.263418 + ], + [ + -112.284995, + 46.263313 + ], + [ + -112.285121, + 46.263177 + ], + [ + -112.285277, + 46.263038 + ], + [ + -112.285408, + 46.262932 + ], + [ + -112.285591, + 46.262814 + ], + [ + -112.285765, + 46.262716 + ], + [ + -112.285998, + 46.262614 + ], + [ + -112.286237, + 46.262523 + ], + [ + -112.286454, + 46.262454 + ], + [ + -112.286722, + 46.262397 + ], + [ + -112.286953, + 46.262358 + ], + [ + -112.287205, + 46.262334 + ], + [ + -112.287431, + 46.262324 + ], + [ + -112.287599, + 46.262324 + ], + [ + -112.287755, + 46.262332 + ], + [ + -112.287908, + 46.262343 + ], + [ + -112.28809, + 46.262371 + ], + [ + -112.288289, + 46.262408 + ], + [ + -112.288533, + 46.262469 + ], + [ + -112.28878, + 46.262545 + ], + [ + -112.289056, + 46.262641 + ], + [ + -112.28941, + 46.262779 + ], + [ + -112.292288, + 46.263915 + ], + [ + -112.295423, + 46.265141 + ], + [ + -112.295772, + 46.265276 + ], + [ + -112.296799, + 46.265681 + ], + [ + -112.297288, + 46.265857 + ], + [ + -112.29766, + 46.26597 + ], + [ + -112.297998, + 46.266064 + ], + [ + -112.298326, + 46.266135 + ], + [ + -112.298693, + 46.266202 + ], + [ + -112.29902, + 46.266252 + ], + [ + -112.299407, + 46.266294 + ], + [ + -112.299973, + 46.26635 + ], + [ + -112.301962, + 46.266518 + ], + [ + -112.303677, + 46.266665 + ], + [ + -112.30416, + 46.266715 + ], + [ + -112.304799, + 46.266799 + ], + [ + -112.305829, + 46.266965 + ], + [ + -112.307302, + 46.26725 + ], + [ + -112.307798, + 46.267339 + ], + [ + -112.308222, + 46.267413 + ], + [ + -112.308627, + 46.267476 + ], + [ + -112.308997, + 46.267518 + ], + [ + -112.309343, + 46.267554 + ], + [ + -112.309617, + 46.267578 + ], + [ + -112.309941, + 46.267591 + ], + [ + -112.310258, + 46.267602 + ], + [ + -112.310641, + 46.267611 + ], + [ + -112.310985, + 46.267613 + ], + [ + -112.311296, + 46.267607 + ], + [ + -112.311658, + 46.267591 + ], + [ + -112.312055, + 46.267565 + ], + [ + -112.312425, + 46.267535 + ], + [ + -112.312795, + 46.267492 + ], + [ + -112.313219, + 46.267435 + ], + [ + -112.313683, + 46.267359 + ], + [ + -112.31408, + 46.267281 + ], + [ + -112.314484, + 46.267191 + ], + [ + -112.314867, + 46.26709 + ], + [ + -112.315256, + 46.26698 + ], + [ + -112.315717, + 46.266837 + ], + [ + -112.316613, + 46.266561 + ], + [ + -112.317018, + 46.266437 + ], + [ + -112.317471, + 46.266313 + ], + [ + -112.317997, + 46.266179 + ], + [ + -112.318925, + 46.265949 + ], + [ + -112.320151, + 46.265632 + ], + [ + -112.321393, + 46.265313 + ], + [ + -112.325427, + 46.26428 + ], + [ + -112.326138, + 46.264095 + ], + [ + -112.326859, + 46.263917 + ], + [ + -112.327936, + 46.263635 + ], + [ + -112.330428, + 46.263002 + ], + [ + -112.333211, + 46.262287 + ], + [ + -112.334007, + 46.262079 + ], + [ + -112.335292, + 46.261753 + ], + [ + -112.335686, + 46.261652 + ], + [ + -112.336028, + 46.261559 + ], + [ + -112.33637, + 46.261454 + ], + [ + -112.33667, + 46.261355 + ], + [ + -112.336988, + 46.261243 + ], + [ + -112.337325, + 46.261115 + ], + [ + -112.33768, + 46.260971 + ], + [ + -112.338038, + 46.260813 + ], + [ + -112.338363, + 46.260662 + ], + [ + -112.338625, + 46.26053 + ], + [ + -112.338933, + 46.260366 + ], + [ + -112.340256, + 46.259429 + ], + [ + -112.341003, + 46.258829 + ], + [ + -112.341337, + 46.25845 + ], + [ + -112.341646, + 46.258088 + ], + [ + -112.342041, + 46.257506 + ], + [ + -112.342264, + 46.257085 + ], + [ + -112.342513, + 46.256616 + ], + [ + -112.342736, + 46.256052 + ], + [ + -112.343048, + 46.25519 + ], + [ + -112.343088, + 46.254628 + ], + [ + -112.343114, + 46.25404 + ], + [ + -112.342997, + 46.253333 + ], + [ + -112.342814, + 46.252527 + ], + [ + -112.342556, + 46.25188 + ], + [ + -112.341586, + 46.249939 + ], + [ + -112.341209, + 46.248971 + ], + [ + -112.340942, + 46.248152 + ], + [ + -112.340797, + 46.247393 + ], + [ + -112.340711, + 46.246752 + ], + [ + -112.340698, + 46.245956 + ], + [ + -112.340797, + 46.24509 + ], + [ + -112.340934, + 46.2443 + ], + [ + -112.341088, + 46.243617 + ], + [ + -112.341363, + 46.242745 + ], + [ + -112.343732, + 46.236132 + ], + [ + -112.343955, + 46.235443 + ], + [ + -112.344213, + 46.23479 + ], + [ + -112.34459, + 46.234178 + ], + [ + -112.345088, + 46.233513 + ], + [ + -112.346384, + 46.231827 + ], + [ + -112.346848, + 46.231067 + ], + [ + -112.347062, + 46.230402 + ], + [ + -112.347208, + 46.229666 + ], + [ + -112.34738, + 46.228247 + ], + [ + -112.347457, + 46.227659 + ], + [ + -112.347706, + 46.22662 + ], + [ + -112.348072, + 46.225486 + ], + [ + -112.348787, + 46.223592 + ], + [ + -112.349165, + 46.22241 + ], + [ + -112.349268, + 46.221798 + ], + [ + -112.349251, + 46.221163 + ], + [ + -112.348908, + 46.218621 + ], + [ + -112.348822, + 46.218081 + ], + [ + -112.348822, + 46.217392 + ], + [ + -112.348959, + 46.216762 + ], + [ + -112.34944, + 46.215301 + ], + [ + -112.349521, + 46.214586 + ], + [ + -112.349491, + 46.214013 + ], + [ + -112.349328, + 46.213591 + ], + [ + -112.349028, + 46.213021 + ], + [ + -112.348633, + 46.212492 + ], + [ + -112.348169, + 46.211999 + ], + [ + -112.34762, + 46.211619 + ], + [ + -112.346856, + 46.211156 + ], + [ + -112.345869, + 46.21058 + ], + [ + -112.3452, + 46.210051 + ], + [ + -112.344728, + 46.209576 + ], + [ + -112.343234, + 46.207925 + ], + [ + -112.342659, + 46.207307 + ], + [ + -112.341921, + 46.206677 + ], + [ + -112.340814, + 46.205816 + ], + [ + -112.34041, + 46.205465 + ], + [ + -112.340067, + 46.205085 + ], + [ + -112.339802, + 46.204693 + ], + [ + -112.339704, + 46.204467 + ], + [ + -112.339636, + 46.204269 + ], + [ + -112.339591, + 46.204027 + ], + [ + -112.339612, + 46.20382 + ], + [ + -112.339732, + 46.203256 + ], + [ + -112.340033, + 46.20262 + ], + [ + -112.340582, + 46.201913 + ], + [ + -112.341621, + 46.200885 + ], + [ + -112.342062, + 46.200298 + ], + [ + -112.342242, + 46.199944 + ], + [ + -112.342396, + 46.199584 + ], + [ + -112.342597, + 46.199091 + ], + [ + -112.342775, + 46.198631 + ], + [ + -112.343062, + 46.198034 + ], + [ + -112.343303, + 46.197541 + ], + [ + -112.343792, + 46.196904 + ], + [ + -112.344693, + 46.196127 + ], + [ + -112.345387, + 46.19542 + ], + [ + -112.345729, + 46.194938 + ], + [ + -112.345917, + 46.194643 + ], + [ + -112.346069, + 46.194349 + ], + [ + -112.346166, + 46.194045 + ], + [ + -112.346238, + 46.193697 + ], + [ + -112.34623, + 46.193103 + ], + [ + -112.345941, + 46.190673 + ], + [ + -112.345878, + 46.189902 + ], + [ + -112.345728, + 46.189213 + ], + [ + -112.345709, + 46.188344 + ], + [ + -112.345571, + 46.187533 + ], + [ + -112.345558, + 46.186912 + ], + [ + -112.345564, + 46.185992 + ], + [ + -112.345749, + 46.183453 + ], + [ + -112.346234, + 46.177623 + ], + [ + -112.346347, + 46.176821 + ], + [ + -112.346473, + 46.176275 + ], + [ + -112.34671, + 46.175728 + ], + [ + -112.347062, + 46.17511 + ], + [ + -112.347483, + 46.174486 + ], + [ + -112.34822, + 46.173702 + ], + [ + -112.349208, + 46.17291 + ], + [ + -112.3521, + 46.171121 + ], + [ + -112.352701, + 46.170843 + ], + [ + -112.353354, + 46.170627 + ], + [ + -112.354238, + 46.170443 + ], + [ + -112.355396, + 46.170378 + ], + [ + -112.356246, + 46.170461 + ], + [ + -112.358186, + 46.170764 + ], + [ + -112.359293, + 46.170788 + ], + [ + -112.360246, + 46.170669 + ], + [ + -112.361216, + 46.170425 + ], + [ + -112.362177, + 46.170093 + ], + [ + -112.362941, + 46.16973 + ], + [ + -112.363559, + 46.169296 + ], + [ + -112.364125, + 46.168743 + ], + [ + -112.364529, + 46.168119 + ], + [ + -112.365267, + 46.167103 + ], + [ + -112.365816, + 46.166663 + ], + [ + -112.3664, + 46.166336 + ], + [ + -112.367129, + 46.166098 + ], + [ + -112.367868, + 46.165967 + ], + [ + -112.368692, + 46.165944 + ], + [ + -112.371773, + 46.166039 + ], + [ + -112.372811, + 46.166015 + ], + [ + -112.37367, + 46.165902 + ], + [ + -112.374588, + 46.165706 + ], + [ + -112.375592, + 46.165379 + ], + [ + -112.376571, + 46.164951 + ], + [ + -112.377318, + 46.164529 + ], + [ + -112.378076, + 46.163952 + ], + [ + -112.378262, + 46.163762 + ], + [ + -112.378614, + 46.163364 + ], + [ + -112.378914, + 46.162965 + ], + [ + -112.379469, + 46.162169 + ], + [ + -112.382055, + 46.158245 + ], + [ + -112.384021, + 46.155308 + ], + [ + -112.385566, + 46.152959 + ], + [ + -112.387334, + 46.150272 + ], + [ + -112.388458, + 46.14862 + ], + [ + -112.389451, + 46.147108 + ], + [ + -112.391789, + 46.143594 + ], + [ + -112.398669, + 46.133222 + ], + [ + -112.400972, + 46.129712 + ], + [ + -112.4066, + 46.121302 + ], + [ + -112.407393, + 46.120004 + ], + [ + -112.408182, + 46.118582 + ], + [ + -112.408541, + 46.117899 + ], + [ + -112.409937, + 46.114817 + ], + [ + -112.411055, + 46.112333 + ], + [ + -112.412388, + 46.109365 + ], + [ + -112.413655, + 46.106653 + ], + [ + -112.414778, + 46.10418 + ], + [ + -112.415206, + 46.103314 + ], + [ + -112.415668, + 46.102487 + ], + [ + -112.415895, + 46.102106 + ], + [ + -112.416464, + 46.101176 + ], + [ + -112.417083, + 46.100254 + ], + [ + -112.418499, + 46.098356 + ], + [ + -112.418915, + 46.09769 + ], + [ + -112.419526, + 46.096677 + ], + [ + -112.420233, + 46.095398 + ], + [ + -112.422479, + 46.091058 + ], + [ + -112.424336, + 46.087469 + ], + [ + -112.429652, + 46.0772 + ], + [ + -112.429822, + 46.076884 + ], + [ + -112.431392, + 46.07384 + ], + [ + -112.436257, + 46.064391 + ], + [ + -112.436937, + 46.063074 + ], + [ + -112.438079, + 46.061044 + ], + [ + -112.438376, + 46.060532 + ], + [ + -112.438666, + 46.060066 + ], + [ + -112.43881, + 46.05984 + ], + [ + -112.439098, + 46.05943 + ], + [ + -112.43934, + 46.059064 + ], + [ + -112.439532, + 46.058774 + ], + [ + -112.440107, + 46.058002 + ], + [ + -112.44038, + 46.05765 + ], + [ + -112.441731, + 46.056019 + ], + [ + -112.443485, + 46.053949 + ], + [ + -112.447802, + 46.048851 + ], + [ + -112.45155, + 46.044489 + ], + [ + -112.452423, + 46.043435 + ], + [ + -112.452928, + 46.042858 + ], + [ + -112.453336, + 46.042363 + ], + [ + -112.453672, + 46.041989 + ], + [ + -112.454055, + 46.041551 + ], + [ + -112.454342, + 46.04125 + ], + [ + -112.454665, + 46.040886 + ], + [ + -112.456067, + 46.039558 + ], + [ + -112.457335, + 46.038587 + ], + [ + -112.457987, + 46.038059 + ], + [ + -112.458512, + 46.037625 + ], + [ + -112.458842, + 46.037329 + ], + [ + -112.459071, + 46.03709 + ], + [ + -112.459314, + 46.036842 + ], + [ + -112.459518, + 46.03659 + ], + [ + -112.459678, + 46.03639 + ], + [ + -112.4598, + 46.036215 + ], + [ + -112.459891, + 46.036045 + ], + [ + -112.460007, + 46.03582 + ], + [ + -112.460114, + 46.03551 + ], + [ + -112.460172, + 46.035281 + ], + [ + -112.460249, + 46.034999 + ], + [ + -112.460282, + 46.034713 + ], + [ + -112.460289, + 46.034622 + ], + [ + -112.460306, + 46.034393 + ], + [ + -112.46034, + 46.034001 + ], + [ + -112.460377, + 46.033494 + ], + [ + -112.460788, + 46.024225 + ], + [ + -112.460858, + 46.022999 + ], + [ + -112.461034, + 46.021707 + ], + [ + -112.461139, + 46.019417 + ], + [ + -112.461174, + 46.018182 + ], + [ + -112.461374, + 46.013939 + ], + [ + -112.461433, + 46.012326 + ], + [ + -112.461598, + 46.009767 + ], + [ + -112.46173, + 46.007706 + ], + [ + -112.461826, + 46.006592 + ], + [ + -112.461968, + 46.00602 + ], + [ + -112.462225, + 46.00538 + ], + [ + -112.462565, + 46.004722 + ], + [ + -112.463191, + 46.004036 + ], + [ + -112.464072, + 46.003225 + ], + [ + -112.465792, + 46.001872 + ], + [ + -112.466856, + 46.001037 + ], + [ + -112.469268, + 45.999189 + ], + [ + -112.469946, + 45.998682 + ], + [ + -112.470667, + 45.998003 + ], + [ + -112.47113, + 45.997502 + ], + [ + -112.47156, + 45.996917 + ], + [ + -112.471963, + 45.99622 + ], + [ + -112.473459, + 45.993424 + ], + [ + -112.474051, + 45.992464 + ], + [ + -112.474317, + 45.992004 + ], + [ + -112.475276, + 45.990233 + ], + [ + -112.475566, + 45.989642 + ], + [ + -112.476695, + 45.987673 + ], + [ + -112.477014, + 45.987068 + ], + [ + -112.477395, + 45.986399 + ], + [ + -112.477976, + 45.985327 + ], + [ + -112.478243, + 45.984818 + ], + [ + -112.478421, + 45.98455 + ], + [ + -112.478851, + 45.983744 + ], + [ + -112.479177, + 45.983218 + ], + [ + -112.479374, + 45.982981 + ], + [ + -112.479538, + 45.982795 + ], + [ + -112.47971, + 45.982636 + ], + [ + -112.479894, + 45.982492 + ], + [ + -112.480132, + 45.982326 + ], + [ + -112.48042, + 45.982142 + ], + [ + -112.480713, + 45.981993 + ], + [ + -112.481018, + 45.981862 + ], + [ + -112.481235, + 45.981784 + ], + [ + -112.481491, + 45.981708 + ], + [ + -112.481819, + 45.981612 + ], + [ + -112.482235, + 45.981526 + ], + [ + -112.482576, + 45.981485 + ], + [ + -112.482792, + 45.981468 + ], + [ + -112.483106, + 45.981448 + ], + [ + -112.484674, + 45.981411 + ], + [ + -112.485533, + 45.981393 + ], + [ + -112.486142, + 45.981346 + ], + [ + -112.486888, + 45.981343 + ], + [ + -112.488415, + 45.981329 + ], + [ + -112.48942, + 45.981323 + ], + [ + -112.489915, + 45.981311 + ], + [ + -112.490321, + 45.981291 + ], + [ + -112.491262, + 45.981187 + ], + [ + -112.492077, + 45.981092 + ], + [ + -112.492755, + 45.980966 + ], + [ + -112.49327, + 45.980829 + ], + [ + -112.494197, + 45.980567 + ], + [ + -112.495345, + 45.9802 + ], + [ + -112.496229, + 45.979974 + ], + [ + -112.496927, + 45.979831 + ], + [ + -112.497708, + 45.979756 + ], + [ + -112.4986, + 45.979744 + ], + [ + -112.499484, + 45.979774 + ], + [ + -112.500257, + 45.979863 + ], + [ + -112.501047, + 45.980042 + ], + [ + -112.501432, + 45.980146 + ], + [ + -112.501772, + 45.980251 + ], + [ + -112.502162, + 45.980391 + ], + [ + -112.502441, + 45.980505 + ], + [ + -112.502715, + 45.980622 + ], + [ + -112.503036, + 45.980793 + ], + [ + -112.503323, + 45.980946 + ], + [ + -112.503646, + 45.981153 + ], + [ + -112.503934, + 45.981351 + ], + [ + -112.504203, + 45.981566 + ], + [ + -112.504427, + 45.981757 + ], + [ + -112.504926, + 45.982217 + ], + [ + -112.505529, + 45.982793 + ], + [ + -112.505933, + 45.983132 + ], + [ + -112.506153, + 45.983296 + ], + [ + -112.506336, + 45.983431 + ], + [ + -112.506571, + 45.983586 + ], + [ + -112.506888, + 45.983789 + ], + [ + -112.507196, + 45.983956 + ], + [ + -112.507471, + 45.984097 + ], + [ + -112.507799, + 45.984272 + ], + [ + -112.508512, + 45.98456 + ], + [ + -112.508794, + 45.984651 + ], + [ + -112.50906, + 45.984738 + ], + [ + -112.509415, + 45.984842 + ], + [ + -112.509964, + 45.984998 + ], + [ + -112.512836, + 45.985714 + ], + [ + -112.514063, + 45.986044 + ], + [ + -112.515749, + 45.986501 + ], + [ + -112.516874, + 45.986847 + ], + [ + -112.529602, + 45.991803 + ], + [ + -112.530598, + 45.992131 + ], + [ + -112.531516, + 45.992333 + ], + [ + -112.5324, + 45.992476 + ], + [ + -112.533044, + 45.992536 + ], + [ + -112.533894, + 45.992542 + ], + [ + -112.538675, + 45.992548 + ], + [ + -112.539481, + 45.992542 + ], + [ + -112.544571, + 45.992548 + ], + [ + -112.54755, + 45.9925 + ], + [ + -112.549472, + 45.992518 + ], + [ + -112.552176, + 45.992548 + ], + [ + -112.553189, + 45.992614 + ], + [ + -112.554167, + 45.992739 + ], + [ + -112.555008, + 45.992942 + ], + [ + -112.559798, + 45.994337 + ], + [ + -112.560613, + 45.994587 + ], + [ + -112.561471, + 45.994951 + ], + [ + -112.562235, + 45.995404 + ], + [ + -112.562816, + 45.995834 + ], + [ + -112.563071, + 45.996064 + ], + [ + -112.563323, + 45.996326 + ], + [ + -112.563586, + 45.996638 + ], + [ + -112.563846, + 45.996975 + ], + [ + -112.564136, + 45.997384 + ], + [ + -112.564414, + 45.997764 + ], + [ + -112.565162, + 45.998934 + ], + [ + -112.565743, + 45.999683 + ], + [ + -112.566655, + 46.000955 + ], + [ + -112.567437, + 46.001903 + ], + [ + -112.56802, + 46.002517 + ], + [ + -112.568741, + 46.003096 + ], + [ + -112.569419, + 46.003525 + ], + [ + -112.570063, + 46.003859 + ], + [ + -112.570964, + 46.004318 + ], + [ + -112.571822, + 46.004693 + ], + [ + -112.572895, + 46.005009 + ], + [ + -112.573848, + 46.00523 + ], + [ + -112.574775, + 46.005379 + ], + [ + -112.575728, + 46.005463 + ], + [ + -112.577187, + 46.005504 + ], + [ + -112.577788, + 46.005522 + ], + [ + -112.582056, + 46.005676 + ], + [ + -112.594885, + 46.006166 + ], + [ + -112.604584, + 46.006524 + ], + [ + -112.605451, + 46.006619 + ], + [ + -112.607283, + 46.006843 + ], + [ + -112.610896, + 46.007381 + ], + [ + -112.611152, + 46.005948 + ], + [ + -112.61121, + 46.005792 + ], + [ + -112.611238, + 46.005609 + ], + [ + -112.608284, + 46.004266 + ], + [ + -112.607739, + 46.003921 + ], + [ + -112.607191, + 46.003516 + ], + [ + -112.606953, + 46.003377 + ], + [ + -112.606693, + 46.003274 + ], + [ + -112.606342, + 46.003193 + ], + [ + -112.606239, + 46.00317 + ], + [ + -112.604638, + 46.002827 + ], + [ + -112.603223, + 46.002511 + ], + [ + -112.603052, + 46.002473 + ], + [ + -112.60203, + 46.002278 + ], + [ + -112.601516, + 46.002219 + ], + [ + -112.601276, + 46.00221 + ], + [ + -112.600883, + 46.002212 + ], + [ + -112.600496, + 46.00223 + ], + [ + -112.600404, + 46.002208 + ], + [ + -112.60036, + 46.002173 + ], + [ + -112.600327, + 46.002117 + ], + [ + -112.600314, + 46.002059 + ], + [ + -112.600333, + 46.001927 + ], + [ + -112.600381, + 46.001853 + ], + [ + -112.60049, + 46.001777 + ], + [ + -112.600599, + 46.001745 + ], + [ + -112.600713, + 46.001737 + ], + [ + -112.600862, + 46.001739 + ], + [ + -112.601544, + 46.001798 + ], + [ + -112.601657, + 46.001792 + ], + [ + -112.601804, + 46.001767 + ], + [ + -112.601918, + 46.001724 + ], + [ + -112.602008, + 46.001673 + ], + [ + -112.602239, + 46.001528 + ], + [ + -112.602389, + 46.001412 + ], + [ + -112.602658, + 46.001185 + ], + [ + -112.60307, + 46.000822 + ], + [ + -112.603218, + 46.000656 + ], + [ + -112.603405, + 46.000474 + ], + [ + -112.60366, + 46.000513 + ], + [ + -112.603842, + 46.000532 + ], + [ + -112.604078, + 46.000549 + ], + [ + -112.604254, + 46.000547 + ], + [ + -112.605018, + 46.00043 + ], + [ + -112.605491, + 46.000395 + ], + [ + -112.605766, + 46.000402 + ], + [ + -112.606076, + 46.000466 + ], + [ + -112.606209, + 46.00049 + ], + [ + -112.606364, + 46.000494 + ], + [ + -112.606548, + 46.000466 + ], + [ + -112.607005, + 46.000359 + ], + [ + -112.607412, + 46.000312 + ], + [ + -112.611416, + 46.000299 + ], + [ + -112.611653, + 46.000242 + ], + [ + -112.611812, + 46.000145 + ], + [ + -112.611932, + 45.999965 + ], + [ + -112.611906, + 45.993731 + ], + [ + -112.611956, + 45.990322 + ], + [ + -112.611963, + 45.987384 + ], + [ + -112.611945, + 45.986839 + ], + [ + -112.611983, + 45.986517 + ], + [ + -112.612211, + 45.985826 + ], + [ + -112.612974, + 45.983191 + ], + [ + -112.613351, + 45.982047 + ], + [ + -112.613508, + 45.981723 + ], + [ + -112.613655, + 45.98152 + ], + [ + -112.613973, + 45.981284 + ], + [ + -112.61573, + 45.980235 + ], + [ + -112.61642, + 45.979923 + ], + [ + -112.617405, + 45.979519 + ], + [ + -112.618068, + 45.979213 + ], + [ + -112.618669, + 45.978865 + ], + [ + -112.620246, + 45.977619 + ], + [ + -112.620586, + 45.977289 + ], + [ + -112.621106, + 45.976592 + ], + [ + -112.622154, + 45.975079 + ], + [ + -112.622235, + 45.974699 + ], + [ + -112.622281, + 45.973317 + ], + [ + -112.622078, + 45.970234 + ], + [ + -112.619831, + 45.970225 + ], + [ + -112.614288, + 45.970203 + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -112.60660171508789, + 45.96021963947196 + ] + } + }, + { + "type": "Feature", + "properties": { + "dist": 0.7825944108810942, + "index": 3759, + "marker-color": "#f0f" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -112.614288, + 45.970203 + ] + } + } + ] +} \ No newline at end of file diff --git a/packages/turf-point-on-surface/.npmignore b/packages/turf-point-on-surface/.npmignore new file mode 100644 index 0000000000..bb3c08c09a --- /dev/null +++ b/packages/turf-point-on-surface/.npmignore @@ -0,0 +1,2 @@ +test +coverage diff --git a/packages/turf-point-on-surface/LICENSE b/packages/turf-point-on-surface/LICENSE new file mode 100644 index 0000000000..8196c22c13 --- /dev/null +++ b/packages/turf-point-on-surface/LICENSE @@ -0,0 +1,22 @@ +The MIT License (MIT) + +Copyright (c) 2014 turf + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + diff --git a/packages/turf-point-on-surface/README.md b/packages/turf-point-on-surface/README.md new file mode 100644 index 0000000000..0f87acdf68 --- /dev/null +++ b/packages/turf-point-on-surface/README.md @@ -0,0 +1,60 @@ +# turf-point-on-surface + +[![build status](https://secure.travis-ci.org/Turfjs/turf-point-on-surface.png)](http://travis-ci.org/Turfjs/turf-point-on-surface) + +turf point-on-surface module + + +### `turf.point-on-surface(input)` + +Takes a feature and returns a Point guaranteed to be on the surface of the feature. + +* Given a Polygon, the point will be in the area of the polygon +* Given a LineString, the point will be along the string +* Given a Point, the point will the same as the input + + +### Parameters + +| parameter | type | description | +| --------- | -------------------------- | ------------------------------ | +| `input` | Feature\,FeatureCollection | any feature or set of features | + + +### Example + +```js +// create a random polygon +var polygon = turf.random('polygon'); + +//=polygon + +var pointOnPolygon = turf.pointOnSurface(polygon); + +var resultFeatures = polygon.features.concat(pointOnPolygon); +var result = { + "type": "FeatureCollection", + "features": resultFeatures +}; + +//=result +``` + + +**Returns** `Feature`, a point on the surface of `input` + +## Installation + +Requires [nodejs](http://nodejs.org/). + +```sh +$ npm install turf-point-on-surface +``` + +## Tests + +```sh +$ npm test +``` + + diff --git a/packages/turf-point-on-surface/bench.js b/packages/turf-point-on-surface/bench.js new file mode 100644 index 0000000000..f0e6720759 --- /dev/null +++ b/packages/turf-point-on-surface/bench.js @@ -0,0 +1,18 @@ +var centroid = require('./'); +var Benchmark = require('benchmark'); +var fs = require('fs'); + +var fc = JSON.parse(fs.readFileSync(__dirname + '/test/polygons.geojson')); + +var suite = new Benchmark.Suite('turf-point-on-surface'); +suite + .add('turf-point-on-surface',function () { + centroid(fc); + }) + .on('cycle', function (event) { + console.log(String(event.target)); + }) + .on('complete', function () { + + }) + .run(); diff --git a/packages/turf-point-on-surface/index.js b/packages/turf-point-on-surface/index.js new file mode 100644 index 0000000000..9fa1d90194 --- /dev/null +++ b/packages/turf-point-on-surface/index.js @@ -0,0 +1,149 @@ +var featureCollection = require('turf-helpers').featureCollection; +var centroid = require('turf-center'); +var distance = require('turf-distance'); +var inside = require('turf-inside'); +var explode = require('turf-explode'); + +/** + * Takes a feature and returns a {@link Point} guaranteed to be on the surface of the feature. + * + * * Given a {@link Polygon}, the point will be in the area of the polygon + * * Given a {@link LineString}, the point will be along the string + * * Given a {@link Point}, the point will the same as the input + * + * @category measurement + * @param {(Feature|FeatureCollection)} fc any feature or set of features + * @returns {Feature} a point on the surface of `input` + * @example + * // create a random polygon + * var polygon = turf.random('polygon'); + * + * //=polygon + * + * var pointOnPolygon = turf.pointOnSurface(polygon); + * +* var resultFeatures = polygon.features.concat(pointOnPolygon); +* var result = { +* "type": "FeatureCollection", +* "features": resultFeatures +* }; + * + * //=result + */ +function pointOnSurface(fc) { + // normalize + if (fc.type !== 'FeatureCollection') { + if (fc.type !== 'Feature') { + fc = { + type: 'Feature', + geometry: fc, + properties: {} + }; + } + fc = featureCollection([fc]); + } + + //get centroid + var cent = centroid(fc); + + // check to see if centroid is on surface + var onSurface = false; + var i = 0; + while (!onSurface && i < fc.features.length) { + var geom = fc.features[i].geometry; + var x, y, x1, y1, x2, y2, k; + var onLine = false; + if (geom.type === 'Point') { + if (cent.geometry.coordinates[0] === geom.coordinates[0] && + cent.geometry.coordinates[1] === geom.coordinates[1]) { + onSurface = true; + } + } else if (geom.type === 'MultiPoint') { + var onMultiPoint = false; + k = 0; + while (!onMultiPoint && k < geom.coordinates.length) { + if (cent.geometry.coordinates[0] === geom.coordinates[k][0] && + cent.geometry.coordinates[1] === geom.coordinates[k][1]) { + onSurface = true; + onMultiPoint = true; + } + k++; + } + } else if (geom.type === 'LineString') { + k = 0; + while (!onLine && k < geom.coordinates.length - 1) { + x = cent.geometry.coordinates[0]; + y = cent.geometry.coordinates[1]; + x1 = geom.coordinates[k][0]; + y1 = geom.coordinates[k][1]; + x2 = geom.coordinates[k + 1][0]; + y2 = geom.coordinates[k + 1][1]; + if (pointOnSegment(x, y, x1, y1, x2, y2)) { + onLine = true; + onSurface = true; + } + k++; + } + } else if (geom.type === 'MultiLineString') { + var j = 0; + while (j < geom.coordinates.length) { + onLine = false; + k = 0; + var line = geom.coordinates[j]; + while (!onLine && k < line.length - 1) { + x = cent.geometry.coordinates[0]; + y = cent.geometry.coordinates[1]; + x1 = line[k][0]; + y1 = line[k][1]; + x2 = line[k + 1][0]; + y2 = line[k + 1][1]; + if (pointOnSegment(x, y, x1, y1, x2, y2)) { + onLine = true; + onSurface = true; + } + k++; + } + j++; + } + } else if (geom.type === 'Polygon' || geom.type === 'MultiPolygon') { + var f = { + type: 'Feature', + geometry: geom, + properties: {} + }; + if (inside(cent, f)) { + onSurface = true; + } + } + i++; + } + if (onSurface) { + return cent; + } else { + var vertices = featureCollection([]); + for (i = 0; i < fc.features.length; i++) { + vertices.features = vertices.features.concat(explode(fc.features[i]).features); + } + var closestVertex; + var closestDistance = Infinity; + for (i = 0; i < vertices.features.length; i++) { + var dist = distance(cent, vertices.features[i], 'miles'); + if (dist < closestDistance) { + closestDistance = dist; + closestVertex = vertices.features[i]; + } + } + return closestVertex; + } +} + +function pointOnSegment(x, y, x1, y1, x2, y2) { + var ab = Math.sqrt((x2 - x1) * (x2 - x1) + (y2 - y1) * (y2 - y1)); + var ap = Math.sqrt((x - x1) * (x - x1) + (y - y1) * (y - y1)); + var pb = Math.sqrt((x2 - x) * (x2 - x) + (y2 - y) * (y2 - y)); + if (ab === ap + pb) { + return true; + } +} + +module.exports = pointOnSurface; diff --git a/packages/turf-point-on-surface/package.json b/packages/turf-point-on-surface/package.json new file mode 100644 index 0000000000..6703609cb5 --- /dev/null +++ b/packages/turf-point-on-surface/package.json @@ -0,0 +1,38 @@ +{ + "name": "turf-point-on-surface", + "version": "3.0.5", + "description": "turf point-on-surface module", + "main": "index.js", + "scripts": { + "test": "node test.js" + }, + "repository": { + "type": "git", + "url": "https://github.com/Turfjs/turf-point-on-surface.git" + }, + "keywords": [ + "turf", + "centroid", + "geojson", + "point", + "surface", + "polygon" + ], + "author": "morganherlocker", + "license": "MIT", + "bugs": { + "url": "https://github.com/Turfjs/turf-point-on-surface/issues" + }, + "homepage": "https://github.com/Turfjs/turf-point-on-surface", + "devDependencies": { + "tape": "^3.5.0", + "benchmark": "^1.0.0" + }, + "dependencies": { + "turf-center": "^3.0.5", + "turf-distance": "^3.0.5", + "turf-explode": "^3.0.5", + "turf-inside": "^3.0.5", + "turf-helpers": "^3.0.5" + } +} diff --git a/packages/turf-point-on-surface/test.js b/packages/turf-point-on-surface/test.js new file mode 100644 index 0000000000..a3ae40a04a --- /dev/null +++ b/packages/turf-point-on-surface/test.js @@ -0,0 +1,113 @@ +var test = require('tape'); +var centroid = require('./'); +var fs = require('fs'); +var inside = require('turf-inside'); + +test('point-on-surface -- closest vertex on polygons', function(t) { + var fc = JSON.parse(fs.readFileSync(__dirname + '/test/polygons.geojson')); + var cent = centroid(fc); + + t.ok(cent, 'centroid returned'); + t.equal(cent.type, 'Feature'); + t.equal(cent.geometry.type, 'Point'); + t.equal(typeof cent.geometry.coordinates[0], 'number'); + t.equal(typeof cent.geometry.coordinates[1], 'number'); + + t.end(); +}); + +test('point-on-surface -- centroid on polygon surface', function(t) { + var fc = JSON.parse(fs.readFileSync(__dirname + '/test/polygon-in-center.geojson')); + var cent = centroid(fc); + + t.ok(cent, 'centroid returned'); + t.equal(cent.type, 'Feature'); + t.equal(cent.geometry.type, 'Point'); + t.equal(typeof cent.geometry.coordinates[0], 'number'); + t.equal(typeof cent.geometry.coordinates[1], 'number'); + t.true(inside(cent, { + type: "Feature", + properties: {}, + geometry: { + type: "Polygon", + coordinates: [ + [ + [ + 13.270797729492186, + 52.42042920678164 + ], + [ + 13.270797729492186, + 52.573846203920276 + ], + [ + 13.5186767578125, + 52.573846203920276 + ], + [ + 13.5186767578125, + 52.42042920678164 + ], + [ + 13.270797729492186, + 52.42042920678164 + ] + ] + ] + } + })); + + t.end(); +}); + +test('point-on-surface -- closest vertex on lines', function(t) { + var fc = JSON.parse(fs.readFileSync(__dirname + '/test/lines.geojson')); + var cent = centroid(fc); + + t.ok(cent, 'centroid returned'); + t.equal(cent.type, 'Feature'); + t.equal(cent.geometry.type, 'Point'); + t.equal(typeof cent.geometry.coordinates[0], 'number'); + t.equal(typeof cent.geometry.coordinates[1], 'number'); + + t.end(); +}); + +test('point-on-surface -- closest vertex on multilinestring', function(t) { + var fc = JSON.parse(fs.readFileSync(__dirname + '/test/multiline.geojson')); + var cent = centroid(fc); + + t.ok(cent, 'centroid returned'); + t.equal(cent.type, 'Feature'); + t.equal(cent.geometry.type, 'Point'); + t.equal(typeof cent.geometry.coordinates[0], 'number'); + t.equal(typeof cent.geometry.coordinates[1], 'number'); + + t.end(); +}); + +test('point-on-surface -- multipolygon', function(t) { + var fc = JSON.parse(fs.readFileSync(__dirname + '/test/multipolygon.geojson')); + var cent = centroid(fc); + + t.ok(cent, 'centroid returned'); + t.equal(cent.type, 'Feature'); + t.equal(cent.geometry.type, 'Point'); + t.equal(typeof cent.geometry.coordinates[0], 'number'); + t.equal(typeof cent.geometry.coordinates[1], 'number'); + + t.end(); +}); + +test('point-on-surface -- multipoint', function(t) { + var fc = JSON.parse(fs.readFileSync(__dirname + '/test/multipoint.geojson')); + var cent = centroid(fc); + + t.ok(cent, 'centroid returned'); + t.equal(cent.type, 'Feature'); + t.equal(cent.geometry.type, 'Point'); + t.equal(typeof cent.geometry.coordinates[0], 'number'); + t.equal(typeof cent.geometry.coordinates[1], 'number'); + + t.end(); +}); diff --git a/packages/turf-point-on-surface/test/lines.geojson b/packages/turf-point-on-surface/test/lines.geojson new file mode 100644 index 0000000000..e308e76cb1 --- /dev/null +++ b/packages/turf-point-on-surface/test/lines.geojson @@ -0,0 +1,125 @@ +{ + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 24.08203125, + -16.59408141271846 + ], + [ + 25.059814453125, + -14.519780046326073 + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 28.410644531249996, + -14.955399325942619 + ], + [ + 28.7841796875, + -15.845104902273452 + ], + [ + 27.6416015625, + -16.13026201203474 + ], + [ + 27.432861328125, + -17.518344187852218 + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 26.652832031249996, + -13.485789593908478 + ], + [ + 26.268310546875, + -14.891704754215462 + ], + [ + 25.86181640625, + -14.88108715909066 + ], + [ + 25.894775390625, + -15.421910399947057 + ], + [ + 26.323242187499996, + -15.5701278526594 + ], + [ + 26.224365234375, + -16.066928957450106 + ], + [ + 26.510009765625, + -16.583552354072005 + ], + [ + 25.927734374999996, + -16.836089974560213 + ], + [ + 25.147705078125, + -17.245744208007117 + ], + [ + 26.34521484375, + -18.271086109608863 + ], + [ + 25.33447265625, + -18.531700307384043 + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 24.466552734375, + -14.211138758545781 + ], + [ + 25.389404296875, + -13.710035342476669 + ], + [ + 25.609130859375, + -13.944729974920154 + ], + [ + 26.3671875, + -13.090179355733726 + ] + ] + } + } + ] +} \ No newline at end of file diff --git a/packages/turf-point-on-surface/test/multiline.geojson b/packages/turf-point-on-surface/test/multiline.geojson new file mode 100644 index 0000000000..08ad7d864c --- /dev/null +++ b/packages/turf-point-on-surface/test/multiline.geojson @@ -0,0 +1,115 @@ +{ + "type": "Feature", + "properties": {}, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [ + 92.08740234375, + 50.708634400828224 + ], + [ + 93.0322265625, + 50.84757295365389 + ], + [ + 94.32861328125, + 50.499452103967734 + ], + [ + 95.25146484374999, + 50.0077390146369 + ], + [ + 97.470703125, + 49.908787000867136 + ], + [ + 98.4375, + 50.51342652633956 + ], + [ + 98.10791015625, + 51.467696956223385 + ], + [ + 99.5361328125, + 52.07950600379697 + ], + [ + 101.14013671875, + 51.645294049305406 + ], + [ + 102.37060546875, + 51.22064743038333 + ], + [ + 102.37060546875, + 50.764259357116465 + ], + [ + 103.18359375, + 50.30337575356313 + ], + [ + 104.56787109374999, + 50.24720490139267 + ], + [ + 105.84228515625, + 50.54136296522161 + ], + [ + 106.89697265625, + 50.2612538275847 + ] + ], + [ + [ + 97.294921875, + 53.605544099237974 + ], + [ + 99.4482421875, + 54.213861000644926 + ], + [ + 99.73388671874999, + 54.04648911335576 + ], + [ + 100.8984375, + 53.969012350740314 + ], + [ + 101.29394531249999, + 53.69670647530323 + ] + ], + [ + [ + 95.0537109375, + 47.68018294648414 + ], + [ + 96.416015625, + 47.502358951968574 + ], + [ + 97.05322265625, + 46.84516443029276 + ], + [ + 98.41552734375, + 47.76886840424207 + ], + [ + 98.89892578125, + 47.45780853075031 + ] + ] + ] + } +} \ No newline at end of file diff --git a/packages/turf-point-on-surface/test/multipoint.geojson b/packages/turf-point-on-surface/test/multipoint.geojson new file mode 100644 index 0000000000..23aaf43c48 --- /dev/null +++ b/packages/turf-point-on-surface/test/multipoint.geojson @@ -0,0 +1,29 @@ +{ + "type": "Feature", + "properties": {}, + "geometry": { + "type": "MultiPoint", + "coordinates": [ + [ + 63.6328125, + 57.7041472343419 + ], + [ + 42.1875, + 52.482780222078226 + ], + [ + 71.015625, + 29.22889003019423 + ], + [ + 48.1640625, + 37.71859032558816 + ], + [ + 73.47656249999999, + 49.61070993807422 + ] + ] + } +} \ No newline at end of file diff --git a/packages/turf-point-on-surface/test/multipolygon.geojson b/packages/turf-point-on-surface/test/multipolygon.geojson new file mode 100644 index 0000000000..95d7afb771 --- /dev/null +++ b/packages/turf-point-on-surface/test/multipolygon.geojson @@ -0,0 +1,81 @@ +{ + "type": "Feature", + "properties": {}, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 12.041015625, + 36.66841891894786 + ], + [ + 12.041015625, + 39.16414104768742 + ], + [ + 15.161132812500002, + 39.16414104768742 + ], + [ + 15.161132812500002, + 36.66841891894786 + ], + [ + 12.041015625, + 36.66841891894786 + ] + ] + ], + [ + [ + [ + 15.732421875, + 31.42866311735861 + ], + [ + 15.732421875, + 34.92197103616377 + ], + [ + 19.775390625, + 34.92197103616377 + ], + [ + 19.775390625, + 31.42866311735861 + ], + [ + 15.732421875, + 31.42866311735861 + ] + ] + ], + [ + [ + [ + 18.3251953125, + 37.68382032669382 + ], + [ + 18.3251953125, + 42.65012181368025 + ], + [ + 22.0166015625, + 42.65012181368025 + ], + [ + 22.0166015625, + 37.68382032669382 + ], + [ + 18.3251953125, + 37.68382032669382 + ] + ] + ] + ] + } +} \ No newline at end of file diff --git a/packages/turf-point-on-surface/test/polygon-in-center.geojson b/packages/turf-point-on-surface/test/polygon-in-center.geojson new file mode 100644 index 0000000000..4473d97fff --- /dev/null +++ b/packages/turf-point-on-surface/test/polygon-in-center.geojson @@ -0,0 +1,67 @@ +{ + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.270797729492186, + 52.42042920678164 + ], + [ + 13.270797729492186, + 52.573846203920276 + ], + [ + 13.5186767578125, + 52.573846203920276 + ], + [ + 13.5186767578125, + 52.42042920678164 + ], + [ + 13.270797729492186, + 52.42042920678164 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.526229858398438, + 52.58177420312145 + ], + [ + 13.526229858398438, + 52.61013634893439 + ], + [ + 13.572921752929686, + 52.61013634893439 + ], + [ + 13.572921752929686, + 52.58177420312145 + ], + [ + 13.526229858398438, + 52.58177420312145 + ] + ] + ] + } + } + ] +} \ No newline at end of file diff --git a/packages/turf-point-on-surface/test/polygons.geojson b/packages/turf-point-on-surface/test/polygons.geojson new file mode 100644 index 0000000000..a18c18244f --- /dev/null +++ b/packages/turf-point-on-surface/test/polygons.geojson @@ -0,0 +1,171 @@ +{ + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.4638671875, + 38.496593518947556 + ], + [ + -81.05712890625, + 38.22091976683121 + ], + [ + -80.518798828125, + 37.640334898059486 + ], + [ + -78.81591796875, + 36.730079507078415 + ], + [ + -78.167724609375, + 37.01132594307015 + ], + [ + -78.673095703125, + 37.55328764595765 + ], + [ + -78.94775390625, + 37.49229399862877 + ], + [ + -79.112548828125, + 37.68382032669382 + ], + [ + -79.51904296874999, + 37.75334401310656 + ], + [ + -79.090576171875, + 38.039438891821746 + ], + [ + -79.47509765625, + 38.1172716583054 + ], + [ + -79.969482421875, + 38.315801006824984 + ], + [ + -79.683837890625, + 38.47939467327645 + ], + [ + -79.793701171875, + 38.62545397209084 + ], + [ + -80.09033203125, + 38.71123253895224 + ], + [ + -80.33203125, + 39.104488809440475 + ], + [ + -80.4638671875, + 38.496593518947556 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.17919921875, + 41.00477542222949 + ], + [ + -77.091064453125, + 40.97160353279909 + ], + [ + -77.28881835937499, + 40.27952566881291 + ], + [ + -77.080078125, + 40.271143686084194 + ], + [ + -77.003173828125, + 40.136890695345905 + ], + [ + -76.7724609375, + 40.195659093364654 + ], + [ + -76.86035156249999, + 39.93501296038254 + ], + [ + -76.66259765625, + 40.0360265298117 + ], + [ + -76.37695312499999, + 39.614152077002636 + ], + [ + -75.992431640625, + 39.614152077002636 + ], + [ + -75.76171875, + 39.42770738465604 + ], + [ + -75.465087890625, + 39.40224434029275 + ], + [ + -75.377197265625, + 39.68182601089365 + ], + [ + -75.5419921875, + 40.455307212131494 + ], + [ + -76.17919921875, + 40.55554790286311 + ], + [ + -75.750732421875, + 40.697299008636755 + ], + [ + -76.1572265625, + 40.72228267283148 + ], + [ + -75.992431640625, + 40.94671366508002 + ], + [ + -76.17919921875, + 41.00477542222949 + ] + ] + ] + } + } + ] +} \ No newline at end of file diff --git a/packages/turf-random/.npmignore b/packages/turf-random/.npmignore new file mode 100644 index 0000000000..bb3c08c09a --- /dev/null +++ b/packages/turf-random/.npmignore @@ -0,0 +1,2 @@ +test +coverage diff --git a/packages/turf-random/README.md b/packages/turf-random/README.md new file mode 100644 index 0000000000..e97dc91bb8 --- /dev/null +++ b/packages/turf-random/README.md @@ -0,0 +1,61 @@ +# turf-random + +[![build status](https://secure.travis-ci.org/Turfjs/turf-random.png)](http://travis-ci.org/Turfjs/turf-random) + +generate random features + + +### `turf.random([type='point'], [count=1], options, options.bbox, [options.num_vertices=10], [options.max_radial_length=10])` + +Generates random GeoJSON data, including Point|Points and Polygon|Polygons, for testing +and experimentation. + + +### Parameters + +| parameter | type | description | +| -------------------------------- | ----------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | +| `[type='point']` | String | _optional:_ type of features desired: 'points' or 'polygons' | +| `[count=1]` | Number | _optional:_ how many geometries should be generated. | +| `options` | Object | options relevant to the feature desired. Can include: | +| `options.bbox` | Array\.\ | a bounding box inside of which geometries are placed. In the case of Point features, they are guaranteed to be within this bounds, +while Polygon features have their centroid within the bounds. | +| `[options.num_vertices=10]` | Number | _optional:_ options.vertices the number of vertices added to polygon features. | +| `[options.max_radial_length=10]` | Number | _optional:_ the total number of decimal degrees longitude or latitude that a polygon can extent outwards to +from its center. | + + +### Example + +```js +var points = turf.random('points', 100, { + bbox: [-70, 40, -60, 60] +}); + +//=points + +var polygons = turf.random('polygons', 4, { + bbox: [-70, 40, -60, 60] +}); + +//=polygons +``` + + +**Returns** `FeatureCollection`, generated random features + +## Installation + +Requires [nodejs](http://nodejs.org/). + +```sh +$ npm install turf-random +``` + +## Tests + +```sh +$ npm test +``` + + diff --git a/packages/turf-random/bench.js b/packages/turf-random/bench.js new file mode 100644 index 0000000000..813dd044aa --- /dev/null +++ b/packages/turf-random/bench.js @@ -0,0 +1,15 @@ +var random = require('./'); +var Benchmark = require('benchmark'); + +var suite = new Benchmark.Suite('turf-random'); +suite + .add('turf-random',function () { + random('point'); + }) + .on('cycle', function (event) { + console.log(String(event.target)); + }) + .on('complete', function () { + + }) + .run(); diff --git a/packages/turf-random/index.js b/packages/turf-random/index.js new file mode 100644 index 0000000000..98b1064dd2 --- /dev/null +++ b/packages/turf-random/index.js @@ -0,0 +1,52 @@ +var random = require('geojson-random'); + +/** + * Generates random {@link GeoJSON} data, including {@link Point|Points} and {@link Polygon|Polygons}, for testing + * and experimentation. + * + * @name random + * @category data + * @param {String} [type='point'] type of features desired: 'points' or 'polygons' + * @param {Number} [count=1] how many geometries should be generated. + * @param {Object} options options relevant to the feature desired. Can include: + * @param {Array} options.bbox a bounding box inside of which geometries + * are placed. In the case of {@link Point} features, they are guaranteed to be within this bounds, + * while {@link Polygon} features have their centroid within the bounds. + * @param {Number} [options.num_vertices=10] options.vertices the number of vertices added + * to polygon features. + * @param {Number} [options.max_radial_length=10] the total number of decimal + * degrees longitude or latitude that a polygon can extent outwards to + * from its center. + * @return {FeatureCollection} generated random features + * @example + * var points = turf.random('points', 100, { + * bbox: [-70, 40, -60, 60] + * }); + * + * //=points + * + * var polygons = turf.random('polygons', 4, { + * bbox: [-70, 40, -60, 60] + * }); + * + * //=polygons + */ +module.exports = function (type, count, options) { + options = options || {}; + count = count || 1; + switch (type) { + case 'point': + case 'points': + case undefined: + return random.point(count, options.bbox); + case 'polygon': + case 'polygons': + return random.polygon( + count, + options.num_vertices, + options.max_radial_length, + options.bbox); + default: + throw new Error('Unknown type given: valid options are points and polygons'); + } +}; diff --git a/packages/turf-random/package.json b/packages/turf-random/package.json new file mode 100644 index 0000000000..d706d43d1f --- /dev/null +++ b/packages/turf-random/package.json @@ -0,0 +1,31 @@ +{ + "name": "turf-random", + "version": "3.0.1", + "description": "generate random features", + "main": "index.js", + "scripts": { + "test": "tape test.js" + }, + "repository": { + "type": "git", + "url": "git@github.com:Turfjs/turf-random.git" + }, + "keywords": [ + "turf", + "gis" + ], + "author": "Tom MacWright", + "license": "ISC", + "bugs": { + "url": "https://github.com/Turfjs/turf-random/issues" + }, + "homepage": "https://github.com/Turfjs/turf-random", + "devDependencies": { + "benchmark": "^1.0.0", + "glob": "~4.3.5", + "tape": "~3.5.0" + }, + "dependencies": { + "geojson-random": "^0.2.2" + } +} diff --git a/packages/turf-random/test.js b/packages/turf-random/test.js new file mode 100644 index 0000000000..8dc8a3f827 --- /dev/null +++ b/packages/turf-random/test.js @@ -0,0 +1,43 @@ +var test = require('tape'); +var random = require('./'); + +test('random(points)', function(t){ + var points = random('points'); + t.equal(points.type, 'FeatureCollection', 'is a featurecollection'); + t.equal(points.features.length, 1, 'right number of features'); + t.equal(points.features[0].geometry.type, 'Point', 'feature type correct'); + t.end(); +}); + +test('random(polygons)', function(t){ + var points = random('polygons'); + t.equal(points.type, 'FeatureCollection', 'is a featurecollection'); + t.equal(points.features.length, 1, 'right number of features'); + t.equal(points.features[0].geometry.type, 'Polygon', 'feature type correct'); + t.end(); +}); + +test('random(polygons, 10)', function(t){ + var points = random('polygons', 10); + t.equal(points.type, 'FeatureCollection', 'is a featurecollection'); + t.equal(points.features.length, 10, 'right number of features'); + t.equal(points.features[0].geometry.type, 'Polygon', 'feature type correct'); + t.end(); +}); + +test('random(polygons, 1, {num_vertices})', function(t){ + var points = random('polygons', 10, {num_vertices:23}); + t.equal(points.type, 'FeatureCollection', 'is a featurecollection'); + t.equal(points.features.length, 10, 'right number of features'); + t.equal(points.features[0].geometry.coordinates[0].length, 24, 'num vertices'); + t.end(); +}); + +test('random(points, 10, {bbox})', function(t){ + var points = random('points', 10, { bbox: [0, 0, 0, 0] }); + t.equal(points.type, 'FeatureCollection', 'is a featurecollection'); + t.equal(points.features.length, 10, 'right number of features'); + t.equal(points.features[0].geometry.type, 'Point', 'feature type correct'); + t.deepEqual(points.features[0].geometry.coordinates, [0,0], 'feature type correct'); + t.end(); +}); diff --git a/packages/turf-sample/.npmignore b/packages/turf-sample/.npmignore new file mode 100644 index 0000000000..bb3c08c09a --- /dev/null +++ b/packages/turf-sample/.npmignore @@ -0,0 +1,2 @@ +test +coverage diff --git a/packages/turf-sample/LICENSE b/packages/turf-sample/LICENSE new file mode 100644 index 0000000000..64fb8e99a3 --- /dev/null +++ b/packages/turf-sample/LICENSE @@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) 2014 Morgan Herlocker + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. \ No newline at end of file diff --git a/packages/turf-sample/README.md b/packages/turf-sample/README.md new file mode 100644 index 0000000000..b26c2c0644 --- /dev/null +++ b/packages/turf-sample/README.md @@ -0,0 +1,50 @@ +# turf-sample + +[![build status](https://secure.travis-ci.org/Turfjs/turf-sample.png)](http://travis-ci.org/Turfjs/turf-sample) + +turf sample module + + +### `turf.sample(features, n)` + +Takes a FeatureCollection and returns a FeatureCollection with given number of Feature|features at random. + + +### Parameters + +| parameter | type | description | +| ---------- | ----------------- | ---------------------------- | +| `features` | FeatureCollection | set of input features | +| `n` | Number | number of features to select | + + +### Example + +```js +var points = turf.random('points', 1000); + +//=points + +var sample = turf.sample(points, 10); + +//=sample +``` + + +**Returns** `FeatureCollection`, a FeatureCollection with `n` features + +## Installation + +Requires [nodejs](http://nodejs.org/). + +```sh +$ npm install turf-sample +``` + +## Tests + +```sh +$ npm test +``` + + diff --git a/packages/turf-sample/bench.js b/packages/turf-sample/bench.js new file mode 100644 index 0000000000..c32574c4b8 --- /dev/null +++ b/packages/turf-sample/bench.js @@ -0,0 +1,26 @@ +var sample = require('./'); +var Benchmark = require('benchmark'); +var fs = require('fs'); +var featurecollection = require('turf-helpers').featureCollection; +var point = require('turf-helpers').point; + +var points = featureCollection( + [point(1,2, {team: 'Red Sox'}), + point(2,1, {team: 'Yankees'}), + point(3,1, {team: 'Nationals'}), + point(2,2, {team: 'Yankees'}), + point(2,3, {team: 'Red Sox'}), + point(4,2, {team: 'Yankees'})]); + +var suite = new Benchmark.Suite('turf-sample'); +suite + .add('turf-sample',function () { + sample(points, 4); + }) + .on('cycle', function (event) { + console.log(String(event.target)); + }) + .on('complete', function () { + + }) + .run(); \ No newline at end of file diff --git a/packages/turf-sample/index.js b/packages/turf-sample/index.js new file mode 100644 index 0000000000..ee82a714fb --- /dev/null +++ b/packages/turf-sample/index.js @@ -0,0 +1,35 @@ +// http://stackoverflow.com/questions/11935175/sampling-a-random-subset-from-an-array +var featureCollection = require('turf-helpers').featureCollection; + +/** + * Takes a {@link FeatureCollection} and returns a FeatureCollection with given number of {@link Feature|features} at random. + * + * @name sample + * @category data + * @param {FeatureCollection} features set of input features + * @param {Number} n number of features to select + * @return {FeatureCollection} a FeatureCollection with `n` features + * @example + * var points = turf.random('points', 1000); + * + * //=points + * + * var sample = turf.sample(points, 10); + * + * //=sample + */ +module.exports = function (fc, num) { + var outFC = featureCollection(getRandomSubarray(fc.features, num)); + return outFC; +}; + +function getRandomSubarray(arr, size) { + var shuffled = arr.slice(0), i = arr.length, min = i - size, temp, index; + while (i-- > min) { + index = Math.floor((i + 1) * Math.random()); + temp = shuffled[index]; + shuffled[index] = shuffled[i]; + shuffled[i] = temp; + } + return shuffled.slice(min); +} diff --git a/packages/turf-sample/package.json b/packages/turf-sample/package.json new file mode 100644 index 0000000000..218c06715e --- /dev/null +++ b/packages/turf-sample/package.json @@ -0,0 +1,33 @@ +{ + "name": "turf-sample", + "version": "3.0.5", + "description": "turf sample module", + "main": "index.js", + "scripts": { + "test": "node test" + }, + "repository": { + "type": "git", + "url": "https://github.com/Turfjs/turf-sample.git" + }, + "keywords": [ + "geojson", + "stats", + "sample", + "turf" + ], + "author": "morganherlocker", + "license": "MIT", + "bugs": { + "url": "https://github.com/Turfjs/turf-sample/issues" + }, + "homepage": "https://github.com/Turfjs/turf-sample", + "devDependencies": { + "benchmark": "^1.0.0", + "tape": "^3.5.0", + "turf-helpers": "^3.0.5" + }, + "dependencies": { + "turf-helpers": "^3.0.5" + } +} diff --git a/packages/turf-sample/test.js b/packages/turf-sample/test.js new file mode 100644 index 0000000000..69a628d012 --- /dev/null +++ b/packages/turf-sample/test.js @@ -0,0 +1,19 @@ +var test = require('tape'); +var sample = require('./'); +var featureCollection = require('turf-helpers').featureCollection; +var point = require('turf-helpers').point; + +test('remove', function(t){ + var points = featureCollection( + [point([1,2], {team: 'Red Sox'}), + point([2,1], {team: 'Yankees'}), + point([3,1], {team: 'Nationals'}), + point([2,2], {team: 'Yankees'}), + point([2,3], {team: 'Red Sox'}), + point([4,2], {team: 'Yankees'})]); + + newFC = sample(points, 4); + + t.equal(newFC.features.length, 4, 'should sample 4 features'); + t.end(); +}); diff --git a/packages/turf-simplify/.npmignore b/packages/turf-simplify/.npmignore new file mode 100644 index 0000000000..bb3c08c09a --- /dev/null +++ b/packages/turf-simplify/.npmignore @@ -0,0 +1,2 @@ +test +coverage diff --git a/packages/turf-simplify/README.md b/packages/turf-simplify/README.md new file mode 100644 index 0000000000..eeb856b9d6 --- /dev/null +++ b/packages/turf-simplify/README.md @@ -0,0 +1,82 @@ +# turf-simplify + +[![build status](https://secure.travis-ci.org/Turfjs/turf-simplify.png)](http://travis-ci.org/Turfjs/turf-simplify) + +simplify geographic shapes + + +### `turf.simplify(feature, tolerance, highQuality)` + +Takes a LineString or Polygon and returns a simplified version. Internally uses [simplify-js](http://mourner.github.io/simplify-js/) to perform simplification. + + +### Parameters + +| parameter | type | description | +| ------------- | ------------------------------- | ------------------------------------------------------------------------------------------------------ | +| `feature` | Feature\.\ | feature to be simplified | +| `tolerance` | Number | simplification tolerance | +| `highQuality` | Boolean | whether or not to spend more time to create a higher-quality simplification with a different algorithm | + + +### Example + +```js +var feature = { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [[ + [-70.603637, -33.399918], + [-70.614624, -33.395332], + [-70.639343, -33.392466], + [-70.659942, -33.394759], + [-70.683975, -33.404504], + [-70.697021, -33.419406], + [-70.701141, -33.434306], + [-70.700454, -33.446339], + [-70.694274, -33.458369], + [-70.682601, -33.465816], + [-70.668869, -33.472117], + [-70.646209, -33.473835], + [-70.624923, -33.472117], + [-70.609817, -33.468107], + [-70.595397, -33.458369], + [-70.587158, -33.442901], + [-70.587158, -33.426283], + [-70.590591, -33.414248], + [-70.594711, -33.406224], + [-70.603637, -33.399918] + ]] + } +}; + +var tolerance = 0.01; + +var simplified = turf.simplify( + feature, tolerance, false); + +//=feature + +//=simplified +``` + + +**Returns** `Feature.`, a simplified feature + +## Installation + +Requires [nodejs](http://nodejs.org/). + +```sh +$ npm install turf-simplify +``` + +## Tests + +```sh +$ npm test +``` + + diff --git a/packages/turf-simplify/bench.js b/packages/turf-simplify/bench.js new file mode 100644 index 0000000000..5c7fe8735c --- /dev/null +++ b/packages/turf-simplify/bench.js @@ -0,0 +1,45 @@ +var simplify = require('./'); +var Benchmark = require('benchmark'); +var fs = require('fs'); + +var line = JSON.parse(fs.readFileSync(__dirname+'/test/fixtures/in/linestring.geojson')); +var multiline = JSON.parse(fs.readFileSync(__dirname+'/test/fixtures/in/multilinestring.geojson')); +var poly = JSON.parse(fs.readFileSync(__dirname+'/test/fixtures/in/polygon.geojson')); +var multipoly = JSON.parse(fs.readFileSync(__dirname+'/test/fixtures/in/multipolygon.geojson')); +var simple = JSON.parse(fs.readFileSync(__dirname+'/test/fixtures/in/simple.geojson')); +var featurecollection = JSON.parse(fs.readFileSync(__dirname+'/test/fixtures/in/featurecollection.geojson')); +var geometrycollection = JSON.parse(fs.readFileSync(__dirname+'/test/fixtures/in/geometrycollection.geojson')); +var argentina = JSON.parse(fs.readFileSync(__dirname+'/test/fixtures/in/argentina.geojson')); +var suite = new Benchmark.Suite('turf-simplify'); +suite + .add('turf-simplify#LineString',function () { + simplify(line, 0.1, 0); + }) + .add('turf-simplify#MultiLineString',function () { + simplify(multiline, 0.01, 0); + }) + .add('turf-simplify#Polygon',function () { + simplify(poly, 0.01, 0); + }) + .add('turf-simplify#MultiPolygon',function () { + simplify(multipoly, 0.01, 0); + }) + .add('turf-simplify#SimplePolygon',function () { + simplify(simple, 0.01, 0); + }) + .add('turf-simplify#FeatureCollection',function () { + simplify(featurecollection, 0.01, 0); + }) + .add('turf-simplify#GeometryCollection',function () { + simplify(geometrycollection, 0.01, 0); + }) + .add('turf-simplify#Argentina',function () { + simplify(argentina, 0.05, 0); + }) + .on('cycle', function (event) { + console.log(String(event.target)); + }) + .on('complete', function () { + + }) + .run(); diff --git a/packages/turf-simplify/index.js b/packages/turf-simplify/index.js new file mode 100644 index 0000000000..9f0ce22f4f --- /dev/null +++ b/packages/turf-simplify/index.js @@ -0,0 +1,182 @@ +var simplify = require('simplify-js'); + +// supported GeoJSON geometries, used to check whether to wrap in simpleFeature() +var supportedTypes = ['LineString', 'MultiLineString', 'Polygon', 'MultiPolygon']; + +/** + * Takes a {@link LineString} or {@link Polygon} and returns a simplified version. Internally uses [simplify-js](http://mourner.github.io/simplify-js/) to perform simplification. + * + * @name simplify + * @category transformation + * @param {Feature<(LineString|Polygon|MultiLineString|MultiPolygon)>|FeatureCollection|GeometryCollection} feature feature to be simplified + * @param {Number} tolerance simplification tolerance + * @param {Boolean} highQuality whether or not to spend more time to create + * a higher-quality simplification with a different algorithm + * @return {Feature<(LineString|Polygon|MultiLineString|MultiPolygon)>|FeatureCollection|GeometryCollection} a simplified feature + * @example + * var feature = { + * "type": "Feature", + * "properties": {}, + * "geometry": { + * "type": "Polygon", + * "coordinates": [[ + * [-70.603637, -33.399918], + * [-70.614624, -33.395332], + * [-70.639343, -33.392466], + * [-70.659942, -33.394759], + * [-70.683975, -33.404504], + * [-70.697021, -33.419406], + * [-70.701141, -33.434306], + * [-70.700454, -33.446339], + * [-70.694274, -33.458369], + * [-70.682601, -33.465816], + * [-70.668869, -33.472117], + * [-70.646209, -33.473835], + * [-70.624923, -33.472117], + * [-70.609817, -33.468107], + * [-70.595397, -33.458369], + * [-70.587158, -33.442901], + * [-70.587158, -33.426283], + * [-70.590591, -33.414248], + * [-70.594711, -33.406224], + * [-70.603637, -33.399918] + * ]] + * } + * }; + + * var tolerance = 0.01; + * + * var simplified = turf.simplify( + * feature, tolerance, false); + * + * //=feature + * + * //=simplified + */ +module.exports = function (feature, tolerance, highQuality) { + if (feature.type === 'Feature') { + return simpleFeature( + simplifyHelper(feature, tolerance, highQuality), + feature.properties); + } else if (feature.type === 'FeatureCollection') { + return { + type: 'FeatureCollection', + features: feature.features.map(function (f) { + var simplified = simplifyHelper(f, tolerance, highQuality); + + // we create simpleFeature here because it doesn't apply to GeometryCollection + // so we can't create it at simplifyHelper() + if (supportedTypes.indexOf(simplified.type) > -1) { + return simpleFeature(simplified, f.properties); + } else { + return simplified; + } + }) + }; + } else if (feature.type === 'GeometryCollection') { + return { + type: 'GeometryCollection', + geometries: feature.geometries.map(function (g) { + if (supportedTypes.indexOf(g.type) > -1) { + return simplifyHelper({ + type: 'Feature', + geometry: g + }, tolerance, highQuality); + } + return g; + }) + }; + } else { + return feature; + } +}; + + +function simplifyHelper(feature, tolerance, highQuality) { + if (feature.geometry.type === 'LineString') { + return { + type: 'LineString', + coordinates: simplifyLine(feature.geometry.coordinates, tolerance, highQuality) + }; + } else if (feature.geometry.type === 'MultiLineString') { + return { + type: 'MultiLineString', + coordinates: feature.geometry.coordinates.map(function (lines) { + return simplifyLine(lines, tolerance, highQuality); + }) + }; + } else if (feature.geometry.type === 'Polygon') { + return { + type: 'Polygon', + coordinates: simplifyPolygon(feature.geometry.coordinates, tolerance, highQuality) + }; + } else if (feature.geometry.type === 'MultiPolygon') { + return { + type: 'MultiPolygon', + coordinates: feature.geometry.coordinates.map(function (rings) { + return simplifyPolygon(rings, tolerance, highQuality); + }) + }; + } else { + // unsupported geometry type supplied + return feature; + } +} + +/* +* returns true if ring's first coordinate is the same as its last +*/ +function checkValidity(ring) { + if (ring.length < 3) { + return false; + //if the last point is the same as the first, it's not a triangle + } else if (ring.length === 3 && + ((ring[2][0] === ring[0][0]) && (ring[2][1] === ring[0][1]))) { + return false; + } else { + return true; + } +} + +function simpleFeature(geom, properties) { + return { + type: 'Feature', + geometry: geom, + properties: properties + }; +} + +function simplifyLine(coordinates, tolerance, highQuality) { + return simplify(coordinates.map(function (coord) { + return {x: coord[0], y: coord[1]}; + }), tolerance, highQuality).map(function (coords) { + return [coords.x, coords.y]; + }); +} + +function simplifyPolygon(coordinates, tolerance, highQuality) { + return coordinates.map(function (ring) { + var pts = ring.map(function (coord) { + return {x: coord[0], y: coord[1]}; + }); + if (pts.length < 4) { + throw new Error('Invalid polygon'); + } + var simpleRing = simplify(pts, tolerance, highQuality).map(function (coords) { + return [coords.x, coords.y]; + }); + //remove 1 percent of tolerance until enough points to make a triangle + while (!checkValidity(simpleRing)) { + tolerance -= tolerance * 0.01; + simpleRing = simplify(pts, tolerance, highQuality).map(function (coords) { + return [coords.x, coords.y]; + }); + } + if ( + (simpleRing[simpleRing.length - 1][0] !== simpleRing[0][0]) || + (simpleRing[simpleRing.length - 1][1] !== simpleRing[0][1])) { + simpleRing.push(simpleRing[0]); + } + return simpleRing; + }); +} diff --git a/packages/turf-simplify/package.json b/packages/turf-simplify/package.json new file mode 100644 index 0000000000..486c0399ec --- /dev/null +++ b/packages/turf-simplify/package.json @@ -0,0 +1,34 @@ +{ + "name": "turf-simplify", + "version": "3.0.1", + "description": "simplify geographic shapes", + "main": "index.js", + "directories": { + "test": "test" + }, + "scripts": { + "test": "tape test/*.js" + }, + "repository": { + "type": "git", + "url": "git@github.com:Turfjs/turf-simplify.git" + }, + "keywords": [ + "turf", + "gis", + "simplify" + ], + "author": "Morgan Herlocker", + "license": "ISC", + "bugs": { + "url": "https://github.com/Turfjs/turf-simplify/issues" + }, + "homepage": "https://github.com/Turfjs/turf-simplify", + "devDependencies": { + "benchmark": "^1.0.0", + "tape": "~3.5.0" + }, + "dependencies": { + "simplify-js": "^1.2.1" + } +} diff --git a/packages/turf-simplify/test/fixtures/in/argentina.geojson b/packages/turf-simplify/test/fixtures/in/argentina.geojson new file mode 100644 index 0000000000..15cd5152a9 --- /dev/null +++ b/packages/turf-simplify/test/fixtures/in/argentina.geojson @@ -0,0 +1 @@ +{"type":"Feature","id":"ARG","properties":{"name":"Argentina"},"geometry":{"type":"Polygon","coordinates":[[[-64.964892,-22.075862],[-64.377021,-22.798091],[-63.986838,-21.993644],[-62.846468,-22.034985],[-62.685057,-22.249029],[-60.846565,-23.880713],[-60.028966,-24.032796],[-58.807128,-24.771459],[-57.777217,-25.16234],[-57.63366,-25.603657],[-58.618174,-27.123719],[-57.60976,-27.395899],[-56.486702,-27.548499],[-55.695846,-27.387837],[-54.788795,-26.621786],[-54.625291,-25.739255],[-54.13005,-25.547639],[-53.628349,-26.124865],[-53.648735,-26.923473],[-54.490725,-27.474757],[-55.162286,-27.881915],[-56.2909,-28.852761],[-57.625133,-30.216295],[-57.874937,-31.016556],[-58.14244,-32.044504],[-58.132648,-33.040567],[-58.349611,-33.263189],[-58.427074,-33.909454],[-58.495442,-34.43149],[-57.22583,-35.288027],[-57.362359,-35.97739],[-56.737487,-36.413126],[-56.788285,-36.901572],[-57.749157,-38.183871],[-59.231857,-38.72022],[-61.237445,-38.928425],[-62.335957,-38.827707],[-62.125763,-39.424105],[-62.330531,-40.172586],[-62.145994,-40.676897],[-62.745803,-41.028761],[-63.770495,-41.166789],[-64.73209,-40.802677],[-65.118035,-41.064315],[-64.978561,-42.058001],[-64.303408,-42.359016],[-63.755948,-42.043687],[-63.458059,-42.563138],[-64.378804,-42.873558],[-65.181804,-43.495381],[-65.328823,-44.501366],[-65.565269,-45.036786],[-66.509966,-45.039628],[-67.293794,-45.551896],[-67.580546,-46.301773],[-66.597066,-47.033925],[-65.641027,-47.236135],[-65.985088,-48.133289],[-67.166179,-48.697337],[-67.816088,-49.869669],[-68.728745,-50.264218],[-69.138539,-50.73251],[-68.815561,-51.771104],[-68.149995,-52.349983],[-68.571545,-52.299444],[-69.498362,-52.142761],[-71.914804,-52.009022],[-72.329404,-51.425956],[-72.309974,-50.67701],[-72.975747,-50.74145],[-73.328051,-50.378785],[-73.415436,-49.318436],[-72.648247,-48.878618],[-72.331161,-48.244238],[-72.447355,-47.738533],[-71.917258,-46.884838],[-71.552009,-45.560733],[-71.659316,-44.973689],[-71.222779,-44.784243],[-71.329801,-44.407522],[-71.793623,-44.207172],[-71.464056,-43.787611],[-71.915424,-43.408565],[-72.148898,-42.254888],[-71.746804,-42.051386],[-71.915734,-40.832339],[-71.680761,-39.808164],[-71.413517,-38.916022],[-70.814664,-38.552995],[-71.118625,-37.576827],[-71.121881,-36.658124],[-70.364769,-36.005089],[-70.388049,-35.169688],[-69.817309,-34.193571],[-69.814777,-33.273886],[-70.074399,-33.09121],[-70.535069,-31.36501],[-69.919008,-30.336339],[-70.01355,-29.367923],[-69.65613,-28.459141],[-69.001235,-27.521214],[-68.295542,-26.89934],[-68.5948,-26.506909],[-68.386001,-26.185016],[-68.417653,-24.518555],[-67.328443,-24.025303],[-66.985234,-22.986349],[-67.106674,-22.735925],[-66.273339,-21.83231],[-64.964892,-22.075862]]]}} diff --git a/packages/turf-simplify/test/fixtures/in/featurecollection.geojson b/packages/turf-simplify/test/fixtures/in/featurecollection.geojson new file mode 100644 index 0000000000..9068345164 --- /dev/null +++ b/packages/turf-simplify/test/fixtures/in/featurecollection.geojson @@ -0,0 +1,377 @@ +{ + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 27.977542877197266, + -26.17500493262446 + ], + [ + 27.975482940673828, + -26.17870225771557 + ], + [ + 27.969818115234375, + -26.177931991326645 + ], + [ + 27.967071533203125, + -26.177623883345735 + ], + [ + 27.966899871826172, + -26.1810130263384 + ], + [ + 27.967758178710938, + -26.1853263385099 + ], + [ + 27.97290802001953, + -26.1853263385099 + ], + [ + 27.97496795654297, + -26.18270756087535 + ], + [ + 27.97840118408203, + -26.1810130263384 + ], + [ + 27.98011779785156, + -26.183323749143113 + ], + [ + 27.98011779785156, + -26.18655868408986 + ], + [ + 27.978744506835938, + -26.18933141398614 + ], + [ + 27.97496795654297, + -26.19025564262006 + ], + [ + 27.97119140625, + -26.19040968001282 + ], + [ + 27.969303131103516, + -26.1899475672235 + ], + [ + 27.96741485595703, + -26.189639491012183 + ], + [ + 27.9656982421875, + -26.187945057286793 + ], + [ + 27.965354919433594, + -26.18563442612686 + ], + [ + 27.96432495117187, + -26.183015655416536 + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 27.972049713134762, + -26.199035448897074 + ], + [ + 27.9741096496582, + -26.196108920345292 + ], + [ + 27.977371215820312, + -26.197495179879635 + ], + [ + 27.978572845458984, + -26.20042167359348 + ], + [ + 27.980976104736328, + -26.200729721284862 + ], + [ + 27.982349395751953, + -26.197803235312957 + ], + [ + 27.982177734375, + -26.194414580727656 + ], + [ + 27.982177734375, + -26.19256618212382 + ], + [ + 27.98406600952148, + -26.192258112838022 + ], + [ + 27.985267639160156, + -26.191950042737417 + ], + [ + 27.986125946044922, + -26.19426054863105 + ], + [ + 27.986984252929688, + -26.196416979445644 + ], + [ + 27.987327575683594, + -26.198881422912123 + ], + [ + 27.98715591430664, + -26.201345814222698 + ], + [ + 27.985095977783203, + -26.20381015337393 + ], + [ + 27.983036041259766, + -26.20550435628209 + ], + [ + 27.979946136474606, + -26.20550435628209 + ], + [ + 27.97719955444336, + -26.20488828535003 + ], + [ + 27.97445297241211, + -26.203656133705152 + ], + [ + 27.972564697265625, + -26.201961903900578 + ], + [ + 27.972049713134762, + -26.199035448897074 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 27.946643829345703, + -26.170845301716803 + ], + [ + 27.94269561767578, + -26.183631842055114 + ], + [ + 27.935657501220703, + -26.183323749143113 + ], + [ + 27.92741775512695, + -26.17685360983018 + ], + [ + 27.926902770996094, + -26.171153427614488 + ], + [ + 27.928619384765625, + -26.165298896316028 + ], + [ + 27.936859130859375, + -26.161292995018652 + ], + [ + 27.94509887695312, + -26.158981835530525 + ], + [ + 27.950420379638672, + -26.161601146157146 + ], + [ + 27.951793670654297, + -26.166223315536712 + ], + [ + 27.954025268554688, + -26.173464345889972 + ], + [ + 27.954025268554688, + -26.179626570662702 + ], + [ + 27.951278686523438, + -26.187945057286793 + ], + [ + 27.944583892822266, + -26.19395248382672 + ], + [ + 27.936172485351562, + -26.194876675795218 + ], + [ + 27.930850982666016, + -26.19379845111899 + ], + [ + 27.925701141357422, + -26.190563717201886 + ], + [ + 27.92278289794922, + -26.18655868408986 + ], + [ + 27.92072296142578, + -26.180858976522302 + ], + [ + 27.917118072509766, + -26.174080583026957 + ], + [ + 27.916603088378906, + -26.16683959094609 + ], + [ + 27.917118072509766, + -26.162987816205614 + ], + [ + 27.920207977294922, + -26.162987816205614 + ], + [ + 27.920894622802734, + -26.166069246175482 + ], + [ + 27.9217529296875, + -26.17146155269785 + ], + [ + 27.923297882080078, + -26.177469829049862 + ], + [ + 27.92673110961914, + -26.184248025435295 + ], + [ + 27.930335998535156, + -26.18856121785662 + ], + [ + 27.936687469482422, + -26.18871525748988 + ], + [ + 27.942352294921875, + -26.187945057286793 + ], + [ + 27.94647216796875, + -26.184248025435295 + ], + [ + 27.946815490722653, + -26.178548204845022 + ], + [ + 27.946643829345703, + -26.170845301716803 + ] + ], + [ + [ + 27.936859130859375, + -26.16591517661071 + ], + [ + 27.934799194335938, + -26.16945872510008 + ], + [ + 27.93497085571289, + -26.173926524048102 + ], + [ + 27.93874740600586, + -26.175621161617432 + ], + [ + 27.94149398803711, + -26.17007498340995 + ], + [ + 27.94321060180664, + -26.166223315536712 + ], + [ + 27.939090728759762, + -26.164528541367826 + ], + [ + 27.937545776367188, + -26.16406632595636 + ], + [ + 27.936859130859375, + -26.16591517661071 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 27.95642852783203, + -26.152510345365126 + ] + } + } + ] +} diff --git a/packages/turf-simplify/test/fixtures/in/geometrycollection.geojson b/packages/turf-simplify/test/fixtures/in/geometrycollection.geojson new file mode 100644 index 0000000000..32a92b1f50 --- /dev/null +++ b/packages/turf-simplify/test/fixtures/in/geometrycollection.geojson @@ -0,0 +1,361 @@ +{ + "type": "GeometryCollection", + "geometries": [ + { + "type": "LineString", + "coordinates": [ + [ + 27.977542877197266, + -26.17500493262446 + ], + [ + 27.975482940673828, + -26.17870225771557 + ], + [ + 27.969818115234375, + -26.177931991326645 + ], + [ + 27.967071533203125, + -26.177623883345735 + ], + [ + 27.966899871826172, + -26.1810130263384 + ], + [ + 27.967758178710938, + -26.1853263385099 + ], + [ + 27.97290802001953, + -26.1853263385099 + ], + [ + 27.97496795654297, + -26.18270756087535 + ], + [ + 27.97840118408203, + -26.1810130263384 + ], + [ + 27.98011779785156, + -26.183323749143113 + ], + [ + 27.98011779785156, + -26.18655868408986 + ], + [ + 27.978744506835938, + -26.18933141398614 + ], + [ + 27.97496795654297, + -26.19025564262006 + ], + [ + 27.97119140625, + -26.19040968001282 + ], + [ + 27.969303131103516, + -26.1899475672235 + ], + [ + 27.96741485595703, + -26.189639491012183 + ], + [ + 27.9656982421875, + -26.187945057286793 + ], + [ + 27.965354919433594, + -26.18563442612686 + ], + [ + 27.96432495117187, + -26.183015655416536 + ] + ] + }, + { + "type": "Polygon", + "coordinates": [ + [ + [ + 27.972049713134762, + -26.199035448897074 + ], + [ + 27.9741096496582, + -26.196108920345292 + ], + [ + 27.977371215820312, + -26.197495179879635 + ], + [ + 27.978572845458984, + -26.20042167359348 + ], + [ + 27.980976104736328, + -26.200729721284862 + ], + [ + 27.982349395751953, + -26.197803235312957 + ], + [ + 27.982177734375, + -26.194414580727656 + ], + [ + 27.982177734375, + -26.19256618212382 + ], + [ + 27.98406600952148, + -26.192258112838022 + ], + [ + 27.985267639160156, + -26.191950042737417 + ], + [ + 27.986125946044922, + -26.19426054863105 + ], + [ + 27.986984252929688, + -26.196416979445644 + ], + [ + 27.987327575683594, + -26.198881422912123 + ], + [ + 27.98715591430664, + -26.201345814222698 + ], + [ + 27.985095977783203, + -26.20381015337393 + ], + [ + 27.983036041259766, + -26.20550435628209 + ], + [ + 27.979946136474606, + -26.20550435628209 + ], + [ + 27.97719955444336, + -26.20488828535003 + ], + [ + 27.97445297241211, + -26.203656133705152 + ], + [ + 27.972564697265625, + -26.201961903900578 + ], + [ + 27.972049713134762, + -26.199035448897074 + ] + ] + ] + }, + { + "type": "Polygon", + "coordinates": [ + [ + [ + 27.946643829345703, + -26.170845301716803 + ], + [ + 27.94269561767578, + -26.183631842055114 + ], + [ + 27.935657501220703, + -26.183323749143113 + ], + [ + 27.92741775512695, + -26.17685360983018 + ], + [ + 27.926902770996094, + -26.171153427614488 + ], + [ + 27.928619384765625, + -26.165298896316028 + ], + [ + 27.936859130859375, + -26.161292995018652 + ], + [ + 27.94509887695312, + -26.158981835530525 + ], + [ + 27.950420379638672, + -26.161601146157146 + ], + [ + 27.951793670654297, + -26.166223315536712 + ], + [ + 27.954025268554688, + -26.173464345889972 + ], + [ + 27.954025268554688, + -26.179626570662702 + ], + [ + 27.951278686523438, + -26.187945057286793 + ], + [ + 27.944583892822266, + -26.19395248382672 + ], + [ + 27.936172485351562, + -26.194876675795218 + ], + [ + 27.930850982666016, + -26.19379845111899 + ], + [ + 27.925701141357422, + -26.190563717201886 + ], + [ + 27.92278289794922, + -26.18655868408986 + ], + [ + 27.92072296142578, + -26.180858976522302 + ], + [ + 27.917118072509766, + -26.174080583026957 + ], + [ + 27.916603088378906, + -26.16683959094609 + ], + [ + 27.917118072509766, + -26.162987816205614 + ], + [ + 27.920207977294922, + -26.162987816205614 + ], + [ + 27.920894622802734, + -26.166069246175482 + ], + [ + 27.9217529296875, + -26.17146155269785 + ], + [ + 27.923297882080078, + -26.177469829049862 + ], + [ + 27.92673110961914, + -26.184248025435295 + ], + [ + 27.930335998535156, + -26.18856121785662 + ], + [ + 27.936687469482422, + -26.18871525748988 + ], + [ + 27.942352294921875, + -26.187945057286793 + ], + [ + 27.94647216796875, + -26.184248025435295 + ], + [ + 27.946815490722653, + -26.178548204845022 + ], + [ + 27.946643829345703, + -26.170845301716803 + ] + ], + [ + [ + 27.936859130859375, + -26.16591517661071 + ], + [ + 27.934799194335938, + -26.16945872510008 + ], + [ + 27.93497085571289, + -26.173926524048102 + ], + [ + 27.93874740600586, + -26.175621161617432 + ], + [ + 27.94149398803711, + -26.17007498340995 + ], + [ + 27.94321060180664, + -26.166223315536712 + ], + [ + 27.939090728759762, + -26.164528541367826 + ], + [ + 27.937545776367188, + -26.16406632595636 + ], + [ + 27.936859130859375, + -26.16591517661071 + ] + ] + ] + }, + { + "type": "Point", + "coordinates": [ + 27.95642852783203, + -26.152510345365126 + ] + } + ] +} diff --git a/packages/turf-simplify/test/fixtures/in/linestring.geojson b/packages/turf-simplify/test/fixtures/in/linestring.geojson new file mode 100644 index 0000000000..670105829b --- /dev/null +++ b/packages/turf-simplify/test/fixtures/in/linestring.geojson @@ -0,0 +1,329 @@ +{ + "type": "Feature", + "properties": {}, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -80.51399230957031, + 28.069556808283608 + ], + [ + -80.51193237304688, + 28.057438520876673 + ], + [ + -80.49819946289062, + 28.05622661698537 + ], + [ + -80.5023193359375, + 28.04471284867091 + ], + [ + -80.48583984375, + 28.042288740362853 + ], + [ + -80.50575256347656, + 28.028349057505775 + ], + [ + -80.50163269042969, + 28.02168161433489 + ], + [ + -80.49476623535156, + 28.021075462659883 + ], + [ + -80.48652648925781, + 28.021075462659883 + ], + [ + -80.47691345214844, + 28.021075462659883 + ], + [ + -80.46936035156249, + 28.015619944017807 + ], + [ + -80.47760009765624, + 28.007133032319448 + ], + [ + -80.49201965332031, + 27.998039170620494 + ], + [ + -80.46730041503906, + 27.962262536875905 + ], + [ + -80.46524047851562, + 27.91980029694533 + ], + [ + -80.40550231933594, + 27.930114089618602 + ], + [ + -80.39657592773438, + 27.980455528671527 + ], + [ + -80.41305541992188, + 27.982274659104082 + ], + [ + -80.42953491210938, + 27.990763528690582 + ], + [ + -80.4144287109375, + 28.00955793247135 + ], + [ + -80.3594970703125, + 27.972572275562527 + ], + [ + -80.36224365234375, + 27.948919060105453 + ], + [ + -80.38215637207031, + 27.913732900444284 + ], + [ + -80.41786193847656, + 27.881570017022806 + ], + [ + -80.40550231933594, + 27.860932192608534 + ], + [ + -80.39382934570312, + 27.85425440786446 + ], + [ + -80.37803649902344, + 27.86336037597851 + ], + [ + -80.38215637207031, + 27.880963078302393 + ], + [ + -80.36842346191405, + 27.888246118437756 + ], + [ + -80.35743713378906, + 27.882176952341734 + ], + [ + -80.35469055175781, + 27.86882358965466 + ], + [ + -80.3594970703125, + 27.8421119273228 + ], + [ + -80.37940979003906, + 27.83300417483936 + ], + [ + -80.39932250976561, + 27.82511017099003 + ], + [ + -80.40069580078125, + 27.79352841586229 + ], + [ + -80.36155700683594, + 27.786846483587688 + ], + [ + -80.35537719726562, + 27.794743268514615 + ], + [ + -80.36705017089844, + 27.800209937418252 + ], + [ + -80.36889553070068, + 27.801918215058347 + ], + [ + -80.3690242767334, + 27.803930152059845 + ], + [ + -80.36713600158691, + 27.805942051806845 + ], + [ + -80.36584854125977, + 27.805524490772143 + ], + [ + -80.36563396453857, + 27.80465140342285 + ], + [ + -80.36619186401367, + 27.803095012921272 + ], + [ + -80.36623477935791, + 27.801842292177923 + ], + [ + -80.36524772644043, + 27.80127286888392 + ], + [ + -80.36224365234375, + 27.801158983867033 + ], + [ + -80.36065578460693, + 27.802639479776524 + ], + [ + -80.36138534545898, + 27.803740348273823 + ], + [ + -80.36220073699951, + 27.804803245204976 + ], + [ + -80.36190032958984, + 27.806625330038287 + ], + [ + -80.3609561920166, + 27.80742248254359 + ], + [ + -80.35932540893555, + 27.806853088493792 + ], + [ + -80.35889625549315, + 27.806321651354835 + ], + [ + -80.35902500152588, + 27.805448570411585 + ], + [ + -80.35863876342773, + 27.804461600896783 + ], + [ + -80.35739421844482, + 27.804461600896783 + ], + [ + -80.35700798034668, + 27.805334689771293 + ], + [ + -80.35696506500244, + 27.80673920932572 + ], + [ + -80.35726547241211, + 27.80772615814989 + ], + [ + -80.35808086395264, + 27.808295547623707 + ], + [ + -80.3585958480835, + 27.80928248230861 + ], + [ + -80.35653591156006, + 27.80943431761813 + ], + [ + -80.35572052001953, + 27.808637179875486 + ], + [ + -80.3555917739868, + 27.80772615814989 + ], + [ + -80.3555917739868, + 27.806055931810487 + ], + [ + -80.35572052001953, + 27.803778309057556 + ], + [ + -80.35537719726562, + 27.801804330717825 + ], + [ + -80.3554630279541, + 27.799564581098746 + ], + [ + -80.35670757293701, + 27.799564581098746 + ], + [ + -80.35499095916748, + 27.796831264786892 + ], + [ + -80.34610748291016, + 27.79478123244122 + ], + [ + -80.34404754638672, + 27.802070060660014 + ], + [ + -80.34748077392578, + 27.804955086774896 + ], + [ + -80.3433609008789, + 27.805790211616266 + ], + [ + -80.34353256225586, + 27.8101555324401 + ], + [ + -80.33499240875244, + 27.810079615315917 + ], + [ + -80.33383369445801, + 27.805676331334084 + ], + [ + -80.33022880554199, + 27.801652484744796 + ], + [ + -80.32872676849365, + 27.80848534345178 + ] + ] + } +} \ No newline at end of file diff --git a/packages/turf-simplify/test/fixtures/in/multilinestring.geojson b/packages/turf-simplify/test/fixtures/in/multilinestring.geojson new file mode 100644 index 0000000000..8ca1fae410 --- /dev/null +++ b/packages/turf-simplify/test/fixtures/in/multilinestring.geojson @@ -0,0 +1,413 @@ +{ + "type": "Feature", + "properties": {}, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [ + -80.51399230957031, + 28.069556808283608 + ], + [ + -80.51193237304688, + 28.057438520876673 + ], + [ + -80.49819946289062, + 28.05622661698537 + ], + [ + -80.5023193359375, + 28.04471284867091 + ], + [ + -80.48583984375, + 28.042288740362853 + ], + [ + -80.50575256347656, + 28.028349057505775 + ], + [ + -80.50163269042969, + 28.02168161433489 + ], + [ + -80.49476623535156, + 28.021075462659883 + ], + [ + -80.48652648925781, + 28.021075462659883 + ], + [ + -80.47691345214844, + 28.021075462659883 + ], + [ + -80.46936035156249, + 28.015619944017807 + ], + [ + -80.47760009765624, + 28.007133032319448 + ], + [ + -80.49201965332031, + 27.998039170620494 + ], + [ + -80.46730041503906, + 27.962262536875905 + ], + [ + -80.46524047851562, + 27.91980029694533 + ], + [ + -80.40550231933594, + 27.930114089618602 + ], + [ + -80.39657592773438, + 27.980455528671527 + ], + [ + -80.41305541992188, + 27.982274659104082 + ], + [ + -80.42953491210938, + 27.990763528690582 + ], + [ + -80.4144287109375, + 28.00955793247135 + ], + [ + -80.3594970703125, + 27.972572275562527 + ], + [ + -80.36224365234375, + 27.948919060105453 + ], + [ + -80.38215637207031, + 27.913732900444284 + ], + [ + -80.41786193847656, + 27.881570017022806 + ], + [ + -80.40550231933594, + 27.860932192608534 + ], + [ + -80.39382934570312, + 27.85425440786446 + ], + [ + -80.37803649902344, + 27.86336037597851 + ], + [ + -80.38215637207031, + 27.880963078302393 + ], + [ + -80.36842346191405, + 27.888246118437756 + ], + [ + -80.35743713378906, + 27.882176952341734 + ], + [ + -80.35469055175781, + 27.86882358965466 + ], + [ + -80.3594970703125, + 27.8421119273228 + ], + [ + -80.37940979003906, + 27.83300417483936 + ], + [ + -80.39932250976561, + 27.82511017099003 + ], + [ + -80.40069580078125, + 27.79352841586229 + ], + [ + -80.36155700683594, + 27.786846483587688 + ], + [ + -80.35537719726562, + 27.794743268514615 + ], + [ + -80.36705017089844, + 27.800209937418252 + ], + [ + -80.36889553070068, + 27.801918215058347 + ], + [ + -80.3690242767334, + 27.803930152059845 + ], + [ + -80.36713600158691, + 27.805942051806845 + ], + [ + -80.36584854125977, + 27.805524490772143 + ], + [ + -80.36563396453857, + 27.80465140342285 + ], + [ + -80.36619186401367, + 27.803095012921272 + ], + [ + -80.36623477935791, + 27.801842292177923 + ], + [ + -80.36524772644043, + 27.80127286888392 + ], + [ + -80.36224365234375, + 27.801158983867033 + ], + [ + -80.36065578460693, + 27.802639479776524 + ], + [ + -80.36138534545898, + 27.803740348273823 + ], + [ + -80.36220073699951, + 27.804803245204976 + ], + [ + -80.36190032958984, + 27.806625330038287 + ], + [ + -80.3609561920166, + 27.80742248254359 + ], + [ + -80.35932540893555, + 27.806853088493792 + ], + [ + -80.35889625549315, + 27.806321651354835 + ], + [ + -80.35902500152588, + 27.805448570411585 + ], + [ + -80.35863876342773, + 27.804461600896783 + ], + [ + -80.35739421844482, + 27.804461600896783 + ], + [ + -80.35700798034668, + 27.805334689771293 + ], + [ + -80.35696506500244, + 27.80673920932572 + ], + [ + -80.35726547241211, + 27.80772615814989 + ], + [ + -80.35808086395264, + 27.808295547623707 + ], + [ + -80.3585958480835, + 27.80928248230861 + ], + [ + -80.35653591156006, + 27.80943431761813 + ], + [ + -80.35572052001953, + 27.808637179875486 + ], + [ + -80.3555917739868, + 27.80772615814989 + ], + [ + -80.3555917739868, + 27.806055931810487 + ], + [ + -80.35572052001953, + 27.803778309057556 + ], + [ + -80.35537719726562, + 27.801804330717825 + ], + [ + -80.3554630279541, + 27.799564581098746 + ], + [ + -80.35670757293701, + 27.799564581098746 + ], + [ + -80.35499095916748, + 27.796831264786892 + ], + [ + -80.34610748291016, + 27.79478123244122 + ], + [ + -80.34404754638672, + 27.802070060660014 + ], + [ + -80.34748077392578, + 27.804955086774896 + ], + [ + -80.3433609008789, + 27.805790211616266 + ], + [ + -80.34353256225586, + 27.8101555324401 + ], + [ + -80.33499240875244, + 27.810079615315917 + ], + [ + -80.33383369445801, + 27.805676331334084 + ], + [ + -80.33022880554199, + 27.801652484744796 + ], + [ + -80.32872676849365, + 27.80848534345178 + ] + ], + [ + [ + -80.51193237304688, + 28.091366281406945 + ], + [ + -80.47760009765624, + 28.074403740607135 + ], + [ + -80.47210693359375, + 28.058650411105386 + ], + [ + -80.46936035156249, + 28.01016414897993 + ], + [ + -80.45425415039061, + 27.99682659773872 + ], + [ + -80.44464111328125, + 28.02956127552927 + ], + [ + -80.43228149414062, + 28.024712321517228 + ], + [ + -80.40069580078125, + 28.01743848094423 + ], + [ + -80.3704833984375, + 28.004101830368654 + ], + [ + -80.35537719726562, + 27.991976169784156 + ], + [ + -80.3485107421875, + 27.947099367319762 + ], + [ + -80.32379150390625, + 27.937393821330247 + ], + [ + -80.34027099609375, + 27.879142241732627 + ], + [ + -80.35263061523436, + 27.90948552034696 + ], + [ + -80.36773681640625, + 27.858503954841247 + ], + [ + -80.34027099609375, + 27.822073862795612 + ], + [ + -80.29220581054688, + 27.853647316127383 + ], + [ + -80.30319213867188, + 27.860932192608534 + ], + [ + -80.30319213867188, + 27.88278388425912 + ], + [ + -80.2935791015625, + 27.894921808206057 + ] + ] + ] + } +} diff --git a/packages/turf-simplify/test/fixtures/in/multipolygon.geojson b/packages/turf-simplify/test/fixtures/in/multipolygon.geojson new file mode 100644 index 0000000000..1448df2b30 --- /dev/null +++ b/packages/turf-simplify/test/fixtures/in/multipolygon.geojson @@ -0,0 +1,4503 @@ +{ + "type": "Feature", + "geometry" : { + "type" : "MultiPolygon", + "coordinates" : [ + [ + [ + [ + 19.418070002000036, + -34.68667999799993 + ], + [ + 19.418070002000036, + -34.686830002999955 + ], + [ + 19.41808000000003, + -34.686920002999955 + ], + [ + 19.418110010000078, + -34.68702000099995 + ], + [ + 19.418210000000045, + -34.68706000199995 + ], + [ + 19.418250001000047, + -34.68711000099995 + ], + [ + 19.41821999900003, + -34.68724999999995 + ], + [ + 19.41820000200005, + -34.687349996999956 + ], + [ + 19.41808000000003, + -34.687349996999956 + ], + [ + 19.41799000000003, + -34.687330000999964 + ], + [ + 19.41794999900003, + -34.687370001999966 + ], + [ + 19.41794999900003, + -34.68747999799996 + ], + [ + 19.417999998000028, + -34.68754000299998 + ], + [ + 19.418110010000078, + -34.68764000099998 + ], + [ + 19.418179998000028, + -34.68774999699997 + ], + [ + 19.41814999500002, + -34.68786000099993 + ], + [ + 19.418070002000036, + -34.68785000299994 + ], + [ + 19.41800999700007, + -34.687810001999935 + ], + [ + 19.41799000000003, + -34.687869991999946 + ], + [ + 19.41795999800007, + -34.68794000299994 + ], + [ + 19.417890002000036, + -34.68796999799997 + ], + [ + 19.417770000000075, + -34.68791999899997 + ], + [ + 19.417729999000073, + -34.68796999799997 + ], + [ + 19.41770000400004, + -34.68804000099993 + ], + [ + 19.417819999000073, + -34.68810999599998 + ], + [ + 19.41791999700007, + -34.68825000299995 + ], + [ + 19.41791999700007, + -34.68838000299996 + ], + [ + 19.41786999800007, + -34.68844000099995 + ], + [ + 19.417710003000025, + -34.688399999999945 + ], + [ + 19.417670002000023, + -34.68844000099995 + ], + [ + 19.417729999000073, + -34.68853999899994 + ], + [ + 19.417779990000042, + -34.68862999799995 + ], + [ + 19.417760002000023, + -34.68879999999996 + ], + [ + 19.417729999000073, + -34.688849990999984 + ], + [ + 19.417670002000023, + -34.68891000399998 + ], + [ + 19.41755999800006, + -34.68891000399998 + ], + [ + 19.41750999900006, + -34.68887000299998 + ], + [ + 19.417490002000022, + -34.688830001999975 + ], + [ + 19.417460000000062, + -34.68878000299998 + ], + [ + 19.417299997000043, + -34.68878000299998 + ], + [ + 19.41724000000005, + -34.688830001999975 + ], + [ + 19.417249990000073, + -34.688920001999975 + ], + [ + 19.417230001000064, + -34.68906000099997 + ], + [ + 19.41715000000005, + -34.68911999799997 + ], + [ + 19.417109999000047, + -34.68915999899997 + ], + [ + 19.41701000100005, + -34.68915999899997 + ], + [ + 19.416929999000047, + -34.68912999599996 + ], + [ + 19.416889999000034, + -34.68906000099997 + ], + [ + 19.41683000200004, + -34.68906000099997 + ], + [ + 19.41679999100006, + -34.68910999999997 + ], + [ + 19.416690003000042, + -34.68910999999997 + ], + [ + 19.416640012000073, + -34.68903999599996 + ], + [ + 19.41654999600007, + -34.68903999599996 + ], + [ + 19.416489999000078, + -34.68910999999997 + ], + [ + 19.416390001000025, + -34.68919000099993 + ], + [ + 19.416300001000025, + -34.68920999799997 + ], + [ + 19.416250002000027, + -34.68912999599996 + ], + [ + 19.41620000300003, + -34.68910999999997 + ], + [ + 19.416110011000058, + -34.689149999999984 + ], + [ + 19.41600999800005, + -34.68924999799998 + ], + [ + 19.415900001000068, + -34.68924999799998 + ], + [ + 19.415860001000055, + -34.68920999799997 + ], + [ + 19.415810002000057, + -34.68923000199993 + ], + [ + 19.415730000000053, + -34.68927000299993 + ], + [ + 19.415640000000053, + -34.68928000099993 + ], + [ + 19.415590001000055, + -34.68930000499995 + ], + [ + 19.415659997000034, + -34.689439995999976 + ], + [ + 19.415730000000053, + -34.689490002999946 + ], + [ + 19.41571000400006, + -34.68959000099994 + ], + [ + 19.41564999900004, + -34.689630001999944 + ], + [ + 19.415590001000055, + -34.68977000099994 + ], + [ + 19.41549000300006, + -34.68990999899995 + ], + [ + 19.41542000000004, + -34.689969995999945 + ], + [ + 19.415299998000023, + -34.69004999799995 + ], + [ + 19.415219996000076, + -34.69000999699995 + ], + [ + 19.41515000100003, + -34.689869990999966 + ], + [ + 19.414989998000067, + -34.689869990999966 + ], + [ + 19.41498000000007, + -34.68994000199996 + ], + [ + 19.414960003000033, + -34.689990000999956 + ], + [ + 19.414909996000063, + -34.69004999799995 + ], + [ + 19.41479999200004, + -34.690039999999954 + ], + [ + 19.41476000700004, + -34.689969995999945 + ], + [ + 19.414700002000075, + -34.68991999799994 + ], + [ + 19.414610002000074, + -34.68991999799994 + ], + [ + 19.41454999700005, + -34.689969995999945 + ], + [ + 19.414520003000064, + -34.690059995999945 + ], + [ + 19.414449999000055, + -34.69008999899995 + ], + [ + 19.41427999800004, + -34.690059995999945 + ], + [ + 19.41423000700007, + -34.68999999899995 + ], + [ + 19.414139999000042, + -34.689969995999945 + ], + [ + 19.41396000000003, + -34.689879996999935 + ], + [ + 19.413889996000023, + -34.68980000299996 + ], + [ + 19.41379999700007, + -34.689739997999936 + ], + [ + 19.413699999000073, + -34.68974999599993 + ], + [ + 19.41369000000003, + -34.689810000999955 + ], + [ + 19.41369000000003, + -34.68991999799994 + ], + [ + 19.413609999000073, + -34.689969995999945 + ], + [ + 19.413500003000024, + -34.689969995999945 + ], + [ + 19.413359996000054, + -34.68998000299996 + ], + [ + 19.413289993000035, + -34.689869990999966 + ], + [ + 19.413230003000024, + -34.68985999999995 + ], + [ + 19.41316000000006, + -34.68990999899995 + ], + [ + 19.41314000400007, + -34.68999999899995 + ], + [ + 19.413169998000058, + -34.690150003999975 + ], + [ + 19.413110001000064, + -34.69028000399993 + ], + [ + 19.412899999000047, + -34.69028000399993 + ], + [ + 19.412840002000053, + -34.69032000499993 + ], + [ + 19.412840002000053, + -34.69035998999993 + ], + [ + 19.412750002000053, + -34.69042000299993 + ], + [ + 19.412649996000027, + -34.69046000399993 + ], + [ + 19.41253000200004, + -34.69046000399993 + ], + [ + 19.412419998000075, + -34.69043000099998 + ], + [ + 19.412369999000077, + -34.69032000499993 + ], + [ + 19.41233999600007, + -34.69021000099997 + ], + [ + 19.412220002000026, + -34.690219998999964 + ], + [ + 19.41208000300003, + -34.690219998999964 + ], + [ + 19.412029996000058, + -34.690150003999975 + ], + [ + 19.412059999000064, + -34.69003000199996 + ], + [ + 19.41206999700006, + -34.68985999999995 + ], + [ + 19.41197999700006, + -34.68977999899994 + ], + [ + 19.41183999800006, + -34.68979000499996 + ], + [ + 19.411700000000053, + -34.68977000099994 + ], + [ + 19.411600002000057, + -34.68968000099994 + ], + [ + 19.411579997000047, + -34.689559997999936 + ], + [ + 19.41161999800005, + -34.689400002999946 + ], + [ + 19.411539997000034, + -34.689349995999976 + ], + [ + 19.411470001000055, + -34.689400002999946 + ], + [ + 19.411430000000053, + -34.68951999799998 + ], + [ + 19.411309998000036, + -34.68953000399995 + ], + [ + 19.411240003000046, + -34.689490002999946 + ], + [ + 19.411200002000044, + -34.689349995999976 + ], + [ + 19.411139997000078, + -34.68923000199993 + ], + [ + 19.411099996000075, + -34.68924999799998 + ], + [ + 19.410990000000027, + -34.689239999999984 + ], + [ + 19.410810000000026, + -34.68918000299993 + ], + [ + 19.41085000100003, + -34.68905000299998 + ], + [ + 19.410930003000033, + -34.68897000099997 + ], + [ + 19.410990000000027, + -34.68888000099997 + ], + [ + 19.410959997000077, + -34.68878000299998 + ], + [ + 19.410909998000022, + -34.68861000199996 + ], + [ + 19.410840003000033, + -34.688579998999955 + ], + [ + 19.41077000000007, + -34.688669998999956 + ], + [ + 19.410720001000072, + -34.688719997999954 + ], + [ + 19.410559998000053, + -34.688740001999975 + ], + [ + 19.41050000000007, + -34.68869001099995 + ], + [ + 19.410429989000022, + -34.68862999799995 + ], + [ + 19.41033999700005, + -34.68867999699995 + ], + [ + 19.410170004000065, + -34.68876999699995 + ], + [ + 19.410060000000044, + -34.688669998999956 + ], + [ + 19.410100001000046, + -34.68853999899994 + ], + [ + 19.410050002000048, + -34.68843000199996 + ], + [ + 19.409960002000048, + -34.68830000199995 + ], + [ + 19.409870002000048, + -34.68816000299995 + ], + [ + 19.409880000000044, + -34.68804999899993 + ], + [ + 19.409929999000042, + -34.68798000399994 + ], + [ + 19.41000000300005, + -34.68795999899993 + ], + [ + 19.410130003000063, + -34.68799999999993 + ], + [ + 19.410239999000055, + -34.68804999899993 + ], + [ + 19.410379998000053, + -34.68803000299994 + ], + [ + 19.41050000000007, + -34.68795999899993 + ], + [ + 19.410620003000076, + -34.68794000299994 + ], + [ + 19.410689998000066, + -34.68795999899993 + ], + [ + 19.41077000000007, + -34.68804000099993 + ], + [ + 19.410810000000026, + -34.68814999699998 + ], + [ + 19.41081999900007, + -34.68823999699998 + ], + [ + 19.410930003000033, + -34.68832999699998 + ], + [ + 19.411190004000048, + -34.68826999899994 + ], + [ + 19.411240003000046, + -34.688189997999984 + ], + [ + 19.411359997000034, + -34.688189997999984 + ], + [ + 19.41146000300006, + -34.68830000199995 + ], + [ + 19.411510002000057, + -34.688399999999945 + ], + [ + 19.41147999900005, + -34.68854999699994 + ], + [ + 19.411430000000053, + -34.688600003999966 + ], + [ + 19.41147999900005, + -34.688719997999954 + ], + [ + 19.411610000000053, + -34.68879000099997 + ], + [ + 19.411690001000068, + -34.68885999699995 + ], + [ + 19.411759997000047, + -34.68888000099997 + ], + [ + 19.411929998000062, + -34.68885999699995 + ], + [ + 19.41200000200007, + -34.68881000599998 + ], + [ + 19.41205000100007, + -34.68885999699995 + ], + [ + 19.41206999700006, + -34.68894999699995 + ], + [ + 19.412040002000026, + -34.68901999999997 + ], + [ + 19.412040002000026, + -34.689079996999965 + ], + [ + 19.41206999700006, + -34.689149999999984 + ], + [ + 19.41215999700006, + -34.689149999999984 + ], + [ + 19.41226000300003, + -34.68915999899997 + ], + [ + 19.412379997000073, + -34.689220011999964 + ], + [ + 19.412400001000037, + -34.68928999899998 + ], + [ + 19.412469997000073, + -34.689310003999935 + ], + [ + 19.412580001000038, + -34.689349995999976 + ], + [ + 19.412760008000078, + -34.68941000199993 + ], + [ + 19.412809999000046, + -34.68946000099993 + ], + [ + 19.413060002000066, + -34.68946000099993 + ], + [ + 19.413269996000054, + -34.68941000199993 + ], + [ + 19.413320003000024, + -34.689349995999976 + ], + [ + 19.413280002000022, + -34.68924999799998 + ], + [ + 19.413269996000054, + -34.68920999799997 + ], + [ + 19.413280002000022, + -34.689149999999984 + ], + [ + 19.413380000000075, + -34.68911999799997 + ], + [ + 19.413470000000075, + -34.68911999799997 + ], + [ + 19.413560000000075, + -34.689169996999965 + ], + [ + 19.413630003000037, + -34.689239999999984 + ], + [ + 19.41370999700007, + -34.68924999799998 + ], + [ + 19.41374999800007, + -34.689149999999984 + ], + [ + 19.41374999800007, + -34.68901999999997 + ], + [ + 19.413789998000027, + -34.68893999799997 + ], + [ + 19.41385000400004, + -34.68893999799997 + ], + [ + 19.413950001000046, + -34.68900000399998 + ], + [ + 19.413969998000027, + -34.68906000099997 + ], + [ + 19.414019997000025, + -34.689149999999984 + ], + [ + 19.41408000200005, + -34.68919000099993 + ], + [ + 19.414139999000042, + -34.68918000299993 + ], + [ + 19.41418999800004, + -34.68911999799997 + ], + [ + 19.41417000200005, + -34.688989996999965 + ], + [ + 19.41418999800004, + -34.688920001999975 + ], + [ + 19.41427999800004, + -34.688920001999975 + ], + [ + 19.414340003000063, + -34.68892999999997 + ], + [ + 19.41439000200006, + -34.68903999599996 + ], + [ + 19.414470004000066, + -34.68901999999997 + ], + [ + 19.414539999000056, + -34.68891000399998 + ], + [ + 19.414580000000058, + -34.68885999699995 + ], + [ + 19.414610002000074, + -34.688830001999975 + ], + [ + 19.414660001000072, + -34.688830001999975 + ], + [ + 19.41472999700005, + -34.68893999799997 + ], + [ + 19.41472999700005, + -34.68901999999997 + ], + [ + 19.414740003000077, + -34.68910999999997 + ], + [ + 19.41476000700004, + -34.689149999999984 + ], + [ + 19.41479999200004, + -34.689169996999965 + ], + [ + 19.41489000000007, + -34.689169996999965 + ], + [ + 19.41493999900007, + -34.689149999999984 + ], + [ + 19.41492000200003, + -34.68906000099997 + ], + [ + 19.414899998000067, + -34.68900000399998 + ], + [ + 19.414899998000067, + -34.688920001999975 + ], + [ + 19.41492000200003, + -34.688830001999975 + ], + [ + 19.41498000000007, + -34.68883999999997 + ], + [ + 19.415069999000025, + -34.68879999999996 + ], + [ + 19.415090004000035, + -34.68875000099996 + ], + [ + 19.41510000200003, + -34.68867999699995 + ], + [ + 19.415159999000025, + -34.68862999799995 + ], + [ + 19.415230002000044, + -34.68862999799995 + ], + [ + 19.41533000000004, + -34.68861000199996 + ], + [ + 19.41540000400005, + -34.68853999899994 + ], + [ + 19.41540000400005, + -34.68844000099995 + ], + [ + 19.41542000000004, + -34.68835000099995 + ], + [ + 19.41549000300006, + -34.68835000099995 + ], + [ + 19.415569997000034, + -34.68838000299996 + ], + [ + 19.415609998000036, + -34.68847000299996 + ], + [ + 19.415680001000055, + -34.68867999699995 + ], + [ + 19.415779991000022, + -34.68867999699995 + ], + [ + 19.415900001000068, + -34.68862999799995 + ], + [ + 19.415980003000072, + -34.68858999799994 + ], + [ + 19.41603000200007, + -34.688489999999945 + ], + [ + 19.416040000000066, + -34.68844000099995 + ], + [ + 19.416089999000064, + -34.688419995999936 + ], + [ + 19.416179999000065, + -34.68848000099996 + ], + [ + 19.416260000000023, + -34.68852999999996 + ], + [ + 19.416319998000063, + -34.68854999699994 + ], + [ + 19.416399999000078, + -34.68853999899994 + ], + [ + 19.416520001000038, + -34.688489999999945 + ], + [ + 19.416610001000038, + -34.68845999699994 + ], + [ + 19.416660000000036, + -34.688489999999945 + ], + [ + 19.416700001000038, + -34.68853999899994 + ], + [ + 19.41675999000006, + -34.68849999799994 + ], + [ + 19.41675999000006, + -34.68844000099995 + ], + [ + 19.416780003000042, + -34.68838000299996 + ], + [ + 19.41679999100006, + -34.68835999099997 + ], + [ + 19.41692000100005, + -34.688399999999945 + ], + [ + 19.41698999700003, + -34.688419995999936 + ], + [ + 19.417040004000057, + -34.68844000099995 + ], + [ + 19.417140002000053, + -34.688399999999945 + ], + [ + 19.417140002000053, + -34.68834000299995 + ], + [ + 19.41710000100005, + -34.68825000299995 + ], + [ + 19.41710000100005, + -34.68814999699998 + ], + [ + 19.417180002000066, + -34.68808999999993 + ], + [ + 19.417230001000064, + -34.68808999999993 + ], + [ + 19.41740000300007, + -34.688099997999984 + ], + [ + 19.41740000300007, + -34.68805999699998 + ], + [ + 19.417360002000066, + -34.68796999799997 + ], + [ + 19.417370000000062, + -34.687869991999946 + ], + [ + 19.417440003000024, + -34.687779999999975 + ], + [ + 19.417500001000064, + -34.687709996999956 + ], + [ + 19.41750999900006, + -34.68764000099998 + ], + [ + 19.417609997000056, + -34.68755999999996 + ], + [ + 19.417630001000077, + -34.687489995999954 + ], + [ + 19.417550000000062, + -34.68746999999996 + ], + [ + 19.417440003000024, + -34.68746999999996 + ], + [ + 19.417370000000062, + -34.68742999899996 + ], + [ + 19.417360002000066, + -34.687349996999956 + ], + [ + 19.417389996000054, + -34.68720999899995 + ], + [ + 19.417530003000024, + -34.68717999599994 + ], + [ + 19.41755999800006, + -34.68714000299997 + ], + [ + 19.417530003000024, + -34.68706000199995 + ], + [ + 19.417440003000024, + -34.68702000099995 + ], + [ + 19.417370000000062, + -34.686989997999945 + ], + [ + 19.417339997000056, + -34.686899998999934 + ], + [ + 19.417370000000062, + -34.686779995999984 + ], + [ + 19.41741999900006, + -34.68672999699993 + ], + [ + 19.417530003000024, + -34.686759999999936 + ], + [ + 19.417630001000077, + -34.686779995999984 + ], + [ + 19.41774000500004, + -34.686779995999984 + ], + [ + 19.417770000000075, + -34.68667999799993 + ], + [ + 19.417750003000037, + -34.68653999999998 + ], + [ + 19.417800002000035, + -34.68649000099998 + ], + [ + 19.41791999700007, + -34.68649000099998 + ], + [ + 19.41800999700007, + -34.68653000099994 + ], + [ + 19.41806000300005, + -34.68658999899998 + ], + [ + 19.418070002000036, + -34.68667999799993 + ] + ] + ], + [ + [ + [ + 19.418799998000054, + -34.67816000099998 + ], + [ + 19.418900004000022, + -34.67817999699997 + ], + [ + 19.419050001000073, + -34.67804999699996 + ], + [ + 19.419119996000063, + -34.677899999999966 + ], + [ + 19.41916999500006, + -34.67786999699996 + ], + [ + 19.419279999000025, + -34.67786999699996 + ], + [ + 19.419379997000078, + -34.67792000399993 + ], + [ + 19.41945000100003, + -34.67802000199998 + ], + [ + 19.419390003000046, + -34.67813999599997 + ], + [ + 19.419329998000023, + -34.67820999999998 + ], + [ + 19.419279999000025, + -34.67826999699997 + ], + [ + 19.419260003000034, + -34.67833000199994 + ], + [ + 19.419329998000023, + -34.67838999899993 + ], + [ + 19.419379997000078, + -34.67839999699993 + ], + [ + 19.41945000100003, + -34.67848999699993 + ], + [ + 19.419459999000026, + -34.678590002999954 + ], + [ + 19.419530002000045, + -34.678609998999946 + ], + [ + 19.419670001000043, + -34.678590002999954 + ], + [ + 19.41967999900004, + -34.678410002999954 + ], + [ + 19.419670001000043, + -34.67829999899993 + ], + [ + 19.419710002000045, + -34.67820999999998 + ], + [ + 19.419819998000037, + -34.67816999899998 + ], + [ + 19.419999997000048, + -34.67820999999998 + ], + [ + 19.420160000000067, + -34.678219997999975 + ], + [ + 19.420179997000048, + -34.67829999899993 + ], + [ + 19.420179997000048, + -34.67838999899993 + ], + [ + 19.42024000200007, + -34.67842000199994 + ], + [ + 19.42035999600006, + -34.67839999699993 + ], + [ + 19.420430000000067, + -34.67829999899993 + ], + [ + 19.420519999000078, + -34.67829999899993 + ], + [ + 19.420650000000023, + -34.67828000299994 + ], + [ + 19.420709997000074, + -34.67829999899993 + ], + [ + 19.420759988000043, + -34.67838999899993 + ], + [ + 19.420780000000036, + -34.67846000199995 + ], + [ + 19.420839998000076, + -34.678539995999984 + ], + [ + 19.420960000000036, + -34.67852999799993 + ], + [ + 19.42101999700003, + -34.67848999699993 + ], + [ + 19.421050000000037, + -34.67834999799993 + ], + [ + 19.421139999000047, + -34.67834999799993 + ], + [ + 19.421279998000045, + -34.678410002999954 + ], + [ + 19.421300002000066, + -34.67848999699993 + ], + [ + 19.421329997000043, + -34.678590002999954 + ], + [ + 19.42137999600004, + -34.67864000199995 + ], + [ + 19.42147000400007, + -34.678590002999954 + ], + [ + 19.42153999900006, + -34.67851999199996 + ], + [ + 19.421639997000057, + -34.67851000099995 + ], + [ + 19.421759999000074, + -34.678539995999984 + ], + [ + 19.421819997000057, + -34.67860000099995 + ], + [ + 19.421840001000078, + -34.678680002999954 + ], + [ + 19.421830003000025, + -34.67878000099995 + ], + [ + 19.421830003000025, + -34.67884999599994 + ], + [ + 19.42194999700007, + -34.67882999999995 + ], + [ + 19.421999996000068, + -34.67878000099995 + ], + [ + 19.42203999700007, + -34.67873000199995 + ], + [ + 19.422190002000036, + -34.67873000199995 + ], + [ + 19.42223000300004, + -34.67875999599994 + ], + [ + 19.422280002000036, + -34.67890000299997 + ], + [ + 19.422259997000026, + -34.67897000599993 + ], + [ + 19.422259997000026, + -34.67905999799996 + ], + [ + 19.42233999900003, + -34.679040001999965 + ], + [ + 19.42241000200005, + -34.678929997999944 + ], + [ + 19.422439997000026, + -34.67886999999996 + ], + [ + 19.422559999000043, + -34.67886999999996 + ], + [ + 19.422690000000046, + -34.67891999899996 + ], + [ + 19.42274999700004, + -34.67899000299997 + ], + [ + 19.422710004000066, + -34.67908000199998 + ], + [ + 19.42265999700004, + -34.67917000199998 + ], + [ + 19.422619996000037, + -34.67925000399998 + ], + [ + 19.42259000200005, + -34.67935000199998 + ], + [ + 19.42268000100006, + -34.679400000999976 + ], + [ + 19.422760003000064, + -34.67930000299998 + ], + [ + 19.422810002000062, + -34.67922999899997 + ], + [ + 19.422850003000065, + -34.67917000199998 + ], + [ + 19.42295000100006, + -34.67915999599995 + ], + [ + 19.42300000000006, + -34.67921000299998 + ], + [ + 19.423030002000075, + -34.67927999799997 + ], + [ + 19.42300000000006, + -34.679400000999976 + ], + [ + 19.422959999000057, + -34.67948999999993 + ], + [ + 19.42300000000006, + -34.679539991999945 + ], + [ + 19.423120002000076, + -34.679520002999936 + ], + [ + 19.423210002000076, + -34.67948999999993 + ], + [ + 19.42334000200003, + -34.679520002999936 + ], + [ + 19.423420004000036, + -34.67954999799997 + ], + [ + 19.423459997000066, + -34.67963999699998 + ], + [ + 19.423399999000026, + -34.67972999699998 + ], + [ + 19.423329996000064, + -34.67980000099993 + ], + [ + 19.423290003000034, + -34.67985999799998 + ], + [ + 19.423279997000066, + -34.67992000299995 + ], + [ + 19.423279997000066, + -34.680020000999946 + ], + [ + 19.423350000000028, + -34.680089995999936 + ], + [ + 19.423420004000036, + -34.68014000299996 + ], + [ + 19.423420004000036, + -34.68024000099996 + ], + [ + 19.423329996000064, + -34.68029999799995 + ], + [ + 19.423170001000074, + -34.68024000099996 + ], + [ + 19.423099998000055, + -34.680180003999965 + ], + [ + 19.423020004000023, + -34.68015000099996 + ], + [ + 19.422980003000077, + -34.680159999999944 + ], + [ + 19.42300000000006, + -34.68020999899994 + ], + [ + 19.42295000100006, + -34.68029999799995 + ], + [ + 19.42295000100006, + -34.68038999799995 + ], + [ + 19.423030002000075, + -34.680429998999955 + ], + [ + 19.42304000000007, + -34.680540002999976 + ], + [ + 19.42300000000006, + -34.68061999699995 + ], + [ + 19.422890003000077, + -34.68061999699995 + ], + [ + 19.422810002000062, + -34.680500001999974 + ], + [ + 19.422760003000064, + -34.68049000399998 + ], + [ + 19.42273000000006, + -34.68058000399998 + ], + [ + 19.42274999700004, + -34.680680001999974 + ], + [ + 19.422690000000046, + -34.680749996999964 + ], + [ + 19.42251999800004, + -34.680770000999985 + ], + [ + 19.422439997000026, + -34.680680001999974 + ], + [ + 19.422460001000047, + -34.680540002999976 + ], + [ + 19.422380000000032, + -34.680500001999974 + ], + [ + 19.422280002000036, + -34.68052999699995 + ], + [ + 19.422280002000036, + -34.680590001999974 + ], + [ + 19.42209000400004, + -34.680680001999974 + ], + [ + 19.421999996000068, + -34.68072000199993 + ], + [ + 19.421989998000072, + -34.68091999799998 + ], + [ + 19.421930001000078, + -34.68097000499995 + ], + [ + 19.421880002000023, + -34.68097000499995 + ], + [ + 19.42180999800007, + -34.68091999799998 + ], + [ + 19.421759999000074, + -34.68085001099996 + ], + [ + 19.42167999800006, + -34.680749996999964 + ], + [ + 19.421619993000036, + -34.68073000099997 + ], + [ + 19.421570002000067, + -34.680749996999964 + ], + [ + 19.421530001000065, + -34.68086999899998 + ], + [ + 19.42153999900006, + -34.68097000499995 + ], + [ + 19.42152000300007, + -34.68108999999998 + ], + [ + 19.42144999900006, + -34.68108999999998 + ], + [ + 19.42137999600004, + -34.68103000199994 + ], + [ + 19.42134000300007, + -34.68094000299993 + ], + [ + 19.421279998000045, + -34.68099999999998 + ], + [ + 19.421260002000054, + -34.68114999699998 + ], + [ + 19.421239997000043, + -34.68127999699993 + ], + [ + 19.421149998000033, + -34.681300001999944 + ], + [ + 19.421129993000022, + -34.681229997999935 + ], + [ + 19.421099999000035, + -34.68112999999994 + ], + [ + 19.42101999700003, + -34.68112999999994 + ], + [ + 19.421009999000034, + -34.681229997999935 + ], + [ + 19.421030003000055, + -34.681319997999935 + ], + [ + 19.421120003000055, + -34.68148999899995 + ], + [ + 19.421099999000035, + -34.68161000199996 + ], + [ + 19.42100000100004, + -34.681660000999955 + ], + [ + 19.42092999700003, + -34.681660000999955 + ], + [ + 19.420850004000044, + -34.68174000199997 + ], + [ + 19.420759988000043, + -34.681749999999965 + ], + [ + 19.420709997000074, + -34.68188000099997 + ], + [ + 19.420659998000076, + -34.68198998899993 + ], + [ + 19.420619997000074, + -34.68203999599996 + ], + [ + 19.420519999000078, + -34.68201000199997 + ], + [ + 19.420439998000063, + -34.68197000099997 + ], + [ + 19.42039999700006, + -34.68198998899993 + ], + [ + 19.420389999000065, + -34.68205000199998 + ], + [ + 19.420389999000065, + -34.68213000399993 + ], + [ + 19.42035999600006, + -34.68223000199998 + ], + [ + 19.42020000100007, + -34.682249997999975 + ], + [ + 19.420089997000048, + -34.68222000399993 + ], + [ + 19.41997000300006, + -34.68218000299993 + ], + [ + 19.419930002000058, + -34.68228000099998 + ], + [ + 19.41997000300006, + -34.68237999899998 + ], + [ + 19.41997000300006, + -34.68249000299994 + ], + [ + 19.419890001000056, + -34.682549999999935 + ], + [ + 19.419890001000056, + -34.682620002999954 + ], + [ + 19.41989999900005, + -34.68269999699993 + ], + [ + 19.41983000400006, + -34.682800002999954 + ], + [ + 19.419710002000045, + -34.682800002999954 + ], + [ + 19.419620010000074, + -34.68268000099994 + ], + [ + 19.41949999900004, + -34.682659995999984 + ], + [ + 19.41949999900004, + -34.68273999799993 + ], + [ + 19.41952000400005, + -34.68285000999998 + ], + [ + 19.419490001000042, + -34.68294000199995 + ], + [ + 19.41936000100003, + -34.68290000099995 + ], + [ + 19.41931000200003, + -34.682800002999954 + ], + [ + 19.419210004000035, + -34.68276000199995 + ], + [ + 19.41914999900007, + -34.68294000199995 + ], + [ + 19.419119996000063, + -34.68308999899995 + ], + [ + 19.418950003000077, + -34.68316999999996 + ], + [ + 19.418860003000077, + -34.68309999699994 + ], + [ + 19.418709998000054, + -34.68297000399997 + ], + [ + 19.418639995000035, + -34.68303000099996 + ], + [ + 19.41865000100006, + -34.68311000299997 + ], + [ + 19.418669997000052, + -34.68325999999996 + ], + [ + 19.418619998000054, + -34.683319996999955 + ], + [ + 19.418520000000058, + -34.68330999899996 + ], + [ + 19.418430001000047, + -34.68324000299998 + ], + [ + 19.418370003000064, + -34.683160001999966 + ], + [ + 19.41829000200005, + -34.68321999899996 + ], + [ + 19.418259999000043, + -34.68330999899996 + ], + [ + 19.41829000200005, + -34.683409996999956 + ], + [ + 19.41829000200005, + -34.68352999899997 + ], + [ + 19.418170000000032, + -34.68352999899997 + ], + [ + 19.41806000300005, + -34.683479999999975 + ], + [ + 19.417980002000036, + -34.68336999599995 + ], + [ + 19.41782999700007, + -34.68337999399995 + ], + [ + 19.417810001000078, + -34.68347000199998 + ], + [ + 19.41788000400004, + -34.683600001999935 + ], + [ + 19.41790000000003, + -34.683690001999935 + ], + [ + 19.417890002000036, + -34.68378999999993 + ], + [ + 19.417810001000078, + -34.68383999899993 + ], + [ + 19.417670002000023, + -34.68378999999993 + ], + [ + 19.417570004000027, + -34.68371999699997 + ], + [ + 19.417540001000077, + -34.683780001999935 + ], + [ + 19.417590000000075, + -34.68386999399996 + ], + [ + 19.417609997000056, + -34.68404000299995 + ], + [ + 19.41755999800006, + -34.68409000199995 + ], + [ + 19.41750999900006, + -34.684009999999944 + ], + [ + 19.417429997000056, + -34.68393999699998 + ], + [ + 19.417370000000062, + -34.683889997999984 + ], + [ + 19.41726000400007, + -34.68392999899993 + ], + [ + 19.417249990000073, + -34.68405999899994 + ], + [ + 19.417299997000043, + -34.68418000199995 + ], + [ + 19.417299997000043, + -34.68426000299996 + ], + [ + 19.417230001000064, + -34.68426000299996 + ], + [ + 19.41716999600004, + -34.684189999999944 + ], + [ + 19.41707999600004, + -34.68413000299995 + ], + [ + 19.417019999000047, + -34.68404000299995 + ], + [ + 19.416929999000047, + -34.68404000299995 + ], + [ + 19.41692000100005, + -34.68413000299995 + ], + [ + 19.416950004000057, + -34.68422000299995 + ], + [ + 19.416960002000053, + -34.68428999799994 + ], + [ + 19.41689999700003, + -34.68432000799993 + ], + [ + 19.41679999100006, + -34.684279999999944 + ], + [ + 19.41666999800003, + -34.68418000199995 + ], + [ + 19.41656000200004, + -34.684230000999946 + ], + [ + 19.41651000300004, + -34.684299995999936 + ], + [ + 19.41656000200004, + -34.68446999699995 + ], + [ + 19.416610001000038, + -34.68458000199996 + ], + [ + 19.416579999000078, + -34.684660002999976 + ], + [ + 19.41645999600007, + -34.684639998999955 + ], + [ + 19.416359998000075, + -34.68458000199996 + ], + [ + 19.416250002000027, + -34.68450999799995 + ], + [ + 19.416160002000026, + -34.68441999799995 + ], + [ + 19.41600999800005, + -34.68440999999996 + ], + [ + 19.41594000200007, + -34.68446999699995 + ], + [ + 19.41600999800005, + -34.68458000199996 + ], + [ + 19.416070003000073, + -34.68467999999996 + ], + [ + 19.41608000100007, + -34.68476000099997 + ], + [ + 19.41600999800005, + -34.684819997999966 + ], + [ + 19.41608000100007, + -34.68494000099997 + ], + [ + 19.416160002000026, + -34.685010003999935 + ], + [ + 19.416179999000065, + -34.68507999899998 + ], + [ + 19.416179999000065, + -34.68517999699998 + ], + [ + 19.416059997000048, + -34.685229995999975 + ], + [ + 19.41594000200007, + -34.68512999799998 + ], + [ + 19.41586999900005, + -34.68512999799998 + ], + [ + 19.41585000200007, + -34.685190002999946 + ], + [ + 19.415980003000072, + -34.68532000399995 + ], + [ + 19.41599000100007, + -34.68541000399995 + ], + [ + 19.41594000200007, + -34.685510001999944 + ], + [ + 19.415749997000034, + -34.685420001999944 + ], + [ + 19.41560000000004, + -34.68541000399995 + ], + [ + 19.41551000000004, + -34.68547000099994 + ], + [ + 19.41551000000004, + -34.68565999899994 + ], + [ + 19.415450003000046, + -34.68569999899995 + ], + [ + 19.415320002000044, + -34.68565999899994 + ], + [ + 19.415180003000046, + -34.685619997999936 + ], + [ + 19.415129996000076, + -34.68569999899995 + ], + [ + 19.415129996000076, + -34.685849995999945 + ], + [ + 19.415079998000067, + -34.68597999699995 + ], + [ + 19.415050003000033, + -34.68601999799995 + ], + [ + 19.41519000200003, + -34.686189998999964 + ], + [ + 19.415169997000078, + -34.68628999699996 + ], + [ + 19.41510000200003, + -34.68632999799996 + ], + [ + 19.41501000200003, + -34.68628999699996 + ], + [ + 19.41484999900007, + -34.686189998999964 + ], + [ + 19.41472000600004, + -34.68618000099997 + ], + [ + 19.41472000600004, + -34.68623999799996 + ], + [ + 19.414819996000062, + -34.68637999699996 + ], + [ + 19.414859997000065, + -34.68648000299993 + ], + [ + 19.414819996000062, + -34.686549997999975 + ], + [ + 19.414670000000058, + -34.68652000299994 + ], + [ + 19.414580000000058, + -34.68644999999998 + ], + [ + 19.41444000100006, + -34.68649000099998 + ], + [ + 19.41445999700005, + -34.686669999999935 + ], + [ + 19.41441999700004, + -34.686740003999944 + ], + [ + 19.414319999000043, + -34.686740003999944 + ], + [ + 19.414220001000047, + -34.686650003999944 + ], + [ + 19.41418999800004, + -34.68644999999998 + ], + [ + 19.414059998000027, + -34.68641999699997 + ], + [ + 19.41394000300005, + -34.68652000299994 + ], + [ + 19.413770002000035, + -34.68659999699997 + ], + [ + 19.413640001000033, + -34.68652000299994 + ], + [ + 19.41361999700007, + -34.68639000299993 + ], + [ + 19.413699999000073, + -34.68628999699996 + ], + [ + 19.413789998000027, + -34.68621000299993 + ], + [ + 19.413770002000035, + -34.68606999699995 + ], + [ + 19.413630003000037, + -34.686099998999964 + ], + [ + 19.41352999700007, + -34.686189998999964 + ], + [ + 19.413460002000022, + -34.68617000199998 + ], + [ + 19.413439998000058, + -34.68601999799995 + ], + [ + 19.413439998000058, + -34.68591000099997 + ], + [ + 19.413370002000022, + -34.68578999899995 + ], + [ + 19.413230003000024, + -34.685759996999934 + ], + [ + 19.413150002000066, + -34.68586999299998 + ], + [ + 19.41307000000006, + -34.68591000099997 + ], + [ + 19.412949998000045, + -34.68586000199997 + ], + [ + 19.412949998000045, + -34.68572000399996 + ], + [ + 19.41289000100005, + -34.68556999899994 + ], + [ + 19.412769999000034, + -34.68551999999994 + ], + [ + 19.41259999700003, + -34.685619997999936 + ], + [ + 19.412490001000037, + -34.68573000199996 + ], + [ + 19.41224999600007, + -34.685690000999955 + ], + [ + 19.41224999600007, + -34.68556999899994 + ], + [ + 19.41226000300003, + -34.68547999899994 + ], + [ + 19.412199997000073, + -34.68537999299997 + ], + [ + 19.412059999000064, + -34.68541000399995 + ], + [ + 19.411929998000062, + -34.685510001999944 + ], + [ + 19.41177999300004, + -34.68551999999994 + ], + [ + 19.411700000000053, + -34.68542999999994 + ], + [ + 19.411680003000072, + -34.68530999799998 + ], + [ + 19.411579997000047, + -34.68521999799998 + ], + [ + 19.411439999000038, + -34.68520000199993 + ], + [ + 19.411340001000042, + -34.68517999699998 + ], + [ + 19.411340001000042, + -34.68507000099993 + ], + [ + 19.411439999000038, + -34.685010003999935 + ], + [ + 19.411489998000036, + -34.68494999899997 + ], + [ + 19.41139000000004, + -34.68485999899997 + ], + [ + 19.41130000000004, + -34.68481000799994 + ], + [ + 19.41131999600003, + -34.684729997999966 + ], + [ + 19.41139000000004, + -34.68471999999997 + ], + [ + 19.41152999800005, + -34.68454000099996 + ], + [ + 19.411690001000068, + -34.684549998999955 + ], + [ + 19.41181999400004, + -34.68450999799995 + ], + [ + 19.41181999400004, + -34.68440999999996 + ], + [ + 19.411680003000072, + -34.68428999799994 + ], + [ + 19.411579997000047, + -34.68423999899994 + ], + [ + 19.411579997000047, + -34.684099999999944 + ], + [ + 19.411629996000045, + -34.68400000199995 + ], + [ + 19.411770003000072, + -34.68400000199995 + ], + [ + 19.411870001000068, + -34.684050000999946 + ], + [ + 19.411969999000064, + -34.684050000999946 + ], + [ + 19.41208000300003, + -34.68398998799995 + ], + [ + 19.412029996000058, + -34.68386000399994 + ], + [ + 19.41191000200007, + -34.68375999799997 + ], + [ + 19.41188999700006, + -34.683659999999975 + ], + [ + 19.411960001000068, + -34.683569999999975 + ], + [ + 19.41206999700006, + -34.683569999999975 + ], + [ + 19.412140000000022, + -34.68362999699997 + ], + [ + 19.412239998000075, + -34.68366999799997 + ], + [ + 19.41233999600007, + -34.68366999799997 + ], + [ + 19.41239000300004, + -34.683569999999975 + ], + [ + 19.41233999600007, + -34.68349998899998 + ], + [ + 19.41239000300004, + -34.68339999899996 + ], + [ + 19.412490001000037, + -34.68335999799996 + ], + [ + 19.412559996000027, + -34.68334000899995 + ], + [ + 19.41250999700003, + -34.68321999899996 + ], + [ + 19.41239000300004, + -34.68315000399997 + ], + [ + 19.41233999600007, + -34.68299999899995 + ], + [ + 19.41244000200004, + -34.68285999999995 + ], + [ + 19.41253000200004, + -34.682869997999944 + ], + [ + 19.412660002000052, + -34.68299000099995 + ], + [ + 19.41271000100005, + -34.68297000399997 + ], + [ + 19.41271000100005, + -34.682869997999944 + ], + [ + 19.412679999000034, + -34.68277999899993 + ], + [ + 19.41271000100005, + -34.68268000099994 + ], + [ + 19.412750002000053, + -34.68263000199994 + ], + [ + 19.41281999800003, + -34.68268000099994 + ], + [ + 19.412920003000067, + -34.682729999999935 + ], + [ + 19.41311999900006, + -34.68268000099994 + ], + [ + 19.413129998000045, + -34.682569995999984 + ], + [ + 19.413129998000045, + -34.68250000099994 + ], + [ + 19.413179997000043, + -34.68241999999998 + ], + [ + 19.413240002000066, + -34.68241000099994 + ], + [ + 19.413399997000056, + -34.682479988999944 + ], + [ + 19.413560000000075, + -34.682479988999944 + ], + [ + 19.413550002000022, + -34.68234999599997 + ], + [ + 19.413550002000022, + -34.682159997999975 + ], + [ + 19.41365999800007, + -34.68213000399993 + ], + [ + 19.413699999000073, + -34.682159997999975 + ], + [ + 19.41385000400004, + -34.68236000999997 + ], + [ + 19.41394000300005, + -34.68236000999997 + ], + [ + 19.414040001000046, + -34.68234999599997 + ], + [ + 19.414090000000044, + -34.68223000199998 + ], + [ + 19.414090000000044, + -34.68206000099997 + ], + [ + 19.414109997000025, + -34.68193999799996 + ], + [ + 19.414160004000053, + -34.68193999799996 + ], + [ + 19.414250003000063, + -34.68197000099997 + ], + [ + 19.414319999000043, + -34.68202999799996 + ], + [ + 19.41439000200006, + -34.68210999899998 + ], + [ + 19.41441999700004, + -34.68229999699997 + ], + [ + 19.414610002000074, + -34.68236000999997 + ], + [ + 19.414660001000072, + -34.68229999699997 + ], + [ + 19.414700002000075, + -34.68220999699997 + ], + [ + 19.414880002000075, + -34.68220999699997 + ], + [ + 19.41489000000007, + -34.68205000199998 + ], + [ + 19.41492000200003, + -34.68189999699996 + ], + [ + 19.41493999900007, + -34.681870010999944 + ], + [ + 19.415039997000065, + -34.681870010999944 + ], + [ + 19.415079998000067, + -34.681979998999964 + ], + [ + 19.415159999000025, + -34.68206000099997 + ], + [ + 19.415280001000042, + -34.682090002999985 + ], + [ + 19.415349997000078, + -34.68192000199997 + ], + [ + 19.415370001000042, + -34.681820003999974 + ], + [ + 19.415469999000038, + -34.681729995999945 + ], + [ + 19.41542000000004, + -34.681589996999946 + ], + [ + 19.415429998000036, + -34.68148999899995 + ], + [ + 19.415540002000057, + -34.68147000299996 + ], + [ + 19.415609998000036, + -34.68153999799995 + ], + [ + 19.415699998000036, + -34.681589996999946 + ], + [ + 19.41585000200007, + -34.68156000299996 + ], + [ + 19.41585000200007, + -34.68147000299996 + ], + [ + 19.41594000200007, + -34.68137999499993 + ], + [ + 19.41600999800005, + -34.68135000099994 + ], + [ + 19.41608000100007, + -34.681409997999936 + ], + [ + 19.416250002000027, + -34.68139999999994 + ], + [ + 19.416319998000063, + -34.68135000099994 + ], + [ + 19.41638000300003, + -34.68117999899994 + ], + [ + 19.416409997000073, + -34.68104999899998 + ], + [ + 19.41654999600007, + -34.680980002999945 + ], + [ + 19.41654999600007, + -34.680770000999985 + ], + [ + 19.41666999800003, + -34.68067000299993 + ], + [ + 19.416820003000055, + -34.68068999999997 + ], + [ + 19.416889999000034, + -34.680770000999985 + ], + [ + 19.41698999700003, + -34.68072000199993 + ], + [ + 19.41701000100005, + -34.68061999699995 + ], + [ + 19.41710000100005, + -34.68058000399998 + ], + [ + 19.41716999600004, + -34.68059999999997 + ], + [ + 19.417270002000066, + -34.68070999599996 + ], + [ + 19.41740000300007, + -34.68076000299993 + ], + [ + 19.417389996000054, + -34.68073000099997 + ], + [ + 19.41740000300007, + -34.680590001999974 + ], + [ + 19.417429997000056, + -34.680500001999974 + ], + [ + 19.417479996000054, + -34.68051999099998 + ], + [ + 19.417519997000056, + -34.68048000599998 + ], + [ + 19.417550000000062, + -34.68037000199996 + ], + [ + 19.417519997000056, + -34.680270003999965 + ], + [ + 19.417570004000027, + -34.68019000199996 + ], + [ + 19.41770000400004, + -34.680180003999965 + ], + [ + 19.417789996000067, + -34.68023000299996 + ], + [ + 19.417860000000076, + -34.680339998999955 + ], + [ + 19.41794999900003, + -34.68039999599995 + ], + [ + 19.41808000000003, + -34.680410001999974 + ], + [ + 19.418190004000053, + -34.68036001099995 + ], + [ + 19.41824000300005, + -34.68029999799995 + ], + [ + 19.41824000300005, + -34.680180003999965 + ], + [ + 19.418210000000045, + -34.68002999099997 + ], + [ + 19.418089998000028, + -34.67985999799998 + ], + [ + 19.41790000000003, + -34.67971000099993 + ], + [ + 19.417630001000077, + -34.67958999799998 + ], + [ + 19.41732999900006, + -34.67941999699997 + ], + [ + 19.417140002000053, + -34.67932999699997 + ], + [ + 19.41688000000005, + -34.67915999599995 + ], + [ + 19.416750000000036, + -34.67905999799996 + ], + [ + 19.416709999000034, + -34.67895999999996 + ], + [ + 19.416709999000034, + -34.67882999999995 + ], + [ + 19.416790001000038, + -34.67875999599994 + ], + [ + 19.416859996000028, + -34.67878000099995 + ], + [ + 19.41689999700003, + -34.67890000299997 + ], + [ + 19.416979998000045, + -34.67897000599993 + ], + [ + 19.41707999600004, + -34.67897000599993 + ], + [ + 19.41713001100004, + -34.67891999899996 + ], + [ + 19.41710000100005, + -34.67882999999995 + ], + [ + 19.417119997000043, + -34.67870999699994 + ], + [ + 19.41724000000005, + -34.67864000199995 + ], + [ + 19.41731000300007, + -34.67866999699993 + ], + [ + 19.417379998000058, + -34.67873999999995 + ], + [ + 19.417379998000058, + -34.67879999699994 + ], + [ + 19.417450002000066, + -34.67882999999995 + ], + [ + 19.417500001000064, + -34.67882999999995 + ], + [ + 19.417570004000027, + -34.67878000099995 + ], + [ + 19.417609997000056, + -34.67864000199995 + ], + [ + 19.417620011000054, + -34.67855999999995 + ], + [ + 19.417710003000025, + -34.67851999199996 + ], + [ + 19.417760002000023, + -34.678539995999984 + ], + [ + 19.417819999000073, + -34.67864000199995 + ], + [ + 19.417860000000076, + -34.67866999699993 + ], + [ + 19.41794999900003, + -34.67866999699993 + ], + [ + 19.41799000000003, + -34.678590002999954 + ], + [ + 19.41791999700007, + -34.67848999699993 + ], + [ + 19.41791999700007, + -34.67839999699993 + ], + [ + 19.417980002000036, + -34.67829999899993 + ], + [ + 19.418089998000028, + -34.67833000199994 + ], + [ + 19.418190004000053, + -34.67834999799993 + ], + [ + 19.418259999000043, + -34.67825999899998 + ], + [ + 19.41824000300005, + -34.67816000099998 + ], + [ + 19.41824000300005, + -34.67802999199995 + ], + [ + 19.418319997000026, + -34.67793000199998 + ], + [ + 19.418319997000026, + -34.67782999599996 + ], + [ + 19.418430001000047, + -34.67776000099997 + ], + [ + 19.418520000000058, + -34.67777999699996 + ], + [ + 19.418569999000056, + -34.67786999699996 + ], + [ + 19.418619998000054, + -34.677970002999984 + ], + [ + 19.418709998000054, + -34.67810000299994 + ], + [ + 19.418799998000054, + -34.67816000099998 + ] + ] + ], + [ + [ + [ + 19.456289997000056, + -34.39274000199998 + ], + [ + 19.495130001000064, + -34.39983000199993 + ], + [ + 19.499409998000033, + -34.398500000999945 + ], + [ + 19.514840003000074, + -34.39353000199998 + ], + [ + 19.524470000000065, + -34.390319998999985 + ], + [ + 19.555989999000076, + -34.38973999999996 + ], + [ + 19.548930006000035, + -34.395770004999974 + ], + [ + 19.68811000100004, + -34.765320000999964 + ], + [ + 19.687989999000024, + -34.76540000199998 + ], + [ + 19.687920003000045, + -34.76536999999996 + ], + [ + 19.687819997000076, + -34.76535000299998 + ], + [ + 19.687819997000076, + -34.765429996999956 + ], + [ + 19.687869996000074, + -34.765499999999975 + ], + [ + 19.687920003000045, + -34.765589999999975 + ], + [ + 19.687970002000043, + -34.76567000199998 + ], + [ + 19.68793000100004, + -34.76573999699997 + ], + [ + 19.68776999800008, + -34.76579000399994 + ], + [ + 19.68762999200004, + -34.76573999699997 + ], + [ + 19.687599997000063, + -34.76568999799997 + ], + [ + 19.68752000300003, + -34.76563999899997 + ], + [ + 19.687440002000073, + -34.76563999899997 + ], + [ + 19.687340004000077, + -34.76567000199998 + ], + [ + 19.687239998000052, + -34.765589999999975 + ], + [ + 19.687050000000056, + -34.765589999999975 + ], + [ + 19.686900003000062, + -34.76553000299998 + ], + [ + 19.686759997000024, + -34.76545000899995 + ], + [ + 19.686640002000047, + -34.76540000199998 + ], + [ + 19.686280003000036, + -34.76540000199998 + ], + [ + 19.68603999900006, + -34.76529999599995 + ], + [ + 19.685890002000065, + -34.76519999899995 + ], + [ + 19.685710002000064, + -34.76510999899995 + ], + [ + 19.685459999000045, + -34.76510999899995 + ], + [ + 19.685249997000028, + -34.765180001999965 + ], + [ + 19.685019999000076, + -34.76529999599995 + ], + [ + 19.684790000000078, + -34.765499999999975 + ], + [ + 19.68457999800006, + -34.76562000299998 + ], + [ + 19.68435000000005, + -34.76580999999993 + ], + [ + 19.684159994000026, + -34.76607999999993 + ], + [ + 19.68396999600003, + -34.76629000199995 + ], + [ + 19.683749988000045, + -34.76653999699994 + ], + [ + 19.683590009000056, + -34.76690000399998 + ], + [ + 19.683500001000027, + -34.767159996999965 + ], + [ + 19.68343999600006, + -34.767480002999946 + ], + [ + 19.683479997000063, + -34.76780999899995 + ], + [ + 19.683599999000023, + -34.76808999699995 + ], + [ + 19.683680001000027, + -34.76829000099997 + ], + [ + 19.683770000000038, + -34.768389998999965 + ], + [ + 19.683919997000032, + -34.76845000399993 + ], + [ + 19.68405999600003, + -34.76852999699997 + ], + [ + 19.684120009000026, + -34.76863000299994 + ], + [ + 19.677619999000058, + -34.78188000299997 + ], + [ + 19.677619999000058, + -34.781980000999965 + ], + [ + 19.677629997000054, + -34.78206000299997 + ], + [ + 19.677629997000054, + -34.782160000999966 + ], + [ + 19.677600002000077, + -34.78221999799996 + ], + [ + 19.67748000000006, + -34.78221999799996 + ], + [ + 19.677380002000064, + -34.78227000499993 + ], + [ + 19.67739000000006, + -34.78233000199998 + ], + [ + 19.67748000000006, + -34.78237000299998 + ], + [ + 19.677640003000022, + -34.78237000299998 + ], + [ + 19.677750007000043, + -34.78239999699997 + ], + [ + 19.671800002000055, + -34.783570001999976 + ], + [ + 19.671639998000046, + -34.78359999699995 + ], + [ + 19.67151999600003, + -34.78359999699995 + ], + [ + 19.67141999000006, + -34.783549997999955 + ], + [ + 19.671329998000033, + -34.78353999899997 + ], + [ + 19.671230000000037, + -34.783549997999955 + ], + [ + 19.671090002000028, + -34.78357999999997 + ], + [ + 19.671029997000062, + -34.783639996999966 + ], + [ + 19.670799998000064, + -34.78367999799997 + ], + [ + 19.67071999700005, + -34.78375000199998 + ], + [ + 19.67056000100007, + -34.78385999799997 + ], + [ + 19.670499996000046, + -34.78390999699997 + ], + [ + 19.670340001000056, + -34.784010002999935 + ], + [ + 19.670210001000044, + -34.78405000299995 + ], + [ + 19.67017000000004, + -34.784100001999946 + ], + [ + 19.67017000000004, + -34.784259996999936 + ], + [ + 19.67012999900004, + -34.78436000299996 + ], + [ + 19.669999999000026, + -34.784399995999934 + ], + [ + 19.669890002000045, + -34.784399995999934 + ], + [ + 19.669840003000047, + -34.784330000999944 + ], + [ + 19.669800003000034, + -34.784330000999944 + ], + [ + 19.669750004000036, + -34.78442999899994 + ], + [ + 19.669660004000036, + -34.784529996999936 + ], + [ + 19.669530003000034, + -34.78455000099996 + ], + [ + 19.669410001000074, + -34.784509999999955 + ], + [ + 19.669360002000076, + -34.78429999799994 + ], + [ + 19.66937000000007, + -34.78420999799994 + ], + [ + 19.669339998000055, + -34.78418000399995 + ], + [ + 19.66924000000006, + -34.78418000399995 + ], + [ + 19.669220003000078, + -34.78427000399995 + ], + [ + 19.66919000100006, + -34.784370001999946 + ], + [ + 19.669069998000055, + -34.78447999799994 + ], + [ + 19.668979999000044, + -34.784529996999936 + ], + [ + 19.668870003000052, + -34.78456999799994 + ], + [ + 19.66874000200005, + -34.78456999799994 + ], + [ + 19.668610001000047, + -34.78455000099996 + ], + [ + 19.66857999900003, + -34.784529996999936 + ], + [ + 19.66843999200006, + -34.78445000299996 + ], + [ + 19.66840000700006, + -34.78447999799994 + ], + [ + 19.668200003000038, + -34.78456999799994 + ], + [ + 19.668030002000023, + -34.78455000099996 + ], + [ + 19.667940002000023, + -34.78456999799994 + ], + [ + 19.667910008000035, + -34.784670002999974 + ], + [ + 19.667910008000035, + -34.78477000099997 + ], + [ + 19.667879997000057, + -34.78486000099997 + ], + [ + 19.667810002000067, + -34.78490999999997 + ], + [ + 19.66769000000005, + -34.78487999799995 + ], + [ + 19.638179999000045, + -34.779159997999955 + ], + [ + 19.638340002000064, + -34.77919999899996 + ], + [ + 19.638429994000035, + -34.77937999799997 + ], + [ + 19.63854998900007, + -34.77938999699995 + ], + [ + 19.63888999900007, + -34.77920999699995 + ], + [ + 19.639079997000067, + -34.779069997999954 + ], + [ + 19.639249998000025, + -34.778929999999946 + ], + [ + 19.63950999900004, + -34.77870999899994 + ], + [ + 19.63968999900004, + -34.77854999599998 + ], + [ + 19.63999000000007, + -34.77849999699998 + ], + [ + 19.640179998000065, + -34.778430001999936 + ], + [ + 19.64033000300003, + -34.77826000099998 + ], + [ + 19.640550003000044, + -34.77807000299998 + ], + [ + 19.64083000100004, + -34.77778000699993 + ], + [ + 19.641130003000058, + -34.77750999999995 + ], + [ + 19.641289998000047, + -34.77714000299994 + ], + [ + 19.641409992000035, + -34.776859996999974 + ], + [ + 19.641530002000025, + -34.77654999699996 + ], + [ + 19.641609996000057, + -34.776089999999954 + ], + [ + 19.641660003000027, + -34.77556999799998 + ], + [ + 19.641760001000023, + -34.775060001999975 + ], + [ + 19.641850001000023, + -34.77449999999993 + ], + [ + 19.641940000000034, + -34.77408000299994 + ], + [ + 19.61252999800007, + -34.75730999899997 + ], + [ + 19.612379993000047, + -34.75735999799997 + ], + [ + 19.612250001000064, + -34.757330002999936 + ], + [ + 19.612219998000057, + -34.757259999999974 + ], + [ + 19.612160001000063, + -34.757259999999974 + ], + [ + 19.612060003000067, + -34.757369995999966 + ], + [ + 19.611869997000042, + -34.75735999799997 + ], + [ + 19.611790004000056, + -34.75726999799997 + ], + [ + 19.61168999800003, + -34.75725000199998 + ], + [ + 19.61159999800003, + -34.75731999699997 + ], + [ + 19.60039999600008, + -34.74716999799995 + ], + [ + 19.600429999000028, + -34.747289999999964 + ], + [ + 19.60033000100003, + -34.74741999999998 + ], + [ + 19.60016999000004, + -34.74747999799996 + ], + [ + 19.60006000100003, + -34.74751999799997 + ], + [ + 19.59989999800007, + -34.747559998999975 + ], + [ + 19.599830003000022, + -34.74755000099998 + ], + [ + 19.599819997000054, + -34.74745000299998 + ], + [ + 19.599689996000052, + -34.74734999699996 + ], + [ + 19.599470004000068, + -34.74733999899996 + ], + [ + 19.59940000100005, + -34.74729999799996 + ], + [ + 19.599319999000045, + -34.74727000399997 + ], + [ + 19.59917000200005, + -34.74727000399997 + ], + [ + 19.599090001000036, + -34.747379999999964 + ], + [ + 19.59896999800003, + -34.74742999899996 + ], + [ + 19.598839998000074, + -34.74738999799996 + ], + [ + 19.598780000000033, + -34.747309995999956 + ], + [ + 19.59872000300004, + -34.74718000399997 + ], + [ + 19.598590003000027, + -34.74716999799995 + ], + [ + 19.598540012000058, + -34.74725999699996 + ], + [ + 19.59843999800006, + -34.74733999899996 + ], + [ + 19.598290001000066, + -34.747379999999964 + ], + [ + 19.598219998000047, + -34.74729999799996 + ], + [ + 19.598150002000068, + -34.74725999699996 + ], + [ + 19.598049996000043, + -34.74723000299997 + ], + [ + 19.597949998000047, + -34.74729999799996 + ], + [ + 19.597949998000047, + -34.74742999899996 + ], + [ + 19.597819998000034, + -34.74751999799997 + ], + [ + 19.597689997000032, + -34.74752999699996 + ], + [ + 19.597559997000076, + -34.74750999999998 + ], + [ + 19.597520012000075, + -34.74745000299998 + ], + [ + 19.597480003000044, + -34.74742999899996 + ], + [ + 19.597379997000075, + -34.74738999799996 + ], + [ + 19.59711999600006, + -34.74745000299998 + ], + [ + 19.596990004000077, + -34.747399987999984 + ], + [ + 19.596860003000074, + -34.74733999899996 + ], + [ + 19.594120002000068, + -34.73309000399996 + ], + [ + 19.594120002000068, + -34.73297999899995 + ], + [ + 19.594110004000072, + -34.73292999999995 + ], + [ + 19.594080001000066, + -34.732719997999936 + ], + [ + 19.59408999900006, + -34.73267999799998 + ], + [ + 19.594120002000068, + -34.73262999899998 + ], + [ + 19.59420999400004, + -34.732560002999946 + ], + [ + 19.594310000000064, + -34.73254999699998 + ], + [ + 19.594330004000028, + -34.73253000099993 + ], + [ + 19.594330004000028, + -34.732470003999936 + ], + [ + 19.594279997000058, + -34.732419996999965 + ], + [ + 19.59420999400004, + -34.732380003999936 + ], + [ + 19.594120002000068, + -34.73234000299993 + ], + [ + 19.59408999900006, + -34.73230000199993 + ], + [ + 19.571799999000064, + -34.72350999699995 + ], + [ + 19.571880001000068, + -34.723430003999965 + ], + [ + 19.572020000000066, + -34.72337999699994 + ], + [ + 19.572119990000033, + -34.72339000299996 + ], + [ + 19.57222000400003, + -34.72344000199996 + ], + [ + 19.572280001000024, + -34.72335999999996 + ], + [ + 19.572289999000077, + -34.72328999699994 + ], + [ + 19.57231000300004, + -34.72319000699997 + ], + [ + 19.572379999000077, + -34.72313000199995 + ], + [ + 19.57252999600007, + -34.72310999699994 + ], + [ + 19.572640000000035, + -34.72304000199995 + ], + [ + 19.572730000000035, + -34.72304000199995 + ], + [ + 19.572850002000052, + -34.72313000199995 + ], + [ + 19.57296999600004, + -34.723159995999936 + ], + [ + 19.57306000400007, + -34.72321000299996 + ], + [ + 19.57310000500007, + -34.72337999699994 + ], + [ + 19.572999999000047, + -34.72344000199996 + ], + [ + 19.57301999500004, + -34.72354999799995 + ], + [ + 19.573120001000063, + -34.723589998999955 + ], + [ + 19.573229997000055, + -34.72368999699995 + ], + [ + 19.57321999900006, + -34.72375999199994 + ], + [ + 19.573279996000053, + -34.723819996999964 + ], + [ + 19.57338000200002, + -34.72380000099997 + ], + [ + 19.57339999900006, + -34.72372000699994 + ], + [ + 19.573480000000075, + -34.72365000399998 + ], + [ + 19.573570000000075, + -34.723660001999974 + ], + [ + 19.573690002000035, + -34.723750001999974 + ], + [ + 19.57374999900003, + -34.72384999999997 + ], + [ + 19.573830001000033, + -34.72392000299993 + ], + [ + 19.57392999900003, + -34.72389000099997 + ], + [ + 19.573989996000023, + -34.72380000099997 + ], + [ + 19.537649997000074, + -34.69208999799997 + ], + [ + 19.537469997000073, + -34.69211999999993 + ], + [ + 19.537400002000027, + -34.69217999699998 + ], + [ + 19.537220002000026, + -34.692219997999985 + ], + [ + 19.537090010000043, + -34.69219000399994 + ], + [ + 19.537010000000066, + -34.69208999799997 + ], + [ + 19.537059999000064, + -34.69195999699997 + ], + [ + 19.537040003000072, + -34.69180000199998 + ], + [ + 19.537149999000064, + -34.691720000999965 + ], + [ + 19.53724998900003, + -34.69171000999995 + ], + [ + 19.537310002000027, + -34.69162000299997 + ], + [ + 19.53726000300003, + -34.69148000399997 + ], + [ + 19.537149999000064, + -34.69136999999995 + ], + [ + 19.537100000000066, + -34.69125999599993 + ], + [ + 19.536990004000074, + -34.69114999899995 + ], + [ + 19.536830001000055, + -34.69111999699993 + ], + [ + 19.536759990000064, + -34.69100000199995 + ], + [ + 19.536690002000057, + -34.69093999699993 + ], + [ + 19.536720005000063, + -34.690839998999934 + ], + [ + 19.536920001000055, + -34.69074999999998 + ], + [ + 19.536970000000053, + -34.69065999999998 + ], + [ + 19.536939997000047, + -34.69056999999998 + ], + [ + 19.536880000000053, + -34.69052000099998 + ], + [ + 19.536780002000057, + -34.69047999999998 + ], + [ + 19.536759990000064, + -34.69039000099997 + ], + [ + 19.53677000400006, + -34.69032000499993 + ], + [ + 19.536780002000057, + -34.690239995999946 + ], + [ + 19.536740001000055, + -34.69012000099997 + ], + [ + 19.53660001000003, + -34.690080000999956 + ], + [ + 19.53646000400005, + -34.69007000199997 + ], + [ + 19.536399999000025, + -34.69016000199997 + ], + [ + 19.536190004000048, + -34.69013999799995 + ], + [ + 19.536049998000067, + -34.69013999799995 + ], + [ + 19.535959998000067, + -34.69007000199997 + ], + [ + 19.535890003000077, + -34.68994999999995 + ], + [ + 19.535779998000066, + -34.68993000399996 + ], + [ + 19.53563000200006, + -34.68994999999995 + ], + [ + 19.535599999000056, + -34.69007000199997 + ], + [ + 19.535640000000058, + -34.690200010999945 + ], + [ + 19.535599999000056, + -34.69030000099997 + ], + [ + 19.53545000200006, + -34.69033000299993 + ], + [ + 19.53533999800004, + -34.69025999999997 + ], + [ + 19.53529999700004, + -34.690150003999975 + ], + [ + 19.53523000200005, + -34.69002000299997 + ], + [ + 19.535129996000023, + -34.689990000999956 + ], + [ + 19.535039996000023, + -34.68990999899995 + ], + [ + 19.53485999700007, + -34.68985999999995 + ], + [ + 19.53484000000003, + -34.68998000299996 + ], + [ + 19.534849998000027, + -34.690059995999945 + ], + [ + 19.534690003000037, + -34.69011000299997 + ], + [ + 19.534510004000026, + -34.69011000299997 + ], + [ + 19.495539999000073, + -34.671620004999966 + ], + [ + 19.495570002000022, + -34.671779999999956 + ], + [ + 19.495490000000075, + -34.67186000199996 + ], + [ + 19.495360008000034, + -34.671850003999964 + ], + [ + 19.49531999900006, + -34.671779999999956 + ], + [ + 19.495189999000047, + -34.67173000099996 + ], + [ + 19.495130001000064, + -34.67181000299996 + ], + [ + 19.495099999000047, + -34.67191000099996 + ], + [ + 19.494990003000055, + -34.67191000099996 + ], + [ + 19.494940004000057, + -34.672009998999954 + ], + [ + 19.494860002000053, + -34.67206999599995 + ], + [ + 19.49470999700003, + -34.67208999999997 + ], + [ + 19.494579997000073, + -34.67201999699995 + ], + [ + 19.494489997000073, + -34.671869999999956 + ], + [ + 19.49455000200004, + -34.67173000099996 + ], + [ + 19.494489997000073, + -34.671620004999966 + ], + [ + 19.494399997000073, + -34.67165998999997 + ], + [ + 19.494379993000052, + -34.67174999799994 + ], + [ + 19.494309997000073, + -34.67186000199996 + ], + [ + 19.494219998000062, + -34.671869999999956 + ], + [ + 19.494129998000062, + -34.67181000299996 + ], + [ + 19.49399999700006, + -34.671690000999945 + ], + [ + 19.494030000000066, + -34.67153999599998 + ], + [ + 19.49392999400004, + -34.67146999999994 + ], + [ + 19.49381999800005, + -34.67152999799998 + ], + [ + 19.493530002000057, + -34.67156999799994 + ], + [ + 19.49339000300006, + -34.67146000199995 + ], + [ + 19.493350003000046, + -34.67137000199995 + ], + [ + 19.493260003000046, + -34.67126999699997 + ], + [ + 19.493220002000044, + -34.67111000099993 + ], + [ + 19.493329998000036, + -34.671070000999975 + ], + [ + 19.493440002000057, + -34.671049995999965 + ], + [ + 19.493339997000078, + -34.67094999799997 + ], + [ + 19.49336000900007, + -34.67084999999997 + ], + [ + 19.493490001000055, + -34.670819997999956 + ], + [ + 19.493549999000038, + -34.67083000399998 + ], + [ + 19.493620002000057, + -34.67076999899996 + ], + [ + 19.496010002000048, + -34.66878999599993 + ], + [ + 19.496079998000027, + -34.668869997999934 + ], + [ + 19.496129997000025, + -34.66897000399996 + ], + [ + 19.49620999800004, + -34.66900999699993 + ], + [ + 19.496330001000047, + -34.66900999699993 + ], + [ + 19.49643999700004, + -34.66898999999995 + ], + [ + 19.496510000000058, + -34.66906000299997 + ], + [ + 19.496649999000056, + -34.66900999699993 + ], + [ + 19.49677999900007, + -34.668869997999934 + ], + [ + 19.496969997000065, + -34.66873999699993 + ], + [ + 19.496990002000075, + -34.66864999799998 + ], + [ + 19.496900002000075, + -34.668620002999944 + ], + [ + 19.496739999000056, + -34.66858999999994 + ], + [ + 19.492300000000057, + -34.668410000999984 + ], + [ + 19.492210001000046, + -34.66846999799998 + ], + [ + 19.492139997000038, + -34.66858999999994 + ], + [ + 19.491940001000046, + -34.66858999999994 + ], + [ + 19.49177000000003, + -34.668570003999946 + ], + [ + 19.456289997000056, + -34.39274000199998 + ] + ] + ] + ] + }, + "properties": { + "country" : "South Africa" + } +} diff --git a/packages/turf-simplify/test/fixtures/in/polygon.geojson b/packages/turf-simplify/test/fixtures/in/polygon.geojson new file mode 100644 index 0000000000..9e0167b4fc --- /dev/null +++ b/packages/turf-simplify/test/fixtures/in/polygon.geojson @@ -0,0 +1,733 @@ +{ + "type":"Feature", + "geometry":{ + "type":"Polygon", + "coordinates":[ + [ + [ + -75.51527029981442, + 39.11245 + ], + [ + -75.39282224024916, + 39.12823474024917 + ], + [ + -75.3770375, + 39.135447305104925 + ], + [ + -75.35235519043113, + 39.13713230956888 + ], + [ + -75.34721355956887, + 39.13713230956888 + ], + [ + -75.32253125, + 39.139083755473514 + ], + [ + -75.29670096335326, + 39.141125963353275 + ], + [ + -75.29326540004632, + 39.14171584995367 + ], + [ + -75.268025, + 39.14408623760705 + ], + [ + -75.25277832507136, + 39.15170957507138 + ], + [ + -75.24515498760704, + 39.166956250000005 + ], + [ + -75.23985410433178, + 39.1932916043318 + ], + [ + -75.23985410433178, + 39.19512714566821 + ], + [ + -75.23607469121049, + 39.2214625 + ], + [ + -75.23324391324394, + 39.24118766324395 + ], + [ + -75.23324391324394, + 39.25624358675606 + ], + [ + -75.23104443417348, + 39.27596875 + ], + [ + -75.22621125895654, + 39.28866125895655 + ], + [ + -75.21351874999999, + 39.30405720540773 + ], + [ + -75.19590688693847, + 39.31286313693849 + ], + [ + -75.18710095540773, + 39.33047500000001 + ], + [ + -75.18476066926435, + 39.35622316926436 + ], + [ + -75.18476066926435, + 39.359233080735656 + ], + [ + -75.1827803677246, + 39.38498125 + ], + [ + -75.18108292305178, + 39.407051673051775 + ], + [ + -75.18108292305178, + 39.41741707694823 + ], + [ + -75.17961177196392, + 39.439487500000006 + ], + [ + -75.17842510611122, + 39.4589001061112 + ], + [ + -75.17842510611122, + 39.474581143888805 + ], + [ + -75.1773677140917, + 39.49399375 + ], + [ + -75.17806096906195, + 39.513042219061944 + ], + [ + -75.17806096906195, + 39.52945153093805 + ], + [ + -75.17880864635877, + 39.548500000000004 + ], + [ + -75.17436569692443, + 39.56385319692442 + ], + [ + -75.1590125, + 39.57861883514683 + ], + [ + -75.14275422343123, + 39.586747973431216 + ], + [ + -75.13462508514682, + 39.60300625000001 + ], + [ + -75.13199158752832, + 39.630027162471684 + ], + [ + -75.13192154096123, + 39.63042154096124 + ], + [ + -75.12971192190646, + 39.6575125 + ], + [ + -75.12958254641065, + 39.68258879641065 + ], + [ + -75.12958254641065, + 39.68694245358936 + ], + [ + -75.12945449224796, + 39.712018750000006 + ], + [ + -75.13075282512311, + 39.73826532512311 + ], + [ + -75.13075282512311, + 39.74027842487689 + ], + [ + -75.13219370977114, + 39.766525 + ], + [ + -75.13492951020307, + 39.79060798979694 + ], + [ + -75.13711471606355, + 39.799133466063545 + ], + [ + -75.14033360353974, + 39.821031250000004 + ], + [ + -75.1408737447648, + 39.839170005235225 + ], + [ + -75.14206588619443, + 39.85859088619443 + ], + [ + -75.14260248550531, + 39.87553750000001 + ], + [ + -75.14807249033687, + 39.88647750966314 + ], + [ + -75.1590125, + 39.8919475144947 + ], + [ + -75.17435420501783, + 39.89087920501784 + ], + [ + -75.20237093707816, + 39.886685312921855 + ], + [ + -75.21351874999999, + 39.88578343964871 + ], + [ + -75.22299781995783, + 39.88501656995784 + ], + [ + -75.26614108689465, + 39.87742141310536 + ], + [ + -75.268025, + 39.877239581040996 + ], + [ + -75.26957725960418, + 39.87708975960419 + ], + [ + -75.27684240189953, + 39.87553750000001 + ], + [ + -75.28419540106952, + 39.85936709893049 + ], + [ + -75.29112392832597, + 39.84413017832599 + ], + [ + -75.30162746500874, + 39.821031250000004 + ], + [ + -75.30816161875036, + 39.806661618750354 + ], + [ + -75.32253125, + 39.77506054072003 + ], + [ + -75.32519930917472, + 39.76919305917473 + ], + [ + -75.32641252811797, + 39.766525 + ], + [ + -75.3296491997708, + 39.75940705022919 + ], + [ + -75.34223699959911, + 39.73172449959911 + ], + [ + -75.35119759122719, + 39.712018750000006 + ], + [ + -75.36046052535204, + 39.69544177535203 + ], + [ + -75.3754130206531, + 39.659136979346904 + ], + [ + -75.37616437518106, + 39.6575125 + ], + [ + -75.3766762492428, + 39.65715124924281 + ], + [ + -75.3770375, + 39.65615200822954 + ], + [ + -75.39832547007784, + 39.62429422007785 + ], + [ + -75.4082395514723, + 39.60300625000001 + ], + [ + -75.4215797545908, + 39.5930422545908 + ], + [ + -75.43154375, + 39.56834216367474 + ], + [ + -75.45835566060614, + 39.57531191060614 + ], + [ + -75.45895426960922, + 39.5755957303908 + ], + [ + -75.48605, + 39.57947734440668 + ], + [ + -75.48898805047145, + 39.60006819952855 + ], + [ + -75.48994051537133, + 39.60300625 + ], + [ + -75.49123821601205, + 39.60819446601205 + ], + [ + -75.49220788576012, + 39.651354614239885 + ], + [ + -75.49509104207014, + 39.6575125 + ], + [ + -75.50305100880664, + 39.67451350880663 + ], + [ + -75.50416029911807, + 39.69390845088193 + ], + [ + -75.52933401544658, + 39.70079651544659 + ], + [ + -75.54055625, + 39.707797525000004 + ], + [ + -75.5417414003631, + 39.71083359963691 + ], + [ + -75.54210361986804, + 39.71201875000001 + ], + [ + -75.5424789600527, + 39.71394146005272 + ], + [ + -75.5438968233805, + 39.76318442661949 + ], + [ + -75.54488896795854, + 39.766525 + ], + [ + -75.54664835702378, + 39.77261710702379 + ], + [ + -75.54776976280363, + 39.81381773719638 + ], + [ + -75.55227698676161, + 39.821031250000004 + ], + [ + -75.56289470095811, + 39.84336970095812 + ], + [ + -75.56358754189749, + 39.852506208102504 + ], + [ + -75.57539756961809, + 39.8558725696181 + ], + [ + -75.59506249999998, + 39.868174228685255 + ], + [ + -75.59931300492002, + 39.871286995079984 + ], + [ + -75.60432992735852, + 39.87553750000001 + ], + [ + -75.63504292712292, + 39.89006332287709 + ], + [ + -75.64956874999999, + 39.89284139354837 + ], + [ + -75.66838020678718, + 39.89434895678719 + ], + [ + -75.68308195946902, + 39.896530540530996 + ], + [ + -75.704075, + 39.89798053092993 + ], + [ + -75.72818318448331, + 39.89964568448332 + ], + [ + -75.73375331940231, + 39.9003654305977 + ], + [ + -75.75858125, + 39.901872157624666 + ], + [ + -75.78514101585267, + 39.90348398414733 + ], + [ + -75.78652773414733, + 39.90348398414733 + ], + [ + -75.8130875, + 39.904921352207175 + ], + [ + -75.83722610887358, + 39.905905141126446 + ], + [ + -75.84345514112644, + 39.905905141126446 + ], + [ + -75.86759375, + 39.906814783587755 + ], + [ + -75.88844527239183, + 39.89638902239184 + ], + [ + -75.89887103358774, + 39.87553750000001 + ], + [ + -75.89854841478977, + 39.85198591478977 + ], + [ + -75.89854841478977, + 39.84458283521024 + ], + [ + -75.89821670830216, + 39.821031250000004 + ], + [ + -75.89787552465965, + 39.79680677465965 + ], + [ + -75.89787552465965, + 39.79074947534036 + ], + [ + -75.89752445181962, + 39.766525 + ], + [ + -75.89716305350223, + 39.74158805350222 + ], + [ + -75.89716305350223, + 39.73695569649778 + ], + [ + -75.89679086738143, + 39.712018750000006 + ], + [ + -75.89640740311208, + 39.686326153112084 + ], + [ + -75.89640740311208, + 39.683205096887924 + ], + [ + -75.89601214017446, + 39.6575125 + ], + [ + -75.89560452551711, + 39.63101702551712 + ], + [ + -75.89560452551711, + 39.6295017244829 + ], + [ + -75.8951839709748, + 39.60300625000001 + ], + [ + -75.89475288239396, + 39.57584711760604 + ], + [ + -75.8947466163539, + 39.57565286635391 + ], + [ + -75.89430149673764, + 39.548500000000004 + ], + [ + -75.89387073552223, + 39.52222301447779 + ], + [ + -75.89380341704393, + 39.520203417043916 + ], + [ + -75.8933591950366, + 39.49399375 + ], + [ + -75.89292978011362, + 39.468657719886366 + ], + [ + -75.89279284789451, + 39.46468659789453 + ], + [ + -75.89235076838531, + 39.439487500000006 + ], + [ + -75.8913260472361, + 39.4157552027639 + ], + [ + -75.89062746202809, + 39.408014962028105 + ], + [ + -75.88953890003162, + 39.38498125 + ], + [ + -75.88715925199065, + 39.365415748009355 + ], + [ + -75.88127062628152, + 39.34415187628153 + ], + [ + -75.87907248368842, + 39.33047500000001 + ], + [ + -75.87748307496805, + 39.32058567503195 + ], + [ + -75.86759375, + 39.29476457315633 + ], + [ + -75.85538716547042, + 39.288175334529576 + ], + [ + -75.8282870350059, + 39.275968750000004 + ], + [ + -75.8173286270748, + 39.27172762292521 + ], + [ + -75.8130875, + 39.25578472660005 + ], + [ + -75.79794874486377, + 39.236601255136236 + ], + [ + -75.79760439720079, + 39.2214625 + ], + [ + -75.7676722437337, + 39.2123715062663 + ], + [ + -75.75858125, + 39.21117295929072 + ], + [ + -75.74836987958975, + 39.21125112958973 + ], + [ + -75.7137522708571, + 39.21178522914291 + ], + [ + -75.704075, + 39.21186046264999 + ], + [ + -75.67996146438593, + 39.19734896438593 + ], + [ + -75.66694581884633, + 39.20408543115368 + ], + [ + -75.67566107970288, + 39.193048579702875 + ], + [ + -75.67054949218115, + 39.166956250000005 + ], + [ + -75.6635559114541, + 39.15296908854591 + ], + [ + -75.64956874999999, + 39.145975507818854 + ], + [ + -75.62914609464218, + 39.14653359464219 + ], + [ + -75.61467186011258, + 39.14734688988742 + ], + [ + -75.5950625, + 39.14791373192817 + ], + [ + -75.57631446045869, + 39.148208210458705 + ], + [ + -75.5587435012753, + 39.148768998724705 + ], + [ + -75.54055625, + 39.14906393405724 + ], + [ + -75.52104203854152, + 39.13196421145847 + ], + [ + -75.51527029981442, + 39.11245 + ] + ] + ] + }, + "properties":{ + "elevation":25 + } +} diff --git a/packages/turf-simplify/test/fixtures/in/simple.geojson b/packages/turf-simplify/test/fixtures/in/simple.geojson new file mode 100644 index 0000000000..dfaab19d7f --- /dev/null +++ b/packages/turf-simplify/test/fixtures/in/simple.geojson @@ -0,0 +1 @@ +{"type":"Feature","properties":{},"geometry":{"type":"Polygon","coordinates":[[[26.148429528000065,-28.29755210099995],[26.148582685000065,-28.29778390599995],[26.149207731000047,-28.29773837299996],[26.14925541100007,-28.297771688999944],[26.149255844000038,-28.297773261999964],[26.149276505000046,-28.29784835099997],[26.14928482700003,-28.29787859399994],[26.14928916200006,-28.29800647199994],[26.14931069800008,-28.298641791999955],[26.149339971000074,-28.298641232999955],[26.151298488000066,-28.29860385099994],[26.151290002000053,-28.298628995999934],[26.151417002000073,-28.299308003999954],[26.15159000400007,-28.299739003999946],[26.151951998000072,-28.30051100299994],[26.15206407200003,-28.30076885099993],[26.152066543000046,-28.30077453499996],[26.151987021000025,-28.300799009999935],[26.149896693000073,-28.301442350999935],[26.150354333000053,-28.30260575099993],[26.14914131000006,-28.302975170999957],[26.14836387300005,-28.302853868999932],[26.147575408000023,-28.30269948399996],[26.146257624000043,-28.302462392999928],[26.14557943400007,-28.302181192999967],[26.145492669000078,-28.302154609999945],[26.144921243000056,-28.303395982999973],[26.14482272200007,-28.30455853999996],[26.14431040900007,-28.30451913099995],[26.14429070400007,-28.304144747999942],[26.143837504000032,-28.304144747999942],[26.143613499000026,-28.304592757999956],[26.14346312200007,-28.304893512999968],[26.143260178000048,-28.304893512999968],[26.143246374000057,-28.304893512999968],[26.143147852000027,-28.304893512999968],[26.14295080900007,-28.304834399999947],[26.14200500000004,-28.30449942699994],[26.14198529600003,-28.304420608999976],[26.141525339000054,-28.304298579999966],[26.141019783000047,-28.30416445299994],[26.141118305000077,-28.304637356999933],[26.140940966000073,-28.30512996599998],[26.140376789000072,-28.306172836999963],[26.140476282000066,-28.30621363399996],[26.14041675800007,-28.306326533999936],[26.140146555000058,-28.30640398099996],[26.140073975000064,-28.306410747999962],[26.137315367000042,-28.305189078999945],[26.136645419000047,-28.304854104999947],[26.135719315000074,-28.30451913099995],[26.135515376000058,-28.304330879999952],[26.13546315800005,-28.304282678999982],[26.13558800000004,-28.30419999999998],[26.137463000000025,-28.30242899999996],[26.13794500000006,-28.30202799999995],[26.13796479100006,-28.30201049699997],[26.13798299700005,-28.302025000999947],[26.139450004000025,-28.30074499999995],[26.141302000000053,-28.29914199999996],[26.141913997000074,-28.29862600399997],[26.14212216900006,-28.29845037299998],[26.144304360000035,-28.296499429999983],[26.144799071000023,-28.29614006399993],[26.145209090000037,-28.295759748999956],[26.145465732000048,-28.295507246999932],[26.14575028200005,-28.295352539999953],[26.14589208800004,-28.295275441999934],[26.146584820000044,-28.295135245999973],[26.146587504000024,-28.295134702999974],[26.146827588000065,-28.295606591999956],[26.14685742000006,-28.29565372899998],[26.14691261200005,-28.29574093599996],[26.147077344000024,-28.296001226999977],[26.147117344000037,-28.296041226999932],[26.147907966000048,-28.29696016899993],[26.147913396000035,-28.296966331999954],[26.148429528000065,-28.29755210099995]]]}} diff --git a/packages/turf-simplify/test/fixtures/out/argentina_out.geojson b/packages/turf-simplify/test/fixtures/out/argentina_out.geojson new file mode 100644 index 0000000000..2cbaa9475e --- /dev/null +++ b/packages/turf-simplify/test/fixtures/out/argentina_out.geojson @@ -0,0 +1,417 @@ +{ + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -64.964892, + -22.075862 + ], + [ + -64.377021, + -22.798091 + ], + [ + -63.986838, + -21.993644 + ], + [ + -62.846468, + -22.034985 + ], + [ + -60.846565, + -23.880713 + ], + [ + -60.028966, + -24.032796 + ], + [ + -58.807128, + -24.771459 + ], + [ + -57.777217, + -25.16234 + ], + [ + -57.63366, + -25.603657 + ], + [ + -58.618174, + -27.123719 + ], + [ + -56.486702, + -27.548499 + ], + [ + -55.695846, + -27.387837 + ], + [ + -54.788795, + -26.621786 + ], + [ + -54.625291, + -25.739255 + ], + [ + -54.13005, + -25.547639 + ], + [ + -53.628349, + -26.124865 + ], + [ + -53.648735, + -26.923473 + ], + [ + -55.162286, + -27.881915 + ], + [ + -57.625133, + -30.216295 + ], + [ + -58.14244, + -32.044504 + ], + [ + -58.132648, + -33.040567 + ], + [ + -58.349611, + -33.263189 + ], + [ + -58.495442, + -34.43149 + ], + [ + -57.22583, + -35.288027 + ], + [ + -57.362359, + -35.97739 + ], + [ + -56.737487, + -36.413126 + ], + [ + -56.788285, + -36.901572 + ], + [ + -57.749157, + -38.183871 + ], + [ + -59.231857, + -38.72022 + ], + [ + -61.237445, + -38.928425 + ], + [ + -62.335957, + -38.827707 + ], + [ + -62.125763, + -39.424105 + ], + [ + -62.330531, + -40.172586 + ], + [ + -62.145994, + -40.676897 + ], + [ + -62.745803, + -41.028761 + ], + [ + -63.770495, + -41.166789 + ], + [ + -64.73209, + -40.802677 + ], + [ + -65.118035, + -41.064315 + ], + [ + -64.978561, + -42.058001 + ], + [ + -64.303408, + -42.359016 + ], + [ + -63.755948, + -42.043687 + ], + [ + -63.458059, + -42.563138 + ], + [ + -64.378804, + -42.873558 + ], + [ + -65.181804, + -43.495381 + ], + [ + -65.328823, + -44.501366 + ], + [ + -65.565269, + -45.036786 + ], + [ + -66.509966, + -45.039628 + ], + [ + -67.293794, + -45.551896 + ], + [ + -67.580546, + -46.301773 + ], + [ + -66.597066, + -47.033925 + ], + [ + -65.641027, + -47.236135 + ], + [ + -65.985088, + -48.133289 + ], + [ + -67.166179, + -48.697337 + ], + [ + -67.816088, + -49.869669 + ], + [ + -68.728745, + -50.264218 + ], + [ + -69.138539, + -50.73251 + ], + [ + -68.815561, + -51.771104 + ], + [ + -68.149995, + -52.349983 + ], + [ + -71.914804, + -52.009022 + ], + [ + -72.329404, + -51.425956 + ], + [ + -72.309974, + -50.67701 + ], + [ + -72.975747, + -50.74145 + ], + [ + -73.328051, + -50.378785 + ], + [ + -73.415436, + -49.318436 + ], + [ + -72.648247, + -48.878618 + ], + [ + -72.331161, + -48.244238 + ], + [ + -72.447355, + -47.738533 + ], + [ + -71.917258, + -46.884838 + ], + [ + -71.552009, + -45.560733 + ], + [ + -71.659316, + -44.973689 + ], + [ + -71.222779, + -44.784243 + ], + [ + -71.329801, + -44.407522 + ], + [ + -71.793623, + -44.207172 + ], + [ + -71.464056, + -43.787611 + ], + [ + -71.915424, + -43.408565 + ], + [ + -72.148898, + -42.254888 + ], + [ + -71.746804, + -42.051386 + ], + [ + -71.915734, + -40.832339 + ], + [ + -71.413517, + -38.916022 + ], + [ + -70.814664, + -38.552995 + ], + [ + -71.118625, + -37.576827 + ], + [ + -71.121881, + -36.658124 + ], + [ + -70.364769, + -36.005089 + ], + [ + -70.388049, + -35.169688 + ], + [ + -69.817309, + -34.193571 + ], + [ + -69.814777, + -33.273886 + ], + [ + -70.074399, + -33.09121 + ], + [ + -70.535069, + -31.36501 + ], + [ + -69.919008, + -30.336339 + ], + [ + -70.01355, + -29.367923 + ], + [ + -69.65613, + -28.459141 + ], + [ + -69.001235, + -27.521214 + ], + [ + -68.295542, + -26.89934 + ], + [ + -68.5948, + -26.506909 + ], + [ + -68.386001, + -26.185016 + ], + [ + -68.417653, + -24.518555 + ], + [ + -67.328443, + -24.025303 + ], + [ + -66.985234, + -22.986349 + ], + [ + -67.106674, + -22.735925 + ], + [ + -66.273339, + -21.83231 + ], + [ + -64.964892, + -22.075862 + ] + ] + ] + }, + "properties": { + "name": "Argentina" + } +} \ No newline at end of file diff --git a/packages/turf-simplify/test/fixtures/out/featurecollection_out.geojson b/packages/turf-simplify/test/fixtures/out/featurecollection_out.geojson new file mode 100644 index 0000000000..4890a34ff8 --- /dev/null +++ b/packages/turf-simplify/test/fixtures/out/featurecollection_out.geojson @@ -0,0 +1,125 @@ +{ + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 27.977542877197266, + -26.17500493262446 + ], + [ + 27.96432495117187, + -26.183015655416536 + ] + ] + }, + "properties": {} + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 27.972049713134762, + -26.199035448897074 + ], + [ + 27.98406600952148, + -26.192258112838022 + ], + [ + 27.98715591430664, + -26.201345814222698 + ], + [ + 27.972049713134762, + -26.199035448897074 + ] + ] + ] + }, + "properties": {} + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 27.946643829345703, + -26.170845301716803 + ], + [ + 27.94269561767578, + -26.183631842055114 + ], + [ + 27.928619384765625, + -26.165298896316028 + ], + [ + 27.94509887695312, + -26.158981835530525 + ], + [ + 27.954025268554688, + -26.173464345889972 + ], + [ + 27.936172485351562, + -26.194876675795218 + ], + [ + 27.916603088378906, + -26.16683959094609 + ], + [ + 27.930335998535156, + -26.18856121785662 + ], + [ + 27.946643829345703, + -26.170845301716803 + ] + ], + [ + [ + 27.936859130859375, + -26.16591517661071 + ], + [ + 27.93497085571289, + -26.173926524048102 + ], + [ + 27.94149398803711, + -26.17007498340995 + ], + [ + 27.936859130859375, + -26.16591517661071 + ] + ] + ] + }, + "properties": {} + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 27.95642852783203, + -26.152510345365126 + ] + } + } + ] +} \ No newline at end of file diff --git a/packages/turf-simplify/test/fixtures/out/geometrycollection_out.geojson b/packages/turf-simplify/test/fixtures/out/geometrycollection_out.geojson new file mode 100644 index 0000000000..1e0ae58b1a --- /dev/null +++ b/packages/turf-simplify/test/fixtures/out/geometrycollection_out.geojson @@ -0,0 +1,109 @@ +{ + "type": "GeometryCollection", + "geometries": [ + { + "type": "LineString", + "coordinates": [ + [ + 27.977542877197266, + -26.17500493262446 + ], + [ + 27.96432495117187, + -26.183015655416536 + ] + ] + }, + { + "type": "Polygon", + "coordinates": [ + [ + [ + 27.972049713134762, + -26.199035448897074 + ], + [ + 27.98406600952148, + -26.192258112838022 + ], + [ + 27.98715591430664, + -26.201345814222698 + ], + [ + 27.972049713134762, + -26.199035448897074 + ] + ] + ] + }, + { + "type": "Polygon", + "coordinates": [ + [ + [ + 27.946643829345703, + -26.170845301716803 + ], + [ + 27.94269561767578, + -26.183631842055114 + ], + [ + 27.928619384765625, + -26.165298896316028 + ], + [ + 27.94509887695312, + -26.158981835530525 + ], + [ + 27.954025268554688, + -26.173464345889972 + ], + [ + 27.936172485351562, + -26.194876675795218 + ], + [ + 27.916603088378906, + -26.16683959094609 + ], + [ + 27.930335998535156, + -26.18856121785662 + ], + [ + 27.946643829345703, + -26.170845301716803 + ] + ], + [ + [ + 27.936859130859375, + -26.16591517661071 + ], + [ + 27.93497085571289, + -26.173926524048102 + ], + [ + 27.94149398803711, + -26.17007498340995 + ], + [ + 27.936859130859375, + -26.16591517661071 + ] + ] + ] + }, + { + "type": "Point", + "coordinates": [ + 27.95642852783203, + -26.152510345365126 + ] + } + ] +} \ No newline at end of file diff --git a/packages/turf-simplify/test/fixtures/out/linestring_out.geojson b/packages/turf-simplify/test/fixtures/out/linestring_out.geojson new file mode 100644 index 0000000000..518fbe9f51 --- /dev/null +++ b/packages/turf-simplify/test/fixtures/out/linestring_out.geojson @@ -0,0 +1,105 @@ +{ + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -80.51399230957031, + 28.069556808283608 + ], + [ + -80.48583984375, + 28.042288740362853 + ], + [ + -80.50575256347656, + 28.028349057505775 + ], + [ + -80.47691345214844, + 28.021075462659883 + ], + [ + -80.49201965332031, + 27.998039170620494 + ], + [ + -80.46730041503906, + 27.962262536875905 + ], + [ + -80.46524047851562, + 27.91980029694533 + ], + [ + -80.40550231933594, + 27.930114089618602 + ], + [ + -80.39657592773438, + 27.980455528671527 + ], + [ + -80.42953491210938, + 27.990763528690582 + ], + [ + -80.4144287109375, + 28.00955793247135 + ], + [ + -80.3594970703125, + 27.972572275562527 + ], + [ + -80.38215637207031, + 27.913732900444284 + ], + [ + -80.41786193847656, + 27.881570017022806 + ], + [ + -80.39382934570312, + 27.85425440786446 + ], + [ + -80.36842346191405, + 27.888246118437756 + ], + [ + -80.35469055175781, + 27.86882358965466 + ], + [ + -80.3594970703125, + 27.8421119273228 + ], + [ + -80.39932250976561, + 27.82511017099003 + ], + [ + -80.40069580078125, + 27.79352841586229 + ], + [ + -80.36155700683594, + 27.786846483587688 + ], + [ + -80.35932540893555, + 27.806853088493792 + ], + [ + -80.35499095916748, + 27.796831264786892 + ], + [ + -80.32872676849365, + 27.80848534345178 + ] + ] + }, + "properties": {} +} \ No newline at end of file diff --git a/packages/turf-simplify/test/fixtures/out/multilinestring_out.geojson b/packages/turf-simplify/test/fixtures/out/multilinestring_out.geojson new file mode 100644 index 0000000000..bef5d0e9ee --- /dev/null +++ b/packages/turf-simplify/test/fixtures/out/multilinestring_out.geojson @@ -0,0 +1,169 @@ +{ + "type": "Feature", + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [ + -80.51399230957031, + 28.069556808283608 + ], + [ + -80.48583984375, + 28.042288740362853 + ], + [ + -80.50575256347656, + 28.028349057505775 + ], + [ + -80.47691345214844, + 28.021075462659883 + ], + [ + -80.49201965332031, + 27.998039170620494 + ], + [ + -80.46730041503906, + 27.962262536875905 + ], + [ + -80.46524047851562, + 27.91980029694533 + ], + [ + -80.40550231933594, + 27.930114089618602 + ], + [ + -80.39657592773438, + 27.980455528671527 + ], + [ + -80.42953491210938, + 27.990763528690582 + ], + [ + -80.4144287109375, + 28.00955793247135 + ], + [ + -80.3594970703125, + 27.972572275562527 + ], + [ + -80.38215637207031, + 27.913732900444284 + ], + [ + -80.41786193847656, + 27.881570017022806 + ], + [ + -80.39382934570312, + 27.85425440786446 + ], + [ + -80.36842346191405, + 27.888246118437756 + ], + [ + -80.35469055175781, + 27.86882358965466 + ], + [ + -80.3594970703125, + 27.8421119273228 + ], + [ + -80.39932250976561, + 27.82511017099003 + ], + [ + -80.40069580078125, + 27.79352841586229 + ], + [ + -80.36155700683594, + 27.786846483587688 + ], + [ + -80.35932540893555, + 27.806853088493792 + ], + [ + -80.35499095916748, + 27.796831264786892 + ], + [ + -80.32872676849365, + 27.80848534345178 + ] + ], + [ + [ + -80.51193237304688, + 28.091366281406945 + ], + [ + -80.47760009765624, + 28.074403740607135 + ], + [ + -80.46936035156249, + 28.01016414897993 + ], + [ + -80.45425415039061, + 27.99682659773872 + ], + [ + -80.44464111328125, + 28.02956127552927 + ], + [ + -80.35537719726562, + 27.991976169784156 + ], + [ + -80.3485107421875, + 27.947099367319762 + ], + [ + -80.32379150390625, + 27.937393821330247 + ], + [ + -80.34027099609375, + 27.879142241732627 + ], + [ + -80.35263061523436, + 27.90948552034696 + ], + [ + -80.36773681640625, + 27.858503954841247 + ], + [ + -80.34027099609375, + 27.822073862795612 + ], + [ + -80.29220581054688, + 27.853647316127383 + ], + [ + -80.30319213867188, + 27.860932192608534 + ], + [ + -80.2935791015625, + 27.894921808206057 + ] + ] + ] + }, + "properties": {} +} \ No newline at end of file diff --git a/packages/turf-simplify/test/fixtures/out/multipolygon_out.geojson b/packages/turf-simplify/test/fixtures/out/multipolygon_out.geojson new file mode 100644 index 0000000000..d7330b73ec --- /dev/null +++ b/packages/turf-simplify/test/fixtures/out/multipolygon_out.geojson @@ -0,0 +1,87 @@ +{ + "type": "Feature", + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 19.418070002000036, + -34.68667999799993 + ], + [ + 19.41454999700005, + -34.689969995999945 + ], + [ + 19.409929999000042, + -34.68798000399994 + ], + [ + 19.418070002000036, + -34.68667999799993 + ] + ] + ], + [ + [ + [ + 19.418799998000054, + -34.67816000099998 + ], + [ + 19.423420004000036, + -34.68024000099996 + ], + [ + 19.415079998000067, + -34.68597999699995 + ], + [ + 19.418799998000054, + -34.67816000099998 + ] + ] + ], + [ + [ + [ + 19.456289997000056, + -34.39274000199998 + ], + [ + 19.555989999000076, + -34.38973999999996 + ], + [ + 19.68811000100004, + -34.765320000999964 + ], + [ + 19.677619999000058, + -34.78188000299997 + ], + [ + 19.638179999000045, + -34.779159997999955 + ], + [ + 19.594120002000068, + -34.73309000399996 + ], + [ + 19.495539999000073, + -34.671620004999966 + ], + [ + 19.456289997000056, + -34.39274000199998 + ] + ] + ] + ] + }, + "properties": { + "country": "South Africa" + } +} \ No newline at end of file diff --git a/packages/turf-simplify/test/fixtures/out/polygon_out.geojson b/packages/turf-simplify/test/fixtures/out/polygon_out.geojson new file mode 100644 index 0000000000..103cbd8e8d --- /dev/null +++ b/packages/turf-simplify/test/fixtures/out/polygon_out.geojson @@ -0,0 +1,29 @@ +{ + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -75.51527029981442, + 39.11245 + ], + [ + -75.14260248550531, + 39.87553750000001 + ], + [ + -75.8130875, + 39.904921352207175 + ], + [ + -75.51527029981442, + 39.11245 + ] + ] + ] + }, + "properties": { + "elevation": 25 + } +} \ No newline at end of file diff --git a/packages/turf-simplify/test/fixtures/out/simple_out.geojson b/packages/turf-simplify/test/fixtures/out/simple_out.geojson new file mode 100644 index 0000000000..8873b2467f --- /dev/null +++ b/packages/turf-simplify/test/fixtures/out/simple_out.geojson @@ -0,0 +1,27 @@ +{ + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 26.148429528000065, + -28.29755210099995 + ], + [ + 26.150354333000053, + -28.30260575099993 + ], + [ + 26.13546315800005, + -28.304282678999982 + ], + [ + 26.148429528000065, + -28.29755210099995 + ] + ] + ] + }, + "properties": {} +} \ No newline at end of file diff --git a/packages/turf-simplify/test/test.js b/packages/turf-simplify/test/test.js new file mode 100644 index 0000000000..f6496b98ed --- /dev/null +++ b/packages/turf-simplify/test/test.js @@ -0,0 +1,112 @@ +var simplify = require('../'); +var test = require('tape'); +var fs = require('fs'); + +test('simplify -- line', function (t) { + var line = JSON.parse(fs.readFileSync(__dirname+'/fixtures/in/linestring.geojson')); + + var simplified = simplify(line, 0.01, false); + t.ok(simplified); + t.equal(simplified.type, 'Feature'); + t.equal(typeof simplified.geometry.coordinates[0][0], 'number'); + fs.writeFileSync(__dirname+'/fixtures/out/linestring_out.geojson', JSON.stringify(simplified, null, 2)); + + t.end(); +}); + +test('simplify -- multiline', function (t) { + var multiline = JSON.parse(fs.readFileSync(__dirname+'/fixtures/in/multilinestring.geojson')); + + var simplified = simplify(multiline, 0.01, false); + t.ok(simplified); + t.equal(simplified.type, 'Feature'); + var len = multiline.geometry.coordinates.length, + i; + for (i = 0; i < len; i++) { + t.equal(typeof simplified.geometry.coordinates[i][0][0], 'number'); + } + fs.writeFileSync(__dirname+'/fixtures/out/multilinestring_out.geojson', JSON.stringify(simplified, null, 2)); + + t.end(); +}); + +test('simplify -- polygon', function (t) { + var polygon = JSON.parse(fs.readFileSync(__dirname+'/fixtures/in/polygon.geojson')); + + var simplified = simplify(polygon, 1, false); + t.equal(simplified.type, 'Feature'); + t.equal(typeof simplified.geometry.coordinates[0][0][0], 'number'); + fs.writeFileSync(__dirname+'/fixtures/out/polygon_out.geojson', JSON.stringify(simplified, null, 2)); + + t.end(); +}); + +test('simplify -- over simplify polygon', function (t) { + var polygon = JSON.parse(fs.readFileSync(__dirname+'/fixtures/in/simple.geojson')); + + var simplified = simplify(polygon, 100, false); + t.equal(simplified.type, 'Feature'); + t.equal(typeof simplified.geometry.coordinates[0][0][0], 'number'); + fs.writeFileSync(__dirname+'/fixtures/out/simple_out.geojson', JSON.stringify(simplified, null, 2)); + + t.end(); +}); + +test('simplify -- multipolygon', function (t) { + var multipolygon = JSON.parse(fs.readFileSync(__dirname+'/fixtures/in/multipolygon.geojson')); + + var simplified = simplify(multipolygon, 0.01, false); + t.equal(simplified.type, 'Feature'); + var len = multipolygon.geometry.coordinates.length, + i; + for (i = 0; i < len; i++) { + t.equal(typeof simplified.geometry.coordinates[i][0][0][0], 'number'); + } + fs.writeFileSync(__dirname+'/fixtures/out/multipolygon_out.geojson', JSON.stringify(simplified, null, 2)); + + t.end(); +}); + +test('simplify -- featurecollection', function (t) { + var featurecollection = JSON.parse((fs.readFileSync(__dirname+'/fixtures/in/featurecollection.geojson'))); + + var simplified = simplify(featurecollection, 0.01, false); + t.equal(simplified.type, 'FeatureCollection'); + + fs.writeFileSync(__dirname+'/fixtures/out/featurecollection_out.geojson', JSON.stringify(simplified, null, 2)); + + t.end(); +}); + +test('simplify -- geometrycollection', function (t) { + var geometrycollection = JSON.parse((fs.readFileSync(__dirname+'/fixtures/in/geometrycollection.geojson'))); + + var simplified = simplify(geometrycollection, 0.01, false); + t.equal(simplified.type, 'GeometryCollection'); + simplified.geometries.forEach(function (g) { + if (g.type === 'LineString') { + t.equal(typeof g.coordinates[0][0], 'number'); + } else if (g.type === 'MultiLineString' || g.type === 'Polygon') { + // intentionally only checking the first line for multilinestring, test covered elsewhere + t.equal(typeof g.coordinates[0][0][0], 'number'); + } else if (g.type === 'MultiPolygon') { + // intentionally only checking the first ring, test covered elsewhere + t.equal(typeof g.coordinates[0][0][0][0], 'number'); + } + }); + + fs.writeFileSync(__dirname+'/fixtures/out/geometrycollection_out.geojson', JSON.stringify(simplified, null, 2)); + + t.end(); +}); + +test('simplify -- argentina', function (t) { + var argentina = JSON.parse(fs.readFileSync(__dirname+'/fixtures/in/argentina.geojson')); + + var simplified = simplify(argentina, 0.1, false); + t.equal(simplified.type, 'Feature'); + t.equal(typeof simplified.geometry.coordinates[0][0][0], 'number'); + fs.writeFileSync(__dirname+'/fixtures/out/argentina_out.geojson', JSON.stringify(simplified, null, 2)); + + t.end(); +}); diff --git a/packages/turf-square-grid/.npmignore b/packages/turf-square-grid/.npmignore new file mode 100644 index 0000000000..bb3c08c09a --- /dev/null +++ b/packages/turf-square-grid/.npmignore @@ -0,0 +1,2 @@ +test +coverage diff --git a/packages/turf-square-grid/LICENSE b/packages/turf-square-grid/LICENSE new file mode 100644 index 0000000000..87a514a46d --- /dev/null +++ b/packages/turf-square-grid/LICENSE @@ -0,0 +1,22 @@ +The MIT License (MIT) + +Copyright (c) 2015 turf + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + diff --git a/packages/turf-square-grid/README.md b/packages/turf-square-grid/README.md new file mode 100644 index 0000000000..d1e25b657d --- /dev/null +++ b/packages/turf-square-grid/README.md @@ -0,0 +1,47 @@ +# turf-square-grid + +[![build status](https://secure.travis-ci.org/Turfjs/turf-square-grid.png)](http://travis-ci.org/Turfjs/turf-square-grid) + + + + +### `turf.square-grid(extent, cellWidth, units)` + +Takes a bounding box and a cell depth and returns a FeatureCollection of Polygon features in a grid. + + +### Parameters + +| parameter | type | description | +| ----------- | -------------- | ---------------------------------------- | +| `extent` | Array. | extent in [minX, minY, maxX, maxY] order | +| `cellWidth` | Number | width of each cell | +| `units` | String | units to use for cellWidth | + + +### Example + +```js +var extent = [-77.3876953125,38.71980474264239,-76.9482421875,39.027718840211605]; +var cellWidth = 10; +var units = 'miles'; + +var squareGrid = turf.squareGrid(extent, cellWidth, units); + +//=squareGrid +``` + +## Installation + +Requires [nodejs](http://nodejs.org/). + +```sh +$ npm install turf-square-grid +``` + +## Tests + +```sh +$ npm test +``` + diff --git a/packages/turf-square-grid/bench.js b/packages/turf-square-grid/bench.js new file mode 100644 index 0000000000..ca765b7022 --- /dev/null +++ b/packages/turf-square-grid/bench.js @@ -0,0 +1,32 @@ +var grid = require('./'); +var Benchmark = require('benchmark'); +var fs = require('fs'); + +var bbox1 = [ + -96.6357421875, + 31.12819929911196, + -84.9462890625, + 40.58058466412764 + ]; + +var highres = grid(bbox1, 100, 'miles').features.length; +var midres = grid(bbox1, 10, 'miles').features.length; +var lowres = grid(bbox1, 1, 'miles').features.length; +var suite = new Benchmark.Suite('turf-square-grid'); +suite + .add('turf-square-grid -- '+highres+' cells',function () { + grid(bbox1, 100, 'miles'); + }) + .add('turf-square-grid -- '+midres+' cells',function () { + grid(bbox1, 10, 'miles'); + }) + .add('turf-square-grid -- '+lowres+' cells',function () { + grid(bbox1, 1, 'miles'); + }) + .on('cycle', function (event) { + console.log(String(event.target)); + }) + .on('complete', function () { + + }) + .run(); \ No newline at end of file diff --git a/packages/turf-square-grid/index.js b/packages/turf-square-grid/index.js new file mode 100644 index 0000000000..05ab823355 --- /dev/null +++ b/packages/turf-square-grid/index.js @@ -0,0 +1,50 @@ +var featurecollection = require('turf-helpers').featureCollection; +var point = require('turf-helpers').point; +var polygon = require('turf-helpers').polygon; +var distance = require('turf-distance'); + +/** + * Takes a bounding box and a cell depth and returns a set of square {@link Polygon|polygons} in a grid. + * + * @name squareGrid + * @category interpolation + * @param {Array} extent extent in [minX, minY, maxX, maxY] order + * @param {Number} cellWidth width of each cell + * @param {String} units units to use for cellWidth + * @return {FeatureCollection} grid a grid of polygons + * @example + * var extent = [-77.3876953125,38.71980474264239,-76.9482421875,39.027718840211605]; + * var cellWidth = 10; + * var units = 'miles'; + * + * var squareGrid = turf.squareGrid(extent, cellWidth, units); + * + * //=squareGrid + */ +module.exports = function squareGrid(bbox, cell, units) { + var fc = featurecollection([]); + var xFraction = cell / (distance(point([bbox[0], bbox[1]]), point([bbox[2], bbox[1]]), units)); + var cellWidth = xFraction * (bbox[2] - bbox[0]); + var yFraction = cell / (distance(point([bbox[0], bbox[1]]), point([bbox[0], bbox[3]]), units)); + var cellHeight = yFraction * (bbox[3] - bbox[1]); + + var currentX = bbox[0]; + while (currentX <= bbox[2]) { + var currentY = bbox[1]; + while (currentY <= bbox[3]) { + var cellPoly = polygon([[ + [currentX, currentY], + [currentX, currentY + cellHeight], + [currentX + cellWidth, currentY + cellHeight], + [currentX + cellWidth, currentY], + [currentX, currentY] + ]]); + fc.features.push(cellPoly); + + currentY += cellHeight; + } + currentX += cellWidth; + } + + return fc; +}; diff --git a/packages/turf-square-grid/package.json b/packages/turf-square-grid/package.json new file mode 100644 index 0000000000..e07b1b4571 --- /dev/null +++ b/packages/turf-square-grid/package.json @@ -0,0 +1,34 @@ +{ + "name": "turf-square-grid", + "version": "3.0.5", + "description": "", + "main": "index.js", + "dependencies": { + "turf-distance": "^3.0.5", + "turf-helpers": "^3.0.5" + }, + "devDependencies": { + "benchmark": "^1.0.0", + "tape": "^3.5.0" + }, + "scripts": { + "test": "node test.js" + }, + "repository": { + "type": "git", + "url": "https://github.com/Turfjs/turf-square-grid.git" + }, + "keywords": [ + "turf", + "grid", + "regular", + "cartesian", + "grid" + ], + "author": "morganherlocker", + "license": "MIT", + "bugs": { + "url": "https://github.com/Turfjs/turf-square-grid/issues" + }, + "homepage": "https://github.com/Turfjs/turf-square-grid" +} diff --git a/packages/turf-square-grid/test.js b/packages/turf-square-grid/test.js new file mode 100644 index 0000000000..c3fdf6263e --- /dev/null +++ b/packages/turf-square-grid/test.js @@ -0,0 +1,49 @@ +var test = require('tape'); +var grid = require('./'); +var fs = require('fs'); + +test('square-grid', function (t) { + var bbox1 = [ + -96.6357421875, + 31.12819929911196, + -84.9462890625, + 40.58058466412764 + ]; + var bbox2 = [ + -81.650390625, + 24.926294766395593, + -79.8486328125, + 26.43122806450644 + ]; + var bbox3 = [ + -77.3876953125, + 38.71980474264239, + -76.9482421875, + 39.027718840211605 + ]; + var bbox4 = [ + 63.6328125, + 11.867350911459308, + 75.234375, + 47.754097979680026 + ]; + + var grid1 = grid(bbox1, 20, 'miles'); + var grid2 = grid(bbox2, 5, 'miles'); + var grid3 = grid(bbox3, 2, 'miles'); + var grid4 = grid(bbox4, 50, 'miles'); + + if (process.env.REGEN) { + fs.writeFileSync(__dirname+'/test/out/grid1.geojson', JSON.stringify(grid1,null,2)); + fs.writeFileSync(__dirname+'/test/out/grid2.geojson', JSON.stringify(grid2,null,2)); + fs.writeFileSync(__dirname+'/test/out/grid3.geojson', JSON.stringify(grid3,null,2)); + fs.writeFileSync(__dirname+'/test/out/grid4.geojson', JSON.stringify(grid4,null,2)); + } + + t.deepEqual(JSON.parse(fs.readFileSync(__dirname+'/test/out/grid1.geojson')), grid1, 'grid is correct'); + t.deepEqual(JSON.parse(fs.readFileSync(__dirname+'/test/out/grid2.geojson')), grid2, 'grid is correct'); + t.deepEqual(JSON.parse(fs.readFileSync(__dirname+'/test/out/grid3.geojson')), grid3, 'grid is correct'); + t.deepEqual(JSON.parse(fs.readFileSync(__dirname+'/test/out/grid4.geojson')), grid4, 'grid is correct'); + + t.end(); +}); diff --git a/packages/turf-square-grid/test/out/grid1.geojson b/packages/turf-square-grid/test/out/grid1.geojson new file mode 100644 index 0000000000..2de0273a3b --- /dev/null +++ b/packages/turf-square-grid/test/out/grid1.geojson @@ -0,0 +1,35810 @@ +{ + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.6357421875, + 31.12819929911196 + ], + [ + -96.6357421875, + 31.417571922915403 + ], + [ + -96.29753788488215, + 31.417571922915403 + ], + [ + -96.29753788488215, + 31.12819929911196 + ], + [ + -96.6357421875, + 31.12819929911196 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.6357421875, + 31.417571922915403 + ], + [ + -96.6357421875, + 31.706944546718848 + ], + [ + -96.29753788488215, + 31.706944546718848 + ], + [ + -96.29753788488215, + 31.417571922915403 + ], + [ + -96.6357421875, + 31.417571922915403 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.6357421875, + 31.706944546718848 + ], + [ + -96.6357421875, + 31.996317170522293 + ], + [ + -96.29753788488215, + 31.996317170522293 + ], + [ + -96.29753788488215, + 31.706944546718848 + ], + [ + -96.6357421875, + 31.706944546718848 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.6357421875, + 31.996317170522293 + ], + [ + -96.6357421875, + 32.28568979432574 + ], + [ + -96.29753788488215, + 32.28568979432574 + ], + [ + -96.29753788488215, + 31.996317170522293 + ], + [ + -96.6357421875, + 31.996317170522293 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.6357421875, + 32.28568979432574 + ], + [ + -96.6357421875, + 32.575062418129185 + ], + [ + -96.29753788488215, + 32.575062418129185 + ], + [ + -96.29753788488215, + 32.28568979432574 + ], + [ + -96.6357421875, + 32.28568979432574 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.6357421875, + 32.575062418129185 + ], + [ + -96.6357421875, + 32.86443504193263 + ], + [ + -96.29753788488215, + 32.86443504193263 + ], + [ + -96.29753788488215, + 32.575062418129185 + ], + [ + -96.6357421875, + 32.575062418129185 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.6357421875, + 32.86443504193263 + ], + [ + -96.6357421875, + 33.153807665736075 + ], + [ + -96.29753788488215, + 33.153807665736075 + ], + [ + -96.29753788488215, + 32.86443504193263 + ], + [ + -96.6357421875, + 32.86443504193263 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.6357421875, + 33.153807665736075 + ], + [ + -96.6357421875, + 33.44318028953952 + ], + [ + -96.29753788488215, + 33.44318028953952 + ], + [ + -96.29753788488215, + 33.153807665736075 + ], + [ + -96.6357421875, + 33.153807665736075 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.6357421875, + 33.44318028953952 + ], + [ + -96.6357421875, + 33.732552913342964 + ], + [ + -96.29753788488215, + 33.732552913342964 + ], + [ + -96.29753788488215, + 33.44318028953952 + ], + [ + -96.6357421875, + 33.44318028953952 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.6357421875, + 33.732552913342964 + ], + [ + -96.6357421875, + 34.02192553714641 + ], + [ + -96.29753788488215, + 34.02192553714641 + ], + [ + -96.29753788488215, + 33.732552913342964 + ], + [ + -96.6357421875, + 33.732552913342964 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.6357421875, + 34.02192553714641 + ], + [ + -96.6357421875, + 34.31129816094985 + ], + [ + -96.29753788488215, + 34.31129816094985 + ], + [ + -96.29753788488215, + 34.02192553714641 + ], + [ + -96.6357421875, + 34.02192553714641 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.6357421875, + 34.31129816094985 + ], + [ + -96.6357421875, + 34.6006707847533 + ], + [ + -96.29753788488215, + 34.6006707847533 + ], + [ + -96.29753788488215, + 34.31129816094985 + ], + [ + -96.6357421875, + 34.31129816094985 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.6357421875, + 34.6006707847533 + ], + [ + -96.6357421875, + 34.89004340855674 + ], + [ + -96.29753788488215, + 34.89004340855674 + ], + [ + -96.29753788488215, + 34.6006707847533 + ], + [ + -96.6357421875, + 34.6006707847533 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.6357421875, + 34.89004340855674 + ], + [ + -96.6357421875, + 35.17941603236019 + ], + [ + -96.29753788488215, + 35.17941603236019 + ], + [ + -96.29753788488215, + 34.89004340855674 + ], + [ + -96.6357421875, + 34.89004340855674 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.6357421875, + 35.17941603236019 + ], + [ + -96.6357421875, + 35.46878865616363 + ], + [ + -96.29753788488215, + 35.46878865616363 + ], + [ + -96.29753788488215, + 35.17941603236019 + ], + [ + -96.6357421875, + 35.17941603236019 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.6357421875, + 35.46878865616363 + ], + [ + -96.6357421875, + 35.75816127996708 + ], + [ + -96.29753788488215, + 35.75816127996708 + ], + [ + -96.29753788488215, + 35.46878865616363 + ], + [ + -96.6357421875, + 35.46878865616363 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.6357421875, + 35.75816127996708 + ], + [ + -96.6357421875, + 36.04753390377052 + ], + [ + -96.29753788488215, + 36.04753390377052 + ], + [ + -96.29753788488215, + 35.75816127996708 + ], + [ + -96.6357421875, + 35.75816127996708 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.6357421875, + 36.04753390377052 + ], + [ + -96.6357421875, + 36.336906527573966 + ], + [ + -96.29753788488215, + 36.336906527573966 + ], + [ + -96.29753788488215, + 36.04753390377052 + ], + [ + -96.6357421875, + 36.04753390377052 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.6357421875, + 36.336906527573966 + ], + [ + -96.6357421875, + 36.62627915137741 + ], + [ + -96.29753788488215, + 36.62627915137741 + ], + [ + -96.29753788488215, + 36.336906527573966 + ], + [ + -96.6357421875, + 36.336906527573966 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.6357421875, + 36.62627915137741 + ], + [ + -96.6357421875, + 36.915651775180855 + ], + [ + -96.29753788488215, + 36.915651775180855 + ], + [ + -96.29753788488215, + 36.62627915137741 + ], + [ + -96.6357421875, + 36.62627915137741 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.6357421875, + 36.915651775180855 + ], + [ + -96.6357421875, + 37.2050243989843 + ], + [ + -96.29753788488215, + 37.2050243989843 + ], + [ + -96.29753788488215, + 36.915651775180855 + ], + [ + -96.6357421875, + 36.915651775180855 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.6357421875, + 37.2050243989843 + ], + [ + -96.6357421875, + 37.494397022787744 + ], + [ + -96.29753788488215, + 37.494397022787744 + ], + [ + -96.29753788488215, + 37.2050243989843 + ], + [ + -96.6357421875, + 37.2050243989843 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.6357421875, + 37.494397022787744 + ], + [ + -96.6357421875, + 37.78376964659119 + ], + [ + -96.29753788488215, + 37.78376964659119 + ], + [ + -96.29753788488215, + 37.494397022787744 + ], + [ + -96.6357421875, + 37.494397022787744 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.6357421875, + 37.78376964659119 + ], + [ + -96.6357421875, + 38.073142270394634 + ], + [ + -96.29753788488215, + 38.073142270394634 + ], + [ + -96.29753788488215, + 37.78376964659119 + ], + [ + -96.6357421875, + 37.78376964659119 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.6357421875, + 38.073142270394634 + ], + [ + -96.6357421875, + 38.36251489419808 + ], + [ + -96.29753788488215, + 38.36251489419808 + ], + [ + -96.29753788488215, + 38.073142270394634 + ], + [ + -96.6357421875, + 38.073142270394634 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.6357421875, + 38.36251489419808 + ], + [ + -96.6357421875, + 38.65188751800152 + ], + [ + -96.29753788488215, + 38.65188751800152 + ], + [ + -96.29753788488215, + 38.36251489419808 + ], + [ + -96.6357421875, + 38.36251489419808 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.6357421875, + 38.65188751800152 + ], + [ + -96.6357421875, + 38.94126014180497 + ], + [ + -96.29753788488215, + 38.94126014180497 + ], + [ + -96.29753788488215, + 38.65188751800152 + ], + [ + -96.6357421875, + 38.65188751800152 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.6357421875, + 38.94126014180497 + ], + [ + -96.6357421875, + 39.23063276560841 + ], + [ + -96.29753788488215, + 39.23063276560841 + ], + [ + -96.29753788488215, + 38.94126014180497 + ], + [ + -96.6357421875, + 38.94126014180497 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.6357421875, + 39.23063276560841 + ], + [ + -96.6357421875, + 39.52000538941186 + ], + [ + -96.29753788488215, + 39.52000538941186 + ], + [ + -96.29753788488215, + 39.23063276560841 + ], + [ + -96.6357421875, + 39.23063276560841 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.6357421875, + 39.52000538941186 + ], + [ + -96.6357421875, + 39.8093780132153 + ], + [ + -96.29753788488215, + 39.8093780132153 + ], + [ + -96.29753788488215, + 39.52000538941186 + ], + [ + -96.6357421875, + 39.52000538941186 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.6357421875, + 39.8093780132153 + ], + [ + -96.6357421875, + 40.098750637018746 + ], + [ + -96.29753788488215, + 40.098750637018746 + ], + [ + -96.29753788488215, + 39.8093780132153 + ], + [ + -96.6357421875, + 39.8093780132153 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.6357421875, + 40.098750637018746 + ], + [ + -96.6357421875, + 40.38812326082219 + ], + [ + -96.29753788488215, + 40.38812326082219 + ], + [ + -96.29753788488215, + 40.098750637018746 + ], + [ + -96.6357421875, + 40.098750637018746 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.6357421875, + 40.38812326082219 + ], + [ + -96.6357421875, + 40.677495884625635 + ], + [ + -96.29753788488215, + 40.677495884625635 + ], + [ + -96.29753788488215, + 40.38812326082219 + ], + [ + -96.6357421875, + 40.38812326082219 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.29753788488215, + 31.12819929911196 + ], + [ + -96.29753788488215, + 31.417571922915403 + ], + [ + -95.95933358226429, + 31.417571922915403 + ], + [ + -95.95933358226429, + 31.12819929911196 + ], + [ + -96.29753788488215, + 31.12819929911196 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.29753788488215, + 31.417571922915403 + ], + [ + -96.29753788488215, + 31.706944546718848 + ], + [ + -95.95933358226429, + 31.706944546718848 + ], + [ + -95.95933358226429, + 31.417571922915403 + ], + [ + -96.29753788488215, + 31.417571922915403 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.29753788488215, + 31.706944546718848 + ], + [ + -96.29753788488215, + 31.996317170522293 + ], + [ + -95.95933358226429, + 31.996317170522293 + ], + [ + -95.95933358226429, + 31.706944546718848 + ], + [ + -96.29753788488215, + 31.706944546718848 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.29753788488215, + 31.996317170522293 + ], + [ + -96.29753788488215, + 32.28568979432574 + ], + [ + -95.95933358226429, + 32.28568979432574 + ], + [ + -95.95933358226429, + 31.996317170522293 + ], + [ + -96.29753788488215, + 31.996317170522293 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.29753788488215, + 32.28568979432574 + ], + [ + -96.29753788488215, + 32.575062418129185 + ], + [ + -95.95933358226429, + 32.575062418129185 + ], + [ + -95.95933358226429, + 32.28568979432574 + ], + [ + -96.29753788488215, + 32.28568979432574 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.29753788488215, + 32.575062418129185 + ], + [ + -96.29753788488215, + 32.86443504193263 + ], + [ + -95.95933358226429, + 32.86443504193263 + ], + [ + -95.95933358226429, + 32.575062418129185 + ], + [ + -96.29753788488215, + 32.575062418129185 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.29753788488215, + 32.86443504193263 + ], + [ + -96.29753788488215, + 33.153807665736075 + ], + [ + -95.95933358226429, + 33.153807665736075 + ], + [ + -95.95933358226429, + 32.86443504193263 + ], + [ + -96.29753788488215, + 32.86443504193263 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.29753788488215, + 33.153807665736075 + ], + [ + -96.29753788488215, + 33.44318028953952 + ], + [ + -95.95933358226429, + 33.44318028953952 + ], + [ + -95.95933358226429, + 33.153807665736075 + ], + [ + -96.29753788488215, + 33.153807665736075 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.29753788488215, + 33.44318028953952 + ], + [ + -96.29753788488215, + 33.732552913342964 + ], + [ + -95.95933358226429, + 33.732552913342964 + ], + [ + -95.95933358226429, + 33.44318028953952 + ], + [ + -96.29753788488215, + 33.44318028953952 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.29753788488215, + 33.732552913342964 + ], + [ + -96.29753788488215, + 34.02192553714641 + ], + [ + -95.95933358226429, + 34.02192553714641 + ], + [ + -95.95933358226429, + 33.732552913342964 + ], + [ + -96.29753788488215, + 33.732552913342964 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.29753788488215, + 34.02192553714641 + ], + [ + -96.29753788488215, + 34.31129816094985 + ], + [ + -95.95933358226429, + 34.31129816094985 + ], + [ + -95.95933358226429, + 34.02192553714641 + ], + [ + -96.29753788488215, + 34.02192553714641 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.29753788488215, + 34.31129816094985 + ], + [ + -96.29753788488215, + 34.6006707847533 + ], + [ + -95.95933358226429, + 34.6006707847533 + ], + [ + -95.95933358226429, + 34.31129816094985 + ], + [ + -96.29753788488215, + 34.31129816094985 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.29753788488215, + 34.6006707847533 + ], + [ + -96.29753788488215, + 34.89004340855674 + ], + [ + -95.95933358226429, + 34.89004340855674 + ], + [ + -95.95933358226429, + 34.6006707847533 + ], + [ + -96.29753788488215, + 34.6006707847533 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.29753788488215, + 34.89004340855674 + ], + [ + -96.29753788488215, + 35.17941603236019 + ], + [ + -95.95933358226429, + 35.17941603236019 + ], + [ + -95.95933358226429, + 34.89004340855674 + ], + [ + -96.29753788488215, + 34.89004340855674 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.29753788488215, + 35.17941603236019 + ], + [ + -96.29753788488215, + 35.46878865616363 + ], + [ + -95.95933358226429, + 35.46878865616363 + ], + [ + -95.95933358226429, + 35.17941603236019 + ], + [ + -96.29753788488215, + 35.17941603236019 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.29753788488215, + 35.46878865616363 + ], + [ + -96.29753788488215, + 35.75816127996708 + ], + [ + -95.95933358226429, + 35.75816127996708 + ], + [ + -95.95933358226429, + 35.46878865616363 + ], + [ + -96.29753788488215, + 35.46878865616363 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.29753788488215, + 35.75816127996708 + ], + [ + -96.29753788488215, + 36.04753390377052 + ], + [ + -95.95933358226429, + 36.04753390377052 + ], + [ + -95.95933358226429, + 35.75816127996708 + ], + [ + -96.29753788488215, + 35.75816127996708 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.29753788488215, + 36.04753390377052 + ], + [ + -96.29753788488215, + 36.336906527573966 + ], + [ + -95.95933358226429, + 36.336906527573966 + ], + [ + -95.95933358226429, + 36.04753390377052 + ], + [ + -96.29753788488215, + 36.04753390377052 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.29753788488215, + 36.336906527573966 + ], + [ + -96.29753788488215, + 36.62627915137741 + ], + [ + -95.95933358226429, + 36.62627915137741 + ], + [ + -95.95933358226429, + 36.336906527573966 + ], + [ + -96.29753788488215, + 36.336906527573966 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.29753788488215, + 36.62627915137741 + ], + [ + -96.29753788488215, + 36.915651775180855 + ], + [ + -95.95933358226429, + 36.915651775180855 + ], + [ + -95.95933358226429, + 36.62627915137741 + ], + [ + -96.29753788488215, + 36.62627915137741 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.29753788488215, + 36.915651775180855 + ], + [ + -96.29753788488215, + 37.2050243989843 + ], + [ + -95.95933358226429, + 37.2050243989843 + ], + [ + -95.95933358226429, + 36.915651775180855 + ], + [ + -96.29753788488215, + 36.915651775180855 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.29753788488215, + 37.2050243989843 + ], + [ + -96.29753788488215, + 37.494397022787744 + ], + [ + -95.95933358226429, + 37.494397022787744 + ], + [ + -95.95933358226429, + 37.2050243989843 + ], + [ + -96.29753788488215, + 37.2050243989843 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.29753788488215, + 37.494397022787744 + ], + [ + -96.29753788488215, + 37.78376964659119 + ], + [ + -95.95933358226429, + 37.78376964659119 + ], + [ + -95.95933358226429, + 37.494397022787744 + ], + [ + -96.29753788488215, + 37.494397022787744 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.29753788488215, + 37.78376964659119 + ], + [ + -96.29753788488215, + 38.073142270394634 + ], + [ + -95.95933358226429, + 38.073142270394634 + ], + [ + -95.95933358226429, + 37.78376964659119 + ], + [ + -96.29753788488215, + 37.78376964659119 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.29753788488215, + 38.073142270394634 + ], + [ + -96.29753788488215, + 38.36251489419808 + ], + [ + -95.95933358226429, + 38.36251489419808 + ], + [ + -95.95933358226429, + 38.073142270394634 + ], + [ + -96.29753788488215, + 38.073142270394634 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.29753788488215, + 38.36251489419808 + ], + [ + -96.29753788488215, + 38.65188751800152 + ], + [ + -95.95933358226429, + 38.65188751800152 + ], + [ + -95.95933358226429, + 38.36251489419808 + ], + [ + -96.29753788488215, + 38.36251489419808 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.29753788488215, + 38.65188751800152 + ], + [ + -96.29753788488215, + 38.94126014180497 + ], + [ + -95.95933358226429, + 38.94126014180497 + ], + [ + -95.95933358226429, + 38.65188751800152 + ], + [ + -96.29753788488215, + 38.65188751800152 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.29753788488215, + 38.94126014180497 + ], + [ + -96.29753788488215, + 39.23063276560841 + ], + [ + -95.95933358226429, + 39.23063276560841 + ], + [ + -95.95933358226429, + 38.94126014180497 + ], + [ + -96.29753788488215, + 38.94126014180497 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.29753788488215, + 39.23063276560841 + ], + [ + -96.29753788488215, + 39.52000538941186 + ], + [ + -95.95933358226429, + 39.52000538941186 + ], + [ + -95.95933358226429, + 39.23063276560841 + ], + [ + -96.29753788488215, + 39.23063276560841 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.29753788488215, + 39.52000538941186 + ], + [ + -96.29753788488215, + 39.8093780132153 + ], + [ + -95.95933358226429, + 39.8093780132153 + ], + [ + -95.95933358226429, + 39.52000538941186 + ], + [ + -96.29753788488215, + 39.52000538941186 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.29753788488215, + 39.8093780132153 + ], + [ + -96.29753788488215, + 40.098750637018746 + ], + [ + -95.95933358226429, + 40.098750637018746 + ], + [ + -95.95933358226429, + 39.8093780132153 + ], + [ + -96.29753788488215, + 39.8093780132153 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.29753788488215, + 40.098750637018746 + ], + [ + -96.29753788488215, + 40.38812326082219 + ], + [ + -95.95933358226429, + 40.38812326082219 + ], + [ + -95.95933358226429, + 40.098750637018746 + ], + [ + -96.29753788488215, + 40.098750637018746 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.29753788488215, + 40.38812326082219 + ], + [ + -96.29753788488215, + 40.677495884625635 + ], + [ + -95.95933358226429, + 40.677495884625635 + ], + [ + -95.95933358226429, + 40.38812326082219 + ], + [ + -96.29753788488215, + 40.38812326082219 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.95933358226429, + 31.12819929911196 + ], + [ + -95.95933358226429, + 31.417571922915403 + ], + [ + -95.62112927964644, + 31.417571922915403 + ], + [ + -95.62112927964644, + 31.12819929911196 + ], + [ + -95.95933358226429, + 31.12819929911196 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.95933358226429, + 31.417571922915403 + ], + [ + -95.95933358226429, + 31.706944546718848 + ], + [ + -95.62112927964644, + 31.706944546718848 + ], + [ + -95.62112927964644, + 31.417571922915403 + ], + [ + -95.95933358226429, + 31.417571922915403 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.95933358226429, + 31.706944546718848 + ], + [ + -95.95933358226429, + 31.996317170522293 + ], + [ + -95.62112927964644, + 31.996317170522293 + ], + [ + -95.62112927964644, + 31.706944546718848 + ], + [ + -95.95933358226429, + 31.706944546718848 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.95933358226429, + 31.996317170522293 + ], + [ + -95.95933358226429, + 32.28568979432574 + ], + [ + -95.62112927964644, + 32.28568979432574 + ], + [ + -95.62112927964644, + 31.996317170522293 + ], + [ + -95.95933358226429, + 31.996317170522293 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.95933358226429, + 32.28568979432574 + ], + [ + -95.95933358226429, + 32.575062418129185 + ], + [ + -95.62112927964644, + 32.575062418129185 + ], + [ + -95.62112927964644, + 32.28568979432574 + ], + [ + -95.95933358226429, + 32.28568979432574 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.95933358226429, + 32.575062418129185 + ], + [ + -95.95933358226429, + 32.86443504193263 + ], + [ + -95.62112927964644, + 32.86443504193263 + ], + [ + -95.62112927964644, + 32.575062418129185 + ], + [ + -95.95933358226429, + 32.575062418129185 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.95933358226429, + 32.86443504193263 + ], + [ + -95.95933358226429, + 33.153807665736075 + ], + [ + -95.62112927964644, + 33.153807665736075 + ], + [ + -95.62112927964644, + 32.86443504193263 + ], + [ + -95.95933358226429, + 32.86443504193263 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.95933358226429, + 33.153807665736075 + ], + [ + -95.95933358226429, + 33.44318028953952 + ], + [ + -95.62112927964644, + 33.44318028953952 + ], + [ + -95.62112927964644, + 33.153807665736075 + ], + [ + -95.95933358226429, + 33.153807665736075 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.95933358226429, + 33.44318028953952 + ], + [ + -95.95933358226429, + 33.732552913342964 + ], + [ + -95.62112927964644, + 33.732552913342964 + ], + [ + -95.62112927964644, + 33.44318028953952 + ], + [ + -95.95933358226429, + 33.44318028953952 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.95933358226429, + 33.732552913342964 + ], + [ + -95.95933358226429, + 34.02192553714641 + ], + [ + -95.62112927964644, + 34.02192553714641 + ], + [ + -95.62112927964644, + 33.732552913342964 + ], + [ + -95.95933358226429, + 33.732552913342964 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.95933358226429, + 34.02192553714641 + ], + [ + -95.95933358226429, + 34.31129816094985 + ], + [ + -95.62112927964644, + 34.31129816094985 + ], + [ + -95.62112927964644, + 34.02192553714641 + ], + [ + -95.95933358226429, + 34.02192553714641 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.95933358226429, + 34.31129816094985 + ], + [ + -95.95933358226429, + 34.6006707847533 + ], + [ + -95.62112927964644, + 34.6006707847533 + ], + [ + -95.62112927964644, + 34.31129816094985 + ], + [ + -95.95933358226429, + 34.31129816094985 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.95933358226429, + 34.6006707847533 + ], + [ + -95.95933358226429, + 34.89004340855674 + ], + [ + -95.62112927964644, + 34.89004340855674 + ], + [ + -95.62112927964644, + 34.6006707847533 + ], + [ + -95.95933358226429, + 34.6006707847533 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.95933358226429, + 34.89004340855674 + ], + [ + -95.95933358226429, + 35.17941603236019 + ], + [ + -95.62112927964644, + 35.17941603236019 + ], + [ + -95.62112927964644, + 34.89004340855674 + ], + [ + -95.95933358226429, + 34.89004340855674 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.95933358226429, + 35.17941603236019 + ], + [ + -95.95933358226429, + 35.46878865616363 + ], + [ + -95.62112927964644, + 35.46878865616363 + ], + [ + -95.62112927964644, + 35.17941603236019 + ], + [ + -95.95933358226429, + 35.17941603236019 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.95933358226429, + 35.46878865616363 + ], + [ + -95.95933358226429, + 35.75816127996708 + ], + [ + -95.62112927964644, + 35.75816127996708 + ], + [ + -95.62112927964644, + 35.46878865616363 + ], + [ + -95.95933358226429, + 35.46878865616363 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.95933358226429, + 35.75816127996708 + ], + [ + -95.95933358226429, + 36.04753390377052 + ], + [ + -95.62112927964644, + 36.04753390377052 + ], + [ + -95.62112927964644, + 35.75816127996708 + ], + [ + -95.95933358226429, + 35.75816127996708 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.95933358226429, + 36.04753390377052 + ], + [ + -95.95933358226429, + 36.336906527573966 + ], + [ + -95.62112927964644, + 36.336906527573966 + ], + [ + -95.62112927964644, + 36.04753390377052 + ], + [ + -95.95933358226429, + 36.04753390377052 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.95933358226429, + 36.336906527573966 + ], + [ + -95.95933358226429, + 36.62627915137741 + ], + [ + -95.62112927964644, + 36.62627915137741 + ], + [ + -95.62112927964644, + 36.336906527573966 + ], + [ + -95.95933358226429, + 36.336906527573966 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.95933358226429, + 36.62627915137741 + ], + [ + -95.95933358226429, + 36.915651775180855 + ], + [ + -95.62112927964644, + 36.915651775180855 + ], + [ + -95.62112927964644, + 36.62627915137741 + ], + [ + -95.95933358226429, + 36.62627915137741 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.95933358226429, + 36.915651775180855 + ], + [ + -95.95933358226429, + 37.2050243989843 + ], + [ + -95.62112927964644, + 37.2050243989843 + ], + [ + -95.62112927964644, + 36.915651775180855 + ], + [ + -95.95933358226429, + 36.915651775180855 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.95933358226429, + 37.2050243989843 + ], + [ + -95.95933358226429, + 37.494397022787744 + ], + [ + -95.62112927964644, + 37.494397022787744 + ], + [ + -95.62112927964644, + 37.2050243989843 + ], + [ + -95.95933358226429, + 37.2050243989843 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.95933358226429, + 37.494397022787744 + ], + [ + -95.95933358226429, + 37.78376964659119 + ], + [ + -95.62112927964644, + 37.78376964659119 + ], + [ + -95.62112927964644, + 37.494397022787744 + ], + [ + -95.95933358226429, + 37.494397022787744 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.95933358226429, + 37.78376964659119 + ], + [ + -95.95933358226429, + 38.073142270394634 + ], + [ + -95.62112927964644, + 38.073142270394634 + ], + [ + -95.62112927964644, + 37.78376964659119 + ], + [ + -95.95933358226429, + 37.78376964659119 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.95933358226429, + 38.073142270394634 + ], + [ + -95.95933358226429, + 38.36251489419808 + ], + [ + -95.62112927964644, + 38.36251489419808 + ], + [ + -95.62112927964644, + 38.073142270394634 + ], + [ + -95.95933358226429, + 38.073142270394634 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.95933358226429, + 38.36251489419808 + ], + [ + -95.95933358226429, + 38.65188751800152 + ], + [ + -95.62112927964644, + 38.65188751800152 + ], + [ + -95.62112927964644, + 38.36251489419808 + ], + [ + -95.95933358226429, + 38.36251489419808 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.95933358226429, + 38.65188751800152 + ], + [ + -95.95933358226429, + 38.94126014180497 + ], + [ + -95.62112927964644, + 38.94126014180497 + ], + [ + -95.62112927964644, + 38.65188751800152 + ], + [ + -95.95933358226429, + 38.65188751800152 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.95933358226429, + 38.94126014180497 + ], + [ + -95.95933358226429, + 39.23063276560841 + ], + [ + -95.62112927964644, + 39.23063276560841 + ], + [ + -95.62112927964644, + 38.94126014180497 + ], + [ + -95.95933358226429, + 38.94126014180497 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.95933358226429, + 39.23063276560841 + ], + [ + -95.95933358226429, + 39.52000538941186 + ], + [ + -95.62112927964644, + 39.52000538941186 + ], + [ + -95.62112927964644, + 39.23063276560841 + ], + [ + -95.95933358226429, + 39.23063276560841 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.95933358226429, + 39.52000538941186 + ], + [ + -95.95933358226429, + 39.8093780132153 + ], + [ + -95.62112927964644, + 39.8093780132153 + ], + [ + -95.62112927964644, + 39.52000538941186 + ], + [ + -95.95933358226429, + 39.52000538941186 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.95933358226429, + 39.8093780132153 + ], + [ + -95.95933358226429, + 40.098750637018746 + ], + [ + -95.62112927964644, + 40.098750637018746 + ], + [ + -95.62112927964644, + 39.8093780132153 + ], + [ + -95.95933358226429, + 39.8093780132153 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.95933358226429, + 40.098750637018746 + ], + [ + -95.95933358226429, + 40.38812326082219 + ], + [ + -95.62112927964644, + 40.38812326082219 + ], + [ + -95.62112927964644, + 40.098750637018746 + ], + [ + -95.95933358226429, + 40.098750637018746 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.95933358226429, + 40.38812326082219 + ], + [ + -95.95933358226429, + 40.677495884625635 + ], + [ + -95.62112927964644, + 40.677495884625635 + ], + [ + -95.62112927964644, + 40.38812326082219 + ], + [ + -95.95933358226429, + 40.38812326082219 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.62112927964644, + 31.12819929911196 + ], + [ + -95.62112927964644, + 31.417571922915403 + ], + [ + -95.28292497702859, + 31.417571922915403 + ], + [ + -95.28292497702859, + 31.12819929911196 + ], + [ + -95.62112927964644, + 31.12819929911196 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.62112927964644, + 31.417571922915403 + ], + [ + -95.62112927964644, + 31.706944546718848 + ], + [ + -95.28292497702859, + 31.706944546718848 + ], + [ + -95.28292497702859, + 31.417571922915403 + ], + [ + -95.62112927964644, + 31.417571922915403 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.62112927964644, + 31.706944546718848 + ], + [ + -95.62112927964644, + 31.996317170522293 + ], + [ + -95.28292497702859, + 31.996317170522293 + ], + [ + -95.28292497702859, + 31.706944546718848 + ], + [ + -95.62112927964644, + 31.706944546718848 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.62112927964644, + 31.996317170522293 + ], + [ + -95.62112927964644, + 32.28568979432574 + ], + [ + -95.28292497702859, + 32.28568979432574 + ], + [ + -95.28292497702859, + 31.996317170522293 + ], + [ + -95.62112927964644, + 31.996317170522293 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.62112927964644, + 32.28568979432574 + ], + [ + -95.62112927964644, + 32.575062418129185 + ], + [ + -95.28292497702859, + 32.575062418129185 + ], + [ + -95.28292497702859, + 32.28568979432574 + ], + [ + -95.62112927964644, + 32.28568979432574 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.62112927964644, + 32.575062418129185 + ], + [ + -95.62112927964644, + 32.86443504193263 + ], + [ + -95.28292497702859, + 32.86443504193263 + ], + [ + -95.28292497702859, + 32.575062418129185 + ], + [ + -95.62112927964644, + 32.575062418129185 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.62112927964644, + 32.86443504193263 + ], + [ + -95.62112927964644, + 33.153807665736075 + ], + [ + -95.28292497702859, + 33.153807665736075 + ], + [ + -95.28292497702859, + 32.86443504193263 + ], + [ + -95.62112927964644, + 32.86443504193263 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.62112927964644, + 33.153807665736075 + ], + [ + -95.62112927964644, + 33.44318028953952 + ], + [ + -95.28292497702859, + 33.44318028953952 + ], + [ + -95.28292497702859, + 33.153807665736075 + ], + [ + -95.62112927964644, + 33.153807665736075 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.62112927964644, + 33.44318028953952 + ], + [ + -95.62112927964644, + 33.732552913342964 + ], + [ + -95.28292497702859, + 33.732552913342964 + ], + [ + -95.28292497702859, + 33.44318028953952 + ], + [ + -95.62112927964644, + 33.44318028953952 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.62112927964644, + 33.732552913342964 + ], + [ + -95.62112927964644, + 34.02192553714641 + ], + [ + -95.28292497702859, + 34.02192553714641 + ], + [ + -95.28292497702859, + 33.732552913342964 + ], + [ + -95.62112927964644, + 33.732552913342964 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.62112927964644, + 34.02192553714641 + ], + [ + -95.62112927964644, + 34.31129816094985 + ], + [ + -95.28292497702859, + 34.31129816094985 + ], + [ + -95.28292497702859, + 34.02192553714641 + ], + [ + -95.62112927964644, + 34.02192553714641 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.62112927964644, + 34.31129816094985 + ], + [ + -95.62112927964644, + 34.6006707847533 + ], + [ + -95.28292497702859, + 34.6006707847533 + ], + [ + -95.28292497702859, + 34.31129816094985 + ], + [ + -95.62112927964644, + 34.31129816094985 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.62112927964644, + 34.6006707847533 + ], + [ + -95.62112927964644, + 34.89004340855674 + ], + [ + -95.28292497702859, + 34.89004340855674 + ], + [ + -95.28292497702859, + 34.6006707847533 + ], + [ + -95.62112927964644, + 34.6006707847533 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.62112927964644, + 34.89004340855674 + ], + [ + -95.62112927964644, + 35.17941603236019 + ], + [ + -95.28292497702859, + 35.17941603236019 + ], + [ + -95.28292497702859, + 34.89004340855674 + ], + [ + -95.62112927964644, + 34.89004340855674 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.62112927964644, + 35.17941603236019 + ], + [ + -95.62112927964644, + 35.46878865616363 + ], + [ + -95.28292497702859, + 35.46878865616363 + ], + [ + -95.28292497702859, + 35.17941603236019 + ], + [ + -95.62112927964644, + 35.17941603236019 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.62112927964644, + 35.46878865616363 + ], + [ + -95.62112927964644, + 35.75816127996708 + ], + [ + -95.28292497702859, + 35.75816127996708 + ], + [ + -95.28292497702859, + 35.46878865616363 + ], + [ + -95.62112927964644, + 35.46878865616363 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.62112927964644, + 35.75816127996708 + ], + [ + -95.62112927964644, + 36.04753390377052 + ], + [ + -95.28292497702859, + 36.04753390377052 + ], + [ + -95.28292497702859, + 35.75816127996708 + ], + [ + -95.62112927964644, + 35.75816127996708 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.62112927964644, + 36.04753390377052 + ], + [ + -95.62112927964644, + 36.336906527573966 + ], + [ + -95.28292497702859, + 36.336906527573966 + ], + [ + -95.28292497702859, + 36.04753390377052 + ], + [ + -95.62112927964644, + 36.04753390377052 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.62112927964644, + 36.336906527573966 + ], + [ + -95.62112927964644, + 36.62627915137741 + ], + [ + -95.28292497702859, + 36.62627915137741 + ], + [ + -95.28292497702859, + 36.336906527573966 + ], + [ + -95.62112927964644, + 36.336906527573966 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.62112927964644, + 36.62627915137741 + ], + [ + -95.62112927964644, + 36.915651775180855 + ], + [ + -95.28292497702859, + 36.915651775180855 + ], + [ + -95.28292497702859, + 36.62627915137741 + ], + [ + -95.62112927964644, + 36.62627915137741 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.62112927964644, + 36.915651775180855 + ], + [ + -95.62112927964644, + 37.2050243989843 + ], + [ + -95.28292497702859, + 37.2050243989843 + ], + [ + -95.28292497702859, + 36.915651775180855 + ], + [ + -95.62112927964644, + 36.915651775180855 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.62112927964644, + 37.2050243989843 + ], + [ + -95.62112927964644, + 37.494397022787744 + ], + [ + -95.28292497702859, + 37.494397022787744 + ], + [ + -95.28292497702859, + 37.2050243989843 + ], + [ + -95.62112927964644, + 37.2050243989843 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.62112927964644, + 37.494397022787744 + ], + [ + -95.62112927964644, + 37.78376964659119 + ], + [ + -95.28292497702859, + 37.78376964659119 + ], + [ + -95.28292497702859, + 37.494397022787744 + ], + [ + -95.62112927964644, + 37.494397022787744 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.62112927964644, + 37.78376964659119 + ], + [ + -95.62112927964644, + 38.073142270394634 + ], + [ + -95.28292497702859, + 38.073142270394634 + ], + [ + -95.28292497702859, + 37.78376964659119 + ], + [ + -95.62112927964644, + 37.78376964659119 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.62112927964644, + 38.073142270394634 + ], + [ + -95.62112927964644, + 38.36251489419808 + ], + [ + -95.28292497702859, + 38.36251489419808 + ], + [ + -95.28292497702859, + 38.073142270394634 + ], + [ + -95.62112927964644, + 38.073142270394634 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.62112927964644, + 38.36251489419808 + ], + [ + -95.62112927964644, + 38.65188751800152 + ], + [ + -95.28292497702859, + 38.65188751800152 + ], + [ + -95.28292497702859, + 38.36251489419808 + ], + [ + -95.62112927964644, + 38.36251489419808 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.62112927964644, + 38.65188751800152 + ], + [ + -95.62112927964644, + 38.94126014180497 + ], + [ + -95.28292497702859, + 38.94126014180497 + ], + [ + -95.28292497702859, + 38.65188751800152 + ], + [ + -95.62112927964644, + 38.65188751800152 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.62112927964644, + 38.94126014180497 + ], + [ + -95.62112927964644, + 39.23063276560841 + ], + [ + -95.28292497702859, + 39.23063276560841 + ], + [ + -95.28292497702859, + 38.94126014180497 + ], + [ + -95.62112927964644, + 38.94126014180497 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.62112927964644, + 39.23063276560841 + ], + [ + -95.62112927964644, + 39.52000538941186 + ], + [ + -95.28292497702859, + 39.52000538941186 + ], + [ + -95.28292497702859, + 39.23063276560841 + ], + [ + -95.62112927964644, + 39.23063276560841 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.62112927964644, + 39.52000538941186 + ], + [ + -95.62112927964644, + 39.8093780132153 + ], + [ + -95.28292497702859, + 39.8093780132153 + ], + [ + -95.28292497702859, + 39.52000538941186 + ], + [ + -95.62112927964644, + 39.52000538941186 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.62112927964644, + 39.8093780132153 + ], + [ + -95.62112927964644, + 40.098750637018746 + ], + [ + -95.28292497702859, + 40.098750637018746 + ], + [ + -95.28292497702859, + 39.8093780132153 + ], + [ + -95.62112927964644, + 39.8093780132153 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.62112927964644, + 40.098750637018746 + ], + [ + -95.62112927964644, + 40.38812326082219 + ], + [ + -95.28292497702859, + 40.38812326082219 + ], + [ + -95.28292497702859, + 40.098750637018746 + ], + [ + -95.62112927964644, + 40.098750637018746 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.62112927964644, + 40.38812326082219 + ], + [ + -95.62112927964644, + 40.677495884625635 + ], + [ + -95.28292497702859, + 40.677495884625635 + ], + [ + -95.28292497702859, + 40.38812326082219 + ], + [ + -95.62112927964644, + 40.38812326082219 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.28292497702859, + 31.12819929911196 + ], + [ + -95.28292497702859, + 31.417571922915403 + ], + [ + -94.94472067441073, + 31.417571922915403 + ], + [ + -94.94472067441073, + 31.12819929911196 + ], + [ + -95.28292497702859, + 31.12819929911196 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.28292497702859, + 31.417571922915403 + ], + [ + -95.28292497702859, + 31.706944546718848 + ], + [ + -94.94472067441073, + 31.706944546718848 + ], + [ + -94.94472067441073, + 31.417571922915403 + ], + [ + -95.28292497702859, + 31.417571922915403 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.28292497702859, + 31.706944546718848 + ], + [ + -95.28292497702859, + 31.996317170522293 + ], + [ + -94.94472067441073, + 31.996317170522293 + ], + [ + -94.94472067441073, + 31.706944546718848 + ], + [ + -95.28292497702859, + 31.706944546718848 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.28292497702859, + 31.996317170522293 + ], + [ + -95.28292497702859, + 32.28568979432574 + ], + [ + -94.94472067441073, + 32.28568979432574 + ], + [ + -94.94472067441073, + 31.996317170522293 + ], + [ + -95.28292497702859, + 31.996317170522293 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.28292497702859, + 32.28568979432574 + ], + [ + -95.28292497702859, + 32.575062418129185 + ], + [ + -94.94472067441073, + 32.575062418129185 + ], + [ + -94.94472067441073, + 32.28568979432574 + ], + [ + -95.28292497702859, + 32.28568979432574 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.28292497702859, + 32.575062418129185 + ], + [ + -95.28292497702859, + 32.86443504193263 + ], + [ + -94.94472067441073, + 32.86443504193263 + ], + [ + -94.94472067441073, + 32.575062418129185 + ], + [ + -95.28292497702859, + 32.575062418129185 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.28292497702859, + 32.86443504193263 + ], + [ + -95.28292497702859, + 33.153807665736075 + ], + [ + -94.94472067441073, + 33.153807665736075 + ], + [ + -94.94472067441073, + 32.86443504193263 + ], + [ + -95.28292497702859, + 32.86443504193263 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.28292497702859, + 33.153807665736075 + ], + [ + -95.28292497702859, + 33.44318028953952 + ], + [ + -94.94472067441073, + 33.44318028953952 + ], + [ + -94.94472067441073, + 33.153807665736075 + ], + [ + -95.28292497702859, + 33.153807665736075 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.28292497702859, + 33.44318028953952 + ], + [ + -95.28292497702859, + 33.732552913342964 + ], + [ + -94.94472067441073, + 33.732552913342964 + ], + [ + -94.94472067441073, + 33.44318028953952 + ], + [ + -95.28292497702859, + 33.44318028953952 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.28292497702859, + 33.732552913342964 + ], + [ + -95.28292497702859, + 34.02192553714641 + ], + [ + -94.94472067441073, + 34.02192553714641 + ], + [ + -94.94472067441073, + 33.732552913342964 + ], + [ + -95.28292497702859, + 33.732552913342964 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.28292497702859, + 34.02192553714641 + ], + [ + -95.28292497702859, + 34.31129816094985 + ], + [ + -94.94472067441073, + 34.31129816094985 + ], + [ + -94.94472067441073, + 34.02192553714641 + ], + [ + -95.28292497702859, + 34.02192553714641 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.28292497702859, + 34.31129816094985 + ], + [ + -95.28292497702859, + 34.6006707847533 + ], + [ + -94.94472067441073, + 34.6006707847533 + ], + [ + -94.94472067441073, + 34.31129816094985 + ], + [ + -95.28292497702859, + 34.31129816094985 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.28292497702859, + 34.6006707847533 + ], + [ + -95.28292497702859, + 34.89004340855674 + ], + [ + -94.94472067441073, + 34.89004340855674 + ], + [ + -94.94472067441073, + 34.6006707847533 + ], + [ + -95.28292497702859, + 34.6006707847533 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.28292497702859, + 34.89004340855674 + ], + [ + -95.28292497702859, + 35.17941603236019 + ], + [ + -94.94472067441073, + 35.17941603236019 + ], + [ + -94.94472067441073, + 34.89004340855674 + ], + [ + -95.28292497702859, + 34.89004340855674 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.28292497702859, + 35.17941603236019 + ], + [ + -95.28292497702859, + 35.46878865616363 + ], + [ + -94.94472067441073, + 35.46878865616363 + ], + [ + -94.94472067441073, + 35.17941603236019 + ], + [ + -95.28292497702859, + 35.17941603236019 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.28292497702859, + 35.46878865616363 + ], + [ + -95.28292497702859, + 35.75816127996708 + ], + [ + -94.94472067441073, + 35.75816127996708 + ], + [ + -94.94472067441073, + 35.46878865616363 + ], + [ + -95.28292497702859, + 35.46878865616363 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.28292497702859, + 35.75816127996708 + ], + [ + -95.28292497702859, + 36.04753390377052 + ], + [ + -94.94472067441073, + 36.04753390377052 + ], + [ + -94.94472067441073, + 35.75816127996708 + ], + [ + -95.28292497702859, + 35.75816127996708 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.28292497702859, + 36.04753390377052 + ], + [ + -95.28292497702859, + 36.336906527573966 + ], + [ + -94.94472067441073, + 36.336906527573966 + ], + [ + -94.94472067441073, + 36.04753390377052 + ], + [ + -95.28292497702859, + 36.04753390377052 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.28292497702859, + 36.336906527573966 + ], + [ + -95.28292497702859, + 36.62627915137741 + ], + [ + -94.94472067441073, + 36.62627915137741 + ], + [ + -94.94472067441073, + 36.336906527573966 + ], + [ + -95.28292497702859, + 36.336906527573966 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.28292497702859, + 36.62627915137741 + ], + [ + -95.28292497702859, + 36.915651775180855 + ], + [ + -94.94472067441073, + 36.915651775180855 + ], + [ + -94.94472067441073, + 36.62627915137741 + ], + [ + -95.28292497702859, + 36.62627915137741 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.28292497702859, + 36.915651775180855 + ], + [ + -95.28292497702859, + 37.2050243989843 + ], + [ + -94.94472067441073, + 37.2050243989843 + ], + [ + -94.94472067441073, + 36.915651775180855 + ], + [ + -95.28292497702859, + 36.915651775180855 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.28292497702859, + 37.2050243989843 + ], + [ + -95.28292497702859, + 37.494397022787744 + ], + [ + -94.94472067441073, + 37.494397022787744 + ], + [ + -94.94472067441073, + 37.2050243989843 + ], + [ + -95.28292497702859, + 37.2050243989843 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.28292497702859, + 37.494397022787744 + ], + [ + -95.28292497702859, + 37.78376964659119 + ], + [ + -94.94472067441073, + 37.78376964659119 + ], + [ + -94.94472067441073, + 37.494397022787744 + ], + [ + -95.28292497702859, + 37.494397022787744 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.28292497702859, + 37.78376964659119 + ], + [ + -95.28292497702859, + 38.073142270394634 + ], + [ + -94.94472067441073, + 38.073142270394634 + ], + [ + -94.94472067441073, + 37.78376964659119 + ], + [ + -95.28292497702859, + 37.78376964659119 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.28292497702859, + 38.073142270394634 + ], + [ + -95.28292497702859, + 38.36251489419808 + ], + [ + -94.94472067441073, + 38.36251489419808 + ], + [ + -94.94472067441073, + 38.073142270394634 + ], + [ + -95.28292497702859, + 38.073142270394634 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.28292497702859, + 38.36251489419808 + ], + [ + -95.28292497702859, + 38.65188751800152 + ], + [ + -94.94472067441073, + 38.65188751800152 + ], + [ + -94.94472067441073, + 38.36251489419808 + ], + [ + -95.28292497702859, + 38.36251489419808 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.28292497702859, + 38.65188751800152 + ], + [ + -95.28292497702859, + 38.94126014180497 + ], + [ + -94.94472067441073, + 38.94126014180497 + ], + [ + -94.94472067441073, + 38.65188751800152 + ], + [ + -95.28292497702859, + 38.65188751800152 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.28292497702859, + 38.94126014180497 + ], + [ + -95.28292497702859, + 39.23063276560841 + ], + [ + -94.94472067441073, + 39.23063276560841 + ], + [ + -94.94472067441073, + 38.94126014180497 + ], + [ + -95.28292497702859, + 38.94126014180497 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.28292497702859, + 39.23063276560841 + ], + [ + -95.28292497702859, + 39.52000538941186 + ], + [ + -94.94472067441073, + 39.52000538941186 + ], + [ + -94.94472067441073, + 39.23063276560841 + ], + [ + -95.28292497702859, + 39.23063276560841 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.28292497702859, + 39.52000538941186 + ], + [ + -95.28292497702859, + 39.8093780132153 + ], + [ + -94.94472067441073, + 39.8093780132153 + ], + [ + -94.94472067441073, + 39.52000538941186 + ], + [ + -95.28292497702859, + 39.52000538941186 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.28292497702859, + 39.8093780132153 + ], + [ + -95.28292497702859, + 40.098750637018746 + ], + [ + -94.94472067441073, + 40.098750637018746 + ], + [ + -94.94472067441073, + 39.8093780132153 + ], + [ + -95.28292497702859, + 39.8093780132153 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.28292497702859, + 40.098750637018746 + ], + [ + -95.28292497702859, + 40.38812326082219 + ], + [ + -94.94472067441073, + 40.38812326082219 + ], + [ + -94.94472067441073, + 40.098750637018746 + ], + [ + -95.28292497702859, + 40.098750637018746 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.28292497702859, + 40.38812326082219 + ], + [ + -95.28292497702859, + 40.677495884625635 + ], + [ + -94.94472067441073, + 40.677495884625635 + ], + [ + -94.94472067441073, + 40.38812326082219 + ], + [ + -95.28292497702859, + 40.38812326082219 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.94472067441073, + 31.12819929911196 + ], + [ + -94.94472067441073, + 31.417571922915403 + ], + [ + -94.60651637179288, + 31.417571922915403 + ], + [ + -94.60651637179288, + 31.12819929911196 + ], + [ + -94.94472067441073, + 31.12819929911196 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.94472067441073, + 31.417571922915403 + ], + [ + -94.94472067441073, + 31.706944546718848 + ], + [ + -94.60651637179288, + 31.706944546718848 + ], + [ + -94.60651637179288, + 31.417571922915403 + ], + [ + -94.94472067441073, + 31.417571922915403 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.94472067441073, + 31.706944546718848 + ], + [ + -94.94472067441073, + 31.996317170522293 + ], + [ + -94.60651637179288, + 31.996317170522293 + ], + [ + -94.60651637179288, + 31.706944546718848 + ], + [ + -94.94472067441073, + 31.706944546718848 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.94472067441073, + 31.996317170522293 + ], + [ + -94.94472067441073, + 32.28568979432574 + ], + [ + -94.60651637179288, + 32.28568979432574 + ], + [ + -94.60651637179288, + 31.996317170522293 + ], + [ + -94.94472067441073, + 31.996317170522293 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.94472067441073, + 32.28568979432574 + ], + [ + -94.94472067441073, + 32.575062418129185 + ], + [ + -94.60651637179288, + 32.575062418129185 + ], + [ + -94.60651637179288, + 32.28568979432574 + ], + [ + -94.94472067441073, + 32.28568979432574 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.94472067441073, + 32.575062418129185 + ], + [ + -94.94472067441073, + 32.86443504193263 + ], + [ + -94.60651637179288, + 32.86443504193263 + ], + [ + -94.60651637179288, + 32.575062418129185 + ], + [ + -94.94472067441073, + 32.575062418129185 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.94472067441073, + 32.86443504193263 + ], + [ + -94.94472067441073, + 33.153807665736075 + ], + [ + -94.60651637179288, + 33.153807665736075 + ], + [ + -94.60651637179288, + 32.86443504193263 + ], + [ + -94.94472067441073, + 32.86443504193263 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.94472067441073, + 33.153807665736075 + ], + [ + -94.94472067441073, + 33.44318028953952 + ], + [ + -94.60651637179288, + 33.44318028953952 + ], + [ + -94.60651637179288, + 33.153807665736075 + ], + [ + -94.94472067441073, + 33.153807665736075 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.94472067441073, + 33.44318028953952 + ], + [ + -94.94472067441073, + 33.732552913342964 + ], + [ + -94.60651637179288, + 33.732552913342964 + ], + [ + -94.60651637179288, + 33.44318028953952 + ], + [ + -94.94472067441073, + 33.44318028953952 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.94472067441073, + 33.732552913342964 + ], + [ + -94.94472067441073, + 34.02192553714641 + ], + [ + -94.60651637179288, + 34.02192553714641 + ], + [ + -94.60651637179288, + 33.732552913342964 + ], + [ + -94.94472067441073, + 33.732552913342964 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.94472067441073, + 34.02192553714641 + ], + [ + -94.94472067441073, + 34.31129816094985 + ], + [ + -94.60651637179288, + 34.31129816094985 + ], + [ + -94.60651637179288, + 34.02192553714641 + ], + [ + -94.94472067441073, + 34.02192553714641 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.94472067441073, + 34.31129816094985 + ], + [ + -94.94472067441073, + 34.6006707847533 + ], + [ + -94.60651637179288, + 34.6006707847533 + ], + [ + -94.60651637179288, + 34.31129816094985 + ], + [ + -94.94472067441073, + 34.31129816094985 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.94472067441073, + 34.6006707847533 + ], + [ + -94.94472067441073, + 34.89004340855674 + ], + [ + -94.60651637179288, + 34.89004340855674 + ], + [ + -94.60651637179288, + 34.6006707847533 + ], + [ + -94.94472067441073, + 34.6006707847533 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.94472067441073, + 34.89004340855674 + ], + [ + -94.94472067441073, + 35.17941603236019 + ], + [ + -94.60651637179288, + 35.17941603236019 + ], + [ + -94.60651637179288, + 34.89004340855674 + ], + [ + -94.94472067441073, + 34.89004340855674 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.94472067441073, + 35.17941603236019 + ], + [ + -94.94472067441073, + 35.46878865616363 + ], + [ + -94.60651637179288, + 35.46878865616363 + ], + [ + -94.60651637179288, + 35.17941603236019 + ], + [ + -94.94472067441073, + 35.17941603236019 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.94472067441073, + 35.46878865616363 + ], + [ + -94.94472067441073, + 35.75816127996708 + ], + [ + -94.60651637179288, + 35.75816127996708 + ], + [ + -94.60651637179288, + 35.46878865616363 + ], + [ + -94.94472067441073, + 35.46878865616363 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.94472067441073, + 35.75816127996708 + ], + [ + -94.94472067441073, + 36.04753390377052 + ], + [ + -94.60651637179288, + 36.04753390377052 + ], + [ + -94.60651637179288, + 35.75816127996708 + ], + [ + -94.94472067441073, + 35.75816127996708 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.94472067441073, + 36.04753390377052 + ], + [ + -94.94472067441073, + 36.336906527573966 + ], + [ + -94.60651637179288, + 36.336906527573966 + ], + [ + -94.60651637179288, + 36.04753390377052 + ], + [ + -94.94472067441073, + 36.04753390377052 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.94472067441073, + 36.336906527573966 + ], + [ + -94.94472067441073, + 36.62627915137741 + ], + [ + -94.60651637179288, + 36.62627915137741 + ], + [ + -94.60651637179288, + 36.336906527573966 + ], + [ + -94.94472067441073, + 36.336906527573966 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.94472067441073, + 36.62627915137741 + ], + [ + -94.94472067441073, + 36.915651775180855 + ], + [ + -94.60651637179288, + 36.915651775180855 + ], + [ + -94.60651637179288, + 36.62627915137741 + ], + [ + -94.94472067441073, + 36.62627915137741 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.94472067441073, + 36.915651775180855 + ], + [ + -94.94472067441073, + 37.2050243989843 + ], + [ + -94.60651637179288, + 37.2050243989843 + ], + [ + -94.60651637179288, + 36.915651775180855 + ], + [ + -94.94472067441073, + 36.915651775180855 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.94472067441073, + 37.2050243989843 + ], + [ + -94.94472067441073, + 37.494397022787744 + ], + [ + -94.60651637179288, + 37.494397022787744 + ], + [ + -94.60651637179288, + 37.2050243989843 + ], + [ + -94.94472067441073, + 37.2050243989843 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.94472067441073, + 37.494397022787744 + ], + [ + -94.94472067441073, + 37.78376964659119 + ], + [ + -94.60651637179288, + 37.78376964659119 + ], + [ + -94.60651637179288, + 37.494397022787744 + ], + [ + -94.94472067441073, + 37.494397022787744 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.94472067441073, + 37.78376964659119 + ], + [ + -94.94472067441073, + 38.073142270394634 + ], + [ + -94.60651637179288, + 38.073142270394634 + ], + [ + -94.60651637179288, + 37.78376964659119 + ], + [ + -94.94472067441073, + 37.78376964659119 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.94472067441073, + 38.073142270394634 + ], + [ + -94.94472067441073, + 38.36251489419808 + ], + [ + -94.60651637179288, + 38.36251489419808 + ], + [ + -94.60651637179288, + 38.073142270394634 + ], + [ + -94.94472067441073, + 38.073142270394634 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.94472067441073, + 38.36251489419808 + ], + [ + -94.94472067441073, + 38.65188751800152 + ], + [ + -94.60651637179288, + 38.65188751800152 + ], + [ + -94.60651637179288, + 38.36251489419808 + ], + [ + -94.94472067441073, + 38.36251489419808 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.94472067441073, + 38.65188751800152 + ], + [ + -94.94472067441073, + 38.94126014180497 + ], + [ + -94.60651637179288, + 38.94126014180497 + ], + [ + -94.60651637179288, + 38.65188751800152 + ], + [ + -94.94472067441073, + 38.65188751800152 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.94472067441073, + 38.94126014180497 + ], + [ + -94.94472067441073, + 39.23063276560841 + ], + [ + -94.60651637179288, + 39.23063276560841 + ], + [ + -94.60651637179288, + 38.94126014180497 + ], + [ + -94.94472067441073, + 38.94126014180497 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.94472067441073, + 39.23063276560841 + ], + [ + -94.94472067441073, + 39.52000538941186 + ], + [ + -94.60651637179288, + 39.52000538941186 + ], + [ + -94.60651637179288, + 39.23063276560841 + ], + [ + -94.94472067441073, + 39.23063276560841 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.94472067441073, + 39.52000538941186 + ], + [ + -94.94472067441073, + 39.8093780132153 + ], + [ + -94.60651637179288, + 39.8093780132153 + ], + [ + -94.60651637179288, + 39.52000538941186 + ], + [ + -94.94472067441073, + 39.52000538941186 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.94472067441073, + 39.8093780132153 + ], + [ + -94.94472067441073, + 40.098750637018746 + ], + [ + -94.60651637179288, + 40.098750637018746 + ], + [ + -94.60651637179288, + 39.8093780132153 + ], + [ + -94.94472067441073, + 39.8093780132153 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.94472067441073, + 40.098750637018746 + ], + [ + -94.94472067441073, + 40.38812326082219 + ], + [ + -94.60651637179288, + 40.38812326082219 + ], + [ + -94.60651637179288, + 40.098750637018746 + ], + [ + -94.94472067441073, + 40.098750637018746 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.94472067441073, + 40.38812326082219 + ], + [ + -94.94472067441073, + 40.677495884625635 + ], + [ + -94.60651637179288, + 40.677495884625635 + ], + [ + -94.60651637179288, + 40.38812326082219 + ], + [ + -94.94472067441073, + 40.38812326082219 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.60651637179288, + 31.12819929911196 + ], + [ + -94.60651637179288, + 31.417571922915403 + ], + [ + -94.26831206917502, + 31.417571922915403 + ], + [ + -94.26831206917502, + 31.12819929911196 + ], + [ + -94.60651637179288, + 31.12819929911196 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.60651637179288, + 31.417571922915403 + ], + [ + -94.60651637179288, + 31.706944546718848 + ], + [ + -94.26831206917502, + 31.706944546718848 + ], + [ + -94.26831206917502, + 31.417571922915403 + ], + [ + -94.60651637179288, + 31.417571922915403 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.60651637179288, + 31.706944546718848 + ], + [ + -94.60651637179288, + 31.996317170522293 + ], + [ + -94.26831206917502, + 31.996317170522293 + ], + [ + -94.26831206917502, + 31.706944546718848 + ], + [ + -94.60651637179288, + 31.706944546718848 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.60651637179288, + 31.996317170522293 + ], + [ + -94.60651637179288, + 32.28568979432574 + ], + [ + -94.26831206917502, + 32.28568979432574 + ], + [ + -94.26831206917502, + 31.996317170522293 + ], + [ + -94.60651637179288, + 31.996317170522293 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.60651637179288, + 32.28568979432574 + ], + [ + -94.60651637179288, + 32.575062418129185 + ], + [ + -94.26831206917502, + 32.575062418129185 + ], + [ + -94.26831206917502, + 32.28568979432574 + ], + [ + -94.60651637179288, + 32.28568979432574 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.60651637179288, + 32.575062418129185 + ], + [ + -94.60651637179288, + 32.86443504193263 + ], + [ + -94.26831206917502, + 32.86443504193263 + ], + [ + -94.26831206917502, + 32.575062418129185 + ], + [ + -94.60651637179288, + 32.575062418129185 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.60651637179288, + 32.86443504193263 + ], + [ + -94.60651637179288, + 33.153807665736075 + ], + [ + -94.26831206917502, + 33.153807665736075 + ], + [ + -94.26831206917502, + 32.86443504193263 + ], + [ + -94.60651637179288, + 32.86443504193263 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.60651637179288, + 33.153807665736075 + ], + [ + -94.60651637179288, + 33.44318028953952 + ], + [ + -94.26831206917502, + 33.44318028953952 + ], + [ + -94.26831206917502, + 33.153807665736075 + ], + [ + -94.60651637179288, + 33.153807665736075 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.60651637179288, + 33.44318028953952 + ], + [ + -94.60651637179288, + 33.732552913342964 + ], + [ + -94.26831206917502, + 33.732552913342964 + ], + [ + -94.26831206917502, + 33.44318028953952 + ], + [ + -94.60651637179288, + 33.44318028953952 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.60651637179288, + 33.732552913342964 + ], + [ + -94.60651637179288, + 34.02192553714641 + ], + [ + -94.26831206917502, + 34.02192553714641 + ], + [ + -94.26831206917502, + 33.732552913342964 + ], + [ + -94.60651637179288, + 33.732552913342964 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.60651637179288, + 34.02192553714641 + ], + [ + -94.60651637179288, + 34.31129816094985 + ], + [ + -94.26831206917502, + 34.31129816094985 + ], + [ + -94.26831206917502, + 34.02192553714641 + ], + [ + -94.60651637179288, + 34.02192553714641 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.60651637179288, + 34.31129816094985 + ], + [ + -94.60651637179288, + 34.6006707847533 + ], + [ + -94.26831206917502, + 34.6006707847533 + ], + [ + -94.26831206917502, + 34.31129816094985 + ], + [ + -94.60651637179288, + 34.31129816094985 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.60651637179288, + 34.6006707847533 + ], + [ + -94.60651637179288, + 34.89004340855674 + ], + [ + -94.26831206917502, + 34.89004340855674 + ], + [ + -94.26831206917502, + 34.6006707847533 + ], + [ + -94.60651637179288, + 34.6006707847533 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.60651637179288, + 34.89004340855674 + ], + [ + -94.60651637179288, + 35.17941603236019 + ], + [ + -94.26831206917502, + 35.17941603236019 + ], + [ + -94.26831206917502, + 34.89004340855674 + ], + [ + -94.60651637179288, + 34.89004340855674 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.60651637179288, + 35.17941603236019 + ], + [ + -94.60651637179288, + 35.46878865616363 + ], + [ + -94.26831206917502, + 35.46878865616363 + ], + [ + -94.26831206917502, + 35.17941603236019 + ], + [ + -94.60651637179288, + 35.17941603236019 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.60651637179288, + 35.46878865616363 + ], + [ + -94.60651637179288, + 35.75816127996708 + ], + [ + -94.26831206917502, + 35.75816127996708 + ], + [ + -94.26831206917502, + 35.46878865616363 + ], + [ + -94.60651637179288, + 35.46878865616363 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.60651637179288, + 35.75816127996708 + ], + [ + -94.60651637179288, + 36.04753390377052 + ], + [ + -94.26831206917502, + 36.04753390377052 + ], + [ + -94.26831206917502, + 35.75816127996708 + ], + [ + -94.60651637179288, + 35.75816127996708 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.60651637179288, + 36.04753390377052 + ], + [ + -94.60651637179288, + 36.336906527573966 + ], + [ + -94.26831206917502, + 36.336906527573966 + ], + [ + -94.26831206917502, + 36.04753390377052 + ], + [ + -94.60651637179288, + 36.04753390377052 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.60651637179288, + 36.336906527573966 + ], + [ + -94.60651637179288, + 36.62627915137741 + ], + [ + -94.26831206917502, + 36.62627915137741 + ], + [ + -94.26831206917502, + 36.336906527573966 + ], + [ + -94.60651637179288, + 36.336906527573966 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.60651637179288, + 36.62627915137741 + ], + [ + -94.60651637179288, + 36.915651775180855 + ], + [ + -94.26831206917502, + 36.915651775180855 + ], + [ + -94.26831206917502, + 36.62627915137741 + ], + [ + -94.60651637179288, + 36.62627915137741 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.60651637179288, + 36.915651775180855 + ], + [ + -94.60651637179288, + 37.2050243989843 + ], + [ + -94.26831206917502, + 37.2050243989843 + ], + [ + -94.26831206917502, + 36.915651775180855 + ], + [ + -94.60651637179288, + 36.915651775180855 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.60651637179288, + 37.2050243989843 + ], + [ + -94.60651637179288, + 37.494397022787744 + ], + [ + -94.26831206917502, + 37.494397022787744 + ], + [ + -94.26831206917502, + 37.2050243989843 + ], + [ + -94.60651637179288, + 37.2050243989843 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.60651637179288, + 37.494397022787744 + ], + [ + -94.60651637179288, + 37.78376964659119 + ], + [ + -94.26831206917502, + 37.78376964659119 + ], + [ + -94.26831206917502, + 37.494397022787744 + ], + [ + -94.60651637179288, + 37.494397022787744 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.60651637179288, + 37.78376964659119 + ], + [ + -94.60651637179288, + 38.073142270394634 + ], + [ + -94.26831206917502, + 38.073142270394634 + ], + [ + -94.26831206917502, + 37.78376964659119 + ], + [ + -94.60651637179288, + 37.78376964659119 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.60651637179288, + 38.073142270394634 + ], + [ + -94.60651637179288, + 38.36251489419808 + ], + [ + -94.26831206917502, + 38.36251489419808 + ], + [ + -94.26831206917502, + 38.073142270394634 + ], + [ + -94.60651637179288, + 38.073142270394634 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.60651637179288, + 38.36251489419808 + ], + [ + -94.60651637179288, + 38.65188751800152 + ], + [ + -94.26831206917502, + 38.65188751800152 + ], + [ + -94.26831206917502, + 38.36251489419808 + ], + [ + -94.60651637179288, + 38.36251489419808 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.60651637179288, + 38.65188751800152 + ], + [ + -94.60651637179288, + 38.94126014180497 + ], + [ + -94.26831206917502, + 38.94126014180497 + ], + [ + -94.26831206917502, + 38.65188751800152 + ], + [ + -94.60651637179288, + 38.65188751800152 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.60651637179288, + 38.94126014180497 + ], + [ + -94.60651637179288, + 39.23063276560841 + ], + [ + -94.26831206917502, + 39.23063276560841 + ], + [ + -94.26831206917502, + 38.94126014180497 + ], + [ + -94.60651637179288, + 38.94126014180497 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.60651637179288, + 39.23063276560841 + ], + [ + -94.60651637179288, + 39.52000538941186 + ], + [ + -94.26831206917502, + 39.52000538941186 + ], + [ + -94.26831206917502, + 39.23063276560841 + ], + [ + -94.60651637179288, + 39.23063276560841 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.60651637179288, + 39.52000538941186 + ], + [ + -94.60651637179288, + 39.8093780132153 + ], + [ + -94.26831206917502, + 39.8093780132153 + ], + [ + -94.26831206917502, + 39.52000538941186 + ], + [ + -94.60651637179288, + 39.52000538941186 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.60651637179288, + 39.8093780132153 + ], + [ + -94.60651637179288, + 40.098750637018746 + ], + [ + -94.26831206917502, + 40.098750637018746 + ], + [ + -94.26831206917502, + 39.8093780132153 + ], + [ + -94.60651637179288, + 39.8093780132153 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.60651637179288, + 40.098750637018746 + ], + [ + -94.60651637179288, + 40.38812326082219 + ], + [ + -94.26831206917502, + 40.38812326082219 + ], + [ + -94.26831206917502, + 40.098750637018746 + ], + [ + -94.60651637179288, + 40.098750637018746 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.60651637179288, + 40.38812326082219 + ], + [ + -94.60651637179288, + 40.677495884625635 + ], + [ + -94.26831206917502, + 40.677495884625635 + ], + [ + -94.26831206917502, + 40.38812326082219 + ], + [ + -94.60651637179288, + 40.38812326082219 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.26831206917502, + 31.12819929911196 + ], + [ + -94.26831206917502, + 31.417571922915403 + ], + [ + -93.93010776655717, + 31.417571922915403 + ], + [ + -93.93010776655717, + 31.12819929911196 + ], + [ + -94.26831206917502, + 31.12819929911196 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.26831206917502, + 31.417571922915403 + ], + [ + -94.26831206917502, + 31.706944546718848 + ], + [ + -93.93010776655717, + 31.706944546718848 + ], + [ + -93.93010776655717, + 31.417571922915403 + ], + [ + -94.26831206917502, + 31.417571922915403 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.26831206917502, + 31.706944546718848 + ], + [ + -94.26831206917502, + 31.996317170522293 + ], + [ + -93.93010776655717, + 31.996317170522293 + ], + [ + -93.93010776655717, + 31.706944546718848 + ], + [ + -94.26831206917502, + 31.706944546718848 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.26831206917502, + 31.996317170522293 + ], + [ + -94.26831206917502, + 32.28568979432574 + ], + [ + -93.93010776655717, + 32.28568979432574 + ], + [ + -93.93010776655717, + 31.996317170522293 + ], + [ + -94.26831206917502, + 31.996317170522293 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.26831206917502, + 32.28568979432574 + ], + [ + -94.26831206917502, + 32.575062418129185 + ], + [ + -93.93010776655717, + 32.575062418129185 + ], + [ + -93.93010776655717, + 32.28568979432574 + ], + [ + -94.26831206917502, + 32.28568979432574 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.26831206917502, + 32.575062418129185 + ], + [ + -94.26831206917502, + 32.86443504193263 + ], + [ + -93.93010776655717, + 32.86443504193263 + ], + [ + -93.93010776655717, + 32.575062418129185 + ], + [ + -94.26831206917502, + 32.575062418129185 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.26831206917502, + 32.86443504193263 + ], + [ + -94.26831206917502, + 33.153807665736075 + ], + [ + -93.93010776655717, + 33.153807665736075 + ], + [ + -93.93010776655717, + 32.86443504193263 + ], + [ + -94.26831206917502, + 32.86443504193263 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.26831206917502, + 33.153807665736075 + ], + [ + -94.26831206917502, + 33.44318028953952 + ], + [ + -93.93010776655717, + 33.44318028953952 + ], + [ + -93.93010776655717, + 33.153807665736075 + ], + [ + -94.26831206917502, + 33.153807665736075 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.26831206917502, + 33.44318028953952 + ], + [ + -94.26831206917502, + 33.732552913342964 + ], + [ + -93.93010776655717, + 33.732552913342964 + ], + [ + -93.93010776655717, + 33.44318028953952 + ], + [ + -94.26831206917502, + 33.44318028953952 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.26831206917502, + 33.732552913342964 + ], + [ + -94.26831206917502, + 34.02192553714641 + ], + [ + -93.93010776655717, + 34.02192553714641 + ], + [ + -93.93010776655717, + 33.732552913342964 + ], + [ + -94.26831206917502, + 33.732552913342964 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.26831206917502, + 34.02192553714641 + ], + [ + -94.26831206917502, + 34.31129816094985 + ], + [ + -93.93010776655717, + 34.31129816094985 + ], + [ + -93.93010776655717, + 34.02192553714641 + ], + [ + -94.26831206917502, + 34.02192553714641 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.26831206917502, + 34.31129816094985 + ], + [ + -94.26831206917502, + 34.6006707847533 + ], + [ + -93.93010776655717, + 34.6006707847533 + ], + [ + -93.93010776655717, + 34.31129816094985 + ], + [ + -94.26831206917502, + 34.31129816094985 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.26831206917502, + 34.6006707847533 + ], + [ + -94.26831206917502, + 34.89004340855674 + ], + [ + -93.93010776655717, + 34.89004340855674 + ], + [ + -93.93010776655717, + 34.6006707847533 + ], + [ + -94.26831206917502, + 34.6006707847533 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.26831206917502, + 34.89004340855674 + ], + [ + -94.26831206917502, + 35.17941603236019 + ], + [ + -93.93010776655717, + 35.17941603236019 + ], + [ + -93.93010776655717, + 34.89004340855674 + ], + [ + -94.26831206917502, + 34.89004340855674 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.26831206917502, + 35.17941603236019 + ], + [ + -94.26831206917502, + 35.46878865616363 + ], + [ + -93.93010776655717, + 35.46878865616363 + ], + [ + -93.93010776655717, + 35.17941603236019 + ], + [ + -94.26831206917502, + 35.17941603236019 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.26831206917502, + 35.46878865616363 + ], + [ + -94.26831206917502, + 35.75816127996708 + ], + [ + -93.93010776655717, + 35.75816127996708 + ], + [ + -93.93010776655717, + 35.46878865616363 + ], + [ + -94.26831206917502, + 35.46878865616363 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.26831206917502, + 35.75816127996708 + ], + [ + -94.26831206917502, + 36.04753390377052 + ], + [ + -93.93010776655717, + 36.04753390377052 + ], + [ + -93.93010776655717, + 35.75816127996708 + ], + [ + -94.26831206917502, + 35.75816127996708 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.26831206917502, + 36.04753390377052 + ], + [ + -94.26831206917502, + 36.336906527573966 + ], + [ + -93.93010776655717, + 36.336906527573966 + ], + [ + -93.93010776655717, + 36.04753390377052 + ], + [ + -94.26831206917502, + 36.04753390377052 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.26831206917502, + 36.336906527573966 + ], + [ + -94.26831206917502, + 36.62627915137741 + ], + [ + -93.93010776655717, + 36.62627915137741 + ], + [ + -93.93010776655717, + 36.336906527573966 + ], + [ + -94.26831206917502, + 36.336906527573966 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.26831206917502, + 36.62627915137741 + ], + [ + -94.26831206917502, + 36.915651775180855 + ], + [ + -93.93010776655717, + 36.915651775180855 + ], + [ + -93.93010776655717, + 36.62627915137741 + ], + [ + -94.26831206917502, + 36.62627915137741 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.26831206917502, + 36.915651775180855 + ], + [ + -94.26831206917502, + 37.2050243989843 + ], + [ + -93.93010776655717, + 37.2050243989843 + ], + [ + -93.93010776655717, + 36.915651775180855 + ], + [ + -94.26831206917502, + 36.915651775180855 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.26831206917502, + 37.2050243989843 + ], + [ + -94.26831206917502, + 37.494397022787744 + ], + [ + -93.93010776655717, + 37.494397022787744 + ], + [ + -93.93010776655717, + 37.2050243989843 + ], + [ + -94.26831206917502, + 37.2050243989843 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.26831206917502, + 37.494397022787744 + ], + [ + -94.26831206917502, + 37.78376964659119 + ], + [ + -93.93010776655717, + 37.78376964659119 + ], + [ + -93.93010776655717, + 37.494397022787744 + ], + [ + -94.26831206917502, + 37.494397022787744 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.26831206917502, + 37.78376964659119 + ], + [ + -94.26831206917502, + 38.073142270394634 + ], + [ + -93.93010776655717, + 38.073142270394634 + ], + [ + -93.93010776655717, + 37.78376964659119 + ], + [ + -94.26831206917502, + 37.78376964659119 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.26831206917502, + 38.073142270394634 + ], + [ + -94.26831206917502, + 38.36251489419808 + ], + [ + -93.93010776655717, + 38.36251489419808 + ], + [ + -93.93010776655717, + 38.073142270394634 + ], + [ + -94.26831206917502, + 38.073142270394634 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.26831206917502, + 38.36251489419808 + ], + [ + -94.26831206917502, + 38.65188751800152 + ], + [ + -93.93010776655717, + 38.65188751800152 + ], + [ + -93.93010776655717, + 38.36251489419808 + ], + [ + -94.26831206917502, + 38.36251489419808 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.26831206917502, + 38.65188751800152 + ], + [ + -94.26831206917502, + 38.94126014180497 + ], + [ + -93.93010776655717, + 38.94126014180497 + ], + [ + -93.93010776655717, + 38.65188751800152 + ], + [ + -94.26831206917502, + 38.65188751800152 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.26831206917502, + 38.94126014180497 + ], + [ + -94.26831206917502, + 39.23063276560841 + ], + [ + -93.93010776655717, + 39.23063276560841 + ], + [ + -93.93010776655717, + 38.94126014180497 + ], + [ + -94.26831206917502, + 38.94126014180497 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.26831206917502, + 39.23063276560841 + ], + [ + -94.26831206917502, + 39.52000538941186 + ], + [ + -93.93010776655717, + 39.52000538941186 + ], + [ + -93.93010776655717, + 39.23063276560841 + ], + [ + -94.26831206917502, + 39.23063276560841 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.26831206917502, + 39.52000538941186 + ], + [ + -94.26831206917502, + 39.8093780132153 + ], + [ + -93.93010776655717, + 39.8093780132153 + ], + [ + -93.93010776655717, + 39.52000538941186 + ], + [ + -94.26831206917502, + 39.52000538941186 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.26831206917502, + 39.8093780132153 + ], + [ + -94.26831206917502, + 40.098750637018746 + ], + [ + -93.93010776655717, + 40.098750637018746 + ], + [ + -93.93010776655717, + 39.8093780132153 + ], + [ + -94.26831206917502, + 39.8093780132153 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.26831206917502, + 40.098750637018746 + ], + [ + -94.26831206917502, + 40.38812326082219 + ], + [ + -93.93010776655717, + 40.38812326082219 + ], + [ + -93.93010776655717, + 40.098750637018746 + ], + [ + -94.26831206917502, + 40.098750637018746 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.26831206917502, + 40.38812326082219 + ], + [ + -94.26831206917502, + 40.677495884625635 + ], + [ + -93.93010776655717, + 40.677495884625635 + ], + [ + -93.93010776655717, + 40.38812326082219 + ], + [ + -94.26831206917502, + 40.38812326082219 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.93010776655717, + 31.12819929911196 + ], + [ + -93.93010776655717, + 31.417571922915403 + ], + [ + -93.59190346393932, + 31.417571922915403 + ], + [ + -93.59190346393932, + 31.12819929911196 + ], + [ + -93.93010776655717, + 31.12819929911196 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.93010776655717, + 31.417571922915403 + ], + [ + -93.93010776655717, + 31.706944546718848 + ], + [ + -93.59190346393932, + 31.706944546718848 + ], + [ + -93.59190346393932, + 31.417571922915403 + ], + [ + -93.93010776655717, + 31.417571922915403 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.93010776655717, + 31.706944546718848 + ], + [ + -93.93010776655717, + 31.996317170522293 + ], + [ + -93.59190346393932, + 31.996317170522293 + ], + [ + -93.59190346393932, + 31.706944546718848 + ], + [ + -93.93010776655717, + 31.706944546718848 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.93010776655717, + 31.996317170522293 + ], + [ + -93.93010776655717, + 32.28568979432574 + ], + [ + -93.59190346393932, + 32.28568979432574 + ], + [ + -93.59190346393932, + 31.996317170522293 + ], + [ + -93.93010776655717, + 31.996317170522293 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.93010776655717, + 32.28568979432574 + ], + [ + -93.93010776655717, + 32.575062418129185 + ], + [ + -93.59190346393932, + 32.575062418129185 + ], + [ + -93.59190346393932, + 32.28568979432574 + ], + [ + -93.93010776655717, + 32.28568979432574 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.93010776655717, + 32.575062418129185 + ], + [ + -93.93010776655717, + 32.86443504193263 + ], + [ + -93.59190346393932, + 32.86443504193263 + ], + [ + -93.59190346393932, + 32.575062418129185 + ], + [ + -93.93010776655717, + 32.575062418129185 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.93010776655717, + 32.86443504193263 + ], + [ + -93.93010776655717, + 33.153807665736075 + ], + [ + -93.59190346393932, + 33.153807665736075 + ], + [ + -93.59190346393932, + 32.86443504193263 + ], + [ + -93.93010776655717, + 32.86443504193263 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.93010776655717, + 33.153807665736075 + ], + [ + -93.93010776655717, + 33.44318028953952 + ], + [ + -93.59190346393932, + 33.44318028953952 + ], + [ + -93.59190346393932, + 33.153807665736075 + ], + [ + -93.93010776655717, + 33.153807665736075 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.93010776655717, + 33.44318028953952 + ], + [ + -93.93010776655717, + 33.732552913342964 + ], + [ + -93.59190346393932, + 33.732552913342964 + ], + [ + -93.59190346393932, + 33.44318028953952 + ], + [ + -93.93010776655717, + 33.44318028953952 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.93010776655717, + 33.732552913342964 + ], + [ + -93.93010776655717, + 34.02192553714641 + ], + [ + -93.59190346393932, + 34.02192553714641 + ], + [ + -93.59190346393932, + 33.732552913342964 + ], + [ + -93.93010776655717, + 33.732552913342964 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.93010776655717, + 34.02192553714641 + ], + [ + -93.93010776655717, + 34.31129816094985 + ], + [ + -93.59190346393932, + 34.31129816094985 + ], + [ + -93.59190346393932, + 34.02192553714641 + ], + [ + -93.93010776655717, + 34.02192553714641 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.93010776655717, + 34.31129816094985 + ], + [ + -93.93010776655717, + 34.6006707847533 + ], + [ + -93.59190346393932, + 34.6006707847533 + ], + [ + -93.59190346393932, + 34.31129816094985 + ], + [ + -93.93010776655717, + 34.31129816094985 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.93010776655717, + 34.6006707847533 + ], + [ + -93.93010776655717, + 34.89004340855674 + ], + [ + -93.59190346393932, + 34.89004340855674 + ], + [ + -93.59190346393932, + 34.6006707847533 + ], + [ + -93.93010776655717, + 34.6006707847533 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.93010776655717, + 34.89004340855674 + ], + [ + -93.93010776655717, + 35.17941603236019 + ], + [ + -93.59190346393932, + 35.17941603236019 + ], + [ + -93.59190346393932, + 34.89004340855674 + ], + [ + -93.93010776655717, + 34.89004340855674 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.93010776655717, + 35.17941603236019 + ], + [ + -93.93010776655717, + 35.46878865616363 + ], + [ + -93.59190346393932, + 35.46878865616363 + ], + [ + -93.59190346393932, + 35.17941603236019 + ], + [ + -93.93010776655717, + 35.17941603236019 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.93010776655717, + 35.46878865616363 + ], + [ + -93.93010776655717, + 35.75816127996708 + ], + [ + -93.59190346393932, + 35.75816127996708 + ], + [ + -93.59190346393932, + 35.46878865616363 + ], + [ + -93.93010776655717, + 35.46878865616363 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.93010776655717, + 35.75816127996708 + ], + [ + -93.93010776655717, + 36.04753390377052 + ], + [ + -93.59190346393932, + 36.04753390377052 + ], + [ + -93.59190346393932, + 35.75816127996708 + ], + [ + -93.93010776655717, + 35.75816127996708 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.93010776655717, + 36.04753390377052 + ], + [ + -93.93010776655717, + 36.336906527573966 + ], + [ + -93.59190346393932, + 36.336906527573966 + ], + [ + -93.59190346393932, + 36.04753390377052 + ], + [ + -93.93010776655717, + 36.04753390377052 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.93010776655717, + 36.336906527573966 + ], + [ + -93.93010776655717, + 36.62627915137741 + ], + [ + -93.59190346393932, + 36.62627915137741 + ], + [ + -93.59190346393932, + 36.336906527573966 + ], + [ + -93.93010776655717, + 36.336906527573966 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.93010776655717, + 36.62627915137741 + ], + [ + -93.93010776655717, + 36.915651775180855 + ], + [ + -93.59190346393932, + 36.915651775180855 + ], + [ + -93.59190346393932, + 36.62627915137741 + ], + [ + -93.93010776655717, + 36.62627915137741 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.93010776655717, + 36.915651775180855 + ], + [ + -93.93010776655717, + 37.2050243989843 + ], + [ + -93.59190346393932, + 37.2050243989843 + ], + [ + -93.59190346393932, + 36.915651775180855 + ], + [ + -93.93010776655717, + 36.915651775180855 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.93010776655717, + 37.2050243989843 + ], + [ + -93.93010776655717, + 37.494397022787744 + ], + [ + -93.59190346393932, + 37.494397022787744 + ], + [ + -93.59190346393932, + 37.2050243989843 + ], + [ + -93.93010776655717, + 37.2050243989843 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.93010776655717, + 37.494397022787744 + ], + [ + -93.93010776655717, + 37.78376964659119 + ], + [ + -93.59190346393932, + 37.78376964659119 + ], + [ + -93.59190346393932, + 37.494397022787744 + ], + [ + -93.93010776655717, + 37.494397022787744 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.93010776655717, + 37.78376964659119 + ], + [ + -93.93010776655717, + 38.073142270394634 + ], + [ + -93.59190346393932, + 38.073142270394634 + ], + [ + -93.59190346393932, + 37.78376964659119 + ], + [ + -93.93010776655717, + 37.78376964659119 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.93010776655717, + 38.073142270394634 + ], + [ + -93.93010776655717, + 38.36251489419808 + ], + [ + -93.59190346393932, + 38.36251489419808 + ], + [ + -93.59190346393932, + 38.073142270394634 + ], + [ + -93.93010776655717, + 38.073142270394634 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.93010776655717, + 38.36251489419808 + ], + [ + -93.93010776655717, + 38.65188751800152 + ], + [ + -93.59190346393932, + 38.65188751800152 + ], + [ + -93.59190346393932, + 38.36251489419808 + ], + [ + -93.93010776655717, + 38.36251489419808 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.93010776655717, + 38.65188751800152 + ], + [ + -93.93010776655717, + 38.94126014180497 + ], + [ + -93.59190346393932, + 38.94126014180497 + ], + [ + -93.59190346393932, + 38.65188751800152 + ], + [ + -93.93010776655717, + 38.65188751800152 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.93010776655717, + 38.94126014180497 + ], + [ + -93.93010776655717, + 39.23063276560841 + ], + [ + -93.59190346393932, + 39.23063276560841 + ], + [ + -93.59190346393932, + 38.94126014180497 + ], + [ + -93.93010776655717, + 38.94126014180497 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.93010776655717, + 39.23063276560841 + ], + [ + -93.93010776655717, + 39.52000538941186 + ], + [ + -93.59190346393932, + 39.52000538941186 + ], + [ + -93.59190346393932, + 39.23063276560841 + ], + [ + -93.93010776655717, + 39.23063276560841 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.93010776655717, + 39.52000538941186 + ], + [ + -93.93010776655717, + 39.8093780132153 + ], + [ + -93.59190346393932, + 39.8093780132153 + ], + [ + -93.59190346393932, + 39.52000538941186 + ], + [ + -93.93010776655717, + 39.52000538941186 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.93010776655717, + 39.8093780132153 + ], + [ + -93.93010776655717, + 40.098750637018746 + ], + [ + -93.59190346393932, + 40.098750637018746 + ], + [ + -93.59190346393932, + 39.8093780132153 + ], + [ + -93.93010776655717, + 39.8093780132153 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.93010776655717, + 40.098750637018746 + ], + [ + -93.93010776655717, + 40.38812326082219 + ], + [ + -93.59190346393932, + 40.38812326082219 + ], + [ + -93.59190346393932, + 40.098750637018746 + ], + [ + -93.93010776655717, + 40.098750637018746 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.93010776655717, + 40.38812326082219 + ], + [ + -93.93010776655717, + 40.677495884625635 + ], + [ + -93.59190346393932, + 40.677495884625635 + ], + [ + -93.59190346393932, + 40.38812326082219 + ], + [ + -93.93010776655717, + 40.38812326082219 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.59190346393932, + 31.12819929911196 + ], + [ + -93.59190346393932, + 31.417571922915403 + ], + [ + -93.25369916132146, + 31.417571922915403 + ], + [ + -93.25369916132146, + 31.12819929911196 + ], + [ + -93.59190346393932, + 31.12819929911196 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.59190346393932, + 31.417571922915403 + ], + [ + -93.59190346393932, + 31.706944546718848 + ], + [ + -93.25369916132146, + 31.706944546718848 + ], + [ + -93.25369916132146, + 31.417571922915403 + ], + [ + -93.59190346393932, + 31.417571922915403 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.59190346393932, + 31.706944546718848 + ], + [ + -93.59190346393932, + 31.996317170522293 + ], + [ + -93.25369916132146, + 31.996317170522293 + ], + [ + -93.25369916132146, + 31.706944546718848 + ], + [ + -93.59190346393932, + 31.706944546718848 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.59190346393932, + 31.996317170522293 + ], + [ + -93.59190346393932, + 32.28568979432574 + ], + [ + -93.25369916132146, + 32.28568979432574 + ], + [ + -93.25369916132146, + 31.996317170522293 + ], + [ + -93.59190346393932, + 31.996317170522293 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.59190346393932, + 32.28568979432574 + ], + [ + -93.59190346393932, + 32.575062418129185 + ], + [ + -93.25369916132146, + 32.575062418129185 + ], + [ + -93.25369916132146, + 32.28568979432574 + ], + [ + -93.59190346393932, + 32.28568979432574 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.59190346393932, + 32.575062418129185 + ], + [ + -93.59190346393932, + 32.86443504193263 + ], + [ + -93.25369916132146, + 32.86443504193263 + ], + [ + -93.25369916132146, + 32.575062418129185 + ], + [ + -93.59190346393932, + 32.575062418129185 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.59190346393932, + 32.86443504193263 + ], + [ + -93.59190346393932, + 33.153807665736075 + ], + [ + -93.25369916132146, + 33.153807665736075 + ], + [ + -93.25369916132146, + 32.86443504193263 + ], + [ + -93.59190346393932, + 32.86443504193263 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.59190346393932, + 33.153807665736075 + ], + [ + -93.59190346393932, + 33.44318028953952 + ], + [ + -93.25369916132146, + 33.44318028953952 + ], + [ + -93.25369916132146, + 33.153807665736075 + ], + [ + -93.59190346393932, + 33.153807665736075 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.59190346393932, + 33.44318028953952 + ], + [ + -93.59190346393932, + 33.732552913342964 + ], + [ + -93.25369916132146, + 33.732552913342964 + ], + [ + -93.25369916132146, + 33.44318028953952 + ], + [ + -93.59190346393932, + 33.44318028953952 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.59190346393932, + 33.732552913342964 + ], + [ + -93.59190346393932, + 34.02192553714641 + ], + [ + -93.25369916132146, + 34.02192553714641 + ], + [ + -93.25369916132146, + 33.732552913342964 + ], + [ + -93.59190346393932, + 33.732552913342964 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.59190346393932, + 34.02192553714641 + ], + [ + -93.59190346393932, + 34.31129816094985 + ], + [ + -93.25369916132146, + 34.31129816094985 + ], + [ + -93.25369916132146, + 34.02192553714641 + ], + [ + -93.59190346393932, + 34.02192553714641 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.59190346393932, + 34.31129816094985 + ], + [ + -93.59190346393932, + 34.6006707847533 + ], + [ + -93.25369916132146, + 34.6006707847533 + ], + [ + -93.25369916132146, + 34.31129816094985 + ], + [ + -93.59190346393932, + 34.31129816094985 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.59190346393932, + 34.6006707847533 + ], + [ + -93.59190346393932, + 34.89004340855674 + ], + [ + -93.25369916132146, + 34.89004340855674 + ], + [ + -93.25369916132146, + 34.6006707847533 + ], + [ + -93.59190346393932, + 34.6006707847533 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.59190346393932, + 34.89004340855674 + ], + [ + -93.59190346393932, + 35.17941603236019 + ], + [ + -93.25369916132146, + 35.17941603236019 + ], + [ + -93.25369916132146, + 34.89004340855674 + ], + [ + -93.59190346393932, + 34.89004340855674 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.59190346393932, + 35.17941603236019 + ], + [ + -93.59190346393932, + 35.46878865616363 + ], + [ + -93.25369916132146, + 35.46878865616363 + ], + [ + -93.25369916132146, + 35.17941603236019 + ], + [ + -93.59190346393932, + 35.17941603236019 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.59190346393932, + 35.46878865616363 + ], + [ + -93.59190346393932, + 35.75816127996708 + ], + [ + -93.25369916132146, + 35.75816127996708 + ], + [ + -93.25369916132146, + 35.46878865616363 + ], + [ + -93.59190346393932, + 35.46878865616363 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.59190346393932, + 35.75816127996708 + ], + [ + -93.59190346393932, + 36.04753390377052 + ], + [ + -93.25369916132146, + 36.04753390377052 + ], + [ + -93.25369916132146, + 35.75816127996708 + ], + [ + -93.59190346393932, + 35.75816127996708 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.59190346393932, + 36.04753390377052 + ], + [ + -93.59190346393932, + 36.336906527573966 + ], + [ + -93.25369916132146, + 36.336906527573966 + ], + [ + -93.25369916132146, + 36.04753390377052 + ], + [ + -93.59190346393932, + 36.04753390377052 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.59190346393932, + 36.336906527573966 + ], + [ + -93.59190346393932, + 36.62627915137741 + ], + [ + -93.25369916132146, + 36.62627915137741 + ], + [ + -93.25369916132146, + 36.336906527573966 + ], + [ + -93.59190346393932, + 36.336906527573966 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.59190346393932, + 36.62627915137741 + ], + [ + -93.59190346393932, + 36.915651775180855 + ], + [ + -93.25369916132146, + 36.915651775180855 + ], + [ + -93.25369916132146, + 36.62627915137741 + ], + [ + -93.59190346393932, + 36.62627915137741 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.59190346393932, + 36.915651775180855 + ], + [ + -93.59190346393932, + 37.2050243989843 + ], + [ + -93.25369916132146, + 37.2050243989843 + ], + [ + -93.25369916132146, + 36.915651775180855 + ], + [ + -93.59190346393932, + 36.915651775180855 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.59190346393932, + 37.2050243989843 + ], + [ + -93.59190346393932, + 37.494397022787744 + ], + [ + -93.25369916132146, + 37.494397022787744 + ], + [ + -93.25369916132146, + 37.2050243989843 + ], + [ + -93.59190346393932, + 37.2050243989843 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.59190346393932, + 37.494397022787744 + ], + [ + -93.59190346393932, + 37.78376964659119 + ], + [ + -93.25369916132146, + 37.78376964659119 + ], + [ + -93.25369916132146, + 37.494397022787744 + ], + [ + -93.59190346393932, + 37.494397022787744 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.59190346393932, + 37.78376964659119 + ], + [ + -93.59190346393932, + 38.073142270394634 + ], + [ + -93.25369916132146, + 38.073142270394634 + ], + [ + -93.25369916132146, + 37.78376964659119 + ], + [ + -93.59190346393932, + 37.78376964659119 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.59190346393932, + 38.073142270394634 + ], + [ + -93.59190346393932, + 38.36251489419808 + ], + [ + -93.25369916132146, + 38.36251489419808 + ], + [ + -93.25369916132146, + 38.073142270394634 + ], + [ + -93.59190346393932, + 38.073142270394634 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.59190346393932, + 38.36251489419808 + ], + [ + -93.59190346393932, + 38.65188751800152 + ], + [ + -93.25369916132146, + 38.65188751800152 + ], + [ + -93.25369916132146, + 38.36251489419808 + ], + [ + -93.59190346393932, + 38.36251489419808 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.59190346393932, + 38.65188751800152 + ], + [ + -93.59190346393932, + 38.94126014180497 + ], + [ + -93.25369916132146, + 38.94126014180497 + ], + [ + -93.25369916132146, + 38.65188751800152 + ], + [ + -93.59190346393932, + 38.65188751800152 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.59190346393932, + 38.94126014180497 + ], + [ + -93.59190346393932, + 39.23063276560841 + ], + [ + -93.25369916132146, + 39.23063276560841 + ], + [ + -93.25369916132146, + 38.94126014180497 + ], + [ + -93.59190346393932, + 38.94126014180497 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.59190346393932, + 39.23063276560841 + ], + [ + -93.59190346393932, + 39.52000538941186 + ], + [ + -93.25369916132146, + 39.52000538941186 + ], + [ + -93.25369916132146, + 39.23063276560841 + ], + [ + -93.59190346393932, + 39.23063276560841 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.59190346393932, + 39.52000538941186 + ], + [ + -93.59190346393932, + 39.8093780132153 + ], + [ + -93.25369916132146, + 39.8093780132153 + ], + [ + -93.25369916132146, + 39.52000538941186 + ], + [ + -93.59190346393932, + 39.52000538941186 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.59190346393932, + 39.8093780132153 + ], + [ + -93.59190346393932, + 40.098750637018746 + ], + [ + -93.25369916132146, + 40.098750637018746 + ], + [ + -93.25369916132146, + 39.8093780132153 + ], + [ + -93.59190346393932, + 39.8093780132153 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.59190346393932, + 40.098750637018746 + ], + [ + -93.59190346393932, + 40.38812326082219 + ], + [ + -93.25369916132146, + 40.38812326082219 + ], + [ + -93.25369916132146, + 40.098750637018746 + ], + [ + -93.59190346393932, + 40.098750637018746 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.59190346393932, + 40.38812326082219 + ], + [ + -93.59190346393932, + 40.677495884625635 + ], + [ + -93.25369916132146, + 40.677495884625635 + ], + [ + -93.25369916132146, + 40.38812326082219 + ], + [ + -93.59190346393932, + 40.38812326082219 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.25369916132146, + 31.12819929911196 + ], + [ + -93.25369916132146, + 31.417571922915403 + ], + [ + -92.91549485870361, + 31.417571922915403 + ], + [ + -92.91549485870361, + 31.12819929911196 + ], + [ + -93.25369916132146, + 31.12819929911196 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.25369916132146, + 31.417571922915403 + ], + [ + -93.25369916132146, + 31.706944546718848 + ], + [ + -92.91549485870361, + 31.706944546718848 + ], + [ + -92.91549485870361, + 31.417571922915403 + ], + [ + -93.25369916132146, + 31.417571922915403 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.25369916132146, + 31.706944546718848 + ], + [ + -93.25369916132146, + 31.996317170522293 + ], + [ + -92.91549485870361, + 31.996317170522293 + ], + [ + -92.91549485870361, + 31.706944546718848 + ], + [ + -93.25369916132146, + 31.706944546718848 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.25369916132146, + 31.996317170522293 + ], + [ + -93.25369916132146, + 32.28568979432574 + ], + [ + -92.91549485870361, + 32.28568979432574 + ], + [ + -92.91549485870361, + 31.996317170522293 + ], + [ + -93.25369916132146, + 31.996317170522293 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.25369916132146, + 32.28568979432574 + ], + [ + -93.25369916132146, + 32.575062418129185 + ], + [ + -92.91549485870361, + 32.575062418129185 + ], + [ + -92.91549485870361, + 32.28568979432574 + ], + [ + -93.25369916132146, + 32.28568979432574 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.25369916132146, + 32.575062418129185 + ], + [ + -93.25369916132146, + 32.86443504193263 + ], + [ + -92.91549485870361, + 32.86443504193263 + ], + [ + -92.91549485870361, + 32.575062418129185 + ], + [ + -93.25369916132146, + 32.575062418129185 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.25369916132146, + 32.86443504193263 + ], + [ + -93.25369916132146, + 33.153807665736075 + ], + [ + -92.91549485870361, + 33.153807665736075 + ], + [ + -92.91549485870361, + 32.86443504193263 + ], + [ + -93.25369916132146, + 32.86443504193263 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.25369916132146, + 33.153807665736075 + ], + [ + -93.25369916132146, + 33.44318028953952 + ], + [ + -92.91549485870361, + 33.44318028953952 + ], + [ + -92.91549485870361, + 33.153807665736075 + ], + [ + -93.25369916132146, + 33.153807665736075 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.25369916132146, + 33.44318028953952 + ], + [ + -93.25369916132146, + 33.732552913342964 + ], + [ + -92.91549485870361, + 33.732552913342964 + ], + [ + -92.91549485870361, + 33.44318028953952 + ], + [ + -93.25369916132146, + 33.44318028953952 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.25369916132146, + 33.732552913342964 + ], + [ + -93.25369916132146, + 34.02192553714641 + ], + [ + -92.91549485870361, + 34.02192553714641 + ], + [ + -92.91549485870361, + 33.732552913342964 + ], + [ + -93.25369916132146, + 33.732552913342964 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.25369916132146, + 34.02192553714641 + ], + [ + -93.25369916132146, + 34.31129816094985 + ], + [ + -92.91549485870361, + 34.31129816094985 + ], + [ + -92.91549485870361, + 34.02192553714641 + ], + [ + -93.25369916132146, + 34.02192553714641 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.25369916132146, + 34.31129816094985 + ], + [ + -93.25369916132146, + 34.6006707847533 + ], + [ + -92.91549485870361, + 34.6006707847533 + ], + [ + -92.91549485870361, + 34.31129816094985 + ], + [ + -93.25369916132146, + 34.31129816094985 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.25369916132146, + 34.6006707847533 + ], + [ + -93.25369916132146, + 34.89004340855674 + ], + [ + -92.91549485870361, + 34.89004340855674 + ], + [ + -92.91549485870361, + 34.6006707847533 + ], + [ + -93.25369916132146, + 34.6006707847533 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.25369916132146, + 34.89004340855674 + ], + [ + -93.25369916132146, + 35.17941603236019 + ], + [ + -92.91549485870361, + 35.17941603236019 + ], + [ + -92.91549485870361, + 34.89004340855674 + ], + [ + -93.25369916132146, + 34.89004340855674 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.25369916132146, + 35.17941603236019 + ], + [ + -93.25369916132146, + 35.46878865616363 + ], + [ + -92.91549485870361, + 35.46878865616363 + ], + [ + -92.91549485870361, + 35.17941603236019 + ], + [ + -93.25369916132146, + 35.17941603236019 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.25369916132146, + 35.46878865616363 + ], + [ + -93.25369916132146, + 35.75816127996708 + ], + [ + -92.91549485870361, + 35.75816127996708 + ], + [ + -92.91549485870361, + 35.46878865616363 + ], + [ + -93.25369916132146, + 35.46878865616363 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.25369916132146, + 35.75816127996708 + ], + [ + -93.25369916132146, + 36.04753390377052 + ], + [ + -92.91549485870361, + 36.04753390377052 + ], + [ + -92.91549485870361, + 35.75816127996708 + ], + [ + -93.25369916132146, + 35.75816127996708 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.25369916132146, + 36.04753390377052 + ], + [ + -93.25369916132146, + 36.336906527573966 + ], + [ + -92.91549485870361, + 36.336906527573966 + ], + [ + -92.91549485870361, + 36.04753390377052 + ], + [ + -93.25369916132146, + 36.04753390377052 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.25369916132146, + 36.336906527573966 + ], + [ + -93.25369916132146, + 36.62627915137741 + ], + [ + -92.91549485870361, + 36.62627915137741 + ], + [ + -92.91549485870361, + 36.336906527573966 + ], + [ + -93.25369916132146, + 36.336906527573966 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.25369916132146, + 36.62627915137741 + ], + [ + -93.25369916132146, + 36.915651775180855 + ], + [ + -92.91549485870361, + 36.915651775180855 + ], + [ + -92.91549485870361, + 36.62627915137741 + ], + [ + -93.25369916132146, + 36.62627915137741 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.25369916132146, + 36.915651775180855 + ], + [ + -93.25369916132146, + 37.2050243989843 + ], + [ + -92.91549485870361, + 37.2050243989843 + ], + [ + -92.91549485870361, + 36.915651775180855 + ], + [ + -93.25369916132146, + 36.915651775180855 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.25369916132146, + 37.2050243989843 + ], + [ + -93.25369916132146, + 37.494397022787744 + ], + [ + -92.91549485870361, + 37.494397022787744 + ], + [ + -92.91549485870361, + 37.2050243989843 + ], + [ + -93.25369916132146, + 37.2050243989843 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.25369916132146, + 37.494397022787744 + ], + [ + -93.25369916132146, + 37.78376964659119 + ], + [ + -92.91549485870361, + 37.78376964659119 + ], + [ + -92.91549485870361, + 37.494397022787744 + ], + [ + -93.25369916132146, + 37.494397022787744 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.25369916132146, + 37.78376964659119 + ], + [ + -93.25369916132146, + 38.073142270394634 + ], + [ + -92.91549485870361, + 38.073142270394634 + ], + [ + -92.91549485870361, + 37.78376964659119 + ], + [ + -93.25369916132146, + 37.78376964659119 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.25369916132146, + 38.073142270394634 + ], + [ + -93.25369916132146, + 38.36251489419808 + ], + [ + -92.91549485870361, + 38.36251489419808 + ], + [ + -92.91549485870361, + 38.073142270394634 + ], + [ + -93.25369916132146, + 38.073142270394634 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.25369916132146, + 38.36251489419808 + ], + [ + -93.25369916132146, + 38.65188751800152 + ], + [ + -92.91549485870361, + 38.65188751800152 + ], + [ + -92.91549485870361, + 38.36251489419808 + ], + [ + -93.25369916132146, + 38.36251489419808 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.25369916132146, + 38.65188751800152 + ], + [ + -93.25369916132146, + 38.94126014180497 + ], + [ + -92.91549485870361, + 38.94126014180497 + ], + [ + -92.91549485870361, + 38.65188751800152 + ], + [ + -93.25369916132146, + 38.65188751800152 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.25369916132146, + 38.94126014180497 + ], + [ + -93.25369916132146, + 39.23063276560841 + ], + [ + -92.91549485870361, + 39.23063276560841 + ], + [ + -92.91549485870361, + 38.94126014180497 + ], + [ + -93.25369916132146, + 38.94126014180497 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.25369916132146, + 39.23063276560841 + ], + [ + -93.25369916132146, + 39.52000538941186 + ], + [ + -92.91549485870361, + 39.52000538941186 + ], + [ + -92.91549485870361, + 39.23063276560841 + ], + [ + -93.25369916132146, + 39.23063276560841 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.25369916132146, + 39.52000538941186 + ], + [ + -93.25369916132146, + 39.8093780132153 + ], + [ + -92.91549485870361, + 39.8093780132153 + ], + [ + -92.91549485870361, + 39.52000538941186 + ], + [ + -93.25369916132146, + 39.52000538941186 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.25369916132146, + 39.8093780132153 + ], + [ + -93.25369916132146, + 40.098750637018746 + ], + [ + -92.91549485870361, + 40.098750637018746 + ], + [ + -92.91549485870361, + 39.8093780132153 + ], + [ + -93.25369916132146, + 39.8093780132153 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.25369916132146, + 40.098750637018746 + ], + [ + -93.25369916132146, + 40.38812326082219 + ], + [ + -92.91549485870361, + 40.38812326082219 + ], + [ + -92.91549485870361, + 40.098750637018746 + ], + [ + -93.25369916132146, + 40.098750637018746 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.25369916132146, + 40.38812326082219 + ], + [ + -93.25369916132146, + 40.677495884625635 + ], + [ + -92.91549485870361, + 40.677495884625635 + ], + [ + -92.91549485870361, + 40.38812326082219 + ], + [ + -93.25369916132146, + 40.38812326082219 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.91549485870361, + 31.12819929911196 + ], + [ + -92.91549485870361, + 31.417571922915403 + ], + [ + -92.57729055608576, + 31.417571922915403 + ], + [ + -92.57729055608576, + 31.12819929911196 + ], + [ + -92.91549485870361, + 31.12819929911196 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.91549485870361, + 31.417571922915403 + ], + [ + -92.91549485870361, + 31.706944546718848 + ], + [ + -92.57729055608576, + 31.706944546718848 + ], + [ + -92.57729055608576, + 31.417571922915403 + ], + [ + -92.91549485870361, + 31.417571922915403 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.91549485870361, + 31.706944546718848 + ], + [ + -92.91549485870361, + 31.996317170522293 + ], + [ + -92.57729055608576, + 31.996317170522293 + ], + [ + -92.57729055608576, + 31.706944546718848 + ], + [ + -92.91549485870361, + 31.706944546718848 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.91549485870361, + 31.996317170522293 + ], + [ + -92.91549485870361, + 32.28568979432574 + ], + [ + -92.57729055608576, + 32.28568979432574 + ], + [ + -92.57729055608576, + 31.996317170522293 + ], + [ + -92.91549485870361, + 31.996317170522293 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.91549485870361, + 32.28568979432574 + ], + [ + -92.91549485870361, + 32.575062418129185 + ], + [ + -92.57729055608576, + 32.575062418129185 + ], + [ + -92.57729055608576, + 32.28568979432574 + ], + [ + -92.91549485870361, + 32.28568979432574 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.91549485870361, + 32.575062418129185 + ], + [ + -92.91549485870361, + 32.86443504193263 + ], + [ + -92.57729055608576, + 32.86443504193263 + ], + [ + -92.57729055608576, + 32.575062418129185 + ], + [ + -92.91549485870361, + 32.575062418129185 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.91549485870361, + 32.86443504193263 + ], + [ + -92.91549485870361, + 33.153807665736075 + ], + [ + -92.57729055608576, + 33.153807665736075 + ], + [ + -92.57729055608576, + 32.86443504193263 + ], + [ + -92.91549485870361, + 32.86443504193263 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.91549485870361, + 33.153807665736075 + ], + [ + -92.91549485870361, + 33.44318028953952 + ], + [ + -92.57729055608576, + 33.44318028953952 + ], + [ + -92.57729055608576, + 33.153807665736075 + ], + [ + -92.91549485870361, + 33.153807665736075 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.91549485870361, + 33.44318028953952 + ], + [ + -92.91549485870361, + 33.732552913342964 + ], + [ + -92.57729055608576, + 33.732552913342964 + ], + [ + -92.57729055608576, + 33.44318028953952 + ], + [ + -92.91549485870361, + 33.44318028953952 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.91549485870361, + 33.732552913342964 + ], + [ + -92.91549485870361, + 34.02192553714641 + ], + [ + -92.57729055608576, + 34.02192553714641 + ], + [ + -92.57729055608576, + 33.732552913342964 + ], + [ + -92.91549485870361, + 33.732552913342964 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.91549485870361, + 34.02192553714641 + ], + [ + -92.91549485870361, + 34.31129816094985 + ], + [ + -92.57729055608576, + 34.31129816094985 + ], + [ + -92.57729055608576, + 34.02192553714641 + ], + [ + -92.91549485870361, + 34.02192553714641 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.91549485870361, + 34.31129816094985 + ], + [ + -92.91549485870361, + 34.6006707847533 + ], + [ + -92.57729055608576, + 34.6006707847533 + ], + [ + -92.57729055608576, + 34.31129816094985 + ], + [ + -92.91549485870361, + 34.31129816094985 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.91549485870361, + 34.6006707847533 + ], + [ + -92.91549485870361, + 34.89004340855674 + ], + [ + -92.57729055608576, + 34.89004340855674 + ], + [ + -92.57729055608576, + 34.6006707847533 + ], + [ + -92.91549485870361, + 34.6006707847533 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.91549485870361, + 34.89004340855674 + ], + [ + -92.91549485870361, + 35.17941603236019 + ], + [ + -92.57729055608576, + 35.17941603236019 + ], + [ + -92.57729055608576, + 34.89004340855674 + ], + [ + -92.91549485870361, + 34.89004340855674 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.91549485870361, + 35.17941603236019 + ], + [ + -92.91549485870361, + 35.46878865616363 + ], + [ + -92.57729055608576, + 35.46878865616363 + ], + [ + -92.57729055608576, + 35.17941603236019 + ], + [ + -92.91549485870361, + 35.17941603236019 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.91549485870361, + 35.46878865616363 + ], + [ + -92.91549485870361, + 35.75816127996708 + ], + [ + -92.57729055608576, + 35.75816127996708 + ], + [ + -92.57729055608576, + 35.46878865616363 + ], + [ + -92.91549485870361, + 35.46878865616363 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.91549485870361, + 35.75816127996708 + ], + [ + -92.91549485870361, + 36.04753390377052 + ], + [ + -92.57729055608576, + 36.04753390377052 + ], + [ + -92.57729055608576, + 35.75816127996708 + ], + [ + -92.91549485870361, + 35.75816127996708 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.91549485870361, + 36.04753390377052 + ], + [ + -92.91549485870361, + 36.336906527573966 + ], + [ + -92.57729055608576, + 36.336906527573966 + ], + [ + -92.57729055608576, + 36.04753390377052 + ], + [ + -92.91549485870361, + 36.04753390377052 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.91549485870361, + 36.336906527573966 + ], + [ + -92.91549485870361, + 36.62627915137741 + ], + [ + -92.57729055608576, + 36.62627915137741 + ], + [ + -92.57729055608576, + 36.336906527573966 + ], + [ + -92.91549485870361, + 36.336906527573966 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.91549485870361, + 36.62627915137741 + ], + [ + -92.91549485870361, + 36.915651775180855 + ], + [ + -92.57729055608576, + 36.915651775180855 + ], + [ + -92.57729055608576, + 36.62627915137741 + ], + [ + -92.91549485870361, + 36.62627915137741 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.91549485870361, + 36.915651775180855 + ], + [ + -92.91549485870361, + 37.2050243989843 + ], + [ + -92.57729055608576, + 37.2050243989843 + ], + [ + -92.57729055608576, + 36.915651775180855 + ], + [ + -92.91549485870361, + 36.915651775180855 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.91549485870361, + 37.2050243989843 + ], + [ + -92.91549485870361, + 37.494397022787744 + ], + [ + -92.57729055608576, + 37.494397022787744 + ], + [ + -92.57729055608576, + 37.2050243989843 + ], + [ + -92.91549485870361, + 37.2050243989843 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.91549485870361, + 37.494397022787744 + ], + [ + -92.91549485870361, + 37.78376964659119 + ], + [ + -92.57729055608576, + 37.78376964659119 + ], + [ + -92.57729055608576, + 37.494397022787744 + ], + [ + -92.91549485870361, + 37.494397022787744 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.91549485870361, + 37.78376964659119 + ], + [ + -92.91549485870361, + 38.073142270394634 + ], + [ + -92.57729055608576, + 38.073142270394634 + ], + [ + -92.57729055608576, + 37.78376964659119 + ], + [ + -92.91549485870361, + 37.78376964659119 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.91549485870361, + 38.073142270394634 + ], + [ + -92.91549485870361, + 38.36251489419808 + ], + [ + -92.57729055608576, + 38.36251489419808 + ], + [ + -92.57729055608576, + 38.073142270394634 + ], + [ + -92.91549485870361, + 38.073142270394634 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.91549485870361, + 38.36251489419808 + ], + [ + -92.91549485870361, + 38.65188751800152 + ], + [ + -92.57729055608576, + 38.65188751800152 + ], + [ + -92.57729055608576, + 38.36251489419808 + ], + [ + -92.91549485870361, + 38.36251489419808 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.91549485870361, + 38.65188751800152 + ], + [ + -92.91549485870361, + 38.94126014180497 + ], + [ + -92.57729055608576, + 38.94126014180497 + ], + [ + -92.57729055608576, + 38.65188751800152 + ], + [ + -92.91549485870361, + 38.65188751800152 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.91549485870361, + 38.94126014180497 + ], + [ + -92.91549485870361, + 39.23063276560841 + ], + [ + -92.57729055608576, + 39.23063276560841 + ], + [ + -92.57729055608576, + 38.94126014180497 + ], + [ + -92.91549485870361, + 38.94126014180497 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.91549485870361, + 39.23063276560841 + ], + [ + -92.91549485870361, + 39.52000538941186 + ], + [ + -92.57729055608576, + 39.52000538941186 + ], + [ + -92.57729055608576, + 39.23063276560841 + ], + [ + -92.91549485870361, + 39.23063276560841 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.91549485870361, + 39.52000538941186 + ], + [ + -92.91549485870361, + 39.8093780132153 + ], + [ + -92.57729055608576, + 39.8093780132153 + ], + [ + -92.57729055608576, + 39.52000538941186 + ], + [ + -92.91549485870361, + 39.52000538941186 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.91549485870361, + 39.8093780132153 + ], + [ + -92.91549485870361, + 40.098750637018746 + ], + [ + -92.57729055608576, + 40.098750637018746 + ], + [ + -92.57729055608576, + 39.8093780132153 + ], + [ + -92.91549485870361, + 39.8093780132153 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.91549485870361, + 40.098750637018746 + ], + [ + -92.91549485870361, + 40.38812326082219 + ], + [ + -92.57729055608576, + 40.38812326082219 + ], + [ + -92.57729055608576, + 40.098750637018746 + ], + [ + -92.91549485870361, + 40.098750637018746 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.91549485870361, + 40.38812326082219 + ], + [ + -92.91549485870361, + 40.677495884625635 + ], + [ + -92.57729055608576, + 40.677495884625635 + ], + [ + -92.57729055608576, + 40.38812326082219 + ], + [ + -92.91549485870361, + 40.38812326082219 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.57729055608576, + 31.12819929911196 + ], + [ + -92.57729055608576, + 31.417571922915403 + ], + [ + -92.2390862534679, + 31.417571922915403 + ], + [ + -92.2390862534679, + 31.12819929911196 + ], + [ + -92.57729055608576, + 31.12819929911196 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.57729055608576, + 31.417571922915403 + ], + [ + -92.57729055608576, + 31.706944546718848 + ], + [ + -92.2390862534679, + 31.706944546718848 + ], + [ + -92.2390862534679, + 31.417571922915403 + ], + [ + -92.57729055608576, + 31.417571922915403 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.57729055608576, + 31.706944546718848 + ], + [ + -92.57729055608576, + 31.996317170522293 + ], + [ + -92.2390862534679, + 31.996317170522293 + ], + [ + -92.2390862534679, + 31.706944546718848 + ], + [ + -92.57729055608576, + 31.706944546718848 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.57729055608576, + 31.996317170522293 + ], + [ + -92.57729055608576, + 32.28568979432574 + ], + [ + -92.2390862534679, + 32.28568979432574 + ], + [ + -92.2390862534679, + 31.996317170522293 + ], + [ + -92.57729055608576, + 31.996317170522293 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.57729055608576, + 32.28568979432574 + ], + [ + -92.57729055608576, + 32.575062418129185 + ], + [ + -92.2390862534679, + 32.575062418129185 + ], + [ + -92.2390862534679, + 32.28568979432574 + ], + [ + -92.57729055608576, + 32.28568979432574 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.57729055608576, + 32.575062418129185 + ], + [ + -92.57729055608576, + 32.86443504193263 + ], + [ + -92.2390862534679, + 32.86443504193263 + ], + [ + -92.2390862534679, + 32.575062418129185 + ], + [ + -92.57729055608576, + 32.575062418129185 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.57729055608576, + 32.86443504193263 + ], + [ + -92.57729055608576, + 33.153807665736075 + ], + [ + -92.2390862534679, + 33.153807665736075 + ], + [ + -92.2390862534679, + 32.86443504193263 + ], + [ + -92.57729055608576, + 32.86443504193263 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.57729055608576, + 33.153807665736075 + ], + [ + -92.57729055608576, + 33.44318028953952 + ], + [ + -92.2390862534679, + 33.44318028953952 + ], + [ + -92.2390862534679, + 33.153807665736075 + ], + [ + -92.57729055608576, + 33.153807665736075 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.57729055608576, + 33.44318028953952 + ], + [ + -92.57729055608576, + 33.732552913342964 + ], + [ + -92.2390862534679, + 33.732552913342964 + ], + [ + -92.2390862534679, + 33.44318028953952 + ], + [ + -92.57729055608576, + 33.44318028953952 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.57729055608576, + 33.732552913342964 + ], + [ + -92.57729055608576, + 34.02192553714641 + ], + [ + -92.2390862534679, + 34.02192553714641 + ], + [ + -92.2390862534679, + 33.732552913342964 + ], + [ + -92.57729055608576, + 33.732552913342964 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.57729055608576, + 34.02192553714641 + ], + [ + -92.57729055608576, + 34.31129816094985 + ], + [ + -92.2390862534679, + 34.31129816094985 + ], + [ + -92.2390862534679, + 34.02192553714641 + ], + [ + -92.57729055608576, + 34.02192553714641 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.57729055608576, + 34.31129816094985 + ], + [ + -92.57729055608576, + 34.6006707847533 + ], + [ + -92.2390862534679, + 34.6006707847533 + ], + [ + -92.2390862534679, + 34.31129816094985 + ], + [ + -92.57729055608576, + 34.31129816094985 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.57729055608576, + 34.6006707847533 + ], + [ + -92.57729055608576, + 34.89004340855674 + ], + [ + -92.2390862534679, + 34.89004340855674 + ], + [ + -92.2390862534679, + 34.6006707847533 + ], + [ + -92.57729055608576, + 34.6006707847533 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.57729055608576, + 34.89004340855674 + ], + [ + -92.57729055608576, + 35.17941603236019 + ], + [ + -92.2390862534679, + 35.17941603236019 + ], + [ + -92.2390862534679, + 34.89004340855674 + ], + [ + -92.57729055608576, + 34.89004340855674 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.57729055608576, + 35.17941603236019 + ], + [ + -92.57729055608576, + 35.46878865616363 + ], + [ + -92.2390862534679, + 35.46878865616363 + ], + [ + -92.2390862534679, + 35.17941603236019 + ], + [ + -92.57729055608576, + 35.17941603236019 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.57729055608576, + 35.46878865616363 + ], + [ + -92.57729055608576, + 35.75816127996708 + ], + [ + -92.2390862534679, + 35.75816127996708 + ], + [ + -92.2390862534679, + 35.46878865616363 + ], + [ + -92.57729055608576, + 35.46878865616363 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.57729055608576, + 35.75816127996708 + ], + [ + -92.57729055608576, + 36.04753390377052 + ], + [ + -92.2390862534679, + 36.04753390377052 + ], + [ + -92.2390862534679, + 35.75816127996708 + ], + [ + -92.57729055608576, + 35.75816127996708 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.57729055608576, + 36.04753390377052 + ], + [ + -92.57729055608576, + 36.336906527573966 + ], + [ + -92.2390862534679, + 36.336906527573966 + ], + [ + -92.2390862534679, + 36.04753390377052 + ], + [ + -92.57729055608576, + 36.04753390377052 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.57729055608576, + 36.336906527573966 + ], + [ + -92.57729055608576, + 36.62627915137741 + ], + [ + -92.2390862534679, + 36.62627915137741 + ], + [ + -92.2390862534679, + 36.336906527573966 + ], + [ + -92.57729055608576, + 36.336906527573966 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.57729055608576, + 36.62627915137741 + ], + [ + -92.57729055608576, + 36.915651775180855 + ], + [ + -92.2390862534679, + 36.915651775180855 + ], + [ + -92.2390862534679, + 36.62627915137741 + ], + [ + -92.57729055608576, + 36.62627915137741 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.57729055608576, + 36.915651775180855 + ], + [ + -92.57729055608576, + 37.2050243989843 + ], + [ + -92.2390862534679, + 37.2050243989843 + ], + [ + -92.2390862534679, + 36.915651775180855 + ], + [ + -92.57729055608576, + 36.915651775180855 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.57729055608576, + 37.2050243989843 + ], + [ + -92.57729055608576, + 37.494397022787744 + ], + [ + -92.2390862534679, + 37.494397022787744 + ], + [ + -92.2390862534679, + 37.2050243989843 + ], + [ + -92.57729055608576, + 37.2050243989843 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.57729055608576, + 37.494397022787744 + ], + [ + -92.57729055608576, + 37.78376964659119 + ], + [ + -92.2390862534679, + 37.78376964659119 + ], + [ + -92.2390862534679, + 37.494397022787744 + ], + [ + -92.57729055608576, + 37.494397022787744 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.57729055608576, + 37.78376964659119 + ], + [ + -92.57729055608576, + 38.073142270394634 + ], + [ + -92.2390862534679, + 38.073142270394634 + ], + [ + -92.2390862534679, + 37.78376964659119 + ], + [ + -92.57729055608576, + 37.78376964659119 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.57729055608576, + 38.073142270394634 + ], + [ + -92.57729055608576, + 38.36251489419808 + ], + [ + -92.2390862534679, + 38.36251489419808 + ], + [ + -92.2390862534679, + 38.073142270394634 + ], + [ + -92.57729055608576, + 38.073142270394634 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.57729055608576, + 38.36251489419808 + ], + [ + -92.57729055608576, + 38.65188751800152 + ], + [ + -92.2390862534679, + 38.65188751800152 + ], + [ + -92.2390862534679, + 38.36251489419808 + ], + [ + -92.57729055608576, + 38.36251489419808 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.57729055608576, + 38.65188751800152 + ], + [ + -92.57729055608576, + 38.94126014180497 + ], + [ + -92.2390862534679, + 38.94126014180497 + ], + [ + -92.2390862534679, + 38.65188751800152 + ], + [ + -92.57729055608576, + 38.65188751800152 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.57729055608576, + 38.94126014180497 + ], + [ + -92.57729055608576, + 39.23063276560841 + ], + [ + -92.2390862534679, + 39.23063276560841 + ], + [ + -92.2390862534679, + 38.94126014180497 + ], + [ + -92.57729055608576, + 38.94126014180497 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.57729055608576, + 39.23063276560841 + ], + [ + -92.57729055608576, + 39.52000538941186 + ], + [ + -92.2390862534679, + 39.52000538941186 + ], + [ + -92.2390862534679, + 39.23063276560841 + ], + [ + -92.57729055608576, + 39.23063276560841 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.57729055608576, + 39.52000538941186 + ], + [ + -92.57729055608576, + 39.8093780132153 + ], + [ + -92.2390862534679, + 39.8093780132153 + ], + [ + -92.2390862534679, + 39.52000538941186 + ], + [ + -92.57729055608576, + 39.52000538941186 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.57729055608576, + 39.8093780132153 + ], + [ + -92.57729055608576, + 40.098750637018746 + ], + [ + -92.2390862534679, + 40.098750637018746 + ], + [ + -92.2390862534679, + 39.8093780132153 + ], + [ + -92.57729055608576, + 39.8093780132153 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.57729055608576, + 40.098750637018746 + ], + [ + -92.57729055608576, + 40.38812326082219 + ], + [ + -92.2390862534679, + 40.38812326082219 + ], + [ + -92.2390862534679, + 40.098750637018746 + ], + [ + -92.57729055608576, + 40.098750637018746 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.57729055608576, + 40.38812326082219 + ], + [ + -92.57729055608576, + 40.677495884625635 + ], + [ + -92.2390862534679, + 40.677495884625635 + ], + [ + -92.2390862534679, + 40.38812326082219 + ], + [ + -92.57729055608576, + 40.38812326082219 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.2390862534679, + 31.12819929911196 + ], + [ + -92.2390862534679, + 31.417571922915403 + ], + [ + -91.90088195085005, + 31.417571922915403 + ], + [ + -91.90088195085005, + 31.12819929911196 + ], + [ + -92.2390862534679, + 31.12819929911196 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.2390862534679, + 31.417571922915403 + ], + [ + -92.2390862534679, + 31.706944546718848 + ], + [ + -91.90088195085005, + 31.706944546718848 + ], + [ + -91.90088195085005, + 31.417571922915403 + ], + [ + -92.2390862534679, + 31.417571922915403 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.2390862534679, + 31.706944546718848 + ], + [ + -92.2390862534679, + 31.996317170522293 + ], + [ + -91.90088195085005, + 31.996317170522293 + ], + [ + -91.90088195085005, + 31.706944546718848 + ], + [ + -92.2390862534679, + 31.706944546718848 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.2390862534679, + 31.996317170522293 + ], + [ + -92.2390862534679, + 32.28568979432574 + ], + [ + -91.90088195085005, + 32.28568979432574 + ], + [ + -91.90088195085005, + 31.996317170522293 + ], + [ + -92.2390862534679, + 31.996317170522293 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.2390862534679, + 32.28568979432574 + ], + [ + -92.2390862534679, + 32.575062418129185 + ], + [ + -91.90088195085005, + 32.575062418129185 + ], + [ + -91.90088195085005, + 32.28568979432574 + ], + [ + -92.2390862534679, + 32.28568979432574 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.2390862534679, + 32.575062418129185 + ], + [ + -92.2390862534679, + 32.86443504193263 + ], + [ + -91.90088195085005, + 32.86443504193263 + ], + [ + -91.90088195085005, + 32.575062418129185 + ], + [ + -92.2390862534679, + 32.575062418129185 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.2390862534679, + 32.86443504193263 + ], + [ + -92.2390862534679, + 33.153807665736075 + ], + [ + -91.90088195085005, + 33.153807665736075 + ], + [ + -91.90088195085005, + 32.86443504193263 + ], + [ + -92.2390862534679, + 32.86443504193263 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.2390862534679, + 33.153807665736075 + ], + [ + -92.2390862534679, + 33.44318028953952 + ], + [ + -91.90088195085005, + 33.44318028953952 + ], + [ + -91.90088195085005, + 33.153807665736075 + ], + [ + -92.2390862534679, + 33.153807665736075 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.2390862534679, + 33.44318028953952 + ], + [ + -92.2390862534679, + 33.732552913342964 + ], + [ + -91.90088195085005, + 33.732552913342964 + ], + [ + -91.90088195085005, + 33.44318028953952 + ], + [ + -92.2390862534679, + 33.44318028953952 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.2390862534679, + 33.732552913342964 + ], + [ + -92.2390862534679, + 34.02192553714641 + ], + [ + -91.90088195085005, + 34.02192553714641 + ], + [ + -91.90088195085005, + 33.732552913342964 + ], + [ + -92.2390862534679, + 33.732552913342964 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.2390862534679, + 34.02192553714641 + ], + [ + -92.2390862534679, + 34.31129816094985 + ], + [ + -91.90088195085005, + 34.31129816094985 + ], + [ + -91.90088195085005, + 34.02192553714641 + ], + [ + -92.2390862534679, + 34.02192553714641 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.2390862534679, + 34.31129816094985 + ], + [ + -92.2390862534679, + 34.6006707847533 + ], + [ + -91.90088195085005, + 34.6006707847533 + ], + [ + -91.90088195085005, + 34.31129816094985 + ], + [ + -92.2390862534679, + 34.31129816094985 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.2390862534679, + 34.6006707847533 + ], + [ + -92.2390862534679, + 34.89004340855674 + ], + [ + -91.90088195085005, + 34.89004340855674 + ], + [ + -91.90088195085005, + 34.6006707847533 + ], + [ + -92.2390862534679, + 34.6006707847533 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.2390862534679, + 34.89004340855674 + ], + [ + -92.2390862534679, + 35.17941603236019 + ], + [ + -91.90088195085005, + 35.17941603236019 + ], + [ + -91.90088195085005, + 34.89004340855674 + ], + [ + -92.2390862534679, + 34.89004340855674 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.2390862534679, + 35.17941603236019 + ], + [ + -92.2390862534679, + 35.46878865616363 + ], + [ + -91.90088195085005, + 35.46878865616363 + ], + [ + -91.90088195085005, + 35.17941603236019 + ], + [ + -92.2390862534679, + 35.17941603236019 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.2390862534679, + 35.46878865616363 + ], + [ + -92.2390862534679, + 35.75816127996708 + ], + [ + -91.90088195085005, + 35.75816127996708 + ], + [ + -91.90088195085005, + 35.46878865616363 + ], + [ + -92.2390862534679, + 35.46878865616363 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.2390862534679, + 35.75816127996708 + ], + [ + -92.2390862534679, + 36.04753390377052 + ], + [ + -91.90088195085005, + 36.04753390377052 + ], + [ + -91.90088195085005, + 35.75816127996708 + ], + [ + -92.2390862534679, + 35.75816127996708 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.2390862534679, + 36.04753390377052 + ], + [ + -92.2390862534679, + 36.336906527573966 + ], + [ + -91.90088195085005, + 36.336906527573966 + ], + [ + -91.90088195085005, + 36.04753390377052 + ], + [ + -92.2390862534679, + 36.04753390377052 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.2390862534679, + 36.336906527573966 + ], + [ + -92.2390862534679, + 36.62627915137741 + ], + [ + -91.90088195085005, + 36.62627915137741 + ], + [ + -91.90088195085005, + 36.336906527573966 + ], + [ + -92.2390862534679, + 36.336906527573966 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.2390862534679, + 36.62627915137741 + ], + [ + -92.2390862534679, + 36.915651775180855 + ], + [ + -91.90088195085005, + 36.915651775180855 + ], + [ + -91.90088195085005, + 36.62627915137741 + ], + [ + -92.2390862534679, + 36.62627915137741 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.2390862534679, + 36.915651775180855 + ], + [ + -92.2390862534679, + 37.2050243989843 + ], + [ + -91.90088195085005, + 37.2050243989843 + ], + [ + -91.90088195085005, + 36.915651775180855 + ], + [ + -92.2390862534679, + 36.915651775180855 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.2390862534679, + 37.2050243989843 + ], + [ + -92.2390862534679, + 37.494397022787744 + ], + [ + -91.90088195085005, + 37.494397022787744 + ], + [ + -91.90088195085005, + 37.2050243989843 + ], + [ + -92.2390862534679, + 37.2050243989843 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.2390862534679, + 37.494397022787744 + ], + [ + -92.2390862534679, + 37.78376964659119 + ], + [ + -91.90088195085005, + 37.78376964659119 + ], + [ + -91.90088195085005, + 37.494397022787744 + ], + [ + -92.2390862534679, + 37.494397022787744 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.2390862534679, + 37.78376964659119 + ], + [ + -92.2390862534679, + 38.073142270394634 + ], + [ + -91.90088195085005, + 38.073142270394634 + ], + [ + -91.90088195085005, + 37.78376964659119 + ], + [ + -92.2390862534679, + 37.78376964659119 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.2390862534679, + 38.073142270394634 + ], + [ + -92.2390862534679, + 38.36251489419808 + ], + [ + -91.90088195085005, + 38.36251489419808 + ], + [ + -91.90088195085005, + 38.073142270394634 + ], + [ + -92.2390862534679, + 38.073142270394634 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.2390862534679, + 38.36251489419808 + ], + [ + -92.2390862534679, + 38.65188751800152 + ], + [ + -91.90088195085005, + 38.65188751800152 + ], + [ + -91.90088195085005, + 38.36251489419808 + ], + [ + -92.2390862534679, + 38.36251489419808 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.2390862534679, + 38.65188751800152 + ], + [ + -92.2390862534679, + 38.94126014180497 + ], + [ + -91.90088195085005, + 38.94126014180497 + ], + [ + -91.90088195085005, + 38.65188751800152 + ], + [ + -92.2390862534679, + 38.65188751800152 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.2390862534679, + 38.94126014180497 + ], + [ + -92.2390862534679, + 39.23063276560841 + ], + [ + -91.90088195085005, + 39.23063276560841 + ], + [ + -91.90088195085005, + 38.94126014180497 + ], + [ + -92.2390862534679, + 38.94126014180497 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.2390862534679, + 39.23063276560841 + ], + [ + -92.2390862534679, + 39.52000538941186 + ], + [ + -91.90088195085005, + 39.52000538941186 + ], + [ + -91.90088195085005, + 39.23063276560841 + ], + [ + -92.2390862534679, + 39.23063276560841 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.2390862534679, + 39.52000538941186 + ], + [ + -92.2390862534679, + 39.8093780132153 + ], + [ + -91.90088195085005, + 39.8093780132153 + ], + [ + -91.90088195085005, + 39.52000538941186 + ], + [ + -92.2390862534679, + 39.52000538941186 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.2390862534679, + 39.8093780132153 + ], + [ + -92.2390862534679, + 40.098750637018746 + ], + [ + -91.90088195085005, + 40.098750637018746 + ], + [ + -91.90088195085005, + 39.8093780132153 + ], + [ + -92.2390862534679, + 39.8093780132153 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.2390862534679, + 40.098750637018746 + ], + [ + -92.2390862534679, + 40.38812326082219 + ], + [ + -91.90088195085005, + 40.38812326082219 + ], + [ + -91.90088195085005, + 40.098750637018746 + ], + [ + -92.2390862534679, + 40.098750637018746 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.2390862534679, + 40.38812326082219 + ], + [ + -92.2390862534679, + 40.677495884625635 + ], + [ + -91.90088195085005, + 40.677495884625635 + ], + [ + -91.90088195085005, + 40.38812326082219 + ], + [ + -92.2390862534679, + 40.38812326082219 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.90088195085005, + 31.12819929911196 + ], + [ + -91.90088195085005, + 31.417571922915403 + ], + [ + -91.5626776482322, + 31.417571922915403 + ], + [ + -91.5626776482322, + 31.12819929911196 + ], + [ + -91.90088195085005, + 31.12819929911196 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.90088195085005, + 31.417571922915403 + ], + [ + -91.90088195085005, + 31.706944546718848 + ], + [ + -91.5626776482322, + 31.706944546718848 + ], + [ + -91.5626776482322, + 31.417571922915403 + ], + [ + -91.90088195085005, + 31.417571922915403 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.90088195085005, + 31.706944546718848 + ], + [ + -91.90088195085005, + 31.996317170522293 + ], + [ + -91.5626776482322, + 31.996317170522293 + ], + [ + -91.5626776482322, + 31.706944546718848 + ], + [ + -91.90088195085005, + 31.706944546718848 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.90088195085005, + 31.996317170522293 + ], + [ + -91.90088195085005, + 32.28568979432574 + ], + [ + -91.5626776482322, + 32.28568979432574 + ], + [ + -91.5626776482322, + 31.996317170522293 + ], + [ + -91.90088195085005, + 31.996317170522293 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.90088195085005, + 32.28568979432574 + ], + [ + -91.90088195085005, + 32.575062418129185 + ], + [ + -91.5626776482322, + 32.575062418129185 + ], + [ + -91.5626776482322, + 32.28568979432574 + ], + [ + -91.90088195085005, + 32.28568979432574 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.90088195085005, + 32.575062418129185 + ], + [ + -91.90088195085005, + 32.86443504193263 + ], + [ + -91.5626776482322, + 32.86443504193263 + ], + [ + -91.5626776482322, + 32.575062418129185 + ], + [ + -91.90088195085005, + 32.575062418129185 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.90088195085005, + 32.86443504193263 + ], + [ + -91.90088195085005, + 33.153807665736075 + ], + [ + -91.5626776482322, + 33.153807665736075 + ], + [ + -91.5626776482322, + 32.86443504193263 + ], + [ + -91.90088195085005, + 32.86443504193263 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.90088195085005, + 33.153807665736075 + ], + [ + -91.90088195085005, + 33.44318028953952 + ], + [ + -91.5626776482322, + 33.44318028953952 + ], + [ + -91.5626776482322, + 33.153807665736075 + ], + [ + -91.90088195085005, + 33.153807665736075 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.90088195085005, + 33.44318028953952 + ], + [ + -91.90088195085005, + 33.732552913342964 + ], + [ + -91.5626776482322, + 33.732552913342964 + ], + [ + -91.5626776482322, + 33.44318028953952 + ], + [ + -91.90088195085005, + 33.44318028953952 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.90088195085005, + 33.732552913342964 + ], + [ + -91.90088195085005, + 34.02192553714641 + ], + [ + -91.5626776482322, + 34.02192553714641 + ], + [ + -91.5626776482322, + 33.732552913342964 + ], + [ + -91.90088195085005, + 33.732552913342964 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.90088195085005, + 34.02192553714641 + ], + [ + -91.90088195085005, + 34.31129816094985 + ], + [ + -91.5626776482322, + 34.31129816094985 + ], + [ + -91.5626776482322, + 34.02192553714641 + ], + [ + -91.90088195085005, + 34.02192553714641 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.90088195085005, + 34.31129816094985 + ], + [ + -91.90088195085005, + 34.6006707847533 + ], + [ + -91.5626776482322, + 34.6006707847533 + ], + [ + -91.5626776482322, + 34.31129816094985 + ], + [ + -91.90088195085005, + 34.31129816094985 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.90088195085005, + 34.6006707847533 + ], + [ + -91.90088195085005, + 34.89004340855674 + ], + [ + -91.5626776482322, + 34.89004340855674 + ], + [ + -91.5626776482322, + 34.6006707847533 + ], + [ + -91.90088195085005, + 34.6006707847533 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.90088195085005, + 34.89004340855674 + ], + [ + -91.90088195085005, + 35.17941603236019 + ], + [ + -91.5626776482322, + 35.17941603236019 + ], + [ + -91.5626776482322, + 34.89004340855674 + ], + [ + -91.90088195085005, + 34.89004340855674 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.90088195085005, + 35.17941603236019 + ], + [ + -91.90088195085005, + 35.46878865616363 + ], + [ + -91.5626776482322, + 35.46878865616363 + ], + [ + -91.5626776482322, + 35.17941603236019 + ], + [ + -91.90088195085005, + 35.17941603236019 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.90088195085005, + 35.46878865616363 + ], + [ + -91.90088195085005, + 35.75816127996708 + ], + [ + -91.5626776482322, + 35.75816127996708 + ], + [ + -91.5626776482322, + 35.46878865616363 + ], + [ + -91.90088195085005, + 35.46878865616363 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.90088195085005, + 35.75816127996708 + ], + [ + -91.90088195085005, + 36.04753390377052 + ], + [ + -91.5626776482322, + 36.04753390377052 + ], + [ + -91.5626776482322, + 35.75816127996708 + ], + [ + -91.90088195085005, + 35.75816127996708 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.90088195085005, + 36.04753390377052 + ], + [ + -91.90088195085005, + 36.336906527573966 + ], + [ + -91.5626776482322, + 36.336906527573966 + ], + [ + -91.5626776482322, + 36.04753390377052 + ], + [ + -91.90088195085005, + 36.04753390377052 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.90088195085005, + 36.336906527573966 + ], + [ + -91.90088195085005, + 36.62627915137741 + ], + [ + -91.5626776482322, + 36.62627915137741 + ], + [ + -91.5626776482322, + 36.336906527573966 + ], + [ + -91.90088195085005, + 36.336906527573966 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.90088195085005, + 36.62627915137741 + ], + [ + -91.90088195085005, + 36.915651775180855 + ], + [ + -91.5626776482322, + 36.915651775180855 + ], + [ + -91.5626776482322, + 36.62627915137741 + ], + [ + -91.90088195085005, + 36.62627915137741 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.90088195085005, + 36.915651775180855 + ], + [ + -91.90088195085005, + 37.2050243989843 + ], + [ + -91.5626776482322, + 37.2050243989843 + ], + [ + -91.5626776482322, + 36.915651775180855 + ], + [ + -91.90088195085005, + 36.915651775180855 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.90088195085005, + 37.2050243989843 + ], + [ + -91.90088195085005, + 37.494397022787744 + ], + [ + -91.5626776482322, + 37.494397022787744 + ], + [ + -91.5626776482322, + 37.2050243989843 + ], + [ + -91.90088195085005, + 37.2050243989843 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.90088195085005, + 37.494397022787744 + ], + [ + -91.90088195085005, + 37.78376964659119 + ], + [ + -91.5626776482322, + 37.78376964659119 + ], + [ + -91.5626776482322, + 37.494397022787744 + ], + [ + -91.90088195085005, + 37.494397022787744 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.90088195085005, + 37.78376964659119 + ], + [ + -91.90088195085005, + 38.073142270394634 + ], + [ + -91.5626776482322, + 38.073142270394634 + ], + [ + -91.5626776482322, + 37.78376964659119 + ], + [ + -91.90088195085005, + 37.78376964659119 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.90088195085005, + 38.073142270394634 + ], + [ + -91.90088195085005, + 38.36251489419808 + ], + [ + -91.5626776482322, + 38.36251489419808 + ], + [ + -91.5626776482322, + 38.073142270394634 + ], + [ + -91.90088195085005, + 38.073142270394634 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.90088195085005, + 38.36251489419808 + ], + [ + -91.90088195085005, + 38.65188751800152 + ], + [ + -91.5626776482322, + 38.65188751800152 + ], + [ + -91.5626776482322, + 38.36251489419808 + ], + [ + -91.90088195085005, + 38.36251489419808 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.90088195085005, + 38.65188751800152 + ], + [ + -91.90088195085005, + 38.94126014180497 + ], + [ + -91.5626776482322, + 38.94126014180497 + ], + [ + -91.5626776482322, + 38.65188751800152 + ], + [ + -91.90088195085005, + 38.65188751800152 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.90088195085005, + 38.94126014180497 + ], + [ + -91.90088195085005, + 39.23063276560841 + ], + [ + -91.5626776482322, + 39.23063276560841 + ], + [ + -91.5626776482322, + 38.94126014180497 + ], + [ + -91.90088195085005, + 38.94126014180497 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.90088195085005, + 39.23063276560841 + ], + [ + -91.90088195085005, + 39.52000538941186 + ], + [ + -91.5626776482322, + 39.52000538941186 + ], + [ + -91.5626776482322, + 39.23063276560841 + ], + [ + -91.90088195085005, + 39.23063276560841 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.90088195085005, + 39.52000538941186 + ], + [ + -91.90088195085005, + 39.8093780132153 + ], + [ + -91.5626776482322, + 39.8093780132153 + ], + [ + -91.5626776482322, + 39.52000538941186 + ], + [ + -91.90088195085005, + 39.52000538941186 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.90088195085005, + 39.8093780132153 + ], + [ + -91.90088195085005, + 40.098750637018746 + ], + [ + -91.5626776482322, + 40.098750637018746 + ], + [ + -91.5626776482322, + 39.8093780132153 + ], + [ + -91.90088195085005, + 39.8093780132153 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.90088195085005, + 40.098750637018746 + ], + [ + -91.90088195085005, + 40.38812326082219 + ], + [ + -91.5626776482322, + 40.38812326082219 + ], + [ + -91.5626776482322, + 40.098750637018746 + ], + [ + -91.90088195085005, + 40.098750637018746 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.90088195085005, + 40.38812326082219 + ], + [ + -91.90088195085005, + 40.677495884625635 + ], + [ + -91.5626776482322, + 40.677495884625635 + ], + [ + -91.5626776482322, + 40.38812326082219 + ], + [ + -91.90088195085005, + 40.38812326082219 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.5626776482322, + 31.12819929911196 + ], + [ + -91.5626776482322, + 31.417571922915403 + ], + [ + -91.22447334561434, + 31.417571922915403 + ], + [ + -91.22447334561434, + 31.12819929911196 + ], + [ + -91.5626776482322, + 31.12819929911196 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.5626776482322, + 31.417571922915403 + ], + [ + -91.5626776482322, + 31.706944546718848 + ], + [ + -91.22447334561434, + 31.706944546718848 + ], + [ + -91.22447334561434, + 31.417571922915403 + ], + [ + -91.5626776482322, + 31.417571922915403 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.5626776482322, + 31.706944546718848 + ], + [ + -91.5626776482322, + 31.996317170522293 + ], + [ + -91.22447334561434, + 31.996317170522293 + ], + [ + -91.22447334561434, + 31.706944546718848 + ], + [ + -91.5626776482322, + 31.706944546718848 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.5626776482322, + 31.996317170522293 + ], + [ + -91.5626776482322, + 32.28568979432574 + ], + [ + -91.22447334561434, + 32.28568979432574 + ], + [ + -91.22447334561434, + 31.996317170522293 + ], + [ + -91.5626776482322, + 31.996317170522293 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.5626776482322, + 32.28568979432574 + ], + [ + -91.5626776482322, + 32.575062418129185 + ], + [ + -91.22447334561434, + 32.575062418129185 + ], + [ + -91.22447334561434, + 32.28568979432574 + ], + [ + -91.5626776482322, + 32.28568979432574 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.5626776482322, + 32.575062418129185 + ], + [ + -91.5626776482322, + 32.86443504193263 + ], + [ + -91.22447334561434, + 32.86443504193263 + ], + [ + -91.22447334561434, + 32.575062418129185 + ], + [ + -91.5626776482322, + 32.575062418129185 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.5626776482322, + 32.86443504193263 + ], + [ + -91.5626776482322, + 33.153807665736075 + ], + [ + -91.22447334561434, + 33.153807665736075 + ], + [ + -91.22447334561434, + 32.86443504193263 + ], + [ + -91.5626776482322, + 32.86443504193263 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.5626776482322, + 33.153807665736075 + ], + [ + -91.5626776482322, + 33.44318028953952 + ], + [ + -91.22447334561434, + 33.44318028953952 + ], + [ + -91.22447334561434, + 33.153807665736075 + ], + [ + -91.5626776482322, + 33.153807665736075 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.5626776482322, + 33.44318028953952 + ], + [ + -91.5626776482322, + 33.732552913342964 + ], + [ + -91.22447334561434, + 33.732552913342964 + ], + [ + -91.22447334561434, + 33.44318028953952 + ], + [ + -91.5626776482322, + 33.44318028953952 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.5626776482322, + 33.732552913342964 + ], + [ + -91.5626776482322, + 34.02192553714641 + ], + [ + -91.22447334561434, + 34.02192553714641 + ], + [ + -91.22447334561434, + 33.732552913342964 + ], + [ + -91.5626776482322, + 33.732552913342964 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.5626776482322, + 34.02192553714641 + ], + [ + -91.5626776482322, + 34.31129816094985 + ], + [ + -91.22447334561434, + 34.31129816094985 + ], + [ + -91.22447334561434, + 34.02192553714641 + ], + [ + -91.5626776482322, + 34.02192553714641 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.5626776482322, + 34.31129816094985 + ], + [ + -91.5626776482322, + 34.6006707847533 + ], + [ + -91.22447334561434, + 34.6006707847533 + ], + [ + -91.22447334561434, + 34.31129816094985 + ], + [ + -91.5626776482322, + 34.31129816094985 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.5626776482322, + 34.6006707847533 + ], + [ + -91.5626776482322, + 34.89004340855674 + ], + [ + -91.22447334561434, + 34.89004340855674 + ], + [ + -91.22447334561434, + 34.6006707847533 + ], + [ + -91.5626776482322, + 34.6006707847533 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.5626776482322, + 34.89004340855674 + ], + [ + -91.5626776482322, + 35.17941603236019 + ], + [ + -91.22447334561434, + 35.17941603236019 + ], + [ + -91.22447334561434, + 34.89004340855674 + ], + [ + -91.5626776482322, + 34.89004340855674 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.5626776482322, + 35.17941603236019 + ], + [ + -91.5626776482322, + 35.46878865616363 + ], + [ + -91.22447334561434, + 35.46878865616363 + ], + [ + -91.22447334561434, + 35.17941603236019 + ], + [ + -91.5626776482322, + 35.17941603236019 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.5626776482322, + 35.46878865616363 + ], + [ + -91.5626776482322, + 35.75816127996708 + ], + [ + -91.22447334561434, + 35.75816127996708 + ], + [ + -91.22447334561434, + 35.46878865616363 + ], + [ + -91.5626776482322, + 35.46878865616363 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.5626776482322, + 35.75816127996708 + ], + [ + -91.5626776482322, + 36.04753390377052 + ], + [ + -91.22447334561434, + 36.04753390377052 + ], + [ + -91.22447334561434, + 35.75816127996708 + ], + [ + -91.5626776482322, + 35.75816127996708 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.5626776482322, + 36.04753390377052 + ], + [ + -91.5626776482322, + 36.336906527573966 + ], + [ + -91.22447334561434, + 36.336906527573966 + ], + [ + -91.22447334561434, + 36.04753390377052 + ], + [ + -91.5626776482322, + 36.04753390377052 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.5626776482322, + 36.336906527573966 + ], + [ + -91.5626776482322, + 36.62627915137741 + ], + [ + -91.22447334561434, + 36.62627915137741 + ], + [ + -91.22447334561434, + 36.336906527573966 + ], + [ + -91.5626776482322, + 36.336906527573966 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.5626776482322, + 36.62627915137741 + ], + [ + -91.5626776482322, + 36.915651775180855 + ], + [ + -91.22447334561434, + 36.915651775180855 + ], + [ + -91.22447334561434, + 36.62627915137741 + ], + [ + -91.5626776482322, + 36.62627915137741 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.5626776482322, + 36.915651775180855 + ], + [ + -91.5626776482322, + 37.2050243989843 + ], + [ + -91.22447334561434, + 37.2050243989843 + ], + [ + -91.22447334561434, + 36.915651775180855 + ], + [ + -91.5626776482322, + 36.915651775180855 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.5626776482322, + 37.2050243989843 + ], + [ + -91.5626776482322, + 37.494397022787744 + ], + [ + -91.22447334561434, + 37.494397022787744 + ], + [ + -91.22447334561434, + 37.2050243989843 + ], + [ + -91.5626776482322, + 37.2050243989843 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.5626776482322, + 37.494397022787744 + ], + [ + -91.5626776482322, + 37.78376964659119 + ], + [ + -91.22447334561434, + 37.78376964659119 + ], + [ + -91.22447334561434, + 37.494397022787744 + ], + [ + -91.5626776482322, + 37.494397022787744 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.5626776482322, + 37.78376964659119 + ], + [ + -91.5626776482322, + 38.073142270394634 + ], + [ + -91.22447334561434, + 38.073142270394634 + ], + [ + -91.22447334561434, + 37.78376964659119 + ], + [ + -91.5626776482322, + 37.78376964659119 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.5626776482322, + 38.073142270394634 + ], + [ + -91.5626776482322, + 38.36251489419808 + ], + [ + -91.22447334561434, + 38.36251489419808 + ], + [ + -91.22447334561434, + 38.073142270394634 + ], + [ + -91.5626776482322, + 38.073142270394634 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.5626776482322, + 38.36251489419808 + ], + [ + -91.5626776482322, + 38.65188751800152 + ], + [ + -91.22447334561434, + 38.65188751800152 + ], + [ + -91.22447334561434, + 38.36251489419808 + ], + [ + -91.5626776482322, + 38.36251489419808 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.5626776482322, + 38.65188751800152 + ], + [ + -91.5626776482322, + 38.94126014180497 + ], + [ + -91.22447334561434, + 38.94126014180497 + ], + [ + -91.22447334561434, + 38.65188751800152 + ], + [ + -91.5626776482322, + 38.65188751800152 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.5626776482322, + 38.94126014180497 + ], + [ + -91.5626776482322, + 39.23063276560841 + ], + [ + -91.22447334561434, + 39.23063276560841 + ], + [ + -91.22447334561434, + 38.94126014180497 + ], + [ + -91.5626776482322, + 38.94126014180497 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.5626776482322, + 39.23063276560841 + ], + [ + -91.5626776482322, + 39.52000538941186 + ], + [ + -91.22447334561434, + 39.52000538941186 + ], + [ + -91.22447334561434, + 39.23063276560841 + ], + [ + -91.5626776482322, + 39.23063276560841 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.5626776482322, + 39.52000538941186 + ], + [ + -91.5626776482322, + 39.8093780132153 + ], + [ + -91.22447334561434, + 39.8093780132153 + ], + [ + -91.22447334561434, + 39.52000538941186 + ], + [ + -91.5626776482322, + 39.52000538941186 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.5626776482322, + 39.8093780132153 + ], + [ + -91.5626776482322, + 40.098750637018746 + ], + [ + -91.22447334561434, + 40.098750637018746 + ], + [ + -91.22447334561434, + 39.8093780132153 + ], + [ + -91.5626776482322, + 39.8093780132153 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.5626776482322, + 40.098750637018746 + ], + [ + -91.5626776482322, + 40.38812326082219 + ], + [ + -91.22447334561434, + 40.38812326082219 + ], + [ + -91.22447334561434, + 40.098750637018746 + ], + [ + -91.5626776482322, + 40.098750637018746 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.5626776482322, + 40.38812326082219 + ], + [ + -91.5626776482322, + 40.677495884625635 + ], + [ + -91.22447334561434, + 40.677495884625635 + ], + [ + -91.22447334561434, + 40.38812326082219 + ], + [ + -91.5626776482322, + 40.38812326082219 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.22447334561434, + 31.12819929911196 + ], + [ + -91.22447334561434, + 31.417571922915403 + ], + [ + -90.88626904299649, + 31.417571922915403 + ], + [ + -90.88626904299649, + 31.12819929911196 + ], + [ + -91.22447334561434, + 31.12819929911196 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.22447334561434, + 31.417571922915403 + ], + [ + -91.22447334561434, + 31.706944546718848 + ], + [ + -90.88626904299649, + 31.706944546718848 + ], + [ + -90.88626904299649, + 31.417571922915403 + ], + [ + -91.22447334561434, + 31.417571922915403 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.22447334561434, + 31.706944546718848 + ], + [ + -91.22447334561434, + 31.996317170522293 + ], + [ + -90.88626904299649, + 31.996317170522293 + ], + [ + -90.88626904299649, + 31.706944546718848 + ], + [ + -91.22447334561434, + 31.706944546718848 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.22447334561434, + 31.996317170522293 + ], + [ + -91.22447334561434, + 32.28568979432574 + ], + [ + -90.88626904299649, + 32.28568979432574 + ], + [ + -90.88626904299649, + 31.996317170522293 + ], + [ + -91.22447334561434, + 31.996317170522293 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.22447334561434, + 32.28568979432574 + ], + [ + -91.22447334561434, + 32.575062418129185 + ], + [ + -90.88626904299649, + 32.575062418129185 + ], + [ + -90.88626904299649, + 32.28568979432574 + ], + [ + -91.22447334561434, + 32.28568979432574 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.22447334561434, + 32.575062418129185 + ], + [ + -91.22447334561434, + 32.86443504193263 + ], + [ + -90.88626904299649, + 32.86443504193263 + ], + [ + -90.88626904299649, + 32.575062418129185 + ], + [ + -91.22447334561434, + 32.575062418129185 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.22447334561434, + 32.86443504193263 + ], + [ + -91.22447334561434, + 33.153807665736075 + ], + [ + -90.88626904299649, + 33.153807665736075 + ], + [ + -90.88626904299649, + 32.86443504193263 + ], + [ + -91.22447334561434, + 32.86443504193263 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.22447334561434, + 33.153807665736075 + ], + [ + -91.22447334561434, + 33.44318028953952 + ], + [ + -90.88626904299649, + 33.44318028953952 + ], + [ + -90.88626904299649, + 33.153807665736075 + ], + [ + -91.22447334561434, + 33.153807665736075 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.22447334561434, + 33.44318028953952 + ], + [ + -91.22447334561434, + 33.732552913342964 + ], + [ + -90.88626904299649, + 33.732552913342964 + ], + [ + -90.88626904299649, + 33.44318028953952 + ], + [ + -91.22447334561434, + 33.44318028953952 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.22447334561434, + 33.732552913342964 + ], + [ + -91.22447334561434, + 34.02192553714641 + ], + [ + -90.88626904299649, + 34.02192553714641 + ], + [ + -90.88626904299649, + 33.732552913342964 + ], + [ + -91.22447334561434, + 33.732552913342964 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.22447334561434, + 34.02192553714641 + ], + [ + -91.22447334561434, + 34.31129816094985 + ], + [ + -90.88626904299649, + 34.31129816094985 + ], + [ + -90.88626904299649, + 34.02192553714641 + ], + [ + -91.22447334561434, + 34.02192553714641 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.22447334561434, + 34.31129816094985 + ], + [ + -91.22447334561434, + 34.6006707847533 + ], + [ + -90.88626904299649, + 34.6006707847533 + ], + [ + -90.88626904299649, + 34.31129816094985 + ], + [ + -91.22447334561434, + 34.31129816094985 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.22447334561434, + 34.6006707847533 + ], + [ + -91.22447334561434, + 34.89004340855674 + ], + [ + -90.88626904299649, + 34.89004340855674 + ], + [ + -90.88626904299649, + 34.6006707847533 + ], + [ + -91.22447334561434, + 34.6006707847533 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.22447334561434, + 34.89004340855674 + ], + [ + -91.22447334561434, + 35.17941603236019 + ], + [ + -90.88626904299649, + 35.17941603236019 + ], + [ + -90.88626904299649, + 34.89004340855674 + ], + [ + -91.22447334561434, + 34.89004340855674 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.22447334561434, + 35.17941603236019 + ], + [ + -91.22447334561434, + 35.46878865616363 + ], + [ + -90.88626904299649, + 35.46878865616363 + ], + [ + -90.88626904299649, + 35.17941603236019 + ], + [ + -91.22447334561434, + 35.17941603236019 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.22447334561434, + 35.46878865616363 + ], + [ + -91.22447334561434, + 35.75816127996708 + ], + [ + -90.88626904299649, + 35.75816127996708 + ], + [ + -90.88626904299649, + 35.46878865616363 + ], + [ + -91.22447334561434, + 35.46878865616363 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.22447334561434, + 35.75816127996708 + ], + [ + -91.22447334561434, + 36.04753390377052 + ], + [ + -90.88626904299649, + 36.04753390377052 + ], + [ + -90.88626904299649, + 35.75816127996708 + ], + [ + -91.22447334561434, + 35.75816127996708 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.22447334561434, + 36.04753390377052 + ], + [ + -91.22447334561434, + 36.336906527573966 + ], + [ + -90.88626904299649, + 36.336906527573966 + ], + [ + -90.88626904299649, + 36.04753390377052 + ], + [ + -91.22447334561434, + 36.04753390377052 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.22447334561434, + 36.336906527573966 + ], + [ + -91.22447334561434, + 36.62627915137741 + ], + [ + -90.88626904299649, + 36.62627915137741 + ], + [ + -90.88626904299649, + 36.336906527573966 + ], + [ + -91.22447334561434, + 36.336906527573966 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.22447334561434, + 36.62627915137741 + ], + [ + -91.22447334561434, + 36.915651775180855 + ], + [ + -90.88626904299649, + 36.915651775180855 + ], + [ + -90.88626904299649, + 36.62627915137741 + ], + [ + -91.22447334561434, + 36.62627915137741 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.22447334561434, + 36.915651775180855 + ], + [ + -91.22447334561434, + 37.2050243989843 + ], + [ + -90.88626904299649, + 37.2050243989843 + ], + [ + -90.88626904299649, + 36.915651775180855 + ], + [ + -91.22447334561434, + 36.915651775180855 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.22447334561434, + 37.2050243989843 + ], + [ + -91.22447334561434, + 37.494397022787744 + ], + [ + -90.88626904299649, + 37.494397022787744 + ], + [ + -90.88626904299649, + 37.2050243989843 + ], + [ + -91.22447334561434, + 37.2050243989843 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.22447334561434, + 37.494397022787744 + ], + [ + -91.22447334561434, + 37.78376964659119 + ], + [ + -90.88626904299649, + 37.78376964659119 + ], + [ + -90.88626904299649, + 37.494397022787744 + ], + [ + -91.22447334561434, + 37.494397022787744 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.22447334561434, + 37.78376964659119 + ], + [ + -91.22447334561434, + 38.073142270394634 + ], + [ + -90.88626904299649, + 38.073142270394634 + ], + [ + -90.88626904299649, + 37.78376964659119 + ], + [ + -91.22447334561434, + 37.78376964659119 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.22447334561434, + 38.073142270394634 + ], + [ + -91.22447334561434, + 38.36251489419808 + ], + [ + -90.88626904299649, + 38.36251489419808 + ], + [ + -90.88626904299649, + 38.073142270394634 + ], + [ + -91.22447334561434, + 38.073142270394634 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.22447334561434, + 38.36251489419808 + ], + [ + -91.22447334561434, + 38.65188751800152 + ], + [ + -90.88626904299649, + 38.65188751800152 + ], + [ + -90.88626904299649, + 38.36251489419808 + ], + [ + -91.22447334561434, + 38.36251489419808 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.22447334561434, + 38.65188751800152 + ], + [ + -91.22447334561434, + 38.94126014180497 + ], + [ + -90.88626904299649, + 38.94126014180497 + ], + [ + -90.88626904299649, + 38.65188751800152 + ], + [ + -91.22447334561434, + 38.65188751800152 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.22447334561434, + 38.94126014180497 + ], + [ + -91.22447334561434, + 39.23063276560841 + ], + [ + -90.88626904299649, + 39.23063276560841 + ], + [ + -90.88626904299649, + 38.94126014180497 + ], + [ + -91.22447334561434, + 38.94126014180497 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.22447334561434, + 39.23063276560841 + ], + [ + -91.22447334561434, + 39.52000538941186 + ], + [ + -90.88626904299649, + 39.52000538941186 + ], + [ + -90.88626904299649, + 39.23063276560841 + ], + [ + -91.22447334561434, + 39.23063276560841 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.22447334561434, + 39.52000538941186 + ], + [ + -91.22447334561434, + 39.8093780132153 + ], + [ + -90.88626904299649, + 39.8093780132153 + ], + [ + -90.88626904299649, + 39.52000538941186 + ], + [ + -91.22447334561434, + 39.52000538941186 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.22447334561434, + 39.8093780132153 + ], + [ + -91.22447334561434, + 40.098750637018746 + ], + [ + -90.88626904299649, + 40.098750637018746 + ], + [ + -90.88626904299649, + 39.8093780132153 + ], + [ + -91.22447334561434, + 39.8093780132153 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.22447334561434, + 40.098750637018746 + ], + [ + -91.22447334561434, + 40.38812326082219 + ], + [ + -90.88626904299649, + 40.38812326082219 + ], + [ + -90.88626904299649, + 40.098750637018746 + ], + [ + -91.22447334561434, + 40.098750637018746 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.22447334561434, + 40.38812326082219 + ], + [ + -91.22447334561434, + 40.677495884625635 + ], + [ + -90.88626904299649, + 40.677495884625635 + ], + [ + -90.88626904299649, + 40.38812326082219 + ], + [ + -91.22447334561434, + 40.38812326082219 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.88626904299649, + 31.12819929911196 + ], + [ + -90.88626904299649, + 31.417571922915403 + ], + [ + -90.54806474037863, + 31.417571922915403 + ], + [ + -90.54806474037863, + 31.12819929911196 + ], + [ + -90.88626904299649, + 31.12819929911196 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.88626904299649, + 31.417571922915403 + ], + [ + -90.88626904299649, + 31.706944546718848 + ], + [ + -90.54806474037863, + 31.706944546718848 + ], + [ + -90.54806474037863, + 31.417571922915403 + ], + [ + -90.88626904299649, + 31.417571922915403 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.88626904299649, + 31.706944546718848 + ], + [ + -90.88626904299649, + 31.996317170522293 + ], + [ + -90.54806474037863, + 31.996317170522293 + ], + [ + -90.54806474037863, + 31.706944546718848 + ], + [ + -90.88626904299649, + 31.706944546718848 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.88626904299649, + 31.996317170522293 + ], + [ + -90.88626904299649, + 32.28568979432574 + ], + [ + -90.54806474037863, + 32.28568979432574 + ], + [ + -90.54806474037863, + 31.996317170522293 + ], + [ + -90.88626904299649, + 31.996317170522293 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.88626904299649, + 32.28568979432574 + ], + [ + -90.88626904299649, + 32.575062418129185 + ], + [ + -90.54806474037863, + 32.575062418129185 + ], + [ + -90.54806474037863, + 32.28568979432574 + ], + [ + -90.88626904299649, + 32.28568979432574 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.88626904299649, + 32.575062418129185 + ], + [ + -90.88626904299649, + 32.86443504193263 + ], + [ + -90.54806474037863, + 32.86443504193263 + ], + [ + -90.54806474037863, + 32.575062418129185 + ], + [ + -90.88626904299649, + 32.575062418129185 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.88626904299649, + 32.86443504193263 + ], + [ + -90.88626904299649, + 33.153807665736075 + ], + [ + -90.54806474037863, + 33.153807665736075 + ], + [ + -90.54806474037863, + 32.86443504193263 + ], + [ + -90.88626904299649, + 32.86443504193263 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.88626904299649, + 33.153807665736075 + ], + [ + -90.88626904299649, + 33.44318028953952 + ], + [ + -90.54806474037863, + 33.44318028953952 + ], + [ + -90.54806474037863, + 33.153807665736075 + ], + [ + -90.88626904299649, + 33.153807665736075 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.88626904299649, + 33.44318028953952 + ], + [ + -90.88626904299649, + 33.732552913342964 + ], + [ + -90.54806474037863, + 33.732552913342964 + ], + [ + -90.54806474037863, + 33.44318028953952 + ], + [ + -90.88626904299649, + 33.44318028953952 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.88626904299649, + 33.732552913342964 + ], + [ + -90.88626904299649, + 34.02192553714641 + ], + [ + -90.54806474037863, + 34.02192553714641 + ], + [ + -90.54806474037863, + 33.732552913342964 + ], + [ + -90.88626904299649, + 33.732552913342964 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.88626904299649, + 34.02192553714641 + ], + [ + -90.88626904299649, + 34.31129816094985 + ], + [ + -90.54806474037863, + 34.31129816094985 + ], + [ + -90.54806474037863, + 34.02192553714641 + ], + [ + -90.88626904299649, + 34.02192553714641 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.88626904299649, + 34.31129816094985 + ], + [ + -90.88626904299649, + 34.6006707847533 + ], + [ + -90.54806474037863, + 34.6006707847533 + ], + [ + -90.54806474037863, + 34.31129816094985 + ], + [ + -90.88626904299649, + 34.31129816094985 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.88626904299649, + 34.6006707847533 + ], + [ + -90.88626904299649, + 34.89004340855674 + ], + [ + -90.54806474037863, + 34.89004340855674 + ], + [ + -90.54806474037863, + 34.6006707847533 + ], + [ + -90.88626904299649, + 34.6006707847533 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.88626904299649, + 34.89004340855674 + ], + [ + -90.88626904299649, + 35.17941603236019 + ], + [ + -90.54806474037863, + 35.17941603236019 + ], + [ + -90.54806474037863, + 34.89004340855674 + ], + [ + -90.88626904299649, + 34.89004340855674 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.88626904299649, + 35.17941603236019 + ], + [ + -90.88626904299649, + 35.46878865616363 + ], + [ + -90.54806474037863, + 35.46878865616363 + ], + [ + -90.54806474037863, + 35.17941603236019 + ], + [ + -90.88626904299649, + 35.17941603236019 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.88626904299649, + 35.46878865616363 + ], + [ + -90.88626904299649, + 35.75816127996708 + ], + [ + -90.54806474037863, + 35.75816127996708 + ], + [ + -90.54806474037863, + 35.46878865616363 + ], + [ + -90.88626904299649, + 35.46878865616363 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.88626904299649, + 35.75816127996708 + ], + [ + -90.88626904299649, + 36.04753390377052 + ], + [ + -90.54806474037863, + 36.04753390377052 + ], + [ + -90.54806474037863, + 35.75816127996708 + ], + [ + -90.88626904299649, + 35.75816127996708 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.88626904299649, + 36.04753390377052 + ], + [ + -90.88626904299649, + 36.336906527573966 + ], + [ + -90.54806474037863, + 36.336906527573966 + ], + [ + -90.54806474037863, + 36.04753390377052 + ], + [ + -90.88626904299649, + 36.04753390377052 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.88626904299649, + 36.336906527573966 + ], + [ + -90.88626904299649, + 36.62627915137741 + ], + [ + -90.54806474037863, + 36.62627915137741 + ], + [ + -90.54806474037863, + 36.336906527573966 + ], + [ + -90.88626904299649, + 36.336906527573966 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.88626904299649, + 36.62627915137741 + ], + [ + -90.88626904299649, + 36.915651775180855 + ], + [ + -90.54806474037863, + 36.915651775180855 + ], + [ + -90.54806474037863, + 36.62627915137741 + ], + [ + -90.88626904299649, + 36.62627915137741 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.88626904299649, + 36.915651775180855 + ], + [ + -90.88626904299649, + 37.2050243989843 + ], + [ + -90.54806474037863, + 37.2050243989843 + ], + [ + -90.54806474037863, + 36.915651775180855 + ], + [ + -90.88626904299649, + 36.915651775180855 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.88626904299649, + 37.2050243989843 + ], + [ + -90.88626904299649, + 37.494397022787744 + ], + [ + -90.54806474037863, + 37.494397022787744 + ], + [ + -90.54806474037863, + 37.2050243989843 + ], + [ + -90.88626904299649, + 37.2050243989843 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.88626904299649, + 37.494397022787744 + ], + [ + -90.88626904299649, + 37.78376964659119 + ], + [ + -90.54806474037863, + 37.78376964659119 + ], + [ + -90.54806474037863, + 37.494397022787744 + ], + [ + -90.88626904299649, + 37.494397022787744 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.88626904299649, + 37.78376964659119 + ], + [ + -90.88626904299649, + 38.073142270394634 + ], + [ + -90.54806474037863, + 38.073142270394634 + ], + [ + -90.54806474037863, + 37.78376964659119 + ], + [ + -90.88626904299649, + 37.78376964659119 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.88626904299649, + 38.073142270394634 + ], + [ + -90.88626904299649, + 38.36251489419808 + ], + [ + -90.54806474037863, + 38.36251489419808 + ], + [ + -90.54806474037863, + 38.073142270394634 + ], + [ + -90.88626904299649, + 38.073142270394634 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.88626904299649, + 38.36251489419808 + ], + [ + -90.88626904299649, + 38.65188751800152 + ], + [ + -90.54806474037863, + 38.65188751800152 + ], + [ + -90.54806474037863, + 38.36251489419808 + ], + [ + -90.88626904299649, + 38.36251489419808 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.88626904299649, + 38.65188751800152 + ], + [ + -90.88626904299649, + 38.94126014180497 + ], + [ + -90.54806474037863, + 38.94126014180497 + ], + [ + -90.54806474037863, + 38.65188751800152 + ], + [ + -90.88626904299649, + 38.65188751800152 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.88626904299649, + 38.94126014180497 + ], + [ + -90.88626904299649, + 39.23063276560841 + ], + [ + -90.54806474037863, + 39.23063276560841 + ], + [ + -90.54806474037863, + 38.94126014180497 + ], + [ + -90.88626904299649, + 38.94126014180497 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.88626904299649, + 39.23063276560841 + ], + [ + -90.88626904299649, + 39.52000538941186 + ], + [ + -90.54806474037863, + 39.52000538941186 + ], + [ + -90.54806474037863, + 39.23063276560841 + ], + [ + -90.88626904299649, + 39.23063276560841 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.88626904299649, + 39.52000538941186 + ], + [ + -90.88626904299649, + 39.8093780132153 + ], + [ + -90.54806474037863, + 39.8093780132153 + ], + [ + -90.54806474037863, + 39.52000538941186 + ], + [ + -90.88626904299649, + 39.52000538941186 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.88626904299649, + 39.8093780132153 + ], + [ + -90.88626904299649, + 40.098750637018746 + ], + [ + -90.54806474037863, + 40.098750637018746 + ], + [ + -90.54806474037863, + 39.8093780132153 + ], + [ + -90.88626904299649, + 39.8093780132153 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.88626904299649, + 40.098750637018746 + ], + [ + -90.88626904299649, + 40.38812326082219 + ], + [ + -90.54806474037863, + 40.38812326082219 + ], + [ + -90.54806474037863, + 40.098750637018746 + ], + [ + -90.88626904299649, + 40.098750637018746 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.88626904299649, + 40.38812326082219 + ], + [ + -90.88626904299649, + 40.677495884625635 + ], + [ + -90.54806474037863, + 40.677495884625635 + ], + [ + -90.54806474037863, + 40.38812326082219 + ], + [ + -90.88626904299649, + 40.38812326082219 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.54806474037863, + 31.12819929911196 + ], + [ + -90.54806474037863, + 31.417571922915403 + ], + [ + -90.20986043776078, + 31.417571922915403 + ], + [ + -90.20986043776078, + 31.12819929911196 + ], + [ + -90.54806474037863, + 31.12819929911196 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.54806474037863, + 31.417571922915403 + ], + [ + -90.54806474037863, + 31.706944546718848 + ], + [ + -90.20986043776078, + 31.706944546718848 + ], + [ + -90.20986043776078, + 31.417571922915403 + ], + [ + -90.54806474037863, + 31.417571922915403 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.54806474037863, + 31.706944546718848 + ], + [ + -90.54806474037863, + 31.996317170522293 + ], + [ + -90.20986043776078, + 31.996317170522293 + ], + [ + -90.20986043776078, + 31.706944546718848 + ], + [ + -90.54806474037863, + 31.706944546718848 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.54806474037863, + 31.996317170522293 + ], + [ + -90.54806474037863, + 32.28568979432574 + ], + [ + -90.20986043776078, + 32.28568979432574 + ], + [ + -90.20986043776078, + 31.996317170522293 + ], + [ + -90.54806474037863, + 31.996317170522293 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.54806474037863, + 32.28568979432574 + ], + [ + -90.54806474037863, + 32.575062418129185 + ], + [ + -90.20986043776078, + 32.575062418129185 + ], + [ + -90.20986043776078, + 32.28568979432574 + ], + [ + -90.54806474037863, + 32.28568979432574 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.54806474037863, + 32.575062418129185 + ], + [ + -90.54806474037863, + 32.86443504193263 + ], + [ + -90.20986043776078, + 32.86443504193263 + ], + [ + -90.20986043776078, + 32.575062418129185 + ], + [ + -90.54806474037863, + 32.575062418129185 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.54806474037863, + 32.86443504193263 + ], + [ + -90.54806474037863, + 33.153807665736075 + ], + [ + -90.20986043776078, + 33.153807665736075 + ], + [ + -90.20986043776078, + 32.86443504193263 + ], + [ + -90.54806474037863, + 32.86443504193263 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.54806474037863, + 33.153807665736075 + ], + [ + -90.54806474037863, + 33.44318028953952 + ], + [ + -90.20986043776078, + 33.44318028953952 + ], + [ + -90.20986043776078, + 33.153807665736075 + ], + [ + -90.54806474037863, + 33.153807665736075 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.54806474037863, + 33.44318028953952 + ], + [ + -90.54806474037863, + 33.732552913342964 + ], + [ + -90.20986043776078, + 33.732552913342964 + ], + [ + -90.20986043776078, + 33.44318028953952 + ], + [ + -90.54806474037863, + 33.44318028953952 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.54806474037863, + 33.732552913342964 + ], + [ + -90.54806474037863, + 34.02192553714641 + ], + [ + -90.20986043776078, + 34.02192553714641 + ], + [ + -90.20986043776078, + 33.732552913342964 + ], + [ + -90.54806474037863, + 33.732552913342964 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.54806474037863, + 34.02192553714641 + ], + [ + -90.54806474037863, + 34.31129816094985 + ], + [ + -90.20986043776078, + 34.31129816094985 + ], + [ + -90.20986043776078, + 34.02192553714641 + ], + [ + -90.54806474037863, + 34.02192553714641 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.54806474037863, + 34.31129816094985 + ], + [ + -90.54806474037863, + 34.6006707847533 + ], + [ + -90.20986043776078, + 34.6006707847533 + ], + [ + -90.20986043776078, + 34.31129816094985 + ], + [ + -90.54806474037863, + 34.31129816094985 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.54806474037863, + 34.6006707847533 + ], + [ + -90.54806474037863, + 34.89004340855674 + ], + [ + -90.20986043776078, + 34.89004340855674 + ], + [ + -90.20986043776078, + 34.6006707847533 + ], + [ + -90.54806474037863, + 34.6006707847533 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.54806474037863, + 34.89004340855674 + ], + [ + -90.54806474037863, + 35.17941603236019 + ], + [ + -90.20986043776078, + 35.17941603236019 + ], + [ + -90.20986043776078, + 34.89004340855674 + ], + [ + -90.54806474037863, + 34.89004340855674 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.54806474037863, + 35.17941603236019 + ], + [ + -90.54806474037863, + 35.46878865616363 + ], + [ + -90.20986043776078, + 35.46878865616363 + ], + [ + -90.20986043776078, + 35.17941603236019 + ], + [ + -90.54806474037863, + 35.17941603236019 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.54806474037863, + 35.46878865616363 + ], + [ + -90.54806474037863, + 35.75816127996708 + ], + [ + -90.20986043776078, + 35.75816127996708 + ], + [ + -90.20986043776078, + 35.46878865616363 + ], + [ + -90.54806474037863, + 35.46878865616363 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.54806474037863, + 35.75816127996708 + ], + [ + -90.54806474037863, + 36.04753390377052 + ], + [ + -90.20986043776078, + 36.04753390377052 + ], + [ + -90.20986043776078, + 35.75816127996708 + ], + [ + -90.54806474037863, + 35.75816127996708 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.54806474037863, + 36.04753390377052 + ], + [ + -90.54806474037863, + 36.336906527573966 + ], + [ + -90.20986043776078, + 36.336906527573966 + ], + [ + -90.20986043776078, + 36.04753390377052 + ], + [ + -90.54806474037863, + 36.04753390377052 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.54806474037863, + 36.336906527573966 + ], + [ + -90.54806474037863, + 36.62627915137741 + ], + [ + -90.20986043776078, + 36.62627915137741 + ], + [ + -90.20986043776078, + 36.336906527573966 + ], + [ + -90.54806474037863, + 36.336906527573966 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.54806474037863, + 36.62627915137741 + ], + [ + -90.54806474037863, + 36.915651775180855 + ], + [ + -90.20986043776078, + 36.915651775180855 + ], + [ + -90.20986043776078, + 36.62627915137741 + ], + [ + -90.54806474037863, + 36.62627915137741 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.54806474037863, + 36.915651775180855 + ], + [ + -90.54806474037863, + 37.2050243989843 + ], + [ + -90.20986043776078, + 37.2050243989843 + ], + [ + -90.20986043776078, + 36.915651775180855 + ], + [ + -90.54806474037863, + 36.915651775180855 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.54806474037863, + 37.2050243989843 + ], + [ + -90.54806474037863, + 37.494397022787744 + ], + [ + -90.20986043776078, + 37.494397022787744 + ], + [ + -90.20986043776078, + 37.2050243989843 + ], + [ + -90.54806474037863, + 37.2050243989843 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.54806474037863, + 37.494397022787744 + ], + [ + -90.54806474037863, + 37.78376964659119 + ], + [ + -90.20986043776078, + 37.78376964659119 + ], + [ + -90.20986043776078, + 37.494397022787744 + ], + [ + -90.54806474037863, + 37.494397022787744 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.54806474037863, + 37.78376964659119 + ], + [ + -90.54806474037863, + 38.073142270394634 + ], + [ + -90.20986043776078, + 38.073142270394634 + ], + [ + -90.20986043776078, + 37.78376964659119 + ], + [ + -90.54806474037863, + 37.78376964659119 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.54806474037863, + 38.073142270394634 + ], + [ + -90.54806474037863, + 38.36251489419808 + ], + [ + -90.20986043776078, + 38.36251489419808 + ], + [ + -90.20986043776078, + 38.073142270394634 + ], + [ + -90.54806474037863, + 38.073142270394634 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.54806474037863, + 38.36251489419808 + ], + [ + -90.54806474037863, + 38.65188751800152 + ], + [ + -90.20986043776078, + 38.65188751800152 + ], + [ + -90.20986043776078, + 38.36251489419808 + ], + [ + -90.54806474037863, + 38.36251489419808 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.54806474037863, + 38.65188751800152 + ], + [ + -90.54806474037863, + 38.94126014180497 + ], + [ + -90.20986043776078, + 38.94126014180497 + ], + [ + -90.20986043776078, + 38.65188751800152 + ], + [ + -90.54806474037863, + 38.65188751800152 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.54806474037863, + 38.94126014180497 + ], + [ + -90.54806474037863, + 39.23063276560841 + ], + [ + -90.20986043776078, + 39.23063276560841 + ], + [ + -90.20986043776078, + 38.94126014180497 + ], + [ + -90.54806474037863, + 38.94126014180497 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.54806474037863, + 39.23063276560841 + ], + [ + -90.54806474037863, + 39.52000538941186 + ], + [ + -90.20986043776078, + 39.52000538941186 + ], + [ + -90.20986043776078, + 39.23063276560841 + ], + [ + -90.54806474037863, + 39.23063276560841 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.54806474037863, + 39.52000538941186 + ], + [ + -90.54806474037863, + 39.8093780132153 + ], + [ + -90.20986043776078, + 39.8093780132153 + ], + [ + -90.20986043776078, + 39.52000538941186 + ], + [ + -90.54806474037863, + 39.52000538941186 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.54806474037863, + 39.8093780132153 + ], + [ + -90.54806474037863, + 40.098750637018746 + ], + [ + -90.20986043776078, + 40.098750637018746 + ], + [ + -90.20986043776078, + 39.8093780132153 + ], + [ + -90.54806474037863, + 39.8093780132153 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.54806474037863, + 40.098750637018746 + ], + [ + -90.54806474037863, + 40.38812326082219 + ], + [ + -90.20986043776078, + 40.38812326082219 + ], + [ + -90.20986043776078, + 40.098750637018746 + ], + [ + -90.54806474037863, + 40.098750637018746 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.54806474037863, + 40.38812326082219 + ], + [ + -90.54806474037863, + 40.677495884625635 + ], + [ + -90.20986043776078, + 40.677495884625635 + ], + [ + -90.20986043776078, + 40.38812326082219 + ], + [ + -90.54806474037863, + 40.38812326082219 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.20986043776078, + 31.12819929911196 + ], + [ + -90.20986043776078, + 31.417571922915403 + ], + [ + -89.87165613514293, + 31.417571922915403 + ], + [ + -89.87165613514293, + 31.12819929911196 + ], + [ + -90.20986043776078, + 31.12819929911196 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.20986043776078, + 31.417571922915403 + ], + [ + -90.20986043776078, + 31.706944546718848 + ], + [ + -89.87165613514293, + 31.706944546718848 + ], + [ + -89.87165613514293, + 31.417571922915403 + ], + [ + -90.20986043776078, + 31.417571922915403 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.20986043776078, + 31.706944546718848 + ], + [ + -90.20986043776078, + 31.996317170522293 + ], + [ + -89.87165613514293, + 31.996317170522293 + ], + [ + -89.87165613514293, + 31.706944546718848 + ], + [ + -90.20986043776078, + 31.706944546718848 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.20986043776078, + 31.996317170522293 + ], + [ + -90.20986043776078, + 32.28568979432574 + ], + [ + -89.87165613514293, + 32.28568979432574 + ], + [ + -89.87165613514293, + 31.996317170522293 + ], + [ + -90.20986043776078, + 31.996317170522293 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.20986043776078, + 32.28568979432574 + ], + [ + -90.20986043776078, + 32.575062418129185 + ], + [ + -89.87165613514293, + 32.575062418129185 + ], + [ + -89.87165613514293, + 32.28568979432574 + ], + [ + -90.20986043776078, + 32.28568979432574 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.20986043776078, + 32.575062418129185 + ], + [ + -90.20986043776078, + 32.86443504193263 + ], + [ + -89.87165613514293, + 32.86443504193263 + ], + [ + -89.87165613514293, + 32.575062418129185 + ], + [ + -90.20986043776078, + 32.575062418129185 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.20986043776078, + 32.86443504193263 + ], + [ + -90.20986043776078, + 33.153807665736075 + ], + [ + -89.87165613514293, + 33.153807665736075 + ], + [ + -89.87165613514293, + 32.86443504193263 + ], + [ + -90.20986043776078, + 32.86443504193263 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.20986043776078, + 33.153807665736075 + ], + [ + -90.20986043776078, + 33.44318028953952 + ], + [ + -89.87165613514293, + 33.44318028953952 + ], + [ + -89.87165613514293, + 33.153807665736075 + ], + [ + -90.20986043776078, + 33.153807665736075 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.20986043776078, + 33.44318028953952 + ], + [ + -90.20986043776078, + 33.732552913342964 + ], + [ + -89.87165613514293, + 33.732552913342964 + ], + [ + -89.87165613514293, + 33.44318028953952 + ], + [ + -90.20986043776078, + 33.44318028953952 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.20986043776078, + 33.732552913342964 + ], + [ + -90.20986043776078, + 34.02192553714641 + ], + [ + -89.87165613514293, + 34.02192553714641 + ], + [ + -89.87165613514293, + 33.732552913342964 + ], + [ + -90.20986043776078, + 33.732552913342964 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.20986043776078, + 34.02192553714641 + ], + [ + -90.20986043776078, + 34.31129816094985 + ], + [ + -89.87165613514293, + 34.31129816094985 + ], + [ + -89.87165613514293, + 34.02192553714641 + ], + [ + -90.20986043776078, + 34.02192553714641 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.20986043776078, + 34.31129816094985 + ], + [ + -90.20986043776078, + 34.6006707847533 + ], + [ + -89.87165613514293, + 34.6006707847533 + ], + [ + -89.87165613514293, + 34.31129816094985 + ], + [ + -90.20986043776078, + 34.31129816094985 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.20986043776078, + 34.6006707847533 + ], + [ + -90.20986043776078, + 34.89004340855674 + ], + [ + -89.87165613514293, + 34.89004340855674 + ], + [ + -89.87165613514293, + 34.6006707847533 + ], + [ + -90.20986043776078, + 34.6006707847533 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.20986043776078, + 34.89004340855674 + ], + [ + -90.20986043776078, + 35.17941603236019 + ], + [ + -89.87165613514293, + 35.17941603236019 + ], + [ + -89.87165613514293, + 34.89004340855674 + ], + [ + -90.20986043776078, + 34.89004340855674 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.20986043776078, + 35.17941603236019 + ], + [ + -90.20986043776078, + 35.46878865616363 + ], + [ + -89.87165613514293, + 35.46878865616363 + ], + [ + -89.87165613514293, + 35.17941603236019 + ], + [ + -90.20986043776078, + 35.17941603236019 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.20986043776078, + 35.46878865616363 + ], + [ + -90.20986043776078, + 35.75816127996708 + ], + [ + -89.87165613514293, + 35.75816127996708 + ], + [ + -89.87165613514293, + 35.46878865616363 + ], + [ + -90.20986043776078, + 35.46878865616363 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.20986043776078, + 35.75816127996708 + ], + [ + -90.20986043776078, + 36.04753390377052 + ], + [ + -89.87165613514293, + 36.04753390377052 + ], + [ + -89.87165613514293, + 35.75816127996708 + ], + [ + -90.20986043776078, + 35.75816127996708 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.20986043776078, + 36.04753390377052 + ], + [ + -90.20986043776078, + 36.336906527573966 + ], + [ + -89.87165613514293, + 36.336906527573966 + ], + [ + -89.87165613514293, + 36.04753390377052 + ], + [ + -90.20986043776078, + 36.04753390377052 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.20986043776078, + 36.336906527573966 + ], + [ + -90.20986043776078, + 36.62627915137741 + ], + [ + -89.87165613514293, + 36.62627915137741 + ], + [ + -89.87165613514293, + 36.336906527573966 + ], + [ + -90.20986043776078, + 36.336906527573966 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.20986043776078, + 36.62627915137741 + ], + [ + -90.20986043776078, + 36.915651775180855 + ], + [ + -89.87165613514293, + 36.915651775180855 + ], + [ + -89.87165613514293, + 36.62627915137741 + ], + [ + -90.20986043776078, + 36.62627915137741 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.20986043776078, + 36.915651775180855 + ], + [ + -90.20986043776078, + 37.2050243989843 + ], + [ + -89.87165613514293, + 37.2050243989843 + ], + [ + -89.87165613514293, + 36.915651775180855 + ], + [ + -90.20986043776078, + 36.915651775180855 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.20986043776078, + 37.2050243989843 + ], + [ + -90.20986043776078, + 37.494397022787744 + ], + [ + -89.87165613514293, + 37.494397022787744 + ], + [ + -89.87165613514293, + 37.2050243989843 + ], + [ + -90.20986043776078, + 37.2050243989843 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.20986043776078, + 37.494397022787744 + ], + [ + -90.20986043776078, + 37.78376964659119 + ], + [ + -89.87165613514293, + 37.78376964659119 + ], + [ + -89.87165613514293, + 37.494397022787744 + ], + [ + -90.20986043776078, + 37.494397022787744 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.20986043776078, + 37.78376964659119 + ], + [ + -90.20986043776078, + 38.073142270394634 + ], + [ + -89.87165613514293, + 38.073142270394634 + ], + [ + -89.87165613514293, + 37.78376964659119 + ], + [ + -90.20986043776078, + 37.78376964659119 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.20986043776078, + 38.073142270394634 + ], + [ + -90.20986043776078, + 38.36251489419808 + ], + [ + -89.87165613514293, + 38.36251489419808 + ], + [ + -89.87165613514293, + 38.073142270394634 + ], + [ + -90.20986043776078, + 38.073142270394634 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.20986043776078, + 38.36251489419808 + ], + [ + -90.20986043776078, + 38.65188751800152 + ], + [ + -89.87165613514293, + 38.65188751800152 + ], + [ + -89.87165613514293, + 38.36251489419808 + ], + [ + -90.20986043776078, + 38.36251489419808 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.20986043776078, + 38.65188751800152 + ], + [ + -90.20986043776078, + 38.94126014180497 + ], + [ + -89.87165613514293, + 38.94126014180497 + ], + [ + -89.87165613514293, + 38.65188751800152 + ], + [ + -90.20986043776078, + 38.65188751800152 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.20986043776078, + 38.94126014180497 + ], + [ + -90.20986043776078, + 39.23063276560841 + ], + [ + -89.87165613514293, + 39.23063276560841 + ], + [ + -89.87165613514293, + 38.94126014180497 + ], + [ + -90.20986043776078, + 38.94126014180497 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.20986043776078, + 39.23063276560841 + ], + [ + -90.20986043776078, + 39.52000538941186 + ], + [ + -89.87165613514293, + 39.52000538941186 + ], + [ + -89.87165613514293, + 39.23063276560841 + ], + [ + -90.20986043776078, + 39.23063276560841 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.20986043776078, + 39.52000538941186 + ], + [ + -90.20986043776078, + 39.8093780132153 + ], + [ + -89.87165613514293, + 39.8093780132153 + ], + [ + -89.87165613514293, + 39.52000538941186 + ], + [ + -90.20986043776078, + 39.52000538941186 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.20986043776078, + 39.8093780132153 + ], + [ + -90.20986043776078, + 40.098750637018746 + ], + [ + -89.87165613514293, + 40.098750637018746 + ], + [ + -89.87165613514293, + 39.8093780132153 + ], + [ + -90.20986043776078, + 39.8093780132153 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.20986043776078, + 40.098750637018746 + ], + [ + -90.20986043776078, + 40.38812326082219 + ], + [ + -89.87165613514293, + 40.38812326082219 + ], + [ + -89.87165613514293, + 40.098750637018746 + ], + [ + -90.20986043776078, + 40.098750637018746 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.20986043776078, + 40.38812326082219 + ], + [ + -90.20986043776078, + 40.677495884625635 + ], + [ + -89.87165613514293, + 40.677495884625635 + ], + [ + -89.87165613514293, + 40.38812326082219 + ], + [ + -90.20986043776078, + 40.38812326082219 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.87165613514293, + 31.12819929911196 + ], + [ + -89.87165613514293, + 31.417571922915403 + ], + [ + -89.53345183252507, + 31.417571922915403 + ], + [ + -89.53345183252507, + 31.12819929911196 + ], + [ + -89.87165613514293, + 31.12819929911196 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.87165613514293, + 31.417571922915403 + ], + [ + -89.87165613514293, + 31.706944546718848 + ], + [ + -89.53345183252507, + 31.706944546718848 + ], + [ + -89.53345183252507, + 31.417571922915403 + ], + [ + -89.87165613514293, + 31.417571922915403 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.87165613514293, + 31.706944546718848 + ], + [ + -89.87165613514293, + 31.996317170522293 + ], + [ + -89.53345183252507, + 31.996317170522293 + ], + [ + -89.53345183252507, + 31.706944546718848 + ], + [ + -89.87165613514293, + 31.706944546718848 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.87165613514293, + 31.996317170522293 + ], + [ + -89.87165613514293, + 32.28568979432574 + ], + [ + -89.53345183252507, + 32.28568979432574 + ], + [ + -89.53345183252507, + 31.996317170522293 + ], + [ + -89.87165613514293, + 31.996317170522293 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.87165613514293, + 32.28568979432574 + ], + [ + -89.87165613514293, + 32.575062418129185 + ], + [ + -89.53345183252507, + 32.575062418129185 + ], + [ + -89.53345183252507, + 32.28568979432574 + ], + [ + -89.87165613514293, + 32.28568979432574 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.87165613514293, + 32.575062418129185 + ], + [ + -89.87165613514293, + 32.86443504193263 + ], + [ + -89.53345183252507, + 32.86443504193263 + ], + [ + -89.53345183252507, + 32.575062418129185 + ], + [ + -89.87165613514293, + 32.575062418129185 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.87165613514293, + 32.86443504193263 + ], + [ + -89.87165613514293, + 33.153807665736075 + ], + [ + -89.53345183252507, + 33.153807665736075 + ], + [ + -89.53345183252507, + 32.86443504193263 + ], + [ + -89.87165613514293, + 32.86443504193263 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.87165613514293, + 33.153807665736075 + ], + [ + -89.87165613514293, + 33.44318028953952 + ], + [ + -89.53345183252507, + 33.44318028953952 + ], + [ + -89.53345183252507, + 33.153807665736075 + ], + [ + -89.87165613514293, + 33.153807665736075 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.87165613514293, + 33.44318028953952 + ], + [ + -89.87165613514293, + 33.732552913342964 + ], + [ + -89.53345183252507, + 33.732552913342964 + ], + [ + -89.53345183252507, + 33.44318028953952 + ], + [ + -89.87165613514293, + 33.44318028953952 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.87165613514293, + 33.732552913342964 + ], + [ + -89.87165613514293, + 34.02192553714641 + ], + [ + -89.53345183252507, + 34.02192553714641 + ], + [ + -89.53345183252507, + 33.732552913342964 + ], + [ + -89.87165613514293, + 33.732552913342964 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.87165613514293, + 34.02192553714641 + ], + [ + -89.87165613514293, + 34.31129816094985 + ], + [ + -89.53345183252507, + 34.31129816094985 + ], + [ + -89.53345183252507, + 34.02192553714641 + ], + [ + -89.87165613514293, + 34.02192553714641 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.87165613514293, + 34.31129816094985 + ], + [ + -89.87165613514293, + 34.6006707847533 + ], + [ + -89.53345183252507, + 34.6006707847533 + ], + [ + -89.53345183252507, + 34.31129816094985 + ], + [ + -89.87165613514293, + 34.31129816094985 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.87165613514293, + 34.6006707847533 + ], + [ + -89.87165613514293, + 34.89004340855674 + ], + [ + -89.53345183252507, + 34.89004340855674 + ], + [ + -89.53345183252507, + 34.6006707847533 + ], + [ + -89.87165613514293, + 34.6006707847533 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.87165613514293, + 34.89004340855674 + ], + [ + -89.87165613514293, + 35.17941603236019 + ], + [ + -89.53345183252507, + 35.17941603236019 + ], + [ + -89.53345183252507, + 34.89004340855674 + ], + [ + -89.87165613514293, + 34.89004340855674 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.87165613514293, + 35.17941603236019 + ], + [ + -89.87165613514293, + 35.46878865616363 + ], + [ + -89.53345183252507, + 35.46878865616363 + ], + [ + -89.53345183252507, + 35.17941603236019 + ], + [ + -89.87165613514293, + 35.17941603236019 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.87165613514293, + 35.46878865616363 + ], + [ + -89.87165613514293, + 35.75816127996708 + ], + [ + -89.53345183252507, + 35.75816127996708 + ], + [ + -89.53345183252507, + 35.46878865616363 + ], + [ + -89.87165613514293, + 35.46878865616363 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.87165613514293, + 35.75816127996708 + ], + [ + -89.87165613514293, + 36.04753390377052 + ], + [ + -89.53345183252507, + 36.04753390377052 + ], + [ + -89.53345183252507, + 35.75816127996708 + ], + [ + -89.87165613514293, + 35.75816127996708 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.87165613514293, + 36.04753390377052 + ], + [ + -89.87165613514293, + 36.336906527573966 + ], + [ + -89.53345183252507, + 36.336906527573966 + ], + [ + -89.53345183252507, + 36.04753390377052 + ], + [ + -89.87165613514293, + 36.04753390377052 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.87165613514293, + 36.336906527573966 + ], + [ + -89.87165613514293, + 36.62627915137741 + ], + [ + -89.53345183252507, + 36.62627915137741 + ], + [ + -89.53345183252507, + 36.336906527573966 + ], + [ + -89.87165613514293, + 36.336906527573966 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.87165613514293, + 36.62627915137741 + ], + [ + -89.87165613514293, + 36.915651775180855 + ], + [ + -89.53345183252507, + 36.915651775180855 + ], + [ + -89.53345183252507, + 36.62627915137741 + ], + [ + -89.87165613514293, + 36.62627915137741 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.87165613514293, + 36.915651775180855 + ], + [ + -89.87165613514293, + 37.2050243989843 + ], + [ + -89.53345183252507, + 37.2050243989843 + ], + [ + -89.53345183252507, + 36.915651775180855 + ], + [ + -89.87165613514293, + 36.915651775180855 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.87165613514293, + 37.2050243989843 + ], + [ + -89.87165613514293, + 37.494397022787744 + ], + [ + -89.53345183252507, + 37.494397022787744 + ], + [ + -89.53345183252507, + 37.2050243989843 + ], + [ + -89.87165613514293, + 37.2050243989843 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.87165613514293, + 37.494397022787744 + ], + [ + -89.87165613514293, + 37.78376964659119 + ], + [ + -89.53345183252507, + 37.78376964659119 + ], + [ + -89.53345183252507, + 37.494397022787744 + ], + [ + -89.87165613514293, + 37.494397022787744 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.87165613514293, + 37.78376964659119 + ], + [ + -89.87165613514293, + 38.073142270394634 + ], + [ + -89.53345183252507, + 38.073142270394634 + ], + [ + -89.53345183252507, + 37.78376964659119 + ], + [ + -89.87165613514293, + 37.78376964659119 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.87165613514293, + 38.073142270394634 + ], + [ + -89.87165613514293, + 38.36251489419808 + ], + [ + -89.53345183252507, + 38.36251489419808 + ], + [ + -89.53345183252507, + 38.073142270394634 + ], + [ + -89.87165613514293, + 38.073142270394634 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.87165613514293, + 38.36251489419808 + ], + [ + -89.87165613514293, + 38.65188751800152 + ], + [ + -89.53345183252507, + 38.65188751800152 + ], + [ + -89.53345183252507, + 38.36251489419808 + ], + [ + -89.87165613514293, + 38.36251489419808 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.87165613514293, + 38.65188751800152 + ], + [ + -89.87165613514293, + 38.94126014180497 + ], + [ + -89.53345183252507, + 38.94126014180497 + ], + [ + -89.53345183252507, + 38.65188751800152 + ], + [ + -89.87165613514293, + 38.65188751800152 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.87165613514293, + 38.94126014180497 + ], + [ + -89.87165613514293, + 39.23063276560841 + ], + [ + -89.53345183252507, + 39.23063276560841 + ], + [ + -89.53345183252507, + 38.94126014180497 + ], + [ + -89.87165613514293, + 38.94126014180497 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.87165613514293, + 39.23063276560841 + ], + [ + -89.87165613514293, + 39.52000538941186 + ], + [ + -89.53345183252507, + 39.52000538941186 + ], + [ + -89.53345183252507, + 39.23063276560841 + ], + [ + -89.87165613514293, + 39.23063276560841 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.87165613514293, + 39.52000538941186 + ], + [ + -89.87165613514293, + 39.8093780132153 + ], + [ + -89.53345183252507, + 39.8093780132153 + ], + [ + -89.53345183252507, + 39.52000538941186 + ], + [ + -89.87165613514293, + 39.52000538941186 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.87165613514293, + 39.8093780132153 + ], + [ + -89.87165613514293, + 40.098750637018746 + ], + [ + -89.53345183252507, + 40.098750637018746 + ], + [ + -89.53345183252507, + 39.8093780132153 + ], + [ + -89.87165613514293, + 39.8093780132153 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.87165613514293, + 40.098750637018746 + ], + [ + -89.87165613514293, + 40.38812326082219 + ], + [ + -89.53345183252507, + 40.38812326082219 + ], + [ + -89.53345183252507, + 40.098750637018746 + ], + [ + -89.87165613514293, + 40.098750637018746 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.87165613514293, + 40.38812326082219 + ], + [ + -89.87165613514293, + 40.677495884625635 + ], + [ + -89.53345183252507, + 40.677495884625635 + ], + [ + -89.53345183252507, + 40.38812326082219 + ], + [ + -89.87165613514293, + 40.38812326082219 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.53345183252507, + 31.12819929911196 + ], + [ + -89.53345183252507, + 31.417571922915403 + ], + [ + -89.19524752990722, + 31.417571922915403 + ], + [ + -89.19524752990722, + 31.12819929911196 + ], + [ + -89.53345183252507, + 31.12819929911196 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.53345183252507, + 31.417571922915403 + ], + [ + -89.53345183252507, + 31.706944546718848 + ], + [ + -89.19524752990722, + 31.706944546718848 + ], + [ + -89.19524752990722, + 31.417571922915403 + ], + [ + -89.53345183252507, + 31.417571922915403 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.53345183252507, + 31.706944546718848 + ], + [ + -89.53345183252507, + 31.996317170522293 + ], + [ + -89.19524752990722, + 31.996317170522293 + ], + [ + -89.19524752990722, + 31.706944546718848 + ], + [ + -89.53345183252507, + 31.706944546718848 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.53345183252507, + 31.996317170522293 + ], + [ + -89.53345183252507, + 32.28568979432574 + ], + [ + -89.19524752990722, + 32.28568979432574 + ], + [ + -89.19524752990722, + 31.996317170522293 + ], + [ + -89.53345183252507, + 31.996317170522293 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.53345183252507, + 32.28568979432574 + ], + [ + -89.53345183252507, + 32.575062418129185 + ], + [ + -89.19524752990722, + 32.575062418129185 + ], + [ + -89.19524752990722, + 32.28568979432574 + ], + [ + -89.53345183252507, + 32.28568979432574 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.53345183252507, + 32.575062418129185 + ], + [ + -89.53345183252507, + 32.86443504193263 + ], + [ + -89.19524752990722, + 32.86443504193263 + ], + [ + -89.19524752990722, + 32.575062418129185 + ], + [ + -89.53345183252507, + 32.575062418129185 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.53345183252507, + 32.86443504193263 + ], + [ + -89.53345183252507, + 33.153807665736075 + ], + [ + -89.19524752990722, + 33.153807665736075 + ], + [ + -89.19524752990722, + 32.86443504193263 + ], + [ + -89.53345183252507, + 32.86443504193263 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.53345183252507, + 33.153807665736075 + ], + [ + -89.53345183252507, + 33.44318028953952 + ], + [ + -89.19524752990722, + 33.44318028953952 + ], + [ + -89.19524752990722, + 33.153807665736075 + ], + [ + -89.53345183252507, + 33.153807665736075 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.53345183252507, + 33.44318028953952 + ], + [ + -89.53345183252507, + 33.732552913342964 + ], + [ + -89.19524752990722, + 33.732552913342964 + ], + [ + -89.19524752990722, + 33.44318028953952 + ], + [ + -89.53345183252507, + 33.44318028953952 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.53345183252507, + 33.732552913342964 + ], + [ + -89.53345183252507, + 34.02192553714641 + ], + [ + -89.19524752990722, + 34.02192553714641 + ], + [ + -89.19524752990722, + 33.732552913342964 + ], + [ + -89.53345183252507, + 33.732552913342964 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.53345183252507, + 34.02192553714641 + ], + [ + -89.53345183252507, + 34.31129816094985 + ], + [ + -89.19524752990722, + 34.31129816094985 + ], + [ + -89.19524752990722, + 34.02192553714641 + ], + [ + -89.53345183252507, + 34.02192553714641 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.53345183252507, + 34.31129816094985 + ], + [ + -89.53345183252507, + 34.6006707847533 + ], + [ + -89.19524752990722, + 34.6006707847533 + ], + [ + -89.19524752990722, + 34.31129816094985 + ], + [ + -89.53345183252507, + 34.31129816094985 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.53345183252507, + 34.6006707847533 + ], + [ + -89.53345183252507, + 34.89004340855674 + ], + [ + -89.19524752990722, + 34.89004340855674 + ], + [ + -89.19524752990722, + 34.6006707847533 + ], + [ + -89.53345183252507, + 34.6006707847533 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.53345183252507, + 34.89004340855674 + ], + [ + -89.53345183252507, + 35.17941603236019 + ], + [ + -89.19524752990722, + 35.17941603236019 + ], + [ + -89.19524752990722, + 34.89004340855674 + ], + [ + -89.53345183252507, + 34.89004340855674 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.53345183252507, + 35.17941603236019 + ], + [ + -89.53345183252507, + 35.46878865616363 + ], + [ + -89.19524752990722, + 35.46878865616363 + ], + [ + -89.19524752990722, + 35.17941603236019 + ], + [ + -89.53345183252507, + 35.17941603236019 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.53345183252507, + 35.46878865616363 + ], + [ + -89.53345183252507, + 35.75816127996708 + ], + [ + -89.19524752990722, + 35.75816127996708 + ], + [ + -89.19524752990722, + 35.46878865616363 + ], + [ + -89.53345183252507, + 35.46878865616363 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.53345183252507, + 35.75816127996708 + ], + [ + -89.53345183252507, + 36.04753390377052 + ], + [ + -89.19524752990722, + 36.04753390377052 + ], + [ + -89.19524752990722, + 35.75816127996708 + ], + [ + -89.53345183252507, + 35.75816127996708 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.53345183252507, + 36.04753390377052 + ], + [ + -89.53345183252507, + 36.336906527573966 + ], + [ + -89.19524752990722, + 36.336906527573966 + ], + [ + -89.19524752990722, + 36.04753390377052 + ], + [ + -89.53345183252507, + 36.04753390377052 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.53345183252507, + 36.336906527573966 + ], + [ + -89.53345183252507, + 36.62627915137741 + ], + [ + -89.19524752990722, + 36.62627915137741 + ], + [ + -89.19524752990722, + 36.336906527573966 + ], + [ + -89.53345183252507, + 36.336906527573966 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.53345183252507, + 36.62627915137741 + ], + [ + -89.53345183252507, + 36.915651775180855 + ], + [ + -89.19524752990722, + 36.915651775180855 + ], + [ + -89.19524752990722, + 36.62627915137741 + ], + [ + -89.53345183252507, + 36.62627915137741 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.53345183252507, + 36.915651775180855 + ], + [ + -89.53345183252507, + 37.2050243989843 + ], + [ + -89.19524752990722, + 37.2050243989843 + ], + [ + -89.19524752990722, + 36.915651775180855 + ], + [ + -89.53345183252507, + 36.915651775180855 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.53345183252507, + 37.2050243989843 + ], + [ + -89.53345183252507, + 37.494397022787744 + ], + [ + -89.19524752990722, + 37.494397022787744 + ], + [ + -89.19524752990722, + 37.2050243989843 + ], + [ + -89.53345183252507, + 37.2050243989843 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.53345183252507, + 37.494397022787744 + ], + [ + -89.53345183252507, + 37.78376964659119 + ], + [ + -89.19524752990722, + 37.78376964659119 + ], + [ + -89.19524752990722, + 37.494397022787744 + ], + [ + -89.53345183252507, + 37.494397022787744 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.53345183252507, + 37.78376964659119 + ], + [ + -89.53345183252507, + 38.073142270394634 + ], + [ + -89.19524752990722, + 38.073142270394634 + ], + [ + -89.19524752990722, + 37.78376964659119 + ], + [ + -89.53345183252507, + 37.78376964659119 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.53345183252507, + 38.073142270394634 + ], + [ + -89.53345183252507, + 38.36251489419808 + ], + [ + -89.19524752990722, + 38.36251489419808 + ], + [ + -89.19524752990722, + 38.073142270394634 + ], + [ + -89.53345183252507, + 38.073142270394634 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.53345183252507, + 38.36251489419808 + ], + [ + -89.53345183252507, + 38.65188751800152 + ], + [ + -89.19524752990722, + 38.65188751800152 + ], + [ + -89.19524752990722, + 38.36251489419808 + ], + [ + -89.53345183252507, + 38.36251489419808 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.53345183252507, + 38.65188751800152 + ], + [ + -89.53345183252507, + 38.94126014180497 + ], + [ + -89.19524752990722, + 38.94126014180497 + ], + [ + -89.19524752990722, + 38.65188751800152 + ], + [ + -89.53345183252507, + 38.65188751800152 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.53345183252507, + 38.94126014180497 + ], + [ + -89.53345183252507, + 39.23063276560841 + ], + [ + -89.19524752990722, + 39.23063276560841 + ], + [ + -89.19524752990722, + 38.94126014180497 + ], + [ + -89.53345183252507, + 38.94126014180497 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.53345183252507, + 39.23063276560841 + ], + [ + -89.53345183252507, + 39.52000538941186 + ], + [ + -89.19524752990722, + 39.52000538941186 + ], + [ + -89.19524752990722, + 39.23063276560841 + ], + [ + -89.53345183252507, + 39.23063276560841 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.53345183252507, + 39.52000538941186 + ], + [ + -89.53345183252507, + 39.8093780132153 + ], + [ + -89.19524752990722, + 39.8093780132153 + ], + [ + -89.19524752990722, + 39.52000538941186 + ], + [ + -89.53345183252507, + 39.52000538941186 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.53345183252507, + 39.8093780132153 + ], + [ + -89.53345183252507, + 40.098750637018746 + ], + [ + -89.19524752990722, + 40.098750637018746 + ], + [ + -89.19524752990722, + 39.8093780132153 + ], + [ + -89.53345183252507, + 39.8093780132153 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.53345183252507, + 40.098750637018746 + ], + [ + -89.53345183252507, + 40.38812326082219 + ], + [ + -89.19524752990722, + 40.38812326082219 + ], + [ + -89.19524752990722, + 40.098750637018746 + ], + [ + -89.53345183252507, + 40.098750637018746 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.53345183252507, + 40.38812326082219 + ], + [ + -89.53345183252507, + 40.677495884625635 + ], + [ + -89.19524752990722, + 40.677495884625635 + ], + [ + -89.19524752990722, + 40.38812326082219 + ], + [ + -89.53345183252507, + 40.38812326082219 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.19524752990722, + 31.12819929911196 + ], + [ + -89.19524752990722, + 31.417571922915403 + ], + [ + -88.85704322728937, + 31.417571922915403 + ], + [ + -88.85704322728937, + 31.12819929911196 + ], + [ + -89.19524752990722, + 31.12819929911196 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.19524752990722, + 31.417571922915403 + ], + [ + -89.19524752990722, + 31.706944546718848 + ], + [ + -88.85704322728937, + 31.706944546718848 + ], + [ + -88.85704322728937, + 31.417571922915403 + ], + [ + -89.19524752990722, + 31.417571922915403 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.19524752990722, + 31.706944546718848 + ], + [ + -89.19524752990722, + 31.996317170522293 + ], + [ + -88.85704322728937, + 31.996317170522293 + ], + [ + -88.85704322728937, + 31.706944546718848 + ], + [ + -89.19524752990722, + 31.706944546718848 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.19524752990722, + 31.996317170522293 + ], + [ + -89.19524752990722, + 32.28568979432574 + ], + [ + -88.85704322728937, + 32.28568979432574 + ], + [ + -88.85704322728937, + 31.996317170522293 + ], + [ + -89.19524752990722, + 31.996317170522293 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.19524752990722, + 32.28568979432574 + ], + [ + -89.19524752990722, + 32.575062418129185 + ], + [ + -88.85704322728937, + 32.575062418129185 + ], + [ + -88.85704322728937, + 32.28568979432574 + ], + [ + -89.19524752990722, + 32.28568979432574 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.19524752990722, + 32.575062418129185 + ], + [ + -89.19524752990722, + 32.86443504193263 + ], + [ + -88.85704322728937, + 32.86443504193263 + ], + [ + -88.85704322728937, + 32.575062418129185 + ], + [ + -89.19524752990722, + 32.575062418129185 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.19524752990722, + 32.86443504193263 + ], + [ + -89.19524752990722, + 33.153807665736075 + ], + [ + -88.85704322728937, + 33.153807665736075 + ], + [ + -88.85704322728937, + 32.86443504193263 + ], + [ + -89.19524752990722, + 32.86443504193263 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.19524752990722, + 33.153807665736075 + ], + [ + -89.19524752990722, + 33.44318028953952 + ], + [ + -88.85704322728937, + 33.44318028953952 + ], + [ + -88.85704322728937, + 33.153807665736075 + ], + [ + -89.19524752990722, + 33.153807665736075 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.19524752990722, + 33.44318028953952 + ], + [ + -89.19524752990722, + 33.732552913342964 + ], + [ + -88.85704322728937, + 33.732552913342964 + ], + [ + -88.85704322728937, + 33.44318028953952 + ], + [ + -89.19524752990722, + 33.44318028953952 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.19524752990722, + 33.732552913342964 + ], + [ + -89.19524752990722, + 34.02192553714641 + ], + [ + -88.85704322728937, + 34.02192553714641 + ], + [ + -88.85704322728937, + 33.732552913342964 + ], + [ + -89.19524752990722, + 33.732552913342964 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.19524752990722, + 34.02192553714641 + ], + [ + -89.19524752990722, + 34.31129816094985 + ], + [ + -88.85704322728937, + 34.31129816094985 + ], + [ + -88.85704322728937, + 34.02192553714641 + ], + [ + -89.19524752990722, + 34.02192553714641 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.19524752990722, + 34.31129816094985 + ], + [ + -89.19524752990722, + 34.6006707847533 + ], + [ + -88.85704322728937, + 34.6006707847533 + ], + [ + -88.85704322728937, + 34.31129816094985 + ], + [ + -89.19524752990722, + 34.31129816094985 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.19524752990722, + 34.6006707847533 + ], + [ + -89.19524752990722, + 34.89004340855674 + ], + [ + -88.85704322728937, + 34.89004340855674 + ], + [ + -88.85704322728937, + 34.6006707847533 + ], + [ + -89.19524752990722, + 34.6006707847533 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.19524752990722, + 34.89004340855674 + ], + [ + -89.19524752990722, + 35.17941603236019 + ], + [ + -88.85704322728937, + 35.17941603236019 + ], + [ + -88.85704322728937, + 34.89004340855674 + ], + [ + -89.19524752990722, + 34.89004340855674 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.19524752990722, + 35.17941603236019 + ], + [ + -89.19524752990722, + 35.46878865616363 + ], + [ + -88.85704322728937, + 35.46878865616363 + ], + [ + -88.85704322728937, + 35.17941603236019 + ], + [ + -89.19524752990722, + 35.17941603236019 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.19524752990722, + 35.46878865616363 + ], + [ + -89.19524752990722, + 35.75816127996708 + ], + [ + -88.85704322728937, + 35.75816127996708 + ], + [ + -88.85704322728937, + 35.46878865616363 + ], + [ + -89.19524752990722, + 35.46878865616363 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.19524752990722, + 35.75816127996708 + ], + [ + -89.19524752990722, + 36.04753390377052 + ], + [ + -88.85704322728937, + 36.04753390377052 + ], + [ + -88.85704322728937, + 35.75816127996708 + ], + [ + -89.19524752990722, + 35.75816127996708 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.19524752990722, + 36.04753390377052 + ], + [ + -89.19524752990722, + 36.336906527573966 + ], + [ + -88.85704322728937, + 36.336906527573966 + ], + [ + -88.85704322728937, + 36.04753390377052 + ], + [ + -89.19524752990722, + 36.04753390377052 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.19524752990722, + 36.336906527573966 + ], + [ + -89.19524752990722, + 36.62627915137741 + ], + [ + -88.85704322728937, + 36.62627915137741 + ], + [ + -88.85704322728937, + 36.336906527573966 + ], + [ + -89.19524752990722, + 36.336906527573966 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.19524752990722, + 36.62627915137741 + ], + [ + -89.19524752990722, + 36.915651775180855 + ], + [ + -88.85704322728937, + 36.915651775180855 + ], + [ + -88.85704322728937, + 36.62627915137741 + ], + [ + -89.19524752990722, + 36.62627915137741 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.19524752990722, + 36.915651775180855 + ], + [ + -89.19524752990722, + 37.2050243989843 + ], + [ + -88.85704322728937, + 37.2050243989843 + ], + [ + -88.85704322728937, + 36.915651775180855 + ], + [ + -89.19524752990722, + 36.915651775180855 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.19524752990722, + 37.2050243989843 + ], + [ + -89.19524752990722, + 37.494397022787744 + ], + [ + -88.85704322728937, + 37.494397022787744 + ], + [ + -88.85704322728937, + 37.2050243989843 + ], + [ + -89.19524752990722, + 37.2050243989843 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.19524752990722, + 37.494397022787744 + ], + [ + -89.19524752990722, + 37.78376964659119 + ], + [ + -88.85704322728937, + 37.78376964659119 + ], + [ + -88.85704322728937, + 37.494397022787744 + ], + [ + -89.19524752990722, + 37.494397022787744 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.19524752990722, + 37.78376964659119 + ], + [ + -89.19524752990722, + 38.073142270394634 + ], + [ + -88.85704322728937, + 38.073142270394634 + ], + [ + -88.85704322728937, + 37.78376964659119 + ], + [ + -89.19524752990722, + 37.78376964659119 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.19524752990722, + 38.073142270394634 + ], + [ + -89.19524752990722, + 38.36251489419808 + ], + [ + -88.85704322728937, + 38.36251489419808 + ], + [ + -88.85704322728937, + 38.073142270394634 + ], + [ + -89.19524752990722, + 38.073142270394634 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.19524752990722, + 38.36251489419808 + ], + [ + -89.19524752990722, + 38.65188751800152 + ], + [ + -88.85704322728937, + 38.65188751800152 + ], + [ + -88.85704322728937, + 38.36251489419808 + ], + [ + -89.19524752990722, + 38.36251489419808 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.19524752990722, + 38.65188751800152 + ], + [ + -89.19524752990722, + 38.94126014180497 + ], + [ + -88.85704322728937, + 38.94126014180497 + ], + [ + -88.85704322728937, + 38.65188751800152 + ], + [ + -89.19524752990722, + 38.65188751800152 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.19524752990722, + 38.94126014180497 + ], + [ + -89.19524752990722, + 39.23063276560841 + ], + [ + -88.85704322728937, + 39.23063276560841 + ], + [ + -88.85704322728937, + 38.94126014180497 + ], + [ + -89.19524752990722, + 38.94126014180497 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.19524752990722, + 39.23063276560841 + ], + [ + -89.19524752990722, + 39.52000538941186 + ], + [ + -88.85704322728937, + 39.52000538941186 + ], + [ + -88.85704322728937, + 39.23063276560841 + ], + [ + -89.19524752990722, + 39.23063276560841 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.19524752990722, + 39.52000538941186 + ], + [ + -89.19524752990722, + 39.8093780132153 + ], + [ + -88.85704322728937, + 39.8093780132153 + ], + [ + -88.85704322728937, + 39.52000538941186 + ], + [ + -89.19524752990722, + 39.52000538941186 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.19524752990722, + 39.8093780132153 + ], + [ + -89.19524752990722, + 40.098750637018746 + ], + [ + -88.85704322728937, + 40.098750637018746 + ], + [ + -88.85704322728937, + 39.8093780132153 + ], + [ + -89.19524752990722, + 39.8093780132153 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.19524752990722, + 40.098750637018746 + ], + [ + -89.19524752990722, + 40.38812326082219 + ], + [ + -88.85704322728937, + 40.38812326082219 + ], + [ + -88.85704322728937, + 40.098750637018746 + ], + [ + -89.19524752990722, + 40.098750637018746 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.19524752990722, + 40.38812326082219 + ], + [ + -89.19524752990722, + 40.677495884625635 + ], + [ + -88.85704322728937, + 40.677495884625635 + ], + [ + -88.85704322728937, + 40.38812326082219 + ], + [ + -89.19524752990722, + 40.38812326082219 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.85704322728937, + 31.12819929911196 + ], + [ + -88.85704322728937, + 31.417571922915403 + ], + [ + -88.51883892467151, + 31.417571922915403 + ], + [ + -88.51883892467151, + 31.12819929911196 + ], + [ + -88.85704322728937, + 31.12819929911196 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.85704322728937, + 31.417571922915403 + ], + [ + -88.85704322728937, + 31.706944546718848 + ], + [ + -88.51883892467151, + 31.706944546718848 + ], + [ + -88.51883892467151, + 31.417571922915403 + ], + [ + -88.85704322728937, + 31.417571922915403 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.85704322728937, + 31.706944546718848 + ], + [ + -88.85704322728937, + 31.996317170522293 + ], + [ + -88.51883892467151, + 31.996317170522293 + ], + [ + -88.51883892467151, + 31.706944546718848 + ], + [ + -88.85704322728937, + 31.706944546718848 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.85704322728937, + 31.996317170522293 + ], + [ + -88.85704322728937, + 32.28568979432574 + ], + [ + -88.51883892467151, + 32.28568979432574 + ], + [ + -88.51883892467151, + 31.996317170522293 + ], + [ + -88.85704322728937, + 31.996317170522293 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.85704322728937, + 32.28568979432574 + ], + [ + -88.85704322728937, + 32.575062418129185 + ], + [ + -88.51883892467151, + 32.575062418129185 + ], + [ + -88.51883892467151, + 32.28568979432574 + ], + [ + -88.85704322728937, + 32.28568979432574 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.85704322728937, + 32.575062418129185 + ], + [ + -88.85704322728937, + 32.86443504193263 + ], + [ + -88.51883892467151, + 32.86443504193263 + ], + [ + -88.51883892467151, + 32.575062418129185 + ], + [ + -88.85704322728937, + 32.575062418129185 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.85704322728937, + 32.86443504193263 + ], + [ + -88.85704322728937, + 33.153807665736075 + ], + [ + -88.51883892467151, + 33.153807665736075 + ], + [ + -88.51883892467151, + 32.86443504193263 + ], + [ + -88.85704322728937, + 32.86443504193263 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.85704322728937, + 33.153807665736075 + ], + [ + -88.85704322728937, + 33.44318028953952 + ], + [ + -88.51883892467151, + 33.44318028953952 + ], + [ + -88.51883892467151, + 33.153807665736075 + ], + [ + -88.85704322728937, + 33.153807665736075 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.85704322728937, + 33.44318028953952 + ], + [ + -88.85704322728937, + 33.732552913342964 + ], + [ + -88.51883892467151, + 33.732552913342964 + ], + [ + -88.51883892467151, + 33.44318028953952 + ], + [ + -88.85704322728937, + 33.44318028953952 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.85704322728937, + 33.732552913342964 + ], + [ + -88.85704322728937, + 34.02192553714641 + ], + [ + -88.51883892467151, + 34.02192553714641 + ], + [ + -88.51883892467151, + 33.732552913342964 + ], + [ + -88.85704322728937, + 33.732552913342964 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.85704322728937, + 34.02192553714641 + ], + [ + -88.85704322728937, + 34.31129816094985 + ], + [ + -88.51883892467151, + 34.31129816094985 + ], + [ + -88.51883892467151, + 34.02192553714641 + ], + [ + -88.85704322728937, + 34.02192553714641 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.85704322728937, + 34.31129816094985 + ], + [ + -88.85704322728937, + 34.6006707847533 + ], + [ + -88.51883892467151, + 34.6006707847533 + ], + [ + -88.51883892467151, + 34.31129816094985 + ], + [ + -88.85704322728937, + 34.31129816094985 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.85704322728937, + 34.6006707847533 + ], + [ + -88.85704322728937, + 34.89004340855674 + ], + [ + -88.51883892467151, + 34.89004340855674 + ], + [ + -88.51883892467151, + 34.6006707847533 + ], + [ + -88.85704322728937, + 34.6006707847533 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.85704322728937, + 34.89004340855674 + ], + [ + -88.85704322728937, + 35.17941603236019 + ], + [ + -88.51883892467151, + 35.17941603236019 + ], + [ + -88.51883892467151, + 34.89004340855674 + ], + [ + -88.85704322728937, + 34.89004340855674 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.85704322728937, + 35.17941603236019 + ], + [ + -88.85704322728937, + 35.46878865616363 + ], + [ + -88.51883892467151, + 35.46878865616363 + ], + [ + -88.51883892467151, + 35.17941603236019 + ], + [ + -88.85704322728937, + 35.17941603236019 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.85704322728937, + 35.46878865616363 + ], + [ + -88.85704322728937, + 35.75816127996708 + ], + [ + -88.51883892467151, + 35.75816127996708 + ], + [ + -88.51883892467151, + 35.46878865616363 + ], + [ + -88.85704322728937, + 35.46878865616363 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.85704322728937, + 35.75816127996708 + ], + [ + -88.85704322728937, + 36.04753390377052 + ], + [ + -88.51883892467151, + 36.04753390377052 + ], + [ + -88.51883892467151, + 35.75816127996708 + ], + [ + -88.85704322728937, + 35.75816127996708 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.85704322728937, + 36.04753390377052 + ], + [ + -88.85704322728937, + 36.336906527573966 + ], + [ + -88.51883892467151, + 36.336906527573966 + ], + [ + -88.51883892467151, + 36.04753390377052 + ], + [ + -88.85704322728937, + 36.04753390377052 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.85704322728937, + 36.336906527573966 + ], + [ + -88.85704322728937, + 36.62627915137741 + ], + [ + -88.51883892467151, + 36.62627915137741 + ], + [ + -88.51883892467151, + 36.336906527573966 + ], + [ + -88.85704322728937, + 36.336906527573966 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.85704322728937, + 36.62627915137741 + ], + [ + -88.85704322728937, + 36.915651775180855 + ], + [ + -88.51883892467151, + 36.915651775180855 + ], + [ + -88.51883892467151, + 36.62627915137741 + ], + [ + -88.85704322728937, + 36.62627915137741 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.85704322728937, + 36.915651775180855 + ], + [ + -88.85704322728937, + 37.2050243989843 + ], + [ + -88.51883892467151, + 37.2050243989843 + ], + [ + -88.51883892467151, + 36.915651775180855 + ], + [ + -88.85704322728937, + 36.915651775180855 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.85704322728937, + 37.2050243989843 + ], + [ + -88.85704322728937, + 37.494397022787744 + ], + [ + -88.51883892467151, + 37.494397022787744 + ], + [ + -88.51883892467151, + 37.2050243989843 + ], + [ + -88.85704322728937, + 37.2050243989843 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.85704322728937, + 37.494397022787744 + ], + [ + -88.85704322728937, + 37.78376964659119 + ], + [ + -88.51883892467151, + 37.78376964659119 + ], + [ + -88.51883892467151, + 37.494397022787744 + ], + [ + -88.85704322728937, + 37.494397022787744 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.85704322728937, + 37.78376964659119 + ], + [ + -88.85704322728937, + 38.073142270394634 + ], + [ + -88.51883892467151, + 38.073142270394634 + ], + [ + -88.51883892467151, + 37.78376964659119 + ], + [ + -88.85704322728937, + 37.78376964659119 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.85704322728937, + 38.073142270394634 + ], + [ + -88.85704322728937, + 38.36251489419808 + ], + [ + -88.51883892467151, + 38.36251489419808 + ], + [ + -88.51883892467151, + 38.073142270394634 + ], + [ + -88.85704322728937, + 38.073142270394634 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.85704322728937, + 38.36251489419808 + ], + [ + -88.85704322728937, + 38.65188751800152 + ], + [ + -88.51883892467151, + 38.65188751800152 + ], + [ + -88.51883892467151, + 38.36251489419808 + ], + [ + -88.85704322728937, + 38.36251489419808 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.85704322728937, + 38.65188751800152 + ], + [ + -88.85704322728937, + 38.94126014180497 + ], + [ + -88.51883892467151, + 38.94126014180497 + ], + [ + -88.51883892467151, + 38.65188751800152 + ], + [ + -88.85704322728937, + 38.65188751800152 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.85704322728937, + 38.94126014180497 + ], + [ + -88.85704322728937, + 39.23063276560841 + ], + [ + -88.51883892467151, + 39.23063276560841 + ], + [ + -88.51883892467151, + 38.94126014180497 + ], + [ + -88.85704322728937, + 38.94126014180497 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.85704322728937, + 39.23063276560841 + ], + [ + -88.85704322728937, + 39.52000538941186 + ], + [ + -88.51883892467151, + 39.52000538941186 + ], + [ + -88.51883892467151, + 39.23063276560841 + ], + [ + -88.85704322728937, + 39.23063276560841 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.85704322728937, + 39.52000538941186 + ], + [ + -88.85704322728937, + 39.8093780132153 + ], + [ + -88.51883892467151, + 39.8093780132153 + ], + [ + -88.51883892467151, + 39.52000538941186 + ], + [ + -88.85704322728937, + 39.52000538941186 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.85704322728937, + 39.8093780132153 + ], + [ + -88.85704322728937, + 40.098750637018746 + ], + [ + -88.51883892467151, + 40.098750637018746 + ], + [ + -88.51883892467151, + 39.8093780132153 + ], + [ + -88.85704322728937, + 39.8093780132153 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.85704322728937, + 40.098750637018746 + ], + [ + -88.85704322728937, + 40.38812326082219 + ], + [ + -88.51883892467151, + 40.38812326082219 + ], + [ + -88.51883892467151, + 40.098750637018746 + ], + [ + -88.85704322728937, + 40.098750637018746 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.85704322728937, + 40.38812326082219 + ], + [ + -88.85704322728937, + 40.677495884625635 + ], + [ + -88.51883892467151, + 40.677495884625635 + ], + [ + -88.51883892467151, + 40.38812326082219 + ], + [ + -88.85704322728937, + 40.38812326082219 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.51883892467151, + 31.12819929911196 + ], + [ + -88.51883892467151, + 31.417571922915403 + ], + [ + -88.18063462205366, + 31.417571922915403 + ], + [ + -88.18063462205366, + 31.12819929911196 + ], + [ + -88.51883892467151, + 31.12819929911196 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.51883892467151, + 31.417571922915403 + ], + [ + -88.51883892467151, + 31.706944546718848 + ], + [ + -88.18063462205366, + 31.706944546718848 + ], + [ + -88.18063462205366, + 31.417571922915403 + ], + [ + -88.51883892467151, + 31.417571922915403 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.51883892467151, + 31.706944546718848 + ], + [ + -88.51883892467151, + 31.996317170522293 + ], + [ + -88.18063462205366, + 31.996317170522293 + ], + [ + -88.18063462205366, + 31.706944546718848 + ], + [ + -88.51883892467151, + 31.706944546718848 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.51883892467151, + 31.996317170522293 + ], + [ + -88.51883892467151, + 32.28568979432574 + ], + [ + -88.18063462205366, + 32.28568979432574 + ], + [ + -88.18063462205366, + 31.996317170522293 + ], + [ + -88.51883892467151, + 31.996317170522293 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.51883892467151, + 32.28568979432574 + ], + [ + -88.51883892467151, + 32.575062418129185 + ], + [ + -88.18063462205366, + 32.575062418129185 + ], + [ + -88.18063462205366, + 32.28568979432574 + ], + [ + -88.51883892467151, + 32.28568979432574 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.51883892467151, + 32.575062418129185 + ], + [ + -88.51883892467151, + 32.86443504193263 + ], + [ + -88.18063462205366, + 32.86443504193263 + ], + [ + -88.18063462205366, + 32.575062418129185 + ], + [ + -88.51883892467151, + 32.575062418129185 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.51883892467151, + 32.86443504193263 + ], + [ + -88.51883892467151, + 33.153807665736075 + ], + [ + -88.18063462205366, + 33.153807665736075 + ], + [ + -88.18063462205366, + 32.86443504193263 + ], + [ + -88.51883892467151, + 32.86443504193263 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.51883892467151, + 33.153807665736075 + ], + [ + -88.51883892467151, + 33.44318028953952 + ], + [ + -88.18063462205366, + 33.44318028953952 + ], + [ + -88.18063462205366, + 33.153807665736075 + ], + [ + -88.51883892467151, + 33.153807665736075 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.51883892467151, + 33.44318028953952 + ], + [ + -88.51883892467151, + 33.732552913342964 + ], + [ + -88.18063462205366, + 33.732552913342964 + ], + [ + -88.18063462205366, + 33.44318028953952 + ], + [ + -88.51883892467151, + 33.44318028953952 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.51883892467151, + 33.732552913342964 + ], + [ + -88.51883892467151, + 34.02192553714641 + ], + [ + -88.18063462205366, + 34.02192553714641 + ], + [ + -88.18063462205366, + 33.732552913342964 + ], + [ + -88.51883892467151, + 33.732552913342964 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.51883892467151, + 34.02192553714641 + ], + [ + -88.51883892467151, + 34.31129816094985 + ], + [ + -88.18063462205366, + 34.31129816094985 + ], + [ + -88.18063462205366, + 34.02192553714641 + ], + [ + -88.51883892467151, + 34.02192553714641 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.51883892467151, + 34.31129816094985 + ], + [ + -88.51883892467151, + 34.6006707847533 + ], + [ + -88.18063462205366, + 34.6006707847533 + ], + [ + -88.18063462205366, + 34.31129816094985 + ], + [ + -88.51883892467151, + 34.31129816094985 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.51883892467151, + 34.6006707847533 + ], + [ + -88.51883892467151, + 34.89004340855674 + ], + [ + -88.18063462205366, + 34.89004340855674 + ], + [ + -88.18063462205366, + 34.6006707847533 + ], + [ + -88.51883892467151, + 34.6006707847533 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.51883892467151, + 34.89004340855674 + ], + [ + -88.51883892467151, + 35.17941603236019 + ], + [ + -88.18063462205366, + 35.17941603236019 + ], + [ + -88.18063462205366, + 34.89004340855674 + ], + [ + -88.51883892467151, + 34.89004340855674 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.51883892467151, + 35.17941603236019 + ], + [ + -88.51883892467151, + 35.46878865616363 + ], + [ + -88.18063462205366, + 35.46878865616363 + ], + [ + -88.18063462205366, + 35.17941603236019 + ], + [ + -88.51883892467151, + 35.17941603236019 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.51883892467151, + 35.46878865616363 + ], + [ + -88.51883892467151, + 35.75816127996708 + ], + [ + -88.18063462205366, + 35.75816127996708 + ], + [ + -88.18063462205366, + 35.46878865616363 + ], + [ + -88.51883892467151, + 35.46878865616363 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.51883892467151, + 35.75816127996708 + ], + [ + -88.51883892467151, + 36.04753390377052 + ], + [ + -88.18063462205366, + 36.04753390377052 + ], + [ + -88.18063462205366, + 35.75816127996708 + ], + [ + -88.51883892467151, + 35.75816127996708 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.51883892467151, + 36.04753390377052 + ], + [ + -88.51883892467151, + 36.336906527573966 + ], + [ + -88.18063462205366, + 36.336906527573966 + ], + [ + -88.18063462205366, + 36.04753390377052 + ], + [ + -88.51883892467151, + 36.04753390377052 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.51883892467151, + 36.336906527573966 + ], + [ + -88.51883892467151, + 36.62627915137741 + ], + [ + -88.18063462205366, + 36.62627915137741 + ], + [ + -88.18063462205366, + 36.336906527573966 + ], + [ + -88.51883892467151, + 36.336906527573966 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.51883892467151, + 36.62627915137741 + ], + [ + -88.51883892467151, + 36.915651775180855 + ], + [ + -88.18063462205366, + 36.915651775180855 + ], + [ + -88.18063462205366, + 36.62627915137741 + ], + [ + -88.51883892467151, + 36.62627915137741 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.51883892467151, + 36.915651775180855 + ], + [ + -88.51883892467151, + 37.2050243989843 + ], + [ + -88.18063462205366, + 37.2050243989843 + ], + [ + -88.18063462205366, + 36.915651775180855 + ], + [ + -88.51883892467151, + 36.915651775180855 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.51883892467151, + 37.2050243989843 + ], + [ + -88.51883892467151, + 37.494397022787744 + ], + [ + -88.18063462205366, + 37.494397022787744 + ], + [ + -88.18063462205366, + 37.2050243989843 + ], + [ + -88.51883892467151, + 37.2050243989843 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.51883892467151, + 37.494397022787744 + ], + [ + -88.51883892467151, + 37.78376964659119 + ], + [ + -88.18063462205366, + 37.78376964659119 + ], + [ + -88.18063462205366, + 37.494397022787744 + ], + [ + -88.51883892467151, + 37.494397022787744 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.51883892467151, + 37.78376964659119 + ], + [ + -88.51883892467151, + 38.073142270394634 + ], + [ + -88.18063462205366, + 38.073142270394634 + ], + [ + -88.18063462205366, + 37.78376964659119 + ], + [ + -88.51883892467151, + 37.78376964659119 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.51883892467151, + 38.073142270394634 + ], + [ + -88.51883892467151, + 38.36251489419808 + ], + [ + -88.18063462205366, + 38.36251489419808 + ], + [ + -88.18063462205366, + 38.073142270394634 + ], + [ + -88.51883892467151, + 38.073142270394634 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.51883892467151, + 38.36251489419808 + ], + [ + -88.51883892467151, + 38.65188751800152 + ], + [ + -88.18063462205366, + 38.65188751800152 + ], + [ + -88.18063462205366, + 38.36251489419808 + ], + [ + -88.51883892467151, + 38.36251489419808 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.51883892467151, + 38.65188751800152 + ], + [ + -88.51883892467151, + 38.94126014180497 + ], + [ + -88.18063462205366, + 38.94126014180497 + ], + [ + -88.18063462205366, + 38.65188751800152 + ], + [ + -88.51883892467151, + 38.65188751800152 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.51883892467151, + 38.94126014180497 + ], + [ + -88.51883892467151, + 39.23063276560841 + ], + [ + -88.18063462205366, + 39.23063276560841 + ], + [ + -88.18063462205366, + 38.94126014180497 + ], + [ + -88.51883892467151, + 38.94126014180497 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.51883892467151, + 39.23063276560841 + ], + [ + -88.51883892467151, + 39.52000538941186 + ], + [ + -88.18063462205366, + 39.52000538941186 + ], + [ + -88.18063462205366, + 39.23063276560841 + ], + [ + -88.51883892467151, + 39.23063276560841 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.51883892467151, + 39.52000538941186 + ], + [ + -88.51883892467151, + 39.8093780132153 + ], + [ + -88.18063462205366, + 39.8093780132153 + ], + [ + -88.18063462205366, + 39.52000538941186 + ], + [ + -88.51883892467151, + 39.52000538941186 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.51883892467151, + 39.8093780132153 + ], + [ + -88.51883892467151, + 40.098750637018746 + ], + [ + -88.18063462205366, + 40.098750637018746 + ], + [ + -88.18063462205366, + 39.8093780132153 + ], + [ + -88.51883892467151, + 39.8093780132153 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.51883892467151, + 40.098750637018746 + ], + [ + -88.51883892467151, + 40.38812326082219 + ], + [ + -88.18063462205366, + 40.38812326082219 + ], + [ + -88.18063462205366, + 40.098750637018746 + ], + [ + -88.51883892467151, + 40.098750637018746 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.51883892467151, + 40.38812326082219 + ], + [ + -88.51883892467151, + 40.677495884625635 + ], + [ + -88.18063462205366, + 40.677495884625635 + ], + [ + -88.18063462205366, + 40.38812326082219 + ], + [ + -88.51883892467151, + 40.38812326082219 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.18063462205366, + 31.12819929911196 + ], + [ + -88.18063462205366, + 31.417571922915403 + ], + [ + -87.8424303194358, + 31.417571922915403 + ], + [ + -87.8424303194358, + 31.12819929911196 + ], + [ + -88.18063462205366, + 31.12819929911196 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.18063462205366, + 31.417571922915403 + ], + [ + -88.18063462205366, + 31.706944546718848 + ], + [ + -87.8424303194358, + 31.706944546718848 + ], + [ + -87.8424303194358, + 31.417571922915403 + ], + [ + -88.18063462205366, + 31.417571922915403 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.18063462205366, + 31.706944546718848 + ], + [ + -88.18063462205366, + 31.996317170522293 + ], + [ + -87.8424303194358, + 31.996317170522293 + ], + [ + -87.8424303194358, + 31.706944546718848 + ], + [ + -88.18063462205366, + 31.706944546718848 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.18063462205366, + 31.996317170522293 + ], + [ + -88.18063462205366, + 32.28568979432574 + ], + [ + -87.8424303194358, + 32.28568979432574 + ], + [ + -87.8424303194358, + 31.996317170522293 + ], + [ + -88.18063462205366, + 31.996317170522293 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.18063462205366, + 32.28568979432574 + ], + [ + -88.18063462205366, + 32.575062418129185 + ], + [ + -87.8424303194358, + 32.575062418129185 + ], + [ + -87.8424303194358, + 32.28568979432574 + ], + [ + -88.18063462205366, + 32.28568979432574 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.18063462205366, + 32.575062418129185 + ], + [ + -88.18063462205366, + 32.86443504193263 + ], + [ + -87.8424303194358, + 32.86443504193263 + ], + [ + -87.8424303194358, + 32.575062418129185 + ], + [ + -88.18063462205366, + 32.575062418129185 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.18063462205366, + 32.86443504193263 + ], + [ + -88.18063462205366, + 33.153807665736075 + ], + [ + -87.8424303194358, + 33.153807665736075 + ], + [ + -87.8424303194358, + 32.86443504193263 + ], + [ + -88.18063462205366, + 32.86443504193263 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.18063462205366, + 33.153807665736075 + ], + [ + -88.18063462205366, + 33.44318028953952 + ], + [ + -87.8424303194358, + 33.44318028953952 + ], + [ + -87.8424303194358, + 33.153807665736075 + ], + [ + -88.18063462205366, + 33.153807665736075 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.18063462205366, + 33.44318028953952 + ], + [ + -88.18063462205366, + 33.732552913342964 + ], + [ + -87.8424303194358, + 33.732552913342964 + ], + [ + -87.8424303194358, + 33.44318028953952 + ], + [ + -88.18063462205366, + 33.44318028953952 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.18063462205366, + 33.732552913342964 + ], + [ + -88.18063462205366, + 34.02192553714641 + ], + [ + -87.8424303194358, + 34.02192553714641 + ], + [ + -87.8424303194358, + 33.732552913342964 + ], + [ + -88.18063462205366, + 33.732552913342964 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.18063462205366, + 34.02192553714641 + ], + [ + -88.18063462205366, + 34.31129816094985 + ], + [ + -87.8424303194358, + 34.31129816094985 + ], + [ + -87.8424303194358, + 34.02192553714641 + ], + [ + -88.18063462205366, + 34.02192553714641 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.18063462205366, + 34.31129816094985 + ], + [ + -88.18063462205366, + 34.6006707847533 + ], + [ + -87.8424303194358, + 34.6006707847533 + ], + [ + -87.8424303194358, + 34.31129816094985 + ], + [ + -88.18063462205366, + 34.31129816094985 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.18063462205366, + 34.6006707847533 + ], + [ + -88.18063462205366, + 34.89004340855674 + ], + [ + -87.8424303194358, + 34.89004340855674 + ], + [ + -87.8424303194358, + 34.6006707847533 + ], + [ + -88.18063462205366, + 34.6006707847533 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.18063462205366, + 34.89004340855674 + ], + [ + -88.18063462205366, + 35.17941603236019 + ], + [ + -87.8424303194358, + 35.17941603236019 + ], + [ + -87.8424303194358, + 34.89004340855674 + ], + [ + -88.18063462205366, + 34.89004340855674 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.18063462205366, + 35.17941603236019 + ], + [ + -88.18063462205366, + 35.46878865616363 + ], + [ + -87.8424303194358, + 35.46878865616363 + ], + [ + -87.8424303194358, + 35.17941603236019 + ], + [ + -88.18063462205366, + 35.17941603236019 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.18063462205366, + 35.46878865616363 + ], + [ + -88.18063462205366, + 35.75816127996708 + ], + [ + -87.8424303194358, + 35.75816127996708 + ], + [ + -87.8424303194358, + 35.46878865616363 + ], + [ + -88.18063462205366, + 35.46878865616363 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.18063462205366, + 35.75816127996708 + ], + [ + -88.18063462205366, + 36.04753390377052 + ], + [ + -87.8424303194358, + 36.04753390377052 + ], + [ + -87.8424303194358, + 35.75816127996708 + ], + [ + -88.18063462205366, + 35.75816127996708 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.18063462205366, + 36.04753390377052 + ], + [ + -88.18063462205366, + 36.336906527573966 + ], + [ + -87.8424303194358, + 36.336906527573966 + ], + [ + -87.8424303194358, + 36.04753390377052 + ], + [ + -88.18063462205366, + 36.04753390377052 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.18063462205366, + 36.336906527573966 + ], + [ + -88.18063462205366, + 36.62627915137741 + ], + [ + -87.8424303194358, + 36.62627915137741 + ], + [ + -87.8424303194358, + 36.336906527573966 + ], + [ + -88.18063462205366, + 36.336906527573966 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.18063462205366, + 36.62627915137741 + ], + [ + -88.18063462205366, + 36.915651775180855 + ], + [ + -87.8424303194358, + 36.915651775180855 + ], + [ + -87.8424303194358, + 36.62627915137741 + ], + [ + -88.18063462205366, + 36.62627915137741 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.18063462205366, + 36.915651775180855 + ], + [ + -88.18063462205366, + 37.2050243989843 + ], + [ + -87.8424303194358, + 37.2050243989843 + ], + [ + -87.8424303194358, + 36.915651775180855 + ], + [ + -88.18063462205366, + 36.915651775180855 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.18063462205366, + 37.2050243989843 + ], + [ + -88.18063462205366, + 37.494397022787744 + ], + [ + -87.8424303194358, + 37.494397022787744 + ], + [ + -87.8424303194358, + 37.2050243989843 + ], + [ + -88.18063462205366, + 37.2050243989843 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.18063462205366, + 37.494397022787744 + ], + [ + -88.18063462205366, + 37.78376964659119 + ], + [ + -87.8424303194358, + 37.78376964659119 + ], + [ + -87.8424303194358, + 37.494397022787744 + ], + [ + -88.18063462205366, + 37.494397022787744 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.18063462205366, + 37.78376964659119 + ], + [ + -88.18063462205366, + 38.073142270394634 + ], + [ + -87.8424303194358, + 38.073142270394634 + ], + [ + -87.8424303194358, + 37.78376964659119 + ], + [ + -88.18063462205366, + 37.78376964659119 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.18063462205366, + 38.073142270394634 + ], + [ + -88.18063462205366, + 38.36251489419808 + ], + [ + -87.8424303194358, + 38.36251489419808 + ], + [ + -87.8424303194358, + 38.073142270394634 + ], + [ + -88.18063462205366, + 38.073142270394634 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.18063462205366, + 38.36251489419808 + ], + [ + -88.18063462205366, + 38.65188751800152 + ], + [ + -87.8424303194358, + 38.65188751800152 + ], + [ + -87.8424303194358, + 38.36251489419808 + ], + [ + -88.18063462205366, + 38.36251489419808 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.18063462205366, + 38.65188751800152 + ], + [ + -88.18063462205366, + 38.94126014180497 + ], + [ + -87.8424303194358, + 38.94126014180497 + ], + [ + -87.8424303194358, + 38.65188751800152 + ], + [ + -88.18063462205366, + 38.65188751800152 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.18063462205366, + 38.94126014180497 + ], + [ + -88.18063462205366, + 39.23063276560841 + ], + [ + -87.8424303194358, + 39.23063276560841 + ], + [ + -87.8424303194358, + 38.94126014180497 + ], + [ + -88.18063462205366, + 38.94126014180497 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.18063462205366, + 39.23063276560841 + ], + [ + -88.18063462205366, + 39.52000538941186 + ], + [ + -87.8424303194358, + 39.52000538941186 + ], + [ + -87.8424303194358, + 39.23063276560841 + ], + [ + -88.18063462205366, + 39.23063276560841 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.18063462205366, + 39.52000538941186 + ], + [ + -88.18063462205366, + 39.8093780132153 + ], + [ + -87.8424303194358, + 39.8093780132153 + ], + [ + -87.8424303194358, + 39.52000538941186 + ], + [ + -88.18063462205366, + 39.52000538941186 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.18063462205366, + 39.8093780132153 + ], + [ + -88.18063462205366, + 40.098750637018746 + ], + [ + -87.8424303194358, + 40.098750637018746 + ], + [ + -87.8424303194358, + 39.8093780132153 + ], + [ + -88.18063462205366, + 39.8093780132153 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.18063462205366, + 40.098750637018746 + ], + [ + -88.18063462205366, + 40.38812326082219 + ], + [ + -87.8424303194358, + 40.38812326082219 + ], + [ + -87.8424303194358, + 40.098750637018746 + ], + [ + -88.18063462205366, + 40.098750637018746 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.18063462205366, + 40.38812326082219 + ], + [ + -88.18063462205366, + 40.677495884625635 + ], + [ + -87.8424303194358, + 40.677495884625635 + ], + [ + -87.8424303194358, + 40.38812326082219 + ], + [ + -88.18063462205366, + 40.38812326082219 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.8424303194358, + 31.12819929911196 + ], + [ + -87.8424303194358, + 31.417571922915403 + ], + [ + -87.50422601681795, + 31.417571922915403 + ], + [ + -87.50422601681795, + 31.12819929911196 + ], + [ + -87.8424303194358, + 31.12819929911196 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.8424303194358, + 31.417571922915403 + ], + [ + -87.8424303194358, + 31.706944546718848 + ], + [ + -87.50422601681795, + 31.706944546718848 + ], + [ + -87.50422601681795, + 31.417571922915403 + ], + [ + -87.8424303194358, + 31.417571922915403 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.8424303194358, + 31.706944546718848 + ], + [ + -87.8424303194358, + 31.996317170522293 + ], + [ + -87.50422601681795, + 31.996317170522293 + ], + [ + -87.50422601681795, + 31.706944546718848 + ], + [ + -87.8424303194358, + 31.706944546718848 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.8424303194358, + 31.996317170522293 + ], + [ + -87.8424303194358, + 32.28568979432574 + ], + [ + -87.50422601681795, + 32.28568979432574 + ], + [ + -87.50422601681795, + 31.996317170522293 + ], + [ + -87.8424303194358, + 31.996317170522293 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.8424303194358, + 32.28568979432574 + ], + [ + -87.8424303194358, + 32.575062418129185 + ], + [ + -87.50422601681795, + 32.575062418129185 + ], + [ + -87.50422601681795, + 32.28568979432574 + ], + [ + -87.8424303194358, + 32.28568979432574 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.8424303194358, + 32.575062418129185 + ], + [ + -87.8424303194358, + 32.86443504193263 + ], + [ + -87.50422601681795, + 32.86443504193263 + ], + [ + -87.50422601681795, + 32.575062418129185 + ], + [ + -87.8424303194358, + 32.575062418129185 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.8424303194358, + 32.86443504193263 + ], + [ + -87.8424303194358, + 33.153807665736075 + ], + [ + -87.50422601681795, + 33.153807665736075 + ], + [ + -87.50422601681795, + 32.86443504193263 + ], + [ + -87.8424303194358, + 32.86443504193263 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.8424303194358, + 33.153807665736075 + ], + [ + -87.8424303194358, + 33.44318028953952 + ], + [ + -87.50422601681795, + 33.44318028953952 + ], + [ + -87.50422601681795, + 33.153807665736075 + ], + [ + -87.8424303194358, + 33.153807665736075 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.8424303194358, + 33.44318028953952 + ], + [ + -87.8424303194358, + 33.732552913342964 + ], + [ + -87.50422601681795, + 33.732552913342964 + ], + [ + -87.50422601681795, + 33.44318028953952 + ], + [ + -87.8424303194358, + 33.44318028953952 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.8424303194358, + 33.732552913342964 + ], + [ + -87.8424303194358, + 34.02192553714641 + ], + [ + -87.50422601681795, + 34.02192553714641 + ], + [ + -87.50422601681795, + 33.732552913342964 + ], + [ + -87.8424303194358, + 33.732552913342964 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.8424303194358, + 34.02192553714641 + ], + [ + -87.8424303194358, + 34.31129816094985 + ], + [ + -87.50422601681795, + 34.31129816094985 + ], + [ + -87.50422601681795, + 34.02192553714641 + ], + [ + -87.8424303194358, + 34.02192553714641 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.8424303194358, + 34.31129816094985 + ], + [ + -87.8424303194358, + 34.6006707847533 + ], + [ + -87.50422601681795, + 34.6006707847533 + ], + [ + -87.50422601681795, + 34.31129816094985 + ], + [ + -87.8424303194358, + 34.31129816094985 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.8424303194358, + 34.6006707847533 + ], + [ + -87.8424303194358, + 34.89004340855674 + ], + [ + -87.50422601681795, + 34.89004340855674 + ], + [ + -87.50422601681795, + 34.6006707847533 + ], + [ + -87.8424303194358, + 34.6006707847533 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.8424303194358, + 34.89004340855674 + ], + [ + -87.8424303194358, + 35.17941603236019 + ], + [ + -87.50422601681795, + 35.17941603236019 + ], + [ + -87.50422601681795, + 34.89004340855674 + ], + [ + -87.8424303194358, + 34.89004340855674 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.8424303194358, + 35.17941603236019 + ], + [ + -87.8424303194358, + 35.46878865616363 + ], + [ + -87.50422601681795, + 35.46878865616363 + ], + [ + -87.50422601681795, + 35.17941603236019 + ], + [ + -87.8424303194358, + 35.17941603236019 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.8424303194358, + 35.46878865616363 + ], + [ + -87.8424303194358, + 35.75816127996708 + ], + [ + -87.50422601681795, + 35.75816127996708 + ], + [ + -87.50422601681795, + 35.46878865616363 + ], + [ + -87.8424303194358, + 35.46878865616363 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.8424303194358, + 35.75816127996708 + ], + [ + -87.8424303194358, + 36.04753390377052 + ], + [ + -87.50422601681795, + 36.04753390377052 + ], + [ + -87.50422601681795, + 35.75816127996708 + ], + [ + -87.8424303194358, + 35.75816127996708 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.8424303194358, + 36.04753390377052 + ], + [ + -87.8424303194358, + 36.336906527573966 + ], + [ + -87.50422601681795, + 36.336906527573966 + ], + [ + -87.50422601681795, + 36.04753390377052 + ], + [ + -87.8424303194358, + 36.04753390377052 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.8424303194358, + 36.336906527573966 + ], + [ + -87.8424303194358, + 36.62627915137741 + ], + [ + -87.50422601681795, + 36.62627915137741 + ], + [ + -87.50422601681795, + 36.336906527573966 + ], + [ + -87.8424303194358, + 36.336906527573966 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.8424303194358, + 36.62627915137741 + ], + [ + -87.8424303194358, + 36.915651775180855 + ], + [ + -87.50422601681795, + 36.915651775180855 + ], + [ + -87.50422601681795, + 36.62627915137741 + ], + [ + -87.8424303194358, + 36.62627915137741 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.8424303194358, + 36.915651775180855 + ], + [ + -87.8424303194358, + 37.2050243989843 + ], + [ + -87.50422601681795, + 37.2050243989843 + ], + [ + -87.50422601681795, + 36.915651775180855 + ], + [ + -87.8424303194358, + 36.915651775180855 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.8424303194358, + 37.2050243989843 + ], + [ + -87.8424303194358, + 37.494397022787744 + ], + [ + -87.50422601681795, + 37.494397022787744 + ], + [ + -87.50422601681795, + 37.2050243989843 + ], + [ + -87.8424303194358, + 37.2050243989843 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.8424303194358, + 37.494397022787744 + ], + [ + -87.8424303194358, + 37.78376964659119 + ], + [ + -87.50422601681795, + 37.78376964659119 + ], + [ + -87.50422601681795, + 37.494397022787744 + ], + [ + -87.8424303194358, + 37.494397022787744 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.8424303194358, + 37.78376964659119 + ], + [ + -87.8424303194358, + 38.073142270394634 + ], + [ + -87.50422601681795, + 38.073142270394634 + ], + [ + -87.50422601681795, + 37.78376964659119 + ], + [ + -87.8424303194358, + 37.78376964659119 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.8424303194358, + 38.073142270394634 + ], + [ + -87.8424303194358, + 38.36251489419808 + ], + [ + -87.50422601681795, + 38.36251489419808 + ], + [ + -87.50422601681795, + 38.073142270394634 + ], + [ + -87.8424303194358, + 38.073142270394634 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.8424303194358, + 38.36251489419808 + ], + [ + -87.8424303194358, + 38.65188751800152 + ], + [ + -87.50422601681795, + 38.65188751800152 + ], + [ + -87.50422601681795, + 38.36251489419808 + ], + [ + -87.8424303194358, + 38.36251489419808 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.8424303194358, + 38.65188751800152 + ], + [ + -87.8424303194358, + 38.94126014180497 + ], + [ + -87.50422601681795, + 38.94126014180497 + ], + [ + -87.50422601681795, + 38.65188751800152 + ], + [ + -87.8424303194358, + 38.65188751800152 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.8424303194358, + 38.94126014180497 + ], + [ + -87.8424303194358, + 39.23063276560841 + ], + [ + -87.50422601681795, + 39.23063276560841 + ], + [ + -87.50422601681795, + 38.94126014180497 + ], + [ + -87.8424303194358, + 38.94126014180497 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.8424303194358, + 39.23063276560841 + ], + [ + -87.8424303194358, + 39.52000538941186 + ], + [ + -87.50422601681795, + 39.52000538941186 + ], + [ + -87.50422601681795, + 39.23063276560841 + ], + [ + -87.8424303194358, + 39.23063276560841 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.8424303194358, + 39.52000538941186 + ], + [ + -87.8424303194358, + 39.8093780132153 + ], + [ + -87.50422601681795, + 39.8093780132153 + ], + [ + -87.50422601681795, + 39.52000538941186 + ], + [ + -87.8424303194358, + 39.52000538941186 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.8424303194358, + 39.8093780132153 + ], + [ + -87.8424303194358, + 40.098750637018746 + ], + [ + -87.50422601681795, + 40.098750637018746 + ], + [ + -87.50422601681795, + 39.8093780132153 + ], + [ + -87.8424303194358, + 39.8093780132153 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.8424303194358, + 40.098750637018746 + ], + [ + -87.8424303194358, + 40.38812326082219 + ], + [ + -87.50422601681795, + 40.38812326082219 + ], + [ + -87.50422601681795, + 40.098750637018746 + ], + [ + -87.8424303194358, + 40.098750637018746 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.8424303194358, + 40.38812326082219 + ], + [ + -87.8424303194358, + 40.677495884625635 + ], + [ + -87.50422601681795, + 40.677495884625635 + ], + [ + -87.50422601681795, + 40.38812326082219 + ], + [ + -87.8424303194358, + 40.38812326082219 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.50422601681795, + 31.12819929911196 + ], + [ + -87.50422601681795, + 31.417571922915403 + ], + [ + -87.1660217142001, + 31.417571922915403 + ], + [ + -87.1660217142001, + 31.12819929911196 + ], + [ + -87.50422601681795, + 31.12819929911196 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.50422601681795, + 31.417571922915403 + ], + [ + -87.50422601681795, + 31.706944546718848 + ], + [ + -87.1660217142001, + 31.706944546718848 + ], + [ + -87.1660217142001, + 31.417571922915403 + ], + [ + -87.50422601681795, + 31.417571922915403 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.50422601681795, + 31.706944546718848 + ], + [ + -87.50422601681795, + 31.996317170522293 + ], + [ + -87.1660217142001, + 31.996317170522293 + ], + [ + -87.1660217142001, + 31.706944546718848 + ], + [ + -87.50422601681795, + 31.706944546718848 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.50422601681795, + 31.996317170522293 + ], + [ + -87.50422601681795, + 32.28568979432574 + ], + [ + -87.1660217142001, + 32.28568979432574 + ], + [ + -87.1660217142001, + 31.996317170522293 + ], + [ + -87.50422601681795, + 31.996317170522293 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.50422601681795, + 32.28568979432574 + ], + [ + -87.50422601681795, + 32.575062418129185 + ], + [ + -87.1660217142001, + 32.575062418129185 + ], + [ + -87.1660217142001, + 32.28568979432574 + ], + [ + -87.50422601681795, + 32.28568979432574 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.50422601681795, + 32.575062418129185 + ], + [ + -87.50422601681795, + 32.86443504193263 + ], + [ + -87.1660217142001, + 32.86443504193263 + ], + [ + -87.1660217142001, + 32.575062418129185 + ], + [ + -87.50422601681795, + 32.575062418129185 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.50422601681795, + 32.86443504193263 + ], + [ + -87.50422601681795, + 33.153807665736075 + ], + [ + -87.1660217142001, + 33.153807665736075 + ], + [ + -87.1660217142001, + 32.86443504193263 + ], + [ + -87.50422601681795, + 32.86443504193263 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.50422601681795, + 33.153807665736075 + ], + [ + -87.50422601681795, + 33.44318028953952 + ], + [ + -87.1660217142001, + 33.44318028953952 + ], + [ + -87.1660217142001, + 33.153807665736075 + ], + [ + -87.50422601681795, + 33.153807665736075 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.50422601681795, + 33.44318028953952 + ], + [ + -87.50422601681795, + 33.732552913342964 + ], + [ + -87.1660217142001, + 33.732552913342964 + ], + [ + -87.1660217142001, + 33.44318028953952 + ], + [ + -87.50422601681795, + 33.44318028953952 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.50422601681795, + 33.732552913342964 + ], + [ + -87.50422601681795, + 34.02192553714641 + ], + [ + -87.1660217142001, + 34.02192553714641 + ], + [ + -87.1660217142001, + 33.732552913342964 + ], + [ + -87.50422601681795, + 33.732552913342964 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.50422601681795, + 34.02192553714641 + ], + [ + -87.50422601681795, + 34.31129816094985 + ], + [ + -87.1660217142001, + 34.31129816094985 + ], + [ + -87.1660217142001, + 34.02192553714641 + ], + [ + -87.50422601681795, + 34.02192553714641 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.50422601681795, + 34.31129816094985 + ], + [ + -87.50422601681795, + 34.6006707847533 + ], + [ + -87.1660217142001, + 34.6006707847533 + ], + [ + -87.1660217142001, + 34.31129816094985 + ], + [ + -87.50422601681795, + 34.31129816094985 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.50422601681795, + 34.6006707847533 + ], + [ + -87.50422601681795, + 34.89004340855674 + ], + [ + -87.1660217142001, + 34.89004340855674 + ], + [ + -87.1660217142001, + 34.6006707847533 + ], + [ + -87.50422601681795, + 34.6006707847533 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.50422601681795, + 34.89004340855674 + ], + [ + -87.50422601681795, + 35.17941603236019 + ], + [ + -87.1660217142001, + 35.17941603236019 + ], + [ + -87.1660217142001, + 34.89004340855674 + ], + [ + -87.50422601681795, + 34.89004340855674 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.50422601681795, + 35.17941603236019 + ], + [ + -87.50422601681795, + 35.46878865616363 + ], + [ + -87.1660217142001, + 35.46878865616363 + ], + [ + -87.1660217142001, + 35.17941603236019 + ], + [ + -87.50422601681795, + 35.17941603236019 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.50422601681795, + 35.46878865616363 + ], + [ + -87.50422601681795, + 35.75816127996708 + ], + [ + -87.1660217142001, + 35.75816127996708 + ], + [ + -87.1660217142001, + 35.46878865616363 + ], + [ + -87.50422601681795, + 35.46878865616363 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.50422601681795, + 35.75816127996708 + ], + [ + -87.50422601681795, + 36.04753390377052 + ], + [ + -87.1660217142001, + 36.04753390377052 + ], + [ + -87.1660217142001, + 35.75816127996708 + ], + [ + -87.50422601681795, + 35.75816127996708 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.50422601681795, + 36.04753390377052 + ], + [ + -87.50422601681795, + 36.336906527573966 + ], + [ + -87.1660217142001, + 36.336906527573966 + ], + [ + -87.1660217142001, + 36.04753390377052 + ], + [ + -87.50422601681795, + 36.04753390377052 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.50422601681795, + 36.336906527573966 + ], + [ + -87.50422601681795, + 36.62627915137741 + ], + [ + -87.1660217142001, + 36.62627915137741 + ], + [ + -87.1660217142001, + 36.336906527573966 + ], + [ + -87.50422601681795, + 36.336906527573966 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.50422601681795, + 36.62627915137741 + ], + [ + -87.50422601681795, + 36.915651775180855 + ], + [ + -87.1660217142001, + 36.915651775180855 + ], + [ + -87.1660217142001, + 36.62627915137741 + ], + [ + -87.50422601681795, + 36.62627915137741 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.50422601681795, + 36.915651775180855 + ], + [ + -87.50422601681795, + 37.2050243989843 + ], + [ + -87.1660217142001, + 37.2050243989843 + ], + [ + -87.1660217142001, + 36.915651775180855 + ], + [ + -87.50422601681795, + 36.915651775180855 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.50422601681795, + 37.2050243989843 + ], + [ + -87.50422601681795, + 37.494397022787744 + ], + [ + -87.1660217142001, + 37.494397022787744 + ], + [ + -87.1660217142001, + 37.2050243989843 + ], + [ + -87.50422601681795, + 37.2050243989843 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.50422601681795, + 37.494397022787744 + ], + [ + -87.50422601681795, + 37.78376964659119 + ], + [ + -87.1660217142001, + 37.78376964659119 + ], + [ + -87.1660217142001, + 37.494397022787744 + ], + [ + -87.50422601681795, + 37.494397022787744 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.50422601681795, + 37.78376964659119 + ], + [ + -87.50422601681795, + 38.073142270394634 + ], + [ + -87.1660217142001, + 38.073142270394634 + ], + [ + -87.1660217142001, + 37.78376964659119 + ], + [ + -87.50422601681795, + 37.78376964659119 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.50422601681795, + 38.073142270394634 + ], + [ + -87.50422601681795, + 38.36251489419808 + ], + [ + -87.1660217142001, + 38.36251489419808 + ], + [ + -87.1660217142001, + 38.073142270394634 + ], + [ + -87.50422601681795, + 38.073142270394634 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.50422601681795, + 38.36251489419808 + ], + [ + -87.50422601681795, + 38.65188751800152 + ], + [ + -87.1660217142001, + 38.65188751800152 + ], + [ + -87.1660217142001, + 38.36251489419808 + ], + [ + -87.50422601681795, + 38.36251489419808 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.50422601681795, + 38.65188751800152 + ], + [ + -87.50422601681795, + 38.94126014180497 + ], + [ + -87.1660217142001, + 38.94126014180497 + ], + [ + -87.1660217142001, + 38.65188751800152 + ], + [ + -87.50422601681795, + 38.65188751800152 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.50422601681795, + 38.94126014180497 + ], + [ + -87.50422601681795, + 39.23063276560841 + ], + [ + -87.1660217142001, + 39.23063276560841 + ], + [ + -87.1660217142001, + 38.94126014180497 + ], + [ + -87.50422601681795, + 38.94126014180497 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.50422601681795, + 39.23063276560841 + ], + [ + -87.50422601681795, + 39.52000538941186 + ], + [ + -87.1660217142001, + 39.52000538941186 + ], + [ + -87.1660217142001, + 39.23063276560841 + ], + [ + -87.50422601681795, + 39.23063276560841 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.50422601681795, + 39.52000538941186 + ], + [ + -87.50422601681795, + 39.8093780132153 + ], + [ + -87.1660217142001, + 39.8093780132153 + ], + [ + -87.1660217142001, + 39.52000538941186 + ], + [ + -87.50422601681795, + 39.52000538941186 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.50422601681795, + 39.8093780132153 + ], + [ + -87.50422601681795, + 40.098750637018746 + ], + [ + -87.1660217142001, + 40.098750637018746 + ], + [ + -87.1660217142001, + 39.8093780132153 + ], + [ + -87.50422601681795, + 39.8093780132153 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.50422601681795, + 40.098750637018746 + ], + [ + -87.50422601681795, + 40.38812326082219 + ], + [ + -87.1660217142001, + 40.38812326082219 + ], + [ + -87.1660217142001, + 40.098750637018746 + ], + [ + -87.50422601681795, + 40.098750637018746 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.50422601681795, + 40.38812326082219 + ], + [ + -87.50422601681795, + 40.677495884625635 + ], + [ + -87.1660217142001, + 40.677495884625635 + ], + [ + -87.1660217142001, + 40.38812326082219 + ], + [ + -87.50422601681795, + 40.38812326082219 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.1660217142001, + 31.12819929911196 + ], + [ + -87.1660217142001, + 31.417571922915403 + ], + [ + -86.82781741158225, + 31.417571922915403 + ], + [ + -86.82781741158225, + 31.12819929911196 + ], + [ + -87.1660217142001, + 31.12819929911196 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.1660217142001, + 31.417571922915403 + ], + [ + -87.1660217142001, + 31.706944546718848 + ], + [ + -86.82781741158225, + 31.706944546718848 + ], + [ + -86.82781741158225, + 31.417571922915403 + ], + [ + -87.1660217142001, + 31.417571922915403 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.1660217142001, + 31.706944546718848 + ], + [ + -87.1660217142001, + 31.996317170522293 + ], + [ + -86.82781741158225, + 31.996317170522293 + ], + [ + -86.82781741158225, + 31.706944546718848 + ], + [ + -87.1660217142001, + 31.706944546718848 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.1660217142001, + 31.996317170522293 + ], + [ + -87.1660217142001, + 32.28568979432574 + ], + [ + -86.82781741158225, + 32.28568979432574 + ], + [ + -86.82781741158225, + 31.996317170522293 + ], + [ + -87.1660217142001, + 31.996317170522293 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.1660217142001, + 32.28568979432574 + ], + [ + -87.1660217142001, + 32.575062418129185 + ], + [ + -86.82781741158225, + 32.575062418129185 + ], + [ + -86.82781741158225, + 32.28568979432574 + ], + [ + -87.1660217142001, + 32.28568979432574 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.1660217142001, + 32.575062418129185 + ], + [ + -87.1660217142001, + 32.86443504193263 + ], + [ + -86.82781741158225, + 32.86443504193263 + ], + [ + -86.82781741158225, + 32.575062418129185 + ], + [ + -87.1660217142001, + 32.575062418129185 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.1660217142001, + 32.86443504193263 + ], + [ + -87.1660217142001, + 33.153807665736075 + ], + [ + -86.82781741158225, + 33.153807665736075 + ], + [ + -86.82781741158225, + 32.86443504193263 + ], + [ + -87.1660217142001, + 32.86443504193263 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.1660217142001, + 33.153807665736075 + ], + [ + -87.1660217142001, + 33.44318028953952 + ], + [ + -86.82781741158225, + 33.44318028953952 + ], + [ + -86.82781741158225, + 33.153807665736075 + ], + [ + -87.1660217142001, + 33.153807665736075 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.1660217142001, + 33.44318028953952 + ], + [ + -87.1660217142001, + 33.732552913342964 + ], + [ + -86.82781741158225, + 33.732552913342964 + ], + [ + -86.82781741158225, + 33.44318028953952 + ], + [ + -87.1660217142001, + 33.44318028953952 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.1660217142001, + 33.732552913342964 + ], + [ + -87.1660217142001, + 34.02192553714641 + ], + [ + -86.82781741158225, + 34.02192553714641 + ], + [ + -86.82781741158225, + 33.732552913342964 + ], + [ + -87.1660217142001, + 33.732552913342964 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.1660217142001, + 34.02192553714641 + ], + [ + -87.1660217142001, + 34.31129816094985 + ], + [ + -86.82781741158225, + 34.31129816094985 + ], + [ + -86.82781741158225, + 34.02192553714641 + ], + [ + -87.1660217142001, + 34.02192553714641 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.1660217142001, + 34.31129816094985 + ], + [ + -87.1660217142001, + 34.6006707847533 + ], + [ + -86.82781741158225, + 34.6006707847533 + ], + [ + -86.82781741158225, + 34.31129816094985 + ], + [ + -87.1660217142001, + 34.31129816094985 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.1660217142001, + 34.6006707847533 + ], + [ + -87.1660217142001, + 34.89004340855674 + ], + [ + -86.82781741158225, + 34.89004340855674 + ], + [ + -86.82781741158225, + 34.6006707847533 + ], + [ + -87.1660217142001, + 34.6006707847533 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.1660217142001, + 34.89004340855674 + ], + [ + -87.1660217142001, + 35.17941603236019 + ], + [ + -86.82781741158225, + 35.17941603236019 + ], + [ + -86.82781741158225, + 34.89004340855674 + ], + [ + -87.1660217142001, + 34.89004340855674 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.1660217142001, + 35.17941603236019 + ], + [ + -87.1660217142001, + 35.46878865616363 + ], + [ + -86.82781741158225, + 35.46878865616363 + ], + [ + -86.82781741158225, + 35.17941603236019 + ], + [ + -87.1660217142001, + 35.17941603236019 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.1660217142001, + 35.46878865616363 + ], + [ + -87.1660217142001, + 35.75816127996708 + ], + [ + -86.82781741158225, + 35.75816127996708 + ], + [ + -86.82781741158225, + 35.46878865616363 + ], + [ + -87.1660217142001, + 35.46878865616363 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.1660217142001, + 35.75816127996708 + ], + [ + -87.1660217142001, + 36.04753390377052 + ], + [ + -86.82781741158225, + 36.04753390377052 + ], + [ + -86.82781741158225, + 35.75816127996708 + ], + [ + -87.1660217142001, + 35.75816127996708 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.1660217142001, + 36.04753390377052 + ], + [ + -87.1660217142001, + 36.336906527573966 + ], + [ + -86.82781741158225, + 36.336906527573966 + ], + [ + -86.82781741158225, + 36.04753390377052 + ], + [ + -87.1660217142001, + 36.04753390377052 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.1660217142001, + 36.336906527573966 + ], + [ + -87.1660217142001, + 36.62627915137741 + ], + [ + -86.82781741158225, + 36.62627915137741 + ], + [ + -86.82781741158225, + 36.336906527573966 + ], + [ + -87.1660217142001, + 36.336906527573966 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.1660217142001, + 36.62627915137741 + ], + [ + -87.1660217142001, + 36.915651775180855 + ], + [ + -86.82781741158225, + 36.915651775180855 + ], + [ + -86.82781741158225, + 36.62627915137741 + ], + [ + -87.1660217142001, + 36.62627915137741 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.1660217142001, + 36.915651775180855 + ], + [ + -87.1660217142001, + 37.2050243989843 + ], + [ + -86.82781741158225, + 37.2050243989843 + ], + [ + -86.82781741158225, + 36.915651775180855 + ], + [ + -87.1660217142001, + 36.915651775180855 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.1660217142001, + 37.2050243989843 + ], + [ + -87.1660217142001, + 37.494397022787744 + ], + [ + -86.82781741158225, + 37.494397022787744 + ], + [ + -86.82781741158225, + 37.2050243989843 + ], + [ + -87.1660217142001, + 37.2050243989843 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.1660217142001, + 37.494397022787744 + ], + [ + -87.1660217142001, + 37.78376964659119 + ], + [ + -86.82781741158225, + 37.78376964659119 + ], + [ + -86.82781741158225, + 37.494397022787744 + ], + [ + -87.1660217142001, + 37.494397022787744 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.1660217142001, + 37.78376964659119 + ], + [ + -87.1660217142001, + 38.073142270394634 + ], + [ + -86.82781741158225, + 38.073142270394634 + ], + [ + -86.82781741158225, + 37.78376964659119 + ], + [ + -87.1660217142001, + 37.78376964659119 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.1660217142001, + 38.073142270394634 + ], + [ + -87.1660217142001, + 38.36251489419808 + ], + [ + -86.82781741158225, + 38.36251489419808 + ], + [ + -86.82781741158225, + 38.073142270394634 + ], + [ + -87.1660217142001, + 38.073142270394634 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.1660217142001, + 38.36251489419808 + ], + [ + -87.1660217142001, + 38.65188751800152 + ], + [ + -86.82781741158225, + 38.65188751800152 + ], + [ + -86.82781741158225, + 38.36251489419808 + ], + [ + -87.1660217142001, + 38.36251489419808 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.1660217142001, + 38.65188751800152 + ], + [ + -87.1660217142001, + 38.94126014180497 + ], + [ + -86.82781741158225, + 38.94126014180497 + ], + [ + -86.82781741158225, + 38.65188751800152 + ], + [ + -87.1660217142001, + 38.65188751800152 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.1660217142001, + 38.94126014180497 + ], + [ + -87.1660217142001, + 39.23063276560841 + ], + [ + -86.82781741158225, + 39.23063276560841 + ], + [ + -86.82781741158225, + 38.94126014180497 + ], + [ + -87.1660217142001, + 38.94126014180497 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.1660217142001, + 39.23063276560841 + ], + [ + -87.1660217142001, + 39.52000538941186 + ], + [ + -86.82781741158225, + 39.52000538941186 + ], + [ + -86.82781741158225, + 39.23063276560841 + ], + [ + -87.1660217142001, + 39.23063276560841 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.1660217142001, + 39.52000538941186 + ], + [ + -87.1660217142001, + 39.8093780132153 + ], + [ + -86.82781741158225, + 39.8093780132153 + ], + [ + -86.82781741158225, + 39.52000538941186 + ], + [ + -87.1660217142001, + 39.52000538941186 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.1660217142001, + 39.8093780132153 + ], + [ + -87.1660217142001, + 40.098750637018746 + ], + [ + -86.82781741158225, + 40.098750637018746 + ], + [ + -86.82781741158225, + 39.8093780132153 + ], + [ + -87.1660217142001, + 39.8093780132153 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.1660217142001, + 40.098750637018746 + ], + [ + -87.1660217142001, + 40.38812326082219 + ], + [ + -86.82781741158225, + 40.38812326082219 + ], + [ + -86.82781741158225, + 40.098750637018746 + ], + [ + -87.1660217142001, + 40.098750637018746 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.1660217142001, + 40.38812326082219 + ], + [ + -87.1660217142001, + 40.677495884625635 + ], + [ + -86.82781741158225, + 40.677495884625635 + ], + [ + -86.82781741158225, + 40.38812326082219 + ], + [ + -87.1660217142001, + 40.38812326082219 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.82781741158225, + 31.12819929911196 + ], + [ + -86.82781741158225, + 31.417571922915403 + ], + [ + -86.48961310896439, + 31.417571922915403 + ], + [ + -86.48961310896439, + 31.12819929911196 + ], + [ + -86.82781741158225, + 31.12819929911196 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.82781741158225, + 31.417571922915403 + ], + [ + -86.82781741158225, + 31.706944546718848 + ], + [ + -86.48961310896439, + 31.706944546718848 + ], + [ + -86.48961310896439, + 31.417571922915403 + ], + [ + -86.82781741158225, + 31.417571922915403 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.82781741158225, + 31.706944546718848 + ], + [ + -86.82781741158225, + 31.996317170522293 + ], + [ + -86.48961310896439, + 31.996317170522293 + ], + [ + -86.48961310896439, + 31.706944546718848 + ], + [ + -86.82781741158225, + 31.706944546718848 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.82781741158225, + 31.996317170522293 + ], + [ + -86.82781741158225, + 32.28568979432574 + ], + [ + -86.48961310896439, + 32.28568979432574 + ], + [ + -86.48961310896439, + 31.996317170522293 + ], + [ + -86.82781741158225, + 31.996317170522293 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.82781741158225, + 32.28568979432574 + ], + [ + -86.82781741158225, + 32.575062418129185 + ], + [ + -86.48961310896439, + 32.575062418129185 + ], + [ + -86.48961310896439, + 32.28568979432574 + ], + [ + -86.82781741158225, + 32.28568979432574 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.82781741158225, + 32.575062418129185 + ], + [ + -86.82781741158225, + 32.86443504193263 + ], + [ + -86.48961310896439, + 32.86443504193263 + ], + [ + -86.48961310896439, + 32.575062418129185 + ], + [ + -86.82781741158225, + 32.575062418129185 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.82781741158225, + 32.86443504193263 + ], + [ + -86.82781741158225, + 33.153807665736075 + ], + [ + -86.48961310896439, + 33.153807665736075 + ], + [ + -86.48961310896439, + 32.86443504193263 + ], + [ + -86.82781741158225, + 32.86443504193263 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.82781741158225, + 33.153807665736075 + ], + [ + -86.82781741158225, + 33.44318028953952 + ], + [ + -86.48961310896439, + 33.44318028953952 + ], + [ + -86.48961310896439, + 33.153807665736075 + ], + [ + -86.82781741158225, + 33.153807665736075 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.82781741158225, + 33.44318028953952 + ], + [ + -86.82781741158225, + 33.732552913342964 + ], + [ + -86.48961310896439, + 33.732552913342964 + ], + [ + -86.48961310896439, + 33.44318028953952 + ], + [ + -86.82781741158225, + 33.44318028953952 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.82781741158225, + 33.732552913342964 + ], + [ + -86.82781741158225, + 34.02192553714641 + ], + [ + -86.48961310896439, + 34.02192553714641 + ], + [ + -86.48961310896439, + 33.732552913342964 + ], + [ + -86.82781741158225, + 33.732552913342964 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.82781741158225, + 34.02192553714641 + ], + [ + -86.82781741158225, + 34.31129816094985 + ], + [ + -86.48961310896439, + 34.31129816094985 + ], + [ + -86.48961310896439, + 34.02192553714641 + ], + [ + -86.82781741158225, + 34.02192553714641 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.82781741158225, + 34.31129816094985 + ], + [ + -86.82781741158225, + 34.6006707847533 + ], + [ + -86.48961310896439, + 34.6006707847533 + ], + [ + -86.48961310896439, + 34.31129816094985 + ], + [ + -86.82781741158225, + 34.31129816094985 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.82781741158225, + 34.6006707847533 + ], + [ + -86.82781741158225, + 34.89004340855674 + ], + [ + -86.48961310896439, + 34.89004340855674 + ], + [ + -86.48961310896439, + 34.6006707847533 + ], + [ + -86.82781741158225, + 34.6006707847533 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.82781741158225, + 34.89004340855674 + ], + [ + -86.82781741158225, + 35.17941603236019 + ], + [ + -86.48961310896439, + 35.17941603236019 + ], + [ + -86.48961310896439, + 34.89004340855674 + ], + [ + -86.82781741158225, + 34.89004340855674 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.82781741158225, + 35.17941603236019 + ], + [ + -86.82781741158225, + 35.46878865616363 + ], + [ + -86.48961310896439, + 35.46878865616363 + ], + [ + -86.48961310896439, + 35.17941603236019 + ], + [ + -86.82781741158225, + 35.17941603236019 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.82781741158225, + 35.46878865616363 + ], + [ + -86.82781741158225, + 35.75816127996708 + ], + [ + -86.48961310896439, + 35.75816127996708 + ], + [ + -86.48961310896439, + 35.46878865616363 + ], + [ + -86.82781741158225, + 35.46878865616363 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.82781741158225, + 35.75816127996708 + ], + [ + -86.82781741158225, + 36.04753390377052 + ], + [ + -86.48961310896439, + 36.04753390377052 + ], + [ + -86.48961310896439, + 35.75816127996708 + ], + [ + -86.82781741158225, + 35.75816127996708 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.82781741158225, + 36.04753390377052 + ], + [ + -86.82781741158225, + 36.336906527573966 + ], + [ + -86.48961310896439, + 36.336906527573966 + ], + [ + -86.48961310896439, + 36.04753390377052 + ], + [ + -86.82781741158225, + 36.04753390377052 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.82781741158225, + 36.336906527573966 + ], + [ + -86.82781741158225, + 36.62627915137741 + ], + [ + -86.48961310896439, + 36.62627915137741 + ], + [ + -86.48961310896439, + 36.336906527573966 + ], + [ + -86.82781741158225, + 36.336906527573966 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.82781741158225, + 36.62627915137741 + ], + [ + -86.82781741158225, + 36.915651775180855 + ], + [ + -86.48961310896439, + 36.915651775180855 + ], + [ + -86.48961310896439, + 36.62627915137741 + ], + [ + -86.82781741158225, + 36.62627915137741 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.82781741158225, + 36.915651775180855 + ], + [ + -86.82781741158225, + 37.2050243989843 + ], + [ + -86.48961310896439, + 37.2050243989843 + ], + [ + -86.48961310896439, + 36.915651775180855 + ], + [ + -86.82781741158225, + 36.915651775180855 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.82781741158225, + 37.2050243989843 + ], + [ + -86.82781741158225, + 37.494397022787744 + ], + [ + -86.48961310896439, + 37.494397022787744 + ], + [ + -86.48961310896439, + 37.2050243989843 + ], + [ + -86.82781741158225, + 37.2050243989843 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.82781741158225, + 37.494397022787744 + ], + [ + -86.82781741158225, + 37.78376964659119 + ], + [ + -86.48961310896439, + 37.78376964659119 + ], + [ + -86.48961310896439, + 37.494397022787744 + ], + [ + -86.82781741158225, + 37.494397022787744 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.82781741158225, + 37.78376964659119 + ], + [ + -86.82781741158225, + 38.073142270394634 + ], + [ + -86.48961310896439, + 38.073142270394634 + ], + [ + -86.48961310896439, + 37.78376964659119 + ], + [ + -86.82781741158225, + 37.78376964659119 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.82781741158225, + 38.073142270394634 + ], + [ + -86.82781741158225, + 38.36251489419808 + ], + [ + -86.48961310896439, + 38.36251489419808 + ], + [ + -86.48961310896439, + 38.073142270394634 + ], + [ + -86.82781741158225, + 38.073142270394634 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.82781741158225, + 38.36251489419808 + ], + [ + -86.82781741158225, + 38.65188751800152 + ], + [ + -86.48961310896439, + 38.65188751800152 + ], + [ + -86.48961310896439, + 38.36251489419808 + ], + [ + -86.82781741158225, + 38.36251489419808 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.82781741158225, + 38.65188751800152 + ], + [ + -86.82781741158225, + 38.94126014180497 + ], + [ + -86.48961310896439, + 38.94126014180497 + ], + [ + -86.48961310896439, + 38.65188751800152 + ], + [ + -86.82781741158225, + 38.65188751800152 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.82781741158225, + 38.94126014180497 + ], + [ + -86.82781741158225, + 39.23063276560841 + ], + [ + -86.48961310896439, + 39.23063276560841 + ], + [ + -86.48961310896439, + 38.94126014180497 + ], + [ + -86.82781741158225, + 38.94126014180497 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.82781741158225, + 39.23063276560841 + ], + [ + -86.82781741158225, + 39.52000538941186 + ], + [ + -86.48961310896439, + 39.52000538941186 + ], + [ + -86.48961310896439, + 39.23063276560841 + ], + [ + -86.82781741158225, + 39.23063276560841 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.82781741158225, + 39.52000538941186 + ], + [ + -86.82781741158225, + 39.8093780132153 + ], + [ + -86.48961310896439, + 39.8093780132153 + ], + [ + -86.48961310896439, + 39.52000538941186 + ], + [ + -86.82781741158225, + 39.52000538941186 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.82781741158225, + 39.8093780132153 + ], + [ + -86.82781741158225, + 40.098750637018746 + ], + [ + -86.48961310896439, + 40.098750637018746 + ], + [ + -86.48961310896439, + 39.8093780132153 + ], + [ + -86.82781741158225, + 39.8093780132153 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.82781741158225, + 40.098750637018746 + ], + [ + -86.82781741158225, + 40.38812326082219 + ], + [ + -86.48961310896439, + 40.38812326082219 + ], + [ + -86.48961310896439, + 40.098750637018746 + ], + [ + -86.82781741158225, + 40.098750637018746 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.82781741158225, + 40.38812326082219 + ], + [ + -86.82781741158225, + 40.677495884625635 + ], + [ + -86.48961310896439, + 40.677495884625635 + ], + [ + -86.48961310896439, + 40.38812326082219 + ], + [ + -86.82781741158225, + 40.38812326082219 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.48961310896439, + 31.12819929911196 + ], + [ + -86.48961310896439, + 31.417571922915403 + ], + [ + -86.15140880634654, + 31.417571922915403 + ], + [ + -86.15140880634654, + 31.12819929911196 + ], + [ + -86.48961310896439, + 31.12819929911196 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.48961310896439, + 31.417571922915403 + ], + [ + -86.48961310896439, + 31.706944546718848 + ], + [ + -86.15140880634654, + 31.706944546718848 + ], + [ + -86.15140880634654, + 31.417571922915403 + ], + [ + -86.48961310896439, + 31.417571922915403 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.48961310896439, + 31.706944546718848 + ], + [ + -86.48961310896439, + 31.996317170522293 + ], + [ + -86.15140880634654, + 31.996317170522293 + ], + [ + -86.15140880634654, + 31.706944546718848 + ], + [ + -86.48961310896439, + 31.706944546718848 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.48961310896439, + 31.996317170522293 + ], + [ + -86.48961310896439, + 32.28568979432574 + ], + [ + -86.15140880634654, + 32.28568979432574 + ], + [ + -86.15140880634654, + 31.996317170522293 + ], + [ + -86.48961310896439, + 31.996317170522293 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.48961310896439, + 32.28568979432574 + ], + [ + -86.48961310896439, + 32.575062418129185 + ], + [ + -86.15140880634654, + 32.575062418129185 + ], + [ + -86.15140880634654, + 32.28568979432574 + ], + [ + -86.48961310896439, + 32.28568979432574 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.48961310896439, + 32.575062418129185 + ], + [ + -86.48961310896439, + 32.86443504193263 + ], + [ + -86.15140880634654, + 32.86443504193263 + ], + [ + -86.15140880634654, + 32.575062418129185 + ], + [ + -86.48961310896439, + 32.575062418129185 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.48961310896439, + 32.86443504193263 + ], + [ + -86.48961310896439, + 33.153807665736075 + ], + [ + -86.15140880634654, + 33.153807665736075 + ], + [ + -86.15140880634654, + 32.86443504193263 + ], + [ + -86.48961310896439, + 32.86443504193263 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.48961310896439, + 33.153807665736075 + ], + [ + -86.48961310896439, + 33.44318028953952 + ], + [ + -86.15140880634654, + 33.44318028953952 + ], + [ + -86.15140880634654, + 33.153807665736075 + ], + [ + -86.48961310896439, + 33.153807665736075 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.48961310896439, + 33.44318028953952 + ], + [ + -86.48961310896439, + 33.732552913342964 + ], + [ + -86.15140880634654, + 33.732552913342964 + ], + [ + -86.15140880634654, + 33.44318028953952 + ], + [ + -86.48961310896439, + 33.44318028953952 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.48961310896439, + 33.732552913342964 + ], + [ + -86.48961310896439, + 34.02192553714641 + ], + [ + -86.15140880634654, + 34.02192553714641 + ], + [ + -86.15140880634654, + 33.732552913342964 + ], + [ + -86.48961310896439, + 33.732552913342964 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.48961310896439, + 34.02192553714641 + ], + [ + -86.48961310896439, + 34.31129816094985 + ], + [ + -86.15140880634654, + 34.31129816094985 + ], + [ + -86.15140880634654, + 34.02192553714641 + ], + [ + -86.48961310896439, + 34.02192553714641 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.48961310896439, + 34.31129816094985 + ], + [ + -86.48961310896439, + 34.6006707847533 + ], + [ + -86.15140880634654, + 34.6006707847533 + ], + [ + -86.15140880634654, + 34.31129816094985 + ], + [ + -86.48961310896439, + 34.31129816094985 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.48961310896439, + 34.6006707847533 + ], + [ + -86.48961310896439, + 34.89004340855674 + ], + [ + -86.15140880634654, + 34.89004340855674 + ], + [ + -86.15140880634654, + 34.6006707847533 + ], + [ + -86.48961310896439, + 34.6006707847533 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.48961310896439, + 34.89004340855674 + ], + [ + -86.48961310896439, + 35.17941603236019 + ], + [ + -86.15140880634654, + 35.17941603236019 + ], + [ + -86.15140880634654, + 34.89004340855674 + ], + [ + -86.48961310896439, + 34.89004340855674 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.48961310896439, + 35.17941603236019 + ], + [ + -86.48961310896439, + 35.46878865616363 + ], + [ + -86.15140880634654, + 35.46878865616363 + ], + [ + -86.15140880634654, + 35.17941603236019 + ], + [ + -86.48961310896439, + 35.17941603236019 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.48961310896439, + 35.46878865616363 + ], + [ + -86.48961310896439, + 35.75816127996708 + ], + [ + -86.15140880634654, + 35.75816127996708 + ], + [ + -86.15140880634654, + 35.46878865616363 + ], + [ + -86.48961310896439, + 35.46878865616363 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.48961310896439, + 35.75816127996708 + ], + [ + -86.48961310896439, + 36.04753390377052 + ], + [ + -86.15140880634654, + 36.04753390377052 + ], + [ + -86.15140880634654, + 35.75816127996708 + ], + [ + -86.48961310896439, + 35.75816127996708 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.48961310896439, + 36.04753390377052 + ], + [ + -86.48961310896439, + 36.336906527573966 + ], + [ + -86.15140880634654, + 36.336906527573966 + ], + [ + -86.15140880634654, + 36.04753390377052 + ], + [ + -86.48961310896439, + 36.04753390377052 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.48961310896439, + 36.336906527573966 + ], + [ + -86.48961310896439, + 36.62627915137741 + ], + [ + -86.15140880634654, + 36.62627915137741 + ], + [ + -86.15140880634654, + 36.336906527573966 + ], + [ + -86.48961310896439, + 36.336906527573966 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.48961310896439, + 36.62627915137741 + ], + [ + -86.48961310896439, + 36.915651775180855 + ], + [ + -86.15140880634654, + 36.915651775180855 + ], + [ + -86.15140880634654, + 36.62627915137741 + ], + [ + -86.48961310896439, + 36.62627915137741 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.48961310896439, + 36.915651775180855 + ], + [ + -86.48961310896439, + 37.2050243989843 + ], + [ + -86.15140880634654, + 37.2050243989843 + ], + [ + -86.15140880634654, + 36.915651775180855 + ], + [ + -86.48961310896439, + 36.915651775180855 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.48961310896439, + 37.2050243989843 + ], + [ + -86.48961310896439, + 37.494397022787744 + ], + [ + -86.15140880634654, + 37.494397022787744 + ], + [ + -86.15140880634654, + 37.2050243989843 + ], + [ + -86.48961310896439, + 37.2050243989843 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.48961310896439, + 37.494397022787744 + ], + [ + -86.48961310896439, + 37.78376964659119 + ], + [ + -86.15140880634654, + 37.78376964659119 + ], + [ + -86.15140880634654, + 37.494397022787744 + ], + [ + -86.48961310896439, + 37.494397022787744 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.48961310896439, + 37.78376964659119 + ], + [ + -86.48961310896439, + 38.073142270394634 + ], + [ + -86.15140880634654, + 38.073142270394634 + ], + [ + -86.15140880634654, + 37.78376964659119 + ], + [ + -86.48961310896439, + 37.78376964659119 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.48961310896439, + 38.073142270394634 + ], + [ + -86.48961310896439, + 38.36251489419808 + ], + [ + -86.15140880634654, + 38.36251489419808 + ], + [ + -86.15140880634654, + 38.073142270394634 + ], + [ + -86.48961310896439, + 38.073142270394634 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.48961310896439, + 38.36251489419808 + ], + [ + -86.48961310896439, + 38.65188751800152 + ], + [ + -86.15140880634654, + 38.65188751800152 + ], + [ + -86.15140880634654, + 38.36251489419808 + ], + [ + -86.48961310896439, + 38.36251489419808 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.48961310896439, + 38.65188751800152 + ], + [ + -86.48961310896439, + 38.94126014180497 + ], + [ + -86.15140880634654, + 38.94126014180497 + ], + [ + -86.15140880634654, + 38.65188751800152 + ], + [ + -86.48961310896439, + 38.65188751800152 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.48961310896439, + 38.94126014180497 + ], + [ + -86.48961310896439, + 39.23063276560841 + ], + [ + -86.15140880634654, + 39.23063276560841 + ], + [ + -86.15140880634654, + 38.94126014180497 + ], + [ + -86.48961310896439, + 38.94126014180497 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.48961310896439, + 39.23063276560841 + ], + [ + -86.48961310896439, + 39.52000538941186 + ], + [ + -86.15140880634654, + 39.52000538941186 + ], + [ + -86.15140880634654, + 39.23063276560841 + ], + [ + -86.48961310896439, + 39.23063276560841 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.48961310896439, + 39.52000538941186 + ], + [ + -86.48961310896439, + 39.8093780132153 + ], + [ + -86.15140880634654, + 39.8093780132153 + ], + [ + -86.15140880634654, + 39.52000538941186 + ], + [ + -86.48961310896439, + 39.52000538941186 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.48961310896439, + 39.8093780132153 + ], + [ + -86.48961310896439, + 40.098750637018746 + ], + [ + -86.15140880634654, + 40.098750637018746 + ], + [ + -86.15140880634654, + 39.8093780132153 + ], + [ + -86.48961310896439, + 39.8093780132153 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.48961310896439, + 40.098750637018746 + ], + [ + -86.48961310896439, + 40.38812326082219 + ], + [ + -86.15140880634654, + 40.38812326082219 + ], + [ + -86.15140880634654, + 40.098750637018746 + ], + [ + -86.48961310896439, + 40.098750637018746 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.48961310896439, + 40.38812326082219 + ], + [ + -86.48961310896439, + 40.677495884625635 + ], + [ + -86.15140880634654, + 40.677495884625635 + ], + [ + -86.15140880634654, + 40.38812326082219 + ], + [ + -86.48961310896439, + 40.38812326082219 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.15140880634654, + 31.12819929911196 + ], + [ + -86.15140880634654, + 31.417571922915403 + ], + [ + -85.81320450372868, + 31.417571922915403 + ], + [ + -85.81320450372868, + 31.12819929911196 + ], + [ + -86.15140880634654, + 31.12819929911196 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.15140880634654, + 31.417571922915403 + ], + [ + -86.15140880634654, + 31.706944546718848 + ], + [ + -85.81320450372868, + 31.706944546718848 + ], + [ + -85.81320450372868, + 31.417571922915403 + ], + [ + -86.15140880634654, + 31.417571922915403 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.15140880634654, + 31.706944546718848 + ], + [ + -86.15140880634654, + 31.996317170522293 + ], + [ + -85.81320450372868, + 31.996317170522293 + ], + [ + -85.81320450372868, + 31.706944546718848 + ], + [ + -86.15140880634654, + 31.706944546718848 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.15140880634654, + 31.996317170522293 + ], + [ + -86.15140880634654, + 32.28568979432574 + ], + [ + -85.81320450372868, + 32.28568979432574 + ], + [ + -85.81320450372868, + 31.996317170522293 + ], + [ + -86.15140880634654, + 31.996317170522293 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.15140880634654, + 32.28568979432574 + ], + [ + -86.15140880634654, + 32.575062418129185 + ], + [ + -85.81320450372868, + 32.575062418129185 + ], + [ + -85.81320450372868, + 32.28568979432574 + ], + [ + -86.15140880634654, + 32.28568979432574 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.15140880634654, + 32.575062418129185 + ], + [ + -86.15140880634654, + 32.86443504193263 + ], + [ + -85.81320450372868, + 32.86443504193263 + ], + [ + -85.81320450372868, + 32.575062418129185 + ], + [ + -86.15140880634654, + 32.575062418129185 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.15140880634654, + 32.86443504193263 + ], + [ + -86.15140880634654, + 33.153807665736075 + ], + [ + -85.81320450372868, + 33.153807665736075 + ], + [ + -85.81320450372868, + 32.86443504193263 + ], + [ + -86.15140880634654, + 32.86443504193263 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.15140880634654, + 33.153807665736075 + ], + [ + -86.15140880634654, + 33.44318028953952 + ], + [ + -85.81320450372868, + 33.44318028953952 + ], + [ + -85.81320450372868, + 33.153807665736075 + ], + [ + -86.15140880634654, + 33.153807665736075 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.15140880634654, + 33.44318028953952 + ], + [ + -86.15140880634654, + 33.732552913342964 + ], + [ + -85.81320450372868, + 33.732552913342964 + ], + [ + -85.81320450372868, + 33.44318028953952 + ], + [ + -86.15140880634654, + 33.44318028953952 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.15140880634654, + 33.732552913342964 + ], + [ + -86.15140880634654, + 34.02192553714641 + ], + [ + -85.81320450372868, + 34.02192553714641 + ], + [ + -85.81320450372868, + 33.732552913342964 + ], + [ + -86.15140880634654, + 33.732552913342964 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.15140880634654, + 34.02192553714641 + ], + [ + -86.15140880634654, + 34.31129816094985 + ], + [ + -85.81320450372868, + 34.31129816094985 + ], + [ + -85.81320450372868, + 34.02192553714641 + ], + [ + -86.15140880634654, + 34.02192553714641 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.15140880634654, + 34.31129816094985 + ], + [ + -86.15140880634654, + 34.6006707847533 + ], + [ + -85.81320450372868, + 34.6006707847533 + ], + [ + -85.81320450372868, + 34.31129816094985 + ], + [ + -86.15140880634654, + 34.31129816094985 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.15140880634654, + 34.6006707847533 + ], + [ + -86.15140880634654, + 34.89004340855674 + ], + [ + -85.81320450372868, + 34.89004340855674 + ], + [ + -85.81320450372868, + 34.6006707847533 + ], + [ + -86.15140880634654, + 34.6006707847533 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.15140880634654, + 34.89004340855674 + ], + [ + -86.15140880634654, + 35.17941603236019 + ], + [ + -85.81320450372868, + 35.17941603236019 + ], + [ + -85.81320450372868, + 34.89004340855674 + ], + [ + -86.15140880634654, + 34.89004340855674 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.15140880634654, + 35.17941603236019 + ], + [ + -86.15140880634654, + 35.46878865616363 + ], + [ + -85.81320450372868, + 35.46878865616363 + ], + [ + -85.81320450372868, + 35.17941603236019 + ], + [ + -86.15140880634654, + 35.17941603236019 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.15140880634654, + 35.46878865616363 + ], + [ + -86.15140880634654, + 35.75816127996708 + ], + [ + -85.81320450372868, + 35.75816127996708 + ], + [ + -85.81320450372868, + 35.46878865616363 + ], + [ + -86.15140880634654, + 35.46878865616363 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.15140880634654, + 35.75816127996708 + ], + [ + -86.15140880634654, + 36.04753390377052 + ], + [ + -85.81320450372868, + 36.04753390377052 + ], + [ + -85.81320450372868, + 35.75816127996708 + ], + [ + -86.15140880634654, + 35.75816127996708 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.15140880634654, + 36.04753390377052 + ], + [ + -86.15140880634654, + 36.336906527573966 + ], + [ + -85.81320450372868, + 36.336906527573966 + ], + [ + -85.81320450372868, + 36.04753390377052 + ], + [ + -86.15140880634654, + 36.04753390377052 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.15140880634654, + 36.336906527573966 + ], + [ + -86.15140880634654, + 36.62627915137741 + ], + [ + -85.81320450372868, + 36.62627915137741 + ], + [ + -85.81320450372868, + 36.336906527573966 + ], + [ + -86.15140880634654, + 36.336906527573966 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.15140880634654, + 36.62627915137741 + ], + [ + -86.15140880634654, + 36.915651775180855 + ], + [ + -85.81320450372868, + 36.915651775180855 + ], + [ + -85.81320450372868, + 36.62627915137741 + ], + [ + -86.15140880634654, + 36.62627915137741 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.15140880634654, + 36.915651775180855 + ], + [ + -86.15140880634654, + 37.2050243989843 + ], + [ + -85.81320450372868, + 37.2050243989843 + ], + [ + -85.81320450372868, + 36.915651775180855 + ], + [ + -86.15140880634654, + 36.915651775180855 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.15140880634654, + 37.2050243989843 + ], + [ + -86.15140880634654, + 37.494397022787744 + ], + [ + -85.81320450372868, + 37.494397022787744 + ], + [ + -85.81320450372868, + 37.2050243989843 + ], + [ + -86.15140880634654, + 37.2050243989843 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.15140880634654, + 37.494397022787744 + ], + [ + -86.15140880634654, + 37.78376964659119 + ], + [ + -85.81320450372868, + 37.78376964659119 + ], + [ + -85.81320450372868, + 37.494397022787744 + ], + [ + -86.15140880634654, + 37.494397022787744 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.15140880634654, + 37.78376964659119 + ], + [ + -86.15140880634654, + 38.073142270394634 + ], + [ + -85.81320450372868, + 38.073142270394634 + ], + [ + -85.81320450372868, + 37.78376964659119 + ], + [ + -86.15140880634654, + 37.78376964659119 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.15140880634654, + 38.073142270394634 + ], + [ + -86.15140880634654, + 38.36251489419808 + ], + [ + -85.81320450372868, + 38.36251489419808 + ], + [ + -85.81320450372868, + 38.073142270394634 + ], + [ + -86.15140880634654, + 38.073142270394634 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.15140880634654, + 38.36251489419808 + ], + [ + -86.15140880634654, + 38.65188751800152 + ], + [ + -85.81320450372868, + 38.65188751800152 + ], + [ + -85.81320450372868, + 38.36251489419808 + ], + [ + -86.15140880634654, + 38.36251489419808 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.15140880634654, + 38.65188751800152 + ], + [ + -86.15140880634654, + 38.94126014180497 + ], + [ + -85.81320450372868, + 38.94126014180497 + ], + [ + -85.81320450372868, + 38.65188751800152 + ], + [ + -86.15140880634654, + 38.65188751800152 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.15140880634654, + 38.94126014180497 + ], + [ + -86.15140880634654, + 39.23063276560841 + ], + [ + -85.81320450372868, + 39.23063276560841 + ], + [ + -85.81320450372868, + 38.94126014180497 + ], + [ + -86.15140880634654, + 38.94126014180497 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.15140880634654, + 39.23063276560841 + ], + [ + -86.15140880634654, + 39.52000538941186 + ], + [ + -85.81320450372868, + 39.52000538941186 + ], + [ + -85.81320450372868, + 39.23063276560841 + ], + [ + -86.15140880634654, + 39.23063276560841 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.15140880634654, + 39.52000538941186 + ], + [ + -86.15140880634654, + 39.8093780132153 + ], + [ + -85.81320450372868, + 39.8093780132153 + ], + [ + -85.81320450372868, + 39.52000538941186 + ], + [ + -86.15140880634654, + 39.52000538941186 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.15140880634654, + 39.8093780132153 + ], + [ + -86.15140880634654, + 40.098750637018746 + ], + [ + -85.81320450372868, + 40.098750637018746 + ], + [ + -85.81320450372868, + 39.8093780132153 + ], + [ + -86.15140880634654, + 39.8093780132153 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.15140880634654, + 40.098750637018746 + ], + [ + -86.15140880634654, + 40.38812326082219 + ], + [ + -85.81320450372868, + 40.38812326082219 + ], + [ + -85.81320450372868, + 40.098750637018746 + ], + [ + -86.15140880634654, + 40.098750637018746 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.15140880634654, + 40.38812326082219 + ], + [ + -86.15140880634654, + 40.677495884625635 + ], + [ + -85.81320450372868, + 40.677495884625635 + ], + [ + -85.81320450372868, + 40.38812326082219 + ], + [ + -86.15140880634654, + 40.38812326082219 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.81320450372868, + 31.12819929911196 + ], + [ + -85.81320450372868, + 31.417571922915403 + ], + [ + -85.47500020111083, + 31.417571922915403 + ], + [ + -85.47500020111083, + 31.12819929911196 + ], + [ + -85.81320450372868, + 31.12819929911196 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.81320450372868, + 31.417571922915403 + ], + [ + -85.81320450372868, + 31.706944546718848 + ], + [ + -85.47500020111083, + 31.706944546718848 + ], + [ + -85.47500020111083, + 31.417571922915403 + ], + [ + -85.81320450372868, + 31.417571922915403 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.81320450372868, + 31.706944546718848 + ], + [ + -85.81320450372868, + 31.996317170522293 + ], + [ + -85.47500020111083, + 31.996317170522293 + ], + [ + -85.47500020111083, + 31.706944546718848 + ], + [ + -85.81320450372868, + 31.706944546718848 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.81320450372868, + 31.996317170522293 + ], + [ + -85.81320450372868, + 32.28568979432574 + ], + [ + -85.47500020111083, + 32.28568979432574 + ], + [ + -85.47500020111083, + 31.996317170522293 + ], + [ + -85.81320450372868, + 31.996317170522293 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.81320450372868, + 32.28568979432574 + ], + [ + -85.81320450372868, + 32.575062418129185 + ], + [ + -85.47500020111083, + 32.575062418129185 + ], + [ + -85.47500020111083, + 32.28568979432574 + ], + [ + -85.81320450372868, + 32.28568979432574 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.81320450372868, + 32.575062418129185 + ], + [ + -85.81320450372868, + 32.86443504193263 + ], + [ + -85.47500020111083, + 32.86443504193263 + ], + [ + -85.47500020111083, + 32.575062418129185 + ], + [ + -85.81320450372868, + 32.575062418129185 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.81320450372868, + 32.86443504193263 + ], + [ + -85.81320450372868, + 33.153807665736075 + ], + [ + -85.47500020111083, + 33.153807665736075 + ], + [ + -85.47500020111083, + 32.86443504193263 + ], + [ + -85.81320450372868, + 32.86443504193263 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.81320450372868, + 33.153807665736075 + ], + [ + -85.81320450372868, + 33.44318028953952 + ], + [ + -85.47500020111083, + 33.44318028953952 + ], + [ + -85.47500020111083, + 33.153807665736075 + ], + [ + -85.81320450372868, + 33.153807665736075 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.81320450372868, + 33.44318028953952 + ], + [ + -85.81320450372868, + 33.732552913342964 + ], + [ + -85.47500020111083, + 33.732552913342964 + ], + [ + -85.47500020111083, + 33.44318028953952 + ], + [ + -85.81320450372868, + 33.44318028953952 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.81320450372868, + 33.732552913342964 + ], + [ + -85.81320450372868, + 34.02192553714641 + ], + [ + -85.47500020111083, + 34.02192553714641 + ], + [ + -85.47500020111083, + 33.732552913342964 + ], + [ + -85.81320450372868, + 33.732552913342964 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.81320450372868, + 34.02192553714641 + ], + [ + -85.81320450372868, + 34.31129816094985 + ], + [ + -85.47500020111083, + 34.31129816094985 + ], + [ + -85.47500020111083, + 34.02192553714641 + ], + [ + -85.81320450372868, + 34.02192553714641 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.81320450372868, + 34.31129816094985 + ], + [ + -85.81320450372868, + 34.6006707847533 + ], + [ + -85.47500020111083, + 34.6006707847533 + ], + [ + -85.47500020111083, + 34.31129816094985 + ], + [ + -85.81320450372868, + 34.31129816094985 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.81320450372868, + 34.6006707847533 + ], + [ + -85.81320450372868, + 34.89004340855674 + ], + [ + -85.47500020111083, + 34.89004340855674 + ], + [ + -85.47500020111083, + 34.6006707847533 + ], + [ + -85.81320450372868, + 34.6006707847533 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.81320450372868, + 34.89004340855674 + ], + [ + -85.81320450372868, + 35.17941603236019 + ], + [ + -85.47500020111083, + 35.17941603236019 + ], + [ + -85.47500020111083, + 34.89004340855674 + ], + [ + -85.81320450372868, + 34.89004340855674 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.81320450372868, + 35.17941603236019 + ], + [ + -85.81320450372868, + 35.46878865616363 + ], + [ + -85.47500020111083, + 35.46878865616363 + ], + [ + -85.47500020111083, + 35.17941603236019 + ], + [ + -85.81320450372868, + 35.17941603236019 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.81320450372868, + 35.46878865616363 + ], + [ + -85.81320450372868, + 35.75816127996708 + ], + [ + -85.47500020111083, + 35.75816127996708 + ], + [ + -85.47500020111083, + 35.46878865616363 + ], + [ + -85.81320450372868, + 35.46878865616363 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.81320450372868, + 35.75816127996708 + ], + [ + -85.81320450372868, + 36.04753390377052 + ], + [ + -85.47500020111083, + 36.04753390377052 + ], + [ + -85.47500020111083, + 35.75816127996708 + ], + [ + -85.81320450372868, + 35.75816127996708 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.81320450372868, + 36.04753390377052 + ], + [ + -85.81320450372868, + 36.336906527573966 + ], + [ + -85.47500020111083, + 36.336906527573966 + ], + [ + -85.47500020111083, + 36.04753390377052 + ], + [ + -85.81320450372868, + 36.04753390377052 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.81320450372868, + 36.336906527573966 + ], + [ + -85.81320450372868, + 36.62627915137741 + ], + [ + -85.47500020111083, + 36.62627915137741 + ], + [ + -85.47500020111083, + 36.336906527573966 + ], + [ + -85.81320450372868, + 36.336906527573966 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.81320450372868, + 36.62627915137741 + ], + [ + -85.81320450372868, + 36.915651775180855 + ], + [ + -85.47500020111083, + 36.915651775180855 + ], + [ + -85.47500020111083, + 36.62627915137741 + ], + [ + -85.81320450372868, + 36.62627915137741 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.81320450372868, + 36.915651775180855 + ], + [ + -85.81320450372868, + 37.2050243989843 + ], + [ + -85.47500020111083, + 37.2050243989843 + ], + [ + -85.47500020111083, + 36.915651775180855 + ], + [ + -85.81320450372868, + 36.915651775180855 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.81320450372868, + 37.2050243989843 + ], + [ + -85.81320450372868, + 37.494397022787744 + ], + [ + -85.47500020111083, + 37.494397022787744 + ], + [ + -85.47500020111083, + 37.2050243989843 + ], + [ + -85.81320450372868, + 37.2050243989843 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.81320450372868, + 37.494397022787744 + ], + [ + -85.81320450372868, + 37.78376964659119 + ], + [ + -85.47500020111083, + 37.78376964659119 + ], + [ + -85.47500020111083, + 37.494397022787744 + ], + [ + -85.81320450372868, + 37.494397022787744 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.81320450372868, + 37.78376964659119 + ], + [ + -85.81320450372868, + 38.073142270394634 + ], + [ + -85.47500020111083, + 38.073142270394634 + ], + [ + -85.47500020111083, + 37.78376964659119 + ], + [ + -85.81320450372868, + 37.78376964659119 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.81320450372868, + 38.073142270394634 + ], + [ + -85.81320450372868, + 38.36251489419808 + ], + [ + -85.47500020111083, + 38.36251489419808 + ], + [ + -85.47500020111083, + 38.073142270394634 + ], + [ + -85.81320450372868, + 38.073142270394634 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.81320450372868, + 38.36251489419808 + ], + [ + -85.81320450372868, + 38.65188751800152 + ], + [ + -85.47500020111083, + 38.65188751800152 + ], + [ + -85.47500020111083, + 38.36251489419808 + ], + [ + -85.81320450372868, + 38.36251489419808 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.81320450372868, + 38.65188751800152 + ], + [ + -85.81320450372868, + 38.94126014180497 + ], + [ + -85.47500020111083, + 38.94126014180497 + ], + [ + -85.47500020111083, + 38.65188751800152 + ], + [ + -85.81320450372868, + 38.65188751800152 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.81320450372868, + 38.94126014180497 + ], + [ + -85.81320450372868, + 39.23063276560841 + ], + [ + -85.47500020111083, + 39.23063276560841 + ], + [ + -85.47500020111083, + 38.94126014180497 + ], + [ + -85.81320450372868, + 38.94126014180497 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.81320450372868, + 39.23063276560841 + ], + [ + -85.81320450372868, + 39.52000538941186 + ], + [ + -85.47500020111083, + 39.52000538941186 + ], + [ + -85.47500020111083, + 39.23063276560841 + ], + [ + -85.81320450372868, + 39.23063276560841 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.81320450372868, + 39.52000538941186 + ], + [ + -85.81320450372868, + 39.8093780132153 + ], + [ + -85.47500020111083, + 39.8093780132153 + ], + [ + -85.47500020111083, + 39.52000538941186 + ], + [ + -85.81320450372868, + 39.52000538941186 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.81320450372868, + 39.8093780132153 + ], + [ + -85.81320450372868, + 40.098750637018746 + ], + [ + -85.47500020111083, + 40.098750637018746 + ], + [ + -85.47500020111083, + 39.8093780132153 + ], + [ + -85.81320450372868, + 39.8093780132153 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.81320450372868, + 40.098750637018746 + ], + [ + -85.81320450372868, + 40.38812326082219 + ], + [ + -85.47500020111083, + 40.38812326082219 + ], + [ + -85.47500020111083, + 40.098750637018746 + ], + [ + -85.81320450372868, + 40.098750637018746 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.81320450372868, + 40.38812326082219 + ], + [ + -85.81320450372868, + 40.677495884625635 + ], + [ + -85.47500020111083, + 40.677495884625635 + ], + [ + -85.47500020111083, + 40.38812326082219 + ], + [ + -85.81320450372868, + 40.38812326082219 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.47500020111083, + 31.12819929911196 + ], + [ + -85.47500020111083, + 31.417571922915403 + ], + [ + -85.13679589849298, + 31.417571922915403 + ], + [ + -85.13679589849298, + 31.12819929911196 + ], + [ + -85.47500020111083, + 31.12819929911196 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.47500020111083, + 31.417571922915403 + ], + [ + -85.47500020111083, + 31.706944546718848 + ], + [ + -85.13679589849298, + 31.706944546718848 + ], + [ + -85.13679589849298, + 31.417571922915403 + ], + [ + -85.47500020111083, + 31.417571922915403 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.47500020111083, + 31.706944546718848 + ], + [ + -85.47500020111083, + 31.996317170522293 + ], + [ + -85.13679589849298, + 31.996317170522293 + ], + [ + -85.13679589849298, + 31.706944546718848 + ], + [ + -85.47500020111083, + 31.706944546718848 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.47500020111083, + 31.996317170522293 + ], + [ + -85.47500020111083, + 32.28568979432574 + ], + [ + -85.13679589849298, + 32.28568979432574 + ], + [ + -85.13679589849298, + 31.996317170522293 + ], + [ + -85.47500020111083, + 31.996317170522293 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.47500020111083, + 32.28568979432574 + ], + [ + -85.47500020111083, + 32.575062418129185 + ], + [ + -85.13679589849298, + 32.575062418129185 + ], + [ + -85.13679589849298, + 32.28568979432574 + ], + [ + -85.47500020111083, + 32.28568979432574 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.47500020111083, + 32.575062418129185 + ], + [ + -85.47500020111083, + 32.86443504193263 + ], + [ + -85.13679589849298, + 32.86443504193263 + ], + [ + -85.13679589849298, + 32.575062418129185 + ], + [ + -85.47500020111083, + 32.575062418129185 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.47500020111083, + 32.86443504193263 + ], + [ + -85.47500020111083, + 33.153807665736075 + ], + [ + -85.13679589849298, + 33.153807665736075 + ], + [ + -85.13679589849298, + 32.86443504193263 + ], + [ + -85.47500020111083, + 32.86443504193263 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.47500020111083, + 33.153807665736075 + ], + [ + -85.47500020111083, + 33.44318028953952 + ], + [ + -85.13679589849298, + 33.44318028953952 + ], + [ + -85.13679589849298, + 33.153807665736075 + ], + [ + -85.47500020111083, + 33.153807665736075 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.47500020111083, + 33.44318028953952 + ], + [ + -85.47500020111083, + 33.732552913342964 + ], + [ + -85.13679589849298, + 33.732552913342964 + ], + [ + -85.13679589849298, + 33.44318028953952 + ], + [ + -85.47500020111083, + 33.44318028953952 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.47500020111083, + 33.732552913342964 + ], + [ + -85.47500020111083, + 34.02192553714641 + ], + [ + -85.13679589849298, + 34.02192553714641 + ], + [ + -85.13679589849298, + 33.732552913342964 + ], + [ + -85.47500020111083, + 33.732552913342964 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.47500020111083, + 34.02192553714641 + ], + [ + -85.47500020111083, + 34.31129816094985 + ], + [ + -85.13679589849298, + 34.31129816094985 + ], + [ + -85.13679589849298, + 34.02192553714641 + ], + [ + -85.47500020111083, + 34.02192553714641 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.47500020111083, + 34.31129816094985 + ], + [ + -85.47500020111083, + 34.6006707847533 + ], + [ + -85.13679589849298, + 34.6006707847533 + ], + [ + -85.13679589849298, + 34.31129816094985 + ], + [ + -85.47500020111083, + 34.31129816094985 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.47500020111083, + 34.6006707847533 + ], + [ + -85.47500020111083, + 34.89004340855674 + ], + [ + -85.13679589849298, + 34.89004340855674 + ], + [ + -85.13679589849298, + 34.6006707847533 + ], + [ + -85.47500020111083, + 34.6006707847533 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.47500020111083, + 34.89004340855674 + ], + [ + -85.47500020111083, + 35.17941603236019 + ], + [ + -85.13679589849298, + 35.17941603236019 + ], + [ + -85.13679589849298, + 34.89004340855674 + ], + [ + -85.47500020111083, + 34.89004340855674 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.47500020111083, + 35.17941603236019 + ], + [ + -85.47500020111083, + 35.46878865616363 + ], + [ + -85.13679589849298, + 35.46878865616363 + ], + [ + -85.13679589849298, + 35.17941603236019 + ], + [ + -85.47500020111083, + 35.17941603236019 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.47500020111083, + 35.46878865616363 + ], + [ + -85.47500020111083, + 35.75816127996708 + ], + [ + -85.13679589849298, + 35.75816127996708 + ], + [ + -85.13679589849298, + 35.46878865616363 + ], + [ + -85.47500020111083, + 35.46878865616363 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.47500020111083, + 35.75816127996708 + ], + [ + -85.47500020111083, + 36.04753390377052 + ], + [ + -85.13679589849298, + 36.04753390377052 + ], + [ + -85.13679589849298, + 35.75816127996708 + ], + [ + -85.47500020111083, + 35.75816127996708 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.47500020111083, + 36.04753390377052 + ], + [ + -85.47500020111083, + 36.336906527573966 + ], + [ + -85.13679589849298, + 36.336906527573966 + ], + [ + -85.13679589849298, + 36.04753390377052 + ], + [ + -85.47500020111083, + 36.04753390377052 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.47500020111083, + 36.336906527573966 + ], + [ + -85.47500020111083, + 36.62627915137741 + ], + [ + -85.13679589849298, + 36.62627915137741 + ], + [ + -85.13679589849298, + 36.336906527573966 + ], + [ + -85.47500020111083, + 36.336906527573966 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.47500020111083, + 36.62627915137741 + ], + [ + -85.47500020111083, + 36.915651775180855 + ], + [ + -85.13679589849298, + 36.915651775180855 + ], + [ + -85.13679589849298, + 36.62627915137741 + ], + [ + -85.47500020111083, + 36.62627915137741 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.47500020111083, + 36.915651775180855 + ], + [ + -85.47500020111083, + 37.2050243989843 + ], + [ + -85.13679589849298, + 37.2050243989843 + ], + [ + -85.13679589849298, + 36.915651775180855 + ], + [ + -85.47500020111083, + 36.915651775180855 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.47500020111083, + 37.2050243989843 + ], + [ + -85.47500020111083, + 37.494397022787744 + ], + [ + -85.13679589849298, + 37.494397022787744 + ], + [ + -85.13679589849298, + 37.2050243989843 + ], + [ + -85.47500020111083, + 37.2050243989843 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.47500020111083, + 37.494397022787744 + ], + [ + -85.47500020111083, + 37.78376964659119 + ], + [ + -85.13679589849298, + 37.78376964659119 + ], + [ + -85.13679589849298, + 37.494397022787744 + ], + [ + -85.47500020111083, + 37.494397022787744 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.47500020111083, + 37.78376964659119 + ], + [ + -85.47500020111083, + 38.073142270394634 + ], + [ + -85.13679589849298, + 38.073142270394634 + ], + [ + -85.13679589849298, + 37.78376964659119 + ], + [ + -85.47500020111083, + 37.78376964659119 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.47500020111083, + 38.073142270394634 + ], + [ + -85.47500020111083, + 38.36251489419808 + ], + [ + -85.13679589849298, + 38.36251489419808 + ], + [ + -85.13679589849298, + 38.073142270394634 + ], + [ + -85.47500020111083, + 38.073142270394634 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.47500020111083, + 38.36251489419808 + ], + [ + -85.47500020111083, + 38.65188751800152 + ], + [ + -85.13679589849298, + 38.65188751800152 + ], + [ + -85.13679589849298, + 38.36251489419808 + ], + [ + -85.47500020111083, + 38.36251489419808 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.47500020111083, + 38.65188751800152 + ], + [ + -85.47500020111083, + 38.94126014180497 + ], + [ + -85.13679589849298, + 38.94126014180497 + ], + [ + -85.13679589849298, + 38.65188751800152 + ], + [ + -85.47500020111083, + 38.65188751800152 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.47500020111083, + 38.94126014180497 + ], + [ + -85.47500020111083, + 39.23063276560841 + ], + [ + -85.13679589849298, + 39.23063276560841 + ], + [ + -85.13679589849298, + 38.94126014180497 + ], + [ + -85.47500020111083, + 38.94126014180497 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.47500020111083, + 39.23063276560841 + ], + [ + -85.47500020111083, + 39.52000538941186 + ], + [ + -85.13679589849298, + 39.52000538941186 + ], + [ + -85.13679589849298, + 39.23063276560841 + ], + [ + -85.47500020111083, + 39.23063276560841 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.47500020111083, + 39.52000538941186 + ], + [ + -85.47500020111083, + 39.8093780132153 + ], + [ + -85.13679589849298, + 39.8093780132153 + ], + [ + -85.13679589849298, + 39.52000538941186 + ], + [ + -85.47500020111083, + 39.52000538941186 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.47500020111083, + 39.8093780132153 + ], + [ + -85.47500020111083, + 40.098750637018746 + ], + [ + -85.13679589849298, + 40.098750637018746 + ], + [ + -85.13679589849298, + 39.8093780132153 + ], + [ + -85.47500020111083, + 39.8093780132153 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.47500020111083, + 40.098750637018746 + ], + [ + -85.47500020111083, + 40.38812326082219 + ], + [ + -85.13679589849298, + 40.38812326082219 + ], + [ + -85.13679589849298, + 40.098750637018746 + ], + [ + -85.47500020111083, + 40.098750637018746 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.47500020111083, + 40.38812326082219 + ], + [ + -85.47500020111083, + 40.677495884625635 + ], + [ + -85.13679589849298, + 40.677495884625635 + ], + [ + -85.13679589849298, + 40.38812326082219 + ], + [ + -85.47500020111083, + 40.38812326082219 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.13679589849298, + 31.12819929911196 + ], + [ + -85.13679589849298, + 31.417571922915403 + ], + [ + -84.79859159587512, + 31.417571922915403 + ], + [ + -84.79859159587512, + 31.12819929911196 + ], + [ + -85.13679589849298, + 31.12819929911196 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.13679589849298, + 31.417571922915403 + ], + [ + -85.13679589849298, + 31.706944546718848 + ], + [ + -84.79859159587512, + 31.706944546718848 + ], + [ + -84.79859159587512, + 31.417571922915403 + ], + [ + -85.13679589849298, + 31.417571922915403 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.13679589849298, + 31.706944546718848 + ], + [ + -85.13679589849298, + 31.996317170522293 + ], + [ + -84.79859159587512, + 31.996317170522293 + ], + [ + -84.79859159587512, + 31.706944546718848 + ], + [ + -85.13679589849298, + 31.706944546718848 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.13679589849298, + 31.996317170522293 + ], + [ + -85.13679589849298, + 32.28568979432574 + ], + [ + -84.79859159587512, + 32.28568979432574 + ], + [ + -84.79859159587512, + 31.996317170522293 + ], + [ + -85.13679589849298, + 31.996317170522293 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.13679589849298, + 32.28568979432574 + ], + [ + -85.13679589849298, + 32.575062418129185 + ], + [ + -84.79859159587512, + 32.575062418129185 + ], + [ + -84.79859159587512, + 32.28568979432574 + ], + [ + -85.13679589849298, + 32.28568979432574 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.13679589849298, + 32.575062418129185 + ], + [ + -85.13679589849298, + 32.86443504193263 + ], + [ + -84.79859159587512, + 32.86443504193263 + ], + [ + -84.79859159587512, + 32.575062418129185 + ], + [ + -85.13679589849298, + 32.575062418129185 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.13679589849298, + 32.86443504193263 + ], + [ + -85.13679589849298, + 33.153807665736075 + ], + [ + -84.79859159587512, + 33.153807665736075 + ], + [ + -84.79859159587512, + 32.86443504193263 + ], + [ + -85.13679589849298, + 32.86443504193263 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.13679589849298, + 33.153807665736075 + ], + [ + -85.13679589849298, + 33.44318028953952 + ], + [ + -84.79859159587512, + 33.44318028953952 + ], + [ + -84.79859159587512, + 33.153807665736075 + ], + [ + -85.13679589849298, + 33.153807665736075 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.13679589849298, + 33.44318028953952 + ], + [ + -85.13679589849298, + 33.732552913342964 + ], + [ + -84.79859159587512, + 33.732552913342964 + ], + [ + -84.79859159587512, + 33.44318028953952 + ], + [ + -85.13679589849298, + 33.44318028953952 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.13679589849298, + 33.732552913342964 + ], + [ + -85.13679589849298, + 34.02192553714641 + ], + [ + -84.79859159587512, + 34.02192553714641 + ], + [ + -84.79859159587512, + 33.732552913342964 + ], + [ + -85.13679589849298, + 33.732552913342964 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.13679589849298, + 34.02192553714641 + ], + [ + -85.13679589849298, + 34.31129816094985 + ], + [ + -84.79859159587512, + 34.31129816094985 + ], + [ + -84.79859159587512, + 34.02192553714641 + ], + [ + -85.13679589849298, + 34.02192553714641 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.13679589849298, + 34.31129816094985 + ], + [ + -85.13679589849298, + 34.6006707847533 + ], + [ + -84.79859159587512, + 34.6006707847533 + ], + [ + -84.79859159587512, + 34.31129816094985 + ], + [ + -85.13679589849298, + 34.31129816094985 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.13679589849298, + 34.6006707847533 + ], + [ + -85.13679589849298, + 34.89004340855674 + ], + [ + -84.79859159587512, + 34.89004340855674 + ], + [ + -84.79859159587512, + 34.6006707847533 + ], + [ + -85.13679589849298, + 34.6006707847533 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.13679589849298, + 34.89004340855674 + ], + [ + -85.13679589849298, + 35.17941603236019 + ], + [ + -84.79859159587512, + 35.17941603236019 + ], + [ + -84.79859159587512, + 34.89004340855674 + ], + [ + -85.13679589849298, + 34.89004340855674 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.13679589849298, + 35.17941603236019 + ], + [ + -85.13679589849298, + 35.46878865616363 + ], + [ + -84.79859159587512, + 35.46878865616363 + ], + [ + -84.79859159587512, + 35.17941603236019 + ], + [ + -85.13679589849298, + 35.17941603236019 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.13679589849298, + 35.46878865616363 + ], + [ + -85.13679589849298, + 35.75816127996708 + ], + [ + -84.79859159587512, + 35.75816127996708 + ], + [ + -84.79859159587512, + 35.46878865616363 + ], + [ + -85.13679589849298, + 35.46878865616363 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.13679589849298, + 35.75816127996708 + ], + [ + -85.13679589849298, + 36.04753390377052 + ], + [ + -84.79859159587512, + 36.04753390377052 + ], + [ + -84.79859159587512, + 35.75816127996708 + ], + [ + -85.13679589849298, + 35.75816127996708 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.13679589849298, + 36.04753390377052 + ], + [ + -85.13679589849298, + 36.336906527573966 + ], + [ + -84.79859159587512, + 36.336906527573966 + ], + [ + -84.79859159587512, + 36.04753390377052 + ], + [ + -85.13679589849298, + 36.04753390377052 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.13679589849298, + 36.336906527573966 + ], + [ + -85.13679589849298, + 36.62627915137741 + ], + [ + -84.79859159587512, + 36.62627915137741 + ], + [ + -84.79859159587512, + 36.336906527573966 + ], + [ + -85.13679589849298, + 36.336906527573966 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.13679589849298, + 36.62627915137741 + ], + [ + -85.13679589849298, + 36.915651775180855 + ], + [ + -84.79859159587512, + 36.915651775180855 + ], + [ + -84.79859159587512, + 36.62627915137741 + ], + [ + -85.13679589849298, + 36.62627915137741 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.13679589849298, + 36.915651775180855 + ], + [ + -85.13679589849298, + 37.2050243989843 + ], + [ + -84.79859159587512, + 37.2050243989843 + ], + [ + -84.79859159587512, + 36.915651775180855 + ], + [ + -85.13679589849298, + 36.915651775180855 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.13679589849298, + 37.2050243989843 + ], + [ + -85.13679589849298, + 37.494397022787744 + ], + [ + -84.79859159587512, + 37.494397022787744 + ], + [ + -84.79859159587512, + 37.2050243989843 + ], + [ + -85.13679589849298, + 37.2050243989843 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.13679589849298, + 37.494397022787744 + ], + [ + -85.13679589849298, + 37.78376964659119 + ], + [ + -84.79859159587512, + 37.78376964659119 + ], + [ + -84.79859159587512, + 37.494397022787744 + ], + [ + -85.13679589849298, + 37.494397022787744 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.13679589849298, + 37.78376964659119 + ], + [ + -85.13679589849298, + 38.073142270394634 + ], + [ + -84.79859159587512, + 38.073142270394634 + ], + [ + -84.79859159587512, + 37.78376964659119 + ], + [ + -85.13679589849298, + 37.78376964659119 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.13679589849298, + 38.073142270394634 + ], + [ + -85.13679589849298, + 38.36251489419808 + ], + [ + -84.79859159587512, + 38.36251489419808 + ], + [ + -84.79859159587512, + 38.073142270394634 + ], + [ + -85.13679589849298, + 38.073142270394634 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.13679589849298, + 38.36251489419808 + ], + [ + -85.13679589849298, + 38.65188751800152 + ], + [ + -84.79859159587512, + 38.65188751800152 + ], + [ + -84.79859159587512, + 38.36251489419808 + ], + [ + -85.13679589849298, + 38.36251489419808 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.13679589849298, + 38.65188751800152 + ], + [ + -85.13679589849298, + 38.94126014180497 + ], + [ + -84.79859159587512, + 38.94126014180497 + ], + [ + -84.79859159587512, + 38.65188751800152 + ], + [ + -85.13679589849298, + 38.65188751800152 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.13679589849298, + 38.94126014180497 + ], + [ + -85.13679589849298, + 39.23063276560841 + ], + [ + -84.79859159587512, + 39.23063276560841 + ], + [ + -84.79859159587512, + 38.94126014180497 + ], + [ + -85.13679589849298, + 38.94126014180497 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.13679589849298, + 39.23063276560841 + ], + [ + -85.13679589849298, + 39.52000538941186 + ], + [ + -84.79859159587512, + 39.52000538941186 + ], + [ + -84.79859159587512, + 39.23063276560841 + ], + [ + -85.13679589849298, + 39.23063276560841 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.13679589849298, + 39.52000538941186 + ], + [ + -85.13679589849298, + 39.8093780132153 + ], + [ + -84.79859159587512, + 39.8093780132153 + ], + [ + -84.79859159587512, + 39.52000538941186 + ], + [ + -85.13679589849298, + 39.52000538941186 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.13679589849298, + 39.8093780132153 + ], + [ + -85.13679589849298, + 40.098750637018746 + ], + [ + -84.79859159587512, + 40.098750637018746 + ], + [ + -84.79859159587512, + 39.8093780132153 + ], + [ + -85.13679589849298, + 39.8093780132153 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.13679589849298, + 40.098750637018746 + ], + [ + -85.13679589849298, + 40.38812326082219 + ], + [ + -84.79859159587512, + 40.38812326082219 + ], + [ + -84.79859159587512, + 40.098750637018746 + ], + [ + -85.13679589849298, + 40.098750637018746 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.13679589849298, + 40.38812326082219 + ], + [ + -85.13679589849298, + 40.677495884625635 + ], + [ + -84.79859159587512, + 40.677495884625635 + ], + [ + -84.79859159587512, + 40.38812326082219 + ], + [ + -85.13679589849298, + 40.38812326082219 + ] + ] + ] + } + } + ] +} \ No newline at end of file diff --git a/packages/turf-square-grid/test/out/grid2.geojson b/packages/turf-square-grid/test/out/grid2.geojson new file mode 100644 index 0000000000..4361e3618d --- /dev/null +++ b/packages/turf-square-grid/test/out/grid2.geojson @@ -0,0 +1,14978 @@ +{ + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.650390625, + 24.926294766395593 + ], + [ + -81.650390625, + 24.998637922346454 + ], + [ + -81.57061598730647, + 24.998637922346454 + ], + [ + -81.57061598730647, + 24.926294766395593 + ], + [ + -81.650390625, + 24.926294766395593 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.650390625, + 24.998637922346454 + ], + [ + -81.650390625, + 25.070981078297315 + ], + [ + -81.57061598730647, + 25.070981078297315 + ], + [ + -81.57061598730647, + 24.998637922346454 + ], + [ + -81.650390625, + 24.998637922346454 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.650390625, + 25.070981078297315 + ], + [ + -81.650390625, + 25.143324234248176 + ], + [ + -81.57061598730647, + 25.143324234248176 + ], + [ + -81.57061598730647, + 25.070981078297315 + ], + [ + -81.650390625, + 25.070981078297315 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.650390625, + 25.143324234248176 + ], + [ + -81.650390625, + 25.215667390199037 + ], + [ + -81.57061598730647, + 25.215667390199037 + ], + [ + -81.57061598730647, + 25.143324234248176 + ], + [ + -81.650390625, + 25.143324234248176 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.650390625, + 25.215667390199037 + ], + [ + -81.650390625, + 25.2880105461499 + ], + [ + -81.57061598730647, + 25.2880105461499 + ], + [ + -81.57061598730647, + 25.215667390199037 + ], + [ + -81.650390625, + 25.215667390199037 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.650390625, + 25.2880105461499 + ], + [ + -81.650390625, + 25.36035370210076 + ], + [ + -81.57061598730647, + 25.36035370210076 + ], + [ + -81.57061598730647, + 25.2880105461499 + ], + [ + -81.650390625, + 25.2880105461499 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.650390625, + 25.36035370210076 + ], + [ + -81.650390625, + 25.43269685805162 + ], + [ + -81.57061598730647, + 25.43269685805162 + ], + [ + -81.57061598730647, + 25.36035370210076 + ], + [ + -81.650390625, + 25.36035370210076 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.650390625, + 25.43269685805162 + ], + [ + -81.650390625, + 25.505040014002482 + ], + [ + -81.57061598730647, + 25.505040014002482 + ], + [ + -81.57061598730647, + 25.43269685805162 + ], + [ + -81.650390625, + 25.43269685805162 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.650390625, + 25.505040014002482 + ], + [ + -81.650390625, + 25.577383169953343 + ], + [ + -81.57061598730647, + 25.577383169953343 + ], + [ + -81.57061598730647, + 25.505040014002482 + ], + [ + -81.650390625, + 25.505040014002482 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.650390625, + 25.577383169953343 + ], + [ + -81.650390625, + 25.649726325904204 + ], + [ + -81.57061598730647, + 25.649726325904204 + ], + [ + -81.57061598730647, + 25.577383169953343 + ], + [ + -81.650390625, + 25.577383169953343 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.650390625, + 25.649726325904204 + ], + [ + -81.650390625, + 25.722069481855065 + ], + [ + -81.57061598730647, + 25.722069481855065 + ], + [ + -81.57061598730647, + 25.649726325904204 + ], + [ + -81.650390625, + 25.649726325904204 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.650390625, + 25.722069481855065 + ], + [ + -81.650390625, + 25.794412637805927 + ], + [ + -81.57061598730647, + 25.794412637805927 + ], + [ + -81.57061598730647, + 25.722069481855065 + ], + [ + -81.650390625, + 25.722069481855065 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.650390625, + 25.794412637805927 + ], + [ + -81.650390625, + 25.866755793756788 + ], + [ + -81.57061598730647, + 25.866755793756788 + ], + [ + -81.57061598730647, + 25.794412637805927 + ], + [ + -81.650390625, + 25.794412637805927 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.650390625, + 25.866755793756788 + ], + [ + -81.650390625, + 25.93909894970765 + ], + [ + -81.57061598730647, + 25.93909894970765 + ], + [ + -81.57061598730647, + 25.866755793756788 + ], + [ + -81.650390625, + 25.866755793756788 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.650390625, + 25.93909894970765 + ], + [ + -81.650390625, + 26.01144210565851 + ], + [ + -81.57061598730647, + 26.01144210565851 + ], + [ + -81.57061598730647, + 25.93909894970765 + ], + [ + -81.650390625, + 25.93909894970765 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.650390625, + 26.01144210565851 + ], + [ + -81.650390625, + 26.08378526160937 + ], + [ + -81.57061598730647, + 26.08378526160937 + ], + [ + -81.57061598730647, + 26.01144210565851 + ], + [ + -81.650390625, + 26.01144210565851 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.650390625, + 26.08378526160937 + ], + [ + -81.650390625, + 26.156128417560232 + ], + [ + -81.57061598730647, + 26.156128417560232 + ], + [ + -81.57061598730647, + 26.08378526160937 + ], + [ + -81.650390625, + 26.08378526160937 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.650390625, + 26.156128417560232 + ], + [ + -81.650390625, + 26.228471573511094 + ], + [ + -81.57061598730647, + 26.228471573511094 + ], + [ + -81.57061598730647, + 26.156128417560232 + ], + [ + -81.650390625, + 26.156128417560232 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.650390625, + 26.228471573511094 + ], + [ + -81.650390625, + 26.300814729461955 + ], + [ + -81.57061598730647, + 26.300814729461955 + ], + [ + -81.57061598730647, + 26.228471573511094 + ], + [ + -81.650390625, + 26.228471573511094 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.650390625, + 26.300814729461955 + ], + [ + -81.650390625, + 26.373157885412816 + ], + [ + -81.57061598730647, + 26.373157885412816 + ], + [ + -81.57061598730647, + 26.300814729461955 + ], + [ + -81.650390625, + 26.300814729461955 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.650390625, + 26.373157885412816 + ], + [ + -81.650390625, + 26.445501041363677 + ], + [ + -81.57061598730647, + 26.445501041363677 + ], + [ + -81.57061598730647, + 26.373157885412816 + ], + [ + -81.650390625, + 26.373157885412816 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.57061598730647, + 24.926294766395593 + ], + [ + -81.57061598730647, + 24.998637922346454 + ], + [ + -81.49084134961294, + 24.998637922346454 + ], + [ + -81.49084134961294, + 24.926294766395593 + ], + [ + -81.57061598730647, + 24.926294766395593 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.57061598730647, + 24.998637922346454 + ], + [ + -81.57061598730647, + 25.070981078297315 + ], + [ + -81.49084134961294, + 25.070981078297315 + ], + [ + -81.49084134961294, + 24.998637922346454 + ], + [ + -81.57061598730647, + 24.998637922346454 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.57061598730647, + 25.070981078297315 + ], + [ + -81.57061598730647, + 25.143324234248176 + ], + [ + -81.49084134961294, + 25.143324234248176 + ], + [ + -81.49084134961294, + 25.070981078297315 + ], + [ + -81.57061598730647, + 25.070981078297315 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.57061598730647, + 25.143324234248176 + ], + [ + -81.57061598730647, + 25.215667390199037 + ], + [ + -81.49084134961294, + 25.215667390199037 + ], + [ + -81.49084134961294, + 25.143324234248176 + ], + [ + -81.57061598730647, + 25.143324234248176 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.57061598730647, + 25.215667390199037 + ], + [ + -81.57061598730647, + 25.2880105461499 + ], + [ + -81.49084134961294, + 25.2880105461499 + ], + [ + -81.49084134961294, + 25.215667390199037 + ], + [ + -81.57061598730647, + 25.215667390199037 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.57061598730647, + 25.2880105461499 + ], + [ + -81.57061598730647, + 25.36035370210076 + ], + [ + -81.49084134961294, + 25.36035370210076 + ], + [ + -81.49084134961294, + 25.2880105461499 + ], + [ + -81.57061598730647, + 25.2880105461499 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.57061598730647, + 25.36035370210076 + ], + [ + -81.57061598730647, + 25.43269685805162 + ], + [ + -81.49084134961294, + 25.43269685805162 + ], + [ + -81.49084134961294, + 25.36035370210076 + ], + [ + -81.57061598730647, + 25.36035370210076 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.57061598730647, + 25.43269685805162 + ], + [ + -81.57061598730647, + 25.505040014002482 + ], + [ + -81.49084134961294, + 25.505040014002482 + ], + [ + -81.49084134961294, + 25.43269685805162 + ], + [ + -81.57061598730647, + 25.43269685805162 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.57061598730647, + 25.505040014002482 + ], + [ + -81.57061598730647, + 25.577383169953343 + ], + [ + -81.49084134961294, + 25.577383169953343 + ], + [ + -81.49084134961294, + 25.505040014002482 + ], + [ + -81.57061598730647, + 25.505040014002482 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.57061598730647, + 25.577383169953343 + ], + [ + -81.57061598730647, + 25.649726325904204 + ], + [ + -81.49084134961294, + 25.649726325904204 + ], + [ + -81.49084134961294, + 25.577383169953343 + ], + [ + -81.57061598730647, + 25.577383169953343 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.57061598730647, + 25.649726325904204 + ], + [ + -81.57061598730647, + 25.722069481855065 + ], + [ + -81.49084134961294, + 25.722069481855065 + ], + [ + -81.49084134961294, + 25.649726325904204 + ], + [ + -81.57061598730647, + 25.649726325904204 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.57061598730647, + 25.722069481855065 + ], + [ + -81.57061598730647, + 25.794412637805927 + ], + [ + -81.49084134961294, + 25.794412637805927 + ], + [ + -81.49084134961294, + 25.722069481855065 + ], + [ + -81.57061598730647, + 25.722069481855065 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.57061598730647, + 25.794412637805927 + ], + [ + -81.57061598730647, + 25.866755793756788 + ], + [ + -81.49084134961294, + 25.866755793756788 + ], + [ + -81.49084134961294, + 25.794412637805927 + ], + [ + -81.57061598730647, + 25.794412637805927 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.57061598730647, + 25.866755793756788 + ], + [ + -81.57061598730647, + 25.93909894970765 + ], + [ + -81.49084134961294, + 25.93909894970765 + ], + [ + -81.49084134961294, + 25.866755793756788 + ], + [ + -81.57061598730647, + 25.866755793756788 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.57061598730647, + 25.93909894970765 + ], + [ + -81.57061598730647, + 26.01144210565851 + ], + [ + -81.49084134961294, + 26.01144210565851 + ], + [ + -81.49084134961294, + 25.93909894970765 + ], + [ + -81.57061598730647, + 25.93909894970765 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.57061598730647, + 26.01144210565851 + ], + [ + -81.57061598730647, + 26.08378526160937 + ], + [ + -81.49084134961294, + 26.08378526160937 + ], + [ + -81.49084134961294, + 26.01144210565851 + ], + [ + -81.57061598730647, + 26.01144210565851 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.57061598730647, + 26.08378526160937 + ], + [ + -81.57061598730647, + 26.156128417560232 + ], + [ + -81.49084134961294, + 26.156128417560232 + ], + [ + -81.49084134961294, + 26.08378526160937 + ], + [ + -81.57061598730647, + 26.08378526160937 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.57061598730647, + 26.156128417560232 + ], + [ + -81.57061598730647, + 26.228471573511094 + ], + [ + -81.49084134961294, + 26.228471573511094 + ], + [ + -81.49084134961294, + 26.156128417560232 + ], + [ + -81.57061598730647, + 26.156128417560232 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.57061598730647, + 26.228471573511094 + ], + [ + -81.57061598730647, + 26.300814729461955 + ], + [ + -81.49084134961294, + 26.300814729461955 + ], + [ + -81.49084134961294, + 26.228471573511094 + ], + [ + -81.57061598730647, + 26.228471573511094 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.57061598730647, + 26.300814729461955 + ], + [ + -81.57061598730647, + 26.373157885412816 + ], + [ + -81.49084134961294, + 26.373157885412816 + ], + [ + -81.49084134961294, + 26.300814729461955 + ], + [ + -81.57061598730647, + 26.300814729461955 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.57061598730647, + 26.373157885412816 + ], + [ + -81.57061598730647, + 26.445501041363677 + ], + [ + -81.49084134961294, + 26.445501041363677 + ], + [ + -81.49084134961294, + 26.373157885412816 + ], + [ + -81.57061598730647, + 26.373157885412816 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.49084134961294, + 24.926294766395593 + ], + [ + -81.49084134961294, + 24.998637922346454 + ], + [ + -81.4110667119194, + 24.998637922346454 + ], + [ + -81.4110667119194, + 24.926294766395593 + ], + [ + -81.49084134961294, + 24.926294766395593 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.49084134961294, + 24.998637922346454 + ], + [ + -81.49084134961294, + 25.070981078297315 + ], + [ + -81.4110667119194, + 25.070981078297315 + ], + [ + -81.4110667119194, + 24.998637922346454 + ], + [ + -81.49084134961294, + 24.998637922346454 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.49084134961294, + 25.070981078297315 + ], + [ + -81.49084134961294, + 25.143324234248176 + ], + [ + -81.4110667119194, + 25.143324234248176 + ], + [ + -81.4110667119194, + 25.070981078297315 + ], + [ + -81.49084134961294, + 25.070981078297315 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.49084134961294, + 25.143324234248176 + ], + [ + -81.49084134961294, + 25.215667390199037 + ], + [ + -81.4110667119194, + 25.215667390199037 + ], + [ + -81.4110667119194, + 25.143324234248176 + ], + [ + -81.49084134961294, + 25.143324234248176 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.49084134961294, + 25.215667390199037 + ], + [ + -81.49084134961294, + 25.2880105461499 + ], + [ + -81.4110667119194, + 25.2880105461499 + ], + [ + -81.4110667119194, + 25.215667390199037 + ], + [ + -81.49084134961294, + 25.215667390199037 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.49084134961294, + 25.2880105461499 + ], + [ + -81.49084134961294, + 25.36035370210076 + ], + [ + -81.4110667119194, + 25.36035370210076 + ], + [ + -81.4110667119194, + 25.2880105461499 + ], + [ + -81.49084134961294, + 25.2880105461499 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.49084134961294, + 25.36035370210076 + ], + [ + -81.49084134961294, + 25.43269685805162 + ], + [ + -81.4110667119194, + 25.43269685805162 + ], + [ + -81.4110667119194, + 25.36035370210076 + ], + [ + -81.49084134961294, + 25.36035370210076 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.49084134961294, + 25.43269685805162 + ], + [ + -81.49084134961294, + 25.505040014002482 + ], + [ + -81.4110667119194, + 25.505040014002482 + ], + [ + -81.4110667119194, + 25.43269685805162 + ], + [ + -81.49084134961294, + 25.43269685805162 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.49084134961294, + 25.505040014002482 + ], + [ + -81.49084134961294, + 25.577383169953343 + ], + [ + -81.4110667119194, + 25.577383169953343 + ], + [ + -81.4110667119194, + 25.505040014002482 + ], + [ + -81.49084134961294, + 25.505040014002482 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.49084134961294, + 25.577383169953343 + ], + [ + -81.49084134961294, + 25.649726325904204 + ], + [ + -81.4110667119194, + 25.649726325904204 + ], + [ + -81.4110667119194, + 25.577383169953343 + ], + [ + -81.49084134961294, + 25.577383169953343 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.49084134961294, + 25.649726325904204 + ], + [ + -81.49084134961294, + 25.722069481855065 + ], + [ + -81.4110667119194, + 25.722069481855065 + ], + [ + -81.4110667119194, + 25.649726325904204 + ], + [ + -81.49084134961294, + 25.649726325904204 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.49084134961294, + 25.722069481855065 + ], + [ + -81.49084134961294, + 25.794412637805927 + ], + [ + -81.4110667119194, + 25.794412637805927 + ], + [ + -81.4110667119194, + 25.722069481855065 + ], + [ + -81.49084134961294, + 25.722069481855065 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.49084134961294, + 25.794412637805927 + ], + [ + -81.49084134961294, + 25.866755793756788 + ], + [ + -81.4110667119194, + 25.866755793756788 + ], + [ + -81.4110667119194, + 25.794412637805927 + ], + [ + -81.49084134961294, + 25.794412637805927 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.49084134961294, + 25.866755793756788 + ], + [ + -81.49084134961294, + 25.93909894970765 + ], + [ + -81.4110667119194, + 25.93909894970765 + ], + [ + -81.4110667119194, + 25.866755793756788 + ], + [ + -81.49084134961294, + 25.866755793756788 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.49084134961294, + 25.93909894970765 + ], + [ + -81.49084134961294, + 26.01144210565851 + ], + [ + -81.4110667119194, + 26.01144210565851 + ], + [ + -81.4110667119194, + 25.93909894970765 + ], + [ + -81.49084134961294, + 25.93909894970765 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.49084134961294, + 26.01144210565851 + ], + [ + -81.49084134961294, + 26.08378526160937 + ], + [ + -81.4110667119194, + 26.08378526160937 + ], + [ + -81.4110667119194, + 26.01144210565851 + ], + [ + -81.49084134961294, + 26.01144210565851 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.49084134961294, + 26.08378526160937 + ], + [ + -81.49084134961294, + 26.156128417560232 + ], + [ + -81.4110667119194, + 26.156128417560232 + ], + [ + -81.4110667119194, + 26.08378526160937 + ], + [ + -81.49084134961294, + 26.08378526160937 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.49084134961294, + 26.156128417560232 + ], + [ + -81.49084134961294, + 26.228471573511094 + ], + [ + -81.4110667119194, + 26.228471573511094 + ], + [ + -81.4110667119194, + 26.156128417560232 + ], + [ + -81.49084134961294, + 26.156128417560232 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.49084134961294, + 26.228471573511094 + ], + [ + -81.49084134961294, + 26.300814729461955 + ], + [ + -81.4110667119194, + 26.300814729461955 + ], + [ + -81.4110667119194, + 26.228471573511094 + ], + [ + -81.49084134961294, + 26.228471573511094 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.49084134961294, + 26.300814729461955 + ], + [ + -81.49084134961294, + 26.373157885412816 + ], + [ + -81.4110667119194, + 26.373157885412816 + ], + [ + -81.4110667119194, + 26.300814729461955 + ], + [ + -81.49084134961294, + 26.300814729461955 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.49084134961294, + 26.373157885412816 + ], + [ + -81.49084134961294, + 26.445501041363677 + ], + [ + -81.4110667119194, + 26.445501041363677 + ], + [ + -81.4110667119194, + 26.373157885412816 + ], + [ + -81.49084134961294, + 26.373157885412816 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.4110667119194, + 24.926294766395593 + ], + [ + -81.4110667119194, + 24.998637922346454 + ], + [ + -81.33129207422587, + 24.998637922346454 + ], + [ + -81.33129207422587, + 24.926294766395593 + ], + [ + -81.4110667119194, + 24.926294766395593 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.4110667119194, + 24.998637922346454 + ], + [ + -81.4110667119194, + 25.070981078297315 + ], + [ + -81.33129207422587, + 25.070981078297315 + ], + [ + -81.33129207422587, + 24.998637922346454 + ], + [ + -81.4110667119194, + 24.998637922346454 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.4110667119194, + 25.070981078297315 + ], + [ + -81.4110667119194, + 25.143324234248176 + ], + [ + -81.33129207422587, + 25.143324234248176 + ], + [ + -81.33129207422587, + 25.070981078297315 + ], + [ + -81.4110667119194, + 25.070981078297315 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.4110667119194, + 25.143324234248176 + ], + [ + -81.4110667119194, + 25.215667390199037 + ], + [ + -81.33129207422587, + 25.215667390199037 + ], + [ + -81.33129207422587, + 25.143324234248176 + ], + [ + -81.4110667119194, + 25.143324234248176 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.4110667119194, + 25.215667390199037 + ], + [ + -81.4110667119194, + 25.2880105461499 + ], + [ + -81.33129207422587, + 25.2880105461499 + ], + [ + -81.33129207422587, + 25.215667390199037 + ], + [ + -81.4110667119194, + 25.215667390199037 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.4110667119194, + 25.2880105461499 + ], + [ + -81.4110667119194, + 25.36035370210076 + ], + [ + -81.33129207422587, + 25.36035370210076 + ], + [ + -81.33129207422587, + 25.2880105461499 + ], + [ + -81.4110667119194, + 25.2880105461499 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.4110667119194, + 25.36035370210076 + ], + [ + -81.4110667119194, + 25.43269685805162 + ], + [ + -81.33129207422587, + 25.43269685805162 + ], + [ + -81.33129207422587, + 25.36035370210076 + ], + [ + -81.4110667119194, + 25.36035370210076 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.4110667119194, + 25.43269685805162 + ], + [ + -81.4110667119194, + 25.505040014002482 + ], + [ + -81.33129207422587, + 25.505040014002482 + ], + [ + -81.33129207422587, + 25.43269685805162 + ], + [ + -81.4110667119194, + 25.43269685805162 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.4110667119194, + 25.505040014002482 + ], + [ + -81.4110667119194, + 25.577383169953343 + ], + [ + -81.33129207422587, + 25.577383169953343 + ], + [ + -81.33129207422587, + 25.505040014002482 + ], + [ + -81.4110667119194, + 25.505040014002482 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.4110667119194, + 25.577383169953343 + ], + [ + -81.4110667119194, + 25.649726325904204 + ], + [ + -81.33129207422587, + 25.649726325904204 + ], + [ + -81.33129207422587, + 25.577383169953343 + ], + [ + -81.4110667119194, + 25.577383169953343 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.4110667119194, + 25.649726325904204 + ], + [ + -81.4110667119194, + 25.722069481855065 + ], + [ + -81.33129207422587, + 25.722069481855065 + ], + [ + -81.33129207422587, + 25.649726325904204 + ], + [ + -81.4110667119194, + 25.649726325904204 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.4110667119194, + 25.722069481855065 + ], + [ + -81.4110667119194, + 25.794412637805927 + ], + [ + -81.33129207422587, + 25.794412637805927 + ], + [ + -81.33129207422587, + 25.722069481855065 + ], + [ + -81.4110667119194, + 25.722069481855065 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.4110667119194, + 25.794412637805927 + ], + [ + -81.4110667119194, + 25.866755793756788 + ], + [ + -81.33129207422587, + 25.866755793756788 + ], + [ + -81.33129207422587, + 25.794412637805927 + ], + [ + -81.4110667119194, + 25.794412637805927 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.4110667119194, + 25.866755793756788 + ], + [ + -81.4110667119194, + 25.93909894970765 + ], + [ + -81.33129207422587, + 25.93909894970765 + ], + [ + -81.33129207422587, + 25.866755793756788 + ], + [ + -81.4110667119194, + 25.866755793756788 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.4110667119194, + 25.93909894970765 + ], + [ + -81.4110667119194, + 26.01144210565851 + ], + [ + -81.33129207422587, + 26.01144210565851 + ], + [ + -81.33129207422587, + 25.93909894970765 + ], + [ + -81.4110667119194, + 25.93909894970765 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.4110667119194, + 26.01144210565851 + ], + [ + -81.4110667119194, + 26.08378526160937 + ], + [ + -81.33129207422587, + 26.08378526160937 + ], + [ + -81.33129207422587, + 26.01144210565851 + ], + [ + -81.4110667119194, + 26.01144210565851 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.4110667119194, + 26.08378526160937 + ], + [ + -81.4110667119194, + 26.156128417560232 + ], + [ + -81.33129207422587, + 26.156128417560232 + ], + [ + -81.33129207422587, + 26.08378526160937 + ], + [ + -81.4110667119194, + 26.08378526160937 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.4110667119194, + 26.156128417560232 + ], + [ + -81.4110667119194, + 26.228471573511094 + ], + [ + -81.33129207422587, + 26.228471573511094 + ], + [ + -81.33129207422587, + 26.156128417560232 + ], + [ + -81.4110667119194, + 26.156128417560232 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.4110667119194, + 26.228471573511094 + ], + [ + -81.4110667119194, + 26.300814729461955 + ], + [ + -81.33129207422587, + 26.300814729461955 + ], + [ + -81.33129207422587, + 26.228471573511094 + ], + [ + -81.4110667119194, + 26.228471573511094 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.4110667119194, + 26.300814729461955 + ], + [ + -81.4110667119194, + 26.373157885412816 + ], + [ + -81.33129207422587, + 26.373157885412816 + ], + [ + -81.33129207422587, + 26.300814729461955 + ], + [ + -81.4110667119194, + 26.300814729461955 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.4110667119194, + 26.373157885412816 + ], + [ + -81.4110667119194, + 26.445501041363677 + ], + [ + -81.33129207422587, + 26.445501041363677 + ], + [ + -81.33129207422587, + 26.373157885412816 + ], + [ + -81.4110667119194, + 26.373157885412816 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.33129207422587, + 24.926294766395593 + ], + [ + -81.33129207422587, + 24.998637922346454 + ], + [ + -81.25151743653234, + 24.998637922346454 + ], + [ + -81.25151743653234, + 24.926294766395593 + ], + [ + -81.33129207422587, + 24.926294766395593 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.33129207422587, + 24.998637922346454 + ], + [ + -81.33129207422587, + 25.070981078297315 + ], + [ + -81.25151743653234, + 25.070981078297315 + ], + [ + -81.25151743653234, + 24.998637922346454 + ], + [ + -81.33129207422587, + 24.998637922346454 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.33129207422587, + 25.070981078297315 + ], + [ + -81.33129207422587, + 25.143324234248176 + ], + [ + -81.25151743653234, + 25.143324234248176 + ], + [ + -81.25151743653234, + 25.070981078297315 + ], + [ + -81.33129207422587, + 25.070981078297315 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.33129207422587, + 25.143324234248176 + ], + [ + -81.33129207422587, + 25.215667390199037 + ], + [ + -81.25151743653234, + 25.215667390199037 + ], + [ + -81.25151743653234, + 25.143324234248176 + ], + [ + -81.33129207422587, + 25.143324234248176 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.33129207422587, + 25.215667390199037 + ], + [ + -81.33129207422587, + 25.2880105461499 + ], + [ + -81.25151743653234, + 25.2880105461499 + ], + [ + -81.25151743653234, + 25.215667390199037 + ], + [ + -81.33129207422587, + 25.215667390199037 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.33129207422587, + 25.2880105461499 + ], + [ + -81.33129207422587, + 25.36035370210076 + ], + [ + -81.25151743653234, + 25.36035370210076 + ], + [ + -81.25151743653234, + 25.2880105461499 + ], + [ + -81.33129207422587, + 25.2880105461499 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.33129207422587, + 25.36035370210076 + ], + [ + -81.33129207422587, + 25.43269685805162 + ], + [ + -81.25151743653234, + 25.43269685805162 + ], + [ + -81.25151743653234, + 25.36035370210076 + ], + [ + -81.33129207422587, + 25.36035370210076 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.33129207422587, + 25.43269685805162 + ], + [ + -81.33129207422587, + 25.505040014002482 + ], + [ + -81.25151743653234, + 25.505040014002482 + ], + [ + -81.25151743653234, + 25.43269685805162 + ], + [ + -81.33129207422587, + 25.43269685805162 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.33129207422587, + 25.505040014002482 + ], + [ + -81.33129207422587, + 25.577383169953343 + ], + [ + -81.25151743653234, + 25.577383169953343 + ], + [ + -81.25151743653234, + 25.505040014002482 + ], + [ + -81.33129207422587, + 25.505040014002482 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.33129207422587, + 25.577383169953343 + ], + [ + -81.33129207422587, + 25.649726325904204 + ], + [ + -81.25151743653234, + 25.649726325904204 + ], + [ + -81.25151743653234, + 25.577383169953343 + ], + [ + -81.33129207422587, + 25.577383169953343 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.33129207422587, + 25.649726325904204 + ], + [ + -81.33129207422587, + 25.722069481855065 + ], + [ + -81.25151743653234, + 25.722069481855065 + ], + [ + -81.25151743653234, + 25.649726325904204 + ], + [ + -81.33129207422587, + 25.649726325904204 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.33129207422587, + 25.722069481855065 + ], + [ + -81.33129207422587, + 25.794412637805927 + ], + [ + -81.25151743653234, + 25.794412637805927 + ], + [ + -81.25151743653234, + 25.722069481855065 + ], + [ + -81.33129207422587, + 25.722069481855065 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.33129207422587, + 25.794412637805927 + ], + [ + -81.33129207422587, + 25.866755793756788 + ], + [ + -81.25151743653234, + 25.866755793756788 + ], + [ + -81.25151743653234, + 25.794412637805927 + ], + [ + -81.33129207422587, + 25.794412637805927 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.33129207422587, + 25.866755793756788 + ], + [ + -81.33129207422587, + 25.93909894970765 + ], + [ + -81.25151743653234, + 25.93909894970765 + ], + [ + -81.25151743653234, + 25.866755793756788 + ], + [ + -81.33129207422587, + 25.866755793756788 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.33129207422587, + 25.93909894970765 + ], + [ + -81.33129207422587, + 26.01144210565851 + ], + [ + -81.25151743653234, + 26.01144210565851 + ], + [ + -81.25151743653234, + 25.93909894970765 + ], + [ + -81.33129207422587, + 25.93909894970765 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.33129207422587, + 26.01144210565851 + ], + [ + -81.33129207422587, + 26.08378526160937 + ], + [ + -81.25151743653234, + 26.08378526160937 + ], + [ + -81.25151743653234, + 26.01144210565851 + ], + [ + -81.33129207422587, + 26.01144210565851 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.33129207422587, + 26.08378526160937 + ], + [ + -81.33129207422587, + 26.156128417560232 + ], + [ + -81.25151743653234, + 26.156128417560232 + ], + [ + -81.25151743653234, + 26.08378526160937 + ], + [ + -81.33129207422587, + 26.08378526160937 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.33129207422587, + 26.156128417560232 + ], + [ + -81.33129207422587, + 26.228471573511094 + ], + [ + -81.25151743653234, + 26.228471573511094 + ], + [ + -81.25151743653234, + 26.156128417560232 + ], + [ + -81.33129207422587, + 26.156128417560232 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.33129207422587, + 26.228471573511094 + ], + [ + -81.33129207422587, + 26.300814729461955 + ], + [ + -81.25151743653234, + 26.300814729461955 + ], + [ + -81.25151743653234, + 26.228471573511094 + ], + [ + -81.33129207422587, + 26.228471573511094 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.33129207422587, + 26.300814729461955 + ], + [ + -81.33129207422587, + 26.373157885412816 + ], + [ + -81.25151743653234, + 26.373157885412816 + ], + [ + -81.25151743653234, + 26.300814729461955 + ], + [ + -81.33129207422587, + 26.300814729461955 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.33129207422587, + 26.373157885412816 + ], + [ + -81.33129207422587, + 26.445501041363677 + ], + [ + -81.25151743653234, + 26.445501041363677 + ], + [ + -81.25151743653234, + 26.373157885412816 + ], + [ + -81.33129207422587, + 26.373157885412816 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.25151743653234, + 24.926294766395593 + ], + [ + -81.25151743653234, + 24.998637922346454 + ], + [ + -81.1717427988388, + 24.998637922346454 + ], + [ + -81.1717427988388, + 24.926294766395593 + ], + [ + -81.25151743653234, + 24.926294766395593 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.25151743653234, + 24.998637922346454 + ], + [ + -81.25151743653234, + 25.070981078297315 + ], + [ + -81.1717427988388, + 25.070981078297315 + ], + [ + -81.1717427988388, + 24.998637922346454 + ], + [ + -81.25151743653234, + 24.998637922346454 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.25151743653234, + 25.070981078297315 + ], + [ + -81.25151743653234, + 25.143324234248176 + ], + [ + -81.1717427988388, + 25.143324234248176 + ], + [ + -81.1717427988388, + 25.070981078297315 + ], + [ + -81.25151743653234, + 25.070981078297315 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.25151743653234, + 25.143324234248176 + ], + [ + -81.25151743653234, + 25.215667390199037 + ], + [ + -81.1717427988388, + 25.215667390199037 + ], + [ + -81.1717427988388, + 25.143324234248176 + ], + [ + -81.25151743653234, + 25.143324234248176 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.25151743653234, + 25.215667390199037 + ], + [ + -81.25151743653234, + 25.2880105461499 + ], + [ + -81.1717427988388, + 25.2880105461499 + ], + [ + -81.1717427988388, + 25.215667390199037 + ], + [ + -81.25151743653234, + 25.215667390199037 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.25151743653234, + 25.2880105461499 + ], + [ + -81.25151743653234, + 25.36035370210076 + ], + [ + -81.1717427988388, + 25.36035370210076 + ], + [ + -81.1717427988388, + 25.2880105461499 + ], + [ + -81.25151743653234, + 25.2880105461499 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.25151743653234, + 25.36035370210076 + ], + [ + -81.25151743653234, + 25.43269685805162 + ], + [ + -81.1717427988388, + 25.43269685805162 + ], + [ + -81.1717427988388, + 25.36035370210076 + ], + [ + -81.25151743653234, + 25.36035370210076 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.25151743653234, + 25.43269685805162 + ], + [ + -81.25151743653234, + 25.505040014002482 + ], + [ + -81.1717427988388, + 25.505040014002482 + ], + [ + -81.1717427988388, + 25.43269685805162 + ], + [ + -81.25151743653234, + 25.43269685805162 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.25151743653234, + 25.505040014002482 + ], + [ + -81.25151743653234, + 25.577383169953343 + ], + [ + -81.1717427988388, + 25.577383169953343 + ], + [ + -81.1717427988388, + 25.505040014002482 + ], + [ + -81.25151743653234, + 25.505040014002482 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.25151743653234, + 25.577383169953343 + ], + [ + -81.25151743653234, + 25.649726325904204 + ], + [ + -81.1717427988388, + 25.649726325904204 + ], + [ + -81.1717427988388, + 25.577383169953343 + ], + [ + -81.25151743653234, + 25.577383169953343 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.25151743653234, + 25.649726325904204 + ], + [ + -81.25151743653234, + 25.722069481855065 + ], + [ + -81.1717427988388, + 25.722069481855065 + ], + [ + -81.1717427988388, + 25.649726325904204 + ], + [ + -81.25151743653234, + 25.649726325904204 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.25151743653234, + 25.722069481855065 + ], + [ + -81.25151743653234, + 25.794412637805927 + ], + [ + -81.1717427988388, + 25.794412637805927 + ], + [ + -81.1717427988388, + 25.722069481855065 + ], + [ + -81.25151743653234, + 25.722069481855065 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.25151743653234, + 25.794412637805927 + ], + [ + -81.25151743653234, + 25.866755793756788 + ], + [ + -81.1717427988388, + 25.866755793756788 + ], + [ + -81.1717427988388, + 25.794412637805927 + ], + [ + -81.25151743653234, + 25.794412637805927 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.25151743653234, + 25.866755793756788 + ], + [ + -81.25151743653234, + 25.93909894970765 + ], + [ + -81.1717427988388, + 25.93909894970765 + ], + [ + -81.1717427988388, + 25.866755793756788 + ], + [ + -81.25151743653234, + 25.866755793756788 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.25151743653234, + 25.93909894970765 + ], + [ + -81.25151743653234, + 26.01144210565851 + ], + [ + -81.1717427988388, + 26.01144210565851 + ], + [ + -81.1717427988388, + 25.93909894970765 + ], + [ + -81.25151743653234, + 25.93909894970765 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.25151743653234, + 26.01144210565851 + ], + [ + -81.25151743653234, + 26.08378526160937 + ], + [ + -81.1717427988388, + 26.08378526160937 + ], + [ + -81.1717427988388, + 26.01144210565851 + ], + [ + -81.25151743653234, + 26.01144210565851 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.25151743653234, + 26.08378526160937 + ], + [ + -81.25151743653234, + 26.156128417560232 + ], + [ + -81.1717427988388, + 26.156128417560232 + ], + [ + -81.1717427988388, + 26.08378526160937 + ], + [ + -81.25151743653234, + 26.08378526160937 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.25151743653234, + 26.156128417560232 + ], + [ + -81.25151743653234, + 26.228471573511094 + ], + [ + -81.1717427988388, + 26.228471573511094 + ], + [ + -81.1717427988388, + 26.156128417560232 + ], + [ + -81.25151743653234, + 26.156128417560232 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.25151743653234, + 26.228471573511094 + ], + [ + -81.25151743653234, + 26.300814729461955 + ], + [ + -81.1717427988388, + 26.300814729461955 + ], + [ + -81.1717427988388, + 26.228471573511094 + ], + [ + -81.25151743653234, + 26.228471573511094 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.25151743653234, + 26.300814729461955 + ], + [ + -81.25151743653234, + 26.373157885412816 + ], + [ + -81.1717427988388, + 26.373157885412816 + ], + [ + -81.1717427988388, + 26.300814729461955 + ], + [ + -81.25151743653234, + 26.300814729461955 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.25151743653234, + 26.373157885412816 + ], + [ + -81.25151743653234, + 26.445501041363677 + ], + [ + -81.1717427988388, + 26.445501041363677 + ], + [ + -81.1717427988388, + 26.373157885412816 + ], + [ + -81.25151743653234, + 26.373157885412816 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1717427988388, + 24.926294766395593 + ], + [ + -81.1717427988388, + 24.998637922346454 + ], + [ + -81.09196816114527, + 24.998637922346454 + ], + [ + -81.09196816114527, + 24.926294766395593 + ], + [ + -81.1717427988388, + 24.926294766395593 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1717427988388, + 24.998637922346454 + ], + [ + -81.1717427988388, + 25.070981078297315 + ], + [ + -81.09196816114527, + 25.070981078297315 + ], + [ + -81.09196816114527, + 24.998637922346454 + ], + [ + -81.1717427988388, + 24.998637922346454 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1717427988388, + 25.070981078297315 + ], + [ + -81.1717427988388, + 25.143324234248176 + ], + [ + -81.09196816114527, + 25.143324234248176 + ], + [ + -81.09196816114527, + 25.070981078297315 + ], + [ + -81.1717427988388, + 25.070981078297315 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1717427988388, + 25.143324234248176 + ], + [ + -81.1717427988388, + 25.215667390199037 + ], + [ + -81.09196816114527, + 25.215667390199037 + ], + [ + -81.09196816114527, + 25.143324234248176 + ], + [ + -81.1717427988388, + 25.143324234248176 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1717427988388, + 25.215667390199037 + ], + [ + -81.1717427988388, + 25.2880105461499 + ], + [ + -81.09196816114527, + 25.2880105461499 + ], + [ + -81.09196816114527, + 25.215667390199037 + ], + [ + -81.1717427988388, + 25.215667390199037 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1717427988388, + 25.2880105461499 + ], + [ + -81.1717427988388, + 25.36035370210076 + ], + [ + -81.09196816114527, + 25.36035370210076 + ], + [ + -81.09196816114527, + 25.2880105461499 + ], + [ + -81.1717427988388, + 25.2880105461499 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1717427988388, + 25.36035370210076 + ], + [ + -81.1717427988388, + 25.43269685805162 + ], + [ + -81.09196816114527, + 25.43269685805162 + ], + [ + -81.09196816114527, + 25.36035370210076 + ], + [ + -81.1717427988388, + 25.36035370210076 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1717427988388, + 25.43269685805162 + ], + [ + -81.1717427988388, + 25.505040014002482 + ], + [ + -81.09196816114527, + 25.505040014002482 + ], + [ + -81.09196816114527, + 25.43269685805162 + ], + [ + -81.1717427988388, + 25.43269685805162 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1717427988388, + 25.505040014002482 + ], + [ + -81.1717427988388, + 25.577383169953343 + ], + [ + -81.09196816114527, + 25.577383169953343 + ], + [ + -81.09196816114527, + 25.505040014002482 + ], + [ + -81.1717427988388, + 25.505040014002482 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1717427988388, + 25.577383169953343 + ], + [ + -81.1717427988388, + 25.649726325904204 + ], + [ + -81.09196816114527, + 25.649726325904204 + ], + [ + -81.09196816114527, + 25.577383169953343 + ], + [ + -81.1717427988388, + 25.577383169953343 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1717427988388, + 25.649726325904204 + ], + [ + -81.1717427988388, + 25.722069481855065 + ], + [ + -81.09196816114527, + 25.722069481855065 + ], + [ + -81.09196816114527, + 25.649726325904204 + ], + [ + -81.1717427988388, + 25.649726325904204 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1717427988388, + 25.722069481855065 + ], + [ + -81.1717427988388, + 25.794412637805927 + ], + [ + -81.09196816114527, + 25.794412637805927 + ], + [ + -81.09196816114527, + 25.722069481855065 + ], + [ + -81.1717427988388, + 25.722069481855065 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1717427988388, + 25.794412637805927 + ], + [ + -81.1717427988388, + 25.866755793756788 + ], + [ + -81.09196816114527, + 25.866755793756788 + ], + [ + -81.09196816114527, + 25.794412637805927 + ], + [ + -81.1717427988388, + 25.794412637805927 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1717427988388, + 25.866755793756788 + ], + [ + -81.1717427988388, + 25.93909894970765 + ], + [ + -81.09196816114527, + 25.93909894970765 + ], + [ + -81.09196816114527, + 25.866755793756788 + ], + [ + -81.1717427988388, + 25.866755793756788 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1717427988388, + 25.93909894970765 + ], + [ + -81.1717427988388, + 26.01144210565851 + ], + [ + -81.09196816114527, + 26.01144210565851 + ], + [ + -81.09196816114527, + 25.93909894970765 + ], + [ + -81.1717427988388, + 25.93909894970765 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1717427988388, + 26.01144210565851 + ], + [ + -81.1717427988388, + 26.08378526160937 + ], + [ + -81.09196816114527, + 26.08378526160937 + ], + [ + -81.09196816114527, + 26.01144210565851 + ], + [ + -81.1717427988388, + 26.01144210565851 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1717427988388, + 26.08378526160937 + ], + [ + -81.1717427988388, + 26.156128417560232 + ], + [ + -81.09196816114527, + 26.156128417560232 + ], + [ + -81.09196816114527, + 26.08378526160937 + ], + [ + -81.1717427988388, + 26.08378526160937 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1717427988388, + 26.156128417560232 + ], + [ + -81.1717427988388, + 26.228471573511094 + ], + [ + -81.09196816114527, + 26.228471573511094 + ], + [ + -81.09196816114527, + 26.156128417560232 + ], + [ + -81.1717427988388, + 26.156128417560232 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1717427988388, + 26.228471573511094 + ], + [ + -81.1717427988388, + 26.300814729461955 + ], + [ + -81.09196816114527, + 26.300814729461955 + ], + [ + -81.09196816114527, + 26.228471573511094 + ], + [ + -81.1717427988388, + 26.228471573511094 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1717427988388, + 26.300814729461955 + ], + [ + -81.1717427988388, + 26.373157885412816 + ], + [ + -81.09196816114527, + 26.373157885412816 + ], + [ + -81.09196816114527, + 26.300814729461955 + ], + [ + -81.1717427988388, + 26.300814729461955 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1717427988388, + 26.373157885412816 + ], + [ + -81.1717427988388, + 26.445501041363677 + ], + [ + -81.09196816114527, + 26.445501041363677 + ], + [ + -81.09196816114527, + 26.373157885412816 + ], + [ + -81.1717427988388, + 26.373157885412816 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.09196816114527, + 24.926294766395593 + ], + [ + -81.09196816114527, + 24.998637922346454 + ], + [ + -81.01219352345174, + 24.998637922346454 + ], + [ + -81.01219352345174, + 24.926294766395593 + ], + [ + -81.09196816114527, + 24.926294766395593 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.09196816114527, + 24.998637922346454 + ], + [ + -81.09196816114527, + 25.070981078297315 + ], + [ + -81.01219352345174, + 25.070981078297315 + ], + [ + -81.01219352345174, + 24.998637922346454 + ], + [ + -81.09196816114527, + 24.998637922346454 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.09196816114527, + 25.070981078297315 + ], + [ + -81.09196816114527, + 25.143324234248176 + ], + [ + -81.01219352345174, + 25.143324234248176 + ], + [ + -81.01219352345174, + 25.070981078297315 + ], + [ + -81.09196816114527, + 25.070981078297315 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.09196816114527, + 25.143324234248176 + ], + [ + -81.09196816114527, + 25.215667390199037 + ], + [ + -81.01219352345174, + 25.215667390199037 + ], + [ + -81.01219352345174, + 25.143324234248176 + ], + [ + -81.09196816114527, + 25.143324234248176 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.09196816114527, + 25.215667390199037 + ], + [ + -81.09196816114527, + 25.2880105461499 + ], + [ + -81.01219352345174, + 25.2880105461499 + ], + [ + -81.01219352345174, + 25.215667390199037 + ], + [ + -81.09196816114527, + 25.215667390199037 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.09196816114527, + 25.2880105461499 + ], + [ + -81.09196816114527, + 25.36035370210076 + ], + [ + -81.01219352345174, + 25.36035370210076 + ], + [ + -81.01219352345174, + 25.2880105461499 + ], + [ + -81.09196816114527, + 25.2880105461499 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.09196816114527, + 25.36035370210076 + ], + [ + -81.09196816114527, + 25.43269685805162 + ], + [ + -81.01219352345174, + 25.43269685805162 + ], + [ + -81.01219352345174, + 25.36035370210076 + ], + [ + -81.09196816114527, + 25.36035370210076 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.09196816114527, + 25.43269685805162 + ], + [ + -81.09196816114527, + 25.505040014002482 + ], + [ + -81.01219352345174, + 25.505040014002482 + ], + [ + -81.01219352345174, + 25.43269685805162 + ], + [ + -81.09196816114527, + 25.43269685805162 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.09196816114527, + 25.505040014002482 + ], + [ + -81.09196816114527, + 25.577383169953343 + ], + [ + -81.01219352345174, + 25.577383169953343 + ], + [ + -81.01219352345174, + 25.505040014002482 + ], + [ + -81.09196816114527, + 25.505040014002482 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.09196816114527, + 25.577383169953343 + ], + [ + -81.09196816114527, + 25.649726325904204 + ], + [ + -81.01219352345174, + 25.649726325904204 + ], + [ + -81.01219352345174, + 25.577383169953343 + ], + [ + -81.09196816114527, + 25.577383169953343 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.09196816114527, + 25.649726325904204 + ], + [ + -81.09196816114527, + 25.722069481855065 + ], + [ + -81.01219352345174, + 25.722069481855065 + ], + [ + -81.01219352345174, + 25.649726325904204 + ], + [ + -81.09196816114527, + 25.649726325904204 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.09196816114527, + 25.722069481855065 + ], + [ + -81.09196816114527, + 25.794412637805927 + ], + [ + -81.01219352345174, + 25.794412637805927 + ], + [ + -81.01219352345174, + 25.722069481855065 + ], + [ + -81.09196816114527, + 25.722069481855065 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.09196816114527, + 25.794412637805927 + ], + [ + -81.09196816114527, + 25.866755793756788 + ], + [ + -81.01219352345174, + 25.866755793756788 + ], + [ + -81.01219352345174, + 25.794412637805927 + ], + [ + -81.09196816114527, + 25.794412637805927 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.09196816114527, + 25.866755793756788 + ], + [ + -81.09196816114527, + 25.93909894970765 + ], + [ + -81.01219352345174, + 25.93909894970765 + ], + [ + -81.01219352345174, + 25.866755793756788 + ], + [ + -81.09196816114527, + 25.866755793756788 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.09196816114527, + 25.93909894970765 + ], + [ + -81.09196816114527, + 26.01144210565851 + ], + [ + -81.01219352345174, + 26.01144210565851 + ], + [ + -81.01219352345174, + 25.93909894970765 + ], + [ + -81.09196816114527, + 25.93909894970765 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.09196816114527, + 26.01144210565851 + ], + [ + -81.09196816114527, + 26.08378526160937 + ], + [ + -81.01219352345174, + 26.08378526160937 + ], + [ + -81.01219352345174, + 26.01144210565851 + ], + [ + -81.09196816114527, + 26.01144210565851 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.09196816114527, + 26.08378526160937 + ], + [ + -81.09196816114527, + 26.156128417560232 + ], + [ + -81.01219352345174, + 26.156128417560232 + ], + [ + -81.01219352345174, + 26.08378526160937 + ], + [ + -81.09196816114527, + 26.08378526160937 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.09196816114527, + 26.156128417560232 + ], + [ + -81.09196816114527, + 26.228471573511094 + ], + [ + -81.01219352345174, + 26.228471573511094 + ], + [ + -81.01219352345174, + 26.156128417560232 + ], + [ + -81.09196816114527, + 26.156128417560232 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.09196816114527, + 26.228471573511094 + ], + [ + -81.09196816114527, + 26.300814729461955 + ], + [ + -81.01219352345174, + 26.300814729461955 + ], + [ + -81.01219352345174, + 26.228471573511094 + ], + [ + -81.09196816114527, + 26.228471573511094 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.09196816114527, + 26.300814729461955 + ], + [ + -81.09196816114527, + 26.373157885412816 + ], + [ + -81.01219352345174, + 26.373157885412816 + ], + [ + -81.01219352345174, + 26.300814729461955 + ], + [ + -81.09196816114527, + 26.300814729461955 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.09196816114527, + 26.373157885412816 + ], + [ + -81.09196816114527, + 26.445501041363677 + ], + [ + -81.01219352345174, + 26.445501041363677 + ], + [ + -81.01219352345174, + 26.373157885412816 + ], + [ + -81.09196816114527, + 26.373157885412816 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.01219352345174, + 24.926294766395593 + ], + [ + -81.01219352345174, + 24.998637922346454 + ], + [ + -80.93241888575821, + 24.998637922346454 + ], + [ + -80.93241888575821, + 24.926294766395593 + ], + [ + -81.01219352345174, + 24.926294766395593 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.01219352345174, + 24.998637922346454 + ], + [ + -81.01219352345174, + 25.070981078297315 + ], + [ + -80.93241888575821, + 25.070981078297315 + ], + [ + -80.93241888575821, + 24.998637922346454 + ], + [ + -81.01219352345174, + 24.998637922346454 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.01219352345174, + 25.070981078297315 + ], + [ + -81.01219352345174, + 25.143324234248176 + ], + [ + -80.93241888575821, + 25.143324234248176 + ], + [ + -80.93241888575821, + 25.070981078297315 + ], + [ + -81.01219352345174, + 25.070981078297315 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.01219352345174, + 25.143324234248176 + ], + [ + -81.01219352345174, + 25.215667390199037 + ], + [ + -80.93241888575821, + 25.215667390199037 + ], + [ + -80.93241888575821, + 25.143324234248176 + ], + [ + -81.01219352345174, + 25.143324234248176 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.01219352345174, + 25.215667390199037 + ], + [ + -81.01219352345174, + 25.2880105461499 + ], + [ + -80.93241888575821, + 25.2880105461499 + ], + [ + -80.93241888575821, + 25.215667390199037 + ], + [ + -81.01219352345174, + 25.215667390199037 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.01219352345174, + 25.2880105461499 + ], + [ + -81.01219352345174, + 25.36035370210076 + ], + [ + -80.93241888575821, + 25.36035370210076 + ], + [ + -80.93241888575821, + 25.2880105461499 + ], + [ + -81.01219352345174, + 25.2880105461499 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.01219352345174, + 25.36035370210076 + ], + [ + -81.01219352345174, + 25.43269685805162 + ], + [ + -80.93241888575821, + 25.43269685805162 + ], + [ + -80.93241888575821, + 25.36035370210076 + ], + [ + -81.01219352345174, + 25.36035370210076 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.01219352345174, + 25.43269685805162 + ], + [ + -81.01219352345174, + 25.505040014002482 + ], + [ + -80.93241888575821, + 25.505040014002482 + ], + [ + -80.93241888575821, + 25.43269685805162 + ], + [ + -81.01219352345174, + 25.43269685805162 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.01219352345174, + 25.505040014002482 + ], + [ + -81.01219352345174, + 25.577383169953343 + ], + [ + -80.93241888575821, + 25.577383169953343 + ], + [ + -80.93241888575821, + 25.505040014002482 + ], + [ + -81.01219352345174, + 25.505040014002482 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.01219352345174, + 25.577383169953343 + ], + [ + -81.01219352345174, + 25.649726325904204 + ], + [ + -80.93241888575821, + 25.649726325904204 + ], + [ + -80.93241888575821, + 25.577383169953343 + ], + [ + -81.01219352345174, + 25.577383169953343 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.01219352345174, + 25.649726325904204 + ], + [ + -81.01219352345174, + 25.722069481855065 + ], + [ + -80.93241888575821, + 25.722069481855065 + ], + [ + -80.93241888575821, + 25.649726325904204 + ], + [ + -81.01219352345174, + 25.649726325904204 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.01219352345174, + 25.722069481855065 + ], + [ + -81.01219352345174, + 25.794412637805927 + ], + [ + -80.93241888575821, + 25.794412637805927 + ], + [ + -80.93241888575821, + 25.722069481855065 + ], + [ + -81.01219352345174, + 25.722069481855065 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.01219352345174, + 25.794412637805927 + ], + [ + -81.01219352345174, + 25.866755793756788 + ], + [ + -80.93241888575821, + 25.866755793756788 + ], + [ + -80.93241888575821, + 25.794412637805927 + ], + [ + -81.01219352345174, + 25.794412637805927 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.01219352345174, + 25.866755793756788 + ], + [ + -81.01219352345174, + 25.93909894970765 + ], + [ + -80.93241888575821, + 25.93909894970765 + ], + [ + -80.93241888575821, + 25.866755793756788 + ], + [ + -81.01219352345174, + 25.866755793756788 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.01219352345174, + 25.93909894970765 + ], + [ + -81.01219352345174, + 26.01144210565851 + ], + [ + -80.93241888575821, + 26.01144210565851 + ], + [ + -80.93241888575821, + 25.93909894970765 + ], + [ + -81.01219352345174, + 25.93909894970765 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.01219352345174, + 26.01144210565851 + ], + [ + -81.01219352345174, + 26.08378526160937 + ], + [ + -80.93241888575821, + 26.08378526160937 + ], + [ + -80.93241888575821, + 26.01144210565851 + ], + [ + -81.01219352345174, + 26.01144210565851 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.01219352345174, + 26.08378526160937 + ], + [ + -81.01219352345174, + 26.156128417560232 + ], + [ + -80.93241888575821, + 26.156128417560232 + ], + [ + -80.93241888575821, + 26.08378526160937 + ], + [ + -81.01219352345174, + 26.08378526160937 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.01219352345174, + 26.156128417560232 + ], + [ + -81.01219352345174, + 26.228471573511094 + ], + [ + -80.93241888575821, + 26.228471573511094 + ], + [ + -80.93241888575821, + 26.156128417560232 + ], + [ + -81.01219352345174, + 26.156128417560232 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.01219352345174, + 26.228471573511094 + ], + [ + -81.01219352345174, + 26.300814729461955 + ], + [ + -80.93241888575821, + 26.300814729461955 + ], + [ + -80.93241888575821, + 26.228471573511094 + ], + [ + -81.01219352345174, + 26.228471573511094 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.01219352345174, + 26.300814729461955 + ], + [ + -81.01219352345174, + 26.373157885412816 + ], + [ + -80.93241888575821, + 26.373157885412816 + ], + [ + -80.93241888575821, + 26.300814729461955 + ], + [ + -81.01219352345174, + 26.300814729461955 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.01219352345174, + 26.373157885412816 + ], + [ + -81.01219352345174, + 26.445501041363677 + ], + [ + -80.93241888575821, + 26.445501041363677 + ], + [ + -80.93241888575821, + 26.373157885412816 + ], + [ + -81.01219352345174, + 26.373157885412816 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.93241888575821, + 24.926294766395593 + ], + [ + -80.93241888575821, + 24.998637922346454 + ], + [ + -80.85264424806468, + 24.998637922346454 + ], + [ + -80.85264424806468, + 24.926294766395593 + ], + [ + -80.93241888575821, + 24.926294766395593 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.93241888575821, + 24.998637922346454 + ], + [ + -80.93241888575821, + 25.070981078297315 + ], + [ + -80.85264424806468, + 25.070981078297315 + ], + [ + -80.85264424806468, + 24.998637922346454 + ], + [ + -80.93241888575821, + 24.998637922346454 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.93241888575821, + 25.070981078297315 + ], + [ + -80.93241888575821, + 25.143324234248176 + ], + [ + -80.85264424806468, + 25.143324234248176 + ], + [ + -80.85264424806468, + 25.070981078297315 + ], + [ + -80.93241888575821, + 25.070981078297315 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.93241888575821, + 25.143324234248176 + ], + [ + -80.93241888575821, + 25.215667390199037 + ], + [ + -80.85264424806468, + 25.215667390199037 + ], + [ + -80.85264424806468, + 25.143324234248176 + ], + [ + -80.93241888575821, + 25.143324234248176 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.93241888575821, + 25.215667390199037 + ], + [ + -80.93241888575821, + 25.2880105461499 + ], + [ + -80.85264424806468, + 25.2880105461499 + ], + [ + -80.85264424806468, + 25.215667390199037 + ], + [ + -80.93241888575821, + 25.215667390199037 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.93241888575821, + 25.2880105461499 + ], + [ + -80.93241888575821, + 25.36035370210076 + ], + [ + -80.85264424806468, + 25.36035370210076 + ], + [ + -80.85264424806468, + 25.2880105461499 + ], + [ + -80.93241888575821, + 25.2880105461499 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.93241888575821, + 25.36035370210076 + ], + [ + -80.93241888575821, + 25.43269685805162 + ], + [ + -80.85264424806468, + 25.43269685805162 + ], + [ + -80.85264424806468, + 25.36035370210076 + ], + [ + -80.93241888575821, + 25.36035370210076 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.93241888575821, + 25.43269685805162 + ], + [ + -80.93241888575821, + 25.505040014002482 + ], + [ + -80.85264424806468, + 25.505040014002482 + ], + [ + -80.85264424806468, + 25.43269685805162 + ], + [ + -80.93241888575821, + 25.43269685805162 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.93241888575821, + 25.505040014002482 + ], + [ + -80.93241888575821, + 25.577383169953343 + ], + [ + -80.85264424806468, + 25.577383169953343 + ], + [ + -80.85264424806468, + 25.505040014002482 + ], + [ + -80.93241888575821, + 25.505040014002482 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.93241888575821, + 25.577383169953343 + ], + [ + -80.93241888575821, + 25.649726325904204 + ], + [ + -80.85264424806468, + 25.649726325904204 + ], + [ + -80.85264424806468, + 25.577383169953343 + ], + [ + -80.93241888575821, + 25.577383169953343 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.93241888575821, + 25.649726325904204 + ], + [ + -80.93241888575821, + 25.722069481855065 + ], + [ + -80.85264424806468, + 25.722069481855065 + ], + [ + -80.85264424806468, + 25.649726325904204 + ], + [ + -80.93241888575821, + 25.649726325904204 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.93241888575821, + 25.722069481855065 + ], + [ + -80.93241888575821, + 25.794412637805927 + ], + [ + -80.85264424806468, + 25.794412637805927 + ], + [ + -80.85264424806468, + 25.722069481855065 + ], + [ + -80.93241888575821, + 25.722069481855065 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.93241888575821, + 25.794412637805927 + ], + [ + -80.93241888575821, + 25.866755793756788 + ], + [ + -80.85264424806468, + 25.866755793756788 + ], + [ + -80.85264424806468, + 25.794412637805927 + ], + [ + -80.93241888575821, + 25.794412637805927 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.93241888575821, + 25.866755793756788 + ], + [ + -80.93241888575821, + 25.93909894970765 + ], + [ + -80.85264424806468, + 25.93909894970765 + ], + [ + -80.85264424806468, + 25.866755793756788 + ], + [ + -80.93241888575821, + 25.866755793756788 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.93241888575821, + 25.93909894970765 + ], + [ + -80.93241888575821, + 26.01144210565851 + ], + [ + -80.85264424806468, + 26.01144210565851 + ], + [ + -80.85264424806468, + 25.93909894970765 + ], + [ + -80.93241888575821, + 25.93909894970765 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.93241888575821, + 26.01144210565851 + ], + [ + -80.93241888575821, + 26.08378526160937 + ], + [ + -80.85264424806468, + 26.08378526160937 + ], + [ + -80.85264424806468, + 26.01144210565851 + ], + [ + -80.93241888575821, + 26.01144210565851 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.93241888575821, + 26.08378526160937 + ], + [ + -80.93241888575821, + 26.156128417560232 + ], + [ + -80.85264424806468, + 26.156128417560232 + ], + [ + -80.85264424806468, + 26.08378526160937 + ], + [ + -80.93241888575821, + 26.08378526160937 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.93241888575821, + 26.156128417560232 + ], + [ + -80.93241888575821, + 26.228471573511094 + ], + [ + -80.85264424806468, + 26.228471573511094 + ], + [ + -80.85264424806468, + 26.156128417560232 + ], + [ + -80.93241888575821, + 26.156128417560232 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.93241888575821, + 26.228471573511094 + ], + [ + -80.93241888575821, + 26.300814729461955 + ], + [ + -80.85264424806468, + 26.300814729461955 + ], + [ + -80.85264424806468, + 26.228471573511094 + ], + [ + -80.93241888575821, + 26.228471573511094 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.93241888575821, + 26.300814729461955 + ], + [ + -80.93241888575821, + 26.373157885412816 + ], + [ + -80.85264424806468, + 26.373157885412816 + ], + [ + -80.85264424806468, + 26.300814729461955 + ], + [ + -80.93241888575821, + 26.300814729461955 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.93241888575821, + 26.373157885412816 + ], + [ + -80.93241888575821, + 26.445501041363677 + ], + [ + -80.85264424806468, + 26.445501041363677 + ], + [ + -80.85264424806468, + 26.373157885412816 + ], + [ + -80.93241888575821, + 26.373157885412816 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.85264424806468, + 24.926294766395593 + ], + [ + -80.85264424806468, + 24.998637922346454 + ], + [ + -80.77286961037115, + 24.998637922346454 + ], + [ + -80.77286961037115, + 24.926294766395593 + ], + [ + -80.85264424806468, + 24.926294766395593 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.85264424806468, + 24.998637922346454 + ], + [ + -80.85264424806468, + 25.070981078297315 + ], + [ + -80.77286961037115, + 25.070981078297315 + ], + [ + -80.77286961037115, + 24.998637922346454 + ], + [ + -80.85264424806468, + 24.998637922346454 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.85264424806468, + 25.070981078297315 + ], + [ + -80.85264424806468, + 25.143324234248176 + ], + [ + -80.77286961037115, + 25.143324234248176 + ], + [ + -80.77286961037115, + 25.070981078297315 + ], + [ + -80.85264424806468, + 25.070981078297315 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.85264424806468, + 25.143324234248176 + ], + [ + -80.85264424806468, + 25.215667390199037 + ], + [ + -80.77286961037115, + 25.215667390199037 + ], + [ + -80.77286961037115, + 25.143324234248176 + ], + [ + -80.85264424806468, + 25.143324234248176 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.85264424806468, + 25.215667390199037 + ], + [ + -80.85264424806468, + 25.2880105461499 + ], + [ + -80.77286961037115, + 25.2880105461499 + ], + [ + -80.77286961037115, + 25.215667390199037 + ], + [ + -80.85264424806468, + 25.215667390199037 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.85264424806468, + 25.2880105461499 + ], + [ + -80.85264424806468, + 25.36035370210076 + ], + [ + -80.77286961037115, + 25.36035370210076 + ], + [ + -80.77286961037115, + 25.2880105461499 + ], + [ + -80.85264424806468, + 25.2880105461499 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.85264424806468, + 25.36035370210076 + ], + [ + -80.85264424806468, + 25.43269685805162 + ], + [ + -80.77286961037115, + 25.43269685805162 + ], + [ + -80.77286961037115, + 25.36035370210076 + ], + [ + -80.85264424806468, + 25.36035370210076 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.85264424806468, + 25.43269685805162 + ], + [ + -80.85264424806468, + 25.505040014002482 + ], + [ + -80.77286961037115, + 25.505040014002482 + ], + [ + -80.77286961037115, + 25.43269685805162 + ], + [ + -80.85264424806468, + 25.43269685805162 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.85264424806468, + 25.505040014002482 + ], + [ + -80.85264424806468, + 25.577383169953343 + ], + [ + -80.77286961037115, + 25.577383169953343 + ], + [ + -80.77286961037115, + 25.505040014002482 + ], + [ + -80.85264424806468, + 25.505040014002482 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.85264424806468, + 25.577383169953343 + ], + [ + -80.85264424806468, + 25.649726325904204 + ], + [ + -80.77286961037115, + 25.649726325904204 + ], + [ + -80.77286961037115, + 25.577383169953343 + ], + [ + -80.85264424806468, + 25.577383169953343 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.85264424806468, + 25.649726325904204 + ], + [ + -80.85264424806468, + 25.722069481855065 + ], + [ + -80.77286961037115, + 25.722069481855065 + ], + [ + -80.77286961037115, + 25.649726325904204 + ], + [ + -80.85264424806468, + 25.649726325904204 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.85264424806468, + 25.722069481855065 + ], + [ + -80.85264424806468, + 25.794412637805927 + ], + [ + -80.77286961037115, + 25.794412637805927 + ], + [ + -80.77286961037115, + 25.722069481855065 + ], + [ + -80.85264424806468, + 25.722069481855065 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.85264424806468, + 25.794412637805927 + ], + [ + -80.85264424806468, + 25.866755793756788 + ], + [ + -80.77286961037115, + 25.866755793756788 + ], + [ + -80.77286961037115, + 25.794412637805927 + ], + [ + -80.85264424806468, + 25.794412637805927 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.85264424806468, + 25.866755793756788 + ], + [ + -80.85264424806468, + 25.93909894970765 + ], + [ + -80.77286961037115, + 25.93909894970765 + ], + [ + -80.77286961037115, + 25.866755793756788 + ], + [ + -80.85264424806468, + 25.866755793756788 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.85264424806468, + 25.93909894970765 + ], + [ + -80.85264424806468, + 26.01144210565851 + ], + [ + -80.77286961037115, + 26.01144210565851 + ], + [ + -80.77286961037115, + 25.93909894970765 + ], + [ + -80.85264424806468, + 25.93909894970765 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.85264424806468, + 26.01144210565851 + ], + [ + -80.85264424806468, + 26.08378526160937 + ], + [ + -80.77286961037115, + 26.08378526160937 + ], + [ + -80.77286961037115, + 26.01144210565851 + ], + [ + -80.85264424806468, + 26.01144210565851 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.85264424806468, + 26.08378526160937 + ], + [ + -80.85264424806468, + 26.156128417560232 + ], + [ + -80.77286961037115, + 26.156128417560232 + ], + [ + -80.77286961037115, + 26.08378526160937 + ], + [ + -80.85264424806468, + 26.08378526160937 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.85264424806468, + 26.156128417560232 + ], + [ + -80.85264424806468, + 26.228471573511094 + ], + [ + -80.77286961037115, + 26.228471573511094 + ], + [ + -80.77286961037115, + 26.156128417560232 + ], + [ + -80.85264424806468, + 26.156128417560232 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.85264424806468, + 26.228471573511094 + ], + [ + -80.85264424806468, + 26.300814729461955 + ], + [ + -80.77286961037115, + 26.300814729461955 + ], + [ + -80.77286961037115, + 26.228471573511094 + ], + [ + -80.85264424806468, + 26.228471573511094 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.85264424806468, + 26.300814729461955 + ], + [ + -80.85264424806468, + 26.373157885412816 + ], + [ + -80.77286961037115, + 26.373157885412816 + ], + [ + -80.77286961037115, + 26.300814729461955 + ], + [ + -80.85264424806468, + 26.300814729461955 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.85264424806468, + 26.373157885412816 + ], + [ + -80.85264424806468, + 26.445501041363677 + ], + [ + -80.77286961037115, + 26.445501041363677 + ], + [ + -80.77286961037115, + 26.373157885412816 + ], + [ + -80.85264424806468, + 26.373157885412816 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.77286961037115, + 24.926294766395593 + ], + [ + -80.77286961037115, + 24.998637922346454 + ], + [ + -80.69309497267761, + 24.998637922346454 + ], + [ + -80.69309497267761, + 24.926294766395593 + ], + [ + -80.77286961037115, + 24.926294766395593 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.77286961037115, + 24.998637922346454 + ], + [ + -80.77286961037115, + 25.070981078297315 + ], + [ + -80.69309497267761, + 25.070981078297315 + ], + [ + -80.69309497267761, + 24.998637922346454 + ], + [ + -80.77286961037115, + 24.998637922346454 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.77286961037115, + 25.070981078297315 + ], + [ + -80.77286961037115, + 25.143324234248176 + ], + [ + -80.69309497267761, + 25.143324234248176 + ], + [ + -80.69309497267761, + 25.070981078297315 + ], + [ + -80.77286961037115, + 25.070981078297315 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.77286961037115, + 25.143324234248176 + ], + [ + -80.77286961037115, + 25.215667390199037 + ], + [ + -80.69309497267761, + 25.215667390199037 + ], + [ + -80.69309497267761, + 25.143324234248176 + ], + [ + -80.77286961037115, + 25.143324234248176 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.77286961037115, + 25.215667390199037 + ], + [ + -80.77286961037115, + 25.2880105461499 + ], + [ + -80.69309497267761, + 25.2880105461499 + ], + [ + -80.69309497267761, + 25.215667390199037 + ], + [ + -80.77286961037115, + 25.215667390199037 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.77286961037115, + 25.2880105461499 + ], + [ + -80.77286961037115, + 25.36035370210076 + ], + [ + -80.69309497267761, + 25.36035370210076 + ], + [ + -80.69309497267761, + 25.2880105461499 + ], + [ + -80.77286961037115, + 25.2880105461499 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.77286961037115, + 25.36035370210076 + ], + [ + -80.77286961037115, + 25.43269685805162 + ], + [ + -80.69309497267761, + 25.43269685805162 + ], + [ + -80.69309497267761, + 25.36035370210076 + ], + [ + -80.77286961037115, + 25.36035370210076 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.77286961037115, + 25.43269685805162 + ], + [ + -80.77286961037115, + 25.505040014002482 + ], + [ + -80.69309497267761, + 25.505040014002482 + ], + [ + -80.69309497267761, + 25.43269685805162 + ], + [ + -80.77286961037115, + 25.43269685805162 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.77286961037115, + 25.505040014002482 + ], + [ + -80.77286961037115, + 25.577383169953343 + ], + [ + -80.69309497267761, + 25.577383169953343 + ], + [ + -80.69309497267761, + 25.505040014002482 + ], + [ + -80.77286961037115, + 25.505040014002482 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.77286961037115, + 25.577383169953343 + ], + [ + -80.77286961037115, + 25.649726325904204 + ], + [ + -80.69309497267761, + 25.649726325904204 + ], + [ + -80.69309497267761, + 25.577383169953343 + ], + [ + -80.77286961037115, + 25.577383169953343 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.77286961037115, + 25.649726325904204 + ], + [ + -80.77286961037115, + 25.722069481855065 + ], + [ + -80.69309497267761, + 25.722069481855065 + ], + [ + -80.69309497267761, + 25.649726325904204 + ], + [ + -80.77286961037115, + 25.649726325904204 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.77286961037115, + 25.722069481855065 + ], + [ + -80.77286961037115, + 25.794412637805927 + ], + [ + -80.69309497267761, + 25.794412637805927 + ], + [ + -80.69309497267761, + 25.722069481855065 + ], + [ + -80.77286961037115, + 25.722069481855065 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.77286961037115, + 25.794412637805927 + ], + [ + -80.77286961037115, + 25.866755793756788 + ], + [ + -80.69309497267761, + 25.866755793756788 + ], + [ + -80.69309497267761, + 25.794412637805927 + ], + [ + -80.77286961037115, + 25.794412637805927 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.77286961037115, + 25.866755793756788 + ], + [ + -80.77286961037115, + 25.93909894970765 + ], + [ + -80.69309497267761, + 25.93909894970765 + ], + [ + -80.69309497267761, + 25.866755793756788 + ], + [ + -80.77286961037115, + 25.866755793756788 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.77286961037115, + 25.93909894970765 + ], + [ + -80.77286961037115, + 26.01144210565851 + ], + [ + -80.69309497267761, + 26.01144210565851 + ], + [ + -80.69309497267761, + 25.93909894970765 + ], + [ + -80.77286961037115, + 25.93909894970765 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.77286961037115, + 26.01144210565851 + ], + [ + -80.77286961037115, + 26.08378526160937 + ], + [ + -80.69309497267761, + 26.08378526160937 + ], + [ + -80.69309497267761, + 26.01144210565851 + ], + [ + -80.77286961037115, + 26.01144210565851 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.77286961037115, + 26.08378526160937 + ], + [ + -80.77286961037115, + 26.156128417560232 + ], + [ + -80.69309497267761, + 26.156128417560232 + ], + [ + -80.69309497267761, + 26.08378526160937 + ], + [ + -80.77286961037115, + 26.08378526160937 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.77286961037115, + 26.156128417560232 + ], + [ + -80.77286961037115, + 26.228471573511094 + ], + [ + -80.69309497267761, + 26.228471573511094 + ], + [ + -80.69309497267761, + 26.156128417560232 + ], + [ + -80.77286961037115, + 26.156128417560232 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.77286961037115, + 26.228471573511094 + ], + [ + -80.77286961037115, + 26.300814729461955 + ], + [ + -80.69309497267761, + 26.300814729461955 + ], + [ + -80.69309497267761, + 26.228471573511094 + ], + [ + -80.77286961037115, + 26.228471573511094 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.77286961037115, + 26.300814729461955 + ], + [ + -80.77286961037115, + 26.373157885412816 + ], + [ + -80.69309497267761, + 26.373157885412816 + ], + [ + -80.69309497267761, + 26.300814729461955 + ], + [ + -80.77286961037115, + 26.300814729461955 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.77286961037115, + 26.373157885412816 + ], + [ + -80.77286961037115, + 26.445501041363677 + ], + [ + -80.69309497267761, + 26.445501041363677 + ], + [ + -80.69309497267761, + 26.373157885412816 + ], + [ + -80.77286961037115, + 26.373157885412816 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.69309497267761, + 24.926294766395593 + ], + [ + -80.69309497267761, + 24.998637922346454 + ], + [ + -80.61332033498408, + 24.998637922346454 + ], + [ + -80.61332033498408, + 24.926294766395593 + ], + [ + -80.69309497267761, + 24.926294766395593 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.69309497267761, + 24.998637922346454 + ], + [ + -80.69309497267761, + 25.070981078297315 + ], + [ + -80.61332033498408, + 25.070981078297315 + ], + [ + -80.61332033498408, + 24.998637922346454 + ], + [ + -80.69309497267761, + 24.998637922346454 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.69309497267761, + 25.070981078297315 + ], + [ + -80.69309497267761, + 25.143324234248176 + ], + [ + -80.61332033498408, + 25.143324234248176 + ], + [ + -80.61332033498408, + 25.070981078297315 + ], + [ + -80.69309497267761, + 25.070981078297315 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.69309497267761, + 25.143324234248176 + ], + [ + -80.69309497267761, + 25.215667390199037 + ], + [ + -80.61332033498408, + 25.215667390199037 + ], + [ + -80.61332033498408, + 25.143324234248176 + ], + [ + -80.69309497267761, + 25.143324234248176 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.69309497267761, + 25.215667390199037 + ], + [ + -80.69309497267761, + 25.2880105461499 + ], + [ + -80.61332033498408, + 25.2880105461499 + ], + [ + -80.61332033498408, + 25.215667390199037 + ], + [ + -80.69309497267761, + 25.215667390199037 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.69309497267761, + 25.2880105461499 + ], + [ + -80.69309497267761, + 25.36035370210076 + ], + [ + -80.61332033498408, + 25.36035370210076 + ], + [ + -80.61332033498408, + 25.2880105461499 + ], + [ + -80.69309497267761, + 25.2880105461499 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.69309497267761, + 25.36035370210076 + ], + [ + -80.69309497267761, + 25.43269685805162 + ], + [ + -80.61332033498408, + 25.43269685805162 + ], + [ + -80.61332033498408, + 25.36035370210076 + ], + [ + -80.69309497267761, + 25.36035370210076 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.69309497267761, + 25.43269685805162 + ], + [ + -80.69309497267761, + 25.505040014002482 + ], + [ + -80.61332033498408, + 25.505040014002482 + ], + [ + -80.61332033498408, + 25.43269685805162 + ], + [ + -80.69309497267761, + 25.43269685805162 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.69309497267761, + 25.505040014002482 + ], + [ + -80.69309497267761, + 25.577383169953343 + ], + [ + -80.61332033498408, + 25.577383169953343 + ], + [ + -80.61332033498408, + 25.505040014002482 + ], + [ + -80.69309497267761, + 25.505040014002482 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.69309497267761, + 25.577383169953343 + ], + [ + -80.69309497267761, + 25.649726325904204 + ], + [ + -80.61332033498408, + 25.649726325904204 + ], + [ + -80.61332033498408, + 25.577383169953343 + ], + [ + -80.69309497267761, + 25.577383169953343 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.69309497267761, + 25.649726325904204 + ], + [ + -80.69309497267761, + 25.722069481855065 + ], + [ + -80.61332033498408, + 25.722069481855065 + ], + [ + -80.61332033498408, + 25.649726325904204 + ], + [ + -80.69309497267761, + 25.649726325904204 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.69309497267761, + 25.722069481855065 + ], + [ + -80.69309497267761, + 25.794412637805927 + ], + [ + -80.61332033498408, + 25.794412637805927 + ], + [ + -80.61332033498408, + 25.722069481855065 + ], + [ + -80.69309497267761, + 25.722069481855065 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.69309497267761, + 25.794412637805927 + ], + [ + -80.69309497267761, + 25.866755793756788 + ], + [ + -80.61332033498408, + 25.866755793756788 + ], + [ + -80.61332033498408, + 25.794412637805927 + ], + [ + -80.69309497267761, + 25.794412637805927 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.69309497267761, + 25.866755793756788 + ], + [ + -80.69309497267761, + 25.93909894970765 + ], + [ + -80.61332033498408, + 25.93909894970765 + ], + [ + -80.61332033498408, + 25.866755793756788 + ], + [ + -80.69309497267761, + 25.866755793756788 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.69309497267761, + 25.93909894970765 + ], + [ + -80.69309497267761, + 26.01144210565851 + ], + [ + -80.61332033498408, + 26.01144210565851 + ], + [ + -80.61332033498408, + 25.93909894970765 + ], + [ + -80.69309497267761, + 25.93909894970765 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.69309497267761, + 26.01144210565851 + ], + [ + -80.69309497267761, + 26.08378526160937 + ], + [ + -80.61332033498408, + 26.08378526160937 + ], + [ + -80.61332033498408, + 26.01144210565851 + ], + [ + -80.69309497267761, + 26.01144210565851 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.69309497267761, + 26.08378526160937 + ], + [ + -80.69309497267761, + 26.156128417560232 + ], + [ + -80.61332033498408, + 26.156128417560232 + ], + [ + -80.61332033498408, + 26.08378526160937 + ], + [ + -80.69309497267761, + 26.08378526160937 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.69309497267761, + 26.156128417560232 + ], + [ + -80.69309497267761, + 26.228471573511094 + ], + [ + -80.61332033498408, + 26.228471573511094 + ], + [ + -80.61332033498408, + 26.156128417560232 + ], + [ + -80.69309497267761, + 26.156128417560232 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.69309497267761, + 26.228471573511094 + ], + [ + -80.69309497267761, + 26.300814729461955 + ], + [ + -80.61332033498408, + 26.300814729461955 + ], + [ + -80.61332033498408, + 26.228471573511094 + ], + [ + -80.69309497267761, + 26.228471573511094 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.69309497267761, + 26.300814729461955 + ], + [ + -80.69309497267761, + 26.373157885412816 + ], + [ + -80.61332033498408, + 26.373157885412816 + ], + [ + -80.61332033498408, + 26.300814729461955 + ], + [ + -80.69309497267761, + 26.300814729461955 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.69309497267761, + 26.373157885412816 + ], + [ + -80.69309497267761, + 26.445501041363677 + ], + [ + -80.61332033498408, + 26.445501041363677 + ], + [ + -80.61332033498408, + 26.373157885412816 + ], + [ + -80.69309497267761, + 26.373157885412816 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.61332033498408, + 24.926294766395593 + ], + [ + -80.61332033498408, + 24.998637922346454 + ], + [ + -80.53354569729055, + 24.998637922346454 + ], + [ + -80.53354569729055, + 24.926294766395593 + ], + [ + -80.61332033498408, + 24.926294766395593 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.61332033498408, + 24.998637922346454 + ], + [ + -80.61332033498408, + 25.070981078297315 + ], + [ + -80.53354569729055, + 25.070981078297315 + ], + [ + -80.53354569729055, + 24.998637922346454 + ], + [ + -80.61332033498408, + 24.998637922346454 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.61332033498408, + 25.070981078297315 + ], + [ + -80.61332033498408, + 25.143324234248176 + ], + [ + -80.53354569729055, + 25.143324234248176 + ], + [ + -80.53354569729055, + 25.070981078297315 + ], + [ + -80.61332033498408, + 25.070981078297315 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.61332033498408, + 25.143324234248176 + ], + [ + -80.61332033498408, + 25.215667390199037 + ], + [ + -80.53354569729055, + 25.215667390199037 + ], + [ + -80.53354569729055, + 25.143324234248176 + ], + [ + -80.61332033498408, + 25.143324234248176 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.61332033498408, + 25.215667390199037 + ], + [ + -80.61332033498408, + 25.2880105461499 + ], + [ + -80.53354569729055, + 25.2880105461499 + ], + [ + -80.53354569729055, + 25.215667390199037 + ], + [ + -80.61332033498408, + 25.215667390199037 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.61332033498408, + 25.2880105461499 + ], + [ + -80.61332033498408, + 25.36035370210076 + ], + [ + -80.53354569729055, + 25.36035370210076 + ], + [ + -80.53354569729055, + 25.2880105461499 + ], + [ + -80.61332033498408, + 25.2880105461499 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.61332033498408, + 25.36035370210076 + ], + [ + -80.61332033498408, + 25.43269685805162 + ], + [ + -80.53354569729055, + 25.43269685805162 + ], + [ + -80.53354569729055, + 25.36035370210076 + ], + [ + -80.61332033498408, + 25.36035370210076 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.61332033498408, + 25.43269685805162 + ], + [ + -80.61332033498408, + 25.505040014002482 + ], + [ + -80.53354569729055, + 25.505040014002482 + ], + [ + -80.53354569729055, + 25.43269685805162 + ], + [ + -80.61332033498408, + 25.43269685805162 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.61332033498408, + 25.505040014002482 + ], + [ + -80.61332033498408, + 25.577383169953343 + ], + [ + -80.53354569729055, + 25.577383169953343 + ], + [ + -80.53354569729055, + 25.505040014002482 + ], + [ + -80.61332033498408, + 25.505040014002482 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.61332033498408, + 25.577383169953343 + ], + [ + -80.61332033498408, + 25.649726325904204 + ], + [ + -80.53354569729055, + 25.649726325904204 + ], + [ + -80.53354569729055, + 25.577383169953343 + ], + [ + -80.61332033498408, + 25.577383169953343 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.61332033498408, + 25.649726325904204 + ], + [ + -80.61332033498408, + 25.722069481855065 + ], + [ + -80.53354569729055, + 25.722069481855065 + ], + [ + -80.53354569729055, + 25.649726325904204 + ], + [ + -80.61332033498408, + 25.649726325904204 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.61332033498408, + 25.722069481855065 + ], + [ + -80.61332033498408, + 25.794412637805927 + ], + [ + -80.53354569729055, + 25.794412637805927 + ], + [ + -80.53354569729055, + 25.722069481855065 + ], + [ + -80.61332033498408, + 25.722069481855065 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.61332033498408, + 25.794412637805927 + ], + [ + -80.61332033498408, + 25.866755793756788 + ], + [ + -80.53354569729055, + 25.866755793756788 + ], + [ + -80.53354569729055, + 25.794412637805927 + ], + [ + -80.61332033498408, + 25.794412637805927 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.61332033498408, + 25.866755793756788 + ], + [ + -80.61332033498408, + 25.93909894970765 + ], + [ + -80.53354569729055, + 25.93909894970765 + ], + [ + -80.53354569729055, + 25.866755793756788 + ], + [ + -80.61332033498408, + 25.866755793756788 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.61332033498408, + 25.93909894970765 + ], + [ + -80.61332033498408, + 26.01144210565851 + ], + [ + -80.53354569729055, + 26.01144210565851 + ], + [ + -80.53354569729055, + 25.93909894970765 + ], + [ + -80.61332033498408, + 25.93909894970765 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.61332033498408, + 26.01144210565851 + ], + [ + -80.61332033498408, + 26.08378526160937 + ], + [ + -80.53354569729055, + 26.08378526160937 + ], + [ + -80.53354569729055, + 26.01144210565851 + ], + [ + -80.61332033498408, + 26.01144210565851 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.61332033498408, + 26.08378526160937 + ], + [ + -80.61332033498408, + 26.156128417560232 + ], + [ + -80.53354569729055, + 26.156128417560232 + ], + [ + -80.53354569729055, + 26.08378526160937 + ], + [ + -80.61332033498408, + 26.08378526160937 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.61332033498408, + 26.156128417560232 + ], + [ + -80.61332033498408, + 26.228471573511094 + ], + [ + -80.53354569729055, + 26.228471573511094 + ], + [ + -80.53354569729055, + 26.156128417560232 + ], + [ + -80.61332033498408, + 26.156128417560232 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.61332033498408, + 26.228471573511094 + ], + [ + -80.61332033498408, + 26.300814729461955 + ], + [ + -80.53354569729055, + 26.300814729461955 + ], + [ + -80.53354569729055, + 26.228471573511094 + ], + [ + -80.61332033498408, + 26.228471573511094 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.61332033498408, + 26.300814729461955 + ], + [ + -80.61332033498408, + 26.373157885412816 + ], + [ + -80.53354569729055, + 26.373157885412816 + ], + [ + -80.53354569729055, + 26.300814729461955 + ], + [ + -80.61332033498408, + 26.300814729461955 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.61332033498408, + 26.373157885412816 + ], + [ + -80.61332033498408, + 26.445501041363677 + ], + [ + -80.53354569729055, + 26.445501041363677 + ], + [ + -80.53354569729055, + 26.373157885412816 + ], + [ + -80.61332033498408, + 26.373157885412816 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.53354569729055, + 24.926294766395593 + ], + [ + -80.53354569729055, + 24.998637922346454 + ], + [ + -80.45377105959702, + 24.998637922346454 + ], + [ + -80.45377105959702, + 24.926294766395593 + ], + [ + -80.53354569729055, + 24.926294766395593 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.53354569729055, + 24.998637922346454 + ], + [ + -80.53354569729055, + 25.070981078297315 + ], + [ + -80.45377105959702, + 25.070981078297315 + ], + [ + -80.45377105959702, + 24.998637922346454 + ], + [ + -80.53354569729055, + 24.998637922346454 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.53354569729055, + 25.070981078297315 + ], + [ + -80.53354569729055, + 25.143324234248176 + ], + [ + -80.45377105959702, + 25.143324234248176 + ], + [ + -80.45377105959702, + 25.070981078297315 + ], + [ + -80.53354569729055, + 25.070981078297315 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.53354569729055, + 25.143324234248176 + ], + [ + -80.53354569729055, + 25.215667390199037 + ], + [ + -80.45377105959702, + 25.215667390199037 + ], + [ + -80.45377105959702, + 25.143324234248176 + ], + [ + -80.53354569729055, + 25.143324234248176 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.53354569729055, + 25.215667390199037 + ], + [ + -80.53354569729055, + 25.2880105461499 + ], + [ + -80.45377105959702, + 25.2880105461499 + ], + [ + -80.45377105959702, + 25.215667390199037 + ], + [ + -80.53354569729055, + 25.215667390199037 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.53354569729055, + 25.2880105461499 + ], + [ + -80.53354569729055, + 25.36035370210076 + ], + [ + -80.45377105959702, + 25.36035370210076 + ], + [ + -80.45377105959702, + 25.2880105461499 + ], + [ + -80.53354569729055, + 25.2880105461499 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.53354569729055, + 25.36035370210076 + ], + [ + -80.53354569729055, + 25.43269685805162 + ], + [ + -80.45377105959702, + 25.43269685805162 + ], + [ + -80.45377105959702, + 25.36035370210076 + ], + [ + -80.53354569729055, + 25.36035370210076 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.53354569729055, + 25.43269685805162 + ], + [ + -80.53354569729055, + 25.505040014002482 + ], + [ + -80.45377105959702, + 25.505040014002482 + ], + [ + -80.45377105959702, + 25.43269685805162 + ], + [ + -80.53354569729055, + 25.43269685805162 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.53354569729055, + 25.505040014002482 + ], + [ + -80.53354569729055, + 25.577383169953343 + ], + [ + -80.45377105959702, + 25.577383169953343 + ], + [ + -80.45377105959702, + 25.505040014002482 + ], + [ + -80.53354569729055, + 25.505040014002482 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.53354569729055, + 25.577383169953343 + ], + [ + -80.53354569729055, + 25.649726325904204 + ], + [ + -80.45377105959702, + 25.649726325904204 + ], + [ + -80.45377105959702, + 25.577383169953343 + ], + [ + -80.53354569729055, + 25.577383169953343 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.53354569729055, + 25.649726325904204 + ], + [ + -80.53354569729055, + 25.722069481855065 + ], + [ + -80.45377105959702, + 25.722069481855065 + ], + [ + -80.45377105959702, + 25.649726325904204 + ], + [ + -80.53354569729055, + 25.649726325904204 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.53354569729055, + 25.722069481855065 + ], + [ + -80.53354569729055, + 25.794412637805927 + ], + [ + -80.45377105959702, + 25.794412637805927 + ], + [ + -80.45377105959702, + 25.722069481855065 + ], + [ + -80.53354569729055, + 25.722069481855065 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.53354569729055, + 25.794412637805927 + ], + [ + -80.53354569729055, + 25.866755793756788 + ], + [ + -80.45377105959702, + 25.866755793756788 + ], + [ + -80.45377105959702, + 25.794412637805927 + ], + [ + -80.53354569729055, + 25.794412637805927 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.53354569729055, + 25.866755793756788 + ], + [ + -80.53354569729055, + 25.93909894970765 + ], + [ + -80.45377105959702, + 25.93909894970765 + ], + [ + -80.45377105959702, + 25.866755793756788 + ], + [ + -80.53354569729055, + 25.866755793756788 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.53354569729055, + 25.93909894970765 + ], + [ + -80.53354569729055, + 26.01144210565851 + ], + [ + -80.45377105959702, + 26.01144210565851 + ], + [ + -80.45377105959702, + 25.93909894970765 + ], + [ + -80.53354569729055, + 25.93909894970765 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.53354569729055, + 26.01144210565851 + ], + [ + -80.53354569729055, + 26.08378526160937 + ], + [ + -80.45377105959702, + 26.08378526160937 + ], + [ + -80.45377105959702, + 26.01144210565851 + ], + [ + -80.53354569729055, + 26.01144210565851 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.53354569729055, + 26.08378526160937 + ], + [ + -80.53354569729055, + 26.156128417560232 + ], + [ + -80.45377105959702, + 26.156128417560232 + ], + [ + -80.45377105959702, + 26.08378526160937 + ], + [ + -80.53354569729055, + 26.08378526160937 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.53354569729055, + 26.156128417560232 + ], + [ + -80.53354569729055, + 26.228471573511094 + ], + [ + -80.45377105959702, + 26.228471573511094 + ], + [ + -80.45377105959702, + 26.156128417560232 + ], + [ + -80.53354569729055, + 26.156128417560232 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.53354569729055, + 26.228471573511094 + ], + [ + -80.53354569729055, + 26.300814729461955 + ], + [ + -80.45377105959702, + 26.300814729461955 + ], + [ + -80.45377105959702, + 26.228471573511094 + ], + [ + -80.53354569729055, + 26.228471573511094 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.53354569729055, + 26.300814729461955 + ], + [ + -80.53354569729055, + 26.373157885412816 + ], + [ + -80.45377105959702, + 26.373157885412816 + ], + [ + -80.45377105959702, + 26.300814729461955 + ], + [ + -80.53354569729055, + 26.300814729461955 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.53354569729055, + 26.373157885412816 + ], + [ + -80.53354569729055, + 26.445501041363677 + ], + [ + -80.45377105959702, + 26.445501041363677 + ], + [ + -80.45377105959702, + 26.373157885412816 + ], + [ + -80.53354569729055, + 26.373157885412816 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45377105959702, + 24.926294766395593 + ], + [ + -80.45377105959702, + 24.998637922346454 + ], + [ + -80.37399642190348, + 24.998637922346454 + ], + [ + -80.37399642190348, + 24.926294766395593 + ], + [ + -80.45377105959702, + 24.926294766395593 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45377105959702, + 24.998637922346454 + ], + [ + -80.45377105959702, + 25.070981078297315 + ], + [ + -80.37399642190348, + 25.070981078297315 + ], + [ + -80.37399642190348, + 24.998637922346454 + ], + [ + -80.45377105959702, + 24.998637922346454 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45377105959702, + 25.070981078297315 + ], + [ + -80.45377105959702, + 25.143324234248176 + ], + [ + -80.37399642190348, + 25.143324234248176 + ], + [ + -80.37399642190348, + 25.070981078297315 + ], + [ + -80.45377105959702, + 25.070981078297315 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45377105959702, + 25.143324234248176 + ], + [ + -80.45377105959702, + 25.215667390199037 + ], + [ + -80.37399642190348, + 25.215667390199037 + ], + [ + -80.37399642190348, + 25.143324234248176 + ], + [ + -80.45377105959702, + 25.143324234248176 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45377105959702, + 25.215667390199037 + ], + [ + -80.45377105959702, + 25.2880105461499 + ], + [ + -80.37399642190348, + 25.2880105461499 + ], + [ + -80.37399642190348, + 25.215667390199037 + ], + [ + -80.45377105959702, + 25.215667390199037 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45377105959702, + 25.2880105461499 + ], + [ + -80.45377105959702, + 25.36035370210076 + ], + [ + -80.37399642190348, + 25.36035370210076 + ], + [ + -80.37399642190348, + 25.2880105461499 + ], + [ + -80.45377105959702, + 25.2880105461499 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45377105959702, + 25.36035370210076 + ], + [ + -80.45377105959702, + 25.43269685805162 + ], + [ + -80.37399642190348, + 25.43269685805162 + ], + [ + -80.37399642190348, + 25.36035370210076 + ], + [ + -80.45377105959702, + 25.36035370210076 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45377105959702, + 25.43269685805162 + ], + [ + -80.45377105959702, + 25.505040014002482 + ], + [ + -80.37399642190348, + 25.505040014002482 + ], + [ + -80.37399642190348, + 25.43269685805162 + ], + [ + -80.45377105959702, + 25.43269685805162 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45377105959702, + 25.505040014002482 + ], + [ + -80.45377105959702, + 25.577383169953343 + ], + [ + -80.37399642190348, + 25.577383169953343 + ], + [ + -80.37399642190348, + 25.505040014002482 + ], + [ + -80.45377105959702, + 25.505040014002482 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45377105959702, + 25.577383169953343 + ], + [ + -80.45377105959702, + 25.649726325904204 + ], + [ + -80.37399642190348, + 25.649726325904204 + ], + [ + -80.37399642190348, + 25.577383169953343 + ], + [ + -80.45377105959702, + 25.577383169953343 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45377105959702, + 25.649726325904204 + ], + [ + -80.45377105959702, + 25.722069481855065 + ], + [ + -80.37399642190348, + 25.722069481855065 + ], + [ + -80.37399642190348, + 25.649726325904204 + ], + [ + -80.45377105959702, + 25.649726325904204 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45377105959702, + 25.722069481855065 + ], + [ + -80.45377105959702, + 25.794412637805927 + ], + [ + -80.37399642190348, + 25.794412637805927 + ], + [ + -80.37399642190348, + 25.722069481855065 + ], + [ + -80.45377105959702, + 25.722069481855065 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45377105959702, + 25.794412637805927 + ], + [ + -80.45377105959702, + 25.866755793756788 + ], + [ + -80.37399642190348, + 25.866755793756788 + ], + [ + -80.37399642190348, + 25.794412637805927 + ], + [ + -80.45377105959702, + 25.794412637805927 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45377105959702, + 25.866755793756788 + ], + [ + -80.45377105959702, + 25.93909894970765 + ], + [ + -80.37399642190348, + 25.93909894970765 + ], + [ + -80.37399642190348, + 25.866755793756788 + ], + [ + -80.45377105959702, + 25.866755793756788 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45377105959702, + 25.93909894970765 + ], + [ + -80.45377105959702, + 26.01144210565851 + ], + [ + -80.37399642190348, + 26.01144210565851 + ], + [ + -80.37399642190348, + 25.93909894970765 + ], + [ + -80.45377105959702, + 25.93909894970765 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45377105959702, + 26.01144210565851 + ], + [ + -80.45377105959702, + 26.08378526160937 + ], + [ + -80.37399642190348, + 26.08378526160937 + ], + [ + -80.37399642190348, + 26.01144210565851 + ], + [ + -80.45377105959702, + 26.01144210565851 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45377105959702, + 26.08378526160937 + ], + [ + -80.45377105959702, + 26.156128417560232 + ], + [ + -80.37399642190348, + 26.156128417560232 + ], + [ + -80.37399642190348, + 26.08378526160937 + ], + [ + -80.45377105959702, + 26.08378526160937 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45377105959702, + 26.156128417560232 + ], + [ + -80.45377105959702, + 26.228471573511094 + ], + [ + -80.37399642190348, + 26.228471573511094 + ], + [ + -80.37399642190348, + 26.156128417560232 + ], + [ + -80.45377105959702, + 26.156128417560232 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45377105959702, + 26.228471573511094 + ], + [ + -80.45377105959702, + 26.300814729461955 + ], + [ + -80.37399642190348, + 26.300814729461955 + ], + [ + -80.37399642190348, + 26.228471573511094 + ], + [ + -80.45377105959702, + 26.228471573511094 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45377105959702, + 26.300814729461955 + ], + [ + -80.45377105959702, + 26.373157885412816 + ], + [ + -80.37399642190348, + 26.373157885412816 + ], + [ + -80.37399642190348, + 26.300814729461955 + ], + [ + -80.45377105959702, + 26.300814729461955 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45377105959702, + 26.373157885412816 + ], + [ + -80.45377105959702, + 26.445501041363677 + ], + [ + -80.37399642190348, + 26.445501041363677 + ], + [ + -80.37399642190348, + 26.373157885412816 + ], + [ + -80.45377105959702, + 26.373157885412816 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.37399642190348, + 24.926294766395593 + ], + [ + -80.37399642190348, + 24.998637922346454 + ], + [ + -80.29422178420995, + 24.998637922346454 + ], + [ + -80.29422178420995, + 24.926294766395593 + ], + [ + -80.37399642190348, + 24.926294766395593 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.37399642190348, + 24.998637922346454 + ], + [ + -80.37399642190348, + 25.070981078297315 + ], + [ + -80.29422178420995, + 25.070981078297315 + ], + [ + -80.29422178420995, + 24.998637922346454 + ], + [ + -80.37399642190348, + 24.998637922346454 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.37399642190348, + 25.070981078297315 + ], + [ + -80.37399642190348, + 25.143324234248176 + ], + [ + -80.29422178420995, + 25.143324234248176 + ], + [ + -80.29422178420995, + 25.070981078297315 + ], + [ + -80.37399642190348, + 25.070981078297315 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.37399642190348, + 25.143324234248176 + ], + [ + -80.37399642190348, + 25.215667390199037 + ], + [ + -80.29422178420995, + 25.215667390199037 + ], + [ + -80.29422178420995, + 25.143324234248176 + ], + [ + -80.37399642190348, + 25.143324234248176 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.37399642190348, + 25.215667390199037 + ], + [ + -80.37399642190348, + 25.2880105461499 + ], + [ + -80.29422178420995, + 25.2880105461499 + ], + [ + -80.29422178420995, + 25.215667390199037 + ], + [ + -80.37399642190348, + 25.215667390199037 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.37399642190348, + 25.2880105461499 + ], + [ + -80.37399642190348, + 25.36035370210076 + ], + [ + -80.29422178420995, + 25.36035370210076 + ], + [ + -80.29422178420995, + 25.2880105461499 + ], + [ + -80.37399642190348, + 25.2880105461499 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.37399642190348, + 25.36035370210076 + ], + [ + -80.37399642190348, + 25.43269685805162 + ], + [ + -80.29422178420995, + 25.43269685805162 + ], + [ + -80.29422178420995, + 25.36035370210076 + ], + [ + -80.37399642190348, + 25.36035370210076 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.37399642190348, + 25.43269685805162 + ], + [ + -80.37399642190348, + 25.505040014002482 + ], + [ + -80.29422178420995, + 25.505040014002482 + ], + [ + -80.29422178420995, + 25.43269685805162 + ], + [ + -80.37399642190348, + 25.43269685805162 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.37399642190348, + 25.505040014002482 + ], + [ + -80.37399642190348, + 25.577383169953343 + ], + [ + -80.29422178420995, + 25.577383169953343 + ], + [ + -80.29422178420995, + 25.505040014002482 + ], + [ + -80.37399642190348, + 25.505040014002482 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.37399642190348, + 25.577383169953343 + ], + [ + -80.37399642190348, + 25.649726325904204 + ], + [ + -80.29422178420995, + 25.649726325904204 + ], + [ + -80.29422178420995, + 25.577383169953343 + ], + [ + -80.37399642190348, + 25.577383169953343 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.37399642190348, + 25.649726325904204 + ], + [ + -80.37399642190348, + 25.722069481855065 + ], + [ + -80.29422178420995, + 25.722069481855065 + ], + [ + -80.29422178420995, + 25.649726325904204 + ], + [ + -80.37399642190348, + 25.649726325904204 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.37399642190348, + 25.722069481855065 + ], + [ + -80.37399642190348, + 25.794412637805927 + ], + [ + -80.29422178420995, + 25.794412637805927 + ], + [ + -80.29422178420995, + 25.722069481855065 + ], + [ + -80.37399642190348, + 25.722069481855065 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.37399642190348, + 25.794412637805927 + ], + [ + -80.37399642190348, + 25.866755793756788 + ], + [ + -80.29422178420995, + 25.866755793756788 + ], + [ + -80.29422178420995, + 25.794412637805927 + ], + [ + -80.37399642190348, + 25.794412637805927 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.37399642190348, + 25.866755793756788 + ], + [ + -80.37399642190348, + 25.93909894970765 + ], + [ + -80.29422178420995, + 25.93909894970765 + ], + [ + -80.29422178420995, + 25.866755793756788 + ], + [ + -80.37399642190348, + 25.866755793756788 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.37399642190348, + 25.93909894970765 + ], + [ + -80.37399642190348, + 26.01144210565851 + ], + [ + -80.29422178420995, + 26.01144210565851 + ], + [ + -80.29422178420995, + 25.93909894970765 + ], + [ + -80.37399642190348, + 25.93909894970765 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.37399642190348, + 26.01144210565851 + ], + [ + -80.37399642190348, + 26.08378526160937 + ], + [ + -80.29422178420995, + 26.08378526160937 + ], + [ + -80.29422178420995, + 26.01144210565851 + ], + [ + -80.37399642190348, + 26.01144210565851 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.37399642190348, + 26.08378526160937 + ], + [ + -80.37399642190348, + 26.156128417560232 + ], + [ + -80.29422178420995, + 26.156128417560232 + ], + [ + -80.29422178420995, + 26.08378526160937 + ], + [ + -80.37399642190348, + 26.08378526160937 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.37399642190348, + 26.156128417560232 + ], + [ + -80.37399642190348, + 26.228471573511094 + ], + [ + -80.29422178420995, + 26.228471573511094 + ], + [ + -80.29422178420995, + 26.156128417560232 + ], + [ + -80.37399642190348, + 26.156128417560232 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.37399642190348, + 26.228471573511094 + ], + [ + -80.37399642190348, + 26.300814729461955 + ], + [ + -80.29422178420995, + 26.300814729461955 + ], + [ + -80.29422178420995, + 26.228471573511094 + ], + [ + -80.37399642190348, + 26.228471573511094 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.37399642190348, + 26.300814729461955 + ], + [ + -80.37399642190348, + 26.373157885412816 + ], + [ + -80.29422178420995, + 26.373157885412816 + ], + [ + -80.29422178420995, + 26.300814729461955 + ], + [ + -80.37399642190348, + 26.300814729461955 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.37399642190348, + 26.373157885412816 + ], + [ + -80.37399642190348, + 26.445501041363677 + ], + [ + -80.29422178420995, + 26.445501041363677 + ], + [ + -80.29422178420995, + 26.373157885412816 + ], + [ + -80.37399642190348, + 26.373157885412816 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.29422178420995, + 24.926294766395593 + ], + [ + -80.29422178420995, + 24.998637922346454 + ], + [ + -80.21444714651642, + 24.998637922346454 + ], + [ + -80.21444714651642, + 24.926294766395593 + ], + [ + -80.29422178420995, + 24.926294766395593 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.29422178420995, + 24.998637922346454 + ], + [ + -80.29422178420995, + 25.070981078297315 + ], + [ + -80.21444714651642, + 25.070981078297315 + ], + [ + -80.21444714651642, + 24.998637922346454 + ], + [ + -80.29422178420995, + 24.998637922346454 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.29422178420995, + 25.070981078297315 + ], + [ + -80.29422178420995, + 25.143324234248176 + ], + [ + -80.21444714651642, + 25.143324234248176 + ], + [ + -80.21444714651642, + 25.070981078297315 + ], + [ + -80.29422178420995, + 25.070981078297315 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.29422178420995, + 25.143324234248176 + ], + [ + -80.29422178420995, + 25.215667390199037 + ], + [ + -80.21444714651642, + 25.215667390199037 + ], + [ + -80.21444714651642, + 25.143324234248176 + ], + [ + -80.29422178420995, + 25.143324234248176 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.29422178420995, + 25.215667390199037 + ], + [ + -80.29422178420995, + 25.2880105461499 + ], + [ + -80.21444714651642, + 25.2880105461499 + ], + [ + -80.21444714651642, + 25.215667390199037 + ], + [ + -80.29422178420995, + 25.215667390199037 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.29422178420995, + 25.2880105461499 + ], + [ + -80.29422178420995, + 25.36035370210076 + ], + [ + -80.21444714651642, + 25.36035370210076 + ], + [ + -80.21444714651642, + 25.2880105461499 + ], + [ + -80.29422178420995, + 25.2880105461499 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.29422178420995, + 25.36035370210076 + ], + [ + -80.29422178420995, + 25.43269685805162 + ], + [ + -80.21444714651642, + 25.43269685805162 + ], + [ + -80.21444714651642, + 25.36035370210076 + ], + [ + -80.29422178420995, + 25.36035370210076 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.29422178420995, + 25.43269685805162 + ], + [ + -80.29422178420995, + 25.505040014002482 + ], + [ + -80.21444714651642, + 25.505040014002482 + ], + [ + -80.21444714651642, + 25.43269685805162 + ], + [ + -80.29422178420995, + 25.43269685805162 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.29422178420995, + 25.505040014002482 + ], + [ + -80.29422178420995, + 25.577383169953343 + ], + [ + -80.21444714651642, + 25.577383169953343 + ], + [ + -80.21444714651642, + 25.505040014002482 + ], + [ + -80.29422178420995, + 25.505040014002482 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.29422178420995, + 25.577383169953343 + ], + [ + -80.29422178420995, + 25.649726325904204 + ], + [ + -80.21444714651642, + 25.649726325904204 + ], + [ + -80.21444714651642, + 25.577383169953343 + ], + [ + -80.29422178420995, + 25.577383169953343 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.29422178420995, + 25.649726325904204 + ], + [ + -80.29422178420995, + 25.722069481855065 + ], + [ + -80.21444714651642, + 25.722069481855065 + ], + [ + -80.21444714651642, + 25.649726325904204 + ], + [ + -80.29422178420995, + 25.649726325904204 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.29422178420995, + 25.722069481855065 + ], + [ + -80.29422178420995, + 25.794412637805927 + ], + [ + -80.21444714651642, + 25.794412637805927 + ], + [ + -80.21444714651642, + 25.722069481855065 + ], + [ + -80.29422178420995, + 25.722069481855065 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.29422178420995, + 25.794412637805927 + ], + [ + -80.29422178420995, + 25.866755793756788 + ], + [ + -80.21444714651642, + 25.866755793756788 + ], + [ + -80.21444714651642, + 25.794412637805927 + ], + [ + -80.29422178420995, + 25.794412637805927 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.29422178420995, + 25.866755793756788 + ], + [ + -80.29422178420995, + 25.93909894970765 + ], + [ + -80.21444714651642, + 25.93909894970765 + ], + [ + -80.21444714651642, + 25.866755793756788 + ], + [ + -80.29422178420995, + 25.866755793756788 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.29422178420995, + 25.93909894970765 + ], + [ + -80.29422178420995, + 26.01144210565851 + ], + [ + -80.21444714651642, + 26.01144210565851 + ], + [ + -80.21444714651642, + 25.93909894970765 + ], + [ + -80.29422178420995, + 25.93909894970765 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.29422178420995, + 26.01144210565851 + ], + [ + -80.29422178420995, + 26.08378526160937 + ], + [ + -80.21444714651642, + 26.08378526160937 + ], + [ + -80.21444714651642, + 26.01144210565851 + ], + [ + -80.29422178420995, + 26.01144210565851 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.29422178420995, + 26.08378526160937 + ], + [ + -80.29422178420995, + 26.156128417560232 + ], + [ + -80.21444714651642, + 26.156128417560232 + ], + [ + -80.21444714651642, + 26.08378526160937 + ], + [ + -80.29422178420995, + 26.08378526160937 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.29422178420995, + 26.156128417560232 + ], + [ + -80.29422178420995, + 26.228471573511094 + ], + [ + -80.21444714651642, + 26.228471573511094 + ], + [ + -80.21444714651642, + 26.156128417560232 + ], + [ + -80.29422178420995, + 26.156128417560232 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.29422178420995, + 26.228471573511094 + ], + [ + -80.29422178420995, + 26.300814729461955 + ], + [ + -80.21444714651642, + 26.300814729461955 + ], + [ + -80.21444714651642, + 26.228471573511094 + ], + [ + -80.29422178420995, + 26.228471573511094 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.29422178420995, + 26.300814729461955 + ], + [ + -80.29422178420995, + 26.373157885412816 + ], + [ + -80.21444714651642, + 26.373157885412816 + ], + [ + -80.21444714651642, + 26.300814729461955 + ], + [ + -80.29422178420995, + 26.300814729461955 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.29422178420995, + 26.373157885412816 + ], + [ + -80.29422178420995, + 26.445501041363677 + ], + [ + -80.21444714651642, + 26.445501041363677 + ], + [ + -80.21444714651642, + 26.373157885412816 + ], + [ + -80.29422178420995, + 26.373157885412816 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21444714651642, + 24.926294766395593 + ], + [ + -80.21444714651642, + 24.998637922346454 + ], + [ + -80.13467250882289, + 24.998637922346454 + ], + [ + -80.13467250882289, + 24.926294766395593 + ], + [ + -80.21444714651642, + 24.926294766395593 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21444714651642, + 24.998637922346454 + ], + [ + -80.21444714651642, + 25.070981078297315 + ], + [ + -80.13467250882289, + 25.070981078297315 + ], + [ + -80.13467250882289, + 24.998637922346454 + ], + [ + -80.21444714651642, + 24.998637922346454 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21444714651642, + 25.070981078297315 + ], + [ + -80.21444714651642, + 25.143324234248176 + ], + [ + -80.13467250882289, + 25.143324234248176 + ], + [ + -80.13467250882289, + 25.070981078297315 + ], + [ + -80.21444714651642, + 25.070981078297315 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21444714651642, + 25.143324234248176 + ], + [ + -80.21444714651642, + 25.215667390199037 + ], + [ + -80.13467250882289, + 25.215667390199037 + ], + [ + -80.13467250882289, + 25.143324234248176 + ], + [ + -80.21444714651642, + 25.143324234248176 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21444714651642, + 25.215667390199037 + ], + [ + -80.21444714651642, + 25.2880105461499 + ], + [ + -80.13467250882289, + 25.2880105461499 + ], + [ + -80.13467250882289, + 25.215667390199037 + ], + [ + -80.21444714651642, + 25.215667390199037 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21444714651642, + 25.2880105461499 + ], + [ + -80.21444714651642, + 25.36035370210076 + ], + [ + -80.13467250882289, + 25.36035370210076 + ], + [ + -80.13467250882289, + 25.2880105461499 + ], + [ + -80.21444714651642, + 25.2880105461499 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21444714651642, + 25.36035370210076 + ], + [ + -80.21444714651642, + 25.43269685805162 + ], + [ + -80.13467250882289, + 25.43269685805162 + ], + [ + -80.13467250882289, + 25.36035370210076 + ], + [ + -80.21444714651642, + 25.36035370210076 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21444714651642, + 25.43269685805162 + ], + [ + -80.21444714651642, + 25.505040014002482 + ], + [ + -80.13467250882289, + 25.505040014002482 + ], + [ + -80.13467250882289, + 25.43269685805162 + ], + [ + -80.21444714651642, + 25.43269685805162 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21444714651642, + 25.505040014002482 + ], + [ + -80.21444714651642, + 25.577383169953343 + ], + [ + -80.13467250882289, + 25.577383169953343 + ], + [ + -80.13467250882289, + 25.505040014002482 + ], + [ + -80.21444714651642, + 25.505040014002482 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21444714651642, + 25.577383169953343 + ], + [ + -80.21444714651642, + 25.649726325904204 + ], + [ + -80.13467250882289, + 25.649726325904204 + ], + [ + -80.13467250882289, + 25.577383169953343 + ], + [ + -80.21444714651642, + 25.577383169953343 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21444714651642, + 25.649726325904204 + ], + [ + -80.21444714651642, + 25.722069481855065 + ], + [ + -80.13467250882289, + 25.722069481855065 + ], + [ + -80.13467250882289, + 25.649726325904204 + ], + [ + -80.21444714651642, + 25.649726325904204 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21444714651642, + 25.722069481855065 + ], + [ + -80.21444714651642, + 25.794412637805927 + ], + [ + -80.13467250882289, + 25.794412637805927 + ], + [ + -80.13467250882289, + 25.722069481855065 + ], + [ + -80.21444714651642, + 25.722069481855065 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21444714651642, + 25.794412637805927 + ], + [ + -80.21444714651642, + 25.866755793756788 + ], + [ + -80.13467250882289, + 25.866755793756788 + ], + [ + -80.13467250882289, + 25.794412637805927 + ], + [ + -80.21444714651642, + 25.794412637805927 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21444714651642, + 25.866755793756788 + ], + [ + -80.21444714651642, + 25.93909894970765 + ], + [ + -80.13467250882289, + 25.93909894970765 + ], + [ + -80.13467250882289, + 25.866755793756788 + ], + [ + -80.21444714651642, + 25.866755793756788 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21444714651642, + 25.93909894970765 + ], + [ + -80.21444714651642, + 26.01144210565851 + ], + [ + -80.13467250882289, + 26.01144210565851 + ], + [ + -80.13467250882289, + 25.93909894970765 + ], + [ + -80.21444714651642, + 25.93909894970765 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21444714651642, + 26.01144210565851 + ], + [ + -80.21444714651642, + 26.08378526160937 + ], + [ + -80.13467250882289, + 26.08378526160937 + ], + [ + -80.13467250882289, + 26.01144210565851 + ], + [ + -80.21444714651642, + 26.01144210565851 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21444714651642, + 26.08378526160937 + ], + [ + -80.21444714651642, + 26.156128417560232 + ], + [ + -80.13467250882289, + 26.156128417560232 + ], + [ + -80.13467250882289, + 26.08378526160937 + ], + [ + -80.21444714651642, + 26.08378526160937 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21444714651642, + 26.156128417560232 + ], + [ + -80.21444714651642, + 26.228471573511094 + ], + [ + -80.13467250882289, + 26.228471573511094 + ], + [ + -80.13467250882289, + 26.156128417560232 + ], + [ + -80.21444714651642, + 26.156128417560232 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21444714651642, + 26.228471573511094 + ], + [ + -80.21444714651642, + 26.300814729461955 + ], + [ + -80.13467250882289, + 26.300814729461955 + ], + [ + -80.13467250882289, + 26.228471573511094 + ], + [ + -80.21444714651642, + 26.228471573511094 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21444714651642, + 26.300814729461955 + ], + [ + -80.21444714651642, + 26.373157885412816 + ], + [ + -80.13467250882289, + 26.373157885412816 + ], + [ + -80.13467250882289, + 26.300814729461955 + ], + [ + -80.21444714651642, + 26.300814729461955 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21444714651642, + 26.373157885412816 + ], + [ + -80.21444714651642, + 26.445501041363677 + ], + [ + -80.13467250882289, + 26.445501041363677 + ], + [ + -80.13467250882289, + 26.373157885412816 + ], + [ + -80.21444714651642, + 26.373157885412816 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.13467250882289, + 24.926294766395593 + ], + [ + -80.13467250882289, + 24.998637922346454 + ], + [ + -80.05489787112936, + 24.998637922346454 + ], + [ + -80.05489787112936, + 24.926294766395593 + ], + [ + -80.13467250882289, + 24.926294766395593 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.13467250882289, + 24.998637922346454 + ], + [ + -80.13467250882289, + 25.070981078297315 + ], + [ + -80.05489787112936, + 25.070981078297315 + ], + [ + -80.05489787112936, + 24.998637922346454 + ], + [ + -80.13467250882289, + 24.998637922346454 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.13467250882289, + 25.070981078297315 + ], + [ + -80.13467250882289, + 25.143324234248176 + ], + [ + -80.05489787112936, + 25.143324234248176 + ], + [ + -80.05489787112936, + 25.070981078297315 + ], + [ + -80.13467250882289, + 25.070981078297315 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.13467250882289, + 25.143324234248176 + ], + [ + -80.13467250882289, + 25.215667390199037 + ], + [ + -80.05489787112936, + 25.215667390199037 + ], + [ + -80.05489787112936, + 25.143324234248176 + ], + [ + -80.13467250882289, + 25.143324234248176 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.13467250882289, + 25.215667390199037 + ], + [ + -80.13467250882289, + 25.2880105461499 + ], + [ + -80.05489787112936, + 25.2880105461499 + ], + [ + -80.05489787112936, + 25.215667390199037 + ], + [ + -80.13467250882289, + 25.215667390199037 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.13467250882289, + 25.2880105461499 + ], + [ + -80.13467250882289, + 25.36035370210076 + ], + [ + -80.05489787112936, + 25.36035370210076 + ], + [ + -80.05489787112936, + 25.2880105461499 + ], + [ + -80.13467250882289, + 25.2880105461499 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.13467250882289, + 25.36035370210076 + ], + [ + -80.13467250882289, + 25.43269685805162 + ], + [ + -80.05489787112936, + 25.43269685805162 + ], + [ + -80.05489787112936, + 25.36035370210076 + ], + [ + -80.13467250882289, + 25.36035370210076 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.13467250882289, + 25.43269685805162 + ], + [ + -80.13467250882289, + 25.505040014002482 + ], + [ + -80.05489787112936, + 25.505040014002482 + ], + [ + -80.05489787112936, + 25.43269685805162 + ], + [ + -80.13467250882289, + 25.43269685805162 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.13467250882289, + 25.505040014002482 + ], + [ + -80.13467250882289, + 25.577383169953343 + ], + [ + -80.05489787112936, + 25.577383169953343 + ], + [ + -80.05489787112936, + 25.505040014002482 + ], + [ + -80.13467250882289, + 25.505040014002482 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.13467250882289, + 25.577383169953343 + ], + [ + -80.13467250882289, + 25.649726325904204 + ], + [ + -80.05489787112936, + 25.649726325904204 + ], + [ + -80.05489787112936, + 25.577383169953343 + ], + [ + -80.13467250882289, + 25.577383169953343 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.13467250882289, + 25.649726325904204 + ], + [ + -80.13467250882289, + 25.722069481855065 + ], + [ + -80.05489787112936, + 25.722069481855065 + ], + [ + -80.05489787112936, + 25.649726325904204 + ], + [ + -80.13467250882289, + 25.649726325904204 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.13467250882289, + 25.722069481855065 + ], + [ + -80.13467250882289, + 25.794412637805927 + ], + [ + -80.05489787112936, + 25.794412637805927 + ], + [ + -80.05489787112936, + 25.722069481855065 + ], + [ + -80.13467250882289, + 25.722069481855065 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.13467250882289, + 25.794412637805927 + ], + [ + -80.13467250882289, + 25.866755793756788 + ], + [ + -80.05489787112936, + 25.866755793756788 + ], + [ + -80.05489787112936, + 25.794412637805927 + ], + [ + -80.13467250882289, + 25.794412637805927 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.13467250882289, + 25.866755793756788 + ], + [ + -80.13467250882289, + 25.93909894970765 + ], + [ + -80.05489787112936, + 25.93909894970765 + ], + [ + -80.05489787112936, + 25.866755793756788 + ], + [ + -80.13467250882289, + 25.866755793756788 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.13467250882289, + 25.93909894970765 + ], + [ + -80.13467250882289, + 26.01144210565851 + ], + [ + -80.05489787112936, + 26.01144210565851 + ], + [ + -80.05489787112936, + 25.93909894970765 + ], + [ + -80.13467250882289, + 25.93909894970765 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.13467250882289, + 26.01144210565851 + ], + [ + -80.13467250882289, + 26.08378526160937 + ], + [ + -80.05489787112936, + 26.08378526160937 + ], + [ + -80.05489787112936, + 26.01144210565851 + ], + [ + -80.13467250882289, + 26.01144210565851 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.13467250882289, + 26.08378526160937 + ], + [ + -80.13467250882289, + 26.156128417560232 + ], + [ + -80.05489787112936, + 26.156128417560232 + ], + [ + -80.05489787112936, + 26.08378526160937 + ], + [ + -80.13467250882289, + 26.08378526160937 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.13467250882289, + 26.156128417560232 + ], + [ + -80.13467250882289, + 26.228471573511094 + ], + [ + -80.05489787112936, + 26.228471573511094 + ], + [ + -80.05489787112936, + 26.156128417560232 + ], + [ + -80.13467250882289, + 26.156128417560232 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.13467250882289, + 26.228471573511094 + ], + [ + -80.13467250882289, + 26.300814729461955 + ], + [ + -80.05489787112936, + 26.300814729461955 + ], + [ + -80.05489787112936, + 26.228471573511094 + ], + [ + -80.13467250882289, + 26.228471573511094 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.13467250882289, + 26.300814729461955 + ], + [ + -80.13467250882289, + 26.373157885412816 + ], + [ + -80.05489787112936, + 26.373157885412816 + ], + [ + -80.05489787112936, + 26.300814729461955 + ], + [ + -80.13467250882289, + 26.300814729461955 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.13467250882289, + 26.373157885412816 + ], + [ + -80.13467250882289, + 26.445501041363677 + ], + [ + -80.05489787112936, + 26.445501041363677 + ], + [ + -80.05489787112936, + 26.373157885412816 + ], + [ + -80.13467250882289, + 26.373157885412816 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.05489787112936, + 24.926294766395593 + ], + [ + -80.05489787112936, + 24.998637922346454 + ], + [ + -79.97512323343582, + 24.998637922346454 + ], + [ + -79.97512323343582, + 24.926294766395593 + ], + [ + -80.05489787112936, + 24.926294766395593 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.05489787112936, + 24.998637922346454 + ], + [ + -80.05489787112936, + 25.070981078297315 + ], + [ + -79.97512323343582, + 25.070981078297315 + ], + [ + -79.97512323343582, + 24.998637922346454 + ], + [ + -80.05489787112936, + 24.998637922346454 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.05489787112936, + 25.070981078297315 + ], + [ + -80.05489787112936, + 25.143324234248176 + ], + [ + -79.97512323343582, + 25.143324234248176 + ], + [ + -79.97512323343582, + 25.070981078297315 + ], + [ + -80.05489787112936, + 25.070981078297315 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.05489787112936, + 25.143324234248176 + ], + [ + -80.05489787112936, + 25.215667390199037 + ], + [ + -79.97512323343582, + 25.215667390199037 + ], + [ + -79.97512323343582, + 25.143324234248176 + ], + [ + -80.05489787112936, + 25.143324234248176 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.05489787112936, + 25.215667390199037 + ], + [ + -80.05489787112936, + 25.2880105461499 + ], + [ + -79.97512323343582, + 25.2880105461499 + ], + [ + -79.97512323343582, + 25.215667390199037 + ], + [ + -80.05489787112936, + 25.215667390199037 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.05489787112936, + 25.2880105461499 + ], + [ + -80.05489787112936, + 25.36035370210076 + ], + [ + -79.97512323343582, + 25.36035370210076 + ], + [ + -79.97512323343582, + 25.2880105461499 + ], + [ + -80.05489787112936, + 25.2880105461499 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.05489787112936, + 25.36035370210076 + ], + [ + -80.05489787112936, + 25.43269685805162 + ], + [ + -79.97512323343582, + 25.43269685805162 + ], + [ + -79.97512323343582, + 25.36035370210076 + ], + [ + -80.05489787112936, + 25.36035370210076 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.05489787112936, + 25.43269685805162 + ], + [ + -80.05489787112936, + 25.505040014002482 + ], + [ + -79.97512323343582, + 25.505040014002482 + ], + [ + -79.97512323343582, + 25.43269685805162 + ], + [ + -80.05489787112936, + 25.43269685805162 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.05489787112936, + 25.505040014002482 + ], + [ + -80.05489787112936, + 25.577383169953343 + ], + [ + -79.97512323343582, + 25.577383169953343 + ], + [ + -79.97512323343582, + 25.505040014002482 + ], + [ + -80.05489787112936, + 25.505040014002482 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.05489787112936, + 25.577383169953343 + ], + [ + -80.05489787112936, + 25.649726325904204 + ], + [ + -79.97512323343582, + 25.649726325904204 + ], + [ + -79.97512323343582, + 25.577383169953343 + ], + [ + -80.05489787112936, + 25.577383169953343 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.05489787112936, + 25.649726325904204 + ], + [ + -80.05489787112936, + 25.722069481855065 + ], + [ + -79.97512323343582, + 25.722069481855065 + ], + [ + -79.97512323343582, + 25.649726325904204 + ], + [ + -80.05489787112936, + 25.649726325904204 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.05489787112936, + 25.722069481855065 + ], + [ + -80.05489787112936, + 25.794412637805927 + ], + [ + -79.97512323343582, + 25.794412637805927 + ], + [ + -79.97512323343582, + 25.722069481855065 + ], + [ + -80.05489787112936, + 25.722069481855065 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.05489787112936, + 25.794412637805927 + ], + [ + -80.05489787112936, + 25.866755793756788 + ], + [ + -79.97512323343582, + 25.866755793756788 + ], + [ + -79.97512323343582, + 25.794412637805927 + ], + [ + -80.05489787112936, + 25.794412637805927 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.05489787112936, + 25.866755793756788 + ], + [ + -80.05489787112936, + 25.93909894970765 + ], + [ + -79.97512323343582, + 25.93909894970765 + ], + [ + -79.97512323343582, + 25.866755793756788 + ], + [ + -80.05489787112936, + 25.866755793756788 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.05489787112936, + 25.93909894970765 + ], + [ + -80.05489787112936, + 26.01144210565851 + ], + [ + -79.97512323343582, + 26.01144210565851 + ], + [ + -79.97512323343582, + 25.93909894970765 + ], + [ + -80.05489787112936, + 25.93909894970765 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.05489787112936, + 26.01144210565851 + ], + [ + -80.05489787112936, + 26.08378526160937 + ], + [ + -79.97512323343582, + 26.08378526160937 + ], + [ + -79.97512323343582, + 26.01144210565851 + ], + [ + -80.05489787112936, + 26.01144210565851 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.05489787112936, + 26.08378526160937 + ], + [ + -80.05489787112936, + 26.156128417560232 + ], + [ + -79.97512323343582, + 26.156128417560232 + ], + [ + -79.97512323343582, + 26.08378526160937 + ], + [ + -80.05489787112936, + 26.08378526160937 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.05489787112936, + 26.156128417560232 + ], + [ + -80.05489787112936, + 26.228471573511094 + ], + [ + -79.97512323343582, + 26.228471573511094 + ], + [ + -79.97512323343582, + 26.156128417560232 + ], + [ + -80.05489787112936, + 26.156128417560232 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.05489787112936, + 26.228471573511094 + ], + [ + -80.05489787112936, + 26.300814729461955 + ], + [ + -79.97512323343582, + 26.300814729461955 + ], + [ + -79.97512323343582, + 26.228471573511094 + ], + [ + -80.05489787112936, + 26.228471573511094 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.05489787112936, + 26.300814729461955 + ], + [ + -80.05489787112936, + 26.373157885412816 + ], + [ + -79.97512323343582, + 26.373157885412816 + ], + [ + -79.97512323343582, + 26.300814729461955 + ], + [ + -80.05489787112936, + 26.300814729461955 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.05489787112936, + 26.373157885412816 + ], + [ + -80.05489787112936, + 26.445501041363677 + ], + [ + -79.97512323343582, + 26.445501041363677 + ], + [ + -79.97512323343582, + 26.373157885412816 + ], + [ + -80.05489787112936, + 26.373157885412816 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97512323343582, + 24.926294766395593 + ], + [ + -79.97512323343582, + 24.998637922346454 + ], + [ + -79.89534859574229, + 24.998637922346454 + ], + [ + -79.89534859574229, + 24.926294766395593 + ], + [ + -79.97512323343582, + 24.926294766395593 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97512323343582, + 24.998637922346454 + ], + [ + -79.97512323343582, + 25.070981078297315 + ], + [ + -79.89534859574229, + 25.070981078297315 + ], + [ + -79.89534859574229, + 24.998637922346454 + ], + [ + -79.97512323343582, + 24.998637922346454 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97512323343582, + 25.070981078297315 + ], + [ + -79.97512323343582, + 25.143324234248176 + ], + [ + -79.89534859574229, + 25.143324234248176 + ], + [ + -79.89534859574229, + 25.070981078297315 + ], + [ + -79.97512323343582, + 25.070981078297315 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97512323343582, + 25.143324234248176 + ], + [ + -79.97512323343582, + 25.215667390199037 + ], + [ + -79.89534859574229, + 25.215667390199037 + ], + [ + -79.89534859574229, + 25.143324234248176 + ], + [ + -79.97512323343582, + 25.143324234248176 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97512323343582, + 25.215667390199037 + ], + [ + -79.97512323343582, + 25.2880105461499 + ], + [ + -79.89534859574229, + 25.2880105461499 + ], + [ + -79.89534859574229, + 25.215667390199037 + ], + [ + -79.97512323343582, + 25.215667390199037 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97512323343582, + 25.2880105461499 + ], + [ + -79.97512323343582, + 25.36035370210076 + ], + [ + -79.89534859574229, + 25.36035370210076 + ], + [ + -79.89534859574229, + 25.2880105461499 + ], + [ + -79.97512323343582, + 25.2880105461499 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97512323343582, + 25.36035370210076 + ], + [ + -79.97512323343582, + 25.43269685805162 + ], + [ + -79.89534859574229, + 25.43269685805162 + ], + [ + -79.89534859574229, + 25.36035370210076 + ], + [ + -79.97512323343582, + 25.36035370210076 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97512323343582, + 25.43269685805162 + ], + [ + -79.97512323343582, + 25.505040014002482 + ], + [ + -79.89534859574229, + 25.505040014002482 + ], + [ + -79.89534859574229, + 25.43269685805162 + ], + [ + -79.97512323343582, + 25.43269685805162 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97512323343582, + 25.505040014002482 + ], + [ + -79.97512323343582, + 25.577383169953343 + ], + [ + -79.89534859574229, + 25.577383169953343 + ], + [ + -79.89534859574229, + 25.505040014002482 + ], + [ + -79.97512323343582, + 25.505040014002482 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97512323343582, + 25.577383169953343 + ], + [ + -79.97512323343582, + 25.649726325904204 + ], + [ + -79.89534859574229, + 25.649726325904204 + ], + [ + -79.89534859574229, + 25.577383169953343 + ], + [ + -79.97512323343582, + 25.577383169953343 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97512323343582, + 25.649726325904204 + ], + [ + -79.97512323343582, + 25.722069481855065 + ], + [ + -79.89534859574229, + 25.722069481855065 + ], + [ + -79.89534859574229, + 25.649726325904204 + ], + [ + -79.97512323343582, + 25.649726325904204 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97512323343582, + 25.722069481855065 + ], + [ + -79.97512323343582, + 25.794412637805927 + ], + [ + -79.89534859574229, + 25.794412637805927 + ], + [ + -79.89534859574229, + 25.722069481855065 + ], + [ + -79.97512323343582, + 25.722069481855065 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97512323343582, + 25.794412637805927 + ], + [ + -79.97512323343582, + 25.866755793756788 + ], + [ + -79.89534859574229, + 25.866755793756788 + ], + [ + -79.89534859574229, + 25.794412637805927 + ], + [ + -79.97512323343582, + 25.794412637805927 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97512323343582, + 25.866755793756788 + ], + [ + -79.97512323343582, + 25.93909894970765 + ], + [ + -79.89534859574229, + 25.93909894970765 + ], + [ + -79.89534859574229, + 25.866755793756788 + ], + [ + -79.97512323343582, + 25.866755793756788 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97512323343582, + 25.93909894970765 + ], + [ + -79.97512323343582, + 26.01144210565851 + ], + [ + -79.89534859574229, + 26.01144210565851 + ], + [ + -79.89534859574229, + 25.93909894970765 + ], + [ + -79.97512323343582, + 25.93909894970765 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97512323343582, + 26.01144210565851 + ], + [ + -79.97512323343582, + 26.08378526160937 + ], + [ + -79.89534859574229, + 26.08378526160937 + ], + [ + -79.89534859574229, + 26.01144210565851 + ], + [ + -79.97512323343582, + 26.01144210565851 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97512323343582, + 26.08378526160937 + ], + [ + -79.97512323343582, + 26.156128417560232 + ], + [ + -79.89534859574229, + 26.156128417560232 + ], + [ + -79.89534859574229, + 26.08378526160937 + ], + [ + -79.97512323343582, + 26.08378526160937 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97512323343582, + 26.156128417560232 + ], + [ + -79.97512323343582, + 26.228471573511094 + ], + [ + -79.89534859574229, + 26.228471573511094 + ], + [ + -79.89534859574229, + 26.156128417560232 + ], + [ + -79.97512323343582, + 26.156128417560232 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97512323343582, + 26.228471573511094 + ], + [ + -79.97512323343582, + 26.300814729461955 + ], + [ + -79.89534859574229, + 26.300814729461955 + ], + [ + -79.89534859574229, + 26.228471573511094 + ], + [ + -79.97512323343582, + 26.228471573511094 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97512323343582, + 26.300814729461955 + ], + [ + -79.97512323343582, + 26.373157885412816 + ], + [ + -79.89534859574229, + 26.373157885412816 + ], + [ + -79.89534859574229, + 26.300814729461955 + ], + [ + -79.97512323343582, + 26.300814729461955 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97512323343582, + 26.373157885412816 + ], + [ + -79.97512323343582, + 26.445501041363677 + ], + [ + -79.89534859574229, + 26.445501041363677 + ], + [ + -79.89534859574229, + 26.373157885412816 + ], + [ + -79.97512323343582, + 26.373157885412816 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.89534859574229, + 24.926294766395593 + ], + [ + -79.89534859574229, + 24.998637922346454 + ], + [ + -79.81557395804876, + 24.998637922346454 + ], + [ + -79.81557395804876, + 24.926294766395593 + ], + [ + -79.89534859574229, + 24.926294766395593 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.89534859574229, + 24.998637922346454 + ], + [ + -79.89534859574229, + 25.070981078297315 + ], + [ + -79.81557395804876, + 25.070981078297315 + ], + [ + -79.81557395804876, + 24.998637922346454 + ], + [ + -79.89534859574229, + 24.998637922346454 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.89534859574229, + 25.070981078297315 + ], + [ + -79.89534859574229, + 25.143324234248176 + ], + [ + -79.81557395804876, + 25.143324234248176 + ], + [ + -79.81557395804876, + 25.070981078297315 + ], + [ + -79.89534859574229, + 25.070981078297315 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.89534859574229, + 25.143324234248176 + ], + [ + -79.89534859574229, + 25.215667390199037 + ], + [ + -79.81557395804876, + 25.215667390199037 + ], + [ + -79.81557395804876, + 25.143324234248176 + ], + [ + -79.89534859574229, + 25.143324234248176 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.89534859574229, + 25.215667390199037 + ], + [ + -79.89534859574229, + 25.2880105461499 + ], + [ + -79.81557395804876, + 25.2880105461499 + ], + [ + -79.81557395804876, + 25.215667390199037 + ], + [ + -79.89534859574229, + 25.215667390199037 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.89534859574229, + 25.2880105461499 + ], + [ + -79.89534859574229, + 25.36035370210076 + ], + [ + -79.81557395804876, + 25.36035370210076 + ], + [ + -79.81557395804876, + 25.2880105461499 + ], + [ + -79.89534859574229, + 25.2880105461499 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.89534859574229, + 25.36035370210076 + ], + [ + -79.89534859574229, + 25.43269685805162 + ], + [ + -79.81557395804876, + 25.43269685805162 + ], + [ + -79.81557395804876, + 25.36035370210076 + ], + [ + -79.89534859574229, + 25.36035370210076 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.89534859574229, + 25.43269685805162 + ], + [ + -79.89534859574229, + 25.505040014002482 + ], + [ + -79.81557395804876, + 25.505040014002482 + ], + [ + -79.81557395804876, + 25.43269685805162 + ], + [ + -79.89534859574229, + 25.43269685805162 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.89534859574229, + 25.505040014002482 + ], + [ + -79.89534859574229, + 25.577383169953343 + ], + [ + -79.81557395804876, + 25.577383169953343 + ], + [ + -79.81557395804876, + 25.505040014002482 + ], + [ + -79.89534859574229, + 25.505040014002482 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.89534859574229, + 25.577383169953343 + ], + [ + -79.89534859574229, + 25.649726325904204 + ], + [ + -79.81557395804876, + 25.649726325904204 + ], + [ + -79.81557395804876, + 25.577383169953343 + ], + [ + -79.89534859574229, + 25.577383169953343 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.89534859574229, + 25.649726325904204 + ], + [ + -79.89534859574229, + 25.722069481855065 + ], + [ + -79.81557395804876, + 25.722069481855065 + ], + [ + -79.81557395804876, + 25.649726325904204 + ], + [ + -79.89534859574229, + 25.649726325904204 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.89534859574229, + 25.722069481855065 + ], + [ + -79.89534859574229, + 25.794412637805927 + ], + [ + -79.81557395804876, + 25.794412637805927 + ], + [ + -79.81557395804876, + 25.722069481855065 + ], + [ + -79.89534859574229, + 25.722069481855065 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.89534859574229, + 25.794412637805927 + ], + [ + -79.89534859574229, + 25.866755793756788 + ], + [ + -79.81557395804876, + 25.866755793756788 + ], + [ + -79.81557395804876, + 25.794412637805927 + ], + [ + -79.89534859574229, + 25.794412637805927 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.89534859574229, + 25.866755793756788 + ], + [ + -79.89534859574229, + 25.93909894970765 + ], + [ + -79.81557395804876, + 25.93909894970765 + ], + [ + -79.81557395804876, + 25.866755793756788 + ], + [ + -79.89534859574229, + 25.866755793756788 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.89534859574229, + 25.93909894970765 + ], + [ + -79.89534859574229, + 26.01144210565851 + ], + [ + -79.81557395804876, + 26.01144210565851 + ], + [ + -79.81557395804876, + 25.93909894970765 + ], + [ + -79.89534859574229, + 25.93909894970765 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.89534859574229, + 26.01144210565851 + ], + [ + -79.89534859574229, + 26.08378526160937 + ], + [ + -79.81557395804876, + 26.08378526160937 + ], + [ + -79.81557395804876, + 26.01144210565851 + ], + [ + -79.89534859574229, + 26.01144210565851 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.89534859574229, + 26.08378526160937 + ], + [ + -79.89534859574229, + 26.156128417560232 + ], + [ + -79.81557395804876, + 26.156128417560232 + ], + [ + -79.81557395804876, + 26.08378526160937 + ], + [ + -79.89534859574229, + 26.08378526160937 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.89534859574229, + 26.156128417560232 + ], + [ + -79.89534859574229, + 26.228471573511094 + ], + [ + -79.81557395804876, + 26.228471573511094 + ], + [ + -79.81557395804876, + 26.156128417560232 + ], + [ + -79.89534859574229, + 26.156128417560232 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.89534859574229, + 26.228471573511094 + ], + [ + -79.89534859574229, + 26.300814729461955 + ], + [ + -79.81557395804876, + 26.300814729461955 + ], + [ + -79.81557395804876, + 26.228471573511094 + ], + [ + -79.89534859574229, + 26.228471573511094 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.89534859574229, + 26.300814729461955 + ], + [ + -79.89534859574229, + 26.373157885412816 + ], + [ + -79.81557395804876, + 26.373157885412816 + ], + [ + -79.81557395804876, + 26.300814729461955 + ], + [ + -79.89534859574229, + 26.300814729461955 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.89534859574229, + 26.373157885412816 + ], + [ + -79.89534859574229, + 26.445501041363677 + ], + [ + -79.81557395804876, + 26.445501041363677 + ], + [ + -79.81557395804876, + 26.373157885412816 + ], + [ + -79.89534859574229, + 26.373157885412816 + ] + ] + ] + } + } + ] +} \ No newline at end of file diff --git a/packages/turf-square-grid/test/out/grid3.geojson b/packages/turf-square-grid/test/out/grid3.geojson new file mode 100644 index 0000000000..f9ffcc7692 --- /dev/null +++ b/packages/turf-square-grid/test/out/grid3.geojson @@ -0,0 +1,4097 @@ +{ + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.3876953125, + 38.71980474264239 + ], + [ + -77.3876953125, + 38.748742005022734 + ], + [ + -77.35060640970083, + 38.748742005022734 + ], + [ + -77.35060640970083, + 38.71980474264239 + ], + [ + -77.3876953125, + 38.71980474264239 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.3876953125, + 38.748742005022734 + ], + [ + -77.3876953125, + 38.77767926740308 + ], + [ + -77.35060640970083, + 38.77767926740308 + ], + [ + -77.35060640970083, + 38.748742005022734 + ], + [ + -77.3876953125, + 38.748742005022734 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.3876953125, + 38.77767926740308 + ], + [ + -77.3876953125, + 38.806616529783426 + ], + [ + -77.35060640970083, + 38.806616529783426 + ], + [ + -77.35060640970083, + 38.77767926740308 + ], + [ + -77.3876953125, + 38.77767926740308 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.3876953125, + 38.806616529783426 + ], + [ + -77.3876953125, + 38.83555379216377 + ], + [ + -77.35060640970083, + 38.83555379216377 + ], + [ + -77.35060640970083, + 38.806616529783426 + ], + [ + -77.3876953125, + 38.806616529783426 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.3876953125, + 38.83555379216377 + ], + [ + -77.3876953125, + 38.86449105454412 + ], + [ + -77.35060640970083, + 38.86449105454412 + ], + [ + -77.35060640970083, + 38.83555379216377 + ], + [ + -77.3876953125, + 38.83555379216377 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.3876953125, + 38.86449105454412 + ], + [ + -77.3876953125, + 38.893428316924464 + ], + [ + -77.35060640970083, + 38.893428316924464 + ], + [ + -77.35060640970083, + 38.86449105454412 + ], + [ + -77.3876953125, + 38.86449105454412 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.3876953125, + 38.893428316924464 + ], + [ + -77.3876953125, + 38.92236557930481 + ], + [ + -77.35060640970083, + 38.92236557930481 + ], + [ + -77.35060640970083, + 38.893428316924464 + ], + [ + -77.3876953125, + 38.893428316924464 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.3876953125, + 38.92236557930481 + ], + [ + -77.3876953125, + 38.951302841685155 + ], + [ + -77.35060640970083, + 38.951302841685155 + ], + [ + -77.35060640970083, + 38.92236557930481 + ], + [ + -77.3876953125, + 38.92236557930481 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.3876953125, + 38.951302841685155 + ], + [ + -77.3876953125, + 38.9802401040655 + ], + [ + -77.35060640970083, + 38.9802401040655 + ], + [ + -77.35060640970083, + 38.951302841685155 + ], + [ + -77.3876953125, + 38.951302841685155 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.3876953125, + 38.9802401040655 + ], + [ + -77.3876953125, + 39.00917736644585 + ], + [ + -77.35060640970083, + 39.00917736644585 + ], + [ + -77.35060640970083, + 38.9802401040655 + ], + [ + -77.3876953125, + 38.9802401040655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.3876953125, + 39.00917736644585 + ], + [ + -77.3876953125, + 39.03811462882619 + ], + [ + -77.35060640970083, + 39.03811462882619 + ], + [ + -77.35060640970083, + 39.00917736644585 + ], + [ + -77.3876953125, + 39.00917736644585 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.35060640970083, + 38.71980474264239 + ], + [ + -77.35060640970083, + 38.748742005022734 + ], + [ + -77.31351750690166, + 38.748742005022734 + ], + [ + -77.31351750690166, + 38.71980474264239 + ], + [ + -77.35060640970083, + 38.71980474264239 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.35060640970083, + 38.748742005022734 + ], + [ + -77.35060640970083, + 38.77767926740308 + ], + [ + -77.31351750690166, + 38.77767926740308 + ], + [ + -77.31351750690166, + 38.748742005022734 + ], + [ + -77.35060640970083, + 38.748742005022734 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.35060640970083, + 38.77767926740308 + ], + [ + -77.35060640970083, + 38.806616529783426 + ], + [ + -77.31351750690166, + 38.806616529783426 + ], + [ + -77.31351750690166, + 38.77767926740308 + ], + [ + -77.35060640970083, + 38.77767926740308 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.35060640970083, + 38.806616529783426 + ], + [ + -77.35060640970083, + 38.83555379216377 + ], + [ + -77.31351750690166, + 38.83555379216377 + ], + [ + -77.31351750690166, + 38.806616529783426 + ], + [ + -77.35060640970083, + 38.806616529783426 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.35060640970083, + 38.83555379216377 + ], + [ + -77.35060640970083, + 38.86449105454412 + ], + [ + -77.31351750690166, + 38.86449105454412 + ], + [ + -77.31351750690166, + 38.83555379216377 + ], + [ + -77.35060640970083, + 38.83555379216377 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.35060640970083, + 38.86449105454412 + ], + [ + -77.35060640970083, + 38.893428316924464 + ], + [ + -77.31351750690166, + 38.893428316924464 + ], + [ + -77.31351750690166, + 38.86449105454412 + ], + [ + -77.35060640970083, + 38.86449105454412 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.35060640970083, + 38.893428316924464 + ], + [ + -77.35060640970083, + 38.92236557930481 + ], + [ + -77.31351750690166, + 38.92236557930481 + ], + [ + -77.31351750690166, + 38.893428316924464 + ], + [ + -77.35060640970083, + 38.893428316924464 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.35060640970083, + 38.92236557930481 + ], + [ + -77.35060640970083, + 38.951302841685155 + ], + [ + -77.31351750690166, + 38.951302841685155 + ], + [ + -77.31351750690166, + 38.92236557930481 + ], + [ + -77.35060640970083, + 38.92236557930481 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.35060640970083, + 38.951302841685155 + ], + [ + -77.35060640970083, + 38.9802401040655 + ], + [ + -77.31351750690166, + 38.9802401040655 + ], + [ + -77.31351750690166, + 38.951302841685155 + ], + [ + -77.35060640970083, + 38.951302841685155 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.35060640970083, + 38.9802401040655 + ], + [ + -77.35060640970083, + 39.00917736644585 + ], + [ + -77.31351750690166, + 39.00917736644585 + ], + [ + -77.31351750690166, + 38.9802401040655 + ], + [ + -77.35060640970083, + 38.9802401040655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.35060640970083, + 39.00917736644585 + ], + [ + -77.35060640970083, + 39.03811462882619 + ], + [ + -77.31351750690166, + 39.03811462882619 + ], + [ + -77.31351750690166, + 39.00917736644585 + ], + [ + -77.35060640970083, + 39.00917736644585 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.31351750690166, + 38.71980474264239 + ], + [ + -77.31351750690166, + 38.748742005022734 + ], + [ + -77.27642860410249, + 38.748742005022734 + ], + [ + -77.27642860410249, + 38.71980474264239 + ], + [ + -77.31351750690166, + 38.71980474264239 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.31351750690166, + 38.748742005022734 + ], + [ + -77.31351750690166, + 38.77767926740308 + ], + [ + -77.27642860410249, + 38.77767926740308 + ], + [ + -77.27642860410249, + 38.748742005022734 + ], + [ + -77.31351750690166, + 38.748742005022734 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.31351750690166, + 38.77767926740308 + ], + [ + -77.31351750690166, + 38.806616529783426 + ], + [ + -77.27642860410249, + 38.806616529783426 + ], + [ + -77.27642860410249, + 38.77767926740308 + ], + [ + -77.31351750690166, + 38.77767926740308 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.31351750690166, + 38.806616529783426 + ], + [ + -77.31351750690166, + 38.83555379216377 + ], + [ + -77.27642860410249, + 38.83555379216377 + ], + [ + -77.27642860410249, + 38.806616529783426 + ], + [ + -77.31351750690166, + 38.806616529783426 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.31351750690166, + 38.83555379216377 + ], + [ + -77.31351750690166, + 38.86449105454412 + ], + [ + -77.27642860410249, + 38.86449105454412 + ], + [ + -77.27642860410249, + 38.83555379216377 + ], + [ + -77.31351750690166, + 38.83555379216377 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.31351750690166, + 38.86449105454412 + ], + [ + -77.31351750690166, + 38.893428316924464 + ], + [ + -77.27642860410249, + 38.893428316924464 + ], + [ + -77.27642860410249, + 38.86449105454412 + ], + [ + -77.31351750690166, + 38.86449105454412 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.31351750690166, + 38.893428316924464 + ], + [ + -77.31351750690166, + 38.92236557930481 + ], + [ + -77.27642860410249, + 38.92236557930481 + ], + [ + -77.27642860410249, + 38.893428316924464 + ], + [ + -77.31351750690166, + 38.893428316924464 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.31351750690166, + 38.92236557930481 + ], + [ + -77.31351750690166, + 38.951302841685155 + ], + [ + -77.27642860410249, + 38.951302841685155 + ], + [ + -77.27642860410249, + 38.92236557930481 + ], + [ + -77.31351750690166, + 38.92236557930481 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.31351750690166, + 38.951302841685155 + ], + [ + -77.31351750690166, + 38.9802401040655 + ], + [ + -77.27642860410249, + 38.9802401040655 + ], + [ + -77.27642860410249, + 38.951302841685155 + ], + [ + -77.31351750690166, + 38.951302841685155 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.31351750690166, + 38.9802401040655 + ], + [ + -77.31351750690166, + 39.00917736644585 + ], + [ + -77.27642860410249, + 39.00917736644585 + ], + [ + -77.27642860410249, + 38.9802401040655 + ], + [ + -77.31351750690166, + 38.9802401040655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.31351750690166, + 39.00917736644585 + ], + [ + -77.31351750690166, + 39.03811462882619 + ], + [ + -77.27642860410249, + 39.03811462882619 + ], + [ + -77.27642860410249, + 39.00917736644585 + ], + [ + -77.31351750690166, + 39.00917736644585 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.27642860410249, + 38.71980474264239 + ], + [ + -77.27642860410249, + 38.748742005022734 + ], + [ + -77.23933970130332, + 38.748742005022734 + ], + [ + -77.23933970130332, + 38.71980474264239 + ], + [ + -77.27642860410249, + 38.71980474264239 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.27642860410249, + 38.748742005022734 + ], + [ + -77.27642860410249, + 38.77767926740308 + ], + [ + -77.23933970130332, + 38.77767926740308 + ], + [ + -77.23933970130332, + 38.748742005022734 + ], + [ + -77.27642860410249, + 38.748742005022734 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.27642860410249, + 38.77767926740308 + ], + [ + -77.27642860410249, + 38.806616529783426 + ], + [ + -77.23933970130332, + 38.806616529783426 + ], + [ + -77.23933970130332, + 38.77767926740308 + ], + [ + -77.27642860410249, + 38.77767926740308 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.27642860410249, + 38.806616529783426 + ], + [ + -77.27642860410249, + 38.83555379216377 + ], + [ + -77.23933970130332, + 38.83555379216377 + ], + [ + -77.23933970130332, + 38.806616529783426 + ], + [ + -77.27642860410249, + 38.806616529783426 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.27642860410249, + 38.83555379216377 + ], + [ + -77.27642860410249, + 38.86449105454412 + ], + [ + -77.23933970130332, + 38.86449105454412 + ], + [ + -77.23933970130332, + 38.83555379216377 + ], + [ + -77.27642860410249, + 38.83555379216377 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.27642860410249, + 38.86449105454412 + ], + [ + -77.27642860410249, + 38.893428316924464 + ], + [ + -77.23933970130332, + 38.893428316924464 + ], + [ + -77.23933970130332, + 38.86449105454412 + ], + [ + -77.27642860410249, + 38.86449105454412 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.27642860410249, + 38.893428316924464 + ], + [ + -77.27642860410249, + 38.92236557930481 + ], + [ + -77.23933970130332, + 38.92236557930481 + ], + [ + -77.23933970130332, + 38.893428316924464 + ], + [ + -77.27642860410249, + 38.893428316924464 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.27642860410249, + 38.92236557930481 + ], + [ + -77.27642860410249, + 38.951302841685155 + ], + [ + -77.23933970130332, + 38.951302841685155 + ], + [ + -77.23933970130332, + 38.92236557930481 + ], + [ + -77.27642860410249, + 38.92236557930481 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.27642860410249, + 38.951302841685155 + ], + [ + -77.27642860410249, + 38.9802401040655 + ], + [ + -77.23933970130332, + 38.9802401040655 + ], + [ + -77.23933970130332, + 38.951302841685155 + ], + [ + -77.27642860410249, + 38.951302841685155 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.27642860410249, + 38.9802401040655 + ], + [ + -77.27642860410249, + 39.00917736644585 + ], + [ + -77.23933970130332, + 39.00917736644585 + ], + [ + -77.23933970130332, + 38.9802401040655 + ], + [ + -77.27642860410249, + 38.9802401040655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.27642860410249, + 39.00917736644585 + ], + [ + -77.27642860410249, + 39.03811462882619 + ], + [ + -77.23933970130332, + 39.03811462882619 + ], + [ + -77.23933970130332, + 39.00917736644585 + ], + [ + -77.27642860410249, + 39.00917736644585 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.23933970130332, + 38.71980474264239 + ], + [ + -77.23933970130332, + 38.748742005022734 + ], + [ + -77.20225079850415, + 38.748742005022734 + ], + [ + -77.20225079850415, + 38.71980474264239 + ], + [ + -77.23933970130332, + 38.71980474264239 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.23933970130332, + 38.748742005022734 + ], + [ + -77.23933970130332, + 38.77767926740308 + ], + [ + -77.20225079850415, + 38.77767926740308 + ], + [ + -77.20225079850415, + 38.748742005022734 + ], + [ + -77.23933970130332, + 38.748742005022734 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.23933970130332, + 38.77767926740308 + ], + [ + -77.23933970130332, + 38.806616529783426 + ], + [ + -77.20225079850415, + 38.806616529783426 + ], + [ + -77.20225079850415, + 38.77767926740308 + ], + [ + -77.23933970130332, + 38.77767926740308 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.23933970130332, + 38.806616529783426 + ], + [ + -77.23933970130332, + 38.83555379216377 + ], + [ + -77.20225079850415, + 38.83555379216377 + ], + [ + -77.20225079850415, + 38.806616529783426 + ], + [ + -77.23933970130332, + 38.806616529783426 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.23933970130332, + 38.83555379216377 + ], + [ + -77.23933970130332, + 38.86449105454412 + ], + [ + -77.20225079850415, + 38.86449105454412 + ], + [ + -77.20225079850415, + 38.83555379216377 + ], + [ + -77.23933970130332, + 38.83555379216377 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.23933970130332, + 38.86449105454412 + ], + [ + -77.23933970130332, + 38.893428316924464 + ], + [ + -77.20225079850415, + 38.893428316924464 + ], + [ + -77.20225079850415, + 38.86449105454412 + ], + [ + -77.23933970130332, + 38.86449105454412 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.23933970130332, + 38.893428316924464 + ], + [ + -77.23933970130332, + 38.92236557930481 + ], + [ + -77.20225079850415, + 38.92236557930481 + ], + [ + -77.20225079850415, + 38.893428316924464 + ], + [ + -77.23933970130332, + 38.893428316924464 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.23933970130332, + 38.92236557930481 + ], + [ + -77.23933970130332, + 38.951302841685155 + ], + [ + -77.20225079850415, + 38.951302841685155 + ], + [ + -77.20225079850415, + 38.92236557930481 + ], + [ + -77.23933970130332, + 38.92236557930481 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.23933970130332, + 38.951302841685155 + ], + [ + -77.23933970130332, + 38.9802401040655 + ], + [ + -77.20225079850415, + 38.9802401040655 + ], + [ + -77.20225079850415, + 38.951302841685155 + ], + [ + -77.23933970130332, + 38.951302841685155 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.23933970130332, + 38.9802401040655 + ], + [ + -77.23933970130332, + 39.00917736644585 + ], + [ + -77.20225079850415, + 39.00917736644585 + ], + [ + -77.20225079850415, + 38.9802401040655 + ], + [ + -77.23933970130332, + 38.9802401040655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.23933970130332, + 39.00917736644585 + ], + [ + -77.23933970130332, + 39.03811462882619 + ], + [ + -77.20225079850415, + 39.03811462882619 + ], + [ + -77.20225079850415, + 39.00917736644585 + ], + [ + -77.23933970130332, + 39.00917736644585 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.20225079850415, + 38.71980474264239 + ], + [ + -77.20225079850415, + 38.748742005022734 + ], + [ + -77.16516189570498, + 38.748742005022734 + ], + [ + -77.16516189570498, + 38.71980474264239 + ], + [ + -77.20225079850415, + 38.71980474264239 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.20225079850415, + 38.748742005022734 + ], + [ + -77.20225079850415, + 38.77767926740308 + ], + [ + -77.16516189570498, + 38.77767926740308 + ], + [ + -77.16516189570498, + 38.748742005022734 + ], + [ + -77.20225079850415, + 38.748742005022734 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.20225079850415, + 38.77767926740308 + ], + [ + -77.20225079850415, + 38.806616529783426 + ], + [ + -77.16516189570498, + 38.806616529783426 + ], + [ + -77.16516189570498, + 38.77767926740308 + ], + [ + -77.20225079850415, + 38.77767926740308 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.20225079850415, + 38.806616529783426 + ], + [ + -77.20225079850415, + 38.83555379216377 + ], + [ + -77.16516189570498, + 38.83555379216377 + ], + [ + -77.16516189570498, + 38.806616529783426 + ], + [ + -77.20225079850415, + 38.806616529783426 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.20225079850415, + 38.83555379216377 + ], + [ + -77.20225079850415, + 38.86449105454412 + ], + [ + -77.16516189570498, + 38.86449105454412 + ], + [ + -77.16516189570498, + 38.83555379216377 + ], + [ + -77.20225079850415, + 38.83555379216377 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.20225079850415, + 38.86449105454412 + ], + [ + -77.20225079850415, + 38.893428316924464 + ], + [ + -77.16516189570498, + 38.893428316924464 + ], + [ + -77.16516189570498, + 38.86449105454412 + ], + [ + -77.20225079850415, + 38.86449105454412 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.20225079850415, + 38.893428316924464 + ], + [ + -77.20225079850415, + 38.92236557930481 + ], + [ + -77.16516189570498, + 38.92236557930481 + ], + [ + -77.16516189570498, + 38.893428316924464 + ], + [ + -77.20225079850415, + 38.893428316924464 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.20225079850415, + 38.92236557930481 + ], + [ + -77.20225079850415, + 38.951302841685155 + ], + [ + -77.16516189570498, + 38.951302841685155 + ], + [ + -77.16516189570498, + 38.92236557930481 + ], + [ + -77.20225079850415, + 38.92236557930481 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.20225079850415, + 38.951302841685155 + ], + [ + -77.20225079850415, + 38.9802401040655 + ], + [ + -77.16516189570498, + 38.9802401040655 + ], + [ + -77.16516189570498, + 38.951302841685155 + ], + [ + -77.20225079850415, + 38.951302841685155 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.20225079850415, + 38.9802401040655 + ], + [ + -77.20225079850415, + 39.00917736644585 + ], + [ + -77.16516189570498, + 39.00917736644585 + ], + [ + -77.16516189570498, + 38.9802401040655 + ], + [ + -77.20225079850415, + 38.9802401040655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.20225079850415, + 39.00917736644585 + ], + [ + -77.20225079850415, + 39.03811462882619 + ], + [ + -77.16516189570498, + 39.03811462882619 + ], + [ + -77.16516189570498, + 39.00917736644585 + ], + [ + -77.20225079850415, + 39.00917736644585 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.16516189570498, + 38.71980474264239 + ], + [ + -77.16516189570498, + 38.748742005022734 + ], + [ + -77.12807299290581, + 38.748742005022734 + ], + [ + -77.12807299290581, + 38.71980474264239 + ], + [ + -77.16516189570498, + 38.71980474264239 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.16516189570498, + 38.748742005022734 + ], + [ + -77.16516189570498, + 38.77767926740308 + ], + [ + -77.12807299290581, + 38.77767926740308 + ], + [ + -77.12807299290581, + 38.748742005022734 + ], + [ + -77.16516189570498, + 38.748742005022734 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.16516189570498, + 38.77767926740308 + ], + [ + -77.16516189570498, + 38.806616529783426 + ], + [ + -77.12807299290581, + 38.806616529783426 + ], + [ + -77.12807299290581, + 38.77767926740308 + ], + [ + -77.16516189570498, + 38.77767926740308 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.16516189570498, + 38.806616529783426 + ], + [ + -77.16516189570498, + 38.83555379216377 + ], + [ + -77.12807299290581, + 38.83555379216377 + ], + [ + -77.12807299290581, + 38.806616529783426 + ], + [ + -77.16516189570498, + 38.806616529783426 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.16516189570498, + 38.83555379216377 + ], + [ + -77.16516189570498, + 38.86449105454412 + ], + [ + -77.12807299290581, + 38.86449105454412 + ], + [ + -77.12807299290581, + 38.83555379216377 + ], + [ + -77.16516189570498, + 38.83555379216377 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.16516189570498, + 38.86449105454412 + ], + [ + -77.16516189570498, + 38.893428316924464 + ], + [ + -77.12807299290581, + 38.893428316924464 + ], + [ + -77.12807299290581, + 38.86449105454412 + ], + [ + -77.16516189570498, + 38.86449105454412 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.16516189570498, + 38.893428316924464 + ], + [ + -77.16516189570498, + 38.92236557930481 + ], + [ + -77.12807299290581, + 38.92236557930481 + ], + [ + -77.12807299290581, + 38.893428316924464 + ], + [ + -77.16516189570498, + 38.893428316924464 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.16516189570498, + 38.92236557930481 + ], + [ + -77.16516189570498, + 38.951302841685155 + ], + [ + -77.12807299290581, + 38.951302841685155 + ], + [ + -77.12807299290581, + 38.92236557930481 + ], + [ + -77.16516189570498, + 38.92236557930481 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.16516189570498, + 38.951302841685155 + ], + [ + -77.16516189570498, + 38.9802401040655 + ], + [ + -77.12807299290581, + 38.9802401040655 + ], + [ + -77.12807299290581, + 38.951302841685155 + ], + [ + -77.16516189570498, + 38.951302841685155 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.16516189570498, + 38.9802401040655 + ], + [ + -77.16516189570498, + 39.00917736644585 + ], + [ + -77.12807299290581, + 39.00917736644585 + ], + [ + -77.12807299290581, + 38.9802401040655 + ], + [ + -77.16516189570498, + 38.9802401040655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.16516189570498, + 39.00917736644585 + ], + [ + -77.16516189570498, + 39.03811462882619 + ], + [ + -77.12807299290581, + 39.03811462882619 + ], + [ + -77.12807299290581, + 39.00917736644585 + ], + [ + -77.16516189570498, + 39.00917736644585 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.12807299290581, + 38.71980474264239 + ], + [ + -77.12807299290581, + 38.748742005022734 + ], + [ + -77.09098409010664, + 38.748742005022734 + ], + [ + -77.09098409010664, + 38.71980474264239 + ], + [ + -77.12807299290581, + 38.71980474264239 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.12807299290581, + 38.748742005022734 + ], + [ + -77.12807299290581, + 38.77767926740308 + ], + [ + -77.09098409010664, + 38.77767926740308 + ], + [ + -77.09098409010664, + 38.748742005022734 + ], + [ + -77.12807299290581, + 38.748742005022734 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.12807299290581, + 38.77767926740308 + ], + [ + -77.12807299290581, + 38.806616529783426 + ], + [ + -77.09098409010664, + 38.806616529783426 + ], + [ + -77.09098409010664, + 38.77767926740308 + ], + [ + -77.12807299290581, + 38.77767926740308 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.12807299290581, + 38.806616529783426 + ], + [ + -77.12807299290581, + 38.83555379216377 + ], + [ + -77.09098409010664, + 38.83555379216377 + ], + [ + -77.09098409010664, + 38.806616529783426 + ], + [ + -77.12807299290581, + 38.806616529783426 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.12807299290581, + 38.83555379216377 + ], + [ + -77.12807299290581, + 38.86449105454412 + ], + [ + -77.09098409010664, + 38.86449105454412 + ], + [ + -77.09098409010664, + 38.83555379216377 + ], + [ + -77.12807299290581, + 38.83555379216377 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.12807299290581, + 38.86449105454412 + ], + [ + -77.12807299290581, + 38.893428316924464 + ], + [ + -77.09098409010664, + 38.893428316924464 + ], + [ + -77.09098409010664, + 38.86449105454412 + ], + [ + -77.12807299290581, + 38.86449105454412 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.12807299290581, + 38.893428316924464 + ], + [ + -77.12807299290581, + 38.92236557930481 + ], + [ + -77.09098409010664, + 38.92236557930481 + ], + [ + -77.09098409010664, + 38.893428316924464 + ], + [ + -77.12807299290581, + 38.893428316924464 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.12807299290581, + 38.92236557930481 + ], + [ + -77.12807299290581, + 38.951302841685155 + ], + [ + -77.09098409010664, + 38.951302841685155 + ], + [ + -77.09098409010664, + 38.92236557930481 + ], + [ + -77.12807299290581, + 38.92236557930481 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.12807299290581, + 38.951302841685155 + ], + [ + -77.12807299290581, + 38.9802401040655 + ], + [ + -77.09098409010664, + 38.9802401040655 + ], + [ + -77.09098409010664, + 38.951302841685155 + ], + [ + -77.12807299290581, + 38.951302841685155 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.12807299290581, + 38.9802401040655 + ], + [ + -77.12807299290581, + 39.00917736644585 + ], + [ + -77.09098409010664, + 39.00917736644585 + ], + [ + -77.09098409010664, + 38.9802401040655 + ], + [ + -77.12807299290581, + 38.9802401040655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.12807299290581, + 39.00917736644585 + ], + [ + -77.12807299290581, + 39.03811462882619 + ], + [ + -77.09098409010664, + 39.03811462882619 + ], + [ + -77.09098409010664, + 39.00917736644585 + ], + [ + -77.12807299290581, + 39.00917736644585 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.09098409010664, + 38.71980474264239 + ], + [ + -77.09098409010664, + 38.748742005022734 + ], + [ + -77.05389518730748, + 38.748742005022734 + ], + [ + -77.05389518730748, + 38.71980474264239 + ], + [ + -77.09098409010664, + 38.71980474264239 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.09098409010664, + 38.748742005022734 + ], + [ + -77.09098409010664, + 38.77767926740308 + ], + [ + -77.05389518730748, + 38.77767926740308 + ], + [ + -77.05389518730748, + 38.748742005022734 + ], + [ + -77.09098409010664, + 38.748742005022734 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.09098409010664, + 38.77767926740308 + ], + [ + -77.09098409010664, + 38.806616529783426 + ], + [ + -77.05389518730748, + 38.806616529783426 + ], + [ + -77.05389518730748, + 38.77767926740308 + ], + [ + -77.09098409010664, + 38.77767926740308 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.09098409010664, + 38.806616529783426 + ], + [ + -77.09098409010664, + 38.83555379216377 + ], + [ + -77.05389518730748, + 38.83555379216377 + ], + [ + -77.05389518730748, + 38.806616529783426 + ], + [ + -77.09098409010664, + 38.806616529783426 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.09098409010664, + 38.83555379216377 + ], + [ + -77.09098409010664, + 38.86449105454412 + ], + [ + -77.05389518730748, + 38.86449105454412 + ], + [ + -77.05389518730748, + 38.83555379216377 + ], + [ + -77.09098409010664, + 38.83555379216377 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.09098409010664, + 38.86449105454412 + ], + [ + -77.09098409010664, + 38.893428316924464 + ], + [ + -77.05389518730748, + 38.893428316924464 + ], + [ + -77.05389518730748, + 38.86449105454412 + ], + [ + -77.09098409010664, + 38.86449105454412 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.09098409010664, + 38.893428316924464 + ], + [ + -77.09098409010664, + 38.92236557930481 + ], + [ + -77.05389518730748, + 38.92236557930481 + ], + [ + -77.05389518730748, + 38.893428316924464 + ], + [ + -77.09098409010664, + 38.893428316924464 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.09098409010664, + 38.92236557930481 + ], + [ + -77.09098409010664, + 38.951302841685155 + ], + [ + -77.05389518730748, + 38.951302841685155 + ], + [ + -77.05389518730748, + 38.92236557930481 + ], + [ + -77.09098409010664, + 38.92236557930481 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.09098409010664, + 38.951302841685155 + ], + [ + -77.09098409010664, + 38.9802401040655 + ], + [ + -77.05389518730748, + 38.9802401040655 + ], + [ + -77.05389518730748, + 38.951302841685155 + ], + [ + -77.09098409010664, + 38.951302841685155 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.09098409010664, + 38.9802401040655 + ], + [ + -77.09098409010664, + 39.00917736644585 + ], + [ + -77.05389518730748, + 39.00917736644585 + ], + [ + -77.05389518730748, + 38.9802401040655 + ], + [ + -77.09098409010664, + 38.9802401040655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.09098409010664, + 39.00917736644585 + ], + [ + -77.09098409010664, + 39.03811462882619 + ], + [ + -77.05389518730748, + 39.03811462882619 + ], + [ + -77.05389518730748, + 39.00917736644585 + ], + [ + -77.09098409010664, + 39.00917736644585 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.05389518730748, + 38.71980474264239 + ], + [ + -77.05389518730748, + 38.748742005022734 + ], + [ + -77.0168062845083, + 38.748742005022734 + ], + [ + -77.0168062845083, + 38.71980474264239 + ], + [ + -77.05389518730748, + 38.71980474264239 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.05389518730748, + 38.748742005022734 + ], + [ + -77.05389518730748, + 38.77767926740308 + ], + [ + -77.0168062845083, + 38.77767926740308 + ], + [ + -77.0168062845083, + 38.748742005022734 + ], + [ + -77.05389518730748, + 38.748742005022734 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.05389518730748, + 38.77767926740308 + ], + [ + -77.05389518730748, + 38.806616529783426 + ], + [ + -77.0168062845083, + 38.806616529783426 + ], + [ + -77.0168062845083, + 38.77767926740308 + ], + [ + -77.05389518730748, + 38.77767926740308 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.05389518730748, + 38.806616529783426 + ], + [ + -77.05389518730748, + 38.83555379216377 + ], + [ + -77.0168062845083, + 38.83555379216377 + ], + [ + -77.0168062845083, + 38.806616529783426 + ], + [ + -77.05389518730748, + 38.806616529783426 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.05389518730748, + 38.83555379216377 + ], + [ + -77.05389518730748, + 38.86449105454412 + ], + [ + -77.0168062845083, + 38.86449105454412 + ], + [ + -77.0168062845083, + 38.83555379216377 + ], + [ + -77.05389518730748, + 38.83555379216377 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.05389518730748, + 38.86449105454412 + ], + [ + -77.05389518730748, + 38.893428316924464 + ], + [ + -77.0168062845083, + 38.893428316924464 + ], + [ + -77.0168062845083, + 38.86449105454412 + ], + [ + -77.05389518730748, + 38.86449105454412 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.05389518730748, + 38.893428316924464 + ], + [ + -77.05389518730748, + 38.92236557930481 + ], + [ + -77.0168062845083, + 38.92236557930481 + ], + [ + -77.0168062845083, + 38.893428316924464 + ], + [ + -77.05389518730748, + 38.893428316924464 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.05389518730748, + 38.92236557930481 + ], + [ + -77.05389518730748, + 38.951302841685155 + ], + [ + -77.0168062845083, + 38.951302841685155 + ], + [ + -77.0168062845083, + 38.92236557930481 + ], + [ + -77.05389518730748, + 38.92236557930481 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.05389518730748, + 38.951302841685155 + ], + [ + -77.05389518730748, + 38.9802401040655 + ], + [ + -77.0168062845083, + 38.9802401040655 + ], + [ + -77.0168062845083, + 38.951302841685155 + ], + [ + -77.05389518730748, + 38.951302841685155 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.05389518730748, + 38.9802401040655 + ], + [ + -77.05389518730748, + 39.00917736644585 + ], + [ + -77.0168062845083, + 39.00917736644585 + ], + [ + -77.0168062845083, + 38.9802401040655 + ], + [ + -77.05389518730748, + 38.9802401040655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.05389518730748, + 39.00917736644585 + ], + [ + -77.05389518730748, + 39.03811462882619 + ], + [ + -77.0168062845083, + 39.03811462882619 + ], + [ + -77.0168062845083, + 39.00917736644585 + ], + [ + -77.05389518730748, + 39.00917736644585 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.0168062845083, + 38.71980474264239 + ], + [ + -77.0168062845083, + 38.748742005022734 + ], + [ + -76.97971738170914, + 38.748742005022734 + ], + [ + -76.97971738170914, + 38.71980474264239 + ], + [ + -77.0168062845083, + 38.71980474264239 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.0168062845083, + 38.748742005022734 + ], + [ + -77.0168062845083, + 38.77767926740308 + ], + [ + -76.97971738170914, + 38.77767926740308 + ], + [ + -76.97971738170914, + 38.748742005022734 + ], + [ + -77.0168062845083, + 38.748742005022734 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.0168062845083, + 38.77767926740308 + ], + [ + -77.0168062845083, + 38.806616529783426 + ], + [ + -76.97971738170914, + 38.806616529783426 + ], + [ + -76.97971738170914, + 38.77767926740308 + ], + [ + -77.0168062845083, + 38.77767926740308 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.0168062845083, + 38.806616529783426 + ], + [ + -77.0168062845083, + 38.83555379216377 + ], + [ + -76.97971738170914, + 38.83555379216377 + ], + [ + -76.97971738170914, + 38.806616529783426 + ], + [ + -77.0168062845083, + 38.806616529783426 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.0168062845083, + 38.83555379216377 + ], + [ + -77.0168062845083, + 38.86449105454412 + ], + [ + -76.97971738170914, + 38.86449105454412 + ], + [ + -76.97971738170914, + 38.83555379216377 + ], + [ + -77.0168062845083, + 38.83555379216377 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.0168062845083, + 38.86449105454412 + ], + [ + -77.0168062845083, + 38.893428316924464 + ], + [ + -76.97971738170914, + 38.893428316924464 + ], + [ + -76.97971738170914, + 38.86449105454412 + ], + [ + -77.0168062845083, + 38.86449105454412 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.0168062845083, + 38.893428316924464 + ], + [ + -77.0168062845083, + 38.92236557930481 + ], + [ + -76.97971738170914, + 38.92236557930481 + ], + [ + -76.97971738170914, + 38.893428316924464 + ], + [ + -77.0168062845083, + 38.893428316924464 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.0168062845083, + 38.92236557930481 + ], + [ + -77.0168062845083, + 38.951302841685155 + ], + [ + -76.97971738170914, + 38.951302841685155 + ], + [ + -76.97971738170914, + 38.92236557930481 + ], + [ + -77.0168062845083, + 38.92236557930481 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.0168062845083, + 38.951302841685155 + ], + [ + -77.0168062845083, + 38.9802401040655 + ], + [ + -76.97971738170914, + 38.9802401040655 + ], + [ + -76.97971738170914, + 38.951302841685155 + ], + [ + -77.0168062845083, + 38.951302841685155 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.0168062845083, + 38.9802401040655 + ], + [ + -77.0168062845083, + 39.00917736644585 + ], + [ + -76.97971738170914, + 39.00917736644585 + ], + [ + -76.97971738170914, + 38.9802401040655 + ], + [ + -77.0168062845083, + 38.9802401040655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.0168062845083, + 39.00917736644585 + ], + [ + -77.0168062845083, + 39.03811462882619 + ], + [ + -76.97971738170914, + 39.03811462882619 + ], + [ + -76.97971738170914, + 39.00917736644585 + ], + [ + -77.0168062845083, + 39.00917736644585 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.97971738170914, + 38.71980474264239 + ], + [ + -76.97971738170914, + 38.748742005022734 + ], + [ + -76.94262847890997, + 38.748742005022734 + ], + [ + -76.94262847890997, + 38.71980474264239 + ], + [ + -76.97971738170914, + 38.71980474264239 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.97971738170914, + 38.748742005022734 + ], + [ + -76.97971738170914, + 38.77767926740308 + ], + [ + -76.94262847890997, + 38.77767926740308 + ], + [ + -76.94262847890997, + 38.748742005022734 + ], + [ + -76.97971738170914, + 38.748742005022734 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.97971738170914, + 38.77767926740308 + ], + [ + -76.97971738170914, + 38.806616529783426 + ], + [ + -76.94262847890997, + 38.806616529783426 + ], + [ + -76.94262847890997, + 38.77767926740308 + ], + [ + -76.97971738170914, + 38.77767926740308 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.97971738170914, + 38.806616529783426 + ], + [ + -76.97971738170914, + 38.83555379216377 + ], + [ + -76.94262847890997, + 38.83555379216377 + ], + [ + -76.94262847890997, + 38.806616529783426 + ], + [ + -76.97971738170914, + 38.806616529783426 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.97971738170914, + 38.83555379216377 + ], + [ + -76.97971738170914, + 38.86449105454412 + ], + [ + -76.94262847890997, + 38.86449105454412 + ], + [ + -76.94262847890997, + 38.83555379216377 + ], + [ + -76.97971738170914, + 38.83555379216377 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.97971738170914, + 38.86449105454412 + ], + [ + -76.97971738170914, + 38.893428316924464 + ], + [ + -76.94262847890997, + 38.893428316924464 + ], + [ + -76.94262847890997, + 38.86449105454412 + ], + [ + -76.97971738170914, + 38.86449105454412 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.97971738170914, + 38.893428316924464 + ], + [ + -76.97971738170914, + 38.92236557930481 + ], + [ + -76.94262847890997, + 38.92236557930481 + ], + [ + -76.94262847890997, + 38.893428316924464 + ], + [ + -76.97971738170914, + 38.893428316924464 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.97971738170914, + 38.92236557930481 + ], + [ + -76.97971738170914, + 38.951302841685155 + ], + [ + -76.94262847890997, + 38.951302841685155 + ], + [ + -76.94262847890997, + 38.92236557930481 + ], + [ + -76.97971738170914, + 38.92236557930481 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.97971738170914, + 38.951302841685155 + ], + [ + -76.97971738170914, + 38.9802401040655 + ], + [ + -76.94262847890997, + 38.9802401040655 + ], + [ + -76.94262847890997, + 38.951302841685155 + ], + [ + -76.97971738170914, + 38.951302841685155 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.97971738170914, + 38.9802401040655 + ], + [ + -76.97971738170914, + 39.00917736644585 + ], + [ + -76.94262847890997, + 39.00917736644585 + ], + [ + -76.94262847890997, + 38.9802401040655 + ], + [ + -76.97971738170914, + 38.9802401040655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.97971738170914, + 39.00917736644585 + ], + [ + -76.97971738170914, + 39.03811462882619 + ], + [ + -76.94262847890997, + 39.03811462882619 + ], + [ + -76.94262847890997, + 39.00917736644585 + ], + [ + -76.97971738170914, + 39.00917736644585 + ] + ] + ] + } + } + ] +} \ No newline at end of file diff --git a/packages/turf-square-grid/test/out/grid4.geojson b/packages/turf-square-grid/test/out/grid4.geojson new file mode 100644 index 0000000000..46254605bf --- /dev/null +++ b/packages/turf-square-grid/test/out/grid4.geojson @@ -0,0 +1,24805 @@ +{ + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.6328125, + 11.867350911459308 + ], + [ + 63.6328125, + 12.590782470967923 + ], + [ + 64.37209777458736, + 12.590782470967923 + ], + [ + 64.37209777458736, + 11.867350911459308 + ], + [ + 63.6328125, + 11.867350911459308 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.6328125, + 12.590782470967923 + ], + [ + 63.6328125, + 13.314214030476538 + ], + [ + 64.37209777458736, + 13.314214030476538 + ], + [ + 64.37209777458736, + 12.590782470967923 + ], + [ + 63.6328125, + 12.590782470967923 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.6328125, + 13.314214030476538 + ], + [ + 63.6328125, + 14.037645589985154 + ], + [ + 64.37209777458736, + 14.037645589985154 + ], + [ + 64.37209777458736, + 13.314214030476538 + ], + [ + 63.6328125, + 13.314214030476538 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.6328125, + 14.037645589985154 + ], + [ + 63.6328125, + 14.761077149493769 + ], + [ + 64.37209777458736, + 14.761077149493769 + ], + [ + 64.37209777458736, + 14.037645589985154 + ], + [ + 63.6328125, + 14.037645589985154 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.6328125, + 14.761077149493769 + ], + [ + 63.6328125, + 15.484508709002384 + ], + [ + 64.37209777458736, + 15.484508709002384 + ], + [ + 64.37209777458736, + 14.761077149493769 + ], + [ + 63.6328125, + 14.761077149493769 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.6328125, + 15.484508709002384 + ], + [ + 63.6328125, + 16.207940268511 + ], + [ + 64.37209777458736, + 16.207940268511 + ], + [ + 64.37209777458736, + 15.484508709002384 + ], + [ + 63.6328125, + 15.484508709002384 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.6328125, + 16.207940268511 + ], + [ + 63.6328125, + 16.931371828019614 + ], + [ + 64.37209777458736, + 16.931371828019614 + ], + [ + 64.37209777458736, + 16.207940268511 + ], + [ + 63.6328125, + 16.207940268511 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.6328125, + 16.931371828019614 + ], + [ + 63.6328125, + 17.65480338752823 + ], + [ + 64.37209777458736, + 17.65480338752823 + ], + [ + 64.37209777458736, + 16.931371828019614 + ], + [ + 63.6328125, + 16.931371828019614 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.6328125, + 17.65480338752823 + ], + [ + 63.6328125, + 18.378234947036844 + ], + [ + 64.37209777458736, + 18.378234947036844 + ], + [ + 64.37209777458736, + 17.65480338752823 + ], + [ + 63.6328125, + 17.65480338752823 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.6328125, + 18.378234947036844 + ], + [ + 63.6328125, + 19.10166650654546 + ], + [ + 64.37209777458736, + 19.10166650654546 + ], + [ + 64.37209777458736, + 18.378234947036844 + ], + [ + 63.6328125, + 18.378234947036844 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.6328125, + 19.10166650654546 + ], + [ + 63.6328125, + 19.825098066054075 + ], + [ + 64.37209777458736, + 19.825098066054075 + ], + [ + 64.37209777458736, + 19.10166650654546 + ], + [ + 63.6328125, + 19.10166650654546 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.6328125, + 19.825098066054075 + ], + [ + 63.6328125, + 20.54852962556269 + ], + [ + 64.37209777458736, + 20.54852962556269 + ], + [ + 64.37209777458736, + 19.825098066054075 + ], + [ + 63.6328125, + 19.825098066054075 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.6328125, + 20.54852962556269 + ], + [ + 63.6328125, + 21.271961185071305 + ], + [ + 64.37209777458736, + 21.271961185071305 + ], + [ + 64.37209777458736, + 20.54852962556269 + ], + [ + 63.6328125, + 20.54852962556269 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.6328125, + 21.271961185071305 + ], + [ + 63.6328125, + 21.99539274457992 + ], + [ + 64.37209777458736, + 21.99539274457992 + ], + [ + 64.37209777458736, + 21.271961185071305 + ], + [ + 63.6328125, + 21.271961185071305 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.6328125, + 21.99539274457992 + ], + [ + 63.6328125, + 22.718824304088535 + ], + [ + 64.37209777458736, + 22.718824304088535 + ], + [ + 64.37209777458736, + 21.99539274457992 + ], + [ + 63.6328125, + 21.99539274457992 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.6328125, + 22.718824304088535 + ], + [ + 63.6328125, + 23.44225586359715 + ], + [ + 64.37209777458736, + 23.44225586359715 + ], + [ + 64.37209777458736, + 22.718824304088535 + ], + [ + 63.6328125, + 22.718824304088535 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.6328125, + 23.44225586359715 + ], + [ + 63.6328125, + 24.165687423105766 + ], + [ + 64.37209777458736, + 24.165687423105766 + ], + [ + 64.37209777458736, + 23.44225586359715 + ], + [ + 63.6328125, + 23.44225586359715 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.6328125, + 24.165687423105766 + ], + [ + 63.6328125, + 24.88911898261438 + ], + [ + 64.37209777458736, + 24.88911898261438 + ], + [ + 64.37209777458736, + 24.165687423105766 + ], + [ + 63.6328125, + 24.165687423105766 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.6328125, + 24.88911898261438 + ], + [ + 63.6328125, + 25.612550542122996 + ], + [ + 64.37209777458736, + 25.612550542122996 + ], + [ + 64.37209777458736, + 24.88911898261438 + ], + [ + 63.6328125, + 24.88911898261438 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.6328125, + 25.612550542122996 + ], + [ + 63.6328125, + 26.33598210163161 + ], + [ + 64.37209777458736, + 26.33598210163161 + ], + [ + 64.37209777458736, + 25.612550542122996 + ], + [ + 63.6328125, + 25.612550542122996 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.6328125, + 26.33598210163161 + ], + [ + 63.6328125, + 27.059413661140226 + ], + [ + 64.37209777458736, + 27.059413661140226 + ], + [ + 64.37209777458736, + 26.33598210163161 + ], + [ + 63.6328125, + 26.33598210163161 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.6328125, + 27.059413661140226 + ], + [ + 63.6328125, + 27.78284522064884 + ], + [ + 64.37209777458736, + 27.78284522064884 + ], + [ + 64.37209777458736, + 27.059413661140226 + ], + [ + 63.6328125, + 27.059413661140226 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.6328125, + 27.78284522064884 + ], + [ + 63.6328125, + 28.506276780157457 + ], + [ + 64.37209777458736, + 28.506276780157457 + ], + [ + 64.37209777458736, + 27.78284522064884 + ], + [ + 63.6328125, + 27.78284522064884 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.6328125, + 28.506276780157457 + ], + [ + 63.6328125, + 29.22970833966607 + ], + [ + 64.37209777458736, + 29.22970833966607 + ], + [ + 64.37209777458736, + 28.506276780157457 + ], + [ + 63.6328125, + 28.506276780157457 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.6328125, + 29.22970833966607 + ], + [ + 63.6328125, + 29.953139899174687 + ], + [ + 64.37209777458736, + 29.953139899174687 + ], + [ + 64.37209777458736, + 29.22970833966607 + ], + [ + 63.6328125, + 29.22970833966607 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.6328125, + 29.953139899174687 + ], + [ + 63.6328125, + 30.676571458683302 + ], + [ + 64.37209777458736, + 30.676571458683302 + ], + [ + 64.37209777458736, + 29.953139899174687 + ], + [ + 63.6328125, + 29.953139899174687 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.6328125, + 30.676571458683302 + ], + [ + 63.6328125, + 31.400003018191917 + ], + [ + 64.37209777458736, + 31.400003018191917 + ], + [ + 64.37209777458736, + 30.676571458683302 + ], + [ + 63.6328125, + 30.676571458683302 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.6328125, + 31.400003018191917 + ], + [ + 63.6328125, + 32.123434577700536 + ], + [ + 64.37209777458736, + 32.123434577700536 + ], + [ + 64.37209777458736, + 31.400003018191917 + ], + [ + 63.6328125, + 31.400003018191917 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.6328125, + 32.123434577700536 + ], + [ + 63.6328125, + 32.84686613720915 + ], + [ + 64.37209777458736, + 32.84686613720915 + ], + [ + 64.37209777458736, + 32.123434577700536 + ], + [ + 63.6328125, + 32.123434577700536 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.6328125, + 32.84686613720915 + ], + [ + 63.6328125, + 33.57029769671776 + ], + [ + 64.37209777458736, + 33.57029769671776 + ], + [ + 64.37209777458736, + 32.84686613720915 + ], + [ + 63.6328125, + 32.84686613720915 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.6328125, + 33.57029769671776 + ], + [ + 63.6328125, + 34.29372925622637 + ], + [ + 64.37209777458736, + 34.29372925622637 + ], + [ + 64.37209777458736, + 33.57029769671776 + ], + [ + 63.6328125, + 33.57029769671776 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.6328125, + 34.29372925622637 + ], + [ + 63.6328125, + 35.01716081573498 + ], + [ + 64.37209777458736, + 35.01716081573498 + ], + [ + 64.37209777458736, + 34.29372925622637 + ], + [ + 63.6328125, + 34.29372925622637 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.6328125, + 35.01716081573498 + ], + [ + 63.6328125, + 35.740592375243594 + ], + [ + 64.37209777458736, + 35.740592375243594 + ], + [ + 64.37209777458736, + 35.01716081573498 + ], + [ + 63.6328125, + 35.01716081573498 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.6328125, + 35.740592375243594 + ], + [ + 63.6328125, + 36.464023934752205 + ], + [ + 64.37209777458736, + 36.464023934752205 + ], + [ + 64.37209777458736, + 35.740592375243594 + ], + [ + 63.6328125, + 35.740592375243594 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.6328125, + 36.464023934752205 + ], + [ + 63.6328125, + 37.18745549426082 + ], + [ + 64.37209777458736, + 37.18745549426082 + ], + [ + 64.37209777458736, + 36.464023934752205 + ], + [ + 63.6328125, + 36.464023934752205 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.6328125, + 37.18745549426082 + ], + [ + 63.6328125, + 37.91088705376943 + ], + [ + 64.37209777458736, + 37.91088705376943 + ], + [ + 64.37209777458736, + 37.18745549426082 + ], + [ + 63.6328125, + 37.18745549426082 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.6328125, + 37.91088705376943 + ], + [ + 63.6328125, + 38.63431861327804 + ], + [ + 64.37209777458736, + 38.63431861327804 + ], + [ + 64.37209777458736, + 37.91088705376943 + ], + [ + 63.6328125, + 37.91088705376943 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.6328125, + 38.63431861327804 + ], + [ + 63.6328125, + 39.35775017278665 + ], + [ + 64.37209777458736, + 39.35775017278665 + ], + [ + 64.37209777458736, + 38.63431861327804 + ], + [ + 63.6328125, + 38.63431861327804 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.6328125, + 39.35775017278665 + ], + [ + 63.6328125, + 40.08118173229526 + ], + [ + 64.37209777458736, + 40.08118173229526 + ], + [ + 64.37209777458736, + 39.35775017278665 + ], + [ + 63.6328125, + 39.35775017278665 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.6328125, + 40.08118173229526 + ], + [ + 63.6328125, + 40.804613291803875 + ], + [ + 64.37209777458736, + 40.804613291803875 + ], + [ + 64.37209777458736, + 40.08118173229526 + ], + [ + 63.6328125, + 40.08118173229526 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.6328125, + 40.804613291803875 + ], + [ + 63.6328125, + 41.52804485131249 + ], + [ + 64.37209777458736, + 41.52804485131249 + ], + [ + 64.37209777458736, + 40.804613291803875 + ], + [ + 63.6328125, + 40.804613291803875 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.6328125, + 41.52804485131249 + ], + [ + 63.6328125, + 42.2514764108211 + ], + [ + 64.37209777458736, + 42.2514764108211 + ], + [ + 64.37209777458736, + 41.52804485131249 + ], + [ + 63.6328125, + 41.52804485131249 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.6328125, + 42.2514764108211 + ], + [ + 63.6328125, + 42.97490797032971 + ], + [ + 64.37209777458736, + 42.97490797032971 + ], + [ + 64.37209777458736, + 42.2514764108211 + ], + [ + 63.6328125, + 42.2514764108211 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.6328125, + 42.97490797032971 + ], + [ + 63.6328125, + 43.69833952983832 + ], + [ + 64.37209777458736, + 43.69833952983832 + ], + [ + 64.37209777458736, + 42.97490797032971 + ], + [ + 63.6328125, + 42.97490797032971 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.6328125, + 43.69833952983832 + ], + [ + 63.6328125, + 44.42177108934693 + ], + [ + 64.37209777458736, + 44.42177108934693 + ], + [ + 64.37209777458736, + 43.69833952983832 + ], + [ + 63.6328125, + 43.69833952983832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.6328125, + 44.42177108934693 + ], + [ + 63.6328125, + 45.145202648855545 + ], + [ + 64.37209777458736, + 45.145202648855545 + ], + [ + 64.37209777458736, + 44.42177108934693 + ], + [ + 63.6328125, + 44.42177108934693 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.6328125, + 45.145202648855545 + ], + [ + 63.6328125, + 45.868634208364156 + ], + [ + 64.37209777458736, + 45.868634208364156 + ], + [ + 64.37209777458736, + 45.145202648855545 + ], + [ + 63.6328125, + 45.145202648855545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.6328125, + 45.868634208364156 + ], + [ + 63.6328125, + 46.59206576787277 + ], + [ + 64.37209777458736, + 46.59206576787277 + ], + [ + 64.37209777458736, + 45.868634208364156 + ], + [ + 63.6328125, + 45.868634208364156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.6328125, + 46.59206576787277 + ], + [ + 63.6328125, + 47.31549732738138 + ], + [ + 64.37209777458736, + 47.31549732738138 + ], + [ + 64.37209777458736, + 46.59206576787277 + ], + [ + 63.6328125, + 46.59206576787277 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.6328125, + 47.31549732738138 + ], + [ + 63.6328125, + 48.03892888688999 + ], + [ + 64.37209777458736, + 48.03892888688999 + ], + [ + 64.37209777458736, + 47.31549732738138 + ], + [ + 63.6328125, + 47.31549732738138 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.37209777458736, + 11.867350911459308 + ], + [ + 64.37209777458736, + 12.590782470967923 + ], + [ + 65.11138304917472, + 12.590782470967923 + ], + [ + 65.11138304917472, + 11.867350911459308 + ], + [ + 64.37209777458736, + 11.867350911459308 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.37209777458736, + 12.590782470967923 + ], + [ + 64.37209777458736, + 13.314214030476538 + ], + [ + 65.11138304917472, + 13.314214030476538 + ], + [ + 65.11138304917472, + 12.590782470967923 + ], + [ + 64.37209777458736, + 12.590782470967923 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.37209777458736, + 13.314214030476538 + ], + [ + 64.37209777458736, + 14.037645589985154 + ], + [ + 65.11138304917472, + 14.037645589985154 + ], + [ + 65.11138304917472, + 13.314214030476538 + ], + [ + 64.37209777458736, + 13.314214030476538 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.37209777458736, + 14.037645589985154 + ], + [ + 64.37209777458736, + 14.761077149493769 + ], + [ + 65.11138304917472, + 14.761077149493769 + ], + [ + 65.11138304917472, + 14.037645589985154 + ], + [ + 64.37209777458736, + 14.037645589985154 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.37209777458736, + 14.761077149493769 + ], + [ + 64.37209777458736, + 15.484508709002384 + ], + [ + 65.11138304917472, + 15.484508709002384 + ], + [ + 65.11138304917472, + 14.761077149493769 + ], + [ + 64.37209777458736, + 14.761077149493769 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.37209777458736, + 15.484508709002384 + ], + [ + 64.37209777458736, + 16.207940268511 + ], + [ + 65.11138304917472, + 16.207940268511 + ], + [ + 65.11138304917472, + 15.484508709002384 + ], + [ + 64.37209777458736, + 15.484508709002384 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.37209777458736, + 16.207940268511 + ], + [ + 64.37209777458736, + 16.931371828019614 + ], + [ + 65.11138304917472, + 16.931371828019614 + ], + [ + 65.11138304917472, + 16.207940268511 + ], + [ + 64.37209777458736, + 16.207940268511 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.37209777458736, + 16.931371828019614 + ], + [ + 64.37209777458736, + 17.65480338752823 + ], + [ + 65.11138304917472, + 17.65480338752823 + ], + [ + 65.11138304917472, + 16.931371828019614 + ], + [ + 64.37209777458736, + 16.931371828019614 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.37209777458736, + 17.65480338752823 + ], + [ + 64.37209777458736, + 18.378234947036844 + ], + [ + 65.11138304917472, + 18.378234947036844 + ], + [ + 65.11138304917472, + 17.65480338752823 + ], + [ + 64.37209777458736, + 17.65480338752823 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.37209777458736, + 18.378234947036844 + ], + [ + 64.37209777458736, + 19.10166650654546 + ], + [ + 65.11138304917472, + 19.10166650654546 + ], + [ + 65.11138304917472, + 18.378234947036844 + ], + [ + 64.37209777458736, + 18.378234947036844 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.37209777458736, + 19.10166650654546 + ], + [ + 64.37209777458736, + 19.825098066054075 + ], + [ + 65.11138304917472, + 19.825098066054075 + ], + [ + 65.11138304917472, + 19.10166650654546 + ], + [ + 64.37209777458736, + 19.10166650654546 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.37209777458736, + 19.825098066054075 + ], + [ + 64.37209777458736, + 20.54852962556269 + ], + [ + 65.11138304917472, + 20.54852962556269 + ], + [ + 65.11138304917472, + 19.825098066054075 + ], + [ + 64.37209777458736, + 19.825098066054075 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.37209777458736, + 20.54852962556269 + ], + [ + 64.37209777458736, + 21.271961185071305 + ], + [ + 65.11138304917472, + 21.271961185071305 + ], + [ + 65.11138304917472, + 20.54852962556269 + ], + [ + 64.37209777458736, + 20.54852962556269 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.37209777458736, + 21.271961185071305 + ], + [ + 64.37209777458736, + 21.99539274457992 + ], + [ + 65.11138304917472, + 21.99539274457992 + ], + [ + 65.11138304917472, + 21.271961185071305 + ], + [ + 64.37209777458736, + 21.271961185071305 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.37209777458736, + 21.99539274457992 + ], + [ + 64.37209777458736, + 22.718824304088535 + ], + [ + 65.11138304917472, + 22.718824304088535 + ], + [ + 65.11138304917472, + 21.99539274457992 + ], + [ + 64.37209777458736, + 21.99539274457992 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.37209777458736, + 22.718824304088535 + ], + [ + 64.37209777458736, + 23.44225586359715 + ], + [ + 65.11138304917472, + 23.44225586359715 + ], + [ + 65.11138304917472, + 22.718824304088535 + ], + [ + 64.37209777458736, + 22.718824304088535 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.37209777458736, + 23.44225586359715 + ], + [ + 64.37209777458736, + 24.165687423105766 + ], + [ + 65.11138304917472, + 24.165687423105766 + ], + [ + 65.11138304917472, + 23.44225586359715 + ], + [ + 64.37209777458736, + 23.44225586359715 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.37209777458736, + 24.165687423105766 + ], + [ + 64.37209777458736, + 24.88911898261438 + ], + [ + 65.11138304917472, + 24.88911898261438 + ], + [ + 65.11138304917472, + 24.165687423105766 + ], + [ + 64.37209777458736, + 24.165687423105766 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.37209777458736, + 24.88911898261438 + ], + [ + 64.37209777458736, + 25.612550542122996 + ], + [ + 65.11138304917472, + 25.612550542122996 + ], + [ + 65.11138304917472, + 24.88911898261438 + ], + [ + 64.37209777458736, + 24.88911898261438 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.37209777458736, + 25.612550542122996 + ], + [ + 64.37209777458736, + 26.33598210163161 + ], + [ + 65.11138304917472, + 26.33598210163161 + ], + [ + 65.11138304917472, + 25.612550542122996 + ], + [ + 64.37209777458736, + 25.612550542122996 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.37209777458736, + 26.33598210163161 + ], + [ + 64.37209777458736, + 27.059413661140226 + ], + [ + 65.11138304917472, + 27.059413661140226 + ], + [ + 65.11138304917472, + 26.33598210163161 + ], + [ + 64.37209777458736, + 26.33598210163161 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.37209777458736, + 27.059413661140226 + ], + [ + 64.37209777458736, + 27.78284522064884 + ], + [ + 65.11138304917472, + 27.78284522064884 + ], + [ + 65.11138304917472, + 27.059413661140226 + ], + [ + 64.37209777458736, + 27.059413661140226 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.37209777458736, + 27.78284522064884 + ], + [ + 64.37209777458736, + 28.506276780157457 + ], + [ + 65.11138304917472, + 28.506276780157457 + ], + [ + 65.11138304917472, + 27.78284522064884 + ], + [ + 64.37209777458736, + 27.78284522064884 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.37209777458736, + 28.506276780157457 + ], + [ + 64.37209777458736, + 29.22970833966607 + ], + [ + 65.11138304917472, + 29.22970833966607 + ], + [ + 65.11138304917472, + 28.506276780157457 + ], + [ + 64.37209777458736, + 28.506276780157457 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.37209777458736, + 29.22970833966607 + ], + [ + 64.37209777458736, + 29.953139899174687 + ], + [ + 65.11138304917472, + 29.953139899174687 + ], + [ + 65.11138304917472, + 29.22970833966607 + ], + [ + 64.37209777458736, + 29.22970833966607 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.37209777458736, + 29.953139899174687 + ], + [ + 64.37209777458736, + 30.676571458683302 + ], + [ + 65.11138304917472, + 30.676571458683302 + ], + [ + 65.11138304917472, + 29.953139899174687 + ], + [ + 64.37209777458736, + 29.953139899174687 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.37209777458736, + 30.676571458683302 + ], + [ + 64.37209777458736, + 31.400003018191917 + ], + [ + 65.11138304917472, + 31.400003018191917 + ], + [ + 65.11138304917472, + 30.676571458683302 + ], + [ + 64.37209777458736, + 30.676571458683302 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.37209777458736, + 31.400003018191917 + ], + [ + 64.37209777458736, + 32.123434577700536 + ], + [ + 65.11138304917472, + 32.123434577700536 + ], + [ + 65.11138304917472, + 31.400003018191917 + ], + [ + 64.37209777458736, + 31.400003018191917 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.37209777458736, + 32.123434577700536 + ], + [ + 64.37209777458736, + 32.84686613720915 + ], + [ + 65.11138304917472, + 32.84686613720915 + ], + [ + 65.11138304917472, + 32.123434577700536 + ], + [ + 64.37209777458736, + 32.123434577700536 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.37209777458736, + 32.84686613720915 + ], + [ + 64.37209777458736, + 33.57029769671776 + ], + [ + 65.11138304917472, + 33.57029769671776 + ], + [ + 65.11138304917472, + 32.84686613720915 + ], + [ + 64.37209777458736, + 32.84686613720915 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.37209777458736, + 33.57029769671776 + ], + [ + 64.37209777458736, + 34.29372925622637 + ], + [ + 65.11138304917472, + 34.29372925622637 + ], + [ + 65.11138304917472, + 33.57029769671776 + ], + [ + 64.37209777458736, + 33.57029769671776 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.37209777458736, + 34.29372925622637 + ], + [ + 64.37209777458736, + 35.01716081573498 + ], + [ + 65.11138304917472, + 35.01716081573498 + ], + [ + 65.11138304917472, + 34.29372925622637 + ], + [ + 64.37209777458736, + 34.29372925622637 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.37209777458736, + 35.01716081573498 + ], + [ + 64.37209777458736, + 35.740592375243594 + ], + [ + 65.11138304917472, + 35.740592375243594 + ], + [ + 65.11138304917472, + 35.01716081573498 + ], + [ + 64.37209777458736, + 35.01716081573498 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.37209777458736, + 35.740592375243594 + ], + [ + 64.37209777458736, + 36.464023934752205 + ], + [ + 65.11138304917472, + 36.464023934752205 + ], + [ + 65.11138304917472, + 35.740592375243594 + ], + [ + 64.37209777458736, + 35.740592375243594 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.37209777458736, + 36.464023934752205 + ], + [ + 64.37209777458736, + 37.18745549426082 + ], + [ + 65.11138304917472, + 37.18745549426082 + ], + [ + 65.11138304917472, + 36.464023934752205 + ], + [ + 64.37209777458736, + 36.464023934752205 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.37209777458736, + 37.18745549426082 + ], + [ + 64.37209777458736, + 37.91088705376943 + ], + [ + 65.11138304917472, + 37.91088705376943 + ], + [ + 65.11138304917472, + 37.18745549426082 + ], + [ + 64.37209777458736, + 37.18745549426082 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.37209777458736, + 37.91088705376943 + ], + [ + 64.37209777458736, + 38.63431861327804 + ], + [ + 65.11138304917472, + 38.63431861327804 + ], + [ + 65.11138304917472, + 37.91088705376943 + ], + [ + 64.37209777458736, + 37.91088705376943 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.37209777458736, + 38.63431861327804 + ], + [ + 64.37209777458736, + 39.35775017278665 + ], + [ + 65.11138304917472, + 39.35775017278665 + ], + [ + 65.11138304917472, + 38.63431861327804 + ], + [ + 64.37209777458736, + 38.63431861327804 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.37209777458736, + 39.35775017278665 + ], + [ + 64.37209777458736, + 40.08118173229526 + ], + [ + 65.11138304917472, + 40.08118173229526 + ], + [ + 65.11138304917472, + 39.35775017278665 + ], + [ + 64.37209777458736, + 39.35775017278665 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.37209777458736, + 40.08118173229526 + ], + [ + 64.37209777458736, + 40.804613291803875 + ], + [ + 65.11138304917472, + 40.804613291803875 + ], + [ + 65.11138304917472, + 40.08118173229526 + ], + [ + 64.37209777458736, + 40.08118173229526 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.37209777458736, + 40.804613291803875 + ], + [ + 64.37209777458736, + 41.52804485131249 + ], + [ + 65.11138304917472, + 41.52804485131249 + ], + [ + 65.11138304917472, + 40.804613291803875 + ], + [ + 64.37209777458736, + 40.804613291803875 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.37209777458736, + 41.52804485131249 + ], + [ + 64.37209777458736, + 42.2514764108211 + ], + [ + 65.11138304917472, + 42.2514764108211 + ], + [ + 65.11138304917472, + 41.52804485131249 + ], + [ + 64.37209777458736, + 41.52804485131249 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.37209777458736, + 42.2514764108211 + ], + [ + 64.37209777458736, + 42.97490797032971 + ], + [ + 65.11138304917472, + 42.97490797032971 + ], + [ + 65.11138304917472, + 42.2514764108211 + ], + [ + 64.37209777458736, + 42.2514764108211 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.37209777458736, + 42.97490797032971 + ], + [ + 64.37209777458736, + 43.69833952983832 + ], + [ + 65.11138304917472, + 43.69833952983832 + ], + [ + 65.11138304917472, + 42.97490797032971 + ], + [ + 64.37209777458736, + 42.97490797032971 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.37209777458736, + 43.69833952983832 + ], + [ + 64.37209777458736, + 44.42177108934693 + ], + [ + 65.11138304917472, + 44.42177108934693 + ], + [ + 65.11138304917472, + 43.69833952983832 + ], + [ + 64.37209777458736, + 43.69833952983832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.37209777458736, + 44.42177108934693 + ], + [ + 64.37209777458736, + 45.145202648855545 + ], + [ + 65.11138304917472, + 45.145202648855545 + ], + [ + 65.11138304917472, + 44.42177108934693 + ], + [ + 64.37209777458736, + 44.42177108934693 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.37209777458736, + 45.145202648855545 + ], + [ + 64.37209777458736, + 45.868634208364156 + ], + [ + 65.11138304917472, + 45.868634208364156 + ], + [ + 65.11138304917472, + 45.145202648855545 + ], + [ + 64.37209777458736, + 45.145202648855545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.37209777458736, + 45.868634208364156 + ], + [ + 64.37209777458736, + 46.59206576787277 + ], + [ + 65.11138304917472, + 46.59206576787277 + ], + [ + 65.11138304917472, + 45.868634208364156 + ], + [ + 64.37209777458736, + 45.868634208364156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.37209777458736, + 46.59206576787277 + ], + [ + 64.37209777458736, + 47.31549732738138 + ], + [ + 65.11138304917472, + 47.31549732738138 + ], + [ + 65.11138304917472, + 46.59206576787277 + ], + [ + 64.37209777458736, + 46.59206576787277 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.37209777458736, + 47.31549732738138 + ], + [ + 64.37209777458736, + 48.03892888688999 + ], + [ + 65.11138304917472, + 48.03892888688999 + ], + [ + 65.11138304917472, + 47.31549732738138 + ], + [ + 64.37209777458736, + 47.31549732738138 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.11138304917472, + 11.867350911459308 + ], + [ + 65.11138304917472, + 12.590782470967923 + ], + [ + 65.85066832376208, + 12.590782470967923 + ], + [ + 65.85066832376208, + 11.867350911459308 + ], + [ + 65.11138304917472, + 11.867350911459308 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.11138304917472, + 12.590782470967923 + ], + [ + 65.11138304917472, + 13.314214030476538 + ], + [ + 65.85066832376208, + 13.314214030476538 + ], + [ + 65.85066832376208, + 12.590782470967923 + ], + [ + 65.11138304917472, + 12.590782470967923 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.11138304917472, + 13.314214030476538 + ], + [ + 65.11138304917472, + 14.037645589985154 + ], + [ + 65.85066832376208, + 14.037645589985154 + ], + [ + 65.85066832376208, + 13.314214030476538 + ], + [ + 65.11138304917472, + 13.314214030476538 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.11138304917472, + 14.037645589985154 + ], + [ + 65.11138304917472, + 14.761077149493769 + ], + [ + 65.85066832376208, + 14.761077149493769 + ], + [ + 65.85066832376208, + 14.037645589985154 + ], + [ + 65.11138304917472, + 14.037645589985154 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.11138304917472, + 14.761077149493769 + ], + [ + 65.11138304917472, + 15.484508709002384 + ], + [ + 65.85066832376208, + 15.484508709002384 + ], + [ + 65.85066832376208, + 14.761077149493769 + ], + [ + 65.11138304917472, + 14.761077149493769 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.11138304917472, + 15.484508709002384 + ], + [ + 65.11138304917472, + 16.207940268511 + ], + [ + 65.85066832376208, + 16.207940268511 + ], + [ + 65.85066832376208, + 15.484508709002384 + ], + [ + 65.11138304917472, + 15.484508709002384 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.11138304917472, + 16.207940268511 + ], + [ + 65.11138304917472, + 16.931371828019614 + ], + [ + 65.85066832376208, + 16.931371828019614 + ], + [ + 65.85066832376208, + 16.207940268511 + ], + [ + 65.11138304917472, + 16.207940268511 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.11138304917472, + 16.931371828019614 + ], + [ + 65.11138304917472, + 17.65480338752823 + ], + [ + 65.85066832376208, + 17.65480338752823 + ], + [ + 65.85066832376208, + 16.931371828019614 + ], + [ + 65.11138304917472, + 16.931371828019614 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.11138304917472, + 17.65480338752823 + ], + [ + 65.11138304917472, + 18.378234947036844 + ], + [ + 65.85066832376208, + 18.378234947036844 + ], + [ + 65.85066832376208, + 17.65480338752823 + ], + [ + 65.11138304917472, + 17.65480338752823 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.11138304917472, + 18.378234947036844 + ], + [ + 65.11138304917472, + 19.10166650654546 + ], + [ + 65.85066832376208, + 19.10166650654546 + ], + [ + 65.85066832376208, + 18.378234947036844 + ], + [ + 65.11138304917472, + 18.378234947036844 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.11138304917472, + 19.10166650654546 + ], + [ + 65.11138304917472, + 19.825098066054075 + ], + [ + 65.85066832376208, + 19.825098066054075 + ], + [ + 65.85066832376208, + 19.10166650654546 + ], + [ + 65.11138304917472, + 19.10166650654546 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.11138304917472, + 19.825098066054075 + ], + [ + 65.11138304917472, + 20.54852962556269 + ], + [ + 65.85066832376208, + 20.54852962556269 + ], + [ + 65.85066832376208, + 19.825098066054075 + ], + [ + 65.11138304917472, + 19.825098066054075 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.11138304917472, + 20.54852962556269 + ], + [ + 65.11138304917472, + 21.271961185071305 + ], + [ + 65.85066832376208, + 21.271961185071305 + ], + [ + 65.85066832376208, + 20.54852962556269 + ], + [ + 65.11138304917472, + 20.54852962556269 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.11138304917472, + 21.271961185071305 + ], + [ + 65.11138304917472, + 21.99539274457992 + ], + [ + 65.85066832376208, + 21.99539274457992 + ], + [ + 65.85066832376208, + 21.271961185071305 + ], + [ + 65.11138304917472, + 21.271961185071305 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.11138304917472, + 21.99539274457992 + ], + [ + 65.11138304917472, + 22.718824304088535 + ], + [ + 65.85066832376208, + 22.718824304088535 + ], + [ + 65.85066832376208, + 21.99539274457992 + ], + [ + 65.11138304917472, + 21.99539274457992 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.11138304917472, + 22.718824304088535 + ], + [ + 65.11138304917472, + 23.44225586359715 + ], + [ + 65.85066832376208, + 23.44225586359715 + ], + [ + 65.85066832376208, + 22.718824304088535 + ], + [ + 65.11138304917472, + 22.718824304088535 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.11138304917472, + 23.44225586359715 + ], + [ + 65.11138304917472, + 24.165687423105766 + ], + [ + 65.85066832376208, + 24.165687423105766 + ], + [ + 65.85066832376208, + 23.44225586359715 + ], + [ + 65.11138304917472, + 23.44225586359715 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.11138304917472, + 24.165687423105766 + ], + [ + 65.11138304917472, + 24.88911898261438 + ], + [ + 65.85066832376208, + 24.88911898261438 + ], + [ + 65.85066832376208, + 24.165687423105766 + ], + [ + 65.11138304917472, + 24.165687423105766 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.11138304917472, + 24.88911898261438 + ], + [ + 65.11138304917472, + 25.612550542122996 + ], + [ + 65.85066832376208, + 25.612550542122996 + ], + [ + 65.85066832376208, + 24.88911898261438 + ], + [ + 65.11138304917472, + 24.88911898261438 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.11138304917472, + 25.612550542122996 + ], + [ + 65.11138304917472, + 26.33598210163161 + ], + [ + 65.85066832376208, + 26.33598210163161 + ], + [ + 65.85066832376208, + 25.612550542122996 + ], + [ + 65.11138304917472, + 25.612550542122996 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.11138304917472, + 26.33598210163161 + ], + [ + 65.11138304917472, + 27.059413661140226 + ], + [ + 65.85066832376208, + 27.059413661140226 + ], + [ + 65.85066832376208, + 26.33598210163161 + ], + [ + 65.11138304917472, + 26.33598210163161 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.11138304917472, + 27.059413661140226 + ], + [ + 65.11138304917472, + 27.78284522064884 + ], + [ + 65.85066832376208, + 27.78284522064884 + ], + [ + 65.85066832376208, + 27.059413661140226 + ], + [ + 65.11138304917472, + 27.059413661140226 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.11138304917472, + 27.78284522064884 + ], + [ + 65.11138304917472, + 28.506276780157457 + ], + [ + 65.85066832376208, + 28.506276780157457 + ], + [ + 65.85066832376208, + 27.78284522064884 + ], + [ + 65.11138304917472, + 27.78284522064884 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.11138304917472, + 28.506276780157457 + ], + [ + 65.11138304917472, + 29.22970833966607 + ], + [ + 65.85066832376208, + 29.22970833966607 + ], + [ + 65.85066832376208, + 28.506276780157457 + ], + [ + 65.11138304917472, + 28.506276780157457 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.11138304917472, + 29.22970833966607 + ], + [ + 65.11138304917472, + 29.953139899174687 + ], + [ + 65.85066832376208, + 29.953139899174687 + ], + [ + 65.85066832376208, + 29.22970833966607 + ], + [ + 65.11138304917472, + 29.22970833966607 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.11138304917472, + 29.953139899174687 + ], + [ + 65.11138304917472, + 30.676571458683302 + ], + [ + 65.85066832376208, + 30.676571458683302 + ], + [ + 65.85066832376208, + 29.953139899174687 + ], + [ + 65.11138304917472, + 29.953139899174687 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.11138304917472, + 30.676571458683302 + ], + [ + 65.11138304917472, + 31.400003018191917 + ], + [ + 65.85066832376208, + 31.400003018191917 + ], + [ + 65.85066832376208, + 30.676571458683302 + ], + [ + 65.11138304917472, + 30.676571458683302 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.11138304917472, + 31.400003018191917 + ], + [ + 65.11138304917472, + 32.123434577700536 + ], + [ + 65.85066832376208, + 32.123434577700536 + ], + [ + 65.85066832376208, + 31.400003018191917 + ], + [ + 65.11138304917472, + 31.400003018191917 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.11138304917472, + 32.123434577700536 + ], + [ + 65.11138304917472, + 32.84686613720915 + ], + [ + 65.85066832376208, + 32.84686613720915 + ], + [ + 65.85066832376208, + 32.123434577700536 + ], + [ + 65.11138304917472, + 32.123434577700536 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.11138304917472, + 32.84686613720915 + ], + [ + 65.11138304917472, + 33.57029769671776 + ], + [ + 65.85066832376208, + 33.57029769671776 + ], + [ + 65.85066832376208, + 32.84686613720915 + ], + [ + 65.11138304917472, + 32.84686613720915 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.11138304917472, + 33.57029769671776 + ], + [ + 65.11138304917472, + 34.29372925622637 + ], + [ + 65.85066832376208, + 34.29372925622637 + ], + [ + 65.85066832376208, + 33.57029769671776 + ], + [ + 65.11138304917472, + 33.57029769671776 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.11138304917472, + 34.29372925622637 + ], + [ + 65.11138304917472, + 35.01716081573498 + ], + [ + 65.85066832376208, + 35.01716081573498 + ], + [ + 65.85066832376208, + 34.29372925622637 + ], + [ + 65.11138304917472, + 34.29372925622637 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.11138304917472, + 35.01716081573498 + ], + [ + 65.11138304917472, + 35.740592375243594 + ], + [ + 65.85066832376208, + 35.740592375243594 + ], + [ + 65.85066832376208, + 35.01716081573498 + ], + [ + 65.11138304917472, + 35.01716081573498 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.11138304917472, + 35.740592375243594 + ], + [ + 65.11138304917472, + 36.464023934752205 + ], + [ + 65.85066832376208, + 36.464023934752205 + ], + [ + 65.85066832376208, + 35.740592375243594 + ], + [ + 65.11138304917472, + 35.740592375243594 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.11138304917472, + 36.464023934752205 + ], + [ + 65.11138304917472, + 37.18745549426082 + ], + [ + 65.85066832376208, + 37.18745549426082 + ], + [ + 65.85066832376208, + 36.464023934752205 + ], + [ + 65.11138304917472, + 36.464023934752205 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.11138304917472, + 37.18745549426082 + ], + [ + 65.11138304917472, + 37.91088705376943 + ], + [ + 65.85066832376208, + 37.91088705376943 + ], + [ + 65.85066832376208, + 37.18745549426082 + ], + [ + 65.11138304917472, + 37.18745549426082 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.11138304917472, + 37.91088705376943 + ], + [ + 65.11138304917472, + 38.63431861327804 + ], + [ + 65.85066832376208, + 38.63431861327804 + ], + [ + 65.85066832376208, + 37.91088705376943 + ], + [ + 65.11138304917472, + 37.91088705376943 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.11138304917472, + 38.63431861327804 + ], + [ + 65.11138304917472, + 39.35775017278665 + ], + [ + 65.85066832376208, + 39.35775017278665 + ], + [ + 65.85066832376208, + 38.63431861327804 + ], + [ + 65.11138304917472, + 38.63431861327804 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.11138304917472, + 39.35775017278665 + ], + [ + 65.11138304917472, + 40.08118173229526 + ], + [ + 65.85066832376208, + 40.08118173229526 + ], + [ + 65.85066832376208, + 39.35775017278665 + ], + [ + 65.11138304917472, + 39.35775017278665 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.11138304917472, + 40.08118173229526 + ], + [ + 65.11138304917472, + 40.804613291803875 + ], + [ + 65.85066832376208, + 40.804613291803875 + ], + [ + 65.85066832376208, + 40.08118173229526 + ], + [ + 65.11138304917472, + 40.08118173229526 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.11138304917472, + 40.804613291803875 + ], + [ + 65.11138304917472, + 41.52804485131249 + ], + [ + 65.85066832376208, + 41.52804485131249 + ], + [ + 65.85066832376208, + 40.804613291803875 + ], + [ + 65.11138304917472, + 40.804613291803875 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.11138304917472, + 41.52804485131249 + ], + [ + 65.11138304917472, + 42.2514764108211 + ], + [ + 65.85066832376208, + 42.2514764108211 + ], + [ + 65.85066832376208, + 41.52804485131249 + ], + [ + 65.11138304917472, + 41.52804485131249 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.11138304917472, + 42.2514764108211 + ], + [ + 65.11138304917472, + 42.97490797032971 + ], + [ + 65.85066832376208, + 42.97490797032971 + ], + [ + 65.85066832376208, + 42.2514764108211 + ], + [ + 65.11138304917472, + 42.2514764108211 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.11138304917472, + 42.97490797032971 + ], + [ + 65.11138304917472, + 43.69833952983832 + ], + [ + 65.85066832376208, + 43.69833952983832 + ], + [ + 65.85066832376208, + 42.97490797032971 + ], + [ + 65.11138304917472, + 42.97490797032971 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.11138304917472, + 43.69833952983832 + ], + [ + 65.11138304917472, + 44.42177108934693 + ], + [ + 65.85066832376208, + 44.42177108934693 + ], + [ + 65.85066832376208, + 43.69833952983832 + ], + [ + 65.11138304917472, + 43.69833952983832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.11138304917472, + 44.42177108934693 + ], + [ + 65.11138304917472, + 45.145202648855545 + ], + [ + 65.85066832376208, + 45.145202648855545 + ], + [ + 65.85066832376208, + 44.42177108934693 + ], + [ + 65.11138304917472, + 44.42177108934693 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.11138304917472, + 45.145202648855545 + ], + [ + 65.11138304917472, + 45.868634208364156 + ], + [ + 65.85066832376208, + 45.868634208364156 + ], + [ + 65.85066832376208, + 45.145202648855545 + ], + [ + 65.11138304917472, + 45.145202648855545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.11138304917472, + 45.868634208364156 + ], + [ + 65.11138304917472, + 46.59206576787277 + ], + [ + 65.85066832376208, + 46.59206576787277 + ], + [ + 65.85066832376208, + 45.868634208364156 + ], + [ + 65.11138304917472, + 45.868634208364156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.11138304917472, + 46.59206576787277 + ], + [ + 65.11138304917472, + 47.31549732738138 + ], + [ + 65.85066832376208, + 47.31549732738138 + ], + [ + 65.85066832376208, + 46.59206576787277 + ], + [ + 65.11138304917472, + 46.59206576787277 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.11138304917472, + 47.31549732738138 + ], + [ + 65.11138304917472, + 48.03892888688999 + ], + [ + 65.85066832376208, + 48.03892888688999 + ], + [ + 65.85066832376208, + 47.31549732738138 + ], + [ + 65.11138304917472, + 47.31549732738138 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.85066832376208, + 11.867350911459308 + ], + [ + 65.85066832376208, + 12.590782470967923 + ], + [ + 66.58995359834944, + 12.590782470967923 + ], + [ + 66.58995359834944, + 11.867350911459308 + ], + [ + 65.85066832376208, + 11.867350911459308 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.85066832376208, + 12.590782470967923 + ], + [ + 65.85066832376208, + 13.314214030476538 + ], + [ + 66.58995359834944, + 13.314214030476538 + ], + [ + 66.58995359834944, + 12.590782470967923 + ], + [ + 65.85066832376208, + 12.590782470967923 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.85066832376208, + 13.314214030476538 + ], + [ + 65.85066832376208, + 14.037645589985154 + ], + [ + 66.58995359834944, + 14.037645589985154 + ], + [ + 66.58995359834944, + 13.314214030476538 + ], + [ + 65.85066832376208, + 13.314214030476538 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.85066832376208, + 14.037645589985154 + ], + [ + 65.85066832376208, + 14.761077149493769 + ], + [ + 66.58995359834944, + 14.761077149493769 + ], + [ + 66.58995359834944, + 14.037645589985154 + ], + [ + 65.85066832376208, + 14.037645589985154 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.85066832376208, + 14.761077149493769 + ], + [ + 65.85066832376208, + 15.484508709002384 + ], + [ + 66.58995359834944, + 15.484508709002384 + ], + [ + 66.58995359834944, + 14.761077149493769 + ], + [ + 65.85066832376208, + 14.761077149493769 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.85066832376208, + 15.484508709002384 + ], + [ + 65.85066832376208, + 16.207940268511 + ], + [ + 66.58995359834944, + 16.207940268511 + ], + [ + 66.58995359834944, + 15.484508709002384 + ], + [ + 65.85066832376208, + 15.484508709002384 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.85066832376208, + 16.207940268511 + ], + [ + 65.85066832376208, + 16.931371828019614 + ], + [ + 66.58995359834944, + 16.931371828019614 + ], + [ + 66.58995359834944, + 16.207940268511 + ], + [ + 65.85066832376208, + 16.207940268511 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.85066832376208, + 16.931371828019614 + ], + [ + 65.85066832376208, + 17.65480338752823 + ], + [ + 66.58995359834944, + 17.65480338752823 + ], + [ + 66.58995359834944, + 16.931371828019614 + ], + [ + 65.85066832376208, + 16.931371828019614 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.85066832376208, + 17.65480338752823 + ], + [ + 65.85066832376208, + 18.378234947036844 + ], + [ + 66.58995359834944, + 18.378234947036844 + ], + [ + 66.58995359834944, + 17.65480338752823 + ], + [ + 65.85066832376208, + 17.65480338752823 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.85066832376208, + 18.378234947036844 + ], + [ + 65.85066832376208, + 19.10166650654546 + ], + [ + 66.58995359834944, + 19.10166650654546 + ], + [ + 66.58995359834944, + 18.378234947036844 + ], + [ + 65.85066832376208, + 18.378234947036844 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.85066832376208, + 19.10166650654546 + ], + [ + 65.85066832376208, + 19.825098066054075 + ], + [ + 66.58995359834944, + 19.825098066054075 + ], + [ + 66.58995359834944, + 19.10166650654546 + ], + [ + 65.85066832376208, + 19.10166650654546 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.85066832376208, + 19.825098066054075 + ], + [ + 65.85066832376208, + 20.54852962556269 + ], + [ + 66.58995359834944, + 20.54852962556269 + ], + [ + 66.58995359834944, + 19.825098066054075 + ], + [ + 65.85066832376208, + 19.825098066054075 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.85066832376208, + 20.54852962556269 + ], + [ + 65.85066832376208, + 21.271961185071305 + ], + [ + 66.58995359834944, + 21.271961185071305 + ], + [ + 66.58995359834944, + 20.54852962556269 + ], + [ + 65.85066832376208, + 20.54852962556269 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.85066832376208, + 21.271961185071305 + ], + [ + 65.85066832376208, + 21.99539274457992 + ], + [ + 66.58995359834944, + 21.99539274457992 + ], + [ + 66.58995359834944, + 21.271961185071305 + ], + [ + 65.85066832376208, + 21.271961185071305 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.85066832376208, + 21.99539274457992 + ], + [ + 65.85066832376208, + 22.718824304088535 + ], + [ + 66.58995359834944, + 22.718824304088535 + ], + [ + 66.58995359834944, + 21.99539274457992 + ], + [ + 65.85066832376208, + 21.99539274457992 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.85066832376208, + 22.718824304088535 + ], + [ + 65.85066832376208, + 23.44225586359715 + ], + [ + 66.58995359834944, + 23.44225586359715 + ], + [ + 66.58995359834944, + 22.718824304088535 + ], + [ + 65.85066832376208, + 22.718824304088535 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.85066832376208, + 23.44225586359715 + ], + [ + 65.85066832376208, + 24.165687423105766 + ], + [ + 66.58995359834944, + 24.165687423105766 + ], + [ + 66.58995359834944, + 23.44225586359715 + ], + [ + 65.85066832376208, + 23.44225586359715 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.85066832376208, + 24.165687423105766 + ], + [ + 65.85066832376208, + 24.88911898261438 + ], + [ + 66.58995359834944, + 24.88911898261438 + ], + [ + 66.58995359834944, + 24.165687423105766 + ], + [ + 65.85066832376208, + 24.165687423105766 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.85066832376208, + 24.88911898261438 + ], + [ + 65.85066832376208, + 25.612550542122996 + ], + [ + 66.58995359834944, + 25.612550542122996 + ], + [ + 66.58995359834944, + 24.88911898261438 + ], + [ + 65.85066832376208, + 24.88911898261438 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.85066832376208, + 25.612550542122996 + ], + [ + 65.85066832376208, + 26.33598210163161 + ], + [ + 66.58995359834944, + 26.33598210163161 + ], + [ + 66.58995359834944, + 25.612550542122996 + ], + [ + 65.85066832376208, + 25.612550542122996 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.85066832376208, + 26.33598210163161 + ], + [ + 65.85066832376208, + 27.059413661140226 + ], + [ + 66.58995359834944, + 27.059413661140226 + ], + [ + 66.58995359834944, + 26.33598210163161 + ], + [ + 65.85066832376208, + 26.33598210163161 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.85066832376208, + 27.059413661140226 + ], + [ + 65.85066832376208, + 27.78284522064884 + ], + [ + 66.58995359834944, + 27.78284522064884 + ], + [ + 66.58995359834944, + 27.059413661140226 + ], + [ + 65.85066832376208, + 27.059413661140226 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.85066832376208, + 27.78284522064884 + ], + [ + 65.85066832376208, + 28.506276780157457 + ], + [ + 66.58995359834944, + 28.506276780157457 + ], + [ + 66.58995359834944, + 27.78284522064884 + ], + [ + 65.85066832376208, + 27.78284522064884 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.85066832376208, + 28.506276780157457 + ], + [ + 65.85066832376208, + 29.22970833966607 + ], + [ + 66.58995359834944, + 29.22970833966607 + ], + [ + 66.58995359834944, + 28.506276780157457 + ], + [ + 65.85066832376208, + 28.506276780157457 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.85066832376208, + 29.22970833966607 + ], + [ + 65.85066832376208, + 29.953139899174687 + ], + [ + 66.58995359834944, + 29.953139899174687 + ], + [ + 66.58995359834944, + 29.22970833966607 + ], + [ + 65.85066832376208, + 29.22970833966607 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.85066832376208, + 29.953139899174687 + ], + [ + 65.85066832376208, + 30.676571458683302 + ], + [ + 66.58995359834944, + 30.676571458683302 + ], + [ + 66.58995359834944, + 29.953139899174687 + ], + [ + 65.85066832376208, + 29.953139899174687 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.85066832376208, + 30.676571458683302 + ], + [ + 65.85066832376208, + 31.400003018191917 + ], + [ + 66.58995359834944, + 31.400003018191917 + ], + [ + 66.58995359834944, + 30.676571458683302 + ], + [ + 65.85066832376208, + 30.676571458683302 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.85066832376208, + 31.400003018191917 + ], + [ + 65.85066832376208, + 32.123434577700536 + ], + [ + 66.58995359834944, + 32.123434577700536 + ], + [ + 66.58995359834944, + 31.400003018191917 + ], + [ + 65.85066832376208, + 31.400003018191917 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.85066832376208, + 32.123434577700536 + ], + [ + 65.85066832376208, + 32.84686613720915 + ], + [ + 66.58995359834944, + 32.84686613720915 + ], + [ + 66.58995359834944, + 32.123434577700536 + ], + [ + 65.85066832376208, + 32.123434577700536 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.85066832376208, + 32.84686613720915 + ], + [ + 65.85066832376208, + 33.57029769671776 + ], + [ + 66.58995359834944, + 33.57029769671776 + ], + [ + 66.58995359834944, + 32.84686613720915 + ], + [ + 65.85066832376208, + 32.84686613720915 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.85066832376208, + 33.57029769671776 + ], + [ + 65.85066832376208, + 34.29372925622637 + ], + [ + 66.58995359834944, + 34.29372925622637 + ], + [ + 66.58995359834944, + 33.57029769671776 + ], + [ + 65.85066832376208, + 33.57029769671776 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.85066832376208, + 34.29372925622637 + ], + [ + 65.85066832376208, + 35.01716081573498 + ], + [ + 66.58995359834944, + 35.01716081573498 + ], + [ + 66.58995359834944, + 34.29372925622637 + ], + [ + 65.85066832376208, + 34.29372925622637 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.85066832376208, + 35.01716081573498 + ], + [ + 65.85066832376208, + 35.740592375243594 + ], + [ + 66.58995359834944, + 35.740592375243594 + ], + [ + 66.58995359834944, + 35.01716081573498 + ], + [ + 65.85066832376208, + 35.01716081573498 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.85066832376208, + 35.740592375243594 + ], + [ + 65.85066832376208, + 36.464023934752205 + ], + [ + 66.58995359834944, + 36.464023934752205 + ], + [ + 66.58995359834944, + 35.740592375243594 + ], + [ + 65.85066832376208, + 35.740592375243594 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.85066832376208, + 36.464023934752205 + ], + [ + 65.85066832376208, + 37.18745549426082 + ], + [ + 66.58995359834944, + 37.18745549426082 + ], + [ + 66.58995359834944, + 36.464023934752205 + ], + [ + 65.85066832376208, + 36.464023934752205 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.85066832376208, + 37.18745549426082 + ], + [ + 65.85066832376208, + 37.91088705376943 + ], + [ + 66.58995359834944, + 37.91088705376943 + ], + [ + 66.58995359834944, + 37.18745549426082 + ], + [ + 65.85066832376208, + 37.18745549426082 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.85066832376208, + 37.91088705376943 + ], + [ + 65.85066832376208, + 38.63431861327804 + ], + [ + 66.58995359834944, + 38.63431861327804 + ], + [ + 66.58995359834944, + 37.91088705376943 + ], + [ + 65.85066832376208, + 37.91088705376943 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.85066832376208, + 38.63431861327804 + ], + [ + 65.85066832376208, + 39.35775017278665 + ], + [ + 66.58995359834944, + 39.35775017278665 + ], + [ + 66.58995359834944, + 38.63431861327804 + ], + [ + 65.85066832376208, + 38.63431861327804 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.85066832376208, + 39.35775017278665 + ], + [ + 65.85066832376208, + 40.08118173229526 + ], + [ + 66.58995359834944, + 40.08118173229526 + ], + [ + 66.58995359834944, + 39.35775017278665 + ], + [ + 65.85066832376208, + 39.35775017278665 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.85066832376208, + 40.08118173229526 + ], + [ + 65.85066832376208, + 40.804613291803875 + ], + [ + 66.58995359834944, + 40.804613291803875 + ], + [ + 66.58995359834944, + 40.08118173229526 + ], + [ + 65.85066832376208, + 40.08118173229526 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.85066832376208, + 40.804613291803875 + ], + [ + 65.85066832376208, + 41.52804485131249 + ], + [ + 66.58995359834944, + 41.52804485131249 + ], + [ + 66.58995359834944, + 40.804613291803875 + ], + [ + 65.85066832376208, + 40.804613291803875 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.85066832376208, + 41.52804485131249 + ], + [ + 65.85066832376208, + 42.2514764108211 + ], + [ + 66.58995359834944, + 42.2514764108211 + ], + [ + 66.58995359834944, + 41.52804485131249 + ], + [ + 65.85066832376208, + 41.52804485131249 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.85066832376208, + 42.2514764108211 + ], + [ + 65.85066832376208, + 42.97490797032971 + ], + [ + 66.58995359834944, + 42.97490797032971 + ], + [ + 66.58995359834944, + 42.2514764108211 + ], + [ + 65.85066832376208, + 42.2514764108211 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.85066832376208, + 42.97490797032971 + ], + [ + 65.85066832376208, + 43.69833952983832 + ], + [ + 66.58995359834944, + 43.69833952983832 + ], + [ + 66.58995359834944, + 42.97490797032971 + ], + [ + 65.85066832376208, + 42.97490797032971 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.85066832376208, + 43.69833952983832 + ], + [ + 65.85066832376208, + 44.42177108934693 + ], + [ + 66.58995359834944, + 44.42177108934693 + ], + [ + 66.58995359834944, + 43.69833952983832 + ], + [ + 65.85066832376208, + 43.69833952983832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.85066832376208, + 44.42177108934693 + ], + [ + 65.85066832376208, + 45.145202648855545 + ], + [ + 66.58995359834944, + 45.145202648855545 + ], + [ + 66.58995359834944, + 44.42177108934693 + ], + [ + 65.85066832376208, + 44.42177108934693 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.85066832376208, + 45.145202648855545 + ], + [ + 65.85066832376208, + 45.868634208364156 + ], + [ + 66.58995359834944, + 45.868634208364156 + ], + [ + 66.58995359834944, + 45.145202648855545 + ], + [ + 65.85066832376208, + 45.145202648855545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.85066832376208, + 45.868634208364156 + ], + [ + 65.85066832376208, + 46.59206576787277 + ], + [ + 66.58995359834944, + 46.59206576787277 + ], + [ + 66.58995359834944, + 45.868634208364156 + ], + [ + 65.85066832376208, + 45.868634208364156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.85066832376208, + 46.59206576787277 + ], + [ + 65.85066832376208, + 47.31549732738138 + ], + [ + 66.58995359834944, + 47.31549732738138 + ], + [ + 66.58995359834944, + 46.59206576787277 + ], + [ + 65.85066832376208, + 46.59206576787277 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.85066832376208, + 47.31549732738138 + ], + [ + 65.85066832376208, + 48.03892888688999 + ], + [ + 66.58995359834944, + 48.03892888688999 + ], + [ + 66.58995359834944, + 47.31549732738138 + ], + [ + 65.85066832376208, + 47.31549732738138 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.58995359834944, + 11.867350911459308 + ], + [ + 66.58995359834944, + 12.590782470967923 + ], + [ + 67.3292388729368, + 12.590782470967923 + ], + [ + 67.3292388729368, + 11.867350911459308 + ], + [ + 66.58995359834944, + 11.867350911459308 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.58995359834944, + 12.590782470967923 + ], + [ + 66.58995359834944, + 13.314214030476538 + ], + [ + 67.3292388729368, + 13.314214030476538 + ], + [ + 67.3292388729368, + 12.590782470967923 + ], + [ + 66.58995359834944, + 12.590782470967923 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.58995359834944, + 13.314214030476538 + ], + [ + 66.58995359834944, + 14.037645589985154 + ], + [ + 67.3292388729368, + 14.037645589985154 + ], + [ + 67.3292388729368, + 13.314214030476538 + ], + [ + 66.58995359834944, + 13.314214030476538 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.58995359834944, + 14.037645589985154 + ], + [ + 66.58995359834944, + 14.761077149493769 + ], + [ + 67.3292388729368, + 14.761077149493769 + ], + [ + 67.3292388729368, + 14.037645589985154 + ], + [ + 66.58995359834944, + 14.037645589985154 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.58995359834944, + 14.761077149493769 + ], + [ + 66.58995359834944, + 15.484508709002384 + ], + [ + 67.3292388729368, + 15.484508709002384 + ], + [ + 67.3292388729368, + 14.761077149493769 + ], + [ + 66.58995359834944, + 14.761077149493769 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.58995359834944, + 15.484508709002384 + ], + [ + 66.58995359834944, + 16.207940268511 + ], + [ + 67.3292388729368, + 16.207940268511 + ], + [ + 67.3292388729368, + 15.484508709002384 + ], + [ + 66.58995359834944, + 15.484508709002384 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.58995359834944, + 16.207940268511 + ], + [ + 66.58995359834944, + 16.931371828019614 + ], + [ + 67.3292388729368, + 16.931371828019614 + ], + [ + 67.3292388729368, + 16.207940268511 + ], + [ + 66.58995359834944, + 16.207940268511 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.58995359834944, + 16.931371828019614 + ], + [ + 66.58995359834944, + 17.65480338752823 + ], + [ + 67.3292388729368, + 17.65480338752823 + ], + [ + 67.3292388729368, + 16.931371828019614 + ], + [ + 66.58995359834944, + 16.931371828019614 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.58995359834944, + 17.65480338752823 + ], + [ + 66.58995359834944, + 18.378234947036844 + ], + [ + 67.3292388729368, + 18.378234947036844 + ], + [ + 67.3292388729368, + 17.65480338752823 + ], + [ + 66.58995359834944, + 17.65480338752823 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.58995359834944, + 18.378234947036844 + ], + [ + 66.58995359834944, + 19.10166650654546 + ], + [ + 67.3292388729368, + 19.10166650654546 + ], + [ + 67.3292388729368, + 18.378234947036844 + ], + [ + 66.58995359834944, + 18.378234947036844 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.58995359834944, + 19.10166650654546 + ], + [ + 66.58995359834944, + 19.825098066054075 + ], + [ + 67.3292388729368, + 19.825098066054075 + ], + [ + 67.3292388729368, + 19.10166650654546 + ], + [ + 66.58995359834944, + 19.10166650654546 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.58995359834944, + 19.825098066054075 + ], + [ + 66.58995359834944, + 20.54852962556269 + ], + [ + 67.3292388729368, + 20.54852962556269 + ], + [ + 67.3292388729368, + 19.825098066054075 + ], + [ + 66.58995359834944, + 19.825098066054075 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.58995359834944, + 20.54852962556269 + ], + [ + 66.58995359834944, + 21.271961185071305 + ], + [ + 67.3292388729368, + 21.271961185071305 + ], + [ + 67.3292388729368, + 20.54852962556269 + ], + [ + 66.58995359834944, + 20.54852962556269 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.58995359834944, + 21.271961185071305 + ], + [ + 66.58995359834944, + 21.99539274457992 + ], + [ + 67.3292388729368, + 21.99539274457992 + ], + [ + 67.3292388729368, + 21.271961185071305 + ], + [ + 66.58995359834944, + 21.271961185071305 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.58995359834944, + 21.99539274457992 + ], + [ + 66.58995359834944, + 22.718824304088535 + ], + [ + 67.3292388729368, + 22.718824304088535 + ], + [ + 67.3292388729368, + 21.99539274457992 + ], + [ + 66.58995359834944, + 21.99539274457992 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.58995359834944, + 22.718824304088535 + ], + [ + 66.58995359834944, + 23.44225586359715 + ], + [ + 67.3292388729368, + 23.44225586359715 + ], + [ + 67.3292388729368, + 22.718824304088535 + ], + [ + 66.58995359834944, + 22.718824304088535 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.58995359834944, + 23.44225586359715 + ], + [ + 66.58995359834944, + 24.165687423105766 + ], + [ + 67.3292388729368, + 24.165687423105766 + ], + [ + 67.3292388729368, + 23.44225586359715 + ], + [ + 66.58995359834944, + 23.44225586359715 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.58995359834944, + 24.165687423105766 + ], + [ + 66.58995359834944, + 24.88911898261438 + ], + [ + 67.3292388729368, + 24.88911898261438 + ], + [ + 67.3292388729368, + 24.165687423105766 + ], + [ + 66.58995359834944, + 24.165687423105766 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.58995359834944, + 24.88911898261438 + ], + [ + 66.58995359834944, + 25.612550542122996 + ], + [ + 67.3292388729368, + 25.612550542122996 + ], + [ + 67.3292388729368, + 24.88911898261438 + ], + [ + 66.58995359834944, + 24.88911898261438 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.58995359834944, + 25.612550542122996 + ], + [ + 66.58995359834944, + 26.33598210163161 + ], + [ + 67.3292388729368, + 26.33598210163161 + ], + [ + 67.3292388729368, + 25.612550542122996 + ], + [ + 66.58995359834944, + 25.612550542122996 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.58995359834944, + 26.33598210163161 + ], + [ + 66.58995359834944, + 27.059413661140226 + ], + [ + 67.3292388729368, + 27.059413661140226 + ], + [ + 67.3292388729368, + 26.33598210163161 + ], + [ + 66.58995359834944, + 26.33598210163161 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.58995359834944, + 27.059413661140226 + ], + [ + 66.58995359834944, + 27.78284522064884 + ], + [ + 67.3292388729368, + 27.78284522064884 + ], + [ + 67.3292388729368, + 27.059413661140226 + ], + [ + 66.58995359834944, + 27.059413661140226 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.58995359834944, + 27.78284522064884 + ], + [ + 66.58995359834944, + 28.506276780157457 + ], + [ + 67.3292388729368, + 28.506276780157457 + ], + [ + 67.3292388729368, + 27.78284522064884 + ], + [ + 66.58995359834944, + 27.78284522064884 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.58995359834944, + 28.506276780157457 + ], + [ + 66.58995359834944, + 29.22970833966607 + ], + [ + 67.3292388729368, + 29.22970833966607 + ], + [ + 67.3292388729368, + 28.506276780157457 + ], + [ + 66.58995359834944, + 28.506276780157457 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.58995359834944, + 29.22970833966607 + ], + [ + 66.58995359834944, + 29.953139899174687 + ], + [ + 67.3292388729368, + 29.953139899174687 + ], + [ + 67.3292388729368, + 29.22970833966607 + ], + [ + 66.58995359834944, + 29.22970833966607 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.58995359834944, + 29.953139899174687 + ], + [ + 66.58995359834944, + 30.676571458683302 + ], + [ + 67.3292388729368, + 30.676571458683302 + ], + [ + 67.3292388729368, + 29.953139899174687 + ], + [ + 66.58995359834944, + 29.953139899174687 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.58995359834944, + 30.676571458683302 + ], + [ + 66.58995359834944, + 31.400003018191917 + ], + [ + 67.3292388729368, + 31.400003018191917 + ], + [ + 67.3292388729368, + 30.676571458683302 + ], + [ + 66.58995359834944, + 30.676571458683302 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.58995359834944, + 31.400003018191917 + ], + [ + 66.58995359834944, + 32.123434577700536 + ], + [ + 67.3292388729368, + 32.123434577700536 + ], + [ + 67.3292388729368, + 31.400003018191917 + ], + [ + 66.58995359834944, + 31.400003018191917 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.58995359834944, + 32.123434577700536 + ], + [ + 66.58995359834944, + 32.84686613720915 + ], + [ + 67.3292388729368, + 32.84686613720915 + ], + [ + 67.3292388729368, + 32.123434577700536 + ], + [ + 66.58995359834944, + 32.123434577700536 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.58995359834944, + 32.84686613720915 + ], + [ + 66.58995359834944, + 33.57029769671776 + ], + [ + 67.3292388729368, + 33.57029769671776 + ], + [ + 67.3292388729368, + 32.84686613720915 + ], + [ + 66.58995359834944, + 32.84686613720915 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.58995359834944, + 33.57029769671776 + ], + [ + 66.58995359834944, + 34.29372925622637 + ], + [ + 67.3292388729368, + 34.29372925622637 + ], + [ + 67.3292388729368, + 33.57029769671776 + ], + [ + 66.58995359834944, + 33.57029769671776 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.58995359834944, + 34.29372925622637 + ], + [ + 66.58995359834944, + 35.01716081573498 + ], + [ + 67.3292388729368, + 35.01716081573498 + ], + [ + 67.3292388729368, + 34.29372925622637 + ], + [ + 66.58995359834944, + 34.29372925622637 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.58995359834944, + 35.01716081573498 + ], + [ + 66.58995359834944, + 35.740592375243594 + ], + [ + 67.3292388729368, + 35.740592375243594 + ], + [ + 67.3292388729368, + 35.01716081573498 + ], + [ + 66.58995359834944, + 35.01716081573498 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.58995359834944, + 35.740592375243594 + ], + [ + 66.58995359834944, + 36.464023934752205 + ], + [ + 67.3292388729368, + 36.464023934752205 + ], + [ + 67.3292388729368, + 35.740592375243594 + ], + [ + 66.58995359834944, + 35.740592375243594 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.58995359834944, + 36.464023934752205 + ], + [ + 66.58995359834944, + 37.18745549426082 + ], + [ + 67.3292388729368, + 37.18745549426082 + ], + [ + 67.3292388729368, + 36.464023934752205 + ], + [ + 66.58995359834944, + 36.464023934752205 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.58995359834944, + 37.18745549426082 + ], + [ + 66.58995359834944, + 37.91088705376943 + ], + [ + 67.3292388729368, + 37.91088705376943 + ], + [ + 67.3292388729368, + 37.18745549426082 + ], + [ + 66.58995359834944, + 37.18745549426082 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.58995359834944, + 37.91088705376943 + ], + [ + 66.58995359834944, + 38.63431861327804 + ], + [ + 67.3292388729368, + 38.63431861327804 + ], + [ + 67.3292388729368, + 37.91088705376943 + ], + [ + 66.58995359834944, + 37.91088705376943 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.58995359834944, + 38.63431861327804 + ], + [ + 66.58995359834944, + 39.35775017278665 + ], + [ + 67.3292388729368, + 39.35775017278665 + ], + [ + 67.3292388729368, + 38.63431861327804 + ], + [ + 66.58995359834944, + 38.63431861327804 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.58995359834944, + 39.35775017278665 + ], + [ + 66.58995359834944, + 40.08118173229526 + ], + [ + 67.3292388729368, + 40.08118173229526 + ], + [ + 67.3292388729368, + 39.35775017278665 + ], + [ + 66.58995359834944, + 39.35775017278665 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.58995359834944, + 40.08118173229526 + ], + [ + 66.58995359834944, + 40.804613291803875 + ], + [ + 67.3292388729368, + 40.804613291803875 + ], + [ + 67.3292388729368, + 40.08118173229526 + ], + [ + 66.58995359834944, + 40.08118173229526 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.58995359834944, + 40.804613291803875 + ], + [ + 66.58995359834944, + 41.52804485131249 + ], + [ + 67.3292388729368, + 41.52804485131249 + ], + [ + 67.3292388729368, + 40.804613291803875 + ], + [ + 66.58995359834944, + 40.804613291803875 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.58995359834944, + 41.52804485131249 + ], + [ + 66.58995359834944, + 42.2514764108211 + ], + [ + 67.3292388729368, + 42.2514764108211 + ], + [ + 67.3292388729368, + 41.52804485131249 + ], + [ + 66.58995359834944, + 41.52804485131249 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.58995359834944, + 42.2514764108211 + ], + [ + 66.58995359834944, + 42.97490797032971 + ], + [ + 67.3292388729368, + 42.97490797032971 + ], + [ + 67.3292388729368, + 42.2514764108211 + ], + [ + 66.58995359834944, + 42.2514764108211 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.58995359834944, + 42.97490797032971 + ], + [ + 66.58995359834944, + 43.69833952983832 + ], + [ + 67.3292388729368, + 43.69833952983832 + ], + [ + 67.3292388729368, + 42.97490797032971 + ], + [ + 66.58995359834944, + 42.97490797032971 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.58995359834944, + 43.69833952983832 + ], + [ + 66.58995359834944, + 44.42177108934693 + ], + [ + 67.3292388729368, + 44.42177108934693 + ], + [ + 67.3292388729368, + 43.69833952983832 + ], + [ + 66.58995359834944, + 43.69833952983832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.58995359834944, + 44.42177108934693 + ], + [ + 66.58995359834944, + 45.145202648855545 + ], + [ + 67.3292388729368, + 45.145202648855545 + ], + [ + 67.3292388729368, + 44.42177108934693 + ], + [ + 66.58995359834944, + 44.42177108934693 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.58995359834944, + 45.145202648855545 + ], + [ + 66.58995359834944, + 45.868634208364156 + ], + [ + 67.3292388729368, + 45.868634208364156 + ], + [ + 67.3292388729368, + 45.145202648855545 + ], + [ + 66.58995359834944, + 45.145202648855545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.58995359834944, + 45.868634208364156 + ], + [ + 66.58995359834944, + 46.59206576787277 + ], + [ + 67.3292388729368, + 46.59206576787277 + ], + [ + 67.3292388729368, + 45.868634208364156 + ], + [ + 66.58995359834944, + 45.868634208364156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.58995359834944, + 46.59206576787277 + ], + [ + 66.58995359834944, + 47.31549732738138 + ], + [ + 67.3292388729368, + 47.31549732738138 + ], + [ + 67.3292388729368, + 46.59206576787277 + ], + [ + 66.58995359834944, + 46.59206576787277 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.58995359834944, + 47.31549732738138 + ], + [ + 66.58995359834944, + 48.03892888688999 + ], + [ + 67.3292388729368, + 48.03892888688999 + ], + [ + 67.3292388729368, + 47.31549732738138 + ], + [ + 66.58995359834944, + 47.31549732738138 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.3292388729368, + 11.867350911459308 + ], + [ + 67.3292388729368, + 12.590782470967923 + ], + [ + 68.06852414752416, + 12.590782470967923 + ], + [ + 68.06852414752416, + 11.867350911459308 + ], + [ + 67.3292388729368, + 11.867350911459308 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.3292388729368, + 12.590782470967923 + ], + [ + 67.3292388729368, + 13.314214030476538 + ], + [ + 68.06852414752416, + 13.314214030476538 + ], + [ + 68.06852414752416, + 12.590782470967923 + ], + [ + 67.3292388729368, + 12.590782470967923 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.3292388729368, + 13.314214030476538 + ], + [ + 67.3292388729368, + 14.037645589985154 + ], + [ + 68.06852414752416, + 14.037645589985154 + ], + [ + 68.06852414752416, + 13.314214030476538 + ], + [ + 67.3292388729368, + 13.314214030476538 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.3292388729368, + 14.037645589985154 + ], + [ + 67.3292388729368, + 14.761077149493769 + ], + [ + 68.06852414752416, + 14.761077149493769 + ], + [ + 68.06852414752416, + 14.037645589985154 + ], + [ + 67.3292388729368, + 14.037645589985154 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.3292388729368, + 14.761077149493769 + ], + [ + 67.3292388729368, + 15.484508709002384 + ], + [ + 68.06852414752416, + 15.484508709002384 + ], + [ + 68.06852414752416, + 14.761077149493769 + ], + [ + 67.3292388729368, + 14.761077149493769 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.3292388729368, + 15.484508709002384 + ], + [ + 67.3292388729368, + 16.207940268511 + ], + [ + 68.06852414752416, + 16.207940268511 + ], + [ + 68.06852414752416, + 15.484508709002384 + ], + [ + 67.3292388729368, + 15.484508709002384 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.3292388729368, + 16.207940268511 + ], + [ + 67.3292388729368, + 16.931371828019614 + ], + [ + 68.06852414752416, + 16.931371828019614 + ], + [ + 68.06852414752416, + 16.207940268511 + ], + [ + 67.3292388729368, + 16.207940268511 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.3292388729368, + 16.931371828019614 + ], + [ + 67.3292388729368, + 17.65480338752823 + ], + [ + 68.06852414752416, + 17.65480338752823 + ], + [ + 68.06852414752416, + 16.931371828019614 + ], + [ + 67.3292388729368, + 16.931371828019614 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.3292388729368, + 17.65480338752823 + ], + [ + 67.3292388729368, + 18.378234947036844 + ], + [ + 68.06852414752416, + 18.378234947036844 + ], + [ + 68.06852414752416, + 17.65480338752823 + ], + [ + 67.3292388729368, + 17.65480338752823 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.3292388729368, + 18.378234947036844 + ], + [ + 67.3292388729368, + 19.10166650654546 + ], + [ + 68.06852414752416, + 19.10166650654546 + ], + [ + 68.06852414752416, + 18.378234947036844 + ], + [ + 67.3292388729368, + 18.378234947036844 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.3292388729368, + 19.10166650654546 + ], + [ + 67.3292388729368, + 19.825098066054075 + ], + [ + 68.06852414752416, + 19.825098066054075 + ], + [ + 68.06852414752416, + 19.10166650654546 + ], + [ + 67.3292388729368, + 19.10166650654546 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.3292388729368, + 19.825098066054075 + ], + [ + 67.3292388729368, + 20.54852962556269 + ], + [ + 68.06852414752416, + 20.54852962556269 + ], + [ + 68.06852414752416, + 19.825098066054075 + ], + [ + 67.3292388729368, + 19.825098066054075 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.3292388729368, + 20.54852962556269 + ], + [ + 67.3292388729368, + 21.271961185071305 + ], + [ + 68.06852414752416, + 21.271961185071305 + ], + [ + 68.06852414752416, + 20.54852962556269 + ], + [ + 67.3292388729368, + 20.54852962556269 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.3292388729368, + 21.271961185071305 + ], + [ + 67.3292388729368, + 21.99539274457992 + ], + [ + 68.06852414752416, + 21.99539274457992 + ], + [ + 68.06852414752416, + 21.271961185071305 + ], + [ + 67.3292388729368, + 21.271961185071305 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.3292388729368, + 21.99539274457992 + ], + [ + 67.3292388729368, + 22.718824304088535 + ], + [ + 68.06852414752416, + 22.718824304088535 + ], + [ + 68.06852414752416, + 21.99539274457992 + ], + [ + 67.3292388729368, + 21.99539274457992 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.3292388729368, + 22.718824304088535 + ], + [ + 67.3292388729368, + 23.44225586359715 + ], + [ + 68.06852414752416, + 23.44225586359715 + ], + [ + 68.06852414752416, + 22.718824304088535 + ], + [ + 67.3292388729368, + 22.718824304088535 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.3292388729368, + 23.44225586359715 + ], + [ + 67.3292388729368, + 24.165687423105766 + ], + [ + 68.06852414752416, + 24.165687423105766 + ], + [ + 68.06852414752416, + 23.44225586359715 + ], + [ + 67.3292388729368, + 23.44225586359715 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.3292388729368, + 24.165687423105766 + ], + [ + 67.3292388729368, + 24.88911898261438 + ], + [ + 68.06852414752416, + 24.88911898261438 + ], + [ + 68.06852414752416, + 24.165687423105766 + ], + [ + 67.3292388729368, + 24.165687423105766 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.3292388729368, + 24.88911898261438 + ], + [ + 67.3292388729368, + 25.612550542122996 + ], + [ + 68.06852414752416, + 25.612550542122996 + ], + [ + 68.06852414752416, + 24.88911898261438 + ], + [ + 67.3292388729368, + 24.88911898261438 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.3292388729368, + 25.612550542122996 + ], + [ + 67.3292388729368, + 26.33598210163161 + ], + [ + 68.06852414752416, + 26.33598210163161 + ], + [ + 68.06852414752416, + 25.612550542122996 + ], + [ + 67.3292388729368, + 25.612550542122996 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.3292388729368, + 26.33598210163161 + ], + [ + 67.3292388729368, + 27.059413661140226 + ], + [ + 68.06852414752416, + 27.059413661140226 + ], + [ + 68.06852414752416, + 26.33598210163161 + ], + [ + 67.3292388729368, + 26.33598210163161 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.3292388729368, + 27.059413661140226 + ], + [ + 67.3292388729368, + 27.78284522064884 + ], + [ + 68.06852414752416, + 27.78284522064884 + ], + [ + 68.06852414752416, + 27.059413661140226 + ], + [ + 67.3292388729368, + 27.059413661140226 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.3292388729368, + 27.78284522064884 + ], + [ + 67.3292388729368, + 28.506276780157457 + ], + [ + 68.06852414752416, + 28.506276780157457 + ], + [ + 68.06852414752416, + 27.78284522064884 + ], + [ + 67.3292388729368, + 27.78284522064884 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.3292388729368, + 28.506276780157457 + ], + [ + 67.3292388729368, + 29.22970833966607 + ], + [ + 68.06852414752416, + 29.22970833966607 + ], + [ + 68.06852414752416, + 28.506276780157457 + ], + [ + 67.3292388729368, + 28.506276780157457 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.3292388729368, + 29.22970833966607 + ], + [ + 67.3292388729368, + 29.953139899174687 + ], + [ + 68.06852414752416, + 29.953139899174687 + ], + [ + 68.06852414752416, + 29.22970833966607 + ], + [ + 67.3292388729368, + 29.22970833966607 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.3292388729368, + 29.953139899174687 + ], + [ + 67.3292388729368, + 30.676571458683302 + ], + [ + 68.06852414752416, + 30.676571458683302 + ], + [ + 68.06852414752416, + 29.953139899174687 + ], + [ + 67.3292388729368, + 29.953139899174687 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.3292388729368, + 30.676571458683302 + ], + [ + 67.3292388729368, + 31.400003018191917 + ], + [ + 68.06852414752416, + 31.400003018191917 + ], + [ + 68.06852414752416, + 30.676571458683302 + ], + [ + 67.3292388729368, + 30.676571458683302 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.3292388729368, + 31.400003018191917 + ], + [ + 67.3292388729368, + 32.123434577700536 + ], + [ + 68.06852414752416, + 32.123434577700536 + ], + [ + 68.06852414752416, + 31.400003018191917 + ], + [ + 67.3292388729368, + 31.400003018191917 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.3292388729368, + 32.123434577700536 + ], + [ + 67.3292388729368, + 32.84686613720915 + ], + [ + 68.06852414752416, + 32.84686613720915 + ], + [ + 68.06852414752416, + 32.123434577700536 + ], + [ + 67.3292388729368, + 32.123434577700536 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.3292388729368, + 32.84686613720915 + ], + [ + 67.3292388729368, + 33.57029769671776 + ], + [ + 68.06852414752416, + 33.57029769671776 + ], + [ + 68.06852414752416, + 32.84686613720915 + ], + [ + 67.3292388729368, + 32.84686613720915 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.3292388729368, + 33.57029769671776 + ], + [ + 67.3292388729368, + 34.29372925622637 + ], + [ + 68.06852414752416, + 34.29372925622637 + ], + [ + 68.06852414752416, + 33.57029769671776 + ], + [ + 67.3292388729368, + 33.57029769671776 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.3292388729368, + 34.29372925622637 + ], + [ + 67.3292388729368, + 35.01716081573498 + ], + [ + 68.06852414752416, + 35.01716081573498 + ], + [ + 68.06852414752416, + 34.29372925622637 + ], + [ + 67.3292388729368, + 34.29372925622637 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.3292388729368, + 35.01716081573498 + ], + [ + 67.3292388729368, + 35.740592375243594 + ], + [ + 68.06852414752416, + 35.740592375243594 + ], + [ + 68.06852414752416, + 35.01716081573498 + ], + [ + 67.3292388729368, + 35.01716081573498 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.3292388729368, + 35.740592375243594 + ], + [ + 67.3292388729368, + 36.464023934752205 + ], + [ + 68.06852414752416, + 36.464023934752205 + ], + [ + 68.06852414752416, + 35.740592375243594 + ], + [ + 67.3292388729368, + 35.740592375243594 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.3292388729368, + 36.464023934752205 + ], + [ + 67.3292388729368, + 37.18745549426082 + ], + [ + 68.06852414752416, + 37.18745549426082 + ], + [ + 68.06852414752416, + 36.464023934752205 + ], + [ + 67.3292388729368, + 36.464023934752205 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.3292388729368, + 37.18745549426082 + ], + [ + 67.3292388729368, + 37.91088705376943 + ], + [ + 68.06852414752416, + 37.91088705376943 + ], + [ + 68.06852414752416, + 37.18745549426082 + ], + [ + 67.3292388729368, + 37.18745549426082 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.3292388729368, + 37.91088705376943 + ], + [ + 67.3292388729368, + 38.63431861327804 + ], + [ + 68.06852414752416, + 38.63431861327804 + ], + [ + 68.06852414752416, + 37.91088705376943 + ], + [ + 67.3292388729368, + 37.91088705376943 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.3292388729368, + 38.63431861327804 + ], + [ + 67.3292388729368, + 39.35775017278665 + ], + [ + 68.06852414752416, + 39.35775017278665 + ], + [ + 68.06852414752416, + 38.63431861327804 + ], + [ + 67.3292388729368, + 38.63431861327804 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.3292388729368, + 39.35775017278665 + ], + [ + 67.3292388729368, + 40.08118173229526 + ], + [ + 68.06852414752416, + 40.08118173229526 + ], + [ + 68.06852414752416, + 39.35775017278665 + ], + [ + 67.3292388729368, + 39.35775017278665 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.3292388729368, + 40.08118173229526 + ], + [ + 67.3292388729368, + 40.804613291803875 + ], + [ + 68.06852414752416, + 40.804613291803875 + ], + [ + 68.06852414752416, + 40.08118173229526 + ], + [ + 67.3292388729368, + 40.08118173229526 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.3292388729368, + 40.804613291803875 + ], + [ + 67.3292388729368, + 41.52804485131249 + ], + [ + 68.06852414752416, + 41.52804485131249 + ], + [ + 68.06852414752416, + 40.804613291803875 + ], + [ + 67.3292388729368, + 40.804613291803875 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.3292388729368, + 41.52804485131249 + ], + [ + 67.3292388729368, + 42.2514764108211 + ], + [ + 68.06852414752416, + 42.2514764108211 + ], + [ + 68.06852414752416, + 41.52804485131249 + ], + [ + 67.3292388729368, + 41.52804485131249 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.3292388729368, + 42.2514764108211 + ], + [ + 67.3292388729368, + 42.97490797032971 + ], + [ + 68.06852414752416, + 42.97490797032971 + ], + [ + 68.06852414752416, + 42.2514764108211 + ], + [ + 67.3292388729368, + 42.2514764108211 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.3292388729368, + 42.97490797032971 + ], + [ + 67.3292388729368, + 43.69833952983832 + ], + [ + 68.06852414752416, + 43.69833952983832 + ], + [ + 68.06852414752416, + 42.97490797032971 + ], + [ + 67.3292388729368, + 42.97490797032971 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.3292388729368, + 43.69833952983832 + ], + [ + 67.3292388729368, + 44.42177108934693 + ], + [ + 68.06852414752416, + 44.42177108934693 + ], + [ + 68.06852414752416, + 43.69833952983832 + ], + [ + 67.3292388729368, + 43.69833952983832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.3292388729368, + 44.42177108934693 + ], + [ + 67.3292388729368, + 45.145202648855545 + ], + [ + 68.06852414752416, + 45.145202648855545 + ], + [ + 68.06852414752416, + 44.42177108934693 + ], + [ + 67.3292388729368, + 44.42177108934693 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.3292388729368, + 45.145202648855545 + ], + [ + 67.3292388729368, + 45.868634208364156 + ], + [ + 68.06852414752416, + 45.868634208364156 + ], + [ + 68.06852414752416, + 45.145202648855545 + ], + [ + 67.3292388729368, + 45.145202648855545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.3292388729368, + 45.868634208364156 + ], + [ + 67.3292388729368, + 46.59206576787277 + ], + [ + 68.06852414752416, + 46.59206576787277 + ], + [ + 68.06852414752416, + 45.868634208364156 + ], + [ + 67.3292388729368, + 45.868634208364156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.3292388729368, + 46.59206576787277 + ], + [ + 67.3292388729368, + 47.31549732738138 + ], + [ + 68.06852414752416, + 47.31549732738138 + ], + [ + 68.06852414752416, + 46.59206576787277 + ], + [ + 67.3292388729368, + 46.59206576787277 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.3292388729368, + 47.31549732738138 + ], + [ + 67.3292388729368, + 48.03892888688999 + ], + [ + 68.06852414752416, + 48.03892888688999 + ], + [ + 68.06852414752416, + 47.31549732738138 + ], + [ + 67.3292388729368, + 47.31549732738138 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.06852414752416, + 11.867350911459308 + ], + [ + 68.06852414752416, + 12.590782470967923 + ], + [ + 68.80780942211152, + 12.590782470967923 + ], + [ + 68.80780942211152, + 11.867350911459308 + ], + [ + 68.06852414752416, + 11.867350911459308 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.06852414752416, + 12.590782470967923 + ], + [ + 68.06852414752416, + 13.314214030476538 + ], + [ + 68.80780942211152, + 13.314214030476538 + ], + [ + 68.80780942211152, + 12.590782470967923 + ], + [ + 68.06852414752416, + 12.590782470967923 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.06852414752416, + 13.314214030476538 + ], + [ + 68.06852414752416, + 14.037645589985154 + ], + [ + 68.80780942211152, + 14.037645589985154 + ], + [ + 68.80780942211152, + 13.314214030476538 + ], + [ + 68.06852414752416, + 13.314214030476538 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.06852414752416, + 14.037645589985154 + ], + [ + 68.06852414752416, + 14.761077149493769 + ], + [ + 68.80780942211152, + 14.761077149493769 + ], + [ + 68.80780942211152, + 14.037645589985154 + ], + [ + 68.06852414752416, + 14.037645589985154 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.06852414752416, + 14.761077149493769 + ], + [ + 68.06852414752416, + 15.484508709002384 + ], + [ + 68.80780942211152, + 15.484508709002384 + ], + [ + 68.80780942211152, + 14.761077149493769 + ], + [ + 68.06852414752416, + 14.761077149493769 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.06852414752416, + 15.484508709002384 + ], + [ + 68.06852414752416, + 16.207940268511 + ], + [ + 68.80780942211152, + 16.207940268511 + ], + [ + 68.80780942211152, + 15.484508709002384 + ], + [ + 68.06852414752416, + 15.484508709002384 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.06852414752416, + 16.207940268511 + ], + [ + 68.06852414752416, + 16.931371828019614 + ], + [ + 68.80780942211152, + 16.931371828019614 + ], + [ + 68.80780942211152, + 16.207940268511 + ], + [ + 68.06852414752416, + 16.207940268511 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.06852414752416, + 16.931371828019614 + ], + [ + 68.06852414752416, + 17.65480338752823 + ], + [ + 68.80780942211152, + 17.65480338752823 + ], + [ + 68.80780942211152, + 16.931371828019614 + ], + [ + 68.06852414752416, + 16.931371828019614 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.06852414752416, + 17.65480338752823 + ], + [ + 68.06852414752416, + 18.378234947036844 + ], + [ + 68.80780942211152, + 18.378234947036844 + ], + [ + 68.80780942211152, + 17.65480338752823 + ], + [ + 68.06852414752416, + 17.65480338752823 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.06852414752416, + 18.378234947036844 + ], + [ + 68.06852414752416, + 19.10166650654546 + ], + [ + 68.80780942211152, + 19.10166650654546 + ], + [ + 68.80780942211152, + 18.378234947036844 + ], + [ + 68.06852414752416, + 18.378234947036844 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.06852414752416, + 19.10166650654546 + ], + [ + 68.06852414752416, + 19.825098066054075 + ], + [ + 68.80780942211152, + 19.825098066054075 + ], + [ + 68.80780942211152, + 19.10166650654546 + ], + [ + 68.06852414752416, + 19.10166650654546 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.06852414752416, + 19.825098066054075 + ], + [ + 68.06852414752416, + 20.54852962556269 + ], + [ + 68.80780942211152, + 20.54852962556269 + ], + [ + 68.80780942211152, + 19.825098066054075 + ], + [ + 68.06852414752416, + 19.825098066054075 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.06852414752416, + 20.54852962556269 + ], + [ + 68.06852414752416, + 21.271961185071305 + ], + [ + 68.80780942211152, + 21.271961185071305 + ], + [ + 68.80780942211152, + 20.54852962556269 + ], + [ + 68.06852414752416, + 20.54852962556269 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.06852414752416, + 21.271961185071305 + ], + [ + 68.06852414752416, + 21.99539274457992 + ], + [ + 68.80780942211152, + 21.99539274457992 + ], + [ + 68.80780942211152, + 21.271961185071305 + ], + [ + 68.06852414752416, + 21.271961185071305 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.06852414752416, + 21.99539274457992 + ], + [ + 68.06852414752416, + 22.718824304088535 + ], + [ + 68.80780942211152, + 22.718824304088535 + ], + [ + 68.80780942211152, + 21.99539274457992 + ], + [ + 68.06852414752416, + 21.99539274457992 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.06852414752416, + 22.718824304088535 + ], + [ + 68.06852414752416, + 23.44225586359715 + ], + [ + 68.80780942211152, + 23.44225586359715 + ], + [ + 68.80780942211152, + 22.718824304088535 + ], + [ + 68.06852414752416, + 22.718824304088535 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.06852414752416, + 23.44225586359715 + ], + [ + 68.06852414752416, + 24.165687423105766 + ], + [ + 68.80780942211152, + 24.165687423105766 + ], + [ + 68.80780942211152, + 23.44225586359715 + ], + [ + 68.06852414752416, + 23.44225586359715 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.06852414752416, + 24.165687423105766 + ], + [ + 68.06852414752416, + 24.88911898261438 + ], + [ + 68.80780942211152, + 24.88911898261438 + ], + [ + 68.80780942211152, + 24.165687423105766 + ], + [ + 68.06852414752416, + 24.165687423105766 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.06852414752416, + 24.88911898261438 + ], + [ + 68.06852414752416, + 25.612550542122996 + ], + [ + 68.80780942211152, + 25.612550542122996 + ], + [ + 68.80780942211152, + 24.88911898261438 + ], + [ + 68.06852414752416, + 24.88911898261438 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.06852414752416, + 25.612550542122996 + ], + [ + 68.06852414752416, + 26.33598210163161 + ], + [ + 68.80780942211152, + 26.33598210163161 + ], + [ + 68.80780942211152, + 25.612550542122996 + ], + [ + 68.06852414752416, + 25.612550542122996 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.06852414752416, + 26.33598210163161 + ], + [ + 68.06852414752416, + 27.059413661140226 + ], + [ + 68.80780942211152, + 27.059413661140226 + ], + [ + 68.80780942211152, + 26.33598210163161 + ], + [ + 68.06852414752416, + 26.33598210163161 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.06852414752416, + 27.059413661140226 + ], + [ + 68.06852414752416, + 27.78284522064884 + ], + [ + 68.80780942211152, + 27.78284522064884 + ], + [ + 68.80780942211152, + 27.059413661140226 + ], + [ + 68.06852414752416, + 27.059413661140226 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.06852414752416, + 27.78284522064884 + ], + [ + 68.06852414752416, + 28.506276780157457 + ], + [ + 68.80780942211152, + 28.506276780157457 + ], + [ + 68.80780942211152, + 27.78284522064884 + ], + [ + 68.06852414752416, + 27.78284522064884 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.06852414752416, + 28.506276780157457 + ], + [ + 68.06852414752416, + 29.22970833966607 + ], + [ + 68.80780942211152, + 29.22970833966607 + ], + [ + 68.80780942211152, + 28.506276780157457 + ], + [ + 68.06852414752416, + 28.506276780157457 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.06852414752416, + 29.22970833966607 + ], + [ + 68.06852414752416, + 29.953139899174687 + ], + [ + 68.80780942211152, + 29.953139899174687 + ], + [ + 68.80780942211152, + 29.22970833966607 + ], + [ + 68.06852414752416, + 29.22970833966607 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.06852414752416, + 29.953139899174687 + ], + [ + 68.06852414752416, + 30.676571458683302 + ], + [ + 68.80780942211152, + 30.676571458683302 + ], + [ + 68.80780942211152, + 29.953139899174687 + ], + [ + 68.06852414752416, + 29.953139899174687 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.06852414752416, + 30.676571458683302 + ], + [ + 68.06852414752416, + 31.400003018191917 + ], + [ + 68.80780942211152, + 31.400003018191917 + ], + [ + 68.80780942211152, + 30.676571458683302 + ], + [ + 68.06852414752416, + 30.676571458683302 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.06852414752416, + 31.400003018191917 + ], + [ + 68.06852414752416, + 32.123434577700536 + ], + [ + 68.80780942211152, + 32.123434577700536 + ], + [ + 68.80780942211152, + 31.400003018191917 + ], + [ + 68.06852414752416, + 31.400003018191917 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.06852414752416, + 32.123434577700536 + ], + [ + 68.06852414752416, + 32.84686613720915 + ], + [ + 68.80780942211152, + 32.84686613720915 + ], + [ + 68.80780942211152, + 32.123434577700536 + ], + [ + 68.06852414752416, + 32.123434577700536 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.06852414752416, + 32.84686613720915 + ], + [ + 68.06852414752416, + 33.57029769671776 + ], + [ + 68.80780942211152, + 33.57029769671776 + ], + [ + 68.80780942211152, + 32.84686613720915 + ], + [ + 68.06852414752416, + 32.84686613720915 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.06852414752416, + 33.57029769671776 + ], + [ + 68.06852414752416, + 34.29372925622637 + ], + [ + 68.80780942211152, + 34.29372925622637 + ], + [ + 68.80780942211152, + 33.57029769671776 + ], + [ + 68.06852414752416, + 33.57029769671776 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.06852414752416, + 34.29372925622637 + ], + [ + 68.06852414752416, + 35.01716081573498 + ], + [ + 68.80780942211152, + 35.01716081573498 + ], + [ + 68.80780942211152, + 34.29372925622637 + ], + [ + 68.06852414752416, + 34.29372925622637 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.06852414752416, + 35.01716081573498 + ], + [ + 68.06852414752416, + 35.740592375243594 + ], + [ + 68.80780942211152, + 35.740592375243594 + ], + [ + 68.80780942211152, + 35.01716081573498 + ], + [ + 68.06852414752416, + 35.01716081573498 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.06852414752416, + 35.740592375243594 + ], + [ + 68.06852414752416, + 36.464023934752205 + ], + [ + 68.80780942211152, + 36.464023934752205 + ], + [ + 68.80780942211152, + 35.740592375243594 + ], + [ + 68.06852414752416, + 35.740592375243594 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.06852414752416, + 36.464023934752205 + ], + [ + 68.06852414752416, + 37.18745549426082 + ], + [ + 68.80780942211152, + 37.18745549426082 + ], + [ + 68.80780942211152, + 36.464023934752205 + ], + [ + 68.06852414752416, + 36.464023934752205 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.06852414752416, + 37.18745549426082 + ], + [ + 68.06852414752416, + 37.91088705376943 + ], + [ + 68.80780942211152, + 37.91088705376943 + ], + [ + 68.80780942211152, + 37.18745549426082 + ], + [ + 68.06852414752416, + 37.18745549426082 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.06852414752416, + 37.91088705376943 + ], + [ + 68.06852414752416, + 38.63431861327804 + ], + [ + 68.80780942211152, + 38.63431861327804 + ], + [ + 68.80780942211152, + 37.91088705376943 + ], + [ + 68.06852414752416, + 37.91088705376943 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.06852414752416, + 38.63431861327804 + ], + [ + 68.06852414752416, + 39.35775017278665 + ], + [ + 68.80780942211152, + 39.35775017278665 + ], + [ + 68.80780942211152, + 38.63431861327804 + ], + [ + 68.06852414752416, + 38.63431861327804 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.06852414752416, + 39.35775017278665 + ], + [ + 68.06852414752416, + 40.08118173229526 + ], + [ + 68.80780942211152, + 40.08118173229526 + ], + [ + 68.80780942211152, + 39.35775017278665 + ], + [ + 68.06852414752416, + 39.35775017278665 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.06852414752416, + 40.08118173229526 + ], + [ + 68.06852414752416, + 40.804613291803875 + ], + [ + 68.80780942211152, + 40.804613291803875 + ], + [ + 68.80780942211152, + 40.08118173229526 + ], + [ + 68.06852414752416, + 40.08118173229526 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.06852414752416, + 40.804613291803875 + ], + [ + 68.06852414752416, + 41.52804485131249 + ], + [ + 68.80780942211152, + 41.52804485131249 + ], + [ + 68.80780942211152, + 40.804613291803875 + ], + [ + 68.06852414752416, + 40.804613291803875 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.06852414752416, + 41.52804485131249 + ], + [ + 68.06852414752416, + 42.2514764108211 + ], + [ + 68.80780942211152, + 42.2514764108211 + ], + [ + 68.80780942211152, + 41.52804485131249 + ], + [ + 68.06852414752416, + 41.52804485131249 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.06852414752416, + 42.2514764108211 + ], + [ + 68.06852414752416, + 42.97490797032971 + ], + [ + 68.80780942211152, + 42.97490797032971 + ], + [ + 68.80780942211152, + 42.2514764108211 + ], + [ + 68.06852414752416, + 42.2514764108211 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.06852414752416, + 42.97490797032971 + ], + [ + 68.06852414752416, + 43.69833952983832 + ], + [ + 68.80780942211152, + 43.69833952983832 + ], + [ + 68.80780942211152, + 42.97490797032971 + ], + [ + 68.06852414752416, + 42.97490797032971 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.06852414752416, + 43.69833952983832 + ], + [ + 68.06852414752416, + 44.42177108934693 + ], + [ + 68.80780942211152, + 44.42177108934693 + ], + [ + 68.80780942211152, + 43.69833952983832 + ], + [ + 68.06852414752416, + 43.69833952983832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.06852414752416, + 44.42177108934693 + ], + [ + 68.06852414752416, + 45.145202648855545 + ], + [ + 68.80780942211152, + 45.145202648855545 + ], + [ + 68.80780942211152, + 44.42177108934693 + ], + [ + 68.06852414752416, + 44.42177108934693 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.06852414752416, + 45.145202648855545 + ], + [ + 68.06852414752416, + 45.868634208364156 + ], + [ + 68.80780942211152, + 45.868634208364156 + ], + [ + 68.80780942211152, + 45.145202648855545 + ], + [ + 68.06852414752416, + 45.145202648855545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.06852414752416, + 45.868634208364156 + ], + [ + 68.06852414752416, + 46.59206576787277 + ], + [ + 68.80780942211152, + 46.59206576787277 + ], + [ + 68.80780942211152, + 45.868634208364156 + ], + [ + 68.06852414752416, + 45.868634208364156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.06852414752416, + 46.59206576787277 + ], + [ + 68.06852414752416, + 47.31549732738138 + ], + [ + 68.80780942211152, + 47.31549732738138 + ], + [ + 68.80780942211152, + 46.59206576787277 + ], + [ + 68.06852414752416, + 46.59206576787277 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.06852414752416, + 47.31549732738138 + ], + [ + 68.06852414752416, + 48.03892888688999 + ], + [ + 68.80780942211152, + 48.03892888688999 + ], + [ + 68.80780942211152, + 47.31549732738138 + ], + [ + 68.06852414752416, + 47.31549732738138 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.80780942211152, + 11.867350911459308 + ], + [ + 68.80780942211152, + 12.590782470967923 + ], + [ + 69.54709469669888, + 12.590782470967923 + ], + [ + 69.54709469669888, + 11.867350911459308 + ], + [ + 68.80780942211152, + 11.867350911459308 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.80780942211152, + 12.590782470967923 + ], + [ + 68.80780942211152, + 13.314214030476538 + ], + [ + 69.54709469669888, + 13.314214030476538 + ], + [ + 69.54709469669888, + 12.590782470967923 + ], + [ + 68.80780942211152, + 12.590782470967923 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.80780942211152, + 13.314214030476538 + ], + [ + 68.80780942211152, + 14.037645589985154 + ], + [ + 69.54709469669888, + 14.037645589985154 + ], + [ + 69.54709469669888, + 13.314214030476538 + ], + [ + 68.80780942211152, + 13.314214030476538 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.80780942211152, + 14.037645589985154 + ], + [ + 68.80780942211152, + 14.761077149493769 + ], + [ + 69.54709469669888, + 14.761077149493769 + ], + [ + 69.54709469669888, + 14.037645589985154 + ], + [ + 68.80780942211152, + 14.037645589985154 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.80780942211152, + 14.761077149493769 + ], + [ + 68.80780942211152, + 15.484508709002384 + ], + [ + 69.54709469669888, + 15.484508709002384 + ], + [ + 69.54709469669888, + 14.761077149493769 + ], + [ + 68.80780942211152, + 14.761077149493769 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.80780942211152, + 15.484508709002384 + ], + [ + 68.80780942211152, + 16.207940268511 + ], + [ + 69.54709469669888, + 16.207940268511 + ], + [ + 69.54709469669888, + 15.484508709002384 + ], + [ + 68.80780942211152, + 15.484508709002384 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.80780942211152, + 16.207940268511 + ], + [ + 68.80780942211152, + 16.931371828019614 + ], + [ + 69.54709469669888, + 16.931371828019614 + ], + [ + 69.54709469669888, + 16.207940268511 + ], + [ + 68.80780942211152, + 16.207940268511 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.80780942211152, + 16.931371828019614 + ], + [ + 68.80780942211152, + 17.65480338752823 + ], + [ + 69.54709469669888, + 17.65480338752823 + ], + [ + 69.54709469669888, + 16.931371828019614 + ], + [ + 68.80780942211152, + 16.931371828019614 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.80780942211152, + 17.65480338752823 + ], + [ + 68.80780942211152, + 18.378234947036844 + ], + [ + 69.54709469669888, + 18.378234947036844 + ], + [ + 69.54709469669888, + 17.65480338752823 + ], + [ + 68.80780942211152, + 17.65480338752823 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.80780942211152, + 18.378234947036844 + ], + [ + 68.80780942211152, + 19.10166650654546 + ], + [ + 69.54709469669888, + 19.10166650654546 + ], + [ + 69.54709469669888, + 18.378234947036844 + ], + [ + 68.80780942211152, + 18.378234947036844 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.80780942211152, + 19.10166650654546 + ], + [ + 68.80780942211152, + 19.825098066054075 + ], + [ + 69.54709469669888, + 19.825098066054075 + ], + [ + 69.54709469669888, + 19.10166650654546 + ], + [ + 68.80780942211152, + 19.10166650654546 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.80780942211152, + 19.825098066054075 + ], + [ + 68.80780942211152, + 20.54852962556269 + ], + [ + 69.54709469669888, + 20.54852962556269 + ], + [ + 69.54709469669888, + 19.825098066054075 + ], + [ + 68.80780942211152, + 19.825098066054075 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.80780942211152, + 20.54852962556269 + ], + [ + 68.80780942211152, + 21.271961185071305 + ], + [ + 69.54709469669888, + 21.271961185071305 + ], + [ + 69.54709469669888, + 20.54852962556269 + ], + [ + 68.80780942211152, + 20.54852962556269 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.80780942211152, + 21.271961185071305 + ], + [ + 68.80780942211152, + 21.99539274457992 + ], + [ + 69.54709469669888, + 21.99539274457992 + ], + [ + 69.54709469669888, + 21.271961185071305 + ], + [ + 68.80780942211152, + 21.271961185071305 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.80780942211152, + 21.99539274457992 + ], + [ + 68.80780942211152, + 22.718824304088535 + ], + [ + 69.54709469669888, + 22.718824304088535 + ], + [ + 69.54709469669888, + 21.99539274457992 + ], + [ + 68.80780942211152, + 21.99539274457992 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.80780942211152, + 22.718824304088535 + ], + [ + 68.80780942211152, + 23.44225586359715 + ], + [ + 69.54709469669888, + 23.44225586359715 + ], + [ + 69.54709469669888, + 22.718824304088535 + ], + [ + 68.80780942211152, + 22.718824304088535 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.80780942211152, + 23.44225586359715 + ], + [ + 68.80780942211152, + 24.165687423105766 + ], + [ + 69.54709469669888, + 24.165687423105766 + ], + [ + 69.54709469669888, + 23.44225586359715 + ], + [ + 68.80780942211152, + 23.44225586359715 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.80780942211152, + 24.165687423105766 + ], + [ + 68.80780942211152, + 24.88911898261438 + ], + [ + 69.54709469669888, + 24.88911898261438 + ], + [ + 69.54709469669888, + 24.165687423105766 + ], + [ + 68.80780942211152, + 24.165687423105766 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.80780942211152, + 24.88911898261438 + ], + [ + 68.80780942211152, + 25.612550542122996 + ], + [ + 69.54709469669888, + 25.612550542122996 + ], + [ + 69.54709469669888, + 24.88911898261438 + ], + [ + 68.80780942211152, + 24.88911898261438 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.80780942211152, + 25.612550542122996 + ], + [ + 68.80780942211152, + 26.33598210163161 + ], + [ + 69.54709469669888, + 26.33598210163161 + ], + [ + 69.54709469669888, + 25.612550542122996 + ], + [ + 68.80780942211152, + 25.612550542122996 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.80780942211152, + 26.33598210163161 + ], + [ + 68.80780942211152, + 27.059413661140226 + ], + [ + 69.54709469669888, + 27.059413661140226 + ], + [ + 69.54709469669888, + 26.33598210163161 + ], + [ + 68.80780942211152, + 26.33598210163161 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.80780942211152, + 27.059413661140226 + ], + [ + 68.80780942211152, + 27.78284522064884 + ], + [ + 69.54709469669888, + 27.78284522064884 + ], + [ + 69.54709469669888, + 27.059413661140226 + ], + [ + 68.80780942211152, + 27.059413661140226 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.80780942211152, + 27.78284522064884 + ], + [ + 68.80780942211152, + 28.506276780157457 + ], + [ + 69.54709469669888, + 28.506276780157457 + ], + [ + 69.54709469669888, + 27.78284522064884 + ], + [ + 68.80780942211152, + 27.78284522064884 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.80780942211152, + 28.506276780157457 + ], + [ + 68.80780942211152, + 29.22970833966607 + ], + [ + 69.54709469669888, + 29.22970833966607 + ], + [ + 69.54709469669888, + 28.506276780157457 + ], + [ + 68.80780942211152, + 28.506276780157457 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.80780942211152, + 29.22970833966607 + ], + [ + 68.80780942211152, + 29.953139899174687 + ], + [ + 69.54709469669888, + 29.953139899174687 + ], + [ + 69.54709469669888, + 29.22970833966607 + ], + [ + 68.80780942211152, + 29.22970833966607 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.80780942211152, + 29.953139899174687 + ], + [ + 68.80780942211152, + 30.676571458683302 + ], + [ + 69.54709469669888, + 30.676571458683302 + ], + [ + 69.54709469669888, + 29.953139899174687 + ], + [ + 68.80780942211152, + 29.953139899174687 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.80780942211152, + 30.676571458683302 + ], + [ + 68.80780942211152, + 31.400003018191917 + ], + [ + 69.54709469669888, + 31.400003018191917 + ], + [ + 69.54709469669888, + 30.676571458683302 + ], + [ + 68.80780942211152, + 30.676571458683302 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.80780942211152, + 31.400003018191917 + ], + [ + 68.80780942211152, + 32.123434577700536 + ], + [ + 69.54709469669888, + 32.123434577700536 + ], + [ + 69.54709469669888, + 31.400003018191917 + ], + [ + 68.80780942211152, + 31.400003018191917 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.80780942211152, + 32.123434577700536 + ], + [ + 68.80780942211152, + 32.84686613720915 + ], + [ + 69.54709469669888, + 32.84686613720915 + ], + [ + 69.54709469669888, + 32.123434577700536 + ], + [ + 68.80780942211152, + 32.123434577700536 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.80780942211152, + 32.84686613720915 + ], + [ + 68.80780942211152, + 33.57029769671776 + ], + [ + 69.54709469669888, + 33.57029769671776 + ], + [ + 69.54709469669888, + 32.84686613720915 + ], + [ + 68.80780942211152, + 32.84686613720915 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.80780942211152, + 33.57029769671776 + ], + [ + 68.80780942211152, + 34.29372925622637 + ], + [ + 69.54709469669888, + 34.29372925622637 + ], + [ + 69.54709469669888, + 33.57029769671776 + ], + [ + 68.80780942211152, + 33.57029769671776 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.80780942211152, + 34.29372925622637 + ], + [ + 68.80780942211152, + 35.01716081573498 + ], + [ + 69.54709469669888, + 35.01716081573498 + ], + [ + 69.54709469669888, + 34.29372925622637 + ], + [ + 68.80780942211152, + 34.29372925622637 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.80780942211152, + 35.01716081573498 + ], + [ + 68.80780942211152, + 35.740592375243594 + ], + [ + 69.54709469669888, + 35.740592375243594 + ], + [ + 69.54709469669888, + 35.01716081573498 + ], + [ + 68.80780942211152, + 35.01716081573498 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.80780942211152, + 35.740592375243594 + ], + [ + 68.80780942211152, + 36.464023934752205 + ], + [ + 69.54709469669888, + 36.464023934752205 + ], + [ + 69.54709469669888, + 35.740592375243594 + ], + [ + 68.80780942211152, + 35.740592375243594 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.80780942211152, + 36.464023934752205 + ], + [ + 68.80780942211152, + 37.18745549426082 + ], + [ + 69.54709469669888, + 37.18745549426082 + ], + [ + 69.54709469669888, + 36.464023934752205 + ], + [ + 68.80780942211152, + 36.464023934752205 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.80780942211152, + 37.18745549426082 + ], + [ + 68.80780942211152, + 37.91088705376943 + ], + [ + 69.54709469669888, + 37.91088705376943 + ], + [ + 69.54709469669888, + 37.18745549426082 + ], + [ + 68.80780942211152, + 37.18745549426082 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.80780942211152, + 37.91088705376943 + ], + [ + 68.80780942211152, + 38.63431861327804 + ], + [ + 69.54709469669888, + 38.63431861327804 + ], + [ + 69.54709469669888, + 37.91088705376943 + ], + [ + 68.80780942211152, + 37.91088705376943 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.80780942211152, + 38.63431861327804 + ], + [ + 68.80780942211152, + 39.35775017278665 + ], + [ + 69.54709469669888, + 39.35775017278665 + ], + [ + 69.54709469669888, + 38.63431861327804 + ], + [ + 68.80780942211152, + 38.63431861327804 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.80780942211152, + 39.35775017278665 + ], + [ + 68.80780942211152, + 40.08118173229526 + ], + [ + 69.54709469669888, + 40.08118173229526 + ], + [ + 69.54709469669888, + 39.35775017278665 + ], + [ + 68.80780942211152, + 39.35775017278665 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.80780942211152, + 40.08118173229526 + ], + [ + 68.80780942211152, + 40.804613291803875 + ], + [ + 69.54709469669888, + 40.804613291803875 + ], + [ + 69.54709469669888, + 40.08118173229526 + ], + [ + 68.80780942211152, + 40.08118173229526 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.80780942211152, + 40.804613291803875 + ], + [ + 68.80780942211152, + 41.52804485131249 + ], + [ + 69.54709469669888, + 41.52804485131249 + ], + [ + 69.54709469669888, + 40.804613291803875 + ], + [ + 68.80780942211152, + 40.804613291803875 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.80780942211152, + 41.52804485131249 + ], + [ + 68.80780942211152, + 42.2514764108211 + ], + [ + 69.54709469669888, + 42.2514764108211 + ], + [ + 69.54709469669888, + 41.52804485131249 + ], + [ + 68.80780942211152, + 41.52804485131249 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.80780942211152, + 42.2514764108211 + ], + [ + 68.80780942211152, + 42.97490797032971 + ], + [ + 69.54709469669888, + 42.97490797032971 + ], + [ + 69.54709469669888, + 42.2514764108211 + ], + [ + 68.80780942211152, + 42.2514764108211 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.80780942211152, + 42.97490797032971 + ], + [ + 68.80780942211152, + 43.69833952983832 + ], + [ + 69.54709469669888, + 43.69833952983832 + ], + [ + 69.54709469669888, + 42.97490797032971 + ], + [ + 68.80780942211152, + 42.97490797032971 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.80780942211152, + 43.69833952983832 + ], + [ + 68.80780942211152, + 44.42177108934693 + ], + [ + 69.54709469669888, + 44.42177108934693 + ], + [ + 69.54709469669888, + 43.69833952983832 + ], + [ + 68.80780942211152, + 43.69833952983832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.80780942211152, + 44.42177108934693 + ], + [ + 68.80780942211152, + 45.145202648855545 + ], + [ + 69.54709469669888, + 45.145202648855545 + ], + [ + 69.54709469669888, + 44.42177108934693 + ], + [ + 68.80780942211152, + 44.42177108934693 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.80780942211152, + 45.145202648855545 + ], + [ + 68.80780942211152, + 45.868634208364156 + ], + [ + 69.54709469669888, + 45.868634208364156 + ], + [ + 69.54709469669888, + 45.145202648855545 + ], + [ + 68.80780942211152, + 45.145202648855545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.80780942211152, + 45.868634208364156 + ], + [ + 68.80780942211152, + 46.59206576787277 + ], + [ + 69.54709469669888, + 46.59206576787277 + ], + [ + 69.54709469669888, + 45.868634208364156 + ], + [ + 68.80780942211152, + 45.868634208364156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.80780942211152, + 46.59206576787277 + ], + [ + 68.80780942211152, + 47.31549732738138 + ], + [ + 69.54709469669888, + 47.31549732738138 + ], + [ + 69.54709469669888, + 46.59206576787277 + ], + [ + 68.80780942211152, + 46.59206576787277 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.80780942211152, + 47.31549732738138 + ], + [ + 68.80780942211152, + 48.03892888688999 + ], + [ + 69.54709469669888, + 48.03892888688999 + ], + [ + 69.54709469669888, + 47.31549732738138 + ], + [ + 68.80780942211152, + 47.31549732738138 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.54709469669888, + 11.867350911459308 + ], + [ + 69.54709469669888, + 12.590782470967923 + ], + [ + 70.28637997128624, + 12.590782470967923 + ], + [ + 70.28637997128624, + 11.867350911459308 + ], + [ + 69.54709469669888, + 11.867350911459308 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.54709469669888, + 12.590782470967923 + ], + [ + 69.54709469669888, + 13.314214030476538 + ], + [ + 70.28637997128624, + 13.314214030476538 + ], + [ + 70.28637997128624, + 12.590782470967923 + ], + [ + 69.54709469669888, + 12.590782470967923 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.54709469669888, + 13.314214030476538 + ], + [ + 69.54709469669888, + 14.037645589985154 + ], + [ + 70.28637997128624, + 14.037645589985154 + ], + [ + 70.28637997128624, + 13.314214030476538 + ], + [ + 69.54709469669888, + 13.314214030476538 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.54709469669888, + 14.037645589985154 + ], + [ + 69.54709469669888, + 14.761077149493769 + ], + [ + 70.28637997128624, + 14.761077149493769 + ], + [ + 70.28637997128624, + 14.037645589985154 + ], + [ + 69.54709469669888, + 14.037645589985154 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.54709469669888, + 14.761077149493769 + ], + [ + 69.54709469669888, + 15.484508709002384 + ], + [ + 70.28637997128624, + 15.484508709002384 + ], + [ + 70.28637997128624, + 14.761077149493769 + ], + [ + 69.54709469669888, + 14.761077149493769 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.54709469669888, + 15.484508709002384 + ], + [ + 69.54709469669888, + 16.207940268511 + ], + [ + 70.28637997128624, + 16.207940268511 + ], + [ + 70.28637997128624, + 15.484508709002384 + ], + [ + 69.54709469669888, + 15.484508709002384 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.54709469669888, + 16.207940268511 + ], + [ + 69.54709469669888, + 16.931371828019614 + ], + [ + 70.28637997128624, + 16.931371828019614 + ], + [ + 70.28637997128624, + 16.207940268511 + ], + [ + 69.54709469669888, + 16.207940268511 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.54709469669888, + 16.931371828019614 + ], + [ + 69.54709469669888, + 17.65480338752823 + ], + [ + 70.28637997128624, + 17.65480338752823 + ], + [ + 70.28637997128624, + 16.931371828019614 + ], + [ + 69.54709469669888, + 16.931371828019614 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.54709469669888, + 17.65480338752823 + ], + [ + 69.54709469669888, + 18.378234947036844 + ], + [ + 70.28637997128624, + 18.378234947036844 + ], + [ + 70.28637997128624, + 17.65480338752823 + ], + [ + 69.54709469669888, + 17.65480338752823 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.54709469669888, + 18.378234947036844 + ], + [ + 69.54709469669888, + 19.10166650654546 + ], + [ + 70.28637997128624, + 19.10166650654546 + ], + [ + 70.28637997128624, + 18.378234947036844 + ], + [ + 69.54709469669888, + 18.378234947036844 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.54709469669888, + 19.10166650654546 + ], + [ + 69.54709469669888, + 19.825098066054075 + ], + [ + 70.28637997128624, + 19.825098066054075 + ], + [ + 70.28637997128624, + 19.10166650654546 + ], + [ + 69.54709469669888, + 19.10166650654546 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.54709469669888, + 19.825098066054075 + ], + [ + 69.54709469669888, + 20.54852962556269 + ], + [ + 70.28637997128624, + 20.54852962556269 + ], + [ + 70.28637997128624, + 19.825098066054075 + ], + [ + 69.54709469669888, + 19.825098066054075 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.54709469669888, + 20.54852962556269 + ], + [ + 69.54709469669888, + 21.271961185071305 + ], + [ + 70.28637997128624, + 21.271961185071305 + ], + [ + 70.28637997128624, + 20.54852962556269 + ], + [ + 69.54709469669888, + 20.54852962556269 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.54709469669888, + 21.271961185071305 + ], + [ + 69.54709469669888, + 21.99539274457992 + ], + [ + 70.28637997128624, + 21.99539274457992 + ], + [ + 70.28637997128624, + 21.271961185071305 + ], + [ + 69.54709469669888, + 21.271961185071305 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.54709469669888, + 21.99539274457992 + ], + [ + 69.54709469669888, + 22.718824304088535 + ], + [ + 70.28637997128624, + 22.718824304088535 + ], + [ + 70.28637997128624, + 21.99539274457992 + ], + [ + 69.54709469669888, + 21.99539274457992 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.54709469669888, + 22.718824304088535 + ], + [ + 69.54709469669888, + 23.44225586359715 + ], + [ + 70.28637997128624, + 23.44225586359715 + ], + [ + 70.28637997128624, + 22.718824304088535 + ], + [ + 69.54709469669888, + 22.718824304088535 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.54709469669888, + 23.44225586359715 + ], + [ + 69.54709469669888, + 24.165687423105766 + ], + [ + 70.28637997128624, + 24.165687423105766 + ], + [ + 70.28637997128624, + 23.44225586359715 + ], + [ + 69.54709469669888, + 23.44225586359715 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.54709469669888, + 24.165687423105766 + ], + [ + 69.54709469669888, + 24.88911898261438 + ], + [ + 70.28637997128624, + 24.88911898261438 + ], + [ + 70.28637997128624, + 24.165687423105766 + ], + [ + 69.54709469669888, + 24.165687423105766 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.54709469669888, + 24.88911898261438 + ], + [ + 69.54709469669888, + 25.612550542122996 + ], + [ + 70.28637997128624, + 25.612550542122996 + ], + [ + 70.28637997128624, + 24.88911898261438 + ], + [ + 69.54709469669888, + 24.88911898261438 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.54709469669888, + 25.612550542122996 + ], + [ + 69.54709469669888, + 26.33598210163161 + ], + [ + 70.28637997128624, + 26.33598210163161 + ], + [ + 70.28637997128624, + 25.612550542122996 + ], + [ + 69.54709469669888, + 25.612550542122996 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.54709469669888, + 26.33598210163161 + ], + [ + 69.54709469669888, + 27.059413661140226 + ], + [ + 70.28637997128624, + 27.059413661140226 + ], + [ + 70.28637997128624, + 26.33598210163161 + ], + [ + 69.54709469669888, + 26.33598210163161 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.54709469669888, + 27.059413661140226 + ], + [ + 69.54709469669888, + 27.78284522064884 + ], + [ + 70.28637997128624, + 27.78284522064884 + ], + [ + 70.28637997128624, + 27.059413661140226 + ], + [ + 69.54709469669888, + 27.059413661140226 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.54709469669888, + 27.78284522064884 + ], + [ + 69.54709469669888, + 28.506276780157457 + ], + [ + 70.28637997128624, + 28.506276780157457 + ], + [ + 70.28637997128624, + 27.78284522064884 + ], + [ + 69.54709469669888, + 27.78284522064884 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.54709469669888, + 28.506276780157457 + ], + [ + 69.54709469669888, + 29.22970833966607 + ], + [ + 70.28637997128624, + 29.22970833966607 + ], + [ + 70.28637997128624, + 28.506276780157457 + ], + [ + 69.54709469669888, + 28.506276780157457 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.54709469669888, + 29.22970833966607 + ], + [ + 69.54709469669888, + 29.953139899174687 + ], + [ + 70.28637997128624, + 29.953139899174687 + ], + [ + 70.28637997128624, + 29.22970833966607 + ], + [ + 69.54709469669888, + 29.22970833966607 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.54709469669888, + 29.953139899174687 + ], + [ + 69.54709469669888, + 30.676571458683302 + ], + [ + 70.28637997128624, + 30.676571458683302 + ], + [ + 70.28637997128624, + 29.953139899174687 + ], + [ + 69.54709469669888, + 29.953139899174687 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.54709469669888, + 30.676571458683302 + ], + [ + 69.54709469669888, + 31.400003018191917 + ], + [ + 70.28637997128624, + 31.400003018191917 + ], + [ + 70.28637997128624, + 30.676571458683302 + ], + [ + 69.54709469669888, + 30.676571458683302 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.54709469669888, + 31.400003018191917 + ], + [ + 69.54709469669888, + 32.123434577700536 + ], + [ + 70.28637997128624, + 32.123434577700536 + ], + [ + 70.28637997128624, + 31.400003018191917 + ], + [ + 69.54709469669888, + 31.400003018191917 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.54709469669888, + 32.123434577700536 + ], + [ + 69.54709469669888, + 32.84686613720915 + ], + [ + 70.28637997128624, + 32.84686613720915 + ], + [ + 70.28637997128624, + 32.123434577700536 + ], + [ + 69.54709469669888, + 32.123434577700536 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.54709469669888, + 32.84686613720915 + ], + [ + 69.54709469669888, + 33.57029769671776 + ], + [ + 70.28637997128624, + 33.57029769671776 + ], + [ + 70.28637997128624, + 32.84686613720915 + ], + [ + 69.54709469669888, + 32.84686613720915 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.54709469669888, + 33.57029769671776 + ], + [ + 69.54709469669888, + 34.29372925622637 + ], + [ + 70.28637997128624, + 34.29372925622637 + ], + [ + 70.28637997128624, + 33.57029769671776 + ], + [ + 69.54709469669888, + 33.57029769671776 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.54709469669888, + 34.29372925622637 + ], + [ + 69.54709469669888, + 35.01716081573498 + ], + [ + 70.28637997128624, + 35.01716081573498 + ], + [ + 70.28637997128624, + 34.29372925622637 + ], + [ + 69.54709469669888, + 34.29372925622637 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.54709469669888, + 35.01716081573498 + ], + [ + 69.54709469669888, + 35.740592375243594 + ], + [ + 70.28637997128624, + 35.740592375243594 + ], + [ + 70.28637997128624, + 35.01716081573498 + ], + [ + 69.54709469669888, + 35.01716081573498 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.54709469669888, + 35.740592375243594 + ], + [ + 69.54709469669888, + 36.464023934752205 + ], + [ + 70.28637997128624, + 36.464023934752205 + ], + [ + 70.28637997128624, + 35.740592375243594 + ], + [ + 69.54709469669888, + 35.740592375243594 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.54709469669888, + 36.464023934752205 + ], + [ + 69.54709469669888, + 37.18745549426082 + ], + [ + 70.28637997128624, + 37.18745549426082 + ], + [ + 70.28637997128624, + 36.464023934752205 + ], + [ + 69.54709469669888, + 36.464023934752205 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.54709469669888, + 37.18745549426082 + ], + [ + 69.54709469669888, + 37.91088705376943 + ], + [ + 70.28637997128624, + 37.91088705376943 + ], + [ + 70.28637997128624, + 37.18745549426082 + ], + [ + 69.54709469669888, + 37.18745549426082 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.54709469669888, + 37.91088705376943 + ], + [ + 69.54709469669888, + 38.63431861327804 + ], + [ + 70.28637997128624, + 38.63431861327804 + ], + [ + 70.28637997128624, + 37.91088705376943 + ], + [ + 69.54709469669888, + 37.91088705376943 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.54709469669888, + 38.63431861327804 + ], + [ + 69.54709469669888, + 39.35775017278665 + ], + [ + 70.28637997128624, + 39.35775017278665 + ], + [ + 70.28637997128624, + 38.63431861327804 + ], + [ + 69.54709469669888, + 38.63431861327804 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.54709469669888, + 39.35775017278665 + ], + [ + 69.54709469669888, + 40.08118173229526 + ], + [ + 70.28637997128624, + 40.08118173229526 + ], + [ + 70.28637997128624, + 39.35775017278665 + ], + [ + 69.54709469669888, + 39.35775017278665 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.54709469669888, + 40.08118173229526 + ], + [ + 69.54709469669888, + 40.804613291803875 + ], + [ + 70.28637997128624, + 40.804613291803875 + ], + [ + 70.28637997128624, + 40.08118173229526 + ], + [ + 69.54709469669888, + 40.08118173229526 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.54709469669888, + 40.804613291803875 + ], + [ + 69.54709469669888, + 41.52804485131249 + ], + [ + 70.28637997128624, + 41.52804485131249 + ], + [ + 70.28637997128624, + 40.804613291803875 + ], + [ + 69.54709469669888, + 40.804613291803875 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.54709469669888, + 41.52804485131249 + ], + [ + 69.54709469669888, + 42.2514764108211 + ], + [ + 70.28637997128624, + 42.2514764108211 + ], + [ + 70.28637997128624, + 41.52804485131249 + ], + [ + 69.54709469669888, + 41.52804485131249 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.54709469669888, + 42.2514764108211 + ], + [ + 69.54709469669888, + 42.97490797032971 + ], + [ + 70.28637997128624, + 42.97490797032971 + ], + [ + 70.28637997128624, + 42.2514764108211 + ], + [ + 69.54709469669888, + 42.2514764108211 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.54709469669888, + 42.97490797032971 + ], + [ + 69.54709469669888, + 43.69833952983832 + ], + [ + 70.28637997128624, + 43.69833952983832 + ], + [ + 70.28637997128624, + 42.97490797032971 + ], + [ + 69.54709469669888, + 42.97490797032971 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.54709469669888, + 43.69833952983832 + ], + [ + 69.54709469669888, + 44.42177108934693 + ], + [ + 70.28637997128624, + 44.42177108934693 + ], + [ + 70.28637997128624, + 43.69833952983832 + ], + [ + 69.54709469669888, + 43.69833952983832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.54709469669888, + 44.42177108934693 + ], + [ + 69.54709469669888, + 45.145202648855545 + ], + [ + 70.28637997128624, + 45.145202648855545 + ], + [ + 70.28637997128624, + 44.42177108934693 + ], + [ + 69.54709469669888, + 44.42177108934693 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.54709469669888, + 45.145202648855545 + ], + [ + 69.54709469669888, + 45.868634208364156 + ], + [ + 70.28637997128624, + 45.868634208364156 + ], + [ + 70.28637997128624, + 45.145202648855545 + ], + [ + 69.54709469669888, + 45.145202648855545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.54709469669888, + 45.868634208364156 + ], + [ + 69.54709469669888, + 46.59206576787277 + ], + [ + 70.28637997128624, + 46.59206576787277 + ], + [ + 70.28637997128624, + 45.868634208364156 + ], + [ + 69.54709469669888, + 45.868634208364156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.54709469669888, + 46.59206576787277 + ], + [ + 69.54709469669888, + 47.31549732738138 + ], + [ + 70.28637997128624, + 47.31549732738138 + ], + [ + 70.28637997128624, + 46.59206576787277 + ], + [ + 69.54709469669888, + 46.59206576787277 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.54709469669888, + 47.31549732738138 + ], + [ + 69.54709469669888, + 48.03892888688999 + ], + [ + 70.28637997128624, + 48.03892888688999 + ], + [ + 70.28637997128624, + 47.31549732738138 + ], + [ + 69.54709469669888, + 47.31549732738138 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.28637997128624, + 11.867350911459308 + ], + [ + 70.28637997128624, + 12.590782470967923 + ], + [ + 71.0256652458736, + 12.590782470967923 + ], + [ + 71.0256652458736, + 11.867350911459308 + ], + [ + 70.28637997128624, + 11.867350911459308 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.28637997128624, + 12.590782470967923 + ], + [ + 70.28637997128624, + 13.314214030476538 + ], + [ + 71.0256652458736, + 13.314214030476538 + ], + [ + 71.0256652458736, + 12.590782470967923 + ], + [ + 70.28637997128624, + 12.590782470967923 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.28637997128624, + 13.314214030476538 + ], + [ + 70.28637997128624, + 14.037645589985154 + ], + [ + 71.0256652458736, + 14.037645589985154 + ], + [ + 71.0256652458736, + 13.314214030476538 + ], + [ + 70.28637997128624, + 13.314214030476538 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.28637997128624, + 14.037645589985154 + ], + [ + 70.28637997128624, + 14.761077149493769 + ], + [ + 71.0256652458736, + 14.761077149493769 + ], + [ + 71.0256652458736, + 14.037645589985154 + ], + [ + 70.28637997128624, + 14.037645589985154 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.28637997128624, + 14.761077149493769 + ], + [ + 70.28637997128624, + 15.484508709002384 + ], + [ + 71.0256652458736, + 15.484508709002384 + ], + [ + 71.0256652458736, + 14.761077149493769 + ], + [ + 70.28637997128624, + 14.761077149493769 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.28637997128624, + 15.484508709002384 + ], + [ + 70.28637997128624, + 16.207940268511 + ], + [ + 71.0256652458736, + 16.207940268511 + ], + [ + 71.0256652458736, + 15.484508709002384 + ], + [ + 70.28637997128624, + 15.484508709002384 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.28637997128624, + 16.207940268511 + ], + [ + 70.28637997128624, + 16.931371828019614 + ], + [ + 71.0256652458736, + 16.931371828019614 + ], + [ + 71.0256652458736, + 16.207940268511 + ], + [ + 70.28637997128624, + 16.207940268511 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.28637997128624, + 16.931371828019614 + ], + [ + 70.28637997128624, + 17.65480338752823 + ], + [ + 71.0256652458736, + 17.65480338752823 + ], + [ + 71.0256652458736, + 16.931371828019614 + ], + [ + 70.28637997128624, + 16.931371828019614 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.28637997128624, + 17.65480338752823 + ], + [ + 70.28637997128624, + 18.378234947036844 + ], + [ + 71.0256652458736, + 18.378234947036844 + ], + [ + 71.0256652458736, + 17.65480338752823 + ], + [ + 70.28637997128624, + 17.65480338752823 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.28637997128624, + 18.378234947036844 + ], + [ + 70.28637997128624, + 19.10166650654546 + ], + [ + 71.0256652458736, + 19.10166650654546 + ], + [ + 71.0256652458736, + 18.378234947036844 + ], + [ + 70.28637997128624, + 18.378234947036844 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.28637997128624, + 19.10166650654546 + ], + [ + 70.28637997128624, + 19.825098066054075 + ], + [ + 71.0256652458736, + 19.825098066054075 + ], + [ + 71.0256652458736, + 19.10166650654546 + ], + [ + 70.28637997128624, + 19.10166650654546 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.28637997128624, + 19.825098066054075 + ], + [ + 70.28637997128624, + 20.54852962556269 + ], + [ + 71.0256652458736, + 20.54852962556269 + ], + [ + 71.0256652458736, + 19.825098066054075 + ], + [ + 70.28637997128624, + 19.825098066054075 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.28637997128624, + 20.54852962556269 + ], + [ + 70.28637997128624, + 21.271961185071305 + ], + [ + 71.0256652458736, + 21.271961185071305 + ], + [ + 71.0256652458736, + 20.54852962556269 + ], + [ + 70.28637997128624, + 20.54852962556269 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.28637997128624, + 21.271961185071305 + ], + [ + 70.28637997128624, + 21.99539274457992 + ], + [ + 71.0256652458736, + 21.99539274457992 + ], + [ + 71.0256652458736, + 21.271961185071305 + ], + [ + 70.28637997128624, + 21.271961185071305 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.28637997128624, + 21.99539274457992 + ], + [ + 70.28637997128624, + 22.718824304088535 + ], + [ + 71.0256652458736, + 22.718824304088535 + ], + [ + 71.0256652458736, + 21.99539274457992 + ], + [ + 70.28637997128624, + 21.99539274457992 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.28637997128624, + 22.718824304088535 + ], + [ + 70.28637997128624, + 23.44225586359715 + ], + [ + 71.0256652458736, + 23.44225586359715 + ], + [ + 71.0256652458736, + 22.718824304088535 + ], + [ + 70.28637997128624, + 22.718824304088535 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.28637997128624, + 23.44225586359715 + ], + [ + 70.28637997128624, + 24.165687423105766 + ], + [ + 71.0256652458736, + 24.165687423105766 + ], + [ + 71.0256652458736, + 23.44225586359715 + ], + [ + 70.28637997128624, + 23.44225586359715 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.28637997128624, + 24.165687423105766 + ], + [ + 70.28637997128624, + 24.88911898261438 + ], + [ + 71.0256652458736, + 24.88911898261438 + ], + [ + 71.0256652458736, + 24.165687423105766 + ], + [ + 70.28637997128624, + 24.165687423105766 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.28637997128624, + 24.88911898261438 + ], + [ + 70.28637997128624, + 25.612550542122996 + ], + [ + 71.0256652458736, + 25.612550542122996 + ], + [ + 71.0256652458736, + 24.88911898261438 + ], + [ + 70.28637997128624, + 24.88911898261438 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.28637997128624, + 25.612550542122996 + ], + [ + 70.28637997128624, + 26.33598210163161 + ], + [ + 71.0256652458736, + 26.33598210163161 + ], + [ + 71.0256652458736, + 25.612550542122996 + ], + [ + 70.28637997128624, + 25.612550542122996 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.28637997128624, + 26.33598210163161 + ], + [ + 70.28637997128624, + 27.059413661140226 + ], + [ + 71.0256652458736, + 27.059413661140226 + ], + [ + 71.0256652458736, + 26.33598210163161 + ], + [ + 70.28637997128624, + 26.33598210163161 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.28637997128624, + 27.059413661140226 + ], + [ + 70.28637997128624, + 27.78284522064884 + ], + [ + 71.0256652458736, + 27.78284522064884 + ], + [ + 71.0256652458736, + 27.059413661140226 + ], + [ + 70.28637997128624, + 27.059413661140226 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.28637997128624, + 27.78284522064884 + ], + [ + 70.28637997128624, + 28.506276780157457 + ], + [ + 71.0256652458736, + 28.506276780157457 + ], + [ + 71.0256652458736, + 27.78284522064884 + ], + [ + 70.28637997128624, + 27.78284522064884 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.28637997128624, + 28.506276780157457 + ], + [ + 70.28637997128624, + 29.22970833966607 + ], + [ + 71.0256652458736, + 29.22970833966607 + ], + [ + 71.0256652458736, + 28.506276780157457 + ], + [ + 70.28637997128624, + 28.506276780157457 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.28637997128624, + 29.22970833966607 + ], + [ + 70.28637997128624, + 29.953139899174687 + ], + [ + 71.0256652458736, + 29.953139899174687 + ], + [ + 71.0256652458736, + 29.22970833966607 + ], + [ + 70.28637997128624, + 29.22970833966607 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.28637997128624, + 29.953139899174687 + ], + [ + 70.28637997128624, + 30.676571458683302 + ], + [ + 71.0256652458736, + 30.676571458683302 + ], + [ + 71.0256652458736, + 29.953139899174687 + ], + [ + 70.28637997128624, + 29.953139899174687 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.28637997128624, + 30.676571458683302 + ], + [ + 70.28637997128624, + 31.400003018191917 + ], + [ + 71.0256652458736, + 31.400003018191917 + ], + [ + 71.0256652458736, + 30.676571458683302 + ], + [ + 70.28637997128624, + 30.676571458683302 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.28637997128624, + 31.400003018191917 + ], + [ + 70.28637997128624, + 32.123434577700536 + ], + [ + 71.0256652458736, + 32.123434577700536 + ], + [ + 71.0256652458736, + 31.400003018191917 + ], + [ + 70.28637997128624, + 31.400003018191917 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.28637997128624, + 32.123434577700536 + ], + [ + 70.28637997128624, + 32.84686613720915 + ], + [ + 71.0256652458736, + 32.84686613720915 + ], + [ + 71.0256652458736, + 32.123434577700536 + ], + [ + 70.28637997128624, + 32.123434577700536 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.28637997128624, + 32.84686613720915 + ], + [ + 70.28637997128624, + 33.57029769671776 + ], + [ + 71.0256652458736, + 33.57029769671776 + ], + [ + 71.0256652458736, + 32.84686613720915 + ], + [ + 70.28637997128624, + 32.84686613720915 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.28637997128624, + 33.57029769671776 + ], + [ + 70.28637997128624, + 34.29372925622637 + ], + [ + 71.0256652458736, + 34.29372925622637 + ], + [ + 71.0256652458736, + 33.57029769671776 + ], + [ + 70.28637997128624, + 33.57029769671776 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.28637997128624, + 34.29372925622637 + ], + [ + 70.28637997128624, + 35.01716081573498 + ], + [ + 71.0256652458736, + 35.01716081573498 + ], + [ + 71.0256652458736, + 34.29372925622637 + ], + [ + 70.28637997128624, + 34.29372925622637 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.28637997128624, + 35.01716081573498 + ], + [ + 70.28637997128624, + 35.740592375243594 + ], + [ + 71.0256652458736, + 35.740592375243594 + ], + [ + 71.0256652458736, + 35.01716081573498 + ], + [ + 70.28637997128624, + 35.01716081573498 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.28637997128624, + 35.740592375243594 + ], + [ + 70.28637997128624, + 36.464023934752205 + ], + [ + 71.0256652458736, + 36.464023934752205 + ], + [ + 71.0256652458736, + 35.740592375243594 + ], + [ + 70.28637997128624, + 35.740592375243594 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.28637997128624, + 36.464023934752205 + ], + [ + 70.28637997128624, + 37.18745549426082 + ], + [ + 71.0256652458736, + 37.18745549426082 + ], + [ + 71.0256652458736, + 36.464023934752205 + ], + [ + 70.28637997128624, + 36.464023934752205 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.28637997128624, + 37.18745549426082 + ], + [ + 70.28637997128624, + 37.91088705376943 + ], + [ + 71.0256652458736, + 37.91088705376943 + ], + [ + 71.0256652458736, + 37.18745549426082 + ], + [ + 70.28637997128624, + 37.18745549426082 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.28637997128624, + 37.91088705376943 + ], + [ + 70.28637997128624, + 38.63431861327804 + ], + [ + 71.0256652458736, + 38.63431861327804 + ], + [ + 71.0256652458736, + 37.91088705376943 + ], + [ + 70.28637997128624, + 37.91088705376943 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.28637997128624, + 38.63431861327804 + ], + [ + 70.28637997128624, + 39.35775017278665 + ], + [ + 71.0256652458736, + 39.35775017278665 + ], + [ + 71.0256652458736, + 38.63431861327804 + ], + [ + 70.28637997128624, + 38.63431861327804 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.28637997128624, + 39.35775017278665 + ], + [ + 70.28637997128624, + 40.08118173229526 + ], + [ + 71.0256652458736, + 40.08118173229526 + ], + [ + 71.0256652458736, + 39.35775017278665 + ], + [ + 70.28637997128624, + 39.35775017278665 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.28637997128624, + 40.08118173229526 + ], + [ + 70.28637997128624, + 40.804613291803875 + ], + [ + 71.0256652458736, + 40.804613291803875 + ], + [ + 71.0256652458736, + 40.08118173229526 + ], + [ + 70.28637997128624, + 40.08118173229526 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.28637997128624, + 40.804613291803875 + ], + [ + 70.28637997128624, + 41.52804485131249 + ], + [ + 71.0256652458736, + 41.52804485131249 + ], + [ + 71.0256652458736, + 40.804613291803875 + ], + [ + 70.28637997128624, + 40.804613291803875 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.28637997128624, + 41.52804485131249 + ], + [ + 70.28637997128624, + 42.2514764108211 + ], + [ + 71.0256652458736, + 42.2514764108211 + ], + [ + 71.0256652458736, + 41.52804485131249 + ], + [ + 70.28637997128624, + 41.52804485131249 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.28637997128624, + 42.2514764108211 + ], + [ + 70.28637997128624, + 42.97490797032971 + ], + [ + 71.0256652458736, + 42.97490797032971 + ], + [ + 71.0256652458736, + 42.2514764108211 + ], + [ + 70.28637997128624, + 42.2514764108211 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.28637997128624, + 42.97490797032971 + ], + [ + 70.28637997128624, + 43.69833952983832 + ], + [ + 71.0256652458736, + 43.69833952983832 + ], + [ + 71.0256652458736, + 42.97490797032971 + ], + [ + 70.28637997128624, + 42.97490797032971 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.28637997128624, + 43.69833952983832 + ], + [ + 70.28637997128624, + 44.42177108934693 + ], + [ + 71.0256652458736, + 44.42177108934693 + ], + [ + 71.0256652458736, + 43.69833952983832 + ], + [ + 70.28637997128624, + 43.69833952983832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.28637997128624, + 44.42177108934693 + ], + [ + 70.28637997128624, + 45.145202648855545 + ], + [ + 71.0256652458736, + 45.145202648855545 + ], + [ + 71.0256652458736, + 44.42177108934693 + ], + [ + 70.28637997128624, + 44.42177108934693 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.28637997128624, + 45.145202648855545 + ], + [ + 70.28637997128624, + 45.868634208364156 + ], + [ + 71.0256652458736, + 45.868634208364156 + ], + [ + 71.0256652458736, + 45.145202648855545 + ], + [ + 70.28637997128624, + 45.145202648855545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.28637997128624, + 45.868634208364156 + ], + [ + 70.28637997128624, + 46.59206576787277 + ], + [ + 71.0256652458736, + 46.59206576787277 + ], + [ + 71.0256652458736, + 45.868634208364156 + ], + [ + 70.28637997128624, + 45.868634208364156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.28637997128624, + 46.59206576787277 + ], + [ + 70.28637997128624, + 47.31549732738138 + ], + [ + 71.0256652458736, + 47.31549732738138 + ], + [ + 71.0256652458736, + 46.59206576787277 + ], + [ + 70.28637997128624, + 46.59206576787277 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.28637997128624, + 47.31549732738138 + ], + [ + 70.28637997128624, + 48.03892888688999 + ], + [ + 71.0256652458736, + 48.03892888688999 + ], + [ + 71.0256652458736, + 47.31549732738138 + ], + [ + 70.28637997128624, + 47.31549732738138 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.0256652458736, + 11.867350911459308 + ], + [ + 71.0256652458736, + 12.590782470967923 + ], + [ + 71.76495052046096, + 12.590782470967923 + ], + [ + 71.76495052046096, + 11.867350911459308 + ], + [ + 71.0256652458736, + 11.867350911459308 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.0256652458736, + 12.590782470967923 + ], + [ + 71.0256652458736, + 13.314214030476538 + ], + [ + 71.76495052046096, + 13.314214030476538 + ], + [ + 71.76495052046096, + 12.590782470967923 + ], + [ + 71.0256652458736, + 12.590782470967923 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.0256652458736, + 13.314214030476538 + ], + [ + 71.0256652458736, + 14.037645589985154 + ], + [ + 71.76495052046096, + 14.037645589985154 + ], + [ + 71.76495052046096, + 13.314214030476538 + ], + [ + 71.0256652458736, + 13.314214030476538 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.0256652458736, + 14.037645589985154 + ], + [ + 71.0256652458736, + 14.761077149493769 + ], + [ + 71.76495052046096, + 14.761077149493769 + ], + [ + 71.76495052046096, + 14.037645589985154 + ], + [ + 71.0256652458736, + 14.037645589985154 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.0256652458736, + 14.761077149493769 + ], + [ + 71.0256652458736, + 15.484508709002384 + ], + [ + 71.76495052046096, + 15.484508709002384 + ], + [ + 71.76495052046096, + 14.761077149493769 + ], + [ + 71.0256652458736, + 14.761077149493769 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.0256652458736, + 15.484508709002384 + ], + [ + 71.0256652458736, + 16.207940268511 + ], + [ + 71.76495052046096, + 16.207940268511 + ], + [ + 71.76495052046096, + 15.484508709002384 + ], + [ + 71.0256652458736, + 15.484508709002384 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.0256652458736, + 16.207940268511 + ], + [ + 71.0256652458736, + 16.931371828019614 + ], + [ + 71.76495052046096, + 16.931371828019614 + ], + [ + 71.76495052046096, + 16.207940268511 + ], + [ + 71.0256652458736, + 16.207940268511 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.0256652458736, + 16.931371828019614 + ], + [ + 71.0256652458736, + 17.65480338752823 + ], + [ + 71.76495052046096, + 17.65480338752823 + ], + [ + 71.76495052046096, + 16.931371828019614 + ], + [ + 71.0256652458736, + 16.931371828019614 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.0256652458736, + 17.65480338752823 + ], + [ + 71.0256652458736, + 18.378234947036844 + ], + [ + 71.76495052046096, + 18.378234947036844 + ], + [ + 71.76495052046096, + 17.65480338752823 + ], + [ + 71.0256652458736, + 17.65480338752823 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.0256652458736, + 18.378234947036844 + ], + [ + 71.0256652458736, + 19.10166650654546 + ], + [ + 71.76495052046096, + 19.10166650654546 + ], + [ + 71.76495052046096, + 18.378234947036844 + ], + [ + 71.0256652458736, + 18.378234947036844 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.0256652458736, + 19.10166650654546 + ], + [ + 71.0256652458736, + 19.825098066054075 + ], + [ + 71.76495052046096, + 19.825098066054075 + ], + [ + 71.76495052046096, + 19.10166650654546 + ], + [ + 71.0256652458736, + 19.10166650654546 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.0256652458736, + 19.825098066054075 + ], + [ + 71.0256652458736, + 20.54852962556269 + ], + [ + 71.76495052046096, + 20.54852962556269 + ], + [ + 71.76495052046096, + 19.825098066054075 + ], + [ + 71.0256652458736, + 19.825098066054075 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.0256652458736, + 20.54852962556269 + ], + [ + 71.0256652458736, + 21.271961185071305 + ], + [ + 71.76495052046096, + 21.271961185071305 + ], + [ + 71.76495052046096, + 20.54852962556269 + ], + [ + 71.0256652458736, + 20.54852962556269 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.0256652458736, + 21.271961185071305 + ], + [ + 71.0256652458736, + 21.99539274457992 + ], + [ + 71.76495052046096, + 21.99539274457992 + ], + [ + 71.76495052046096, + 21.271961185071305 + ], + [ + 71.0256652458736, + 21.271961185071305 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.0256652458736, + 21.99539274457992 + ], + [ + 71.0256652458736, + 22.718824304088535 + ], + [ + 71.76495052046096, + 22.718824304088535 + ], + [ + 71.76495052046096, + 21.99539274457992 + ], + [ + 71.0256652458736, + 21.99539274457992 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.0256652458736, + 22.718824304088535 + ], + [ + 71.0256652458736, + 23.44225586359715 + ], + [ + 71.76495052046096, + 23.44225586359715 + ], + [ + 71.76495052046096, + 22.718824304088535 + ], + [ + 71.0256652458736, + 22.718824304088535 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.0256652458736, + 23.44225586359715 + ], + [ + 71.0256652458736, + 24.165687423105766 + ], + [ + 71.76495052046096, + 24.165687423105766 + ], + [ + 71.76495052046096, + 23.44225586359715 + ], + [ + 71.0256652458736, + 23.44225586359715 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.0256652458736, + 24.165687423105766 + ], + [ + 71.0256652458736, + 24.88911898261438 + ], + [ + 71.76495052046096, + 24.88911898261438 + ], + [ + 71.76495052046096, + 24.165687423105766 + ], + [ + 71.0256652458736, + 24.165687423105766 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.0256652458736, + 24.88911898261438 + ], + [ + 71.0256652458736, + 25.612550542122996 + ], + [ + 71.76495052046096, + 25.612550542122996 + ], + [ + 71.76495052046096, + 24.88911898261438 + ], + [ + 71.0256652458736, + 24.88911898261438 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.0256652458736, + 25.612550542122996 + ], + [ + 71.0256652458736, + 26.33598210163161 + ], + [ + 71.76495052046096, + 26.33598210163161 + ], + [ + 71.76495052046096, + 25.612550542122996 + ], + [ + 71.0256652458736, + 25.612550542122996 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.0256652458736, + 26.33598210163161 + ], + [ + 71.0256652458736, + 27.059413661140226 + ], + [ + 71.76495052046096, + 27.059413661140226 + ], + [ + 71.76495052046096, + 26.33598210163161 + ], + [ + 71.0256652458736, + 26.33598210163161 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.0256652458736, + 27.059413661140226 + ], + [ + 71.0256652458736, + 27.78284522064884 + ], + [ + 71.76495052046096, + 27.78284522064884 + ], + [ + 71.76495052046096, + 27.059413661140226 + ], + [ + 71.0256652458736, + 27.059413661140226 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.0256652458736, + 27.78284522064884 + ], + [ + 71.0256652458736, + 28.506276780157457 + ], + [ + 71.76495052046096, + 28.506276780157457 + ], + [ + 71.76495052046096, + 27.78284522064884 + ], + [ + 71.0256652458736, + 27.78284522064884 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.0256652458736, + 28.506276780157457 + ], + [ + 71.0256652458736, + 29.22970833966607 + ], + [ + 71.76495052046096, + 29.22970833966607 + ], + [ + 71.76495052046096, + 28.506276780157457 + ], + [ + 71.0256652458736, + 28.506276780157457 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.0256652458736, + 29.22970833966607 + ], + [ + 71.0256652458736, + 29.953139899174687 + ], + [ + 71.76495052046096, + 29.953139899174687 + ], + [ + 71.76495052046096, + 29.22970833966607 + ], + [ + 71.0256652458736, + 29.22970833966607 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.0256652458736, + 29.953139899174687 + ], + [ + 71.0256652458736, + 30.676571458683302 + ], + [ + 71.76495052046096, + 30.676571458683302 + ], + [ + 71.76495052046096, + 29.953139899174687 + ], + [ + 71.0256652458736, + 29.953139899174687 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.0256652458736, + 30.676571458683302 + ], + [ + 71.0256652458736, + 31.400003018191917 + ], + [ + 71.76495052046096, + 31.400003018191917 + ], + [ + 71.76495052046096, + 30.676571458683302 + ], + [ + 71.0256652458736, + 30.676571458683302 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.0256652458736, + 31.400003018191917 + ], + [ + 71.0256652458736, + 32.123434577700536 + ], + [ + 71.76495052046096, + 32.123434577700536 + ], + [ + 71.76495052046096, + 31.400003018191917 + ], + [ + 71.0256652458736, + 31.400003018191917 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.0256652458736, + 32.123434577700536 + ], + [ + 71.0256652458736, + 32.84686613720915 + ], + [ + 71.76495052046096, + 32.84686613720915 + ], + [ + 71.76495052046096, + 32.123434577700536 + ], + [ + 71.0256652458736, + 32.123434577700536 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.0256652458736, + 32.84686613720915 + ], + [ + 71.0256652458736, + 33.57029769671776 + ], + [ + 71.76495052046096, + 33.57029769671776 + ], + [ + 71.76495052046096, + 32.84686613720915 + ], + [ + 71.0256652458736, + 32.84686613720915 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.0256652458736, + 33.57029769671776 + ], + [ + 71.0256652458736, + 34.29372925622637 + ], + [ + 71.76495052046096, + 34.29372925622637 + ], + [ + 71.76495052046096, + 33.57029769671776 + ], + [ + 71.0256652458736, + 33.57029769671776 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.0256652458736, + 34.29372925622637 + ], + [ + 71.0256652458736, + 35.01716081573498 + ], + [ + 71.76495052046096, + 35.01716081573498 + ], + [ + 71.76495052046096, + 34.29372925622637 + ], + [ + 71.0256652458736, + 34.29372925622637 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.0256652458736, + 35.01716081573498 + ], + [ + 71.0256652458736, + 35.740592375243594 + ], + [ + 71.76495052046096, + 35.740592375243594 + ], + [ + 71.76495052046096, + 35.01716081573498 + ], + [ + 71.0256652458736, + 35.01716081573498 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.0256652458736, + 35.740592375243594 + ], + [ + 71.0256652458736, + 36.464023934752205 + ], + [ + 71.76495052046096, + 36.464023934752205 + ], + [ + 71.76495052046096, + 35.740592375243594 + ], + [ + 71.0256652458736, + 35.740592375243594 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.0256652458736, + 36.464023934752205 + ], + [ + 71.0256652458736, + 37.18745549426082 + ], + [ + 71.76495052046096, + 37.18745549426082 + ], + [ + 71.76495052046096, + 36.464023934752205 + ], + [ + 71.0256652458736, + 36.464023934752205 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.0256652458736, + 37.18745549426082 + ], + [ + 71.0256652458736, + 37.91088705376943 + ], + [ + 71.76495052046096, + 37.91088705376943 + ], + [ + 71.76495052046096, + 37.18745549426082 + ], + [ + 71.0256652458736, + 37.18745549426082 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.0256652458736, + 37.91088705376943 + ], + [ + 71.0256652458736, + 38.63431861327804 + ], + [ + 71.76495052046096, + 38.63431861327804 + ], + [ + 71.76495052046096, + 37.91088705376943 + ], + [ + 71.0256652458736, + 37.91088705376943 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.0256652458736, + 38.63431861327804 + ], + [ + 71.0256652458736, + 39.35775017278665 + ], + [ + 71.76495052046096, + 39.35775017278665 + ], + [ + 71.76495052046096, + 38.63431861327804 + ], + [ + 71.0256652458736, + 38.63431861327804 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.0256652458736, + 39.35775017278665 + ], + [ + 71.0256652458736, + 40.08118173229526 + ], + [ + 71.76495052046096, + 40.08118173229526 + ], + [ + 71.76495052046096, + 39.35775017278665 + ], + [ + 71.0256652458736, + 39.35775017278665 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.0256652458736, + 40.08118173229526 + ], + [ + 71.0256652458736, + 40.804613291803875 + ], + [ + 71.76495052046096, + 40.804613291803875 + ], + [ + 71.76495052046096, + 40.08118173229526 + ], + [ + 71.0256652458736, + 40.08118173229526 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.0256652458736, + 40.804613291803875 + ], + [ + 71.0256652458736, + 41.52804485131249 + ], + [ + 71.76495052046096, + 41.52804485131249 + ], + [ + 71.76495052046096, + 40.804613291803875 + ], + [ + 71.0256652458736, + 40.804613291803875 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.0256652458736, + 41.52804485131249 + ], + [ + 71.0256652458736, + 42.2514764108211 + ], + [ + 71.76495052046096, + 42.2514764108211 + ], + [ + 71.76495052046096, + 41.52804485131249 + ], + [ + 71.0256652458736, + 41.52804485131249 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.0256652458736, + 42.2514764108211 + ], + [ + 71.0256652458736, + 42.97490797032971 + ], + [ + 71.76495052046096, + 42.97490797032971 + ], + [ + 71.76495052046096, + 42.2514764108211 + ], + [ + 71.0256652458736, + 42.2514764108211 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.0256652458736, + 42.97490797032971 + ], + [ + 71.0256652458736, + 43.69833952983832 + ], + [ + 71.76495052046096, + 43.69833952983832 + ], + [ + 71.76495052046096, + 42.97490797032971 + ], + [ + 71.0256652458736, + 42.97490797032971 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.0256652458736, + 43.69833952983832 + ], + [ + 71.0256652458736, + 44.42177108934693 + ], + [ + 71.76495052046096, + 44.42177108934693 + ], + [ + 71.76495052046096, + 43.69833952983832 + ], + [ + 71.0256652458736, + 43.69833952983832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.0256652458736, + 44.42177108934693 + ], + [ + 71.0256652458736, + 45.145202648855545 + ], + [ + 71.76495052046096, + 45.145202648855545 + ], + [ + 71.76495052046096, + 44.42177108934693 + ], + [ + 71.0256652458736, + 44.42177108934693 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.0256652458736, + 45.145202648855545 + ], + [ + 71.0256652458736, + 45.868634208364156 + ], + [ + 71.76495052046096, + 45.868634208364156 + ], + [ + 71.76495052046096, + 45.145202648855545 + ], + [ + 71.0256652458736, + 45.145202648855545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.0256652458736, + 45.868634208364156 + ], + [ + 71.0256652458736, + 46.59206576787277 + ], + [ + 71.76495052046096, + 46.59206576787277 + ], + [ + 71.76495052046096, + 45.868634208364156 + ], + [ + 71.0256652458736, + 45.868634208364156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.0256652458736, + 46.59206576787277 + ], + [ + 71.0256652458736, + 47.31549732738138 + ], + [ + 71.76495052046096, + 47.31549732738138 + ], + [ + 71.76495052046096, + 46.59206576787277 + ], + [ + 71.0256652458736, + 46.59206576787277 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.0256652458736, + 47.31549732738138 + ], + [ + 71.0256652458736, + 48.03892888688999 + ], + [ + 71.76495052046096, + 48.03892888688999 + ], + [ + 71.76495052046096, + 47.31549732738138 + ], + [ + 71.0256652458736, + 47.31549732738138 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.76495052046096, + 11.867350911459308 + ], + [ + 71.76495052046096, + 12.590782470967923 + ], + [ + 72.50423579504832, + 12.590782470967923 + ], + [ + 72.50423579504832, + 11.867350911459308 + ], + [ + 71.76495052046096, + 11.867350911459308 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.76495052046096, + 12.590782470967923 + ], + [ + 71.76495052046096, + 13.314214030476538 + ], + [ + 72.50423579504832, + 13.314214030476538 + ], + [ + 72.50423579504832, + 12.590782470967923 + ], + [ + 71.76495052046096, + 12.590782470967923 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.76495052046096, + 13.314214030476538 + ], + [ + 71.76495052046096, + 14.037645589985154 + ], + [ + 72.50423579504832, + 14.037645589985154 + ], + [ + 72.50423579504832, + 13.314214030476538 + ], + [ + 71.76495052046096, + 13.314214030476538 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.76495052046096, + 14.037645589985154 + ], + [ + 71.76495052046096, + 14.761077149493769 + ], + [ + 72.50423579504832, + 14.761077149493769 + ], + [ + 72.50423579504832, + 14.037645589985154 + ], + [ + 71.76495052046096, + 14.037645589985154 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.76495052046096, + 14.761077149493769 + ], + [ + 71.76495052046096, + 15.484508709002384 + ], + [ + 72.50423579504832, + 15.484508709002384 + ], + [ + 72.50423579504832, + 14.761077149493769 + ], + [ + 71.76495052046096, + 14.761077149493769 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.76495052046096, + 15.484508709002384 + ], + [ + 71.76495052046096, + 16.207940268511 + ], + [ + 72.50423579504832, + 16.207940268511 + ], + [ + 72.50423579504832, + 15.484508709002384 + ], + [ + 71.76495052046096, + 15.484508709002384 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.76495052046096, + 16.207940268511 + ], + [ + 71.76495052046096, + 16.931371828019614 + ], + [ + 72.50423579504832, + 16.931371828019614 + ], + [ + 72.50423579504832, + 16.207940268511 + ], + [ + 71.76495052046096, + 16.207940268511 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.76495052046096, + 16.931371828019614 + ], + [ + 71.76495052046096, + 17.65480338752823 + ], + [ + 72.50423579504832, + 17.65480338752823 + ], + [ + 72.50423579504832, + 16.931371828019614 + ], + [ + 71.76495052046096, + 16.931371828019614 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.76495052046096, + 17.65480338752823 + ], + [ + 71.76495052046096, + 18.378234947036844 + ], + [ + 72.50423579504832, + 18.378234947036844 + ], + [ + 72.50423579504832, + 17.65480338752823 + ], + [ + 71.76495052046096, + 17.65480338752823 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.76495052046096, + 18.378234947036844 + ], + [ + 71.76495052046096, + 19.10166650654546 + ], + [ + 72.50423579504832, + 19.10166650654546 + ], + [ + 72.50423579504832, + 18.378234947036844 + ], + [ + 71.76495052046096, + 18.378234947036844 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.76495052046096, + 19.10166650654546 + ], + [ + 71.76495052046096, + 19.825098066054075 + ], + [ + 72.50423579504832, + 19.825098066054075 + ], + [ + 72.50423579504832, + 19.10166650654546 + ], + [ + 71.76495052046096, + 19.10166650654546 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.76495052046096, + 19.825098066054075 + ], + [ + 71.76495052046096, + 20.54852962556269 + ], + [ + 72.50423579504832, + 20.54852962556269 + ], + [ + 72.50423579504832, + 19.825098066054075 + ], + [ + 71.76495052046096, + 19.825098066054075 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.76495052046096, + 20.54852962556269 + ], + [ + 71.76495052046096, + 21.271961185071305 + ], + [ + 72.50423579504832, + 21.271961185071305 + ], + [ + 72.50423579504832, + 20.54852962556269 + ], + [ + 71.76495052046096, + 20.54852962556269 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.76495052046096, + 21.271961185071305 + ], + [ + 71.76495052046096, + 21.99539274457992 + ], + [ + 72.50423579504832, + 21.99539274457992 + ], + [ + 72.50423579504832, + 21.271961185071305 + ], + [ + 71.76495052046096, + 21.271961185071305 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.76495052046096, + 21.99539274457992 + ], + [ + 71.76495052046096, + 22.718824304088535 + ], + [ + 72.50423579504832, + 22.718824304088535 + ], + [ + 72.50423579504832, + 21.99539274457992 + ], + [ + 71.76495052046096, + 21.99539274457992 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.76495052046096, + 22.718824304088535 + ], + [ + 71.76495052046096, + 23.44225586359715 + ], + [ + 72.50423579504832, + 23.44225586359715 + ], + [ + 72.50423579504832, + 22.718824304088535 + ], + [ + 71.76495052046096, + 22.718824304088535 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.76495052046096, + 23.44225586359715 + ], + [ + 71.76495052046096, + 24.165687423105766 + ], + [ + 72.50423579504832, + 24.165687423105766 + ], + [ + 72.50423579504832, + 23.44225586359715 + ], + [ + 71.76495052046096, + 23.44225586359715 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.76495052046096, + 24.165687423105766 + ], + [ + 71.76495052046096, + 24.88911898261438 + ], + [ + 72.50423579504832, + 24.88911898261438 + ], + [ + 72.50423579504832, + 24.165687423105766 + ], + [ + 71.76495052046096, + 24.165687423105766 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.76495052046096, + 24.88911898261438 + ], + [ + 71.76495052046096, + 25.612550542122996 + ], + [ + 72.50423579504832, + 25.612550542122996 + ], + [ + 72.50423579504832, + 24.88911898261438 + ], + [ + 71.76495052046096, + 24.88911898261438 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.76495052046096, + 25.612550542122996 + ], + [ + 71.76495052046096, + 26.33598210163161 + ], + [ + 72.50423579504832, + 26.33598210163161 + ], + [ + 72.50423579504832, + 25.612550542122996 + ], + [ + 71.76495052046096, + 25.612550542122996 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.76495052046096, + 26.33598210163161 + ], + [ + 71.76495052046096, + 27.059413661140226 + ], + [ + 72.50423579504832, + 27.059413661140226 + ], + [ + 72.50423579504832, + 26.33598210163161 + ], + [ + 71.76495052046096, + 26.33598210163161 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.76495052046096, + 27.059413661140226 + ], + [ + 71.76495052046096, + 27.78284522064884 + ], + [ + 72.50423579504832, + 27.78284522064884 + ], + [ + 72.50423579504832, + 27.059413661140226 + ], + [ + 71.76495052046096, + 27.059413661140226 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.76495052046096, + 27.78284522064884 + ], + [ + 71.76495052046096, + 28.506276780157457 + ], + [ + 72.50423579504832, + 28.506276780157457 + ], + [ + 72.50423579504832, + 27.78284522064884 + ], + [ + 71.76495052046096, + 27.78284522064884 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.76495052046096, + 28.506276780157457 + ], + [ + 71.76495052046096, + 29.22970833966607 + ], + [ + 72.50423579504832, + 29.22970833966607 + ], + [ + 72.50423579504832, + 28.506276780157457 + ], + [ + 71.76495052046096, + 28.506276780157457 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.76495052046096, + 29.22970833966607 + ], + [ + 71.76495052046096, + 29.953139899174687 + ], + [ + 72.50423579504832, + 29.953139899174687 + ], + [ + 72.50423579504832, + 29.22970833966607 + ], + [ + 71.76495052046096, + 29.22970833966607 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.76495052046096, + 29.953139899174687 + ], + [ + 71.76495052046096, + 30.676571458683302 + ], + [ + 72.50423579504832, + 30.676571458683302 + ], + [ + 72.50423579504832, + 29.953139899174687 + ], + [ + 71.76495052046096, + 29.953139899174687 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.76495052046096, + 30.676571458683302 + ], + [ + 71.76495052046096, + 31.400003018191917 + ], + [ + 72.50423579504832, + 31.400003018191917 + ], + [ + 72.50423579504832, + 30.676571458683302 + ], + [ + 71.76495052046096, + 30.676571458683302 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.76495052046096, + 31.400003018191917 + ], + [ + 71.76495052046096, + 32.123434577700536 + ], + [ + 72.50423579504832, + 32.123434577700536 + ], + [ + 72.50423579504832, + 31.400003018191917 + ], + [ + 71.76495052046096, + 31.400003018191917 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.76495052046096, + 32.123434577700536 + ], + [ + 71.76495052046096, + 32.84686613720915 + ], + [ + 72.50423579504832, + 32.84686613720915 + ], + [ + 72.50423579504832, + 32.123434577700536 + ], + [ + 71.76495052046096, + 32.123434577700536 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.76495052046096, + 32.84686613720915 + ], + [ + 71.76495052046096, + 33.57029769671776 + ], + [ + 72.50423579504832, + 33.57029769671776 + ], + [ + 72.50423579504832, + 32.84686613720915 + ], + [ + 71.76495052046096, + 32.84686613720915 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.76495052046096, + 33.57029769671776 + ], + [ + 71.76495052046096, + 34.29372925622637 + ], + [ + 72.50423579504832, + 34.29372925622637 + ], + [ + 72.50423579504832, + 33.57029769671776 + ], + [ + 71.76495052046096, + 33.57029769671776 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.76495052046096, + 34.29372925622637 + ], + [ + 71.76495052046096, + 35.01716081573498 + ], + [ + 72.50423579504832, + 35.01716081573498 + ], + [ + 72.50423579504832, + 34.29372925622637 + ], + [ + 71.76495052046096, + 34.29372925622637 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.76495052046096, + 35.01716081573498 + ], + [ + 71.76495052046096, + 35.740592375243594 + ], + [ + 72.50423579504832, + 35.740592375243594 + ], + [ + 72.50423579504832, + 35.01716081573498 + ], + [ + 71.76495052046096, + 35.01716081573498 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.76495052046096, + 35.740592375243594 + ], + [ + 71.76495052046096, + 36.464023934752205 + ], + [ + 72.50423579504832, + 36.464023934752205 + ], + [ + 72.50423579504832, + 35.740592375243594 + ], + [ + 71.76495052046096, + 35.740592375243594 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.76495052046096, + 36.464023934752205 + ], + [ + 71.76495052046096, + 37.18745549426082 + ], + [ + 72.50423579504832, + 37.18745549426082 + ], + [ + 72.50423579504832, + 36.464023934752205 + ], + [ + 71.76495052046096, + 36.464023934752205 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.76495052046096, + 37.18745549426082 + ], + [ + 71.76495052046096, + 37.91088705376943 + ], + [ + 72.50423579504832, + 37.91088705376943 + ], + [ + 72.50423579504832, + 37.18745549426082 + ], + [ + 71.76495052046096, + 37.18745549426082 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.76495052046096, + 37.91088705376943 + ], + [ + 71.76495052046096, + 38.63431861327804 + ], + [ + 72.50423579504832, + 38.63431861327804 + ], + [ + 72.50423579504832, + 37.91088705376943 + ], + [ + 71.76495052046096, + 37.91088705376943 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.76495052046096, + 38.63431861327804 + ], + [ + 71.76495052046096, + 39.35775017278665 + ], + [ + 72.50423579504832, + 39.35775017278665 + ], + [ + 72.50423579504832, + 38.63431861327804 + ], + [ + 71.76495052046096, + 38.63431861327804 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.76495052046096, + 39.35775017278665 + ], + [ + 71.76495052046096, + 40.08118173229526 + ], + [ + 72.50423579504832, + 40.08118173229526 + ], + [ + 72.50423579504832, + 39.35775017278665 + ], + [ + 71.76495052046096, + 39.35775017278665 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.76495052046096, + 40.08118173229526 + ], + [ + 71.76495052046096, + 40.804613291803875 + ], + [ + 72.50423579504832, + 40.804613291803875 + ], + [ + 72.50423579504832, + 40.08118173229526 + ], + [ + 71.76495052046096, + 40.08118173229526 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.76495052046096, + 40.804613291803875 + ], + [ + 71.76495052046096, + 41.52804485131249 + ], + [ + 72.50423579504832, + 41.52804485131249 + ], + [ + 72.50423579504832, + 40.804613291803875 + ], + [ + 71.76495052046096, + 40.804613291803875 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.76495052046096, + 41.52804485131249 + ], + [ + 71.76495052046096, + 42.2514764108211 + ], + [ + 72.50423579504832, + 42.2514764108211 + ], + [ + 72.50423579504832, + 41.52804485131249 + ], + [ + 71.76495052046096, + 41.52804485131249 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.76495052046096, + 42.2514764108211 + ], + [ + 71.76495052046096, + 42.97490797032971 + ], + [ + 72.50423579504832, + 42.97490797032971 + ], + [ + 72.50423579504832, + 42.2514764108211 + ], + [ + 71.76495052046096, + 42.2514764108211 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.76495052046096, + 42.97490797032971 + ], + [ + 71.76495052046096, + 43.69833952983832 + ], + [ + 72.50423579504832, + 43.69833952983832 + ], + [ + 72.50423579504832, + 42.97490797032971 + ], + [ + 71.76495052046096, + 42.97490797032971 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.76495052046096, + 43.69833952983832 + ], + [ + 71.76495052046096, + 44.42177108934693 + ], + [ + 72.50423579504832, + 44.42177108934693 + ], + [ + 72.50423579504832, + 43.69833952983832 + ], + [ + 71.76495052046096, + 43.69833952983832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.76495052046096, + 44.42177108934693 + ], + [ + 71.76495052046096, + 45.145202648855545 + ], + [ + 72.50423579504832, + 45.145202648855545 + ], + [ + 72.50423579504832, + 44.42177108934693 + ], + [ + 71.76495052046096, + 44.42177108934693 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.76495052046096, + 45.145202648855545 + ], + [ + 71.76495052046096, + 45.868634208364156 + ], + [ + 72.50423579504832, + 45.868634208364156 + ], + [ + 72.50423579504832, + 45.145202648855545 + ], + [ + 71.76495052046096, + 45.145202648855545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.76495052046096, + 45.868634208364156 + ], + [ + 71.76495052046096, + 46.59206576787277 + ], + [ + 72.50423579504832, + 46.59206576787277 + ], + [ + 72.50423579504832, + 45.868634208364156 + ], + [ + 71.76495052046096, + 45.868634208364156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.76495052046096, + 46.59206576787277 + ], + [ + 71.76495052046096, + 47.31549732738138 + ], + [ + 72.50423579504832, + 47.31549732738138 + ], + [ + 72.50423579504832, + 46.59206576787277 + ], + [ + 71.76495052046096, + 46.59206576787277 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.76495052046096, + 47.31549732738138 + ], + [ + 71.76495052046096, + 48.03892888688999 + ], + [ + 72.50423579504832, + 48.03892888688999 + ], + [ + 72.50423579504832, + 47.31549732738138 + ], + [ + 71.76495052046096, + 47.31549732738138 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.50423579504832, + 11.867350911459308 + ], + [ + 72.50423579504832, + 12.590782470967923 + ], + [ + 73.24352106963568, + 12.590782470967923 + ], + [ + 73.24352106963568, + 11.867350911459308 + ], + [ + 72.50423579504832, + 11.867350911459308 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.50423579504832, + 12.590782470967923 + ], + [ + 72.50423579504832, + 13.314214030476538 + ], + [ + 73.24352106963568, + 13.314214030476538 + ], + [ + 73.24352106963568, + 12.590782470967923 + ], + [ + 72.50423579504832, + 12.590782470967923 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.50423579504832, + 13.314214030476538 + ], + [ + 72.50423579504832, + 14.037645589985154 + ], + [ + 73.24352106963568, + 14.037645589985154 + ], + [ + 73.24352106963568, + 13.314214030476538 + ], + [ + 72.50423579504832, + 13.314214030476538 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.50423579504832, + 14.037645589985154 + ], + [ + 72.50423579504832, + 14.761077149493769 + ], + [ + 73.24352106963568, + 14.761077149493769 + ], + [ + 73.24352106963568, + 14.037645589985154 + ], + [ + 72.50423579504832, + 14.037645589985154 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.50423579504832, + 14.761077149493769 + ], + [ + 72.50423579504832, + 15.484508709002384 + ], + [ + 73.24352106963568, + 15.484508709002384 + ], + [ + 73.24352106963568, + 14.761077149493769 + ], + [ + 72.50423579504832, + 14.761077149493769 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.50423579504832, + 15.484508709002384 + ], + [ + 72.50423579504832, + 16.207940268511 + ], + [ + 73.24352106963568, + 16.207940268511 + ], + [ + 73.24352106963568, + 15.484508709002384 + ], + [ + 72.50423579504832, + 15.484508709002384 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.50423579504832, + 16.207940268511 + ], + [ + 72.50423579504832, + 16.931371828019614 + ], + [ + 73.24352106963568, + 16.931371828019614 + ], + [ + 73.24352106963568, + 16.207940268511 + ], + [ + 72.50423579504832, + 16.207940268511 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.50423579504832, + 16.931371828019614 + ], + [ + 72.50423579504832, + 17.65480338752823 + ], + [ + 73.24352106963568, + 17.65480338752823 + ], + [ + 73.24352106963568, + 16.931371828019614 + ], + [ + 72.50423579504832, + 16.931371828019614 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.50423579504832, + 17.65480338752823 + ], + [ + 72.50423579504832, + 18.378234947036844 + ], + [ + 73.24352106963568, + 18.378234947036844 + ], + [ + 73.24352106963568, + 17.65480338752823 + ], + [ + 72.50423579504832, + 17.65480338752823 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.50423579504832, + 18.378234947036844 + ], + [ + 72.50423579504832, + 19.10166650654546 + ], + [ + 73.24352106963568, + 19.10166650654546 + ], + [ + 73.24352106963568, + 18.378234947036844 + ], + [ + 72.50423579504832, + 18.378234947036844 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.50423579504832, + 19.10166650654546 + ], + [ + 72.50423579504832, + 19.825098066054075 + ], + [ + 73.24352106963568, + 19.825098066054075 + ], + [ + 73.24352106963568, + 19.10166650654546 + ], + [ + 72.50423579504832, + 19.10166650654546 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.50423579504832, + 19.825098066054075 + ], + [ + 72.50423579504832, + 20.54852962556269 + ], + [ + 73.24352106963568, + 20.54852962556269 + ], + [ + 73.24352106963568, + 19.825098066054075 + ], + [ + 72.50423579504832, + 19.825098066054075 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.50423579504832, + 20.54852962556269 + ], + [ + 72.50423579504832, + 21.271961185071305 + ], + [ + 73.24352106963568, + 21.271961185071305 + ], + [ + 73.24352106963568, + 20.54852962556269 + ], + [ + 72.50423579504832, + 20.54852962556269 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.50423579504832, + 21.271961185071305 + ], + [ + 72.50423579504832, + 21.99539274457992 + ], + [ + 73.24352106963568, + 21.99539274457992 + ], + [ + 73.24352106963568, + 21.271961185071305 + ], + [ + 72.50423579504832, + 21.271961185071305 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.50423579504832, + 21.99539274457992 + ], + [ + 72.50423579504832, + 22.718824304088535 + ], + [ + 73.24352106963568, + 22.718824304088535 + ], + [ + 73.24352106963568, + 21.99539274457992 + ], + [ + 72.50423579504832, + 21.99539274457992 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.50423579504832, + 22.718824304088535 + ], + [ + 72.50423579504832, + 23.44225586359715 + ], + [ + 73.24352106963568, + 23.44225586359715 + ], + [ + 73.24352106963568, + 22.718824304088535 + ], + [ + 72.50423579504832, + 22.718824304088535 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.50423579504832, + 23.44225586359715 + ], + [ + 72.50423579504832, + 24.165687423105766 + ], + [ + 73.24352106963568, + 24.165687423105766 + ], + [ + 73.24352106963568, + 23.44225586359715 + ], + [ + 72.50423579504832, + 23.44225586359715 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.50423579504832, + 24.165687423105766 + ], + [ + 72.50423579504832, + 24.88911898261438 + ], + [ + 73.24352106963568, + 24.88911898261438 + ], + [ + 73.24352106963568, + 24.165687423105766 + ], + [ + 72.50423579504832, + 24.165687423105766 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.50423579504832, + 24.88911898261438 + ], + [ + 72.50423579504832, + 25.612550542122996 + ], + [ + 73.24352106963568, + 25.612550542122996 + ], + [ + 73.24352106963568, + 24.88911898261438 + ], + [ + 72.50423579504832, + 24.88911898261438 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.50423579504832, + 25.612550542122996 + ], + [ + 72.50423579504832, + 26.33598210163161 + ], + [ + 73.24352106963568, + 26.33598210163161 + ], + [ + 73.24352106963568, + 25.612550542122996 + ], + [ + 72.50423579504832, + 25.612550542122996 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.50423579504832, + 26.33598210163161 + ], + [ + 72.50423579504832, + 27.059413661140226 + ], + [ + 73.24352106963568, + 27.059413661140226 + ], + [ + 73.24352106963568, + 26.33598210163161 + ], + [ + 72.50423579504832, + 26.33598210163161 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.50423579504832, + 27.059413661140226 + ], + [ + 72.50423579504832, + 27.78284522064884 + ], + [ + 73.24352106963568, + 27.78284522064884 + ], + [ + 73.24352106963568, + 27.059413661140226 + ], + [ + 72.50423579504832, + 27.059413661140226 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.50423579504832, + 27.78284522064884 + ], + [ + 72.50423579504832, + 28.506276780157457 + ], + [ + 73.24352106963568, + 28.506276780157457 + ], + [ + 73.24352106963568, + 27.78284522064884 + ], + [ + 72.50423579504832, + 27.78284522064884 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.50423579504832, + 28.506276780157457 + ], + [ + 72.50423579504832, + 29.22970833966607 + ], + [ + 73.24352106963568, + 29.22970833966607 + ], + [ + 73.24352106963568, + 28.506276780157457 + ], + [ + 72.50423579504832, + 28.506276780157457 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.50423579504832, + 29.22970833966607 + ], + [ + 72.50423579504832, + 29.953139899174687 + ], + [ + 73.24352106963568, + 29.953139899174687 + ], + [ + 73.24352106963568, + 29.22970833966607 + ], + [ + 72.50423579504832, + 29.22970833966607 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.50423579504832, + 29.953139899174687 + ], + [ + 72.50423579504832, + 30.676571458683302 + ], + [ + 73.24352106963568, + 30.676571458683302 + ], + [ + 73.24352106963568, + 29.953139899174687 + ], + [ + 72.50423579504832, + 29.953139899174687 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.50423579504832, + 30.676571458683302 + ], + [ + 72.50423579504832, + 31.400003018191917 + ], + [ + 73.24352106963568, + 31.400003018191917 + ], + [ + 73.24352106963568, + 30.676571458683302 + ], + [ + 72.50423579504832, + 30.676571458683302 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.50423579504832, + 31.400003018191917 + ], + [ + 72.50423579504832, + 32.123434577700536 + ], + [ + 73.24352106963568, + 32.123434577700536 + ], + [ + 73.24352106963568, + 31.400003018191917 + ], + [ + 72.50423579504832, + 31.400003018191917 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.50423579504832, + 32.123434577700536 + ], + [ + 72.50423579504832, + 32.84686613720915 + ], + [ + 73.24352106963568, + 32.84686613720915 + ], + [ + 73.24352106963568, + 32.123434577700536 + ], + [ + 72.50423579504832, + 32.123434577700536 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.50423579504832, + 32.84686613720915 + ], + [ + 72.50423579504832, + 33.57029769671776 + ], + [ + 73.24352106963568, + 33.57029769671776 + ], + [ + 73.24352106963568, + 32.84686613720915 + ], + [ + 72.50423579504832, + 32.84686613720915 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.50423579504832, + 33.57029769671776 + ], + [ + 72.50423579504832, + 34.29372925622637 + ], + [ + 73.24352106963568, + 34.29372925622637 + ], + [ + 73.24352106963568, + 33.57029769671776 + ], + [ + 72.50423579504832, + 33.57029769671776 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.50423579504832, + 34.29372925622637 + ], + [ + 72.50423579504832, + 35.01716081573498 + ], + [ + 73.24352106963568, + 35.01716081573498 + ], + [ + 73.24352106963568, + 34.29372925622637 + ], + [ + 72.50423579504832, + 34.29372925622637 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.50423579504832, + 35.01716081573498 + ], + [ + 72.50423579504832, + 35.740592375243594 + ], + [ + 73.24352106963568, + 35.740592375243594 + ], + [ + 73.24352106963568, + 35.01716081573498 + ], + [ + 72.50423579504832, + 35.01716081573498 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.50423579504832, + 35.740592375243594 + ], + [ + 72.50423579504832, + 36.464023934752205 + ], + [ + 73.24352106963568, + 36.464023934752205 + ], + [ + 73.24352106963568, + 35.740592375243594 + ], + [ + 72.50423579504832, + 35.740592375243594 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.50423579504832, + 36.464023934752205 + ], + [ + 72.50423579504832, + 37.18745549426082 + ], + [ + 73.24352106963568, + 37.18745549426082 + ], + [ + 73.24352106963568, + 36.464023934752205 + ], + [ + 72.50423579504832, + 36.464023934752205 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.50423579504832, + 37.18745549426082 + ], + [ + 72.50423579504832, + 37.91088705376943 + ], + [ + 73.24352106963568, + 37.91088705376943 + ], + [ + 73.24352106963568, + 37.18745549426082 + ], + [ + 72.50423579504832, + 37.18745549426082 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.50423579504832, + 37.91088705376943 + ], + [ + 72.50423579504832, + 38.63431861327804 + ], + [ + 73.24352106963568, + 38.63431861327804 + ], + [ + 73.24352106963568, + 37.91088705376943 + ], + [ + 72.50423579504832, + 37.91088705376943 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.50423579504832, + 38.63431861327804 + ], + [ + 72.50423579504832, + 39.35775017278665 + ], + [ + 73.24352106963568, + 39.35775017278665 + ], + [ + 73.24352106963568, + 38.63431861327804 + ], + [ + 72.50423579504832, + 38.63431861327804 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.50423579504832, + 39.35775017278665 + ], + [ + 72.50423579504832, + 40.08118173229526 + ], + [ + 73.24352106963568, + 40.08118173229526 + ], + [ + 73.24352106963568, + 39.35775017278665 + ], + [ + 72.50423579504832, + 39.35775017278665 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.50423579504832, + 40.08118173229526 + ], + [ + 72.50423579504832, + 40.804613291803875 + ], + [ + 73.24352106963568, + 40.804613291803875 + ], + [ + 73.24352106963568, + 40.08118173229526 + ], + [ + 72.50423579504832, + 40.08118173229526 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.50423579504832, + 40.804613291803875 + ], + [ + 72.50423579504832, + 41.52804485131249 + ], + [ + 73.24352106963568, + 41.52804485131249 + ], + [ + 73.24352106963568, + 40.804613291803875 + ], + [ + 72.50423579504832, + 40.804613291803875 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.50423579504832, + 41.52804485131249 + ], + [ + 72.50423579504832, + 42.2514764108211 + ], + [ + 73.24352106963568, + 42.2514764108211 + ], + [ + 73.24352106963568, + 41.52804485131249 + ], + [ + 72.50423579504832, + 41.52804485131249 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.50423579504832, + 42.2514764108211 + ], + [ + 72.50423579504832, + 42.97490797032971 + ], + [ + 73.24352106963568, + 42.97490797032971 + ], + [ + 73.24352106963568, + 42.2514764108211 + ], + [ + 72.50423579504832, + 42.2514764108211 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.50423579504832, + 42.97490797032971 + ], + [ + 72.50423579504832, + 43.69833952983832 + ], + [ + 73.24352106963568, + 43.69833952983832 + ], + [ + 73.24352106963568, + 42.97490797032971 + ], + [ + 72.50423579504832, + 42.97490797032971 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.50423579504832, + 43.69833952983832 + ], + [ + 72.50423579504832, + 44.42177108934693 + ], + [ + 73.24352106963568, + 44.42177108934693 + ], + [ + 73.24352106963568, + 43.69833952983832 + ], + [ + 72.50423579504832, + 43.69833952983832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.50423579504832, + 44.42177108934693 + ], + [ + 72.50423579504832, + 45.145202648855545 + ], + [ + 73.24352106963568, + 45.145202648855545 + ], + [ + 73.24352106963568, + 44.42177108934693 + ], + [ + 72.50423579504832, + 44.42177108934693 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.50423579504832, + 45.145202648855545 + ], + [ + 72.50423579504832, + 45.868634208364156 + ], + [ + 73.24352106963568, + 45.868634208364156 + ], + [ + 73.24352106963568, + 45.145202648855545 + ], + [ + 72.50423579504832, + 45.145202648855545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.50423579504832, + 45.868634208364156 + ], + [ + 72.50423579504832, + 46.59206576787277 + ], + [ + 73.24352106963568, + 46.59206576787277 + ], + [ + 73.24352106963568, + 45.868634208364156 + ], + [ + 72.50423579504832, + 45.868634208364156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.50423579504832, + 46.59206576787277 + ], + [ + 72.50423579504832, + 47.31549732738138 + ], + [ + 73.24352106963568, + 47.31549732738138 + ], + [ + 73.24352106963568, + 46.59206576787277 + ], + [ + 72.50423579504832, + 46.59206576787277 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.50423579504832, + 47.31549732738138 + ], + [ + 72.50423579504832, + 48.03892888688999 + ], + [ + 73.24352106963568, + 48.03892888688999 + ], + [ + 73.24352106963568, + 47.31549732738138 + ], + [ + 72.50423579504832, + 47.31549732738138 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.24352106963568, + 11.867350911459308 + ], + [ + 73.24352106963568, + 12.590782470967923 + ], + [ + 73.98280634422304, + 12.590782470967923 + ], + [ + 73.98280634422304, + 11.867350911459308 + ], + [ + 73.24352106963568, + 11.867350911459308 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.24352106963568, + 12.590782470967923 + ], + [ + 73.24352106963568, + 13.314214030476538 + ], + [ + 73.98280634422304, + 13.314214030476538 + ], + [ + 73.98280634422304, + 12.590782470967923 + ], + [ + 73.24352106963568, + 12.590782470967923 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.24352106963568, + 13.314214030476538 + ], + [ + 73.24352106963568, + 14.037645589985154 + ], + [ + 73.98280634422304, + 14.037645589985154 + ], + [ + 73.98280634422304, + 13.314214030476538 + ], + [ + 73.24352106963568, + 13.314214030476538 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.24352106963568, + 14.037645589985154 + ], + [ + 73.24352106963568, + 14.761077149493769 + ], + [ + 73.98280634422304, + 14.761077149493769 + ], + [ + 73.98280634422304, + 14.037645589985154 + ], + [ + 73.24352106963568, + 14.037645589985154 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.24352106963568, + 14.761077149493769 + ], + [ + 73.24352106963568, + 15.484508709002384 + ], + [ + 73.98280634422304, + 15.484508709002384 + ], + [ + 73.98280634422304, + 14.761077149493769 + ], + [ + 73.24352106963568, + 14.761077149493769 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.24352106963568, + 15.484508709002384 + ], + [ + 73.24352106963568, + 16.207940268511 + ], + [ + 73.98280634422304, + 16.207940268511 + ], + [ + 73.98280634422304, + 15.484508709002384 + ], + [ + 73.24352106963568, + 15.484508709002384 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.24352106963568, + 16.207940268511 + ], + [ + 73.24352106963568, + 16.931371828019614 + ], + [ + 73.98280634422304, + 16.931371828019614 + ], + [ + 73.98280634422304, + 16.207940268511 + ], + [ + 73.24352106963568, + 16.207940268511 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.24352106963568, + 16.931371828019614 + ], + [ + 73.24352106963568, + 17.65480338752823 + ], + [ + 73.98280634422304, + 17.65480338752823 + ], + [ + 73.98280634422304, + 16.931371828019614 + ], + [ + 73.24352106963568, + 16.931371828019614 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.24352106963568, + 17.65480338752823 + ], + [ + 73.24352106963568, + 18.378234947036844 + ], + [ + 73.98280634422304, + 18.378234947036844 + ], + [ + 73.98280634422304, + 17.65480338752823 + ], + [ + 73.24352106963568, + 17.65480338752823 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.24352106963568, + 18.378234947036844 + ], + [ + 73.24352106963568, + 19.10166650654546 + ], + [ + 73.98280634422304, + 19.10166650654546 + ], + [ + 73.98280634422304, + 18.378234947036844 + ], + [ + 73.24352106963568, + 18.378234947036844 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.24352106963568, + 19.10166650654546 + ], + [ + 73.24352106963568, + 19.825098066054075 + ], + [ + 73.98280634422304, + 19.825098066054075 + ], + [ + 73.98280634422304, + 19.10166650654546 + ], + [ + 73.24352106963568, + 19.10166650654546 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.24352106963568, + 19.825098066054075 + ], + [ + 73.24352106963568, + 20.54852962556269 + ], + [ + 73.98280634422304, + 20.54852962556269 + ], + [ + 73.98280634422304, + 19.825098066054075 + ], + [ + 73.24352106963568, + 19.825098066054075 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.24352106963568, + 20.54852962556269 + ], + [ + 73.24352106963568, + 21.271961185071305 + ], + [ + 73.98280634422304, + 21.271961185071305 + ], + [ + 73.98280634422304, + 20.54852962556269 + ], + [ + 73.24352106963568, + 20.54852962556269 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.24352106963568, + 21.271961185071305 + ], + [ + 73.24352106963568, + 21.99539274457992 + ], + [ + 73.98280634422304, + 21.99539274457992 + ], + [ + 73.98280634422304, + 21.271961185071305 + ], + [ + 73.24352106963568, + 21.271961185071305 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.24352106963568, + 21.99539274457992 + ], + [ + 73.24352106963568, + 22.718824304088535 + ], + [ + 73.98280634422304, + 22.718824304088535 + ], + [ + 73.98280634422304, + 21.99539274457992 + ], + [ + 73.24352106963568, + 21.99539274457992 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.24352106963568, + 22.718824304088535 + ], + [ + 73.24352106963568, + 23.44225586359715 + ], + [ + 73.98280634422304, + 23.44225586359715 + ], + [ + 73.98280634422304, + 22.718824304088535 + ], + [ + 73.24352106963568, + 22.718824304088535 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.24352106963568, + 23.44225586359715 + ], + [ + 73.24352106963568, + 24.165687423105766 + ], + [ + 73.98280634422304, + 24.165687423105766 + ], + [ + 73.98280634422304, + 23.44225586359715 + ], + [ + 73.24352106963568, + 23.44225586359715 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.24352106963568, + 24.165687423105766 + ], + [ + 73.24352106963568, + 24.88911898261438 + ], + [ + 73.98280634422304, + 24.88911898261438 + ], + [ + 73.98280634422304, + 24.165687423105766 + ], + [ + 73.24352106963568, + 24.165687423105766 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.24352106963568, + 24.88911898261438 + ], + [ + 73.24352106963568, + 25.612550542122996 + ], + [ + 73.98280634422304, + 25.612550542122996 + ], + [ + 73.98280634422304, + 24.88911898261438 + ], + [ + 73.24352106963568, + 24.88911898261438 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.24352106963568, + 25.612550542122996 + ], + [ + 73.24352106963568, + 26.33598210163161 + ], + [ + 73.98280634422304, + 26.33598210163161 + ], + [ + 73.98280634422304, + 25.612550542122996 + ], + [ + 73.24352106963568, + 25.612550542122996 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.24352106963568, + 26.33598210163161 + ], + [ + 73.24352106963568, + 27.059413661140226 + ], + [ + 73.98280634422304, + 27.059413661140226 + ], + [ + 73.98280634422304, + 26.33598210163161 + ], + [ + 73.24352106963568, + 26.33598210163161 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.24352106963568, + 27.059413661140226 + ], + [ + 73.24352106963568, + 27.78284522064884 + ], + [ + 73.98280634422304, + 27.78284522064884 + ], + [ + 73.98280634422304, + 27.059413661140226 + ], + [ + 73.24352106963568, + 27.059413661140226 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.24352106963568, + 27.78284522064884 + ], + [ + 73.24352106963568, + 28.506276780157457 + ], + [ + 73.98280634422304, + 28.506276780157457 + ], + [ + 73.98280634422304, + 27.78284522064884 + ], + [ + 73.24352106963568, + 27.78284522064884 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.24352106963568, + 28.506276780157457 + ], + [ + 73.24352106963568, + 29.22970833966607 + ], + [ + 73.98280634422304, + 29.22970833966607 + ], + [ + 73.98280634422304, + 28.506276780157457 + ], + [ + 73.24352106963568, + 28.506276780157457 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.24352106963568, + 29.22970833966607 + ], + [ + 73.24352106963568, + 29.953139899174687 + ], + [ + 73.98280634422304, + 29.953139899174687 + ], + [ + 73.98280634422304, + 29.22970833966607 + ], + [ + 73.24352106963568, + 29.22970833966607 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.24352106963568, + 29.953139899174687 + ], + [ + 73.24352106963568, + 30.676571458683302 + ], + [ + 73.98280634422304, + 30.676571458683302 + ], + [ + 73.98280634422304, + 29.953139899174687 + ], + [ + 73.24352106963568, + 29.953139899174687 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.24352106963568, + 30.676571458683302 + ], + [ + 73.24352106963568, + 31.400003018191917 + ], + [ + 73.98280634422304, + 31.400003018191917 + ], + [ + 73.98280634422304, + 30.676571458683302 + ], + [ + 73.24352106963568, + 30.676571458683302 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.24352106963568, + 31.400003018191917 + ], + [ + 73.24352106963568, + 32.123434577700536 + ], + [ + 73.98280634422304, + 32.123434577700536 + ], + [ + 73.98280634422304, + 31.400003018191917 + ], + [ + 73.24352106963568, + 31.400003018191917 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.24352106963568, + 32.123434577700536 + ], + [ + 73.24352106963568, + 32.84686613720915 + ], + [ + 73.98280634422304, + 32.84686613720915 + ], + [ + 73.98280634422304, + 32.123434577700536 + ], + [ + 73.24352106963568, + 32.123434577700536 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.24352106963568, + 32.84686613720915 + ], + [ + 73.24352106963568, + 33.57029769671776 + ], + [ + 73.98280634422304, + 33.57029769671776 + ], + [ + 73.98280634422304, + 32.84686613720915 + ], + [ + 73.24352106963568, + 32.84686613720915 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.24352106963568, + 33.57029769671776 + ], + [ + 73.24352106963568, + 34.29372925622637 + ], + [ + 73.98280634422304, + 34.29372925622637 + ], + [ + 73.98280634422304, + 33.57029769671776 + ], + [ + 73.24352106963568, + 33.57029769671776 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.24352106963568, + 34.29372925622637 + ], + [ + 73.24352106963568, + 35.01716081573498 + ], + [ + 73.98280634422304, + 35.01716081573498 + ], + [ + 73.98280634422304, + 34.29372925622637 + ], + [ + 73.24352106963568, + 34.29372925622637 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.24352106963568, + 35.01716081573498 + ], + [ + 73.24352106963568, + 35.740592375243594 + ], + [ + 73.98280634422304, + 35.740592375243594 + ], + [ + 73.98280634422304, + 35.01716081573498 + ], + [ + 73.24352106963568, + 35.01716081573498 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.24352106963568, + 35.740592375243594 + ], + [ + 73.24352106963568, + 36.464023934752205 + ], + [ + 73.98280634422304, + 36.464023934752205 + ], + [ + 73.98280634422304, + 35.740592375243594 + ], + [ + 73.24352106963568, + 35.740592375243594 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.24352106963568, + 36.464023934752205 + ], + [ + 73.24352106963568, + 37.18745549426082 + ], + [ + 73.98280634422304, + 37.18745549426082 + ], + [ + 73.98280634422304, + 36.464023934752205 + ], + [ + 73.24352106963568, + 36.464023934752205 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.24352106963568, + 37.18745549426082 + ], + [ + 73.24352106963568, + 37.91088705376943 + ], + [ + 73.98280634422304, + 37.91088705376943 + ], + [ + 73.98280634422304, + 37.18745549426082 + ], + [ + 73.24352106963568, + 37.18745549426082 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.24352106963568, + 37.91088705376943 + ], + [ + 73.24352106963568, + 38.63431861327804 + ], + [ + 73.98280634422304, + 38.63431861327804 + ], + [ + 73.98280634422304, + 37.91088705376943 + ], + [ + 73.24352106963568, + 37.91088705376943 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.24352106963568, + 38.63431861327804 + ], + [ + 73.24352106963568, + 39.35775017278665 + ], + [ + 73.98280634422304, + 39.35775017278665 + ], + [ + 73.98280634422304, + 38.63431861327804 + ], + [ + 73.24352106963568, + 38.63431861327804 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.24352106963568, + 39.35775017278665 + ], + [ + 73.24352106963568, + 40.08118173229526 + ], + [ + 73.98280634422304, + 40.08118173229526 + ], + [ + 73.98280634422304, + 39.35775017278665 + ], + [ + 73.24352106963568, + 39.35775017278665 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.24352106963568, + 40.08118173229526 + ], + [ + 73.24352106963568, + 40.804613291803875 + ], + [ + 73.98280634422304, + 40.804613291803875 + ], + [ + 73.98280634422304, + 40.08118173229526 + ], + [ + 73.24352106963568, + 40.08118173229526 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.24352106963568, + 40.804613291803875 + ], + [ + 73.24352106963568, + 41.52804485131249 + ], + [ + 73.98280634422304, + 41.52804485131249 + ], + [ + 73.98280634422304, + 40.804613291803875 + ], + [ + 73.24352106963568, + 40.804613291803875 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.24352106963568, + 41.52804485131249 + ], + [ + 73.24352106963568, + 42.2514764108211 + ], + [ + 73.98280634422304, + 42.2514764108211 + ], + [ + 73.98280634422304, + 41.52804485131249 + ], + [ + 73.24352106963568, + 41.52804485131249 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.24352106963568, + 42.2514764108211 + ], + [ + 73.24352106963568, + 42.97490797032971 + ], + [ + 73.98280634422304, + 42.97490797032971 + ], + [ + 73.98280634422304, + 42.2514764108211 + ], + [ + 73.24352106963568, + 42.2514764108211 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.24352106963568, + 42.97490797032971 + ], + [ + 73.24352106963568, + 43.69833952983832 + ], + [ + 73.98280634422304, + 43.69833952983832 + ], + [ + 73.98280634422304, + 42.97490797032971 + ], + [ + 73.24352106963568, + 42.97490797032971 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.24352106963568, + 43.69833952983832 + ], + [ + 73.24352106963568, + 44.42177108934693 + ], + [ + 73.98280634422304, + 44.42177108934693 + ], + [ + 73.98280634422304, + 43.69833952983832 + ], + [ + 73.24352106963568, + 43.69833952983832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.24352106963568, + 44.42177108934693 + ], + [ + 73.24352106963568, + 45.145202648855545 + ], + [ + 73.98280634422304, + 45.145202648855545 + ], + [ + 73.98280634422304, + 44.42177108934693 + ], + [ + 73.24352106963568, + 44.42177108934693 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.24352106963568, + 45.145202648855545 + ], + [ + 73.24352106963568, + 45.868634208364156 + ], + [ + 73.98280634422304, + 45.868634208364156 + ], + [ + 73.98280634422304, + 45.145202648855545 + ], + [ + 73.24352106963568, + 45.145202648855545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.24352106963568, + 45.868634208364156 + ], + [ + 73.24352106963568, + 46.59206576787277 + ], + [ + 73.98280634422304, + 46.59206576787277 + ], + [ + 73.98280634422304, + 45.868634208364156 + ], + [ + 73.24352106963568, + 45.868634208364156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.24352106963568, + 46.59206576787277 + ], + [ + 73.24352106963568, + 47.31549732738138 + ], + [ + 73.98280634422304, + 47.31549732738138 + ], + [ + 73.98280634422304, + 46.59206576787277 + ], + [ + 73.24352106963568, + 46.59206576787277 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.24352106963568, + 47.31549732738138 + ], + [ + 73.24352106963568, + 48.03892888688999 + ], + [ + 73.98280634422304, + 48.03892888688999 + ], + [ + 73.98280634422304, + 47.31549732738138 + ], + [ + 73.24352106963568, + 47.31549732738138 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.98280634422304, + 11.867350911459308 + ], + [ + 73.98280634422304, + 12.590782470967923 + ], + [ + 74.7220916188104, + 12.590782470967923 + ], + [ + 74.7220916188104, + 11.867350911459308 + ], + [ + 73.98280634422304, + 11.867350911459308 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.98280634422304, + 12.590782470967923 + ], + [ + 73.98280634422304, + 13.314214030476538 + ], + [ + 74.7220916188104, + 13.314214030476538 + ], + [ + 74.7220916188104, + 12.590782470967923 + ], + [ + 73.98280634422304, + 12.590782470967923 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.98280634422304, + 13.314214030476538 + ], + [ + 73.98280634422304, + 14.037645589985154 + ], + [ + 74.7220916188104, + 14.037645589985154 + ], + [ + 74.7220916188104, + 13.314214030476538 + ], + [ + 73.98280634422304, + 13.314214030476538 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.98280634422304, + 14.037645589985154 + ], + [ + 73.98280634422304, + 14.761077149493769 + ], + [ + 74.7220916188104, + 14.761077149493769 + ], + [ + 74.7220916188104, + 14.037645589985154 + ], + [ + 73.98280634422304, + 14.037645589985154 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.98280634422304, + 14.761077149493769 + ], + [ + 73.98280634422304, + 15.484508709002384 + ], + [ + 74.7220916188104, + 15.484508709002384 + ], + [ + 74.7220916188104, + 14.761077149493769 + ], + [ + 73.98280634422304, + 14.761077149493769 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.98280634422304, + 15.484508709002384 + ], + [ + 73.98280634422304, + 16.207940268511 + ], + [ + 74.7220916188104, + 16.207940268511 + ], + [ + 74.7220916188104, + 15.484508709002384 + ], + [ + 73.98280634422304, + 15.484508709002384 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.98280634422304, + 16.207940268511 + ], + [ + 73.98280634422304, + 16.931371828019614 + ], + [ + 74.7220916188104, + 16.931371828019614 + ], + [ + 74.7220916188104, + 16.207940268511 + ], + [ + 73.98280634422304, + 16.207940268511 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.98280634422304, + 16.931371828019614 + ], + [ + 73.98280634422304, + 17.65480338752823 + ], + [ + 74.7220916188104, + 17.65480338752823 + ], + [ + 74.7220916188104, + 16.931371828019614 + ], + [ + 73.98280634422304, + 16.931371828019614 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.98280634422304, + 17.65480338752823 + ], + [ + 73.98280634422304, + 18.378234947036844 + ], + [ + 74.7220916188104, + 18.378234947036844 + ], + [ + 74.7220916188104, + 17.65480338752823 + ], + [ + 73.98280634422304, + 17.65480338752823 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.98280634422304, + 18.378234947036844 + ], + [ + 73.98280634422304, + 19.10166650654546 + ], + [ + 74.7220916188104, + 19.10166650654546 + ], + [ + 74.7220916188104, + 18.378234947036844 + ], + [ + 73.98280634422304, + 18.378234947036844 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.98280634422304, + 19.10166650654546 + ], + [ + 73.98280634422304, + 19.825098066054075 + ], + [ + 74.7220916188104, + 19.825098066054075 + ], + [ + 74.7220916188104, + 19.10166650654546 + ], + [ + 73.98280634422304, + 19.10166650654546 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.98280634422304, + 19.825098066054075 + ], + [ + 73.98280634422304, + 20.54852962556269 + ], + [ + 74.7220916188104, + 20.54852962556269 + ], + [ + 74.7220916188104, + 19.825098066054075 + ], + [ + 73.98280634422304, + 19.825098066054075 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.98280634422304, + 20.54852962556269 + ], + [ + 73.98280634422304, + 21.271961185071305 + ], + [ + 74.7220916188104, + 21.271961185071305 + ], + [ + 74.7220916188104, + 20.54852962556269 + ], + [ + 73.98280634422304, + 20.54852962556269 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.98280634422304, + 21.271961185071305 + ], + [ + 73.98280634422304, + 21.99539274457992 + ], + [ + 74.7220916188104, + 21.99539274457992 + ], + [ + 74.7220916188104, + 21.271961185071305 + ], + [ + 73.98280634422304, + 21.271961185071305 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.98280634422304, + 21.99539274457992 + ], + [ + 73.98280634422304, + 22.718824304088535 + ], + [ + 74.7220916188104, + 22.718824304088535 + ], + [ + 74.7220916188104, + 21.99539274457992 + ], + [ + 73.98280634422304, + 21.99539274457992 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.98280634422304, + 22.718824304088535 + ], + [ + 73.98280634422304, + 23.44225586359715 + ], + [ + 74.7220916188104, + 23.44225586359715 + ], + [ + 74.7220916188104, + 22.718824304088535 + ], + [ + 73.98280634422304, + 22.718824304088535 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.98280634422304, + 23.44225586359715 + ], + [ + 73.98280634422304, + 24.165687423105766 + ], + [ + 74.7220916188104, + 24.165687423105766 + ], + [ + 74.7220916188104, + 23.44225586359715 + ], + [ + 73.98280634422304, + 23.44225586359715 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.98280634422304, + 24.165687423105766 + ], + [ + 73.98280634422304, + 24.88911898261438 + ], + [ + 74.7220916188104, + 24.88911898261438 + ], + [ + 74.7220916188104, + 24.165687423105766 + ], + [ + 73.98280634422304, + 24.165687423105766 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.98280634422304, + 24.88911898261438 + ], + [ + 73.98280634422304, + 25.612550542122996 + ], + [ + 74.7220916188104, + 25.612550542122996 + ], + [ + 74.7220916188104, + 24.88911898261438 + ], + [ + 73.98280634422304, + 24.88911898261438 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.98280634422304, + 25.612550542122996 + ], + [ + 73.98280634422304, + 26.33598210163161 + ], + [ + 74.7220916188104, + 26.33598210163161 + ], + [ + 74.7220916188104, + 25.612550542122996 + ], + [ + 73.98280634422304, + 25.612550542122996 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.98280634422304, + 26.33598210163161 + ], + [ + 73.98280634422304, + 27.059413661140226 + ], + [ + 74.7220916188104, + 27.059413661140226 + ], + [ + 74.7220916188104, + 26.33598210163161 + ], + [ + 73.98280634422304, + 26.33598210163161 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.98280634422304, + 27.059413661140226 + ], + [ + 73.98280634422304, + 27.78284522064884 + ], + [ + 74.7220916188104, + 27.78284522064884 + ], + [ + 74.7220916188104, + 27.059413661140226 + ], + [ + 73.98280634422304, + 27.059413661140226 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.98280634422304, + 27.78284522064884 + ], + [ + 73.98280634422304, + 28.506276780157457 + ], + [ + 74.7220916188104, + 28.506276780157457 + ], + [ + 74.7220916188104, + 27.78284522064884 + ], + [ + 73.98280634422304, + 27.78284522064884 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.98280634422304, + 28.506276780157457 + ], + [ + 73.98280634422304, + 29.22970833966607 + ], + [ + 74.7220916188104, + 29.22970833966607 + ], + [ + 74.7220916188104, + 28.506276780157457 + ], + [ + 73.98280634422304, + 28.506276780157457 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.98280634422304, + 29.22970833966607 + ], + [ + 73.98280634422304, + 29.953139899174687 + ], + [ + 74.7220916188104, + 29.953139899174687 + ], + [ + 74.7220916188104, + 29.22970833966607 + ], + [ + 73.98280634422304, + 29.22970833966607 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.98280634422304, + 29.953139899174687 + ], + [ + 73.98280634422304, + 30.676571458683302 + ], + [ + 74.7220916188104, + 30.676571458683302 + ], + [ + 74.7220916188104, + 29.953139899174687 + ], + [ + 73.98280634422304, + 29.953139899174687 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.98280634422304, + 30.676571458683302 + ], + [ + 73.98280634422304, + 31.400003018191917 + ], + [ + 74.7220916188104, + 31.400003018191917 + ], + [ + 74.7220916188104, + 30.676571458683302 + ], + [ + 73.98280634422304, + 30.676571458683302 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.98280634422304, + 31.400003018191917 + ], + [ + 73.98280634422304, + 32.123434577700536 + ], + [ + 74.7220916188104, + 32.123434577700536 + ], + [ + 74.7220916188104, + 31.400003018191917 + ], + [ + 73.98280634422304, + 31.400003018191917 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.98280634422304, + 32.123434577700536 + ], + [ + 73.98280634422304, + 32.84686613720915 + ], + [ + 74.7220916188104, + 32.84686613720915 + ], + [ + 74.7220916188104, + 32.123434577700536 + ], + [ + 73.98280634422304, + 32.123434577700536 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.98280634422304, + 32.84686613720915 + ], + [ + 73.98280634422304, + 33.57029769671776 + ], + [ + 74.7220916188104, + 33.57029769671776 + ], + [ + 74.7220916188104, + 32.84686613720915 + ], + [ + 73.98280634422304, + 32.84686613720915 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.98280634422304, + 33.57029769671776 + ], + [ + 73.98280634422304, + 34.29372925622637 + ], + [ + 74.7220916188104, + 34.29372925622637 + ], + [ + 74.7220916188104, + 33.57029769671776 + ], + [ + 73.98280634422304, + 33.57029769671776 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.98280634422304, + 34.29372925622637 + ], + [ + 73.98280634422304, + 35.01716081573498 + ], + [ + 74.7220916188104, + 35.01716081573498 + ], + [ + 74.7220916188104, + 34.29372925622637 + ], + [ + 73.98280634422304, + 34.29372925622637 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.98280634422304, + 35.01716081573498 + ], + [ + 73.98280634422304, + 35.740592375243594 + ], + [ + 74.7220916188104, + 35.740592375243594 + ], + [ + 74.7220916188104, + 35.01716081573498 + ], + [ + 73.98280634422304, + 35.01716081573498 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.98280634422304, + 35.740592375243594 + ], + [ + 73.98280634422304, + 36.464023934752205 + ], + [ + 74.7220916188104, + 36.464023934752205 + ], + [ + 74.7220916188104, + 35.740592375243594 + ], + [ + 73.98280634422304, + 35.740592375243594 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.98280634422304, + 36.464023934752205 + ], + [ + 73.98280634422304, + 37.18745549426082 + ], + [ + 74.7220916188104, + 37.18745549426082 + ], + [ + 74.7220916188104, + 36.464023934752205 + ], + [ + 73.98280634422304, + 36.464023934752205 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.98280634422304, + 37.18745549426082 + ], + [ + 73.98280634422304, + 37.91088705376943 + ], + [ + 74.7220916188104, + 37.91088705376943 + ], + [ + 74.7220916188104, + 37.18745549426082 + ], + [ + 73.98280634422304, + 37.18745549426082 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.98280634422304, + 37.91088705376943 + ], + [ + 73.98280634422304, + 38.63431861327804 + ], + [ + 74.7220916188104, + 38.63431861327804 + ], + [ + 74.7220916188104, + 37.91088705376943 + ], + [ + 73.98280634422304, + 37.91088705376943 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.98280634422304, + 38.63431861327804 + ], + [ + 73.98280634422304, + 39.35775017278665 + ], + [ + 74.7220916188104, + 39.35775017278665 + ], + [ + 74.7220916188104, + 38.63431861327804 + ], + [ + 73.98280634422304, + 38.63431861327804 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.98280634422304, + 39.35775017278665 + ], + [ + 73.98280634422304, + 40.08118173229526 + ], + [ + 74.7220916188104, + 40.08118173229526 + ], + [ + 74.7220916188104, + 39.35775017278665 + ], + [ + 73.98280634422304, + 39.35775017278665 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.98280634422304, + 40.08118173229526 + ], + [ + 73.98280634422304, + 40.804613291803875 + ], + [ + 74.7220916188104, + 40.804613291803875 + ], + [ + 74.7220916188104, + 40.08118173229526 + ], + [ + 73.98280634422304, + 40.08118173229526 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.98280634422304, + 40.804613291803875 + ], + [ + 73.98280634422304, + 41.52804485131249 + ], + [ + 74.7220916188104, + 41.52804485131249 + ], + [ + 74.7220916188104, + 40.804613291803875 + ], + [ + 73.98280634422304, + 40.804613291803875 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.98280634422304, + 41.52804485131249 + ], + [ + 73.98280634422304, + 42.2514764108211 + ], + [ + 74.7220916188104, + 42.2514764108211 + ], + [ + 74.7220916188104, + 41.52804485131249 + ], + [ + 73.98280634422304, + 41.52804485131249 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.98280634422304, + 42.2514764108211 + ], + [ + 73.98280634422304, + 42.97490797032971 + ], + [ + 74.7220916188104, + 42.97490797032971 + ], + [ + 74.7220916188104, + 42.2514764108211 + ], + [ + 73.98280634422304, + 42.2514764108211 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.98280634422304, + 42.97490797032971 + ], + [ + 73.98280634422304, + 43.69833952983832 + ], + [ + 74.7220916188104, + 43.69833952983832 + ], + [ + 74.7220916188104, + 42.97490797032971 + ], + [ + 73.98280634422304, + 42.97490797032971 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.98280634422304, + 43.69833952983832 + ], + [ + 73.98280634422304, + 44.42177108934693 + ], + [ + 74.7220916188104, + 44.42177108934693 + ], + [ + 74.7220916188104, + 43.69833952983832 + ], + [ + 73.98280634422304, + 43.69833952983832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.98280634422304, + 44.42177108934693 + ], + [ + 73.98280634422304, + 45.145202648855545 + ], + [ + 74.7220916188104, + 45.145202648855545 + ], + [ + 74.7220916188104, + 44.42177108934693 + ], + [ + 73.98280634422304, + 44.42177108934693 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.98280634422304, + 45.145202648855545 + ], + [ + 73.98280634422304, + 45.868634208364156 + ], + [ + 74.7220916188104, + 45.868634208364156 + ], + [ + 74.7220916188104, + 45.145202648855545 + ], + [ + 73.98280634422304, + 45.145202648855545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.98280634422304, + 45.868634208364156 + ], + [ + 73.98280634422304, + 46.59206576787277 + ], + [ + 74.7220916188104, + 46.59206576787277 + ], + [ + 74.7220916188104, + 45.868634208364156 + ], + [ + 73.98280634422304, + 45.868634208364156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.98280634422304, + 46.59206576787277 + ], + [ + 73.98280634422304, + 47.31549732738138 + ], + [ + 74.7220916188104, + 47.31549732738138 + ], + [ + 74.7220916188104, + 46.59206576787277 + ], + [ + 73.98280634422304, + 46.59206576787277 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.98280634422304, + 47.31549732738138 + ], + [ + 73.98280634422304, + 48.03892888688999 + ], + [ + 74.7220916188104, + 48.03892888688999 + ], + [ + 74.7220916188104, + 47.31549732738138 + ], + [ + 73.98280634422304, + 47.31549732738138 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.7220916188104, + 11.867350911459308 + ], + [ + 74.7220916188104, + 12.590782470967923 + ], + [ + 75.46137689339776, + 12.590782470967923 + ], + [ + 75.46137689339776, + 11.867350911459308 + ], + [ + 74.7220916188104, + 11.867350911459308 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.7220916188104, + 12.590782470967923 + ], + [ + 74.7220916188104, + 13.314214030476538 + ], + [ + 75.46137689339776, + 13.314214030476538 + ], + [ + 75.46137689339776, + 12.590782470967923 + ], + [ + 74.7220916188104, + 12.590782470967923 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.7220916188104, + 13.314214030476538 + ], + [ + 74.7220916188104, + 14.037645589985154 + ], + [ + 75.46137689339776, + 14.037645589985154 + ], + [ + 75.46137689339776, + 13.314214030476538 + ], + [ + 74.7220916188104, + 13.314214030476538 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.7220916188104, + 14.037645589985154 + ], + [ + 74.7220916188104, + 14.761077149493769 + ], + [ + 75.46137689339776, + 14.761077149493769 + ], + [ + 75.46137689339776, + 14.037645589985154 + ], + [ + 74.7220916188104, + 14.037645589985154 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.7220916188104, + 14.761077149493769 + ], + [ + 74.7220916188104, + 15.484508709002384 + ], + [ + 75.46137689339776, + 15.484508709002384 + ], + [ + 75.46137689339776, + 14.761077149493769 + ], + [ + 74.7220916188104, + 14.761077149493769 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.7220916188104, + 15.484508709002384 + ], + [ + 74.7220916188104, + 16.207940268511 + ], + [ + 75.46137689339776, + 16.207940268511 + ], + [ + 75.46137689339776, + 15.484508709002384 + ], + [ + 74.7220916188104, + 15.484508709002384 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.7220916188104, + 16.207940268511 + ], + [ + 74.7220916188104, + 16.931371828019614 + ], + [ + 75.46137689339776, + 16.931371828019614 + ], + [ + 75.46137689339776, + 16.207940268511 + ], + [ + 74.7220916188104, + 16.207940268511 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.7220916188104, + 16.931371828019614 + ], + [ + 74.7220916188104, + 17.65480338752823 + ], + [ + 75.46137689339776, + 17.65480338752823 + ], + [ + 75.46137689339776, + 16.931371828019614 + ], + [ + 74.7220916188104, + 16.931371828019614 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.7220916188104, + 17.65480338752823 + ], + [ + 74.7220916188104, + 18.378234947036844 + ], + [ + 75.46137689339776, + 18.378234947036844 + ], + [ + 75.46137689339776, + 17.65480338752823 + ], + [ + 74.7220916188104, + 17.65480338752823 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.7220916188104, + 18.378234947036844 + ], + [ + 74.7220916188104, + 19.10166650654546 + ], + [ + 75.46137689339776, + 19.10166650654546 + ], + [ + 75.46137689339776, + 18.378234947036844 + ], + [ + 74.7220916188104, + 18.378234947036844 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.7220916188104, + 19.10166650654546 + ], + [ + 74.7220916188104, + 19.825098066054075 + ], + [ + 75.46137689339776, + 19.825098066054075 + ], + [ + 75.46137689339776, + 19.10166650654546 + ], + [ + 74.7220916188104, + 19.10166650654546 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.7220916188104, + 19.825098066054075 + ], + [ + 74.7220916188104, + 20.54852962556269 + ], + [ + 75.46137689339776, + 20.54852962556269 + ], + [ + 75.46137689339776, + 19.825098066054075 + ], + [ + 74.7220916188104, + 19.825098066054075 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.7220916188104, + 20.54852962556269 + ], + [ + 74.7220916188104, + 21.271961185071305 + ], + [ + 75.46137689339776, + 21.271961185071305 + ], + [ + 75.46137689339776, + 20.54852962556269 + ], + [ + 74.7220916188104, + 20.54852962556269 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.7220916188104, + 21.271961185071305 + ], + [ + 74.7220916188104, + 21.99539274457992 + ], + [ + 75.46137689339776, + 21.99539274457992 + ], + [ + 75.46137689339776, + 21.271961185071305 + ], + [ + 74.7220916188104, + 21.271961185071305 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.7220916188104, + 21.99539274457992 + ], + [ + 74.7220916188104, + 22.718824304088535 + ], + [ + 75.46137689339776, + 22.718824304088535 + ], + [ + 75.46137689339776, + 21.99539274457992 + ], + [ + 74.7220916188104, + 21.99539274457992 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.7220916188104, + 22.718824304088535 + ], + [ + 74.7220916188104, + 23.44225586359715 + ], + [ + 75.46137689339776, + 23.44225586359715 + ], + [ + 75.46137689339776, + 22.718824304088535 + ], + [ + 74.7220916188104, + 22.718824304088535 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.7220916188104, + 23.44225586359715 + ], + [ + 74.7220916188104, + 24.165687423105766 + ], + [ + 75.46137689339776, + 24.165687423105766 + ], + [ + 75.46137689339776, + 23.44225586359715 + ], + [ + 74.7220916188104, + 23.44225586359715 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.7220916188104, + 24.165687423105766 + ], + [ + 74.7220916188104, + 24.88911898261438 + ], + [ + 75.46137689339776, + 24.88911898261438 + ], + [ + 75.46137689339776, + 24.165687423105766 + ], + [ + 74.7220916188104, + 24.165687423105766 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.7220916188104, + 24.88911898261438 + ], + [ + 74.7220916188104, + 25.612550542122996 + ], + [ + 75.46137689339776, + 25.612550542122996 + ], + [ + 75.46137689339776, + 24.88911898261438 + ], + [ + 74.7220916188104, + 24.88911898261438 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.7220916188104, + 25.612550542122996 + ], + [ + 74.7220916188104, + 26.33598210163161 + ], + [ + 75.46137689339776, + 26.33598210163161 + ], + [ + 75.46137689339776, + 25.612550542122996 + ], + [ + 74.7220916188104, + 25.612550542122996 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.7220916188104, + 26.33598210163161 + ], + [ + 74.7220916188104, + 27.059413661140226 + ], + [ + 75.46137689339776, + 27.059413661140226 + ], + [ + 75.46137689339776, + 26.33598210163161 + ], + [ + 74.7220916188104, + 26.33598210163161 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.7220916188104, + 27.059413661140226 + ], + [ + 74.7220916188104, + 27.78284522064884 + ], + [ + 75.46137689339776, + 27.78284522064884 + ], + [ + 75.46137689339776, + 27.059413661140226 + ], + [ + 74.7220916188104, + 27.059413661140226 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.7220916188104, + 27.78284522064884 + ], + [ + 74.7220916188104, + 28.506276780157457 + ], + [ + 75.46137689339776, + 28.506276780157457 + ], + [ + 75.46137689339776, + 27.78284522064884 + ], + [ + 74.7220916188104, + 27.78284522064884 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.7220916188104, + 28.506276780157457 + ], + [ + 74.7220916188104, + 29.22970833966607 + ], + [ + 75.46137689339776, + 29.22970833966607 + ], + [ + 75.46137689339776, + 28.506276780157457 + ], + [ + 74.7220916188104, + 28.506276780157457 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.7220916188104, + 29.22970833966607 + ], + [ + 74.7220916188104, + 29.953139899174687 + ], + [ + 75.46137689339776, + 29.953139899174687 + ], + [ + 75.46137689339776, + 29.22970833966607 + ], + [ + 74.7220916188104, + 29.22970833966607 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.7220916188104, + 29.953139899174687 + ], + [ + 74.7220916188104, + 30.676571458683302 + ], + [ + 75.46137689339776, + 30.676571458683302 + ], + [ + 75.46137689339776, + 29.953139899174687 + ], + [ + 74.7220916188104, + 29.953139899174687 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.7220916188104, + 30.676571458683302 + ], + [ + 74.7220916188104, + 31.400003018191917 + ], + [ + 75.46137689339776, + 31.400003018191917 + ], + [ + 75.46137689339776, + 30.676571458683302 + ], + [ + 74.7220916188104, + 30.676571458683302 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.7220916188104, + 31.400003018191917 + ], + [ + 74.7220916188104, + 32.123434577700536 + ], + [ + 75.46137689339776, + 32.123434577700536 + ], + [ + 75.46137689339776, + 31.400003018191917 + ], + [ + 74.7220916188104, + 31.400003018191917 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.7220916188104, + 32.123434577700536 + ], + [ + 74.7220916188104, + 32.84686613720915 + ], + [ + 75.46137689339776, + 32.84686613720915 + ], + [ + 75.46137689339776, + 32.123434577700536 + ], + [ + 74.7220916188104, + 32.123434577700536 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.7220916188104, + 32.84686613720915 + ], + [ + 74.7220916188104, + 33.57029769671776 + ], + [ + 75.46137689339776, + 33.57029769671776 + ], + [ + 75.46137689339776, + 32.84686613720915 + ], + [ + 74.7220916188104, + 32.84686613720915 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.7220916188104, + 33.57029769671776 + ], + [ + 74.7220916188104, + 34.29372925622637 + ], + [ + 75.46137689339776, + 34.29372925622637 + ], + [ + 75.46137689339776, + 33.57029769671776 + ], + [ + 74.7220916188104, + 33.57029769671776 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.7220916188104, + 34.29372925622637 + ], + [ + 74.7220916188104, + 35.01716081573498 + ], + [ + 75.46137689339776, + 35.01716081573498 + ], + [ + 75.46137689339776, + 34.29372925622637 + ], + [ + 74.7220916188104, + 34.29372925622637 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.7220916188104, + 35.01716081573498 + ], + [ + 74.7220916188104, + 35.740592375243594 + ], + [ + 75.46137689339776, + 35.740592375243594 + ], + [ + 75.46137689339776, + 35.01716081573498 + ], + [ + 74.7220916188104, + 35.01716081573498 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.7220916188104, + 35.740592375243594 + ], + [ + 74.7220916188104, + 36.464023934752205 + ], + [ + 75.46137689339776, + 36.464023934752205 + ], + [ + 75.46137689339776, + 35.740592375243594 + ], + [ + 74.7220916188104, + 35.740592375243594 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.7220916188104, + 36.464023934752205 + ], + [ + 74.7220916188104, + 37.18745549426082 + ], + [ + 75.46137689339776, + 37.18745549426082 + ], + [ + 75.46137689339776, + 36.464023934752205 + ], + [ + 74.7220916188104, + 36.464023934752205 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.7220916188104, + 37.18745549426082 + ], + [ + 74.7220916188104, + 37.91088705376943 + ], + [ + 75.46137689339776, + 37.91088705376943 + ], + [ + 75.46137689339776, + 37.18745549426082 + ], + [ + 74.7220916188104, + 37.18745549426082 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.7220916188104, + 37.91088705376943 + ], + [ + 74.7220916188104, + 38.63431861327804 + ], + [ + 75.46137689339776, + 38.63431861327804 + ], + [ + 75.46137689339776, + 37.91088705376943 + ], + [ + 74.7220916188104, + 37.91088705376943 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.7220916188104, + 38.63431861327804 + ], + [ + 74.7220916188104, + 39.35775017278665 + ], + [ + 75.46137689339776, + 39.35775017278665 + ], + [ + 75.46137689339776, + 38.63431861327804 + ], + [ + 74.7220916188104, + 38.63431861327804 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.7220916188104, + 39.35775017278665 + ], + [ + 74.7220916188104, + 40.08118173229526 + ], + [ + 75.46137689339776, + 40.08118173229526 + ], + [ + 75.46137689339776, + 39.35775017278665 + ], + [ + 74.7220916188104, + 39.35775017278665 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.7220916188104, + 40.08118173229526 + ], + [ + 74.7220916188104, + 40.804613291803875 + ], + [ + 75.46137689339776, + 40.804613291803875 + ], + [ + 75.46137689339776, + 40.08118173229526 + ], + [ + 74.7220916188104, + 40.08118173229526 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.7220916188104, + 40.804613291803875 + ], + [ + 74.7220916188104, + 41.52804485131249 + ], + [ + 75.46137689339776, + 41.52804485131249 + ], + [ + 75.46137689339776, + 40.804613291803875 + ], + [ + 74.7220916188104, + 40.804613291803875 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.7220916188104, + 41.52804485131249 + ], + [ + 74.7220916188104, + 42.2514764108211 + ], + [ + 75.46137689339776, + 42.2514764108211 + ], + [ + 75.46137689339776, + 41.52804485131249 + ], + [ + 74.7220916188104, + 41.52804485131249 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.7220916188104, + 42.2514764108211 + ], + [ + 74.7220916188104, + 42.97490797032971 + ], + [ + 75.46137689339776, + 42.97490797032971 + ], + [ + 75.46137689339776, + 42.2514764108211 + ], + [ + 74.7220916188104, + 42.2514764108211 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.7220916188104, + 42.97490797032971 + ], + [ + 74.7220916188104, + 43.69833952983832 + ], + [ + 75.46137689339776, + 43.69833952983832 + ], + [ + 75.46137689339776, + 42.97490797032971 + ], + [ + 74.7220916188104, + 42.97490797032971 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.7220916188104, + 43.69833952983832 + ], + [ + 74.7220916188104, + 44.42177108934693 + ], + [ + 75.46137689339776, + 44.42177108934693 + ], + [ + 75.46137689339776, + 43.69833952983832 + ], + [ + 74.7220916188104, + 43.69833952983832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.7220916188104, + 44.42177108934693 + ], + [ + 74.7220916188104, + 45.145202648855545 + ], + [ + 75.46137689339776, + 45.145202648855545 + ], + [ + 75.46137689339776, + 44.42177108934693 + ], + [ + 74.7220916188104, + 44.42177108934693 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.7220916188104, + 45.145202648855545 + ], + [ + 74.7220916188104, + 45.868634208364156 + ], + [ + 75.46137689339776, + 45.868634208364156 + ], + [ + 75.46137689339776, + 45.145202648855545 + ], + [ + 74.7220916188104, + 45.145202648855545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.7220916188104, + 45.868634208364156 + ], + [ + 74.7220916188104, + 46.59206576787277 + ], + [ + 75.46137689339776, + 46.59206576787277 + ], + [ + 75.46137689339776, + 45.868634208364156 + ], + [ + 74.7220916188104, + 45.868634208364156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.7220916188104, + 46.59206576787277 + ], + [ + 74.7220916188104, + 47.31549732738138 + ], + [ + 75.46137689339776, + 47.31549732738138 + ], + [ + 75.46137689339776, + 46.59206576787277 + ], + [ + 74.7220916188104, + 46.59206576787277 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.7220916188104, + 47.31549732738138 + ], + [ + 74.7220916188104, + 48.03892888688999 + ], + [ + 75.46137689339776, + 48.03892888688999 + ], + [ + 75.46137689339776, + 47.31549732738138 + ], + [ + 74.7220916188104, + 47.31549732738138 + ] + ] + ] + } + } + ] +} \ No newline at end of file diff --git a/packages/turf-square/.npmignore b/packages/turf-square/.npmignore new file mode 100644 index 0000000000..bb3c08c09a --- /dev/null +++ b/packages/turf-square/.npmignore @@ -0,0 +1,2 @@ +test +coverage diff --git a/packages/turf-square/LICENSE b/packages/turf-square/LICENSE new file mode 100644 index 0000000000..64fb8e99a3 --- /dev/null +++ b/packages/turf-square/LICENSE @@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) 2014 Morgan Herlocker + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. \ No newline at end of file diff --git a/packages/turf-square/README.md b/packages/turf-square/README.md new file mode 100644 index 0000000000..13b95678fc --- /dev/null +++ b/packages/turf-square/README.md @@ -0,0 +1,55 @@ +# turf-square + +[![build status](https://secure.travis-ci.org/Turfjs/turf-square.png)](http://travis-ci.org/Turfjs/turf-square) + +turf square module + + +### `turf.square(bbox)` + +Takes a bounding box and calculates the minimum square bounding box that would contain the input. + + +### Parameters + +| parameter | type | description | +| --------- | ----------------- | -------------- | +| `bbox` | Array\.\ | a bounding box | + + +### Example + +```js +var bbox = [-20,-20,-15,0]; + +var squared = turf.square(bbox); + +var features = { + "type": "FeatureCollection", + "features": [ + turf.bboxPolygon(bbox), + turf.bboxPolygon(squared) + ] +}; + +//=features +``` + + +**Returns** `Array.`, a square surrounding `bbox` + +## Installation + +Requires [nodejs](http://nodejs.org/). + +```sh +$ npm install turf-square +``` + +## Tests + +```sh +$ npm test +``` + + diff --git a/packages/turf-square/bench.js b/packages/turf-square/bench.js new file mode 100644 index 0000000000..c7ca669bab --- /dev/null +++ b/packages/turf-square/bench.js @@ -0,0 +1,18 @@ +var square = require('./'); +var Benchmark = require('benchmark'); +var fs = require('fs'); + +var bbox = [0,0,5,10]; + +var suite = new Benchmark.Suite('turf-square'); +suite + .add('turf-square',function () { + square(bbox); + }) + .on('cycle', function (event) { + console.log(String(event.target)); + }) + .on('complete', function () { + + }) + .run(); \ No newline at end of file diff --git a/packages/turf-square/index.js b/packages/turf-square/index.js new file mode 100644 index 0000000000..90e51cac0a --- /dev/null +++ b/packages/turf-square/index.js @@ -0,0 +1,46 @@ +var distance = require('turf-distance'); + +/** + * Takes a bounding box and calculates the minimum square bounding box that + * would contain the input. + * + * @name square + * @category measurement + * @param {Array} bbox a bounding box + * @return {Array} a square surrounding `bbox` + * @example + * var bbox = [-20,-20,-15,0]; + * + * var squared = turf.square(bbox); + * + * var features = { + * "type": "FeatureCollection", + * "features": [ + * turf.bboxPolygon(bbox), + * turf.bboxPolygon(squared) + * ] + * }; + * + * //=features + */ +module.exports = function (bbox) { + var horizontalDistance = distance(bbox.slice(0, 2), [bbox[2], bbox[1]], 'miles'); + var verticalDistance = distance(bbox.slice(0, 2), [bbox[0], bbox[3]], 'miles'); + if (horizontalDistance >= verticalDistance) { + var verticalMidpoint = (bbox[1] + bbox[3]) / 2; + return [ + bbox[0], + verticalMidpoint - ((bbox[2] - bbox[0]) / 2), + bbox[2], + verticalMidpoint + ((bbox[2] - bbox[0]) / 2) + ]; + } else { + var horizontalMidpoint = (bbox[0] + bbox[2]) / 2; + return [ + horizontalMidpoint - ((bbox[3] - bbox[1]) / 2), + bbox[1], + horizontalMidpoint + ((bbox[3] - bbox[1]) / 2), + bbox[3] + ]; + } +}; diff --git a/packages/turf-square/package.json b/packages/turf-square/package.json new file mode 100644 index 0000000000..9a5f5f26f8 --- /dev/null +++ b/packages/turf-square/package.json @@ -0,0 +1,33 @@ +{ + "name": "turf-square", + "version": "3.0.5", + "description": "turf square module", + "main": "index.js", + "scripts": { + "test": "node test.js" + }, + "repository": { + "type": "git", + "url": "https://github.com/Turfjs/turf-square.git" + }, + "keywords": [ + "turf", + "gis", + "geojson", + "extent" + ], + "author": "morganherlocker", + "license": "MIT", + "bugs": { + "url": "https://github.com/Turfjs/turf-square/issues" + }, + "homepage": "https://github.com/Turfjs/turf-square", + "devDependencies": { + "benchmark": "^1.0.0", + "tape": "^3.5.0" + }, + "dependencies": { + "turf-distance": "^3.0.5", + "turf-helpers": "^3.0.5" + } +} diff --git a/packages/turf-square/test.js b/packages/turf-square/test.js new file mode 100644 index 0000000000..caa6aed2df --- /dev/null +++ b/packages/turf-square/test.js @@ -0,0 +1,14 @@ +var test = require('tape'); +var square = require('./'); + +test('square', function(t){ + var bbox1 = [0,0,5,10]; + var bbox2 = [0,0,10,5]; + + var sq1 = square(bbox1); + var sq2 = square(bbox2); + + t.deepEqual(sq1, [-2.5, 0, 7.5, 10]); + t.deepEqual(sq2, [0, -2.5, 10, 7.5]); + t.end(); +}) diff --git a/packages/turf-tag/.npmignore b/packages/turf-tag/.npmignore new file mode 100644 index 0000000000..bb3c08c09a --- /dev/null +++ b/packages/turf-tag/.npmignore @@ -0,0 +1,2 @@ +test +coverage diff --git a/packages/turf-tag/LICENSE b/packages/turf-tag/LICENSE new file mode 100644 index 0000000000..64fb8e99a3 --- /dev/null +++ b/packages/turf-tag/LICENSE @@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) 2014 Morgan Herlocker + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. \ No newline at end of file diff --git a/packages/turf-tag/README.md b/packages/turf-tag/README.md new file mode 100644 index 0000000000..3281117254 --- /dev/null +++ b/packages/turf-tag/README.md @@ -0,0 +1,68 @@ +# turf-tag + +[![build status](https://secure.travis-ci.org/Turfjs/turf-tag.png)](http://travis-ci.org/Turfjs/turf-tag) + +turf tag module + + +### `turf.tag(points, polygons, polyId, containingPolyId)` + +Takes a set of Point|points and a set of Polygon|polygons and performs a spatial join. + + +### Parameters + +| parameter | type | description | +| ------------------ | ------------------------------ | --------------------------------------------------------------------- | +| `points` | FeatureCollection\.\ | input points | +| `polygons` | FeatureCollection\.\ | input polygons | +| `polyId` | String | property in `polygons` to add to joined Point features | +| `containingPolyId` | String | property in `points` in which to store joined property from `polygons | + + +### Example + +```js +var bbox = [0, 0, 10, 10]; +// create a triangular grid of polygons +var triangleGrid = turf.triangleGrid(bbox, 50, 'miles'); +triangleGrid.features.forEach(function(f) { + f.properties.fill = '#' + + (~~(Math.random() * 16)).toString(16) + + (~~(Math.random() * 16)).toString(16) + + (~~(Math.random() * 16)).toString(16); + f.properties.stroke = 0; + f.properties['fill-opacity'] = 1; +}); +var randomPoints = turf.random('point', 30, { + bbox: bbox +}); +var both = turf.featurecollection( + triangleGrid.features.concat(randomPoints.features)); + +//=both + +var tagged = turf.tag(randomPoints, triangleGrid, + 'fill', 'marker-color'); + +//=tagged +``` + + +**Returns** `FeatureCollection.`, points with `containingPolyId` property containing values from `polyId` + +## Installation + +Requires [nodejs](http://nodejs.org/). + +```sh +$ npm install turf-tag +``` + +## Tests + +```sh +$ npm test +``` + + diff --git a/packages/turf-tag/bench.js b/packages/turf-tag/bench.js new file mode 100644 index 0000000000..ea78d5a155 --- /dev/null +++ b/packages/turf-tag/bench.js @@ -0,0 +1,19 @@ +var tag = require('./'); +var Benchmark = require('benchmark'); +var fs = require('fs'); + +var points = JSON.parse(fs.readFileSync('./test/tagPoints.geojson')); +var polygons = JSON.parse(fs.readFileSync('./test/tagPolygons.geojson')); + +var suite = new Benchmark.Suite('turf-tag'); +suite + .add('turf-tag',function () { + tag(points, polygons, 'polyID', 'containingPolyID'); + }) + .on('cycle', function (event) { + console.log(String(event.target)); + }) + .on('complete', function () { + + }) + .run(); diff --git a/packages/turf-tag/index.js b/packages/turf-tag/index.js new file mode 100644 index 0000000000..3a58f49b41 --- /dev/null +++ b/packages/turf-tag/index.js @@ -0,0 +1,56 @@ +var inside = require('turf-inside'); + +/** + * Takes a set of {@link Point|points} and a set of {@link Polygon|polygons} and performs a spatial join. + * + * @name tag + * @category joins + * @param {FeatureCollection} points input points + * @param {FeatureCollection} polygons input polygons + * @param {String} polyId property in `polygons` to add to joined Point features + * @param {String} containingPolyId property in `points` in which to store joined property from `polygons + * @return {FeatureCollection} points with `containingPolyId` property containing values from `polyId` + * @example + * var bbox = [0, 0, 10, 10]; + * // create a triangular grid of polygons + * var triangleGrid = turf.triangleGrid(bbox, 50, 'miles'); + * triangleGrid.features.forEach(function(f) { + * f.properties.fill = '#' + + * (~~(Math.random() * 16)).toString(16) + + * (~~(Math.random() * 16)).toString(16) + + * (~~(Math.random() * 16)).toString(16); + * f.properties.stroke = 0; + * f.properties['fill-opacity'] = 1; + * }); + * var randomPoints = turf.random('point', 30, { + * bbox: bbox + * }); + * var both = turf.featurecollection( + * triangleGrid.features.concat(randomPoints.features)); + * + * //=both + * + * var tagged = turf.tag(randomPoints, triangleGrid, + * 'fill', 'marker-color'); + * + * //=tagged + */ +module.exports = function (points, polygons, field, outField) { + // prevent mutations + points = JSON.parse(JSON.stringify(points)); + polygons = JSON.parse(JSON.stringify(polygons)); + points.features.forEach(function (pt) { + if (!pt.properties) { + pt.properties = {}; + } + polygons.features.forEach(function (poly) { + if (pt.properties[outField] === undefined) { + var isInside = inside(pt, poly); + if (isInside) { + pt.properties[outField] = poly.properties[field]; + } + } + }); + }); + return points; +}; diff --git a/packages/turf-tag/package.json b/packages/turf-tag/package.json new file mode 100644 index 0000000000..d1e1ec5089 --- /dev/null +++ b/packages/turf-tag/package.json @@ -0,0 +1,36 @@ +{ + "name": "turf-tag", + "version": "3.0.5", + "description": "turf tag module", + "main": "index.js", + "scripts": { + "test": "node test.js" + }, + "repository": { + "type": "git", + "url": "https://github.com/Turfjs/turf-tag.git" + }, + "keywords": [ + "geojson", + "turf", + "tag", + "polygon", + "featurecollection", + "point", + "data", + "analysis" + ], + "author": "morganherlocker", + "license": "MIT", + "bugs": { + "url": "https://github.com/Turfjs/turf-tag/issues" + }, + "homepage": "https://github.com/Turfjs/turf-tag", + "dependencies": { + "turf-inside": "^3.0.5" + }, + "devDependencies": { + "benchmark": "^1.0.0", + "tape": "^3.5.0" + } +} diff --git a/packages/turf-tag/test.js b/packages/turf-tag/test.js new file mode 100644 index 0000000000..62770af097 --- /dev/null +++ b/packages/turf-tag/test.js @@ -0,0 +1,20 @@ +var test = require('tape'); +var fs = require('fs'); +var tag = require('./'); + +test('tag', function(t){ + var points = JSON.parse(fs.readFileSync(__dirname + '/test/tagPoints.geojson')); + var polygons = JSON.parse(fs.readFileSync(__dirname + '/test/tagPolygons.geojson')); + + var taggedPoints = tag(points, polygons, 'polyID', 'containingPolyID'); + + t.ok(taggedPoints.features, 'features should be ok'); + t.equal(taggedPoints.features.length, points.features.length, + 'tagged points should have the same length as the input points'); + + var count = taggedPoints.features.filter(function(pt){ + return (pt.properties.containingPolyID === 4); + }).length; + t.equal(count, 6, 'polygon 4 should have tagged 6 points'); + t.end(); +}); diff --git a/packages/turf-tag/test/tagPoints.geojson b/packages/turf-tag/test/tagPoints.geojson new file mode 100644 index 0000000000..a47f35aee5 --- /dev/null +++ b/packages/turf-tag/test/tagPoints.geojson @@ -0,0 +1,225 @@ +{ + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -122.26959228515624, + 37.82768377181361 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -122.31216430664061, + 37.72782336496339 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -122.21397399902344, + 37.77722770873696 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -122.20230102539062, + 37.72890952922229 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -122.12333679199219, + 37.688167468408025 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -122.17140197753905, + 37.75334401310656 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -122.16796875, + 37.688167468408025 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -122.16728210449219, + 37.72673718477409 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -122.43370056152344, + 37.761487048570935 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -122.36022949218749, + 37.83093781796035 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -122.17483520507811, + 37.837445479729666 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -122.11647033691406, + 37.6327223292973 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -122.07389831542969, + 37.627828123247475 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -122.24349975585938, + 37.795678008523424 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -122.09587097167967, + 37.81737834565083 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -122.05398559570312, + 37.773428545820956 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -122.26821899414061, + 37.71533133102705 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -122.06497192382811, + 37.70663997801686 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -122.06771850585939, + 37.58594229860422 + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + -122.33413696289064, + 37.93011726880927 + ] + } + } + ] +} \ No newline at end of file diff --git a/packages/turf-tag/test/tagPolygons.geojson b/packages/turf-tag/test/tagPolygons.geojson new file mode 100644 index 0000000000..04339b0509 --- /dev/null +++ b/packages/turf-tag/test/tagPolygons.geojson @@ -0,0 +1,168 @@ +{ + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "properties": {"polyID": 1}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -122.32040405273438, + 37.83202246811909 + ], + [ + -122.37327575683594, + 37.77722770873696 + ], + [ + -122.31285095214842, + 37.722392304715854 + ], + [ + -122.25448608398436, + 37.73379707124429 + ], + [ + -122.32040405273438, + 37.83202246811909 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {"polyID": 2}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -122.32040405273438, + 37.83202246811909 + ], + [ + -122.33207702636717, + 37.89002800137124 + ], + [ + -122.38632202148438, + 37.90411590881245 + ], + [ + -122.3272705078125, + 37.92686760148135 + ], + [ + -122.21466064453125, + 37.823344820392535 + ], + [ + -122.32040405273438, + 37.83202246811909 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {"polyID": 3}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -122.31971740722656, + 37.83202246811909 + ], + [ + -122.09861755371092, + 37.81792077237497 + ], + [ + -122.08694458007812, + 37.69305769827658 + ], + [ + -122.16590881347656, + 37.769629187677 + ], + [ + -122.21466064453125, + 37.7652868250379 + ], + [ + -122.31971740722656, + 37.83202246811909 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {"polyID": 4}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -122.32040405273438, + 37.82931081282506 + ], + [ + -122.20779418945311, + 37.66588567407962 + ], + [ + -122.16316223144531, + 37.60280825923639 + ], + [ + -122.03201293945311, + 37.62347744729925 + ], + [ + -122.08694458007812, + 37.69305769827658 + ], + [ + -122.32040405273438, + 37.82931081282506 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {"polyID": 5}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -122.08831787109375, + 37.69523103025956 + ], + [ + -122.16659545898438, + 37.76908640629127 + ], + [ + -122.21466064453125, + 37.76637243960176 + ], + [ + -122.08831787109375, + 37.69523103025956 + ] + ] + ] + } + } + ] +} \ No newline at end of file diff --git a/packages/turf-tesselate/.npmignore b/packages/turf-tesselate/.npmignore new file mode 100644 index 0000000000..bb3c08c09a --- /dev/null +++ b/packages/turf-tesselate/.npmignore @@ -0,0 +1,2 @@ +test +coverage diff --git a/packages/turf-tesselate/LICENSE b/packages/turf-tesselate/LICENSE new file mode 100644 index 0000000000..87a514a46d --- /dev/null +++ b/packages/turf-tesselate/LICENSE @@ -0,0 +1,22 @@ +The MIT License (MIT) + +Copyright (c) 2015 turf + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + diff --git a/packages/turf-tesselate/README.md b/packages/turf-tesselate/README.md new file mode 100644 index 0000000000..8f6b98aad3 --- /dev/null +++ b/packages/turf-tesselate/README.md @@ -0,0 +1,48 @@ +# turf-tesselate + +[![build status](https://secure.travis-ci.org/Turfjs/turf-tesselate.png)](http://travis-ci.org/Turfjs/turf-tesselate) + +[Turf](http://turfjs.org/) tesselate module + + +### `turf.tesselate(polygon)` + +Tesselates a Feature into a FeatureCollection of triangles +using [earcut](https://github.com/mapbox/earcut). + + +### Parameters + +| parameter | type | description | +| --------- | -------------------- | ------------------------ | +| `polygon` | Feature\.\ | the polygon to tesselate | + + +### Example + +```js +var polygon = {"type":"Feature","id":"USA-CA","properties":{"name":"California"},"geometry":{"type":"Polygon","coordinates":[[[-123.233256,42.006186],[-122.378853,42.011663],[-121.037003,41.995232],[-120.001861,41.995232],[-119.996384,40.264519],[-120.001861,38.999346],[-118.71478,38.101128],[-117.498899,37.21934],[-116.540435,36.501861],[-115.85034,35.970598],[-114.634459,35.00118],[-114.634459,34.87521],[-114.470151,34.710902],[-114.333228,34.448009],[-114.136058,34.305608],[-114.256551,34.174162],[-114.415382,34.108438],[-114.535874,33.933176],[-114.497536,33.697668],[-114.524921,33.54979],[-114.727567,33.40739],[-114.661844,33.034958],[-114.524921,33.029481],[-114.470151,32.843265],[-114.524921,32.755634],[-114.72209,32.717295],[-116.04751,32.624187],[-117.126467,32.536556],[-117.24696,32.668003],[-117.252437,32.876127],[-117.329114,33.122589],[-117.471515,33.297851],[-117.7837,33.538836],[-118.183517,33.763391],[-118.260194,33.703145],[-118.413548,33.741483],[-118.391641,33.840068],[-118.566903,34.042715],[-118.802411,33.998899],[-119.218659,34.146777],[-119.278905,34.26727],[-119.558229,34.415147],[-119.875891,34.40967],[-120.138784,34.475393],[-120.472878,34.448009],[-120.64814,34.579455],[-120.609801,34.858779],[-120.670048,34.902595],[-120.631709,35.099764],[-120.894602,35.247642],[-120.905556,35.450289],[-121.004141,35.461243],[-121.168449,35.636505],[-121.283465,35.674843],[-121.332757,35.784382],[-121.716143,36.195153],[-121.896882,36.315645],[-121.935221,36.638785],[-121.858544,36.6114],[-121.787344,36.803093],[-121.929744,36.978355],[-122.105006,36.956447],[-122.335038,37.115279],[-122.417192,37.241248],[-122.400761,37.361741],[-122.515777,37.520572],[-122.515777,37.783465],[-122.329561,37.783465],[-122.406238,38.15042],[-122.488392,38.112082],[-122.504823,37.931343],[-122.701993,37.893004],[-122.937501,38.029928],[-122.97584,38.265436],[-123.129194,38.451652],[-123.331841,38.566668],[-123.44138,38.698114],[-123.737134,38.95553],[-123.687842,39.032208],[-123.824765,39.366301],[-123.764519,39.552517],[-123.85215,39.831841],[-124.109566,40.105688],[-124.361506,40.259042],[-124.410798,40.439781],[-124.158859,40.877937],[-124.109566,41.025814],[-124.158859,41.14083],[-124.065751,41.442061],[-124.147905,41.715908],[-124.257444,41.781632],[-124.213628,42.000709],[-123.233256,42.006186]]]}}; + +var triangles = turf.tesselate(polygon); + +//=triangles +``` + + +**Returns** `FeatureCollection.`, a geometrycollection feature + +## Installation + +Requires [nodejs](http://nodejs.org/). + +```sh +$ npm install turf-tesselate +``` + +## Tests + +```sh +$ npm test +``` + + diff --git a/packages/turf-tesselate/index.js b/packages/turf-tesselate/index.js new file mode 100644 index 0000000000..554e76a02e --- /dev/null +++ b/packages/turf-tesselate/index.js @@ -0,0 +1,76 @@ +var polygon = require('turf-helpers').polygon; +var earcut = require('earcut'); + +/** + * Tesselates a {@link Feature} into a {@link FeatureCollection} of triangles + * using [earcut](https://github.com/mapbox/earcut). + * + * @name tesselate + * @category misc + * @param {Feature} polygon the polygon to tesselate + * @returns {FeatureCollection} a geometrycollection feature + * @example + * var polygon = {"type":"Feature","id":"USA-CA","properties":{"name":"California"},"geometry":{"type":"Polygon","coordinates":[[[-123.233256,42.006186],[-122.378853,42.011663],[-121.037003,41.995232],[-120.001861,41.995232],[-119.996384,40.264519],[-120.001861,38.999346],[-118.71478,38.101128],[-117.498899,37.21934],[-116.540435,36.501861],[-115.85034,35.970598],[-114.634459,35.00118],[-114.634459,34.87521],[-114.470151,34.710902],[-114.333228,34.448009],[-114.136058,34.305608],[-114.256551,34.174162],[-114.415382,34.108438],[-114.535874,33.933176],[-114.497536,33.697668],[-114.524921,33.54979],[-114.727567,33.40739],[-114.661844,33.034958],[-114.524921,33.029481],[-114.470151,32.843265],[-114.524921,32.755634],[-114.72209,32.717295],[-116.04751,32.624187],[-117.126467,32.536556],[-117.24696,32.668003],[-117.252437,32.876127],[-117.329114,33.122589],[-117.471515,33.297851],[-117.7837,33.538836],[-118.183517,33.763391],[-118.260194,33.703145],[-118.413548,33.741483],[-118.391641,33.840068],[-118.566903,34.042715],[-118.802411,33.998899],[-119.218659,34.146777],[-119.278905,34.26727],[-119.558229,34.415147],[-119.875891,34.40967],[-120.138784,34.475393],[-120.472878,34.448009],[-120.64814,34.579455],[-120.609801,34.858779],[-120.670048,34.902595],[-120.631709,35.099764],[-120.894602,35.247642],[-120.905556,35.450289],[-121.004141,35.461243],[-121.168449,35.636505],[-121.283465,35.674843],[-121.332757,35.784382],[-121.716143,36.195153],[-121.896882,36.315645],[-121.935221,36.638785],[-121.858544,36.6114],[-121.787344,36.803093],[-121.929744,36.978355],[-122.105006,36.956447],[-122.335038,37.115279],[-122.417192,37.241248],[-122.400761,37.361741],[-122.515777,37.520572],[-122.515777,37.783465],[-122.329561,37.783465],[-122.406238,38.15042],[-122.488392,38.112082],[-122.504823,37.931343],[-122.701993,37.893004],[-122.937501,38.029928],[-122.97584,38.265436],[-123.129194,38.451652],[-123.331841,38.566668],[-123.44138,38.698114],[-123.737134,38.95553],[-123.687842,39.032208],[-123.824765,39.366301],[-123.764519,39.552517],[-123.85215,39.831841],[-124.109566,40.105688],[-124.361506,40.259042],[-124.410798,40.439781],[-124.158859,40.877937],[-124.109566,41.025814],[-124.158859,41.14083],[-124.065751,41.442061],[-124.147905,41.715908],[-124.257444,41.781632],[-124.213628,42.000709],[-123.233256,42.006186]]]}}; + * + * var triangles = turf.tesselate(polygon); + * + * //=triangles + */ + +module.exports = function (poly) { + if (!poly.geometry || (poly.geometry.type !== 'Polygon' && poly.geometry.type !== 'MultiPolygon')) { + throw new Error('input must be a Polygon or MultiPolygon'); + } + + var fc = {type: 'FeatureCollection', features: []}; + + if (poly.geometry.type === 'Polygon') { + fc.features = processPolygon(poly.geometry.coordinates); + } else { + poly.geometry.coordinates.forEach(function (coordinates) { + fc.features = fc.features.concat(processPolygon(coordinates)); + }); + } + + return fc; +}; + +function processPolygon(coordinates) { + var data = flattenCoords(coordinates); + var dim = 2; + var result = earcut(data.vertices, data.holes, dim); + + var features = []; + var vertices = []; + + result.forEach(function (vert, i) { + var index = result[i]; + vertices.push([data.vertices[index * dim], data.vertices[index * dim + 1]]); + }); + + for (var i = 0; i < vertices.length; i += 3) { + var coords = vertices.slice(i, i + 3); + coords.push(vertices[i]); + features.push(polygon([coords])); + } + + return features; +} + +function flattenCoords(data) { + var dim = data[0][0].length, + result = {vertices: [], holes: [], dimensions: dim}, + holeIndex = 0; + + for (var i = 0; i < data.length; i++) { + for (var j = 0; j < data[i].length; j++) { + for (var d = 0; d < dim; d++) result.vertices.push(data[i][j][d]); + } + if (i > 0) { + holeIndex += data[i - 1].length; + result.holes.push(holeIndex); + } + } + + return result; +} diff --git a/packages/turf-tesselate/package.json b/packages/turf-tesselate/package.json new file mode 100644 index 0000000000..50ec3d3fd6 --- /dev/null +++ b/packages/turf-tesselate/package.json @@ -0,0 +1,38 @@ +{ + "name": "turf-tesselate", + "version": "3.0.5", + "description": "[Turf](http://turfjs.org/) tesselate module", + "main": "index.js", + "scripts": { + "test": "node test.js" + }, + "repository": { + "type": "git", + "url": "https://github.com/Turfjs/turf-tesselate.git" + }, + "keywords": [ + "turf", + "turfjs", + "tesselation", + "earcut", + "polygon", + "triangles" + ], + "contributors": [ + "morganherlocker", + "Abel Vázquez" + ], + "license": "MIT", + "bugs": { + "url": "https://github.com/Turfjs/turf-tesselate/issues" + }, + "homepage": "https://github.com/Turfjs/turf-tesselate", + "devDependencies": { + "tape": "^4.0.0", + "turf-helpers": "^3.0.5" + }, + "dependencies": { + "earcut": "^2.0.0", + "turf-helpers": "^3.0.5" + } +} diff --git a/packages/turf-tesselate/test.js b/packages/turf-tesselate/test.js new file mode 100644 index 0000000000..a16efedb6e --- /dev/null +++ b/packages/turf-tesselate/test.js @@ -0,0 +1,32 @@ +var test = require('tape'); +var tesselate = require('./'); +var featurecollection = require('turf-helpers').featureCollection; +var point = require('turf-helpers').point; + +test('tesselate', function(t){ + var polygon = {type:"Feature",id:"USA-CA",properties:{fips:"06",name:"California"},geometry:{type:"Polygon",coordinates:[[[-123.233256,42.006186],[-122.378853,42.011663],[-121.037003,41.995232],[-120.001861,41.995232],[-119.996384,40.264519],[-120.001861,38.999346],[-118.71478,38.101128],[-117.498899,37.21934],[-116.540435,36.501861],[-115.85034,35.970598],[-114.634459,35.00118],[-114.634459,34.87521],[-114.470151,34.710902],[-114.333228,34.448009],[-114.136058,34.305608],[-114.256551,34.174162],[-114.415382,34.108438],[-114.535874,33.933176],[-114.497536,33.697668],[-114.524921,33.54979],[-114.727567,33.40739],[-114.661844,33.034958],[-114.524921,33.029481],[-114.470151,32.843265],[-114.524921,32.755634],[-114.72209,32.717295],[-116.04751,32.624187],[-117.126467,32.536556],[-117.24696,32.668003],[-117.252437,32.876127],[-117.329114,33.122589],[-117.471515,33.297851],[-117.7837,33.538836],[-118.183517,33.763391],[-118.260194,33.703145],[-118.413548,33.741483],[-118.391641,33.840068],[-118.566903,34.042715],[-118.802411,33.998899],[-119.218659,34.146777],[-119.278905,34.26727],[-119.558229,34.415147],[-119.875891,34.40967],[-120.138784,34.475393],[-120.472878,34.448009],[-120.64814,34.579455],[-120.609801,34.858779],[-120.670048,34.902595],[-120.631709,35.099764],[-120.894602,35.247642],[-120.905556,35.450289],[-121.004141,35.461243],[-121.168449,35.636505],[-121.283465,35.674843],[-121.332757,35.784382],[-121.716143,36.195153],[-121.896882,36.315645],[-121.935221,36.638785],[-121.858544,36.6114],[-121.787344,36.803093],[-121.929744,36.978355],[-122.105006,36.956447],[-122.335038,37.115279],[-122.417192,37.241248],[-122.400761,37.361741],[-122.515777,37.520572],[-122.515777,37.783465],[-122.329561,37.783465],[-122.406238,38.15042],[-122.488392,38.112082],[-122.504823,37.931343],[-122.701993,37.893004],[-122.937501,38.029928],[-122.97584,38.265436],[-123.129194,38.451652],[-123.331841,38.566668],[-123.44138,38.698114],[-123.737134,38.95553],[-123.687842,39.032208],[-123.824765,39.366301],[-123.764519,39.552517],[-123.85215,39.831841],[-124.109566,40.105688],[-124.361506,40.259042],[-124.410798,40.439781],[-124.158859,40.877937],[-124.109566,41.025814],[-124.158859,41.14083],[-124.065751,41.442061],[-124.147905,41.715908],[-124.257444,41.781632],[-124.213628,42.000709],[-123.233256,42.006186]]]}}; + + var triangles = tesselate(polygon); + + t.equal(triangles.type, 'FeatureCollection', 'Polygon returns a FeatureCollection'); + t.equal(triangles.features[0].geometry.type, 'Polygon', 'contains at least 1 triangle'); + t.equal(triangles.features[0].geometry.coordinates[0].length, 4, 'triangle is valid'); + + var multipolygon = { type: "Feature", properties: { name: "Michigan" }, geometry: { type: "MultiPolygon", coordinates: [ [ [ [ -88.684434, 48.115785 ], [ -88.675628, 48.120444 ], [ -88.676395, 48.124876 ], [ -88.674192, 48.127165 ], [ -88.656915, 48.139225 ], [ -88.614026, 48.154797 ], [ -88.578413, 48.162370 ], [ -88.547033, 48.174891 ], [ -88.524753, 48.165291 ], [ -88.501088, 48.168181 ], [ -88.491961, 48.175466 ], [ -88.482039, 48.179915 ], [ -88.459735, 48.183807 ], [ -88.447236, 48.182916 ], [ -88.422601, 48.190975 ], [ -88.418244, 48.180370 ], [ -88.419875, 48.170731 ], [ -88.427373, 48.166764 ], [ -88.449502, 48.163312 ], [ -88.459697, 48.158551 ], [ -88.469573, 48.152879 ], [ -88.485700, 48.137683 ], [ -88.511902, 48.121699 ], [ -88.566938, 48.093719 ], [ -88.578053, 48.084373 ], [ -88.578395, 48.078003 ], [ -88.575869, 48.075166 ], [ -88.573924, 48.068861 ], [ -88.575048, 48.064154 ], [ -88.579784, 48.058669 ], [ -88.670073, 48.011446 ], [ -88.718555, 47.995134 ], [ -88.772357, 47.981126 ], [ -88.791959, 47.978938 ], [ -88.832063, 47.965213 ], [ -88.852923, 47.965322 ], [ -88.899184, 47.953300 ], [ -88.918029, 47.945605 ], [ -88.923573, 47.937976 ], [ -88.962664, 47.923512 ], [ -88.968903, 47.909474 ], [ -88.968903, 47.901675 ], [ -88.957985, 47.895436 ], [ -88.942387, 47.895436 ], [ -88.899698, 47.902445 ], [ -88.898986, 47.900685 ], [ -88.911665, 47.891344 ], [ -88.998939, 47.867490 ], [ -89.022736, 47.858532 ], [ -89.044463, 47.855750 ], [ -89.056412, 47.852598 ], [ -89.107991, 47.835705 ], [ -89.124134, 47.828616 ], [ -89.157738, 47.824015 ], [ -89.190170, 47.831603 ], [ -89.192681, 47.833430 ], [ -89.192207, 47.841060 ], [ -89.201812, 47.850243 ], [ -89.234533, 47.851718 ], [ -89.235552, 47.853774 ], [ -89.234535, 47.855373 ], [ -89.228507, 47.858039 ], [ -89.246774, 47.871016 ], [ -89.250936, 47.870377 ], [ -89.255202, 47.876102 ], [ -89.247127, 47.888503 ], [ -89.226327, 47.895438 ], [ -89.220710, 47.900850 ], [ -89.221332, 47.908069 ], [ -89.214499, 47.913895 ], [ -89.179154, 47.935030 ], [ -89.095207, 47.967922 ], [ -89.018303, 47.992525 ], [ -88.994163, 48.002290 ], [ -88.940886, 48.019590 ], [ -88.931487, 48.021637 ], [ -88.927529, 48.019615 ], [ -88.915032, 48.020681 ], [ -88.895069, 48.029059 ], [ -88.896327, 48.031801 ], [ -88.893701, 48.034770 ], [ -88.835714, 48.056752 ], [ -88.816084, 48.057006 ], [ -88.810461, 48.055247 ], [ -88.787556, 48.063035 ], [ -88.772077, 48.070502 ], [ -88.771830, 48.079457 ], [ -88.764256, 48.085189 ], [ -88.744458, 48.092769 ], [ -88.728198, 48.101914 ], [ -88.705586, 48.111013 ], [ -88.695353, 48.110549 ], [ -88.684434, 48.115785 ] ] ], [ [ [ -85.566441, 45.760222 ], [ -85.549560, 45.757266 ], [ -85.543750, 45.751413 ], [ -85.535620, 45.750394 ], [ -85.525237, 45.750462 ], [ -85.506133, 45.754715 ], [ -85.501267, 45.754415 ], [ -85.497656, 45.746246 ], [ -85.503758, 45.742771 ], [ -85.508818, 45.742358 ], [ -85.510091, 45.742888 ], [ -85.508522, 45.744991 ], [ -85.509040, 45.748488 ], [ -85.515145, 45.749451 ], [ -85.520569, 45.744745 ], [ -85.521911, 45.739419 ], [ -85.520803, 45.737247 ], [ -85.510895, 45.734414 ], [ -85.498777, 45.726291 ], [ -85.494154, 45.705378 ], [ -85.494016, 45.698476 ], [ -85.502800, 45.690998 ], [ -85.506104, 45.681148 ], [ -85.503767, 45.670472 ], [ -85.500451, 45.664298 ], [ -85.490252, 45.652122 ], [ -85.487026, 45.621211 ], [ -85.491347, 45.609665 ], [ -85.509276, 45.596475 ], [ -85.518038, 45.592912 ], [ -85.526895, 45.591590 ], [ -85.530273, 45.589253 ], [ -85.534064, 45.578198 ], [ -85.541129, 45.575045 ], [ -85.561634, 45.572213 ], [ -85.618049, 45.582647 ], [ -85.622741, 45.586028 ], [ -85.630016, 45.598166 ], [ -85.619850, 45.624547 ], [ -85.608653, 45.632008 ], [ -85.604521, 45.639256 ], [ -85.604951, 45.647599 ], [ -85.609295, 45.658067 ], [ -85.604881, 45.681932 ], [ -85.600842, 45.688860 ], [ -85.590769, 45.698051 ], [ -85.583724, 45.700796 ], [ -85.572309, 45.711449 ], [ -85.565132, 45.730719 ], [ -85.564774, 45.745462 ], [ -85.567128, 45.750419 ], [ -85.567781, 45.757655 ], [ -85.566441, 45.760222 ] ] ], [ [ [ -87.590208, 45.095264 ], [ -87.591880, 45.094689 ], [ -87.614897, 45.100064 ], [ -87.621609, 45.102399 ], [ -87.627640, 45.103328 ], [ -87.628829, 45.104039 ], [ -87.629571, 45.105324 ], [ -87.631535, 45.106224 ], [ -87.636110, 45.105918 ], [ -87.648191, 45.106368 ], [ -87.652512, 45.108633 ], [ -87.657135, 45.107568 ], [ -87.659952, 45.107512 ], [ -87.661211, 45.108279 ], [ -87.661296, 45.112566 ], [ -87.667102, 45.118109 ], [ -87.671000, 45.120069 ], [ -87.672447, 45.121294 ], [ -87.678209, 45.130084 ], [ -87.678511, 45.131204 ], [ -87.676024, 45.134089 ], [ -87.675816, 45.135059 ], [ -87.683902, 45.144135 ], [ -87.688425, 45.147433 ], [ -87.692375, 45.149505 ], [ -87.695055, 45.150522 ], [ -87.700618, 45.151188 ], [ -87.703492, 45.152206 ], [ -87.707391, 45.154679 ], [ -87.708134, 45.156004 ], [ -87.711322, 45.158946 ], [ -87.717945, 45.161156 ], [ -87.723121, 45.165141 ], [ -87.724601, 45.167452 ], [ -87.727768, 45.169596 ], [ -87.730866, 45.170913 ], [ -87.735135, 45.171538 ], [ -87.736104, 45.172244 ], [ -87.736509, 45.173389 ], [ -87.735210, 45.177642 ], [ -87.741805, 45.197051 ], [ -87.741732, 45.198201 ], [ -87.739492, 45.202126 ], [ -87.736339, 45.204653 ], [ -87.727960, 45.207956 ], [ -87.726198, 45.209391 ], [ -87.726175, 45.212640 ], [ -87.727276, 45.216129 ], [ -87.726952, 45.218949 ], [ -87.722473, 45.223309 ], [ -87.721354, 45.226847 ], [ -87.721935, 45.228444 ], [ -87.724920, 45.229977 ], [ -87.725205, 45.231539 ], [ -87.724156, 45.233236 ], [ -87.718264, 45.238333 ], [ -87.717051, 45.238743 ], [ -87.713398, 45.238564 ], [ -87.712184, 45.239014 ], [ -87.711339, 45.239965 ], [ -87.711480, 45.245224 ], [ -87.709145, 45.254649 ], [ -87.707779, 45.258343 ], [ -87.709137, 45.260341 ], [ -87.703053, 45.267041 ], [ -87.698780, 45.269420 ], [ -87.698456, 45.272072 ], [ -87.699492, 45.276659 ], [ -87.698248, 45.281512 ], [ -87.693468, 45.287675 ], [ -87.690364, 45.290270 ], [ -87.687578, 45.296283 ], [ -87.687498, 45.298055 ], [ -87.679085, 45.305841 ], [ -87.675328, 45.307907 ], [ -87.667423, 45.316360 ], [ -87.665243, 45.317115 ], [ -87.663666, 45.318257 ], [ -87.661500, 45.321386 ], [ -87.662029, 45.326434 ], [ -87.661603, 45.327608 ], [ -87.659830, 45.329144 ], [ -87.655775, 45.330847 ], [ -87.648126, 45.339396 ], [ -87.647454, 45.345232 ], [ -87.647729, 45.350721 ], [ -87.648476, 45.352243 ], [ -87.650661, 45.353798 ], [ -87.653568, 45.354204 ], [ -87.656632, 45.358617 ], [ -87.655807, 45.362706 ], [ -87.656624, 45.367295 ], [ -87.657349, 45.368752 ], [ -87.673513, 45.376946 ], [ -87.674403, 45.378065 ], [ -87.674550, 45.381649 ], [ -87.675017, 45.382454 ], [ -87.682866, 45.384950 ], [ -87.685934, 45.388711 ], [ -87.690281, 45.389822 ], [ -87.693956, 45.389893 ], [ -87.699797, 45.387927 ], [ -87.704337, 45.385462 ], [ -87.706767, 45.383827 ], [ -87.708329, 45.381218 ], [ -87.718891, 45.377462 ], [ -87.733409, 45.364432 ], [ -87.737801, 45.359635 ], [ -87.738352, 45.358243 ], [ -87.750928, 45.355037 ], [ -87.751626, 45.354169 ], [ -87.751452, 45.351755 ], [ -87.754104, 45.349442 ], [ -87.762128, 45.348401 ], [ -87.769172, 45.351195 ], [ -87.771384, 45.351210 ], [ -87.773901, 45.351226 ], [ -87.783076, 45.349725 ], [ -87.787967, 45.352612 ], [ -87.790324, 45.353444 ], [ -87.800464, 45.353608 ], [ -87.810076, 45.351269 ], [ -87.823028, 45.352650 ], [ -87.823554, 45.351637 ], [ -87.824855, 45.350713 ], [ -87.826918, 45.350538 ], [ -87.829775, 45.352005 ], [ -87.832612, 45.352249 ], [ -87.835303, 45.350980 ], [ -87.836782, 45.346451 ], [ -87.838141, 45.345101 ], [ -87.848368, 45.340676 ], [ -87.850133, 45.340435 ], [ -87.851318, 45.341346 ], [ -87.851475, 45.342335 ], [ -87.849899, 45.344651 ], [ -87.850418, 45.347492 ], [ -87.852784, 45.349497 ], [ -87.858617, 45.350378 ], [ -87.860871, 45.351192 ], [ -87.863489, 45.353020 ], [ -87.864873, 45.354767 ], [ -87.865274, 45.355969 ], [ -87.865675, 45.358213 ], [ -87.867037, 45.360137 ], [ -87.868560, 45.360537 ], [ -87.870243, 45.360617 ], [ -87.871204, 45.360056 ], [ -87.871285, 45.358614 ], [ -87.871124, 45.357011 ], [ -87.871685, 45.355729 ], [ -87.873529, 45.354286 ], [ -87.879835, 45.351490 ], [ -87.881114, 45.351278 ], [ -87.885170, 45.351736 ], [ -87.886949, 45.353110 ], [ -87.888052, 45.354697 ], [ -87.887828, 45.358122 ], [ -87.884855, 45.362792 ], [ -87.876862, 45.368535 ], [ -87.871485, 45.371546 ], [ -87.871789, 45.373557 ], [ -87.875692, 45.377052 ], [ -87.875424, 45.379373 ], [ -87.873568, 45.381357 ], [ -87.870905, 45.383116 ], [ -87.864677, 45.385232 ], [ -87.859418, 45.388227 ], [ -87.856830, 45.393106 ], [ -87.859603, 45.396409 ], [ -87.859773, 45.397278 ], [ -87.859131, 45.398967 ], [ -87.850969, 45.401925 ], [ -87.849322, 45.403872 ], [ -87.849668, 45.409518 ], [ -87.850533, 45.411685 ], [ -87.851810, 45.413103 ], [ -87.856216, 45.416101 ], [ -87.860432, 45.423504 ], [ -87.860127, 45.429584 ], [ -87.861950, 45.433072 ], [ -87.861697, 45.434473 ], [ -87.855298, 45.441379 ], [ -87.847429, 45.444177 ], [ -87.844815, 45.448411 ], [ -87.836008, 45.450877 ], [ -87.833042, 45.453596 ], [ -87.832456, 45.455020 ], [ -87.827430, 45.458076 ], [ -87.821057, 45.459955 ], [ -87.812976, 45.464159 ], [ -87.812971, 45.466100 ], [ -87.811469, 45.467991 ], [ -87.805773, 45.473139 ], [ -87.805873, 45.474380 ], [ -87.807388, 45.477031 ], [ -87.806891, 45.479092 ], [ -87.798960, 45.485147 ], [ -87.798362, 45.486564 ], [ -87.797824, 45.491468 ], [ -87.796409, 45.494679 ], [ -87.793447, 45.498372 ], [ -87.792769, 45.499967 ], [ -87.793215, 45.505028 ], [ -87.798794, 45.506287 ], [ -87.802267, 45.514233 ], [ -87.804203, 45.524676 ], [ -87.804720, 45.531244 ], [ -87.804528, 45.534373 ], [ -87.803364, 45.537016 ], [ -87.803390, 45.538272 ], [ -87.807159, 45.543523 ], [ -87.813737, 45.548616 ], [ -87.818791, 45.552100 ], [ -87.827215, 45.555620 ], [ -87.832296, 45.558767 ], [ -87.832968, 45.559461 ], [ -87.833591, 45.562529 ], [ -87.831689, 45.568035 ], [ -87.829346, 45.568776 ], [ -87.813745, 45.565175 ], [ -87.806104, 45.562863 ], [ -87.797536, 45.562124 ], [ -87.792372, 45.563055 ], [ -87.790874, 45.564096 ], [ -87.788798, 45.565947 ], [ -87.788326, 45.567941 ], [ -87.787292, 45.574906 ], [ -87.787534, 45.581376 ], [ -87.786767, 45.582830 ], [ -87.785647, 45.583960 ], [ -87.781255, 45.585682 ], [ -87.777199, 45.588499 ], [ -87.776238, 45.597797 ], [ -87.777671, 45.609204 ], [ -87.780845, 45.614599 ], [ -87.792016, 45.616756 ], [ -87.795880, 45.618846 ], [ -87.796179, 45.622074 ], [ -87.796983, 45.623613 ], [ -87.804481, 45.628933 ], [ -87.810194, 45.638732 ], [ -87.817277, 45.643926 ], [ -87.821818, 45.645589 ], [ -87.824102, 45.647138 ], [ -87.824676, 45.653211 ], [ -87.822693, 45.656077 ], [ -87.822425, 45.658012 ], [ -87.823672, 45.659817 ], [ -87.823868, 45.661920 ], [ -87.823164, 45.662732 ], [ -87.803290, 45.666494 ], [ -87.798903, 45.670140 ], [ -87.795355, 45.671334 ], [ -87.781623, 45.673280 ], [ -87.781007, 45.673934 ], [ -87.780737, 45.675458 ], [ -87.780808, 45.680349 ], [ -87.782226, 45.683053 ], [ -87.787727, 45.687180 ], [ -87.801880, 45.693862 ], [ -87.804993, 45.695796 ], [ -87.809075, 45.699717 ], [ -87.809181, 45.700337 ], [ -87.805076, 45.703556 ], [ -87.805081, 45.704974 ], [ -87.805867, 45.706841 ], [ -87.810144, 45.710230 ], [ -87.812338, 45.711303 ], [ -87.831442, 45.714938 ], [ -87.837343, 45.716919 ], [ -87.855480, 45.726943 ], [ -87.864320, 45.737139 ], [ -87.863874, 45.742660 ], [ -87.863050, 45.743090 ], [ -87.864141, 45.745697 ], [ -87.868111, 45.749477 ], [ -87.873339, 45.750439 ], [ -87.875813, 45.753888 ], [ -87.879812, 45.754843 ], [ -87.882261, 45.754779 ], [ -87.891905, 45.754055 ], [ -87.896032, 45.752285 ], [ -87.898363, 45.752503 ], [ -87.900005, 45.753497 ], [ -87.901299, 45.756553 ], [ -87.902707, 45.757932 ], [ -87.904657, 45.759163 ], [ -87.905873, 45.759364 ], [ -87.907771, 45.759280 ], [ -87.908933, 45.758297 ], [ -87.921999, 45.756989 ], [ -87.926611, 45.759590 ], [ -87.929130, 45.760364 ], [ -87.934585, 45.758094 ], [ -87.944113, 45.757422 ], [ -87.954459, 45.758414 ], [ -87.959277, 45.757367 ], [ -87.963452, 45.758220 ], [ -87.964725, 45.759461 ], [ -87.963996, 45.760794 ], [ -87.966970, 45.764021 ], [ -87.972451, 45.766319 ], [ -87.976835, 45.767015 ], [ -87.986429, 45.769596 ], [ -87.989656, 45.772025 ], [ -87.989829, 45.772945 ], [ -87.985597, 45.774926 ], [ -87.983392, 45.774696 ], [ -87.981789, 45.775081 ], [ -87.980870, 45.776977 ], [ -87.982617, 45.782944 ], [ -87.987942, 45.793075 ], [ -87.989831, 45.794827 ], [ -87.991447, 45.795393 ], [ -87.995876, 45.795435 ], [ -88.001593, 45.794091 ], [ -88.007043, 45.792192 ], [ -88.017588, 45.792455 ], [ -88.023600, 45.790094 ], [ -88.027228, 45.789190 ], [ -88.031124, 45.789233 ], [ -88.033568, 45.789816 ], [ -88.039729, 45.789626 ], [ -88.040221, 45.789236 ], [ -88.040892, 45.786452 ], [ -88.044697, 45.783718 ], [ -88.048514, 45.782549 ], [ -88.050634, 45.780972 ], [ -88.072091, 45.780261 ], [ -88.076375, 45.781606 ], [ -88.078361, 45.784249 ], [ -88.079764, 45.784950 ], [ -88.088590, 45.784697 ], [ -88.094047, 45.785658 ], [ -88.099616, 45.790186 ], [ -88.103247, 45.791361 ], [ -88.106351, 45.797573 ], [ -88.105518, 45.798839 ], [ -88.105355, 45.800104 ], [ -88.107506, 45.802668 ], [ -88.109506, 45.803584 ], [ -88.116024, 45.804079 ], [ -88.129461, 45.809288 ], [ -88.131834, 45.811312 ], [ -88.136110, 45.819029 ], [ -88.135067, 45.821694 ], [ -88.133640, 45.823128 ], [ -88.127808, 45.827173 ], [ -88.122947, 45.829565 ], [ -88.120723, 45.832995 ], [ -88.114267, 45.837891 ], [ -88.111726, 45.839196 ], [ -88.109089, 45.839492 ], [ -88.106622, 45.841072 ], [ -88.098326, 45.850142 ], [ -88.088825, 45.855860 ], [ -88.087419, 45.857459 ], [ -88.084985, 45.862443 ], [ -88.082590, 45.864944 ], [ -88.081641, 45.865087 ], [ -88.077534, 45.863825 ], [ -88.075146, 45.864832 ], [ -88.073134, 45.871952 ], [ -88.073944, 45.875593 ], [ -88.081781, 45.880516 ], [ -88.083965, 45.881186 ], [ -88.095841, 45.880042 ], [ -88.100218, 45.881205 ], [ -88.101814, 45.883504 ], [ -88.105447, 45.896593 ], [ -88.105981, 45.897091 ], [ -88.106136, 45.900811 ], [ -88.105677, 45.904387 ], [ -88.104576, 45.906847 ], [ -88.101973, 45.910550 ], [ -88.099172, 45.912362 ], [ -88.095354, 45.913895 ], [ -88.095409, 45.915175 ], [ -88.096496, 45.917273 ], [ -88.102908, 45.921869 ], [ -88.104686, 45.922121 ], [ -88.115346, 45.922211 ], [ -88.118507, 45.921140 ], [ -88.121864, 45.920750 ], [ -88.126382, 45.921499 ], [ -88.127594, 45.922414 ], [ -88.127430, 45.923214 ], [ -88.126122, 45.924639 ], [ -88.127428, 45.926153 ], [ -88.141001, 45.930608 ], [ -88.145928, 45.933646 ], [ -88.146419, 45.934194 ], [ -88.146352, 45.935314 ], [ -88.158704, 45.939064 ], [ -88.163105, 45.939043 ], [ -88.163959, 45.938340 ], [ -88.170096, 45.939470 ], [ -88.172628, 45.941015 ], [ -88.175532, 45.944897 ], [ -88.178008, 45.947111 ], [ -88.189789, 45.952208 ], [ -88.191991, 45.952740 ], [ -88.196316, 45.953311 ], [ -88.197627, 45.953082 ], [ -88.202116, 45.949836 ], [ -88.201852, 45.945173 ], [ -88.209585, 45.944280 ], [ -88.211158, 45.944531 ], [ -88.215025, 45.946976 ], [ -88.222167, 45.948513 ], [ -88.223773, 45.948712 ], [ -88.227988, 45.947688 ], [ -88.233140, 45.947405 ], [ -88.239672, 45.948982 ], [ -88.242518, 45.950363 ], [ -88.244452, 45.952142 ], [ -88.245752, 45.954147 ], [ -88.246579, 45.956597 ], [ -88.245937, 45.958726 ], [ -88.246307, 45.962983 ], [ -88.249117, 45.963663 ], [ -88.250133, 45.963572 ], [ -88.250133, 45.963147 ], [ -88.254816, 45.963538 ], [ -88.256455, 45.962739 ], [ -88.259343, 45.959494 ], [ -88.268390, 45.957486 ], [ -88.283335, 45.955091 ], [ -88.292381, 45.951115 ], [ -88.295264, 45.951253 ], [ -88.296968, 45.953767 ], [ -88.300965, 45.956168 ], [ -88.309520, 45.959369 ], [ -88.316894, 45.960969 ], [ -88.320531, 45.959963 ], [ -88.326003, 45.955300 ], [ -88.326953, 45.955071 ], [ -88.330296, 45.956625 ], [ -88.327872, 45.958934 ], [ -88.328333, 45.964054 ], [ -88.330137, 45.965951 ], [ -88.334628, 45.968808 ], [ -88.380183, 45.991654 ], [ -88.385234, 45.990239 ], [ -88.384318, 45.988113 ], [ -88.388847, 45.982675 ], [ -88.395308, 45.980391 ], [ -88.399046, 45.980278 ], [ -88.402848, 45.981194 ], [ -88.409864, 45.979688 ], [ -88.411077, 45.979139 ], [ -88.414849, 45.975483 ], [ -88.416914, 45.975323 ], [ -88.420356, 45.976764 ], [ -88.423044, 45.978547 ], [ -88.422322, 45.980170 ], [ -88.423437, 45.981930 ], [ -88.426125, 45.984102 ], [ -88.434060, 45.986205 ], [ -88.435798, 45.988125 ], [ -88.439733, 45.990456 ], [ -88.443078, 45.990685 ], [ -88.448751, 45.989770 ], [ -88.450325, 45.990181 ], [ -88.454261, 45.993426 ], [ -88.453868, 45.996169 ], [ -88.454361, 45.997518 ], [ -88.458658, 45.999391 ], [ -88.465542, 46.000685 ], [ -88.470855, 46.001004 ], [ -88.474695, 45.998770 ], [ -88.475152, 45.996598 ], [ -88.474036, 45.994655 ], [ -88.476002, 45.992826 ], [ -88.478984, 45.991797 ], [ -88.486755, 45.990949 ], [ -88.492495, 45.992157 ], [ -88.497417, 45.995149 ], [ -88.498108, 45.996360 ], [ -88.496897, 45.998281 ], [ -88.496898, 45.999012 ], [ -88.498765, 46.000393 ], [ -88.500133, 46.000457 ], [ -88.505946, 46.013385 ], [ -88.506205, 46.017134 ], [ -88.507188, 46.018300 ], [ -88.509516, 46.019169 ], [ -88.514601, 46.019926 ], [ -88.523131, 46.019518 ], [ -88.526673, 46.020822 ], [ -88.532414, 46.021212 ], [ -88.533825, 46.020915 ], [ -88.533530, 46.019932 ], [ -88.534876, 46.018104 ], [ -88.539011, 46.014791 ], [ -88.541078, 46.013763 ], [ -88.550756, 46.012896 ], [ -88.554987, 46.014977 ], [ -88.565485, 46.015708 ], [ -88.571553, 46.013811 ], [ -88.572995, 46.011799 ], [ -88.580670, 46.006975 ], [ -88.589000, 46.005077 ], [ -88.589755, 46.005602 ], [ -88.592874, 46.011590 ], [ -88.593302, 46.014447 ], [ -88.593860, 46.015132 ], [ -88.598093, 46.017623 ], [ -88.601440, 46.017599 ], [ -88.603965, 46.016181 ], [ -88.607438, 46.010991 ], [ -88.611466, 46.003332 ], [ -88.611563, 45.998810 ], [ -88.613063, 45.990627 ], [ -88.614176, 45.988775 ], [ -88.616405, 45.987700 ], [ -88.623947, 45.988633 ], [ -88.634055, 45.987999 ], [ -88.634842, 45.987565 ], [ -88.635598, 45.985119 ], [ -88.637500, 45.984960 ], [ -88.657760, 45.989287 ], [ -88.661312, 45.988819 ], [ -88.662902, 45.988730 ], [ -88.663697, 45.989084 ], [ -88.664802, 45.989835 ], [ -88.664360, 45.991337 ], [ -88.663609, 45.992397 ], [ -88.663923, 45.993242 ], [ -88.667464, 45.995048 ], [ -88.671267, 45.999026 ], [ -88.670939, 45.999957 ], [ -88.670115, 45.999957 ], [ -88.671458, 46.005104 ], [ -88.674606, 46.010567 ], [ -88.679132, 46.013538 ], [ -88.691662, 46.015435 ], [ -88.698716, 46.017903 ], [ -88.704687, 46.018154 ], [ -88.710328, 46.016303 ], [ -88.713049, 46.012668 ], [ -88.718397, 46.013284 ], [ -88.721319, 46.018608 ], [ -88.721125, 46.022013 ], [ -88.724801, 46.024503 ], [ -88.730675, 46.026535 ], [ -88.739994, 46.027308 ], [ -88.746422, 46.025798 ], [ -88.752176, 46.023584 ], [ -88.754033, 46.022460 ], [ -88.756295, 46.020173 ], [ -88.758618, 46.019542 ], [ -88.760044, 46.019815 ], [ -88.763767, 46.021943 ], [ -88.765208, 46.022086 ], [ -88.766156, 46.022149 ], [ -88.767104, 46.021896 ], [ -88.767610, 46.021643 ], [ -88.768305, 46.021201 ], [ -88.768692, 46.020571 ], [ -88.769712, 46.018968 ], [ -88.776187, 46.015931 ], [ -88.779915, 46.015436 ], [ -88.782104, 46.016558 ], [ -88.783891, 46.020934 ], [ -88.784007, 46.022984 ], [ -88.783635, 46.024357 ], [ -88.778734, 46.028875 ], [ -88.778628, 46.031271 ], [ -88.779221, 46.031869 ], [ -88.784411, 46.032709 ], [ -88.791796, 46.032057 ], [ -88.796182, 46.033712 ], [ -88.800670, 46.030036 ], [ -88.796242, 46.026853 ], [ -88.795790, 46.024864 ], [ -88.796460, 46.023605 ], [ -88.801761, 46.023737 ], [ -88.811948, 46.021609 ], [ -88.815629, 46.022320 ], [ -88.815427, 46.022954 ], [ -88.816489, 46.023924 ], [ -88.820592, 46.026261 ], [ -88.831544, 46.029620 ], [ -88.835249, 46.030330 ], [ -88.837991, 46.030176 ], [ -88.840584, 46.031112 ], [ -88.843903, 46.033050 ], [ -88.847599, 46.037161 ], [ -88.848464, 46.038858 ], [ -88.850270, 46.040274 ], [ -88.943279, 46.077943 ], [ -88.948698, 46.080205 ], [ -88.990807, 46.097298 ], [ -89.091630, 46.138505 ], [ -89.125136, 46.144531 ], [ -89.161757, 46.151816 ], [ -89.166887, 46.152868 ], [ -89.194508, 46.157942 ], [ -89.201283, 46.159426 ], [ -89.203289, 46.160020 ], [ -89.205657, 46.160408 ], [ -89.218156, 46.162988 ], [ -89.219964, 46.163319 ], [ -89.276489, 46.174047 ], [ -89.276883, 46.174116 ], [ -89.495723, 46.216301 ], [ -89.533801, 46.224119 ], [ -89.638416, 46.243804 ], [ -89.667617, 46.249797 ], [ -89.764506, 46.268082 ], [ -89.908196, 46.296037 ], [ -89.909910, 46.296402 ], [ -89.918798, 46.297741 ], [ -90.120489, 46.336852 ], [ -90.121248, 46.337217 ], [ -90.121380, 46.338131 ], [ -90.121084, 46.338656 ], [ -90.119468, 46.339700 ], [ -90.118791, 46.342253 ], [ -90.119572, 46.344180 ], [ -90.120198, 46.345066 ], [ -90.120614, 46.346420 ], [ -90.119729, 46.348504 ], [ -90.117466, 46.349487 ], [ -90.116741, 46.350652 ], [ -90.116844, 46.355153 ], [ -90.118827, 46.359241 ], [ -90.119691, 46.359755 ], [ -90.119757, 46.359748 ], [ -90.120973, 46.359720 ], [ -90.122287, 46.360139 ], [ -90.122785, 46.361259 ], [ -90.122757, 46.362621 ], [ -90.122923, 46.363603 ], [ -90.126517, 46.366889 ], [ -90.131036, 46.369199 ], [ -90.133871, 46.371828 ], [ -90.134663, 46.374947 ], [ -90.134656, 46.374979 ], [ -90.132250, 46.381249 ], [ -90.133966, 46.382118 ], [ -90.135253, 46.382210 ], [ -90.139410, 46.384999 ], [ -90.144359, 46.390255 ], [ -90.146816, 46.397205 ], [ -90.148347, 46.399258 ], [ -90.152936, 46.401293 ], [ -90.157851, 46.409291 ], [ -90.158972, 46.413769 ], [ -90.158241, 46.420485 ], [ -90.158603, 46.422656 ], [ -90.163422, 46.434605 ], [ -90.166526, 46.437576 ], [ -90.166909, 46.439311 ], [ -90.166919, 46.439851 ], [ -90.174556, 46.439656 ], [ -90.177860, 46.440548 ], [ -90.179212, 46.453090 ], [ -90.180336, 46.456746 ], [ -90.189162, 46.459054 ], [ -90.190749, 46.460173 ], [ -90.193294, 46.463143 ], [ -90.192005, 46.465611 ], [ -90.189426, 46.467004 ], [ -90.188633, 46.468101 ], [ -90.188996, 46.469015 ], [ -90.193394, 46.472487 ], [ -90.201727, 46.476074 ], [ -90.204009, 46.478175 ], [ -90.211753, 46.490351 ], [ -90.214843, 46.498181 ], [ -90.214866, 46.499947 ], [ -90.216594, 46.501759 ], [ -90.220532, 46.503403 ], [ -90.222351, 46.503380 ], [ -90.228735, 46.501573 ], [ -90.230324, 46.501732 ], [ -90.231020, 46.503354 ], [ -90.230921, 46.504656 ], [ -90.229402, 46.507992 ], [ -90.230363, 46.509705 ], [ -90.231587, 46.509842 ], [ -90.236283, 46.507121 ], [ -90.243395, 46.505245 ], [ -90.246043, 46.504832 ], [ -90.248194, 46.505357 ], [ -90.257160, 46.504716 ], [ -90.258650, 46.503483 ], [ -90.260504, 46.502822 ], [ -90.263018, 46.502777 ], [ -90.265269, 46.503829 ], [ -90.265143, 46.505089 ], [ -90.265143, 46.506222 ], [ -90.266528, 46.507356 ], [ -90.268480, 46.507167 ], [ -90.270180, 46.507356 ], [ -90.270684, 46.508237 ], [ -90.270558, 46.509560 ], [ -90.270432, 46.510756 ], [ -90.270422, 46.511690 ], [ -90.274721, 46.515416 ], [ -90.271971, 46.519756 ], [ -90.272599, 46.521127 ], [ -90.277131, 46.524487 ], [ -90.278356, 46.523847 ], [ -90.278920, 46.522271 ], [ -90.283423, 46.518868 ], [ -90.285707, 46.518846 ], [ -90.292854, 46.520972 ], [ -90.294311, 46.519876 ], [ -90.294411, 46.518848 ], [ -90.298284, 46.517820 ], [ -90.303546, 46.517432 ], [ -90.306558, 46.518484 ], [ -90.307716, 46.518392 ], [ -90.312581, 46.517113 ], [ -90.313839, 46.516199 ], [ -90.313894, 46.516199 ], [ -90.316983, 46.517319 ], [ -90.317777, 46.521637 ], [ -90.314434, 46.523784 ], [ -90.311886, 46.528695 ], [ -90.310329, 46.536852 ], [ -90.310859, 46.539365 ], [ -90.320428, 46.546287 ], [ -90.324699, 46.545602 ], [ -90.326686, 46.546150 ], [ -90.328044, 46.548046 ], [ -90.327548, 46.550262 ], [ -90.331887, 46.553278 ], [ -90.336921, 46.554076 ], [ -90.344338, 46.552087 ], [ -90.347514, 46.547083 ], [ -90.349462, 46.538080 ], [ -90.350121, 46.537337 ], [ -90.351580, 46.537074 ], [ -90.353534, 46.537553 ], [ -90.355689, 46.540317 ], [ -90.357014, 46.540591 ], [ -90.357676, 46.540271 ], [ -90.361600, 46.541434 ], [ -90.369964, 46.540549 ], [ -90.374461, 46.539212 ], [ -90.387228, 46.533663 ], [ -90.393320, 46.532615 ], [ -90.395272, 46.533941 ], [ -90.395568, 46.536317 ], [ -90.398742, 46.542738 ], [ -90.400041, 46.544384 ], [ -90.400429, 46.544384 ], [ -90.402019, 46.544384 ], [ -90.405593, 46.547584 ], [ -90.407775, 46.552246 ], [ -90.414464, 46.557320 ], [ -90.414596, 46.557320 ], [ -90.415620, 46.563169 ], [ -90.418136, 46.566094 ], [ -90.348407, 46.600635 ], [ -90.327626, 46.607744 ], [ -90.306609, 46.602741 ], [ -90.265294, 46.618516 ], [ -90.237609, 46.624485 ], [ -90.164026, 46.645515 ], [ -90.100695, 46.655132 ], [ -90.045420, 46.668272 ], [ -90.028392, 46.674390 ], [ -89.996034, 46.693225 ], [ -89.985817, 46.703190 ], [ -89.973803, 46.710322 ], [ -89.957101, 46.716929 ], [ -89.918466, 46.740324 ], [ -89.892355, 46.763088 ], [ -89.848652, 46.795711 ], [ -89.831956, 46.804053 ], [ -89.790663, 46.818469 ], [ -89.720277, 46.830413 ], [ -89.673375, 46.833229 ], [ -89.660625, 46.831056 ], [ -89.642255, 46.825340 ], [ -89.634938, 46.819488 ], [ -89.619329, 46.818890 ], [ -89.569808, 46.831859 ], [ -89.535683, 46.835878 ], [ -89.513938, 46.841835 ], [ -89.499080, 46.841621 ], [ -89.491252, 46.838448 ], [ -89.471540, 46.837359 ], [ -89.437047, 46.839512 ], [ -89.415154, 46.843983 ], [ -89.372032, 46.857386 ], [ -89.249143, 46.903326 ], [ -89.227914, 46.912954 ], [ -89.201511, 46.931149 ], [ -89.168244, 46.965536 ], [ -89.142595, 46.984859 ], [ -89.128698, 46.992599 ], [ -89.118339, 46.994220 ], [ -89.113158, 46.989356 ], [ -89.106277, 46.986480 ], [ -89.086742, 46.985298 ], [ -89.063103, 46.988522 ], [ -89.039490, 46.999419 ], [ -89.028930, 47.001140 ], [ -89.022994, 46.995120 ], [ -88.998417, 46.995314 ], [ -88.987197, 46.997239 ], [ -88.972802, 47.002096 ], [ -88.959409, 47.008496 ], [ -88.944045, 47.020129 ], [ -88.924492, 47.042156 ], [ -88.914189, 47.059246 ], [ -88.903706, 47.086161 ], [ -88.889140, 47.100575 ], [ -88.855372, 47.114263 ], [ -88.848176, 47.115065 ], [ -88.814834, 47.141399 ], [ -88.789813, 47.150925 ], [ -88.778022, 47.150465 ], [ -88.764351, 47.155762 ], [ -88.729688, 47.185834 ], [ -88.699660, 47.204831 ], [ -88.672395, 47.219137 ], [ -88.656359, 47.225624 ], [ -88.640323, 47.226784 ], [ -88.623579, 47.232352 ], [ -88.609830, 47.238894 ], [ -88.584912, 47.242361 ], [ -88.573997, 47.245989 ], [ -88.500780, 47.293503 ], [ -88.477733, 47.313460 ], [ -88.470484, 47.327653 ], [ -88.459262, 47.339903 ], [ -88.418673, 47.371188 ], [ -88.389459, 47.384431 ], [ -88.324083, 47.403542 ], [ -88.303447, 47.412204 ], [ -88.285195, 47.422392 ], [ -88.239161, 47.429969 ], [ -88.227446, 47.435093 ], [ -88.218424, 47.441585 ], [ -88.216977, 47.445493 ], [ -88.217822, 47.448738 ], [ -88.181820, 47.457657 ], [ -88.150571, 47.460093 ], [ -88.139651, 47.462693 ], [ -88.085252, 47.468961 ], [ -88.076388, 47.467752 ], [ -88.049326, 47.469785 ], [ -88.048226, 47.470008 ], [ -88.048077, 47.474973 ], [ -88.040291, 47.475999 ], [ -87.978934, 47.479420 ], [ -87.929269, 47.478737 ], [ -87.902416, 47.477045 ], [ -87.898036, 47.474872 ], [ -87.816958, 47.471998 ], [ -87.801184, 47.473301 ], [ -87.756739, 47.460717 ], [ -87.730804, 47.449112 ], [ -87.715942, 47.439816 ], [ -87.710471, 47.406200 ], [ -87.712421, 47.401400 ], [ -87.721274, 47.401032 ], [ -87.742417, 47.405823 ], [ -87.751380, 47.405066 ], [ -87.759057, 47.403013 ], [ -87.765019, 47.398652 ], [ -87.800294, 47.392148 ], [ -87.815371, 47.384790 ], [ -87.827115, 47.386160 ], [ -87.834822, 47.390478 ], [ -87.848252, 47.394864 ], [ -87.856700, 47.395387 ], [ -87.882245, 47.395588 ], [ -87.941613, 47.390073 ], [ -87.957058, 47.387260 ], [ -87.965063, 47.374430 ], [ -87.965598, 47.368645 ], [ -87.962567, 47.362543 ], [ -87.954796, 47.356809 ], [ -87.947397, 47.355461 ], [ -87.938787, 47.346777 ], [ -87.938250, 47.342299 ], [ -87.943360, 47.335899 ], [ -87.946352, 47.334254 ], [ -87.958386, 47.334435 ], [ -87.968604, 47.332582 ], [ -87.989133, 47.322633 ], [ -88.016478, 47.306275 ], [ -88.054849, 47.298240 ], [ -88.060090, 47.295796 ], [ -88.071476, 47.286768 ], [ -88.096851, 47.261351 ], [ -88.108833, 47.259131 ], [ -88.117456, 47.255174 ], [ -88.131943, 47.239554 ], [ -88.163059, 47.216278 ], [ -88.194218, 47.209242 ], [ -88.204849, 47.210498 ], [ -88.212361, 47.209423 ], [ -88.228987, 47.199042 ], [ -88.236892, 47.189236 ], [ -88.242006, 47.174767 ], [ -88.242660, 47.158426 ], [ -88.239470, 47.151137 ], [ -88.236721, 47.149287 ], [ -88.231797, 47.149609 ], [ -88.232164, 47.145975 ], [ -88.239895, 47.139436 ], [ -88.247628, 47.135981 ], [ -88.249571, 47.136231 ], [ -88.250785, 47.140209 ], [ -88.255303, 47.143640 ], [ -88.262972, 47.145174 ], [ -88.272017, 47.143511 ], [ -88.281701, 47.138212 ], [ -88.289040, 47.129689 ], [ -88.289543, 47.126604 ], [ -88.287870, 47.125374 ], [ -88.287173, 47.120420 ], [ -88.288347, 47.114547 ], [ -88.297625, 47.098505 ], [ -88.340052, 47.080494 ], [ -88.346709, 47.079372 ], [ -88.349952, 47.076377 ], [ -88.353191, 47.069063 ], [ -88.353952, 47.058047 ], [ -88.359054, 47.039739 ], [ -88.367624, 47.019213 ], [ -88.373966, 47.012262 ], [ -88.385606, 47.004522 ], [ -88.404498, 46.983353 ], [ -88.411145, 46.977984 ], [ -88.443901, 46.972251 ], [ -88.448570, 46.946769 ], [ -88.455404, 46.923321 ], [ -88.475859, 46.886042 ], [ -88.477935, 46.850560 ], [ -88.483748, 46.831727 ], [ -88.482579, 46.826197 ], [ -88.473342, 46.806226 ], [ -88.462349, 46.786711 ], [ -88.438427, 46.786714 ], [ -88.433835, 46.793502 ], [ -88.415225, 46.811715 ], [ -88.381410, 46.838466 ], [ -88.382204, 46.844477 ], [ -88.382052, 46.845437 ], [ -88.390135, 46.851595 ], [ -88.404008, 46.848331 ], [ -88.389727, 46.867100 ], [ -88.372591, 46.872812 ], [ -88.375855, 46.863428 ], [ -88.369848, 46.857568 ], [ -88.368767, 46.857313 ], [ -88.360868, 46.856202 ], [ -88.351940, 46.857028 ], [ -88.310290, 46.889748 ], [ -88.281244, 46.906632 ], [ -88.261593, 46.915516 ], [ -88.244437, 46.929612 ], [ -88.167227, 46.958855 ], [ -88.155374, 46.965069 ], [ -88.143688, 46.966665 ], [ -88.132876, 46.962204 ], [ -88.150114, 46.943630 ], [ -88.187522, 46.918999 ], [ -88.175197, 46.904580 ], [ -88.161913, 46.904941 ], [ -88.126927, 46.909840 ], [ -88.101315, 46.917207 ], [ -88.081870, 46.920458 ], [ -88.065192, 46.918563 ], [ -88.032408, 46.908890 ], [ -88.004298, 46.906982 ], [ -87.986113, 46.905957 ], [ -87.956000, 46.909051 ], [ -87.900339, 46.909686 ], [ -87.874538, 46.892578 ], [ -87.846195, 46.883905 ], [ -87.841228, 46.884363 ], [ -87.827162, 46.889713 ], [ -87.816794, 46.891154 ], [ -87.813226, 46.888023 ], [ -87.793194, 46.880822 ], [ -87.782461, 46.879859 ], [ -87.776930, 46.876726 ], [ -87.776313, 46.872591 ], [ -87.778752, 46.870422 ], [ -87.776804, 46.866823 ], [ -87.765989, 46.861316 ], [ -87.755868, 46.860453 ], [ -87.746646, 46.865427 ], [ -87.741014, 46.865247 ], [ -87.734870, 46.850120 ], [ -87.736732, 46.847216 ], [ -87.734325, 46.836955 ], [ -87.731522, 46.831196 ], [ -87.727358, 46.827656 ], [ -87.713737, 46.825534 ], [ -87.694590, 46.827182 ], [ -87.685698, 46.832530 ], [ -87.687930, 46.839159 ], [ -87.687164, 46.841742 ], [ -87.680668, 46.842496 ], [ -87.674541, 46.836964 ], [ -87.673177, 46.827593 ], [ -87.674345, 46.824050 ], [ -87.672015, 46.820415 ], [ -87.662261, 46.815157 ], [ -87.651510, 46.812411 ], [ -87.641887, 46.813733 ], [ -87.633300, 46.812107 ], [ -87.628081, 46.805157 ], [ -87.607988, 46.788408 ], [ -87.595307, 46.782950 ], [ -87.590767, 46.753009 ], [ -87.582745, 46.730527 ], [ -87.573203, 46.720471 ], [ -87.523308, 46.688488 ], [ -87.524444, 46.677586 ], [ -87.503025, 46.647497 ], [ -87.492860, 46.642561 ], [ -87.467965, 46.635623 ], [ -87.466537, 46.631555 ], [ -87.467563, 46.626228 ], [ -87.464108, 46.614811 ], [ -87.451368, 46.605923 ], [ -87.442612, 46.602776 ], [ -87.411167, 46.601669 ], [ -87.403275, 46.595215 ], [ -87.383961, 46.593070 ], [ -87.381649, 46.580059 ], [ -87.392974, 46.572523 ], [ -87.392828, 46.570852 ], [ -87.382206, 46.553681 ], [ -87.375613, 46.547140 ], [ -87.390300, 46.542577 ], [ -87.393985, 46.533183 ], [ -87.389290, 46.524472 ], [ -87.381349, 46.517292 ], [ -87.366767, 46.507303 ], [ -87.351071, 46.500749 ], [ -87.310755, 46.492017 ], [ -87.258732, 46.488255 ], [ -87.202404, 46.490827 ], [ -87.175065, 46.497548 ], [ -87.127440, 46.494014 ], [ -87.107559, 46.496124 ], [ -87.098760, 46.503609 ], [ -87.077279, 46.515339 ], [ -87.046022, 46.519956 ], [ -87.029892, 46.525599 ], [ -87.017136, 46.533550 ], [ -87.008724, 46.532723 ], [ -86.976958, 46.526581 ], [ -86.964534, 46.516549 ], [ -86.962842, 46.509646 ], [ -86.946980, 46.484567 ], [ -86.946218, 46.479059 ], [ -86.949526, 46.476315 ], [ -86.947077, 46.472064 ], [ -86.927725, 46.464566 ], [ -86.903742, 46.466138 ], [ -86.889094, 46.458499 ], [ -86.883976, 46.450976 ], [ -86.883919, 46.441514 ], [ -86.875151, 46.437280 ], [ -86.850111, 46.434114 ], [ -86.837448, 46.434186 ], [ -86.816026, 46.437892 ], [ -86.810967, 46.449663 ], [ -86.808817, 46.460611 ], [ -86.803557, 46.466669 ], [ -86.787905, 46.477729 ], [ -86.768516, 46.479072 ], [ -86.750157, 46.479109 ], [ -86.735929, 46.475231 ], [ -86.731096, 46.471760 ], [ -86.730829, 46.468057 ], [ -86.710573, 46.444908 ], [ -86.703230, 46.439378 ], [ -86.698139, 46.438624 ], [ -86.686412, 46.454965 ], [ -86.688816, 46.463152 ], [ -86.686468, 46.471655 ], [ -86.683819, 46.498079 ], [ -86.696001, 46.503160 ], [ -86.701929, 46.511571 ], [ -86.709325, 46.543914 ], [ -86.695645, 46.555026 ], [ -86.678182, 46.561039 ], [ -86.675764, 46.557061 ], [ -86.670927, 46.556489 ], [ -86.656479, 46.558453 ], [ -86.652865, 46.560555 ], [ -86.627380, 46.533710 ], [ -86.629086, 46.518144 ], [ -86.632109, 46.508865 ], [ -86.634530, 46.504523 ], [ -86.641088, 46.500438 ], [ -86.645528, 46.492039 ], [ -86.646393, 46.485776 ], [ -86.636671, 46.478298 ], [ -86.627441, 46.477540 ], [ -86.620603, 46.483873 ], [ -86.618061, 46.489452 ], [ -86.612173, 46.493295 ], [ -86.609393, 46.492976 ], [ -86.606932, 46.478531 ], [ -86.609039, 46.470239 ], [ -86.586168, 46.463324 ], [ -86.557731, 46.487434 ], [ -86.524959, 46.505381 ], [ -86.495054, 46.524874 ], [ -86.484003, 46.535965 ], [ -86.481956, 46.542709 ], [ -86.469306, 46.551422 ], [ -86.459930, 46.551928 ], [ -86.444390, 46.548137 ], [ -86.437167, 46.548960 ], [ -86.390409, 46.563194 ], [ -86.349890, 46.578035 ], [ -86.188024, 46.654008 ], [ -86.161681, 46.669475 ], [ -86.138295, 46.672935 ], [ -86.119862, 46.657256 ], [ -86.112126, 46.655044 ], [ -86.099843, 46.654615 ], [ -86.074219, 46.657799 ], [ -86.036969, 46.667627 ], [ -85.995044, 46.673676 ], [ -85.953670, 46.676869 ], [ -85.924047, 46.684733 ], [ -85.877908, 46.690914 ], [ -85.841057, 46.688896 ], [ -85.794923, 46.681083 ], [ -85.750606, 46.677368 ], [ -85.714415, 46.677156 ], [ -85.668753, 46.680404 ], [ -85.624573, 46.678862 ], [ -85.587345, 46.674627 ], [ -85.542517, 46.674263 ], [ -85.509510, 46.675786 ], [ -85.482096, 46.680432 ], [ -85.369805, 46.713754 ], [ -85.289846, 46.744644 ], [ -85.256860, 46.753380 ], [ -85.173042, 46.763634 ], [ -85.063556, 46.757856 ], [ -85.036286, 46.760435 ], [ -85.009240, 46.769224 ], [ -84.989497, 46.772403 ], [ -84.964652, 46.772845 ], [ -84.954009, 46.771362 ], [ -84.951580, 46.769488 ], [ -84.987539, 46.745483 ], [ -85.007616, 46.728339 ], [ -85.020159, 46.712463 ], [ -85.027513, 46.697451 ], [ -85.030078, 46.684769 ], [ -85.028291, 46.675125 ], [ -85.035504, 46.625021 ], [ -85.037056, 46.600995 ], [ -85.035476, 46.581547 ], [ -85.031507, 46.568703 ], [ -85.029594, 46.554419 ], [ -85.027374, 46.553756 ], [ -85.025491, 46.546397 ], [ -85.027083, 46.543038 ], [ -85.045534, 46.537694 ], [ -85.052954, 46.532827 ], [ -85.056133, 46.526520 ], [ -85.054943, 46.514750 ], [ -85.049847, 46.503963 ], [ -85.033766, 46.487670 ], [ -85.025598, 46.483028 ], [ -85.015211, 46.479712 ], [ -84.969464, 46.476290 ], [ -84.955307, 46.480269 ], [ -84.947269, 46.487399 ], [ -84.937145, 46.489252 ], [ -84.934432, 46.480315 ], [ -84.921931, 46.469962 ], [ -84.915184, 46.467515 ], [ -84.893423, 46.465406 ], [ -84.875070, 46.466781 ], [ -84.861448, 46.469930 ], [ -84.849767, 46.460245 ], [ -84.843907, 46.448661 ], [ -84.829491, 46.444071 ], [ -84.800101, 46.446219 ], [ -84.769151, 46.453523 ], [ -84.723338, 46.468266 ], [ -84.689672, 46.483923 ], [ -84.678423, 46.487694 ], [ -84.653880, 46.482250 ], [ -84.631020, 46.484868 ], [ -84.616489, 46.471870 ], [ -84.607945, 46.456747 ], [ -84.584167, 46.439410 ], [ -84.573522, 46.427895 ], [ -84.551496, 46.418522 ], [ -84.503719, 46.439190 ], [ -84.493401, 46.440313 ], [ -84.479513, 46.432573 ], [ -84.471848, 46.434289 ], [ -84.462597, 46.440940 ], [ -84.455527, 46.453897 ], [ -84.455256, 46.462785 ], [ -84.463322, 46.467435 ], [ -84.445149, 46.489016 ], [ -84.420274, 46.501077 ], [ -84.394725, 46.499242 ], [ -84.375040, 46.508669 ], [ -84.373968, 46.509098 ], [ -84.343599, 46.507713 ], [ -84.337732, 46.505577 ], [ -84.325371, 46.500021 ], [ -84.293016, 46.492803 ], [ -84.275814, 46.492821 ], [ -84.265391, 46.494393 ], [ -84.264266, 46.495055 ], [ -84.254434, 46.500821 ], [ -84.226131, 46.533920 ], [ -84.193729, 46.539920 ], [ -84.177428, 46.526920 ], [ -84.166028, 46.526220 ], [ -84.153027, 46.528320 ], [ -84.146526, 46.531119 ], [ -84.139426, 46.532219 ], [ -84.128925, 46.530119 ], [ -84.123325, 46.520919 ], [ -84.117925, 46.517619 ], [ -84.111225, 46.504119 ], [ -84.125026, 46.470143 ], [ -84.146172, 46.418520 ], [ -84.138906, 46.372221 ], [ -84.119122, 46.337014 ], [ -84.106247, 46.321963 ], [ -84.119629, 46.315013 ], [ -84.115563, 46.268225 ], [ -84.097766, 46.256512 ], [ -84.108089, 46.241238 ], [ -84.118175, 46.233968 ], [ -84.125024, 46.232885 ], [ -84.134652, 46.232140 ], [ -84.145950, 46.224995 ], [ -84.147150, 46.224184 ], [ -84.149220, 46.223808 ], [ -84.150725, 46.223808 ], [ -84.151666, 46.224184 ], [ -84.152042, 46.224937 ], [ -84.152230, 46.226254 ], [ -84.152499, 46.227875 ], [ -84.159485, 46.233233 ], [ -84.182732, 46.235450 ], [ -84.219494, 46.231992 ], [ -84.233117, 46.224037 ], [ -84.249164, 46.206461 ], [ -84.245233, 46.192571 ], [ -84.247687, 46.179890 ], [ -84.251424, 46.175888 ], [ -84.221001, 46.163062 ], [ -84.196669, 46.166150 ], [ -84.177298, 46.183993 ], [ -84.171640, 46.181731 ], [ -84.125022, 46.180209 ], [ -84.114941, 46.174114 ], [ -84.113259, 46.168860 ], [ -84.100126, 46.150770 ], [ -84.095818, 46.147733 ], [ -84.089309, 46.146432 ], [ -84.060383, 46.146138 ], [ -84.026536, 46.131648 ], [ -84.031036, 46.123186 ], [ -84.038696, 46.125620 ], [ -84.051900, 46.119810 ], [ -84.061329, 46.113482 ], [ -84.069147, 46.103978 ], [ -84.072398, 46.096690 ], [ -84.071741, 46.092441 ], [ -84.066257, 46.087438 ], [ -84.051712, 46.079189 ], [ -84.027861, 46.054784 ], [ -84.006082, 46.044586 ], [ -83.989526, 46.032823 ], [ -83.963808, 46.027833 ], [ -83.951410, 46.029042 ], [ -83.943933, 46.031465 ], [ -83.939012, 46.029226 ], [ -83.935470, 46.020385 ], [ -83.931175, 46.017871 ], [ -83.908583, 46.011471 ], [ -83.900535, 45.998918 ], [ -83.896489, 45.989194 ], [ -83.898594, 45.979530 ], [ -83.901942, 45.972640 ], [ -83.903923, 45.966210 ], [ -83.916168, 45.955326 ], [ -83.921257, 45.958075 ], [ -83.952183, 45.965498 ], [ -83.985141, 45.967133 ], [ -83.996471, 45.961461 ], [ -84.000033, 45.948452 ], [ -84.017565, 45.959046 ], [ -84.080071, 45.970822 ], [ -84.090391, 45.967256 ], [ -84.105370, 45.972948 ], [ -84.107204, 45.977161 ], [ -84.111174, 45.978675 ], [ -84.140816, 45.975308 ], [ -84.172250, 45.966072 ], [ -84.178060, 45.969175 ], [ -84.238174, 45.967595 ], [ -84.254952, 45.956068 ], [ -84.330021, 45.956247 ], [ -84.353272, 45.941663 ], [ -84.376429, 45.931962 ], [ -84.428689, 45.958371 ], [ -84.437633, 45.973750 ], [ -84.443138, 45.977863 ], [ -84.463128, 45.968925 ], [ -84.480436, 45.977764 ], [ -84.483062, 45.982242 ], [ -84.482442, 45.985441 ], [ -84.484009, 45.988250 ], [ -84.507201, 45.991169 ], [ -84.514123, 45.987242 ], [ -84.514071, 45.971292 ], [ -84.525052, 45.968578 ], [ -84.532392, 45.969448 ], [ -84.534422, 45.972762 ], [ -84.534648, 45.978132 ], [ -84.530444, 45.991385 ], [ -84.533426, 46.005720 ], [ -84.540995, 46.019501 ], [ -84.544405, 46.022860 ], [ -84.563891, 46.032459 ], [ -84.581081, 46.031041 ], [ -84.586592, 46.026584 ], [ -84.609063, 46.026418 ], [ -84.647609, 46.049704 ], [ -84.656567, 46.052654 ], [ -84.666710, 46.050486 ], [ -84.675835, 46.046009 ], [ -84.687322, 46.034880 ], [ -84.692735, 46.027019 ], [ -84.692700, 46.016963 ], [ -84.686269, 45.979144 ], [ -84.684368, 45.977499 ], [ -84.685254, 45.973454 ], [ -84.687712, 45.971260 ], [ -84.703948, 45.970901 ], [ -84.723039, 45.967279 ], [ -84.730179, 45.961198 ], [ -84.738849, 45.945792 ], [ -84.739370, 45.941816 ], [ -84.733041, 45.932837 ], [ -84.718955, 45.927449 ], [ -84.713614, 45.920366 ], [ -84.713251, 45.916047 ], [ -84.734002, 45.907026 ], [ -84.721276, 45.873908 ], [ -84.715481, 45.865934 ], [ -84.701183, 45.853092 ], [ -84.702295, 45.850464 ], [ -84.706383, 45.848658 ], [ -84.720836, 45.848107 ], [ -84.722764, 45.846621 ], [ -84.725734, 45.837045 ], [ -84.746985, 45.835597 ], [ -84.792763, 45.858691 ], [ -84.831396, 45.872038 ], [ -84.838472, 45.881512 ], [ -84.837624, 45.889054 ], [ -84.842243, 45.898194 ], [ -84.852916, 45.900111 ], [ -84.873254, 45.909815 ], [ -84.879835, 45.915847 ], [ -84.902913, 45.923673 ], [ -84.917484, 45.930670 ], [ -84.937134, 45.955949 ], [ -84.973556, 45.986134 ], [ -85.003597, 46.006130 ], [ -85.013990, 46.010774 ], [ -85.055581, 46.023148 ], [ -85.088818, 46.028378 ], [ -85.102899, 46.032488 ], [ -85.130433, 46.046076 ], [ -85.140835, 46.049601 ], [ -85.152027, 46.050725 ], [ -85.190630, 46.047622 ], [ -85.197523, 46.044878 ], [ -85.222511, 46.060689 ], [ -85.266385, 46.065779 ], [ -85.287693, 46.072276 ], [ -85.316264, 46.086608 ], [ -85.335911, 46.092595 ], [ -85.356214, 46.092086 ], [ -85.366622, 46.086778 ], [ -85.381394, 46.082044 ], [ -85.393832, 46.095465 ], [ -85.412064, 46.101437 ], [ -85.426916, 46.101964 ], [ -85.441932, 46.095793 ], [ -85.442293, 46.093941 ], [ -85.440191, 46.092593 ], [ -85.446990, 46.085164 ], [ -85.480603, 46.096379 ], [ -85.500100, 46.096940 ], [ -85.512696, 46.094727 ], [ -85.521570, 46.091257 ], [ -85.540858, 46.079581 ], [ -85.603785, 46.030363 ], [ -85.617709, 46.008458 ], [ -85.648581, 45.983695 ], [ -85.654686, 45.973686 ], [ -85.663966, 45.967013 ], [ -85.697203, 45.960158 ], [ -85.724246, 45.965409 ], [ -85.743618, 45.965173 ], [ -85.770938, 45.971349 ], [ -85.790639, 45.977594 ], [ -85.810442, 45.980087 ], [ -85.817558, 45.979447 ], [ -85.825819, 45.976292 ], [ -85.832603, 45.967742 ], [ -85.842404, 45.965247 ], [ -85.861157, 45.968167 ], [ -85.882442, 45.968620 ], [ -85.893196, 45.967253 ], [ -85.909100, 45.959074 ], [ -85.922737, 45.948287 ], [ -85.926213, 45.938093 ], [ -85.926017, 45.932104 ], [ -85.917238, 45.927782 ], [ -85.910264, 45.922112 ], [ -85.913769, 45.919439 ], [ -85.920581, 45.920994 ], [ -85.954063, 45.936629 ], [ -85.998868, 45.950968 ], [ -86.050956, 45.962205 ], [ -86.072067, 45.965313 ], [ -86.094753, 45.966704 ], [ -86.123567, 45.964748 ], [ -86.145714, 45.957372 ], [ -86.150173, 45.954494 ], [ -86.159415, 45.953765 ], [ -86.196618, 45.963185 ], [ -86.208255, 45.962978 ], [ -86.220546, 45.958883 ], [ -86.229060, 45.948570 ], [ -86.233613, 45.945802 ], [ -86.248008, 45.944849 ], [ -86.254768, 45.948640 ], [ -86.278007, 45.942057 ], [ -86.315981, 45.915247 ], [ -86.324232, 45.906080 ], [ -86.332625, 45.851813 ], [ -86.349134, 45.834160 ], [ -86.355062, 45.805355 ], [ -86.351658, 45.798132 ], [ -86.363808, 45.790057 ], [ -86.369918, 45.789254 ], [ -86.395809, 45.789740 ], [ -86.401656, 45.795412 ], [ -86.415971, 45.793793 ], [ -86.424828, 45.789747 ], [ -86.428423, 45.785587 ], [ -86.428946, 45.782524 ], [ -86.427183, 45.779050 ], [ -86.428294, 45.775620 ], [ -86.431921, 45.767756 ], [ -86.439661, 45.760669 ], [ -86.455534, 45.756850 ], [ -86.466039, 45.759741 ], [ -86.479050, 45.757416 ], [ -86.486028, 45.746608 ], [ -86.496251, 45.749255 ], [ -86.504216, 45.754230 ], [ -86.514570, 45.752337 ], [ -86.518281, 45.747688 ], [ -86.523197, 45.736498 ], [ -86.525166, 45.720797 ], [ -86.533280, 45.710849 ], [ -86.537258, 45.708361 ], [ -86.541430, 45.708110 ], [ -86.570627, 45.716412 ], [ -86.580936, 45.711920 ], [ -86.585847, 45.704922 ], [ -86.584771, 45.682007 ], [ -86.587528, 45.666456 ], [ -86.593613, 45.665625 ], [ -86.611306, 45.669733 ], [ -86.620430, 45.667098 ], [ -86.625132, 45.663819 ], [ -86.627938, 45.659293 ], [ -86.616972, 45.620581 ], [ -86.604180, 45.606457 ], [ -86.613803, 45.599583 ], [ -86.616893, 45.606796 ], [ -86.623870, 45.613262 ], [ -86.633224, 45.618249 ], [ -86.648439, 45.615992 ], [ -86.666127, 45.621689 ], [ -86.687208, 45.634253 ], [ -86.688772, 45.639969 ], [ -86.695275, 45.648175 ], [ -86.708038, 45.649202 ], [ -86.717828, 45.668106 ], [ -86.718191, 45.677320 ], [ -86.715781, 45.683949 ], [ -86.705184, 45.690901 ], [ -86.689102, 45.687862 ], [ -86.676184, 45.691862 ], [ -86.665677, 45.702217 ], [ -86.665511, 45.709030 ], [ -86.669263, 45.710860 ], [ -86.671480, 45.720530 ], [ -86.662762, 45.728964 ], [ -86.647319, 45.732618 ], [ -86.633138, 45.747654 ], [ -86.634902, 45.763536 ], [ -86.631018, 45.782019 ], [ -86.617336, 45.783538 ], [ -86.612137, 45.779356 ], [ -86.597661, 45.775385 ], [ -86.583391, 45.778242 ], [ -86.576869, 45.788502 ], [ -86.581071, 45.791802 ], [ -86.581759, 45.794797 ], [ -86.576858, 45.801473 ], [ -86.571172, 45.805452 ], [ -86.563392, 45.804469 ], [ -86.557215, 45.808172 ], [ -86.555547, 45.813499 ], [ -86.559044, 45.822323 ], [ -86.555186, 45.831696 ], [ -86.549723, 45.836039 ], [ -86.545602, 45.836495 ], [ -86.538831, 45.840083 ], [ -86.529208, 45.853043 ], [ -86.528224, 45.856974 ], [ -86.529573, 45.874974 ], [ -86.532989, 45.882665 ], [ -86.541464, 45.890234 ], [ -86.553608, 45.896476 ], [ -86.567719, 45.900500 ], [ -86.583304, 45.898784 ], [ -86.593184, 45.885110 ], [ -86.603293, 45.876626 ], [ -86.613536, 45.875982 ], [ -86.625736, 45.868295 ], [ -86.633168, 45.860068 ], [ -86.632478, 45.843309 ], [ -86.645998, 45.833888 ], [ -86.721113, 45.845431 ], [ -86.728520, 45.848759 ], [ -86.742466, 45.864719 ], [ -86.749638, 45.867796 ], [ -86.758449, 45.867274 ], [ -86.782080, 45.860195 ], [ -86.784177, 45.854641 ], [ -86.782259, 45.829950 ], [ -86.777225, 45.827183 ], [ -86.774612, 45.821696 ], [ -86.773279, 45.811385 ], [ -86.785722, 45.794517 ], [ -86.805524, 45.791275 ], [ -86.801476, 45.780027 ], [ -86.821523, 45.770356 ], [ -86.823743, 45.765486 ], [ -86.820868, 45.760776 ], [ -86.821814, 45.757164 ], [ -86.838658, 45.741831 ], [ -86.841818, 45.729051 ], [ -86.838746, 45.722307 ], [ -86.870392, 45.710087 ], [ -86.876904, 45.711891 ], [ -86.895342, 45.711464 ], [ -86.904089, 45.709546 ], [ -86.921060, 45.697868 ], [ -86.944158, 45.695833 ], [ -86.964275, 45.672761 ], [ -86.966885, 45.675001 ], [ -86.967315, 45.684923 ], [ -86.969765, 45.691895 ], [ -86.981349, 45.696463 ], [ -86.984588, 45.705812 ], [ -86.982413, 45.719873 ], [ -86.977655, 45.728768 ], [ -86.975224, 45.753130 ], [ -86.981341, 45.766160 ], [ -86.981624, 45.792221 ], [ -86.988438, 45.810621 ], [ -87.005080, 45.831718 ], [ -87.018902, 45.838886 ], [ -87.031435, 45.837238 ], [ -87.039842, 45.834245 ], [ -87.052043, 45.821879 ], [ -87.057439, 45.812483 ], [ -87.058844, 45.801510 ], [ -87.058127, 45.779152 ], [ -87.063975, 45.766510 ], [ -87.064302, 45.758828 ], [ -87.062406, 45.753296 ], [ -87.055550, 45.751535 ], [ -87.052908, 45.747983 ], [ -87.057444, 45.736822 ], [ -87.061721, 45.732821 ], [ -87.070442, 45.718779 ], [ -87.059533, 45.708497 ], [ -87.095455, 45.701039 ], [ -87.099401, 45.698614 ], [ -87.099725, 45.695231 ], [ -87.111638, 45.685905 ], [ -87.129412, 45.681710 ], [ -87.172241, 45.661788 ], [ -87.196852, 45.636275 ], [ -87.223647, 45.599338 ], [ -87.234612, 45.588817 ], [ -87.263488, 45.552032 ], [ -87.288726, 45.501606 ], [ -87.306122, 45.475513 ], [ -87.319703, 45.464929 ], [ -87.333147, 45.447208 ], [ -87.334249, 45.442315 ], [ -87.333240, 45.436897 ], [ -87.329958, 45.431937 ], [ -87.325834, 45.430040 ], [ -87.327749, 45.425307 ], [ -87.336152, 45.415360 ], [ -87.350852, 45.407743 ], [ -87.359512, 45.399829 ], [ -87.364368, 45.388532 ], [ -87.392500, 45.369028 ], [ -87.399973, 45.349322 ], [ -87.431684, 45.316383 ], [ -87.437257, 45.305500 ], [ -87.438908, 45.293405 ], [ -87.465201, 45.273351 ], [ -87.512336, 45.224252 ], [ -87.548964, 45.191591 ], [ -87.563417, 45.184070 ], [ -87.585651, 45.166394 ], [ -87.600796, 45.146842 ], [ -87.609280, 45.132320 ], [ -87.612019, 45.123377 ], [ -87.610073, 45.114141 ], [ -87.600120, 45.103011 ], [ -87.590270, 45.096406 ], [ -87.581969, 45.097206 ], [ -87.590208, 45.095264 ] ] ], [ [ [ -86.033174, 45.158420 ], [ -86.005946, 45.155751 ], [ -85.993194, 45.152805 ], [ -85.989412, 45.151069 ], [ -85.976803, 45.138363 ], [ -85.976434, 45.120706 ], [ -85.980433, 45.113046 ], [ -85.984095, 45.087073 ], [ -85.982799, 45.080787 ], [ -85.977082, 45.072993 ], [ -85.960590, 45.062223 ], [ -85.959760, 45.058486 ], [ -85.976883, 45.062660 ], [ -85.997360, 45.055929 ], [ -86.013073, 45.063774 ], [ -86.019874, 45.071665 ], [ -86.037129, 45.086576 ], [ -86.052424, 45.095311 ], [ -86.058653, 45.100776 ], [ -86.060396, 45.104617 ], [ -86.065016, 45.140266 ], [ -86.059393, 45.152291 ], [ -86.050473, 45.158418 ], [ -86.044430, 45.159582 ], [ -86.033174, 45.158420 ] ] ], [ [ [ -86.093536, 45.007838 ], [ -86.115699, 44.999093 ], [ -86.133655, 44.996874 ], [ -86.154824, 45.002394 ], [ -86.156689, 45.010535 ], [ -86.154557, 45.018102 ], [ -86.141644, 45.040251 ], [ -86.138095, 45.043038 ], [ -86.117908, 45.048478 ], [ -86.093166, 45.041492 ], [ -86.079103, 45.030795 ], [ -86.093451, 45.031660 ], [ -86.097094, 45.030128 ], [ -86.100315, 45.026240 ], [ -86.101894, 45.022811 ], [ -86.101214, 45.018101 ], [ -86.093536, 45.007838 ] ] ], [ [ [ -82.415937, 43.005555 ], [ -82.422586, 43.000029 ], [ -82.424206, 42.996938 ], [ -82.424550, 42.993393 ], [ -82.423086, 42.988728 ], [ -82.420346, 42.984451 ], [ -82.412965, 42.977041 ], [ -82.416737, 42.966613 ], [ -82.428603, 42.952001 ], [ -82.447142, 42.937752 ], [ -82.455027, 42.926866 ], [ -82.464040, 42.901456 ], [ -82.469912, 42.887459 ], [ -82.470032, 42.881421 ], [ -82.468220, 42.859107 ], [ -82.468961, 42.852314 ], [ -82.472681, 42.836784 ], [ -82.478640, 42.825187 ], [ -82.482045, 42.808629 ], [ -82.481576, 42.805519 ], [ -82.480394, 42.802272 ], [ -82.471159, 42.784002 ], [ -82.467394, 42.769298 ], [ -82.467483, 42.761910 ], [ -82.483604, 42.733624 ], [ -82.483870, 42.717980 ], [ -82.494491, 42.700823 ], [ -82.510533, 42.665172 ], [ -82.509935, 42.637294 ], [ -82.518782, 42.613888 ], [ -82.523337, 42.607486 ], [ -82.548169, 42.591848 ], [ -82.549717, 42.590338 ], [ -82.554236, 42.583981 ], [ -82.555938, 42.582425 ], [ -82.569801, 42.573551 ], [ -82.577380, 42.567078 ], [ -82.579205, 42.565340 ], [ -82.583996, 42.554041 ], [ -82.589779, 42.550678 ], [ -82.604686, 42.548592 ], [ -82.607068, 42.548843 ], [ -82.611059, 42.550419 ], [ -82.616848, 42.554601 ], [ -82.624907, 42.557229 ], [ -82.633491, 42.557051 ], [ -82.640916, 42.554973 ], [ -82.642680, 42.554333 ], [ -82.648776, 42.550401 ], [ -82.661677, 42.541875 ], [ -82.666596, 42.535084 ], [ -82.679059, 42.522210 ], [ -82.686417, 42.518597 ], [ -82.685397, 42.528659 ], [ -82.679522, 42.535520 ], [ -82.670956, 42.537989 ], [ -82.664335, 42.546244 ], [ -82.680758, 42.557909 ], [ -82.681036, 42.574695 ], [ -82.688061, 42.588417 ], [ -82.701152, 42.585991 ], [ -82.711151, 42.590884 ], [ -82.713042, 42.597904 ], [ -82.700818, 42.606687 ], [ -82.683482, 42.609433 ], [ -82.681593, 42.618672 ], [ -82.690124, 42.625033 ], [ -82.689836, 42.627148 ], [ -82.669103, 42.637225 ], [ -82.645715, 42.631145 ], [ -82.630922, 42.642110 ], [ -82.626396, 42.647385 ], [ -82.623043, 42.655951 ], [ -82.623797, 42.665395 ], [ -82.630851, 42.673341 ], [ -82.635262, 42.675552 ], [ -82.659781, 42.678618 ], [ -82.674287, 42.687049 ], [ -82.685500, 42.690036 ], [ -82.700964, 42.689548 ], [ -82.706135, 42.683578 ], [ -82.726366, 42.682768 ], [ -82.753317, 42.669732 ], [ -82.765583, 42.655725 ], [ -82.780817, 42.652232 ], [ -82.792418, 42.655132 ], [ -82.797318, 42.654032 ], [ -82.813518, 42.640833 ], [ -82.820118, 42.626333 ], [ -82.819017, 42.616333 ], [ -82.811017, 42.610933 ], [ -82.789017, 42.603434 ], [ -82.771844, 42.595517 ], [ -82.769590, 42.593380 ], [ -82.788612, 42.588501 ], [ -82.788116, 42.582835 ], [ -82.781514, 42.571634 ], [ -82.782414, 42.564834 ], [ -82.784514, 42.563634 ], [ -82.789114, 42.568434 ], [ -82.796715, 42.571034 ], [ -82.821016, 42.570734 ], [ -82.834216, 42.567849 ], [ -82.845916, 42.560634 ], [ -82.849316, 42.555734 ], [ -82.851016, 42.548935 ], [ -82.859316, 42.541935 ], [ -82.874416, 42.523535 ], [ -82.882316, 42.501035 ], [ -82.883915, 42.471836 ], [ -82.870347, 42.450888 ], [ -82.886113, 42.408137 ], [ -82.888413, 42.398237 ], [ -82.894013, 42.389437 ], [ -82.898413, 42.385437 ], [ -82.915114, 42.378137 ], [ -82.919114, 42.374437 ], [ -82.928815, 42.359437 ], [ -82.923970, 42.352068 ], [ -82.945415, 42.347337 ], [ -82.959416, 42.339638 ], [ -82.988619, 42.332439 ], [ -83.018320, 42.329739 ], [ -83.064121, 42.317738 ], [ -83.079721, 42.308638 ], [ -83.096521, 42.290138 ], [ -83.110922, 42.260638 ], [ -83.128022, 42.238839 ], [ -83.133923, 42.174740 ], [ -83.121323, 42.125742 ], [ -83.133511, 42.088143 ], [ -83.157624, 42.085542 ], [ -83.168759, 42.073601 ], [ -83.188598, 42.066431 ], [ -83.189115, 42.061853 ], [ -83.186877, 42.061206 ], [ -83.185526, 42.052243 ], [ -83.188240, 42.031329 ], [ -83.185858, 42.029451 ], [ -83.170890, 42.022403 ], [ -83.170890, 42.015185 ], [ -83.193918, 41.997656 ], [ -83.212479, 41.988720 ], [ -83.216897, 41.988561 ], [ -83.223354, 41.989191 ], [ -83.228502, 41.987291 ], [ -83.249204, 41.972402 ], [ -83.257009, 41.959686 ], [ -83.257292, 41.950745 ], [ -83.253552, 41.944897 ], [ -83.264550, 41.929086 ], [ -83.270484, 41.939335 ], [ -83.287130, 41.944397 ], [ -83.295982, 41.944742 ], [ -83.302904, 41.943073 ], [ -83.315859, 41.935893 ], [ -83.326024, 41.924961 ], [ -83.333642, 41.907261 ], [ -83.335961, 41.889721 ], [ -83.341557, 41.879956 ], [ -83.359467, 41.867849 ], [ -83.366187, 41.865505 ], [ -83.372445, 41.874477 ], [ -83.381955, 41.870877 ], [ -83.396220, 41.852965 ], [ -83.409596, 41.830325 ], [ -83.422316, 41.822278 ], [ -83.434204, 41.818562 ], [ -83.439612, 41.813162 ], [ -83.441668, 41.808646 ], [ -83.443364, 41.789118 ], [ -83.437516, 41.769694 ], [ -83.427308, 41.750214 ], [ -83.424076, 41.740738 ], [ -83.434360, 41.737058 ], [ -83.451897, 41.734486 ], [ -83.453832, 41.732647 ], [ -83.497733, 41.731847 ], [ -83.499733, 41.731647 ], [ -83.503433, 41.731547 ], [ -83.504334, 41.731547 ], [ -83.585235, 41.729348 ], [ -83.593835, 41.729148 ], [ -83.595235, 41.729148 ], [ -83.636636, 41.727849 ], [ -83.639636, 41.727749 ], [ -83.665937, 41.726949 ], [ -83.685337, 41.726449 ], [ -83.708937, 41.725150 ], [ -83.763038, 41.723550 ], [ -83.859541, 41.721250 ], [ -83.880539, 41.720081 ], [ -83.899764, 41.719961 ], [ -83.998849, 41.716822 ], [ -84.019373, 41.716668 ], [ -84.134417, 41.712931 ], [ -84.360546, 41.706621 ], [ -84.396547, 41.705935 ], [ -84.438067, 41.704903 ], [ -84.749955, 41.698245 ], [ -84.806082, 41.696089 ], [ -84.806018, 41.707485 ], [ -84.806042, 41.720544 ], [ -84.806065, 41.732909 ], [ -84.806074, 41.737603 ], [ -84.806134, 41.743115 ], [ -84.805883, 41.760216 ], [ -84.818873, 41.760059 ], [ -84.825196, 41.759990 ], [ -84.932484, 41.759691 ], [ -84.960860, 41.759438 ], [ -84.961562, 41.759552 ], [ -84.971551, 41.759527 ], [ -84.972803, 41.759366 ], [ -85.037817, 41.759801 ], [ -85.039436, 41.759985 ], [ -85.117267, 41.759700 ], [ -85.123102, 41.759743 ], [ -85.172230, 41.759618 ], [ -85.196637, 41.759735 ], [ -85.232835, 41.759839 ], [ -85.272216, 41.759999 ], [ -85.272951, 41.759911 ], [ -85.273713, 41.759770 ], [ -85.292099, 41.759962 ], [ -85.298365, 41.760028 ], [ -85.308140, 41.760097 ], [ -85.318129, 41.759983 ], [ -85.330623, 41.759982 ], [ -85.350174, 41.759908 ], [ -85.379133, 41.759875 ], [ -85.427553, 41.759706 ], [ -85.432471, 41.759684 ], [ -85.515959, 41.759352 ], [ -85.518251, 41.759513 ], [ -85.607548, 41.759079 ], [ -85.608312, 41.759193 ], [ -85.622608, 41.759049 ], [ -85.624987, 41.759093 ], [ -85.632714, 41.759164 ], [ -85.647683, 41.759125 ], [ -85.650738, 41.759103 ], [ -85.724534, 41.759085 ], [ -85.749992, 41.759091 ], [ -85.750469, 41.759090 ], [ -85.775039, 41.759147 ], [ -85.791363, 41.759051 ], [ -85.872041, 41.759365 ], [ -85.874997, 41.759341 ], [ -85.888825, 41.759422 ], [ -85.974901, 41.759849 ], [ -85.974980, 41.759849 ], [ -85.991302, 41.759949 ], [ -86.041027, 41.760512 ], [ -86.125060, 41.760576 ], [ -86.125460, 41.760560 ], [ -86.127844, 41.760592 ], [ -86.217590, 41.760016 ], [ -86.226070, 41.760016 ], [ -86.265496, 41.760207 ], [ -86.501773, 41.759553 ], [ -86.519318, 41.759447 ], [ -86.640044, 41.759671 ], [ -86.641186, 41.759633 ], [ -86.746521, 41.759982 ], [ -86.748096, 41.759967 ], [ -86.800611, 41.760251 ], [ -86.800707, 41.760240 ], [ -86.801578, 41.760240 ], [ -86.804427, 41.760240 ], [ -86.823628, 41.760240 ], [ -86.824828, 41.760240 ], [ -86.777227, 41.784740 ], [ -86.717037, 41.819349 ], [ -86.679355, 41.844793 ], [ -86.619442, 41.893827 ], [ -86.597899, 41.918291 ], [ -86.582197, 41.942241 ], [ -86.556421, 42.000042 ], [ -86.501322, 42.084540 ], [ -86.490122, 42.105139 ], [ -86.485223, 42.118239 ], [ -86.466262, 42.134406 ], [ -86.404146, 42.196379 ], [ -86.385179, 42.217279 ], [ -86.356218, 42.254166 ], [ -86.321803, 42.310743 ], [ -86.297168, 42.358207 ], [ -86.284448, 42.394563 ], [ -86.284969, 42.401814 ], [ -86.276878, 42.413317 ], [ -86.261573, 42.443894 ], [ -86.249710, 42.480212 ], [ -86.240642, 42.540000 ], [ -86.235280, 42.564958 ], [ -86.228082, 42.583397 ], [ -86.225613, 42.594765 ], [ -86.229050, 42.637693 ], [ -86.226638, 42.644922 ], [ -86.216020, 42.664413 ], [ -86.208654, 42.692090 ], [ -86.206834, 42.719424 ], [ -86.208309, 42.762789 ], [ -86.210863, 42.783832 ], [ -86.211815, 42.833236 ], [ -86.210737, 42.859128 ], [ -86.214138, 42.883555 ], [ -86.216209, 42.919007 ], [ -86.226305, 42.988284 ], [ -86.232707, 43.015762 ], [ -86.244277, 43.049681 ], [ -86.250069, 43.057489 ], [ -86.250517, 43.066993 ], [ -86.254646, 43.083409 ], [ -86.280756, 43.136015 ], [ -86.316259, 43.195114 ], [ -86.395750, 43.316225 ], [ -86.407832, 43.338436 ], [ -86.435124, 43.396702 ], [ -86.448743, 43.432013 ], [ -86.468747, 43.491963 ], [ -86.479276, 43.515335 ], [ -86.520205, 43.576718 ], [ -86.529507, 43.593462 ], [ -86.538497, 43.617501 ], [ -86.540916, 43.633158 ], [ -86.540787, 43.644593 ], [ -86.538482, 43.658795 ], [ -86.529179, 43.677889 ], [ -86.510319, 43.698625 ], [ -86.481854, 43.725135 ], [ -86.461554, 43.746685 ], [ -86.445123, 43.771564 ], [ -86.437391, 43.789334 ], [ -86.431043, 43.815975 ], [ -86.431198, 43.840720 ], [ -86.433915, 43.855608 ], [ -86.445455, 43.889726 ], [ -86.447915, 43.918089 ], [ -86.463136, 43.970976 ], [ -86.483331, 44.001179 ], [ -86.501738, 44.021912 ], [ -86.508827, 44.032755 ], [ -86.514742, 44.047920 ], [ -86.514702, 44.058119 ], [ -86.508764, 44.067881 ], [ -86.500453, 44.075607 ], [ -86.446883, 44.105970 ], [ -86.429871, 44.119782 ], [ -86.421108, 44.129480 ], [ -86.400645, 44.156848 ], [ -86.380062, 44.189472 ], [ -86.362847, 44.208113 ], [ -86.351638, 44.229429 ], [ -86.343793, 44.249608 ], [ -86.327287, 44.263057 ], [ -86.316025, 44.284210 ], [ -86.300264, 44.308197 ], [ -86.268710, 44.345324 ], [ -86.251926, 44.400984 ], [ -86.248083, 44.420946 ], [ -86.248320, 44.434758 ], [ -86.251843, 44.451632 ], [ -86.251605, 44.465443 ], [ -86.248914, 44.483004 ], [ -86.243745, 44.488929 ], [ -86.238743, 44.501682 ], [ -86.223788, 44.549043 ], [ -86.220697, 44.566742 ], [ -86.225450, 44.594590 ], [ -86.231828, 44.609107 ], [ -86.253950, 44.648080 ], [ -86.259029, 44.663654 ], [ -86.256796, 44.686769 ], [ -86.254996, 44.691935 ], [ -86.248474, 44.699046 ], [ -86.232482, 44.706050 ], [ -86.172201, 44.720623 ], [ -86.160268, 44.728189 ], [ -86.121125, 44.727972 ], [ -86.106182, 44.731088 ], [ -86.089186, 44.741496 ], [ -86.077933, 44.758234 ], [ -86.073506, 44.769803 ], [ -86.071746, 44.804717 ], [ -86.065966, 44.821522 ], [ -86.066031, 44.834852 ], [ -86.071112, 44.865420 ], [ -86.072468, 44.884788 ], [ -86.070990, 44.895876 ], [ -86.066745, 44.905685 ], [ -86.058862, 44.911012 ], [ -86.038332, 44.915696 ], [ -86.031194, 44.907349 ], [ -86.021513, 44.902774 ], [ -86.009355, 44.899454 ], [ -85.992535, 44.900026 ], [ -85.980219, 44.906136 ], [ -85.972824, 44.914781 ], [ -85.967169, 44.929484 ], [ -85.961603, 44.935567 ], [ -85.952721, 44.940758 ], [ -85.942099, 44.954317 ], [ -85.938589, 44.964559 ], [ -85.931600, 44.968788 ], [ -85.915851, 44.968307 ], [ -85.897626, 44.962014 ], [ -85.891543, 44.957783 ], [ -85.879934, 44.943305 ], [ -85.869852, 44.939031 ], [ -85.854304, 44.938147 ], [ -85.836150, 44.940256 ], [ -85.815451, 44.945631 ], [ -85.807403, 44.949814 ], [ -85.780439, 44.977932 ], [ -85.778278, 44.983075 ], [ -85.776207, 45.000574 ], [ -85.771395, 45.015181 ], [ -85.761943, 45.023454 ], [ -85.746444, 45.051229 ], [ -85.740836, 45.055575 ], [ -85.712262, 45.065622 ], [ -85.695715, 45.076461 ], [ -85.681096, 45.092693 ], [ -85.675671, 45.105540 ], [ -85.674861, 45.116216 ], [ -85.656024, 45.145788 ], [ -85.618639, 45.186771 ], [ -85.613174, 45.184624 ], [ -85.611684, 45.181104 ], [ -85.606963, 45.178477 ], [ -85.593064, 45.178527 ], [ -85.585986, 45.180381 ], [ -85.564654, 45.192546 ], [ -85.561809, 45.200524 ], [ -85.551072, 45.210742 ], [ -85.540497, 45.210169 ], [ -85.526734, 45.189316 ], [ -85.531461, 45.177247 ], [ -85.536892, 45.173385 ], [ -85.552179, 45.167352 ], [ -85.561680, 45.158940 ], [ -85.554083, 45.142568 ], [ -85.558373, 45.133209 ], [ -85.564612, 45.137498 ], [ -85.564612, 45.147247 ], [ -85.570178, 45.155145 ], [ -85.573893, 45.155488 ], [ -85.590434, 45.153175 ], [ -85.599801, 45.149286 ], [ -85.614319, 45.127562 ], [ -85.609266, 45.113510 ], [ -85.595029, 45.103962 ], [ -85.597496, 45.094454 ], [ -85.583198, 45.071304 ], [ -85.573353, 45.068382 ], [ -85.566066, 45.059201 ], [ -85.566130, 45.043633 ], [ -85.570160, 45.041278 ], [ -85.573976, 45.043361 ], [ -85.597181, 45.040547 ], [ -85.599652, 45.021749 ], [ -85.609123, 45.013103 ], [ -85.621878, 45.004529 ], [ -85.606588, 44.990662 ], [ -85.604301, 44.990983 ], [ -85.602356, 44.974272 ], [ -85.602034, 44.926743 ], [ -85.621403, 44.923123 ], [ -85.625497, 44.921107 ], [ -85.639842, 44.890255 ], [ -85.645456, 44.883645 ], [ -85.648932, 44.874010 ], [ -85.652355, 44.849092 ], [ -85.651435, 44.831624 ], [ -85.641652, 44.810816 ], [ -85.637000, 44.790078 ], [ -85.640781, 44.775561 ], [ -85.636097, 44.771329 ], [ -85.627982, 44.767508 ], [ -85.610776, 44.765160 ], [ -85.599256, 44.765919 ], [ -85.593571, 44.768783 ], [ -85.590985, 44.783914 ], [ -85.581717, 44.807784 ], [ -85.545891, 44.864024 ], [ -85.532931, 44.873190 ], [ -85.530649, 44.889763 ], [ -85.553509, 44.890924 ], [ -85.559524, 44.888113 ], [ -85.564509, 44.895246 ], [ -85.539703, 44.916779 ], [ -85.533553, 44.925762 ], [ -85.520205, 44.960347 ], [ -85.522100, 44.966727 ], [ -85.520034, 44.973996 ], [ -85.492600, 44.989834 ], [ -85.475204, 44.991053 ], [ -85.470462, 44.980745 ], [ -85.464944, 44.961062 ], [ -85.466650, 44.958844 ], [ -85.472258, 44.959391 ], [ -85.485740, 44.953626 ], [ -85.491286, 44.927585 ], [ -85.492490, 44.908220 ], [ -85.488624, 44.901707 ], [ -85.498007, 44.865451 ], [ -85.502182, 44.855802 ], [ -85.508617, 44.847872 ], [ -85.519096, 44.845339 ], [ -85.539924, 44.834166 ], [ -85.555894, 44.818256 ], [ -85.560231, 44.810072 ], [ -85.560488, 44.789679 ], [ -85.576566, 44.760208 ], [ -85.571301, 44.755293 ], [ -85.554326, 44.748744 ], [ -85.538285, 44.746821 ], [ -85.527216, 44.748235 ], [ -85.504775, 44.768082 ], [ -85.503935, 44.772951 ], [ -85.505244, 44.781594 ], [ -85.509251, 44.787334 ], [ -85.499591, 44.803838 ], [ -85.474796, 44.814959 ], [ -85.462916, 44.825067 ], [ -85.460445, 44.835667 ], [ -85.425804, 44.881646 ], [ -85.423003, 44.895019 ], [ -85.406173, 44.911773 ], [ -85.395800, 44.931018 ], [ -85.378286, 44.998587 ], [ -85.381654, 45.018407 ], [ -85.380659, 45.046319 ], [ -85.377586, 45.055713 ], [ -85.366412, 45.069023 ], [ -85.366908, 45.116938 ], [ -85.372571, 45.126241 ], [ -85.376948, 45.142881 ], [ -85.380464, 45.180876 ], [ -85.386726, 45.189497 ], [ -85.388593, 45.235240 ], [ -85.371593, 45.270834 ], [ -85.355478, 45.282774 ], [ -85.335016, 45.294027 ], [ -85.323941, 45.303355 ], [ -85.307646, 45.313140 ], [ -85.294848, 45.316408 ], [ -85.289568, 45.314052 ], [ -85.273789, 45.315443 ], [ -85.262996, 45.319507 ], [ -85.255050, 45.325675 ], [ -85.252193, 45.330863 ], [ -85.235629, 45.339374 ], [ -85.209673, 45.356937 ], [ -85.196704, 45.360641 ], [ -85.182471, 45.360824 ], [ -85.143651, 45.370369 ], [ -85.054805, 45.364091 ], [ -85.043101, 45.361506 ], [ -85.032813, 45.361251 ], [ -85.022234, 45.366701 ], [ -84.959119, 45.375973 ], [ -84.915850, 45.393115 ], [ -84.912537, 45.402828 ], [ -84.912956, 45.409776 ], [ -84.916165, 45.417639 ], [ -84.922006, 45.421914 ], [ -84.980953, 45.429382 ], [ -84.990041, 45.427618 ], [ -84.990785, 45.425264 ], [ -84.983836, 45.420764 ], [ -84.977116, 45.420035 ], [ -84.978608, 45.418663 ], [ -85.040936, 45.436701 ], [ -85.069573, 45.459239 ], [ -85.088386, 45.476928 ], [ -85.109252, 45.521626 ], [ -85.115479, 45.539406 ], [ -85.119737, 45.569026 ], [ -85.118637, 45.575175 ], [ -85.111909, 45.585829 ], [ -85.093525, 45.600121 ], [ -85.079528, 45.617083 ], [ -85.075686, 45.623688 ], [ -85.074910, 45.629242 ], [ -85.061488, 45.639505 ], [ -85.015341, 45.651564 ], [ -85.007026, 45.656360 ], [ -85.001154, 45.661225 ], [ -84.996336, 45.669685 ], [ -84.992958, 45.679983 ], [ -84.987847, 45.682997 ], [ -84.975768, 45.683174 ], [ -84.970950, 45.686334 ], [ -84.943756, 45.710290 ], [ -84.940526, 45.721832 ], [ -84.942125, 45.728460 ], [ -84.950840, 45.736893 ], [ -84.982328, 45.751960 ], [ -85.002914, 45.753940 ], [ -85.048441, 45.760807 ], [ -85.074563, 45.762182 ], [ -85.077313, 45.765619 ], [ -85.049129, 45.770431 ], [ -85.030568, 45.769056 ], [ -85.007410, 45.763168 ], [ -84.995105, 45.759855 ], [ -84.938312, 45.759892 ], [ -84.924664, 45.756897 ], [ -84.910398, 45.750010 ], [ -84.866976, 45.752066 ], [ -84.840981, 45.744751 ], [ -84.806642, 45.746171 ], [ -84.799558, 45.747130 ], [ -84.788821, 45.752283 ], [ -84.781373, 45.761080 ], [ -84.779800, 45.769650 ], [ -84.792337, 45.778497 ], [ -84.793153, 45.780463 ], [ -84.780313, 45.787224 ], [ -84.772765, 45.789301 ], [ -84.751571, 45.782733 ], [ -84.742000, 45.784134 ], [ -84.734065, 45.788205 ], [ -84.726192, 45.786905 ], [ -84.718904, 45.777599 ], [ -84.715996, 45.766174 ], [ -84.681967, 45.756197 ], [ -84.679546, 45.749095 ], [ -84.644822, 45.739990 ], [ -84.604712, 45.721668 ], [ -84.573631, 45.710381 ], [ -84.555496, 45.702268 ], [ -84.553311, 45.698566 ], [ -84.538998, 45.690383 ], [ -84.461680, 45.652404 ], [ -84.442348, 45.654771 ], [ -84.435415, 45.664106 ], [ -84.427495, 45.669201 ], [ -84.413642, 45.669427 ], [ -84.400283, 45.663345 ], [ -84.376403, 45.655565 ], [ -84.329537, 45.664380 ], [ -84.289685, 45.653296 ], [ -84.270238, 45.644790 ], [ -84.215268, 45.634767 ], [ -84.196043, 45.621456 ], [ -84.180514, 45.604639 ], [ -84.157121, 45.585305 ], [ -84.139462, 45.573714 ], [ -84.128867, 45.562284 ], [ -84.126532, 45.556616 ], [ -84.126971, 45.542428 ], [ -84.122309, 45.523788 ], [ -84.116687, 45.513050 ], [ -84.109238, 45.505171 ], [ -84.095905, 45.497298 ], [ -84.075792, 45.490537 ], [ -84.056138, 45.489349 ], [ -84.039958, 45.493733 ], [ -84.036286, 45.496245 ], [ -84.028813, 45.497225 ], [ -84.009582, 45.495069 ], [ -83.998350, 45.491158 ], [ -83.978017, 45.494138 ], [ -83.939261, 45.493189 ], [ -83.909472, 45.485784 ], [ -83.881813, 45.467907 ], [ -83.858560, 45.446865 ], [ -83.841543, 45.435287 ], [ -83.806622, 45.419159 ], [ -83.788777, 45.416415 ], [ -83.773171, 45.417302 ], [ -83.755569, 45.411034 ], [ -83.737321, 45.410943 ], [ -83.721815, 45.413304 ], [ -83.697316, 45.396239 ], [ -83.667934, 45.384675 ], [ -83.643790, 45.371710 ], [ -83.599273, 45.352561 ], [ -83.570361, 45.347198 ], [ -83.550268, 45.350832 ], [ -83.546799, 45.352637 ], [ -83.545729, 45.358397 ], [ -83.538306, 45.358167 ], [ -83.520258, 45.347239 ], [ -83.514717, 45.346460 ], [ -83.496704, 45.357536 ], [ -83.488826, 45.355872 ], [ -83.477794, 45.341891 ], [ -83.445672, 45.310612 ], [ -83.433040, 45.303688 ], [ -83.425140, 45.296808 ], [ -83.422389, 45.290775 ], [ -83.401091, 45.279572 ], [ -83.388274, 45.276916 ], [ -83.385104, 45.274195 ], [ -83.381743, 45.268983 ], [ -83.388034, 45.254976 ], [ -83.412569, 45.245807 ], [ -83.412410, 45.238905 ], [ -83.405914, 45.227157 ], [ -83.384265, 45.203472 ], [ -83.381647, 45.203357 ], [ -83.368896, 45.182168 ], [ -83.368046, 45.172478 ], [ -83.363678, 45.166469 ], [ -83.359895, 45.163020 ], [ -83.348684, 45.161516 ], [ -83.337822, 45.147120 ], [ -83.316118, 45.141958 ], [ -83.315924, 45.139992 ], [ -83.319315, 45.137684 ], [ -83.318442, 45.128930 ], [ -83.307880, 45.099093 ], [ -83.298275, 45.090483 ], [ -83.290827, 45.069157 ], [ -83.291346, 45.062597 ], [ -83.280272, 45.045962 ], [ -83.277037, 45.044767 ], [ -83.271464, 45.038114 ], [ -83.265896, 45.026844 ], [ -83.271506, 45.023417 ], [ -83.287974, 45.026462 ], [ -83.302153, 45.032315 ], [ -83.340257, 45.041545 ], [ -83.357609, 45.050613 ], [ -83.367470, 45.062268 ], [ -83.399255, 45.070364 ], [ -83.433798, 45.057616 ], [ -83.442052, 45.051056 ], [ -83.453363, 45.035331 ], [ -83.454168, 45.031880 ], [ -83.446342, 45.016655 ], [ -83.435249, 45.011883 ], [ -83.431254, 45.007998 ], [ -83.435822, 45.000012 ], [ -83.438948, 45.000011 ], [ -83.450013, 44.990219 ], [ -83.443718, 44.952247 ], [ -83.438856, 44.940843 ], [ -83.433032, 44.932890 ], [ -83.425311, 44.926741 ], [ -83.404596, 44.918761 ], [ -83.398879, 44.906417 ], [ -83.393960, 44.903056 ], [ -83.352815, 44.886164 ], [ -83.320503, 44.880571 ], [ -83.312903, 44.884191 ], [ -83.314966, 44.868380 ], [ -83.321241, 44.852962 ], [ -83.314429, 44.842220 ], [ -83.300648, 44.829831 ], [ -83.299736, 44.823359 ], [ -83.290906, 44.807888 ], [ -83.295718, 44.784516 ], [ -83.288844, 44.765955 ], [ -83.298287, 44.754907 ], [ -83.297300, 44.746134 ], [ -83.290665, 44.729265 ], [ -83.284128, 44.721766 ], [ -83.273393, 44.713901 ], [ -83.276836, 44.689354 ], [ -83.289442, 44.652968 ], [ -83.307504, 44.629816 ], [ -83.314517, 44.608725 ], [ -83.315603, 44.595079 ], [ -83.313649, 44.564588 ], [ -83.308918, 44.548360 ], [ -83.308471, 44.539902 ], [ -83.318279, 44.514416 ], [ -83.317610, 44.486058 ], [ -83.326824, 44.444411 ], [ -83.327171, 44.429234 ], [ -83.324616, 44.415039 ], [ -83.321553, 44.409119 ], [ -83.321648, 44.404502 ], [ -83.333757, 44.372486 ], [ -83.335248, 44.357995 ], [ -83.332533, 44.340464 ], [ -83.336988, 44.332919 ], [ -83.343738, 44.329763 ], [ -83.352115, 44.332366 ], [ -83.364312, 44.332590 ], [ -83.373607, 44.327784 ], [ -83.401822, 44.301831 ], [ -83.414301, 44.294543 ], [ -83.419236, 44.287800 ], [ -83.425762, 44.272487 ], [ -83.445176, 44.252823 ], [ -83.465111, 44.245949 ], [ -83.442731, 44.265361 ], [ -83.445805, 44.273378 ], [ -83.463049, 44.278838 ], [ -83.479531, 44.280090 ], [ -83.500392, 44.276610 ], [ -83.508839, 44.273711 ], [ -83.524817, 44.261558 ], [ -83.537710, 44.248171 ], [ -83.549096, 44.227282 ], [ -83.552872, 44.210718 ], [ -83.553834, 44.197956 ], [ -83.567744, 44.155899 ], [ -83.568915, 44.126734 ], [ -83.567714, 44.119652 ], [ -83.573071, 44.101298 ], [ -83.588004, 44.086758 ], [ -83.591361, 44.079237 ], [ -83.590437, 44.069569 ], [ -83.584090, 44.056748 ], [ -83.601173, 44.054686 ], [ -83.621078, 44.056186 ], [ -83.650116, 44.052404 ], [ -83.679654, 44.036365 ], [ -83.687892, 44.020709 ], [ -83.680108, 43.994196 ], [ -83.743806, 43.991529 ], [ -83.746779, 43.988807 ], [ -83.763774, 43.985158 ], [ -83.787863, 43.985279 ], [ -83.829077, 43.989095 ], [ -83.848276, 43.981594 ], [ -83.854930, 43.977067 ], [ -83.856128, 43.972632 ], [ -83.869406, 43.960719 ], [ -83.877694, 43.959235 ], [ -83.885328, 43.946691 ], [ -83.890145, 43.934672 ], [ -83.890912, 43.923314 ], [ -83.907388, 43.918062 ], [ -83.916815, 43.899050 ], [ -83.917875, 43.856509 ], [ -83.926345, 43.787398 ], [ -83.929375, 43.777091 ], [ -83.945426, 43.759946 ], [ -83.954792, 43.760932 ], [ -83.956021, 43.759286 ], [ -83.954347, 43.750647 ], [ -83.939297, 43.715369 ], [ -83.909479, 43.672622 ], [ -83.897078, 43.664022 ], [ -83.852076, 43.644922 ], [ -83.844118, 43.652896 ], [ -83.838160, 43.654384 ], [ -83.814674, 43.643022 ], [ -83.806774, 43.641221 ], [ -83.778919, 43.630056 ], [ -83.770693, 43.628691 ], [ -83.769886, 43.634924 ], [ -83.725793, 43.618691 ], [ -83.703446, 43.597646 ], [ -83.669795, 43.590790 ], [ -83.666052, 43.591292 ], [ -83.654192, 43.599290 ], [ -83.618602, 43.628891 ], [ -83.595579, 43.650249 ], [ -83.563157, 43.684564 ], [ -83.553707, 43.685432 ], [ -83.549044, 43.693798 ], [ -83.551470, 43.699901 ], [ -83.540187, 43.708746 ], [ -83.524837, 43.716948 ], [ -83.515853, 43.718157 ], [ -83.513461, 43.714607 ], [ -83.506657, 43.710907 ], [ -83.480070, 43.714636 ], [ -83.470053, 43.723418 ], [ -83.465080, 43.733843 ], [ -83.459628, 43.740931 ], [ -83.440171, 43.761694 ], [ -83.438878, 43.767135 ], [ -83.441591, 43.770175 ], [ -83.446752, 43.771860 ], [ -83.438311, 43.786846 ], [ -83.426068, 43.799915 ], [ -83.416378, 43.801034 ], [ -83.411453, 43.805033 ], [ -83.410663, 43.807730 ], [ -83.428481, 43.817907 ], [ -83.442917, 43.811033 ], [ -83.471788, 43.789723 ], [ -83.480725, 43.791786 ], [ -83.448416, 43.861902 ], [ -83.427794, 43.861215 ], [ -83.425732, 43.849529 ], [ -83.417483, 43.841967 ], [ -83.404422, 43.841280 ], [ -83.384487, 43.854340 ], [ -83.358869, 43.857395 ], [ -83.332270, 43.880522 ], [ -83.331788, 43.893901 ], [ -83.333532, 43.898520 ], [ -83.340976, 43.904541 ], [ -83.403047, 43.910709 ], [ -83.400985, 43.916208 ], [ -83.338067, 43.915687 ], [ -83.318656, 43.917620 ], [ -83.305690, 43.922489 ], [ -83.282310, 43.938031 ], [ -83.268980, 43.956132 ], [ -83.261850, 43.969021 ], [ -83.261530, 43.973525 ], [ -83.227093, 43.981003 ], [ -83.195688, 43.983137 ], [ -83.180618, 43.982109 ], [ -83.145407, 43.989441 ], [ -83.134881, 43.993147 ], [ -83.120659, 44.000950 ], [ -83.107820, 44.003245 ], [ -83.079297, 44.001079 ], [ -83.066026, 44.003366 ], [ -83.058741, 44.006224 ], [ -83.046577, 44.015710 ], [ -83.029868, 44.041175 ], [ -83.024604, 44.045174 ], [ -82.999283, 44.046510 ], [ -82.990728, 44.048846 ], [ -82.967439, 44.066138 ], [ -82.958688, 44.065774 ], [ -82.956658, 44.063306 ], [ -82.947368, 44.062187 ], [ -82.928884, 44.069389 ], [ -82.915976, 44.070503 ], [ -82.889831, 44.050952 ], [ -82.875889, 44.045046 ], [ -82.833103, 44.036851 ], [ -82.793205, 44.023247 ], [ -82.788298, 44.013712 ], [ -82.783198, 44.009366 ], [ -82.765018, 44.006845 ], [ -82.746255, 43.996037 ], [ -82.738992, 43.989506 ], [ -82.728528, 43.972615 ], [ -82.712235, 43.949610 ], [ -82.709839, 43.948226 ], [ -82.693505, 43.917980 ], [ -82.678642, 43.883730 ], [ -82.655450, 43.867883 ], [ -82.643166, 43.852468 ], [ -82.642899, 43.846419 ], [ -82.647467, 43.844490 ], [ -82.647784, 43.842684 ], [ -82.644345, 43.837539 ], [ -82.633641, 43.831224 ], [ -82.617955, 43.768596 ], [ -82.619079, 43.756088 ], [ -82.617213, 43.746788 ], [ -82.612224, 43.739771 ], [ -82.604830, 43.678884 ], [ -82.605783, 43.669489 ], [ -82.600500, 43.602935 ], [ -82.597911, 43.590016 ], [ -82.593785, 43.581467 ], [ -82.585654, 43.543969 ], [ -82.565691, 43.502904 ], [ -82.565505, 43.497063 ], [ -82.553540, 43.464111 ], [ -82.539517, 43.437539 ], [ -82.538578, 43.431594 ], [ -82.539930, 43.422378 ], [ -82.535627, 43.368062 ], [ -82.536794, 43.348510 ], [ -82.530128, 43.333805 ], [ -82.529416, 43.316243 ], [ -82.532396, 43.305770 ], [ -82.523086, 43.225361 ], [ -82.519123, 43.212737 ], [ -82.508881, 43.196748 ], [ -82.501656, 43.161656 ], [ -82.494194, 43.143736 ], [ -82.490614, 43.118172 ], [ -82.486042, 43.102486 ], [ -82.471053, 43.087581 ], [ -82.457221, 43.061285 ], [ -82.422768, 43.007956 ], [ -82.415937, 43.005555 ] ] ], [ [ [ -83.436745, 44.021656 ], [ -83.442245, 44.028530 ], [ -83.441551, 44.038841 ], [ -83.425743, 44.028530 ], [ -83.436745, 44.021656 ] ] ], [ [ [ -83.414047, 43.877026 ], [ -83.427109, 43.877026 ], [ -83.436729, 43.882526 ], [ -83.432610, 43.885273 ], [ -83.414047, 43.877026 ] ] ], [ [ [ -87.600342, 47.407711 ], [ -87.617531, 47.407711 ], [ -87.629898, 47.415272 ], [ -87.650520, 47.416649 ], [ -87.623718, 47.426960 ], [ -87.585907, 47.419399 ], [ -87.600342, 47.407711 ] ] ], [ [ [ -83.761154, 46.086082 ], [ -83.784348, 46.090248 ], [ -83.805168, 46.092033 ], [ -83.821236, 46.091438 ], [ -83.828964, 46.096790 ], [ -83.828964, 46.102741 ], [ -83.817070, 46.111069 ], [ -83.803978, 46.109879 ], [ -83.787323, 46.108093 ], [ -83.774239, 46.097980 ], [ -83.763527, 46.093815 ], [ -83.758179, 46.090248 ], [ -83.761154, 46.086082 ] ] ], [ [ [ -83.973450, 46.065285 ], [ -84.003006, 46.079033 ], [ -84.012634, 46.087280 ], [ -84.005760, 46.097591 ], [ -83.987885, 46.103779 ], [ -83.974136, 46.073532 ], [ -83.973450, 46.065285 ] ] ], [ [ [ -83.853355, 46.050987 ], [ -83.858116, 46.055149 ], [ -83.858116, 46.062885 ], [ -83.858711, 46.067047 ], [ -83.865845, 46.069427 ], [ -83.871201, 46.075970 ], [ -83.864059, 46.083702 ], [ -83.852760, 46.085487 ], [ -83.847404, 46.082516 ], [ -83.840271, 46.071808 ], [ -83.839081, 46.064072 ], [ -83.846214, 46.051582 ], [ -83.853355, 46.050987 ] ] ], [ [ [ -83.749252, 46.034328 ], [ -83.758774, 46.036114 ], [ -83.763527, 46.043846 ], [ -83.770180, 46.043228 ], [ -83.773781, 46.051472 ], [ -83.764122, 46.065857 ], [ -83.749847, 46.065857 ], [ -83.733192, 46.053364 ], [ -83.732002, 46.048012 ], [ -83.737358, 46.043846 ], [ -83.743896, 46.035519 ], [ -83.749252, 46.034328 ] ] ], [ [ [ -84.638847, 45.955563 ], [ -84.640915, 45.971375 ], [ -84.639633, 45.977913 ], [ -84.634041, 45.980309 ], [ -84.613937, 45.973629 ], [ -84.607750, 45.967918 ], [ -84.608704, 45.964111 ], [ -84.619171, 45.957447 ], [ -84.638847, 45.955563 ] ] ], [ [ [ -84.568253, 45.950787 ], [ -84.582527, 45.958874 ], [ -84.583954, 45.963634 ], [ -84.579674, 45.968391 ], [ -84.575386, 45.970299 ], [ -84.563492, 45.967442 ], [ -84.559212, 45.958401 ], [ -84.564919, 45.951260 ], [ -84.568253, 45.950787 ] ] ], [ [ [ -83.561836, 45.912563 ], [ -83.583054, 45.915920 ], [ -83.632210, 45.932285 ], [ -83.657661, 45.945461 ], [ -83.687691, 45.935390 ], [ -83.719429, 45.934078 ], [ -83.732986, 45.937641 ], [ -83.742775, 45.938004 ], [ -83.766235, 45.935223 ], [ -83.768852, 45.932068 ], [ -83.786110, 45.933376 ], [ -83.801041, 45.937580 ], [ -83.803329, 45.943363 ], [ -83.808144, 45.945694 ], [ -83.822807, 45.943985 ], [ -83.827568, 45.941235 ], [ -83.835503, 45.941841 ], [ -83.840866, 45.952724 ], [ -83.846436, 45.953182 ], [ -83.864861, 45.959465 ], [ -83.881058, 45.968185 ], [ -83.884827, 45.977165 ], [ -83.873146, 45.993427 ], [ -83.868233, 45.995075 ], [ -83.845398, 46.025681 ], [ -83.830147, 46.022324 ], [ -83.818199, 46.002426 ], [ -83.794052, 45.995800 ], [ -83.776436, 46.004204 ], [ -83.765274, 46.018364 ], [ -83.765259, 46.024681 ], [ -83.759369, 46.027191 ], [ -83.746872, 46.024811 ], [ -83.735573, 46.026596 ], [ -83.727837, 46.034924 ], [ -83.711777, 46.040279 ], [ -83.692146, 46.039089 ], [ -83.686195, 46.046227 ], [ -83.679657, 46.057529 ], [ -83.677872, 46.064667 ], [ -83.682632, 46.071808 ], [ -83.699883, 46.075375 ], [ -83.719513, 46.081326 ], [ -83.731407, 46.086678 ], [ -83.723297, 46.093811 ], [ -83.719788, 46.101032 ], [ -83.703857, 46.103367 ], [ -83.661163, 46.100258 ], [ -83.634979, 46.103954 ], [ -83.625557, 46.102211 ], [ -83.615341, 46.095978 ], [ -83.598610, 46.090084 ], [ -83.581314, 46.089615 ], [ -83.576088, 46.083511 ], [ -83.572639, 46.074921 ], [ -83.572571, 46.069897 ], [ -83.565353, 46.061897 ], [ -83.554062, 46.058884 ], [ -83.547203, 46.047867 ], [ -83.543365, 46.037197 ], [ -83.540848, 46.021248 ], [ -83.532913, 46.011330 ], [ -83.494843, 45.999542 ], [ -83.488350, 45.999542 ], [ -83.480637, 45.996162 ], [ -83.473946, 45.988560 ], [ -83.473221, 45.984421 ], [ -83.481766, 45.971874 ], [ -83.488808, 45.968739 ], [ -83.510620, 45.929325 ], [ -83.517242, 45.923615 ], [ -83.526344, 45.918636 ], [ -83.561836, 45.912563 ] ] ], [ [ [ -84.861969, 45.851276 ], [ -84.881210, 45.860901 ], [ -84.879150, 45.868462 ], [ -84.861969, 45.860214 ], [ -84.861969, 45.851276 ] ] ], [ [ [ -84.617607, 45.844925 ], [ -84.638428, 45.850872 ], [ -84.650917, 45.859798 ], [ -84.651512, 45.862770 ], [ -84.645561, 45.874668 ], [ -84.647346, 45.884186 ], [ -84.644974, 45.885376 ], [ -84.624153, 45.880020 ], [ -84.602142, 45.852062 ], [ -84.607491, 45.847900 ], [ -84.617607, 45.844925 ] ] ], [ [ [ -85.590889, 45.833141 ], [ -85.595177, 45.835522 ], [ -85.593811, 45.839809 ], [ -85.581467, 45.841042 ], [ -85.584709, 45.834095 ], [ -85.590889, 45.833141 ] ] ], [ [ [ -84.595001, 45.821129 ], [ -84.609871, 45.825890 ], [ -84.613441, 45.834217 ], [ -84.612846, 45.836002 ], [ -84.596786, 45.833622 ], [ -84.589050, 45.827675 ], [ -84.589645, 45.821724 ], [ -84.595001, 45.821129 ] ] ], [ [ [ -85.611832, 45.806015 ], [ -85.617538, 45.810776 ], [ -85.617538, 45.814106 ], [ -85.612305, 45.816010 ], [ -85.606598, 45.815060 ], [ -85.603264, 45.813156 ], [ -85.601837, 45.811253 ], [ -85.611832, 45.806015 ] ] ], [ [ [ -85.683296, 45.769455 ], [ -85.690704, 45.769455 ], [ -85.696259, 45.774391 ], [ -85.691933, 45.777477 ], [ -85.683296, 45.769455 ] ] ], [ [ [ -85.377129, 45.769012 ], [ -85.396172, 45.774723 ], [ -85.394264, 45.778530 ], [ -85.379036, 45.789951 ], [ -85.379036, 45.802326 ], [ -85.377129, 45.812794 ], [ -85.370468, 45.818504 ], [ -85.360954, 45.817554 ], [ -85.353340, 45.806133 ], [ -85.351433, 45.795662 ], [ -85.359047, 45.776627 ], [ -85.377129, 45.769012 ] ] ], [ [ [ -85.462578, 45.765865 ], [ -85.495575, 45.772739 ], [ -85.507263, 45.778236 ], [ -85.532013, 45.798172 ], [ -85.529259, 45.818108 ], [ -85.524445, 45.829792 ], [ -85.496948, 45.822231 ], [ -85.454330, 45.800236 ], [ -85.450203, 45.796677 ], [ -85.447830, 45.790134 ], [ -85.450203, 45.776451 ], [ -85.455559, 45.768719 ], [ -85.462578, 45.765865 ] ] ], [ [ [ -84.420113, 45.718815 ], [ -84.431412, 45.724762 ], [ -84.434387, 45.726547 ], [ -84.442719, 45.726547 ], [ -84.452827, 45.725952 ], [ -84.472458, 45.731304 ], [ -84.481384, 45.729523 ], [ -84.500420, 45.736065 ], [ -84.510529, 45.750340 ], [ -84.512314, 45.755100 ], [ -84.525406, 45.761047 ], [ -84.558716, 45.793766 ], [ -84.580727, 45.801498 ], [ -84.588455, 45.807449 ], [ -84.590240, 45.812801 ], [ -84.589050, 45.816372 ], [ -84.580727, 45.819939 ], [ -84.571800, 45.819347 ], [ -84.550385, 45.811016 ], [ -84.525406, 45.808640 ], [ -84.511124, 45.811611 ], [ -84.504585, 45.811611 ], [ -84.500420, 45.811016 ], [ -84.490303, 45.804474 ], [ -84.439148, 45.789604 ], [ -84.433197, 45.787819 ], [ -84.427841, 45.790195 ], [ -84.423088, 45.792576 ], [ -84.421303, 45.796146 ], [ -84.423088, 45.805069 ], [ -84.427246, 45.811611 ], [ -84.418922, 45.811611 ], [ -84.408211, 45.795551 ], [ -84.402267, 45.787224 ], [ -84.398697, 45.785439 ], [ -84.390961, 45.785439 ], [ -84.375496, 45.777706 ], [ -84.357056, 45.772350 ], [ -84.354080, 45.770565 ], [ -84.354080, 45.767593 ], [ -84.364197, 45.756290 ], [ -84.371330, 45.746773 ], [ -84.379662, 45.739635 ], [ -84.390366, 45.734875 ], [ -84.392151, 45.729523 ], [ -84.399292, 45.722977 ], [ -84.409996, 45.720005 ], [ -84.420113, 45.718815 ] ] ], [ [ [ -85.672188, 45.696632 ], [ -85.696869, 45.697250 ], [ -85.696259, 45.712063 ], [ -85.695290, 45.724697 ], [ -85.701813, 45.736130 ], [ -85.688850, 45.747238 ], [ -85.651863, 45.743141 ], [ -85.649353, 45.722553 ], [ -85.672188, 45.696632 ] ] ], [ [ [ -85.843750, 45.690460 ], [ -85.843750, 45.710209 ], [ -85.835114, 45.711445 ], [ -85.833260, 45.696632 ], [ -85.843750, 45.690460 ] ] ], [ [ [ -86.682877, 45.594818 ], [ -86.691704, 45.595818 ], [ -86.702019, 45.602692 ], [ -86.712326, 45.610939 ], [ -86.692390, 45.617126 ], [ -86.677269, 45.613689 ], [ -86.669022, 45.609566 ], [ -86.665749, 45.606239 ], [ -86.670982, 45.600529 ], [ -86.682877, 45.594818 ] ] ], [ [ [ -86.636894, 45.542053 ], [ -86.648788, 45.543243 ], [ -86.654144, 45.555737 ], [ -86.661285, 45.574177 ], [ -86.661285, 45.582504 ], [ -86.658905, 45.586075 ], [ -86.654739, 45.587856 ], [ -86.644035, 45.585480 ], [ -86.626190, 45.573582 ], [ -86.620239, 45.562279 ], [ -86.622025, 45.556332 ], [ -86.630348, 45.546814 ], [ -86.636894, 45.542053 ] ] ], [ [ [ -86.660690, 45.520042 ], [ -86.666641, 45.520042 ], [ -86.669609, 45.524208 ], [ -86.670204, 45.529560 ], [ -86.667236, 45.531940 ], [ -86.659500, 45.532536 ], [ -86.656525, 45.525993 ], [ -86.660690, 45.520042 ] ] ], [ [ [ -86.715080, 45.497517 ], [ -86.728142, 45.522949 ], [ -86.723328, 45.520889 ], [ -86.715767, 45.509201 ], [ -86.715080, 45.497517 ] ] ], [ [ [ -86.758385, 45.476204 ], [ -86.782448, 45.487206 ], [ -86.782448, 45.506451 ], [ -86.774193, 45.511951 ], [ -86.756325, 45.501640 ], [ -86.758385, 45.476204 ] ] ], [ [ [ -85.770958, 45.461353 ], [ -85.792961, 45.481976 ], [ -85.782646, 45.491596 ], [ -85.770958, 45.487473 ], [ -85.766838, 45.475788 ], [ -85.770958, 45.461353 ] ] ], [ [ [ -85.833519, 45.378174 ], [ -85.873390, 45.421482 ], [ -85.883011, 45.443478 ], [ -85.858261, 45.440041 ], [ -85.834892, 45.428356 ], [ -85.825958, 45.404297 ], [ -85.833519, 45.378174 ] ] ], [ [ [ -83.322464, 45.186062 ], [ -83.338272, 45.189499 ], [ -83.334145, 45.199123 ], [ -83.319710, 45.194313 ], [ -83.322464, 45.186062 ] ] ], [ [ [ -83.190582, 45.033356 ], [ -83.229767, 45.039539 ], [ -83.233894, 45.054665 ], [ -83.231827, 45.058102 ], [ -83.213959, 45.056728 ], [ -83.201584, 45.046413 ], [ -83.190582, 45.033356 ] ] ], [ [ [ -85.582054, 44.859333 ], [ -85.583755, 44.861454 ], [ -85.581207, 44.869938 ], [ -85.569328, 44.873333 ], [ -85.569756, 44.863152 ], [ -85.582054, 44.859333 ] ] ], [ [ [ -83.829224, 43.662632 ], [ -83.831284, 43.669506 ], [ -83.821663, 43.677067 ], [ -83.816162, 43.672943 ], [ -83.816162, 43.666756 ], [ -83.829224, 43.662632 ] ] ] ] } }; + + var multiTriangles = tesselate(multipolygon); + + t.equal(multiTriangles.type, 'FeatureCollection', 'MultiPolygon returns a FeatureCollection'); + t.equal(multiTriangles.features[0].geometry.type, 'Polygon', 'contains at least 1 triangle'); + t.equal(multiTriangles.features[0].geometry.coordinates[0].length, 4, 'triangle is valid'); + + t.throws(function(err){ + tesselate(point([0,0])); + }, /input must be a Polygon or MultiPolygon/); + + t.throws(function(err){ + tesselate(featurecollection([])); + }, /input must be a Polygon or MultiPolygon/); + + t.end(); +}); diff --git a/packages/turf-tin/.npmignore b/packages/turf-tin/.npmignore new file mode 100644 index 0000000000..bb3c08c09a --- /dev/null +++ b/packages/turf-tin/.npmignore @@ -0,0 +1,2 @@ +test +coverage diff --git a/packages/turf-tin/LICENSE b/packages/turf-tin/LICENSE new file mode 100644 index 0000000000..64fb8e99a3 --- /dev/null +++ b/packages/turf-tin/LICENSE @@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) 2014 Morgan Herlocker + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. \ No newline at end of file diff --git a/packages/turf-tin/README.md b/packages/turf-tin/README.md new file mode 100644 index 0000000000..f937dc1c3f --- /dev/null +++ b/packages/turf-tin/README.md @@ -0,0 +1,69 @@ +# turf-tin + +[![build status](https://secure.travis-ci.org/Turfjs/turf-tin.png)](http://travis-ci.org/Turfjs/turf-tin) + +turf tin module + + +### `turf.tin(points, propertyName)` + +Takes a set of Point|points and the name of a z-value property and +creates a [Triangulated Irregular Network](http://en.wikipedia.org/wiki/Triangulated_irregular_network), +or a TIN for short, returned as a collection of Polygons. These are often used +for developing elevation contour maps or stepped heat visualizations. + +This triangulates the points, as well as adds properties called `a`, `b`, +and `c` representing the value of the given `propertyName` at each of +the points that represent the corners of the triangle. + + +### Parameters + +| parameter | type | description | +| -------------- | ---------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `points` | FeatureCollection\.\ | input points | +| `propertyName` | String | _optional:_ name of the property from which to pull z values This is optional: if not given, then there will be no extra data added to the derived triangles. | + + +### Example + +```js +// generate some random point data +var points = turf.random('points', 30, { + bbox: [50, 30, 70, 50] +}); +//=points +// add a random property to each point between 0 and 9 +for (var i = 0; i < points.features.length; i++) { + points.features[i].properties.z = ~~(Math.random() * 9); +} +var tin = turf.tin(points, 'z') +for (var i = 0; i < tin.features.length; i++) { + var properties = tin.features[i].properties; + // roughly turn the properties of each + // triangle into a fill color + // so we can visualize the result + properties.fill = '#' + properties.a + + properties.b + properties.c; +} +//=tin +``` + + +**Returns** `FeatureCollection.`, TIN output + +## Installation + +Requires [nodejs](http://nodejs.org/). + +```sh +$ npm install turf-tin +``` + +## Tests + +```sh +$ npm test +``` + + diff --git a/packages/turf-tin/bench.js b/packages/turf-tin/bench.js new file mode 100644 index 0000000000..903df89995 --- /dev/null +++ b/packages/turf-tin/bench.js @@ -0,0 +1,17 @@ +global.tin = require('./'); +var Benchmark = require('benchmark'); +var fs = require('fs'); + +global.points = JSON.parse(fs.readFileSync(__dirname+'/test/Points.geojson')); + +var suite = new Benchmark.Suite('turf-tin'); +suite + .add('turf-tin',function () { + global.tin(global.points, 'elevation'); + }) + .on('cycle', function (event) { + console.log(String(event.target)); + }) + .on('complete', function () { + }) + .run(); diff --git a/packages/turf-tin/index.js b/packages/turf-tin/index.js new file mode 100644 index 0000000000..cece16f2a6 --- /dev/null +++ b/packages/turf-tin/index.js @@ -0,0 +1,238 @@ +//http://en.wikipedia.org/wiki/Delaunay_triangulation +//https://github.com/ironwallaby/delaunay +var polygon = require('turf-helpers').polygon; +var featurecollection = require('turf-helpers').featureCollection; + +/** + * Takes a set of {@link Point|points} and the name of a z-value property and + * creates a [Triangulated Irregular Network](http://en.wikipedia.org/wiki/Triangulated_irregular_network), + * or a TIN for short, returned as a collection of Polygons. These are often used + * for developing elevation contour maps or stepped heat visualizations. + * + * This triangulates the points, as well as adds properties called `a`, `b`, + * and `c` representing the value of the given `propertyName` at each of + * the points that represent the corners of the triangle. + * + * @name tin + * @category interpolation + * @param {FeatureCollection} points input points + * @param {String=} propertyName name of the property from which to pull z values + * This is optional: if not given, then there will be no extra data added to the derived triangles. + * @return {FeatureCollection} TIN output + * @example + * // generate some random point data + * var points = turf.random('points', 30, { + * bbox: [50, 30, 70, 50] + * }); + * //=points + * // add a random property to each point between 0 and 9 + * for (var i = 0; i < points.features.length; i++) { + * points.features[i].properties.z = ~~(Math.random() * 9); + * } + * var tin = turf.tin(points, 'z') + * for (var i = 0; i < tin.features.length; i++) { + * var properties = tin.features[i].properties; + * // roughly turn the properties of each + * // triangle into a fill color + * // so we can visualize the result + * properties.fill = '#' + properties.a + + * properties.b + properties.c; + * } + * //=tin + */ +module.exports = function (points, z) { + //break down points + return featurecollection(triangulate(points.features.map(function (p) { + var point = { + x: p.geometry.coordinates[0], + y: p.geometry.coordinates[1] + }; + if (z) point.z = p.properties[z]; + return point; + })).map(function (triangle) { + return polygon([[ + [triangle.a.x, triangle.a.y], + [triangle.b.x, triangle.b.y], + [triangle.c.x, triangle.c.y], + [triangle.a.x, triangle.a.y] + ]], { + a: triangle.a.z, + b: triangle.b.z, + c: triangle.c.z + }); + })); +}; + +function Triangle(a, b, c) { + this.a = a; + this.b = b; + this.c = c; + + var A = b.x - a.x, + B = b.y - a.y, + C = c.x - a.x, + D = c.y - a.y, + E = A * (a.x + b.x) + B * (a.y + b.y), + F = C * (a.x + c.x) + D * (a.y + c.y), + G = 2 * (A * (c.y - b.y) - B * (c.x - b.x)), + minx, miny, dx, dy; + + // If the points of the triangle are collinear, then just find the + // extremes and use the midpoint as the center of the circumcircle. + if (Math.abs(G) < 0.000001) { + minx = Math.min(a.x, b.x, c.x); + miny = Math.min(a.y, b.y, c.y); + dx = (Math.max(a.x, b.x, c.x) - minx) * 0.5; + dy = (Math.max(a.y, b.y, c.y) - miny) * 0.5; + + this.x = minx + dx; + this.y = miny + dy; + this.r = dx * dx + dy * dy; + } else { + this.x = (D * E - B * F) / G; + this.y = (A * F - C * E) / G; + dx = this.x - a.x; + dy = this.y - a.y; + this.r = dx * dx + dy * dy; + } +} + +function byX(a, b) { + return b.x - a.x; +} + +function dedup(edges) { + var j = edges.length, + a, b, i, m, n; + + outer: + while (j) { + b = edges[--j]; + a = edges[--j]; + i = j; + while (i) { + n = edges[--i]; + m = edges[--i]; + if ((a === m && b === n) || (a === n && b === m)) { + edges.splice(j, 2); + edges.splice(i, 2); + j -= 2; + continue outer; + } + } + } +} + +function triangulate(vertices) { + // Bail if there aren't enough vertices to form any triangles. + if (vertices.length < 3) + return []; + + // Ensure the vertex array is in order of descending X coordinate + // (which is needed to ensure a subquadratic runtime), and then find + // the bounding box around the points. + vertices.sort(byX); + + var i = vertices.length - 1, + xmin = vertices[i].x, + xmax = vertices[0].x, + ymin = vertices[i].y, + ymax = ymin; + + while (i--) { + if (vertices[i].y < ymin) + ymin = vertices[i].y; + if (vertices[i].y > ymax) + ymax = vertices[i].y; + } + + //Find a supertriangle, which is a triangle that surrounds all the + //vertices. This is used like something of a sentinel value to remove + //cases in the main algorithm, and is removed before we return any + // results. + + // Once found, put it in the "open" list. (The "open" list is for + // triangles who may still need to be considered; the "closed" list is + // for triangles which do not.) + var dx = xmax - xmin, + dy = ymax - ymin, + dmax = (dx > dy) ? dx : dy, + xmid = (xmax + xmin) * 0.5, + ymid = (ymax + ymin) * 0.5, + open = [ + new Triangle({ + x: xmid - 20 * dmax, + y: ymid - dmax, + __sentinel: true + }, { + x: xmid, + y: ymid + 20 * dmax, + __sentinel: true + }, { + x: xmid + 20 * dmax, + y: ymid - dmax, + __sentinel: true + } + )], + closed = [], + edges = [], + j, a, b; + + // Incrementally add each vertex to the mesh. + i = vertices.length; + while (i--) { + // For each open triangle, check to see if the current point is + // inside it's circumcircle. If it is, remove the triangle and add + // it's edges to an edge list. + edges.length = 0; + j = open.length; + while (j--) { + // If this point is to the right of this triangle's circumcircle, + // then this triangle should never get checked again. Remove it + // from the open list, add it to the closed list, and skip. + dx = vertices[i].x - open[j].x; + if (dx > 0 && dx * dx > open[j].r) { + closed.push(open[j]); + open.splice(j, 1); + continue; + } + + // If not, skip this triangle. + dy = vertices[i].y - open[j].y; + if (dx * dx + dy * dy > open[j].r) + continue; + + // Remove the triangle and add it's edges to the edge list. + edges.push( + open[j].a, open[j].b, + open[j].b, open[j].c, + open[j].c, open[j].a + ); + open.splice(j, 1); + } + + // Remove any doubled edges. + dedup(edges); + + // Add a new triangle for each edge. + j = edges.length; + while (j) { + b = edges[--j]; + a = edges[--j]; + open.push(new Triangle(a, b, vertices[i])); + } + } + + // Copy any remaining open triangles to the closed list, and then + // remove any triangles that share a vertex with the supertriangle. + Array.prototype.push.apply(closed, open); + + i = closed.length; + while (i--) + if (closed[i].a.__sentinel || + closed[i].b.__sentinel || + closed[i].c.__sentinel) + closed.splice(i, 1); + + return closed; +} diff --git a/packages/turf-tin/package.json b/packages/turf-tin/package.json new file mode 100644 index 0000000000..a049b9a3a6 --- /dev/null +++ b/packages/turf-tin/package.json @@ -0,0 +1,31 @@ +{ + "name": "turf-tin", + "version": "3.0.5", + "description": "turf tin module", + "main": "index.js", + "scripts": { + "test": "tape test.js" + }, + "repository": { + "type": "git", + "url": "https://github.com/Turfjs/turf-tin.git" + }, + "keywords": [ + "turf", + "tin", + "triangulate" + ], + "author": "morganherlocker", + "license": "MIT", + "bugs": { + "url": "https://github.com/Turfjs/turf-tin/issues" + }, + "homepage": "https://github.com/Turfjs/turf-tin", + "devDependencies": { + "benchmark": "^1.0.0", + "tape": "^3.5.0" + }, + "dependencies": { + "turf-helpers": "^3.0.5" + } +} diff --git a/packages/turf-tin/test.js b/packages/turf-tin/test.js new file mode 100644 index 0000000000..2a54253f86 --- /dev/null +++ b/packages/turf-tin/test.js @@ -0,0 +1,14 @@ +var test = require('tape'); +var fs = require('fs'); +var tin = require('./index.js'); + +test('tin', function(t){ + var points = JSON.parse(fs.readFileSync(__dirname+'/test/Points.geojson')); + var tinned = tin(points, 'elevation'); + + t.equal(tinned.features[0].geometry.type, 'Polygon'); + t.equal(tinned.features.length, 24); + + fs.writeFileSync(__dirname+'/test/Tin.geojson', JSON.stringify(tinned)); + t.end(); +}); diff --git a/packages/turf-tin/test/Points.geojson b/packages/turf-tin/test/Points.geojson new file mode 100644 index 0000000000..966478da70 --- /dev/null +++ b/packages/turf-tin/test/Points.geojson @@ -0,0 +1,141 @@ + { + "type": "FeatureCollection", + "features": [ + { "type": "Feature", + "geometry": {"type": "Point", "coordinates": [-75.833, 39.284]}, + "properties": { + "name": "Location B", + "category": "House", + "elevation": 25 + } + }, + { "type": "Feature", + "geometry": {"type": "Point", "coordinates": [-75.6, 39.984]}, + "properties": { + "name": "Location A", + "category": "Store", + "elevation": 23 + } + }, + { "type": "Feature", + "geometry": {"type": "Point", "coordinates": [ -75.221, 39.125]}, + "properties": { + "name": "Location C", + "category": "Office", + "elevation": 29 + } + }, + { "type": "Feature", + "geometry": {"type": "Point", "coordinates": [-75.358, 39.987]}, + "properties": { + "name": "Location A", + "category": "Store", + "elevation": 12 + } + }, + { "type": "Feature", + "geometry": {"type": "Point", "coordinates": [-75.9221, 39.27]}, + "properties": { + "name": "Location B", + "category": "House", + "elevation": 11 + } + }, + { "type": "Feature", + "geometry": {"type": "Point", "coordinates": [ -75.534, 39.123]}, + "properties": { + "name": "Location C", + "category": "Office", + "elevation": 49 + } + }, + { "type": "Feature", + "geometry": {"type": "Point", "coordinates": [-75.21, 39.12]}, + "properties": { + "name": "Location A", + "category": "Store", + "elevation": 50 + } + }, + { "type": "Feature", + "geometry": {"type": "Point", "coordinates": [-75.22, 39.33]}, + "properties": { + "name": "Location B", + "category": "House", + "elevation": 90 + } + }, + { "type": "Feature", + "geometry": {"type": "Point", "coordinates": [ -75.44, 39.55]}, + "properties": { + "name": "Location C", + "category": "Office", + "elevation": 22 + } + }, + { "type": "Feature", + "geometry": {"type": "Point", "coordinates": [-75.77, 39.66]}, + "properties": { + "name": "Location A", + "category": "Store", + "elevation": 99 + } + }, + { "type": "Feature", + "geometry": {"type": "Point", "coordinates": [-75.44, 39.11]}, + "properties": { + "name": "Location B", + "category": "House", + "elevation": 55 + } + }, + { "type": "Feature", + "geometry": {"type": "Point", "coordinates": [ -75.05, 39.92]}, + "properties": { + "name": "Location C", + "category": "Office", + "elevation": 41 + } + }, + { "type": "Feature", + "geometry": {"type": "Point", "coordinates": [-75.88, 39.98]}, + "properties": { + "name": "Location A", + "category": "Store", + "elevation": 52 + } + }, + { "type": "Feature", + "geometry": {"type": "Point", "coordinates": [-75.55, 39.55]}, + "properties": { + "name": "Location B", + "category": "House", + "elevation": 143 + } + }, + { "type": "Feature", + "geometry": {"type": "Point", "coordinates": [ -75.33, 39.44]}, + "properties": { + "name": "Location C", + "category": "Office", + "elevation": 76 + } + }, + { "type": "Feature", + "geometry": {"type": "Point", "coordinates": [ -75.56, 39.24]}, + "properties": { + "name": "Location C", + "category": "Office", + "elevation": 18 + } + }, + { "type": "Feature", + "geometry": {"type": "Point", "coordinates": [ -75.56, 39.36]}, + "properties": { + "name": "Location C", + "category": "Office", + "elevation": 52 + } + } + ] + } \ No newline at end of file diff --git a/packages/turf-tin/test/Tin.geojson b/packages/turf-tin/test/Tin.geojson new file mode 100644 index 0000000000..85e4f82b8c --- /dev/null +++ b/packages/turf-tin/test/Tin.geojson @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"a":11,"b":52,"c":99},"geometry":{"type":"Polygon","coordinates":[[[-75.9221,39.27],[-75.88,39.98],[-75.77,39.66],[-75.9221,39.27]]]}},{"type":"Feature","properties":{"a":25,"b":11,"c":99},"geometry":{"type":"Polygon","coordinates":[[[-75.833,39.284],[-75.9221,39.27],[-75.77,39.66],[-75.833,39.284]]]}},{"type":"Feature","properties":{"a":25,"b":52,"c":18},"geometry":{"type":"Polygon","coordinates":[[[-75.833,39.284],[-75.56,39.36],[-75.56,39.24],[-75.833,39.284]]]}},{"type":"Feature","properties":{"a":99,"b":52,"c":23},"geometry":{"type":"Polygon","coordinates":[[[-75.77,39.66],[-75.88,39.98],[-75.6,39.984],[-75.77,39.66]]]}},{"type":"Feature","properties":{"a":11,"b":25,"c":49},"geometry":{"type":"Polygon","coordinates":[[[-75.9221,39.27],[-75.833,39.284],[-75.534,39.123],[-75.9221,39.27]]]}},{"type":"Feature","properties":{"a":25,"b":18,"c":49},"geometry":{"type":"Polygon","coordinates":[[[-75.833,39.284],[-75.56,39.24],[-75.534,39.123],[-75.833,39.284]]]}},{"type":"Feature","properties":{"a":52,"b":99,"c":143},"geometry":{"type":"Polygon","coordinates":[[[-75.56,39.36],[-75.77,39.66],[-75.55,39.55],[-75.56,39.36]]]}},{"type":"Feature","properties":{"a":25,"b":99,"c":52},"geometry":{"type":"Polygon","coordinates":[[[-75.833,39.284],[-75.77,39.66],[-75.56,39.36],[-75.833,39.284]]]}},{"type":"Feature","properties":{"a":52,"b":143,"c":22},"geometry":{"type":"Polygon","coordinates":[[[-75.56,39.36],[-75.55,39.55],[-75.44,39.55],[-75.56,39.36]]]}},{"type":"Feature","properties":{"a":49,"b":18,"c":55},"geometry":{"type":"Polygon","coordinates":[[[-75.534,39.123],[-75.56,39.24],[-75.44,39.11],[-75.534,39.123]]]}},{"type":"Feature","properties":{"a":99,"b":23,"c":143},"geometry":{"type":"Polygon","coordinates":[[[-75.77,39.66],[-75.6,39.984],[-75.55,39.55],[-75.77,39.66]]]}},{"type":"Feature","properties":{"a":52,"b":22,"c":76},"geometry":{"type":"Polygon","coordinates":[[[-75.56,39.36],[-75.44,39.55],[-75.33,39.44],[-75.56,39.36]]]}},{"type":"Feature","properties":{"a":18,"b":52,"c":76},"geometry":{"type":"Polygon","coordinates":[[[-75.56,39.24],[-75.56,39.36],[-75.33,39.44],[-75.56,39.24]]]}},{"type":"Feature","properties":{"a":22,"b":23,"c":12},"geometry":{"type":"Polygon","coordinates":[[[-75.44,39.55],[-75.6,39.984],[-75.358,39.987],[-75.44,39.55]]]}},{"type":"Feature","properties":{"a":143,"b":23,"c":22},"geometry":{"type":"Polygon","coordinates":[[[-75.55,39.55],[-75.6,39.984],[-75.44,39.55],[-75.55,39.55]]]}},{"type":"Feature","properties":{"a":55,"b":76,"c":90},"geometry":{"type":"Polygon","coordinates":[[[-75.44,39.11],[-75.33,39.44],[-75.22,39.33],[-75.44,39.11]]]}},{"type":"Feature","properties":{"a":55,"b":18,"c":76},"geometry":{"type":"Polygon","coordinates":[[[-75.44,39.11],[-75.56,39.24],[-75.33,39.44],[-75.44,39.11]]]}},{"type":"Feature","properties":{"a":29,"b":90,"c":50},"geometry":{"type":"Polygon","coordinates":[[[-75.221,39.125],[-75.22,39.33],[-75.21,39.12],[-75.221,39.125]]]}},{"type":"Feature","properties":{"a":55,"b":29,"c":50},"geometry":{"type":"Polygon","coordinates":[[[-75.44,39.11],[-75.221,39.125],[-75.21,39.12],[-75.44,39.11]]]}},{"type":"Feature","properties":{"a":29,"b":55,"c":90},"geometry":{"type":"Polygon","coordinates":[[[-75.221,39.125],[-75.44,39.11],[-75.22,39.33],[-75.221,39.125]]]}},{"type":"Feature","properties":{"a":76,"b":22,"c":41},"geometry":{"type":"Polygon","coordinates":[[[-75.33,39.44],[-75.44,39.55],[-75.05,39.92],[-75.33,39.44]]]}},{"type":"Feature","properties":{"a":22,"b":12,"c":41},"geometry":{"type":"Polygon","coordinates":[[[-75.44,39.55],[-75.358,39.987],[-75.05,39.92],[-75.44,39.55]]]}},{"type":"Feature","properties":{"a":90,"b":76,"c":41},"geometry":{"type":"Polygon","coordinates":[[[-75.22,39.33],[-75.33,39.44],[-75.05,39.92],[-75.22,39.33]]]}},{"type":"Feature","properties":{"a":50,"b":90,"c":41},"geometry":{"type":"Polygon","coordinates":[[[-75.21,39.12],[-75.22,39.33],[-75.05,39.92],[-75.21,39.12]]]}}]} \ No newline at end of file diff --git a/packages/turf-triangle-grid/.npmignore b/packages/turf-triangle-grid/.npmignore new file mode 100644 index 0000000000..bb3c08c09a --- /dev/null +++ b/packages/turf-triangle-grid/.npmignore @@ -0,0 +1,2 @@ +test +coverage diff --git a/packages/turf-triangle-grid/LICENSE b/packages/turf-triangle-grid/LICENSE new file mode 100644 index 0000000000..87a514a46d --- /dev/null +++ b/packages/turf-triangle-grid/LICENSE @@ -0,0 +1,22 @@ +The MIT License (MIT) + +Copyright (c) 2015 turf + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + diff --git a/packages/turf-triangle-grid/README.md b/packages/turf-triangle-grid/README.md new file mode 100644 index 0000000000..bf552d7a25 --- /dev/null +++ b/packages/turf-triangle-grid/README.md @@ -0,0 +1,47 @@ +# turf-triangle-grid + +[![build status](https://secure.travis-ci.org/Turfjs/turf-triangle-grid.png)](http://travis-ci.org/Turfjs/turf-triangle-grid) + + + + +### `turf.triangle-grid(extent, cellWidth, units)` + +Takes a bounding box and a cell depth and returns a FeatureCollection of Polygon features in a grid. + + +### Parameters + +| parameter | type | description | +| ----------- | -------------- | ---------------------------------------- | +| `extent` | Array. | extent in [minX, minY, maxX, maxY] order | +| `cellWidth` | Number | width of each cell | +| `units` | String | units to use for cellWidth | + + +### Example + +```js +var extent = [-77.3876953125,38.71980474264239,-76.9482421875,39.027718840211605]; +var cellWidth = 10; +var units = 'miles'; + +var triangleGrid = turf.triangleGrid(extent, cellWidth, units); + +//=triangleGrid +``` + +## Installation + +Requires [nodejs](http://nodejs.org/). + +```sh +$ npm install turf-triangle-grid +``` + +## Tests + +```sh +$ npm test +``` + diff --git a/packages/turf-triangle-grid/bench.js b/packages/turf-triangle-grid/bench.js new file mode 100644 index 0000000000..723e177cd4 --- /dev/null +++ b/packages/turf-triangle-grid/bench.js @@ -0,0 +1,32 @@ +var grid = require('./'); +var Benchmark = require('benchmark'); +var fs = require('fs'); + +var bbox1 = [ + -96.6357421875, + 31.12819929911196, + -84.9462890625, + 40.58058466412764 + ]; + +var highres = grid(bbox1, 100, 'miles').features.length; +var midres = grid(bbox1, 10, 'miles').features.length; +var lowres = grid(bbox1, 1, 'miles').features.length; +var suite = new Benchmark.Suite('turf-triangle-grid'); +suite + .add('turf-triangle-grid -- '+highres+' cells',function () { + grid(bbox1, 100, 'miles'); + }) + .add('turf-triangle-grid -- '+midres+' cells',function () { + grid(bbox1, 10, 'miles'); + }) + .add('turf-triangle-grid -- '+lowres+' cells',function () { + grid(bbox1, 1, 'miles'); + }) + .on('cycle', function (event) { + console.log(String(event.target)); + }) + .on('complete', function () { + + }) + .run(); \ No newline at end of file diff --git a/packages/turf-triangle-grid/index.js b/packages/turf-triangle-grid/index.js new file mode 100644 index 0000000000..12832bfc2f --- /dev/null +++ b/packages/turf-triangle-grid/index.js @@ -0,0 +1,93 @@ +var featurecollection = require('turf-helpers').featureCollection; +var polygon = require('turf-helpers').polygon; +var distance = require('turf-distance'); + +/** + * Takes a bounding box and a cell depth and returns a set of triangular {@link Polygon|polygons} in a grid. + * + * @name triangleGrid + * @category interpolation + * @param {Array} extent extent in [minX, minY, maxX, maxY] order + * @param {Number} cellWidth width of each cell + * @param {String} units units to use for cellWidth + * @return {FeatureCollection} grid of polygons + * @example + * var extent = [-77.3876953125,38.71980474264239,-76.9482421875,39.027718840211605]; + * var cellWidth = 10; + * var units = 'miles'; + * + * var triangleGrid = turf.triangleGrid(extent, cellWidth, units); + * + * //=triangleGrid + */ +module.exports = function (bbox, cell, units) { + var fc = featurecollection([]); + var xFraction = cell / (distance([bbox[0], bbox[1]], [bbox[2], bbox[1]], units)); + var cellWidth = xFraction * (bbox[2] - bbox[0]); + var yFraction = cell / (distance([bbox[0], bbox[1]], [bbox[0], bbox[3]], units)); + var cellHeight = yFraction * (bbox[3] - bbox[1]); + + var xi = 0; + var currentX = bbox[0]; + while (currentX <= bbox[2]) { + var yi = 0; + var currentY = bbox[1]; + while (currentY <= bbox[3]) { + if (xi % 2 === 0 && yi % 2 === 0) { + fc.features.push(polygon([[ + [currentX, currentY], + [currentX, currentY + cellHeight], + [currentX + cellWidth, currentY], + [currentX, currentY] + ]]), polygon([[ + [currentX, currentY + cellHeight], + [currentX + cellWidth, currentY + cellHeight], + [currentX + cellWidth, currentY], + [currentX, currentY + cellHeight] + ]])); + } else if (xi % 2 === 0 && yi % 2 === 1) { + fc.features.push(polygon([[ + [currentX, currentY], + [currentX + cellWidth, currentY + cellHeight], + [currentX + cellWidth, currentY], + [currentX, currentY] + ]]), polygon([[ + [currentX, currentY], + [currentX, currentY + cellHeight], + [currentX + cellWidth, currentY + cellHeight], + [currentX, currentY] + ]])); + } else if (yi % 2 === 0 && xi % 2 === 1) { + fc.features.push(polygon([[ + [currentX, currentY], + [currentX, currentY + cellHeight], + [currentX + cellWidth, currentY + cellHeight], + [currentX, currentY] + ]]), polygon([[ + [currentX, currentY], + [currentX + cellWidth, currentY + cellHeight], + [currentX + cellWidth, currentY], + [currentX, currentY] + ]])); + } else if (yi % 2 === 1 && xi % 2 === 1) { + fc.features.push(polygon([[ + [currentX, currentY], + [currentX, currentY + cellHeight], + [currentX + cellWidth, currentY], + [currentX, currentY] + ]]), polygon([[ + [currentX, currentY + cellHeight], + [currentX + cellWidth, currentY + cellHeight], + [currentX + cellWidth, currentY], + [currentX, currentY + cellHeight] + ]])); + } + currentY += cellHeight; + yi++; + } + xi++; + currentX += cellWidth; + } + return fc; +}; + diff --git a/packages/turf-triangle-grid/package.json b/packages/turf-triangle-grid/package.json new file mode 100644 index 0000000000..730af6a311 --- /dev/null +++ b/packages/turf-triangle-grid/package.json @@ -0,0 +1,36 @@ +{ + "name": "turf-triangle-grid", + "version": "3.0.5", + "description": "", + "main": "index.js", + "dependencies": { + "turf-distance": "^3.0.5", + "turf-helpers": "^3.0.5" + }, + "devDependencies": { + "benchmark": "^1.0.0", + "tape": "^3.5.0", + "turf-bbox-polygon": "^3.0.5" + }, + "scripts": { + "test": "node test.js" + }, + "repository": { + "type": "git", + "url": "https://github.com/Turfjs/turf-triangle-grid.git" + }, + "keywords": [ + "turf", + "triangle", + "grid", + "polygons", + "analysis", + "gis" + ], + "author": "morganherlocker", + "license": "MIT", + "bugs": { + "url": "https://github.com/Turfjs/turf-triangle-grid/issues" + }, + "homepage": "https://github.com/Turfjs/turf-triangle-grid" +} diff --git a/packages/turf-triangle-grid/test.js b/packages/turf-triangle-grid/test.js new file mode 100644 index 0000000000..33a2672594 --- /dev/null +++ b/packages/turf-triangle-grid/test.js @@ -0,0 +1,64 @@ +var test = require('tape'); +var grid = require('./'); +var fs = require('fs'); +var bboxPolygon = require('turf-bbox-polygon'); + +test('triangle-grid', function (t) { + var bbox1 = [ + -96.6357421875, + 31.12819929911196, + -84.9462890625, + 40.58058466412764 + ]; + var bbox2 = [ + -81.650390625, + 24.926294766395593, + -79.8486328125, + 26.43122806450644 + ]; + var bbox3 = [ + -77.3876953125, + 38.71980474264239, + -76.9482421875, + 39.027718840211605 + ]; + var bbox4 = [ + 63.6328125, + 11.867350911459308, + 75.234375, + 47.754097979680026 + ]; + + var grid1 = grid(bbox1, 50, 'miles'); + var grid2 = grid(bbox2, 5, 'miles'); + var grid3 = grid(bbox3, 2, 'miles'); + var grid4 = grid(bbox4, 50, 'miles'); + + grid1.features.push(referencePoly(bbox1)); + grid2.features.push(referencePoly(bbox2)); + grid3.features.push(referencePoly(bbox3)); + grid4.features.push(referencePoly(bbox4)); + + if (process.env.REGEN) { + fs.writeFileSync(__dirname+'/test/out/grid1.geojson', JSON.stringify(grid1,null,2)); + fs.writeFileSync(__dirname+'/test/out/grid2.geojson', JSON.stringify(grid2,null,2)); + fs.writeFileSync(__dirname+'/test/out/grid3.geojson', JSON.stringify(grid3,null,2)); + fs.writeFileSync(__dirname+'/test/out/grid4.geojson', JSON.stringify(grid4,null,2)); + } + + t.deepEqual(JSON.parse(fs.readFileSync(__dirname+'/test/out/grid1.geojson')), grid1, 'grid is correct'); + t.deepEqual(JSON.parse(fs.readFileSync(__dirname+'/test/out/grid2.geojson')), grid2, 'grid is correct'); + t.deepEqual(JSON.parse(fs.readFileSync(__dirname+'/test/out/grid3.geojson')), grid3, 'grid is correct'); + t.deepEqual(JSON.parse(fs.readFileSync(__dirname+'/test/out/grid4.geojson')), grid4, 'grid is correct'); + + t.end(); +}); + +function referencePoly (bbox) { + var poly = bboxPolygon(bbox); + poly.properties = { + 'fill-opacity': 0, + stroke: '#0ff' + }; + return poly; +} diff --git a/packages/turf-triangle-grid/test/out/grid1.geojson b/packages/turf-triangle-grid/test/out/grid1.geojson new file mode 100644 index 0000000000..d8ba040179 --- /dev/null +++ b/packages/turf-triangle-grid/test/out/grid1.geojson @@ -0,0 +1,10623 @@ +{ + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.6357421875, + 31.12819929911196 + ], + [ + -96.6357421875, + 31.851630858620574 + ], + [ + -95.79023143095539, + 31.12819929911196 + ], + [ + -96.6357421875, + 31.12819929911196 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.6357421875, + 31.851630858620574 + ], + [ + -95.79023143095539, + 31.851630858620574 + ], + [ + -95.79023143095539, + 31.12819929911196 + ], + [ + -96.6357421875, + 31.851630858620574 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.6357421875, + 31.851630858620574 + ], + [ + -95.79023143095539, + 32.57506241812919 + ], + [ + -95.79023143095539, + 31.851630858620574 + ], + [ + -96.6357421875, + 31.851630858620574 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.6357421875, + 31.851630858620574 + ], + [ + -96.6357421875, + 32.57506241812919 + ], + [ + -95.79023143095539, + 32.57506241812919 + ], + [ + -96.6357421875, + 31.851630858620574 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.6357421875, + 32.57506241812919 + ], + [ + -96.6357421875, + 33.298493977637804 + ], + [ + -95.79023143095539, + 32.57506241812919 + ], + [ + -96.6357421875, + 32.57506241812919 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.6357421875, + 33.298493977637804 + ], + [ + -95.79023143095539, + 33.298493977637804 + ], + [ + -95.79023143095539, + 32.57506241812919 + ], + [ + -96.6357421875, + 33.298493977637804 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.6357421875, + 33.298493977637804 + ], + [ + -95.79023143095539, + 34.021925537146416 + ], + [ + -95.79023143095539, + 33.298493977637804 + ], + [ + -96.6357421875, + 33.298493977637804 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.6357421875, + 33.298493977637804 + ], + [ + -96.6357421875, + 34.021925537146416 + ], + [ + -95.79023143095539, + 34.021925537146416 + ], + [ + -96.6357421875, + 33.298493977637804 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.6357421875, + 34.021925537146416 + ], + [ + -96.6357421875, + 34.74535709665503 + ], + [ + -95.79023143095539, + 34.021925537146416 + ], + [ + -96.6357421875, + 34.021925537146416 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.6357421875, + 34.74535709665503 + ], + [ + -95.79023143095539, + 34.74535709665503 + ], + [ + -95.79023143095539, + 34.021925537146416 + ], + [ + -96.6357421875, + 34.74535709665503 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.6357421875, + 34.74535709665503 + ], + [ + -95.79023143095539, + 35.46878865616364 + ], + [ + -95.79023143095539, + 34.74535709665503 + ], + [ + -96.6357421875, + 34.74535709665503 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.6357421875, + 34.74535709665503 + ], + [ + -96.6357421875, + 35.46878865616364 + ], + [ + -95.79023143095539, + 35.46878865616364 + ], + [ + -96.6357421875, + 34.74535709665503 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.6357421875, + 35.46878865616364 + ], + [ + -96.6357421875, + 36.19222021567225 + ], + [ + -95.79023143095539, + 35.46878865616364 + ], + [ + -96.6357421875, + 35.46878865616364 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.6357421875, + 36.19222021567225 + ], + [ + -95.79023143095539, + 36.19222021567225 + ], + [ + -95.79023143095539, + 35.46878865616364 + ], + [ + -96.6357421875, + 36.19222021567225 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.6357421875, + 36.19222021567225 + ], + [ + -95.79023143095539, + 36.91565177518086 + ], + [ + -95.79023143095539, + 36.19222021567225 + ], + [ + -96.6357421875, + 36.19222021567225 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.6357421875, + 36.19222021567225 + ], + [ + -96.6357421875, + 36.91565177518086 + ], + [ + -95.79023143095539, + 36.91565177518086 + ], + [ + -96.6357421875, + 36.19222021567225 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.6357421875, + 36.91565177518086 + ], + [ + -96.6357421875, + 37.639083334689474 + ], + [ + -95.79023143095539, + 36.91565177518086 + ], + [ + -96.6357421875, + 36.91565177518086 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.6357421875, + 37.639083334689474 + ], + [ + -95.79023143095539, + 37.639083334689474 + ], + [ + -95.79023143095539, + 36.91565177518086 + ], + [ + -96.6357421875, + 37.639083334689474 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.6357421875, + 37.639083334689474 + ], + [ + -95.79023143095539, + 38.362514894198085 + ], + [ + -95.79023143095539, + 37.639083334689474 + ], + [ + -96.6357421875, + 37.639083334689474 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.6357421875, + 37.639083334689474 + ], + [ + -96.6357421875, + 38.362514894198085 + ], + [ + -95.79023143095539, + 38.362514894198085 + ], + [ + -96.6357421875, + 37.639083334689474 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.6357421875, + 38.362514894198085 + ], + [ + -96.6357421875, + 39.0859464537067 + ], + [ + -95.79023143095539, + 38.362514894198085 + ], + [ + -96.6357421875, + 38.362514894198085 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.6357421875, + 39.0859464537067 + ], + [ + -95.79023143095539, + 39.0859464537067 + ], + [ + -95.79023143095539, + 38.362514894198085 + ], + [ + -96.6357421875, + 39.0859464537067 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.6357421875, + 39.0859464537067 + ], + [ + -95.79023143095539, + 39.80937801321531 + ], + [ + -95.79023143095539, + 39.0859464537067 + ], + [ + -96.6357421875, + 39.0859464537067 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.6357421875, + 39.0859464537067 + ], + [ + -96.6357421875, + 39.80937801321531 + ], + [ + -95.79023143095539, + 39.80937801321531 + ], + [ + -96.6357421875, + 39.0859464537067 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.6357421875, + 39.80937801321531 + ], + [ + -96.6357421875, + 40.53280957272392 + ], + [ + -95.79023143095539, + 39.80937801321531 + ], + [ + -96.6357421875, + 39.80937801321531 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.6357421875, + 40.53280957272392 + ], + [ + -95.79023143095539, + 40.53280957272392 + ], + [ + -95.79023143095539, + 39.80937801321531 + ], + [ + -96.6357421875, + 40.53280957272392 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.6357421875, + 40.53280957272392 + ], + [ + -95.79023143095539, + 41.25624113223253 + ], + [ + -95.79023143095539, + 40.53280957272392 + ], + [ + -96.6357421875, + 40.53280957272392 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.6357421875, + 40.53280957272392 + ], + [ + -96.6357421875, + 41.25624113223253 + ], + [ + -95.79023143095539, + 41.25624113223253 + ], + [ + -96.6357421875, + 40.53280957272392 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.79023143095539, + 31.12819929911196 + ], + [ + -95.79023143095539, + 31.851630858620574 + ], + [ + -94.94472067441077, + 31.851630858620574 + ], + [ + -95.79023143095539, + 31.12819929911196 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.79023143095539, + 31.12819929911196 + ], + [ + -94.94472067441077, + 31.851630858620574 + ], + [ + -94.94472067441077, + 31.12819929911196 + ], + [ + -95.79023143095539, + 31.12819929911196 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.79023143095539, + 31.851630858620574 + ], + [ + -95.79023143095539, + 32.57506241812919 + ], + [ + -94.94472067441077, + 31.851630858620574 + ], + [ + -95.79023143095539, + 31.851630858620574 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.79023143095539, + 32.57506241812919 + ], + [ + -94.94472067441077, + 32.57506241812919 + ], + [ + -94.94472067441077, + 31.851630858620574 + ], + [ + -95.79023143095539, + 32.57506241812919 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.79023143095539, + 32.57506241812919 + ], + [ + -95.79023143095539, + 33.298493977637804 + ], + [ + -94.94472067441077, + 33.298493977637804 + ], + [ + -95.79023143095539, + 32.57506241812919 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.79023143095539, + 32.57506241812919 + ], + [ + -94.94472067441077, + 33.298493977637804 + ], + [ + -94.94472067441077, + 32.57506241812919 + ], + [ + -95.79023143095539, + 32.57506241812919 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.79023143095539, + 33.298493977637804 + ], + [ + -95.79023143095539, + 34.021925537146416 + ], + [ + -94.94472067441077, + 33.298493977637804 + ], + [ + -95.79023143095539, + 33.298493977637804 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.79023143095539, + 34.021925537146416 + ], + [ + -94.94472067441077, + 34.021925537146416 + ], + [ + -94.94472067441077, + 33.298493977637804 + ], + [ + -95.79023143095539, + 34.021925537146416 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.79023143095539, + 34.021925537146416 + ], + [ + -95.79023143095539, + 34.74535709665503 + ], + [ + -94.94472067441077, + 34.74535709665503 + ], + [ + -95.79023143095539, + 34.021925537146416 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.79023143095539, + 34.021925537146416 + ], + [ + -94.94472067441077, + 34.74535709665503 + ], + [ + -94.94472067441077, + 34.021925537146416 + ], + [ + -95.79023143095539, + 34.021925537146416 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.79023143095539, + 34.74535709665503 + ], + [ + -95.79023143095539, + 35.46878865616364 + ], + [ + -94.94472067441077, + 34.74535709665503 + ], + [ + -95.79023143095539, + 34.74535709665503 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.79023143095539, + 35.46878865616364 + ], + [ + -94.94472067441077, + 35.46878865616364 + ], + [ + -94.94472067441077, + 34.74535709665503 + ], + [ + -95.79023143095539, + 35.46878865616364 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.79023143095539, + 35.46878865616364 + ], + [ + -95.79023143095539, + 36.19222021567225 + ], + [ + -94.94472067441077, + 36.19222021567225 + ], + [ + -95.79023143095539, + 35.46878865616364 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.79023143095539, + 35.46878865616364 + ], + [ + -94.94472067441077, + 36.19222021567225 + ], + [ + -94.94472067441077, + 35.46878865616364 + ], + [ + -95.79023143095539, + 35.46878865616364 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.79023143095539, + 36.19222021567225 + ], + [ + -95.79023143095539, + 36.91565177518086 + ], + [ + -94.94472067441077, + 36.19222021567225 + ], + [ + -95.79023143095539, + 36.19222021567225 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.79023143095539, + 36.91565177518086 + ], + [ + -94.94472067441077, + 36.91565177518086 + ], + [ + -94.94472067441077, + 36.19222021567225 + ], + [ + -95.79023143095539, + 36.91565177518086 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.79023143095539, + 36.91565177518086 + ], + [ + -95.79023143095539, + 37.639083334689474 + ], + [ + -94.94472067441077, + 37.639083334689474 + ], + [ + -95.79023143095539, + 36.91565177518086 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.79023143095539, + 36.91565177518086 + ], + [ + -94.94472067441077, + 37.639083334689474 + ], + [ + -94.94472067441077, + 36.91565177518086 + ], + [ + -95.79023143095539, + 36.91565177518086 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.79023143095539, + 37.639083334689474 + ], + [ + -95.79023143095539, + 38.362514894198085 + ], + [ + -94.94472067441077, + 37.639083334689474 + ], + [ + -95.79023143095539, + 37.639083334689474 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.79023143095539, + 38.362514894198085 + ], + [ + -94.94472067441077, + 38.362514894198085 + ], + [ + -94.94472067441077, + 37.639083334689474 + ], + [ + -95.79023143095539, + 38.362514894198085 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.79023143095539, + 38.362514894198085 + ], + [ + -95.79023143095539, + 39.0859464537067 + ], + [ + -94.94472067441077, + 39.0859464537067 + ], + [ + -95.79023143095539, + 38.362514894198085 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.79023143095539, + 38.362514894198085 + ], + [ + -94.94472067441077, + 39.0859464537067 + ], + [ + -94.94472067441077, + 38.362514894198085 + ], + [ + -95.79023143095539, + 38.362514894198085 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.79023143095539, + 39.0859464537067 + ], + [ + -95.79023143095539, + 39.80937801321531 + ], + [ + -94.94472067441077, + 39.0859464537067 + ], + [ + -95.79023143095539, + 39.0859464537067 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.79023143095539, + 39.80937801321531 + ], + [ + -94.94472067441077, + 39.80937801321531 + ], + [ + -94.94472067441077, + 39.0859464537067 + ], + [ + -95.79023143095539, + 39.80937801321531 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.79023143095539, + 39.80937801321531 + ], + [ + -95.79023143095539, + 40.53280957272392 + ], + [ + -94.94472067441077, + 40.53280957272392 + ], + [ + -95.79023143095539, + 39.80937801321531 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.79023143095539, + 39.80937801321531 + ], + [ + -94.94472067441077, + 40.53280957272392 + ], + [ + -94.94472067441077, + 39.80937801321531 + ], + [ + -95.79023143095539, + 39.80937801321531 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.79023143095539, + 40.53280957272392 + ], + [ + -95.79023143095539, + 41.25624113223253 + ], + [ + -94.94472067441077, + 40.53280957272392 + ], + [ + -95.79023143095539, + 40.53280957272392 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.79023143095539, + 41.25624113223253 + ], + [ + -94.94472067441077, + 41.25624113223253 + ], + [ + -94.94472067441077, + 40.53280957272392 + ], + [ + -95.79023143095539, + 41.25624113223253 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.94472067441077, + 31.12819929911196 + ], + [ + -94.94472067441077, + 31.851630858620574 + ], + [ + -94.09920991786616, + 31.12819929911196 + ], + [ + -94.94472067441077, + 31.12819929911196 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.94472067441077, + 31.851630858620574 + ], + [ + -94.09920991786616, + 31.851630858620574 + ], + [ + -94.09920991786616, + 31.12819929911196 + ], + [ + -94.94472067441077, + 31.851630858620574 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.94472067441077, + 31.851630858620574 + ], + [ + -94.09920991786616, + 32.57506241812919 + ], + [ + -94.09920991786616, + 31.851630858620574 + ], + [ + -94.94472067441077, + 31.851630858620574 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.94472067441077, + 31.851630858620574 + ], + [ + -94.94472067441077, + 32.57506241812919 + ], + [ + -94.09920991786616, + 32.57506241812919 + ], + [ + -94.94472067441077, + 31.851630858620574 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.94472067441077, + 32.57506241812919 + ], + [ + -94.94472067441077, + 33.298493977637804 + ], + [ + -94.09920991786616, + 32.57506241812919 + ], + [ + -94.94472067441077, + 32.57506241812919 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.94472067441077, + 33.298493977637804 + ], + [ + -94.09920991786616, + 33.298493977637804 + ], + [ + -94.09920991786616, + 32.57506241812919 + ], + [ + -94.94472067441077, + 33.298493977637804 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.94472067441077, + 33.298493977637804 + ], + [ + -94.09920991786616, + 34.021925537146416 + ], + [ + -94.09920991786616, + 33.298493977637804 + ], + [ + -94.94472067441077, + 33.298493977637804 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.94472067441077, + 33.298493977637804 + ], + [ + -94.94472067441077, + 34.021925537146416 + ], + [ + -94.09920991786616, + 34.021925537146416 + ], + [ + -94.94472067441077, + 33.298493977637804 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.94472067441077, + 34.021925537146416 + ], + [ + -94.94472067441077, + 34.74535709665503 + ], + [ + -94.09920991786616, + 34.021925537146416 + ], + [ + -94.94472067441077, + 34.021925537146416 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.94472067441077, + 34.74535709665503 + ], + [ + -94.09920991786616, + 34.74535709665503 + ], + [ + -94.09920991786616, + 34.021925537146416 + ], + [ + -94.94472067441077, + 34.74535709665503 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.94472067441077, + 34.74535709665503 + ], + [ + -94.09920991786616, + 35.46878865616364 + ], + [ + -94.09920991786616, + 34.74535709665503 + ], + [ + -94.94472067441077, + 34.74535709665503 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.94472067441077, + 34.74535709665503 + ], + [ + -94.94472067441077, + 35.46878865616364 + ], + [ + -94.09920991786616, + 35.46878865616364 + ], + [ + -94.94472067441077, + 34.74535709665503 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.94472067441077, + 35.46878865616364 + ], + [ + -94.94472067441077, + 36.19222021567225 + ], + [ + -94.09920991786616, + 35.46878865616364 + ], + [ + -94.94472067441077, + 35.46878865616364 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.94472067441077, + 36.19222021567225 + ], + [ + -94.09920991786616, + 36.19222021567225 + ], + [ + -94.09920991786616, + 35.46878865616364 + ], + [ + -94.94472067441077, + 36.19222021567225 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.94472067441077, + 36.19222021567225 + ], + [ + -94.09920991786616, + 36.91565177518086 + ], + [ + -94.09920991786616, + 36.19222021567225 + ], + [ + -94.94472067441077, + 36.19222021567225 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.94472067441077, + 36.19222021567225 + ], + [ + -94.94472067441077, + 36.91565177518086 + ], + [ + -94.09920991786616, + 36.91565177518086 + ], + [ + -94.94472067441077, + 36.19222021567225 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.94472067441077, + 36.91565177518086 + ], + [ + -94.94472067441077, + 37.639083334689474 + ], + [ + -94.09920991786616, + 36.91565177518086 + ], + [ + -94.94472067441077, + 36.91565177518086 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.94472067441077, + 37.639083334689474 + ], + [ + -94.09920991786616, + 37.639083334689474 + ], + [ + -94.09920991786616, + 36.91565177518086 + ], + [ + -94.94472067441077, + 37.639083334689474 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.94472067441077, + 37.639083334689474 + ], + [ + -94.09920991786616, + 38.362514894198085 + ], + [ + -94.09920991786616, + 37.639083334689474 + ], + [ + -94.94472067441077, + 37.639083334689474 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.94472067441077, + 37.639083334689474 + ], + [ + -94.94472067441077, + 38.362514894198085 + ], + [ + -94.09920991786616, + 38.362514894198085 + ], + [ + -94.94472067441077, + 37.639083334689474 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.94472067441077, + 38.362514894198085 + ], + [ + -94.94472067441077, + 39.0859464537067 + ], + [ + -94.09920991786616, + 38.362514894198085 + ], + [ + -94.94472067441077, + 38.362514894198085 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.94472067441077, + 39.0859464537067 + ], + [ + -94.09920991786616, + 39.0859464537067 + ], + [ + -94.09920991786616, + 38.362514894198085 + ], + [ + -94.94472067441077, + 39.0859464537067 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.94472067441077, + 39.0859464537067 + ], + [ + -94.09920991786616, + 39.80937801321531 + ], + [ + -94.09920991786616, + 39.0859464537067 + ], + [ + -94.94472067441077, + 39.0859464537067 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.94472067441077, + 39.0859464537067 + ], + [ + -94.94472067441077, + 39.80937801321531 + ], + [ + -94.09920991786616, + 39.80937801321531 + ], + [ + -94.94472067441077, + 39.0859464537067 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.94472067441077, + 39.80937801321531 + ], + [ + -94.94472067441077, + 40.53280957272392 + ], + [ + -94.09920991786616, + 39.80937801321531 + ], + [ + -94.94472067441077, + 39.80937801321531 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.94472067441077, + 40.53280957272392 + ], + [ + -94.09920991786616, + 40.53280957272392 + ], + [ + -94.09920991786616, + 39.80937801321531 + ], + [ + -94.94472067441077, + 40.53280957272392 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.94472067441077, + 40.53280957272392 + ], + [ + -94.09920991786616, + 41.25624113223253 + ], + [ + -94.09920991786616, + 40.53280957272392 + ], + [ + -94.94472067441077, + 40.53280957272392 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.94472067441077, + 40.53280957272392 + ], + [ + -94.94472067441077, + 41.25624113223253 + ], + [ + -94.09920991786616, + 41.25624113223253 + ], + [ + -94.94472067441077, + 40.53280957272392 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.09920991786616, + 31.12819929911196 + ], + [ + -94.09920991786616, + 31.851630858620574 + ], + [ + -93.25369916132155, + 31.851630858620574 + ], + [ + -94.09920991786616, + 31.12819929911196 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.09920991786616, + 31.12819929911196 + ], + [ + -93.25369916132155, + 31.851630858620574 + ], + [ + -93.25369916132155, + 31.12819929911196 + ], + [ + -94.09920991786616, + 31.12819929911196 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.09920991786616, + 31.851630858620574 + ], + [ + -94.09920991786616, + 32.57506241812919 + ], + [ + -93.25369916132155, + 31.851630858620574 + ], + [ + -94.09920991786616, + 31.851630858620574 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.09920991786616, + 32.57506241812919 + ], + [ + -93.25369916132155, + 32.57506241812919 + ], + [ + -93.25369916132155, + 31.851630858620574 + ], + [ + -94.09920991786616, + 32.57506241812919 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.09920991786616, + 32.57506241812919 + ], + [ + -94.09920991786616, + 33.298493977637804 + ], + [ + -93.25369916132155, + 33.298493977637804 + ], + [ + -94.09920991786616, + 32.57506241812919 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.09920991786616, + 32.57506241812919 + ], + [ + -93.25369916132155, + 33.298493977637804 + ], + [ + -93.25369916132155, + 32.57506241812919 + ], + [ + -94.09920991786616, + 32.57506241812919 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.09920991786616, + 33.298493977637804 + ], + [ + -94.09920991786616, + 34.021925537146416 + ], + [ + -93.25369916132155, + 33.298493977637804 + ], + [ + -94.09920991786616, + 33.298493977637804 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.09920991786616, + 34.021925537146416 + ], + [ + -93.25369916132155, + 34.021925537146416 + ], + [ + -93.25369916132155, + 33.298493977637804 + ], + [ + -94.09920991786616, + 34.021925537146416 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.09920991786616, + 34.021925537146416 + ], + [ + -94.09920991786616, + 34.74535709665503 + ], + [ + -93.25369916132155, + 34.74535709665503 + ], + [ + -94.09920991786616, + 34.021925537146416 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.09920991786616, + 34.021925537146416 + ], + [ + -93.25369916132155, + 34.74535709665503 + ], + [ + -93.25369916132155, + 34.021925537146416 + ], + [ + -94.09920991786616, + 34.021925537146416 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.09920991786616, + 34.74535709665503 + ], + [ + -94.09920991786616, + 35.46878865616364 + ], + [ + -93.25369916132155, + 34.74535709665503 + ], + [ + -94.09920991786616, + 34.74535709665503 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.09920991786616, + 35.46878865616364 + ], + [ + -93.25369916132155, + 35.46878865616364 + ], + [ + -93.25369916132155, + 34.74535709665503 + ], + [ + -94.09920991786616, + 35.46878865616364 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.09920991786616, + 35.46878865616364 + ], + [ + -94.09920991786616, + 36.19222021567225 + ], + [ + -93.25369916132155, + 36.19222021567225 + ], + [ + -94.09920991786616, + 35.46878865616364 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.09920991786616, + 35.46878865616364 + ], + [ + -93.25369916132155, + 36.19222021567225 + ], + [ + -93.25369916132155, + 35.46878865616364 + ], + [ + -94.09920991786616, + 35.46878865616364 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.09920991786616, + 36.19222021567225 + ], + [ + -94.09920991786616, + 36.91565177518086 + ], + [ + -93.25369916132155, + 36.19222021567225 + ], + [ + -94.09920991786616, + 36.19222021567225 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.09920991786616, + 36.91565177518086 + ], + [ + -93.25369916132155, + 36.91565177518086 + ], + [ + -93.25369916132155, + 36.19222021567225 + ], + [ + -94.09920991786616, + 36.91565177518086 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.09920991786616, + 36.91565177518086 + ], + [ + -94.09920991786616, + 37.639083334689474 + ], + [ + -93.25369916132155, + 37.639083334689474 + ], + [ + -94.09920991786616, + 36.91565177518086 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.09920991786616, + 36.91565177518086 + ], + [ + -93.25369916132155, + 37.639083334689474 + ], + [ + -93.25369916132155, + 36.91565177518086 + ], + [ + -94.09920991786616, + 36.91565177518086 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.09920991786616, + 37.639083334689474 + ], + [ + -94.09920991786616, + 38.362514894198085 + ], + [ + -93.25369916132155, + 37.639083334689474 + ], + [ + -94.09920991786616, + 37.639083334689474 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.09920991786616, + 38.362514894198085 + ], + [ + -93.25369916132155, + 38.362514894198085 + ], + [ + -93.25369916132155, + 37.639083334689474 + ], + [ + -94.09920991786616, + 38.362514894198085 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.09920991786616, + 38.362514894198085 + ], + [ + -94.09920991786616, + 39.0859464537067 + ], + [ + -93.25369916132155, + 39.0859464537067 + ], + [ + -94.09920991786616, + 38.362514894198085 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.09920991786616, + 38.362514894198085 + ], + [ + -93.25369916132155, + 39.0859464537067 + ], + [ + -93.25369916132155, + 38.362514894198085 + ], + [ + -94.09920991786616, + 38.362514894198085 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.09920991786616, + 39.0859464537067 + ], + [ + -94.09920991786616, + 39.80937801321531 + ], + [ + -93.25369916132155, + 39.0859464537067 + ], + [ + -94.09920991786616, + 39.0859464537067 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.09920991786616, + 39.80937801321531 + ], + [ + -93.25369916132155, + 39.80937801321531 + ], + [ + -93.25369916132155, + 39.0859464537067 + ], + [ + -94.09920991786616, + 39.80937801321531 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.09920991786616, + 39.80937801321531 + ], + [ + -94.09920991786616, + 40.53280957272392 + ], + [ + -93.25369916132155, + 40.53280957272392 + ], + [ + -94.09920991786616, + 39.80937801321531 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.09920991786616, + 39.80937801321531 + ], + [ + -93.25369916132155, + 40.53280957272392 + ], + [ + -93.25369916132155, + 39.80937801321531 + ], + [ + -94.09920991786616, + 39.80937801321531 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.09920991786616, + 40.53280957272392 + ], + [ + -94.09920991786616, + 41.25624113223253 + ], + [ + -93.25369916132155, + 40.53280957272392 + ], + [ + -94.09920991786616, + 40.53280957272392 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -94.09920991786616, + 41.25624113223253 + ], + [ + -93.25369916132155, + 41.25624113223253 + ], + [ + -93.25369916132155, + 40.53280957272392 + ], + [ + -94.09920991786616, + 41.25624113223253 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.25369916132155, + 31.12819929911196 + ], + [ + -93.25369916132155, + 31.851630858620574 + ], + [ + -92.40818840477694, + 31.12819929911196 + ], + [ + -93.25369916132155, + 31.12819929911196 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.25369916132155, + 31.851630858620574 + ], + [ + -92.40818840477694, + 31.851630858620574 + ], + [ + -92.40818840477694, + 31.12819929911196 + ], + [ + -93.25369916132155, + 31.851630858620574 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.25369916132155, + 31.851630858620574 + ], + [ + -92.40818840477694, + 32.57506241812919 + ], + [ + -92.40818840477694, + 31.851630858620574 + ], + [ + -93.25369916132155, + 31.851630858620574 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.25369916132155, + 31.851630858620574 + ], + [ + -93.25369916132155, + 32.57506241812919 + ], + [ + -92.40818840477694, + 32.57506241812919 + ], + [ + -93.25369916132155, + 31.851630858620574 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.25369916132155, + 32.57506241812919 + ], + [ + -93.25369916132155, + 33.298493977637804 + ], + [ + -92.40818840477694, + 32.57506241812919 + ], + [ + -93.25369916132155, + 32.57506241812919 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.25369916132155, + 33.298493977637804 + ], + [ + -92.40818840477694, + 33.298493977637804 + ], + [ + -92.40818840477694, + 32.57506241812919 + ], + [ + -93.25369916132155, + 33.298493977637804 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.25369916132155, + 33.298493977637804 + ], + [ + -92.40818840477694, + 34.021925537146416 + ], + [ + -92.40818840477694, + 33.298493977637804 + ], + [ + -93.25369916132155, + 33.298493977637804 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.25369916132155, + 33.298493977637804 + ], + [ + -93.25369916132155, + 34.021925537146416 + ], + [ + -92.40818840477694, + 34.021925537146416 + ], + [ + -93.25369916132155, + 33.298493977637804 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.25369916132155, + 34.021925537146416 + ], + [ + -93.25369916132155, + 34.74535709665503 + ], + [ + -92.40818840477694, + 34.021925537146416 + ], + [ + -93.25369916132155, + 34.021925537146416 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.25369916132155, + 34.74535709665503 + ], + [ + -92.40818840477694, + 34.74535709665503 + ], + [ + -92.40818840477694, + 34.021925537146416 + ], + [ + -93.25369916132155, + 34.74535709665503 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.25369916132155, + 34.74535709665503 + ], + [ + -92.40818840477694, + 35.46878865616364 + ], + [ + -92.40818840477694, + 34.74535709665503 + ], + [ + -93.25369916132155, + 34.74535709665503 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.25369916132155, + 34.74535709665503 + ], + [ + -93.25369916132155, + 35.46878865616364 + ], + [ + -92.40818840477694, + 35.46878865616364 + ], + [ + -93.25369916132155, + 34.74535709665503 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.25369916132155, + 35.46878865616364 + ], + [ + -93.25369916132155, + 36.19222021567225 + ], + [ + -92.40818840477694, + 35.46878865616364 + ], + [ + -93.25369916132155, + 35.46878865616364 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.25369916132155, + 36.19222021567225 + ], + [ + -92.40818840477694, + 36.19222021567225 + ], + [ + -92.40818840477694, + 35.46878865616364 + ], + [ + -93.25369916132155, + 36.19222021567225 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.25369916132155, + 36.19222021567225 + ], + [ + -92.40818840477694, + 36.91565177518086 + ], + [ + -92.40818840477694, + 36.19222021567225 + ], + [ + -93.25369916132155, + 36.19222021567225 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.25369916132155, + 36.19222021567225 + ], + [ + -93.25369916132155, + 36.91565177518086 + ], + [ + -92.40818840477694, + 36.91565177518086 + ], + [ + -93.25369916132155, + 36.19222021567225 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.25369916132155, + 36.91565177518086 + ], + [ + -93.25369916132155, + 37.639083334689474 + ], + [ + -92.40818840477694, + 36.91565177518086 + ], + [ + -93.25369916132155, + 36.91565177518086 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.25369916132155, + 37.639083334689474 + ], + [ + -92.40818840477694, + 37.639083334689474 + ], + [ + -92.40818840477694, + 36.91565177518086 + ], + [ + -93.25369916132155, + 37.639083334689474 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.25369916132155, + 37.639083334689474 + ], + [ + -92.40818840477694, + 38.362514894198085 + ], + [ + -92.40818840477694, + 37.639083334689474 + ], + [ + -93.25369916132155, + 37.639083334689474 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.25369916132155, + 37.639083334689474 + ], + [ + -93.25369916132155, + 38.362514894198085 + ], + [ + -92.40818840477694, + 38.362514894198085 + ], + [ + -93.25369916132155, + 37.639083334689474 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.25369916132155, + 38.362514894198085 + ], + [ + -93.25369916132155, + 39.0859464537067 + ], + [ + -92.40818840477694, + 38.362514894198085 + ], + [ + -93.25369916132155, + 38.362514894198085 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.25369916132155, + 39.0859464537067 + ], + [ + -92.40818840477694, + 39.0859464537067 + ], + [ + -92.40818840477694, + 38.362514894198085 + ], + [ + -93.25369916132155, + 39.0859464537067 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.25369916132155, + 39.0859464537067 + ], + [ + -92.40818840477694, + 39.80937801321531 + ], + [ + -92.40818840477694, + 39.0859464537067 + ], + [ + -93.25369916132155, + 39.0859464537067 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.25369916132155, + 39.0859464537067 + ], + [ + -93.25369916132155, + 39.80937801321531 + ], + [ + -92.40818840477694, + 39.80937801321531 + ], + [ + -93.25369916132155, + 39.0859464537067 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.25369916132155, + 39.80937801321531 + ], + [ + -93.25369916132155, + 40.53280957272392 + ], + [ + -92.40818840477694, + 39.80937801321531 + ], + [ + -93.25369916132155, + 39.80937801321531 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.25369916132155, + 40.53280957272392 + ], + [ + -92.40818840477694, + 40.53280957272392 + ], + [ + -92.40818840477694, + 39.80937801321531 + ], + [ + -93.25369916132155, + 40.53280957272392 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.25369916132155, + 40.53280957272392 + ], + [ + -92.40818840477694, + 41.25624113223253 + ], + [ + -92.40818840477694, + 40.53280957272392 + ], + [ + -93.25369916132155, + 40.53280957272392 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -93.25369916132155, + 40.53280957272392 + ], + [ + -93.25369916132155, + 41.25624113223253 + ], + [ + -92.40818840477694, + 41.25624113223253 + ], + [ + -93.25369916132155, + 40.53280957272392 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.40818840477694, + 31.12819929911196 + ], + [ + -92.40818840477694, + 31.851630858620574 + ], + [ + -91.56267764823232, + 31.851630858620574 + ], + [ + -92.40818840477694, + 31.12819929911196 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.40818840477694, + 31.12819929911196 + ], + [ + -91.56267764823232, + 31.851630858620574 + ], + [ + -91.56267764823232, + 31.12819929911196 + ], + [ + -92.40818840477694, + 31.12819929911196 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.40818840477694, + 31.851630858620574 + ], + [ + -92.40818840477694, + 32.57506241812919 + ], + [ + -91.56267764823232, + 31.851630858620574 + ], + [ + -92.40818840477694, + 31.851630858620574 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.40818840477694, + 32.57506241812919 + ], + [ + -91.56267764823232, + 32.57506241812919 + ], + [ + -91.56267764823232, + 31.851630858620574 + ], + [ + -92.40818840477694, + 32.57506241812919 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.40818840477694, + 32.57506241812919 + ], + [ + -92.40818840477694, + 33.298493977637804 + ], + [ + -91.56267764823232, + 33.298493977637804 + ], + [ + -92.40818840477694, + 32.57506241812919 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.40818840477694, + 32.57506241812919 + ], + [ + -91.56267764823232, + 33.298493977637804 + ], + [ + -91.56267764823232, + 32.57506241812919 + ], + [ + -92.40818840477694, + 32.57506241812919 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.40818840477694, + 33.298493977637804 + ], + [ + -92.40818840477694, + 34.021925537146416 + ], + [ + -91.56267764823232, + 33.298493977637804 + ], + [ + -92.40818840477694, + 33.298493977637804 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.40818840477694, + 34.021925537146416 + ], + [ + -91.56267764823232, + 34.021925537146416 + ], + [ + -91.56267764823232, + 33.298493977637804 + ], + [ + -92.40818840477694, + 34.021925537146416 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.40818840477694, + 34.021925537146416 + ], + [ + -92.40818840477694, + 34.74535709665503 + ], + [ + -91.56267764823232, + 34.74535709665503 + ], + [ + -92.40818840477694, + 34.021925537146416 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.40818840477694, + 34.021925537146416 + ], + [ + -91.56267764823232, + 34.74535709665503 + ], + [ + -91.56267764823232, + 34.021925537146416 + ], + [ + -92.40818840477694, + 34.021925537146416 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.40818840477694, + 34.74535709665503 + ], + [ + -92.40818840477694, + 35.46878865616364 + ], + [ + -91.56267764823232, + 34.74535709665503 + ], + [ + -92.40818840477694, + 34.74535709665503 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.40818840477694, + 35.46878865616364 + ], + [ + -91.56267764823232, + 35.46878865616364 + ], + [ + -91.56267764823232, + 34.74535709665503 + ], + [ + -92.40818840477694, + 35.46878865616364 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.40818840477694, + 35.46878865616364 + ], + [ + -92.40818840477694, + 36.19222021567225 + ], + [ + -91.56267764823232, + 36.19222021567225 + ], + [ + -92.40818840477694, + 35.46878865616364 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.40818840477694, + 35.46878865616364 + ], + [ + -91.56267764823232, + 36.19222021567225 + ], + [ + -91.56267764823232, + 35.46878865616364 + ], + [ + -92.40818840477694, + 35.46878865616364 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.40818840477694, + 36.19222021567225 + ], + [ + -92.40818840477694, + 36.91565177518086 + ], + [ + -91.56267764823232, + 36.19222021567225 + ], + [ + -92.40818840477694, + 36.19222021567225 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.40818840477694, + 36.91565177518086 + ], + [ + -91.56267764823232, + 36.91565177518086 + ], + [ + -91.56267764823232, + 36.19222021567225 + ], + [ + -92.40818840477694, + 36.91565177518086 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.40818840477694, + 36.91565177518086 + ], + [ + -92.40818840477694, + 37.639083334689474 + ], + [ + -91.56267764823232, + 37.639083334689474 + ], + [ + -92.40818840477694, + 36.91565177518086 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.40818840477694, + 36.91565177518086 + ], + [ + -91.56267764823232, + 37.639083334689474 + ], + [ + -91.56267764823232, + 36.91565177518086 + ], + [ + -92.40818840477694, + 36.91565177518086 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.40818840477694, + 37.639083334689474 + ], + [ + -92.40818840477694, + 38.362514894198085 + ], + [ + -91.56267764823232, + 37.639083334689474 + ], + [ + -92.40818840477694, + 37.639083334689474 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.40818840477694, + 38.362514894198085 + ], + [ + -91.56267764823232, + 38.362514894198085 + ], + [ + -91.56267764823232, + 37.639083334689474 + ], + [ + -92.40818840477694, + 38.362514894198085 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.40818840477694, + 38.362514894198085 + ], + [ + -92.40818840477694, + 39.0859464537067 + ], + [ + -91.56267764823232, + 39.0859464537067 + ], + [ + -92.40818840477694, + 38.362514894198085 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.40818840477694, + 38.362514894198085 + ], + [ + -91.56267764823232, + 39.0859464537067 + ], + [ + -91.56267764823232, + 38.362514894198085 + ], + [ + -92.40818840477694, + 38.362514894198085 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.40818840477694, + 39.0859464537067 + ], + [ + -92.40818840477694, + 39.80937801321531 + ], + [ + -91.56267764823232, + 39.0859464537067 + ], + [ + -92.40818840477694, + 39.0859464537067 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.40818840477694, + 39.80937801321531 + ], + [ + -91.56267764823232, + 39.80937801321531 + ], + [ + -91.56267764823232, + 39.0859464537067 + ], + [ + -92.40818840477694, + 39.80937801321531 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.40818840477694, + 39.80937801321531 + ], + [ + -92.40818840477694, + 40.53280957272392 + ], + [ + -91.56267764823232, + 40.53280957272392 + ], + [ + -92.40818840477694, + 39.80937801321531 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.40818840477694, + 39.80937801321531 + ], + [ + -91.56267764823232, + 40.53280957272392 + ], + [ + -91.56267764823232, + 39.80937801321531 + ], + [ + -92.40818840477694, + 39.80937801321531 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.40818840477694, + 40.53280957272392 + ], + [ + -92.40818840477694, + 41.25624113223253 + ], + [ + -91.56267764823232, + 40.53280957272392 + ], + [ + -92.40818840477694, + 40.53280957272392 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -92.40818840477694, + 41.25624113223253 + ], + [ + -91.56267764823232, + 41.25624113223253 + ], + [ + -91.56267764823232, + 40.53280957272392 + ], + [ + -92.40818840477694, + 41.25624113223253 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.56267764823232, + 31.12819929911196 + ], + [ + -91.56267764823232, + 31.851630858620574 + ], + [ + -90.71716689168771, + 31.12819929911196 + ], + [ + -91.56267764823232, + 31.12819929911196 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.56267764823232, + 31.851630858620574 + ], + [ + -90.71716689168771, + 31.851630858620574 + ], + [ + -90.71716689168771, + 31.12819929911196 + ], + [ + -91.56267764823232, + 31.851630858620574 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.56267764823232, + 31.851630858620574 + ], + [ + -90.71716689168771, + 32.57506241812919 + ], + [ + -90.71716689168771, + 31.851630858620574 + ], + [ + -91.56267764823232, + 31.851630858620574 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.56267764823232, + 31.851630858620574 + ], + [ + -91.56267764823232, + 32.57506241812919 + ], + [ + -90.71716689168771, + 32.57506241812919 + ], + [ + -91.56267764823232, + 31.851630858620574 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.56267764823232, + 32.57506241812919 + ], + [ + -91.56267764823232, + 33.298493977637804 + ], + [ + -90.71716689168771, + 32.57506241812919 + ], + [ + -91.56267764823232, + 32.57506241812919 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.56267764823232, + 33.298493977637804 + ], + [ + -90.71716689168771, + 33.298493977637804 + ], + [ + -90.71716689168771, + 32.57506241812919 + ], + [ + -91.56267764823232, + 33.298493977637804 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.56267764823232, + 33.298493977637804 + ], + [ + -90.71716689168771, + 34.021925537146416 + ], + [ + -90.71716689168771, + 33.298493977637804 + ], + [ + -91.56267764823232, + 33.298493977637804 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.56267764823232, + 33.298493977637804 + ], + [ + -91.56267764823232, + 34.021925537146416 + ], + [ + -90.71716689168771, + 34.021925537146416 + ], + [ + -91.56267764823232, + 33.298493977637804 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.56267764823232, + 34.021925537146416 + ], + [ + -91.56267764823232, + 34.74535709665503 + ], + [ + -90.71716689168771, + 34.021925537146416 + ], + [ + -91.56267764823232, + 34.021925537146416 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.56267764823232, + 34.74535709665503 + ], + [ + -90.71716689168771, + 34.74535709665503 + ], + [ + -90.71716689168771, + 34.021925537146416 + ], + [ + -91.56267764823232, + 34.74535709665503 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.56267764823232, + 34.74535709665503 + ], + [ + -90.71716689168771, + 35.46878865616364 + ], + [ + -90.71716689168771, + 34.74535709665503 + ], + [ + -91.56267764823232, + 34.74535709665503 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.56267764823232, + 34.74535709665503 + ], + [ + -91.56267764823232, + 35.46878865616364 + ], + [ + -90.71716689168771, + 35.46878865616364 + ], + [ + -91.56267764823232, + 34.74535709665503 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.56267764823232, + 35.46878865616364 + ], + [ + -91.56267764823232, + 36.19222021567225 + ], + [ + -90.71716689168771, + 35.46878865616364 + ], + [ + -91.56267764823232, + 35.46878865616364 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.56267764823232, + 36.19222021567225 + ], + [ + -90.71716689168771, + 36.19222021567225 + ], + [ + -90.71716689168771, + 35.46878865616364 + ], + [ + -91.56267764823232, + 36.19222021567225 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.56267764823232, + 36.19222021567225 + ], + [ + -90.71716689168771, + 36.91565177518086 + ], + [ + -90.71716689168771, + 36.19222021567225 + ], + [ + -91.56267764823232, + 36.19222021567225 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.56267764823232, + 36.19222021567225 + ], + [ + -91.56267764823232, + 36.91565177518086 + ], + [ + -90.71716689168771, + 36.91565177518086 + ], + [ + -91.56267764823232, + 36.19222021567225 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.56267764823232, + 36.91565177518086 + ], + [ + -91.56267764823232, + 37.639083334689474 + ], + [ + -90.71716689168771, + 36.91565177518086 + ], + [ + -91.56267764823232, + 36.91565177518086 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.56267764823232, + 37.639083334689474 + ], + [ + -90.71716689168771, + 37.639083334689474 + ], + [ + -90.71716689168771, + 36.91565177518086 + ], + [ + -91.56267764823232, + 37.639083334689474 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.56267764823232, + 37.639083334689474 + ], + [ + -90.71716689168771, + 38.362514894198085 + ], + [ + -90.71716689168771, + 37.639083334689474 + ], + [ + -91.56267764823232, + 37.639083334689474 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.56267764823232, + 37.639083334689474 + ], + [ + -91.56267764823232, + 38.362514894198085 + ], + [ + -90.71716689168771, + 38.362514894198085 + ], + [ + -91.56267764823232, + 37.639083334689474 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.56267764823232, + 38.362514894198085 + ], + [ + -91.56267764823232, + 39.0859464537067 + ], + [ + -90.71716689168771, + 38.362514894198085 + ], + [ + -91.56267764823232, + 38.362514894198085 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.56267764823232, + 39.0859464537067 + ], + [ + -90.71716689168771, + 39.0859464537067 + ], + [ + -90.71716689168771, + 38.362514894198085 + ], + [ + -91.56267764823232, + 39.0859464537067 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.56267764823232, + 39.0859464537067 + ], + [ + -90.71716689168771, + 39.80937801321531 + ], + [ + -90.71716689168771, + 39.0859464537067 + ], + [ + -91.56267764823232, + 39.0859464537067 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.56267764823232, + 39.0859464537067 + ], + [ + -91.56267764823232, + 39.80937801321531 + ], + [ + -90.71716689168771, + 39.80937801321531 + ], + [ + -91.56267764823232, + 39.0859464537067 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.56267764823232, + 39.80937801321531 + ], + [ + -91.56267764823232, + 40.53280957272392 + ], + [ + -90.71716689168771, + 39.80937801321531 + ], + [ + -91.56267764823232, + 39.80937801321531 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.56267764823232, + 40.53280957272392 + ], + [ + -90.71716689168771, + 40.53280957272392 + ], + [ + -90.71716689168771, + 39.80937801321531 + ], + [ + -91.56267764823232, + 40.53280957272392 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.56267764823232, + 40.53280957272392 + ], + [ + -90.71716689168771, + 41.25624113223253 + ], + [ + -90.71716689168771, + 40.53280957272392 + ], + [ + -91.56267764823232, + 40.53280957272392 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -91.56267764823232, + 40.53280957272392 + ], + [ + -91.56267764823232, + 41.25624113223253 + ], + [ + -90.71716689168771, + 41.25624113223253 + ], + [ + -91.56267764823232, + 40.53280957272392 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.71716689168771, + 31.12819929911196 + ], + [ + -90.71716689168771, + 31.851630858620574 + ], + [ + -89.8716561351431, + 31.851630858620574 + ], + [ + -90.71716689168771, + 31.12819929911196 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.71716689168771, + 31.12819929911196 + ], + [ + -89.8716561351431, + 31.851630858620574 + ], + [ + -89.8716561351431, + 31.12819929911196 + ], + [ + -90.71716689168771, + 31.12819929911196 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.71716689168771, + 31.851630858620574 + ], + [ + -90.71716689168771, + 32.57506241812919 + ], + [ + -89.8716561351431, + 31.851630858620574 + ], + [ + -90.71716689168771, + 31.851630858620574 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.71716689168771, + 32.57506241812919 + ], + [ + -89.8716561351431, + 32.57506241812919 + ], + [ + -89.8716561351431, + 31.851630858620574 + ], + [ + -90.71716689168771, + 32.57506241812919 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.71716689168771, + 32.57506241812919 + ], + [ + -90.71716689168771, + 33.298493977637804 + ], + [ + -89.8716561351431, + 33.298493977637804 + ], + [ + -90.71716689168771, + 32.57506241812919 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.71716689168771, + 32.57506241812919 + ], + [ + -89.8716561351431, + 33.298493977637804 + ], + [ + -89.8716561351431, + 32.57506241812919 + ], + [ + -90.71716689168771, + 32.57506241812919 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.71716689168771, + 33.298493977637804 + ], + [ + -90.71716689168771, + 34.021925537146416 + ], + [ + -89.8716561351431, + 33.298493977637804 + ], + [ + -90.71716689168771, + 33.298493977637804 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.71716689168771, + 34.021925537146416 + ], + [ + -89.8716561351431, + 34.021925537146416 + ], + [ + -89.8716561351431, + 33.298493977637804 + ], + [ + -90.71716689168771, + 34.021925537146416 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.71716689168771, + 34.021925537146416 + ], + [ + -90.71716689168771, + 34.74535709665503 + ], + [ + -89.8716561351431, + 34.74535709665503 + ], + [ + -90.71716689168771, + 34.021925537146416 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.71716689168771, + 34.021925537146416 + ], + [ + -89.8716561351431, + 34.74535709665503 + ], + [ + -89.8716561351431, + 34.021925537146416 + ], + [ + -90.71716689168771, + 34.021925537146416 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.71716689168771, + 34.74535709665503 + ], + [ + -90.71716689168771, + 35.46878865616364 + ], + [ + -89.8716561351431, + 34.74535709665503 + ], + [ + -90.71716689168771, + 34.74535709665503 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.71716689168771, + 35.46878865616364 + ], + [ + -89.8716561351431, + 35.46878865616364 + ], + [ + -89.8716561351431, + 34.74535709665503 + ], + [ + -90.71716689168771, + 35.46878865616364 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.71716689168771, + 35.46878865616364 + ], + [ + -90.71716689168771, + 36.19222021567225 + ], + [ + -89.8716561351431, + 36.19222021567225 + ], + [ + -90.71716689168771, + 35.46878865616364 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.71716689168771, + 35.46878865616364 + ], + [ + -89.8716561351431, + 36.19222021567225 + ], + [ + -89.8716561351431, + 35.46878865616364 + ], + [ + -90.71716689168771, + 35.46878865616364 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.71716689168771, + 36.19222021567225 + ], + [ + -90.71716689168771, + 36.91565177518086 + ], + [ + -89.8716561351431, + 36.19222021567225 + ], + [ + -90.71716689168771, + 36.19222021567225 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.71716689168771, + 36.91565177518086 + ], + [ + -89.8716561351431, + 36.91565177518086 + ], + [ + -89.8716561351431, + 36.19222021567225 + ], + [ + -90.71716689168771, + 36.91565177518086 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.71716689168771, + 36.91565177518086 + ], + [ + -90.71716689168771, + 37.639083334689474 + ], + [ + -89.8716561351431, + 37.639083334689474 + ], + [ + -90.71716689168771, + 36.91565177518086 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.71716689168771, + 36.91565177518086 + ], + [ + -89.8716561351431, + 37.639083334689474 + ], + [ + -89.8716561351431, + 36.91565177518086 + ], + [ + -90.71716689168771, + 36.91565177518086 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.71716689168771, + 37.639083334689474 + ], + [ + -90.71716689168771, + 38.362514894198085 + ], + [ + -89.8716561351431, + 37.639083334689474 + ], + [ + -90.71716689168771, + 37.639083334689474 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.71716689168771, + 38.362514894198085 + ], + [ + -89.8716561351431, + 38.362514894198085 + ], + [ + -89.8716561351431, + 37.639083334689474 + ], + [ + -90.71716689168771, + 38.362514894198085 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.71716689168771, + 38.362514894198085 + ], + [ + -90.71716689168771, + 39.0859464537067 + ], + [ + -89.8716561351431, + 39.0859464537067 + ], + [ + -90.71716689168771, + 38.362514894198085 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.71716689168771, + 38.362514894198085 + ], + [ + -89.8716561351431, + 39.0859464537067 + ], + [ + -89.8716561351431, + 38.362514894198085 + ], + [ + -90.71716689168771, + 38.362514894198085 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.71716689168771, + 39.0859464537067 + ], + [ + -90.71716689168771, + 39.80937801321531 + ], + [ + -89.8716561351431, + 39.0859464537067 + ], + [ + -90.71716689168771, + 39.0859464537067 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.71716689168771, + 39.80937801321531 + ], + [ + -89.8716561351431, + 39.80937801321531 + ], + [ + -89.8716561351431, + 39.0859464537067 + ], + [ + -90.71716689168771, + 39.80937801321531 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.71716689168771, + 39.80937801321531 + ], + [ + -90.71716689168771, + 40.53280957272392 + ], + [ + -89.8716561351431, + 40.53280957272392 + ], + [ + -90.71716689168771, + 39.80937801321531 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.71716689168771, + 39.80937801321531 + ], + [ + -89.8716561351431, + 40.53280957272392 + ], + [ + -89.8716561351431, + 39.80937801321531 + ], + [ + -90.71716689168771, + 39.80937801321531 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.71716689168771, + 40.53280957272392 + ], + [ + -90.71716689168771, + 41.25624113223253 + ], + [ + -89.8716561351431, + 40.53280957272392 + ], + [ + -90.71716689168771, + 40.53280957272392 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.71716689168771, + 41.25624113223253 + ], + [ + -89.8716561351431, + 41.25624113223253 + ], + [ + -89.8716561351431, + 40.53280957272392 + ], + [ + -90.71716689168771, + 41.25624113223253 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.8716561351431, + 31.12819929911196 + ], + [ + -89.8716561351431, + 31.851630858620574 + ], + [ + -89.02614537859849, + 31.12819929911196 + ], + [ + -89.8716561351431, + 31.12819929911196 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.8716561351431, + 31.851630858620574 + ], + [ + -89.02614537859849, + 31.851630858620574 + ], + [ + -89.02614537859849, + 31.12819929911196 + ], + [ + -89.8716561351431, + 31.851630858620574 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.8716561351431, + 31.851630858620574 + ], + [ + -89.02614537859849, + 32.57506241812919 + ], + [ + -89.02614537859849, + 31.851630858620574 + ], + [ + -89.8716561351431, + 31.851630858620574 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.8716561351431, + 31.851630858620574 + ], + [ + -89.8716561351431, + 32.57506241812919 + ], + [ + -89.02614537859849, + 32.57506241812919 + ], + [ + -89.8716561351431, + 31.851630858620574 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.8716561351431, + 32.57506241812919 + ], + [ + -89.8716561351431, + 33.298493977637804 + ], + [ + -89.02614537859849, + 32.57506241812919 + ], + [ + -89.8716561351431, + 32.57506241812919 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.8716561351431, + 33.298493977637804 + ], + [ + -89.02614537859849, + 33.298493977637804 + ], + [ + -89.02614537859849, + 32.57506241812919 + ], + [ + -89.8716561351431, + 33.298493977637804 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.8716561351431, + 33.298493977637804 + ], + [ + -89.02614537859849, + 34.021925537146416 + ], + [ + -89.02614537859849, + 33.298493977637804 + ], + [ + -89.8716561351431, + 33.298493977637804 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.8716561351431, + 33.298493977637804 + ], + [ + -89.8716561351431, + 34.021925537146416 + ], + [ + -89.02614537859849, + 34.021925537146416 + ], + [ + -89.8716561351431, + 33.298493977637804 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.8716561351431, + 34.021925537146416 + ], + [ + -89.8716561351431, + 34.74535709665503 + ], + [ + -89.02614537859849, + 34.021925537146416 + ], + [ + -89.8716561351431, + 34.021925537146416 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.8716561351431, + 34.74535709665503 + ], + [ + -89.02614537859849, + 34.74535709665503 + ], + [ + -89.02614537859849, + 34.021925537146416 + ], + [ + -89.8716561351431, + 34.74535709665503 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.8716561351431, + 34.74535709665503 + ], + [ + -89.02614537859849, + 35.46878865616364 + ], + [ + -89.02614537859849, + 34.74535709665503 + ], + [ + -89.8716561351431, + 34.74535709665503 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.8716561351431, + 34.74535709665503 + ], + [ + -89.8716561351431, + 35.46878865616364 + ], + [ + -89.02614537859849, + 35.46878865616364 + ], + [ + -89.8716561351431, + 34.74535709665503 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.8716561351431, + 35.46878865616364 + ], + [ + -89.8716561351431, + 36.19222021567225 + ], + [ + -89.02614537859849, + 35.46878865616364 + ], + [ + -89.8716561351431, + 35.46878865616364 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.8716561351431, + 36.19222021567225 + ], + [ + -89.02614537859849, + 36.19222021567225 + ], + [ + -89.02614537859849, + 35.46878865616364 + ], + [ + -89.8716561351431, + 36.19222021567225 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.8716561351431, + 36.19222021567225 + ], + [ + -89.02614537859849, + 36.91565177518086 + ], + [ + -89.02614537859849, + 36.19222021567225 + ], + [ + -89.8716561351431, + 36.19222021567225 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.8716561351431, + 36.19222021567225 + ], + [ + -89.8716561351431, + 36.91565177518086 + ], + [ + -89.02614537859849, + 36.91565177518086 + ], + [ + -89.8716561351431, + 36.19222021567225 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.8716561351431, + 36.91565177518086 + ], + [ + -89.8716561351431, + 37.639083334689474 + ], + [ + -89.02614537859849, + 36.91565177518086 + ], + [ + -89.8716561351431, + 36.91565177518086 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.8716561351431, + 37.639083334689474 + ], + [ + -89.02614537859849, + 37.639083334689474 + ], + [ + -89.02614537859849, + 36.91565177518086 + ], + [ + -89.8716561351431, + 37.639083334689474 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.8716561351431, + 37.639083334689474 + ], + [ + -89.02614537859849, + 38.362514894198085 + ], + [ + -89.02614537859849, + 37.639083334689474 + ], + [ + -89.8716561351431, + 37.639083334689474 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.8716561351431, + 37.639083334689474 + ], + [ + -89.8716561351431, + 38.362514894198085 + ], + [ + -89.02614537859849, + 38.362514894198085 + ], + [ + -89.8716561351431, + 37.639083334689474 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.8716561351431, + 38.362514894198085 + ], + [ + -89.8716561351431, + 39.0859464537067 + ], + [ + -89.02614537859849, + 38.362514894198085 + ], + [ + -89.8716561351431, + 38.362514894198085 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.8716561351431, + 39.0859464537067 + ], + [ + -89.02614537859849, + 39.0859464537067 + ], + [ + -89.02614537859849, + 38.362514894198085 + ], + [ + -89.8716561351431, + 39.0859464537067 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.8716561351431, + 39.0859464537067 + ], + [ + -89.02614537859849, + 39.80937801321531 + ], + [ + -89.02614537859849, + 39.0859464537067 + ], + [ + -89.8716561351431, + 39.0859464537067 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.8716561351431, + 39.0859464537067 + ], + [ + -89.8716561351431, + 39.80937801321531 + ], + [ + -89.02614537859849, + 39.80937801321531 + ], + [ + -89.8716561351431, + 39.0859464537067 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.8716561351431, + 39.80937801321531 + ], + [ + -89.8716561351431, + 40.53280957272392 + ], + [ + -89.02614537859849, + 39.80937801321531 + ], + [ + -89.8716561351431, + 39.80937801321531 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.8716561351431, + 40.53280957272392 + ], + [ + -89.02614537859849, + 40.53280957272392 + ], + [ + -89.02614537859849, + 39.80937801321531 + ], + [ + -89.8716561351431, + 40.53280957272392 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.8716561351431, + 40.53280957272392 + ], + [ + -89.02614537859849, + 41.25624113223253 + ], + [ + -89.02614537859849, + 40.53280957272392 + ], + [ + -89.8716561351431, + 40.53280957272392 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.8716561351431, + 40.53280957272392 + ], + [ + -89.8716561351431, + 41.25624113223253 + ], + [ + -89.02614537859849, + 41.25624113223253 + ], + [ + -89.8716561351431, + 40.53280957272392 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.02614537859849, + 31.12819929911196 + ], + [ + -89.02614537859849, + 31.851630858620574 + ], + [ + -88.18063462205387, + 31.851630858620574 + ], + [ + -89.02614537859849, + 31.12819929911196 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.02614537859849, + 31.12819929911196 + ], + [ + -88.18063462205387, + 31.851630858620574 + ], + [ + -88.18063462205387, + 31.12819929911196 + ], + [ + -89.02614537859849, + 31.12819929911196 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.02614537859849, + 31.851630858620574 + ], + [ + -89.02614537859849, + 32.57506241812919 + ], + [ + -88.18063462205387, + 31.851630858620574 + ], + [ + -89.02614537859849, + 31.851630858620574 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.02614537859849, + 32.57506241812919 + ], + [ + -88.18063462205387, + 32.57506241812919 + ], + [ + -88.18063462205387, + 31.851630858620574 + ], + [ + -89.02614537859849, + 32.57506241812919 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.02614537859849, + 32.57506241812919 + ], + [ + -89.02614537859849, + 33.298493977637804 + ], + [ + -88.18063462205387, + 33.298493977637804 + ], + [ + -89.02614537859849, + 32.57506241812919 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.02614537859849, + 32.57506241812919 + ], + [ + -88.18063462205387, + 33.298493977637804 + ], + [ + -88.18063462205387, + 32.57506241812919 + ], + [ + -89.02614537859849, + 32.57506241812919 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.02614537859849, + 33.298493977637804 + ], + [ + -89.02614537859849, + 34.021925537146416 + ], + [ + -88.18063462205387, + 33.298493977637804 + ], + [ + -89.02614537859849, + 33.298493977637804 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.02614537859849, + 34.021925537146416 + ], + [ + -88.18063462205387, + 34.021925537146416 + ], + [ + -88.18063462205387, + 33.298493977637804 + ], + [ + -89.02614537859849, + 34.021925537146416 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.02614537859849, + 34.021925537146416 + ], + [ + -89.02614537859849, + 34.74535709665503 + ], + [ + -88.18063462205387, + 34.74535709665503 + ], + [ + -89.02614537859849, + 34.021925537146416 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.02614537859849, + 34.021925537146416 + ], + [ + -88.18063462205387, + 34.74535709665503 + ], + [ + -88.18063462205387, + 34.021925537146416 + ], + [ + -89.02614537859849, + 34.021925537146416 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.02614537859849, + 34.74535709665503 + ], + [ + -89.02614537859849, + 35.46878865616364 + ], + [ + -88.18063462205387, + 34.74535709665503 + ], + [ + -89.02614537859849, + 34.74535709665503 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.02614537859849, + 35.46878865616364 + ], + [ + -88.18063462205387, + 35.46878865616364 + ], + [ + -88.18063462205387, + 34.74535709665503 + ], + [ + -89.02614537859849, + 35.46878865616364 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.02614537859849, + 35.46878865616364 + ], + [ + -89.02614537859849, + 36.19222021567225 + ], + [ + -88.18063462205387, + 36.19222021567225 + ], + [ + -89.02614537859849, + 35.46878865616364 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.02614537859849, + 35.46878865616364 + ], + [ + -88.18063462205387, + 36.19222021567225 + ], + [ + -88.18063462205387, + 35.46878865616364 + ], + [ + -89.02614537859849, + 35.46878865616364 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.02614537859849, + 36.19222021567225 + ], + [ + -89.02614537859849, + 36.91565177518086 + ], + [ + -88.18063462205387, + 36.19222021567225 + ], + [ + -89.02614537859849, + 36.19222021567225 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.02614537859849, + 36.91565177518086 + ], + [ + -88.18063462205387, + 36.91565177518086 + ], + [ + -88.18063462205387, + 36.19222021567225 + ], + [ + -89.02614537859849, + 36.91565177518086 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.02614537859849, + 36.91565177518086 + ], + [ + -89.02614537859849, + 37.639083334689474 + ], + [ + -88.18063462205387, + 37.639083334689474 + ], + [ + -89.02614537859849, + 36.91565177518086 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.02614537859849, + 36.91565177518086 + ], + [ + -88.18063462205387, + 37.639083334689474 + ], + [ + -88.18063462205387, + 36.91565177518086 + ], + [ + -89.02614537859849, + 36.91565177518086 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.02614537859849, + 37.639083334689474 + ], + [ + -89.02614537859849, + 38.362514894198085 + ], + [ + -88.18063462205387, + 37.639083334689474 + ], + [ + -89.02614537859849, + 37.639083334689474 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.02614537859849, + 38.362514894198085 + ], + [ + -88.18063462205387, + 38.362514894198085 + ], + [ + -88.18063462205387, + 37.639083334689474 + ], + [ + -89.02614537859849, + 38.362514894198085 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.02614537859849, + 38.362514894198085 + ], + [ + -89.02614537859849, + 39.0859464537067 + ], + [ + -88.18063462205387, + 39.0859464537067 + ], + [ + -89.02614537859849, + 38.362514894198085 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.02614537859849, + 38.362514894198085 + ], + [ + -88.18063462205387, + 39.0859464537067 + ], + [ + -88.18063462205387, + 38.362514894198085 + ], + [ + -89.02614537859849, + 38.362514894198085 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.02614537859849, + 39.0859464537067 + ], + [ + -89.02614537859849, + 39.80937801321531 + ], + [ + -88.18063462205387, + 39.0859464537067 + ], + [ + -89.02614537859849, + 39.0859464537067 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.02614537859849, + 39.80937801321531 + ], + [ + -88.18063462205387, + 39.80937801321531 + ], + [ + -88.18063462205387, + 39.0859464537067 + ], + [ + -89.02614537859849, + 39.80937801321531 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.02614537859849, + 39.80937801321531 + ], + [ + -89.02614537859849, + 40.53280957272392 + ], + [ + -88.18063462205387, + 40.53280957272392 + ], + [ + -89.02614537859849, + 39.80937801321531 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.02614537859849, + 39.80937801321531 + ], + [ + -88.18063462205387, + 40.53280957272392 + ], + [ + -88.18063462205387, + 39.80937801321531 + ], + [ + -89.02614537859849, + 39.80937801321531 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.02614537859849, + 40.53280957272392 + ], + [ + -89.02614537859849, + 41.25624113223253 + ], + [ + -88.18063462205387, + 40.53280957272392 + ], + [ + -89.02614537859849, + 40.53280957272392 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -89.02614537859849, + 41.25624113223253 + ], + [ + -88.18063462205387, + 41.25624113223253 + ], + [ + -88.18063462205387, + 40.53280957272392 + ], + [ + -89.02614537859849, + 41.25624113223253 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.18063462205387, + 31.12819929911196 + ], + [ + -88.18063462205387, + 31.851630858620574 + ], + [ + -87.33512386550926, + 31.12819929911196 + ], + [ + -88.18063462205387, + 31.12819929911196 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.18063462205387, + 31.851630858620574 + ], + [ + -87.33512386550926, + 31.851630858620574 + ], + [ + -87.33512386550926, + 31.12819929911196 + ], + [ + -88.18063462205387, + 31.851630858620574 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.18063462205387, + 31.851630858620574 + ], + [ + -87.33512386550926, + 32.57506241812919 + ], + [ + -87.33512386550926, + 31.851630858620574 + ], + [ + -88.18063462205387, + 31.851630858620574 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.18063462205387, + 31.851630858620574 + ], + [ + -88.18063462205387, + 32.57506241812919 + ], + [ + -87.33512386550926, + 32.57506241812919 + ], + [ + -88.18063462205387, + 31.851630858620574 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.18063462205387, + 32.57506241812919 + ], + [ + -88.18063462205387, + 33.298493977637804 + ], + [ + -87.33512386550926, + 32.57506241812919 + ], + [ + -88.18063462205387, + 32.57506241812919 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.18063462205387, + 33.298493977637804 + ], + [ + -87.33512386550926, + 33.298493977637804 + ], + [ + -87.33512386550926, + 32.57506241812919 + ], + [ + -88.18063462205387, + 33.298493977637804 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.18063462205387, + 33.298493977637804 + ], + [ + -87.33512386550926, + 34.021925537146416 + ], + [ + -87.33512386550926, + 33.298493977637804 + ], + [ + -88.18063462205387, + 33.298493977637804 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.18063462205387, + 33.298493977637804 + ], + [ + -88.18063462205387, + 34.021925537146416 + ], + [ + -87.33512386550926, + 34.021925537146416 + ], + [ + -88.18063462205387, + 33.298493977637804 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.18063462205387, + 34.021925537146416 + ], + [ + -88.18063462205387, + 34.74535709665503 + ], + [ + -87.33512386550926, + 34.021925537146416 + ], + [ + -88.18063462205387, + 34.021925537146416 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.18063462205387, + 34.74535709665503 + ], + [ + -87.33512386550926, + 34.74535709665503 + ], + [ + -87.33512386550926, + 34.021925537146416 + ], + [ + -88.18063462205387, + 34.74535709665503 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.18063462205387, + 34.74535709665503 + ], + [ + -87.33512386550926, + 35.46878865616364 + ], + [ + -87.33512386550926, + 34.74535709665503 + ], + [ + -88.18063462205387, + 34.74535709665503 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.18063462205387, + 34.74535709665503 + ], + [ + -88.18063462205387, + 35.46878865616364 + ], + [ + -87.33512386550926, + 35.46878865616364 + ], + [ + -88.18063462205387, + 34.74535709665503 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.18063462205387, + 35.46878865616364 + ], + [ + -88.18063462205387, + 36.19222021567225 + ], + [ + -87.33512386550926, + 35.46878865616364 + ], + [ + -88.18063462205387, + 35.46878865616364 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.18063462205387, + 36.19222021567225 + ], + [ + -87.33512386550926, + 36.19222021567225 + ], + [ + -87.33512386550926, + 35.46878865616364 + ], + [ + -88.18063462205387, + 36.19222021567225 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.18063462205387, + 36.19222021567225 + ], + [ + -87.33512386550926, + 36.91565177518086 + ], + [ + -87.33512386550926, + 36.19222021567225 + ], + [ + -88.18063462205387, + 36.19222021567225 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.18063462205387, + 36.19222021567225 + ], + [ + -88.18063462205387, + 36.91565177518086 + ], + [ + -87.33512386550926, + 36.91565177518086 + ], + [ + -88.18063462205387, + 36.19222021567225 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.18063462205387, + 36.91565177518086 + ], + [ + -88.18063462205387, + 37.639083334689474 + ], + [ + -87.33512386550926, + 36.91565177518086 + ], + [ + -88.18063462205387, + 36.91565177518086 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.18063462205387, + 37.639083334689474 + ], + [ + -87.33512386550926, + 37.639083334689474 + ], + [ + -87.33512386550926, + 36.91565177518086 + ], + [ + -88.18063462205387, + 37.639083334689474 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.18063462205387, + 37.639083334689474 + ], + [ + -87.33512386550926, + 38.362514894198085 + ], + [ + -87.33512386550926, + 37.639083334689474 + ], + [ + -88.18063462205387, + 37.639083334689474 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.18063462205387, + 37.639083334689474 + ], + [ + -88.18063462205387, + 38.362514894198085 + ], + [ + -87.33512386550926, + 38.362514894198085 + ], + [ + -88.18063462205387, + 37.639083334689474 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.18063462205387, + 38.362514894198085 + ], + [ + -88.18063462205387, + 39.0859464537067 + ], + [ + -87.33512386550926, + 38.362514894198085 + ], + [ + -88.18063462205387, + 38.362514894198085 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.18063462205387, + 39.0859464537067 + ], + [ + -87.33512386550926, + 39.0859464537067 + ], + [ + -87.33512386550926, + 38.362514894198085 + ], + [ + -88.18063462205387, + 39.0859464537067 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.18063462205387, + 39.0859464537067 + ], + [ + -87.33512386550926, + 39.80937801321531 + ], + [ + -87.33512386550926, + 39.0859464537067 + ], + [ + -88.18063462205387, + 39.0859464537067 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.18063462205387, + 39.0859464537067 + ], + [ + -88.18063462205387, + 39.80937801321531 + ], + [ + -87.33512386550926, + 39.80937801321531 + ], + [ + -88.18063462205387, + 39.0859464537067 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.18063462205387, + 39.80937801321531 + ], + [ + -88.18063462205387, + 40.53280957272392 + ], + [ + -87.33512386550926, + 39.80937801321531 + ], + [ + -88.18063462205387, + 39.80937801321531 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.18063462205387, + 40.53280957272392 + ], + [ + -87.33512386550926, + 40.53280957272392 + ], + [ + -87.33512386550926, + 39.80937801321531 + ], + [ + -88.18063462205387, + 40.53280957272392 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.18063462205387, + 40.53280957272392 + ], + [ + -87.33512386550926, + 41.25624113223253 + ], + [ + -87.33512386550926, + 40.53280957272392 + ], + [ + -88.18063462205387, + 40.53280957272392 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -88.18063462205387, + 40.53280957272392 + ], + [ + -88.18063462205387, + 41.25624113223253 + ], + [ + -87.33512386550926, + 41.25624113223253 + ], + [ + -88.18063462205387, + 40.53280957272392 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.33512386550926, + 31.12819929911196 + ], + [ + -87.33512386550926, + 31.851630858620574 + ], + [ + -86.48961310896465, + 31.851630858620574 + ], + [ + -87.33512386550926, + 31.12819929911196 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.33512386550926, + 31.12819929911196 + ], + [ + -86.48961310896465, + 31.851630858620574 + ], + [ + -86.48961310896465, + 31.12819929911196 + ], + [ + -87.33512386550926, + 31.12819929911196 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.33512386550926, + 31.851630858620574 + ], + [ + -87.33512386550926, + 32.57506241812919 + ], + [ + -86.48961310896465, + 31.851630858620574 + ], + [ + -87.33512386550926, + 31.851630858620574 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.33512386550926, + 32.57506241812919 + ], + [ + -86.48961310896465, + 32.57506241812919 + ], + [ + -86.48961310896465, + 31.851630858620574 + ], + [ + -87.33512386550926, + 32.57506241812919 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.33512386550926, + 32.57506241812919 + ], + [ + -87.33512386550926, + 33.298493977637804 + ], + [ + -86.48961310896465, + 33.298493977637804 + ], + [ + -87.33512386550926, + 32.57506241812919 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.33512386550926, + 32.57506241812919 + ], + [ + -86.48961310896465, + 33.298493977637804 + ], + [ + -86.48961310896465, + 32.57506241812919 + ], + [ + -87.33512386550926, + 32.57506241812919 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.33512386550926, + 33.298493977637804 + ], + [ + -87.33512386550926, + 34.021925537146416 + ], + [ + -86.48961310896465, + 33.298493977637804 + ], + [ + -87.33512386550926, + 33.298493977637804 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.33512386550926, + 34.021925537146416 + ], + [ + -86.48961310896465, + 34.021925537146416 + ], + [ + -86.48961310896465, + 33.298493977637804 + ], + [ + -87.33512386550926, + 34.021925537146416 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.33512386550926, + 34.021925537146416 + ], + [ + -87.33512386550926, + 34.74535709665503 + ], + [ + -86.48961310896465, + 34.74535709665503 + ], + [ + -87.33512386550926, + 34.021925537146416 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.33512386550926, + 34.021925537146416 + ], + [ + -86.48961310896465, + 34.74535709665503 + ], + [ + -86.48961310896465, + 34.021925537146416 + ], + [ + -87.33512386550926, + 34.021925537146416 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.33512386550926, + 34.74535709665503 + ], + [ + -87.33512386550926, + 35.46878865616364 + ], + [ + -86.48961310896465, + 34.74535709665503 + ], + [ + -87.33512386550926, + 34.74535709665503 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.33512386550926, + 35.46878865616364 + ], + [ + -86.48961310896465, + 35.46878865616364 + ], + [ + -86.48961310896465, + 34.74535709665503 + ], + [ + -87.33512386550926, + 35.46878865616364 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.33512386550926, + 35.46878865616364 + ], + [ + -87.33512386550926, + 36.19222021567225 + ], + [ + -86.48961310896465, + 36.19222021567225 + ], + [ + -87.33512386550926, + 35.46878865616364 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.33512386550926, + 35.46878865616364 + ], + [ + -86.48961310896465, + 36.19222021567225 + ], + [ + -86.48961310896465, + 35.46878865616364 + ], + [ + -87.33512386550926, + 35.46878865616364 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.33512386550926, + 36.19222021567225 + ], + [ + -87.33512386550926, + 36.91565177518086 + ], + [ + -86.48961310896465, + 36.19222021567225 + ], + [ + -87.33512386550926, + 36.19222021567225 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.33512386550926, + 36.91565177518086 + ], + [ + -86.48961310896465, + 36.91565177518086 + ], + [ + -86.48961310896465, + 36.19222021567225 + ], + [ + -87.33512386550926, + 36.91565177518086 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.33512386550926, + 36.91565177518086 + ], + [ + -87.33512386550926, + 37.639083334689474 + ], + [ + -86.48961310896465, + 37.639083334689474 + ], + [ + -87.33512386550926, + 36.91565177518086 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.33512386550926, + 36.91565177518086 + ], + [ + -86.48961310896465, + 37.639083334689474 + ], + [ + -86.48961310896465, + 36.91565177518086 + ], + [ + -87.33512386550926, + 36.91565177518086 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.33512386550926, + 37.639083334689474 + ], + [ + -87.33512386550926, + 38.362514894198085 + ], + [ + -86.48961310896465, + 37.639083334689474 + ], + [ + -87.33512386550926, + 37.639083334689474 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.33512386550926, + 38.362514894198085 + ], + [ + -86.48961310896465, + 38.362514894198085 + ], + [ + -86.48961310896465, + 37.639083334689474 + ], + [ + -87.33512386550926, + 38.362514894198085 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.33512386550926, + 38.362514894198085 + ], + [ + -87.33512386550926, + 39.0859464537067 + ], + [ + -86.48961310896465, + 39.0859464537067 + ], + [ + -87.33512386550926, + 38.362514894198085 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.33512386550926, + 38.362514894198085 + ], + [ + -86.48961310896465, + 39.0859464537067 + ], + [ + -86.48961310896465, + 38.362514894198085 + ], + [ + -87.33512386550926, + 38.362514894198085 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.33512386550926, + 39.0859464537067 + ], + [ + -87.33512386550926, + 39.80937801321531 + ], + [ + -86.48961310896465, + 39.0859464537067 + ], + [ + -87.33512386550926, + 39.0859464537067 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.33512386550926, + 39.80937801321531 + ], + [ + -86.48961310896465, + 39.80937801321531 + ], + [ + -86.48961310896465, + 39.0859464537067 + ], + [ + -87.33512386550926, + 39.80937801321531 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.33512386550926, + 39.80937801321531 + ], + [ + -87.33512386550926, + 40.53280957272392 + ], + [ + -86.48961310896465, + 40.53280957272392 + ], + [ + -87.33512386550926, + 39.80937801321531 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.33512386550926, + 39.80937801321531 + ], + [ + -86.48961310896465, + 40.53280957272392 + ], + [ + -86.48961310896465, + 39.80937801321531 + ], + [ + -87.33512386550926, + 39.80937801321531 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.33512386550926, + 40.53280957272392 + ], + [ + -87.33512386550926, + 41.25624113223253 + ], + [ + -86.48961310896465, + 40.53280957272392 + ], + [ + -87.33512386550926, + 40.53280957272392 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -87.33512386550926, + 41.25624113223253 + ], + [ + -86.48961310896465, + 41.25624113223253 + ], + [ + -86.48961310896465, + 40.53280957272392 + ], + [ + -87.33512386550926, + 41.25624113223253 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.48961310896465, + 31.12819929911196 + ], + [ + -86.48961310896465, + 31.851630858620574 + ], + [ + -85.64410235242003, + 31.12819929911196 + ], + [ + -86.48961310896465, + 31.12819929911196 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.48961310896465, + 31.851630858620574 + ], + [ + -85.64410235242003, + 31.851630858620574 + ], + [ + -85.64410235242003, + 31.12819929911196 + ], + [ + -86.48961310896465, + 31.851630858620574 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.48961310896465, + 31.851630858620574 + ], + [ + -85.64410235242003, + 32.57506241812919 + ], + [ + -85.64410235242003, + 31.851630858620574 + ], + [ + -86.48961310896465, + 31.851630858620574 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.48961310896465, + 31.851630858620574 + ], + [ + -86.48961310896465, + 32.57506241812919 + ], + [ + -85.64410235242003, + 32.57506241812919 + ], + [ + -86.48961310896465, + 31.851630858620574 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.48961310896465, + 32.57506241812919 + ], + [ + -86.48961310896465, + 33.298493977637804 + ], + [ + -85.64410235242003, + 32.57506241812919 + ], + [ + -86.48961310896465, + 32.57506241812919 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.48961310896465, + 33.298493977637804 + ], + [ + -85.64410235242003, + 33.298493977637804 + ], + [ + -85.64410235242003, + 32.57506241812919 + ], + [ + -86.48961310896465, + 33.298493977637804 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.48961310896465, + 33.298493977637804 + ], + [ + -85.64410235242003, + 34.021925537146416 + ], + [ + -85.64410235242003, + 33.298493977637804 + ], + [ + -86.48961310896465, + 33.298493977637804 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.48961310896465, + 33.298493977637804 + ], + [ + -86.48961310896465, + 34.021925537146416 + ], + [ + -85.64410235242003, + 34.021925537146416 + ], + [ + -86.48961310896465, + 33.298493977637804 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.48961310896465, + 34.021925537146416 + ], + [ + -86.48961310896465, + 34.74535709665503 + ], + [ + -85.64410235242003, + 34.021925537146416 + ], + [ + -86.48961310896465, + 34.021925537146416 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.48961310896465, + 34.74535709665503 + ], + [ + -85.64410235242003, + 34.74535709665503 + ], + [ + -85.64410235242003, + 34.021925537146416 + ], + [ + -86.48961310896465, + 34.74535709665503 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.48961310896465, + 34.74535709665503 + ], + [ + -85.64410235242003, + 35.46878865616364 + ], + [ + -85.64410235242003, + 34.74535709665503 + ], + [ + -86.48961310896465, + 34.74535709665503 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.48961310896465, + 34.74535709665503 + ], + [ + -86.48961310896465, + 35.46878865616364 + ], + [ + -85.64410235242003, + 35.46878865616364 + ], + [ + -86.48961310896465, + 34.74535709665503 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.48961310896465, + 35.46878865616364 + ], + [ + -86.48961310896465, + 36.19222021567225 + ], + [ + -85.64410235242003, + 35.46878865616364 + ], + [ + -86.48961310896465, + 35.46878865616364 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.48961310896465, + 36.19222021567225 + ], + [ + -85.64410235242003, + 36.19222021567225 + ], + [ + -85.64410235242003, + 35.46878865616364 + ], + [ + -86.48961310896465, + 36.19222021567225 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.48961310896465, + 36.19222021567225 + ], + [ + -85.64410235242003, + 36.91565177518086 + ], + [ + -85.64410235242003, + 36.19222021567225 + ], + [ + -86.48961310896465, + 36.19222021567225 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.48961310896465, + 36.19222021567225 + ], + [ + -86.48961310896465, + 36.91565177518086 + ], + [ + -85.64410235242003, + 36.91565177518086 + ], + [ + -86.48961310896465, + 36.19222021567225 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.48961310896465, + 36.91565177518086 + ], + [ + -86.48961310896465, + 37.639083334689474 + ], + [ + -85.64410235242003, + 36.91565177518086 + ], + [ + -86.48961310896465, + 36.91565177518086 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.48961310896465, + 37.639083334689474 + ], + [ + -85.64410235242003, + 37.639083334689474 + ], + [ + -85.64410235242003, + 36.91565177518086 + ], + [ + -86.48961310896465, + 37.639083334689474 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.48961310896465, + 37.639083334689474 + ], + [ + -85.64410235242003, + 38.362514894198085 + ], + [ + -85.64410235242003, + 37.639083334689474 + ], + [ + -86.48961310896465, + 37.639083334689474 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.48961310896465, + 37.639083334689474 + ], + [ + -86.48961310896465, + 38.362514894198085 + ], + [ + -85.64410235242003, + 38.362514894198085 + ], + [ + -86.48961310896465, + 37.639083334689474 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.48961310896465, + 38.362514894198085 + ], + [ + -86.48961310896465, + 39.0859464537067 + ], + [ + -85.64410235242003, + 38.362514894198085 + ], + [ + -86.48961310896465, + 38.362514894198085 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.48961310896465, + 39.0859464537067 + ], + [ + -85.64410235242003, + 39.0859464537067 + ], + [ + -85.64410235242003, + 38.362514894198085 + ], + [ + -86.48961310896465, + 39.0859464537067 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.48961310896465, + 39.0859464537067 + ], + [ + -85.64410235242003, + 39.80937801321531 + ], + [ + -85.64410235242003, + 39.0859464537067 + ], + [ + -86.48961310896465, + 39.0859464537067 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.48961310896465, + 39.0859464537067 + ], + [ + -86.48961310896465, + 39.80937801321531 + ], + [ + -85.64410235242003, + 39.80937801321531 + ], + [ + -86.48961310896465, + 39.0859464537067 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.48961310896465, + 39.80937801321531 + ], + [ + -86.48961310896465, + 40.53280957272392 + ], + [ + -85.64410235242003, + 39.80937801321531 + ], + [ + -86.48961310896465, + 39.80937801321531 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.48961310896465, + 40.53280957272392 + ], + [ + -85.64410235242003, + 40.53280957272392 + ], + [ + -85.64410235242003, + 39.80937801321531 + ], + [ + -86.48961310896465, + 40.53280957272392 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.48961310896465, + 40.53280957272392 + ], + [ + -85.64410235242003, + 41.25624113223253 + ], + [ + -85.64410235242003, + 40.53280957272392 + ], + [ + -86.48961310896465, + 40.53280957272392 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.48961310896465, + 40.53280957272392 + ], + [ + -86.48961310896465, + 41.25624113223253 + ], + [ + -85.64410235242003, + 41.25624113223253 + ], + [ + -86.48961310896465, + 40.53280957272392 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.64410235242003, + 31.12819929911196 + ], + [ + -85.64410235242003, + 31.851630858620574 + ], + [ + -84.79859159587542, + 31.851630858620574 + ], + [ + -85.64410235242003, + 31.12819929911196 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.64410235242003, + 31.12819929911196 + ], + [ + -84.79859159587542, + 31.851630858620574 + ], + [ + -84.79859159587542, + 31.12819929911196 + ], + [ + -85.64410235242003, + 31.12819929911196 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.64410235242003, + 31.851630858620574 + ], + [ + -85.64410235242003, + 32.57506241812919 + ], + [ + -84.79859159587542, + 31.851630858620574 + ], + [ + -85.64410235242003, + 31.851630858620574 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.64410235242003, + 32.57506241812919 + ], + [ + -84.79859159587542, + 32.57506241812919 + ], + [ + -84.79859159587542, + 31.851630858620574 + ], + [ + -85.64410235242003, + 32.57506241812919 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.64410235242003, + 32.57506241812919 + ], + [ + -85.64410235242003, + 33.298493977637804 + ], + [ + -84.79859159587542, + 33.298493977637804 + ], + [ + -85.64410235242003, + 32.57506241812919 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.64410235242003, + 32.57506241812919 + ], + [ + -84.79859159587542, + 33.298493977637804 + ], + [ + -84.79859159587542, + 32.57506241812919 + ], + [ + -85.64410235242003, + 32.57506241812919 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.64410235242003, + 33.298493977637804 + ], + [ + -85.64410235242003, + 34.021925537146416 + ], + [ + -84.79859159587542, + 33.298493977637804 + ], + [ + -85.64410235242003, + 33.298493977637804 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.64410235242003, + 34.021925537146416 + ], + [ + -84.79859159587542, + 34.021925537146416 + ], + [ + -84.79859159587542, + 33.298493977637804 + ], + [ + -85.64410235242003, + 34.021925537146416 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.64410235242003, + 34.021925537146416 + ], + [ + -85.64410235242003, + 34.74535709665503 + ], + [ + -84.79859159587542, + 34.74535709665503 + ], + [ + -85.64410235242003, + 34.021925537146416 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.64410235242003, + 34.021925537146416 + ], + [ + -84.79859159587542, + 34.74535709665503 + ], + [ + -84.79859159587542, + 34.021925537146416 + ], + [ + -85.64410235242003, + 34.021925537146416 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.64410235242003, + 34.74535709665503 + ], + [ + -85.64410235242003, + 35.46878865616364 + ], + [ + -84.79859159587542, + 34.74535709665503 + ], + [ + -85.64410235242003, + 34.74535709665503 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.64410235242003, + 35.46878865616364 + ], + [ + -84.79859159587542, + 35.46878865616364 + ], + [ + -84.79859159587542, + 34.74535709665503 + ], + [ + -85.64410235242003, + 35.46878865616364 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.64410235242003, + 35.46878865616364 + ], + [ + -85.64410235242003, + 36.19222021567225 + ], + [ + -84.79859159587542, + 36.19222021567225 + ], + [ + -85.64410235242003, + 35.46878865616364 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.64410235242003, + 35.46878865616364 + ], + [ + -84.79859159587542, + 36.19222021567225 + ], + [ + -84.79859159587542, + 35.46878865616364 + ], + [ + -85.64410235242003, + 35.46878865616364 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.64410235242003, + 36.19222021567225 + ], + [ + -85.64410235242003, + 36.91565177518086 + ], + [ + -84.79859159587542, + 36.19222021567225 + ], + [ + -85.64410235242003, + 36.19222021567225 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.64410235242003, + 36.91565177518086 + ], + [ + -84.79859159587542, + 36.91565177518086 + ], + [ + -84.79859159587542, + 36.19222021567225 + ], + [ + -85.64410235242003, + 36.91565177518086 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.64410235242003, + 36.91565177518086 + ], + [ + -85.64410235242003, + 37.639083334689474 + ], + [ + -84.79859159587542, + 37.639083334689474 + ], + [ + -85.64410235242003, + 36.91565177518086 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.64410235242003, + 36.91565177518086 + ], + [ + -84.79859159587542, + 37.639083334689474 + ], + [ + -84.79859159587542, + 36.91565177518086 + ], + [ + -85.64410235242003, + 36.91565177518086 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.64410235242003, + 37.639083334689474 + ], + [ + -85.64410235242003, + 38.362514894198085 + ], + [ + -84.79859159587542, + 37.639083334689474 + ], + [ + -85.64410235242003, + 37.639083334689474 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.64410235242003, + 38.362514894198085 + ], + [ + -84.79859159587542, + 38.362514894198085 + ], + [ + -84.79859159587542, + 37.639083334689474 + ], + [ + -85.64410235242003, + 38.362514894198085 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.64410235242003, + 38.362514894198085 + ], + [ + -85.64410235242003, + 39.0859464537067 + ], + [ + -84.79859159587542, + 39.0859464537067 + ], + [ + -85.64410235242003, + 38.362514894198085 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.64410235242003, + 38.362514894198085 + ], + [ + -84.79859159587542, + 39.0859464537067 + ], + [ + -84.79859159587542, + 38.362514894198085 + ], + [ + -85.64410235242003, + 38.362514894198085 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.64410235242003, + 39.0859464537067 + ], + [ + -85.64410235242003, + 39.80937801321531 + ], + [ + -84.79859159587542, + 39.0859464537067 + ], + [ + -85.64410235242003, + 39.0859464537067 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.64410235242003, + 39.80937801321531 + ], + [ + -84.79859159587542, + 39.80937801321531 + ], + [ + -84.79859159587542, + 39.0859464537067 + ], + [ + -85.64410235242003, + 39.80937801321531 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.64410235242003, + 39.80937801321531 + ], + [ + -85.64410235242003, + 40.53280957272392 + ], + [ + -84.79859159587542, + 40.53280957272392 + ], + [ + -85.64410235242003, + 39.80937801321531 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.64410235242003, + 39.80937801321531 + ], + [ + -84.79859159587542, + 40.53280957272392 + ], + [ + -84.79859159587542, + 39.80937801321531 + ], + [ + -85.64410235242003, + 39.80937801321531 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.64410235242003, + 40.53280957272392 + ], + [ + -85.64410235242003, + 41.25624113223253 + ], + [ + -84.79859159587542, + 40.53280957272392 + ], + [ + -85.64410235242003, + 40.53280957272392 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.64410235242003, + 41.25624113223253 + ], + [ + -84.79859159587542, + 41.25624113223253 + ], + [ + -84.79859159587542, + 40.53280957272392 + ], + [ + -85.64410235242003, + 41.25624113223253 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "fill-opacity": 0, + "stroke": "#0ff" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -96.6357421875, + 31.12819929911196 + ], + [ + -84.9462890625, + 31.12819929911196 + ], + [ + -84.9462890625, + 40.58058466412764 + ], + [ + -96.6357421875, + 40.58058466412764 + ], + [ + -96.6357421875, + 31.12819929911196 + ] + ] + ] + } + } + ] +} \ No newline at end of file diff --git a/packages/turf-triangle-grid/test/out/grid2.geojson b/packages/turf-triangle-grid/test/out/grid2.geojson new file mode 100644 index 0000000000..6f6d464507 --- /dev/null +++ b/packages/turf-triangle-grid/test/out/grid2.geojson @@ -0,0 +1,26121 @@ +{ + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.650390625, + 24.926294766395593 + ], + [ + -81.650390625, + 24.998637922346454 + ], + [ + -81.57061598730647, + 24.926294766395593 + ], + [ + -81.650390625, + 24.926294766395593 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.650390625, + 24.998637922346454 + ], + [ + -81.57061598730647, + 24.998637922346454 + ], + [ + -81.57061598730647, + 24.926294766395593 + ], + [ + -81.650390625, + 24.998637922346454 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.650390625, + 24.998637922346454 + ], + [ + -81.57061598730647, + 25.070981078297315 + ], + [ + -81.57061598730647, + 24.998637922346454 + ], + [ + -81.650390625, + 24.998637922346454 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.650390625, + 24.998637922346454 + ], + [ + -81.650390625, + 25.070981078297315 + ], + [ + -81.57061598730647, + 25.070981078297315 + ], + [ + -81.650390625, + 24.998637922346454 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.650390625, + 25.070981078297315 + ], + [ + -81.650390625, + 25.143324234248176 + ], + [ + -81.57061598730647, + 25.070981078297315 + ], + [ + -81.650390625, + 25.070981078297315 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.650390625, + 25.143324234248176 + ], + [ + -81.57061598730647, + 25.143324234248176 + ], + [ + -81.57061598730647, + 25.070981078297315 + ], + [ + -81.650390625, + 25.143324234248176 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.650390625, + 25.143324234248176 + ], + [ + -81.57061598730647, + 25.215667390199037 + ], + [ + -81.57061598730647, + 25.143324234248176 + ], + [ + -81.650390625, + 25.143324234248176 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.650390625, + 25.143324234248176 + ], + [ + -81.650390625, + 25.215667390199037 + ], + [ + -81.57061598730647, + 25.215667390199037 + ], + [ + -81.650390625, + 25.143324234248176 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.650390625, + 25.215667390199037 + ], + [ + -81.650390625, + 25.2880105461499 + ], + [ + -81.57061598730647, + 25.215667390199037 + ], + [ + -81.650390625, + 25.215667390199037 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.650390625, + 25.2880105461499 + ], + [ + -81.57061598730647, + 25.2880105461499 + ], + [ + -81.57061598730647, + 25.215667390199037 + ], + [ + -81.650390625, + 25.2880105461499 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.650390625, + 25.2880105461499 + ], + [ + -81.57061598730647, + 25.36035370210076 + ], + [ + -81.57061598730647, + 25.2880105461499 + ], + [ + -81.650390625, + 25.2880105461499 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.650390625, + 25.2880105461499 + ], + [ + -81.650390625, + 25.36035370210076 + ], + [ + -81.57061598730647, + 25.36035370210076 + ], + [ + -81.650390625, + 25.2880105461499 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.650390625, + 25.36035370210076 + ], + [ + -81.650390625, + 25.43269685805162 + ], + [ + -81.57061598730647, + 25.36035370210076 + ], + [ + -81.650390625, + 25.36035370210076 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.650390625, + 25.43269685805162 + ], + [ + -81.57061598730647, + 25.43269685805162 + ], + [ + -81.57061598730647, + 25.36035370210076 + ], + [ + -81.650390625, + 25.43269685805162 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.650390625, + 25.43269685805162 + ], + [ + -81.57061598730647, + 25.505040014002482 + ], + [ + -81.57061598730647, + 25.43269685805162 + ], + [ + -81.650390625, + 25.43269685805162 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.650390625, + 25.43269685805162 + ], + [ + -81.650390625, + 25.505040014002482 + ], + [ + -81.57061598730647, + 25.505040014002482 + ], + [ + -81.650390625, + 25.43269685805162 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.650390625, + 25.505040014002482 + ], + [ + -81.650390625, + 25.577383169953343 + ], + [ + -81.57061598730647, + 25.505040014002482 + ], + [ + -81.650390625, + 25.505040014002482 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.650390625, + 25.577383169953343 + ], + [ + -81.57061598730647, + 25.577383169953343 + ], + [ + -81.57061598730647, + 25.505040014002482 + ], + [ + -81.650390625, + 25.577383169953343 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.650390625, + 25.577383169953343 + ], + [ + -81.57061598730647, + 25.649726325904204 + ], + [ + -81.57061598730647, + 25.577383169953343 + ], + [ + -81.650390625, + 25.577383169953343 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.650390625, + 25.577383169953343 + ], + [ + -81.650390625, + 25.649726325904204 + ], + [ + -81.57061598730647, + 25.649726325904204 + ], + [ + -81.650390625, + 25.577383169953343 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.650390625, + 25.649726325904204 + ], + [ + -81.650390625, + 25.722069481855065 + ], + [ + -81.57061598730647, + 25.649726325904204 + ], + [ + -81.650390625, + 25.649726325904204 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.650390625, + 25.722069481855065 + ], + [ + -81.57061598730647, + 25.722069481855065 + ], + [ + -81.57061598730647, + 25.649726325904204 + ], + [ + -81.650390625, + 25.722069481855065 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.650390625, + 25.722069481855065 + ], + [ + -81.57061598730647, + 25.794412637805927 + ], + [ + -81.57061598730647, + 25.722069481855065 + ], + [ + -81.650390625, + 25.722069481855065 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.650390625, + 25.722069481855065 + ], + [ + -81.650390625, + 25.794412637805927 + ], + [ + -81.57061598730647, + 25.794412637805927 + ], + [ + -81.650390625, + 25.722069481855065 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.650390625, + 25.794412637805927 + ], + [ + -81.650390625, + 25.866755793756788 + ], + [ + -81.57061598730647, + 25.794412637805927 + ], + [ + -81.650390625, + 25.794412637805927 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.650390625, + 25.866755793756788 + ], + [ + -81.57061598730647, + 25.866755793756788 + ], + [ + -81.57061598730647, + 25.794412637805927 + ], + [ + -81.650390625, + 25.866755793756788 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.650390625, + 25.866755793756788 + ], + [ + -81.57061598730647, + 25.93909894970765 + ], + [ + -81.57061598730647, + 25.866755793756788 + ], + [ + -81.650390625, + 25.866755793756788 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.650390625, + 25.866755793756788 + ], + [ + -81.650390625, + 25.93909894970765 + ], + [ + -81.57061598730647, + 25.93909894970765 + ], + [ + -81.650390625, + 25.866755793756788 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.650390625, + 25.93909894970765 + ], + [ + -81.650390625, + 26.01144210565851 + ], + [ + -81.57061598730647, + 25.93909894970765 + ], + [ + -81.650390625, + 25.93909894970765 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.650390625, + 26.01144210565851 + ], + [ + -81.57061598730647, + 26.01144210565851 + ], + [ + -81.57061598730647, + 25.93909894970765 + ], + [ + -81.650390625, + 26.01144210565851 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.650390625, + 26.01144210565851 + ], + [ + -81.57061598730647, + 26.08378526160937 + ], + [ + -81.57061598730647, + 26.01144210565851 + ], + [ + -81.650390625, + 26.01144210565851 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.650390625, + 26.01144210565851 + ], + [ + -81.650390625, + 26.08378526160937 + ], + [ + -81.57061598730647, + 26.08378526160937 + ], + [ + -81.650390625, + 26.01144210565851 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.650390625, + 26.08378526160937 + ], + [ + -81.650390625, + 26.156128417560232 + ], + [ + -81.57061598730647, + 26.08378526160937 + ], + [ + -81.650390625, + 26.08378526160937 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.650390625, + 26.156128417560232 + ], + [ + -81.57061598730647, + 26.156128417560232 + ], + [ + -81.57061598730647, + 26.08378526160937 + ], + [ + -81.650390625, + 26.156128417560232 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.650390625, + 26.156128417560232 + ], + [ + -81.57061598730647, + 26.228471573511094 + ], + [ + -81.57061598730647, + 26.156128417560232 + ], + [ + -81.650390625, + 26.156128417560232 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.650390625, + 26.156128417560232 + ], + [ + -81.650390625, + 26.228471573511094 + ], + [ + -81.57061598730647, + 26.228471573511094 + ], + [ + -81.650390625, + 26.156128417560232 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.650390625, + 26.228471573511094 + ], + [ + -81.650390625, + 26.300814729461955 + ], + [ + -81.57061598730647, + 26.228471573511094 + ], + [ + -81.650390625, + 26.228471573511094 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.650390625, + 26.300814729461955 + ], + [ + -81.57061598730647, + 26.300814729461955 + ], + [ + -81.57061598730647, + 26.228471573511094 + ], + [ + -81.650390625, + 26.300814729461955 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.650390625, + 26.300814729461955 + ], + [ + -81.57061598730647, + 26.373157885412816 + ], + [ + -81.57061598730647, + 26.300814729461955 + ], + [ + -81.650390625, + 26.300814729461955 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.650390625, + 26.300814729461955 + ], + [ + -81.650390625, + 26.373157885412816 + ], + [ + -81.57061598730647, + 26.373157885412816 + ], + [ + -81.650390625, + 26.300814729461955 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.650390625, + 26.373157885412816 + ], + [ + -81.650390625, + 26.445501041363677 + ], + [ + -81.57061598730647, + 26.373157885412816 + ], + [ + -81.650390625, + 26.373157885412816 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.650390625, + 26.445501041363677 + ], + [ + -81.57061598730647, + 26.445501041363677 + ], + [ + -81.57061598730647, + 26.373157885412816 + ], + [ + -81.650390625, + 26.445501041363677 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.57061598730647, + 24.926294766395593 + ], + [ + -81.57061598730647, + 24.998637922346454 + ], + [ + -81.49084134961294, + 24.998637922346454 + ], + [ + -81.57061598730647, + 24.926294766395593 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.57061598730647, + 24.926294766395593 + ], + [ + -81.49084134961294, + 24.998637922346454 + ], + [ + -81.49084134961294, + 24.926294766395593 + ], + [ + -81.57061598730647, + 24.926294766395593 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.57061598730647, + 24.998637922346454 + ], + [ + -81.57061598730647, + 25.070981078297315 + ], + [ + -81.49084134961294, + 24.998637922346454 + ], + [ + -81.57061598730647, + 24.998637922346454 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.57061598730647, + 25.070981078297315 + ], + [ + -81.49084134961294, + 25.070981078297315 + ], + [ + -81.49084134961294, + 24.998637922346454 + ], + [ + -81.57061598730647, + 25.070981078297315 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.57061598730647, + 25.070981078297315 + ], + [ + -81.57061598730647, + 25.143324234248176 + ], + [ + -81.49084134961294, + 25.143324234248176 + ], + [ + -81.57061598730647, + 25.070981078297315 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.57061598730647, + 25.070981078297315 + ], + [ + -81.49084134961294, + 25.143324234248176 + ], + [ + -81.49084134961294, + 25.070981078297315 + ], + [ + -81.57061598730647, + 25.070981078297315 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.57061598730647, + 25.143324234248176 + ], + [ + -81.57061598730647, + 25.215667390199037 + ], + [ + -81.49084134961294, + 25.143324234248176 + ], + [ + -81.57061598730647, + 25.143324234248176 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.57061598730647, + 25.215667390199037 + ], + [ + -81.49084134961294, + 25.215667390199037 + ], + [ + -81.49084134961294, + 25.143324234248176 + ], + [ + -81.57061598730647, + 25.215667390199037 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.57061598730647, + 25.215667390199037 + ], + [ + -81.57061598730647, + 25.2880105461499 + ], + [ + -81.49084134961294, + 25.2880105461499 + ], + [ + -81.57061598730647, + 25.215667390199037 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.57061598730647, + 25.215667390199037 + ], + [ + -81.49084134961294, + 25.2880105461499 + ], + [ + -81.49084134961294, + 25.215667390199037 + ], + [ + -81.57061598730647, + 25.215667390199037 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.57061598730647, + 25.2880105461499 + ], + [ + -81.57061598730647, + 25.36035370210076 + ], + [ + -81.49084134961294, + 25.2880105461499 + ], + [ + -81.57061598730647, + 25.2880105461499 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.57061598730647, + 25.36035370210076 + ], + [ + -81.49084134961294, + 25.36035370210076 + ], + [ + -81.49084134961294, + 25.2880105461499 + ], + [ + -81.57061598730647, + 25.36035370210076 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.57061598730647, + 25.36035370210076 + ], + [ + -81.57061598730647, + 25.43269685805162 + ], + [ + -81.49084134961294, + 25.43269685805162 + ], + [ + -81.57061598730647, + 25.36035370210076 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.57061598730647, + 25.36035370210076 + ], + [ + -81.49084134961294, + 25.43269685805162 + ], + [ + -81.49084134961294, + 25.36035370210076 + ], + [ + -81.57061598730647, + 25.36035370210076 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.57061598730647, + 25.43269685805162 + ], + [ + -81.57061598730647, + 25.505040014002482 + ], + [ + -81.49084134961294, + 25.43269685805162 + ], + [ + -81.57061598730647, + 25.43269685805162 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.57061598730647, + 25.505040014002482 + ], + [ + -81.49084134961294, + 25.505040014002482 + ], + [ + -81.49084134961294, + 25.43269685805162 + ], + [ + -81.57061598730647, + 25.505040014002482 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.57061598730647, + 25.505040014002482 + ], + [ + -81.57061598730647, + 25.577383169953343 + ], + [ + -81.49084134961294, + 25.577383169953343 + ], + [ + -81.57061598730647, + 25.505040014002482 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.57061598730647, + 25.505040014002482 + ], + [ + -81.49084134961294, + 25.577383169953343 + ], + [ + -81.49084134961294, + 25.505040014002482 + ], + [ + -81.57061598730647, + 25.505040014002482 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.57061598730647, + 25.577383169953343 + ], + [ + -81.57061598730647, + 25.649726325904204 + ], + [ + -81.49084134961294, + 25.577383169953343 + ], + [ + -81.57061598730647, + 25.577383169953343 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.57061598730647, + 25.649726325904204 + ], + [ + -81.49084134961294, + 25.649726325904204 + ], + [ + -81.49084134961294, + 25.577383169953343 + ], + [ + -81.57061598730647, + 25.649726325904204 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.57061598730647, + 25.649726325904204 + ], + [ + -81.57061598730647, + 25.722069481855065 + ], + [ + -81.49084134961294, + 25.722069481855065 + ], + [ + -81.57061598730647, + 25.649726325904204 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.57061598730647, + 25.649726325904204 + ], + [ + -81.49084134961294, + 25.722069481855065 + ], + [ + -81.49084134961294, + 25.649726325904204 + ], + [ + -81.57061598730647, + 25.649726325904204 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.57061598730647, + 25.722069481855065 + ], + [ + -81.57061598730647, + 25.794412637805927 + ], + [ + -81.49084134961294, + 25.722069481855065 + ], + [ + -81.57061598730647, + 25.722069481855065 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.57061598730647, + 25.794412637805927 + ], + [ + -81.49084134961294, + 25.794412637805927 + ], + [ + -81.49084134961294, + 25.722069481855065 + ], + [ + -81.57061598730647, + 25.794412637805927 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.57061598730647, + 25.794412637805927 + ], + [ + -81.57061598730647, + 25.866755793756788 + ], + [ + -81.49084134961294, + 25.866755793756788 + ], + [ + -81.57061598730647, + 25.794412637805927 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.57061598730647, + 25.794412637805927 + ], + [ + -81.49084134961294, + 25.866755793756788 + ], + [ + -81.49084134961294, + 25.794412637805927 + ], + [ + -81.57061598730647, + 25.794412637805927 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.57061598730647, + 25.866755793756788 + ], + [ + -81.57061598730647, + 25.93909894970765 + ], + [ + -81.49084134961294, + 25.866755793756788 + ], + [ + -81.57061598730647, + 25.866755793756788 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.57061598730647, + 25.93909894970765 + ], + [ + -81.49084134961294, + 25.93909894970765 + ], + [ + -81.49084134961294, + 25.866755793756788 + ], + [ + -81.57061598730647, + 25.93909894970765 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.57061598730647, + 25.93909894970765 + ], + [ + -81.57061598730647, + 26.01144210565851 + ], + [ + -81.49084134961294, + 26.01144210565851 + ], + [ + -81.57061598730647, + 25.93909894970765 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.57061598730647, + 25.93909894970765 + ], + [ + -81.49084134961294, + 26.01144210565851 + ], + [ + -81.49084134961294, + 25.93909894970765 + ], + [ + -81.57061598730647, + 25.93909894970765 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.57061598730647, + 26.01144210565851 + ], + [ + -81.57061598730647, + 26.08378526160937 + ], + [ + -81.49084134961294, + 26.01144210565851 + ], + [ + -81.57061598730647, + 26.01144210565851 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.57061598730647, + 26.08378526160937 + ], + [ + -81.49084134961294, + 26.08378526160937 + ], + [ + -81.49084134961294, + 26.01144210565851 + ], + [ + -81.57061598730647, + 26.08378526160937 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.57061598730647, + 26.08378526160937 + ], + [ + -81.57061598730647, + 26.156128417560232 + ], + [ + -81.49084134961294, + 26.156128417560232 + ], + [ + -81.57061598730647, + 26.08378526160937 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.57061598730647, + 26.08378526160937 + ], + [ + -81.49084134961294, + 26.156128417560232 + ], + [ + -81.49084134961294, + 26.08378526160937 + ], + [ + -81.57061598730647, + 26.08378526160937 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.57061598730647, + 26.156128417560232 + ], + [ + -81.57061598730647, + 26.228471573511094 + ], + [ + -81.49084134961294, + 26.156128417560232 + ], + [ + -81.57061598730647, + 26.156128417560232 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.57061598730647, + 26.228471573511094 + ], + [ + -81.49084134961294, + 26.228471573511094 + ], + [ + -81.49084134961294, + 26.156128417560232 + ], + [ + -81.57061598730647, + 26.228471573511094 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.57061598730647, + 26.228471573511094 + ], + [ + -81.57061598730647, + 26.300814729461955 + ], + [ + -81.49084134961294, + 26.300814729461955 + ], + [ + -81.57061598730647, + 26.228471573511094 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.57061598730647, + 26.228471573511094 + ], + [ + -81.49084134961294, + 26.300814729461955 + ], + [ + -81.49084134961294, + 26.228471573511094 + ], + [ + -81.57061598730647, + 26.228471573511094 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.57061598730647, + 26.300814729461955 + ], + [ + -81.57061598730647, + 26.373157885412816 + ], + [ + -81.49084134961294, + 26.300814729461955 + ], + [ + -81.57061598730647, + 26.300814729461955 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.57061598730647, + 26.373157885412816 + ], + [ + -81.49084134961294, + 26.373157885412816 + ], + [ + -81.49084134961294, + 26.300814729461955 + ], + [ + -81.57061598730647, + 26.373157885412816 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.57061598730647, + 26.373157885412816 + ], + [ + -81.57061598730647, + 26.445501041363677 + ], + [ + -81.49084134961294, + 26.445501041363677 + ], + [ + -81.57061598730647, + 26.373157885412816 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.57061598730647, + 26.373157885412816 + ], + [ + -81.49084134961294, + 26.445501041363677 + ], + [ + -81.49084134961294, + 26.373157885412816 + ], + [ + -81.57061598730647, + 26.373157885412816 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.49084134961294, + 24.926294766395593 + ], + [ + -81.49084134961294, + 24.998637922346454 + ], + [ + -81.4110667119194, + 24.926294766395593 + ], + [ + -81.49084134961294, + 24.926294766395593 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.49084134961294, + 24.998637922346454 + ], + [ + -81.4110667119194, + 24.998637922346454 + ], + [ + -81.4110667119194, + 24.926294766395593 + ], + [ + -81.49084134961294, + 24.998637922346454 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.49084134961294, + 24.998637922346454 + ], + [ + -81.4110667119194, + 25.070981078297315 + ], + [ + -81.4110667119194, + 24.998637922346454 + ], + [ + -81.49084134961294, + 24.998637922346454 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.49084134961294, + 24.998637922346454 + ], + [ + -81.49084134961294, + 25.070981078297315 + ], + [ + -81.4110667119194, + 25.070981078297315 + ], + [ + -81.49084134961294, + 24.998637922346454 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.49084134961294, + 25.070981078297315 + ], + [ + -81.49084134961294, + 25.143324234248176 + ], + [ + -81.4110667119194, + 25.070981078297315 + ], + [ + -81.49084134961294, + 25.070981078297315 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.49084134961294, + 25.143324234248176 + ], + [ + -81.4110667119194, + 25.143324234248176 + ], + [ + -81.4110667119194, + 25.070981078297315 + ], + [ + -81.49084134961294, + 25.143324234248176 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.49084134961294, + 25.143324234248176 + ], + [ + -81.4110667119194, + 25.215667390199037 + ], + [ + -81.4110667119194, + 25.143324234248176 + ], + [ + -81.49084134961294, + 25.143324234248176 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.49084134961294, + 25.143324234248176 + ], + [ + -81.49084134961294, + 25.215667390199037 + ], + [ + -81.4110667119194, + 25.215667390199037 + ], + [ + -81.49084134961294, + 25.143324234248176 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.49084134961294, + 25.215667390199037 + ], + [ + -81.49084134961294, + 25.2880105461499 + ], + [ + -81.4110667119194, + 25.215667390199037 + ], + [ + -81.49084134961294, + 25.215667390199037 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.49084134961294, + 25.2880105461499 + ], + [ + -81.4110667119194, + 25.2880105461499 + ], + [ + -81.4110667119194, + 25.215667390199037 + ], + [ + -81.49084134961294, + 25.2880105461499 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.49084134961294, + 25.2880105461499 + ], + [ + -81.4110667119194, + 25.36035370210076 + ], + [ + -81.4110667119194, + 25.2880105461499 + ], + [ + -81.49084134961294, + 25.2880105461499 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.49084134961294, + 25.2880105461499 + ], + [ + -81.49084134961294, + 25.36035370210076 + ], + [ + -81.4110667119194, + 25.36035370210076 + ], + [ + -81.49084134961294, + 25.2880105461499 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.49084134961294, + 25.36035370210076 + ], + [ + -81.49084134961294, + 25.43269685805162 + ], + [ + -81.4110667119194, + 25.36035370210076 + ], + [ + -81.49084134961294, + 25.36035370210076 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.49084134961294, + 25.43269685805162 + ], + [ + -81.4110667119194, + 25.43269685805162 + ], + [ + -81.4110667119194, + 25.36035370210076 + ], + [ + -81.49084134961294, + 25.43269685805162 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.49084134961294, + 25.43269685805162 + ], + [ + -81.4110667119194, + 25.505040014002482 + ], + [ + -81.4110667119194, + 25.43269685805162 + ], + [ + -81.49084134961294, + 25.43269685805162 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.49084134961294, + 25.43269685805162 + ], + [ + -81.49084134961294, + 25.505040014002482 + ], + [ + -81.4110667119194, + 25.505040014002482 + ], + [ + -81.49084134961294, + 25.43269685805162 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.49084134961294, + 25.505040014002482 + ], + [ + -81.49084134961294, + 25.577383169953343 + ], + [ + -81.4110667119194, + 25.505040014002482 + ], + [ + -81.49084134961294, + 25.505040014002482 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.49084134961294, + 25.577383169953343 + ], + [ + -81.4110667119194, + 25.577383169953343 + ], + [ + -81.4110667119194, + 25.505040014002482 + ], + [ + -81.49084134961294, + 25.577383169953343 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.49084134961294, + 25.577383169953343 + ], + [ + -81.4110667119194, + 25.649726325904204 + ], + [ + -81.4110667119194, + 25.577383169953343 + ], + [ + -81.49084134961294, + 25.577383169953343 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.49084134961294, + 25.577383169953343 + ], + [ + -81.49084134961294, + 25.649726325904204 + ], + [ + -81.4110667119194, + 25.649726325904204 + ], + [ + -81.49084134961294, + 25.577383169953343 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.49084134961294, + 25.649726325904204 + ], + [ + -81.49084134961294, + 25.722069481855065 + ], + [ + -81.4110667119194, + 25.649726325904204 + ], + [ + -81.49084134961294, + 25.649726325904204 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.49084134961294, + 25.722069481855065 + ], + [ + -81.4110667119194, + 25.722069481855065 + ], + [ + -81.4110667119194, + 25.649726325904204 + ], + [ + -81.49084134961294, + 25.722069481855065 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.49084134961294, + 25.722069481855065 + ], + [ + -81.4110667119194, + 25.794412637805927 + ], + [ + -81.4110667119194, + 25.722069481855065 + ], + [ + -81.49084134961294, + 25.722069481855065 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.49084134961294, + 25.722069481855065 + ], + [ + -81.49084134961294, + 25.794412637805927 + ], + [ + -81.4110667119194, + 25.794412637805927 + ], + [ + -81.49084134961294, + 25.722069481855065 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.49084134961294, + 25.794412637805927 + ], + [ + -81.49084134961294, + 25.866755793756788 + ], + [ + -81.4110667119194, + 25.794412637805927 + ], + [ + -81.49084134961294, + 25.794412637805927 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.49084134961294, + 25.866755793756788 + ], + [ + -81.4110667119194, + 25.866755793756788 + ], + [ + -81.4110667119194, + 25.794412637805927 + ], + [ + -81.49084134961294, + 25.866755793756788 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.49084134961294, + 25.866755793756788 + ], + [ + -81.4110667119194, + 25.93909894970765 + ], + [ + -81.4110667119194, + 25.866755793756788 + ], + [ + -81.49084134961294, + 25.866755793756788 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.49084134961294, + 25.866755793756788 + ], + [ + -81.49084134961294, + 25.93909894970765 + ], + [ + -81.4110667119194, + 25.93909894970765 + ], + [ + -81.49084134961294, + 25.866755793756788 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.49084134961294, + 25.93909894970765 + ], + [ + -81.49084134961294, + 26.01144210565851 + ], + [ + -81.4110667119194, + 25.93909894970765 + ], + [ + -81.49084134961294, + 25.93909894970765 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.49084134961294, + 26.01144210565851 + ], + [ + -81.4110667119194, + 26.01144210565851 + ], + [ + -81.4110667119194, + 25.93909894970765 + ], + [ + -81.49084134961294, + 26.01144210565851 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.49084134961294, + 26.01144210565851 + ], + [ + -81.4110667119194, + 26.08378526160937 + ], + [ + -81.4110667119194, + 26.01144210565851 + ], + [ + -81.49084134961294, + 26.01144210565851 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.49084134961294, + 26.01144210565851 + ], + [ + -81.49084134961294, + 26.08378526160937 + ], + [ + -81.4110667119194, + 26.08378526160937 + ], + [ + -81.49084134961294, + 26.01144210565851 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.49084134961294, + 26.08378526160937 + ], + [ + -81.49084134961294, + 26.156128417560232 + ], + [ + -81.4110667119194, + 26.08378526160937 + ], + [ + -81.49084134961294, + 26.08378526160937 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.49084134961294, + 26.156128417560232 + ], + [ + -81.4110667119194, + 26.156128417560232 + ], + [ + -81.4110667119194, + 26.08378526160937 + ], + [ + -81.49084134961294, + 26.156128417560232 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.49084134961294, + 26.156128417560232 + ], + [ + -81.4110667119194, + 26.228471573511094 + ], + [ + -81.4110667119194, + 26.156128417560232 + ], + [ + -81.49084134961294, + 26.156128417560232 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.49084134961294, + 26.156128417560232 + ], + [ + -81.49084134961294, + 26.228471573511094 + ], + [ + -81.4110667119194, + 26.228471573511094 + ], + [ + -81.49084134961294, + 26.156128417560232 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.49084134961294, + 26.228471573511094 + ], + [ + -81.49084134961294, + 26.300814729461955 + ], + [ + -81.4110667119194, + 26.228471573511094 + ], + [ + -81.49084134961294, + 26.228471573511094 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.49084134961294, + 26.300814729461955 + ], + [ + -81.4110667119194, + 26.300814729461955 + ], + [ + -81.4110667119194, + 26.228471573511094 + ], + [ + -81.49084134961294, + 26.300814729461955 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.49084134961294, + 26.300814729461955 + ], + [ + -81.4110667119194, + 26.373157885412816 + ], + [ + -81.4110667119194, + 26.300814729461955 + ], + [ + -81.49084134961294, + 26.300814729461955 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.49084134961294, + 26.300814729461955 + ], + [ + -81.49084134961294, + 26.373157885412816 + ], + [ + -81.4110667119194, + 26.373157885412816 + ], + [ + -81.49084134961294, + 26.300814729461955 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.49084134961294, + 26.373157885412816 + ], + [ + -81.49084134961294, + 26.445501041363677 + ], + [ + -81.4110667119194, + 26.373157885412816 + ], + [ + -81.49084134961294, + 26.373157885412816 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.49084134961294, + 26.445501041363677 + ], + [ + -81.4110667119194, + 26.445501041363677 + ], + [ + -81.4110667119194, + 26.373157885412816 + ], + [ + -81.49084134961294, + 26.445501041363677 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.4110667119194, + 24.926294766395593 + ], + [ + -81.4110667119194, + 24.998637922346454 + ], + [ + -81.33129207422587, + 24.998637922346454 + ], + [ + -81.4110667119194, + 24.926294766395593 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.4110667119194, + 24.926294766395593 + ], + [ + -81.33129207422587, + 24.998637922346454 + ], + [ + -81.33129207422587, + 24.926294766395593 + ], + [ + -81.4110667119194, + 24.926294766395593 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.4110667119194, + 24.998637922346454 + ], + [ + -81.4110667119194, + 25.070981078297315 + ], + [ + -81.33129207422587, + 24.998637922346454 + ], + [ + -81.4110667119194, + 24.998637922346454 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.4110667119194, + 25.070981078297315 + ], + [ + -81.33129207422587, + 25.070981078297315 + ], + [ + -81.33129207422587, + 24.998637922346454 + ], + [ + -81.4110667119194, + 25.070981078297315 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.4110667119194, + 25.070981078297315 + ], + [ + -81.4110667119194, + 25.143324234248176 + ], + [ + -81.33129207422587, + 25.143324234248176 + ], + [ + -81.4110667119194, + 25.070981078297315 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.4110667119194, + 25.070981078297315 + ], + [ + -81.33129207422587, + 25.143324234248176 + ], + [ + -81.33129207422587, + 25.070981078297315 + ], + [ + -81.4110667119194, + 25.070981078297315 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.4110667119194, + 25.143324234248176 + ], + [ + -81.4110667119194, + 25.215667390199037 + ], + [ + -81.33129207422587, + 25.143324234248176 + ], + [ + -81.4110667119194, + 25.143324234248176 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.4110667119194, + 25.215667390199037 + ], + [ + -81.33129207422587, + 25.215667390199037 + ], + [ + -81.33129207422587, + 25.143324234248176 + ], + [ + -81.4110667119194, + 25.215667390199037 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.4110667119194, + 25.215667390199037 + ], + [ + -81.4110667119194, + 25.2880105461499 + ], + [ + -81.33129207422587, + 25.2880105461499 + ], + [ + -81.4110667119194, + 25.215667390199037 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.4110667119194, + 25.215667390199037 + ], + [ + -81.33129207422587, + 25.2880105461499 + ], + [ + -81.33129207422587, + 25.215667390199037 + ], + [ + -81.4110667119194, + 25.215667390199037 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.4110667119194, + 25.2880105461499 + ], + [ + -81.4110667119194, + 25.36035370210076 + ], + [ + -81.33129207422587, + 25.2880105461499 + ], + [ + -81.4110667119194, + 25.2880105461499 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.4110667119194, + 25.36035370210076 + ], + [ + -81.33129207422587, + 25.36035370210076 + ], + [ + -81.33129207422587, + 25.2880105461499 + ], + [ + -81.4110667119194, + 25.36035370210076 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.4110667119194, + 25.36035370210076 + ], + [ + -81.4110667119194, + 25.43269685805162 + ], + [ + -81.33129207422587, + 25.43269685805162 + ], + [ + -81.4110667119194, + 25.36035370210076 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.4110667119194, + 25.36035370210076 + ], + [ + -81.33129207422587, + 25.43269685805162 + ], + [ + -81.33129207422587, + 25.36035370210076 + ], + [ + -81.4110667119194, + 25.36035370210076 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.4110667119194, + 25.43269685805162 + ], + [ + -81.4110667119194, + 25.505040014002482 + ], + [ + -81.33129207422587, + 25.43269685805162 + ], + [ + -81.4110667119194, + 25.43269685805162 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.4110667119194, + 25.505040014002482 + ], + [ + -81.33129207422587, + 25.505040014002482 + ], + [ + -81.33129207422587, + 25.43269685805162 + ], + [ + -81.4110667119194, + 25.505040014002482 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.4110667119194, + 25.505040014002482 + ], + [ + -81.4110667119194, + 25.577383169953343 + ], + [ + -81.33129207422587, + 25.577383169953343 + ], + [ + -81.4110667119194, + 25.505040014002482 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.4110667119194, + 25.505040014002482 + ], + [ + -81.33129207422587, + 25.577383169953343 + ], + [ + -81.33129207422587, + 25.505040014002482 + ], + [ + -81.4110667119194, + 25.505040014002482 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.4110667119194, + 25.577383169953343 + ], + [ + -81.4110667119194, + 25.649726325904204 + ], + [ + -81.33129207422587, + 25.577383169953343 + ], + [ + -81.4110667119194, + 25.577383169953343 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.4110667119194, + 25.649726325904204 + ], + [ + -81.33129207422587, + 25.649726325904204 + ], + [ + -81.33129207422587, + 25.577383169953343 + ], + [ + -81.4110667119194, + 25.649726325904204 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.4110667119194, + 25.649726325904204 + ], + [ + -81.4110667119194, + 25.722069481855065 + ], + [ + -81.33129207422587, + 25.722069481855065 + ], + [ + -81.4110667119194, + 25.649726325904204 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.4110667119194, + 25.649726325904204 + ], + [ + -81.33129207422587, + 25.722069481855065 + ], + [ + -81.33129207422587, + 25.649726325904204 + ], + [ + -81.4110667119194, + 25.649726325904204 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.4110667119194, + 25.722069481855065 + ], + [ + -81.4110667119194, + 25.794412637805927 + ], + [ + -81.33129207422587, + 25.722069481855065 + ], + [ + -81.4110667119194, + 25.722069481855065 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.4110667119194, + 25.794412637805927 + ], + [ + -81.33129207422587, + 25.794412637805927 + ], + [ + -81.33129207422587, + 25.722069481855065 + ], + [ + -81.4110667119194, + 25.794412637805927 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.4110667119194, + 25.794412637805927 + ], + [ + -81.4110667119194, + 25.866755793756788 + ], + [ + -81.33129207422587, + 25.866755793756788 + ], + [ + -81.4110667119194, + 25.794412637805927 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.4110667119194, + 25.794412637805927 + ], + [ + -81.33129207422587, + 25.866755793756788 + ], + [ + -81.33129207422587, + 25.794412637805927 + ], + [ + -81.4110667119194, + 25.794412637805927 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.4110667119194, + 25.866755793756788 + ], + [ + -81.4110667119194, + 25.93909894970765 + ], + [ + -81.33129207422587, + 25.866755793756788 + ], + [ + -81.4110667119194, + 25.866755793756788 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.4110667119194, + 25.93909894970765 + ], + [ + -81.33129207422587, + 25.93909894970765 + ], + [ + -81.33129207422587, + 25.866755793756788 + ], + [ + -81.4110667119194, + 25.93909894970765 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.4110667119194, + 25.93909894970765 + ], + [ + -81.4110667119194, + 26.01144210565851 + ], + [ + -81.33129207422587, + 26.01144210565851 + ], + [ + -81.4110667119194, + 25.93909894970765 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.4110667119194, + 25.93909894970765 + ], + [ + -81.33129207422587, + 26.01144210565851 + ], + [ + -81.33129207422587, + 25.93909894970765 + ], + [ + -81.4110667119194, + 25.93909894970765 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.4110667119194, + 26.01144210565851 + ], + [ + -81.4110667119194, + 26.08378526160937 + ], + [ + -81.33129207422587, + 26.01144210565851 + ], + [ + -81.4110667119194, + 26.01144210565851 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.4110667119194, + 26.08378526160937 + ], + [ + -81.33129207422587, + 26.08378526160937 + ], + [ + -81.33129207422587, + 26.01144210565851 + ], + [ + -81.4110667119194, + 26.08378526160937 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.4110667119194, + 26.08378526160937 + ], + [ + -81.4110667119194, + 26.156128417560232 + ], + [ + -81.33129207422587, + 26.156128417560232 + ], + [ + -81.4110667119194, + 26.08378526160937 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.4110667119194, + 26.08378526160937 + ], + [ + -81.33129207422587, + 26.156128417560232 + ], + [ + -81.33129207422587, + 26.08378526160937 + ], + [ + -81.4110667119194, + 26.08378526160937 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.4110667119194, + 26.156128417560232 + ], + [ + -81.4110667119194, + 26.228471573511094 + ], + [ + -81.33129207422587, + 26.156128417560232 + ], + [ + -81.4110667119194, + 26.156128417560232 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.4110667119194, + 26.228471573511094 + ], + [ + -81.33129207422587, + 26.228471573511094 + ], + [ + -81.33129207422587, + 26.156128417560232 + ], + [ + -81.4110667119194, + 26.228471573511094 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.4110667119194, + 26.228471573511094 + ], + [ + -81.4110667119194, + 26.300814729461955 + ], + [ + -81.33129207422587, + 26.300814729461955 + ], + [ + -81.4110667119194, + 26.228471573511094 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.4110667119194, + 26.228471573511094 + ], + [ + -81.33129207422587, + 26.300814729461955 + ], + [ + -81.33129207422587, + 26.228471573511094 + ], + [ + -81.4110667119194, + 26.228471573511094 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.4110667119194, + 26.300814729461955 + ], + [ + -81.4110667119194, + 26.373157885412816 + ], + [ + -81.33129207422587, + 26.300814729461955 + ], + [ + -81.4110667119194, + 26.300814729461955 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.4110667119194, + 26.373157885412816 + ], + [ + -81.33129207422587, + 26.373157885412816 + ], + [ + -81.33129207422587, + 26.300814729461955 + ], + [ + -81.4110667119194, + 26.373157885412816 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.4110667119194, + 26.373157885412816 + ], + [ + -81.4110667119194, + 26.445501041363677 + ], + [ + -81.33129207422587, + 26.445501041363677 + ], + [ + -81.4110667119194, + 26.373157885412816 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.4110667119194, + 26.373157885412816 + ], + [ + -81.33129207422587, + 26.445501041363677 + ], + [ + -81.33129207422587, + 26.373157885412816 + ], + [ + -81.4110667119194, + 26.373157885412816 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.33129207422587, + 24.926294766395593 + ], + [ + -81.33129207422587, + 24.998637922346454 + ], + [ + -81.25151743653234, + 24.926294766395593 + ], + [ + -81.33129207422587, + 24.926294766395593 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.33129207422587, + 24.998637922346454 + ], + [ + -81.25151743653234, + 24.998637922346454 + ], + [ + -81.25151743653234, + 24.926294766395593 + ], + [ + -81.33129207422587, + 24.998637922346454 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.33129207422587, + 24.998637922346454 + ], + [ + -81.25151743653234, + 25.070981078297315 + ], + [ + -81.25151743653234, + 24.998637922346454 + ], + [ + -81.33129207422587, + 24.998637922346454 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.33129207422587, + 24.998637922346454 + ], + [ + -81.33129207422587, + 25.070981078297315 + ], + [ + -81.25151743653234, + 25.070981078297315 + ], + [ + -81.33129207422587, + 24.998637922346454 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.33129207422587, + 25.070981078297315 + ], + [ + -81.33129207422587, + 25.143324234248176 + ], + [ + -81.25151743653234, + 25.070981078297315 + ], + [ + -81.33129207422587, + 25.070981078297315 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.33129207422587, + 25.143324234248176 + ], + [ + -81.25151743653234, + 25.143324234248176 + ], + [ + -81.25151743653234, + 25.070981078297315 + ], + [ + -81.33129207422587, + 25.143324234248176 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.33129207422587, + 25.143324234248176 + ], + [ + -81.25151743653234, + 25.215667390199037 + ], + [ + -81.25151743653234, + 25.143324234248176 + ], + [ + -81.33129207422587, + 25.143324234248176 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.33129207422587, + 25.143324234248176 + ], + [ + -81.33129207422587, + 25.215667390199037 + ], + [ + -81.25151743653234, + 25.215667390199037 + ], + [ + -81.33129207422587, + 25.143324234248176 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.33129207422587, + 25.215667390199037 + ], + [ + -81.33129207422587, + 25.2880105461499 + ], + [ + -81.25151743653234, + 25.215667390199037 + ], + [ + -81.33129207422587, + 25.215667390199037 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.33129207422587, + 25.2880105461499 + ], + [ + -81.25151743653234, + 25.2880105461499 + ], + [ + -81.25151743653234, + 25.215667390199037 + ], + [ + -81.33129207422587, + 25.2880105461499 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.33129207422587, + 25.2880105461499 + ], + [ + -81.25151743653234, + 25.36035370210076 + ], + [ + -81.25151743653234, + 25.2880105461499 + ], + [ + -81.33129207422587, + 25.2880105461499 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.33129207422587, + 25.2880105461499 + ], + [ + -81.33129207422587, + 25.36035370210076 + ], + [ + -81.25151743653234, + 25.36035370210076 + ], + [ + -81.33129207422587, + 25.2880105461499 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.33129207422587, + 25.36035370210076 + ], + [ + -81.33129207422587, + 25.43269685805162 + ], + [ + -81.25151743653234, + 25.36035370210076 + ], + [ + -81.33129207422587, + 25.36035370210076 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.33129207422587, + 25.43269685805162 + ], + [ + -81.25151743653234, + 25.43269685805162 + ], + [ + -81.25151743653234, + 25.36035370210076 + ], + [ + -81.33129207422587, + 25.43269685805162 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.33129207422587, + 25.43269685805162 + ], + [ + -81.25151743653234, + 25.505040014002482 + ], + [ + -81.25151743653234, + 25.43269685805162 + ], + [ + -81.33129207422587, + 25.43269685805162 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.33129207422587, + 25.43269685805162 + ], + [ + -81.33129207422587, + 25.505040014002482 + ], + [ + -81.25151743653234, + 25.505040014002482 + ], + [ + -81.33129207422587, + 25.43269685805162 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.33129207422587, + 25.505040014002482 + ], + [ + -81.33129207422587, + 25.577383169953343 + ], + [ + -81.25151743653234, + 25.505040014002482 + ], + [ + -81.33129207422587, + 25.505040014002482 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.33129207422587, + 25.577383169953343 + ], + [ + -81.25151743653234, + 25.577383169953343 + ], + [ + -81.25151743653234, + 25.505040014002482 + ], + [ + -81.33129207422587, + 25.577383169953343 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.33129207422587, + 25.577383169953343 + ], + [ + -81.25151743653234, + 25.649726325904204 + ], + [ + -81.25151743653234, + 25.577383169953343 + ], + [ + -81.33129207422587, + 25.577383169953343 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.33129207422587, + 25.577383169953343 + ], + [ + -81.33129207422587, + 25.649726325904204 + ], + [ + -81.25151743653234, + 25.649726325904204 + ], + [ + -81.33129207422587, + 25.577383169953343 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.33129207422587, + 25.649726325904204 + ], + [ + -81.33129207422587, + 25.722069481855065 + ], + [ + -81.25151743653234, + 25.649726325904204 + ], + [ + -81.33129207422587, + 25.649726325904204 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.33129207422587, + 25.722069481855065 + ], + [ + -81.25151743653234, + 25.722069481855065 + ], + [ + -81.25151743653234, + 25.649726325904204 + ], + [ + -81.33129207422587, + 25.722069481855065 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.33129207422587, + 25.722069481855065 + ], + [ + -81.25151743653234, + 25.794412637805927 + ], + [ + -81.25151743653234, + 25.722069481855065 + ], + [ + -81.33129207422587, + 25.722069481855065 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.33129207422587, + 25.722069481855065 + ], + [ + -81.33129207422587, + 25.794412637805927 + ], + [ + -81.25151743653234, + 25.794412637805927 + ], + [ + -81.33129207422587, + 25.722069481855065 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.33129207422587, + 25.794412637805927 + ], + [ + -81.33129207422587, + 25.866755793756788 + ], + [ + -81.25151743653234, + 25.794412637805927 + ], + [ + -81.33129207422587, + 25.794412637805927 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.33129207422587, + 25.866755793756788 + ], + [ + -81.25151743653234, + 25.866755793756788 + ], + [ + -81.25151743653234, + 25.794412637805927 + ], + [ + -81.33129207422587, + 25.866755793756788 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.33129207422587, + 25.866755793756788 + ], + [ + -81.25151743653234, + 25.93909894970765 + ], + [ + -81.25151743653234, + 25.866755793756788 + ], + [ + -81.33129207422587, + 25.866755793756788 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.33129207422587, + 25.866755793756788 + ], + [ + -81.33129207422587, + 25.93909894970765 + ], + [ + -81.25151743653234, + 25.93909894970765 + ], + [ + -81.33129207422587, + 25.866755793756788 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.33129207422587, + 25.93909894970765 + ], + [ + -81.33129207422587, + 26.01144210565851 + ], + [ + -81.25151743653234, + 25.93909894970765 + ], + [ + -81.33129207422587, + 25.93909894970765 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.33129207422587, + 26.01144210565851 + ], + [ + -81.25151743653234, + 26.01144210565851 + ], + [ + -81.25151743653234, + 25.93909894970765 + ], + [ + -81.33129207422587, + 26.01144210565851 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.33129207422587, + 26.01144210565851 + ], + [ + -81.25151743653234, + 26.08378526160937 + ], + [ + -81.25151743653234, + 26.01144210565851 + ], + [ + -81.33129207422587, + 26.01144210565851 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.33129207422587, + 26.01144210565851 + ], + [ + -81.33129207422587, + 26.08378526160937 + ], + [ + -81.25151743653234, + 26.08378526160937 + ], + [ + -81.33129207422587, + 26.01144210565851 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.33129207422587, + 26.08378526160937 + ], + [ + -81.33129207422587, + 26.156128417560232 + ], + [ + -81.25151743653234, + 26.08378526160937 + ], + [ + -81.33129207422587, + 26.08378526160937 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.33129207422587, + 26.156128417560232 + ], + [ + -81.25151743653234, + 26.156128417560232 + ], + [ + -81.25151743653234, + 26.08378526160937 + ], + [ + -81.33129207422587, + 26.156128417560232 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.33129207422587, + 26.156128417560232 + ], + [ + -81.25151743653234, + 26.228471573511094 + ], + [ + -81.25151743653234, + 26.156128417560232 + ], + [ + -81.33129207422587, + 26.156128417560232 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.33129207422587, + 26.156128417560232 + ], + [ + -81.33129207422587, + 26.228471573511094 + ], + [ + -81.25151743653234, + 26.228471573511094 + ], + [ + -81.33129207422587, + 26.156128417560232 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.33129207422587, + 26.228471573511094 + ], + [ + -81.33129207422587, + 26.300814729461955 + ], + [ + -81.25151743653234, + 26.228471573511094 + ], + [ + -81.33129207422587, + 26.228471573511094 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.33129207422587, + 26.300814729461955 + ], + [ + -81.25151743653234, + 26.300814729461955 + ], + [ + -81.25151743653234, + 26.228471573511094 + ], + [ + -81.33129207422587, + 26.300814729461955 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.33129207422587, + 26.300814729461955 + ], + [ + -81.25151743653234, + 26.373157885412816 + ], + [ + -81.25151743653234, + 26.300814729461955 + ], + [ + -81.33129207422587, + 26.300814729461955 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.33129207422587, + 26.300814729461955 + ], + [ + -81.33129207422587, + 26.373157885412816 + ], + [ + -81.25151743653234, + 26.373157885412816 + ], + [ + -81.33129207422587, + 26.300814729461955 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.33129207422587, + 26.373157885412816 + ], + [ + -81.33129207422587, + 26.445501041363677 + ], + [ + -81.25151743653234, + 26.373157885412816 + ], + [ + -81.33129207422587, + 26.373157885412816 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.33129207422587, + 26.445501041363677 + ], + [ + -81.25151743653234, + 26.445501041363677 + ], + [ + -81.25151743653234, + 26.373157885412816 + ], + [ + -81.33129207422587, + 26.445501041363677 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.25151743653234, + 24.926294766395593 + ], + [ + -81.25151743653234, + 24.998637922346454 + ], + [ + -81.1717427988388, + 24.998637922346454 + ], + [ + -81.25151743653234, + 24.926294766395593 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.25151743653234, + 24.926294766395593 + ], + [ + -81.1717427988388, + 24.998637922346454 + ], + [ + -81.1717427988388, + 24.926294766395593 + ], + [ + -81.25151743653234, + 24.926294766395593 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.25151743653234, + 24.998637922346454 + ], + [ + -81.25151743653234, + 25.070981078297315 + ], + [ + -81.1717427988388, + 24.998637922346454 + ], + [ + -81.25151743653234, + 24.998637922346454 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.25151743653234, + 25.070981078297315 + ], + [ + -81.1717427988388, + 25.070981078297315 + ], + [ + -81.1717427988388, + 24.998637922346454 + ], + [ + -81.25151743653234, + 25.070981078297315 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.25151743653234, + 25.070981078297315 + ], + [ + -81.25151743653234, + 25.143324234248176 + ], + [ + -81.1717427988388, + 25.143324234248176 + ], + [ + -81.25151743653234, + 25.070981078297315 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.25151743653234, + 25.070981078297315 + ], + [ + -81.1717427988388, + 25.143324234248176 + ], + [ + -81.1717427988388, + 25.070981078297315 + ], + [ + -81.25151743653234, + 25.070981078297315 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.25151743653234, + 25.143324234248176 + ], + [ + -81.25151743653234, + 25.215667390199037 + ], + [ + -81.1717427988388, + 25.143324234248176 + ], + [ + -81.25151743653234, + 25.143324234248176 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.25151743653234, + 25.215667390199037 + ], + [ + -81.1717427988388, + 25.215667390199037 + ], + [ + -81.1717427988388, + 25.143324234248176 + ], + [ + -81.25151743653234, + 25.215667390199037 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.25151743653234, + 25.215667390199037 + ], + [ + -81.25151743653234, + 25.2880105461499 + ], + [ + -81.1717427988388, + 25.2880105461499 + ], + [ + -81.25151743653234, + 25.215667390199037 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.25151743653234, + 25.215667390199037 + ], + [ + -81.1717427988388, + 25.2880105461499 + ], + [ + -81.1717427988388, + 25.215667390199037 + ], + [ + -81.25151743653234, + 25.215667390199037 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.25151743653234, + 25.2880105461499 + ], + [ + -81.25151743653234, + 25.36035370210076 + ], + [ + -81.1717427988388, + 25.2880105461499 + ], + [ + -81.25151743653234, + 25.2880105461499 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.25151743653234, + 25.36035370210076 + ], + [ + -81.1717427988388, + 25.36035370210076 + ], + [ + -81.1717427988388, + 25.2880105461499 + ], + [ + -81.25151743653234, + 25.36035370210076 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.25151743653234, + 25.36035370210076 + ], + [ + -81.25151743653234, + 25.43269685805162 + ], + [ + -81.1717427988388, + 25.43269685805162 + ], + [ + -81.25151743653234, + 25.36035370210076 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.25151743653234, + 25.36035370210076 + ], + [ + -81.1717427988388, + 25.43269685805162 + ], + [ + -81.1717427988388, + 25.36035370210076 + ], + [ + -81.25151743653234, + 25.36035370210076 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.25151743653234, + 25.43269685805162 + ], + [ + -81.25151743653234, + 25.505040014002482 + ], + [ + -81.1717427988388, + 25.43269685805162 + ], + [ + -81.25151743653234, + 25.43269685805162 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.25151743653234, + 25.505040014002482 + ], + [ + -81.1717427988388, + 25.505040014002482 + ], + [ + -81.1717427988388, + 25.43269685805162 + ], + [ + -81.25151743653234, + 25.505040014002482 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.25151743653234, + 25.505040014002482 + ], + [ + -81.25151743653234, + 25.577383169953343 + ], + [ + -81.1717427988388, + 25.577383169953343 + ], + [ + -81.25151743653234, + 25.505040014002482 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.25151743653234, + 25.505040014002482 + ], + [ + -81.1717427988388, + 25.577383169953343 + ], + [ + -81.1717427988388, + 25.505040014002482 + ], + [ + -81.25151743653234, + 25.505040014002482 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.25151743653234, + 25.577383169953343 + ], + [ + -81.25151743653234, + 25.649726325904204 + ], + [ + -81.1717427988388, + 25.577383169953343 + ], + [ + -81.25151743653234, + 25.577383169953343 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.25151743653234, + 25.649726325904204 + ], + [ + -81.1717427988388, + 25.649726325904204 + ], + [ + -81.1717427988388, + 25.577383169953343 + ], + [ + -81.25151743653234, + 25.649726325904204 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.25151743653234, + 25.649726325904204 + ], + [ + -81.25151743653234, + 25.722069481855065 + ], + [ + -81.1717427988388, + 25.722069481855065 + ], + [ + -81.25151743653234, + 25.649726325904204 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.25151743653234, + 25.649726325904204 + ], + [ + -81.1717427988388, + 25.722069481855065 + ], + [ + -81.1717427988388, + 25.649726325904204 + ], + [ + -81.25151743653234, + 25.649726325904204 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.25151743653234, + 25.722069481855065 + ], + [ + -81.25151743653234, + 25.794412637805927 + ], + [ + -81.1717427988388, + 25.722069481855065 + ], + [ + -81.25151743653234, + 25.722069481855065 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.25151743653234, + 25.794412637805927 + ], + [ + -81.1717427988388, + 25.794412637805927 + ], + [ + -81.1717427988388, + 25.722069481855065 + ], + [ + -81.25151743653234, + 25.794412637805927 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.25151743653234, + 25.794412637805927 + ], + [ + -81.25151743653234, + 25.866755793756788 + ], + [ + -81.1717427988388, + 25.866755793756788 + ], + [ + -81.25151743653234, + 25.794412637805927 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.25151743653234, + 25.794412637805927 + ], + [ + -81.1717427988388, + 25.866755793756788 + ], + [ + -81.1717427988388, + 25.794412637805927 + ], + [ + -81.25151743653234, + 25.794412637805927 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.25151743653234, + 25.866755793756788 + ], + [ + -81.25151743653234, + 25.93909894970765 + ], + [ + -81.1717427988388, + 25.866755793756788 + ], + [ + -81.25151743653234, + 25.866755793756788 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.25151743653234, + 25.93909894970765 + ], + [ + -81.1717427988388, + 25.93909894970765 + ], + [ + -81.1717427988388, + 25.866755793756788 + ], + [ + -81.25151743653234, + 25.93909894970765 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.25151743653234, + 25.93909894970765 + ], + [ + -81.25151743653234, + 26.01144210565851 + ], + [ + -81.1717427988388, + 26.01144210565851 + ], + [ + -81.25151743653234, + 25.93909894970765 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.25151743653234, + 25.93909894970765 + ], + [ + -81.1717427988388, + 26.01144210565851 + ], + [ + -81.1717427988388, + 25.93909894970765 + ], + [ + -81.25151743653234, + 25.93909894970765 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.25151743653234, + 26.01144210565851 + ], + [ + -81.25151743653234, + 26.08378526160937 + ], + [ + -81.1717427988388, + 26.01144210565851 + ], + [ + -81.25151743653234, + 26.01144210565851 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.25151743653234, + 26.08378526160937 + ], + [ + -81.1717427988388, + 26.08378526160937 + ], + [ + -81.1717427988388, + 26.01144210565851 + ], + [ + -81.25151743653234, + 26.08378526160937 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.25151743653234, + 26.08378526160937 + ], + [ + -81.25151743653234, + 26.156128417560232 + ], + [ + -81.1717427988388, + 26.156128417560232 + ], + [ + -81.25151743653234, + 26.08378526160937 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.25151743653234, + 26.08378526160937 + ], + [ + -81.1717427988388, + 26.156128417560232 + ], + [ + -81.1717427988388, + 26.08378526160937 + ], + [ + -81.25151743653234, + 26.08378526160937 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.25151743653234, + 26.156128417560232 + ], + [ + -81.25151743653234, + 26.228471573511094 + ], + [ + -81.1717427988388, + 26.156128417560232 + ], + [ + -81.25151743653234, + 26.156128417560232 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.25151743653234, + 26.228471573511094 + ], + [ + -81.1717427988388, + 26.228471573511094 + ], + [ + -81.1717427988388, + 26.156128417560232 + ], + [ + -81.25151743653234, + 26.228471573511094 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.25151743653234, + 26.228471573511094 + ], + [ + -81.25151743653234, + 26.300814729461955 + ], + [ + -81.1717427988388, + 26.300814729461955 + ], + [ + -81.25151743653234, + 26.228471573511094 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.25151743653234, + 26.228471573511094 + ], + [ + -81.1717427988388, + 26.300814729461955 + ], + [ + -81.1717427988388, + 26.228471573511094 + ], + [ + -81.25151743653234, + 26.228471573511094 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.25151743653234, + 26.300814729461955 + ], + [ + -81.25151743653234, + 26.373157885412816 + ], + [ + -81.1717427988388, + 26.300814729461955 + ], + [ + -81.25151743653234, + 26.300814729461955 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.25151743653234, + 26.373157885412816 + ], + [ + -81.1717427988388, + 26.373157885412816 + ], + [ + -81.1717427988388, + 26.300814729461955 + ], + [ + -81.25151743653234, + 26.373157885412816 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.25151743653234, + 26.373157885412816 + ], + [ + -81.25151743653234, + 26.445501041363677 + ], + [ + -81.1717427988388, + 26.445501041363677 + ], + [ + -81.25151743653234, + 26.373157885412816 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.25151743653234, + 26.373157885412816 + ], + [ + -81.1717427988388, + 26.445501041363677 + ], + [ + -81.1717427988388, + 26.373157885412816 + ], + [ + -81.25151743653234, + 26.373157885412816 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1717427988388, + 24.926294766395593 + ], + [ + -81.1717427988388, + 24.998637922346454 + ], + [ + -81.09196816114527, + 24.926294766395593 + ], + [ + -81.1717427988388, + 24.926294766395593 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1717427988388, + 24.998637922346454 + ], + [ + -81.09196816114527, + 24.998637922346454 + ], + [ + -81.09196816114527, + 24.926294766395593 + ], + [ + -81.1717427988388, + 24.998637922346454 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1717427988388, + 24.998637922346454 + ], + [ + -81.09196816114527, + 25.070981078297315 + ], + [ + -81.09196816114527, + 24.998637922346454 + ], + [ + -81.1717427988388, + 24.998637922346454 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1717427988388, + 24.998637922346454 + ], + [ + -81.1717427988388, + 25.070981078297315 + ], + [ + -81.09196816114527, + 25.070981078297315 + ], + [ + -81.1717427988388, + 24.998637922346454 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1717427988388, + 25.070981078297315 + ], + [ + -81.1717427988388, + 25.143324234248176 + ], + [ + -81.09196816114527, + 25.070981078297315 + ], + [ + -81.1717427988388, + 25.070981078297315 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1717427988388, + 25.143324234248176 + ], + [ + -81.09196816114527, + 25.143324234248176 + ], + [ + -81.09196816114527, + 25.070981078297315 + ], + [ + -81.1717427988388, + 25.143324234248176 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1717427988388, + 25.143324234248176 + ], + [ + -81.09196816114527, + 25.215667390199037 + ], + [ + -81.09196816114527, + 25.143324234248176 + ], + [ + -81.1717427988388, + 25.143324234248176 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1717427988388, + 25.143324234248176 + ], + [ + -81.1717427988388, + 25.215667390199037 + ], + [ + -81.09196816114527, + 25.215667390199037 + ], + [ + -81.1717427988388, + 25.143324234248176 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1717427988388, + 25.215667390199037 + ], + [ + -81.1717427988388, + 25.2880105461499 + ], + [ + -81.09196816114527, + 25.215667390199037 + ], + [ + -81.1717427988388, + 25.215667390199037 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1717427988388, + 25.2880105461499 + ], + [ + -81.09196816114527, + 25.2880105461499 + ], + [ + -81.09196816114527, + 25.215667390199037 + ], + [ + -81.1717427988388, + 25.2880105461499 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1717427988388, + 25.2880105461499 + ], + [ + -81.09196816114527, + 25.36035370210076 + ], + [ + -81.09196816114527, + 25.2880105461499 + ], + [ + -81.1717427988388, + 25.2880105461499 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1717427988388, + 25.2880105461499 + ], + [ + -81.1717427988388, + 25.36035370210076 + ], + [ + -81.09196816114527, + 25.36035370210076 + ], + [ + -81.1717427988388, + 25.2880105461499 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1717427988388, + 25.36035370210076 + ], + [ + -81.1717427988388, + 25.43269685805162 + ], + [ + -81.09196816114527, + 25.36035370210076 + ], + [ + -81.1717427988388, + 25.36035370210076 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1717427988388, + 25.43269685805162 + ], + [ + -81.09196816114527, + 25.43269685805162 + ], + [ + -81.09196816114527, + 25.36035370210076 + ], + [ + -81.1717427988388, + 25.43269685805162 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1717427988388, + 25.43269685805162 + ], + [ + -81.09196816114527, + 25.505040014002482 + ], + [ + -81.09196816114527, + 25.43269685805162 + ], + [ + -81.1717427988388, + 25.43269685805162 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1717427988388, + 25.43269685805162 + ], + [ + -81.1717427988388, + 25.505040014002482 + ], + [ + -81.09196816114527, + 25.505040014002482 + ], + [ + -81.1717427988388, + 25.43269685805162 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1717427988388, + 25.505040014002482 + ], + [ + -81.1717427988388, + 25.577383169953343 + ], + [ + -81.09196816114527, + 25.505040014002482 + ], + [ + -81.1717427988388, + 25.505040014002482 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1717427988388, + 25.577383169953343 + ], + [ + -81.09196816114527, + 25.577383169953343 + ], + [ + -81.09196816114527, + 25.505040014002482 + ], + [ + -81.1717427988388, + 25.577383169953343 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1717427988388, + 25.577383169953343 + ], + [ + -81.09196816114527, + 25.649726325904204 + ], + [ + -81.09196816114527, + 25.577383169953343 + ], + [ + -81.1717427988388, + 25.577383169953343 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1717427988388, + 25.577383169953343 + ], + [ + -81.1717427988388, + 25.649726325904204 + ], + [ + -81.09196816114527, + 25.649726325904204 + ], + [ + -81.1717427988388, + 25.577383169953343 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1717427988388, + 25.649726325904204 + ], + [ + -81.1717427988388, + 25.722069481855065 + ], + [ + -81.09196816114527, + 25.649726325904204 + ], + [ + -81.1717427988388, + 25.649726325904204 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1717427988388, + 25.722069481855065 + ], + [ + -81.09196816114527, + 25.722069481855065 + ], + [ + -81.09196816114527, + 25.649726325904204 + ], + [ + -81.1717427988388, + 25.722069481855065 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1717427988388, + 25.722069481855065 + ], + [ + -81.09196816114527, + 25.794412637805927 + ], + [ + -81.09196816114527, + 25.722069481855065 + ], + [ + -81.1717427988388, + 25.722069481855065 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1717427988388, + 25.722069481855065 + ], + [ + -81.1717427988388, + 25.794412637805927 + ], + [ + -81.09196816114527, + 25.794412637805927 + ], + [ + -81.1717427988388, + 25.722069481855065 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1717427988388, + 25.794412637805927 + ], + [ + -81.1717427988388, + 25.866755793756788 + ], + [ + -81.09196816114527, + 25.794412637805927 + ], + [ + -81.1717427988388, + 25.794412637805927 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1717427988388, + 25.866755793756788 + ], + [ + -81.09196816114527, + 25.866755793756788 + ], + [ + -81.09196816114527, + 25.794412637805927 + ], + [ + -81.1717427988388, + 25.866755793756788 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1717427988388, + 25.866755793756788 + ], + [ + -81.09196816114527, + 25.93909894970765 + ], + [ + -81.09196816114527, + 25.866755793756788 + ], + [ + -81.1717427988388, + 25.866755793756788 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1717427988388, + 25.866755793756788 + ], + [ + -81.1717427988388, + 25.93909894970765 + ], + [ + -81.09196816114527, + 25.93909894970765 + ], + [ + -81.1717427988388, + 25.866755793756788 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1717427988388, + 25.93909894970765 + ], + [ + -81.1717427988388, + 26.01144210565851 + ], + [ + -81.09196816114527, + 25.93909894970765 + ], + [ + -81.1717427988388, + 25.93909894970765 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1717427988388, + 26.01144210565851 + ], + [ + -81.09196816114527, + 26.01144210565851 + ], + [ + -81.09196816114527, + 25.93909894970765 + ], + [ + -81.1717427988388, + 26.01144210565851 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1717427988388, + 26.01144210565851 + ], + [ + -81.09196816114527, + 26.08378526160937 + ], + [ + -81.09196816114527, + 26.01144210565851 + ], + [ + -81.1717427988388, + 26.01144210565851 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1717427988388, + 26.01144210565851 + ], + [ + -81.1717427988388, + 26.08378526160937 + ], + [ + -81.09196816114527, + 26.08378526160937 + ], + [ + -81.1717427988388, + 26.01144210565851 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1717427988388, + 26.08378526160937 + ], + [ + -81.1717427988388, + 26.156128417560232 + ], + [ + -81.09196816114527, + 26.08378526160937 + ], + [ + -81.1717427988388, + 26.08378526160937 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1717427988388, + 26.156128417560232 + ], + [ + -81.09196816114527, + 26.156128417560232 + ], + [ + -81.09196816114527, + 26.08378526160937 + ], + [ + -81.1717427988388, + 26.156128417560232 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1717427988388, + 26.156128417560232 + ], + [ + -81.09196816114527, + 26.228471573511094 + ], + [ + -81.09196816114527, + 26.156128417560232 + ], + [ + -81.1717427988388, + 26.156128417560232 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1717427988388, + 26.156128417560232 + ], + [ + -81.1717427988388, + 26.228471573511094 + ], + [ + -81.09196816114527, + 26.228471573511094 + ], + [ + -81.1717427988388, + 26.156128417560232 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1717427988388, + 26.228471573511094 + ], + [ + -81.1717427988388, + 26.300814729461955 + ], + [ + -81.09196816114527, + 26.228471573511094 + ], + [ + -81.1717427988388, + 26.228471573511094 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1717427988388, + 26.300814729461955 + ], + [ + -81.09196816114527, + 26.300814729461955 + ], + [ + -81.09196816114527, + 26.228471573511094 + ], + [ + -81.1717427988388, + 26.300814729461955 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1717427988388, + 26.300814729461955 + ], + [ + -81.09196816114527, + 26.373157885412816 + ], + [ + -81.09196816114527, + 26.300814729461955 + ], + [ + -81.1717427988388, + 26.300814729461955 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1717427988388, + 26.300814729461955 + ], + [ + -81.1717427988388, + 26.373157885412816 + ], + [ + -81.09196816114527, + 26.373157885412816 + ], + [ + -81.1717427988388, + 26.300814729461955 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1717427988388, + 26.373157885412816 + ], + [ + -81.1717427988388, + 26.445501041363677 + ], + [ + -81.09196816114527, + 26.373157885412816 + ], + [ + -81.1717427988388, + 26.373157885412816 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.1717427988388, + 26.445501041363677 + ], + [ + -81.09196816114527, + 26.445501041363677 + ], + [ + -81.09196816114527, + 26.373157885412816 + ], + [ + -81.1717427988388, + 26.445501041363677 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.09196816114527, + 24.926294766395593 + ], + [ + -81.09196816114527, + 24.998637922346454 + ], + [ + -81.01219352345174, + 24.998637922346454 + ], + [ + -81.09196816114527, + 24.926294766395593 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.09196816114527, + 24.926294766395593 + ], + [ + -81.01219352345174, + 24.998637922346454 + ], + [ + -81.01219352345174, + 24.926294766395593 + ], + [ + -81.09196816114527, + 24.926294766395593 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.09196816114527, + 24.998637922346454 + ], + [ + -81.09196816114527, + 25.070981078297315 + ], + [ + -81.01219352345174, + 24.998637922346454 + ], + [ + -81.09196816114527, + 24.998637922346454 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.09196816114527, + 25.070981078297315 + ], + [ + -81.01219352345174, + 25.070981078297315 + ], + [ + -81.01219352345174, + 24.998637922346454 + ], + [ + -81.09196816114527, + 25.070981078297315 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.09196816114527, + 25.070981078297315 + ], + [ + -81.09196816114527, + 25.143324234248176 + ], + [ + -81.01219352345174, + 25.143324234248176 + ], + [ + -81.09196816114527, + 25.070981078297315 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.09196816114527, + 25.070981078297315 + ], + [ + -81.01219352345174, + 25.143324234248176 + ], + [ + -81.01219352345174, + 25.070981078297315 + ], + [ + -81.09196816114527, + 25.070981078297315 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.09196816114527, + 25.143324234248176 + ], + [ + -81.09196816114527, + 25.215667390199037 + ], + [ + -81.01219352345174, + 25.143324234248176 + ], + [ + -81.09196816114527, + 25.143324234248176 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.09196816114527, + 25.215667390199037 + ], + [ + -81.01219352345174, + 25.215667390199037 + ], + [ + -81.01219352345174, + 25.143324234248176 + ], + [ + -81.09196816114527, + 25.215667390199037 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.09196816114527, + 25.215667390199037 + ], + [ + -81.09196816114527, + 25.2880105461499 + ], + [ + -81.01219352345174, + 25.2880105461499 + ], + [ + -81.09196816114527, + 25.215667390199037 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.09196816114527, + 25.215667390199037 + ], + [ + -81.01219352345174, + 25.2880105461499 + ], + [ + -81.01219352345174, + 25.215667390199037 + ], + [ + -81.09196816114527, + 25.215667390199037 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.09196816114527, + 25.2880105461499 + ], + [ + -81.09196816114527, + 25.36035370210076 + ], + [ + -81.01219352345174, + 25.2880105461499 + ], + [ + -81.09196816114527, + 25.2880105461499 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.09196816114527, + 25.36035370210076 + ], + [ + -81.01219352345174, + 25.36035370210076 + ], + [ + -81.01219352345174, + 25.2880105461499 + ], + [ + -81.09196816114527, + 25.36035370210076 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.09196816114527, + 25.36035370210076 + ], + [ + -81.09196816114527, + 25.43269685805162 + ], + [ + -81.01219352345174, + 25.43269685805162 + ], + [ + -81.09196816114527, + 25.36035370210076 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.09196816114527, + 25.36035370210076 + ], + [ + -81.01219352345174, + 25.43269685805162 + ], + [ + -81.01219352345174, + 25.36035370210076 + ], + [ + -81.09196816114527, + 25.36035370210076 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.09196816114527, + 25.43269685805162 + ], + [ + -81.09196816114527, + 25.505040014002482 + ], + [ + -81.01219352345174, + 25.43269685805162 + ], + [ + -81.09196816114527, + 25.43269685805162 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.09196816114527, + 25.505040014002482 + ], + [ + -81.01219352345174, + 25.505040014002482 + ], + [ + -81.01219352345174, + 25.43269685805162 + ], + [ + -81.09196816114527, + 25.505040014002482 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.09196816114527, + 25.505040014002482 + ], + [ + -81.09196816114527, + 25.577383169953343 + ], + [ + -81.01219352345174, + 25.577383169953343 + ], + [ + -81.09196816114527, + 25.505040014002482 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.09196816114527, + 25.505040014002482 + ], + [ + -81.01219352345174, + 25.577383169953343 + ], + [ + -81.01219352345174, + 25.505040014002482 + ], + [ + -81.09196816114527, + 25.505040014002482 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.09196816114527, + 25.577383169953343 + ], + [ + -81.09196816114527, + 25.649726325904204 + ], + [ + -81.01219352345174, + 25.577383169953343 + ], + [ + -81.09196816114527, + 25.577383169953343 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.09196816114527, + 25.649726325904204 + ], + [ + -81.01219352345174, + 25.649726325904204 + ], + [ + -81.01219352345174, + 25.577383169953343 + ], + [ + -81.09196816114527, + 25.649726325904204 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.09196816114527, + 25.649726325904204 + ], + [ + -81.09196816114527, + 25.722069481855065 + ], + [ + -81.01219352345174, + 25.722069481855065 + ], + [ + -81.09196816114527, + 25.649726325904204 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.09196816114527, + 25.649726325904204 + ], + [ + -81.01219352345174, + 25.722069481855065 + ], + [ + -81.01219352345174, + 25.649726325904204 + ], + [ + -81.09196816114527, + 25.649726325904204 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.09196816114527, + 25.722069481855065 + ], + [ + -81.09196816114527, + 25.794412637805927 + ], + [ + -81.01219352345174, + 25.722069481855065 + ], + [ + -81.09196816114527, + 25.722069481855065 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.09196816114527, + 25.794412637805927 + ], + [ + -81.01219352345174, + 25.794412637805927 + ], + [ + -81.01219352345174, + 25.722069481855065 + ], + [ + -81.09196816114527, + 25.794412637805927 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.09196816114527, + 25.794412637805927 + ], + [ + -81.09196816114527, + 25.866755793756788 + ], + [ + -81.01219352345174, + 25.866755793756788 + ], + [ + -81.09196816114527, + 25.794412637805927 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.09196816114527, + 25.794412637805927 + ], + [ + -81.01219352345174, + 25.866755793756788 + ], + [ + -81.01219352345174, + 25.794412637805927 + ], + [ + -81.09196816114527, + 25.794412637805927 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.09196816114527, + 25.866755793756788 + ], + [ + -81.09196816114527, + 25.93909894970765 + ], + [ + -81.01219352345174, + 25.866755793756788 + ], + [ + -81.09196816114527, + 25.866755793756788 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.09196816114527, + 25.93909894970765 + ], + [ + -81.01219352345174, + 25.93909894970765 + ], + [ + -81.01219352345174, + 25.866755793756788 + ], + [ + -81.09196816114527, + 25.93909894970765 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.09196816114527, + 25.93909894970765 + ], + [ + -81.09196816114527, + 26.01144210565851 + ], + [ + -81.01219352345174, + 26.01144210565851 + ], + [ + -81.09196816114527, + 25.93909894970765 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.09196816114527, + 25.93909894970765 + ], + [ + -81.01219352345174, + 26.01144210565851 + ], + [ + -81.01219352345174, + 25.93909894970765 + ], + [ + -81.09196816114527, + 25.93909894970765 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.09196816114527, + 26.01144210565851 + ], + [ + -81.09196816114527, + 26.08378526160937 + ], + [ + -81.01219352345174, + 26.01144210565851 + ], + [ + -81.09196816114527, + 26.01144210565851 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.09196816114527, + 26.08378526160937 + ], + [ + -81.01219352345174, + 26.08378526160937 + ], + [ + -81.01219352345174, + 26.01144210565851 + ], + [ + -81.09196816114527, + 26.08378526160937 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.09196816114527, + 26.08378526160937 + ], + [ + -81.09196816114527, + 26.156128417560232 + ], + [ + -81.01219352345174, + 26.156128417560232 + ], + [ + -81.09196816114527, + 26.08378526160937 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.09196816114527, + 26.08378526160937 + ], + [ + -81.01219352345174, + 26.156128417560232 + ], + [ + -81.01219352345174, + 26.08378526160937 + ], + [ + -81.09196816114527, + 26.08378526160937 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.09196816114527, + 26.156128417560232 + ], + [ + -81.09196816114527, + 26.228471573511094 + ], + [ + -81.01219352345174, + 26.156128417560232 + ], + [ + -81.09196816114527, + 26.156128417560232 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.09196816114527, + 26.228471573511094 + ], + [ + -81.01219352345174, + 26.228471573511094 + ], + [ + -81.01219352345174, + 26.156128417560232 + ], + [ + -81.09196816114527, + 26.228471573511094 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.09196816114527, + 26.228471573511094 + ], + [ + -81.09196816114527, + 26.300814729461955 + ], + [ + -81.01219352345174, + 26.300814729461955 + ], + [ + -81.09196816114527, + 26.228471573511094 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.09196816114527, + 26.228471573511094 + ], + [ + -81.01219352345174, + 26.300814729461955 + ], + [ + -81.01219352345174, + 26.228471573511094 + ], + [ + -81.09196816114527, + 26.228471573511094 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.09196816114527, + 26.300814729461955 + ], + [ + -81.09196816114527, + 26.373157885412816 + ], + [ + -81.01219352345174, + 26.300814729461955 + ], + [ + -81.09196816114527, + 26.300814729461955 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.09196816114527, + 26.373157885412816 + ], + [ + -81.01219352345174, + 26.373157885412816 + ], + [ + -81.01219352345174, + 26.300814729461955 + ], + [ + -81.09196816114527, + 26.373157885412816 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.09196816114527, + 26.373157885412816 + ], + [ + -81.09196816114527, + 26.445501041363677 + ], + [ + -81.01219352345174, + 26.445501041363677 + ], + [ + -81.09196816114527, + 26.373157885412816 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.09196816114527, + 26.373157885412816 + ], + [ + -81.01219352345174, + 26.445501041363677 + ], + [ + -81.01219352345174, + 26.373157885412816 + ], + [ + -81.09196816114527, + 26.373157885412816 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.01219352345174, + 24.926294766395593 + ], + [ + -81.01219352345174, + 24.998637922346454 + ], + [ + -80.93241888575821, + 24.926294766395593 + ], + [ + -81.01219352345174, + 24.926294766395593 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.01219352345174, + 24.998637922346454 + ], + [ + -80.93241888575821, + 24.998637922346454 + ], + [ + -80.93241888575821, + 24.926294766395593 + ], + [ + -81.01219352345174, + 24.998637922346454 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.01219352345174, + 24.998637922346454 + ], + [ + -80.93241888575821, + 25.070981078297315 + ], + [ + -80.93241888575821, + 24.998637922346454 + ], + [ + -81.01219352345174, + 24.998637922346454 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.01219352345174, + 24.998637922346454 + ], + [ + -81.01219352345174, + 25.070981078297315 + ], + [ + -80.93241888575821, + 25.070981078297315 + ], + [ + -81.01219352345174, + 24.998637922346454 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.01219352345174, + 25.070981078297315 + ], + [ + -81.01219352345174, + 25.143324234248176 + ], + [ + -80.93241888575821, + 25.070981078297315 + ], + [ + -81.01219352345174, + 25.070981078297315 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.01219352345174, + 25.143324234248176 + ], + [ + -80.93241888575821, + 25.143324234248176 + ], + [ + -80.93241888575821, + 25.070981078297315 + ], + [ + -81.01219352345174, + 25.143324234248176 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.01219352345174, + 25.143324234248176 + ], + [ + -80.93241888575821, + 25.215667390199037 + ], + [ + -80.93241888575821, + 25.143324234248176 + ], + [ + -81.01219352345174, + 25.143324234248176 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.01219352345174, + 25.143324234248176 + ], + [ + -81.01219352345174, + 25.215667390199037 + ], + [ + -80.93241888575821, + 25.215667390199037 + ], + [ + -81.01219352345174, + 25.143324234248176 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.01219352345174, + 25.215667390199037 + ], + [ + -81.01219352345174, + 25.2880105461499 + ], + [ + -80.93241888575821, + 25.215667390199037 + ], + [ + -81.01219352345174, + 25.215667390199037 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.01219352345174, + 25.2880105461499 + ], + [ + -80.93241888575821, + 25.2880105461499 + ], + [ + -80.93241888575821, + 25.215667390199037 + ], + [ + -81.01219352345174, + 25.2880105461499 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.01219352345174, + 25.2880105461499 + ], + [ + -80.93241888575821, + 25.36035370210076 + ], + [ + -80.93241888575821, + 25.2880105461499 + ], + [ + -81.01219352345174, + 25.2880105461499 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.01219352345174, + 25.2880105461499 + ], + [ + -81.01219352345174, + 25.36035370210076 + ], + [ + -80.93241888575821, + 25.36035370210076 + ], + [ + -81.01219352345174, + 25.2880105461499 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.01219352345174, + 25.36035370210076 + ], + [ + -81.01219352345174, + 25.43269685805162 + ], + [ + -80.93241888575821, + 25.36035370210076 + ], + [ + -81.01219352345174, + 25.36035370210076 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.01219352345174, + 25.43269685805162 + ], + [ + -80.93241888575821, + 25.43269685805162 + ], + [ + -80.93241888575821, + 25.36035370210076 + ], + [ + -81.01219352345174, + 25.43269685805162 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.01219352345174, + 25.43269685805162 + ], + [ + -80.93241888575821, + 25.505040014002482 + ], + [ + -80.93241888575821, + 25.43269685805162 + ], + [ + -81.01219352345174, + 25.43269685805162 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.01219352345174, + 25.43269685805162 + ], + [ + -81.01219352345174, + 25.505040014002482 + ], + [ + -80.93241888575821, + 25.505040014002482 + ], + [ + -81.01219352345174, + 25.43269685805162 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.01219352345174, + 25.505040014002482 + ], + [ + -81.01219352345174, + 25.577383169953343 + ], + [ + -80.93241888575821, + 25.505040014002482 + ], + [ + -81.01219352345174, + 25.505040014002482 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.01219352345174, + 25.577383169953343 + ], + [ + -80.93241888575821, + 25.577383169953343 + ], + [ + -80.93241888575821, + 25.505040014002482 + ], + [ + -81.01219352345174, + 25.577383169953343 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.01219352345174, + 25.577383169953343 + ], + [ + -80.93241888575821, + 25.649726325904204 + ], + [ + -80.93241888575821, + 25.577383169953343 + ], + [ + -81.01219352345174, + 25.577383169953343 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.01219352345174, + 25.577383169953343 + ], + [ + -81.01219352345174, + 25.649726325904204 + ], + [ + -80.93241888575821, + 25.649726325904204 + ], + [ + -81.01219352345174, + 25.577383169953343 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.01219352345174, + 25.649726325904204 + ], + [ + -81.01219352345174, + 25.722069481855065 + ], + [ + -80.93241888575821, + 25.649726325904204 + ], + [ + -81.01219352345174, + 25.649726325904204 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.01219352345174, + 25.722069481855065 + ], + [ + -80.93241888575821, + 25.722069481855065 + ], + [ + -80.93241888575821, + 25.649726325904204 + ], + [ + -81.01219352345174, + 25.722069481855065 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.01219352345174, + 25.722069481855065 + ], + [ + -80.93241888575821, + 25.794412637805927 + ], + [ + -80.93241888575821, + 25.722069481855065 + ], + [ + -81.01219352345174, + 25.722069481855065 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.01219352345174, + 25.722069481855065 + ], + [ + -81.01219352345174, + 25.794412637805927 + ], + [ + -80.93241888575821, + 25.794412637805927 + ], + [ + -81.01219352345174, + 25.722069481855065 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.01219352345174, + 25.794412637805927 + ], + [ + -81.01219352345174, + 25.866755793756788 + ], + [ + -80.93241888575821, + 25.794412637805927 + ], + [ + -81.01219352345174, + 25.794412637805927 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.01219352345174, + 25.866755793756788 + ], + [ + -80.93241888575821, + 25.866755793756788 + ], + [ + -80.93241888575821, + 25.794412637805927 + ], + [ + -81.01219352345174, + 25.866755793756788 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.01219352345174, + 25.866755793756788 + ], + [ + -80.93241888575821, + 25.93909894970765 + ], + [ + -80.93241888575821, + 25.866755793756788 + ], + [ + -81.01219352345174, + 25.866755793756788 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.01219352345174, + 25.866755793756788 + ], + [ + -81.01219352345174, + 25.93909894970765 + ], + [ + -80.93241888575821, + 25.93909894970765 + ], + [ + -81.01219352345174, + 25.866755793756788 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.01219352345174, + 25.93909894970765 + ], + [ + -81.01219352345174, + 26.01144210565851 + ], + [ + -80.93241888575821, + 25.93909894970765 + ], + [ + -81.01219352345174, + 25.93909894970765 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.01219352345174, + 26.01144210565851 + ], + [ + -80.93241888575821, + 26.01144210565851 + ], + [ + -80.93241888575821, + 25.93909894970765 + ], + [ + -81.01219352345174, + 26.01144210565851 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.01219352345174, + 26.01144210565851 + ], + [ + -80.93241888575821, + 26.08378526160937 + ], + [ + -80.93241888575821, + 26.01144210565851 + ], + [ + -81.01219352345174, + 26.01144210565851 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.01219352345174, + 26.01144210565851 + ], + [ + -81.01219352345174, + 26.08378526160937 + ], + [ + -80.93241888575821, + 26.08378526160937 + ], + [ + -81.01219352345174, + 26.01144210565851 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.01219352345174, + 26.08378526160937 + ], + [ + -81.01219352345174, + 26.156128417560232 + ], + [ + -80.93241888575821, + 26.08378526160937 + ], + [ + -81.01219352345174, + 26.08378526160937 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.01219352345174, + 26.156128417560232 + ], + [ + -80.93241888575821, + 26.156128417560232 + ], + [ + -80.93241888575821, + 26.08378526160937 + ], + [ + -81.01219352345174, + 26.156128417560232 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.01219352345174, + 26.156128417560232 + ], + [ + -80.93241888575821, + 26.228471573511094 + ], + [ + -80.93241888575821, + 26.156128417560232 + ], + [ + -81.01219352345174, + 26.156128417560232 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.01219352345174, + 26.156128417560232 + ], + [ + -81.01219352345174, + 26.228471573511094 + ], + [ + -80.93241888575821, + 26.228471573511094 + ], + [ + -81.01219352345174, + 26.156128417560232 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.01219352345174, + 26.228471573511094 + ], + [ + -81.01219352345174, + 26.300814729461955 + ], + [ + -80.93241888575821, + 26.228471573511094 + ], + [ + -81.01219352345174, + 26.228471573511094 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.01219352345174, + 26.300814729461955 + ], + [ + -80.93241888575821, + 26.300814729461955 + ], + [ + -80.93241888575821, + 26.228471573511094 + ], + [ + -81.01219352345174, + 26.300814729461955 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.01219352345174, + 26.300814729461955 + ], + [ + -80.93241888575821, + 26.373157885412816 + ], + [ + -80.93241888575821, + 26.300814729461955 + ], + [ + -81.01219352345174, + 26.300814729461955 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.01219352345174, + 26.300814729461955 + ], + [ + -81.01219352345174, + 26.373157885412816 + ], + [ + -80.93241888575821, + 26.373157885412816 + ], + [ + -81.01219352345174, + 26.300814729461955 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.01219352345174, + 26.373157885412816 + ], + [ + -81.01219352345174, + 26.445501041363677 + ], + [ + -80.93241888575821, + 26.373157885412816 + ], + [ + -81.01219352345174, + 26.373157885412816 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.01219352345174, + 26.445501041363677 + ], + [ + -80.93241888575821, + 26.445501041363677 + ], + [ + -80.93241888575821, + 26.373157885412816 + ], + [ + -81.01219352345174, + 26.445501041363677 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.93241888575821, + 24.926294766395593 + ], + [ + -80.93241888575821, + 24.998637922346454 + ], + [ + -80.85264424806468, + 24.998637922346454 + ], + [ + -80.93241888575821, + 24.926294766395593 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.93241888575821, + 24.926294766395593 + ], + [ + -80.85264424806468, + 24.998637922346454 + ], + [ + -80.85264424806468, + 24.926294766395593 + ], + [ + -80.93241888575821, + 24.926294766395593 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.93241888575821, + 24.998637922346454 + ], + [ + -80.93241888575821, + 25.070981078297315 + ], + [ + -80.85264424806468, + 24.998637922346454 + ], + [ + -80.93241888575821, + 24.998637922346454 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.93241888575821, + 25.070981078297315 + ], + [ + -80.85264424806468, + 25.070981078297315 + ], + [ + -80.85264424806468, + 24.998637922346454 + ], + [ + -80.93241888575821, + 25.070981078297315 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.93241888575821, + 25.070981078297315 + ], + [ + -80.93241888575821, + 25.143324234248176 + ], + [ + -80.85264424806468, + 25.143324234248176 + ], + [ + -80.93241888575821, + 25.070981078297315 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.93241888575821, + 25.070981078297315 + ], + [ + -80.85264424806468, + 25.143324234248176 + ], + [ + -80.85264424806468, + 25.070981078297315 + ], + [ + -80.93241888575821, + 25.070981078297315 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.93241888575821, + 25.143324234248176 + ], + [ + -80.93241888575821, + 25.215667390199037 + ], + [ + -80.85264424806468, + 25.143324234248176 + ], + [ + -80.93241888575821, + 25.143324234248176 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.93241888575821, + 25.215667390199037 + ], + [ + -80.85264424806468, + 25.215667390199037 + ], + [ + -80.85264424806468, + 25.143324234248176 + ], + [ + -80.93241888575821, + 25.215667390199037 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.93241888575821, + 25.215667390199037 + ], + [ + -80.93241888575821, + 25.2880105461499 + ], + [ + -80.85264424806468, + 25.2880105461499 + ], + [ + -80.93241888575821, + 25.215667390199037 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.93241888575821, + 25.215667390199037 + ], + [ + -80.85264424806468, + 25.2880105461499 + ], + [ + -80.85264424806468, + 25.215667390199037 + ], + [ + -80.93241888575821, + 25.215667390199037 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.93241888575821, + 25.2880105461499 + ], + [ + -80.93241888575821, + 25.36035370210076 + ], + [ + -80.85264424806468, + 25.2880105461499 + ], + [ + -80.93241888575821, + 25.2880105461499 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.93241888575821, + 25.36035370210076 + ], + [ + -80.85264424806468, + 25.36035370210076 + ], + [ + -80.85264424806468, + 25.2880105461499 + ], + [ + -80.93241888575821, + 25.36035370210076 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.93241888575821, + 25.36035370210076 + ], + [ + -80.93241888575821, + 25.43269685805162 + ], + [ + -80.85264424806468, + 25.43269685805162 + ], + [ + -80.93241888575821, + 25.36035370210076 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.93241888575821, + 25.36035370210076 + ], + [ + -80.85264424806468, + 25.43269685805162 + ], + [ + -80.85264424806468, + 25.36035370210076 + ], + [ + -80.93241888575821, + 25.36035370210076 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.93241888575821, + 25.43269685805162 + ], + [ + -80.93241888575821, + 25.505040014002482 + ], + [ + -80.85264424806468, + 25.43269685805162 + ], + [ + -80.93241888575821, + 25.43269685805162 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.93241888575821, + 25.505040014002482 + ], + [ + -80.85264424806468, + 25.505040014002482 + ], + [ + -80.85264424806468, + 25.43269685805162 + ], + [ + -80.93241888575821, + 25.505040014002482 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.93241888575821, + 25.505040014002482 + ], + [ + -80.93241888575821, + 25.577383169953343 + ], + [ + -80.85264424806468, + 25.577383169953343 + ], + [ + -80.93241888575821, + 25.505040014002482 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.93241888575821, + 25.505040014002482 + ], + [ + -80.85264424806468, + 25.577383169953343 + ], + [ + -80.85264424806468, + 25.505040014002482 + ], + [ + -80.93241888575821, + 25.505040014002482 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.93241888575821, + 25.577383169953343 + ], + [ + -80.93241888575821, + 25.649726325904204 + ], + [ + -80.85264424806468, + 25.577383169953343 + ], + [ + -80.93241888575821, + 25.577383169953343 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.93241888575821, + 25.649726325904204 + ], + [ + -80.85264424806468, + 25.649726325904204 + ], + [ + -80.85264424806468, + 25.577383169953343 + ], + [ + -80.93241888575821, + 25.649726325904204 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.93241888575821, + 25.649726325904204 + ], + [ + -80.93241888575821, + 25.722069481855065 + ], + [ + -80.85264424806468, + 25.722069481855065 + ], + [ + -80.93241888575821, + 25.649726325904204 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.93241888575821, + 25.649726325904204 + ], + [ + -80.85264424806468, + 25.722069481855065 + ], + [ + -80.85264424806468, + 25.649726325904204 + ], + [ + -80.93241888575821, + 25.649726325904204 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.93241888575821, + 25.722069481855065 + ], + [ + -80.93241888575821, + 25.794412637805927 + ], + [ + -80.85264424806468, + 25.722069481855065 + ], + [ + -80.93241888575821, + 25.722069481855065 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.93241888575821, + 25.794412637805927 + ], + [ + -80.85264424806468, + 25.794412637805927 + ], + [ + -80.85264424806468, + 25.722069481855065 + ], + [ + -80.93241888575821, + 25.794412637805927 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.93241888575821, + 25.794412637805927 + ], + [ + -80.93241888575821, + 25.866755793756788 + ], + [ + -80.85264424806468, + 25.866755793756788 + ], + [ + -80.93241888575821, + 25.794412637805927 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.93241888575821, + 25.794412637805927 + ], + [ + -80.85264424806468, + 25.866755793756788 + ], + [ + -80.85264424806468, + 25.794412637805927 + ], + [ + -80.93241888575821, + 25.794412637805927 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.93241888575821, + 25.866755793756788 + ], + [ + -80.93241888575821, + 25.93909894970765 + ], + [ + -80.85264424806468, + 25.866755793756788 + ], + [ + -80.93241888575821, + 25.866755793756788 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.93241888575821, + 25.93909894970765 + ], + [ + -80.85264424806468, + 25.93909894970765 + ], + [ + -80.85264424806468, + 25.866755793756788 + ], + [ + -80.93241888575821, + 25.93909894970765 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.93241888575821, + 25.93909894970765 + ], + [ + -80.93241888575821, + 26.01144210565851 + ], + [ + -80.85264424806468, + 26.01144210565851 + ], + [ + -80.93241888575821, + 25.93909894970765 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.93241888575821, + 25.93909894970765 + ], + [ + -80.85264424806468, + 26.01144210565851 + ], + [ + -80.85264424806468, + 25.93909894970765 + ], + [ + -80.93241888575821, + 25.93909894970765 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.93241888575821, + 26.01144210565851 + ], + [ + -80.93241888575821, + 26.08378526160937 + ], + [ + -80.85264424806468, + 26.01144210565851 + ], + [ + -80.93241888575821, + 26.01144210565851 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.93241888575821, + 26.08378526160937 + ], + [ + -80.85264424806468, + 26.08378526160937 + ], + [ + -80.85264424806468, + 26.01144210565851 + ], + [ + -80.93241888575821, + 26.08378526160937 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.93241888575821, + 26.08378526160937 + ], + [ + -80.93241888575821, + 26.156128417560232 + ], + [ + -80.85264424806468, + 26.156128417560232 + ], + [ + -80.93241888575821, + 26.08378526160937 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.93241888575821, + 26.08378526160937 + ], + [ + -80.85264424806468, + 26.156128417560232 + ], + [ + -80.85264424806468, + 26.08378526160937 + ], + [ + -80.93241888575821, + 26.08378526160937 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.93241888575821, + 26.156128417560232 + ], + [ + -80.93241888575821, + 26.228471573511094 + ], + [ + -80.85264424806468, + 26.156128417560232 + ], + [ + -80.93241888575821, + 26.156128417560232 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.93241888575821, + 26.228471573511094 + ], + [ + -80.85264424806468, + 26.228471573511094 + ], + [ + -80.85264424806468, + 26.156128417560232 + ], + [ + -80.93241888575821, + 26.228471573511094 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.93241888575821, + 26.228471573511094 + ], + [ + -80.93241888575821, + 26.300814729461955 + ], + [ + -80.85264424806468, + 26.300814729461955 + ], + [ + -80.93241888575821, + 26.228471573511094 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.93241888575821, + 26.228471573511094 + ], + [ + -80.85264424806468, + 26.300814729461955 + ], + [ + -80.85264424806468, + 26.228471573511094 + ], + [ + -80.93241888575821, + 26.228471573511094 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.93241888575821, + 26.300814729461955 + ], + [ + -80.93241888575821, + 26.373157885412816 + ], + [ + -80.85264424806468, + 26.300814729461955 + ], + [ + -80.93241888575821, + 26.300814729461955 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.93241888575821, + 26.373157885412816 + ], + [ + -80.85264424806468, + 26.373157885412816 + ], + [ + -80.85264424806468, + 26.300814729461955 + ], + [ + -80.93241888575821, + 26.373157885412816 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.93241888575821, + 26.373157885412816 + ], + [ + -80.93241888575821, + 26.445501041363677 + ], + [ + -80.85264424806468, + 26.445501041363677 + ], + [ + -80.93241888575821, + 26.373157885412816 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.93241888575821, + 26.373157885412816 + ], + [ + -80.85264424806468, + 26.445501041363677 + ], + [ + -80.85264424806468, + 26.373157885412816 + ], + [ + -80.93241888575821, + 26.373157885412816 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.85264424806468, + 24.926294766395593 + ], + [ + -80.85264424806468, + 24.998637922346454 + ], + [ + -80.77286961037115, + 24.926294766395593 + ], + [ + -80.85264424806468, + 24.926294766395593 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.85264424806468, + 24.998637922346454 + ], + [ + -80.77286961037115, + 24.998637922346454 + ], + [ + -80.77286961037115, + 24.926294766395593 + ], + [ + -80.85264424806468, + 24.998637922346454 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.85264424806468, + 24.998637922346454 + ], + [ + -80.77286961037115, + 25.070981078297315 + ], + [ + -80.77286961037115, + 24.998637922346454 + ], + [ + -80.85264424806468, + 24.998637922346454 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.85264424806468, + 24.998637922346454 + ], + [ + -80.85264424806468, + 25.070981078297315 + ], + [ + -80.77286961037115, + 25.070981078297315 + ], + [ + -80.85264424806468, + 24.998637922346454 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.85264424806468, + 25.070981078297315 + ], + [ + -80.85264424806468, + 25.143324234248176 + ], + [ + -80.77286961037115, + 25.070981078297315 + ], + [ + -80.85264424806468, + 25.070981078297315 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.85264424806468, + 25.143324234248176 + ], + [ + -80.77286961037115, + 25.143324234248176 + ], + [ + -80.77286961037115, + 25.070981078297315 + ], + [ + -80.85264424806468, + 25.143324234248176 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.85264424806468, + 25.143324234248176 + ], + [ + -80.77286961037115, + 25.215667390199037 + ], + [ + -80.77286961037115, + 25.143324234248176 + ], + [ + -80.85264424806468, + 25.143324234248176 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.85264424806468, + 25.143324234248176 + ], + [ + -80.85264424806468, + 25.215667390199037 + ], + [ + -80.77286961037115, + 25.215667390199037 + ], + [ + -80.85264424806468, + 25.143324234248176 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.85264424806468, + 25.215667390199037 + ], + [ + -80.85264424806468, + 25.2880105461499 + ], + [ + -80.77286961037115, + 25.215667390199037 + ], + [ + -80.85264424806468, + 25.215667390199037 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.85264424806468, + 25.2880105461499 + ], + [ + -80.77286961037115, + 25.2880105461499 + ], + [ + -80.77286961037115, + 25.215667390199037 + ], + [ + -80.85264424806468, + 25.2880105461499 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.85264424806468, + 25.2880105461499 + ], + [ + -80.77286961037115, + 25.36035370210076 + ], + [ + -80.77286961037115, + 25.2880105461499 + ], + [ + -80.85264424806468, + 25.2880105461499 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.85264424806468, + 25.2880105461499 + ], + [ + -80.85264424806468, + 25.36035370210076 + ], + [ + -80.77286961037115, + 25.36035370210076 + ], + [ + -80.85264424806468, + 25.2880105461499 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.85264424806468, + 25.36035370210076 + ], + [ + -80.85264424806468, + 25.43269685805162 + ], + [ + -80.77286961037115, + 25.36035370210076 + ], + [ + -80.85264424806468, + 25.36035370210076 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.85264424806468, + 25.43269685805162 + ], + [ + -80.77286961037115, + 25.43269685805162 + ], + [ + -80.77286961037115, + 25.36035370210076 + ], + [ + -80.85264424806468, + 25.43269685805162 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.85264424806468, + 25.43269685805162 + ], + [ + -80.77286961037115, + 25.505040014002482 + ], + [ + -80.77286961037115, + 25.43269685805162 + ], + [ + -80.85264424806468, + 25.43269685805162 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.85264424806468, + 25.43269685805162 + ], + [ + -80.85264424806468, + 25.505040014002482 + ], + [ + -80.77286961037115, + 25.505040014002482 + ], + [ + -80.85264424806468, + 25.43269685805162 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.85264424806468, + 25.505040014002482 + ], + [ + -80.85264424806468, + 25.577383169953343 + ], + [ + -80.77286961037115, + 25.505040014002482 + ], + [ + -80.85264424806468, + 25.505040014002482 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.85264424806468, + 25.577383169953343 + ], + [ + -80.77286961037115, + 25.577383169953343 + ], + [ + -80.77286961037115, + 25.505040014002482 + ], + [ + -80.85264424806468, + 25.577383169953343 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.85264424806468, + 25.577383169953343 + ], + [ + -80.77286961037115, + 25.649726325904204 + ], + [ + -80.77286961037115, + 25.577383169953343 + ], + [ + -80.85264424806468, + 25.577383169953343 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.85264424806468, + 25.577383169953343 + ], + [ + -80.85264424806468, + 25.649726325904204 + ], + [ + -80.77286961037115, + 25.649726325904204 + ], + [ + -80.85264424806468, + 25.577383169953343 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.85264424806468, + 25.649726325904204 + ], + [ + -80.85264424806468, + 25.722069481855065 + ], + [ + -80.77286961037115, + 25.649726325904204 + ], + [ + -80.85264424806468, + 25.649726325904204 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.85264424806468, + 25.722069481855065 + ], + [ + -80.77286961037115, + 25.722069481855065 + ], + [ + -80.77286961037115, + 25.649726325904204 + ], + [ + -80.85264424806468, + 25.722069481855065 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.85264424806468, + 25.722069481855065 + ], + [ + -80.77286961037115, + 25.794412637805927 + ], + [ + -80.77286961037115, + 25.722069481855065 + ], + [ + -80.85264424806468, + 25.722069481855065 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.85264424806468, + 25.722069481855065 + ], + [ + -80.85264424806468, + 25.794412637805927 + ], + [ + -80.77286961037115, + 25.794412637805927 + ], + [ + -80.85264424806468, + 25.722069481855065 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.85264424806468, + 25.794412637805927 + ], + [ + -80.85264424806468, + 25.866755793756788 + ], + [ + -80.77286961037115, + 25.794412637805927 + ], + [ + -80.85264424806468, + 25.794412637805927 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.85264424806468, + 25.866755793756788 + ], + [ + -80.77286961037115, + 25.866755793756788 + ], + [ + -80.77286961037115, + 25.794412637805927 + ], + [ + -80.85264424806468, + 25.866755793756788 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.85264424806468, + 25.866755793756788 + ], + [ + -80.77286961037115, + 25.93909894970765 + ], + [ + -80.77286961037115, + 25.866755793756788 + ], + [ + -80.85264424806468, + 25.866755793756788 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.85264424806468, + 25.866755793756788 + ], + [ + -80.85264424806468, + 25.93909894970765 + ], + [ + -80.77286961037115, + 25.93909894970765 + ], + [ + -80.85264424806468, + 25.866755793756788 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.85264424806468, + 25.93909894970765 + ], + [ + -80.85264424806468, + 26.01144210565851 + ], + [ + -80.77286961037115, + 25.93909894970765 + ], + [ + -80.85264424806468, + 25.93909894970765 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.85264424806468, + 26.01144210565851 + ], + [ + -80.77286961037115, + 26.01144210565851 + ], + [ + -80.77286961037115, + 25.93909894970765 + ], + [ + -80.85264424806468, + 26.01144210565851 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.85264424806468, + 26.01144210565851 + ], + [ + -80.77286961037115, + 26.08378526160937 + ], + [ + -80.77286961037115, + 26.01144210565851 + ], + [ + -80.85264424806468, + 26.01144210565851 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.85264424806468, + 26.01144210565851 + ], + [ + -80.85264424806468, + 26.08378526160937 + ], + [ + -80.77286961037115, + 26.08378526160937 + ], + [ + -80.85264424806468, + 26.01144210565851 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.85264424806468, + 26.08378526160937 + ], + [ + -80.85264424806468, + 26.156128417560232 + ], + [ + -80.77286961037115, + 26.08378526160937 + ], + [ + -80.85264424806468, + 26.08378526160937 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.85264424806468, + 26.156128417560232 + ], + [ + -80.77286961037115, + 26.156128417560232 + ], + [ + -80.77286961037115, + 26.08378526160937 + ], + [ + -80.85264424806468, + 26.156128417560232 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.85264424806468, + 26.156128417560232 + ], + [ + -80.77286961037115, + 26.228471573511094 + ], + [ + -80.77286961037115, + 26.156128417560232 + ], + [ + -80.85264424806468, + 26.156128417560232 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.85264424806468, + 26.156128417560232 + ], + [ + -80.85264424806468, + 26.228471573511094 + ], + [ + -80.77286961037115, + 26.228471573511094 + ], + [ + -80.85264424806468, + 26.156128417560232 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.85264424806468, + 26.228471573511094 + ], + [ + -80.85264424806468, + 26.300814729461955 + ], + [ + -80.77286961037115, + 26.228471573511094 + ], + [ + -80.85264424806468, + 26.228471573511094 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.85264424806468, + 26.300814729461955 + ], + [ + -80.77286961037115, + 26.300814729461955 + ], + [ + -80.77286961037115, + 26.228471573511094 + ], + [ + -80.85264424806468, + 26.300814729461955 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.85264424806468, + 26.300814729461955 + ], + [ + -80.77286961037115, + 26.373157885412816 + ], + [ + -80.77286961037115, + 26.300814729461955 + ], + [ + -80.85264424806468, + 26.300814729461955 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.85264424806468, + 26.300814729461955 + ], + [ + -80.85264424806468, + 26.373157885412816 + ], + [ + -80.77286961037115, + 26.373157885412816 + ], + [ + -80.85264424806468, + 26.300814729461955 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.85264424806468, + 26.373157885412816 + ], + [ + -80.85264424806468, + 26.445501041363677 + ], + [ + -80.77286961037115, + 26.373157885412816 + ], + [ + -80.85264424806468, + 26.373157885412816 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.85264424806468, + 26.445501041363677 + ], + [ + -80.77286961037115, + 26.445501041363677 + ], + [ + -80.77286961037115, + 26.373157885412816 + ], + [ + -80.85264424806468, + 26.445501041363677 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.77286961037115, + 24.926294766395593 + ], + [ + -80.77286961037115, + 24.998637922346454 + ], + [ + -80.69309497267761, + 24.998637922346454 + ], + [ + -80.77286961037115, + 24.926294766395593 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.77286961037115, + 24.926294766395593 + ], + [ + -80.69309497267761, + 24.998637922346454 + ], + [ + -80.69309497267761, + 24.926294766395593 + ], + [ + -80.77286961037115, + 24.926294766395593 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.77286961037115, + 24.998637922346454 + ], + [ + -80.77286961037115, + 25.070981078297315 + ], + [ + -80.69309497267761, + 24.998637922346454 + ], + [ + -80.77286961037115, + 24.998637922346454 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.77286961037115, + 25.070981078297315 + ], + [ + -80.69309497267761, + 25.070981078297315 + ], + [ + -80.69309497267761, + 24.998637922346454 + ], + [ + -80.77286961037115, + 25.070981078297315 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.77286961037115, + 25.070981078297315 + ], + [ + -80.77286961037115, + 25.143324234248176 + ], + [ + -80.69309497267761, + 25.143324234248176 + ], + [ + -80.77286961037115, + 25.070981078297315 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.77286961037115, + 25.070981078297315 + ], + [ + -80.69309497267761, + 25.143324234248176 + ], + [ + -80.69309497267761, + 25.070981078297315 + ], + [ + -80.77286961037115, + 25.070981078297315 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.77286961037115, + 25.143324234248176 + ], + [ + -80.77286961037115, + 25.215667390199037 + ], + [ + -80.69309497267761, + 25.143324234248176 + ], + [ + -80.77286961037115, + 25.143324234248176 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.77286961037115, + 25.215667390199037 + ], + [ + -80.69309497267761, + 25.215667390199037 + ], + [ + -80.69309497267761, + 25.143324234248176 + ], + [ + -80.77286961037115, + 25.215667390199037 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.77286961037115, + 25.215667390199037 + ], + [ + -80.77286961037115, + 25.2880105461499 + ], + [ + -80.69309497267761, + 25.2880105461499 + ], + [ + -80.77286961037115, + 25.215667390199037 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.77286961037115, + 25.215667390199037 + ], + [ + -80.69309497267761, + 25.2880105461499 + ], + [ + -80.69309497267761, + 25.215667390199037 + ], + [ + -80.77286961037115, + 25.215667390199037 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.77286961037115, + 25.2880105461499 + ], + [ + -80.77286961037115, + 25.36035370210076 + ], + [ + -80.69309497267761, + 25.2880105461499 + ], + [ + -80.77286961037115, + 25.2880105461499 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.77286961037115, + 25.36035370210076 + ], + [ + -80.69309497267761, + 25.36035370210076 + ], + [ + -80.69309497267761, + 25.2880105461499 + ], + [ + -80.77286961037115, + 25.36035370210076 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.77286961037115, + 25.36035370210076 + ], + [ + -80.77286961037115, + 25.43269685805162 + ], + [ + -80.69309497267761, + 25.43269685805162 + ], + [ + -80.77286961037115, + 25.36035370210076 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.77286961037115, + 25.36035370210076 + ], + [ + -80.69309497267761, + 25.43269685805162 + ], + [ + -80.69309497267761, + 25.36035370210076 + ], + [ + -80.77286961037115, + 25.36035370210076 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.77286961037115, + 25.43269685805162 + ], + [ + -80.77286961037115, + 25.505040014002482 + ], + [ + -80.69309497267761, + 25.43269685805162 + ], + [ + -80.77286961037115, + 25.43269685805162 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.77286961037115, + 25.505040014002482 + ], + [ + -80.69309497267761, + 25.505040014002482 + ], + [ + -80.69309497267761, + 25.43269685805162 + ], + [ + -80.77286961037115, + 25.505040014002482 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.77286961037115, + 25.505040014002482 + ], + [ + -80.77286961037115, + 25.577383169953343 + ], + [ + -80.69309497267761, + 25.577383169953343 + ], + [ + -80.77286961037115, + 25.505040014002482 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.77286961037115, + 25.505040014002482 + ], + [ + -80.69309497267761, + 25.577383169953343 + ], + [ + -80.69309497267761, + 25.505040014002482 + ], + [ + -80.77286961037115, + 25.505040014002482 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.77286961037115, + 25.577383169953343 + ], + [ + -80.77286961037115, + 25.649726325904204 + ], + [ + -80.69309497267761, + 25.577383169953343 + ], + [ + -80.77286961037115, + 25.577383169953343 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.77286961037115, + 25.649726325904204 + ], + [ + -80.69309497267761, + 25.649726325904204 + ], + [ + -80.69309497267761, + 25.577383169953343 + ], + [ + -80.77286961037115, + 25.649726325904204 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.77286961037115, + 25.649726325904204 + ], + [ + -80.77286961037115, + 25.722069481855065 + ], + [ + -80.69309497267761, + 25.722069481855065 + ], + [ + -80.77286961037115, + 25.649726325904204 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.77286961037115, + 25.649726325904204 + ], + [ + -80.69309497267761, + 25.722069481855065 + ], + [ + -80.69309497267761, + 25.649726325904204 + ], + [ + -80.77286961037115, + 25.649726325904204 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.77286961037115, + 25.722069481855065 + ], + [ + -80.77286961037115, + 25.794412637805927 + ], + [ + -80.69309497267761, + 25.722069481855065 + ], + [ + -80.77286961037115, + 25.722069481855065 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.77286961037115, + 25.794412637805927 + ], + [ + -80.69309497267761, + 25.794412637805927 + ], + [ + -80.69309497267761, + 25.722069481855065 + ], + [ + -80.77286961037115, + 25.794412637805927 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.77286961037115, + 25.794412637805927 + ], + [ + -80.77286961037115, + 25.866755793756788 + ], + [ + -80.69309497267761, + 25.866755793756788 + ], + [ + -80.77286961037115, + 25.794412637805927 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.77286961037115, + 25.794412637805927 + ], + [ + -80.69309497267761, + 25.866755793756788 + ], + [ + -80.69309497267761, + 25.794412637805927 + ], + [ + -80.77286961037115, + 25.794412637805927 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.77286961037115, + 25.866755793756788 + ], + [ + -80.77286961037115, + 25.93909894970765 + ], + [ + -80.69309497267761, + 25.866755793756788 + ], + [ + -80.77286961037115, + 25.866755793756788 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.77286961037115, + 25.93909894970765 + ], + [ + -80.69309497267761, + 25.93909894970765 + ], + [ + -80.69309497267761, + 25.866755793756788 + ], + [ + -80.77286961037115, + 25.93909894970765 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.77286961037115, + 25.93909894970765 + ], + [ + -80.77286961037115, + 26.01144210565851 + ], + [ + -80.69309497267761, + 26.01144210565851 + ], + [ + -80.77286961037115, + 25.93909894970765 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.77286961037115, + 25.93909894970765 + ], + [ + -80.69309497267761, + 26.01144210565851 + ], + [ + -80.69309497267761, + 25.93909894970765 + ], + [ + -80.77286961037115, + 25.93909894970765 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.77286961037115, + 26.01144210565851 + ], + [ + -80.77286961037115, + 26.08378526160937 + ], + [ + -80.69309497267761, + 26.01144210565851 + ], + [ + -80.77286961037115, + 26.01144210565851 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.77286961037115, + 26.08378526160937 + ], + [ + -80.69309497267761, + 26.08378526160937 + ], + [ + -80.69309497267761, + 26.01144210565851 + ], + [ + -80.77286961037115, + 26.08378526160937 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.77286961037115, + 26.08378526160937 + ], + [ + -80.77286961037115, + 26.156128417560232 + ], + [ + -80.69309497267761, + 26.156128417560232 + ], + [ + -80.77286961037115, + 26.08378526160937 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.77286961037115, + 26.08378526160937 + ], + [ + -80.69309497267761, + 26.156128417560232 + ], + [ + -80.69309497267761, + 26.08378526160937 + ], + [ + -80.77286961037115, + 26.08378526160937 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.77286961037115, + 26.156128417560232 + ], + [ + -80.77286961037115, + 26.228471573511094 + ], + [ + -80.69309497267761, + 26.156128417560232 + ], + [ + -80.77286961037115, + 26.156128417560232 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.77286961037115, + 26.228471573511094 + ], + [ + -80.69309497267761, + 26.228471573511094 + ], + [ + -80.69309497267761, + 26.156128417560232 + ], + [ + -80.77286961037115, + 26.228471573511094 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.77286961037115, + 26.228471573511094 + ], + [ + -80.77286961037115, + 26.300814729461955 + ], + [ + -80.69309497267761, + 26.300814729461955 + ], + [ + -80.77286961037115, + 26.228471573511094 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.77286961037115, + 26.228471573511094 + ], + [ + -80.69309497267761, + 26.300814729461955 + ], + [ + -80.69309497267761, + 26.228471573511094 + ], + [ + -80.77286961037115, + 26.228471573511094 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.77286961037115, + 26.300814729461955 + ], + [ + -80.77286961037115, + 26.373157885412816 + ], + [ + -80.69309497267761, + 26.300814729461955 + ], + [ + -80.77286961037115, + 26.300814729461955 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.77286961037115, + 26.373157885412816 + ], + [ + -80.69309497267761, + 26.373157885412816 + ], + [ + -80.69309497267761, + 26.300814729461955 + ], + [ + -80.77286961037115, + 26.373157885412816 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.77286961037115, + 26.373157885412816 + ], + [ + -80.77286961037115, + 26.445501041363677 + ], + [ + -80.69309497267761, + 26.445501041363677 + ], + [ + -80.77286961037115, + 26.373157885412816 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.77286961037115, + 26.373157885412816 + ], + [ + -80.69309497267761, + 26.445501041363677 + ], + [ + -80.69309497267761, + 26.373157885412816 + ], + [ + -80.77286961037115, + 26.373157885412816 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.69309497267761, + 24.926294766395593 + ], + [ + -80.69309497267761, + 24.998637922346454 + ], + [ + -80.61332033498408, + 24.926294766395593 + ], + [ + -80.69309497267761, + 24.926294766395593 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.69309497267761, + 24.998637922346454 + ], + [ + -80.61332033498408, + 24.998637922346454 + ], + [ + -80.61332033498408, + 24.926294766395593 + ], + [ + -80.69309497267761, + 24.998637922346454 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.69309497267761, + 24.998637922346454 + ], + [ + -80.61332033498408, + 25.070981078297315 + ], + [ + -80.61332033498408, + 24.998637922346454 + ], + [ + -80.69309497267761, + 24.998637922346454 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.69309497267761, + 24.998637922346454 + ], + [ + -80.69309497267761, + 25.070981078297315 + ], + [ + -80.61332033498408, + 25.070981078297315 + ], + [ + -80.69309497267761, + 24.998637922346454 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.69309497267761, + 25.070981078297315 + ], + [ + -80.69309497267761, + 25.143324234248176 + ], + [ + -80.61332033498408, + 25.070981078297315 + ], + [ + -80.69309497267761, + 25.070981078297315 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.69309497267761, + 25.143324234248176 + ], + [ + -80.61332033498408, + 25.143324234248176 + ], + [ + -80.61332033498408, + 25.070981078297315 + ], + [ + -80.69309497267761, + 25.143324234248176 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.69309497267761, + 25.143324234248176 + ], + [ + -80.61332033498408, + 25.215667390199037 + ], + [ + -80.61332033498408, + 25.143324234248176 + ], + [ + -80.69309497267761, + 25.143324234248176 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.69309497267761, + 25.143324234248176 + ], + [ + -80.69309497267761, + 25.215667390199037 + ], + [ + -80.61332033498408, + 25.215667390199037 + ], + [ + -80.69309497267761, + 25.143324234248176 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.69309497267761, + 25.215667390199037 + ], + [ + -80.69309497267761, + 25.2880105461499 + ], + [ + -80.61332033498408, + 25.215667390199037 + ], + [ + -80.69309497267761, + 25.215667390199037 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.69309497267761, + 25.2880105461499 + ], + [ + -80.61332033498408, + 25.2880105461499 + ], + [ + -80.61332033498408, + 25.215667390199037 + ], + [ + -80.69309497267761, + 25.2880105461499 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.69309497267761, + 25.2880105461499 + ], + [ + -80.61332033498408, + 25.36035370210076 + ], + [ + -80.61332033498408, + 25.2880105461499 + ], + [ + -80.69309497267761, + 25.2880105461499 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.69309497267761, + 25.2880105461499 + ], + [ + -80.69309497267761, + 25.36035370210076 + ], + [ + -80.61332033498408, + 25.36035370210076 + ], + [ + -80.69309497267761, + 25.2880105461499 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.69309497267761, + 25.36035370210076 + ], + [ + -80.69309497267761, + 25.43269685805162 + ], + [ + -80.61332033498408, + 25.36035370210076 + ], + [ + -80.69309497267761, + 25.36035370210076 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.69309497267761, + 25.43269685805162 + ], + [ + -80.61332033498408, + 25.43269685805162 + ], + [ + -80.61332033498408, + 25.36035370210076 + ], + [ + -80.69309497267761, + 25.43269685805162 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.69309497267761, + 25.43269685805162 + ], + [ + -80.61332033498408, + 25.505040014002482 + ], + [ + -80.61332033498408, + 25.43269685805162 + ], + [ + -80.69309497267761, + 25.43269685805162 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.69309497267761, + 25.43269685805162 + ], + [ + -80.69309497267761, + 25.505040014002482 + ], + [ + -80.61332033498408, + 25.505040014002482 + ], + [ + -80.69309497267761, + 25.43269685805162 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.69309497267761, + 25.505040014002482 + ], + [ + -80.69309497267761, + 25.577383169953343 + ], + [ + -80.61332033498408, + 25.505040014002482 + ], + [ + -80.69309497267761, + 25.505040014002482 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.69309497267761, + 25.577383169953343 + ], + [ + -80.61332033498408, + 25.577383169953343 + ], + [ + -80.61332033498408, + 25.505040014002482 + ], + [ + -80.69309497267761, + 25.577383169953343 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.69309497267761, + 25.577383169953343 + ], + [ + -80.61332033498408, + 25.649726325904204 + ], + [ + -80.61332033498408, + 25.577383169953343 + ], + [ + -80.69309497267761, + 25.577383169953343 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.69309497267761, + 25.577383169953343 + ], + [ + -80.69309497267761, + 25.649726325904204 + ], + [ + -80.61332033498408, + 25.649726325904204 + ], + [ + -80.69309497267761, + 25.577383169953343 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.69309497267761, + 25.649726325904204 + ], + [ + -80.69309497267761, + 25.722069481855065 + ], + [ + -80.61332033498408, + 25.649726325904204 + ], + [ + -80.69309497267761, + 25.649726325904204 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.69309497267761, + 25.722069481855065 + ], + [ + -80.61332033498408, + 25.722069481855065 + ], + [ + -80.61332033498408, + 25.649726325904204 + ], + [ + -80.69309497267761, + 25.722069481855065 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.69309497267761, + 25.722069481855065 + ], + [ + -80.61332033498408, + 25.794412637805927 + ], + [ + -80.61332033498408, + 25.722069481855065 + ], + [ + -80.69309497267761, + 25.722069481855065 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.69309497267761, + 25.722069481855065 + ], + [ + -80.69309497267761, + 25.794412637805927 + ], + [ + -80.61332033498408, + 25.794412637805927 + ], + [ + -80.69309497267761, + 25.722069481855065 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.69309497267761, + 25.794412637805927 + ], + [ + -80.69309497267761, + 25.866755793756788 + ], + [ + -80.61332033498408, + 25.794412637805927 + ], + [ + -80.69309497267761, + 25.794412637805927 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.69309497267761, + 25.866755793756788 + ], + [ + -80.61332033498408, + 25.866755793756788 + ], + [ + -80.61332033498408, + 25.794412637805927 + ], + [ + -80.69309497267761, + 25.866755793756788 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.69309497267761, + 25.866755793756788 + ], + [ + -80.61332033498408, + 25.93909894970765 + ], + [ + -80.61332033498408, + 25.866755793756788 + ], + [ + -80.69309497267761, + 25.866755793756788 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.69309497267761, + 25.866755793756788 + ], + [ + -80.69309497267761, + 25.93909894970765 + ], + [ + -80.61332033498408, + 25.93909894970765 + ], + [ + -80.69309497267761, + 25.866755793756788 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.69309497267761, + 25.93909894970765 + ], + [ + -80.69309497267761, + 26.01144210565851 + ], + [ + -80.61332033498408, + 25.93909894970765 + ], + [ + -80.69309497267761, + 25.93909894970765 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.69309497267761, + 26.01144210565851 + ], + [ + -80.61332033498408, + 26.01144210565851 + ], + [ + -80.61332033498408, + 25.93909894970765 + ], + [ + -80.69309497267761, + 26.01144210565851 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.69309497267761, + 26.01144210565851 + ], + [ + -80.61332033498408, + 26.08378526160937 + ], + [ + -80.61332033498408, + 26.01144210565851 + ], + [ + -80.69309497267761, + 26.01144210565851 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.69309497267761, + 26.01144210565851 + ], + [ + -80.69309497267761, + 26.08378526160937 + ], + [ + -80.61332033498408, + 26.08378526160937 + ], + [ + -80.69309497267761, + 26.01144210565851 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.69309497267761, + 26.08378526160937 + ], + [ + -80.69309497267761, + 26.156128417560232 + ], + [ + -80.61332033498408, + 26.08378526160937 + ], + [ + -80.69309497267761, + 26.08378526160937 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.69309497267761, + 26.156128417560232 + ], + [ + -80.61332033498408, + 26.156128417560232 + ], + [ + -80.61332033498408, + 26.08378526160937 + ], + [ + -80.69309497267761, + 26.156128417560232 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.69309497267761, + 26.156128417560232 + ], + [ + -80.61332033498408, + 26.228471573511094 + ], + [ + -80.61332033498408, + 26.156128417560232 + ], + [ + -80.69309497267761, + 26.156128417560232 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.69309497267761, + 26.156128417560232 + ], + [ + -80.69309497267761, + 26.228471573511094 + ], + [ + -80.61332033498408, + 26.228471573511094 + ], + [ + -80.69309497267761, + 26.156128417560232 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.69309497267761, + 26.228471573511094 + ], + [ + -80.69309497267761, + 26.300814729461955 + ], + [ + -80.61332033498408, + 26.228471573511094 + ], + [ + -80.69309497267761, + 26.228471573511094 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.69309497267761, + 26.300814729461955 + ], + [ + -80.61332033498408, + 26.300814729461955 + ], + [ + -80.61332033498408, + 26.228471573511094 + ], + [ + -80.69309497267761, + 26.300814729461955 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.69309497267761, + 26.300814729461955 + ], + [ + -80.61332033498408, + 26.373157885412816 + ], + [ + -80.61332033498408, + 26.300814729461955 + ], + [ + -80.69309497267761, + 26.300814729461955 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.69309497267761, + 26.300814729461955 + ], + [ + -80.69309497267761, + 26.373157885412816 + ], + [ + -80.61332033498408, + 26.373157885412816 + ], + [ + -80.69309497267761, + 26.300814729461955 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.69309497267761, + 26.373157885412816 + ], + [ + -80.69309497267761, + 26.445501041363677 + ], + [ + -80.61332033498408, + 26.373157885412816 + ], + [ + -80.69309497267761, + 26.373157885412816 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.69309497267761, + 26.445501041363677 + ], + [ + -80.61332033498408, + 26.445501041363677 + ], + [ + -80.61332033498408, + 26.373157885412816 + ], + [ + -80.69309497267761, + 26.445501041363677 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.61332033498408, + 24.926294766395593 + ], + [ + -80.61332033498408, + 24.998637922346454 + ], + [ + -80.53354569729055, + 24.998637922346454 + ], + [ + -80.61332033498408, + 24.926294766395593 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.61332033498408, + 24.926294766395593 + ], + [ + -80.53354569729055, + 24.998637922346454 + ], + [ + -80.53354569729055, + 24.926294766395593 + ], + [ + -80.61332033498408, + 24.926294766395593 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.61332033498408, + 24.998637922346454 + ], + [ + -80.61332033498408, + 25.070981078297315 + ], + [ + -80.53354569729055, + 24.998637922346454 + ], + [ + -80.61332033498408, + 24.998637922346454 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.61332033498408, + 25.070981078297315 + ], + [ + -80.53354569729055, + 25.070981078297315 + ], + [ + -80.53354569729055, + 24.998637922346454 + ], + [ + -80.61332033498408, + 25.070981078297315 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.61332033498408, + 25.070981078297315 + ], + [ + -80.61332033498408, + 25.143324234248176 + ], + [ + -80.53354569729055, + 25.143324234248176 + ], + [ + -80.61332033498408, + 25.070981078297315 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.61332033498408, + 25.070981078297315 + ], + [ + -80.53354569729055, + 25.143324234248176 + ], + [ + -80.53354569729055, + 25.070981078297315 + ], + [ + -80.61332033498408, + 25.070981078297315 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.61332033498408, + 25.143324234248176 + ], + [ + -80.61332033498408, + 25.215667390199037 + ], + [ + -80.53354569729055, + 25.143324234248176 + ], + [ + -80.61332033498408, + 25.143324234248176 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.61332033498408, + 25.215667390199037 + ], + [ + -80.53354569729055, + 25.215667390199037 + ], + [ + -80.53354569729055, + 25.143324234248176 + ], + [ + -80.61332033498408, + 25.215667390199037 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.61332033498408, + 25.215667390199037 + ], + [ + -80.61332033498408, + 25.2880105461499 + ], + [ + -80.53354569729055, + 25.2880105461499 + ], + [ + -80.61332033498408, + 25.215667390199037 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.61332033498408, + 25.215667390199037 + ], + [ + -80.53354569729055, + 25.2880105461499 + ], + [ + -80.53354569729055, + 25.215667390199037 + ], + [ + -80.61332033498408, + 25.215667390199037 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.61332033498408, + 25.2880105461499 + ], + [ + -80.61332033498408, + 25.36035370210076 + ], + [ + -80.53354569729055, + 25.2880105461499 + ], + [ + -80.61332033498408, + 25.2880105461499 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.61332033498408, + 25.36035370210076 + ], + [ + -80.53354569729055, + 25.36035370210076 + ], + [ + -80.53354569729055, + 25.2880105461499 + ], + [ + -80.61332033498408, + 25.36035370210076 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.61332033498408, + 25.36035370210076 + ], + [ + -80.61332033498408, + 25.43269685805162 + ], + [ + -80.53354569729055, + 25.43269685805162 + ], + [ + -80.61332033498408, + 25.36035370210076 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.61332033498408, + 25.36035370210076 + ], + [ + -80.53354569729055, + 25.43269685805162 + ], + [ + -80.53354569729055, + 25.36035370210076 + ], + [ + -80.61332033498408, + 25.36035370210076 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.61332033498408, + 25.43269685805162 + ], + [ + -80.61332033498408, + 25.505040014002482 + ], + [ + -80.53354569729055, + 25.43269685805162 + ], + [ + -80.61332033498408, + 25.43269685805162 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.61332033498408, + 25.505040014002482 + ], + [ + -80.53354569729055, + 25.505040014002482 + ], + [ + -80.53354569729055, + 25.43269685805162 + ], + [ + -80.61332033498408, + 25.505040014002482 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.61332033498408, + 25.505040014002482 + ], + [ + -80.61332033498408, + 25.577383169953343 + ], + [ + -80.53354569729055, + 25.577383169953343 + ], + [ + -80.61332033498408, + 25.505040014002482 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.61332033498408, + 25.505040014002482 + ], + [ + -80.53354569729055, + 25.577383169953343 + ], + [ + -80.53354569729055, + 25.505040014002482 + ], + [ + -80.61332033498408, + 25.505040014002482 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.61332033498408, + 25.577383169953343 + ], + [ + -80.61332033498408, + 25.649726325904204 + ], + [ + -80.53354569729055, + 25.577383169953343 + ], + [ + -80.61332033498408, + 25.577383169953343 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.61332033498408, + 25.649726325904204 + ], + [ + -80.53354569729055, + 25.649726325904204 + ], + [ + -80.53354569729055, + 25.577383169953343 + ], + [ + -80.61332033498408, + 25.649726325904204 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.61332033498408, + 25.649726325904204 + ], + [ + -80.61332033498408, + 25.722069481855065 + ], + [ + -80.53354569729055, + 25.722069481855065 + ], + [ + -80.61332033498408, + 25.649726325904204 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.61332033498408, + 25.649726325904204 + ], + [ + -80.53354569729055, + 25.722069481855065 + ], + [ + -80.53354569729055, + 25.649726325904204 + ], + [ + -80.61332033498408, + 25.649726325904204 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.61332033498408, + 25.722069481855065 + ], + [ + -80.61332033498408, + 25.794412637805927 + ], + [ + -80.53354569729055, + 25.722069481855065 + ], + [ + -80.61332033498408, + 25.722069481855065 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.61332033498408, + 25.794412637805927 + ], + [ + -80.53354569729055, + 25.794412637805927 + ], + [ + -80.53354569729055, + 25.722069481855065 + ], + [ + -80.61332033498408, + 25.794412637805927 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.61332033498408, + 25.794412637805927 + ], + [ + -80.61332033498408, + 25.866755793756788 + ], + [ + -80.53354569729055, + 25.866755793756788 + ], + [ + -80.61332033498408, + 25.794412637805927 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.61332033498408, + 25.794412637805927 + ], + [ + -80.53354569729055, + 25.866755793756788 + ], + [ + -80.53354569729055, + 25.794412637805927 + ], + [ + -80.61332033498408, + 25.794412637805927 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.61332033498408, + 25.866755793756788 + ], + [ + -80.61332033498408, + 25.93909894970765 + ], + [ + -80.53354569729055, + 25.866755793756788 + ], + [ + -80.61332033498408, + 25.866755793756788 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.61332033498408, + 25.93909894970765 + ], + [ + -80.53354569729055, + 25.93909894970765 + ], + [ + -80.53354569729055, + 25.866755793756788 + ], + [ + -80.61332033498408, + 25.93909894970765 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.61332033498408, + 25.93909894970765 + ], + [ + -80.61332033498408, + 26.01144210565851 + ], + [ + -80.53354569729055, + 26.01144210565851 + ], + [ + -80.61332033498408, + 25.93909894970765 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.61332033498408, + 25.93909894970765 + ], + [ + -80.53354569729055, + 26.01144210565851 + ], + [ + -80.53354569729055, + 25.93909894970765 + ], + [ + -80.61332033498408, + 25.93909894970765 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.61332033498408, + 26.01144210565851 + ], + [ + -80.61332033498408, + 26.08378526160937 + ], + [ + -80.53354569729055, + 26.01144210565851 + ], + [ + -80.61332033498408, + 26.01144210565851 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.61332033498408, + 26.08378526160937 + ], + [ + -80.53354569729055, + 26.08378526160937 + ], + [ + -80.53354569729055, + 26.01144210565851 + ], + [ + -80.61332033498408, + 26.08378526160937 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.61332033498408, + 26.08378526160937 + ], + [ + -80.61332033498408, + 26.156128417560232 + ], + [ + -80.53354569729055, + 26.156128417560232 + ], + [ + -80.61332033498408, + 26.08378526160937 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.61332033498408, + 26.08378526160937 + ], + [ + -80.53354569729055, + 26.156128417560232 + ], + [ + -80.53354569729055, + 26.08378526160937 + ], + [ + -80.61332033498408, + 26.08378526160937 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.61332033498408, + 26.156128417560232 + ], + [ + -80.61332033498408, + 26.228471573511094 + ], + [ + -80.53354569729055, + 26.156128417560232 + ], + [ + -80.61332033498408, + 26.156128417560232 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.61332033498408, + 26.228471573511094 + ], + [ + -80.53354569729055, + 26.228471573511094 + ], + [ + -80.53354569729055, + 26.156128417560232 + ], + [ + -80.61332033498408, + 26.228471573511094 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.61332033498408, + 26.228471573511094 + ], + [ + -80.61332033498408, + 26.300814729461955 + ], + [ + -80.53354569729055, + 26.300814729461955 + ], + [ + -80.61332033498408, + 26.228471573511094 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.61332033498408, + 26.228471573511094 + ], + [ + -80.53354569729055, + 26.300814729461955 + ], + [ + -80.53354569729055, + 26.228471573511094 + ], + [ + -80.61332033498408, + 26.228471573511094 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.61332033498408, + 26.300814729461955 + ], + [ + -80.61332033498408, + 26.373157885412816 + ], + [ + -80.53354569729055, + 26.300814729461955 + ], + [ + -80.61332033498408, + 26.300814729461955 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.61332033498408, + 26.373157885412816 + ], + [ + -80.53354569729055, + 26.373157885412816 + ], + [ + -80.53354569729055, + 26.300814729461955 + ], + [ + -80.61332033498408, + 26.373157885412816 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.61332033498408, + 26.373157885412816 + ], + [ + -80.61332033498408, + 26.445501041363677 + ], + [ + -80.53354569729055, + 26.445501041363677 + ], + [ + -80.61332033498408, + 26.373157885412816 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.61332033498408, + 26.373157885412816 + ], + [ + -80.53354569729055, + 26.445501041363677 + ], + [ + -80.53354569729055, + 26.373157885412816 + ], + [ + -80.61332033498408, + 26.373157885412816 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.53354569729055, + 24.926294766395593 + ], + [ + -80.53354569729055, + 24.998637922346454 + ], + [ + -80.45377105959702, + 24.926294766395593 + ], + [ + -80.53354569729055, + 24.926294766395593 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.53354569729055, + 24.998637922346454 + ], + [ + -80.45377105959702, + 24.998637922346454 + ], + [ + -80.45377105959702, + 24.926294766395593 + ], + [ + -80.53354569729055, + 24.998637922346454 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.53354569729055, + 24.998637922346454 + ], + [ + -80.45377105959702, + 25.070981078297315 + ], + [ + -80.45377105959702, + 24.998637922346454 + ], + [ + -80.53354569729055, + 24.998637922346454 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.53354569729055, + 24.998637922346454 + ], + [ + -80.53354569729055, + 25.070981078297315 + ], + [ + -80.45377105959702, + 25.070981078297315 + ], + [ + -80.53354569729055, + 24.998637922346454 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.53354569729055, + 25.070981078297315 + ], + [ + -80.53354569729055, + 25.143324234248176 + ], + [ + -80.45377105959702, + 25.070981078297315 + ], + [ + -80.53354569729055, + 25.070981078297315 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.53354569729055, + 25.143324234248176 + ], + [ + -80.45377105959702, + 25.143324234248176 + ], + [ + -80.45377105959702, + 25.070981078297315 + ], + [ + -80.53354569729055, + 25.143324234248176 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.53354569729055, + 25.143324234248176 + ], + [ + -80.45377105959702, + 25.215667390199037 + ], + [ + -80.45377105959702, + 25.143324234248176 + ], + [ + -80.53354569729055, + 25.143324234248176 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.53354569729055, + 25.143324234248176 + ], + [ + -80.53354569729055, + 25.215667390199037 + ], + [ + -80.45377105959702, + 25.215667390199037 + ], + [ + -80.53354569729055, + 25.143324234248176 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.53354569729055, + 25.215667390199037 + ], + [ + -80.53354569729055, + 25.2880105461499 + ], + [ + -80.45377105959702, + 25.215667390199037 + ], + [ + -80.53354569729055, + 25.215667390199037 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.53354569729055, + 25.2880105461499 + ], + [ + -80.45377105959702, + 25.2880105461499 + ], + [ + -80.45377105959702, + 25.215667390199037 + ], + [ + -80.53354569729055, + 25.2880105461499 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.53354569729055, + 25.2880105461499 + ], + [ + -80.45377105959702, + 25.36035370210076 + ], + [ + -80.45377105959702, + 25.2880105461499 + ], + [ + -80.53354569729055, + 25.2880105461499 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.53354569729055, + 25.2880105461499 + ], + [ + -80.53354569729055, + 25.36035370210076 + ], + [ + -80.45377105959702, + 25.36035370210076 + ], + [ + -80.53354569729055, + 25.2880105461499 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.53354569729055, + 25.36035370210076 + ], + [ + -80.53354569729055, + 25.43269685805162 + ], + [ + -80.45377105959702, + 25.36035370210076 + ], + [ + -80.53354569729055, + 25.36035370210076 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.53354569729055, + 25.43269685805162 + ], + [ + -80.45377105959702, + 25.43269685805162 + ], + [ + -80.45377105959702, + 25.36035370210076 + ], + [ + -80.53354569729055, + 25.43269685805162 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.53354569729055, + 25.43269685805162 + ], + [ + -80.45377105959702, + 25.505040014002482 + ], + [ + -80.45377105959702, + 25.43269685805162 + ], + [ + -80.53354569729055, + 25.43269685805162 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.53354569729055, + 25.43269685805162 + ], + [ + -80.53354569729055, + 25.505040014002482 + ], + [ + -80.45377105959702, + 25.505040014002482 + ], + [ + -80.53354569729055, + 25.43269685805162 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.53354569729055, + 25.505040014002482 + ], + [ + -80.53354569729055, + 25.577383169953343 + ], + [ + -80.45377105959702, + 25.505040014002482 + ], + [ + -80.53354569729055, + 25.505040014002482 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.53354569729055, + 25.577383169953343 + ], + [ + -80.45377105959702, + 25.577383169953343 + ], + [ + -80.45377105959702, + 25.505040014002482 + ], + [ + -80.53354569729055, + 25.577383169953343 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.53354569729055, + 25.577383169953343 + ], + [ + -80.45377105959702, + 25.649726325904204 + ], + [ + -80.45377105959702, + 25.577383169953343 + ], + [ + -80.53354569729055, + 25.577383169953343 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.53354569729055, + 25.577383169953343 + ], + [ + -80.53354569729055, + 25.649726325904204 + ], + [ + -80.45377105959702, + 25.649726325904204 + ], + [ + -80.53354569729055, + 25.577383169953343 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.53354569729055, + 25.649726325904204 + ], + [ + -80.53354569729055, + 25.722069481855065 + ], + [ + -80.45377105959702, + 25.649726325904204 + ], + [ + -80.53354569729055, + 25.649726325904204 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.53354569729055, + 25.722069481855065 + ], + [ + -80.45377105959702, + 25.722069481855065 + ], + [ + -80.45377105959702, + 25.649726325904204 + ], + [ + -80.53354569729055, + 25.722069481855065 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.53354569729055, + 25.722069481855065 + ], + [ + -80.45377105959702, + 25.794412637805927 + ], + [ + -80.45377105959702, + 25.722069481855065 + ], + [ + -80.53354569729055, + 25.722069481855065 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.53354569729055, + 25.722069481855065 + ], + [ + -80.53354569729055, + 25.794412637805927 + ], + [ + -80.45377105959702, + 25.794412637805927 + ], + [ + -80.53354569729055, + 25.722069481855065 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.53354569729055, + 25.794412637805927 + ], + [ + -80.53354569729055, + 25.866755793756788 + ], + [ + -80.45377105959702, + 25.794412637805927 + ], + [ + -80.53354569729055, + 25.794412637805927 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.53354569729055, + 25.866755793756788 + ], + [ + -80.45377105959702, + 25.866755793756788 + ], + [ + -80.45377105959702, + 25.794412637805927 + ], + [ + -80.53354569729055, + 25.866755793756788 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.53354569729055, + 25.866755793756788 + ], + [ + -80.45377105959702, + 25.93909894970765 + ], + [ + -80.45377105959702, + 25.866755793756788 + ], + [ + -80.53354569729055, + 25.866755793756788 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.53354569729055, + 25.866755793756788 + ], + [ + -80.53354569729055, + 25.93909894970765 + ], + [ + -80.45377105959702, + 25.93909894970765 + ], + [ + -80.53354569729055, + 25.866755793756788 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.53354569729055, + 25.93909894970765 + ], + [ + -80.53354569729055, + 26.01144210565851 + ], + [ + -80.45377105959702, + 25.93909894970765 + ], + [ + -80.53354569729055, + 25.93909894970765 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.53354569729055, + 26.01144210565851 + ], + [ + -80.45377105959702, + 26.01144210565851 + ], + [ + -80.45377105959702, + 25.93909894970765 + ], + [ + -80.53354569729055, + 26.01144210565851 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.53354569729055, + 26.01144210565851 + ], + [ + -80.45377105959702, + 26.08378526160937 + ], + [ + -80.45377105959702, + 26.01144210565851 + ], + [ + -80.53354569729055, + 26.01144210565851 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.53354569729055, + 26.01144210565851 + ], + [ + -80.53354569729055, + 26.08378526160937 + ], + [ + -80.45377105959702, + 26.08378526160937 + ], + [ + -80.53354569729055, + 26.01144210565851 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.53354569729055, + 26.08378526160937 + ], + [ + -80.53354569729055, + 26.156128417560232 + ], + [ + -80.45377105959702, + 26.08378526160937 + ], + [ + -80.53354569729055, + 26.08378526160937 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.53354569729055, + 26.156128417560232 + ], + [ + -80.45377105959702, + 26.156128417560232 + ], + [ + -80.45377105959702, + 26.08378526160937 + ], + [ + -80.53354569729055, + 26.156128417560232 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.53354569729055, + 26.156128417560232 + ], + [ + -80.45377105959702, + 26.228471573511094 + ], + [ + -80.45377105959702, + 26.156128417560232 + ], + [ + -80.53354569729055, + 26.156128417560232 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.53354569729055, + 26.156128417560232 + ], + [ + -80.53354569729055, + 26.228471573511094 + ], + [ + -80.45377105959702, + 26.228471573511094 + ], + [ + -80.53354569729055, + 26.156128417560232 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.53354569729055, + 26.228471573511094 + ], + [ + -80.53354569729055, + 26.300814729461955 + ], + [ + -80.45377105959702, + 26.228471573511094 + ], + [ + -80.53354569729055, + 26.228471573511094 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.53354569729055, + 26.300814729461955 + ], + [ + -80.45377105959702, + 26.300814729461955 + ], + [ + -80.45377105959702, + 26.228471573511094 + ], + [ + -80.53354569729055, + 26.300814729461955 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.53354569729055, + 26.300814729461955 + ], + [ + -80.45377105959702, + 26.373157885412816 + ], + [ + -80.45377105959702, + 26.300814729461955 + ], + [ + -80.53354569729055, + 26.300814729461955 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.53354569729055, + 26.300814729461955 + ], + [ + -80.53354569729055, + 26.373157885412816 + ], + [ + -80.45377105959702, + 26.373157885412816 + ], + [ + -80.53354569729055, + 26.300814729461955 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.53354569729055, + 26.373157885412816 + ], + [ + -80.53354569729055, + 26.445501041363677 + ], + [ + -80.45377105959702, + 26.373157885412816 + ], + [ + -80.53354569729055, + 26.373157885412816 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.53354569729055, + 26.445501041363677 + ], + [ + -80.45377105959702, + 26.445501041363677 + ], + [ + -80.45377105959702, + 26.373157885412816 + ], + [ + -80.53354569729055, + 26.445501041363677 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45377105959702, + 24.926294766395593 + ], + [ + -80.45377105959702, + 24.998637922346454 + ], + [ + -80.37399642190348, + 24.998637922346454 + ], + [ + -80.45377105959702, + 24.926294766395593 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45377105959702, + 24.926294766395593 + ], + [ + -80.37399642190348, + 24.998637922346454 + ], + [ + -80.37399642190348, + 24.926294766395593 + ], + [ + -80.45377105959702, + 24.926294766395593 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45377105959702, + 24.998637922346454 + ], + [ + -80.45377105959702, + 25.070981078297315 + ], + [ + -80.37399642190348, + 24.998637922346454 + ], + [ + -80.45377105959702, + 24.998637922346454 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45377105959702, + 25.070981078297315 + ], + [ + -80.37399642190348, + 25.070981078297315 + ], + [ + -80.37399642190348, + 24.998637922346454 + ], + [ + -80.45377105959702, + 25.070981078297315 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45377105959702, + 25.070981078297315 + ], + [ + -80.45377105959702, + 25.143324234248176 + ], + [ + -80.37399642190348, + 25.143324234248176 + ], + [ + -80.45377105959702, + 25.070981078297315 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45377105959702, + 25.070981078297315 + ], + [ + -80.37399642190348, + 25.143324234248176 + ], + [ + -80.37399642190348, + 25.070981078297315 + ], + [ + -80.45377105959702, + 25.070981078297315 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45377105959702, + 25.143324234248176 + ], + [ + -80.45377105959702, + 25.215667390199037 + ], + [ + -80.37399642190348, + 25.143324234248176 + ], + [ + -80.45377105959702, + 25.143324234248176 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45377105959702, + 25.215667390199037 + ], + [ + -80.37399642190348, + 25.215667390199037 + ], + [ + -80.37399642190348, + 25.143324234248176 + ], + [ + -80.45377105959702, + 25.215667390199037 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45377105959702, + 25.215667390199037 + ], + [ + -80.45377105959702, + 25.2880105461499 + ], + [ + -80.37399642190348, + 25.2880105461499 + ], + [ + -80.45377105959702, + 25.215667390199037 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45377105959702, + 25.215667390199037 + ], + [ + -80.37399642190348, + 25.2880105461499 + ], + [ + -80.37399642190348, + 25.215667390199037 + ], + [ + -80.45377105959702, + 25.215667390199037 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45377105959702, + 25.2880105461499 + ], + [ + -80.45377105959702, + 25.36035370210076 + ], + [ + -80.37399642190348, + 25.2880105461499 + ], + [ + -80.45377105959702, + 25.2880105461499 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45377105959702, + 25.36035370210076 + ], + [ + -80.37399642190348, + 25.36035370210076 + ], + [ + -80.37399642190348, + 25.2880105461499 + ], + [ + -80.45377105959702, + 25.36035370210076 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45377105959702, + 25.36035370210076 + ], + [ + -80.45377105959702, + 25.43269685805162 + ], + [ + -80.37399642190348, + 25.43269685805162 + ], + [ + -80.45377105959702, + 25.36035370210076 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45377105959702, + 25.36035370210076 + ], + [ + -80.37399642190348, + 25.43269685805162 + ], + [ + -80.37399642190348, + 25.36035370210076 + ], + [ + -80.45377105959702, + 25.36035370210076 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45377105959702, + 25.43269685805162 + ], + [ + -80.45377105959702, + 25.505040014002482 + ], + [ + -80.37399642190348, + 25.43269685805162 + ], + [ + -80.45377105959702, + 25.43269685805162 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45377105959702, + 25.505040014002482 + ], + [ + -80.37399642190348, + 25.505040014002482 + ], + [ + -80.37399642190348, + 25.43269685805162 + ], + [ + -80.45377105959702, + 25.505040014002482 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45377105959702, + 25.505040014002482 + ], + [ + -80.45377105959702, + 25.577383169953343 + ], + [ + -80.37399642190348, + 25.577383169953343 + ], + [ + -80.45377105959702, + 25.505040014002482 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45377105959702, + 25.505040014002482 + ], + [ + -80.37399642190348, + 25.577383169953343 + ], + [ + -80.37399642190348, + 25.505040014002482 + ], + [ + -80.45377105959702, + 25.505040014002482 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45377105959702, + 25.577383169953343 + ], + [ + -80.45377105959702, + 25.649726325904204 + ], + [ + -80.37399642190348, + 25.577383169953343 + ], + [ + -80.45377105959702, + 25.577383169953343 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45377105959702, + 25.649726325904204 + ], + [ + -80.37399642190348, + 25.649726325904204 + ], + [ + -80.37399642190348, + 25.577383169953343 + ], + [ + -80.45377105959702, + 25.649726325904204 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45377105959702, + 25.649726325904204 + ], + [ + -80.45377105959702, + 25.722069481855065 + ], + [ + -80.37399642190348, + 25.722069481855065 + ], + [ + -80.45377105959702, + 25.649726325904204 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45377105959702, + 25.649726325904204 + ], + [ + -80.37399642190348, + 25.722069481855065 + ], + [ + -80.37399642190348, + 25.649726325904204 + ], + [ + -80.45377105959702, + 25.649726325904204 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45377105959702, + 25.722069481855065 + ], + [ + -80.45377105959702, + 25.794412637805927 + ], + [ + -80.37399642190348, + 25.722069481855065 + ], + [ + -80.45377105959702, + 25.722069481855065 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45377105959702, + 25.794412637805927 + ], + [ + -80.37399642190348, + 25.794412637805927 + ], + [ + -80.37399642190348, + 25.722069481855065 + ], + [ + -80.45377105959702, + 25.794412637805927 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45377105959702, + 25.794412637805927 + ], + [ + -80.45377105959702, + 25.866755793756788 + ], + [ + -80.37399642190348, + 25.866755793756788 + ], + [ + -80.45377105959702, + 25.794412637805927 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45377105959702, + 25.794412637805927 + ], + [ + -80.37399642190348, + 25.866755793756788 + ], + [ + -80.37399642190348, + 25.794412637805927 + ], + [ + -80.45377105959702, + 25.794412637805927 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45377105959702, + 25.866755793756788 + ], + [ + -80.45377105959702, + 25.93909894970765 + ], + [ + -80.37399642190348, + 25.866755793756788 + ], + [ + -80.45377105959702, + 25.866755793756788 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45377105959702, + 25.93909894970765 + ], + [ + -80.37399642190348, + 25.93909894970765 + ], + [ + -80.37399642190348, + 25.866755793756788 + ], + [ + -80.45377105959702, + 25.93909894970765 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45377105959702, + 25.93909894970765 + ], + [ + -80.45377105959702, + 26.01144210565851 + ], + [ + -80.37399642190348, + 26.01144210565851 + ], + [ + -80.45377105959702, + 25.93909894970765 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45377105959702, + 25.93909894970765 + ], + [ + -80.37399642190348, + 26.01144210565851 + ], + [ + -80.37399642190348, + 25.93909894970765 + ], + [ + -80.45377105959702, + 25.93909894970765 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45377105959702, + 26.01144210565851 + ], + [ + -80.45377105959702, + 26.08378526160937 + ], + [ + -80.37399642190348, + 26.01144210565851 + ], + [ + -80.45377105959702, + 26.01144210565851 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45377105959702, + 26.08378526160937 + ], + [ + -80.37399642190348, + 26.08378526160937 + ], + [ + -80.37399642190348, + 26.01144210565851 + ], + [ + -80.45377105959702, + 26.08378526160937 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45377105959702, + 26.08378526160937 + ], + [ + -80.45377105959702, + 26.156128417560232 + ], + [ + -80.37399642190348, + 26.156128417560232 + ], + [ + -80.45377105959702, + 26.08378526160937 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45377105959702, + 26.08378526160937 + ], + [ + -80.37399642190348, + 26.156128417560232 + ], + [ + -80.37399642190348, + 26.08378526160937 + ], + [ + -80.45377105959702, + 26.08378526160937 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45377105959702, + 26.156128417560232 + ], + [ + -80.45377105959702, + 26.228471573511094 + ], + [ + -80.37399642190348, + 26.156128417560232 + ], + [ + -80.45377105959702, + 26.156128417560232 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45377105959702, + 26.228471573511094 + ], + [ + -80.37399642190348, + 26.228471573511094 + ], + [ + -80.37399642190348, + 26.156128417560232 + ], + [ + -80.45377105959702, + 26.228471573511094 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45377105959702, + 26.228471573511094 + ], + [ + -80.45377105959702, + 26.300814729461955 + ], + [ + -80.37399642190348, + 26.300814729461955 + ], + [ + -80.45377105959702, + 26.228471573511094 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45377105959702, + 26.228471573511094 + ], + [ + -80.37399642190348, + 26.300814729461955 + ], + [ + -80.37399642190348, + 26.228471573511094 + ], + [ + -80.45377105959702, + 26.228471573511094 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45377105959702, + 26.300814729461955 + ], + [ + -80.45377105959702, + 26.373157885412816 + ], + [ + -80.37399642190348, + 26.300814729461955 + ], + [ + -80.45377105959702, + 26.300814729461955 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45377105959702, + 26.373157885412816 + ], + [ + -80.37399642190348, + 26.373157885412816 + ], + [ + -80.37399642190348, + 26.300814729461955 + ], + [ + -80.45377105959702, + 26.373157885412816 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45377105959702, + 26.373157885412816 + ], + [ + -80.45377105959702, + 26.445501041363677 + ], + [ + -80.37399642190348, + 26.445501041363677 + ], + [ + -80.45377105959702, + 26.373157885412816 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.45377105959702, + 26.373157885412816 + ], + [ + -80.37399642190348, + 26.445501041363677 + ], + [ + -80.37399642190348, + 26.373157885412816 + ], + [ + -80.45377105959702, + 26.373157885412816 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.37399642190348, + 24.926294766395593 + ], + [ + -80.37399642190348, + 24.998637922346454 + ], + [ + -80.29422178420995, + 24.926294766395593 + ], + [ + -80.37399642190348, + 24.926294766395593 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.37399642190348, + 24.998637922346454 + ], + [ + -80.29422178420995, + 24.998637922346454 + ], + [ + -80.29422178420995, + 24.926294766395593 + ], + [ + -80.37399642190348, + 24.998637922346454 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.37399642190348, + 24.998637922346454 + ], + [ + -80.29422178420995, + 25.070981078297315 + ], + [ + -80.29422178420995, + 24.998637922346454 + ], + [ + -80.37399642190348, + 24.998637922346454 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.37399642190348, + 24.998637922346454 + ], + [ + -80.37399642190348, + 25.070981078297315 + ], + [ + -80.29422178420995, + 25.070981078297315 + ], + [ + -80.37399642190348, + 24.998637922346454 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.37399642190348, + 25.070981078297315 + ], + [ + -80.37399642190348, + 25.143324234248176 + ], + [ + -80.29422178420995, + 25.070981078297315 + ], + [ + -80.37399642190348, + 25.070981078297315 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.37399642190348, + 25.143324234248176 + ], + [ + -80.29422178420995, + 25.143324234248176 + ], + [ + -80.29422178420995, + 25.070981078297315 + ], + [ + -80.37399642190348, + 25.143324234248176 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.37399642190348, + 25.143324234248176 + ], + [ + -80.29422178420995, + 25.215667390199037 + ], + [ + -80.29422178420995, + 25.143324234248176 + ], + [ + -80.37399642190348, + 25.143324234248176 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.37399642190348, + 25.143324234248176 + ], + [ + -80.37399642190348, + 25.215667390199037 + ], + [ + -80.29422178420995, + 25.215667390199037 + ], + [ + -80.37399642190348, + 25.143324234248176 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.37399642190348, + 25.215667390199037 + ], + [ + -80.37399642190348, + 25.2880105461499 + ], + [ + -80.29422178420995, + 25.215667390199037 + ], + [ + -80.37399642190348, + 25.215667390199037 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.37399642190348, + 25.2880105461499 + ], + [ + -80.29422178420995, + 25.2880105461499 + ], + [ + -80.29422178420995, + 25.215667390199037 + ], + [ + -80.37399642190348, + 25.2880105461499 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.37399642190348, + 25.2880105461499 + ], + [ + -80.29422178420995, + 25.36035370210076 + ], + [ + -80.29422178420995, + 25.2880105461499 + ], + [ + -80.37399642190348, + 25.2880105461499 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.37399642190348, + 25.2880105461499 + ], + [ + -80.37399642190348, + 25.36035370210076 + ], + [ + -80.29422178420995, + 25.36035370210076 + ], + [ + -80.37399642190348, + 25.2880105461499 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.37399642190348, + 25.36035370210076 + ], + [ + -80.37399642190348, + 25.43269685805162 + ], + [ + -80.29422178420995, + 25.36035370210076 + ], + [ + -80.37399642190348, + 25.36035370210076 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.37399642190348, + 25.43269685805162 + ], + [ + -80.29422178420995, + 25.43269685805162 + ], + [ + -80.29422178420995, + 25.36035370210076 + ], + [ + -80.37399642190348, + 25.43269685805162 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.37399642190348, + 25.43269685805162 + ], + [ + -80.29422178420995, + 25.505040014002482 + ], + [ + -80.29422178420995, + 25.43269685805162 + ], + [ + -80.37399642190348, + 25.43269685805162 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.37399642190348, + 25.43269685805162 + ], + [ + -80.37399642190348, + 25.505040014002482 + ], + [ + -80.29422178420995, + 25.505040014002482 + ], + [ + -80.37399642190348, + 25.43269685805162 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.37399642190348, + 25.505040014002482 + ], + [ + -80.37399642190348, + 25.577383169953343 + ], + [ + -80.29422178420995, + 25.505040014002482 + ], + [ + -80.37399642190348, + 25.505040014002482 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.37399642190348, + 25.577383169953343 + ], + [ + -80.29422178420995, + 25.577383169953343 + ], + [ + -80.29422178420995, + 25.505040014002482 + ], + [ + -80.37399642190348, + 25.577383169953343 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.37399642190348, + 25.577383169953343 + ], + [ + -80.29422178420995, + 25.649726325904204 + ], + [ + -80.29422178420995, + 25.577383169953343 + ], + [ + -80.37399642190348, + 25.577383169953343 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.37399642190348, + 25.577383169953343 + ], + [ + -80.37399642190348, + 25.649726325904204 + ], + [ + -80.29422178420995, + 25.649726325904204 + ], + [ + -80.37399642190348, + 25.577383169953343 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.37399642190348, + 25.649726325904204 + ], + [ + -80.37399642190348, + 25.722069481855065 + ], + [ + -80.29422178420995, + 25.649726325904204 + ], + [ + -80.37399642190348, + 25.649726325904204 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.37399642190348, + 25.722069481855065 + ], + [ + -80.29422178420995, + 25.722069481855065 + ], + [ + -80.29422178420995, + 25.649726325904204 + ], + [ + -80.37399642190348, + 25.722069481855065 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.37399642190348, + 25.722069481855065 + ], + [ + -80.29422178420995, + 25.794412637805927 + ], + [ + -80.29422178420995, + 25.722069481855065 + ], + [ + -80.37399642190348, + 25.722069481855065 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.37399642190348, + 25.722069481855065 + ], + [ + -80.37399642190348, + 25.794412637805927 + ], + [ + -80.29422178420995, + 25.794412637805927 + ], + [ + -80.37399642190348, + 25.722069481855065 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.37399642190348, + 25.794412637805927 + ], + [ + -80.37399642190348, + 25.866755793756788 + ], + [ + -80.29422178420995, + 25.794412637805927 + ], + [ + -80.37399642190348, + 25.794412637805927 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.37399642190348, + 25.866755793756788 + ], + [ + -80.29422178420995, + 25.866755793756788 + ], + [ + -80.29422178420995, + 25.794412637805927 + ], + [ + -80.37399642190348, + 25.866755793756788 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.37399642190348, + 25.866755793756788 + ], + [ + -80.29422178420995, + 25.93909894970765 + ], + [ + -80.29422178420995, + 25.866755793756788 + ], + [ + -80.37399642190348, + 25.866755793756788 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.37399642190348, + 25.866755793756788 + ], + [ + -80.37399642190348, + 25.93909894970765 + ], + [ + -80.29422178420995, + 25.93909894970765 + ], + [ + -80.37399642190348, + 25.866755793756788 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.37399642190348, + 25.93909894970765 + ], + [ + -80.37399642190348, + 26.01144210565851 + ], + [ + -80.29422178420995, + 25.93909894970765 + ], + [ + -80.37399642190348, + 25.93909894970765 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.37399642190348, + 26.01144210565851 + ], + [ + -80.29422178420995, + 26.01144210565851 + ], + [ + -80.29422178420995, + 25.93909894970765 + ], + [ + -80.37399642190348, + 26.01144210565851 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.37399642190348, + 26.01144210565851 + ], + [ + -80.29422178420995, + 26.08378526160937 + ], + [ + -80.29422178420995, + 26.01144210565851 + ], + [ + -80.37399642190348, + 26.01144210565851 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.37399642190348, + 26.01144210565851 + ], + [ + -80.37399642190348, + 26.08378526160937 + ], + [ + -80.29422178420995, + 26.08378526160937 + ], + [ + -80.37399642190348, + 26.01144210565851 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.37399642190348, + 26.08378526160937 + ], + [ + -80.37399642190348, + 26.156128417560232 + ], + [ + -80.29422178420995, + 26.08378526160937 + ], + [ + -80.37399642190348, + 26.08378526160937 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.37399642190348, + 26.156128417560232 + ], + [ + -80.29422178420995, + 26.156128417560232 + ], + [ + -80.29422178420995, + 26.08378526160937 + ], + [ + -80.37399642190348, + 26.156128417560232 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.37399642190348, + 26.156128417560232 + ], + [ + -80.29422178420995, + 26.228471573511094 + ], + [ + -80.29422178420995, + 26.156128417560232 + ], + [ + -80.37399642190348, + 26.156128417560232 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.37399642190348, + 26.156128417560232 + ], + [ + -80.37399642190348, + 26.228471573511094 + ], + [ + -80.29422178420995, + 26.228471573511094 + ], + [ + -80.37399642190348, + 26.156128417560232 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.37399642190348, + 26.228471573511094 + ], + [ + -80.37399642190348, + 26.300814729461955 + ], + [ + -80.29422178420995, + 26.228471573511094 + ], + [ + -80.37399642190348, + 26.228471573511094 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.37399642190348, + 26.300814729461955 + ], + [ + -80.29422178420995, + 26.300814729461955 + ], + [ + -80.29422178420995, + 26.228471573511094 + ], + [ + -80.37399642190348, + 26.300814729461955 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.37399642190348, + 26.300814729461955 + ], + [ + -80.29422178420995, + 26.373157885412816 + ], + [ + -80.29422178420995, + 26.300814729461955 + ], + [ + -80.37399642190348, + 26.300814729461955 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.37399642190348, + 26.300814729461955 + ], + [ + -80.37399642190348, + 26.373157885412816 + ], + [ + -80.29422178420995, + 26.373157885412816 + ], + [ + -80.37399642190348, + 26.300814729461955 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.37399642190348, + 26.373157885412816 + ], + [ + -80.37399642190348, + 26.445501041363677 + ], + [ + -80.29422178420995, + 26.373157885412816 + ], + [ + -80.37399642190348, + 26.373157885412816 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.37399642190348, + 26.445501041363677 + ], + [ + -80.29422178420995, + 26.445501041363677 + ], + [ + -80.29422178420995, + 26.373157885412816 + ], + [ + -80.37399642190348, + 26.445501041363677 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.29422178420995, + 24.926294766395593 + ], + [ + -80.29422178420995, + 24.998637922346454 + ], + [ + -80.21444714651642, + 24.998637922346454 + ], + [ + -80.29422178420995, + 24.926294766395593 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.29422178420995, + 24.926294766395593 + ], + [ + -80.21444714651642, + 24.998637922346454 + ], + [ + -80.21444714651642, + 24.926294766395593 + ], + [ + -80.29422178420995, + 24.926294766395593 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.29422178420995, + 24.998637922346454 + ], + [ + -80.29422178420995, + 25.070981078297315 + ], + [ + -80.21444714651642, + 24.998637922346454 + ], + [ + -80.29422178420995, + 24.998637922346454 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.29422178420995, + 25.070981078297315 + ], + [ + -80.21444714651642, + 25.070981078297315 + ], + [ + -80.21444714651642, + 24.998637922346454 + ], + [ + -80.29422178420995, + 25.070981078297315 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.29422178420995, + 25.070981078297315 + ], + [ + -80.29422178420995, + 25.143324234248176 + ], + [ + -80.21444714651642, + 25.143324234248176 + ], + [ + -80.29422178420995, + 25.070981078297315 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.29422178420995, + 25.070981078297315 + ], + [ + -80.21444714651642, + 25.143324234248176 + ], + [ + -80.21444714651642, + 25.070981078297315 + ], + [ + -80.29422178420995, + 25.070981078297315 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.29422178420995, + 25.143324234248176 + ], + [ + -80.29422178420995, + 25.215667390199037 + ], + [ + -80.21444714651642, + 25.143324234248176 + ], + [ + -80.29422178420995, + 25.143324234248176 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.29422178420995, + 25.215667390199037 + ], + [ + -80.21444714651642, + 25.215667390199037 + ], + [ + -80.21444714651642, + 25.143324234248176 + ], + [ + -80.29422178420995, + 25.215667390199037 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.29422178420995, + 25.215667390199037 + ], + [ + -80.29422178420995, + 25.2880105461499 + ], + [ + -80.21444714651642, + 25.2880105461499 + ], + [ + -80.29422178420995, + 25.215667390199037 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.29422178420995, + 25.215667390199037 + ], + [ + -80.21444714651642, + 25.2880105461499 + ], + [ + -80.21444714651642, + 25.215667390199037 + ], + [ + -80.29422178420995, + 25.215667390199037 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.29422178420995, + 25.2880105461499 + ], + [ + -80.29422178420995, + 25.36035370210076 + ], + [ + -80.21444714651642, + 25.2880105461499 + ], + [ + -80.29422178420995, + 25.2880105461499 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.29422178420995, + 25.36035370210076 + ], + [ + -80.21444714651642, + 25.36035370210076 + ], + [ + -80.21444714651642, + 25.2880105461499 + ], + [ + -80.29422178420995, + 25.36035370210076 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.29422178420995, + 25.36035370210076 + ], + [ + -80.29422178420995, + 25.43269685805162 + ], + [ + -80.21444714651642, + 25.43269685805162 + ], + [ + -80.29422178420995, + 25.36035370210076 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.29422178420995, + 25.36035370210076 + ], + [ + -80.21444714651642, + 25.43269685805162 + ], + [ + -80.21444714651642, + 25.36035370210076 + ], + [ + -80.29422178420995, + 25.36035370210076 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.29422178420995, + 25.43269685805162 + ], + [ + -80.29422178420995, + 25.505040014002482 + ], + [ + -80.21444714651642, + 25.43269685805162 + ], + [ + -80.29422178420995, + 25.43269685805162 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.29422178420995, + 25.505040014002482 + ], + [ + -80.21444714651642, + 25.505040014002482 + ], + [ + -80.21444714651642, + 25.43269685805162 + ], + [ + -80.29422178420995, + 25.505040014002482 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.29422178420995, + 25.505040014002482 + ], + [ + -80.29422178420995, + 25.577383169953343 + ], + [ + -80.21444714651642, + 25.577383169953343 + ], + [ + -80.29422178420995, + 25.505040014002482 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.29422178420995, + 25.505040014002482 + ], + [ + -80.21444714651642, + 25.577383169953343 + ], + [ + -80.21444714651642, + 25.505040014002482 + ], + [ + -80.29422178420995, + 25.505040014002482 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.29422178420995, + 25.577383169953343 + ], + [ + -80.29422178420995, + 25.649726325904204 + ], + [ + -80.21444714651642, + 25.577383169953343 + ], + [ + -80.29422178420995, + 25.577383169953343 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.29422178420995, + 25.649726325904204 + ], + [ + -80.21444714651642, + 25.649726325904204 + ], + [ + -80.21444714651642, + 25.577383169953343 + ], + [ + -80.29422178420995, + 25.649726325904204 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.29422178420995, + 25.649726325904204 + ], + [ + -80.29422178420995, + 25.722069481855065 + ], + [ + -80.21444714651642, + 25.722069481855065 + ], + [ + -80.29422178420995, + 25.649726325904204 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.29422178420995, + 25.649726325904204 + ], + [ + -80.21444714651642, + 25.722069481855065 + ], + [ + -80.21444714651642, + 25.649726325904204 + ], + [ + -80.29422178420995, + 25.649726325904204 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.29422178420995, + 25.722069481855065 + ], + [ + -80.29422178420995, + 25.794412637805927 + ], + [ + -80.21444714651642, + 25.722069481855065 + ], + [ + -80.29422178420995, + 25.722069481855065 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.29422178420995, + 25.794412637805927 + ], + [ + -80.21444714651642, + 25.794412637805927 + ], + [ + -80.21444714651642, + 25.722069481855065 + ], + [ + -80.29422178420995, + 25.794412637805927 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.29422178420995, + 25.794412637805927 + ], + [ + -80.29422178420995, + 25.866755793756788 + ], + [ + -80.21444714651642, + 25.866755793756788 + ], + [ + -80.29422178420995, + 25.794412637805927 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.29422178420995, + 25.794412637805927 + ], + [ + -80.21444714651642, + 25.866755793756788 + ], + [ + -80.21444714651642, + 25.794412637805927 + ], + [ + -80.29422178420995, + 25.794412637805927 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.29422178420995, + 25.866755793756788 + ], + [ + -80.29422178420995, + 25.93909894970765 + ], + [ + -80.21444714651642, + 25.866755793756788 + ], + [ + -80.29422178420995, + 25.866755793756788 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.29422178420995, + 25.93909894970765 + ], + [ + -80.21444714651642, + 25.93909894970765 + ], + [ + -80.21444714651642, + 25.866755793756788 + ], + [ + -80.29422178420995, + 25.93909894970765 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.29422178420995, + 25.93909894970765 + ], + [ + -80.29422178420995, + 26.01144210565851 + ], + [ + -80.21444714651642, + 26.01144210565851 + ], + [ + -80.29422178420995, + 25.93909894970765 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.29422178420995, + 25.93909894970765 + ], + [ + -80.21444714651642, + 26.01144210565851 + ], + [ + -80.21444714651642, + 25.93909894970765 + ], + [ + -80.29422178420995, + 25.93909894970765 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.29422178420995, + 26.01144210565851 + ], + [ + -80.29422178420995, + 26.08378526160937 + ], + [ + -80.21444714651642, + 26.01144210565851 + ], + [ + -80.29422178420995, + 26.01144210565851 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.29422178420995, + 26.08378526160937 + ], + [ + -80.21444714651642, + 26.08378526160937 + ], + [ + -80.21444714651642, + 26.01144210565851 + ], + [ + -80.29422178420995, + 26.08378526160937 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.29422178420995, + 26.08378526160937 + ], + [ + -80.29422178420995, + 26.156128417560232 + ], + [ + -80.21444714651642, + 26.156128417560232 + ], + [ + -80.29422178420995, + 26.08378526160937 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.29422178420995, + 26.08378526160937 + ], + [ + -80.21444714651642, + 26.156128417560232 + ], + [ + -80.21444714651642, + 26.08378526160937 + ], + [ + -80.29422178420995, + 26.08378526160937 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.29422178420995, + 26.156128417560232 + ], + [ + -80.29422178420995, + 26.228471573511094 + ], + [ + -80.21444714651642, + 26.156128417560232 + ], + [ + -80.29422178420995, + 26.156128417560232 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.29422178420995, + 26.228471573511094 + ], + [ + -80.21444714651642, + 26.228471573511094 + ], + [ + -80.21444714651642, + 26.156128417560232 + ], + [ + -80.29422178420995, + 26.228471573511094 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.29422178420995, + 26.228471573511094 + ], + [ + -80.29422178420995, + 26.300814729461955 + ], + [ + -80.21444714651642, + 26.300814729461955 + ], + [ + -80.29422178420995, + 26.228471573511094 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.29422178420995, + 26.228471573511094 + ], + [ + -80.21444714651642, + 26.300814729461955 + ], + [ + -80.21444714651642, + 26.228471573511094 + ], + [ + -80.29422178420995, + 26.228471573511094 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.29422178420995, + 26.300814729461955 + ], + [ + -80.29422178420995, + 26.373157885412816 + ], + [ + -80.21444714651642, + 26.300814729461955 + ], + [ + -80.29422178420995, + 26.300814729461955 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.29422178420995, + 26.373157885412816 + ], + [ + -80.21444714651642, + 26.373157885412816 + ], + [ + -80.21444714651642, + 26.300814729461955 + ], + [ + -80.29422178420995, + 26.373157885412816 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.29422178420995, + 26.373157885412816 + ], + [ + -80.29422178420995, + 26.445501041363677 + ], + [ + -80.21444714651642, + 26.445501041363677 + ], + [ + -80.29422178420995, + 26.373157885412816 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.29422178420995, + 26.373157885412816 + ], + [ + -80.21444714651642, + 26.445501041363677 + ], + [ + -80.21444714651642, + 26.373157885412816 + ], + [ + -80.29422178420995, + 26.373157885412816 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21444714651642, + 24.926294766395593 + ], + [ + -80.21444714651642, + 24.998637922346454 + ], + [ + -80.13467250882289, + 24.926294766395593 + ], + [ + -80.21444714651642, + 24.926294766395593 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21444714651642, + 24.998637922346454 + ], + [ + -80.13467250882289, + 24.998637922346454 + ], + [ + -80.13467250882289, + 24.926294766395593 + ], + [ + -80.21444714651642, + 24.998637922346454 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21444714651642, + 24.998637922346454 + ], + [ + -80.13467250882289, + 25.070981078297315 + ], + [ + -80.13467250882289, + 24.998637922346454 + ], + [ + -80.21444714651642, + 24.998637922346454 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21444714651642, + 24.998637922346454 + ], + [ + -80.21444714651642, + 25.070981078297315 + ], + [ + -80.13467250882289, + 25.070981078297315 + ], + [ + -80.21444714651642, + 24.998637922346454 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21444714651642, + 25.070981078297315 + ], + [ + -80.21444714651642, + 25.143324234248176 + ], + [ + -80.13467250882289, + 25.070981078297315 + ], + [ + -80.21444714651642, + 25.070981078297315 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21444714651642, + 25.143324234248176 + ], + [ + -80.13467250882289, + 25.143324234248176 + ], + [ + -80.13467250882289, + 25.070981078297315 + ], + [ + -80.21444714651642, + 25.143324234248176 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21444714651642, + 25.143324234248176 + ], + [ + -80.13467250882289, + 25.215667390199037 + ], + [ + -80.13467250882289, + 25.143324234248176 + ], + [ + -80.21444714651642, + 25.143324234248176 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21444714651642, + 25.143324234248176 + ], + [ + -80.21444714651642, + 25.215667390199037 + ], + [ + -80.13467250882289, + 25.215667390199037 + ], + [ + -80.21444714651642, + 25.143324234248176 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21444714651642, + 25.215667390199037 + ], + [ + -80.21444714651642, + 25.2880105461499 + ], + [ + -80.13467250882289, + 25.215667390199037 + ], + [ + -80.21444714651642, + 25.215667390199037 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21444714651642, + 25.2880105461499 + ], + [ + -80.13467250882289, + 25.2880105461499 + ], + [ + -80.13467250882289, + 25.215667390199037 + ], + [ + -80.21444714651642, + 25.2880105461499 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21444714651642, + 25.2880105461499 + ], + [ + -80.13467250882289, + 25.36035370210076 + ], + [ + -80.13467250882289, + 25.2880105461499 + ], + [ + -80.21444714651642, + 25.2880105461499 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21444714651642, + 25.2880105461499 + ], + [ + -80.21444714651642, + 25.36035370210076 + ], + [ + -80.13467250882289, + 25.36035370210076 + ], + [ + -80.21444714651642, + 25.2880105461499 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21444714651642, + 25.36035370210076 + ], + [ + -80.21444714651642, + 25.43269685805162 + ], + [ + -80.13467250882289, + 25.36035370210076 + ], + [ + -80.21444714651642, + 25.36035370210076 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21444714651642, + 25.43269685805162 + ], + [ + -80.13467250882289, + 25.43269685805162 + ], + [ + -80.13467250882289, + 25.36035370210076 + ], + [ + -80.21444714651642, + 25.43269685805162 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21444714651642, + 25.43269685805162 + ], + [ + -80.13467250882289, + 25.505040014002482 + ], + [ + -80.13467250882289, + 25.43269685805162 + ], + [ + -80.21444714651642, + 25.43269685805162 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21444714651642, + 25.43269685805162 + ], + [ + -80.21444714651642, + 25.505040014002482 + ], + [ + -80.13467250882289, + 25.505040014002482 + ], + [ + -80.21444714651642, + 25.43269685805162 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21444714651642, + 25.505040014002482 + ], + [ + -80.21444714651642, + 25.577383169953343 + ], + [ + -80.13467250882289, + 25.505040014002482 + ], + [ + -80.21444714651642, + 25.505040014002482 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21444714651642, + 25.577383169953343 + ], + [ + -80.13467250882289, + 25.577383169953343 + ], + [ + -80.13467250882289, + 25.505040014002482 + ], + [ + -80.21444714651642, + 25.577383169953343 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21444714651642, + 25.577383169953343 + ], + [ + -80.13467250882289, + 25.649726325904204 + ], + [ + -80.13467250882289, + 25.577383169953343 + ], + [ + -80.21444714651642, + 25.577383169953343 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21444714651642, + 25.577383169953343 + ], + [ + -80.21444714651642, + 25.649726325904204 + ], + [ + -80.13467250882289, + 25.649726325904204 + ], + [ + -80.21444714651642, + 25.577383169953343 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21444714651642, + 25.649726325904204 + ], + [ + -80.21444714651642, + 25.722069481855065 + ], + [ + -80.13467250882289, + 25.649726325904204 + ], + [ + -80.21444714651642, + 25.649726325904204 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21444714651642, + 25.722069481855065 + ], + [ + -80.13467250882289, + 25.722069481855065 + ], + [ + -80.13467250882289, + 25.649726325904204 + ], + [ + -80.21444714651642, + 25.722069481855065 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21444714651642, + 25.722069481855065 + ], + [ + -80.13467250882289, + 25.794412637805927 + ], + [ + -80.13467250882289, + 25.722069481855065 + ], + [ + -80.21444714651642, + 25.722069481855065 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21444714651642, + 25.722069481855065 + ], + [ + -80.21444714651642, + 25.794412637805927 + ], + [ + -80.13467250882289, + 25.794412637805927 + ], + [ + -80.21444714651642, + 25.722069481855065 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21444714651642, + 25.794412637805927 + ], + [ + -80.21444714651642, + 25.866755793756788 + ], + [ + -80.13467250882289, + 25.794412637805927 + ], + [ + -80.21444714651642, + 25.794412637805927 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21444714651642, + 25.866755793756788 + ], + [ + -80.13467250882289, + 25.866755793756788 + ], + [ + -80.13467250882289, + 25.794412637805927 + ], + [ + -80.21444714651642, + 25.866755793756788 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21444714651642, + 25.866755793756788 + ], + [ + -80.13467250882289, + 25.93909894970765 + ], + [ + -80.13467250882289, + 25.866755793756788 + ], + [ + -80.21444714651642, + 25.866755793756788 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21444714651642, + 25.866755793756788 + ], + [ + -80.21444714651642, + 25.93909894970765 + ], + [ + -80.13467250882289, + 25.93909894970765 + ], + [ + -80.21444714651642, + 25.866755793756788 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21444714651642, + 25.93909894970765 + ], + [ + -80.21444714651642, + 26.01144210565851 + ], + [ + -80.13467250882289, + 25.93909894970765 + ], + [ + -80.21444714651642, + 25.93909894970765 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21444714651642, + 26.01144210565851 + ], + [ + -80.13467250882289, + 26.01144210565851 + ], + [ + -80.13467250882289, + 25.93909894970765 + ], + [ + -80.21444714651642, + 26.01144210565851 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21444714651642, + 26.01144210565851 + ], + [ + -80.13467250882289, + 26.08378526160937 + ], + [ + -80.13467250882289, + 26.01144210565851 + ], + [ + -80.21444714651642, + 26.01144210565851 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21444714651642, + 26.01144210565851 + ], + [ + -80.21444714651642, + 26.08378526160937 + ], + [ + -80.13467250882289, + 26.08378526160937 + ], + [ + -80.21444714651642, + 26.01144210565851 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21444714651642, + 26.08378526160937 + ], + [ + -80.21444714651642, + 26.156128417560232 + ], + [ + -80.13467250882289, + 26.08378526160937 + ], + [ + -80.21444714651642, + 26.08378526160937 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21444714651642, + 26.156128417560232 + ], + [ + -80.13467250882289, + 26.156128417560232 + ], + [ + -80.13467250882289, + 26.08378526160937 + ], + [ + -80.21444714651642, + 26.156128417560232 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21444714651642, + 26.156128417560232 + ], + [ + -80.13467250882289, + 26.228471573511094 + ], + [ + -80.13467250882289, + 26.156128417560232 + ], + [ + -80.21444714651642, + 26.156128417560232 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21444714651642, + 26.156128417560232 + ], + [ + -80.21444714651642, + 26.228471573511094 + ], + [ + -80.13467250882289, + 26.228471573511094 + ], + [ + -80.21444714651642, + 26.156128417560232 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21444714651642, + 26.228471573511094 + ], + [ + -80.21444714651642, + 26.300814729461955 + ], + [ + -80.13467250882289, + 26.228471573511094 + ], + [ + -80.21444714651642, + 26.228471573511094 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21444714651642, + 26.300814729461955 + ], + [ + -80.13467250882289, + 26.300814729461955 + ], + [ + -80.13467250882289, + 26.228471573511094 + ], + [ + -80.21444714651642, + 26.300814729461955 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21444714651642, + 26.300814729461955 + ], + [ + -80.13467250882289, + 26.373157885412816 + ], + [ + -80.13467250882289, + 26.300814729461955 + ], + [ + -80.21444714651642, + 26.300814729461955 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21444714651642, + 26.300814729461955 + ], + [ + -80.21444714651642, + 26.373157885412816 + ], + [ + -80.13467250882289, + 26.373157885412816 + ], + [ + -80.21444714651642, + 26.300814729461955 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21444714651642, + 26.373157885412816 + ], + [ + -80.21444714651642, + 26.445501041363677 + ], + [ + -80.13467250882289, + 26.373157885412816 + ], + [ + -80.21444714651642, + 26.373157885412816 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.21444714651642, + 26.445501041363677 + ], + [ + -80.13467250882289, + 26.445501041363677 + ], + [ + -80.13467250882289, + 26.373157885412816 + ], + [ + -80.21444714651642, + 26.445501041363677 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.13467250882289, + 24.926294766395593 + ], + [ + -80.13467250882289, + 24.998637922346454 + ], + [ + -80.05489787112936, + 24.998637922346454 + ], + [ + -80.13467250882289, + 24.926294766395593 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.13467250882289, + 24.926294766395593 + ], + [ + -80.05489787112936, + 24.998637922346454 + ], + [ + -80.05489787112936, + 24.926294766395593 + ], + [ + -80.13467250882289, + 24.926294766395593 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.13467250882289, + 24.998637922346454 + ], + [ + -80.13467250882289, + 25.070981078297315 + ], + [ + -80.05489787112936, + 24.998637922346454 + ], + [ + -80.13467250882289, + 24.998637922346454 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.13467250882289, + 25.070981078297315 + ], + [ + -80.05489787112936, + 25.070981078297315 + ], + [ + -80.05489787112936, + 24.998637922346454 + ], + [ + -80.13467250882289, + 25.070981078297315 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.13467250882289, + 25.070981078297315 + ], + [ + -80.13467250882289, + 25.143324234248176 + ], + [ + -80.05489787112936, + 25.143324234248176 + ], + [ + -80.13467250882289, + 25.070981078297315 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.13467250882289, + 25.070981078297315 + ], + [ + -80.05489787112936, + 25.143324234248176 + ], + [ + -80.05489787112936, + 25.070981078297315 + ], + [ + -80.13467250882289, + 25.070981078297315 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.13467250882289, + 25.143324234248176 + ], + [ + -80.13467250882289, + 25.215667390199037 + ], + [ + -80.05489787112936, + 25.143324234248176 + ], + [ + -80.13467250882289, + 25.143324234248176 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.13467250882289, + 25.215667390199037 + ], + [ + -80.05489787112936, + 25.215667390199037 + ], + [ + -80.05489787112936, + 25.143324234248176 + ], + [ + -80.13467250882289, + 25.215667390199037 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.13467250882289, + 25.215667390199037 + ], + [ + -80.13467250882289, + 25.2880105461499 + ], + [ + -80.05489787112936, + 25.2880105461499 + ], + [ + -80.13467250882289, + 25.215667390199037 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.13467250882289, + 25.215667390199037 + ], + [ + -80.05489787112936, + 25.2880105461499 + ], + [ + -80.05489787112936, + 25.215667390199037 + ], + [ + -80.13467250882289, + 25.215667390199037 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.13467250882289, + 25.2880105461499 + ], + [ + -80.13467250882289, + 25.36035370210076 + ], + [ + -80.05489787112936, + 25.2880105461499 + ], + [ + -80.13467250882289, + 25.2880105461499 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.13467250882289, + 25.36035370210076 + ], + [ + -80.05489787112936, + 25.36035370210076 + ], + [ + -80.05489787112936, + 25.2880105461499 + ], + [ + -80.13467250882289, + 25.36035370210076 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.13467250882289, + 25.36035370210076 + ], + [ + -80.13467250882289, + 25.43269685805162 + ], + [ + -80.05489787112936, + 25.43269685805162 + ], + [ + -80.13467250882289, + 25.36035370210076 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.13467250882289, + 25.36035370210076 + ], + [ + -80.05489787112936, + 25.43269685805162 + ], + [ + -80.05489787112936, + 25.36035370210076 + ], + [ + -80.13467250882289, + 25.36035370210076 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.13467250882289, + 25.43269685805162 + ], + [ + -80.13467250882289, + 25.505040014002482 + ], + [ + -80.05489787112936, + 25.43269685805162 + ], + [ + -80.13467250882289, + 25.43269685805162 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.13467250882289, + 25.505040014002482 + ], + [ + -80.05489787112936, + 25.505040014002482 + ], + [ + -80.05489787112936, + 25.43269685805162 + ], + [ + -80.13467250882289, + 25.505040014002482 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.13467250882289, + 25.505040014002482 + ], + [ + -80.13467250882289, + 25.577383169953343 + ], + [ + -80.05489787112936, + 25.577383169953343 + ], + [ + -80.13467250882289, + 25.505040014002482 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.13467250882289, + 25.505040014002482 + ], + [ + -80.05489787112936, + 25.577383169953343 + ], + [ + -80.05489787112936, + 25.505040014002482 + ], + [ + -80.13467250882289, + 25.505040014002482 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.13467250882289, + 25.577383169953343 + ], + [ + -80.13467250882289, + 25.649726325904204 + ], + [ + -80.05489787112936, + 25.577383169953343 + ], + [ + -80.13467250882289, + 25.577383169953343 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.13467250882289, + 25.649726325904204 + ], + [ + -80.05489787112936, + 25.649726325904204 + ], + [ + -80.05489787112936, + 25.577383169953343 + ], + [ + -80.13467250882289, + 25.649726325904204 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.13467250882289, + 25.649726325904204 + ], + [ + -80.13467250882289, + 25.722069481855065 + ], + [ + -80.05489787112936, + 25.722069481855065 + ], + [ + -80.13467250882289, + 25.649726325904204 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.13467250882289, + 25.649726325904204 + ], + [ + -80.05489787112936, + 25.722069481855065 + ], + [ + -80.05489787112936, + 25.649726325904204 + ], + [ + -80.13467250882289, + 25.649726325904204 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.13467250882289, + 25.722069481855065 + ], + [ + -80.13467250882289, + 25.794412637805927 + ], + [ + -80.05489787112936, + 25.722069481855065 + ], + [ + -80.13467250882289, + 25.722069481855065 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.13467250882289, + 25.794412637805927 + ], + [ + -80.05489787112936, + 25.794412637805927 + ], + [ + -80.05489787112936, + 25.722069481855065 + ], + [ + -80.13467250882289, + 25.794412637805927 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.13467250882289, + 25.794412637805927 + ], + [ + -80.13467250882289, + 25.866755793756788 + ], + [ + -80.05489787112936, + 25.866755793756788 + ], + [ + -80.13467250882289, + 25.794412637805927 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.13467250882289, + 25.794412637805927 + ], + [ + -80.05489787112936, + 25.866755793756788 + ], + [ + -80.05489787112936, + 25.794412637805927 + ], + [ + -80.13467250882289, + 25.794412637805927 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.13467250882289, + 25.866755793756788 + ], + [ + -80.13467250882289, + 25.93909894970765 + ], + [ + -80.05489787112936, + 25.866755793756788 + ], + [ + -80.13467250882289, + 25.866755793756788 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.13467250882289, + 25.93909894970765 + ], + [ + -80.05489787112936, + 25.93909894970765 + ], + [ + -80.05489787112936, + 25.866755793756788 + ], + [ + -80.13467250882289, + 25.93909894970765 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.13467250882289, + 25.93909894970765 + ], + [ + -80.13467250882289, + 26.01144210565851 + ], + [ + -80.05489787112936, + 26.01144210565851 + ], + [ + -80.13467250882289, + 25.93909894970765 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.13467250882289, + 25.93909894970765 + ], + [ + -80.05489787112936, + 26.01144210565851 + ], + [ + -80.05489787112936, + 25.93909894970765 + ], + [ + -80.13467250882289, + 25.93909894970765 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.13467250882289, + 26.01144210565851 + ], + [ + -80.13467250882289, + 26.08378526160937 + ], + [ + -80.05489787112936, + 26.01144210565851 + ], + [ + -80.13467250882289, + 26.01144210565851 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.13467250882289, + 26.08378526160937 + ], + [ + -80.05489787112936, + 26.08378526160937 + ], + [ + -80.05489787112936, + 26.01144210565851 + ], + [ + -80.13467250882289, + 26.08378526160937 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.13467250882289, + 26.08378526160937 + ], + [ + -80.13467250882289, + 26.156128417560232 + ], + [ + -80.05489787112936, + 26.156128417560232 + ], + [ + -80.13467250882289, + 26.08378526160937 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.13467250882289, + 26.08378526160937 + ], + [ + -80.05489787112936, + 26.156128417560232 + ], + [ + -80.05489787112936, + 26.08378526160937 + ], + [ + -80.13467250882289, + 26.08378526160937 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.13467250882289, + 26.156128417560232 + ], + [ + -80.13467250882289, + 26.228471573511094 + ], + [ + -80.05489787112936, + 26.156128417560232 + ], + [ + -80.13467250882289, + 26.156128417560232 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.13467250882289, + 26.228471573511094 + ], + [ + -80.05489787112936, + 26.228471573511094 + ], + [ + -80.05489787112936, + 26.156128417560232 + ], + [ + -80.13467250882289, + 26.228471573511094 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.13467250882289, + 26.228471573511094 + ], + [ + -80.13467250882289, + 26.300814729461955 + ], + [ + -80.05489787112936, + 26.300814729461955 + ], + [ + -80.13467250882289, + 26.228471573511094 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.13467250882289, + 26.228471573511094 + ], + [ + -80.05489787112936, + 26.300814729461955 + ], + [ + -80.05489787112936, + 26.228471573511094 + ], + [ + -80.13467250882289, + 26.228471573511094 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.13467250882289, + 26.300814729461955 + ], + [ + -80.13467250882289, + 26.373157885412816 + ], + [ + -80.05489787112936, + 26.300814729461955 + ], + [ + -80.13467250882289, + 26.300814729461955 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.13467250882289, + 26.373157885412816 + ], + [ + -80.05489787112936, + 26.373157885412816 + ], + [ + -80.05489787112936, + 26.300814729461955 + ], + [ + -80.13467250882289, + 26.373157885412816 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.13467250882289, + 26.373157885412816 + ], + [ + -80.13467250882289, + 26.445501041363677 + ], + [ + -80.05489787112936, + 26.445501041363677 + ], + [ + -80.13467250882289, + 26.373157885412816 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.13467250882289, + 26.373157885412816 + ], + [ + -80.05489787112936, + 26.445501041363677 + ], + [ + -80.05489787112936, + 26.373157885412816 + ], + [ + -80.13467250882289, + 26.373157885412816 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.05489787112936, + 24.926294766395593 + ], + [ + -80.05489787112936, + 24.998637922346454 + ], + [ + -79.97512323343582, + 24.926294766395593 + ], + [ + -80.05489787112936, + 24.926294766395593 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.05489787112936, + 24.998637922346454 + ], + [ + -79.97512323343582, + 24.998637922346454 + ], + [ + -79.97512323343582, + 24.926294766395593 + ], + [ + -80.05489787112936, + 24.998637922346454 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.05489787112936, + 24.998637922346454 + ], + [ + -79.97512323343582, + 25.070981078297315 + ], + [ + -79.97512323343582, + 24.998637922346454 + ], + [ + -80.05489787112936, + 24.998637922346454 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.05489787112936, + 24.998637922346454 + ], + [ + -80.05489787112936, + 25.070981078297315 + ], + [ + -79.97512323343582, + 25.070981078297315 + ], + [ + -80.05489787112936, + 24.998637922346454 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.05489787112936, + 25.070981078297315 + ], + [ + -80.05489787112936, + 25.143324234248176 + ], + [ + -79.97512323343582, + 25.070981078297315 + ], + [ + -80.05489787112936, + 25.070981078297315 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.05489787112936, + 25.143324234248176 + ], + [ + -79.97512323343582, + 25.143324234248176 + ], + [ + -79.97512323343582, + 25.070981078297315 + ], + [ + -80.05489787112936, + 25.143324234248176 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.05489787112936, + 25.143324234248176 + ], + [ + -79.97512323343582, + 25.215667390199037 + ], + [ + -79.97512323343582, + 25.143324234248176 + ], + [ + -80.05489787112936, + 25.143324234248176 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.05489787112936, + 25.143324234248176 + ], + [ + -80.05489787112936, + 25.215667390199037 + ], + [ + -79.97512323343582, + 25.215667390199037 + ], + [ + -80.05489787112936, + 25.143324234248176 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.05489787112936, + 25.215667390199037 + ], + [ + -80.05489787112936, + 25.2880105461499 + ], + [ + -79.97512323343582, + 25.215667390199037 + ], + [ + -80.05489787112936, + 25.215667390199037 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.05489787112936, + 25.2880105461499 + ], + [ + -79.97512323343582, + 25.2880105461499 + ], + [ + -79.97512323343582, + 25.215667390199037 + ], + [ + -80.05489787112936, + 25.2880105461499 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.05489787112936, + 25.2880105461499 + ], + [ + -79.97512323343582, + 25.36035370210076 + ], + [ + -79.97512323343582, + 25.2880105461499 + ], + [ + -80.05489787112936, + 25.2880105461499 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.05489787112936, + 25.2880105461499 + ], + [ + -80.05489787112936, + 25.36035370210076 + ], + [ + -79.97512323343582, + 25.36035370210076 + ], + [ + -80.05489787112936, + 25.2880105461499 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.05489787112936, + 25.36035370210076 + ], + [ + -80.05489787112936, + 25.43269685805162 + ], + [ + -79.97512323343582, + 25.36035370210076 + ], + [ + -80.05489787112936, + 25.36035370210076 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.05489787112936, + 25.43269685805162 + ], + [ + -79.97512323343582, + 25.43269685805162 + ], + [ + -79.97512323343582, + 25.36035370210076 + ], + [ + -80.05489787112936, + 25.43269685805162 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.05489787112936, + 25.43269685805162 + ], + [ + -79.97512323343582, + 25.505040014002482 + ], + [ + -79.97512323343582, + 25.43269685805162 + ], + [ + -80.05489787112936, + 25.43269685805162 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.05489787112936, + 25.43269685805162 + ], + [ + -80.05489787112936, + 25.505040014002482 + ], + [ + -79.97512323343582, + 25.505040014002482 + ], + [ + -80.05489787112936, + 25.43269685805162 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.05489787112936, + 25.505040014002482 + ], + [ + -80.05489787112936, + 25.577383169953343 + ], + [ + -79.97512323343582, + 25.505040014002482 + ], + [ + -80.05489787112936, + 25.505040014002482 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.05489787112936, + 25.577383169953343 + ], + [ + -79.97512323343582, + 25.577383169953343 + ], + [ + -79.97512323343582, + 25.505040014002482 + ], + [ + -80.05489787112936, + 25.577383169953343 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.05489787112936, + 25.577383169953343 + ], + [ + -79.97512323343582, + 25.649726325904204 + ], + [ + -79.97512323343582, + 25.577383169953343 + ], + [ + -80.05489787112936, + 25.577383169953343 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.05489787112936, + 25.577383169953343 + ], + [ + -80.05489787112936, + 25.649726325904204 + ], + [ + -79.97512323343582, + 25.649726325904204 + ], + [ + -80.05489787112936, + 25.577383169953343 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.05489787112936, + 25.649726325904204 + ], + [ + -80.05489787112936, + 25.722069481855065 + ], + [ + -79.97512323343582, + 25.649726325904204 + ], + [ + -80.05489787112936, + 25.649726325904204 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.05489787112936, + 25.722069481855065 + ], + [ + -79.97512323343582, + 25.722069481855065 + ], + [ + -79.97512323343582, + 25.649726325904204 + ], + [ + -80.05489787112936, + 25.722069481855065 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.05489787112936, + 25.722069481855065 + ], + [ + -79.97512323343582, + 25.794412637805927 + ], + [ + -79.97512323343582, + 25.722069481855065 + ], + [ + -80.05489787112936, + 25.722069481855065 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.05489787112936, + 25.722069481855065 + ], + [ + -80.05489787112936, + 25.794412637805927 + ], + [ + -79.97512323343582, + 25.794412637805927 + ], + [ + -80.05489787112936, + 25.722069481855065 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.05489787112936, + 25.794412637805927 + ], + [ + -80.05489787112936, + 25.866755793756788 + ], + [ + -79.97512323343582, + 25.794412637805927 + ], + [ + -80.05489787112936, + 25.794412637805927 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.05489787112936, + 25.866755793756788 + ], + [ + -79.97512323343582, + 25.866755793756788 + ], + [ + -79.97512323343582, + 25.794412637805927 + ], + [ + -80.05489787112936, + 25.866755793756788 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.05489787112936, + 25.866755793756788 + ], + [ + -79.97512323343582, + 25.93909894970765 + ], + [ + -79.97512323343582, + 25.866755793756788 + ], + [ + -80.05489787112936, + 25.866755793756788 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.05489787112936, + 25.866755793756788 + ], + [ + -80.05489787112936, + 25.93909894970765 + ], + [ + -79.97512323343582, + 25.93909894970765 + ], + [ + -80.05489787112936, + 25.866755793756788 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.05489787112936, + 25.93909894970765 + ], + [ + -80.05489787112936, + 26.01144210565851 + ], + [ + -79.97512323343582, + 25.93909894970765 + ], + [ + -80.05489787112936, + 25.93909894970765 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.05489787112936, + 26.01144210565851 + ], + [ + -79.97512323343582, + 26.01144210565851 + ], + [ + -79.97512323343582, + 25.93909894970765 + ], + [ + -80.05489787112936, + 26.01144210565851 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.05489787112936, + 26.01144210565851 + ], + [ + -79.97512323343582, + 26.08378526160937 + ], + [ + -79.97512323343582, + 26.01144210565851 + ], + [ + -80.05489787112936, + 26.01144210565851 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.05489787112936, + 26.01144210565851 + ], + [ + -80.05489787112936, + 26.08378526160937 + ], + [ + -79.97512323343582, + 26.08378526160937 + ], + [ + -80.05489787112936, + 26.01144210565851 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.05489787112936, + 26.08378526160937 + ], + [ + -80.05489787112936, + 26.156128417560232 + ], + [ + -79.97512323343582, + 26.08378526160937 + ], + [ + -80.05489787112936, + 26.08378526160937 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.05489787112936, + 26.156128417560232 + ], + [ + -79.97512323343582, + 26.156128417560232 + ], + [ + -79.97512323343582, + 26.08378526160937 + ], + [ + -80.05489787112936, + 26.156128417560232 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.05489787112936, + 26.156128417560232 + ], + [ + -79.97512323343582, + 26.228471573511094 + ], + [ + -79.97512323343582, + 26.156128417560232 + ], + [ + -80.05489787112936, + 26.156128417560232 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.05489787112936, + 26.156128417560232 + ], + [ + -80.05489787112936, + 26.228471573511094 + ], + [ + -79.97512323343582, + 26.228471573511094 + ], + [ + -80.05489787112936, + 26.156128417560232 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.05489787112936, + 26.228471573511094 + ], + [ + -80.05489787112936, + 26.300814729461955 + ], + [ + -79.97512323343582, + 26.228471573511094 + ], + [ + -80.05489787112936, + 26.228471573511094 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.05489787112936, + 26.300814729461955 + ], + [ + -79.97512323343582, + 26.300814729461955 + ], + [ + -79.97512323343582, + 26.228471573511094 + ], + [ + -80.05489787112936, + 26.300814729461955 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.05489787112936, + 26.300814729461955 + ], + [ + -79.97512323343582, + 26.373157885412816 + ], + [ + -79.97512323343582, + 26.300814729461955 + ], + [ + -80.05489787112936, + 26.300814729461955 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.05489787112936, + 26.300814729461955 + ], + [ + -80.05489787112936, + 26.373157885412816 + ], + [ + -79.97512323343582, + 26.373157885412816 + ], + [ + -80.05489787112936, + 26.300814729461955 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.05489787112936, + 26.373157885412816 + ], + [ + -80.05489787112936, + 26.445501041363677 + ], + [ + -79.97512323343582, + 26.373157885412816 + ], + [ + -80.05489787112936, + 26.373157885412816 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.05489787112936, + 26.445501041363677 + ], + [ + -79.97512323343582, + 26.445501041363677 + ], + [ + -79.97512323343582, + 26.373157885412816 + ], + [ + -80.05489787112936, + 26.445501041363677 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97512323343582, + 24.926294766395593 + ], + [ + -79.97512323343582, + 24.998637922346454 + ], + [ + -79.89534859574229, + 24.998637922346454 + ], + [ + -79.97512323343582, + 24.926294766395593 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97512323343582, + 24.926294766395593 + ], + [ + -79.89534859574229, + 24.998637922346454 + ], + [ + -79.89534859574229, + 24.926294766395593 + ], + [ + -79.97512323343582, + 24.926294766395593 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97512323343582, + 24.998637922346454 + ], + [ + -79.97512323343582, + 25.070981078297315 + ], + [ + -79.89534859574229, + 24.998637922346454 + ], + [ + -79.97512323343582, + 24.998637922346454 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97512323343582, + 25.070981078297315 + ], + [ + -79.89534859574229, + 25.070981078297315 + ], + [ + -79.89534859574229, + 24.998637922346454 + ], + [ + -79.97512323343582, + 25.070981078297315 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97512323343582, + 25.070981078297315 + ], + [ + -79.97512323343582, + 25.143324234248176 + ], + [ + -79.89534859574229, + 25.143324234248176 + ], + [ + -79.97512323343582, + 25.070981078297315 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97512323343582, + 25.070981078297315 + ], + [ + -79.89534859574229, + 25.143324234248176 + ], + [ + -79.89534859574229, + 25.070981078297315 + ], + [ + -79.97512323343582, + 25.070981078297315 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97512323343582, + 25.143324234248176 + ], + [ + -79.97512323343582, + 25.215667390199037 + ], + [ + -79.89534859574229, + 25.143324234248176 + ], + [ + -79.97512323343582, + 25.143324234248176 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97512323343582, + 25.215667390199037 + ], + [ + -79.89534859574229, + 25.215667390199037 + ], + [ + -79.89534859574229, + 25.143324234248176 + ], + [ + -79.97512323343582, + 25.215667390199037 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97512323343582, + 25.215667390199037 + ], + [ + -79.97512323343582, + 25.2880105461499 + ], + [ + -79.89534859574229, + 25.2880105461499 + ], + [ + -79.97512323343582, + 25.215667390199037 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97512323343582, + 25.215667390199037 + ], + [ + -79.89534859574229, + 25.2880105461499 + ], + [ + -79.89534859574229, + 25.215667390199037 + ], + [ + -79.97512323343582, + 25.215667390199037 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97512323343582, + 25.2880105461499 + ], + [ + -79.97512323343582, + 25.36035370210076 + ], + [ + -79.89534859574229, + 25.2880105461499 + ], + [ + -79.97512323343582, + 25.2880105461499 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97512323343582, + 25.36035370210076 + ], + [ + -79.89534859574229, + 25.36035370210076 + ], + [ + -79.89534859574229, + 25.2880105461499 + ], + [ + -79.97512323343582, + 25.36035370210076 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97512323343582, + 25.36035370210076 + ], + [ + -79.97512323343582, + 25.43269685805162 + ], + [ + -79.89534859574229, + 25.43269685805162 + ], + [ + -79.97512323343582, + 25.36035370210076 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97512323343582, + 25.36035370210076 + ], + [ + -79.89534859574229, + 25.43269685805162 + ], + [ + -79.89534859574229, + 25.36035370210076 + ], + [ + -79.97512323343582, + 25.36035370210076 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97512323343582, + 25.43269685805162 + ], + [ + -79.97512323343582, + 25.505040014002482 + ], + [ + -79.89534859574229, + 25.43269685805162 + ], + [ + -79.97512323343582, + 25.43269685805162 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97512323343582, + 25.505040014002482 + ], + [ + -79.89534859574229, + 25.505040014002482 + ], + [ + -79.89534859574229, + 25.43269685805162 + ], + [ + -79.97512323343582, + 25.505040014002482 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97512323343582, + 25.505040014002482 + ], + [ + -79.97512323343582, + 25.577383169953343 + ], + [ + -79.89534859574229, + 25.577383169953343 + ], + [ + -79.97512323343582, + 25.505040014002482 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97512323343582, + 25.505040014002482 + ], + [ + -79.89534859574229, + 25.577383169953343 + ], + [ + -79.89534859574229, + 25.505040014002482 + ], + [ + -79.97512323343582, + 25.505040014002482 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97512323343582, + 25.577383169953343 + ], + [ + -79.97512323343582, + 25.649726325904204 + ], + [ + -79.89534859574229, + 25.577383169953343 + ], + [ + -79.97512323343582, + 25.577383169953343 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97512323343582, + 25.649726325904204 + ], + [ + -79.89534859574229, + 25.649726325904204 + ], + [ + -79.89534859574229, + 25.577383169953343 + ], + [ + -79.97512323343582, + 25.649726325904204 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97512323343582, + 25.649726325904204 + ], + [ + -79.97512323343582, + 25.722069481855065 + ], + [ + -79.89534859574229, + 25.722069481855065 + ], + [ + -79.97512323343582, + 25.649726325904204 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97512323343582, + 25.649726325904204 + ], + [ + -79.89534859574229, + 25.722069481855065 + ], + [ + -79.89534859574229, + 25.649726325904204 + ], + [ + -79.97512323343582, + 25.649726325904204 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97512323343582, + 25.722069481855065 + ], + [ + -79.97512323343582, + 25.794412637805927 + ], + [ + -79.89534859574229, + 25.722069481855065 + ], + [ + -79.97512323343582, + 25.722069481855065 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97512323343582, + 25.794412637805927 + ], + [ + -79.89534859574229, + 25.794412637805927 + ], + [ + -79.89534859574229, + 25.722069481855065 + ], + [ + -79.97512323343582, + 25.794412637805927 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97512323343582, + 25.794412637805927 + ], + [ + -79.97512323343582, + 25.866755793756788 + ], + [ + -79.89534859574229, + 25.866755793756788 + ], + [ + -79.97512323343582, + 25.794412637805927 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97512323343582, + 25.794412637805927 + ], + [ + -79.89534859574229, + 25.866755793756788 + ], + [ + -79.89534859574229, + 25.794412637805927 + ], + [ + -79.97512323343582, + 25.794412637805927 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97512323343582, + 25.866755793756788 + ], + [ + -79.97512323343582, + 25.93909894970765 + ], + [ + -79.89534859574229, + 25.866755793756788 + ], + [ + -79.97512323343582, + 25.866755793756788 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97512323343582, + 25.93909894970765 + ], + [ + -79.89534859574229, + 25.93909894970765 + ], + [ + -79.89534859574229, + 25.866755793756788 + ], + [ + -79.97512323343582, + 25.93909894970765 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97512323343582, + 25.93909894970765 + ], + [ + -79.97512323343582, + 26.01144210565851 + ], + [ + -79.89534859574229, + 26.01144210565851 + ], + [ + -79.97512323343582, + 25.93909894970765 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97512323343582, + 25.93909894970765 + ], + [ + -79.89534859574229, + 26.01144210565851 + ], + [ + -79.89534859574229, + 25.93909894970765 + ], + [ + -79.97512323343582, + 25.93909894970765 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97512323343582, + 26.01144210565851 + ], + [ + -79.97512323343582, + 26.08378526160937 + ], + [ + -79.89534859574229, + 26.01144210565851 + ], + [ + -79.97512323343582, + 26.01144210565851 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97512323343582, + 26.08378526160937 + ], + [ + -79.89534859574229, + 26.08378526160937 + ], + [ + -79.89534859574229, + 26.01144210565851 + ], + [ + -79.97512323343582, + 26.08378526160937 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97512323343582, + 26.08378526160937 + ], + [ + -79.97512323343582, + 26.156128417560232 + ], + [ + -79.89534859574229, + 26.156128417560232 + ], + [ + -79.97512323343582, + 26.08378526160937 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97512323343582, + 26.08378526160937 + ], + [ + -79.89534859574229, + 26.156128417560232 + ], + [ + -79.89534859574229, + 26.08378526160937 + ], + [ + -79.97512323343582, + 26.08378526160937 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97512323343582, + 26.156128417560232 + ], + [ + -79.97512323343582, + 26.228471573511094 + ], + [ + -79.89534859574229, + 26.156128417560232 + ], + [ + -79.97512323343582, + 26.156128417560232 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97512323343582, + 26.228471573511094 + ], + [ + -79.89534859574229, + 26.228471573511094 + ], + [ + -79.89534859574229, + 26.156128417560232 + ], + [ + -79.97512323343582, + 26.228471573511094 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97512323343582, + 26.228471573511094 + ], + [ + -79.97512323343582, + 26.300814729461955 + ], + [ + -79.89534859574229, + 26.300814729461955 + ], + [ + -79.97512323343582, + 26.228471573511094 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97512323343582, + 26.228471573511094 + ], + [ + -79.89534859574229, + 26.300814729461955 + ], + [ + -79.89534859574229, + 26.228471573511094 + ], + [ + -79.97512323343582, + 26.228471573511094 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97512323343582, + 26.300814729461955 + ], + [ + -79.97512323343582, + 26.373157885412816 + ], + [ + -79.89534859574229, + 26.300814729461955 + ], + [ + -79.97512323343582, + 26.300814729461955 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97512323343582, + 26.373157885412816 + ], + [ + -79.89534859574229, + 26.373157885412816 + ], + [ + -79.89534859574229, + 26.300814729461955 + ], + [ + -79.97512323343582, + 26.373157885412816 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97512323343582, + 26.373157885412816 + ], + [ + -79.97512323343582, + 26.445501041363677 + ], + [ + -79.89534859574229, + 26.445501041363677 + ], + [ + -79.97512323343582, + 26.373157885412816 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.97512323343582, + 26.373157885412816 + ], + [ + -79.89534859574229, + 26.445501041363677 + ], + [ + -79.89534859574229, + 26.373157885412816 + ], + [ + -79.97512323343582, + 26.373157885412816 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.89534859574229, + 24.926294766395593 + ], + [ + -79.89534859574229, + 24.998637922346454 + ], + [ + -79.81557395804876, + 24.926294766395593 + ], + [ + -79.89534859574229, + 24.926294766395593 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.89534859574229, + 24.998637922346454 + ], + [ + -79.81557395804876, + 24.998637922346454 + ], + [ + -79.81557395804876, + 24.926294766395593 + ], + [ + -79.89534859574229, + 24.998637922346454 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.89534859574229, + 24.998637922346454 + ], + [ + -79.81557395804876, + 25.070981078297315 + ], + [ + -79.81557395804876, + 24.998637922346454 + ], + [ + -79.89534859574229, + 24.998637922346454 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.89534859574229, + 24.998637922346454 + ], + [ + -79.89534859574229, + 25.070981078297315 + ], + [ + -79.81557395804876, + 25.070981078297315 + ], + [ + -79.89534859574229, + 24.998637922346454 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.89534859574229, + 25.070981078297315 + ], + [ + -79.89534859574229, + 25.143324234248176 + ], + [ + -79.81557395804876, + 25.070981078297315 + ], + [ + -79.89534859574229, + 25.070981078297315 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.89534859574229, + 25.143324234248176 + ], + [ + -79.81557395804876, + 25.143324234248176 + ], + [ + -79.81557395804876, + 25.070981078297315 + ], + [ + -79.89534859574229, + 25.143324234248176 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.89534859574229, + 25.143324234248176 + ], + [ + -79.81557395804876, + 25.215667390199037 + ], + [ + -79.81557395804876, + 25.143324234248176 + ], + [ + -79.89534859574229, + 25.143324234248176 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.89534859574229, + 25.143324234248176 + ], + [ + -79.89534859574229, + 25.215667390199037 + ], + [ + -79.81557395804876, + 25.215667390199037 + ], + [ + -79.89534859574229, + 25.143324234248176 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.89534859574229, + 25.215667390199037 + ], + [ + -79.89534859574229, + 25.2880105461499 + ], + [ + -79.81557395804876, + 25.215667390199037 + ], + [ + -79.89534859574229, + 25.215667390199037 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.89534859574229, + 25.2880105461499 + ], + [ + -79.81557395804876, + 25.2880105461499 + ], + [ + -79.81557395804876, + 25.215667390199037 + ], + [ + -79.89534859574229, + 25.2880105461499 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.89534859574229, + 25.2880105461499 + ], + [ + -79.81557395804876, + 25.36035370210076 + ], + [ + -79.81557395804876, + 25.2880105461499 + ], + [ + -79.89534859574229, + 25.2880105461499 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.89534859574229, + 25.2880105461499 + ], + [ + -79.89534859574229, + 25.36035370210076 + ], + [ + -79.81557395804876, + 25.36035370210076 + ], + [ + -79.89534859574229, + 25.2880105461499 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.89534859574229, + 25.36035370210076 + ], + [ + -79.89534859574229, + 25.43269685805162 + ], + [ + -79.81557395804876, + 25.36035370210076 + ], + [ + -79.89534859574229, + 25.36035370210076 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.89534859574229, + 25.43269685805162 + ], + [ + -79.81557395804876, + 25.43269685805162 + ], + [ + -79.81557395804876, + 25.36035370210076 + ], + [ + -79.89534859574229, + 25.43269685805162 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.89534859574229, + 25.43269685805162 + ], + [ + -79.81557395804876, + 25.505040014002482 + ], + [ + -79.81557395804876, + 25.43269685805162 + ], + [ + -79.89534859574229, + 25.43269685805162 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.89534859574229, + 25.43269685805162 + ], + [ + -79.89534859574229, + 25.505040014002482 + ], + [ + -79.81557395804876, + 25.505040014002482 + ], + [ + -79.89534859574229, + 25.43269685805162 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.89534859574229, + 25.505040014002482 + ], + [ + -79.89534859574229, + 25.577383169953343 + ], + [ + -79.81557395804876, + 25.505040014002482 + ], + [ + -79.89534859574229, + 25.505040014002482 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.89534859574229, + 25.577383169953343 + ], + [ + -79.81557395804876, + 25.577383169953343 + ], + [ + -79.81557395804876, + 25.505040014002482 + ], + [ + -79.89534859574229, + 25.577383169953343 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.89534859574229, + 25.577383169953343 + ], + [ + -79.81557395804876, + 25.649726325904204 + ], + [ + -79.81557395804876, + 25.577383169953343 + ], + [ + -79.89534859574229, + 25.577383169953343 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.89534859574229, + 25.577383169953343 + ], + [ + -79.89534859574229, + 25.649726325904204 + ], + [ + -79.81557395804876, + 25.649726325904204 + ], + [ + -79.89534859574229, + 25.577383169953343 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.89534859574229, + 25.649726325904204 + ], + [ + -79.89534859574229, + 25.722069481855065 + ], + [ + -79.81557395804876, + 25.649726325904204 + ], + [ + -79.89534859574229, + 25.649726325904204 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.89534859574229, + 25.722069481855065 + ], + [ + -79.81557395804876, + 25.722069481855065 + ], + [ + -79.81557395804876, + 25.649726325904204 + ], + [ + -79.89534859574229, + 25.722069481855065 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.89534859574229, + 25.722069481855065 + ], + [ + -79.81557395804876, + 25.794412637805927 + ], + [ + -79.81557395804876, + 25.722069481855065 + ], + [ + -79.89534859574229, + 25.722069481855065 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.89534859574229, + 25.722069481855065 + ], + [ + -79.89534859574229, + 25.794412637805927 + ], + [ + -79.81557395804876, + 25.794412637805927 + ], + [ + -79.89534859574229, + 25.722069481855065 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.89534859574229, + 25.794412637805927 + ], + [ + -79.89534859574229, + 25.866755793756788 + ], + [ + -79.81557395804876, + 25.794412637805927 + ], + [ + -79.89534859574229, + 25.794412637805927 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.89534859574229, + 25.866755793756788 + ], + [ + -79.81557395804876, + 25.866755793756788 + ], + [ + -79.81557395804876, + 25.794412637805927 + ], + [ + -79.89534859574229, + 25.866755793756788 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.89534859574229, + 25.866755793756788 + ], + [ + -79.81557395804876, + 25.93909894970765 + ], + [ + -79.81557395804876, + 25.866755793756788 + ], + [ + -79.89534859574229, + 25.866755793756788 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.89534859574229, + 25.866755793756788 + ], + [ + -79.89534859574229, + 25.93909894970765 + ], + [ + -79.81557395804876, + 25.93909894970765 + ], + [ + -79.89534859574229, + 25.866755793756788 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.89534859574229, + 25.93909894970765 + ], + [ + -79.89534859574229, + 26.01144210565851 + ], + [ + -79.81557395804876, + 25.93909894970765 + ], + [ + -79.89534859574229, + 25.93909894970765 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.89534859574229, + 26.01144210565851 + ], + [ + -79.81557395804876, + 26.01144210565851 + ], + [ + -79.81557395804876, + 25.93909894970765 + ], + [ + -79.89534859574229, + 26.01144210565851 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.89534859574229, + 26.01144210565851 + ], + [ + -79.81557395804876, + 26.08378526160937 + ], + [ + -79.81557395804876, + 26.01144210565851 + ], + [ + -79.89534859574229, + 26.01144210565851 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.89534859574229, + 26.01144210565851 + ], + [ + -79.89534859574229, + 26.08378526160937 + ], + [ + -79.81557395804876, + 26.08378526160937 + ], + [ + -79.89534859574229, + 26.01144210565851 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.89534859574229, + 26.08378526160937 + ], + [ + -79.89534859574229, + 26.156128417560232 + ], + [ + -79.81557395804876, + 26.08378526160937 + ], + [ + -79.89534859574229, + 26.08378526160937 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.89534859574229, + 26.156128417560232 + ], + [ + -79.81557395804876, + 26.156128417560232 + ], + [ + -79.81557395804876, + 26.08378526160937 + ], + [ + -79.89534859574229, + 26.156128417560232 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.89534859574229, + 26.156128417560232 + ], + [ + -79.81557395804876, + 26.228471573511094 + ], + [ + -79.81557395804876, + 26.156128417560232 + ], + [ + -79.89534859574229, + 26.156128417560232 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.89534859574229, + 26.156128417560232 + ], + [ + -79.89534859574229, + 26.228471573511094 + ], + [ + -79.81557395804876, + 26.228471573511094 + ], + [ + -79.89534859574229, + 26.156128417560232 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.89534859574229, + 26.228471573511094 + ], + [ + -79.89534859574229, + 26.300814729461955 + ], + [ + -79.81557395804876, + 26.228471573511094 + ], + [ + -79.89534859574229, + 26.228471573511094 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.89534859574229, + 26.300814729461955 + ], + [ + -79.81557395804876, + 26.300814729461955 + ], + [ + -79.81557395804876, + 26.228471573511094 + ], + [ + -79.89534859574229, + 26.300814729461955 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.89534859574229, + 26.300814729461955 + ], + [ + -79.81557395804876, + 26.373157885412816 + ], + [ + -79.81557395804876, + 26.300814729461955 + ], + [ + -79.89534859574229, + 26.300814729461955 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.89534859574229, + 26.300814729461955 + ], + [ + -79.89534859574229, + 26.373157885412816 + ], + [ + -79.81557395804876, + 26.373157885412816 + ], + [ + -79.89534859574229, + 26.300814729461955 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.89534859574229, + 26.373157885412816 + ], + [ + -79.89534859574229, + 26.445501041363677 + ], + [ + -79.81557395804876, + 26.373157885412816 + ], + [ + -79.89534859574229, + 26.373157885412816 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.89534859574229, + 26.445501041363677 + ], + [ + -79.81557395804876, + 26.445501041363677 + ], + [ + -79.81557395804876, + 26.373157885412816 + ], + [ + -79.89534859574229, + 26.445501041363677 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "fill-opacity": 0, + "stroke": "#0ff" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.650390625, + 24.926294766395593 + ], + [ + -79.8486328125, + 24.926294766395593 + ], + [ + -79.8486328125, + 26.43122806450644 + ], + [ + -81.650390625, + 26.43122806450644 + ], + [ + -81.650390625, + 24.926294766395593 + ] + ] + ] + } + } + ] +} \ No newline at end of file diff --git a/packages/turf-triangle-grid/test/out/grid3.geojson b/packages/turf-triangle-grid/test/out/grid3.geojson new file mode 100644 index 0000000000..200eaf1c0c --- /dev/null +++ b/packages/turf-triangle-grid/test/out/grid3.geojson @@ -0,0 +1,7167 @@ +{ + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.3876953125, + 38.71980474264239 + ], + [ + -77.3876953125, + 38.748742005022734 + ], + [ + -77.35060640970083, + 38.71980474264239 + ], + [ + -77.3876953125, + 38.71980474264239 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.3876953125, + 38.748742005022734 + ], + [ + -77.35060640970083, + 38.748742005022734 + ], + [ + -77.35060640970083, + 38.71980474264239 + ], + [ + -77.3876953125, + 38.748742005022734 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.3876953125, + 38.748742005022734 + ], + [ + -77.35060640970083, + 38.77767926740308 + ], + [ + -77.35060640970083, + 38.748742005022734 + ], + [ + -77.3876953125, + 38.748742005022734 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.3876953125, + 38.748742005022734 + ], + [ + -77.3876953125, + 38.77767926740308 + ], + [ + -77.35060640970083, + 38.77767926740308 + ], + [ + -77.3876953125, + 38.748742005022734 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.3876953125, + 38.77767926740308 + ], + [ + -77.3876953125, + 38.806616529783426 + ], + [ + -77.35060640970083, + 38.77767926740308 + ], + [ + -77.3876953125, + 38.77767926740308 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.3876953125, + 38.806616529783426 + ], + [ + -77.35060640970083, + 38.806616529783426 + ], + [ + -77.35060640970083, + 38.77767926740308 + ], + [ + -77.3876953125, + 38.806616529783426 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.3876953125, + 38.806616529783426 + ], + [ + -77.35060640970083, + 38.83555379216377 + ], + [ + -77.35060640970083, + 38.806616529783426 + ], + [ + -77.3876953125, + 38.806616529783426 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.3876953125, + 38.806616529783426 + ], + [ + -77.3876953125, + 38.83555379216377 + ], + [ + -77.35060640970083, + 38.83555379216377 + ], + [ + -77.3876953125, + 38.806616529783426 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.3876953125, + 38.83555379216377 + ], + [ + -77.3876953125, + 38.86449105454412 + ], + [ + -77.35060640970083, + 38.83555379216377 + ], + [ + -77.3876953125, + 38.83555379216377 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.3876953125, + 38.86449105454412 + ], + [ + -77.35060640970083, + 38.86449105454412 + ], + [ + -77.35060640970083, + 38.83555379216377 + ], + [ + -77.3876953125, + 38.86449105454412 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.3876953125, + 38.86449105454412 + ], + [ + -77.35060640970083, + 38.893428316924464 + ], + [ + -77.35060640970083, + 38.86449105454412 + ], + [ + -77.3876953125, + 38.86449105454412 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.3876953125, + 38.86449105454412 + ], + [ + -77.3876953125, + 38.893428316924464 + ], + [ + -77.35060640970083, + 38.893428316924464 + ], + [ + -77.3876953125, + 38.86449105454412 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.3876953125, + 38.893428316924464 + ], + [ + -77.3876953125, + 38.92236557930481 + ], + [ + -77.35060640970083, + 38.893428316924464 + ], + [ + -77.3876953125, + 38.893428316924464 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.3876953125, + 38.92236557930481 + ], + [ + -77.35060640970083, + 38.92236557930481 + ], + [ + -77.35060640970083, + 38.893428316924464 + ], + [ + -77.3876953125, + 38.92236557930481 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.3876953125, + 38.92236557930481 + ], + [ + -77.35060640970083, + 38.951302841685155 + ], + [ + -77.35060640970083, + 38.92236557930481 + ], + [ + -77.3876953125, + 38.92236557930481 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.3876953125, + 38.92236557930481 + ], + [ + -77.3876953125, + 38.951302841685155 + ], + [ + -77.35060640970083, + 38.951302841685155 + ], + [ + -77.3876953125, + 38.92236557930481 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.3876953125, + 38.951302841685155 + ], + [ + -77.3876953125, + 38.9802401040655 + ], + [ + -77.35060640970083, + 38.951302841685155 + ], + [ + -77.3876953125, + 38.951302841685155 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.3876953125, + 38.9802401040655 + ], + [ + -77.35060640970083, + 38.9802401040655 + ], + [ + -77.35060640970083, + 38.951302841685155 + ], + [ + -77.3876953125, + 38.9802401040655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.3876953125, + 38.9802401040655 + ], + [ + -77.35060640970083, + 39.00917736644585 + ], + [ + -77.35060640970083, + 38.9802401040655 + ], + [ + -77.3876953125, + 38.9802401040655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.3876953125, + 38.9802401040655 + ], + [ + -77.3876953125, + 39.00917736644585 + ], + [ + -77.35060640970083, + 39.00917736644585 + ], + [ + -77.3876953125, + 38.9802401040655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.3876953125, + 39.00917736644585 + ], + [ + -77.3876953125, + 39.03811462882619 + ], + [ + -77.35060640970083, + 39.00917736644585 + ], + [ + -77.3876953125, + 39.00917736644585 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.3876953125, + 39.03811462882619 + ], + [ + -77.35060640970083, + 39.03811462882619 + ], + [ + -77.35060640970083, + 39.00917736644585 + ], + [ + -77.3876953125, + 39.03811462882619 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.35060640970083, + 38.71980474264239 + ], + [ + -77.35060640970083, + 38.748742005022734 + ], + [ + -77.31351750690166, + 38.748742005022734 + ], + [ + -77.35060640970083, + 38.71980474264239 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.35060640970083, + 38.71980474264239 + ], + [ + -77.31351750690166, + 38.748742005022734 + ], + [ + -77.31351750690166, + 38.71980474264239 + ], + [ + -77.35060640970083, + 38.71980474264239 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.35060640970083, + 38.748742005022734 + ], + [ + -77.35060640970083, + 38.77767926740308 + ], + [ + -77.31351750690166, + 38.748742005022734 + ], + [ + -77.35060640970083, + 38.748742005022734 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.35060640970083, + 38.77767926740308 + ], + [ + -77.31351750690166, + 38.77767926740308 + ], + [ + -77.31351750690166, + 38.748742005022734 + ], + [ + -77.35060640970083, + 38.77767926740308 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.35060640970083, + 38.77767926740308 + ], + [ + -77.35060640970083, + 38.806616529783426 + ], + [ + -77.31351750690166, + 38.806616529783426 + ], + [ + -77.35060640970083, + 38.77767926740308 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.35060640970083, + 38.77767926740308 + ], + [ + -77.31351750690166, + 38.806616529783426 + ], + [ + -77.31351750690166, + 38.77767926740308 + ], + [ + -77.35060640970083, + 38.77767926740308 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.35060640970083, + 38.806616529783426 + ], + [ + -77.35060640970083, + 38.83555379216377 + ], + [ + -77.31351750690166, + 38.806616529783426 + ], + [ + -77.35060640970083, + 38.806616529783426 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.35060640970083, + 38.83555379216377 + ], + [ + -77.31351750690166, + 38.83555379216377 + ], + [ + -77.31351750690166, + 38.806616529783426 + ], + [ + -77.35060640970083, + 38.83555379216377 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.35060640970083, + 38.83555379216377 + ], + [ + -77.35060640970083, + 38.86449105454412 + ], + [ + -77.31351750690166, + 38.86449105454412 + ], + [ + -77.35060640970083, + 38.83555379216377 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.35060640970083, + 38.83555379216377 + ], + [ + -77.31351750690166, + 38.86449105454412 + ], + [ + -77.31351750690166, + 38.83555379216377 + ], + [ + -77.35060640970083, + 38.83555379216377 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.35060640970083, + 38.86449105454412 + ], + [ + -77.35060640970083, + 38.893428316924464 + ], + [ + -77.31351750690166, + 38.86449105454412 + ], + [ + -77.35060640970083, + 38.86449105454412 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.35060640970083, + 38.893428316924464 + ], + [ + -77.31351750690166, + 38.893428316924464 + ], + [ + -77.31351750690166, + 38.86449105454412 + ], + [ + -77.35060640970083, + 38.893428316924464 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.35060640970083, + 38.893428316924464 + ], + [ + -77.35060640970083, + 38.92236557930481 + ], + [ + -77.31351750690166, + 38.92236557930481 + ], + [ + -77.35060640970083, + 38.893428316924464 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.35060640970083, + 38.893428316924464 + ], + [ + -77.31351750690166, + 38.92236557930481 + ], + [ + -77.31351750690166, + 38.893428316924464 + ], + [ + -77.35060640970083, + 38.893428316924464 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.35060640970083, + 38.92236557930481 + ], + [ + -77.35060640970083, + 38.951302841685155 + ], + [ + -77.31351750690166, + 38.92236557930481 + ], + [ + -77.35060640970083, + 38.92236557930481 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.35060640970083, + 38.951302841685155 + ], + [ + -77.31351750690166, + 38.951302841685155 + ], + [ + -77.31351750690166, + 38.92236557930481 + ], + [ + -77.35060640970083, + 38.951302841685155 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.35060640970083, + 38.951302841685155 + ], + [ + -77.35060640970083, + 38.9802401040655 + ], + [ + -77.31351750690166, + 38.9802401040655 + ], + [ + -77.35060640970083, + 38.951302841685155 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.35060640970083, + 38.951302841685155 + ], + [ + -77.31351750690166, + 38.9802401040655 + ], + [ + -77.31351750690166, + 38.951302841685155 + ], + [ + -77.35060640970083, + 38.951302841685155 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.35060640970083, + 38.9802401040655 + ], + [ + -77.35060640970083, + 39.00917736644585 + ], + [ + -77.31351750690166, + 38.9802401040655 + ], + [ + -77.35060640970083, + 38.9802401040655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.35060640970083, + 39.00917736644585 + ], + [ + -77.31351750690166, + 39.00917736644585 + ], + [ + -77.31351750690166, + 38.9802401040655 + ], + [ + -77.35060640970083, + 39.00917736644585 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.35060640970083, + 39.00917736644585 + ], + [ + -77.35060640970083, + 39.03811462882619 + ], + [ + -77.31351750690166, + 39.03811462882619 + ], + [ + -77.35060640970083, + 39.00917736644585 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.35060640970083, + 39.00917736644585 + ], + [ + -77.31351750690166, + 39.03811462882619 + ], + [ + -77.31351750690166, + 39.00917736644585 + ], + [ + -77.35060640970083, + 39.00917736644585 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.31351750690166, + 38.71980474264239 + ], + [ + -77.31351750690166, + 38.748742005022734 + ], + [ + -77.27642860410249, + 38.71980474264239 + ], + [ + -77.31351750690166, + 38.71980474264239 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.31351750690166, + 38.748742005022734 + ], + [ + -77.27642860410249, + 38.748742005022734 + ], + [ + -77.27642860410249, + 38.71980474264239 + ], + [ + -77.31351750690166, + 38.748742005022734 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.31351750690166, + 38.748742005022734 + ], + [ + -77.27642860410249, + 38.77767926740308 + ], + [ + -77.27642860410249, + 38.748742005022734 + ], + [ + -77.31351750690166, + 38.748742005022734 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.31351750690166, + 38.748742005022734 + ], + [ + -77.31351750690166, + 38.77767926740308 + ], + [ + -77.27642860410249, + 38.77767926740308 + ], + [ + -77.31351750690166, + 38.748742005022734 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.31351750690166, + 38.77767926740308 + ], + [ + -77.31351750690166, + 38.806616529783426 + ], + [ + -77.27642860410249, + 38.77767926740308 + ], + [ + -77.31351750690166, + 38.77767926740308 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.31351750690166, + 38.806616529783426 + ], + [ + -77.27642860410249, + 38.806616529783426 + ], + [ + -77.27642860410249, + 38.77767926740308 + ], + [ + -77.31351750690166, + 38.806616529783426 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.31351750690166, + 38.806616529783426 + ], + [ + -77.27642860410249, + 38.83555379216377 + ], + [ + -77.27642860410249, + 38.806616529783426 + ], + [ + -77.31351750690166, + 38.806616529783426 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.31351750690166, + 38.806616529783426 + ], + [ + -77.31351750690166, + 38.83555379216377 + ], + [ + -77.27642860410249, + 38.83555379216377 + ], + [ + -77.31351750690166, + 38.806616529783426 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.31351750690166, + 38.83555379216377 + ], + [ + -77.31351750690166, + 38.86449105454412 + ], + [ + -77.27642860410249, + 38.83555379216377 + ], + [ + -77.31351750690166, + 38.83555379216377 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.31351750690166, + 38.86449105454412 + ], + [ + -77.27642860410249, + 38.86449105454412 + ], + [ + -77.27642860410249, + 38.83555379216377 + ], + [ + -77.31351750690166, + 38.86449105454412 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.31351750690166, + 38.86449105454412 + ], + [ + -77.27642860410249, + 38.893428316924464 + ], + [ + -77.27642860410249, + 38.86449105454412 + ], + [ + -77.31351750690166, + 38.86449105454412 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.31351750690166, + 38.86449105454412 + ], + [ + -77.31351750690166, + 38.893428316924464 + ], + [ + -77.27642860410249, + 38.893428316924464 + ], + [ + -77.31351750690166, + 38.86449105454412 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.31351750690166, + 38.893428316924464 + ], + [ + -77.31351750690166, + 38.92236557930481 + ], + [ + -77.27642860410249, + 38.893428316924464 + ], + [ + -77.31351750690166, + 38.893428316924464 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.31351750690166, + 38.92236557930481 + ], + [ + -77.27642860410249, + 38.92236557930481 + ], + [ + -77.27642860410249, + 38.893428316924464 + ], + [ + -77.31351750690166, + 38.92236557930481 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.31351750690166, + 38.92236557930481 + ], + [ + -77.27642860410249, + 38.951302841685155 + ], + [ + -77.27642860410249, + 38.92236557930481 + ], + [ + -77.31351750690166, + 38.92236557930481 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.31351750690166, + 38.92236557930481 + ], + [ + -77.31351750690166, + 38.951302841685155 + ], + [ + -77.27642860410249, + 38.951302841685155 + ], + [ + -77.31351750690166, + 38.92236557930481 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.31351750690166, + 38.951302841685155 + ], + [ + -77.31351750690166, + 38.9802401040655 + ], + [ + -77.27642860410249, + 38.951302841685155 + ], + [ + -77.31351750690166, + 38.951302841685155 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.31351750690166, + 38.9802401040655 + ], + [ + -77.27642860410249, + 38.9802401040655 + ], + [ + -77.27642860410249, + 38.951302841685155 + ], + [ + -77.31351750690166, + 38.9802401040655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.31351750690166, + 38.9802401040655 + ], + [ + -77.27642860410249, + 39.00917736644585 + ], + [ + -77.27642860410249, + 38.9802401040655 + ], + [ + -77.31351750690166, + 38.9802401040655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.31351750690166, + 38.9802401040655 + ], + [ + -77.31351750690166, + 39.00917736644585 + ], + [ + -77.27642860410249, + 39.00917736644585 + ], + [ + -77.31351750690166, + 38.9802401040655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.31351750690166, + 39.00917736644585 + ], + [ + -77.31351750690166, + 39.03811462882619 + ], + [ + -77.27642860410249, + 39.00917736644585 + ], + [ + -77.31351750690166, + 39.00917736644585 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.31351750690166, + 39.03811462882619 + ], + [ + -77.27642860410249, + 39.03811462882619 + ], + [ + -77.27642860410249, + 39.00917736644585 + ], + [ + -77.31351750690166, + 39.03811462882619 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.27642860410249, + 38.71980474264239 + ], + [ + -77.27642860410249, + 38.748742005022734 + ], + [ + -77.23933970130332, + 38.748742005022734 + ], + [ + -77.27642860410249, + 38.71980474264239 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.27642860410249, + 38.71980474264239 + ], + [ + -77.23933970130332, + 38.748742005022734 + ], + [ + -77.23933970130332, + 38.71980474264239 + ], + [ + -77.27642860410249, + 38.71980474264239 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.27642860410249, + 38.748742005022734 + ], + [ + -77.27642860410249, + 38.77767926740308 + ], + [ + -77.23933970130332, + 38.748742005022734 + ], + [ + -77.27642860410249, + 38.748742005022734 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.27642860410249, + 38.77767926740308 + ], + [ + -77.23933970130332, + 38.77767926740308 + ], + [ + -77.23933970130332, + 38.748742005022734 + ], + [ + -77.27642860410249, + 38.77767926740308 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.27642860410249, + 38.77767926740308 + ], + [ + -77.27642860410249, + 38.806616529783426 + ], + [ + -77.23933970130332, + 38.806616529783426 + ], + [ + -77.27642860410249, + 38.77767926740308 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.27642860410249, + 38.77767926740308 + ], + [ + -77.23933970130332, + 38.806616529783426 + ], + [ + -77.23933970130332, + 38.77767926740308 + ], + [ + -77.27642860410249, + 38.77767926740308 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.27642860410249, + 38.806616529783426 + ], + [ + -77.27642860410249, + 38.83555379216377 + ], + [ + -77.23933970130332, + 38.806616529783426 + ], + [ + -77.27642860410249, + 38.806616529783426 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.27642860410249, + 38.83555379216377 + ], + [ + -77.23933970130332, + 38.83555379216377 + ], + [ + -77.23933970130332, + 38.806616529783426 + ], + [ + -77.27642860410249, + 38.83555379216377 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.27642860410249, + 38.83555379216377 + ], + [ + -77.27642860410249, + 38.86449105454412 + ], + [ + -77.23933970130332, + 38.86449105454412 + ], + [ + -77.27642860410249, + 38.83555379216377 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.27642860410249, + 38.83555379216377 + ], + [ + -77.23933970130332, + 38.86449105454412 + ], + [ + -77.23933970130332, + 38.83555379216377 + ], + [ + -77.27642860410249, + 38.83555379216377 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.27642860410249, + 38.86449105454412 + ], + [ + -77.27642860410249, + 38.893428316924464 + ], + [ + -77.23933970130332, + 38.86449105454412 + ], + [ + -77.27642860410249, + 38.86449105454412 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.27642860410249, + 38.893428316924464 + ], + [ + -77.23933970130332, + 38.893428316924464 + ], + [ + -77.23933970130332, + 38.86449105454412 + ], + [ + -77.27642860410249, + 38.893428316924464 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.27642860410249, + 38.893428316924464 + ], + [ + -77.27642860410249, + 38.92236557930481 + ], + [ + -77.23933970130332, + 38.92236557930481 + ], + [ + -77.27642860410249, + 38.893428316924464 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.27642860410249, + 38.893428316924464 + ], + [ + -77.23933970130332, + 38.92236557930481 + ], + [ + -77.23933970130332, + 38.893428316924464 + ], + [ + -77.27642860410249, + 38.893428316924464 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.27642860410249, + 38.92236557930481 + ], + [ + -77.27642860410249, + 38.951302841685155 + ], + [ + -77.23933970130332, + 38.92236557930481 + ], + [ + -77.27642860410249, + 38.92236557930481 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.27642860410249, + 38.951302841685155 + ], + [ + -77.23933970130332, + 38.951302841685155 + ], + [ + -77.23933970130332, + 38.92236557930481 + ], + [ + -77.27642860410249, + 38.951302841685155 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.27642860410249, + 38.951302841685155 + ], + [ + -77.27642860410249, + 38.9802401040655 + ], + [ + -77.23933970130332, + 38.9802401040655 + ], + [ + -77.27642860410249, + 38.951302841685155 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.27642860410249, + 38.951302841685155 + ], + [ + -77.23933970130332, + 38.9802401040655 + ], + [ + -77.23933970130332, + 38.951302841685155 + ], + [ + -77.27642860410249, + 38.951302841685155 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.27642860410249, + 38.9802401040655 + ], + [ + -77.27642860410249, + 39.00917736644585 + ], + [ + -77.23933970130332, + 38.9802401040655 + ], + [ + -77.27642860410249, + 38.9802401040655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.27642860410249, + 39.00917736644585 + ], + [ + -77.23933970130332, + 39.00917736644585 + ], + [ + -77.23933970130332, + 38.9802401040655 + ], + [ + -77.27642860410249, + 39.00917736644585 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.27642860410249, + 39.00917736644585 + ], + [ + -77.27642860410249, + 39.03811462882619 + ], + [ + -77.23933970130332, + 39.03811462882619 + ], + [ + -77.27642860410249, + 39.00917736644585 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.27642860410249, + 39.00917736644585 + ], + [ + -77.23933970130332, + 39.03811462882619 + ], + [ + -77.23933970130332, + 39.00917736644585 + ], + [ + -77.27642860410249, + 39.00917736644585 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.23933970130332, + 38.71980474264239 + ], + [ + -77.23933970130332, + 38.748742005022734 + ], + [ + -77.20225079850415, + 38.71980474264239 + ], + [ + -77.23933970130332, + 38.71980474264239 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.23933970130332, + 38.748742005022734 + ], + [ + -77.20225079850415, + 38.748742005022734 + ], + [ + -77.20225079850415, + 38.71980474264239 + ], + [ + -77.23933970130332, + 38.748742005022734 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.23933970130332, + 38.748742005022734 + ], + [ + -77.20225079850415, + 38.77767926740308 + ], + [ + -77.20225079850415, + 38.748742005022734 + ], + [ + -77.23933970130332, + 38.748742005022734 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.23933970130332, + 38.748742005022734 + ], + [ + -77.23933970130332, + 38.77767926740308 + ], + [ + -77.20225079850415, + 38.77767926740308 + ], + [ + -77.23933970130332, + 38.748742005022734 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.23933970130332, + 38.77767926740308 + ], + [ + -77.23933970130332, + 38.806616529783426 + ], + [ + -77.20225079850415, + 38.77767926740308 + ], + [ + -77.23933970130332, + 38.77767926740308 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.23933970130332, + 38.806616529783426 + ], + [ + -77.20225079850415, + 38.806616529783426 + ], + [ + -77.20225079850415, + 38.77767926740308 + ], + [ + -77.23933970130332, + 38.806616529783426 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.23933970130332, + 38.806616529783426 + ], + [ + -77.20225079850415, + 38.83555379216377 + ], + [ + -77.20225079850415, + 38.806616529783426 + ], + [ + -77.23933970130332, + 38.806616529783426 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.23933970130332, + 38.806616529783426 + ], + [ + -77.23933970130332, + 38.83555379216377 + ], + [ + -77.20225079850415, + 38.83555379216377 + ], + [ + -77.23933970130332, + 38.806616529783426 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.23933970130332, + 38.83555379216377 + ], + [ + -77.23933970130332, + 38.86449105454412 + ], + [ + -77.20225079850415, + 38.83555379216377 + ], + [ + -77.23933970130332, + 38.83555379216377 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.23933970130332, + 38.86449105454412 + ], + [ + -77.20225079850415, + 38.86449105454412 + ], + [ + -77.20225079850415, + 38.83555379216377 + ], + [ + -77.23933970130332, + 38.86449105454412 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.23933970130332, + 38.86449105454412 + ], + [ + -77.20225079850415, + 38.893428316924464 + ], + [ + -77.20225079850415, + 38.86449105454412 + ], + [ + -77.23933970130332, + 38.86449105454412 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.23933970130332, + 38.86449105454412 + ], + [ + -77.23933970130332, + 38.893428316924464 + ], + [ + -77.20225079850415, + 38.893428316924464 + ], + [ + -77.23933970130332, + 38.86449105454412 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.23933970130332, + 38.893428316924464 + ], + [ + -77.23933970130332, + 38.92236557930481 + ], + [ + -77.20225079850415, + 38.893428316924464 + ], + [ + -77.23933970130332, + 38.893428316924464 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.23933970130332, + 38.92236557930481 + ], + [ + -77.20225079850415, + 38.92236557930481 + ], + [ + -77.20225079850415, + 38.893428316924464 + ], + [ + -77.23933970130332, + 38.92236557930481 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.23933970130332, + 38.92236557930481 + ], + [ + -77.20225079850415, + 38.951302841685155 + ], + [ + -77.20225079850415, + 38.92236557930481 + ], + [ + -77.23933970130332, + 38.92236557930481 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.23933970130332, + 38.92236557930481 + ], + [ + -77.23933970130332, + 38.951302841685155 + ], + [ + -77.20225079850415, + 38.951302841685155 + ], + [ + -77.23933970130332, + 38.92236557930481 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.23933970130332, + 38.951302841685155 + ], + [ + -77.23933970130332, + 38.9802401040655 + ], + [ + -77.20225079850415, + 38.951302841685155 + ], + [ + -77.23933970130332, + 38.951302841685155 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.23933970130332, + 38.9802401040655 + ], + [ + -77.20225079850415, + 38.9802401040655 + ], + [ + -77.20225079850415, + 38.951302841685155 + ], + [ + -77.23933970130332, + 38.9802401040655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.23933970130332, + 38.9802401040655 + ], + [ + -77.20225079850415, + 39.00917736644585 + ], + [ + -77.20225079850415, + 38.9802401040655 + ], + [ + -77.23933970130332, + 38.9802401040655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.23933970130332, + 38.9802401040655 + ], + [ + -77.23933970130332, + 39.00917736644585 + ], + [ + -77.20225079850415, + 39.00917736644585 + ], + [ + -77.23933970130332, + 38.9802401040655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.23933970130332, + 39.00917736644585 + ], + [ + -77.23933970130332, + 39.03811462882619 + ], + [ + -77.20225079850415, + 39.00917736644585 + ], + [ + -77.23933970130332, + 39.00917736644585 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.23933970130332, + 39.03811462882619 + ], + [ + -77.20225079850415, + 39.03811462882619 + ], + [ + -77.20225079850415, + 39.00917736644585 + ], + [ + -77.23933970130332, + 39.03811462882619 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.20225079850415, + 38.71980474264239 + ], + [ + -77.20225079850415, + 38.748742005022734 + ], + [ + -77.16516189570498, + 38.748742005022734 + ], + [ + -77.20225079850415, + 38.71980474264239 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.20225079850415, + 38.71980474264239 + ], + [ + -77.16516189570498, + 38.748742005022734 + ], + [ + -77.16516189570498, + 38.71980474264239 + ], + [ + -77.20225079850415, + 38.71980474264239 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.20225079850415, + 38.748742005022734 + ], + [ + -77.20225079850415, + 38.77767926740308 + ], + [ + -77.16516189570498, + 38.748742005022734 + ], + [ + -77.20225079850415, + 38.748742005022734 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.20225079850415, + 38.77767926740308 + ], + [ + -77.16516189570498, + 38.77767926740308 + ], + [ + -77.16516189570498, + 38.748742005022734 + ], + [ + -77.20225079850415, + 38.77767926740308 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.20225079850415, + 38.77767926740308 + ], + [ + -77.20225079850415, + 38.806616529783426 + ], + [ + -77.16516189570498, + 38.806616529783426 + ], + [ + -77.20225079850415, + 38.77767926740308 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.20225079850415, + 38.77767926740308 + ], + [ + -77.16516189570498, + 38.806616529783426 + ], + [ + -77.16516189570498, + 38.77767926740308 + ], + [ + -77.20225079850415, + 38.77767926740308 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.20225079850415, + 38.806616529783426 + ], + [ + -77.20225079850415, + 38.83555379216377 + ], + [ + -77.16516189570498, + 38.806616529783426 + ], + [ + -77.20225079850415, + 38.806616529783426 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.20225079850415, + 38.83555379216377 + ], + [ + -77.16516189570498, + 38.83555379216377 + ], + [ + -77.16516189570498, + 38.806616529783426 + ], + [ + -77.20225079850415, + 38.83555379216377 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.20225079850415, + 38.83555379216377 + ], + [ + -77.20225079850415, + 38.86449105454412 + ], + [ + -77.16516189570498, + 38.86449105454412 + ], + [ + -77.20225079850415, + 38.83555379216377 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.20225079850415, + 38.83555379216377 + ], + [ + -77.16516189570498, + 38.86449105454412 + ], + [ + -77.16516189570498, + 38.83555379216377 + ], + [ + -77.20225079850415, + 38.83555379216377 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.20225079850415, + 38.86449105454412 + ], + [ + -77.20225079850415, + 38.893428316924464 + ], + [ + -77.16516189570498, + 38.86449105454412 + ], + [ + -77.20225079850415, + 38.86449105454412 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.20225079850415, + 38.893428316924464 + ], + [ + -77.16516189570498, + 38.893428316924464 + ], + [ + -77.16516189570498, + 38.86449105454412 + ], + [ + -77.20225079850415, + 38.893428316924464 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.20225079850415, + 38.893428316924464 + ], + [ + -77.20225079850415, + 38.92236557930481 + ], + [ + -77.16516189570498, + 38.92236557930481 + ], + [ + -77.20225079850415, + 38.893428316924464 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.20225079850415, + 38.893428316924464 + ], + [ + -77.16516189570498, + 38.92236557930481 + ], + [ + -77.16516189570498, + 38.893428316924464 + ], + [ + -77.20225079850415, + 38.893428316924464 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.20225079850415, + 38.92236557930481 + ], + [ + -77.20225079850415, + 38.951302841685155 + ], + [ + -77.16516189570498, + 38.92236557930481 + ], + [ + -77.20225079850415, + 38.92236557930481 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.20225079850415, + 38.951302841685155 + ], + [ + -77.16516189570498, + 38.951302841685155 + ], + [ + -77.16516189570498, + 38.92236557930481 + ], + [ + -77.20225079850415, + 38.951302841685155 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.20225079850415, + 38.951302841685155 + ], + [ + -77.20225079850415, + 38.9802401040655 + ], + [ + -77.16516189570498, + 38.9802401040655 + ], + [ + -77.20225079850415, + 38.951302841685155 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.20225079850415, + 38.951302841685155 + ], + [ + -77.16516189570498, + 38.9802401040655 + ], + [ + -77.16516189570498, + 38.951302841685155 + ], + [ + -77.20225079850415, + 38.951302841685155 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.20225079850415, + 38.9802401040655 + ], + [ + -77.20225079850415, + 39.00917736644585 + ], + [ + -77.16516189570498, + 38.9802401040655 + ], + [ + -77.20225079850415, + 38.9802401040655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.20225079850415, + 39.00917736644585 + ], + [ + -77.16516189570498, + 39.00917736644585 + ], + [ + -77.16516189570498, + 38.9802401040655 + ], + [ + -77.20225079850415, + 39.00917736644585 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.20225079850415, + 39.00917736644585 + ], + [ + -77.20225079850415, + 39.03811462882619 + ], + [ + -77.16516189570498, + 39.03811462882619 + ], + [ + -77.20225079850415, + 39.00917736644585 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.20225079850415, + 39.00917736644585 + ], + [ + -77.16516189570498, + 39.03811462882619 + ], + [ + -77.16516189570498, + 39.00917736644585 + ], + [ + -77.20225079850415, + 39.00917736644585 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.16516189570498, + 38.71980474264239 + ], + [ + -77.16516189570498, + 38.748742005022734 + ], + [ + -77.12807299290581, + 38.71980474264239 + ], + [ + -77.16516189570498, + 38.71980474264239 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.16516189570498, + 38.748742005022734 + ], + [ + -77.12807299290581, + 38.748742005022734 + ], + [ + -77.12807299290581, + 38.71980474264239 + ], + [ + -77.16516189570498, + 38.748742005022734 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.16516189570498, + 38.748742005022734 + ], + [ + -77.12807299290581, + 38.77767926740308 + ], + [ + -77.12807299290581, + 38.748742005022734 + ], + [ + -77.16516189570498, + 38.748742005022734 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.16516189570498, + 38.748742005022734 + ], + [ + -77.16516189570498, + 38.77767926740308 + ], + [ + -77.12807299290581, + 38.77767926740308 + ], + [ + -77.16516189570498, + 38.748742005022734 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.16516189570498, + 38.77767926740308 + ], + [ + -77.16516189570498, + 38.806616529783426 + ], + [ + -77.12807299290581, + 38.77767926740308 + ], + [ + -77.16516189570498, + 38.77767926740308 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.16516189570498, + 38.806616529783426 + ], + [ + -77.12807299290581, + 38.806616529783426 + ], + [ + -77.12807299290581, + 38.77767926740308 + ], + [ + -77.16516189570498, + 38.806616529783426 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.16516189570498, + 38.806616529783426 + ], + [ + -77.12807299290581, + 38.83555379216377 + ], + [ + -77.12807299290581, + 38.806616529783426 + ], + [ + -77.16516189570498, + 38.806616529783426 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.16516189570498, + 38.806616529783426 + ], + [ + -77.16516189570498, + 38.83555379216377 + ], + [ + -77.12807299290581, + 38.83555379216377 + ], + [ + -77.16516189570498, + 38.806616529783426 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.16516189570498, + 38.83555379216377 + ], + [ + -77.16516189570498, + 38.86449105454412 + ], + [ + -77.12807299290581, + 38.83555379216377 + ], + [ + -77.16516189570498, + 38.83555379216377 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.16516189570498, + 38.86449105454412 + ], + [ + -77.12807299290581, + 38.86449105454412 + ], + [ + -77.12807299290581, + 38.83555379216377 + ], + [ + -77.16516189570498, + 38.86449105454412 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.16516189570498, + 38.86449105454412 + ], + [ + -77.12807299290581, + 38.893428316924464 + ], + [ + -77.12807299290581, + 38.86449105454412 + ], + [ + -77.16516189570498, + 38.86449105454412 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.16516189570498, + 38.86449105454412 + ], + [ + -77.16516189570498, + 38.893428316924464 + ], + [ + -77.12807299290581, + 38.893428316924464 + ], + [ + -77.16516189570498, + 38.86449105454412 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.16516189570498, + 38.893428316924464 + ], + [ + -77.16516189570498, + 38.92236557930481 + ], + [ + -77.12807299290581, + 38.893428316924464 + ], + [ + -77.16516189570498, + 38.893428316924464 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.16516189570498, + 38.92236557930481 + ], + [ + -77.12807299290581, + 38.92236557930481 + ], + [ + -77.12807299290581, + 38.893428316924464 + ], + [ + -77.16516189570498, + 38.92236557930481 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.16516189570498, + 38.92236557930481 + ], + [ + -77.12807299290581, + 38.951302841685155 + ], + [ + -77.12807299290581, + 38.92236557930481 + ], + [ + -77.16516189570498, + 38.92236557930481 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.16516189570498, + 38.92236557930481 + ], + [ + -77.16516189570498, + 38.951302841685155 + ], + [ + -77.12807299290581, + 38.951302841685155 + ], + [ + -77.16516189570498, + 38.92236557930481 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.16516189570498, + 38.951302841685155 + ], + [ + -77.16516189570498, + 38.9802401040655 + ], + [ + -77.12807299290581, + 38.951302841685155 + ], + [ + -77.16516189570498, + 38.951302841685155 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.16516189570498, + 38.9802401040655 + ], + [ + -77.12807299290581, + 38.9802401040655 + ], + [ + -77.12807299290581, + 38.951302841685155 + ], + [ + -77.16516189570498, + 38.9802401040655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.16516189570498, + 38.9802401040655 + ], + [ + -77.12807299290581, + 39.00917736644585 + ], + [ + -77.12807299290581, + 38.9802401040655 + ], + [ + -77.16516189570498, + 38.9802401040655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.16516189570498, + 38.9802401040655 + ], + [ + -77.16516189570498, + 39.00917736644585 + ], + [ + -77.12807299290581, + 39.00917736644585 + ], + [ + -77.16516189570498, + 38.9802401040655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.16516189570498, + 39.00917736644585 + ], + [ + -77.16516189570498, + 39.03811462882619 + ], + [ + -77.12807299290581, + 39.00917736644585 + ], + [ + -77.16516189570498, + 39.00917736644585 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.16516189570498, + 39.03811462882619 + ], + [ + -77.12807299290581, + 39.03811462882619 + ], + [ + -77.12807299290581, + 39.00917736644585 + ], + [ + -77.16516189570498, + 39.03811462882619 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.12807299290581, + 38.71980474264239 + ], + [ + -77.12807299290581, + 38.748742005022734 + ], + [ + -77.09098409010664, + 38.748742005022734 + ], + [ + -77.12807299290581, + 38.71980474264239 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.12807299290581, + 38.71980474264239 + ], + [ + -77.09098409010664, + 38.748742005022734 + ], + [ + -77.09098409010664, + 38.71980474264239 + ], + [ + -77.12807299290581, + 38.71980474264239 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.12807299290581, + 38.748742005022734 + ], + [ + -77.12807299290581, + 38.77767926740308 + ], + [ + -77.09098409010664, + 38.748742005022734 + ], + [ + -77.12807299290581, + 38.748742005022734 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.12807299290581, + 38.77767926740308 + ], + [ + -77.09098409010664, + 38.77767926740308 + ], + [ + -77.09098409010664, + 38.748742005022734 + ], + [ + -77.12807299290581, + 38.77767926740308 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.12807299290581, + 38.77767926740308 + ], + [ + -77.12807299290581, + 38.806616529783426 + ], + [ + -77.09098409010664, + 38.806616529783426 + ], + [ + -77.12807299290581, + 38.77767926740308 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.12807299290581, + 38.77767926740308 + ], + [ + -77.09098409010664, + 38.806616529783426 + ], + [ + -77.09098409010664, + 38.77767926740308 + ], + [ + -77.12807299290581, + 38.77767926740308 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.12807299290581, + 38.806616529783426 + ], + [ + -77.12807299290581, + 38.83555379216377 + ], + [ + -77.09098409010664, + 38.806616529783426 + ], + [ + -77.12807299290581, + 38.806616529783426 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.12807299290581, + 38.83555379216377 + ], + [ + -77.09098409010664, + 38.83555379216377 + ], + [ + -77.09098409010664, + 38.806616529783426 + ], + [ + -77.12807299290581, + 38.83555379216377 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.12807299290581, + 38.83555379216377 + ], + [ + -77.12807299290581, + 38.86449105454412 + ], + [ + -77.09098409010664, + 38.86449105454412 + ], + [ + -77.12807299290581, + 38.83555379216377 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.12807299290581, + 38.83555379216377 + ], + [ + -77.09098409010664, + 38.86449105454412 + ], + [ + -77.09098409010664, + 38.83555379216377 + ], + [ + -77.12807299290581, + 38.83555379216377 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.12807299290581, + 38.86449105454412 + ], + [ + -77.12807299290581, + 38.893428316924464 + ], + [ + -77.09098409010664, + 38.86449105454412 + ], + [ + -77.12807299290581, + 38.86449105454412 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.12807299290581, + 38.893428316924464 + ], + [ + -77.09098409010664, + 38.893428316924464 + ], + [ + -77.09098409010664, + 38.86449105454412 + ], + [ + -77.12807299290581, + 38.893428316924464 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.12807299290581, + 38.893428316924464 + ], + [ + -77.12807299290581, + 38.92236557930481 + ], + [ + -77.09098409010664, + 38.92236557930481 + ], + [ + -77.12807299290581, + 38.893428316924464 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.12807299290581, + 38.893428316924464 + ], + [ + -77.09098409010664, + 38.92236557930481 + ], + [ + -77.09098409010664, + 38.893428316924464 + ], + [ + -77.12807299290581, + 38.893428316924464 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.12807299290581, + 38.92236557930481 + ], + [ + -77.12807299290581, + 38.951302841685155 + ], + [ + -77.09098409010664, + 38.92236557930481 + ], + [ + -77.12807299290581, + 38.92236557930481 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.12807299290581, + 38.951302841685155 + ], + [ + -77.09098409010664, + 38.951302841685155 + ], + [ + -77.09098409010664, + 38.92236557930481 + ], + [ + -77.12807299290581, + 38.951302841685155 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.12807299290581, + 38.951302841685155 + ], + [ + -77.12807299290581, + 38.9802401040655 + ], + [ + -77.09098409010664, + 38.9802401040655 + ], + [ + -77.12807299290581, + 38.951302841685155 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.12807299290581, + 38.951302841685155 + ], + [ + -77.09098409010664, + 38.9802401040655 + ], + [ + -77.09098409010664, + 38.951302841685155 + ], + [ + -77.12807299290581, + 38.951302841685155 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.12807299290581, + 38.9802401040655 + ], + [ + -77.12807299290581, + 39.00917736644585 + ], + [ + -77.09098409010664, + 38.9802401040655 + ], + [ + -77.12807299290581, + 38.9802401040655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.12807299290581, + 39.00917736644585 + ], + [ + -77.09098409010664, + 39.00917736644585 + ], + [ + -77.09098409010664, + 38.9802401040655 + ], + [ + -77.12807299290581, + 39.00917736644585 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.12807299290581, + 39.00917736644585 + ], + [ + -77.12807299290581, + 39.03811462882619 + ], + [ + -77.09098409010664, + 39.03811462882619 + ], + [ + -77.12807299290581, + 39.00917736644585 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.12807299290581, + 39.00917736644585 + ], + [ + -77.09098409010664, + 39.03811462882619 + ], + [ + -77.09098409010664, + 39.00917736644585 + ], + [ + -77.12807299290581, + 39.00917736644585 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.09098409010664, + 38.71980474264239 + ], + [ + -77.09098409010664, + 38.748742005022734 + ], + [ + -77.05389518730748, + 38.71980474264239 + ], + [ + -77.09098409010664, + 38.71980474264239 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.09098409010664, + 38.748742005022734 + ], + [ + -77.05389518730748, + 38.748742005022734 + ], + [ + -77.05389518730748, + 38.71980474264239 + ], + [ + -77.09098409010664, + 38.748742005022734 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.09098409010664, + 38.748742005022734 + ], + [ + -77.05389518730748, + 38.77767926740308 + ], + [ + -77.05389518730748, + 38.748742005022734 + ], + [ + -77.09098409010664, + 38.748742005022734 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.09098409010664, + 38.748742005022734 + ], + [ + -77.09098409010664, + 38.77767926740308 + ], + [ + -77.05389518730748, + 38.77767926740308 + ], + [ + -77.09098409010664, + 38.748742005022734 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.09098409010664, + 38.77767926740308 + ], + [ + -77.09098409010664, + 38.806616529783426 + ], + [ + -77.05389518730748, + 38.77767926740308 + ], + [ + -77.09098409010664, + 38.77767926740308 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.09098409010664, + 38.806616529783426 + ], + [ + -77.05389518730748, + 38.806616529783426 + ], + [ + -77.05389518730748, + 38.77767926740308 + ], + [ + -77.09098409010664, + 38.806616529783426 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.09098409010664, + 38.806616529783426 + ], + [ + -77.05389518730748, + 38.83555379216377 + ], + [ + -77.05389518730748, + 38.806616529783426 + ], + [ + -77.09098409010664, + 38.806616529783426 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.09098409010664, + 38.806616529783426 + ], + [ + -77.09098409010664, + 38.83555379216377 + ], + [ + -77.05389518730748, + 38.83555379216377 + ], + [ + -77.09098409010664, + 38.806616529783426 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.09098409010664, + 38.83555379216377 + ], + [ + -77.09098409010664, + 38.86449105454412 + ], + [ + -77.05389518730748, + 38.83555379216377 + ], + [ + -77.09098409010664, + 38.83555379216377 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.09098409010664, + 38.86449105454412 + ], + [ + -77.05389518730748, + 38.86449105454412 + ], + [ + -77.05389518730748, + 38.83555379216377 + ], + [ + -77.09098409010664, + 38.86449105454412 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.09098409010664, + 38.86449105454412 + ], + [ + -77.05389518730748, + 38.893428316924464 + ], + [ + -77.05389518730748, + 38.86449105454412 + ], + [ + -77.09098409010664, + 38.86449105454412 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.09098409010664, + 38.86449105454412 + ], + [ + -77.09098409010664, + 38.893428316924464 + ], + [ + -77.05389518730748, + 38.893428316924464 + ], + [ + -77.09098409010664, + 38.86449105454412 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.09098409010664, + 38.893428316924464 + ], + [ + -77.09098409010664, + 38.92236557930481 + ], + [ + -77.05389518730748, + 38.893428316924464 + ], + [ + -77.09098409010664, + 38.893428316924464 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.09098409010664, + 38.92236557930481 + ], + [ + -77.05389518730748, + 38.92236557930481 + ], + [ + -77.05389518730748, + 38.893428316924464 + ], + [ + -77.09098409010664, + 38.92236557930481 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.09098409010664, + 38.92236557930481 + ], + [ + -77.05389518730748, + 38.951302841685155 + ], + [ + -77.05389518730748, + 38.92236557930481 + ], + [ + -77.09098409010664, + 38.92236557930481 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.09098409010664, + 38.92236557930481 + ], + [ + -77.09098409010664, + 38.951302841685155 + ], + [ + -77.05389518730748, + 38.951302841685155 + ], + [ + -77.09098409010664, + 38.92236557930481 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.09098409010664, + 38.951302841685155 + ], + [ + -77.09098409010664, + 38.9802401040655 + ], + [ + -77.05389518730748, + 38.951302841685155 + ], + [ + -77.09098409010664, + 38.951302841685155 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.09098409010664, + 38.9802401040655 + ], + [ + -77.05389518730748, + 38.9802401040655 + ], + [ + -77.05389518730748, + 38.951302841685155 + ], + [ + -77.09098409010664, + 38.9802401040655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.09098409010664, + 38.9802401040655 + ], + [ + -77.05389518730748, + 39.00917736644585 + ], + [ + -77.05389518730748, + 38.9802401040655 + ], + [ + -77.09098409010664, + 38.9802401040655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.09098409010664, + 38.9802401040655 + ], + [ + -77.09098409010664, + 39.00917736644585 + ], + [ + -77.05389518730748, + 39.00917736644585 + ], + [ + -77.09098409010664, + 38.9802401040655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.09098409010664, + 39.00917736644585 + ], + [ + -77.09098409010664, + 39.03811462882619 + ], + [ + -77.05389518730748, + 39.00917736644585 + ], + [ + -77.09098409010664, + 39.00917736644585 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.09098409010664, + 39.03811462882619 + ], + [ + -77.05389518730748, + 39.03811462882619 + ], + [ + -77.05389518730748, + 39.00917736644585 + ], + [ + -77.09098409010664, + 39.03811462882619 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.05389518730748, + 38.71980474264239 + ], + [ + -77.05389518730748, + 38.748742005022734 + ], + [ + -77.0168062845083, + 38.748742005022734 + ], + [ + -77.05389518730748, + 38.71980474264239 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.05389518730748, + 38.71980474264239 + ], + [ + -77.0168062845083, + 38.748742005022734 + ], + [ + -77.0168062845083, + 38.71980474264239 + ], + [ + -77.05389518730748, + 38.71980474264239 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.05389518730748, + 38.748742005022734 + ], + [ + -77.05389518730748, + 38.77767926740308 + ], + [ + -77.0168062845083, + 38.748742005022734 + ], + [ + -77.05389518730748, + 38.748742005022734 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.05389518730748, + 38.77767926740308 + ], + [ + -77.0168062845083, + 38.77767926740308 + ], + [ + -77.0168062845083, + 38.748742005022734 + ], + [ + -77.05389518730748, + 38.77767926740308 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.05389518730748, + 38.77767926740308 + ], + [ + -77.05389518730748, + 38.806616529783426 + ], + [ + -77.0168062845083, + 38.806616529783426 + ], + [ + -77.05389518730748, + 38.77767926740308 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.05389518730748, + 38.77767926740308 + ], + [ + -77.0168062845083, + 38.806616529783426 + ], + [ + -77.0168062845083, + 38.77767926740308 + ], + [ + -77.05389518730748, + 38.77767926740308 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.05389518730748, + 38.806616529783426 + ], + [ + -77.05389518730748, + 38.83555379216377 + ], + [ + -77.0168062845083, + 38.806616529783426 + ], + [ + -77.05389518730748, + 38.806616529783426 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.05389518730748, + 38.83555379216377 + ], + [ + -77.0168062845083, + 38.83555379216377 + ], + [ + -77.0168062845083, + 38.806616529783426 + ], + [ + -77.05389518730748, + 38.83555379216377 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.05389518730748, + 38.83555379216377 + ], + [ + -77.05389518730748, + 38.86449105454412 + ], + [ + -77.0168062845083, + 38.86449105454412 + ], + [ + -77.05389518730748, + 38.83555379216377 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.05389518730748, + 38.83555379216377 + ], + [ + -77.0168062845083, + 38.86449105454412 + ], + [ + -77.0168062845083, + 38.83555379216377 + ], + [ + -77.05389518730748, + 38.83555379216377 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.05389518730748, + 38.86449105454412 + ], + [ + -77.05389518730748, + 38.893428316924464 + ], + [ + -77.0168062845083, + 38.86449105454412 + ], + [ + -77.05389518730748, + 38.86449105454412 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.05389518730748, + 38.893428316924464 + ], + [ + -77.0168062845083, + 38.893428316924464 + ], + [ + -77.0168062845083, + 38.86449105454412 + ], + [ + -77.05389518730748, + 38.893428316924464 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.05389518730748, + 38.893428316924464 + ], + [ + -77.05389518730748, + 38.92236557930481 + ], + [ + -77.0168062845083, + 38.92236557930481 + ], + [ + -77.05389518730748, + 38.893428316924464 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.05389518730748, + 38.893428316924464 + ], + [ + -77.0168062845083, + 38.92236557930481 + ], + [ + -77.0168062845083, + 38.893428316924464 + ], + [ + -77.05389518730748, + 38.893428316924464 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.05389518730748, + 38.92236557930481 + ], + [ + -77.05389518730748, + 38.951302841685155 + ], + [ + -77.0168062845083, + 38.92236557930481 + ], + [ + -77.05389518730748, + 38.92236557930481 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.05389518730748, + 38.951302841685155 + ], + [ + -77.0168062845083, + 38.951302841685155 + ], + [ + -77.0168062845083, + 38.92236557930481 + ], + [ + -77.05389518730748, + 38.951302841685155 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.05389518730748, + 38.951302841685155 + ], + [ + -77.05389518730748, + 38.9802401040655 + ], + [ + -77.0168062845083, + 38.9802401040655 + ], + [ + -77.05389518730748, + 38.951302841685155 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.05389518730748, + 38.951302841685155 + ], + [ + -77.0168062845083, + 38.9802401040655 + ], + [ + -77.0168062845083, + 38.951302841685155 + ], + [ + -77.05389518730748, + 38.951302841685155 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.05389518730748, + 38.9802401040655 + ], + [ + -77.05389518730748, + 39.00917736644585 + ], + [ + -77.0168062845083, + 38.9802401040655 + ], + [ + -77.05389518730748, + 38.9802401040655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.05389518730748, + 39.00917736644585 + ], + [ + -77.0168062845083, + 39.00917736644585 + ], + [ + -77.0168062845083, + 38.9802401040655 + ], + [ + -77.05389518730748, + 39.00917736644585 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.05389518730748, + 39.00917736644585 + ], + [ + -77.05389518730748, + 39.03811462882619 + ], + [ + -77.0168062845083, + 39.03811462882619 + ], + [ + -77.05389518730748, + 39.00917736644585 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.05389518730748, + 39.00917736644585 + ], + [ + -77.0168062845083, + 39.03811462882619 + ], + [ + -77.0168062845083, + 39.00917736644585 + ], + [ + -77.05389518730748, + 39.00917736644585 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.0168062845083, + 38.71980474264239 + ], + [ + -77.0168062845083, + 38.748742005022734 + ], + [ + -76.97971738170914, + 38.71980474264239 + ], + [ + -77.0168062845083, + 38.71980474264239 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.0168062845083, + 38.748742005022734 + ], + [ + -76.97971738170914, + 38.748742005022734 + ], + [ + -76.97971738170914, + 38.71980474264239 + ], + [ + -77.0168062845083, + 38.748742005022734 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.0168062845083, + 38.748742005022734 + ], + [ + -76.97971738170914, + 38.77767926740308 + ], + [ + -76.97971738170914, + 38.748742005022734 + ], + [ + -77.0168062845083, + 38.748742005022734 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.0168062845083, + 38.748742005022734 + ], + [ + -77.0168062845083, + 38.77767926740308 + ], + [ + -76.97971738170914, + 38.77767926740308 + ], + [ + -77.0168062845083, + 38.748742005022734 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.0168062845083, + 38.77767926740308 + ], + [ + -77.0168062845083, + 38.806616529783426 + ], + [ + -76.97971738170914, + 38.77767926740308 + ], + [ + -77.0168062845083, + 38.77767926740308 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.0168062845083, + 38.806616529783426 + ], + [ + -76.97971738170914, + 38.806616529783426 + ], + [ + -76.97971738170914, + 38.77767926740308 + ], + [ + -77.0168062845083, + 38.806616529783426 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.0168062845083, + 38.806616529783426 + ], + [ + -76.97971738170914, + 38.83555379216377 + ], + [ + -76.97971738170914, + 38.806616529783426 + ], + [ + -77.0168062845083, + 38.806616529783426 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.0168062845083, + 38.806616529783426 + ], + [ + -77.0168062845083, + 38.83555379216377 + ], + [ + -76.97971738170914, + 38.83555379216377 + ], + [ + -77.0168062845083, + 38.806616529783426 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.0168062845083, + 38.83555379216377 + ], + [ + -77.0168062845083, + 38.86449105454412 + ], + [ + -76.97971738170914, + 38.83555379216377 + ], + [ + -77.0168062845083, + 38.83555379216377 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.0168062845083, + 38.86449105454412 + ], + [ + -76.97971738170914, + 38.86449105454412 + ], + [ + -76.97971738170914, + 38.83555379216377 + ], + [ + -77.0168062845083, + 38.86449105454412 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.0168062845083, + 38.86449105454412 + ], + [ + -76.97971738170914, + 38.893428316924464 + ], + [ + -76.97971738170914, + 38.86449105454412 + ], + [ + -77.0168062845083, + 38.86449105454412 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.0168062845083, + 38.86449105454412 + ], + [ + -77.0168062845083, + 38.893428316924464 + ], + [ + -76.97971738170914, + 38.893428316924464 + ], + [ + -77.0168062845083, + 38.86449105454412 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.0168062845083, + 38.893428316924464 + ], + [ + -77.0168062845083, + 38.92236557930481 + ], + [ + -76.97971738170914, + 38.893428316924464 + ], + [ + -77.0168062845083, + 38.893428316924464 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.0168062845083, + 38.92236557930481 + ], + [ + -76.97971738170914, + 38.92236557930481 + ], + [ + -76.97971738170914, + 38.893428316924464 + ], + [ + -77.0168062845083, + 38.92236557930481 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.0168062845083, + 38.92236557930481 + ], + [ + -76.97971738170914, + 38.951302841685155 + ], + [ + -76.97971738170914, + 38.92236557930481 + ], + [ + -77.0168062845083, + 38.92236557930481 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.0168062845083, + 38.92236557930481 + ], + [ + -77.0168062845083, + 38.951302841685155 + ], + [ + -76.97971738170914, + 38.951302841685155 + ], + [ + -77.0168062845083, + 38.92236557930481 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.0168062845083, + 38.951302841685155 + ], + [ + -77.0168062845083, + 38.9802401040655 + ], + [ + -76.97971738170914, + 38.951302841685155 + ], + [ + -77.0168062845083, + 38.951302841685155 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.0168062845083, + 38.9802401040655 + ], + [ + -76.97971738170914, + 38.9802401040655 + ], + [ + -76.97971738170914, + 38.951302841685155 + ], + [ + -77.0168062845083, + 38.9802401040655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.0168062845083, + 38.9802401040655 + ], + [ + -76.97971738170914, + 39.00917736644585 + ], + [ + -76.97971738170914, + 38.9802401040655 + ], + [ + -77.0168062845083, + 38.9802401040655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.0168062845083, + 38.9802401040655 + ], + [ + -77.0168062845083, + 39.00917736644585 + ], + [ + -76.97971738170914, + 39.00917736644585 + ], + [ + -77.0168062845083, + 38.9802401040655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.0168062845083, + 39.00917736644585 + ], + [ + -77.0168062845083, + 39.03811462882619 + ], + [ + -76.97971738170914, + 39.00917736644585 + ], + [ + -77.0168062845083, + 39.00917736644585 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.0168062845083, + 39.03811462882619 + ], + [ + -76.97971738170914, + 39.03811462882619 + ], + [ + -76.97971738170914, + 39.00917736644585 + ], + [ + -77.0168062845083, + 39.03811462882619 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.97971738170914, + 38.71980474264239 + ], + [ + -76.97971738170914, + 38.748742005022734 + ], + [ + -76.94262847890997, + 38.748742005022734 + ], + [ + -76.97971738170914, + 38.71980474264239 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.97971738170914, + 38.71980474264239 + ], + [ + -76.94262847890997, + 38.748742005022734 + ], + [ + -76.94262847890997, + 38.71980474264239 + ], + [ + -76.97971738170914, + 38.71980474264239 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.97971738170914, + 38.748742005022734 + ], + [ + -76.97971738170914, + 38.77767926740308 + ], + [ + -76.94262847890997, + 38.748742005022734 + ], + [ + -76.97971738170914, + 38.748742005022734 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.97971738170914, + 38.77767926740308 + ], + [ + -76.94262847890997, + 38.77767926740308 + ], + [ + -76.94262847890997, + 38.748742005022734 + ], + [ + -76.97971738170914, + 38.77767926740308 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.97971738170914, + 38.77767926740308 + ], + [ + -76.97971738170914, + 38.806616529783426 + ], + [ + -76.94262847890997, + 38.806616529783426 + ], + [ + -76.97971738170914, + 38.77767926740308 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.97971738170914, + 38.77767926740308 + ], + [ + -76.94262847890997, + 38.806616529783426 + ], + [ + -76.94262847890997, + 38.77767926740308 + ], + [ + -76.97971738170914, + 38.77767926740308 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.97971738170914, + 38.806616529783426 + ], + [ + -76.97971738170914, + 38.83555379216377 + ], + [ + -76.94262847890997, + 38.806616529783426 + ], + [ + -76.97971738170914, + 38.806616529783426 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.97971738170914, + 38.83555379216377 + ], + [ + -76.94262847890997, + 38.83555379216377 + ], + [ + -76.94262847890997, + 38.806616529783426 + ], + [ + -76.97971738170914, + 38.83555379216377 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.97971738170914, + 38.83555379216377 + ], + [ + -76.97971738170914, + 38.86449105454412 + ], + [ + -76.94262847890997, + 38.86449105454412 + ], + [ + -76.97971738170914, + 38.83555379216377 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.97971738170914, + 38.83555379216377 + ], + [ + -76.94262847890997, + 38.86449105454412 + ], + [ + -76.94262847890997, + 38.83555379216377 + ], + [ + -76.97971738170914, + 38.83555379216377 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.97971738170914, + 38.86449105454412 + ], + [ + -76.97971738170914, + 38.893428316924464 + ], + [ + -76.94262847890997, + 38.86449105454412 + ], + [ + -76.97971738170914, + 38.86449105454412 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.97971738170914, + 38.893428316924464 + ], + [ + -76.94262847890997, + 38.893428316924464 + ], + [ + -76.94262847890997, + 38.86449105454412 + ], + [ + -76.97971738170914, + 38.893428316924464 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.97971738170914, + 38.893428316924464 + ], + [ + -76.97971738170914, + 38.92236557930481 + ], + [ + -76.94262847890997, + 38.92236557930481 + ], + [ + -76.97971738170914, + 38.893428316924464 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.97971738170914, + 38.893428316924464 + ], + [ + -76.94262847890997, + 38.92236557930481 + ], + [ + -76.94262847890997, + 38.893428316924464 + ], + [ + -76.97971738170914, + 38.893428316924464 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.97971738170914, + 38.92236557930481 + ], + [ + -76.97971738170914, + 38.951302841685155 + ], + [ + -76.94262847890997, + 38.92236557930481 + ], + [ + -76.97971738170914, + 38.92236557930481 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.97971738170914, + 38.951302841685155 + ], + [ + -76.94262847890997, + 38.951302841685155 + ], + [ + -76.94262847890997, + 38.92236557930481 + ], + [ + -76.97971738170914, + 38.951302841685155 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.97971738170914, + 38.951302841685155 + ], + [ + -76.97971738170914, + 38.9802401040655 + ], + [ + -76.94262847890997, + 38.9802401040655 + ], + [ + -76.97971738170914, + 38.951302841685155 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.97971738170914, + 38.951302841685155 + ], + [ + -76.94262847890997, + 38.9802401040655 + ], + [ + -76.94262847890997, + 38.951302841685155 + ], + [ + -76.97971738170914, + 38.951302841685155 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.97971738170914, + 38.9802401040655 + ], + [ + -76.97971738170914, + 39.00917736644585 + ], + [ + -76.94262847890997, + 38.9802401040655 + ], + [ + -76.97971738170914, + 38.9802401040655 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.97971738170914, + 39.00917736644585 + ], + [ + -76.94262847890997, + 39.00917736644585 + ], + [ + -76.94262847890997, + 38.9802401040655 + ], + [ + -76.97971738170914, + 39.00917736644585 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.97971738170914, + 39.00917736644585 + ], + [ + -76.97971738170914, + 39.03811462882619 + ], + [ + -76.94262847890997, + 39.03811462882619 + ], + [ + -76.97971738170914, + 39.00917736644585 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.97971738170914, + 39.00917736644585 + ], + [ + -76.94262847890997, + 39.03811462882619 + ], + [ + -76.94262847890997, + 39.00917736644585 + ], + [ + -76.97971738170914, + 39.00917736644585 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "fill-opacity": 0, + "stroke": "#0ff" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -77.3876953125, + 38.71980474264239 + ], + [ + -76.9482421875, + 38.71980474264239 + ], + [ + -76.9482421875, + 39.027718840211605 + ], + [ + -77.3876953125, + 39.027718840211605 + ], + [ + -77.3876953125, + 38.71980474264239 + ] + ] + ] + } + } + ] +} \ No newline at end of file diff --git a/packages/turf-triangle-grid/test/out/grid4.geojson b/packages/turf-triangle-grid/test/out/grid4.geojson new file mode 100644 index 0000000000..85a5d71122 --- /dev/null +++ b/packages/turf-triangle-grid/test/out/grid4.geojson @@ -0,0 +1,43239 @@ +{ + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.6328125, + 11.867350911459308 + ], + [ + 63.6328125, + 12.590782470967923 + ], + [ + 64.37209777458736, + 11.867350911459308 + ], + [ + 63.6328125, + 11.867350911459308 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.6328125, + 12.590782470967923 + ], + [ + 64.37209777458736, + 12.590782470967923 + ], + [ + 64.37209777458736, + 11.867350911459308 + ], + [ + 63.6328125, + 12.590782470967923 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.6328125, + 12.590782470967923 + ], + [ + 64.37209777458736, + 13.314214030476538 + ], + [ + 64.37209777458736, + 12.590782470967923 + ], + [ + 63.6328125, + 12.590782470967923 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.6328125, + 12.590782470967923 + ], + [ + 63.6328125, + 13.314214030476538 + ], + [ + 64.37209777458736, + 13.314214030476538 + ], + [ + 63.6328125, + 12.590782470967923 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.6328125, + 13.314214030476538 + ], + [ + 63.6328125, + 14.037645589985154 + ], + [ + 64.37209777458736, + 13.314214030476538 + ], + [ + 63.6328125, + 13.314214030476538 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.6328125, + 14.037645589985154 + ], + [ + 64.37209777458736, + 14.037645589985154 + ], + [ + 64.37209777458736, + 13.314214030476538 + ], + [ + 63.6328125, + 14.037645589985154 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.6328125, + 14.037645589985154 + ], + [ + 64.37209777458736, + 14.761077149493769 + ], + [ + 64.37209777458736, + 14.037645589985154 + ], + [ + 63.6328125, + 14.037645589985154 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.6328125, + 14.037645589985154 + ], + [ + 63.6328125, + 14.761077149493769 + ], + [ + 64.37209777458736, + 14.761077149493769 + ], + [ + 63.6328125, + 14.037645589985154 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.6328125, + 14.761077149493769 + ], + [ + 63.6328125, + 15.484508709002384 + ], + [ + 64.37209777458736, + 14.761077149493769 + ], + [ + 63.6328125, + 14.761077149493769 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.6328125, + 15.484508709002384 + ], + [ + 64.37209777458736, + 15.484508709002384 + ], + [ + 64.37209777458736, + 14.761077149493769 + ], + [ + 63.6328125, + 15.484508709002384 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.6328125, + 15.484508709002384 + ], + [ + 64.37209777458736, + 16.207940268511 + ], + [ + 64.37209777458736, + 15.484508709002384 + ], + [ + 63.6328125, + 15.484508709002384 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.6328125, + 15.484508709002384 + ], + [ + 63.6328125, + 16.207940268511 + ], + [ + 64.37209777458736, + 16.207940268511 + ], + [ + 63.6328125, + 15.484508709002384 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.6328125, + 16.207940268511 + ], + [ + 63.6328125, + 16.931371828019614 + ], + [ + 64.37209777458736, + 16.207940268511 + ], + [ + 63.6328125, + 16.207940268511 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.6328125, + 16.931371828019614 + ], + [ + 64.37209777458736, + 16.931371828019614 + ], + [ + 64.37209777458736, + 16.207940268511 + ], + [ + 63.6328125, + 16.931371828019614 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.6328125, + 16.931371828019614 + ], + [ + 64.37209777458736, + 17.65480338752823 + ], + [ + 64.37209777458736, + 16.931371828019614 + ], + [ + 63.6328125, + 16.931371828019614 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.6328125, + 16.931371828019614 + ], + [ + 63.6328125, + 17.65480338752823 + ], + [ + 64.37209777458736, + 17.65480338752823 + ], + [ + 63.6328125, + 16.931371828019614 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.6328125, + 17.65480338752823 + ], + [ + 63.6328125, + 18.378234947036844 + ], + [ + 64.37209777458736, + 17.65480338752823 + ], + [ + 63.6328125, + 17.65480338752823 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.6328125, + 18.378234947036844 + ], + [ + 64.37209777458736, + 18.378234947036844 + ], + [ + 64.37209777458736, + 17.65480338752823 + ], + [ + 63.6328125, + 18.378234947036844 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.6328125, + 18.378234947036844 + ], + [ + 64.37209777458736, + 19.10166650654546 + ], + [ + 64.37209777458736, + 18.378234947036844 + ], + [ + 63.6328125, + 18.378234947036844 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.6328125, + 18.378234947036844 + ], + [ + 63.6328125, + 19.10166650654546 + ], + [ + 64.37209777458736, + 19.10166650654546 + ], + [ + 63.6328125, + 18.378234947036844 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.6328125, + 19.10166650654546 + ], + [ + 63.6328125, + 19.825098066054075 + ], + [ + 64.37209777458736, + 19.10166650654546 + ], + [ + 63.6328125, + 19.10166650654546 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.6328125, + 19.825098066054075 + ], + [ + 64.37209777458736, + 19.825098066054075 + ], + [ + 64.37209777458736, + 19.10166650654546 + ], + [ + 63.6328125, + 19.825098066054075 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.6328125, + 19.825098066054075 + ], + [ + 64.37209777458736, + 20.54852962556269 + ], + [ + 64.37209777458736, + 19.825098066054075 + ], + [ + 63.6328125, + 19.825098066054075 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.6328125, + 19.825098066054075 + ], + [ + 63.6328125, + 20.54852962556269 + ], + [ + 64.37209777458736, + 20.54852962556269 + ], + [ + 63.6328125, + 19.825098066054075 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.6328125, + 20.54852962556269 + ], + [ + 63.6328125, + 21.271961185071305 + ], + [ + 64.37209777458736, + 20.54852962556269 + ], + [ + 63.6328125, + 20.54852962556269 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.6328125, + 21.271961185071305 + ], + [ + 64.37209777458736, + 21.271961185071305 + ], + [ + 64.37209777458736, + 20.54852962556269 + ], + [ + 63.6328125, + 21.271961185071305 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.6328125, + 21.271961185071305 + ], + [ + 64.37209777458736, + 21.99539274457992 + ], + [ + 64.37209777458736, + 21.271961185071305 + ], + [ + 63.6328125, + 21.271961185071305 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.6328125, + 21.271961185071305 + ], + [ + 63.6328125, + 21.99539274457992 + ], + [ + 64.37209777458736, + 21.99539274457992 + ], + [ + 63.6328125, + 21.271961185071305 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.6328125, + 21.99539274457992 + ], + [ + 63.6328125, + 22.718824304088535 + ], + [ + 64.37209777458736, + 21.99539274457992 + ], + [ + 63.6328125, + 21.99539274457992 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.6328125, + 22.718824304088535 + ], + [ + 64.37209777458736, + 22.718824304088535 + ], + [ + 64.37209777458736, + 21.99539274457992 + ], + [ + 63.6328125, + 22.718824304088535 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.6328125, + 22.718824304088535 + ], + [ + 64.37209777458736, + 23.44225586359715 + ], + [ + 64.37209777458736, + 22.718824304088535 + ], + [ + 63.6328125, + 22.718824304088535 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.6328125, + 22.718824304088535 + ], + [ + 63.6328125, + 23.44225586359715 + ], + [ + 64.37209777458736, + 23.44225586359715 + ], + [ + 63.6328125, + 22.718824304088535 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.6328125, + 23.44225586359715 + ], + [ + 63.6328125, + 24.165687423105766 + ], + [ + 64.37209777458736, + 23.44225586359715 + ], + [ + 63.6328125, + 23.44225586359715 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.6328125, + 24.165687423105766 + ], + [ + 64.37209777458736, + 24.165687423105766 + ], + [ + 64.37209777458736, + 23.44225586359715 + ], + [ + 63.6328125, + 24.165687423105766 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.6328125, + 24.165687423105766 + ], + [ + 64.37209777458736, + 24.88911898261438 + ], + [ + 64.37209777458736, + 24.165687423105766 + ], + [ + 63.6328125, + 24.165687423105766 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.6328125, + 24.165687423105766 + ], + [ + 63.6328125, + 24.88911898261438 + ], + [ + 64.37209777458736, + 24.88911898261438 + ], + [ + 63.6328125, + 24.165687423105766 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.6328125, + 24.88911898261438 + ], + [ + 63.6328125, + 25.612550542122996 + ], + [ + 64.37209777458736, + 24.88911898261438 + ], + [ + 63.6328125, + 24.88911898261438 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.6328125, + 25.612550542122996 + ], + [ + 64.37209777458736, + 25.612550542122996 + ], + [ + 64.37209777458736, + 24.88911898261438 + ], + [ + 63.6328125, + 25.612550542122996 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.6328125, + 25.612550542122996 + ], + [ + 64.37209777458736, + 26.33598210163161 + ], + [ + 64.37209777458736, + 25.612550542122996 + ], + [ + 63.6328125, + 25.612550542122996 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.6328125, + 25.612550542122996 + ], + [ + 63.6328125, + 26.33598210163161 + ], + [ + 64.37209777458736, + 26.33598210163161 + ], + [ + 63.6328125, + 25.612550542122996 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.6328125, + 26.33598210163161 + ], + [ + 63.6328125, + 27.059413661140226 + ], + [ + 64.37209777458736, + 26.33598210163161 + ], + [ + 63.6328125, + 26.33598210163161 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.6328125, + 27.059413661140226 + ], + [ + 64.37209777458736, + 27.059413661140226 + ], + [ + 64.37209777458736, + 26.33598210163161 + ], + [ + 63.6328125, + 27.059413661140226 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.6328125, + 27.059413661140226 + ], + [ + 64.37209777458736, + 27.78284522064884 + ], + [ + 64.37209777458736, + 27.059413661140226 + ], + [ + 63.6328125, + 27.059413661140226 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.6328125, + 27.059413661140226 + ], + [ + 63.6328125, + 27.78284522064884 + ], + [ + 64.37209777458736, + 27.78284522064884 + ], + [ + 63.6328125, + 27.059413661140226 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.6328125, + 27.78284522064884 + ], + [ + 63.6328125, + 28.506276780157457 + ], + [ + 64.37209777458736, + 27.78284522064884 + ], + [ + 63.6328125, + 27.78284522064884 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.6328125, + 28.506276780157457 + ], + [ + 64.37209777458736, + 28.506276780157457 + ], + [ + 64.37209777458736, + 27.78284522064884 + ], + [ + 63.6328125, + 28.506276780157457 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.6328125, + 28.506276780157457 + ], + [ + 64.37209777458736, + 29.22970833966607 + ], + [ + 64.37209777458736, + 28.506276780157457 + ], + [ + 63.6328125, + 28.506276780157457 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.6328125, + 28.506276780157457 + ], + [ + 63.6328125, + 29.22970833966607 + ], + [ + 64.37209777458736, + 29.22970833966607 + ], + [ + 63.6328125, + 28.506276780157457 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.6328125, + 29.22970833966607 + ], + [ + 63.6328125, + 29.953139899174687 + ], + [ + 64.37209777458736, + 29.22970833966607 + ], + [ + 63.6328125, + 29.22970833966607 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.6328125, + 29.953139899174687 + ], + [ + 64.37209777458736, + 29.953139899174687 + ], + [ + 64.37209777458736, + 29.22970833966607 + ], + [ + 63.6328125, + 29.953139899174687 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.6328125, + 29.953139899174687 + ], + [ + 64.37209777458736, + 30.676571458683302 + ], + [ + 64.37209777458736, + 29.953139899174687 + ], + [ + 63.6328125, + 29.953139899174687 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.6328125, + 29.953139899174687 + ], + [ + 63.6328125, + 30.676571458683302 + ], + [ + 64.37209777458736, + 30.676571458683302 + ], + [ + 63.6328125, + 29.953139899174687 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.6328125, + 30.676571458683302 + ], + [ + 63.6328125, + 31.400003018191917 + ], + [ + 64.37209777458736, + 30.676571458683302 + ], + [ + 63.6328125, + 30.676571458683302 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.6328125, + 31.400003018191917 + ], + [ + 64.37209777458736, + 31.400003018191917 + ], + [ + 64.37209777458736, + 30.676571458683302 + ], + [ + 63.6328125, + 31.400003018191917 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.6328125, + 31.400003018191917 + ], + [ + 64.37209777458736, + 32.123434577700536 + ], + [ + 64.37209777458736, + 31.400003018191917 + ], + [ + 63.6328125, + 31.400003018191917 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.6328125, + 31.400003018191917 + ], + [ + 63.6328125, + 32.123434577700536 + ], + [ + 64.37209777458736, + 32.123434577700536 + ], + [ + 63.6328125, + 31.400003018191917 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.6328125, + 32.123434577700536 + ], + [ + 63.6328125, + 32.84686613720915 + ], + [ + 64.37209777458736, + 32.123434577700536 + ], + [ + 63.6328125, + 32.123434577700536 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.6328125, + 32.84686613720915 + ], + [ + 64.37209777458736, + 32.84686613720915 + ], + [ + 64.37209777458736, + 32.123434577700536 + ], + [ + 63.6328125, + 32.84686613720915 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.6328125, + 32.84686613720915 + ], + [ + 64.37209777458736, + 33.57029769671776 + ], + [ + 64.37209777458736, + 32.84686613720915 + ], + [ + 63.6328125, + 32.84686613720915 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.6328125, + 32.84686613720915 + ], + [ + 63.6328125, + 33.57029769671776 + ], + [ + 64.37209777458736, + 33.57029769671776 + ], + [ + 63.6328125, + 32.84686613720915 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.6328125, + 33.57029769671776 + ], + [ + 63.6328125, + 34.29372925622637 + ], + [ + 64.37209777458736, + 33.57029769671776 + ], + [ + 63.6328125, + 33.57029769671776 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.6328125, + 34.29372925622637 + ], + [ + 64.37209777458736, + 34.29372925622637 + ], + [ + 64.37209777458736, + 33.57029769671776 + ], + [ + 63.6328125, + 34.29372925622637 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.6328125, + 34.29372925622637 + ], + [ + 64.37209777458736, + 35.01716081573498 + ], + [ + 64.37209777458736, + 34.29372925622637 + ], + [ + 63.6328125, + 34.29372925622637 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.6328125, + 34.29372925622637 + ], + [ + 63.6328125, + 35.01716081573498 + ], + [ + 64.37209777458736, + 35.01716081573498 + ], + [ + 63.6328125, + 34.29372925622637 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.6328125, + 35.01716081573498 + ], + [ + 63.6328125, + 35.740592375243594 + ], + [ + 64.37209777458736, + 35.01716081573498 + ], + [ + 63.6328125, + 35.01716081573498 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.6328125, + 35.740592375243594 + ], + [ + 64.37209777458736, + 35.740592375243594 + ], + [ + 64.37209777458736, + 35.01716081573498 + ], + [ + 63.6328125, + 35.740592375243594 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.6328125, + 35.740592375243594 + ], + [ + 64.37209777458736, + 36.464023934752205 + ], + [ + 64.37209777458736, + 35.740592375243594 + ], + [ + 63.6328125, + 35.740592375243594 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.6328125, + 35.740592375243594 + ], + [ + 63.6328125, + 36.464023934752205 + ], + [ + 64.37209777458736, + 36.464023934752205 + ], + [ + 63.6328125, + 35.740592375243594 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.6328125, + 36.464023934752205 + ], + [ + 63.6328125, + 37.18745549426082 + ], + [ + 64.37209777458736, + 36.464023934752205 + ], + [ + 63.6328125, + 36.464023934752205 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.6328125, + 37.18745549426082 + ], + [ + 64.37209777458736, + 37.18745549426082 + ], + [ + 64.37209777458736, + 36.464023934752205 + ], + [ + 63.6328125, + 37.18745549426082 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.6328125, + 37.18745549426082 + ], + [ + 64.37209777458736, + 37.91088705376943 + ], + [ + 64.37209777458736, + 37.18745549426082 + ], + [ + 63.6328125, + 37.18745549426082 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.6328125, + 37.18745549426082 + ], + [ + 63.6328125, + 37.91088705376943 + ], + [ + 64.37209777458736, + 37.91088705376943 + ], + [ + 63.6328125, + 37.18745549426082 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.6328125, + 37.91088705376943 + ], + [ + 63.6328125, + 38.63431861327804 + ], + [ + 64.37209777458736, + 37.91088705376943 + ], + [ + 63.6328125, + 37.91088705376943 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.6328125, + 38.63431861327804 + ], + [ + 64.37209777458736, + 38.63431861327804 + ], + [ + 64.37209777458736, + 37.91088705376943 + ], + [ + 63.6328125, + 38.63431861327804 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.6328125, + 38.63431861327804 + ], + [ + 64.37209777458736, + 39.35775017278665 + ], + [ + 64.37209777458736, + 38.63431861327804 + ], + [ + 63.6328125, + 38.63431861327804 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.6328125, + 38.63431861327804 + ], + [ + 63.6328125, + 39.35775017278665 + ], + [ + 64.37209777458736, + 39.35775017278665 + ], + [ + 63.6328125, + 38.63431861327804 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.6328125, + 39.35775017278665 + ], + [ + 63.6328125, + 40.08118173229526 + ], + [ + 64.37209777458736, + 39.35775017278665 + ], + [ + 63.6328125, + 39.35775017278665 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.6328125, + 40.08118173229526 + ], + [ + 64.37209777458736, + 40.08118173229526 + ], + [ + 64.37209777458736, + 39.35775017278665 + ], + [ + 63.6328125, + 40.08118173229526 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.6328125, + 40.08118173229526 + ], + [ + 64.37209777458736, + 40.804613291803875 + ], + [ + 64.37209777458736, + 40.08118173229526 + ], + [ + 63.6328125, + 40.08118173229526 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.6328125, + 40.08118173229526 + ], + [ + 63.6328125, + 40.804613291803875 + ], + [ + 64.37209777458736, + 40.804613291803875 + ], + [ + 63.6328125, + 40.08118173229526 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.6328125, + 40.804613291803875 + ], + [ + 63.6328125, + 41.52804485131249 + ], + [ + 64.37209777458736, + 40.804613291803875 + ], + [ + 63.6328125, + 40.804613291803875 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.6328125, + 41.52804485131249 + ], + [ + 64.37209777458736, + 41.52804485131249 + ], + [ + 64.37209777458736, + 40.804613291803875 + ], + [ + 63.6328125, + 41.52804485131249 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.6328125, + 41.52804485131249 + ], + [ + 64.37209777458736, + 42.2514764108211 + ], + [ + 64.37209777458736, + 41.52804485131249 + ], + [ + 63.6328125, + 41.52804485131249 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.6328125, + 41.52804485131249 + ], + [ + 63.6328125, + 42.2514764108211 + ], + [ + 64.37209777458736, + 42.2514764108211 + ], + [ + 63.6328125, + 41.52804485131249 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.6328125, + 42.2514764108211 + ], + [ + 63.6328125, + 42.97490797032971 + ], + [ + 64.37209777458736, + 42.2514764108211 + ], + [ + 63.6328125, + 42.2514764108211 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.6328125, + 42.97490797032971 + ], + [ + 64.37209777458736, + 42.97490797032971 + ], + [ + 64.37209777458736, + 42.2514764108211 + ], + [ + 63.6328125, + 42.97490797032971 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.6328125, + 42.97490797032971 + ], + [ + 64.37209777458736, + 43.69833952983832 + ], + [ + 64.37209777458736, + 42.97490797032971 + ], + [ + 63.6328125, + 42.97490797032971 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.6328125, + 42.97490797032971 + ], + [ + 63.6328125, + 43.69833952983832 + ], + [ + 64.37209777458736, + 43.69833952983832 + ], + [ + 63.6328125, + 42.97490797032971 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.6328125, + 43.69833952983832 + ], + [ + 63.6328125, + 44.42177108934693 + ], + [ + 64.37209777458736, + 43.69833952983832 + ], + [ + 63.6328125, + 43.69833952983832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.6328125, + 44.42177108934693 + ], + [ + 64.37209777458736, + 44.42177108934693 + ], + [ + 64.37209777458736, + 43.69833952983832 + ], + [ + 63.6328125, + 44.42177108934693 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.6328125, + 44.42177108934693 + ], + [ + 64.37209777458736, + 45.145202648855545 + ], + [ + 64.37209777458736, + 44.42177108934693 + ], + [ + 63.6328125, + 44.42177108934693 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.6328125, + 44.42177108934693 + ], + [ + 63.6328125, + 45.145202648855545 + ], + [ + 64.37209777458736, + 45.145202648855545 + ], + [ + 63.6328125, + 44.42177108934693 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.6328125, + 45.145202648855545 + ], + [ + 63.6328125, + 45.868634208364156 + ], + [ + 64.37209777458736, + 45.145202648855545 + ], + [ + 63.6328125, + 45.145202648855545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.6328125, + 45.868634208364156 + ], + [ + 64.37209777458736, + 45.868634208364156 + ], + [ + 64.37209777458736, + 45.145202648855545 + ], + [ + 63.6328125, + 45.868634208364156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.6328125, + 45.868634208364156 + ], + [ + 64.37209777458736, + 46.59206576787277 + ], + [ + 64.37209777458736, + 45.868634208364156 + ], + [ + 63.6328125, + 45.868634208364156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.6328125, + 45.868634208364156 + ], + [ + 63.6328125, + 46.59206576787277 + ], + [ + 64.37209777458736, + 46.59206576787277 + ], + [ + 63.6328125, + 45.868634208364156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.6328125, + 46.59206576787277 + ], + [ + 63.6328125, + 47.31549732738138 + ], + [ + 64.37209777458736, + 46.59206576787277 + ], + [ + 63.6328125, + 46.59206576787277 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.6328125, + 47.31549732738138 + ], + [ + 64.37209777458736, + 47.31549732738138 + ], + [ + 64.37209777458736, + 46.59206576787277 + ], + [ + 63.6328125, + 47.31549732738138 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.6328125, + 47.31549732738138 + ], + [ + 64.37209777458736, + 48.03892888688999 + ], + [ + 64.37209777458736, + 47.31549732738138 + ], + [ + 63.6328125, + 47.31549732738138 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.6328125, + 47.31549732738138 + ], + [ + 63.6328125, + 48.03892888688999 + ], + [ + 64.37209777458736, + 48.03892888688999 + ], + [ + 63.6328125, + 47.31549732738138 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.37209777458736, + 11.867350911459308 + ], + [ + 64.37209777458736, + 12.590782470967923 + ], + [ + 65.11138304917472, + 12.590782470967923 + ], + [ + 64.37209777458736, + 11.867350911459308 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.37209777458736, + 11.867350911459308 + ], + [ + 65.11138304917472, + 12.590782470967923 + ], + [ + 65.11138304917472, + 11.867350911459308 + ], + [ + 64.37209777458736, + 11.867350911459308 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.37209777458736, + 12.590782470967923 + ], + [ + 64.37209777458736, + 13.314214030476538 + ], + [ + 65.11138304917472, + 12.590782470967923 + ], + [ + 64.37209777458736, + 12.590782470967923 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.37209777458736, + 13.314214030476538 + ], + [ + 65.11138304917472, + 13.314214030476538 + ], + [ + 65.11138304917472, + 12.590782470967923 + ], + [ + 64.37209777458736, + 13.314214030476538 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.37209777458736, + 13.314214030476538 + ], + [ + 64.37209777458736, + 14.037645589985154 + ], + [ + 65.11138304917472, + 14.037645589985154 + ], + [ + 64.37209777458736, + 13.314214030476538 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.37209777458736, + 13.314214030476538 + ], + [ + 65.11138304917472, + 14.037645589985154 + ], + [ + 65.11138304917472, + 13.314214030476538 + ], + [ + 64.37209777458736, + 13.314214030476538 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.37209777458736, + 14.037645589985154 + ], + [ + 64.37209777458736, + 14.761077149493769 + ], + [ + 65.11138304917472, + 14.037645589985154 + ], + [ + 64.37209777458736, + 14.037645589985154 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.37209777458736, + 14.761077149493769 + ], + [ + 65.11138304917472, + 14.761077149493769 + ], + [ + 65.11138304917472, + 14.037645589985154 + ], + [ + 64.37209777458736, + 14.761077149493769 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.37209777458736, + 14.761077149493769 + ], + [ + 64.37209777458736, + 15.484508709002384 + ], + [ + 65.11138304917472, + 15.484508709002384 + ], + [ + 64.37209777458736, + 14.761077149493769 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.37209777458736, + 14.761077149493769 + ], + [ + 65.11138304917472, + 15.484508709002384 + ], + [ + 65.11138304917472, + 14.761077149493769 + ], + [ + 64.37209777458736, + 14.761077149493769 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.37209777458736, + 15.484508709002384 + ], + [ + 64.37209777458736, + 16.207940268511 + ], + [ + 65.11138304917472, + 15.484508709002384 + ], + [ + 64.37209777458736, + 15.484508709002384 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.37209777458736, + 16.207940268511 + ], + [ + 65.11138304917472, + 16.207940268511 + ], + [ + 65.11138304917472, + 15.484508709002384 + ], + [ + 64.37209777458736, + 16.207940268511 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.37209777458736, + 16.207940268511 + ], + [ + 64.37209777458736, + 16.931371828019614 + ], + [ + 65.11138304917472, + 16.931371828019614 + ], + [ + 64.37209777458736, + 16.207940268511 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.37209777458736, + 16.207940268511 + ], + [ + 65.11138304917472, + 16.931371828019614 + ], + [ + 65.11138304917472, + 16.207940268511 + ], + [ + 64.37209777458736, + 16.207940268511 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.37209777458736, + 16.931371828019614 + ], + [ + 64.37209777458736, + 17.65480338752823 + ], + [ + 65.11138304917472, + 16.931371828019614 + ], + [ + 64.37209777458736, + 16.931371828019614 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.37209777458736, + 17.65480338752823 + ], + [ + 65.11138304917472, + 17.65480338752823 + ], + [ + 65.11138304917472, + 16.931371828019614 + ], + [ + 64.37209777458736, + 17.65480338752823 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.37209777458736, + 17.65480338752823 + ], + [ + 64.37209777458736, + 18.378234947036844 + ], + [ + 65.11138304917472, + 18.378234947036844 + ], + [ + 64.37209777458736, + 17.65480338752823 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.37209777458736, + 17.65480338752823 + ], + [ + 65.11138304917472, + 18.378234947036844 + ], + [ + 65.11138304917472, + 17.65480338752823 + ], + [ + 64.37209777458736, + 17.65480338752823 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.37209777458736, + 18.378234947036844 + ], + [ + 64.37209777458736, + 19.10166650654546 + ], + [ + 65.11138304917472, + 18.378234947036844 + ], + [ + 64.37209777458736, + 18.378234947036844 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.37209777458736, + 19.10166650654546 + ], + [ + 65.11138304917472, + 19.10166650654546 + ], + [ + 65.11138304917472, + 18.378234947036844 + ], + [ + 64.37209777458736, + 19.10166650654546 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.37209777458736, + 19.10166650654546 + ], + [ + 64.37209777458736, + 19.825098066054075 + ], + [ + 65.11138304917472, + 19.825098066054075 + ], + [ + 64.37209777458736, + 19.10166650654546 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.37209777458736, + 19.10166650654546 + ], + [ + 65.11138304917472, + 19.825098066054075 + ], + [ + 65.11138304917472, + 19.10166650654546 + ], + [ + 64.37209777458736, + 19.10166650654546 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.37209777458736, + 19.825098066054075 + ], + [ + 64.37209777458736, + 20.54852962556269 + ], + [ + 65.11138304917472, + 19.825098066054075 + ], + [ + 64.37209777458736, + 19.825098066054075 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.37209777458736, + 20.54852962556269 + ], + [ + 65.11138304917472, + 20.54852962556269 + ], + [ + 65.11138304917472, + 19.825098066054075 + ], + [ + 64.37209777458736, + 20.54852962556269 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.37209777458736, + 20.54852962556269 + ], + [ + 64.37209777458736, + 21.271961185071305 + ], + [ + 65.11138304917472, + 21.271961185071305 + ], + [ + 64.37209777458736, + 20.54852962556269 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.37209777458736, + 20.54852962556269 + ], + [ + 65.11138304917472, + 21.271961185071305 + ], + [ + 65.11138304917472, + 20.54852962556269 + ], + [ + 64.37209777458736, + 20.54852962556269 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.37209777458736, + 21.271961185071305 + ], + [ + 64.37209777458736, + 21.99539274457992 + ], + [ + 65.11138304917472, + 21.271961185071305 + ], + [ + 64.37209777458736, + 21.271961185071305 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.37209777458736, + 21.99539274457992 + ], + [ + 65.11138304917472, + 21.99539274457992 + ], + [ + 65.11138304917472, + 21.271961185071305 + ], + [ + 64.37209777458736, + 21.99539274457992 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.37209777458736, + 21.99539274457992 + ], + [ + 64.37209777458736, + 22.718824304088535 + ], + [ + 65.11138304917472, + 22.718824304088535 + ], + [ + 64.37209777458736, + 21.99539274457992 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.37209777458736, + 21.99539274457992 + ], + [ + 65.11138304917472, + 22.718824304088535 + ], + [ + 65.11138304917472, + 21.99539274457992 + ], + [ + 64.37209777458736, + 21.99539274457992 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.37209777458736, + 22.718824304088535 + ], + [ + 64.37209777458736, + 23.44225586359715 + ], + [ + 65.11138304917472, + 22.718824304088535 + ], + [ + 64.37209777458736, + 22.718824304088535 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.37209777458736, + 23.44225586359715 + ], + [ + 65.11138304917472, + 23.44225586359715 + ], + [ + 65.11138304917472, + 22.718824304088535 + ], + [ + 64.37209777458736, + 23.44225586359715 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.37209777458736, + 23.44225586359715 + ], + [ + 64.37209777458736, + 24.165687423105766 + ], + [ + 65.11138304917472, + 24.165687423105766 + ], + [ + 64.37209777458736, + 23.44225586359715 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.37209777458736, + 23.44225586359715 + ], + [ + 65.11138304917472, + 24.165687423105766 + ], + [ + 65.11138304917472, + 23.44225586359715 + ], + [ + 64.37209777458736, + 23.44225586359715 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.37209777458736, + 24.165687423105766 + ], + [ + 64.37209777458736, + 24.88911898261438 + ], + [ + 65.11138304917472, + 24.165687423105766 + ], + [ + 64.37209777458736, + 24.165687423105766 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.37209777458736, + 24.88911898261438 + ], + [ + 65.11138304917472, + 24.88911898261438 + ], + [ + 65.11138304917472, + 24.165687423105766 + ], + [ + 64.37209777458736, + 24.88911898261438 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.37209777458736, + 24.88911898261438 + ], + [ + 64.37209777458736, + 25.612550542122996 + ], + [ + 65.11138304917472, + 25.612550542122996 + ], + [ + 64.37209777458736, + 24.88911898261438 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.37209777458736, + 24.88911898261438 + ], + [ + 65.11138304917472, + 25.612550542122996 + ], + [ + 65.11138304917472, + 24.88911898261438 + ], + [ + 64.37209777458736, + 24.88911898261438 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.37209777458736, + 25.612550542122996 + ], + [ + 64.37209777458736, + 26.33598210163161 + ], + [ + 65.11138304917472, + 25.612550542122996 + ], + [ + 64.37209777458736, + 25.612550542122996 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.37209777458736, + 26.33598210163161 + ], + [ + 65.11138304917472, + 26.33598210163161 + ], + [ + 65.11138304917472, + 25.612550542122996 + ], + [ + 64.37209777458736, + 26.33598210163161 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.37209777458736, + 26.33598210163161 + ], + [ + 64.37209777458736, + 27.059413661140226 + ], + [ + 65.11138304917472, + 27.059413661140226 + ], + [ + 64.37209777458736, + 26.33598210163161 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.37209777458736, + 26.33598210163161 + ], + [ + 65.11138304917472, + 27.059413661140226 + ], + [ + 65.11138304917472, + 26.33598210163161 + ], + [ + 64.37209777458736, + 26.33598210163161 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.37209777458736, + 27.059413661140226 + ], + [ + 64.37209777458736, + 27.78284522064884 + ], + [ + 65.11138304917472, + 27.059413661140226 + ], + [ + 64.37209777458736, + 27.059413661140226 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.37209777458736, + 27.78284522064884 + ], + [ + 65.11138304917472, + 27.78284522064884 + ], + [ + 65.11138304917472, + 27.059413661140226 + ], + [ + 64.37209777458736, + 27.78284522064884 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.37209777458736, + 27.78284522064884 + ], + [ + 64.37209777458736, + 28.506276780157457 + ], + [ + 65.11138304917472, + 28.506276780157457 + ], + [ + 64.37209777458736, + 27.78284522064884 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.37209777458736, + 27.78284522064884 + ], + [ + 65.11138304917472, + 28.506276780157457 + ], + [ + 65.11138304917472, + 27.78284522064884 + ], + [ + 64.37209777458736, + 27.78284522064884 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.37209777458736, + 28.506276780157457 + ], + [ + 64.37209777458736, + 29.22970833966607 + ], + [ + 65.11138304917472, + 28.506276780157457 + ], + [ + 64.37209777458736, + 28.506276780157457 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.37209777458736, + 29.22970833966607 + ], + [ + 65.11138304917472, + 29.22970833966607 + ], + [ + 65.11138304917472, + 28.506276780157457 + ], + [ + 64.37209777458736, + 29.22970833966607 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.37209777458736, + 29.22970833966607 + ], + [ + 64.37209777458736, + 29.953139899174687 + ], + [ + 65.11138304917472, + 29.953139899174687 + ], + [ + 64.37209777458736, + 29.22970833966607 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.37209777458736, + 29.22970833966607 + ], + [ + 65.11138304917472, + 29.953139899174687 + ], + [ + 65.11138304917472, + 29.22970833966607 + ], + [ + 64.37209777458736, + 29.22970833966607 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.37209777458736, + 29.953139899174687 + ], + [ + 64.37209777458736, + 30.676571458683302 + ], + [ + 65.11138304917472, + 29.953139899174687 + ], + [ + 64.37209777458736, + 29.953139899174687 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.37209777458736, + 30.676571458683302 + ], + [ + 65.11138304917472, + 30.676571458683302 + ], + [ + 65.11138304917472, + 29.953139899174687 + ], + [ + 64.37209777458736, + 30.676571458683302 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.37209777458736, + 30.676571458683302 + ], + [ + 64.37209777458736, + 31.400003018191917 + ], + [ + 65.11138304917472, + 31.400003018191917 + ], + [ + 64.37209777458736, + 30.676571458683302 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.37209777458736, + 30.676571458683302 + ], + [ + 65.11138304917472, + 31.400003018191917 + ], + [ + 65.11138304917472, + 30.676571458683302 + ], + [ + 64.37209777458736, + 30.676571458683302 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.37209777458736, + 31.400003018191917 + ], + [ + 64.37209777458736, + 32.123434577700536 + ], + [ + 65.11138304917472, + 31.400003018191917 + ], + [ + 64.37209777458736, + 31.400003018191917 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.37209777458736, + 32.123434577700536 + ], + [ + 65.11138304917472, + 32.123434577700536 + ], + [ + 65.11138304917472, + 31.400003018191917 + ], + [ + 64.37209777458736, + 32.123434577700536 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.37209777458736, + 32.123434577700536 + ], + [ + 64.37209777458736, + 32.84686613720915 + ], + [ + 65.11138304917472, + 32.84686613720915 + ], + [ + 64.37209777458736, + 32.123434577700536 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.37209777458736, + 32.123434577700536 + ], + [ + 65.11138304917472, + 32.84686613720915 + ], + [ + 65.11138304917472, + 32.123434577700536 + ], + [ + 64.37209777458736, + 32.123434577700536 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.37209777458736, + 32.84686613720915 + ], + [ + 64.37209777458736, + 33.57029769671776 + ], + [ + 65.11138304917472, + 32.84686613720915 + ], + [ + 64.37209777458736, + 32.84686613720915 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.37209777458736, + 33.57029769671776 + ], + [ + 65.11138304917472, + 33.57029769671776 + ], + [ + 65.11138304917472, + 32.84686613720915 + ], + [ + 64.37209777458736, + 33.57029769671776 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.37209777458736, + 33.57029769671776 + ], + [ + 64.37209777458736, + 34.29372925622637 + ], + [ + 65.11138304917472, + 34.29372925622637 + ], + [ + 64.37209777458736, + 33.57029769671776 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.37209777458736, + 33.57029769671776 + ], + [ + 65.11138304917472, + 34.29372925622637 + ], + [ + 65.11138304917472, + 33.57029769671776 + ], + [ + 64.37209777458736, + 33.57029769671776 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.37209777458736, + 34.29372925622637 + ], + [ + 64.37209777458736, + 35.01716081573498 + ], + [ + 65.11138304917472, + 34.29372925622637 + ], + [ + 64.37209777458736, + 34.29372925622637 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.37209777458736, + 35.01716081573498 + ], + [ + 65.11138304917472, + 35.01716081573498 + ], + [ + 65.11138304917472, + 34.29372925622637 + ], + [ + 64.37209777458736, + 35.01716081573498 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.37209777458736, + 35.01716081573498 + ], + [ + 64.37209777458736, + 35.740592375243594 + ], + [ + 65.11138304917472, + 35.740592375243594 + ], + [ + 64.37209777458736, + 35.01716081573498 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.37209777458736, + 35.01716081573498 + ], + [ + 65.11138304917472, + 35.740592375243594 + ], + [ + 65.11138304917472, + 35.01716081573498 + ], + [ + 64.37209777458736, + 35.01716081573498 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.37209777458736, + 35.740592375243594 + ], + [ + 64.37209777458736, + 36.464023934752205 + ], + [ + 65.11138304917472, + 35.740592375243594 + ], + [ + 64.37209777458736, + 35.740592375243594 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.37209777458736, + 36.464023934752205 + ], + [ + 65.11138304917472, + 36.464023934752205 + ], + [ + 65.11138304917472, + 35.740592375243594 + ], + [ + 64.37209777458736, + 36.464023934752205 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.37209777458736, + 36.464023934752205 + ], + [ + 64.37209777458736, + 37.18745549426082 + ], + [ + 65.11138304917472, + 37.18745549426082 + ], + [ + 64.37209777458736, + 36.464023934752205 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.37209777458736, + 36.464023934752205 + ], + [ + 65.11138304917472, + 37.18745549426082 + ], + [ + 65.11138304917472, + 36.464023934752205 + ], + [ + 64.37209777458736, + 36.464023934752205 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.37209777458736, + 37.18745549426082 + ], + [ + 64.37209777458736, + 37.91088705376943 + ], + [ + 65.11138304917472, + 37.18745549426082 + ], + [ + 64.37209777458736, + 37.18745549426082 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.37209777458736, + 37.91088705376943 + ], + [ + 65.11138304917472, + 37.91088705376943 + ], + [ + 65.11138304917472, + 37.18745549426082 + ], + [ + 64.37209777458736, + 37.91088705376943 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.37209777458736, + 37.91088705376943 + ], + [ + 64.37209777458736, + 38.63431861327804 + ], + [ + 65.11138304917472, + 38.63431861327804 + ], + [ + 64.37209777458736, + 37.91088705376943 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.37209777458736, + 37.91088705376943 + ], + [ + 65.11138304917472, + 38.63431861327804 + ], + [ + 65.11138304917472, + 37.91088705376943 + ], + [ + 64.37209777458736, + 37.91088705376943 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.37209777458736, + 38.63431861327804 + ], + [ + 64.37209777458736, + 39.35775017278665 + ], + [ + 65.11138304917472, + 38.63431861327804 + ], + [ + 64.37209777458736, + 38.63431861327804 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.37209777458736, + 39.35775017278665 + ], + [ + 65.11138304917472, + 39.35775017278665 + ], + [ + 65.11138304917472, + 38.63431861327804 + ], + [ + 64.37209777458736, + 39.35775017278665 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.37209777458736, + 39.35775017278665 + ], + [ + 64.37209777458736, + 40.08118173229526 + ], + [ + 65.11138304917472, + 40.08118173229526 + ], + [ + 64.37209777458736, + 39.35775017278665 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.37209777458736, + 39.35775017278665 + ], + [ + 65.11138304917472, + 40.08118173229526 + ], + [ + 65.11138304917472, + 39.35775017278665 + ], + [ + 64.37209777458736, + 39.35775017278665 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.37209777458736, + 40.08118173229526 + ], + [ + 64.37209777458736, + 40.804613291803875 + ], + [ + 65.11138304917472, + 40.08118173229526 + ], + [ + 64.37209777458736, + 40.08118173229526 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.37209777458736, + 40.804613291803875 + ], + [ + 65.11138304917472, + 40.804613291803875 + ], + [ + 65.11138304917472, + 40.08118173229526 + ], + [ + 64.37209777458736, + 40.804613291803875 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.37209777458736, + 40.804613291803875 + ], + [ + 64.37209777458736, + 41.52804485131249 + ], + [ + 65.11138304917472, + 41.52804485131249 + ], + [ + 64.37209777458736, + 40.804613291803875 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.37209777458736, + 40.804613291803875 + ], + [ + 65.11138304917472, + 41.52804485131249 + ], + [ + 65.11138304917472, + 40.804613291803875 + ], + [ + 64.37209777458736, + 40.804613291803875 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.37209777458736, + 41.52804485131249 + ], + [ + 64.37209777458736, + 42.2514764108211 + ], + [ + 65.11138304917472, + 41.52804485131249 + ], + [ + 64.37209777458736, + 41.52804485131249 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.37209777458736, + 42.2514764108211 + ], + [ + 65.11138304917472, + 42.2514764108211 + ], + [ + 65.11138304917472, + 41.52804485131249 + ], + [ + 64.37209777458736, + 42.2514764108211 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.37209777458736, + 42.2514764108211 + ], + [ + 64.37209777458736, + 42.97490797032971 + ], + [ + 65.11138304917472, + 42.97490797032971 + ], + [ + 64.37209777458736, + 42.2514764108211 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.37209777458736, + 42.2514764108211 + ], + [ + 65.11138304917472, + 42.97490797032971 + ], + [ + 65.11138304917472, + 42.2514764108211 + ], + [ + 64.37209777458736, + 42.2514764108211 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.37209777458736, + 42.97490797032971 + ], + [ + 64.37209777458736, + 43.69833952983832 + ], + [ + 65.11138304917472, + 42.97490797032971 + ], + [ + 64.37209777458736, + 42.97490797032971 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.37209777458736, + 43.69833952983832 + ], + [ + 65.11138304917472, + 43.69833952983832 + ], + [ + 65.11138304917472, + 42.97490797032971 + ], + [ + 64.37209777458736, + 43.69833952983832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.37209777458736, + 43.69833952983832 + ], + [ + 64.37209777458736, + 44.42177108934693 + ], + [ + 65.11138304917472, + 44.42177108934693 + ], + [ + 64.37209777458736, + 43.69833952983832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.37209777458736, + 43.69833952983832 + ], + [ + 65.11138304917472, + 44.42177108934693 + ], + [ + 65.11138304917472, + 43.69833952983832 + ], + [ + 64.37209777458736, + 43.69833952983832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.37209777458736, + 44.42177108934693 + ], + [ + 64.37209777458736, + 45.145202648855545 + ], + [ + 65.11138304917472, + 44.42177108934693 + ], + [ + 64.37209777458736, + 44.42177108934693 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.37209777458736, + 45.145202648855545 + ], + [ + 65.11138304917472, + 45.145202648855545 + ], + [ + 65.11138304917472, + 44.42177108934693 + ], + [ + 64.37209777458736, + 45.145202648855545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.37209777458736, + 45.145202648855545 + ], + [ + 64.37209777458736, + 45.868634208364156 + ], + [ + 65.11138304917472, + 45.868634208364156 + ], + [ + 64.37209777458736, + 45.145202648855545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.37209777458736, + 45.145202648855545 + ], + [ + 65.11138304917472, + 45.868634208364156 + ], + [ + 65.11138304917472, + 45.145202648855545 + ], + [ + 64.37209777458736, + 45.145202648855545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.37209777458736, + 45.868634208364156 + ], + [ + 64.37209777458736, + 46.59206576787277 + ], + [ + 65.11138304917472, + 45.868634208364156 + ], + [ + 64.37209777458736, + 45.868634208364156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.37209777458736, + 46.59206576787277 + ], + [ + 65.11138304917472, + 46.59206576787277 + ], + [ + 65.11138304917472, + 45.868634208364156 + ], + [ + 64.37209777458736, + 46.59206576787277 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.37209777458736, + 46.59206576787277 + ], + [ + 64.37209777458736, + 47.31549732738138 + ], + [ + 65.11138304917472, + 47.31549732738138 + ], + [ + 64.37209777458736, + 46.59206576787277 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.37209777458736, + 46.59206576787277 + ], + [ + 65.11138304917472, + 47.31549732738138 + ], + [ + 65.11138304917472, + 46.59206576787277 + ], + [ + 64.37209777458736, + 46.59206576787277 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.37209777458736, + 47.31549732738138 + ], + [ + 64.37209777458736, + 48.03892888688999 + ], + [ + 65.11138304917472, + 47.31549732738138 + ], + [ + 64.37209777458736, + 47.31549732738138 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 64.37209777458736, + 48.03892888688999 + ], + [ + 65.11138304917472, + 48.03892888688999 + ], + [ + 65.11138304917472, + 47.31549732738138 + ], + [ + 64.37209777458736, + 48.03892888688999 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.11138304917472, + 11.867350911459308 + ], + [ + 65.11138304917472, + 12.590782470967923 + ], + [ + 65.85066832376208, + 11.867350911459308 + ], + [ + 65.11138304917472, + 11.867350911459308 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.11138304917472, + 12.590782470967923 + ], + [ + 65.85066832376208, + 12.590782470967923 + ], + [ + 65.85066832376208, + 11.867350911459308 + ], + [ + 65.11138304917472, + 12.590782470967923 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.11138304917472, + 12.590782470967923 + ], + [ + 65.85066832376208, + 13.314214030476538 + ], + [ + 65.85066832376208, + 12.590782470967923 + ], + [ + 65.11138304917472, + 12.590782470967923 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.11138304917472, + 12.590782470967923 + ], + [ + 65.11138304917472, + 13.314214030476538 + ], + [ + 65.85066832376208, + 13.314214030476538 + ], + [ + 65.11138304917472, + 12.590782470967923 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.11138304917472, + 13.314214030476538 + ], + [ + 65.11138304917472, + 14.037645589985154 + ], + [ + 65.85066832376208, + 13.314214030476538 + ], + [ + 65.11138304917472, + 13.314214030476538 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.11138304917472, + 14.037645589985154 + ], + [ + 65.85066832376208, + 14.037645589985154 + ], + [ + 65.85066832376208, + 13.314214030476538 + ], + [ + 65.11138304917472, + 14.037645589985154 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.11138304917472, + 14.037645589985154 + ], + [ + 65.85066832376208, + 14.761077149493769 + ], + [ + 65.85066832376208, + 14.037645589985154 + ], + [ + 65.11138304917472, + 14.037645589985154 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.11138304917472, + 14.037645589985154 + ], + [ + 65.11138304917472, + 14.761077149493769 + ], + [ + 65.85066832376208, + 14.761077149493769 + ], + [ + 65.11138304917472, + 14.037645589985154 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.11138304917472, + 14.761077149493769 + ], + [ + 65.11138304917472, + 15.484508709002384 + ], + [ + 65.85066832376208, + 14.761077149493769 + ], + [ + 65.11138304917472, + 14.761077149493769 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.11138304917472, + 15.484508709002384 + ], + [ + 65.85066832376208, + 15.484508709002384 + ], + [ + 65.85066832376208, + 14.761077149493769 + ], + [ + 65.11138304917472, + 15.484508709002384 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.11138304917472, + 15.484508709002384 + ], + [ + 65.85066832376208, + 16.207940268511 + ], + [ + 65.85066832376208, + 15.484508709002384 + ], + [ + 65.11138304917472, + 15.484508709002384 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.11138304917472, + 15.484508709002384 + ], + [ + 65.11138304917472, + 16.207940268511 + ], + [ + 65.85066832376208, + 16.207940268511 + ], + [ + 65.11138304917472, + 15.484508709002384 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.11138304917472, + 16.207940268511 + ], + [ + 65.11138304917472, + 16.931371828019614 + ], + [ + 65.85066832376208, + 16.207940268511 + ], + [ + 65.11138304917472, + 16.207940268511 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.11138304917472, + 16.931371828019614 + ], + [ + 65.85066832376208, + 16.931371828019614 + ], + [ + 65.85066832376208, + 16.207940268511 + ], + [ + 65.11138304917472, + 16.931371828019614 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.11138304917472, + 16.931371828019614 + ], + [ + 65.85066832376208, + 17.65480338752823 + ], + [ + 65.85066832376208, + 16.931371828019614 + ], + [ + 65.11138304917472, + 16.931371828019614 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.11138304917472, + 16.931371828019614 + ], + [ + 65.11138304917472, + 17.65480338752823 + ], + [ + 65.85066832376208, + 17.65480338752823 + ], + [ + 65.11138304917472, + 16.931371828019614 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.11138304917472, + 17.65480338752823 + ], + [ + 65.11138304917472, + 18.378234947036844 + ], + [ + 65.85066832376208, + 17.65480338752823 + ], + [ + 65.11138304917472, + 17.65480338752823 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.11138304917472, + 18.378234947036844 + ], + [ + 65.85066832376208, + 18.378234947036844 + ], + [ + 65.85066832376208, + 17.65480338752823 + ], + [ + 65.11138304917472, + 18.378234947036844 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.11138304917472, + 18.378234947036844 + ], + [ + 65.85066832376208, + 19.10166650654546 + ], + [ + 65.85066832376208, + 18.378234947036844 + ], + [ + 65.11138304917472, + 18.378234947036844 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.11138304917472, + 18.378234947036844 + ], + [ + 65.11138304917472, + 19.10166650654546 + ], + [ + 65.85066832376208, + 19.10166650654546 + ], + [ + 65.11138304917472, + 18.378234947036844 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.11138304917472, + 19.10166650654546 + ], + [ + 65.11138304917472, + 19.825098066054075 + ], + [ + 65.85066832376208, + 19.10166650654546 + ], + [ + 65.11138304917472, + 19.10166650654546 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.11138304917472, + 19.825098066054075 + ], + [ + 65.85066832376208, + 19.825098066054075 + ], + [ + 65.85066832376208, + 19.10166650654546 + ], + [ + 65.11138304917472, + 19.825098066054075 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.11138304917472, + 19.825098066054075 + ], + [ + 65.85066832376208, + 20.54852962556269 + ], + [ + 65.85066832376208, + 19.825098066054075 + ], + [ + 65.11138304917472, + 19.825098066054075 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.11138304917472, + 19.825098066054075 + ], + [ + 65.11138304917472, + 20.54852962556269 + ], + [ + 65.85066832376208, + 20.54852962556269 + ], + [ + 65.11138304917472, + 19.825098066054075 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.11138304917472, + 20.54852962556269 + ], + [ + 65.11138304917472, + 21.271961185071305 + ], + [ + 65.85066832376208, + 20.54852962556269 + ], + [ + 65.11138304917472, + 20.54852962556269 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.11138304917472, + 21.271961185071305 + ], + [ + 65.85066832376208, + 21.271961185071305 + ], + [ + 65.85066832376208, + 20.54852962556269 + ], + [ + 65.11138304917472, + 21.271961185071305 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.11138304917472, + 21.271961185071305 + ], + [ + 65.85066832376208, + 21.99539274457992 + ], + [ + 65.85066832376208, + 21.271961185071305 + ], + [ + 65.11138304917472, + 21.271961185071305 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.11138304917472, + 21.271961185071305 + ], + [ + 65.11138304917472, + 21.99539274457992 + ], + [ + 65.85066832376208, + 21.99539274457992 + ], + [ + 65.11138304917472, + 21.271961185071305 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.11138304917472, + 21.99539274457992 + ], + [ + 65.11138304917472, + 22.718824304088535 + ], + [ + 65.85066832376208, + 21.99539274457992 + ], + [ + 65.11138304917472, + 21.99539274457992 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.11138304917472, + 22.718824304088535 + ], + [ + 65.85066832376208, + 22.718824304088535 + ], + [ + 65.85066832376208, + 21.99539274457992 + ], + [ + 65.11138304917472, + 22.718824304088535 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.11138304917472, + 22.718824304088535 + ], + [ + 65.85066832376208, + 23.44225586359715 + ], + [ + 65.85066832376208, + 22.718824304088535 + ], + [ + 65.11138304917472, + 22.718824304088535 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.11138304917472, + 22.718824304088535 + ], + [ + 65.11138304917472, + 23.44225586359715 + ], + [ + 65.85066832376208, + 23.44225586359715 + ], + [ + 65.11138304917472, + 22.718824304088535 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.11138304917472, + 23.44225586359715 + ], + [ + 65.11138304917472, + 24.165687423105766 + ], + [ + 65.85066832376208, + 23.44225586359715 + ], + [ + 65.11138304917472, + 23.44225586359715 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.11138304917472, + 24.165687423105766 + ], + [ + 65.85066832376208, + 24.165687423105766 + ], + [ + 65.85066832376208, + 23.44225586359715 + ], + [ + 65.11138304917472, + 24.165687423105766 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.11138304917472, + 24.165687423105766 + ], + [ + 65.85066832376208, + 24.88911898261438 + ], + [ + 65.85066832376208, + 24.165687423105766 + ], + [ + 65.11138304917472, + 24.165687423105766 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.11138304917472, + 24.165687423105766 + ], + [ + 65.11138304917472, + 24.88911898261438 + ], + [ + 65.85066832376208, + 24.88911898261438 + ], + [ + 65.11138304917472, + 24.165687423105766 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.11138304917472, + 24.88911898261438 + ], + [ + 65.11138304917472, + 25.612550542122996 + ], + [ + 65.85066832376208, + 24.88911898261438 + ], + [ + 65.11138304917472, + 24.88911898261438 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.11138304917472, + 25.612550542122996 + ], + [ + 65.85066832376208, + 25.612550542122996 + ], + [ + 65.85066832376208, + 24.88911898261438 + ], + [ + 65.11138304917472, + 25.612550542122996 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.11138304917472, + 25.612550542122996 + ], + [ + 65.85066832376208, + 26.33598210163161 + ], + [ + 65.85066832376208, + 25.612550542122996 + ], + [ + 65.11138304917472, + 25.612550542122996 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.11138304917472, + 25.612550542122996 + ], + [ + 65.11138304917472, + 26.33598210163161 + ], + [ + 65.85066832376208, + 26.33598210163161 + ], + [ + 65.11138304917472, + 25.612550542122996 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.11138304917472, + 26.33598210163161 + ], + [ + 65.11138304917472, + 27.059413661140226 + ], + [ + 65.85066832376208, + 26.33598210163161 + ], + [ + 65.11138304917472, + 26.33598210163161 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.11138304917472, + 27.059413661140226 + ], + [ + 65.85066832376208, + 27.059413661140226 + ], + [ + 65.85066832376208, + 26.33598210163161 + ], + [ + 65.11138304917472, + 27.059413661140226 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.11138304917472, + 27.059413661140226 + ], + [ + 65.85066832376208, + 27.78284522064884 + ], + [ + 65.85066832376208, + 27.059413661140226 + ], + [ + 65.11138304917472, + 27.059413661140226 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.11138304917472, + 27.059413661140226 + ], + [ + 65.11138304917472, + 27.78284522064884 + ], + [ + 65.85066832376208, + 27.78284522064884 + ], + [ + 65.11138304917472, + 27.059413661140226 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.11138304917472, + 27.78284522064884 + ], + [ + 65.11138304917472, + 28.506276780157457 + ], + [ + 65.85066832376208, + 27.78284522064884 + ], + [ + 65.11138304917472, + 27.78284522064884 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.11138304917472, + 28.506276780157457 + ], + [ + 65.85066832376208, + 28.506276780157457 + ], + [ + 65.85066832376208, + 27.78284522064884 + ], + [ + 65.11138304917472, + 28.506276780157457 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.11138304917472, + 28.506276780157457 + ], + [ + 65.85066832376208, + 29.22970833966607 + ], + [ + 65.85066832376208, + 28.506276780157457 + ], + [ + 65.11138304917472, + 28.506276780157457 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.11138304917472, + 28.506276780157457 + ], + [ + 65.11138304917472, + 29.22970833966607 + ], + [ + 65.85066832376208, + 29.22970833966607 + ], + [ + 65.11138304917472, + 28.506276780157457 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.11138304917472, + 29.22970833966607 + ], + [ + 65.11138304917472, + 29.953139899174687 + ], + [ + 65.85066832376208, + 29.22970833966607 + ], + [ + 65.11138304917472, + 29.22970833966607 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.11138304917472, + 29.953139899174687 + ], + [ + 65.85066832376208, + 29.953139899174687 + ], + [ + 65.85066832376208, + 29.22970833966607 + ], + [ + 65.11138304917472, + 29.953139899174687 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.11138304917472, + 29.953139899174687 + ], + [ + 65.85066832376208, + 30.676571458683302 + ], + [ + 65.85066832376208, + 29.953139899174687 + ], + [ + 65.11138304917472, + 29.953139899174687 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.11138304917472, + 29.953139899174687 + ], + [ + 65.11138304917472, + 30.676571458683302 + ], + [ + 65.85066832376208, + 30.676571458683302 + ], + [ + 65.11138304917472, + 29.953139899174687 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.11138304917472, + 30.676571458683302 + ], + [ + 65.11138304917472, + 31.400003018191917 + ], + [ + 65.85066832376208, + 30.676571458683302 + ], + [ + 65.11138304917472, + 30.676571458683302 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.11138304917472, + 31.400003018191917 + ], + [ + 65.85066832376208, + 31.400003018191917 + ], + [ + 65.85066832376208, + 30.676571458683302 + ], + [ + 65.11138304917472, + 31.400003018191917 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.11138304917472, + 31.400003018191917 + ], + [ + 65.85066832376208, + 32.123434577700536 + ], + [ + 65.85066832376208, + 31.400003018191917 + ], + [ + 65.11138304917472, + 31.400003018191917 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.11138304917472, + 31.400003018191917 + ], + [ + 65.11138304917472, + 32.123434577700536 + ], + [ + 65.85066832376208, + 32.123434577700536 + ], + [ + 65.11138304917472, + 31.400003018191917 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.11138304917472, + 32.123434577700536 + ], + [ + 65.11138304917472, + 32.84686613720915 + ], + [ + 65.85066832376208, + 32.123434577700536 + ], + [ + 65.11138304917472, + 32.123434577700536 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.11138304917472, + 32.84686613720915 + ], + [ + 65.85066832376208, + 32.84686613720915 + ], + [ + 65.85066832376208, + 32.123434577700536 + ], + [ + 65.11138304917472, + 32.84686613720915 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.11138304917472, + 32.84686613720915 + ], + [ + 65.85066832376208, + 33.57029769671776 + ], + [ + 65.85066832376208, + 32.84686613720915 + ], + [ + 65.11138304917472, + 32.84686613720915 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.11138304917472, + 32.84686613720915 + ], + [ + 65.11138304917472, + 33.57029769671776 + ], + [ + 65.85066832376208, + 33.57029769671776 + ], + [ + 65.11138304917472, + 32.84686613720915 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.11138304917472, + 33.57029769671776 + ], + [ + 65.11138304917472, + 34.29372925622637 + ], + [ + 65.85066832376208, + 33.57029769671776 + ], + [ + 65.11138304917472, + 33.57029769671776 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.11138304917472, + 34.29372925622637 + ], + [ + 65.85066832376208, + 34.29372925622637 + ], + [ + 65.85066832376208, + 33.57029769671776 + ], + [ + 65.11138304917472, + 34.29372925622637 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.11138304917472, + 34.29372925622637 + ], + [ + 65.85066832376208, + 35.01716081573498 + ], + [ + 65.85066832376208, + 34.29372925622637 + ], + [ + 65.11138304917472, + 34.29372925622637 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.11138304917472, + 34.29372925622637 + ], + [ + 65.11138304917472, + 35.01716081573498 + ], + [ + 65.85066832376208, + 35.01716081573498 + ], + [ + 65.11138304917472, + 34.29372925622637 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.11138304917472, + 35.01716081573498 + ], + [ + 65.11138304917472, + 35.740592375243594 + ], + [ + 65.85066832376208, + 35.01716081573498 + ], + [ + 65.11138304917472, + 35.01716081573498 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.11138304917472, + 35.740592375243594 + ], + [ + 65.85066832376208, + 35.740592375243594 + ], + [ + 65.85066832376208, + 35.01716081573498 + ], + [ + 65.11138304917472, + 35.740592375243594 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.11138304917472, + 35.740592375243594 + ], + [ + 65.85066832376208, + 36.464023934752205 + ], + [ + 65.85066832376208, + 35.740592375243594 + ], + [ + 65.11138304917472, + 35.740592375243594 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.11138304917472, + 35.740592375243594 + ], + [ + 65.11138304917472, + 36.464023934752205 + ], + [ + 65.85066832376208, + 36.464023934752205 + ], + [ + 65.11138304917472, + 35.740592375243594 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.11138304917472, + 36.464023934752205 + ], + [ + 65.11138304917472, + 37.18745549426082 + ], + [ + 65.85066832376208, + 36.464023934752205 + ], + [ + 65.11138304917472, + 36.464023934752205 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.11138304917472, + 37.18745549426082 + ], + [ + 65.85066832376208, + 37.18745549426082 + ], + [ + 65.85066832376208, + 36.464023934752205 + ], + [ + 65.11138304917472, + 37.18745549426082 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.11138304917472, + 37.18745549426082 + ], + [ + 65.85066832376208, + 37.91088705376943 + ], + [ + 65.85066832376208, + 37.18745549426082 + ], + [ + 65.11138304917472, + 37.18745549426082 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.11138304917472, + 37.18745549426082 + ], + [ + 65.11138304917472, + 37.91088705376943 + ], + [ + 65.85066832376208, + 37.91088705376943 + ], + [ + 65.11138304917472, + 37.18745549426082 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.11138304917472, + 37.91088705376943 + ], + [ + 65.11138304917472, + 38.63431861327804 + ], + [ + 65.85066832376208, + 37.91088705376943 + ], + [ + 65.11138304917472, + 37.91088705376943 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.11138304917472, + 38.63431861327804 + ], + [ + 65.85066832376208, + 38.63431861327804 + ], + [ + 65.85066832376208, + 37.91088705376943 + ], + [ + 65.11138304917472, + 38.63431861327804 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.11138304917472, + 38.63431861327804 + ], + [ + 65.85066832376208, + 39.35775017278665 + ], + [ + 65.85066832376208, + 38.63431861327804 + ], + [ + 65.11138304917472, + 38.63431861327804 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.11138304917472, + 38.63431861327804 + ], + [ + 65.11138304917472, + 39.35775017278665 + ], + [ + 65.85066832376208, + 39.35775017278665 + ], + [ + 65.11138304917472, + 38.63431861327804 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.11138304917472, + 39.35775017278665 + ], + [ + 65.11138304917472, + 40.08118173229526 + ], + [ + 65.85066832376208, + 39.35775017278665 + ], + [ + 65.11138304917472, + 39.35775017278665 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.11138304917472, + 40.08118173229526 + ], + [ + 65.85066832376208, + 40.08118173229526 + ], + [ + 65.85066832376208, + 39.35775017278665 + ], + [ + 65.11138304917472, + 40.08118173229526 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.11138304917472, + 40.08118173229526 + ], + [ + 65.85066832376208, + 40.804613291803875 + ], + [ + 65.85066832376208, + 40.08118173229526 + ], + [ + 65.11138304917472, + 40.08118173229526 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.11138304917472, + 40.08118173229526 + ], + [ + 65.11138304917472, + 40.804613291803875 + ], + [ + 65.85066832376208, + 40.804613291803875 + ], + [ + 65.11138304917472, + 40.08118173229526 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.11138304917472, + 40.804613291803875 + ], + [ + 65.11138304917472, + 41.52804485131249 + ], + [ + 65.85066832376208, + 40.804613291803875 + ], + [ + 65.11138304917472, + 40.804613291803875 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.11138304917472, + 41.52804485131249 + ], + [ + 65.85066832376208, + 41.52804485131249 + ], + [ + 65.85066832376208, + 40.804613291803875 + ], + [ + 65.11138304917472, + 41.52804485131249 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.11138304917472, + 41.52804485131249 + ], + [ + 65.85066832376208, + 42.2514764108211 + ], + [ + 65.85066832376208, + 41.52804485131249 + ], + [ + 65.11138304917472, + 41.52804485131249 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.11138304917472, + 41.52804485131249 + ], + [ + 65.11138304917472, + 42.2514764108211 + ], + [ + 65.85066832376208, + 42.2514764108211 + ], + [ + 65.11138304917472, + 41.52804485131249 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.11138304917472, + 42.2514764108211 + ], + [ + 65.11138304917472, + 42.97490797032971 + ], + [ + 65.85066832376208, + 42.2514764108211 + ], + [ + 65.11138304917472, + 42.2514764108211 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.11138304917472, + 42.97490797032971 + ], + [ + 65.85066832376208, + 42.97490797032971 + ], + [ + 65.85066832376208, + 42.2514764108211 + ], + [ + 65.11138304917472, + 42.97490797032971 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.11138304917472, + 42.97490797032971 + ], + [ + 65.85066832376208, + 43.69833952983832 + ], + [ + 65.85066832376208, + 42.97490797032971 + ], + [ + 65.11138304917472, + 42.97490797032971 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.11138304917472, + 42.97490797032971 + ], + [ + 65.11138304917472, + 43.69833952983832 + ], + [ + 65.85066832376208, + 43.69833952983832 + ], + [ + 65.11138304917472, + 42.97490797032971 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.11138304917472, + 43.69833952983832 + ], + [ + 65.11138304917472, + 44.42177108934693 + ], + [ + 65.85066832376208, + 43.69833952983832 + ], + [ + 65.11138304917472, + 43.69833952983832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.11138304917472, + 44.42177108934693 + ], + [ + 65.85066832376208, + 44.42177108934693 + ], + [ + 65.85066832376208, + 43.69833952983832 + ], + [ + 65.11138304917472, + 44.42177108934693 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.11138304917472, + 44.42177108934693 + ], + [ + 65.85066832376208, + 45.145202648855545 + ], + [ + 65.85066832376208, + 44.42177108934693 + ], + [ + 65.11138304917472, + 44.42177108934693 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.11138304917472, + 44.42177108934693 + ], + [ + 65.11138304917472, + 45.145202648855545 + ], + [ + 65.85066832376208, + 45.145202648855545 + ], + [ + 65.11138304917472, + 44.42177108934693 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.11138304917472, + 45.145202648855545 + ], + [ + 65.11138304917472, + 45.868634208364156 + ], + [ + 65.85066832376208, + 45.145202648855545 + ], + [ + 65.11138304917472, + 45.145202648855545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.11138304917472, + 45.868634208364156 + ], + [ + 65.85066832376208, + 45.868634208364156 + ], + [ + 65.85066832376208, + 45.145202648855545 + ], + [ + 65.11138304917472, + 45.868634208364156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.11138304917472, + 45.868634208364156 + ], + [ + 65.85066832376208, + 46.59206576787277 + ], + [ + 65.85066832376208, + 45.868634208364156 + ], + [ + 65.11138304917472, + 45.868634208364156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.11138304917472, + 45.868634208364156 + ], + [ + 65.11138304917472, + 46.59206576787277 + ], + [ + 65.85066832376208, + 46.59206576787277 + ], + [ + 65.11138304917472, + 45.868634208364156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.11138304917472, + 46.59206576787277 + ], + [ + 65.11138304917472, + 47.31549732738138 + ], + [ + 65.85066832376208, + 46.59206576787277 + ], + [ + 65.11138304917472, + 46.59206576787277 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.11138304917472, + 47.31549732738138 + ], + [ + 65.85066832376208, + 47.31549732738138 + ], + [ + 65.85066832376208, + 46.59206576787277 + ], + [ + 65.11138304917472, + 47.31549732738138 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.11138304917472, + 47.31549732738138 + ], + [ + 65.85066832376208, + 48.03892888688999 + ], + [ + 65.85066832376208, + 47.31549732738138 + ], + [ + 65.11138304917472, + 47.31549732738138 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.11138304917472, + 47.31549732738138 + ], + [ + 65.11138304917472, + 48.03892888688999 + ], + [ + 65.85066832376208, + 48.03892888688999 + ], + [ + 65.11138304917472, + 47.31549732738138 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.85066832376208, + 11.867350911459308 + ], + [ + 65.85066832376208, + 12.590782470967923 + ], + [ + 66.58995359834944, + 12.590782470967923 + ], + [ + 65.85066832376208, + 11.867350911459308 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.85066832376208, + 11.867350911459308 + ], + [ + 66.58995359834944, + 12.590782470967923 + ], + [ + 66.58995359834944, + 11.867350911459308 + ], + [ + 65.85066832376208, + 11.867350911459308 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.85066832376208, + 12.590782470967923 + ], + [ + 65.85066832376208, + 13.314214030476538 + ], + [ + 66.58995359834944, + 12.590782470967923 + ], + [ + 65.85066832376208, + 12.590782470967923 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.85066832376208, + 13.314214030476538 + ], + [ + 66.58995359834944, + 13.314214030476538 + ], + [ + 66.58995359834944, + 12.590782470967923 + ], + [ + 65.85066832376208, + 13.314214030476538 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.85066832376208, + 13.314214030476538 + ], + [ + 65.85066832376208, + 14.037645589985154 + ], + [ + 66.58995359834944, + 14.037645589985154 + ], + [ + 65.85066832376208, + 13.314214030476538 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.85066832376208, + 13.314214030476538 + ], + [ + 66.58995359834944, + 14.037645589985154 + ], + [ + 66.58995359834944, + 13.314214030476538 + ], + [ + 65.85066832376208, + 13.314214030476538 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.85066832376208, + 14.037645589985154 + ], + [ + 65.85066832376208, + 14.761077149493769 + ], + [ + 66.58995359834944, + 14.037645589985154 + ], + [ + 65.85066832376208, + 14.037645589985154 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.85066832376208, + 14.761077149493769 + ], + [ + 66.58995359834944, + 14.761077149493769 + ], + [ + 66.58995359834944, + 14.037645589985154 + ], + [ + 65.85066832376208, + 14.761077149493769 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.85066832376208, + 14.761077149493769 + ], + [ + 65.85066832376208, + 15.484508709002384 + ], + [ + 66.58995359834944, + 15.484508709002384 + ], + [ + 65.85066832376208, + 14.761077149493769 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.85066832376208, + 14.761077149493769 + ], + [ + 66.58995359834944, + 15.484508709002384 + ], + [ + 66.58995359834944, + 14.761077149493769 + ], + [ + 65.85066832376208, + 14.761077149493769 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.85066832376208, + 15.484508709002384 + ], + [ + 65.85066832376208, + 16.207940268511 + ], + [ + 66.58995359834944, + 15.484508709002384 + ], + [ + 65.85066832376208, + 15.484508709002384 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.85066832376208, + 16.207940268511 + ], + [ + 66.58995359834944, + 16.207940268511 + ], + [ + 66.58995359834944, + 15.484508709002384 + ], + [ + 65.85066832376208, + 16.207940268511 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.85066832376208, + 16.207940268511 + ], + [ + 65.85066832376208, + 16.931371828019614 + ], + [ + 66.58995359834944, + 16.931371828019614 + ], + [ + 65.85066832376208, + 16.207940268511 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.85066832376208, + 16.207940268511 + ], + [ + 66.58995359834944, + 16.931371828019614 + ], + [ + 66.58995359834944, + 16.207940268511 + ], + [ + 65.85066832376208, + 16.207940268511 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.85066832376208, + 16.931371828019614 + ], + [ + 65.85066832376208, + 17.65480338752823 + ], + [ + 66.58995359834944, + 16.931371828019614 + ], + [ + 65.85066832376208, + 16.931371828019614 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.85066832376208, + 17.65480338752823 + ], + [ + 66.58995359834944, + 17.65480338752823 + ], + [ + 66.58995359834944, + 16.931371828019614 + ], + [ + 65.85066832376208, + 17.65480338752823 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.85066832376208, + 17.65480338752823 + ], + [ + 65.85066832376208, + 18.378234947036844 + ], + [ + 66.58995359834944, + 18.378234947036844 + ], + [ + 65.85066832376208, + 17.65480338752823 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.85066832376208, + 17.65480338752823 + ], + [ + 66.58995359834944, + 18.378234947036844 + ], + [ + 66.58995359834944, + 17.65480338752823 + ], + [ + 65.85066832376208, + 17.65480338752823 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.85066832376208, + 18.378234947036844 + ], + [ + 65.85066832376208, + 19.10166650654546 + ], + [ + 66.58995359834944, + 18.378234947036844 + ], + [ + 65.85066832376208, + 18.378234947036844 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.85066832376208, + 19.10166650654546 + ], + [ + 66.58995359834944, + 19.10166650654546 + ], + [ + 66.58995359834944, + 18.378234947036844 + ], + [ + 65.85066832376208, + 19.10166650654546 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.85066832376208, + 19.10166650654546 + ], + [ + 65.85066832376208, + 19.825098066054075 + ], + [ + 66.58995359834944, + 19.825098066054075 + ], + [ + 65.85066832376208, + 19.10166650654546 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.85066832376208, + 19.10166650654546 + ], + [ + 66.58995359834944, + 19.825098066054075 + ], + [ + 66.58995359834944, + 19.10166650654546 + ], + [ + 65.85066832376208, + 19.10166650654546 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.85066832376208, + 19.825098066054075 + ], + [ + 65.85066832376208, + 20.54852962556269 + ], + [ + 66.58995359834944, + 19.825098066054075 + ], + [ + 65.85066832376208, + 19.825098066054075 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.85066832376208, + 20.54852962556269 + ], + [ + 66.58995359834944, + 20.54852962556269 + ], + [ + 66.58995359834944, + 19.825098066054075 + ], + [ + 65.85066832376208, + 20.54852962556269 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.85066832376208, + 20.54852962556269 + ], + [ + 65.85066832376208, + 21.271961185071305 + ], + [ + 66.58995359834944, + 21.271961185071305 + ], + [ + 65.85066832376208, + 20.54852962556269 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.85066832376208, + 20.54852962556269 + ], + [ + 66.58995359834944, + 21.271961185071305 + ], + [ + 66.58995359834944, + 20.54852962556269 + ], + [ + 65.85066832376208, + 20.54852962556269 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.85066832376208, + 21.271961185071305 + ], + [ + 65.85066832376208, + 21.99539274457992 + ], + [ + 66.58995359834944, + 21.271961185071305 + ], + [ + 65.85066832376208, + 21.271961185071305 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.85066832376208, + 21.99539274457992 + ], + [ + 66.58995359834944, + 21.99539274457992 + ], + [ + 66.58995359834944, + 21.271961185071305 + ], + [ + 65.85066832376208, + 21.99539274457992 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.85066832376208, + 21.99539274457992 + ], + [ + 65.85066832376208, + 22.718824304088535 + ], + [ + 66.58995359834944, + 22.718824304088535 + ], + [ + 65.85066832376208, + 21.99539274457992 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.85066832376208, + 21.99539274457992 + ], + [ + 66.58995359834944, + 22.718824304088535 + ], + [ + 66.58995359834944, + 21.99539274457992 + ], + [ + 65.85066832376208, + 21.99539274457992 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.85066832376208, + 22.718824304088535 + ], + [ + 65.85066832376208, + 23.44225586359715 + ], + [ + 66.58995359834944, + 22.718824304088535 + ], + [ + 65.85066832376208, + 22.718824304088535 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.85066832376208, + 23.44225586359715 + ], + [ + 66.58995359834944, + 23.44225586359715 + ], + [ + 66.58995359834944, + 22.718824304088535 + ], + [ + 65.85066832376208, + 23.44225586359715 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.85066832376208, + 23.44225586359715 + ], + [ + 65.85066832376208, + 24.165687423105766 + ], + [ + 66.58995359834944, + 24.165687423105766 + ], + [ + 65.85066832376208, + 23.44225586359715 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.85066832376208, + 23.44225586359715 + ], + [ + 66.58995359834944, + 24.165687423105766 + ], + [ + 66.58995359834944, + 23.44225586359715 + ], + [ + 65.85066832376208, + 23.44225586359715 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.85066832376208, + 24.165687423105766 + ], + [ + 65.85066832376208, + 24.88911898261438 + ], + [ + 66.58995359834944, + 24.165687423105766 + ], + [ + 65.85066832376208, + 24.165687423105766 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.85066832376208, + 24.88911898261438 + ], + [ + 66.58995359834944, + 24.88911898261438 + ], + [ + 66.58995359834944, + 24.165687423105766 + ], + [ + 65.85066832376208, + 24.88911898261438 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.85066832376208, + 24.88911898261438 + ], + [ + 65.85066832376208, + 25.612550542122996 + ], + [ + 66.58995359834944, + 25.612550542122996 + ], + [ + 65.85066832376208, + 24.88911898261438 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.85066832376208, + 24.88911898261438 + ], + [ + 66.58995359834944, + 25.612550542122996 + ], + [ + 66.58995359834944, + 24.88911898261438 + ], + [ + 65.85066832376208, + 24.88911898261438 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.85066832376208, + 25.612550542122996 + ], + [ + 65.85066832376208, + 26.33598210163161 + ], + [ + 66.58995359834944, + 25.612550542122996 + ], + [ + 65.85066832376208, + 25.612550542122996 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.85066832376208, + 26.33598210163161 + ], + [ + 66.58995359834944, + 26.33598210163161 + ], + [ + 66.58995359834944, + 25.612550542122996 + ], + [ + 65.85066832376208, + 26.33598210163161 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.85066832376208, + 26.33598210163161 + ], + [ + 65.85066832376208, + 27.059413661140226 + ], + [ + 66.58995359834944, + 27.059413661140226 + ], + [ + 65.85066832376208, + 26.33598210163161 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.85066832376208, + 26.33598210163161 + ], + [ + 66.58995359834944, + 27.059413661140226 + ], + [ + 66.58995359834944, + 26.33598210163161 + ], + [ + 65.85066832376208, + 26.33598210163161 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.85066832376208, + 27.059413661140226 + ], + [ + 65.85066832376208, + 27.78284522064884 + ], + [ + 66.58995359834944, + 27.059413661140226 + ], + [ + 65.85066832376208, + 27.059413661140226 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.85066832376208, + 27.78284522064884 + ], + [ + 66.58995359834944, + 27.78284522064884 + ], + [ + 66.58995359834944, + 27.059413661140226 + ], + [ + 65.85066832376208, + 27.78284522064884 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.85066832376208, + 27.78284522064884 + ], + [ + 65.85066832376208, + 28.506276780157457 + ], + [ + 66.58995359834944, + 28.506276780157457 + ], + [ + 65.85066832376208, + 27.78284522064884 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.85066832376208, + 27.78284522064884 + ], + [ + 66.58995359834944, + 28.506276780157457 + ], + [ + 66.58995359834944, + 27.78284522064884 + ], + [ + 65.85066832376208, + 27.78284522064884 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.85066832376208, + 28.506276780157457 + ], + [ + 65.85066832376208, + 29.22970833966607 + ], + [ + 66.58995359834944, + 28.506276780157457 + ], + [ + 65.85066832376208, + 28.506276780157457 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.85066832376208, + 29.22970833966607 + ], + [ + 66.58995359834944, + 29.22970833966607 + ], + [ + 66.58995359834944, + 28.506276780157457 + ], + [ + 65.85066832376208, + 29.22970833966607 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.85066832376208, + 29.22970833966607 + ], + [ + 65.85066832376208, + 29.953139899174687 + ], + [ + 66.58995359834944, + 29.953139899174687 + ], + [ + 65.85066832376208, + 29.22970833966607 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.85066832376208, + 29.22970833966607 + ], + [ + 66.58995359834944, + 29.953139899174687 + ], + [ + 66.58995359834944, + 29.22970833966607 + ], + [ + 65.85066832376208, + 29.22970833966607 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.85066832376208, + 29.953139899174687 + ], + [ + 65.85066832376208, + 30.676571458683302 + ], + [ + 66.58995359834944, + 29.953139899174687 + ], + [ + 65.85066832376208, + 29.953139899174687 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.85066832376208, + 30.676571458683302 + ], + [ + 66.58995359834944, + 30.676571458683302 + ], + [ + 66.58995359834944, + 29.953139899174687 + ], + [ + 65.85066832376208, + 30.676571458683302 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.85066832376208, + 30.676571458683302 + ], + [ + 65.85066832376208, + 31.400003018191917 + ], + [ + 66.58995359834944, + 31.400003018191917 + ], + [ + 65.85066832376208, + 30.676571458683302 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.85066832376208, + 30.676571458683302 + ], + [ + 66.58995359834944, + 31.400003018191917 + ], + [ + 66.58995359834944, + 30.676571458683302 + ], + [ + 65.85066832376208, + 30.676571458683302 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.85066832376208, + 31.400003018191917 + ], + [ + 65.85066832376208, + 32.123434577700536 + ], + [ + 66.58995359834944, + 31.400003018191917 + ], + [ + 65.85066832376208, + 31.400003018191917 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.85066832376208, + 32.123434577700536 + ], + [ + 66.58995359834944, + 32.123434577700536 + ], + [ + 66.58995359834944, + 31.400003018191917 + ], + [ + 65.85066832376208, + 32.123434577700536 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.85066832376208, + 32.123434577700536 + ], + [ + 65.85066832376208, + 32.84686613720915 + ], + [ + 66.58995359834944, + 32.84686613720915 + ], + [ + 65.85066832376208, + 32.123434577700536 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.85066832376208, + 32.123434577700536 + ], + [ + 66.58995359834944, + 32.84686613720915 + ], + [ + 66.58995359834944, + 32.123434577700536 + ], + [ + 65.85066832376208, + 32.123434577700536 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.85066832376208, + 32.84686613720915 + ], + [ + 65.85066832376208, + 33.57029769671776 + ], + [ + 66.58995359834944, + 32.84686613720915 + ], + [ + 65.85066832376208, + 32.84686613720915 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.85066832376208, + 33.57029769671776 + ], + [ + 66.58995359834944, + 33.57029769671776 + ], + [ + 66.58995359834944, + 32.84686613720915 + ], + [ + 65.85066832376208, + 33.57029769671776 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.85066832376208, + 33.57029769671776 + ], + [ + 65.85066832376208, + 34.29372925622637 + ], + [ + 66.58995359834944, + 34.29372925622637 + ], + [ + 65.85066832376208, + 33.57029769671776 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.85066832376208, + 33.57029769671776 + ], + [ + 66.58995359834944, + 34.29372925622637 + ], + [ + 66.58995359834944, + 33.57029769671776 + ], + [ + 65.85066832376208, + 33.57029769671776 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.85066832376208, + 34.29372925622637 + ], + [ + 65.85066832376208, + 35.01716081573498 + ], + [ + 66.58995359834944, + 34.29372925622637 + ], + [ + 65.85066832376208, + 34.29372925622637 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.85066832376208, + 35.01716081573498 + ], + [ + 66.58995359834944, + 35.01716081573498 + ], + [ + 66.58995359834944, + 34.29372925622637 + ], + [ + 65.85066832376208, + 35.01716081573498 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.85066832376208, + 35.01716081573498 + ], + [ + 65.85066832376208, + 35.740592375243594 + ], + [ + 66.58995359834944, + 35.740592375243594 + ], + [ + 65.85066832376208, + 35.01716081573498 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.85066832376208, + 35.01716081573498 + ], + [ + 66.58995359834944, + 35.740592375243594 + ], + [ + 66.58995359834944, + 35.01716081573498 + ], + [ + 65.85066832376208, + 35.01716081573498 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.85066832376208, + 35.740592375243594 + ], + [ + 65.85066832376208, + 36.464023934752205 + ], + [ + 66.58995359834944, + 35.740592375243594 + ], + [ + 65.85066832376208, + 35.740592375243594 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.85066832376208, + 36.464023934752205 + ], + [ + 66.58995359834944, + 36.464023934752205 + ], + [ + 66.58995359834944, + 35.740592375243594 + ], + [ + 65.85066832376208, + 36.464023934752205 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.85066832376208, + 36.464023934752205 + ], + [ + 65.85066832376208, + 37.18745549426082 + ], + [ + 66.58995359834944, + 37.18745549426082 + ], + [ + 65.85066832376208, + 36.464023934752205 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.85066832376208, + 36.464023934752205 + ], + [ + 66.58995359834944, + 37.18745549426082 + ], + [ + 66.58995359834944, + 36.464023934752205 + ], + [ + 65.85066832376208, + 36.464023934752205 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.85066832376208, + 37.18745549426082 + ], + [ + 65.85066832376208, + 37.91088705376943 + ], + [ + 66.58995359834944, + 37.18745549426082 + ], + [ + 65.85066832376208, + 37.18745549426082 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.85066832376208, + 37.91088705376943 + ], + [ + 66.58995359834944, + 37.91088705376943 + ], + [ + 66.58995359834944, + 37.18745549426082 + ], + [ + 65.85066832376208, + 37.91088705376943 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.85066832376208, + 37.91088705376943 + ], + [ + 65.85066832376208, + 38.63431861327804 + ], + [ + 66.58995359834944, + 38.63431861327804 + ], + [ + 65.85066832376208, + 37.91088705376943 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.85066832376208, + 37.91088705376943 + ], + [ + 66.58995359834944, + 38.63431861327804 + ], + [ + 66.58995359834944, + 37.91088705376943 + ], + [ + 65.85066832376208, + 37.91088705376943 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.85066832376208, + 38.63431861327804 + ], + [ + 65.85066832376208, + 39.35775017278665 + ], + [ + 66.58995359834944, + 38.63431861327804 + ], + [ + 65.85066832376208, + 38.63431861327804 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.85066832376208, + 39.35775017278665 + ], + [ + 66.58995359834944, + 39.35775017278665 + ], + [ + 66.58995359834944, + 38.63431861327804 + ], + [ + 65.85066832376208, + 39.35775017278665 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.85066832376208, + 39.35775017278665 + ], + [ + 65.85066832376208, + 40.08118173229526 + ], + [ + 66.58995359834944, + 40.08118173229526 + ], + [ + 65.85066832376208, + 39.35775017278665 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.85066832376208, + 39.35775017278665 + ], + [ + 66.58995359834944, + 40.08118173229526 + ], + [ + 66.58995359834944, + 39.35775017278665 + ], + [ + 65.85066832376208, + 39.35775017278665 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.85066832376208, + 40.08118173229526 + ], + [ + 65.85066832376208, + 40.804613291803875 + ], + [ + 66.58995359834944, + 40.08118173229526 + ], + [ + 65.85066832376208, + 40.08118173229526 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.85066832376208, + 40.804613291803875 + ], + [ + 66.58995359834944, + 40.804613291803875 + ], + [ + 66.58995359834944, + 40.08118173229526 + ], + [ + 65.85066832376208, + 40.804613291803875 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.85066832376208, + 40.804613291803875 + ], + [ + 65.85066832376208, + 41.52804485131249 + ], + [ + 66.58995359834944, + 41.52804485131249 + ], + [ + 65.85066832376208, + 40.804613291803875 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.85066832376208, + 40.804613291803875 + ], + [ + 66.58995359834944, + 41.52804485131249 + ], + [ + 66.58995359834944, + 40.804613291803875 + ], + [ + 65.85066832376208, + 40.804613291803875 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.85066832376208, + 41.52804485131249 + ], + [ + 65.85066832376208, + 42.2514764108211 + ], + [ + 66.58995359834944, + 41.52804485131249 + ], + [ + 65.85066832376208, + 41.52804485131249 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.85066832376208, + 42.2514764108211 + ], + [ + 66.58995359834944, + 42.2514764108211 + ], + [ + 66.58995359834944, + 41.52804485131249 + ], + [ + 65.85066832376208, + 42.2514764108211 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.85066832376208, + 42.2514764108211 + ], + [ + 65.85066832376208, + 42.97490797032971 + ], + [ + 66.58995359834944, + 42.97490797032971 + ], + [ + 65.85066832376208, + 42.2514764108211 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.85066832376208, + 42.2514764108211 + ], + [ + 66.58995359834944, + 42.97490797032971 + ], + [ + 66.58995359834944, + 42.2514764108211 + ], + [ + 65.85066832376208, + 42.2514764108211 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.85066832376208, + 42.97490797032971 + ], + [ + 65.85066832376208, + 43.69833952983832 + ], + [ + 66.58995359834944, + 42.97490797032971 + ], + [ + 65.85066832376208, + 42.97490797032971 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.85066832376208, + 43.69833952983832 + ], + [ + 66.58995359834944, + 43.69833952983832 + ], + [ + 66.58995359834944, + 42.97490797032971 + ], + [ + 65.85066832376208, + 43.69833952983832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.85066832376208, + 43.69833952983832 + ], + [ + 65.85066832376208, + 44.42177108934693 + ], + [ + 66.58995359834944, + 44.42177108934693 + ], + [ + 65.85066832376208, + 43.69833952983832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.85066832376208, + 43.69833952983832 + ], + [ + 66.58995359834944, + 44.42177108934693 + ], + [ + 66.58995359834944, + 43.69833952983832 + ], + [ + 65.85066832376208, + 43.69833952983832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.85066832376208, + 44.42177108934693 + ], + [ + 65.85066832376208, + 45.145202648855545 + ], + [ + 66.58995359834944, + 44.42177108934693 + ], + [ + 65.85066832376208, + 44.42177108934693 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.85066832376208, + 45.145202648855545 + ], + [ + 66.58995359834944, + 45.145202648855545 + ], + [ + 66.58995359834944, + 44.42177108934693 + ], + [ + 65.85066832376208, + 45.145202648855545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.85066832376208, + 45.145202648855545 + ], + [ + 65.85066832376208, + 45.868634208364156 + ], + [ + 66.58995359834944, + 45.868634208364156 + ], + [ + 65.85066832376208, + 45.145202648855545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.85066832376208, + 45.145202648855545 + ], + [ + 66.58995359834944, + 45.868634208364156 + ], + [ + 66.58995359834944, + 45.145202648855545 + ], + [ + 65.85066832376208, + 45.145202648855545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.85066832376208, + 45.868634208364156 + ], + [ + 65.85066832376208, + 46.59206576787277 + ], + [ + 66.58995359834944, + 45.868634208364156 + ], + [ + 65.85066832376208, + 45.868634208364156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.85066832376208, + 46.59206576787277 + ], + [ + 66.58995359834944, + 46.59206576787277 + ], + [ + 66.58995359834944, + 45.868634208364156 + ], + [ + 65.85066832376208, + 46.59206576787277 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.85066832376208, + 46.59206576787277 + ], + [ + 65.85066832376208, + 47.31549732738138 + ], + [ + 66.58995359834944, + 47.31549732738138 + ], + [ + 65.85066832376208, + 46.59206576787277 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.85066832376208, + 46.59206576787277 + ], + [ + 66.58995359834944, + 47.31549732738138 + ], + [ + 66.58995359834944, + 46.59206576787277 + ], + [ + 65.85066832376208, + 46.59206576787277 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.85066832376208, + 47.31549732738138 + ], + [ + 65.85066832376208, + 48.03892888688999 + ], + [ + 66.58995359834944, + 47.31549732738138 + ], + [ + 65.85066832376208, + 47.31549732738138 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 65.85066832376208, + 48.03892888688999 + ], + [ + 66.58995359834944, + 48.03892888688999 + ], + [ + 66.58995359834944, + 47.31549732738138 + ], + [ + 65.85066832376208, + 48.03892888688999 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.58995359834944, + 11.867350911459308 + ], + [ + 66.58995359834944, + 12.590782470967923 + ], + [ + 67.3292388729368, + 11.867350911459308 + ], + [ + 66.58995359834944, + 11.867350911459308 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.58995359834944, + 12.590782470967923 + ], + [ + 67.3292388729368, + 12.590782470967923 + ], + [ + 67.3292388729368, + 11.867350911459308 + ], + [ + 66.58995359834944, + 12.590782470967923 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.58995359834944, + 12.590782470967923 + ], + [ + 67.3292388729368, + 13.314214030476538 + ], + [ + 67.3292388729368, + 12.590782470967923 + ], + [ + 66.58995359834944, + 12.590782470967923 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.58995359834944, + 12.590782470967923 + ], + [ + 66.58995359834944, + 13.314214030476538 + ], + [ + 67.3292388729368, + 13.314214030476538 + ], + [ + 66.58995359834944, + 12.590782470967923 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.58995359834944, + 13.314214030476538 + ], + [ + 66.58995359834944, + 14.037645589985154 + ], + [ + 67.3292388729368, + 13.314214030476538 + ], + [ + 66.58995359834944, + 13.314214030476538 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.58995359834944, + 14.037645589985154 + ], + [ + 67.3292388729368, + 14.037645589985154 + ], + [ + 67.3292388729368, + 13.314214030476538 + ], + [ + 66.58995359834944, + 14.037645589985154 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.58995359834944, + 14.037645589985154 + ], + [ + 67.3292388729368, + 14.761077149493769 + ], + [ + 67.3292388729368, + 14.037645589985154 + ], + [ + 66.58995359834944, + 14.037645589985154 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.58995359834944, + 14.037645589985154 + ], + [ + 66.58995359834944, + 14.761077149493769 + ], + [ + 67.3292388729368, + 14.761077149493769 + ], + [ + 66.58995359834944, + 14.037645589985154 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.58995359834944, + 14.761077149493769 + ], + [ + 66.58995359834944, + 15.484508709002384 + ], + [ + 67.3292388729368, + 14.761077149493769 + ], + [ + 66.58995359834944, + 14.761077149493769 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.58995359834944, + 15.484508709002384 + ], + [ + 67.3292388729368, + 15.484508709002384 + ], + [ + 67.3292388729368, + 14.761077149493769 + ], + [ + 66.58995359834944, + 15.484508709002384 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.58995359834944, + 15.484508709002384 + ], + [ + 67.3292388729368, + 16.207940268511 + ], + [ + 67.3292388729368, + 15.484508709002384 + ], + [ + 66.58995359834944, + 15.484508709002384 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.58995359834944, + 15.484508709002384 + ], + [ + 66.58995359834944, + 16.207940268511 + ], + [ + 67.3292388729368, + 16.207940268511 + ], + [ + 66.58995359834944, + 15.484508709002384 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.58995359834944, + 16.207940268511 + ], + [ + 66.58995359834944, + 16.931371828019614 + ], + [ + 67.3292388729368, + 16.207940268511 + ], + [ + 66.58995359834944, + 16.207940268511 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.58995359834944, + 16.931371828019614 + ], + [ + 67.3292388729368, + 16.931371828019614 + ], + [ + 67.3292388729368, + 16.207940268511 + ], + [ + 66.58995359834944, + 16.931371828019614 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.58995359834944, + 16.931371828019614 + ], + [ + 67.3292388729368, + 17.65480338752823 + ], + [ + 67.3292388729368, + 16.931371828019614 + ], + [ + 66.58995359834944, + 16.931371828019614 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.58995359834944, + 16.931371828019614 + ], + [ + 66.58995359834944, + 17.65480338752823 + ], + [ + 67.3292388729368, + 17.65480338752823 + ], + [ + 66.58995359834944, + 16.931371828019614 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.58995359834944, + 17.65480338752823 + ], + [ + 66.58995359834944, + 18.378234947036844 + ], + [ + 67.3292388729368, + 17.65480338752823 + ], + [ + 66.58995359834944, + 17.65480338752823 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.58995359834944, + 18.378234947036844 + ], + [ + 67.3292388729368, + 18.378234947036844 + ], + [ + 67.3292388729368, + 17.65480338752823 + ], + [ + 66.58995359834944, + 18.378234947036844 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.58995359834944, + 18.378234947036844 + ], + [ + 67.3292388729368, + 19.10166650654546 + ], + [ + 67.3292388729368, + 18.378234947036844 + ], + [ + 66.58995359834944, + 18.378234947036844 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.58995359834944, + 18.378234947036844 + ], + [ + 66.58995359834944, + 19.10166650654546 + ], + [ + 67.3292388729368, + 19.10166650654546 + ], + [ + 66.58995359834944, + 18.378234947036844 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.58995359834944, + 19.10166650654546 + ], + [ + 66.58995359834944, + 19.825098066054075 + ], + [ + 67.3292388729368, + 19.10166650654546 + ], + [ + 66.58995359834944, + 19.10166650654546 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.58995359834944, + 19.825098066054075 + ], + [ + 67.3292388729368, + 19.825098066054075 + ], + [ + 67.3292388729368, + 19.10166650654546 + ], + [ + 66.58995359834944, + 19.825098066054075 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.58995359834944, + 19.825098066054075 + ], + [ + 67.3292388729368, + 20.54852962556269 + ], + [ + 67.3292388729368, + 19.825098066054075 + ], + [ + 66.58995359834944, + 19.825098066054075 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.58995359834944, + 19.825098066054075 + ], + [ + 66.58995359834944, + 20.54852962556269 + ], + [ + 67.3292388729368, + 20.54852962556269 + ], + [ + 66.58995359834944, + 19.825098066054075 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.58995359834944, + 20.54852962556269 + ], + [ + 66.58995359834944, + 21.271961185071305 + ], + [ + 67.3292388729368, + 20.54852962556269 + ], + [ + 66.58995359834944, + 20.54852962556269 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.58995359834944, + 21.271961185071305 + ], + [ + 67.3292388729368, + 21.271961185071305 + ], + [ + 67.3292388729368, + 20.54852962556269 + ], + [ + 66.58995359834944, + 21.271961185071305 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.58995359834944, + 21.271961185071305 + ], + [ + 67.3292388729368, + 21.99539274457992 + ], + [ + 67.3292388729368, + 21.271961185071305 + ], + [ + 66.58995359834944, + 21.271961185071305 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.58995359834944, + 21.271961185071305 + ], + [ + 66.58995359834944, + 21.99539274457992 + ], + [ + 67.3292388729368, + 21.99539274457992 + ], + [ + 66.58995359834944, + 21.271961185071305 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.58995359834944, + 21.99539274457992 + ], + [ + 66.58995359834944, + 22.718824304088535 + ], + [ + 67.3292388729368, + 21.99539274457992 + ], + [ + 66.58995359834944, + 21.99539274457992 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.58995359834944, + 22.718824304088535 + ], + [ + 67.3292388729368, + 22.718824304088535 + ], + [ + 67.3292388729368, + 21.99539274457992 + ], + [ + 66.58995359834944, + 22.718824304088535 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.58995359834944, + 22.718824304088535 + ], + [ + 67.3292388729368, + 23.44225586359715 + ], + [ + 67.3292388729368, + 22.718824304088535 + ], + [ + 66.58995359834944, + 22.718824304088535 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.58995359834944, + 22.718824304088535 + ], + [ + 66.58995359834944, + 23.44225586359715 + ], + [ + 67.3292388729368, + 23.44225586359715 + ], + [ + 66.58995359834944, + 22.718824304088535 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.58995359834944, + 23.44225586359715 + ], + [ + 66.58995359834944, + 24.165687423105766 + ], + [ + 67.3292388729368, + 23.44225586359715 + ], + [ + 66.58995359834944, + 23.44225586359715 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.58995359834944, + 24.165687423105766 + ], + [ + 67.3292388729368, + 24.165687423105766 + ], + [ + 67.3292388729368, + 23.44225586359715 + ], + [ + 66.58995359834944, + 24.165687423105766 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.58995359834944, + 24.165687423105766 + ], + [ + 67.3292388729368, + 24.88911898261438 + ], + [ + 67.3292388729368, + 24.165687423105766 + ], + [ + 66.58995359834944, + 24.165687423105766 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.58995359834944, + 24.165687423105766 + ], + [ + 66.58995359834944, + 24.88911898261438 + ], + [ + 67.3292388729368, + 24.88911898261438 + ], + [ + 66.58995359834944, + 24.165687423105766 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.58995359834944, + 24.88911898261438 + ], + [ + 66.58995359834944, + 25.612550542122996 + ], + [ + 67.3292388729368, + 24.88911898261438 + ], + [ + 66.58995359834944, + 24.88911898261438 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.58995359834944, + 25.612550542122996 + ], + [ + 67.3292388729368, + 25.612550542122996 + ], + [ + 67.3292388729368, + 24.88911898261438 + ], + [ + 66.58995359834944, + 25.612550542122996 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.58995359834944, + 25.612550542122996 + ], + [ + 67.3292388729368, + 26.33598210163161 + ], + [ + 67.3292388729368, + 25.612550542122996 + ], + [ + 66.58995359834944, + 25.612550542122996 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.58995359834944, + 25.612550542122996 + ], + [ + 66.58995359834944, + 26.33598210163161 + ], + [ + 67.3292388729368, + 26.33598210163161 + ], + [ + 66.58995359834944, + 25.612550542122996 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.58995359834944, + 26.33598210163161 + ], + [ + 66.58995359834944, + 27.059413661140226 + ], + [ + 67.3292388729368, + 26.33598210163161 + ], + [ + 66.58995359834944, + 26.33598210163161 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.58995359834944, + 27.059413661140226 + ], + [ + 67.3292388729368, + 27.059413661140226 + ], + [ + 67.3292388729368, + 26.33598210163161 + ], + [ + 66.58995359834944, + 27.059413661140226 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.58995359834944, + 27.059413661140226 + ], + [ + 67.3292388729368, + 27.78284522064884 + ], + [ + 67.3292388729368, + 27.059413661140226 + ], + [ + 66.58995359834944, + 27.059413661140226 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.58995359834944, + 27.059413661140226 + ], + [ + 66.58995359834944, + 27.78284522064884 + ], + [ + 67.3292388729368, + 27.78284522064884 + ], + [ + 66.58995359834944, + 27.059413661140226 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.58995359834944, + 27.78284522064884 + ], + [ + 66.58995359834944, + 28.506276780157457 + ], + [ + 67.3292388729368, + 27.78284522064884 + ], + [ + 66.58995359834944, + 27.78284522064884 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.58995359834944, + 28.506276780157457 + ], + [ + 67.3292388729368, + 28.506276780157457 + ], + [ + 67.3292388729368, + 27.78284522064884 + ], + [ + 66.58995359834944, + 28.506276780157457 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.58995359834944, + 28.506276780157457 + ], + [ + 67.3292388729368, + 29.22970833966607 + ], + [ + 67.3292388729368, + 28.506276780157457 + ], + [ + 66.58995359834944, + 28.506276780157457 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.58995359834944, + 28.506276780157457 + ], + [ + 66.58995359834944, + 29.22970833966607 + ], + [ + 67.3292388729368, + 29.22970833966607 + ], + [ + 66.58995359834944, + 28.506276780157457 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.58995359834944, + 29.22970833966607 + ], + [ + 66.58995359834944, + 29.953139899174687 + ], + [ + 67.3292388729368, + 29.22970833966607 + ], + [ + 66.58995359834944, + 29.22970833966607 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.58995359834944, + 29.953139899174687 + ], + [ + 67.3292388729368, + 29.953139899174687 + ], + [ + 67.3292388729368, + 29.22970833966607 + ], + [ + 66.58995359834944, + 29.953139899174687 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.58995359834944, + 29.953139899174687 + ], + [ + 67.3292388729368, + 30.676571458683302 + ], + [ + 67.3292388729368, + 29.953139899174687 + ], + [ + 66.58995359834944, + 29.953139899174687 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.58995359834944, + 29.953139899174687 + ], + [ + 66.58995359834944, + 30.676571458683302 + ], + [ + 67.3292388729368, + 30.676571458683302 + ], + [ + 66.58995359834944, + 29.953139899174687 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.58995359834944, + 30.676571458683302 + ], + [ + 66.58995359834944, + 31.400003018191917 + ], + [ + 67.3292388729368, + 30.676571458683302 + ], + [ + 66.58995359834944, + 30.676571458683302 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.58995359834944, + 31.400003018191917 + ], + [ + 67.3292388729368, + 31.400003018191917 + ], + [ + 67.3292388729368, + 30.676571458683302 + ], + [ + 66.58995359834944, + 31.400003018191917 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.58995359834944, + 31.400003018191917 + ], + [ + 67.3292388729368, + 32.123434577700536 + ], + [ + 67.3292388729368, + 31.400003018191917 + ], + [ + 66.58995359834944, + 31.400003018191917 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.58995359834944, + 31.400003018191917 + ], + [ + 66.58995359834944, + 32.123434577700536 + ], + [ + 67.3292388729368, + 32.123434577700536 + ], + [ + 66.58995359834944, + 31.400003018191917 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.58995359834944, + 32.123434577700536 + ], + [ + 66.58995359834944, + 32.84686613720915 + ], + [ + 67.3292388729368, + 32.123434577700536 + ], + [ + 66.58995359834944, + 32.123434577700536 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.58995359834944, + 32.84686613720915 + ], + [ + 67.3292388729368, + 32.84686613720915 + ], + [ + 67.3292388729368, + 32.123434577700536 + ], + [ + 66.58995359834944, + 32.84686613720915 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.58995359834944, + 32.84686613720915 + ], + [ + 67.3292388729368, + 33.57029769671776 + ], + [ + 67.3292388729368, + 32.84686613720915 + ], + [ + 66.58995359834944, + 32.84686613720915 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.58995359834944, + 32.84686613720915 + ], + [ + 66.58995359834944, + 33.57029769671776 + ], + [ + 67.3292388729368, + 33.57029769671776 + ], + [ + 66.58995359834944, + 32.84686613720915 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.58995359834944, + 33.57029769671776 + ], + [ + 66.58995359834944, + 34.29372925622637 + ], + [ + 67.3292388729368, + 33.57029769671776 + ], + [ + 66.58995359834944, + 33.57029769671776 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.58995359834944, + 34.29372925622637 + ], + [ + 67.3292388729368, + 34.29372925622637 + ], + [ + 67.3292388729368, + 33.57029769671776 + ], + [ + 66.58995359834944, + 34.29372925622637 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.58995359834944, + 34.29372925622637 + ], + [ + 67.3292388729368, + 35.01716081573498 + ], + [ + 67.3292388729368, + 34.29372925622637 + ], + [ + 66.58995359834944, + 34.29372925622637 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.58995359834944, + 34.29372925622637 + ], + [ + 66.58995359834944, + 35.01716081573498 + ], + [ + 67.3292388729368, + 35.01716081573498 + ], + [ + 66.58995359834944, + 34.29372925622637 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.58995359834944, + 35.01716081573498 + ], + [ + 66.58995359834944, + 35.740592375243594 + ], + [ + 67.3292388729368, + 35.01716081573498 + ], + [ + 66.58995359834944, + 35.01716081573498 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.58995359834944, + 35.740592375243594 + ], + [ + 67.3292388729368, + 35.740592375243594 + ], + [ + 67.3292388729368, + 35.01716081573498 + ], + [ + 66.58995359834944, + 35.740592375243594 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.58995359834944, + 35.740592375243594 + ], + [ + 67.3292388729368, + 36.464023934752205 + ], + [ + 67.3292388729368, + 35.740592375243594 + ], + [ + 66.58995359834944, + 35.740592375243594 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.58995359834944, + 35.740592375243594 + ], + [ + 66.58995359834944, + 36.464023934752205 + ], + [ + 67.3292388729368, + 36.464023934752205 + ], + [ + 66.58995359834944, + 35.740592375243594 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.58995359834944, + 36.464023934752205 + ], + [ + 66.58995359834944, + 37.18745549426082 + ], + [ + 67.3292388729368, + 36.464023934752205 + ], + [ + 66.58995359834944, + 36.464023934752205 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.58995359834944, + 37.18745549426082 + ], + [ + 67.3292388729368, + 37.18745549426082 + ], + [ + 67.3292388729368, + 36.464023934752205 + ], + [ + 66.58995359834944, + 37.18745549426082 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.58995359834944, + 37.18745549426082 + ], + [ + 67.3292388729368, + 37.91088705376943 + ], + [ + 67.3292388729368, + 37.18745549426082 + ], + [ + 66.58995359834944, + 37.18745549426082 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.58995359834944, + 37.18745549426082 + ], + [ + 66.58995359834944, + 37.91088705376943 + ], + [ + 67.3292388729368, + 37.91088705376943 + ], + [ + 66.58995359834944, + 37.18745549426082 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.58995359834944, + 37.91088705376943 + ], + [ + 66.58995359834944, + 38.63431861327804 + ], + [ + 67.3292388729368, + 37.91088705376943 + ], + [ + 66.58995359834944, + 37.91088705376943 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.58995359834944, + 38.63431861327804 + ], + [ + 67.3292388729368, + 38.63431861327804 + ], + [ + 67.3292388729368, + 37.91088705376943 + ], + [ + 66.58995359834944, + 38.63431861327804 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.58995359834944, + 38.63431861327804 + ], + [ + 67.3292388729368, + 39.35775017278665 + ], + [ + 67.3292388729368, + 38.63431861327804 + ], + [ + 66.58995359834944, + 38.63431861327804 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.58995359834944, + 38.63431861327804 + ], + [ + 66.58995359834944, + 39.35775017278665 + ], + [ + 67.3292388729368, + 39.35775017278665 + ], + [ + 66.58995359834944, + 38.63431861327804 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.58995359834944, + 39.35775017278665 + ], + [ + 66.58995359834944, + 40.08118173229526 + ], + [ + 67.3292388729368, + 39.35775017278665 + ], + [ + 66.58995359834944, + 39.35775017278665 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.58995359834944, + 40.08118173229526 + ], + [ + 67.3292388729368, + 40.08118173229526 + ], + [ + 67.3292388729368, + 39.35775017278665 + ], + [ + 66.58995359834944, + 40.08118173229526 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.58995359834944, + 40.08118173229526 + ], + [ + 67.3292388729368, + 40.804613291803875 + ], + [ + 67.3292388729368, + 40.08118173229526 + ], + [ + 66.58995359834944, + 40.08118173229526 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.58995359834944, + 40.08118173229526 + ], + [ + 66.58995359834944, + 40.804613291803875 + ], + [ + 67.3292388729368, + 40.804613291803875 + ], + [ + 66.58995359834944, + 40.08118173229526 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.58995359834944, + 40.804613291803875 + ], + [ + 66.58995359834944, + 41.52804485131249 + ], + [ + 67.3292388729368, + 40.804613291803875 + ], + [ + 66.58995359834944, + 40.804613291803875 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.58995359834944, + 41.52804485131249 + ], + [ + 67.3292388729368, + 41.52804485131249 + ], + [ + 67.3292388729368, + 40.804613291803875 + ], + [ + 66.58995359834944, + 41.52804485131249 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.58995359834944, + 41.52804485131249 + ], + [ + 67.3292388729368, + 42.2514764108211 + ], + [ + 67.3292388729368, + 41.52804485131249 + ], + [ + 66.58995359834944, + 41.52804485131249 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.58995359834944, + 41.52804485131249 + ], + [ + 66.58995359834944, + 42.2514764108211 + ], + [ + 67.3292388729368, + 42.2514764108211 + ], + [ + 66.58995359834944, + 41.52804485131249 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.58995359834944, + 42.2514764108211 + ], + [ + 66.58995359834944, + 42.97490797032971 + ], + [ + 67.3292388729368, + 42.2514764108211 + ], + [ + 66.58995359834944, + 42.2514764108211 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.58995359834944, + 42.97490797032971 + ], + [ + 67.3292388729368, + 42.97490797032971 + ], + [ + 67.3292388729368, + 42.2514764108211 + ], + [ + 66.58995359834944, + 42.97490797032971 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.58995359834944, + 42.97490797032971 + ], + [ + 67.3292388729368, + 43.69833952983832 + ], + [ + 67.3292388729368, + 42.97490797032971 + ], + [ + 66.58995359834944, + 42.97490797032971 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.58995359834944, + 42.97490797032971 + ], + [ + 66.58995359834944, + 43.69833952983832 + ], + [ + 67.3292388729368, + 43.69833952983832 + ], + [ + 66.58995359834944, + 42.97490797032971 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.58995359834944, + 43.69833952983832 + ], + [ + 66.58995359834944, + 44.42177108934693 + ], + [ + 67.3292388729368, + 43.69833952983832 + ], + [ + 66.58995359834944, + 43.69833952983832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.58995359834944, + 44.42177108934693 + ], + [ + 67.3292388729368, + 44.42177108934693 + ], + [ + 67.3292388729368, + 43.69833952983832 + ], + [ + 66.58995359834944, + 44.42177108934693 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.58995359834944, + 44.42177108934693 + ], + [ + 67.3292388729368, + 45.145202648855545 + ], + [ + 67.3292388729368, + 44.42177108934693 + ], + [ + 66.58995359834944, + 44.42177108934693 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.58995359834944, + 44.42177108934693 + ], + [ + 66.58995359834944, + 45.145202648855545 + ], + [ + 67.3292388729368, + 45.145202648855545 + ], + [ + 66.58995359834944, + 44.42177108934693 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.58995359834944, + 45.145202648855545 + ], + [ + 66.58995359834944, + 45.868634208364156 + ], + [ + 67.3292388729368, + 45.145202648855545 + ], + [ + 66.58995359834944, + 45.145202648855545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.58995359834944, + 45.868634208364156 + ], + [ + 67.3292388729368, + 45.868634208364156 + ], + [ + 67.3292388729368, + 45.145202648855545 + ], + [ + 66.58995359834944, + 45.868634208364156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.58995359834944, + 45.868634208364156 + ], + [ + 67.3292388729368, + 46.59206576787277 + ], + [ + 67.3292388729368, + 45.868634208364156 + ], + [ + 66.58995359834944, + 45.868634208364156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.58995359834944, + 45.868634208364156 + ], + [ + 66.58995359834944, + 46.59206576787277 + ], + [ + 67.3292388729368, + 46.59206576787277 + ], + [ + 66.58995359834944, + 45.868634208364156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.58995359834944, + 46.59206576787277 + ], + [ + 66.58995359834944, + 47.31549732738138 + ], + [ + 67.3292388729368, + 46.59206576787277 + ], + [ + 66.58995359834944, + 46.59206576787277 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.58995359834944, + 47.31549732738138 + ], + [ + 67.3292388729368, + 47.31549732738138 + ], + [ + 67.3292388729368, + 46.59206576787277 + ], + [ + 66.58995359834944, + 47.31549732738138 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.58995359834944, + 47.31549732738138 + ], + [ + 67.3292388729368, + 48.03892888688999 + ], + [ + 67.3292388729368, + 47.31549732738138 + ], + [ + 66.58995359834944, + 47.31549732738138 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 66.58995359834944, + 47.31549732738138 + ], + [ + 66.58995359834944, + 48.03892888688999 + ], + [ + 67.3292388729368, + 48.03892888688999 + ], + [ + 66.58995359834944, + 47.31549732738138 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.3292388729368, + 11.867350911459308 + ], + [ + 67.3292388729368, + 12.590782470967923 + ], + [ + 68.06852414752416, + 12.590782470967923 + ], + [ + 67.3292388729368, + 11.867350911459308 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.3292388729368, + 11.867350911459308 + ], + [ + 68.06852414752416, + 12.590782470967923 + ], + [ + 68.06852414752416, + 11.867350911459308 + ], + [ + 67.3292388729368, + 11.867350911459308 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.3292388729368, + 12.590782470967923 + ], + [ + 67.3292388729368, + 13.314214030476538 + ], + [ + 68.06852414752416, + 12.590782470967923 + ], + [ + 67.3292388729368, + 12.590782470967923 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.3292388729368, + 13.314214030476538 + ], + [ + 68.06852414752416, + 13.314214030476538 + ], + [ + 68.06852414752416, + 12.590782470967923 + ], + [ + 67.3292388729368, + 13.314214030476538 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.3292388729368, + 13.314214030476538 + ], + [ + 67.3292388729368, + 14.037645589985154 + ], + [ + 68.06852414752416, + 14.037645589985154 + ], + [ + 67.3292388729368, + 13.314214030476538 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.3292388729368, + 13.314214030476538 + ], + [ + 68.06852414752416, + 14.037645589985154 + ], + [ + 68.06852414752416, + 13.314214030476538 + ], + [ + 67.3292388729368, + 13.314214030476538 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.3292388729368, + 14.037645589985154 + ], + [ + 67.3292388729368, + 14.761077149493769 + ], + [ + 68.06852414752416, + 14.037645589985154 + ], + [ + 67.3292388729368, + 14.037645589985154 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.3292388729368, + 14.761077149493769 + ], + [ + 68.06852414752416, + 14.761077149493769 + ], + [ + 68.06852414752416, + 14.037645589985154 + ], + [ + 67.3292388729368, + 14.761077149493769 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.3292388729368, + 14.761077149493769 + ], + [ + 67.3292388729368, + 15.484508709002384 + ], + [ + 68.06852414752416, + 15.484508709002384 + ], + [ + 67.3292388729368, + 14.761077149493769 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.3292388729368, + 14.761077149493769 + ], + [ + 68.06852414752416, + 15.484508709002384 + ], + [ + 68.06852414752416, + 14.761077149493769 + ], + [ + 67.3292388729368, + 14.761077149493769 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.3292388729368, + 15.484508709002384 + ], + [ + 67.3292388729368, + 16.207940268511 + ], + [ + 68.06852414752416, + 15.484508709002384 + ], + [ + 67.3292388729368, + 15.484508709002384 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.3292388729368, + 16.207940268511 + ], + [ + 68.06852414752416, + 16.207940268511 + ], + [ + 68.06852414752416, + 15.484508709002384 + ], + [ + 67.3292388729368, + 16.207940268511 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.3292388729368, + 16.207940268511 + ], + [ + 67.3292388729368, + 16.931371828019614 + ], + [ + 68.06852414752416, + 16.931371828019614 + ], + [ + 67.3292388729368, + 16.207940268511 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.3292388729368, + 16.207940268511 + ], + [ + 68.06852414752416, + 16.931371828019614 + ], + [ + 68.06852414752416, + 16.207940268511 + ], + [ + 67.3292388729368, + 16.207940268511 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.3292388729368, + 16.931371828019614 + ], + [ + 67.3292388729368, + 17.65480338752823 + ], + [ + 68.06852414752416, + 16.931371828019614 + ], + [ + 67.3292388729368, + 16.931371828019614 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.3292388729368, + 17.65480338752823 + ], + [ + 68.06852414752416, + 17.65480338752823 + ], + [ + 68.06852414752416, + 16.931371828019614 + ], + [ + 67.3292388729368, + 17.65480338752823 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.3292388729368, + 17.65480338752823 + ], + [ + 67.3292388729368, + 18.378234947036844 + ], + [ + 68.06852414752416, + 18.378234947036844 + ], + [ + 67.3292388729368, + 17.65480338752823 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.3292388729368, + 17.65480338752823 + ], + [ + 68.06852414752416, + 18.378234947036844 + ], + [ + 68.06852414752416, + 17.65480338752823 + ], + [ + 67.3292388729368, + 17.65480338752823 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.3292388729368, + 18.378234947036844 + ], + [ + 67.3292388729368, + 19.10166650654546 + ], + [ + 68.06852414752416, + 18.378234947036844 + ], + [ + 67.3292388729368, + 18.378234947036844 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.3292388729368, + 19.10166650654546 + ], + [ + 68.06852414752416, + 19.10166650654546 + ], + [ + 68.06852414752416, + 18.378234947036844 + ], + [ + 67.3292388729368, + 19.10166650654546 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.3292388729368, + 19.10166650654546 + ], + [ + 67.3292388729368, + 19.825098066054075 + ], + [ + 68.06852414752416, + 19.825098066054075 + ], + [ + 67.3292388729368, + 19.10166650654546 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.3292388729368, + 19.10166650654546 + ], + [ + 68.06852414752416, + 19.825098066054075 + ], + [ + 68.06852414752416, + 19.10166650654546 + ], + [ + 67.3292388729368, + 19.10166650654546 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.3292388729368, + 19.825098066054075 + ], + [ + 67.3292388729368, + 20.54852962556269 + ], + [ + 68.06852414752416, + 19.825098066054075 + ], + [ + 67.3292388729368, + 19.825098066054075 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.3292388729368, + 20.54852962556269 + ], + [ + 68.06852414752416, + 20.54852962556269 + ], + [ + 68.06852414752416, + 19.825098066054075 + ], + [ + 67.3292388729368, + 20.54852962556269 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.3292388729368, + 20.54852962556269 + ], + [ + 67.3292388729368, + 21.271961185071305 + ], + [ + 68.06852414752416, + 21.271961185071305 + ], + [ + 67.3292388729368, + 20.54852962556269 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.3292388729368, + 20.54852962556269 + ], + [ + 68.06852414752416, + 21.271961185071305 + ], + [ + 68.06852414752416, + 20.54852962556269 + ], + [ + 67.3292388729368, + 20.54852962556269 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.3292388729368, + 21.271961185071305 + ], + [ + 67.3292388729368, + 21.99539274457992 + ], + [ + 68.06852414752416, + 21.271961185071305 + ], + [ + 67.3292388729368, + 21.271961185071305 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.3292388729368, + 21.99539274457992 + ], + [ + 68.06852414752416, + 21.99539274457992 + ], + [ + 68.06852414752416, + 21.271961185071305 + ], + [ + 67.3292388729368, + 21.99539274457992 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.3292388729368, + 21.99539274457992 + ], + [ + 67.3292388729368, + 22.718824304088535 + ], + [ + 68.06852414752416, + 22.718824304088535 + ], + [ + 67.3292388729368, + 21.99539274457992 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.3292388729368, + 21.99539274457992 + ], + [ + 68.06852414752416, + 22.718824304088535 + ], + [ + 68.06852414752416, + 21.99539274457992 + ], + [ + 67.3292388729368, + 21.99539274457992 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.3292388729368, + 22.718824304088535 + ], + [ + 67.3292388729368, + 23.44225586359715 + ], + [ + 68.06852414752416, + 22.718824304088535 + ], + [ + 67.3292388729368, + 22.718824304088535 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.3292388729368, + 23.44225586359715 + ], + [ + 68.06852414752416, + 23.44225586359715 + ], + [ + 68.06852414752416, + 22.718824304088535 + ], + [ + 67.3292388729368, + 23.44225586359715 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.3292388729368, + 23.44225586359715 + ], + [ + 67.3292388729368, + 24.165687423105766 + ], + [ + 68.06852414752416, + 24.165687423105766 + ], + [ + 67.3292388729368, + 23.44225586359715 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.3292388729368, + 23.44225586359715 + ], + [ + 68.06852414752416, + 24.165687423105766 + ], + [ + 68.06852414752416, + 23.44225586359715 + ], + [ + 67.3292388729368, + 23.44225586359715 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.3292388729368, + 24.165687423105766 + ], + [ + 67.3292388729368, + 24.88911898261438 + ], + [ + 68.06852414752416, + 24.165687423105766 + ], + [ + 67.3292388729368, + 24.165687423105766 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.3292388729368, + 24.88911898261438 + ], + [ + 68.06852414752416, + 24.88911898261438 + ], + [ + 68.06852414752416, + 24.165687423105766 + ], + [ + 67.3292388729368, + 24.88911898261438 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.3292388729368, + 24.88911898261438 + ], + [ + 67.3292388729368, + 25.612550542122996 + ], + [ + 68.06852414752416, + 25.612550542122996 + ], + [ + 67.3292388729368, + 24.88911898261438 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.3292388729368, + 24.88911898261438 + ], + [ + 68.06852414752416, + 25.612550542122996 + ], + [ + 68.06852414752416, + 24.88911898261438 + ], + [ + 67.3292388729368, + 24.88911898261438 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.3292388729368, + 25.612550542122996 + ], + [ + 67.3292388729368, + 26.33598210163161 + ], + [ + 68.06852414752416, + 25.612550542122996 + ], + [ + 67.3292388729368, + 25.612550542122996 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.3292388729368, + 26.33598210163161 + ], + [ + 68.06852414752416, + 26.33598210163161 + ], + [ + 68.06852414752416, + 25.612550542122996 + ], + [ + 67.3292388729368, + 26.33598210163161 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.3292388729368, + 26.33598210163161 + ], + [ + 67.3292388729368, + 27.059413661140226 + ], + [ + 68.06852414752416, + 27.059413661140226 + ], + [ + 67.3292388729368, + 26.33598210163161 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.3292388729368, + 26.33598210163161 + ], + [ + 68.06852414752416, + 27.059413661140226 + ], + [ + 68.06852414752416, + 26.33598210163161 + ], + [ + 67.3292388729368, + 26.33598210163161 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.3292388729368, + 27.059413661140226 + ], + [ + 67.3292388729368, + 27.78284522064884 + ], + [ + 68.06852414752416, + 27.059413661140226 + ], + [ + 67.3292388729368, + 27.059413661140226 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.3292388729368, + 27.78284522064884 + ], + [ + 68.06852414752416, + 27.78284522064884 + ], + [ + 68.06852414752416, + 27.059413661140226 + ], + [ + 67.3292388729368, + 27.78284522064884 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.3292388729368, + 27.78284522064884 + ], + [ + 67.3292388729368, + 28.506276780157457 + ], + [ + 68.06852414752416, + 28.506276780157457 + ], + [ + 67.3292388729368, + 27.78284522064884 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.3292388729368, + 27.78284522064884 + ], + [ + 68.06852414752416, + 28.506276780157457 + ], + [ + 68.06852414752416, + 27.78284522064884 + ], + [ + 67.3292388729368, + 27.78284522064884 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.3292388729368, + 28.506276780157457 + ], + [ + 67.3292388729368, + 29.22970833966607 + ], + [ + 68.06852414752416, + 28.506276780157457 + ], + [ + 67.3292388729368, + 28.506276780157457 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.3292388729368, + 29.22970833966607 + ], + [ + 68.06852414752416, + 29.22970833966607 + ], + [ + 68.06852414752416, + 28.506276780157457 + ], + [ + 67.3292388729368, + 29.22970833966607 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.3292388729368, + 29.22970833966607 + ], + [ + 67.3292388729368, + 29.953139899174687 + ], + [ + 68.06852414752416, + 29.953139899174687 + ], + [ + 67.3292388729368, + 29.22970833966607 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.3292388729368, + 29.22970833966607 + ], + [ + 68.06852414752416, + 29.953139899174687 + ], + [ + 68.06852414752416, + 29.22970833966607 + ], + [ + 67.3292388729368, + 29.22970833966607 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.3292388729368, + 29.953139899174687 + ], + [ + 67.3292388729368, + 30.676571458683302 + ], + [ + 68.06852414752416, + 29.953139899174687 + ], + [ + 67.3292388729368, + 29.953139899174687 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.3292388729368, + 30.676571458683302 + ], + [ + 68.06852414752416, + 30.676571458683302 + ], + [ + 68.06852414752416, + 29.953139899174687 + ], + [ + 67.3292388729368, + 30.676571458683302 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.3292388729368, + 30.676571458683302 + ], + [ + 67.3292388729368, + 31.400003018191917 + ], + [ + 68.06852414752416, + 31.400003018191917 + ], + [ + 67.3292388729368, + 30.676571458683302 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.3292388729368, + 30.676571458683302 + ], + [ + 68.06852414752416, + 31.400003018191917 + ], + [ + 68.06852414752416, + 30.676571458683302 + ], + [ + 67.3292388729368, + 30.676571458683302 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.3292388729368, + 31.400003018191917 + ], + [ + 67.3292388729368, + 32.123434577700536 + ], + [ + 68.06852414752416, + 31.400003018191917 + ], + [ + 67.3292388729368, + 31.400003018191917 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.3292388729368, + 32.123434577700536 + ], + [ + 68.06852414752416, + 32.123434577700536 + ], + [ + 68.06852414752416, + 31.400003018191917 + ], + [ + 67.3292388729368, + 32.123434577700536 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.3292388729368, + 32.123434577700536 + ], + [ + 67.3292388729368, + 32.84686613720915 + ], + [ + 68.06852414752416, + 32.84686613720915 + ], + [ + 67.3292388729368, + 32.123434577700536 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.3292388729368, + 32.123434577700536 + ], + [ + 68.06852414752416, + 32.84686613720915 + ], + [ + 68.06852414752416, + 32.123434577700536 + ], + [ + 67.3292388729368, + 32.123434577700536 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.3292388729368, + 32.84686613720915 + ], + [ + 67.3292388729368, + 33.57029769671776 + ], + [ + 68.06852414752416, + 32.84686613720915 + ], + [ + 67.3292388729368, + 32.84686613720915 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.3292388729368, + 33.57029769671776 + ], + [ + 68.06852414752416, + 33.57029769671776 + ], + [ + 68.06852414752416, + 32.84686613720915 + ], + [ + 67.3292388729368, + 33.57029769671776 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.3292388729368, + 33.57029769671776 + ], + [ + 67.3292388729368, + 34.29372925622637 + ], + [ + 68.06852414752416, + 34.29372925622637 + ], + [ + 67.3292388729368, + 33.57029769671776 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.3292388729368, + 33.57029769671776 + ], + [ + 68.06852414752416, + 34.29372925622637 + ], + [ + 68.06852414752416, + 33.57029769671776 + ], + [ + 67.3292388729368, + 33.57029769671776 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.3292388729368, + 34.29372925622637 + ], + [ + 67.3292388729368, + 35.01716081573498 + ], + [ + 68.06852414752416, + 34.29372925622637 + ], + [ + 67.3292388729368, + 34.29372925622637 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.3292388729368, + 35.01716081573498 + ], + [ + 68.06852414752416, + 35.01716081573498 + ], + [ + 68.06852414752416, + 34.29372925622637 + ], + [ + 67.3292388729368, + 35.01716081573498 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.3292388729368, + 35.01716081573498 + ], + [ + 67.3292388729368, + 35.740592375243594 + ], + [ + 68.06852414752416, + 35.740592375243594 + ], + [ + 67.3292388729368, + 35.01716081573498 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.3292388729368, + 35.01716081573498 + ], + [ + 68.06852414752416, + 35.740592375243594 + ], + [ + 68.06852414752416, + 35.01716081573498 + ], + [ + 67.3292388729368, + 35.01716081573498 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.3292388729368, + 35.740592375243594 + ], + [ + 67.3292388729368, + 36.464023934752205 + ], + [ + 68.06852414752416, + 35.740592375243594 + ], + [ + 67.3292388729368, + 35.740592375243594 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.3292388729368, + 36.464023934752205 + ], + [ + 68.06852414752416, + 36.464023934752205 + ], + [ + 68.06852414752416, + 35.740592375243594 + ], + [ + 67.3292388729368, + 36.464023934752205 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.3292388729368, + 36.464023934752205 + ], + [ + 67.3292388729368, + 37.18745549426082 + ], + [ + 68.06852414752416, + 37.18745549426082 + ], + [ + 67.3292388729368, + 36.464023934752205 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.3292388729368, + 36.464023934752205 + ], + [ + 68.06852414752416, + 37.18745549426082 + ], + [ + 68.06852414752416, + 36.464023934752205 + ], + [ + 67.3292388729368, + 36.464023934752205 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.3292388729368, + 37.18745549426082 + ], + [ + 67.3292388729368, + 37.91088705376943 + ], + [ + 68.06852414752416, + 37.18745549426082 + ], + [ + 67.3292388729368, + 37.18745549426082 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.3292388729368, + 37.91088705376943 + ], + [ + 68.06852414752416, + 37.91088705376943 + ], + [ + 68.06852414752416, + 37.18745549426082 + ], + [ + 67.3292388729368, + 37.91088705376943 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.3292388729368, + 37.91088705376943 + ], + [ + 67.3292388729368, + 38.63431861327804 + ], + [ + 68.06852414752416, + 38.63431861327804 + ], + [ + 67.3292388729368, + 37.91088705376943 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.3292388729368, + 37.91088705376943 + ], + [ + 68.06852414752416, + 38.63431861327804 + ], + [ + 68.06852414752416, + 37.91088705376943 + ], + [ + 67.3292388729368, + 37.91088705376943 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.3292388729368, + 38.63431861327804 + ], + [ + 67.3292388729368, + 39.35775017278665 + ], + [ + 68.06852414752416, + 38.63431861327804 + ], + [ + 67.3292388729368, + 38.63431861327804 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.3292388729368, + 39.35775017278665 + ], + [ + 68.06852414752416, + 39.35775017278665 + ], + [ + 68.06852414752416, + 38.63431861327804 + ], + [ + 67.3292388729368, + 39.35775017278665 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.3292388729368, + 39.35775017278665 + ], + [ + 67.3292388729368, + 40.08118173229526 + ], + [ + 68.06852414752416, + 40.08118173229526 + ], + [ + 67.3292388729368, + 39.35775017278665 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.3292388729368, + 39.35775017278665 + ], + [ + 68.06852414752416, + 40.08118173229526 + ], + [ + 68.06852414752416, + 39.35775017278665 + ], + [ + 67.3292388729368, + 39.35775017278665 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.3292388729368, + 40.08118173229526 + ], + [ + 67.3292388729368, + 40.804613291803875 + ], + [ + 68.06852414752416, + 40.08118173229526 + ], + [ + 67.3292388729368, + 40.08118173229526 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.3292388729368, + 40.804613291803875 + ], + [ + 68.06852414752416, + 40.804613291803875 + ], + [ + 68.06852414752416, + 40.08118173229526 + ], + [ + 67.3292388729368, + 40.804613291803875 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.3292388729368, + 40.804613291803875 + ], + [ + 67.3292388729368, + 41.52804485131249 + ], + [ + 68.06852414752416, + 41.52804485131249 + ], + [ + 67.3292388729368, + 40.804613291803875 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.3292388729368, + 40.804613291803875 + ], + [ + 68.06852414752416, + 41.52804485131249 + ], + [ + 68.06852414752416, + 40.804613291803875 + ], + [ + 67.3292388729368, + 40.804613291803875 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.3292388729368, + 41.52804485131249 + ], + [ + 67.3292388729368, + 42.2514764108211 + ], + [ + 68.06852414752416, + 41.52804485131249 + ], + [ + 67.3292388729368, + 41.52804485131249 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.3292388729368, + 42.2514764108211 + ], + [ + 68.06852414752416, + 42.2514764108211 + ], + [ + 68.06852414752416, + 41.52804485131249 + ], + [ + 67.3292388729368, + 42.2514764108211 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.3292388729368, + 42.2514764108211 + ], + [ + 67.3292388729368, + 42.97490797032971 + ], + [ + 68.06852414752416, + 42.97490797032971 + ], + [ + 67.3292388729368, + 42.2514764108211 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.3292388729368, + 42.2514764108211 + ], + [ + 68.06852414752416, + 42.97490797032971 + ], + [ + 68.06852414752416, + 42.2514764108211 + ], + [ + 67.3292388729368, + 42.2514764108211 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.3292388729368, + 42.97490797032971 + ], + [ + 67.3292388729368, + 43.69833952983832 + ], + [ + 68.06852414752416, + 42.97490797032971 + ], + [ + 67.3292388729368, + 42.97490797032971 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.3292388729368, + 43.69833952983832 + ], + [ + 68.06852414752416, + 43.69833952983832 + ], + [ + 68.06852414752416, + 42.97490797032971 + ], + [ + 67.3292388729368, + 43.69833952983832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.3292388729368, + 43.69833952983832 + ], + [ + 67.3292388729368, + 44.42177108934693 + ], + [ + 68.06852414752416, + 44.42177108934693 + ], + [ + 67.3292388729368, + 43.69833952983832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.3292388729368, + 43.69833952983832 + ], + [ + 68.06852414752416, + 44.42177108934693 + ], + [ + 68.06852414752416, + 43.69833952983832 + ], + [ + 67.3292388729368, + 43.69833952983832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.3292388729368, + 44.42177108934693 + ], + [ + 67.3292388729368, + 45.145202648855545 + ], + [ + 68.06852414752416, + 44.42177108934693 + ], + [ + 67.3292388729368, + 44.42177108934693 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.3292388729368, + 45.145202648855545 + ], + [ + 68.06852414752416, + 45.145202648855545 + ], + [ + 68.06852414752416, + 44.42177108934693 + ], + [ + 67.3292388729368, + 45.145202648855545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.3292388729368, + 45.145202648855545 + ], + [ + 67.3292388729368, + 45.868634208364156 + ], + [ + 68.06852414752416, + 45.868634208364156 + ], + [ + 67.3292388729368, + 45.145202648855545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.3292388729368, + 45.145202648855545 + ], + [ + 68.06852414752416, + 45.868634208364156 + ], + [ + 68.06852414752416, + 45.145202648855545 + ], + [ + 67.3292388729368, + 45.145202648855545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.3292388729368, + 45.868634208364156 + ], + [ + 67.3292388729368, + 46.59206576787277 + ], + [ + 68.06852414752416, + 45.868634208364156 + ], + [ + 67.3292388729368, + 45.868634208364156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.3292388729368, + 46.59206576787277 + ], + [ + 68.06852414752416, + 46.59206576787277 + ], + [ + 68.06852414752416, + 45.868634208364156 + ], + [ + 67.3292388729368, + 46.59206576787277 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.3292388729368, + 46.59206576787277 + ], + [ + 67.3292388729368, + 47.31549732738138 + ], + [ + 68.06852414752416, + 47.31549732738138 + ], + [ + 67.3292388729368, + 46.59206576787277 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.3292388729368, + 46.59206576787277 + ], + [ + 68.06852414752416, + 47.31549732738138 + ], + [ + 68.06852414752416, + 46.59206576787277 + ], + [ + 67.3292388729368, + 46.59206576787277 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.3292388729368, + 47.31549732738138 + ], + [ + 67.3292388729368, + 48.03892888688999 + ], + [ + 68.06852414752416, + 47.31549732738138 + ], + [ + 67.3292388729368, + 47.31549732738138 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 67.3292388729368, + 48.03892888688999 + ], + [ + 68.06852414752416, + 48.03892888688999 + ], + [ + 68.06852414752416, + 47.31549732738138 + ], + [ + 67.3292388729368, + 48.03892888688999 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.06852414752416, + 11.867350911459308 + ], + [ + 68.06852414752416, + 12.590782470967923 + ], + [ + 68.80780942211152, + 11.867350911459308 + ], + [ + 68.06852414752416, + 11.867350911459308 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.06852414752416, + 12.590782470967923 + ], + [ + 68.80780942211152, + 12.590782470967923 + ], + [ + 68.80780942211152, + 11.867350911459308 + ], + [ + 68.06852414752416, + 12.590782470967923 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.06852414752416, + 12.590782470967923 + ], + [ + 68.80780942211152, + 13.314214030476538 + ], + [ + 68.80780942211152, + 12.590782470967923 + ], + [ + 68.06852414752416, + 12.590782470967923 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.06852414752416, + 12.590782470967923 + ], + [ + 68.06852414752416, + 13.314214030476538 + ], + [ + 68.80780942211152, + 13.314214030476538 + ], + [ + 68.06852414752416, + 12.590782470967923 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.06852414752416, + 13.314214030476538 + ], + [ + 68.06852414752416, + 14.037645589985154 + ], + [ + 68.80780942211152, + 13.314214030476538 + ], + [ + 68.06852414752416, + 13.314214030476538 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.06852414752416, + 14.037645589985154 + ], + [ + 68.80780942211152, + 14.037645589985154 + ], + [ + 68.80780942211152, + 13.314214030476538 + ], + [ + 68.06852414752416, + 14.037645589985154 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.06852414752416, + 14.037645589985154 + ], + [ + 68.80780942211152, + 14.761077149493769 + ], + [ + 68.80780942211152, + 14.037645589985154 + ], + [ + 68.06852414752416, + 14.037645589985154 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.06852414752416, + 14.037645589985154 + ], + [ + 68.06852414752416, + 14.761077149493769 + ], + [ + 68.80780942211152, + 14.761077149493769 + ], + [ + 68.06852414752416, + 14.037645589985154 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.06852414752416, + 14.761077149493769 + ], + [ + 68.06852414752416, + 15.484508709002384 + ], + [ + 68.80780942211152, + 14.761077149493769 + ], + [ + 68.06852414752416, + 14.761077149493769 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.06852414752416, + 15.484508709002384 + ], + [ + 68.80780942211152, + 15.484508709002384 + ], + [ + 68.80780942211152, + 14.761077149493769 + ], + [ + 68.06852414752416, + 15.484508709002384 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.06852414752416, + 15.484508709002384 + ], + [ + 68.80780942211152, + 16.207940268511 + ], + [ + 68.80780942211152, + 15.484508709002384 + ], + [ + 68.06852414752416, + 15.484508709002384 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.06852414752416, + 15.484508709002384 + ], + [ + 68.06852414752416, + 16.207940268511 + ], + [ + 68.80780942211152, + 16.207940268511 + ], + [ + 68.06852414752416, + 15.484508709002384 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.06852414752416, + 16.207940268511 + ], + [ + 68.06852414752416, + 16.931371828019614 + ], + [ + 68.80780942211152, + 16.207940268511 + ], + [ + 68.06852414752416, + 16.207940268511 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.06852414752416, + 16.931371828019614 + ], + [ + 68.80780942211152, + 16.931371828019614 + ], + [ + 68.80780942211152, + 16.207940268511 + ], + [ + 68.06852414752416, + 16.931371828019614 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.06852414752416, + 16.931371828019614 + ], + [ + 68.80780942211152, + 17.65480338752823 + ], + [ + 68.80780942211152, + 16.931371828019614 + ], + [ + 68.06852414752416, + 16.931371828019614 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.06852414752416, + 16.931371828019614 + ], + [ + 68.06852414752416, + 17.65480338752823 + ], + [ + 68.80780942211152, + 17.65480338752823 + ], + [ + 68.06852414752416, + 16.931371828019614 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.06852414752416, + 17.65480338752823 + ], + [ + 68.06852414752416, + 18.378234947036844 + ], + [ + 68.80780942211152, + 17.65480338752823 + ], + [ + 68.06852414752416, + 17.65480338752823 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.06852414752416, + 18.378234947036844 + ], + [ + 68.80780942211152, + 18.378234947036844 + ], + [ + 68.80780942211152, + 17.65480338752823 + ], + [ + 68.06852414752416, + 18.378234947036844 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.06852414752416, + 18.378234947036844 + ], + [ + 68.80780942211152, + 19.10166650654546 + ], + [ + 68.80780942211152, + 18.378234947036844 + ], + [ + 68.06852414752416, + 18.378234947036844 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.06852414752416, + 18.378234947036844 + ], + [ + 68.06852414752416, + 19.10166650654546 + ], + [ + 68.80780942211152, + 19.10166650654546 + ], + [ + 68.06852414752416, + 18.378234947036844 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.06852414752416, + 19.10166650654546 + ], + [ + 68.06852414752416, + 19.825098066054075 + ], + [ + 68.80780942211152, + 19.10166650654546 + ], + [ + 68.06852414752416, + 19.10166650654546 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.06852414752416, + 19.825098066054075 + ], + [ + 68.80780942211152, + 19.825098066054075 + ], + [ + 68.80780942211152, + 19.10166650654546 + ], + [ + 68.06852414752416, + 19.825098066054075 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.06852414752416, + 19.825098066054075 + ], + [ + 68.80780942211152, + 20.54852962556269 + ], + [ + 68.80780942211152, + 19.825098066054075 + ], + [ + 68.06852414752416, + 19.825098066054075 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.06852414752416, + 19.825098066054075 + ], + [ + 68.06852414752416, + 20.54852962556269 + ], + [ + 68.80780942211152, + 20.54852962556269 + ], + [ + 68.06852414752416, + 19.825098066054075 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.06852414752416, + 20.54852962556269 + ], + [ + 68.06852414752416, + 21.271961185071305 + ], + [ + 68.80780942211152, + 20.54852962556269 + ], + [ + 68.06852414752416, + 20.54852962556269 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.06852414752416, + 21.271961185071305 + ], + [ + 68.80780942211152, + 21.271961185071305 + ], + [ + 68.80780942211152, + 20.54852962556269 + ], + [ + 68.06852414752416, + 21.271961185071305 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.06852414752416, + 21.271961185071305 + ], + [ + 68.80780942211152, + 21.99539274457992 + ], + [ + 68.80780942211152, + 21.271961185071305 + ], + [ + 68.06852414752416, + 21.271961185071305 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.06852414752416, + 21.271961185071305 + ], + [ + 68.06852414752416, + 21.99539274457992 + ], + [ + 68.80780942211152, + 21.99539274457992 + ], + [ + 68.06852414752416, + 21.271961185071305 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.06852414752416, + 21.99539274457992 + ], + [ + 68.06852414752416, + 22.718824304088535 + ], + [ + 68.80780942211152, + 21.99539274457992 + ], + [ + 68.06852414752416, + 21.99539274457992 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.06852414752416, + 22.718824304088535 + ], + [ + 68.80780942211152, + 22.718824304088535 + ], + [ + 68.80780942211152, + 21.99539274457992 + ], + [ + 68.06852414752416, + 22.718824304088535 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.06852414752416, + 22.718824304088535 + ], + [ + 68.80780942211152, + 23.44225586359715 + ], + [ + 68.80780942211152, + 22.718824304088535 + ], + [ + 68.06852414752416, + 22.718824304088535 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.06852414752416, + 22.718824304088535 + ], + [ + 68.06852414752416, + 23.44225586359715 + ], + [ + 68.80780942211152, + 23.44225586359715 + ], + [ + 68.06852414752416, + 22.718824304088535 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.06852414752416, + 23.44225586359715 + ], + [ + 68.06852414752416, + 24.165687423105766 + ], + [ + 68.80780942211152, + 23.44225586359715 + ], + [ + 68.06852414752416, + 23.44225586359715 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.06852414752416, + 24.165687423105766 + ], + [ + 68.80780942211152, + 24.165687423105766 + ], + [ + 68.80780942211152, + 23.44225586359715 + ], + [ + 68.06852414752416, + 24.165687423105766 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.06852414752416, + 24.165687423105766 + ], + [ + 68.80780942211152, + 24.88911898261438 + ], + [ + 68.80780942211152, + 24.165687423105766 + ], + [ + 68.06852414752416, + 24.165687423105766 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.06852414752416, + 24.165687423105766 + ], + [ + 68.06852414752416, + 24.88911898261438 + ], + [ + 68.80780942211152, + 24.88911898261438 + ], + [ + 68.06852414752416, + 24.165687423105766 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.06852414752416, + 24.88911898261438 + ], + [ + 68.06852414752416, + 25.612550542122996 + ], + [ + 68.80780942211152, + 24.88911898261438 + ], + [ + 68.06852414752416, + 24.88911898261438 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.06852414752416, + 25.612550542122996 + ], + [ + 68.80780942211152, + 25.612550542122996 + ], + [ + 68.80780942211152, + 24.88911898261438 + ], + [ + 68.06852414752416, + 25.612550542122996 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.06852414752416, + 25.612550542122996 + ], + [ + 68.80780942211152, + 26.33598210163161 + ], + [ + 68.80780942211152, + 25.612550542122996 + ], + [ + 68.06852414752416, + 25.612550542122996 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.06852414752416, + 25.612550542122996 + ], + [ + 68.06852414752416, + 26.33598210163161 + ], + [ + 68.80780942211152, + 26.33598210163161 + ], + [ + 68.06852414752416, + 25.612550542122996 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.06852414752416, + 26.33598210163161 + ], + [ + 68.06852414752416, + 27.059413661140226 + ], + [ + 68.80780942211152, + 26.33598210163161 + ], + [ + 68.06852414752416, + 26.33598210163161 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.06852414752416, + 27.059413661140226 + ], + [ + 68.80780942211152, + 27.059413661140226 + ], + [ + 68.80780942211152, + 26.33598210163161 + ], + [ + 68.06852414752416, + 27.059413661140226 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.06852414752416, + 27.059413661140226 + ], + [ + 68.80780942211152, + 27.78284522064884 + ], + [ + 68.80780942211152, + 27.059413661140226 + ], + [ + 68.06852414752416, + 27.059413661140226 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.06852414752416, + 27.059413661140226 + ], + [ + 68.06852414752416, + 27.78284522064884 + ], + [ + 68.80780942211152, + 27.78284522064884 + ], + [ + 68.06852414752416, + 27.059413661140226 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.06852414752416, + 27.78284522064884 + ], + [ + 68.06852414752416, + 28.506276780157457 + ], + [ + 68.80780942211152, + 27.78284522064884 + ], + [ + 68.06852414752416, + 27.78284522064884 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.06852414752416, + 28.506276780157457 + ], + [ + 68.80780942211152, + 28.506276780157457 + ], + [ + 68.80780942211152, + 27.78284522064884 + ], + [ + 68.06852414752416, + 28.506276780157457 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.06852414752416, + 28.506276780157457 + ], + [ + 68.80780942211152, + 29.22970833966607 + ], + [ + 68.80780942211152, + 28.506276780157457 + ], + [ + 68.06852414752416, + 28.506276780157457 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.06852414752416, + 28.506276780157457 + ], + [ + 68.06852414752416, + 29.22970833966607 + ], + [ + 68.80780942211152, + 29.22970833966607 + ], + [ + 68.06852414752416, + 28.506276780157457 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.06852414752416, + 29.22970833966607 + ], + [ + 68.06852414752416, + 29.953139899174687 + ], + [ + 68.80780942211152, + 29.22970833966607 + ], + [ + 68.06852414752416, + 29.22970833966607 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.06852414752416, + 29.953139899174687 + ], + [ + 68.80780942211152, + 29.953139899174687 + ], + [ + 68.80780942211152, + 29.22970833966607 + ], + [ + 68.06852414752416, + 29.953139899174687 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.06852414752416, + 29.953139899174687 + ], + [ + 68.80780942211152, + 30.676571458683302 + ], + [ + 68.80780942211152, + 29.953139899174687 + ], + [ + 68.06852414752416, + 29.953139899174687 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.06852414752416, + 29.953139899174687 + ], + [ + 68.06852414752416, + 30.676571458683302 + ], + [ + 68.80780942211152, + 30.676571458683302 + ], + [ + 68.06852414752416, + 29.953139899174687 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.06852414752416, + 30.676571458683302 + ], + [ + 68.06852414752416, + 31.400003018191917 + ], + [ + 68.80780942211152, + 30.676571458683302 + ], + [ + 68.06852414752416, + 30.676571458683302 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.06852414752416, + 31.400003018191917 + ], + [ + 68.80780942211152, + 31.400003018191917 + ], + [ + 68.80780942211152, + 30.676571458683302 + ], + [ + 68.06852414752416, + 31.400003018191917 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.06852414752416, + 31.400003018191917 + ], + [ + 68.80780942211152, + 32.123434577700536 + ], + [ + 68.80780942211152, + 31.400003018191917 + ], + [ + 68.06852414752416, + 31.400003018191917 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.06852414752416, + 31.400003018191917 + ], + [ + 68.06852414752416, + 32.123434577700536 + ], + [ + 68.80780942211152, + 32.123434577700536 + ], + [ + 68.06852414752416, + 31.400003018191917 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.06852414752416, + 32.123434577700536 + ], + [ + 68.06852414752416, + 32.84686613720915 + ], + [ + 68.80780942211152, + 32.123434577700536 + ], + [ + 68.06852414752416, + 32.123434577700536 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.06852414752416, + 32.84686613720915 + ], + [ + 68.80780942211152, + 32.84686613720915 + ], + [ + 68.80780942211152, + 32.123434577700536 + ], + [ + 68.06852414752416, + 32.84686613720915 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.06852414752416, + 32.84686613720915 + ], + [ + 68.80780942211152, + 33.57029769671776 + ], + [ + 68.80780942211152, + 32.84686613720915 + ], + [ + 68.06852414752416, + 32.84686613720915 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.06852414752416, + 32.84686613720915 + ], + [ + 68.06852414752416, + 33.57029769671776 + ], + [ + 68.80780942211152, + 33.57029769671776 + ], + [ + 68.06852414752416, + 32.84686613720915 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.06852414752416, + 33.57029769671776 + ], + [ + 68.06852414752416, + 34.29372925622637 + ], + [ + 68.80780942211152, + 33.57029769671776 + ], + [ + 68.06852414752416, + 33.57029769671776 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.06852414752416, + 34.29372925622637 + ], + [ + 68.80780942211152, + 34.29372925622637 + ], + [ + 68.80780942211152, + 33.57029769671776 + ], + [ + 68.06852414752416, + 34.29372925622637 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.06852414752416, + 34.29372925622637 + ], + [ + 68.80780942211152, + 35.01716081573498 + ], + [ + 68.80780942211152, + 34.29372925622637 + ], + [ + 68.06852414752416, + 34.29372925622637 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.06852414752416, + 34.29372925622637 + ], + [ + 68.06852414752416, + 35.01716081573498 + ], + [ + 68.80780942211152, + 35.01716081573498 + ], + [ + 68.06852414752416, + 34.29372925622637 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.06852414752416, + 35.01716081573498 + ], + [ + 68.06852414752416, + 35.740592375243594 + ], + [ + 68.80780942211152, + 35.01716081573498 + ], + [ + 68.06852414752416, + 35.01716081573498 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.06852414752416, + 35.740592375243594 + ], + [ + 68.80780942211152, + 35.740592375243594 + ], + [ + 68.80780942211152, + 35.01716081573498 + ], + [ + 68.06852414752416, + 35.740592375243594 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.06852414752416, + 35.740592375243594 + ], + [ + 68.80780942211152, + 36.464023934752205 + ], + [ + 68.80780942211152, + 35.740592375243594 + ], + [ + 68.06852414752416, + 35.740592375243594 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.06852414752416, + 35.740592375243594 + ], + [ + 68.06852414752416, + 36.464023934752205 + ], + [ + 68.80780942211152, + 36.464023934752205 + ], + [ + 68.06852414752416, + 35.740592375243594 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.06852414752416, + 36.464023934752205 + ], + [ + 68.06852414752416, + 37.18745549426082 + ], + [ + 68.80780942211152, + 36.464023934752205 + ], + [ + 68.06852414752416, + 36.464023934752205 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.06852414752416, + 37.18745549426082 + ], + [ + 68.80780942211152, + 37.18745549426082 + ], + [ + 68.80780942211152, + 36.464023934752205 + ], + [ + 68.06852414752416, + 37.18745549426082 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.06852414752416, + 37.18745549426082 + ], + [ + 68.80780942211152, + 37.91088705376943 + ], + [ + 68.80780942211152, + 37.18745549426082 + ], + [ + 68.06852414752416, + 37.18745549426082 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.06852414752416, + 37.18745549426082 + ], + [ + 68.06852414752416, + 37.91088705376943 + ], + [ + 68.80780942211152, + 37.91088705376943 + ], + [ + 68.06852414752416, + 37.18745549426082 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.06852414752416, + 37.91088705376943 + ], + [ + 68.06852414752416, + 38.63431861327804 + ], + [ + 68.80780942211152, + 37.91088705376943 + ], + [ + 68.06852414752416, + 37.91088705376943 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.06852414752416, + 38.63431861327804 + ], + [ + 68.80780942211152, + 38.63431861327804 + ], + [ + 68.80780942211152, + 37.91088705376943 + ], + [ + 68.06852414752416, + 38.63431861327804 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.06852414752416, + 38.63431861327804 + ], + [ + 68.80780942211152, + 39.35775017278665 + ], + [ + 68.80780942211152, + 38.63431861327804 + ], + [ + 68.06852414752416, + 38.63431861327804 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.06852414752416, + 38.63431861327804 + ], + [ + 68.06852414752416, + 39.35775017278665 + ], + [ + 68.80780942211152, + 39.35775017278665 + ], + [ + 68.06852414752416, + 38.63431861327804 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.06852414752416, + 39.35775017278665 + ], + [ + 68.06852414752416, + 40.08118173229526 + ], + [ + 68.80780942211152, + 39.35775017278665 + ], + [ + 68.06852414752416, + 39.35775017278665 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.06852414752416, + 40.08118173229526 + ], + [ + 68.80780942211152, + 40.08118173229526 + ], + [ + 68.80780942211152, + 39.35775017278665 + ], + [ + 68.06852414752416, + 40.08118173229526 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.06852414752416, + 40.08118173229526 + ], + [ + 68.80780942211152, + 40.804613291803875 + ], + [ + 68.80780942211152, + 40.08118173229526 + ], + [ + 68.06852414752416, + 40.08118173229526 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.06852414752416, + 40.08118173229526 + ], + [ + 68.06852414752416, + 40.804613291803875 + ], + [ + 68.80780942211152, + 40.804613291803875 + ], + [ + 68.06852414752416, + 40.08118173229526 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.06852414752416, + 40.804613291803875 + ], + [ + 68.06852414752416, + 41.52804485131249 + ], + [ + 68.80780942211152, + 40.804613291803875 + ], + [ + 68.06852414752416, + 40.804613291803875 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.06852414752416, + 41.52804485131249 + ], + [ + 68.80780942211152, + 41.52804485131249 + ], + [ + 68.80780942211152, + 40.804613291803875 + ], + [ + 68.06852414752416, + 41.52804485131249 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.06852414752416, + 41.52804485131249 + ], + [ + 68.80780942211152, + 42.2514764108211 + ], + [ + 68.80780942211152, + 41.52804485131249 + ], + [ + 68.06852414752416, + 41.52804485131249 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.06852414752416, + 41.52804485131249 + ], + [ + 68.06852414752416, + 42.2514764108211 + ], + [ + 68.80780942211152, + 42.2514764108211 + ], + [ + 68.06852414752416, + 41.52804485131249 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.06852414752416, + 42.2514764108211 + ], + [ + 68.06852414752416, + 42.97490797032971 + ], + [ + 68.80780942211152, + 42.2514764108211 + ], + [ + 68.06852414752416, + 42.2514764108211 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.06852414752416, + 42.97490797032971 + ], + [ + 68.80780942211152, + 42.97490797032971 + ], + [ + 68.80780942211152, + 42.2514764108211 + ], + [ + 68.06852414752416, + 42.97490797032971 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.06852414752416, + 42.97490797032971 + ], + [ + 68.80780942211152, + 43.69833952983832 + ], + [ + 68.80780942211152, + 42.97490797032971 + ], + [ + 68.06852414752416, + 42.97490797032971 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.06852414752416, + 42.97490797032971 + ], + [ + 68.06852414752416, + 43.69833952983832 + ], + [ + 68.80780942211152, + 43.69833952983832 + ], + [ + 68.06852414752416, + 42.97490797032971 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.06852414752416, + 43.69833952983832 + ], + [ + 68.06852414752416, + 44.42177108934693 + ], + [ + 68.80780942211152, + 43.69833952983832 + ], + [ + 68.06852414752416, + 43.69833952983832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.06852414752416, + 44.42177108934693 + ], + [ + 68.80780942211152, + 44.42177108934693 + ], + [ + 68.80780942211152, + 43.69833952983832 + ], + [ + 68.06852414752416, + 44.42177108934693 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.06852414752416, + 44.42177108934693 + ], + [ + 68.80780942211152, + 45.145202648855545 + ], + [ + 68.80780942211152, + 44.42177108934693 + ], + [ + 68.06852414752416, + 44.42177108934693 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.06852414752416, + 44.42177108934693 + ], + [ + 68.06852414752416, + 45.145202648855545 + ], + [ + 68.80780942211152, + 45.145202648855545 + ], + [ + 68.06852414752416, + 44.42177108934693 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.06852414752416, + 45.145202648855545 + ], + [ + 68.06852414752416, + 45.868634208364156 + ], + [ + 68.80780942211152, + 45.145202648855545 + ], + [ + 68.06852414752416, + 45.145202648855545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.06852414752416, + 45.868634208364156 + ], + [ + 68.80780942211152, + 45.868634208364156 + ], + [ + 68.80780942211152, + 45.145202648855545 + ], + [ + 68.06852414752416, + 45.868634208364156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.06852414752416, + 45.868634208364156 + ], + [ + 68.80780942211152, + 46.59206576787277 + ], + [ + 68.80780942211152, + 45.868634208364156 + ], + [ + 68.06852414752416, + 45.868634208364156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.06852414752416, + 45.868634208364156 + ], + [ + 68.06852414752416, + 46.59206576787277 + ], + [ + 68.80780942211152, + 46.59206576787277 + ], + [ + 68.06852414752416, + 45.868634208364156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.06852414752416, + 46.59206576787277 + ], + [ + 68.06852414752416, + 47.31549732738138 + ], + [ + 68.80780942211152, + 46.59206576787277 + ], + [ + 68.06852414752416, + 46.59206576787277 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.06852414752416, + 47.31549732738138 + ], + [ + 68.80780942211152, + 47.31549732738138 + ], + [ + 68.80780942211152, + 46.59206576787277 + ], + [ + 68.06852414752416, + 47.31549732738138 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.06852414752416, + 47.31549732738138 + ], + [ + 68.80780942211152, + 48.03892888688999 + ], + [ + 68.80780942211152, + 47.31549732738138 + ], + [ + 68.06852414752416, + 47.31549732738138 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.06852414752416, + 47.31549732738138 + ], + [ + 68.06852414752416, + 48.03892888688999 + ], + [ + 68.80780942211152, + 48.03892888688999 + ], + [ + 68.06852414752416, + 47.31549732738138 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.80780942211152, + 11.867350911459308 + ], + [ + 68.80780942211152, + 12.590782470967923 + ], + [ + 69.54709469669888, + 12.590782470967923 + ], + [ + 68.80780942211152, + 11.867350911459308 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.80780942211152, + 11.867350911459308 + ], + [ + 69.54709469669888, + 12.590782470967923 + ], + [ + 69.54709469669888, + 11.867350911459308 + ], + [ + 68.80780942211152, + 11.867350911459308 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.80780942211152, + 12.590782470967923 + ], + [ + 68.80780942211152, + 13.314214030476538 + ], + [ + 69.54709469669888, + 12.590782470967923 + ], + [ + 68.80780942211152, + 12.590782470967923 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.80780942211152, + 13.314214030476538 + ], + [ + 69.54709469669888, + 13.314214030476538 + ], + [ + 69.54709469669888, + 12.590782470967923 + ], + [ + 68.80780942211152, + 13.314214030476538 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.80780942211152, + 13.314214030476538 + ], + [ + 68.80780942211152, + 14.037645589985154 + ], + [ + 69.54709469669888, + 14.037645589985154 + ], + [ + 68.80780942211152, + 13.314214030476538 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.80780942211152, + 13.314214030476538 + ], + [ + 69.54709469669888, + 14.037645589985154 + ], + [ + 69.54709469669888, + 13.314214030476538 + ], + [ + 68.80780942211152, + 13.314214030476538 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.80780942211152, + 14.037645589985154 + ], + [ + 68.80780942211152, + 14.761077149493769 + ], + [ + 69.54709469669888, + 14.037645589985154 + ], + [ + 68.80780942211152, + 14.037645589985154 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.80780942211152, + 14.761077149493769 + ], + [ + 69.54709469669888, + 14.761077149493769 + ], + [ + 69.54709469669888, + 14.037645589985154 + ], + [ + 68.80780942211152, + 14.761077149493769 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.80780942211152, + 14.761077149493769 + ], + [ + 68.80780942211152, + 15.484508709002384 + ], + [ + 69.54709469669888, + 15.484508709002384 + ], + [ + 68.80780942211152, + 14.761077149493769 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.80780942211152, + 14.761077149493769 + ], + [ + 69.54709469669888, + 15.484508709002384 + ], + [ + 69.54709469669888, + 14.761077149493769 + ], + [ + 68.80780942211152, + 14.761077149493769 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.80780942211152, + 15.484508709002384 + ], + [ + 68.80780942211152, + 16.207940268511 + ], + [ + 69.54709469669888, + 15.484508709002384 + ], + [ + 68.80780942211152, + 15.484508709002384 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.80780942211152, + 16.207940268511 + ], + [ + 69.54709469669888, + 16.207940268511 + ], + [ + 69.54709469669888, + 15.484508709002384 + ], + [ + 68.80780942211152, + 16.207940268511 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.80780942211152, + 16.207940268511 + ], + [ + 68.80780942211152, + 16.931371828019614 + ], + [ + 69.54709469669888, + 16.931371828019614 + ], + [ + 68.80780942211152, + 16.207940268511 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.80780942211152, + 16.207940268511 + ], + [ + 69.54709469669888, + 16.931371828019614 + ], + [ + 69.54709469669888, + 16.207940268511 + ], + [ + 68.80780942211152, + 16.207940268511 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.80780942211152, + 16.931371828019614 + ], + [ + 68.80780942211152, + 17.65480338752823 + ], + [ + 69.54709469669888, + 16.931371828019614 + ], + [ + 68.80780942211152, + 16.931371828019614 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.80780942211152, + 17.65480338752823 + ], + [ + 69.54709469669888, + 17.65480338752823 + ], + [ + 69.54709469669888, + 16.931371828019614 + ], + [ + 68.80780942211152, + 17.65480338752823 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.80780942211152, + 17.65480338752823 + ], + [ + 68.80780942211152, + 18.378234947036844 + ], + [ + 69.54709469669888, + 18.378234947036844 + ], + [ + 68.80780942211152, + 17.65480338752823 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.80780942211152, + 17.65480338752823 + ], + [ + 69.54709469669888, + 18.378234947036844 + ], + [ + 69.54709469669888, + 17.65480338752823 + ], + [ + 68.80780942211152, + 17.65480338752823 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.80780942211152, + 18.378234947036844 + ], + [ + 68.80780942211152, + 19.10166650654546 + ], + [ + 69.54709469669888, + 18.378234947036844 + ], + [ + 68.80780942211152, + 18.378234947036844 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.80780942211152, + 19.10166650654546 + ], + [ + 69.54709469669888, + 19.10166650654546 + ], + [ + 69.54709469669888, + 18.378234947036844 + ], + [ + 68.80780942211152, + 19.10166650654546 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.80780942211152, + 19.10166650654546 + ], + [ + 68.80780942211152, + 19.825098066054075 + ], + [ + 69.54709469669888, + 19.825098066054075 + ], + [ + 68.80780942211152, + 19.10166650654546 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.80780942211152, + 19.10166650654546 + ], + [ + 69.54709469669888, + 19.825098066054075 + ], + [ + 69.54709469669888, + 19.10166650654546 + ], + [ + 68.80780942211152, + 19.10166650654546 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.80780942211152, + 19.825098066054075 + ], + [ + 68.80780942211152, + 20.54852962556269 + ], + [ + 69.54709469669888, + 19.825098066054075 + ], + [ + 68.80780942211152, + 19.825098066054075 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.80780942211152, + 20.54852962556269 + ], + [ + 69.54709469669888, + 20.54852962556269 + ], + [ + 69.54709469669888, + 19.825098066054075 + ], + [ + 68.80780942211152, + 20.54852962556269 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.80780942211152, + 20.54852962556269 + ], + [ + 68.80780942211152, + 21.271961185071305 + ], + [ + 69.54709469669888, + 21.271961185071305 + ], + [ + 68.80780942211152, + 20.54852962556269 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.80780942211152, + 20.54852962556269 + ], + [ + 69.54709469669888, + 21.271961185071305 + ], + [ + 69.54709469669888, + 20.54852962556269 + ], + [ + 68.80780942211152, + 20.54852962556269 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.80780942211152, + 21.271961185071305 + ], + [ + 68.80780942211152, + 21.99539274457992 + ], + [ + 69.54709469669888, + 21.271961185071305 + ], + [ + 68.80780942211152, + 21.271961185071305 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.80780942211152, + 21.99539274457992 + ], + [ + 69.54709469669888, + 21.99539274457992 + ], + [ + 69.54709469669888, + 21.271961185071305 + ], + [ + 68.80780942211152, + 21.99539274457992 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.80780942211152, + 21.99539274457992 + ], + [ + 68.80780942211152, + 22.718824304088535 + ], + [ + 69.54709469669888, + 22.718824304088535 + ], + [ + 68.80780942211152, + 21.99539274457992 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.80780942211152, + 21.99539274457992 + ], + [ + 69.54709469669888, + 22.718824304088535 + ], + [ + 69.54709469669888, + 21.99539274457992 + ], + [ + 68.80780942211152, + 21.99539274457992 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.80780942211152, + 22.718824304088535 + ], + [ + 68.80780942211152, + 23.44225586359715 + ], + [ + 69.54709469669888, + 22.718824304088535 + ], + [ + 68.80780942211152, + 22.718824304088535 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.80780942211152, + 23.44225586359715 + ], + [ + 69.54709469669888, + 23.44225586359715 + ], + [ + 69.54709469669888, + 22.718824304088535 + ], + [ + 68.80780942211152, + 23.44225586359715 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.80780942211152, + 23.44225586359715 + ], + [ + 68.80780942211152, + 24.165687423105766 + ], + [ + 69.54709469669888, + 24.165687423105766 + ], + [ + 68.80780942211152, + 23.44225586359715 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.80780942211152, + 23.44225586359715 + ], + [ + 69.54709469669888, + 24.165687423105766 + ], + [ + 69.54709469669888, + 23.44225586359715 + ], + [ + 68.80780942211152, + 23.44225586359715 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.80780942211152, + 24.165687423105766 + ], + [ + 68.80780942211152, + 24.88911898261438 + ], + [ + 69.54709469669888, + 24.165687423105766 + ], + [ + 68.80780942211152, + 24.165687423105766 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.80780942211152, + 24.88911898261438 + ], + [ + 69.54709469669888, + 24.88911898261438 + ], + [ + 69.54709469669888, + 24.165687423105766 + ], + [ + 68.80780942211152, + 24.88911898261438 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.80780942211152, + 24.88911898261438 + ], + [ + 68.80780942211152, + 25.612550542122996 + ], + [ + 69.54709469669888, + 25.612550542122996 + ], + [ + 68.80780942211152, + 24.88911898261438 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.80780942211152, + 24.88911898261438 + ], + [ + 69.54709469669888, + 25.612550542122996 + ], + [ + 69.54709469669888, + 24.88911898261438 + ], + [ + 68.80780942211152, + 24.88911898261438 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.80780942211152, + 25.612550542122996 + ], + [ + 68.80780942211152, + 26.33598210163161 + ], + [ + 69.54709469669888, + 25.612550542122996 + ], + [ + 68.80780942211152, + 25.612550542122996 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.80780942211152, + 26.33598210163161 + ], + [ + 69.54709469669888, + 26.33598210163161 + ], + [ + 69.54709469669888, + 25.612550542122996 + ], + [ + 68.80780942211152, + 26.33598210163161 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.80780942211152, + 26.33598210163161 + ], + [ + 68.80780942211152, + 27.059413661140226 + ], + [ + 69.54709469669888, + 27.059413661140226 + ], + [ + 68.80780942211152, + 26.33598210163161 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.80780942211152, + 26.33598210163161 + ], + [ + 69.54709469669888, + 27.059413661140226 + ], + [ + 69.54709469669888, + 26.33598210163161 + ], + [ + 68.80780942211152, + 26.33598210163161 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.80780942211152, + 27.059413661140226 + ], + [ + 68.80780942211152, + 27.78284522064884 + ], + [ + 69.54709469669888, + 27.059413661140226 + ], + [ + 68.80780942211152, + 27.059413661140226 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.80780942211152, + 27.78284522064884 + ], + [ + 69.54709469669888, + 27.78284522064884 + ], + [ + 69.54709469669888, + 27.059413661140226 + ], + [ + 68.80780942211152, + 27.78284522064884 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.80780942211152, + 27.78284522064884 + ], + [ + 68.80780942211152, + 28.506276780157457 + ], + [ + 69.54709469669888, + 28.506276780157457 + ], + [ + 68.80780942211152, + 27.78284522064884 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.80780942211152, + 27.78284522064884 + ], + [ + 69.54709469669888, + 28.506276780157457 + ], + [ + 69.54709469669888, + 27.78284522064884 + ], + [ + 68.80780942211152, + 27.78284522064884 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.80780942211152, + 28.506276780157457 + ], + [ + 68.80780942211152, + 29.22970833966607 + ], + [ + 69.54709469669888, + 28.506276780157457 + ], + [ + 68.80780942211152, + 28.506276780157457 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.80780942211152, + 29.22970833966607 + ], + [ + 69.54709469669888, + 29.22970833966607 + ], + [ + 69.54709469669888, + 28.506276780157457 + ], + [ + 68.80780942211152, + 29.22970833966607 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.80780942211152, + 29.22970833966607 + ], + [ + 68.80780942211152, + 29.953139899174687 + ], + [ + 69.54709469669888, + 29.953139899174687 + ], + [ + 68.80780942211152, + 29.22970833966607 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.80780942211152, + 29.22970833966607 + ], + [ + 69.54709469669888, + 29.953139899174687 + ], + [ + 69.54709469669888, + 29.22970833966607 + ], + [ + 68.80780942211152, + 29.22970833966607 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.80780942211152, + 29.953139899174687 + ], + [ + 68.80780942211152, + 30.676571458683302 + ], + [ + 69.54709469669888, + 29.953139899174687 + ], + [ + 68.80780942211152, + 29.953139899174687 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.80780942211152, + 30.676571458683302 + ], + [ + 69.54709469669888, + 30.676571458683302 + ], + [ + 69.54709469669888, + 29.953139899174687 + ], + [ + 68.80780942211152, + 30.676571458683302 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.80780942211152, + 30.676571458683302 + ], + [ + 68.80780942211152, + 31.400003018191917 + ], + [ + 69.54709469669888, + 31.400003018191917 + ], + [ + 68.80780942211152, + 30.676571458683302 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.80780942211152, + 30.676571458683302 + ], + [ + 69.54709469669888, + 31.400003018191917 + ], + [ + 69.54709469669888, + 30.676571458683302 + ], + [ + 68.80780942211152, + 30.676571458683302 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.80780942211152, + 31.400003018191917 + ], + [ + 68.80780942211152, + 32.123434577700536 + ], + [ + 69.54709469669888, + 31.400003018191917 + ], + [ + 68.80780942211152, + 31.400003018191917 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.80780942211152, + 32.123434577700536 + ], + [ + 69.54709469669888, + 32.123434577700536 + ], + [ + 69.54709469669888, + 31.400003018191917 + ], + [ + 68.80780942211152, + 32.123434577700536 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.80780942211152, + 32.123434577700536 + ], + [ + 68.80780942211152, + 32.84686613720915 + ], + [ + 69.54709469669888, + 32.84686613720915 + ], + [ + 68.80780942211152, + 32.123434577700536 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.80780942211152, + 32.123434577700536 + ], + [ + 69.54709469669888, + 32.84686613720915 + ], + [ + 69.54709469669888, + 32.123434577700536 + ], + [ + 68.80780942211152, + 32.123434577700536 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.80780942211152, + 32.84686613720915 + ], + [ + 68.80780942211152, + 33.57029769671776 + ], + [ + 69.54709469669888, + 32.84686613720915 + ], + [ + 68.80780942211152, + 32.84686613720915 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.80780942211152, + 33.57029769671776 + ], + [ + 69.54709469669888, + 33.57029769671776 + ], + [ + 69.54709469669888, + 32.84686613720915 + ], + [ + 68.80780942211152, + 33.57029769671776 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.80780942211152, + 33.57029769671776 + ], + [ + 68.80780942211152, + 34.29372925622637 + ], + [ + 69.54709469669888, + 34.29372925622637 + ], + [ + 68.80780942211152, + 33.57029769671776 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.80780942211152, + 33.57029769671776 + ], + [ + 69.54709469669888, + 34.29372925622637 + ], + [ + 69.54709469669888, + 33.57029769671776 + ], + [ + 68.80780942211152, + 33.57029769671776 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.80780942211152, + 34.29372925622637 + ], + [ + 68.80780942211152, + 35.01716081573498 + ], + [ + 69.54709469669888, + 34.29372925622637 + ], + [ + 68.80780942211152, + 34.29372925622637 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.80780942211152, + 35.01716081573498 + ], + [ + 69.54709469669888, + 35.01716081573498 + ], + [ + 69.54709469669888, + 34.29372925622637 + ], + [ + 68.80780942211152, + 35.01716081573498 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.80780942211152, + 35.01716081573498 + ], + [ + 68.80780942211152, + 35.740592375243594 + ], + [ + 69.54709469669888, + 35.740592375243594 + ], + [ + 68.80780942211152, + 35.01716081573498 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.80780942211152, + 35.01716081573498 + ], + [ + 69.54709469669888, + 35.740592375243594 + ], + [ + 69.54709469669888, + 35.01716081573498 + ], + [ + 68.80780942211152, + 35.01716081573498 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.80780942211152, + 35.740592375243594 + ], + [ + 68.80780942211152, + 36.464023934752205 + ], + [ + 69.54709469669888, + 35.740592375243594 + ], + [ + 68.80780942211152, + 35.740592375243594 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.80780942211152, + 36.464023934752205 + ], + [ + 69.54709469669888, + 36.464023934752205 + ], + [ + 69.54709469669888, + 35.740592375243594 + ], + [ + 68.80780942211152, + 36.464023934752205 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.80780942211152, + 36.464023934752205 + ], + [ + 68.80780942211152, + 37.18745549426082 + ], + [ + 69.54709469669888, + 37.18745549426082 + ], + [ + 68.80780942211152, + 36.464023934752205 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.80780942211152, + 36.464023934752205 + ], + [ + 69.54709469669888, + 37.18745549426082 + ], + [ + 69.54709469669888, + 36.464023934752205 + ], + [ + 68.80780942211152, + 36.464023934752205 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.80780942211152, + 37.18745549426082 + ], + [ + 68.80780942211152, + 37.91088705376943 + ], + [ + 69.54709469669888, + 37.18745549426082 + ], + [ + 68.80780942211152, + 37.18745549426082 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.80780942211152, + 37.91088705376943 + ], + [ + 69.54709469669888, + 37.91088705376943 + ], + [ + 69.54709469669888, + 37.18745549426082 + ], + [ + 68.80780942211152, + 37.91088705376943 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.80780942211152, + 37.91088705376943 + ], + [ + 68.80780942211152, + 38.63431861327804 + ], + [ + 69.54709469669888, + 38.63431861327804 + ], + [ + 68.80780942211152, + 37.91088705376943 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.80780942211152, + 37.91088705376943 + ], + [ + 69.54709469669888, + 38.63431861327804 + ], + [ + 69.54709469669888, + 37.91088705376943 + ], + [ + 68.80780942211152, + 37.91088705376943 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.80780942211152, + 38.63431861327804 + ], + [ + 68.80780942211152, + 39.35775017278665 + ], + [ + 69.54709469669888, + 38.63431861327804 + ], + [ + 68.80780942211152, + 38.63431861327804 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.80780942211152, + 39.35775017278665 + ], + [ + 69.54709469669888, + 39.35775017278665 + ], + [ + 69.54709469669888, + 38.63431861327804 + ], + [ + 68.80780942211152, + 39.35775017278665 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.80780942211152, + 39.35775017278665 + ], + [ + 68.80780942211152, + 40.08118173229526 + ], + [ + 69.54709469669888, + 40.08118173229526 + ], + [ + 68.80780942211152, + 39.35775017278665 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.80780942211152, + 39.35775017278665 + ], + [ + 69.54709469669888, + 40.08118173229526 + ], + [ + 69.54709469669888, + 39.35775017278665 + ], + [ + 68.80780942211152, + 39.35775017278665 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.80780942211152, + 40.08118173229526 + ], + [ + 68.80780942211152, + 40.804613291803875 + ], + [ + 69.54709469669888, + 40.08118173229526 + ], + [ + 68.80780942211152, + 40.08118173229526 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.80780942211152, + 40.804613291803875 + ], + [ + 69.54709469669888, + 40.804613291803875 + ], + [ + 69.54709469669888, + 40.08118173229526 + ], + [ + 68.80780942211152, + 40.804613291803875 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.80780942211152, + 40.804613291803875 + ], + [ + 68.80780942211152, + 41.52804485131249 + ], + [ + 69.54709469669888, + 41.52804485131249 + ], + [ + 68.80780942211152, + 40.804613291803875 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.80780942211152, + 40.804613291803875 + ], + [ + 69.54709469669888, + 41.52804485131249 + ], + [ + 69.54709469669888, + 40.804613291803875 + ], + [ + 68.80780942211152, + 40.804613291803875 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.80780942211152, + 41.52804485131249 + ], + [ + 68.80780942211152, + 42.2514764108211 + ], + [ + 69.54709469669888, + 41.52804485131249 + ], + [ + 68.80780942211152, + 41.52804485131249 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.80780942211152, + 42.2514764108211 + ], + [ + 69.54709469669888, + 42.2514764108211 + ], + [ + 69.54709469669888, + 41.52804485131249 + ], + [ + 68.80780942211152, + 42.2514764108211 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.80780942211152, + 42.2514764108211 + ], + [ + 68.80780942211152, + 42.97490797032971 + ], + [ + 69.54709469669888, + 42.97490797032971 + ], + [ + 68.80780942211152, + 42.2514764108211 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.80780942211152, + 42.2514764108211 + ], + [ + 69.54709469669888, + 42.97490797032971 + ], + [ + 69.54709469669888, + 42.2514764108211 + ], + [ + 68.80780942211152, + 42.2514764108211 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.80780942211152, + 42.97490797032971 + ], + [ + 68.80780942211152, + 43.69833952983832 + ], + [ + 69.54709469669888, + 42.97490797032971 + ], + [ + 68.80780942211152, + 42.97490797032971 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.80780942211152, + 43.69833952983832 + ], + [ + 69.54709469669888, + 43.69833952983832 + ], + [ + 69.54709469669888, + 42.97490797032971 + ], + [ + 68.80780942211152, + 43.69833952983832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.80780942211152, + 43.69833952983832 + ], + [ + 68.80780942211152, + 44.42177108934693 + ], + [ + 69.54709469669888, + 44.42177108934693 + ], + [ + 68.80780942211152, + 43.69833952983832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.80780942211152, + 43.69833952983832 + ], + [ + 69.54709469669888, + 44.42177108934693 + ], + [ + 69.54709469669888, + 43.69833952983832 + ], + [ + 68.80780942211152, + 43.69833952983832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.80780942211152, + 44.42177108934693 + ], + [ + 68.80780942211152, + 45.145202648855545 + ], + [ + 69.54709469669888, + 44.42177108934693 + ], + [ + 68.80780942211152, + 44.42177108934693 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.80780942211152, + 45.145202648855545 + ], + [ + 69.54709469669888, + 45.145202648855545 + ], + [ + 69.54709469669888, + 44.42177108934693 + ], + [ + 68.80780942211152, + 45.145202648855545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.80780942211152, + 45.145202648855545 + ], + [ + 68.80780942211152, + 45.868634208364156 + ], + [ + 69.54709469669888, + 45.868634208364156 + ], + [ + 68.80780942211152, + 45.145202648855545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.80780942211152, + 45.145202648855545 + ], + [ + 69.54709469669888, + 45.868634208364156 + ], + [ + 69.54709469669888, + 45.145202648855545 + ], + [ + 68.80780942211152, + 45.145202648855545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.80780942211152, + 45.868634208364156 + ], + [ + 68.80780942211152, + 46.59206576787277 + ], + [ + 69.54709469669888, + 45.868634208364156 + ], + [ + 68.80780942211152, + 45.868634208364156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.80780942211152, + 46.59206576787277 + ], + [ + 69.54709469669888, + 46.59206576787277 + ], + [ + 69.54709469669888, + 45.868634208364156 + ], + [ + 68.80780942211152, + 46.59206576787277 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.80780942211152, + 46.59206576787277 + ], + [ + 68.80780942211152, + 47.31549732738138 + ], + [ + 69.54709469669888, + 47.31549732738138 + ], + [ + 68.80780942211152, + 46.59206576787277 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.80780942211152, + 46.59206576787277 + ], + [ + 69.54709469669888, + 47.31549732738138 + ], + [ + 69.54709469669888, + 46.59206576787277 + ], + [ + 68.80780942211152, + 46.59206576787277 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.80780942211152, + 47.31549732738138 + ], + [ + 68.80780942211152, + 48.03892888688999 + ], + [ + 69.54709469669888, + 47.31549732738138 + ], + [ + 68.80780942211152, + 47.31549732738138 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 68.80780942211152, + 48.03892888688999 + ], + [ + 69.54709469669888, + 48.03892888688999 + ], + [ + 69.54709469669888, + 47.31549732738138 + ], + [ + 68.80780942211152, + 48.03892888688999 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.54709469669888, + 11.867350911459308 + ], + [ + 69.54709469669888, + 12.590782470967923 + ], + [ + 70.28637997128624, + 11.867350911459308 + ], + [ + 69.54709469669888, + 11.867350911459308 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.54709469669888, + 12.590782470967923 + ], + [ + 70.28637997128624, + 12.590782470967923 + ], + [ + 70.28637997128624, + 11.867350911459308 + ], + [ + 69.54709469669888, + 12.590782470967923 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.54709469669888, + 12.590782470967923 + ], + [ + 70.28637997128624, + 13.314214030476538 + ], + [ + 70.28637997128624, + 12.590782470967923 + ], + [ + 69.54709469669888, + 12.590782470967923 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.54709469669888, + 12.590782470967923 + ], + [ + 69.54709469669888, + 13.314214030476538 + ], + [ + 70.28637997128624, + 13.314214030476538 + ], + [ + 69.54709469669888, + 12.590782470967923 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.54709469669888, + 13.314214030476538 + ], + [ + 69.54709469669888, + 14.037645589985154 + ], + [ + 70.28637997128624, + 13.314214030476538 + ], + [ + 69.54709469669888, + 13.314214030476538 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.54709469669888, + 14.037645589985154 + ], + [ + 70.28637997128624, + 14.037645589985154 + ], + [ + 70.28637997128624, + 13.314214030476538 + ], + [ + 69.54709469669888, + 14.037645589985154 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.54709469669888, + 14.037645589985154 + ], + [ + 70.28637997128624, + 14.761077149493769 + ], + [ + 70.28637997128624, + 14.037645589985154 + ], + [ + 69.54709469669888, + 14.037645589985154 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.54709469669888, + 14.037645589985154 + ], + [ + 69.54709469669888, + 14.761077149493769 + ], + [ + 70.28637997128624, + 14.761077149493769 + ], + [ + 69.54709469669888, + 14.037645589985154 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.54709469669888, + 14.761077149493769 + ], + [ + 69.54709469669888, + 15.484508709002384 + ], + [ + 70.28637997128624, + 14.761077149493769 + ], + [ + 69.54709469669888, + 14.761077149493769 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.54709469669888, + 15.484508709002384 + ], + [ + 70.28637997128624, + 15.484508709002384 + ], + [ + 70.28637997128624, + 14.761077149493769 + ], + [ + 69.54709469669888, + 15.484508709002384 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.54709469669888, + 15.484508709002384 + ], + [ + 70.28637997128624, + 16.207940268511 + ], + [ + 70.28637997128624, + 15.484508709002384 + ], + [ + 69.54709469669888, + 15.484508709002384 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.54709469669888, + 15.484508709002384 + ], + [ + 69.54709469669888, + 16.207940268511 + ], + [ + 70.28637997128624, + 16.207940268511 + ], + [ + 69.54709469669888, + 15.484508709002384 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.54709469669888, + 16.207940268511 + ], + [ + 69.54709469669888, + 16.931371828019614 + ], + [ + 70.28637997128624, + 16.207940268511 + ], + [ + 69.54709469669888, + 16.207940268511 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.54709469669888, + 16.931371828019614 + ], + [ + 70.28637997128624, + 16.931371828019614 + ], + [ + 70.28637997128624, + 16.207940268511 + ], + [ + 69.54709469669888, + 16.931371828019614 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.54709469669888, + 16.931371828019614 + ], + [ + 70.28637997128624, + 17.65480338752823 + ], + [ + 70.28637997128624, + 16.931371828019614 + ], + [ + 69.54709469669888, + 16.931371828019614 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.54709469669888, + 16.931371828019614 + ], + [ + 69.54709469669888, + 17.65480338752823 + ], + [ + 70.28637997128624, + 17.65480338752823 + ], + [ + 69.54709469669888, + 16.931371828019614 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.54709469669888, + 17.65480338752823 + ], + [ + 69.54709469669888, + 18.378234947036844 + ], + [ + 70.28637997128624, + 17.65480338752823 + ], + [ + 69.54709469669888, + 17.65480338752823 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.54709469669888, + 18.378234947036844 + ], + [ + 70.28637997128624, + 18.378234947036844 + ], + [ + 70.28637997128624, + 17.65480338752823 + ], + [ + 69.54709469669888, + 18.378234947036844 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.54709469669888, + 18.378234947036844 + ], + [ + 70.28637997128624, + 19.10166650654546 + ], + [ + 70.28637997128624, + 18.378234947036844 + ], + [ + 69.54709469669888, + 18.378234947036844 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.54709469669888, + 18.378234947036844 + ], + [ + 69.54709469669888, + 19.10166650654546 + ], + [ + 70.28637997128624, + 19.10166650654546 + ], + [ + 69.54709469669888, + 18.378234947036844 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.54709469669888, + 19.10166650654546 + ], + [ + 69.54709469669888, + 19.825098066054075 + ], + [ + 70.28637997128624, + 19.10166650654546 + ], + [ + 69.54709469669888, + 19.10166650654546 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.54709469669888, + 19.825098066054075 + ], + [ + 70.28637997128624, + 19.825098066054075 + ], + [ + 70.28637997128624, + 19.10166650654546 + ], + [ + 69.54709469669888, + 19.825098066054075 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.54709469669888, + 19.825098066054075 + ], + [ + 70.28637997128624, + 20.54852962556269 + ], + [ + 70.28637997128624, + 19.825098066054075 + ], + [ + 69.54709469669888, + 19.825098066054075 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.54709469669888, + 19.825098066054075 + ], + [ + 69.54709469669888, + 20.54852962556269 + ], + [ + 70.28637997128624, + 20.54852962556269 + ], + [ + 69.54709469669888, + 19.825098066054075 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.54709469669888, + 20.54852962556269 + ], + [ + 69.54709469669888, + 21.271961185071305 + ], + [ + 70.28637997128624, + 20.54852962556269 + ], + [ + 69.54709469669888, + 20.54852962556269 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.54709469669888, + 21.271961185071305 + ], + [ + 70.28637997128624, + 21.271961185071305 + ], + [ + 70.28637997128624, + 20.54852962556269 + ], + [ + 69.54709469669888, + 21.271961185071305 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.54709469669888, + 21.271961185071305 + ], + [ + 70.28637997128624, + 21.99539274457992 + ], + [ + 70.28637997128624, + 21.271961185071305 + ], + [ + 69.54709469669888, + 21.271961185071305 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.54709469669888, + 21.271961185071305 + ], + [ + 69.54709469669888, + 21.99539274457992 + ], + [ + 70.28637997128624, + 21.99539274457992 + ], + [ + 69.54709469669888, + 21.271961185071305 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.54709469669888, + 21.99539274457992 + ], + [ + 69.54709469669888, + 22.718824304088535 + ], + [ + 70.28637997128624, + 21.99539274457992 + ], + [ + 69.54709469669888, + 21.99539274457992 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.54709469669888, + 22.718824304088535 + ], + [ + 70.28637997128624, + 22.718824304088535 + ], + [ + 70.28637997128624, + 21.99539274457992 + ], + [ + 69.54709469669888, + 22.718824304088535 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.54709469669888, + 22.718824304088535 + ], + [ + 70.28637997128624, + 23.44225586359715 + ], + [ + 70.28637997128624, + 22.718824304088535 + ], + [ + 69.54709469669888, + 22.718824304088535 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.54709469669888, + 22.718824304088535 + ], + [ + 69.54709469669888, + 23.44225586359715 + ], + [ + 70.28637997128624, + 23.44225586359715 + ], + [ + 69.54709469669888, + 22.718824304088535 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.54709469669888, + 23.44225586359715 + ], + [ + 69.54709469669888, + 24.165687423105766 + ], + [ + 70.28637997128624, + 23.44225586359715 + ], + [ + 69.54709469669888, + 23.44225586359715 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.54709469669888, + 24.165687423105766 + ], + [ + 70.28637997128624, + 24.165687423105766 + ], + [ + 70.28637997128624, + 23.44225586359715 + ], + [ + 69.54709469669888, + 24.165687423105766 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.54709469669888, + 24.165687423105766 + ], + [ + 70.28637997128624, + 24.88911898261438 + ], + [ + 70.28637997128624, + 24.165687423105766 + ], + [ + 69.54709469669888, + 24.165687423105766 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.54709469669888, + 24.165687423105766 + ], + [ + 69.54709469669888, + 24.88911898261438 + ], + [ + 70.28637997128624, + 24.88911898261438 + ], + [ + 69.54709469669888, + 24.165687423105766 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.54709469669888, + 24.88911898261438 + ], + [ + 69.54709469669888, + 25.612550542122996 + ], + [ + 70.28637997128624, + 24.88911898261438 + ], + [ + 69.54709469669888, + 24.88911898261438 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.54709469669888, + 25.612550542122996 + ], + [ + 70.28637997128624, + 25.612550542122996 + ], + [ + 70.28637997128624, + 24.88911898261438 + ], + [ + 69.54709469669888, + 25.612550542122996 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.54709469669888, + 25.612550542122996 + ], + [ + 70.28637997128624, + 26.33598210163161 + ], + [ + 70.28637997128624, + 25.612550542122996 + ], + [ + 69.54709469669888, + 25.612550542122996 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.54709469669888, + 25.612550542122996 + ], + [ + 69.54709469669888, + 26.33598210163161 + ], + [ + 70.28637997128624, + 26.33598210163161 + ], + [ + 69.54709469669888, + 25.612550542122996 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.54709469669888, + 26.33598210163161 + ], + [ + 69.54709469669888, + 27.059413661140226 + ], + [ + 70.28637997128624, + 26.33598210163161 + ], + [ + 69.54709469669888, + 26.33598210163161 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.54709469669888, + 27.059413661140226 + ], + [ + 70.28637997128624, + 27.059413661140226 + ], + [ + 70.28637997128624, + 26.33598210163161 + ], + [ + 69.54709469669888, + 27.059413661140226 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.54709469669888, + 27.059413661140226 + ], + [ + 70.28637997128624, + 27.78284522064884 + ], + [ + 70.28637997128624, + 27.059413661140226 + ], + [ + 69.54709469669888, + 27.059413661140226 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.54709469669888, + 27.059413661140226 + ], + [ + 69.54709469669888, + 27.78284522064884 + ], + [ + 70.28637997128624, + 27.78284522064884 + ], + [ + 69.54709469669888, + 27.059413661140226 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.54709469669888, + 27.78284522064884 + ], + [ + 69.54709469669888, + 28.506276780157457 + ], + [ + 70.28637997128624, + 27.78284522064884 + ], + [ + 69.54709469669888, + 27.78284522064884 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.54709469669888, + 28.506276780157457 + ], + [ + 70.28637997128624, + 28.506276780157457 + ], + [ + 70.28637997128624, + 27.78284522064884 + ], + [ + 69.54709469669888, + 28.506276780157457 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.54709469669888, + 28.506276780157457 + ], + [ + 70.28637997128624, + 29.22970833966607 + ], + [ + 70.28637997128624, + 28.506276780157457 + ], + [ + 69.54709469669888, + 28.506276780157457 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.54709469669888, + 28.506276780157457 + ], + [ + 69.54709469669888, + 29.22970833966607 + ], + [ + 70.28637997128624, + 29.22970833966607 + ], + [ + 69.54709469669888, + 28.506276780157457 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.54709469669888, + 29.22970833966607 + ], + [ + 69.54709469669888, + 29.953139899174687 + ], + [ + 70.28637997128624, + 29.22970833966607 + ], + [ + 69.54709469669888, + 29.22970833966607 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.54709469669888, + 29.953139899174687 + ], + [ + 70.28637997128624, + 29.953139899174687 + ], + [ + 70.28637997128624, + 29.22970833966607 + ], + [ + 69.54709469669888, + 29.953139899174687 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.54709469669888, + 29.953139899174687 + ], + [ + 70.28637997128624, + 30.676571458683302 + ], + [ + 70.28637997128624, + 29.953139899174687 + ], + [ + 69.54709469669888, + 29.953139899174687 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.54709469669888, + 29.953139899174687 + ], + [ + 69.54709469669888, + 30.676571458683302 + ], + [ + 70.28637997128624, + 30.676571458683302 + ], + [ + 69.54709469669888, + 29.953139899174687 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.54709469669888, + 30.676571458683302 + ], + [ + 69.54709469669888, + 31.400003018191917 + ], + [ + 70.28637997128624, + 30.676571458683302 + ], + [ + 69.54709469669888, + 30.676571458683302 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.54709469669888, + 31.400003018191917 + ], + [ + 70.28637997128624, + 31.400003018191917 + ], + [ + 70.28637997128624, + 30.676571458683302 + ], + [ + 69.54709469669888, + 31.400003018191917 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.54709469669888, + 31.400003018191917 + ], + [ + 70.28637997128624, + 32.123434577700536 + ], + [ + 70.28637997128624, + 31.400003018191917 + ], + [ + 69.54709469669888, + 31.400003018191917 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.54709469669888, + 31.400003018191917 + ], + [ + 69.54709469669888, + 32.123434577700536 + ], + [ + 70.28637997128624, + 32.123434577700536 + ], + [ + 69.54709469669888, + 31.400003018191917 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.54709469669888, + 32.123434577700536 + ], + [ + 69.54709469669888, + 32.84686613720915 + ], + [ + 70.28637997128624, + 32.123434577700536 + ], + [ + 69.54709469669888, + 32.123434577700536 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.54709469669888, + 32.84686613720915 + ], + [ + 70.28637997128624, + 32.84686613720915 + ], + [ + 70.28637997128624, + 32.123434577700536 + ], + [ + 69.54709469669888, + 32.84686613720915 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.54709469669888, + 32.84686613720915 + ], + [ + 70.28637997128624, + 33.57029769671776 + ], + [ + 70.28637997128624, + 32.84686613720915 + ], + [ + 69.54709469669888, + 32.84686613720915 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.54709469669888, + 32.84686613720915 + ], + [ + 69.54709469669888, + 33.57029769671776 + ], + [ + 70.28637997128624, + 33.57029769671776 + ], + [ + 69.54709469669888, + 32.84686613720915 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.54709469669888, + 33.57029769671776 + ], + [ + 69.54709469669888, + 34.29372925622637 + ], + [ + 70.28637997128624, + 33.57029769671776 + ], + [ + 69.54709469669888, + 33.57029769671776 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.54709469669888, + 34.29372925622637 + ], + [ + 70.28637997128624, + 34.29372925622637 + ], + [ + 70.28637997128624, + 33.57029769671776 + ], + [ + 69.54709469669888, + 34.29372925622637 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.54709469669888, + 34.29372925622637 + ], + [ + 70.28637997128624, + 35.01716081573498 + ], + [ + 70.28637997128624, + 34.29372925622637 + ], + [ + 69.54709469669888, + 34.29372925622637 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.54709469669888, + 34.29372925622637 + ], + [ + 69.54709469669888, + 35.01716081573498 + ], + [ + 70.28637997128624, + 35.01716081573498 + ], + [ + 69.54709469669888, + 34.29372925622637 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.54709469669888, + 35.01716081573498 + ], + [ + 69.54709469669888, + 35.740592375243594 + ], + [ + 70.28637997128624, + 35.01716081573498 + ], + [ + 69.54709469669888, + 35.01716081573498 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.54709469669888, + 35.740592375243594 + ], + [ + 70.28637997128624, + 35.740592375243594 + ], + [ + 70.28637997128624, + 35.01716081573498 + ], + [ + 69.54709469669888, + 35.740592375243594 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.54709469669888, + 35.740592375243594 + ], + [ + 70.28637997128624, + 36.464023934752205 + ], + [ + 70.28637997128624, + 35.740592375243594 + ], + [ + 69.54709469669888, + 35.740592375243594 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.54709469669888, + 35.740592375243594 + ], + [ + 69.54709469669888, + 36.464023934752205 + ], + [ + 70.28637997128624, + 36.464023934752205 + ], + [ + 69.54709469669888, + 35.740592375243594 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.54709469669888, + 36.464023934752205 + ], + [ + 69.54709469669888, + 37.18745549426082 + ], + [ + 70.28637997128624, + 36.464023934752205 + ], + [ + 69.54709469669888, + 36.464023934752205 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.54709469669888, + 37.18745549426082 + ], + [ + 70.28637997128624, + 37.18745549426082 + ], + [ + 70.28637997128624, + 36.464023934752205 + ], + [ + 69.54709469669888, + 37.18745549426082 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.54709469669888, + 37.18745549426082 + ], + [ + 70.28637997128624, + 37.91088705376943 + ], + [ + 70.28637997128624, + 37.18745549426082 + ], + [ + 69.54709469669888, + 37.18745549426082 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.54709469669888, + 37.18745549426082 + ], + [ + 69.54709469669888, + 37.91088705376943 + ], + [ + 70.28637997128624, + 37.91088705376943 + ], + [ + 69.54709469669888, + 37.18745549426082 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.54709469669888, + 37.91088705376943 + ], + [ + 69.54709469669888, + 38.63431861327804 + ], + [ + 70.28637997128624, + 37.91088705376943 + ], + [ + 69.54709469669888, + 37.91088705376943 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.54709469669888, + 38.63431861327804 + ], + [ + 70.28637997128624, + 38.63431861327804 + ], + [ + 70.28637997128624, + 37.91088705376943 + ], + [ + 69.54709469669888, + 38.63431861327804 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.54709469669888, + 38.63431861327804 + ], + [ + 70.28637997128624, + 39.35775017278665 + ], + [ + 70.28637997128624, + 38.63431861327804 + ], + [ + 69.54709469669888, + 38.63431861327804 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.54709469669888, + 38.63431861327804 + ], + [ + 69.54709469669888, + 39.35775017278665 + ], + [ + 70.28637997128624, + 39.35775017278665 + ], + [ + 69.54709469669888, + 38.63431861327804 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.54709469669888, + 39.35775017278665 + ], + [ + 69.54709469669888, + 40.08118173229526 + ], + [ + 70.28637997128624, + 39.35775017278665 + ], + [ + 69.54709469669888, + 39.35775017278665 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.54709469669888, + 40.08118173229526 + ], + [ + 70.28637997128624, + 40.08118173229526 + ], + [ + 70.28637997128624, + 39.35775017278665 + ], + [ + 69.54709469669888, + 40.08118173229526 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.54709469669888, + 40.08118173229526 + ], + [ + 70.28637997128624, + 40.804613291803875 + ], + [ + 70.28637997128624, + 40.08118173229526 + ], + [ + 69.54709469669888, + 40.08118173229526 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.54709469669888, + 40.08118173229526 + ], + [ + 69.54709469669888, + 40.804613291803875 + ], + [ + 70.28637997128624, + 40.804613291803875 + ], + [ + 69.54709469669888, + 40.08118173229526 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.54709469669888, + 40.804613291803875 + ], + [ + 69.54709469669888, + 41.52804485131249 + ], + [ + 70.28637997128624, + 40.804613291803875 + ], + [ + 69.54709469669888, + 40.804613291803875 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.54709469669888, + 41.52804485131249 + ], + [ + 70.28637997128624, + 41.52804485131249 + ], + [ + 70.28637997128624, + 40.804613291803875 + ], + [ + 69.54709469669888, + 41.52804485131249 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.54709469669888, + 41.52804485131249 + ], + [ + 70.28637997128624, + 42.2514764108211 + ], + [ + 70.28637997128624, + 41.52804485131249 + ], + [ + 69.54709469669888, + 41.52804485131249 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.54709469669888, + 41.52804485131249 + ], + [ + 69.54709469669888, + 42.2514764108211 + ], + [ + 70.28637997128624, + 42.2514764108211 + ], + [ + 69.54709469669888, + 41.52804485131249 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.54709469669888, + 42.2514764108211 + ], + [ + 69.54709469669888, + 42.97490797032971 + ], + [ + 70.28637997128624, + 42.2514764108211 + ], + [ + 69.54709469669888, + 42.2514764108211 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.54709469669888, + 42.97490797032971 + ], + [ + 70.28637997128624, + 42.97490797032971 + ], + [ + 70.28637997128624, + 42.2514764108211 + ], + [ + 69.54709469669888, + 42.97490797032971 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.54709469669888, + 42.97490797032971 + ], + [ + 70.28637997128624, + 43.69833952983832 + ], + [ + 70.28637997128624, + 42.97490797032971 + ], + [ + 69.54709469669888, + 42.97490797032971 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.54709469669888, + 42.97490797032971 + ], + [ + 69.54709469669888, + 43.69833952983832 + ], + [ + 70.28637997128624, + 43.69833952983832 + ], + [ + 69.54709469669888, + 42.97490797032971 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.54709469669888, + 43.69833952983832 + ], + [ + 69.54709469669888, + 44.42177108934693 + ], + [ + 70.28637997128624, + 43.69833952983832 + ], + [ + 69.54709469669888, + 43.69833952983832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.54709469669888, + 44.42177108934693 + ], + [ + 70.28637997128624, + 44.42177108934693 + ], + [ + 70.28637997128624, + 43.69833952983832 + ], + [ + 69.54709469669888, + 44.42177108934693 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.54709469669888, + 44.42177108934693 + ], + [ + 70.28637997128624, + 45.145202648855545 + ], + [ + 70.28637997128624, + 44.42177108934693 + ], + [ + 69.54709469669888, + 44.42177108934693 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.54709469669888, + 44.42177108934693 + ], + [ + 69.54709469669888, + 45.145202648855545 + ], + [ + 70.28637997128624, + 45.145202648855545 + ], + [ + 69.54709469669888, + 44.42177108934693 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.54709469669888, + 45.145202648855545 + ], + [ + 69.54709469669888, + 45.868634208364156 + ], + [ + 70.28637997128624, + 45.145202648855545 + ], + [ + 69.54709469669888, + 45.145202648855545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.54709469669888, + 45.868634208364156 + ], + [ + 70.28637997128624, + 45.868634208364156 + ], + [ + 70.28637997128624, + 45.145202648855545 + ], + [ + 69.54709469669888, + 45.868634208364156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.54709469669888, + 45.868634208364156 + ], + [ + 70.28637997128624, + 46.59206576787277 + ], + [ + 70.28637997128624, + 45.868634208364156 + ], + [ + 69.54709469669888, + 45.868634208364156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.54709469669888, + 45.868634208364156 + ], + [ + 69.54709469669888, + 46.59206576787277 + ], + [ + 70.28637997128624, + 46.59206576787277 + ], + [ + 69.54709469669888, + 45.868634208364156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.54709469669888, + 46.59206576787277 + ], + [ + 69.54709469669888, + 47.31549732738138 + ], + [ + 70.28637997128624, + 46.59206576787277 + ], + [ + 69.54709469669888, + 46.59206576787277 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.54709469669888, + 47.31549732738138 + ], + [ + 70.28637997128624, + 47.31549732738138 + ], + [ + 70.28637997128624, + 46.59206576787277 + ], + [ + 69.54709469669888, + 47.31549732738138 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.54709469669888, + 47.31549732738138 + ], + [ + 70.28637997128624, + 48.03892888688999 + ], + [ + 70.28637997128624, + 47.31549732738138 + ], + [ + 69.54709469669888, + 47.31549732738138 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 69.54709469669888, + 47.31549732738138 + ], + [ + 69.54709469669888, + 48.03892888688999 + ], + [ + 70.28637997128624, + 48.03892888688999 + ], + [ + 69.54709469669888, + 47.31549732738138 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.28637997128624, + 11.867350911459308 + ], + [ + 70.28637997128624, + 12.590782470967923 + ], + [ + 71.0256652458736, + 12.590782470967923 + ], + [ + 70.28637997128624, + 11.867350911459308 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.28637997128624, + 11.867350911459308 + ], + [ + 71.0256652458736, + 12.590782470967923 + ], + [ + 71.0256652458736, + 11.867350911459308 + ], + [ + 70.28637997128624, + 11.867350911459308 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.28637997128624, + 12.590782470967923 + ], + [ + 70.28637997128624, + 13.314214030476538 + ], + [ + 71.0256652458736, + 12.590782470967923 + ], + [ + 70.28637997128624, + 12.590782470967923 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.28637997128624, + 13.314214030476538 + ], + [ + 71.0256652458736, + 13.314214030476538 + ], + [ + 71.0256652458736, + 12.590782470967923 + ], + [ + 70.28637997128624, + 13.314214030476538 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.28637997128624, + 13.314214030476538 + ], + [ + 70.28637997128624, + 14.037645589985154 + ], + [ + 71.0256652458736, + 14.037645589985154 + ], + [ + 70.28637997128624, + 13.314214030476538 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.28637997128624, + 13.314214030476538 + ], + [ + 71.0256652458736, + 14.037645589985154 + ], + [ + 71.0256652458736, + 13.314214030476538 + ], + [ + 70.28637997128624, + 13.314214030476538 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.28637997128624, + 14.037645589985154 + ], + [ + 70.28637997128624, + 14.761077149493769 + ], + [ + 71.0256652458736, + 14.037645589985154 + ], + [ + 70.28637997128624, + 14.037645589985154 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.28637997128624, + 14.761077149493769 + ], + [ + 71.0256652458736, + 14.761077149493769 + ], + [ + 71.0256652458736, + 14.037645589985154 + ], + [ + 70.28637997128624, + 14.761077149493769 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.28637997128624, + 14.761077149493769 + ], + [ + 70.28637997128624, + 15.484508709002384 + ], + [ + 71.0256652458736, + 15.484508709002384 + ], + [ + 70.28637997128624, + 14.761077149493769 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.28637997128624, + 14.761077149493769 + ], + [ + 71.0256652458736, + 15.484508709002384 + ], + [ + 71.0256652458736, + 14.761077149493769 + ], + [ + 70.28637997128624, + 14.761077149493769 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.28637997128624, + 15.484508709002384 + ], + [ + 70.28637997128624, + 16.207940268511 + ], + [ + 71.0256652458736, + 15.484508709002384 + ], + [ + 70.28637997128624, + 15.484508709002384 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.28637997128624, + 16.207940268511 + ], + [ + 71.0256652458736, + 16.207940268511 + ], + [ + 71.0256652458736, + 15.484508709002384 + ], + [ + 70.28637997128624, + 16.207940268511 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.28637997128624, + 16.207940268511 + ], + [ + 70.28637997128624, + 16.931371828019614 + ], + [ + 71.0256652458736, + 16.931371828019614 + ], + [ + 70.28637997128624, + 16.207940268511 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.28637997128624, + 16.207940268511 + ], + [ + 71.0256652458736, + 16.931371828019614 + ], + [ + 71.0256652458736, + 16.207940268511 + ], + [ + 70.28637997128624, + 16.207940268511 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.28637997128624, + 16.931371828019614 + ], + [ + 70.28637997128624, + 17.65480338752823 + ], + [ + 71.0256652458736, + 16.931371828019614 + ], + [ + 70.28637997128624, + 16.931371828019614 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.28637997128624, + 17.65480338752823 + ], + [ + 71.0256652458736, + 17.65480338752823 + ], + [ + 71.0256652458736, + 16.931371828019614 + ], + [ + 70.28637997128624, + 17.65480338752823 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.28637997128624, + 17.65480338752823 + ], + [ + 70.28637997128624, + 18.378234947036844 + ], + [ + 71.0256652458736, + 18.378234947036844 + ], + [ + 70.28637997128624, + 17.65480338752823 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.28637997128624, + 17.65480338752823 + ], + [ + 71.0256652458736, + 18.378234947036844 + ], + [ + 71.0256652458736, + 17.65480338752823 + ], + [ + 70.28637997128624, + 17.65480338752823 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.28637997128624, + 18.378234947036844 + ], + [ + 70.28637997128624, + 19.10166650654546 + ], + [ + 71.0256652458736, + 18.378234947036844 + ], + [ + 70.28637997128624, + 18.378234947036844 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.28637997128624, + 19.10166650654546 + ], + [ + 71.0256652458736, + 19.10166650654546 + ], + [ + 71.0256652458736, + 18.378234947036844 + ], + [ + 70.28637997128624, + 19.10166650654546 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.28637997128624, + 19.10166650654546 + ], + [ + 70.28637997128624, + 19.825098066054075 + ], + [ + 71.0256652458736, + 19.825098066054075 + ], + [ + 70.28637997128624, + 19.10166650654546 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.28637997128624, + 19.10166650654546 + ], + [ + 71.0256652458736, + 19.825098066054075 + ], + [ + 71.0256652458736, + 19.10166650654546 + ], + [ + 70.28637997128624, + 19.10166650654546 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.28637997128624, + 19.825098066054075 + ], + [ + 70.28637997128624, + 20.54852962556269 + ], + [ + 71.0256652458736, + 19.825098066054075 + ], + [ + 70.28637997128624, + 19.825098066054075 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.28637997128624, + 20.54852962556269 + ], + [ + 71.0256652458736, + 20.54852962556269 + ], + [ + 71.0256652458736, + 19.825098066054075 + ], + [ + 70.28637997128624, + 20.54852962556269 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.28637997128624, + 20.54852962556269 + ], + [ + 70.28637997128624, + 21.271961185071305 + ], + [ + 71.0256652458736, + 21.271961185071305 + ], + [ + 70.28637997128624, + 20.54852962556269 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.28637997128624, + 20.54852962556269 + ], + [ + 71.0256652458736, + 21.271961185071305 + ], + [ + 71.0256652458736, + 20.54852962556269 + ], + [ + 70.28637997128624, + 20.54852962556269 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.28637997128624, + 21.271961185071305 + ], + [ + 70.28637997128624, + 21.99539274457992 + ], + [ + 71.0256652458736, + 21.271961185071305 + ], + [ + 70.28637997128624, + 21.271961185071305 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.28637997128624, + 21.99539274457992 + ], + [ + 71.0256652458736, + 21.99539274457992 + ], + [ + 71.0256652458736, + 21.271961185071305 + ], + [ + 70.28637997128624, + 21.99539274457992 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.28637997128624, + 21.99539274457992 + ], + [ + 70.28637997128624, + 22.718824304088535 + ], + [ + 71.0256652458736, + 22.718824304088535 + ], + [ + 70.28637997128624, + 21.99539274457992 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.28637997128624, + 21.99539274457992 + ], + [ + 71.0256652458736, + 22.718824304088535 + ], + [ + 71.0256652458736, + 21.99539274457992 + ], + [ + 70.28637997128624, + 21.99539274457992 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.28637997128624, + 22.718824304088535 + ], + [ + 70.28637997128624, + 23.44225586359715 + ], + [ + 71.0256652458736, + 22.718824304088535 + ], + [ + 70.28637997128624, + 22.718824304088535 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.28637997128624, + 23.44225586359715 + ], + [ + 71.0256652458736, + 23.44225586359715 + ], + [ + 71.0256652458736, + 22.718824304088535 + ], + [ + 70.28637997128624, + 23.44225586359715 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.28637997128624, + 23.44225586359715 + ], + [ + 70.28637997128624, + 24.165687423105766 + ], + [ + 71.0256652458736, + 24.165687423105766 + ], + [ + 70.28637997128624, + 23.44225586359715 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.28637997128624, + 23.44225586359715 + ], + [ + 71.0256652458736, + 24.165687423105766 + ], + [ + 71.0256652458736, + 23.44225586359715 + ], + [ + 70.28637997128624, + 23.44225586359715 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.28637997128624, + 24.165687423105766 + ], + [ + 70.28637997128624, + 24.88911898261438 + ], + [ + 71.0256652458736, + 24.165687423105766 + ], + [ + 70.28637997128624, + 24.165687423105766 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.28637997128624, + 24.88911898261438 + ], + [ + 71.0256652458736, + 24.88911898261438 + ], + [ + 71.0256652458736, + 24.165687423105766 + ], + [ + 70.28637997128624, + 24.88911898261438 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.28637997128624, + 24.88911898261438 + ], + [ + 70.28637997128624, + 25.612550542122996 + ], + [ + 71.0256652458736, + 25.612550542122996 + ], + [ + 70.28637997128624, + 24.88911898261438 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.28637997128624, + 24.88911898261438 + ], + [ + 71.0256652458736, + 25.612550542122996 + ], + [ + 71.0256652458736, + 24.88911898261438 + ], + [ + 70.28637997128624, + 24.88911898261438 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.28637997128624, + 25.612550542122996 + ], + [ + 70.28637997128624, + 26.33598210163161 + ], + [ + 71.0256652458736, + 25.612550542122996 + ], + [ + 70.28637997128624, + 25.612550542122996 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.28637997128624, + 26.33598210163161 + ], + [ + 71.0256652458736, + 26.33598210163161 + ], + [ + 71.0256652458736, + 25.612550542122996 + ], + [ + 70.28637997128624, + 26.33598210163161 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.28637997128624, + 26.33598210163161 + ], + [ + 70.28637997128624, + 27.059413661140226 + ], + [ + 71.0256652458736, + 27.059413661140226 + ], + [ + 70.28637997128624, + 26.33598210163161 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.28637997128624, + 26.33598210163161 + ], + [ + 71.0256652458736, + 27.059413661140226 + ], + [ + 71.0256652458736, + 26.33598210163161 + ], + [ + 70.28637997128624, + 26.33598210163161 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.28637997128624, + 27.059413661140226 + ], + [ + 70.28637997128624, + 27.78284522064884 + ], + [ + 71.0256652458736, + 27.059413661140226 + ], + [ + 70.28637997128624, + 27.059413661140226 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.28637997128624, + 27.78284522064884 + ], + [ + 71.0256652458736, + 27.78284522064884 + ], + [ + 71.0256652458736, + 27.059413661140226 + ], + [ + 70.28637997128624, + 27.78284522064884 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.28637997128624, + 27.78284522064884 + ], + [ + 70.28637997128624, + 28.506276780157457 + ], + [ + 71.0256652458736, + 28.506276780157457 + ], + [ + 70.28637997128624, + 27.78284522064884 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.28637997128624, + 27.78284522064884 + ], + [ + 71.0256652458736, + 28.506276780157457 + ], + [ + 71.0256652458736, + 27.78284522064884 + ], + [ + 70.28637997128624, + 27.78284522064884 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.28637997128624, + 28.506276780157457 + ], + [ + 70.28637997128624, + 29.22970833966607 + ], + [ + 71.0256652458736, + 28.506276780157457 + ], + [ + 70.28637997128624, + 28.506276780157457 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.28637997128624, + 29.22970833966607 + ], + [ + 71.0256652458736, + 29.22970833966607 + ], + [ + 71.0256652458736, + 28.506276780157457 + ], + [ + 70.28637997128624, + 29.22970833966607 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.28637997128624, + 29.22970833966607 + ], + [ + 70.28637997128624, + 29.953139899174687 + ], + [ + 71.0256652458736, + 29.953139899174687 + ], + [ + 70.28637997128624, + 29.22970833966607 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.28637997128624, + 29.22970833966607 + ], + [ + 71.0256652458736, + 29.953139899174687 + ], + [ + 71.0256652458736, + 29.22970833966607 + ], + [ + 70.28637997128624, + 29.22970833966607 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.28637997128624, + 29.953139899174687 + ], + [ + 70.28637997128624, + 30.676571458683302 + ], + [ + 71.0256652458736, + 29.953139899174687 + ], + [ + 70.28637997128624, + 29.953139899174687 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.28637997128624, + 30.676571458683302 + ], + [ + 71.0256652458736, + 30.676571458683302 + ], + [ + 71.0256652458736, + 29.953139899174687 + ], + [ + 70.28637997128624, + 30.676571458683302 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.28637997128624, + 30.676571458683302 + ], + [ + 70.28637997128624, + 31.400003018191917 + ], + [ + 71.0256652458736, + 31.400003018191917 + ], + [ + 70.28637997128624, + 30.676571458683302 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.28637997128624, + 30.676571458683302 + ], + [ + 71.0256652458736, + 31.400003018191917 + ], + [ + 71.0256652458736, + 30.676571458683302 + ], + [ + 70.28637997128624, + 30.676571458683302 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.28637997128624, + 31.400003018191917 + ], + [ + 70.28637997128624, + 32.123434577700536 + ], + [ + 71.0256652458736, + 31.400003018191917 + ], + [ + 70.28637997128624, + 31.400003018191917 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.28637997128624, + 32.123434577700536 + ], + [ + 71.0256652458736, + 32.123434577700536 + ], + [ + 71.0256652458736, + 31.400003018191917 + ], + [ + 70.28637997128624, + 32.123434577700536 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.28637997128624, + 32.123434577700536 + ], + [ + 70.28637997128624, + 32.84686613720915 + ], + [ + 71.0256652458736, + 32.84686613720915 + ], + [ + 70.28637997128624, + 32.123434577700536 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.28637997128624, + 32.123434577700536 + ], + [ + 71.0256652458736, + 32.84686613720915 + ], + [ + 71.0256652458736, + 32.123434577700536 + ], + [ + 70.28637997128624, + 32.123434577700536 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.28637997128624, + 32.84686613720915 + ], + [ + 70.28637997128624, + 33.57029769671776 + ], + [ + 71.0256652458736, + 32.84686613720915 + ], + [ + 70.28637997128624, + 32.84686613720915 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.28637997128624, + 33.57029769671776 + ], + [ + 71.0256652458736, + 33.57029769671776 + ], + [ + 71.0256652458736, + 32.84686613720915 + ], + [ + 70.28637997128624, + 33.57029769671776 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.28637997128624, + 33.57029769671776 + ], + [ + 70.28637997128624, + 34.29372925622637 + ], + [ + 71.0256652458736, + 34.29372925622637 + ], + [ + 70.28637997128624, + 33.57029769671776 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.28637997128624, + 33.57029769671776 + ], + [ + 71.0256652458736, + 34.29372925622637 + ], + [ + 71.0256652458736, + 33.57029769671776 + ], + [ + 70.28637997128624, + 33.57029769671776 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.28637997128624, + 34.29372925622637 + ], + [ + 70.28637997128624, + 35.01716081573498 + ], + [ + 71.0256652458736, + 34.29372925622637 + ], + [ + 70.28637997128624, + 34.29372925622637 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.28637997128624, + 35.01716081573498 + ], + [ + 71.0256652458736, + 35.01716081573498 + ], + [ + 71.0256652458736, + 34.29372925622637 + ], + [ + 70.28637997128624, + 35.01716081573498 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.28637997128624, + 35.01716081573498 + ], + [ + 70.28637997128624, + 35.740592375243594 + ], + [ + 71.0256652458736, + 35.740592375243594 + ], + [ + 70.28637997128624, + 35.01716081573498 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.28637997128624, + 35.01716081573498 + ], + [ + 71.0256652458736, + 35.740592375243594 + ], + [ + 71.0256652458736, + 35.01716081573498 + ], + [ + 70.28637997128624, + 35.01716081573498 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.28637997128624, + 35.740592375243594 + ], + [ + 70.28637997128624, + 36.464023934752205 + ], + [ + 71.0256652458736, + 35.740592375243594 + ], + [ + 70.28637997128624, + 35.740592375243594 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.28637997128624, + 36.464023934752205 + ], + [ + 71.0256652458736, + 36.464023934752205 + ], + [ + 71.0256652458736, + 35.740592375243594 + ], + [ + 70.28637997128624, + 36.464023934752205 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.28637997128624, + 36.464023934752205 + ], + [ + 70.28637997128624, + 37.18745549426082 + ], + [ + 71.0256652458736, + 37.18745549426082 + ], + [ + 70.28637997128624, + 36.464023934752205 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.28637997128624, + 36.464023934752205 + ], + [ + 71.0256652458736, + 37.18745549426082 + ], + [ + 71.0256652458736, + 36.464023934752205 + ], + [ + 70.28637997128624, + 36.464023934752205 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.28637997128624, + 37.18745549426082 + ], + [ + 70.28637997128624, + 37.91088705376943 + ], + [ + 71.0256652458736, + 37.18745549426082 + ], + [ + 70.28637997128624, + 37.18745549426082 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.28637997128624, + 37.91088705376943 + ], + [ + 71.0256652458736, + 37.91088705376943 + ], + [ + 71.0256652458736, + 37.18745549426082 + ], + [ + 70.28637997128624, + 37.91088705376943 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.28637997128624, + 37.91088705376943 + ], + [ + 70.28637997128624, + 38.63431861327804 + ], + [ + 71.0256652458736, + 38.63431861327804 + ], + [ + 70.28637997128624, + 37.91088705376943 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.28637997128624, + 37.91088705376943 + ], + [ + 71.0256652458736, + 38.63431861327804 + ], + [ + 71.0256652458736, + 37.91088705376943 + ], + [ + 70.28637997128624, + 37.91088705376943 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.28637997128624, + 38.63431861327804 + ], + [ + 70.28637997128624, + 39.35775017278665 + ], + [ + 71.0256652458736, + 38.63431861327804 + ], + [ + 70.28637997128624, + 38.63431861327804 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.28637997128624, + 39.35775017278665 + ], + [ + 71.0256652458736, + 39.35775017278665 + ], + [ + 71.0256652458736, + 38.63431861327804 + ], + [ + 70.28637997128624, + 39.35775017278665 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.28637997128624, + 39.35775017278665 + ], + [ + 70.28637997128624, + 40.08118173229526 + ], + [ + 71.0256652458736, + 40.08118173229526 + ], + [ + 70.28637997128624, + 39.35775017278665 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.28637997128624, + 39.35775017278665 + ], + [ + 71.0256652458736, + 40.08118173229526 + ], + [ + 71.0256652458736, + 39.35775017278665 + ], + [ + 70.28637997128624, + 39.35775017278665 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.28637997128624, + 40.08118173229526 + ], + [ + 70.28637997128624, + 40.804613291803875 + ], + [ + 71.0256652458736, + 40.08118173229526 + ], + [ + 70.28637997128624, + 40.08118173229526 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.28637997128624, + 40.804613291803875 + ], + [ + 71.0256652458736, + 40.804613291803875 + ], + [ + 71.0256652458736, + 40.08118173229526 + ], + [ + 70.28637997128624, + 40.804613291803875 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.28637997128624, + 40.804613291803875 + ], + [ + 70.28637997128624, + 41.52804485131249 + ], + [ + 71.0256652458736, + 41.52804485131249 + ], + [ + 70.28637997128624, + 40.804613291803875 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.28637997128624, + 40.804613291803875 + ], + [ + 71.0256652458736, + 41.52804485131249 + ], + [ + 71.0256652458736, + 40.804613291803875 + ], + [ + 70.28637997128624, + 40.804613291803875 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.28637997128624, + 41.52804485131249 + ], + [ + 70.28637997128624, + 42.2514764108211 + ], + [ + 71.0256652458736, + 41.52804485131249 + ], + [ + 70.28637997128624, + 41.52804485131249 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.28637997128624, + 42.2514764108211 + ], + [ + 71.0256652458736, + 42.2514764108211 + ], + [ + 71.0256652458736, + 41.52804485131249 + ], + [ + 70.28637997128624, + 42.2514764108211 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.28637997128624, + 42.2514764108211 + ], + [ + 70.28637997128624, + 42.97490797032971 + ], + [ + 71.0256652458736, + 42.97490797032971 + ], + [ + 70.28637997128624, + 42.2514764108211 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.28637997128624, + 42.2514764108211 + ], + [ + 71.0256652458736, + 42.97490797032971 + ], + [ + 71.0256652458736, + 42.2514764108211 + ], + [ + 70.28637997128624, + 42.2514764108211 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.28637997128624, + 42.97490797032971 + ], + [ + 70.28637997128624, + 43.69833952983832 + ], + [ + 71.0256652458736, + 42.97490797032971 + ], + [ + 70.28637997128624, + 42.97490797032971 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.28637997128624, + 43.69833952983832 + ], + [ + 71.0256652458736, + 43.69833952983832 + ], + [ + 71.0256652458736, + 42.97490797032971 + ], + [ + 70.28637997128624, + 43.69833952983832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.28637997128624, + 43.69833952983832 + ], + [ + 70.28637997128624, + 44.42177108934693 + ], + [ + 71.0256652458736, + 44.42177108934693 + ], + [ + 70.28637997128624, + 43.69833952983832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.28637997128624, + 43.69833952983832 + ], + [ + 71.0256652458736, + 44.42177108934693 + ], + [ + 71.0256652458736, + 43.69833952983832 + ], + [ + 70.28637997128624, + 43.69833952983832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.28637997128624, + 44.42177108934693 + ], + [ + 70.28637997128624, + 45.145202648855545 + ], + [ + 71.0256652458736, + 44.42177108934693 + ], + [ + 70.28637997128624, + 44.42177108934693 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.28637997128624, + 45.145202648855545 + ], + [ + 71.0256652458736, + 45.145202648855545 + ], + [ + 71.0256652458736, + 44.42177108934693 + ], + [ + 70.28637997128624, + 45.145202648855545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.28637997128624, + 45.145202648855545 + ], + [ + 70.28637997128624, + 45.868634208364156 + ], + [ + 71.0256652458736, + 45.868634208364156 + ], + [ + 70.28637997128624, + 45.145202648855545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.28637997128624, + 45.145202648855545 + ], + [ + 71.0256652458736, + 45.868634208364156 + ], + [ + 71.0256652458736, + 45.145202648855545 + ], + [ + 70.28637997128624, + 45.145202648855545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.28637997128624, + 45.868634208364156 + ], + [ + 70.28637997128624, + 46.59206576787277 + ], + [ + 71.0256652458736, + 45.868634208364156 + ], + [ + 70.28637997128624, + 45.868634208364156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.28637997128624, + 46.59206576787277 + ], + [ + 71.0256652458736, + 46.59206576787277 + ], + [ + 71.0256652458736, + 45.868634208364156 + ], + [ + 70.28637997128624, + 46.59206576787277 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.28637997128624, + 46.59206576787277 + ], + [ + 70.28637997128624, + 47.31549732738138 + ], + [ + 71.0256652458736, + 47.31549732738138 + ], + [ + 70.28637997128624, + 46.59206576787277 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.28637997128624, + 46.59206576787277 + ], + [ + 71.0256652458736, + 47.31549732738138 + ], + [ + 71.0256652458736, + 46.59206576787277 + ], + [ + 70.28637997128624, + 46.59206576787277 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.28637997128624, + 47.31549732738138 + ], + [ + 70.28637997128624, + 48.03892888688999 + ], + [ + 71.0256652458736, + 47.31549732738138 + ], + [ + 70.28637997128624, + 47.31549732738138 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 70.28637997128624, + 48.03892888688999 + ], + [ + 71.0256652458736, + 48.03892888688999 + ], + [ + 71.0256652458736, + 47.31549732738138 + ], + [ + 70.28637997128624, + 48.03892888688999 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.0256652458736, + 11.867350911459308 + ], + [ + 71.0256652458736, + 12.590782470967923 + ], + [ + 71.76495052046096, + 11.867350911459308 + ], + [ + 71.0256652458736, + 11.867350911459308 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.0256652458736, + 12.590782470967923 + ], + [ + 71.76495052046096, + 12.590782470967923 + ], + [ + 71.76495052046096, + 11.867350911459308 + ], + [ + 71.0256652458736, + 12.590782470967923 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.0256652458736, + 12.590782470967923 + ], + [ + 71.76495052046096, + 13.314214030476538 + ], + [ + 71.76495052046096, + 12.590782470967923 + ], + [ + 71.0256652458736, + 12.590782470967923 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.0256652458736, + 12.590782470967923 + ], + [ + 71.0256652458736, + 13.314214030476538 + ], + [ + 71.76495052046096, + 13.314214030476538 + ], + [ + 71.0256652458736, + 12.590782470967923 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.0256652458736, + 13.314214030476538 + ], + [ + 71.0256652458736, + 14.037645589985154 + ], + [ + 71.76495052046096, + 13.314214030476538 + ], + [ + 71.0256652458736, + 13.314214030476538 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.0256652458736, + 14.037645589985154 + ], + [ + 71.76495052046096, + 14.037645589985154 + ], + [ + 71.76495052046096, + 13.314214030476538 + ], + [ + 71.0256652458736, + 14.037645589985154 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.0256652458736, + 14.037645589985154 + ], + [ + 71.76495052046096, + 14.761077149493769 + ], + [ + 71.76495052046096, + 14.037645589985154 + ], + [ + 71.0256652458736, + 14.037645589985154 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.0256652458736, + 14.037645589985154 + ], + [ + 71.0256652458736, + 14.761077149493769 + ], + [ + 71.76495052046096, + 14.761077149493769 + ], + [ + 71.0256652458736, + 14.037645589985154 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.0256652458736, + 14.761077149493769 + ], + [ + 71.0256652458736, + 15.484508709002384 + ], + [ + 71.76495052046096, + 14.761077149493769 + ], + [ + 71.0256652458736, + 14.761077149493769 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.0256652458736, + 15.484508709002384 + ], + [ + 71.76495052046096, + 15.484508709002384 + ], + [ + 71.76495052046096, + 14.761077149493769 + ], + [ + 71.0256652458736, + 15.484508709002384 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.0256652458736, + 15.484508709002384 + ], + [ + 71.76495052046096, + 16.207940268511 + ], + [ + 71.76495052046096, + 15.484508709002384 + ], + [ + 71.0256652458736, + 15.484508709002384 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.0256652458736, + 15.484508709002384 + ], + [ + 71.0256652458736, + 16.207940268511 + ], + [ + 71.76495052046096, + 16.207940268511 + ], + [ + 71.0256652458736, + 15.484508709002384 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.0256652458736, + 16.207940268511 + ], + [ + 71.0256652458736, + 16.931371828019614 + ], + [ + 71.76495052046096, + 16.207940268511 + ], + [ + 71.0256652458736, + 16.207940268511 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.0256652458736, + 16.931371828019614 + ], + [ + 71.76495052046096, + 16.931371828019614 + ], + [ + 71.76495052046096, + 16.207940268511 + ], + [ + 71.0256652458736, + 16.931371828019614 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.0256652458736, + 16.931371828019614 + ], + [ + 71.76495052046096, + 17.65480338752823 + ], + [ + 71.76495052046096, + 16.931371828019614 + ], + [ + 71.0256652458736, + 16.931371828019614 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.0256652458736, + 16.931371828019614 + ], + [ + 71.0256652458736, + 17.65480338752823 + ], + [ + 71.76495052046096, + 17.65480338752823 + ], + [ + 71.0256652458736, + 16.931371828019614 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.0256652458736, + 17.65480338752823 + ], + [ + 71.0256652458736, + 18.378234947036844 + ], + [ + 71.76495052046096, + 17.65480338752823 + ], + [ + 71.0256652458736, + 17.65480338752823 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.0256652458736, + 18.378234947036844 + ], + [ + 71.76495052046096, + 18.378234947036844 + ], + [ + 71.76495052046096, + 17.65480338752823 + ], + [ + 71.0256652458736, + 18.378234947036844 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.0256652458736, + 18.378234947036844 + ], + [ + 71.76495052046096, + 19.10166650654546 + ], + [ + 71.76495052046096, + 18.378234947036844 + ], + [ + 71.0256652458736, + 18.378234947036844 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.0256652458736, + 18.378234947036844 + ], + [ + 71.0256652458736, + 19.10166650654546 + ], + [ + 71.76495052046096, + 19.10166650654546 + ], + [ + 71.0256652458736, + 18.378234947036844 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.0256652458736, + 19.10166650654546 + ], + [ + 71.0256652458736, + 19.825098066054075 + ], + [ + 71.76495052046096, + 19.10166650654546 + ], + [ + 71.0256652458736, + 19.10166650654546 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.0256652458736, + 19.825098066054075 + ], + [ + 71.76495052046096, + 19.825098066054075 + ], + [ + 71.76495052046096, + 19.10166650654546 + ], + [ + 71.0256652458736, + 19.825098066054075 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.0256652458736, + 19.825098066054075 + ], + [ + 71.76495052046096, + 20.54852962556269 + ], + [ + 71.76495052046096, + 19.825098066054075 + ], + [ + 71.0256652458736, + 19.825098066054075 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.0256652458736, + 19.825098066054075 + ], + [ + 71.0256652458736, + 20.54852962556269 + ], + [ + 71.76495052046096, + 20.54852962556269 + ], + [ + 71.0256652458736, + 19.825098066054075 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.0256652458736, + 20.54852962556269 + ], + [ + 71.0256652458736, + 21.271961185071305 + ], + [ + 71.76495052046096, + 20.54852962556269 + ], + [ + 71.0256652458736, + 20.54852962556269 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.0256652458736, + 21.271961185071305 + ], + [ + 71.76495052046096, + 21.271961185071305 + ], + [ + 71.76495052046096, + 20.54852962556269 + ], + [ + 71.0256652458736, + 21.271961185071305 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.0256652458736, + 21.271961185071305 + ], + [ + 71.76495052046096, + 21.99539274457992 + ], + [ + 71.76495052046096, + 21.271961185071305 + ], + [ + 71.0256652458736, + 21.271961185071305 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.0256652458736, + 21.271961185071305 + ], + [ + 71.0256652458736, + 21.99539274457992 + ], + [ + 71.76495052046096, + 21.99539274457992 + ], + [ + 71.0256652458736, + 21.271961185071305 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.0256652458736, + 21.99539274457992 + ], + [ + 71.0256652458736, + 22.718824304088535 + ], + [ + 71.76495052046096, + 21.99539274457992 + ], + [ + 71.0256652458736, + 21.99539274457992 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.0256652458736, + 22.718824304088535 + ], + [ + 71.76495052046096, + 22.718824304088535 + ], + [ + 71.76495052046096, + 21.99539274457992 + ], + [ + 71.0256652458736, + 22.718824304088535 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.0256652458736, + 22.718824304088535 + ], + [ + 71.76495052046096, + 23.44225586359715 + ], + [ + 71.76495052046096, + 22.718824304088535 + ], + [ + 71.0256652458736, + 22.718824304088535 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.0256652458736, + 22.718824304088535 + ], + [ + 71.0256652458736, + 23.44225586359715 + ], + [ + 71.76495052046096, + 23.44225586359715 + ], + [ + 71.0256652458736, + 22.718824304088535 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.0256652458736, + 23.44225586359715 + ], + [ + 71.0256652458736, + 24.165687423105766 + ], + [ + 71.76495052046096, + 23.44225586359715 + ], + [ + 71.0256652458736, + 23.44225586359715 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.0256652458736, + 24.165687423105766 + ], + [ + 71.76495052046096, + 24.165687423105766 + ], + [ + 71.76495052046096, + 23.44225586359715 + ], + [ + 71.0256652458736, + 24.165687423105766 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.0256652458736, + 24.165687423105766 + ], + [ + 71.76495052046096, + 24.88911898261438 + ], + [ + 71.76495052046096, + 24.165687423105766 + ], + [ + 71.0256652458736, + 24.165687423105766 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.0256652458736, + 24.165687423105766 + ], + [ + 71.0256652458736, + 24.88911898261438 + ], + [ + 71.76495052046096, + 24.88911898261438 + ], + [ + 71.0256652458736, + 24.165687423105766 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.0256652458736, + 24.88911898261438 + ], + [ + 71.0256652458736, + 25.612550542122996 + ], + [ + 71.76495052046096, + 24.88911898261438 + ], + [ + 71.0256652458736, + 24.88911898261438 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.0256652458736, + 25.612550542122996 + ], + [ + 71.76495052046096, + 25.612550542122996 + ], + [ + 71.76495052046096, + 24.88911898261438 + ], + [ + 71.0256652458736, + 25.612550542122996 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.0256652458736, + 25.612550542122996 + ], + [ + 71.76495052046096, + 26.33598210163161 + ], + [ + 71.76495052046096, + 25.612550542122996 + ], + [ + 71.0256652458736, + 25.612550542122996 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.0256652458736, + 25.612550542122996 + ], + [ + 71.0256652458736, + 26.33598210163161 + ], + [ + 71.76495052046096, + 26.33598210163161 + ], + [ + 71.0256652458736, + 25.612550542122996 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.0256652458736, + 26.33598210163161 + ], + [ + 71.0256652458736, + 27.059413661140226 + ], + [ + 71.76495052046096, + 26.33598210163161 + ], + [ + 71.0256652458736, + 26.33598210163161 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.0256652458736, + 27.059413661140226 + ], + [ + 71.76495052046096, + 27.059413661140226 + ], + [ + 71.76495052046096, + 26.33598210163161 + ], + [ + 71.0256652458736, + 27.059413661140226 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.0256652458736, + 27.059413661140226 + ], + [ + 71.76495052046096, + 27.78284522064884 + ], + [ + 71.76495052046096, + 27.059413661140226 + ], + [ + 71.0256652458736, + 27.059413661140226 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.0256652458736, + 27.059413661140226 + ], + [ + 71.0256652458736, + 27.78284522064884 + ], + [ + 71.76495052046096, + 27.78284522064884 + ], + [ + 71.0256652458736, + 27.059413661140226 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.0256652458736, + 27.78284522064884 + ], + [ + 71.0256652458736, + 28.506276780157457 + ], + [ + 71.76495052046096, + 27.78284522064884 + ], + [ + 71.0256652458736, + 27.78284522064884 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.0256652458736, + 28.506276780157457 + ], + [ + 71.76495052046096, + 28.506276780157457 + ], + [ + 71.76495052046096, + 27.78284522064884 + ], + [ + 71.0256652458736, + 28.506276780157457 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.0256652458736, + 28.506276780157457 + ], + [ + 71.76495052046096, + 29.22970833966607 + ], + [ + 71.76495052046096, + 28.506276780157457 + ], + [ + 71.0256652458736, + 28.506276780157457 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.0256652458736, + 28.506276780157457 + ], + [ + 71.0256652458736, + 29.22970833966607 + ], + [ + 71.76495052046096, + 29.22970833966607 + ], + [ + 71.0256652458736, + 28.506276780157457 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.0256652458736, + 29.22970833966607 + ], + [ + 71.0256652458736, + 29.953139899174687 + ], + [ + 71.76495052046096, + 29.22970833966607 + ], + [ + 71.0256652458736, + 29.22970833966607 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.0256652458736, + 29.953139899174687 + ], + [ + 71.76495052046096, + 29.953139899174687 + ], + [ + 71.76495052046096, + 29.22970833966607 + ], + [ + 71.0256652458736, + 29.953139899174687 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.0256652458736, + 29.953139899174687 + ], + [ + 71.76495052046096, + 30.676571458683302 + ], + [ + 71.76495052046096, + 29.953139899174687 + ], + [ + 71.0256652458736, + 29.953139899174687 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.0256652458736, + 29.953139899174687 + ], + [ + 71.0256652458736, + 30.676571458683302 + ], + [ + 71.76495052046096, + 30.676571458683302 + ], + [ + 71.0256652458736, + 29.953139899174687 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.0256652458736, + 30.676571458683302 + ], + [ + 71.0256652458736, + 31.400003018191917 + ], + [ + 71.76495052046096, + 30.676571458683302 + ], + [ + 71.0256652458736, + 30.676571458683302 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.0256652458736, + 31.400003018191917 + ], + [ + 71.76495052046096, + 31.400003018191917 + ], + [ + 71.76495052046096, + 30.676571458683302 + ], + [ + 71.0256652458736, + 31.400003018191917 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.0256652458736, + 31.400003018191917 + ], + [ + 71.76495052046096, + 32.123434577700536 + ], + [ + 71.76495052046096, + 31.400003018191917 + ], + [ + 71.0256652458736, + 31.400003018191917 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.0256652458736, + 31.400003018191917 + ], + [ + 71.0256652458736, + 32.123434577700536 + ], + [ + 71.76495052046096, + 32.123434577700536 + ], + [ + 71.0256652458736, + 31.400003018191917 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.0256652458736, + 32.123434577700536 + ], + [ + 71.0256652458736, + 32.84686613720915 + ], + [ + 71.76495052046096, + 32.123434577700536 + ], + [ + 71.0256652458736, + 32.123434577700536 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.0256652458736, + 32.84686613720915 + ], + [ + 71.76495052046096, + 32.84686613720915 + ], + [ + 71.76495052046096, + 32.123434577700536 + ], + [ + 71.0256652458736, + 32.84686613720915 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.0256652458736, + 32.84686613720915 + ], + [ + 71.76495052046096, + 33.57029769671776 + ], + [ + 71.76495052046096, + 32.84686613720915 + ], + [ + 71.0256652458736, + 32.84686613720915 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.0256652458736, + 32.84686613720915 + ], + [ + 71.0256652458736, + 33.57029769671776 + ], + [ + 71.76495052046096, + 33.57029769671776 + ], + [ + 71.0256652458736, + 32.84686613720915 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.0256652458736, + 33.57029769671776 + ], + [ + 71.0256652458736, + 34.29372925622637 + ], + [ + 71.76495052046096, + 33.57029769671776 + ], + [ + 71.0256652458736, + 33.57029769671776 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.0256652458736, + 34.29372925622637 + ], + [ + 71.76495052046096, + 34.29372925622637 + ], + [ + 71.76495052046096, + 33.57029769671776 + ], + [ + 71.0256652458736, + 34.29372925622637 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.0256652458736, + 34.29372925622637 + ], + [ + 71.76495052046096, + 35.01716081573498 + ], + [ + 71.76495052046096, + 34.29372925622637 + ], + [ + 71.0256652458736, + 34.29372925622637 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.0256652458736, + 34.29372925622637 + ], + [ + 71.0256652458736, + 35.01716081573498 + ], + [ + 71.76495052046096, + 35.01716081573498 + ], + [ + 71.0256652458736, + 34.29372925622637 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.0256652458736, + 35.01716081573498 + ], + [ + 71.0256652458736, + 35.740592375243594 + ], + [ + 71.76495052046096, + 35.01716081573498 + ], + [ + 71.0256652458736, + 35.01716081573498 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.0256652458736, + 35.740592375243594 + ], + [ + 71.76495052046096, + 35.740592375243594 + ], + [ + 71.76495052046096, + 35.01716081573498 + ], + [ + 71.0256652458736, + 35.740592375243594 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.0256652458736, + 35.740592375243594 + ], + [ + 71.76495052046096, + 36.464023934752205 + ], + [ + 71.76495052046096, + 35.740592375243594 + ], + [ + 71.0256652458736, + 35.740592375243594 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.0256652458736, + 35.740592375243594 + ], + [ + 71.0256652458736, + 36.464023934752205 + ], + [ + 71.76495052046096, + 36.464023934752205 + ], + [ + 71.0256652458736, + 35.740592375243594 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.0256652458736, + 36.464023934752205 + ], + [ + 71.0256652458736, + 37.18745549426082 + ], + [ + 71.76495052046096, + 36.464023934752205 + ], + [ + 71.0256652458736, + 36.464023934752205 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.0256652458736, + 37.18745549426082 + ], + [ + 71.76495052046096, + 37.18745549426082 + ], + [ + 71.76495052046096, + 36.464023934752205 + ], + [ + 71.0256652458736, + 37.18745549426082 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.0256652458736, + 37.18745549426082 + ], + [ + 71.76495052046096, + 37.91088705376943 + ], + [ + 71.76495052046096, + 37.18745549426082 + ], + [ + 71.0256652458736, + 37.18745549426082 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.0256652458736, + 37.18745549426082 + ], + [ + 71.0256652458736, + 37.91088705376943 + ], + [ + 71.76495052046096, + 37.91088705376943 + ], + [ + 71.0256652458736, + 37.18745549426082 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.0256652458736, + 37.91088705376943 + ], + [ + 71.0256652458736, + 38.63431861327804 + ], + [ + 71.76495052046096, + 37.91088705376943 + ], + [ + 71.0256652458736, + 37.91088705376943 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.0256652458736, + 38.63431861327804 + ], + [ + 71.76495052046096, + 38.63431861327804 + ], + [ + 71.76495052046096, + 37.91088705376943 + ], + [ + 71.0256652458736, + 38.63431861327804 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.0256652458736, + 38.63431861327804 + ], + [ + 71.76495052046096, + 39.35775017278665 + ], + [ + 71.76495052046096, + 38.63431861327804 + ], + [ + 71.0256652458736, + 38.63431861327804 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.0256652458736, + 38.63431861327804 + ], + [ + 71.0256652458736, + 39.35775017278665 + ], + [ + 71.76495052046096, + 39.35775017278665 + ], + [ + 71.0256652458736, + 38.63431861327804 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.0256652458736, + 39.35775017278665 + ], + [ + 71.0256652458736, + 40.08118173229526 + ], + [ + 71.76495052046096, + 39.35775017278665 + ], + [ + 71.0256652458736, + 39.35775017278665 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.0256652458736, + 40.08118173229526 + ], + [ + 71.76495052046096, + 40.08118173229526 + ], + [ + 71.76495052046096, + 39.35775017278665 + ], + [ + 71.0256652458736, + 40.08118173229526 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.0256652458736, + 40.08118173229526 + ], + [ + 71.76495052046096, + 40.804613291803875 + ], + [ + 71.76495052046096, + 40.08118173229526 + ], + [ + 71.0256652458736, + 40.08118173229526 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.0256652458736, + 40.08118173229526 + ], + [ + 71.0256652458736, + 40.804613291803875 + ], + [ + 71.76495052046096, + 40.804613291803875 + ], + [ + 71.0256652458736, + 40.08118173229526 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.0256652458736, + 40.804613291803875 + ], + [ + 71.0256652458736, + 41.52804485131249 + ], + [ + 71.76495052046096, + 40.804613291803875 + ], + [ + 71.0256652458736, + 40.804613291803875 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.0256652458736, + 41.52804485131249 + ], + [ + 71.76495052046096, + 41.52804485131249 + ], + [ + 71.76495052046096, + 40.804613291803875 + ], + [ + 71.0256652458736, + 41.52804485131249 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.0256652458736, + 41.52804485131249 + ], + [ + 71.76495052046096, + 42.2514764108211 + ], + [ + 71.76495052046096, + 41.52804485131249 + ], + [ + 71.0256652458736, + 41.52804485131249 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.0256652458736, + 41.52804485131249 + ], + [ + 71.0256652458736, + 42.2514764108211 + ], + [ + 71.76495052046096, + 42.2514764108211 + ], + [ + 71.0256652458736, + 41.52804485131249 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.0256652458736, + 42.2514764108211 + ], + [ + 71.0256652458736, + 42.97490797032971 + ], + [ + 71.76495052046096, + 42.2514764108211 + ], + [ + 71.0256652458736, + 42.2514764108211 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.0256652458736, + 42.97490797032971 + ], + [ + 71.76495052046096, + 42.97490797032971 + ], + [ + 71.76495052046096, + 42.2514764108211 + ], + [ + 71.0256652458736, + 42.97490797032971 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.0256652458736, + 42.97490797032971 + ], + [ + 71.76495052046096, + 43.69833952983832 + ], + [ + 71.76495052046096, + 42.97490797032971 + ], + [ + 71.0256652458736, + 42.97490797032971 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.0256652458736, + 42.97490797032971 + ], + [ + 71.0256652458736, + 43.69833952983832 + ], + [ + 71.76495052046096, + 43.69833952983832 + ], + [ + 71.0256652458736, + 42.97490797032971 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.0256652458736, + 43.69833952983832 + ], + [ + 71.0256652458736, + 44.42177108934693 + ], + [ + 71.76495052046096, + 43.69833952983832 + ], + [ + 71.0256652458736, + 43.69833952983832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.0256652458736, + 44.42177108934693 + ], + [ + 71.76495052046096, + 44.42177108934693 + ], + [ + 71.76495052046096, + 43.69833952983832 + ], + [ + 71.0256652458736, + 44.42177108934693 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.0256652458736, + 44.42177108934693 + ], + [ + 71.76495052046096, + 45.145202648855545 + ], + [ + 71.76495052046096, + 44.42177108934693 + ], + [ + 71.0256652458736, + 44.42177108934693 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.0256652458736, + 44.42177108934693 + ], + [ + 71.0256652458736, + 45.145202648855545 + ], + [ + 71.76495052046096, + 45.145202648855545 + ], + [ + 71.0256652458736, + 44.42177108934693 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.0256652458736, + 45.145202648855545 + ], + [ + 71.0256652458736, + 45.868634208364156 + ], + [ + 71.76495052046096, + 45.145202648855545 + ], + [ + 71.0256652458736, + 45.145202648855545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.0256652458736, + 45.868634208364156 + ], + [ + 71.76495052046096, + 45.868634208364156 + ], + [ + 71.76495052046096, + 45.145202648855545 + ], + [ + 71.0256652458736, + 45.868634208364156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.0256652458736, + 45.868634208364156 + ], + [ + 71.76495052046096, + 46.59206576787277 + ], + [ + 71.76495052046096, + 45.868634208364156 + ], + [ + 71.0256652458736, + 45.868634208364156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.0256652458736, + 45.868634208364156 + ], + [ + 71.0256652458736, + 46.59206576787277 + ], + [ + 71.76495052046096, + 46.59206576787277 + ], + [ + 71.0256652458736, + 45.868634208364156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.0256652458736, + 46.59206576787277 + ], + [ + 71.0256652458736, + 47.31549732738138 + ], + [ + 71.76495052046096, + 46.59206576787277 + ], + [ + 71.0256652458736, + 46.59206576787277 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.0256652458736, + 47.31549732738138 + ], + [ + 71.76495052046096, + 47.31549732738138 + ], + [ + 71.76495052046096, + 46.59206576787277 + ], + [ + 71.0256652458736, + 47.31549732738138 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.0256652458736, + 47.31549732738138 + ], + [ + 71.76495052046096, + 48.03892888688999 + ], + [ + 71.76495052046096, + 47.31549732738138 + ], + [ + 71.0256652458736, + 47.31549732738138 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.0256652458736, + 47.31549732738138 + ], + [ + 71.0256652458736, + 48.03892888688999 + ], + [ + 71.76495052046096, + 48.03892888688999 + ], + [ + 71.0256652458736, + 47.31549732738138 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.76495052046096, + 11.867350911459308 + ], + [ + 71.76495052046096, + 12.590782470967923 + ], + [ + 72.50423579504832, + 12.590782470967923 + ], + [ + 71.76495052046096, + 11.867350911459308 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.76495052046096, + 11.867350911459308 + ], + [ + 72.50423579504832, + 12.590782470967923 + ], + [ + 72.50423579504832, + 11.867350911459308 + ], + [ + 71.76495052046096, + 11.867350911459308 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.76495052046096, + 12.590782470967923 + ], + [ + 71.76495052046096, + 13.314214030476538 + ], + [ + 72.50423579504832, + 12.590782470967923 + ], + [ + 71.76495052046096, + 12.590782470967923 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.76495052046096, + 13.314214030476538 + ], + [ + 72.50423579504832, + 13.314214030476538 + ], + [ + 72.50423579504832, + 12.590782470967923 + ], + [ + 71.76495052046096, + 13.314214030476538 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.76495052046096, + 13.314214030476538 + ], + [ + 71.76495052046096, + 14.037645589985154 + ], + [ + 72.50423579504832, + 14.037645589985154 + ], + [ + 71.76495052046096, + 13.314214030476538 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.76495052046096, + 13.314214030476538 + ], + [ + 72.50423579504832, + 14.037645589985154 + ], + [ + 72.50423579504832, + 13.314214030476538 + ], + [ + 71.76495052046096, + 13.314214030476538 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.76495052046096, + 14.037645589985154 + ], + [ + 71.76495052046096, + 14.761077149493769 + ], + [ + 72.50423579504832, + 14.037645589985154 + ], + [ + 71.76495052046096, + 14.037645589985154 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.76495052046096, + 14.761077149493769 + ], + [ + 72.50423579504832, + 14.761077149493769 + ], + [ + 72.50423579504832, + 14.037645589985154 + ], + [ + 71.76495052046096, + 14.761077149493769 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.76495052046096, + 14.761077149493769 + ], + [ + 71.76495052046096, + 15.484508709002384 + ], + [ + 72.50423579504832, + 15.484508709002384 + ], + [ + 71.76495052046096, + 14.761077149493769 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.76495052046096, + 14.761077149493769 + ], + [ + 72.50423579504832, + 15.484508709002384 + ], + [ + 72.50423579504832, + 14.761077149493769 + ], + [ + 71.76495052046096, + 14.761077149493769 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.76495052046096, + 15.484508709002384 + ], + [ + 71.76495052046096, + 16.207940268511 + ], + [ + 72.50423579504832, + 15.484508709002384 + ], + [ + 71.76495052046096, + 15.484508709002384 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.76495052046096, + 16.207940268511 + ], + [ + 72.50423579504832, + 16.207940268511 + ], + [ + 72.50423579504832, + 15.484508709002384 + ], + [ + 71.76495052046096, + 16.207940268511 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.76495052046096, + 16.207940268511 + ], + [ + 71.76495052046096, + 16.931371828019614 + ], + [ + 72.50423579504832, + 16.931371828019614 + ], + [ + 71.76495052046096, + 16.207940268511 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.76495052046096, + 16.207940268511 + ], + [ + 72.50423579504832, + 16.931371828019614 + ], + [ + 72.50423579504832, + 16.207940268511 + ], + [ + 71.76495052046096, + 16.207940268511 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.76495052046096, + 16.931371828019614 + ], + [ + 71.76495052046096, + 17.65480338752823 + ], + [ + 72.50423579504832, + 16.931371828019614 + ], + [ + 71.76495052046096, + 16.931371828019614 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.76495052046096, + 17.65480338752823 + ], + [ + 72.50423579504832, + 17.65480338752823 + ], + [ + 72.50423579504832, + 16.931371828019614 + ], + [ + 71.76495052046096, + 17.65480338752823 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.76495052046096, + 17.65480338752823 + ], + [ + 71.76495052046096, + 18.378234947036844 + ], + [ + 72.50423579504832, + 18.378234947036844 + ], + [ + 71.76495052046096, + 17.65480338752823 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.76495052046096, + 17.65480338752823 + ], + [ + 72.50423579504832, + 18.378234947036844 + ], + [ + 72.50423579504832, + 17.65480338752823 + ], + [ + 71.76495052046096, + 17.65480338752823 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.76495052046096, + 18.378234947036844 + ], + [ + 71.76495052046096, + 19.10166650654546 + ], + [ + 72.50423579504832, + 18.378234947036844 + ], + [ + 71.76495052046096, + 18.378234947036844 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.76495052046096, + 19.10166650654546 + ], + [ + 72.50423579504832, + 19.10166650654546 + ], + [ + 72.50423579504832, + 18.378234947036844 + ], + [ + 71.76495052046096, + 19.10166650654546 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.76495052046096, + 19.10166650654546 + ], + [ + 71.76495052046096, + 19.825098066054075 + ], + [ + 72.50423579504832, + 19.825098066054075 + ], + [ + 71.76495052046096, + 19.10166650654546 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.76495052046096, + 19.10166650654546 + ], + [ + 72.50423579504832, + 19.825098066054075 + ], + [ + 72.50423579504832, + 19.10166650654546 + ], + [ + 71.76495052046096, + 19.10166650654546 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.76495052046096, + 19.825098066054075 + ], + [ + 71.76495052046096, + 20.54852962556269 + ], + [ + 72.50423579504832, + 19.825098066054075 + ], + [ + 71.76495052046096, + 19.825098066054075 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.76495052046096, + 20.54852962556269 + ], + [ + 72.50423579504832, + 20.54852962556269 + ], + [ + 72.50423579504832, + 19.825098066054075 + ], + [ + 71.76495052046096, + 20.54852962556269 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.76495052046096, + 20.54852962556269 + ], + [ + 71.76495052046096, + 21.271961185071305 + ], + [ + 72.50423579504832, + 21.271961185071305 + ], + [ + 71.76495052046096, + 20.54852962556269 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.76495052046096, + 20.54852962556269 + ], + [ + 72.50423579504832, + 21.271961185071305 + ], + [ + 72.50423579504832, + 20.54852962556269 + ], + [ + 71.76495052046096, + 20.54852962556269 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.76495052046096, + 21.271961185071305 + ], + [ + 71.76495052046096, + 21.99539274457992 + ], + [ + 72.50423579504832, + 21.271961185071305 + ], + [ + 71.76495052046096, + 21.271961185071305 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.76495052046096, + 21.99539274457992 + ], + [ + 72.50423579504832, + 21.99539274457992 + ], + [ + 72.50423579504832, + 21.271961185071305 + ], + [ + 71.76495052046096, + 21.99539274457992 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.76495052046096, + 21.99539274457992 + ], + [ + 71.76495052046096, + 22.718824304088535 + ], + [ + 72.50423579504832, + 22.718824304088535 + ], + [ + 71.76495052046096, + 21.99539274457992 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.76495052046096, + 21.99539274457992 + ], + [ + 72.50423579504832, + 22.718824304088535 + ], + [ + 72.50423579504832, + 21.99539274457992 + ], + [ + 71.76495052046096, + 21.99539274457992 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.76495052046096, + 22.718824304088535 + ], + [ + 71.76495052046096, + 23.44225586359715 + ], + [ + 72.50423579504832, + 22.718824304088535 + ], + [ + 71.76495052046096, + 22.718824304088535 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.76495052046096, + 23.44225586359715 + ], + [ + 72.50423579504832, + 23.44225586359715 + ], + [ + 72.50423579504832, + 22.718824304088535 + ], + [ + 71.76495052046096, + 23.44225586359715 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.76495052046096, + 23.44225586359715 + ], + [ + 71.76495052046096, + 24.165687423105766 + ], + [ + 72.50423579504832, + 24.165687423105766 + ], + [ + 71.76495052046096, + 23.44225586359715 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.76495052046096, + 23.44225586359715 + ], + [ + 72.50423579504832, + 24.165687423105766 + ], + [ + 72.50423579504832, + 23.44225586359715 + ], + [ + 71.76495052046096, + 23.44225586359715 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.76495052046096, + 24.165687423105766 + ], + [ + 71.76495052046096, + 24.88911898261438 + ], + [ + 72.50423579504832, + 24.165687423105766 + ], + [ + 71.76495052046096, + 24.165687423105766 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.76495052046096, + 24.88911898261438 + ], + [ + 72.50423579504832, + 24.88911898261438 + ], + [ + 72.50423579504832, + 24.165687423105766 + ], + [ + 71.76495052046096, + 24.88911898261438 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.76495052046096, + 24.88911898261438 + ], + [ + 71.76495052046096, + 25.612550542122996 + ], + [ + 72.50423579504832, + 25.612550542122996 + ], + [ + 71.76495052046096, + 24.88911898261438 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.76495052046096, + 24.88911898261438 + ], + [ + 72.50423579504832, + 25.612550542122996 + ], + [ + 72.50423579504832, + 24.88911898261438 + ], + [ + 71.76495052046096, + 24.88911898261438 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.76495052046096, + 25.612550542122996 + ], + [ + 71.76495052046096, + 26.33598210163161 + ], + [ + 72.50423579504832, + 25.612550542122996 + ], + [ + 71.76495052046096, + 25.612550542122996 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.76495052046096, + 26.33598210163161 + ], + [ + 72.50423579504832, + 26.33598210163161 + ], + [ + 72.50423579504832, + 25.612550542122996 + ], + [ + 71.76495052046096, + 26.33598210163161 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.76495052046096, + 26.33598210163161 + ], + [ + 71.76495052046096, + 27.059413661140226 + ], + [ + 72.50423579504832, + 27.059413661140226 + ], + [ + 71.76495052046096, + 26.33598210163161 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.76495052046096, + 26.33598210163161 + ], + [ + 72.50423579504832, + 27.059413661140226 + ], + [ + 72.50423579504832, + 26.33598210163161 + ], + [ + 71.76495052046096, + 26.33598210163161 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.76495052046096, + 27.059413661140226 + ], + [ + 71.76495052046096, + 27.78284522064884 + ], + [ + 72.50423579504832, + 27.059413661140226 + ], + [ + 71.76495052046096, + 27.059413661140226 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.76495052046096, + 27.78284522064884 + ], + [ + 72.50423579504832, + 27.78284522064884 + ], + [ + 72.50423579504832, + 27.059413661140226 + ], + [ + 71.76495052046096, + 27.78284522064884 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.76495052046096, + 27.78284522064884 + ], + [ + 71.76495052046096, + 28.506276780157457 + ], + [ + 72.50423579504832, + 28.506276780157457 + ], + [ + 71.76495052046096, + 27.78284522064884 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.76495052046096, + 27.78284522064884 + ], + [ + 72.50423579504832, + 28.506276780157457 + ], + [ + 72.50423579504832, + 27.78284522064884 + ], + [ + 71.76495052046096, + 27.78284522064884 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.76495052046096, + 28.506276780157457 + ], + [ + 71.76495052046096, + 29.22970833966607 + ], + [ + 72.50423579504832, + 28.506276780157457 + ], + [ + 71.76495052046096, + 28.506276780157457 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.76495052046096, + 29.22970833966607 + ], + [ + 72.50423579504832, + 29.22970833966607 + ], + [ + 72.50423579504832, + 28.506276780157457 + ], + [ + 71.76495052046096, + 29.22970833966607 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.76495052046096, + 29.22970833966607 + ], + [ + 71.76495052046096, + 29.953139899174687 + ], + [ + 72.50423579504832, + 29.953139899174687 + ], + [ + 71.76495052046096, + 29.22970833966607 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.76495052046096, + 29.22970833966607 + ], + [ + 72.50423579504832, + 29.953139899174687 + ], + [ + 72.50423579504832, + 29.22970833966607 + ], + [ + 71.76495052046096, + 29.22970833966607 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.76495052046096, + 29.953139899174687 + ], + [ + 71.76495052046096, + 30.676571458683302 + ], + [ + 72.50423579504832, + 29.953139899174687 + ], + [ + 71.76495052046096, + 29.953139899174687 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.76495052046096, + 30.676571458683302 + ], + [ + 72.50423579504832, + 30.676571458683302 + ], + [ + 72.50423579504832, + 29.953139899174687 + ], + [ + 71.76495052046096, + 30.676571458683302 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.76495052046096, + 30.676571458683302 + ], + [ + 71.76495052046096, + 31.400003018191917 + ], + [ + 72.50423579504832, + 31.400003018191917 + ], + [ + 71.76495052046096, + 30.676571458683302 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.76495052046096, + 30.676571458683302 + ], + [ + 72.50423579504832, + 31.400003018191917 + ], + [ + 72.50423579504832, + 30.676571458683302 + ], + [ + 71.76495052046096, + 30.676571458683302 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.76495052046096, + 31.400003018191917 + ], + [ + 71.76495052046096, + 32.123434577700536 + ], + [ + 72.50423579504832, + 31.400003018191917 + ], + [ + 71.76495052046096, + 31.400003018191917 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.76495052046096, + 32.123434577700536 + ], + [ + 72.50423579504832, + 32.123434577700536 + ], + [ + 72.50423579504832, + 31.400003018191917 + ], + [ + 71.76495052046096, + 32.123434577700536 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.76495052046096, + 32.123434577700536 + ], + [ + 71.76495052046096, + 32.84686613720915 + ], + [ + 72.50423579504832, + 32.84686613720915 + ], + [ + 71.76495052046096, + 32.123434577700536 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.76495052046096, + 32.123434577700536 + ], + [ + 72.50423579504832, + 32.84686613720915 + ], + [ + 72.50423579504832, + 32.123434577700536 + ], + [ + 71.76495052046096, + 32.123434577700536 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.76495052046096, + 32.84686613720915 + ], + [ + 71.76495052046096, + 33.57029769671776 + ], + [ + 72.50423579504832, + 32.84686613720915 + ], + [ + 71.76495052046096, + 32.84686613720915 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.76495052046096, + 33.57029769671776 + ], + [ + 72.50423579504832, + 33.57029769671776 + ], + [ + 72.50423579504832, + 32.84686613720915 + ], + [ + 71.76495052046096, + 33.57029769671776 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.76495052046096, + 33.57029769671776 + ], + [ + 71.76495052046096, + 34.29372925622637 + ], + [ + 72.50423579504832, + 34.29372925622637 + ], + [ + 71.76495052046096, + 33.57029769671776 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.76495052046096, + 33.57029769671776 + ], + [ + 72.50423579504832, + 34.29372925622637 + ], + [ + 72.50423579504832, + 33.57029769671776 + ], + [ + 71.76495052046096, + 33.57029769671776 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.76495052046096, + 34.29372925622637 + ], + [ + 71.76495052046096, + 35.01716081573498 + ], + [ + 72.50423579504832, + 34.29372925622637 + ], + [ + 71.76495052046096, + 34.29372925622637 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.76495052046096, + 35.01716081573498 + ], + [ + 72.50423579504832, + 35.01716081573498 + ], + [ + 72.50423579504832, + 34.29372925622637 + ], + [ + 71.76495052046096, + 35.01716081573498 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.76495052046096, + 35.01716081573498 + ], + [ + 71.76495052046096, + 35.740592375243594 + ], + [ + 72.50423579504832, + 35.740592375243594 + ], + [ + 71.76495052046096, + 35.01716081573498 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.76495052046096, + 35.01716081573498 + ], + [ + 72.50423579504832, + 35.740592375243594 + ], + [ + 72.50423579504832, + 35.01716081573498 + ], + [ + 71.76495052046096, + 35.01716081573498 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.76495052046096, + 35.740592375243594 + ], + [ + 71.76495052046096, + 36.464023934752205 + ], + [ + 72.50423579504832, + 35.740592375243594 + ], + [ + 71.76495052046096, + 35.740592375243594 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.76495052046096, + 36.464023934752205 + ], + [ + 72.50423579504832, + 36.464023934752205 + ], + [ + 72.50423579504832, + 35.740592375243594 + ], + [ + 71.76495052046096, + 36.464023934752205 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.76495052046096, + 36.464023934752205 + ], + [ + 71.76495052046096, + 37.18745549426082 + ], + [ + 72.50423579504832, + 37.18745549426082 + ], + [ + 71.76495052046096, + 36.464023934752205 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.76495052046096, + 36.464023934752205 + ], + [ + 72.50423579504832, + 37.18745549426082 + ], + [ + 72.50423579504832, + 36.464023934752205 + ], + [ + 71.76495052046096, + 36.464023934752205 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.76495052046096, + 37.18745549426082 + ], + [ + 71.76495052046096, + 37.91088705376943 + ], + [ + 72.50423579504832, + 37.18745549426082 + ], + [ + 71.76495052046096, + 37.18745549426082 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.76495052046096, + 37.91088705376943 + ], + [ + 72.50423579504832, + 37.91088705376943 + ], + [ + 72.50423579504832, + 37.18745549426082 + ], + [ + 71.76495052046096, + 37.91088705376943 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.76495052046096, + 37.91088705376943 + ], + [ + 71.76495052046096, + 38.63431861327804 + ], + [ + 72.50423579504832, + 38.63431861327804 + ], + [ + 71.76495052046096, + 37.91088705376943 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.76495052046096, + 37.91088705376943 + ], + [ + 72.50423579504832, + 38.63431861327804 + ], + [ + 72.50423579504832, + 37.91088705376943 + ], + [ + 71.76495052046096, + 37.91088705376943 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.76495052046096, + 38.63431861327804 + ], + [ + 71.76495052046096, + 39.35775017278665 + ], + [ + 72.50423579504832, + 38.63431861327804 + ], + [ + 71.76495052046096, + 38.63431861327804 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.76495052046096, + 39.35775017278665 + ], + [ + 72.50423579504832, + 39.35775017278665 + ], + [ + 72.50423579504832, + 38.63431861327804 + ], + [ + 71.76495052046096, + 39.35775017278665 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.76495052046096, + 39.35775017278665 + ], + [ + 71.76495052046096, + 40.08118173229526 + ], + [ + 72.50423579504832, + 40.08118173229526 + ], + [ + 71.76495052046096, + 39.35775017278665 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.76495052046096, + 39.35775017278665 + ], + [ + 72.50423579504832, + 40.08118173229526 + ], + [ + 72.50423579504832, + 39.35775017278665 + ], + [ + 71.76495052046096, + 39.35775017278665 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.76495052046096, + 40.08118173229526 + ], + [ + 71.76495052046096, + 40.804613291803875 + ], + [ + 72.50423579504832, + 40.08118173229526 + ], + [ + 71.76495052046096, + 40.08118173229526 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.76495052046096, + 40.804613291803875 + ], + [ + 72.50423579504832, + 40.804613291803875 + ], + [ + 72.50423579504832, + 40.08118173229526 + ], + [ + 71.76495052046096, + 40.804613291803875 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.76495052046096, + 40.804613291803875 + ], + [ + 71.76495052046096, + 41.52804485131249 + ], + [ + 72.50423579504832, + 41.52804485131249 + ], + [ + 71.76495052046096, + 40.804613291803875 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.76495052046096, + 40.804613291803875 + ], + [ + 72.50423579504832, + 41.52804485131249 + ], + [ + 72.50423579504832, + 40.804613291803875 + ], + [ + 71.76495052046096, + 40.804613291803875 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.76495052046096, + 41.52804485131249 + ], + [ + 71.76495052046096, + 42.2514764108211 + ], + [ + 72.50423579504832, + 41.52804485131249 + ], + [ + 71.76495052046096, + 41.52804485131249 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.76495052046096, + 42.2514764108211 + ], + [ + 72.50423579504832, + 42.2514764108211 + ], + [ + 72.50423579504832, + 41.52804485131249 + ], + [ + 71.76495052046096, + 42.2514764108211 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.76495052046096, + 42.2514764108211 + ], + [ + 71.76495052046096, + 42.97490797032971 + ], + [ + 72.50423579504832, + 42.97490797032971 + ], + [ + 71.76495052046096, + 42.2514764108211 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.76495052046096, + 42.2514764108211 + ], + [ + 72.50423579504832, + 42.97490797032971 + ], + [ + 72.50423579504832, + 42.2514764108211 + ], + [ + 71.76495052046096, + 42.2514764108211 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.76495052046096, + 42.97490797032971 + ], + [ + 71.76495052046096, + 43.69833952983832 + ], + [ + 72.50423579504832, + 42.97490797032971 + ], + [ + 71.76495052046096, + 42.97490797032971 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.76495052046096, + 43.69833952983832 + ], + [ + 72.50423579504832, + 43.69833952983832 + ], + [ + 72.50423579504832, + 42.97490797032971 + ], + [ + 71.76495052046096, + 43.69833952983832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.76495052046096, + 43.69833952983832 + ], + [ + 71.76495052046096, + 44.42177108934693 + ], + [ + 72.50423579504832, + 44.42177108934693 + ], + [ + 71.76495052046096, + 43.69833952983832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.76495052046096, + 43.69833952983832 + ], + [ + 72.50423579504832, + 44.42177108934693 + ], + [ + 72.50423579504832, + 43.69833952983832 + ], + [ + 71.76495052046096, + 43.69833952983832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.76495052046096, + 44.42177108934693 + ], + [ + 71.76495052046096, + 45.145202648855545 + ], + [ + 72.50423579504832, + 44.42177108934693 + ], + [ + 71.76495052046096, + 44.42177108934693 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.76495052046096, + 45.145202648855545 + ], + [ + 72.50423579504832, + 45.145202648855545 + ], + [ + 72.50423579504832, + 44.42177108934693 + ], + [ + 71.76495052046096, + 45.145202648855545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.76495052046096, + 45.145202648855545 + ], + [ + 71.76495052046096, + 45.868634208364156 + ], + [ + 72.50423579504832, + 45.868634208364156 + ], + [ + 71.76495052046096, + 45.145202648855545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.76495052046096, + 45.145202648855545 + ], + [ + 72.50423579504832, + 45.868634208364156 + ], + [ + 72.50423579504832, + 45.145202648855545 + ], + [ + 71.76495052046096, + 45.145202648855545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.76495052046096, + 45.868634208364156 + ], + [ + 71.76495052046096, + 46.59206576787277 + ], + [ + 72.50423579504832, + 45.868634208364156 + ], + [ + 71.76495052046096, + 45.868634208364156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.76495052046096, + 46.59206576787277 + ], + [ + 72.50423579504832, + 46.59206576787277 + ], + [ + 72.50423579504832, + 45.868634208364156 + ], + [ + 71.76495052046096, + 46.59206576787277 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.76495052046096, + 46.59206576787277 + ], + [ + 71.76495052046096, + 47.31549732738138 + ], + [ + 72.50423579504832, + 47.31549732738138 + ], + [ + 71.76495052046096, + 46.59206576787277 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.76495052046096, + 46.59206576787277 + ], + [ + 72.50423579504832, + 47.31549732738138 + ], + [ + 72.50423579504832, + 46.59206576787277 + ], + [ + 71.76495052046096, + 46.59206576787277 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.76495052046096, + 47.31549732738138 + ], + [ + 71.76495052046096, + 48.03892888688999 + ], + [ + 72.50423579504832, + 47.31549732738138 + ], + [ + 71.76495052046096, + 47.31549732738138 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.76495052046096, + 48.03892888688999 + ], + [ + 72.50423579504832, + 48.03892888688999 + ], + [ + 72.50423579504832, + 47.31549732738138 + ], + [ + 71.76495052046096, + 48.03892888688999 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.50423579504832, + 11.867350911459308 + ], + [ + 72.50423579504832, + 12.590782470967923 + ], + [ + 73.24352106963568, + 11.867350911459308 + ], + [ + 72.50423579504832, + 11.867350911459308 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.50423579504832, + 12.590782470967923 + ], + [ + 73.24352106963568, + 12.590782470967923 + ], + [ + 73.24352106963568, + 11.867350911459308 + ], + [ + 72.50423579504832, + 12.590782470967923 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.50423579504832, + 12.590782470967923 + ], + [ + 73.24352106963568, + 13.314214030476538 + ], + [ + 73.24352106963568, + 12.590782470967923 + ], + [ + 72.50423579504832, + 12.590782470967923 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.50423579504832, + 12.590782470967923 + ], + [ + 72.50423579504832, + 13.314214030476538 + ], + [ + 73.24352106963568, + 13.314214030476538 + ], + [ + 72.50423579504832, + 12.590782470967923 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.50423579504832, + 13.314214030476538 + ], + [ + 72.50423579504832, + 14.037645589985154 + ], + [ + 73.24352106963568, + 13.314214030476538 + ], + [ + 72.50423579504832, + 13.314214030476538 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.50423579504832, + 14.037645589985154 + ], + [ + 73.24352106963568, + 14.037645589985154 + ], + [ + 73.24352106963568, + 13.314214030476538 + ], + [ + 72.50423579504832, + 14.037645589985154 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.50423579504832, + 14.037645589985154 + ], + [ + 73.24352106963568, + 14.761077149493769 + ], + [ + 73.24352106963568, + 14.037645589985154 + ], + [ + 72.50423579504832, + 14.037645589985154 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.50423579504832, + 14.037645589985154 + ], + [ + 72.50423579504832, + 14.761077149493769 + ], + [ + 73.24352106963568, + 14.761077149493769 + ], + [ + 72.50423579504832, + 14.037645589985154 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.50423579504832, + 14.761077149493769 + ], + [ + 72.50423579504832, + 15.484508709002384 + ], + [ + 73.24352106963568, + 14.761077149493769 + ], + [ + 72.50423579504832, + 14.761077149493769 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.50423579504832, + 15.484508709002384 + ], + [ + 73.24352106963568, + 15.484508709002384 + ], + [ + 73.24352106963568, + 14.761077149493769 + ], + [ + 72.50423579504832, + 15.484508709002384 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.50423579504832, + 15.484508709002384 + ], + [ + 73.24352106963568, + 16.207940268511 + ], + [ + 73.24352106963568, + 15.484508709002384 + ], + [ + 72.50423579504832, + 15.484508709002384 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.50423579504832, + 15.484508709002384 + ], + [ + 72.50423579504832, + 16.207940268511 + ], + [ + 73.24352106963568, + 16.207940268511 + ], + [ + 72.50423579504832, + 15.484508709002384 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.50423579504832, + 16.207940268511 + ], + [ + 72.50423579504832, + 16.931371828019614 + ], + [ + 73.24352106963568, + 16.207940268511 + ], + [ + 72.50423579504832, + 16.207940268511 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.50423579504832, + 16.931371828019614 + ], + [ + 73.24352106963568, + 16.931371828019614 + ], + [ + 73.24352106963568, + 16.207940268511 + ], + [ + 72.50423579504832, + 16.931371828019614 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.50423579504832, + 16.931371828019614 + ], + [ + 73.24352106963568, + 17.65480338752823 + ], + [ + 73.24352106963568, + 16.931371828019614 + ], + [ + 72.50423579504832, + 16.931371828019614 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.50423579504832, + 16.931371828019614 + ], + [ + 72.50423579504832, + 17.65480338752823 + ], + [ + 73.24352106963568, + 17.65480338752823 + ], + [ + 72.50423579504832, + 16.931371828019614 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.50423579504832, + 17.65480338752823 + ], + [ + 72.50423579504832, + 18.378234947036844 + ], + [ + 73.24352106963568, + 17.65480338752823 + ], + [ + 72.50423579504832, + 17.65480338752823 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.50423579504832, + 18.378234947036844 + ], + [ + 73.24352106963568, + 18.378234947036844 + ], + [ + 73.24352106963568, + 17.65480338752823 + ], + [ + 72.50423579504832, + 18.378234947036844 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.50423579504832, + 18.378234947036844 + ], + [ + 73.24352106963568, + 19.10166650654546 + ], + [ + 73.24352106963568, + 18.378234947036844 + ], + [ + 72.50423579504832, + 18.378234947036844 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.50423579504832, + 18.378234947036844 + ], + [ + 72.50423579504832, + 19.10166650654546 + ], + [ + 73.24352106963568, + 19.10166650654546 + ], + [ + 72.50423579504832, + 18.378234947036844 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.50423579504832, + 19.10166650654546 + ], + [ + 72.50423579504832, + 19.825098066054075 + ], + [ + 73.24352106963568, + 19.10166650654546 + ], + [ + 72.50423579504832, + 19.10166650654546 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.50423579504832, + 19.825098066054075 + ], + [ + 73.24352106963568, + 19.825098066054075 + ], + [ + 73.24352106963568, + 19.10166650654546 + ], + [ + 72.50423579504832, + 19.825098066054075 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.50423579504832, + 19.825098066054075 + ], + [ + 73.24352106963568, + 20.54852962556269 + ], + [ + 73.24352106963568, + 19.825098066054075 + ], + [ + 72.50423579504832, + 19.825098066054075 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.50423579504832, + 19.825098066054075 + ], + [ + 72.50423579504832, + 20.54852962556269 + ], + [ + 73.24352106963568, + 20.54852962556269 + ], + [ + 72.50423579504832, + 19.825098066054075 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.50423579504832, + 20.54852962556269 + ], + [ + 72.50423579504832, + 21.271961185071305 + ], + [ + 73.24352106963568, + 20.54852962556269 + ], + [ + 72.50423579504832, + 20.54852962556269 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.50423579504832, + 21.271961185071305 + ], + [ + 73.24352106963568, + 21.271961185071305 + ], + [ + 73.24352106963568, + 20.54852962556269 + ], + [ + 72.50423579504832, + 21.271961185071305 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.50423579504832, + 21.271961185071305 + ], + [ + 73.24352106963568, + 21.99539274457992 + ], + [ + 73.24352106963568, + 21.271961185071305 + ], + [ + 72.50423579504832, + 21.271961185071305 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.50423579504832, + 21.271961185071305 + ], + [ + 72.50423579504832, + 21.99539274457992 + ], + [ + 73.24352106963568, + 21.99539274457992 + ], + [ + 72.50423579504832, + 21.271961185071305 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.50423579504832, + 21.99539274457992 + ], + [ + 72.50423579504832, + 22.718824304088535 + ], + [ + 73.24352106963568, + 21.99539274457992 + ], + [ + 72.50423579504832, + 21.99539274457992 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.50423579504832, + 22.718824304088535 + ], + [ + 73.24352106963568, + 22.718824304088535 + ], + [ + 73.24352106963568, + 21.99539274457992 + ], + [ + 72.50423579504832, + 22.718824304088535 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.50423579504832, + 22.718824304088535 + ], + [ + 73.24352106963568, + 23.44225586359715 + ], + [ + 73.24352106963568, + 22.718824304088535 + ], + [ + 72.50423579504832, + 22.718824304088535 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.50423579504832, + 22.718824304088535 + ], + [ + 72.50423579504832, + 23.44225586359715 + ], + [ + 73.24352106963568, + 23.44225586359715 + ], + [ + 72.50423579504832, + 22.718824304088535 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.50423579504832, + 23.44225586359715 + ], + [ + 72.50423579504832, + 24.165687423105766 + ], + [ + 73.24352106963568, + 23.44225586359715 + ], + [ + 72.50423579504832, + 23.44225586359715 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.50423579504832, + 24.165687423105766 + ], + [ + 73.24352106963568, + 24.165687423105766 + ], + [ + 73.24352106963568, + 23.44225586359715 + ], + [ + 72.50423579504832, + 24.165687423105766 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.50423579504832, + 24.165687423105766 + ], + [ + 73.24352106963568, + 24.88911898261438 + ], + [ + 73.24352106963568, + 24.165687423105766 + ], + [ + 72.50423579504832, + 24.165687423105766 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.50423579504832, + 24.165687423105766 + ], + [ + 72.50423579504832, + 24.88911898261438 + ], + [ + 73.24352106963568, + 24.88911898261438 + ], + [ + 72.50423579504832, + 24.165687423105766 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.50423579504832, + 24.88911898261438 + ], + [ + 72.50423579504832, + 25.612550542122996 + ], + [ + 73.24352106963568, + 24.88911898261438 + ], + [ + 72.50423579504832, + 24.88911898261438 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.50423579504832, + 25.612550542122996 + ], + [ + 73.24352106963568, + 25.612550542122996 + ], + [ + 73.24352106963568, + 24.88911898261438 + ], + [ + 72.50423579504832, + 25.612550542122996 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.50423579504832, + 25.612550542122996 + ], + [ + 73.24352106963568, + 26.33598210163161 + ], + [ + 73.24352106963568, + 25.612550542122996 + ], + [ + 72.50423579504832, + 25.612550542122996 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.50423579504832, + 25.612550542122996 + ], + [ + 72.50423579504832, + 26.33598210163161 + ], + [ + 73.24352106963568, + 26.33598210163161 + ], + [ + 72.50423579504832, + 25.612550542122996 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.50423579504832, + 26.33598210163161 + ], + [ + 72.50423579504832, + 27.059413661140226 + ], + [ + 73.24352106963568, + 26.33598210163161 + ], + [ + 72.50423579504832, + 26.33598210163161 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.50423579504832, + 27.059413661140226 + ], + [ + 73.24352106963568, + 27.059413661140226 + ], + [ + 73.24352106963568, + 26.33598210163161 + ], + [ + 72.50423579504832, + 27.059413661140226 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.50423579504832, + 27.059413661140226 + ], + [ + 73.24352106963568, + 27.78284522064884 + ], + [ + 73.24352106963568, + 27.059413661140226 + ], + [ + 72.50423579504832, + 27.059413661140226 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.50423579504832, + 27.059413661140226 + ], + [ + 72.50423579504832, + 27.78284522064884 + ], + [ + 73.24352106963568, + 27.78284522064884 + ], + [ + 72.50423579504832, + 27.059413661140226 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.50423579504832, + 27.78284522064884 + ], + [ + 72.50423579504832, + 28.506276780157457 + ], + [ + 73.24352106963568, + 27.78284522064884 + ], + [ + 72.50423579504832, + 27.78284522064884 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.50423579504832, + 28.506276780157457 + ], + [ + 73.24352106963568, + 28.506276780157457 + ], + [ + 73.24352106963568, + 27.78284522064884 + ], + [ + 72.50423579504832, + 28.506276780157457 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.50423579504832, + 28.506276780157457 + ], + [ + 73.24352106963568, + 29.22970833966607 + ], + [ + 73.24352106963568, + 28.506276780157457 + ], + [ + 72.50423579504832, + 28.506276780157457 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.50423579504832, + 28.506276780157457 + ], + [ + 72.50423579504832, + 29.22970833966607 + ], + [ + 73.24352106963568, + 29.22970833966607 + ], + [ + 72.50423579504832, + 28.506276780157457 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.50423579504832, + 29.22970833966607 + ], + [ + 72.50423579504832, + 29.953139899174687 + ], + [ + 73.24352106963568, + 29.22970833966607 + ], + [ + 72.50423579504832, + 29.22970833966607 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.50423579504832, + 29.953139899174687 + ], + [ + 73.24352106963568, + 29.953139899174687 + ], + [ + 73.24352106963568, + 29.22970833966607 + ], + [ + 72.50423579504832, + 29.953139899174687 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.50423579504832, + 29.953139899174687 + ], + [ + 73.24352106963568, + 30.676571458683302 + ], + [ + 73.24352106963568, + 29.953139899174687 + ], + [ + 72.50423579504832, + 29.953139899174687 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.50423579504832, + 29.953139899174687 + ], + [ + 72.50423579504832, + 30.676571458683302 + ], + [ + 73.24352106963568, + 30.676571458683302 + ], + [ + 72.50423579504832, + 29.953139899174687 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.50423579504832, + 30.676571458683302 + ], + [ + 72.50423579504832, + 31.400003018191917 + ], + [ + 73.24352106963568, + 30.676571458683302 + ], + [ + 72.50423579504832, + 30.676571458683302 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.50423579504832, + 31.400003018191917 + ], + [ + 73.24352106963568, + 31.400003018191917 + ], + [ + 73.24352106963568, + 30.676571458683302 + ], + [ + 72.50423579504832, + 31.400003018191917 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.50423579504832, + 31.400003018191917 + ], + [ + 73.24352106963568, + 32.123434577700536 + ], + [ + 73.24352106963568, + 31.400003018191917 + ], + [ + 72.50423579504832, + 31.400003018191917 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.50423579504832, + 31.400003018191917 + ], + [ + 72.50423579504832, + 32.123434577700536 + ], + [ + 73.24352106963568, + 32.123434577700536 + ], + [ + 72.50423579504832, + 31.400003018191917 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.50423579504832, + 32.123434577700536 + ], + [ + 72.50423579504832, + 32.84686613720915 + ], + [ + 73.24352106963568, + 32.123434577700536 + ], + [ + 72.50423579504832, + 32.123434577700536 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.50423579504832, + 32.84686613720915 + ], + [ + 73.24352106963568, + 32.84686613720915 + ], + [ + 73.24352106963568, + 32.123434577700536 + ], + [ + 72.50423579504832, + 32.84686613720915 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.50423579504832, + 32.84686613720915 + ], + [ + 73.24352106963568, + 33.57029769671776 + ], + [ + 73.24352106963568, + 32.84686613720915 + ], + [ + 72.50423579504832, + 32.84686613720915 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.50423579504832, + 32.84686613720915 + ], + [ + 72.50423579504832, + 33.57029769671776 + ], + [ + 73.24352106963568, + 33.57029769671776 + ], + [ + 72.50423579504832, + 32.84686613720915 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.50423579504832, + 33.57029769671776 + ], + [ + 72.50423579504832, + 34.29372925622637 + ], + [ + 73.24352106963568, + 33.57029769671776 + ], + [ + 72.50423579504832, + 33.57029769671776 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.50423579504832, + 34.29372925622637 + ], + [ + 73.24352106963568, + 34.29372925622637 + ], + [ + 73.24352106963568, + 33.57029769671776 + ], + [ + 72.50423579504832, + 34.29372925622637 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.50423579504832, + 34.29372925622637 + ], + [ + 73.24352106963568, + 35.01716081573498 + ], + [ + 73.24352106963568, + 34.29372925622637 + ], + [ + 72.50423579504832, + 34.29372925622637 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.50423579504832, + 34.29372925622637 + ], + [ + 72.50423579504832, + 35.01716081573498 + ], + [ + 73.24352106963568, + 35.01716081573498 + ], + [ + 72.50423579504832, + 34.29372925622637 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.50423579504832, + 35.01716081573498 + ], + [ + 72.50423579504832, + 35.740592375243594 + ], + [ + 73.24352106963568, + 35.01716081573498 + ], + [ + 72.50423579504832, + 35.01716081573498 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.50423579504832, + 35.740592375243594 + ], + [ + 73.24352106963568, + 35.740592375243594 + ], + [ + 73.24352106963568, + 35.01716081573498 + ], + [ + 72.50423579504832, + 35.740592375243594 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.50423579504832, + 35.740592375243594 + ], + [ + 73.24352106963568, + 36.464023934752205 + ], + [ + 73.24352106963568, + 35.740592375243594 + ], + [ + 72.50423579504832, + 35.740592375243594 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.50423579504832, + 35.740592375243594 + ], + [ + 72.50423579504832, + 36.464023934752205 + ], + [ + 73.24352106963568, + 36.464023934752205 + ], + [ + 72.50423579504832, + 35.740592375243594 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.50423579504832, + 36.464023934752205 + ], + [ + 72.50423579504832, + 37.18745549426082 + ], + [ + 73.24352106963568, + 36.464023934752205 + ], + [ + 72.50423579504832, + 36.464023934752205 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.50423579504832, + 37.18745549426082 + ], + [ + 73.24352106963568, + 37.18745549426082 + ], + [ + 73.24352106963568, + 36.464023934752205 + ], + [ + 72.50423579504832, + 37.18745549426082 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.50423579504832, + 37.18745549426082 + ], + [ + 73.24352106963568, + 37.91088705376943 + ], + [ + 73.24352106963568, + 37.18745549426082 + ], + [ + 72.50423579504832, + 37.18745549426082 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.50423579504832, + 37.18745549426082 + ], + [ + 72.50423579504832, + 37.91088705376943 + ], + [ + 73.24352106963568, + 37.91088705376943 + ], + [ + 72.50423579504832, + 37.18745549426082 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.50423579504832, + 37.91088705376943 + ], + [ + 72.50423579504832, + 38.63431861327804 + ], + [ + 73.24352106963568, + 37.91088705376943 + ], + [ + 72.50423579504832, + 37.91088705376943 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.50423579504832, + 38.63431861327804 + ], + [ + 73.24352106963568, + 38.63431861327804 + ], + [ + 73.24352106963568, + 37.91088705376943 + ], + [ + 72.50423579504832, + 38.63431861327804 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.50423579504832, + 38.63431861327804 + ], + [ + 73.24352106963568, + 39.35775017278665 + ], + [ + 73.24352106963568, + 38.63431861327804 + ], + [ + 72.50423579504832, + 38.63431861327804 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.50423579504832, + 38.63431861327804 + ], + [ + 72.50423579504832, + 39.35775017278665 + ], + [ + 73.24352106963568, + 39.35775017278665 + ], + [ + 72.50423579504832, + 38.63431861327804 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.50423579504832, + 39.35775017278665 + ], + [ + 72.50423579504832, + 40.08118173229526 + ], + [ + 73.24352106963568, + 39.35775017278665 + ], + [ + 72.50423579504832, + 39.35775017278665 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.50423579504832, + 40.08118173229526 + ], + [ + 73.24352106963568, + 40.08118173229526 + ], + [ + 73.24352106963568, + 39.35775017278665 + ], + [ + 72.50423579504832, + 40.08118173229526 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.50423579504832, + 40.08118173229526 + ], + [ + 73.24352106963568, + 40.804613291803875 + ], + [ + 73.24352106963568, + 40.08118173229526 + ], + [ + 72.50423579504832, + 40.08118173229526 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.50423579504832, + 40.08118173229526 + ], + [ + 72.50423579504832, + 40.804613291803875 + ], + [ + 73.24352106963568, + 40.804613291803875 + ], + [ + 72.50423579504832, + 40.08118173229526 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.50423579504832, + 40.804613291803875 + ], + [ + 72.50423579504832, + 41.52804485131249 + ], + [ + 73.24352106963568, + 40.804613291803875 + ], + [ + 72.50423579504832, + 40.804613291803875 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.50423579504832, + 41.52804485131249 + ], + [ + 73.24352106963568, + 41.52804485131249 + ], + [ + 73.24352106963568, + 40.804613291803875 + ], + [ + 72.50423579504832, + 41.52804485131249 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.50423579504832, + 41.52804485131249 + ], + [ + 73.24352106963568, + 42.2514764108211 + ], + [ + 73.24352106963568, + 41.52804485131249 + ], + [ + 72.50423579504832, + 41.52804485131249 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.50423579504832, + 41.52804485131249 + ], + [ + 72.50423579504832, + 42.2514764108211 + ], + [ + 73.24352106963568, + 42.2514764108211 + ], + [ + 72.50423579504832, + 41.52804485131249 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.50423579504832, + 42.2514764108211 + ], + [ + 72.50423579504832, + 42.97490797032971 + ], + [ + 73.24352106963568, + 42.2514764108211 + ], + [ + 72.50423579504832, + 42.2514764108211 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.50423579504832, + 42.97490797032971 + ], + [ + 73.24352106963568, + 42.97490797032971 + ], + [ + 73.24352106963568, + 42.2514764108211 + ], + [ + 72.50423579504832, + 42.97490797032971 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.50423579504832, + 42.97490797032971 + ], + [ + 73.24352106963568, + 43.69833952983832 + ], + [ + 73.24352106963568, + 42.97490797032971 + ], + [ + 72.50423579504832, + 42.97490797032971 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.50423579504832, + 42.97490797032971 + ], + [ + 72.50423579504832, + 43.69833952983832 + ], + [ + 73.24352106963568, + 43.69833952983832 + ], + [ + 72.50423579504832, + 42.97490797032971 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.50423579504832, + 43.69833952983832 + ], + [ + 72.50423579504832, + 44.42177108934693 + ], + [ + 73.24352106963568, + 43.69833952983832 + ], + [ + 72.50423579504832, + 43.69833952983832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.50423579504832, + 44.42177108934693 + ], + [ + 73.24352106963568, + 44.42177108934693 + ], + [ + 73.24352106963568, + 43.69833952983832 + ], + [ + 72.50423579504832, + 44.42177108934693 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.50423579504832, + 44.42177108934693 + ], + [ + 73.24352106963568, + 45.145202648855545 + ], + [ + 73.24352106963568, + 44.42177108934693 + ], + [ + 72.50423579504832, + 44.42177108934693 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.50423579504832, + 44.42177108934693 + ], + [ + 72.50423579504832, + 45.145202648855545 + ], + [ + 73.24352106963568, + 45.145202648855545 + ], + [ + 72.50423579504832, + 44.42177108934693 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.50423579504832, + 45.145202648855545 + ], + [ + 72.50423579504832, + 45.868634208364156 + ], + [ + 73.24352106963568, + 45.145202648855545 + ], + [ + 72.50423579504832, + 45.145202648855545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.50423579504832, + 45.868634208364156 + ], + [ + 73.24352106963568, + 45.868634208364156 + ], + [ + 73.24352106963568, + 45.145202648855545 + ], + [ + 72.50423579504832, + 45.868634208364156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.50423579504832, + 45.868634208364156 + ], + [ + 73.24352106963568, + 46.59206576787277 + ], + [ + 73.24352106963568, + 45.868634208364156 + ], + [ + 72.50423579504832, + 45.868634208364156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.50423579504832, + 45.868634208364156 + ], + [ + 72.50423579504832, + 46.59206576787277 + ], + [ + 73.24352106963568, + 46.59206576787277 + ], + [ + 72.50423579504832, + 45.868634208364156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.50423579504832, + 46.59206576787277 + ], + [ + 72.50423579504832, + 47.31549732738138 + ], + [ + 73.24352106963568, + 46.59206576787277 + ], + [ + 72.50423579504832, + 46.59206576787277 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.50423579504832, + 47.31549732738138 + ], + [ + 73.24352106963568, + 47.31549732738138 + ], + [ + 73.24352106963568, + 46.59206576787277 + ], + [ + 72.50423579504832, + 47.31549732738138 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.50423579504832, + 47.31549732738138 + ], + [ + 73.24352106963568, + 48.03892888688999 + ], + [ + 73.24352106963568, + 47.31549732738138 + ], + [ + 72.50423579504832, + 47.31549732738138 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 72.50423579504832, + 47.31549732738138 + ], + [ + 72.50423579504832, + 48.03892888688999 + ], + [ + 73.24352106963568, + 48.03892888688999 + ], + [ + 72.50423579504832, + 47.31549732738138 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.24352106963568, + 11.867350911459308 + ], + [ + 73.24352106963568, + 12.590782470967923 + ], + [ + 73.98280634422304, + 12.590782470967923 + ], + [ + 73.24352106963568, + 11.867350911459308 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.24352106963568, + 11.867350911459308 + ], + [ + 73.98280634422304, + 12.590782470967923 + ], + [ + 73.98280634422304, + 11.867350911459308 + ], + [ + 73.24352106963568, + 11.867350911459308 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.24352106963568, + 12.590782470967923 + ], + [ + 73.24352106963568, + 13.314214030476538 + ], + [ + 73.98280634422304, + 12.590782470967923 + ], + [ + 73.24352106963568, + 12.590782470967923 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.24352106963568, + 13.314214030476538 + ], + [ + 73.98280634422304, + 13.314214030476538 + ], + [ + 73.98280634422304, + 12.590782470967923 + ], + [ + 73.24352106963568, + 13.314214030476538 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.24352106963568, + 13.314214030476538 + ], + [ + 73.24352106963568, + 14.037645589985154 + ], + [ + 73.98280634422304, + 14.037645589985154 + ], + [ + 73.24352106963568, + 13.314214030476538 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.24352106963568, + 13.314214030476538 + ], + [ + 73.98280634422304, + 14.037645589985154 + ], + [ + 73.98280634422304, + 13.314214030476538 + ], + [ + 73.24352106963568, + 13.314214030476538 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.24352106963568, + 14.037645589985154 + ], + [ + 73.24352106963568, + 14.761077149493769 + ], + [ + 73.98280634422304, + 14.037645589985154 + ], + [ + 73.24352106963568, + 14.037645589985154 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.24352106963568, + 14.761077149493769 + ], + [ + 73.98280634422304, + 14.761077149493769 + ], + [ + 73.98280634422304, + 14.037645589985154 + ], + [ + 73.24352106963568, + 14.761077149493769 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.24352106963568, + 14.761077149493769 + ], + [ + 73.24352106963568, + 15.484508709002384 + ], + [ + 73.98280634422304, + 15.484508709002384 + ], + [ + 73.24352106963568, + 14.761077149493769 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.24352106963568, + 14.761077149493769 + ], + [ + 73.98280634422304, + 15.484508709002384 + ], + [ + 73.98280634422304, + 14.761077149493769 + ], + [ + 73.24352106963568, + 14.761077149493769 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.24352106963568, + 15.484508709002384 + ], + [ + 73.24352106963568, + 16.207940268511 + ], + [ + 73.98280634422304, + 15.484508709002384 + ], + [ + 73.24352106963568, + 15.484508709002384 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.24352106963568, + 16.207940268511 + ], + [ + 73.98280634422304, + 16.207940268511 + ], + [ + 73.98280634422304, + 15.484508709002384 + ], + [ + 73.24352106963568, + 16.207940268511 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.24352106963568, + 16.207940268511 + ], + [ + 73.24352106963568, + 16.931371828019614 + ], + [ + 73.98280634422304, + 16.931371828019614 + ], + [ + 73.24352106963568, + 16.207940268511 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.24352106963568, + 16.207940268511 + ], + [ + 73.98280634422304, + 16.931371828019614 + ], + [ + 73.98280634422304, + 16.207940268511 + ], + [ + 73.24352106963568, + 16.207940268511 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.24352106963568, + 16.931371828019614 + ], + [ + 73.24352106963568, + 17.65480338752823 + ], + [ + 73.98280634422304, + 16.931371828019614 + ], + [ + 73.24352106963568, + 16.931371828019614 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.24352106963568, + 17.65480338752823 + ], + [ + 73.98280634422304, + 17.65480338752823 + ], + [ + 73.98280634422304, + 16.931371828019614 + ], + [ + 73.24352106963568, + 17.65480338752823 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.24352106963568, + 17.65480338752823 + ], + [ + 73.24352106963568, + 18.378234947036844 + ], + [ + 73.98280634422304, + 18.378234947036844 + ], + [ + 73.24352106963568, + 17.65480338752823 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.24352106963568, + 17.65480338752823 + ], + [ + 73.98280634422304, + 18.378234947036844 + ], + [ + 73.98280634422304, + 17.65480338752823 + ], + [ + 73.24352106963568, + 17.65480338752823 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.24352106963568, + 18.378234947036844 + ], + [ + 73.24352106963568, + 19.10166650654546 + ], + [ + 73.98280634422304, + 18.378234947036844 + ], + [ + 73.24352106963568, + 18.378234947036844 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.24352106963568, + 19.10166650654546 + ], + [ + 73.98280634422304, + 19.10166650654546 + ], + [ + 73.98280634422304, + 18.378234947036844 + ], + [ + 73.24352106963568, + 19.10166650654546 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.24352106963568, + 19.10166650654546 + ], + [ + 73.24352106963568, + 19.825098066054075 + ], + [ + 73.98280634422304, + 19.825098066054075 + ], + [ + 73.24352106963568, + 19.10166650654546 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.24352106963568, + 19.10166650654546 + ], + [ + 73.98280634422304, + 19.825098066054075 + ], + [ + 73.98280634422304, + 19.10166650654546 + ], + [ + 73.24352106963568, + 19.10166650654546 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.24352106963568, + 19.825098066054075 + ], + [ + 73.24352106963568, + 20.54852962556269 + ], + [ + 73.98280634422304, + 19.825098066054075 + ], + [ + 73.24352106963568, + 19.825098066054075 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.24352106963568, + 20.54852962556269 + ], + [ + 73.98280634422304, + 20.54852962556269 + ], + [ + 73.98280634422304, + 19.825098066054075 + ], + [ + 73.24352106963568, + 20.54852962556269 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.24352106963568, + 20.54852962556269 + ], + [ + 73.24352106963568, + 21.271961185071305 + ], + [ + 73.98280634422304, + 21.271961185071305 + ], + [ + 73.24352106963568, + 20.54852962556269 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.24352106963568, + 20.54852962556269 + ], + [ + 73.98280634422304, + 21.271961185071305 + ], + [ + 73.98280634422304, + 20.54852962556269 + ], + [ + 73.24352106963568, + 20.54852962556269 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.24352106963568, + 21.271961185071305 + ], + [ + 73.24352106963568, + 21.99539274457992 + ], + [ + 73.98280634422304, + 21.271961185071305 + ], + [ + 73.24352106963568, + 21.271961185071305 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.24352106963568, + 21.99539274457992 + ], + [ + 73.98280634422304, + 21.99539274457992 + ], + [ + 73.98280634422304, + 21.271961185071305 + ], + [ + 73.24352106963568, + 21.99539274457992 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.24352106963568, + 21.99539274457992 + ], + [ + 73.24352106963568, + 22.718824304088535 + ], + [ + 73.98280634422304, + 22.718824304088535 + ], + [ + 73.24352106963568, + 21.99539274457992 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.24352106963568, + 21.99539274457992 + ], + [ + 73.98280634422304, + 22.718824304088535 + ], + [ + 73.98280634422304, + 21.99539274457992 + ], + [ + 73.24352106963568, + 21.99539274457992 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.24352106963568, + 22.718824304088535 + ], + [ + 73.24352106963568, + 23.44225586359715 + ], + [ + 73.98280634422304, + 22.718824304088535 + ], + [ + 73.24352106963568, + 22.718824304088535 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.24352106963568, + 23.44225586359715 + ], + [ + 73.98280634422304, + 23.44225586359715 + ], + [ + 73.98280634422304, + 22.718824304088535 + ], + [ + 73.24352106963568, + 23.44225586359715 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.24352106963568, + 23.44225586359715 + ], + [ + 73.24352106963568, + 24.165687423105766 + ], + [ + 73.98280634422304, + 24.165687423105766 + ], + [ + 73.24352106963568, + 23.44225586359715 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.24352106963568, + 23.44225586359715 + ], + [ + 73.98280634422304, + 24.165687423105766 + ], + [ + 73.98280634422304, + 23.44225586359715 + ], + [ + 73.24352106963568, + 23.44225586359715 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.24352106963568, + 24.165687423105766 + ], + [ + 73.24352106963568, + 24.88911898261438 + ], + [ + 73.98280634422304, + 24.165687423105766 + ], + [ + 73.24352106963568, + 24.165687423105766 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.24352106963568, + 24.88911898261438 + ], + [ + 73.98280634422304, + 24.88911898261438 + ], + [ + 73.98280634422304, + 24.165687423105766 + ], + [ + 73.24352106963568, + 24.88911898261438 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.24352106963568, + 24.88911898261438 + ], + [ + 73.24352106963568, + 25.612550542122996 + ], + [ + 73.98280634422304, + 25.612550542122996 + ], + [ + 73.24352106963568, + 24.88911898261438 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.24352106963568, + 24.88911898261438 + ], + [ + 73.98280634422304, + 25.612550542122996 + ], + [ + 73.98280634422304, + 24.88911898261438 + ], + [ + 73.24352106963568, + 24.88911898261438 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.24352106963568, + 25.612550542122996 + ], + [ + 73.24352106963568, + 26.33598210163161 + ], + [ + 73.98280634422304, + 25.612550542122996 + ], + [ + 73.24352106963568, + 25.612550542122996 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.24352106963568, + 26.33598210163161 + ], + [ + 73.98280634422304, + 26.33598210163161 + ], + [ + 73.98280634422304, + 25.612550542122996 + ], + [ + 73.24352106963568, + 26.33598210163161 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.24352106963568, + 26.33598210163161 + ], + [ + 73.24352106963568, + 27.059413661140226 + ], + [ + 73.98280634422304, + 27.059413661140226 + ], + [ + 73.24352106963568, + 26.33598210163161 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.24352106963568, + 26.33598210163161 + ], + [ + 73.98280634422304, + 27.059413661140226 + ], + [ + 73.98280634422304, + 26.33598210163161 + ], + [ + 73.24352106963568, + 26.33598210163161 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.24352106963568, + 27.059413661140226 + ], + [ + 73.24352106963568, + 27.78284522064884 + ], + [ + 73.98280634422304, + 27.059413661140226 + ], + [ + 73.24352106963568, + 27.059413661140226 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.24352106963568, + 27.78284522064884 + ], + [ + 73.98280634422304, + 27.78284522064884 + ], + [ + 73.98280634422304, + 27.059413661140226 + ], + [ + 73.24352106963568, + 27.78284522064884 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.24352106963568, + 27.78284522064884 + ], + [ + 73.24352106963568, + 28.506276780157457 + ], + [ + 73.98280634422304, + 28.506276780157457 + ], + [ + 73.24352106963568, + 27.78284522064884 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.24352106963568, + 27.78284522064884 + ], + [ + 73.98280634422304, + 28.506276780157457 + ], + [ + 73.98280634422304, + 27.78284522064884 + ], + [ + 73.24352106963568, + 27.78284522064884 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.24352106963568, + 28.506276780157457 + ], + [ + 73.24352106963568, + 29.22970833966607 + ], + [ + 73.98280634422304, + 28.506276780157457 + ], + [ + 73.24352106963568, + 28.506276780157457 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.24352106963568, + 29.22970833966607 + ], + [ + 73.98280634422304, + 29.22970833966607 + ], + [ + 73.98280634422304, + 28.506276780157457 + ], + [ + 73.24352106963568, + 29.22970833966607 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.24352106963568, + 29.22970833966607 + ], + [ + 73.24352106963568, + 29.953139899174687 + ], + [ + 73.98280634422304, + 29.953139899174687 + ], + [ + 73.24352106963568, + 29.22970833966607 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.24352106963568, + 29.22970833966607 + ], + [ + 73.98280634422304, + 29.953139899174687 + ], + [ + 73.98280634422304, + 29.22970833966607 + ], + [ + 73.24352106963568, + 29.22970833966607 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.24352106963568, + 29.953139899174687 + ], + [ + 73.24352106963568, + 30.676571458683302 + ], + [ + 73.98280634422304, + 29.953139899174687 + ], + [ + 73.24352106963568, + 29.953139899174687 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.24352106963568, + 30.676571458683302 + ], + [ + 73.98280634422304, + 30.676571458683302 + ], + [ + 73.98280634422304, + 29.953139899174687 + ], + [ + 73.24352106963568, + 30.676571458683302 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.24352106963568, + 30.676571458683302 + ], + [ + 73.24352106963568, + 31.400003018191917 + ], + [ + 73.98280634422304, + 31.400003018191917 + ], + [ + 73.24352106963568, + 30.676571458683302 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.24352106963568, + 30.676571458683302 + ], + [ + 73.98280634422304, + 31.400003018191917 + ], + [ + 73.98280634422304, + 30.676571458683302 + ], + [ + 73.24352106963568, + 30.676571458683302 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.24352106963568, + 31.400003018191917 + ], + [ + 73.24352106963568, + 32.123434577700536 + ], + [ + 73.98280634422304, + 31.400003018191917 + ], + [ + 73.24352106963568, + 31.400003018191917 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.24352106963568, + 32.123434577700536 + ], + [ + 73.98280634422304, + 32.123434577700536 + ], + [ + 73.98280634422304, + 31.400003018191917 + ], + [ + 73.24352106963568, + 32.123434577700536 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.24352106963568, + 32.123434577700536 + ], + [ + 73.24352106963568, + 32.84686613720915 + ], + [ + 73.98280634422304, + 32.84686613720915 + ], + [ + 73.24352106963568, + 32.123434577700536 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.24352106963568, + 32.123434577700536 + ], + [ + 73.98280634422304, + 32.84686613720915 + ], + [ + 73.98280634422304, + 32.123434577700536 + ], + [ + 73.24352106963568, + 32.123434577700536 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.24352106963568, + 32.84686613720915 + ], + [ + 73.24352106963568, + 33.57029769671776 + ], + [ + 73.98280634422304, + 32.84686613720915 + ], + [ + 73.24352106963568, + 32.84686613720915 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.24352106963568, + 33.57029769671776 + ], + [ + 73.98280634422304, + 33.57029769671776 + ], + [ + 73.98280634422304, + 32.84686613720915 + ], + [ + 73.24352106963568, + 33.57029769671776 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.24352106963568, + 33.57029769671776 + ], + [ + 73.24352106963568, + 34.29372925622637 + ], + [ + 73.98280634422304, + 34.29372925622637 + ], + [ + 73.24352106963568, + 33.57029769671776 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.24352106963568, + 33.57029769671776 + ], + [ + 73.98280634422304, + 34.29372925622637 + ], + [ + 73.98280634422304, + 33.57029769671776 + ], + [ + 73.24352106963568, + 33.57029769671776 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.24352106963568, + 34.29372925622637 + ], + [ + 73.24352106963568, + 35.01716081573498 + ], + [ + 73.98280634422304, + 34.29372925622637 + ], + [ + 73.24352106963568, + 34.29372925622637 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.24352106963568, + 35.01716081573498 + ], + [ + 73.98280634422304, + 35.01716081573498 + ], + [ + 73.98280634422304, + 34.29372925622637 + ], + [ + 73.24352106963568, + 35.01716081573498 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.24352106963568, + 35.01716081573498 + ], + [ + 73.24352106963568, + 35.740592375243594 + ], + [ + 73.98280634422304, + 35.740592375243594 + ], + [ + 73.24352106963568, + 35.01716081573498 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.24352106963568, + 35.01716081573498 + ], + [ + 73.98280634422304, + 35.740592375243594 + ], + [ + 73.98280634422304, + 35.01716081573498 + ], + [ + 73.24352106963568, + 35.01716081573498 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.24352106963568, + 35.740592375243594 + ], + [ + 73.24352106963568, + 36.464023934752205 + ], + [ + 73.98280634422304, + 35.740592375243594 + ], + [ + 73.24352106963568, + 35.740592375243594 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.24352106963568, + 36.464023934752205 + ], + [ + 73.98280634422304, + 36.464023934752205 + ], + [ + 73.98280634422304, + 35.740592375243594 + ], + [ + 73.24352106963568, + 36.464023934752205 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.24352106963568, + 36.464023934752205 + ], + [ + 73.24352106963568, + 37.18745549426082 + ], + [ + 73.98280634422304, + 37.18745549426082 + ], + [ + 73.24352106963568, + 36.464023934752205 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.24352106963568, + 36.464023934752205 + ], + [ + 73.98280634422304, + 37.18745549426082 + ], + [ + 73.98280634422304, + 36.464023934752205 + ], + [ + 73.24352106963568, + 36.464023934752205 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.24352106963568, + 37.18745549426082 + ], + [ + 73.24352106963568, + 37.91088705376943 + ], + [ + 73.98280634422304, + 37.18745549426082 + ], + [ + 73.24352106963568, + 37.18745549426082 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.24352106963568, + 37.91088705376943 + ], + [ + 73.98280634422304, + 37.91088705376943 + ], + [ + 73.98280634422304, + 37.18745549426082 + ], + [ + 73.24352106963568, + 37.91088705376943 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.24352106963568, + 37.91088705376943 + ], + [ + 73.24352106963568, + 38.63431861327804 + ], + [ + 73.98280634422304, + 38.63431861327804 + ], + [ + 73.24352106963568, + 37.91088705376943 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.24352106963568, + 37.91088705376943 + ], + [ + 73.98280634422304, + 38.63431861327804 + ], + [ + 73.98280634422304, + 37.91088705376943 + ], + [ + 73.24352106963568, + 37.91088705376943 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.24352106963568, + 38.63431861327804 + ], + [ + 73.24352106963568, + 39.35775017278665 + ], + [ + 73.98280634422304, + 38.63431861327804 + ], + [ + 73.24352106963568, + 38.63431861327804 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.24352106963568, + 39.35775017278665 + ], + [ + 73.98280634422304, + 39.35775017278665 + ], + [ + 73.98280634422304, + 38.63431861327804 + ], + [ + 73.24352106963568, + 39.35775017278665 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.24352106963568, + 39.35775017278665 + ], + [ + 73.24352106963568, + 40.08118173229526 + ], + [ + 73.98280634422304, + 40.08118173229526 + ], + [ + 73.24352106963568, + 39.35775017278665 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.24352106963568, + 39.35775017278665 + ], + [ + 73.98280634422304, + 40.08118173229526 + ], + [ + 73.98280634422304, + 39.35775017278665 + ], + [ + 73.24352106963568, + 39.35775017278665 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.24352106963568, + 40.08118173229526 + ], + [ + 73.24352106963568, + 40.804613291803875 + ], + [ + 73.98280634422304, + 40.08118173229526 + ], + [ + 73.24352106963568, + 40.08118173229526 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.24352106963568, + 40.804613291803875 + ], + [ + 73.98280634422304, + 40.804613291803875 + ], + [ + 73.98280634422304, + 40.08118173229526 + ], + [ + 73.24352106963568, + 40.804613291803875 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.24352106963568, + 40.804613291803875 + ], + [ + 73.24352106963568, + 41.52804485131249 + ], + [ + 73.98280634422304, + 41.52804485131249 + ], + [ + 73.24352106963568, + 40.804613291803875 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.24352106963568, + 40.804613291803875 + ], + [ + 73.98280634422304, + 41.52804485131249 + ], + [ + 73.98280634422304, + 40.804613291803875 + ], + [ + 73.24352106963568, + 40.804613291803875 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.24352106963568, + 41.52804485131249 + ], + [ + 73.24352106963568, + 42.2514764108211 + ], + [ + 73.98280634422304, + 41.52804485131249 + ], + [ + 73.24352106963568, + 41.52804485131249 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.24352106963568, + 42.2514764108211 + ], + [ + 73.98280634422304, + 42.2514764108211 + ], + [ + 73.98280634422304, + 41.52804485131249 + ], + [ + 73.24352106963568, + 42.2514764108211 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.24352106963568, + 42.2514764108211 + ], + [ + 73.24352106963568, + 42.97490797032971 + ], + [ + 73.98280634422304, + 42.97490797032971 + ], + [ + 73.24352106963568, + 42.2514764108211 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.24352106963568, + 42.2514764108211 + ], + [ + 73.98280634422304, + 42.97490797032971 + ], + [ + 73.98280634422304, + 42.2514764108211 + ], + [ + 73.24352106963568, + 42.2514764108211 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.24352106963568, + 42.97490797032971 + ], + [ + 73.24352106963568, + 43.69833952983832 + ], + [ + 73.98280634422304, + 42.97490797032971 + ], + [ + 73.24352106963568, + 42.97490797032971 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.24352106963568, + 43.69833952983832 + ], + [ + 73.98280634422304, + 43.69833952983832 + ], + [ + 73.98280634422304, + 42.97490797032971 + ], + [ + 73.24352106963568, + 43.69833952983832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.24352106963568, + 43.69833952983832 + ], + [ + 73.24352106963568, + 44.42177108934693 + ], + [ + 73.98280634422304, + 44.42177108934693 + ], + [ + 73.24352106963568, + 43.69833952983832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.24352106963568, + 43.69833952983832 + ], + [ + 73.98280634422304, + 44.42177108934693 + ], + [ + 73.98280634422304, + 43.69833952983832 + ], + [ + 73.24352106963568, + 43.69833952983832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.24352106963568, + 44.42177108934693 + ], + [ + 73.24352106963568, + 45.145202648855545 + ], + [ + 73.98280634422304, + 44.42177108934693 + ], + [ + 73.24352106963568, + 44.42177108934693 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.24352106963568, + 45.145202648855545 + ], + [ + 73.98280634422304, + 45.145202648855545 + ], + [ + 73.98280634422304, + 44.42177108934693 + ], + [ + 73.24352106963568, + 45.145202648855545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.24352106963568, + 45.145202648855545 + ], + [ + 73.24352106963568, + 45.868634208364156 + ], + [ + 73.98280634422304, + 45.868634208364156 + ], + [ + 73.24352106963568, + 45.145202648855545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.24352106963568, + 45.145202648855545 + ], + [ + 73.98280634422304, + 45.868634208364156 + ], + [ + 73.98280634422304, + 45.145202648855545 + ], + [ + 73.24352106963568, + 45.145202648855545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.24352106963568, + 45.868634208364156 + ], + [ + 73.24352106963568, + 46.59206576787277 + ], + [ + 73.98280634422304, + 45.868634208364156 + ], + [ + 73.24352106963568, + 45.868634208364156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.24352106963568, + 46.59206576787277 + ], + [ + 73.98280634422304, + 46.59206576787277 + ], + [ + 73.98280634422304, + 45.868634208364156 + ], + [ + 73.24352106963568, + 46.59206576787277 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.24352106963568, + 46.59206576787277 + ], + [ + 73.24352106963568, + 47.31549732738138 + ], + [ + 73.98280634422304, + 47.31549732738138 + ], + [ + 73.24352106963568, + 46.59206576787277 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.24352106963568, + 46.59206576787277 + ], + [ + 73.98280634422304, + 47.31549732738138 + ], + [ + 73.98280634422304, + 46.59206576787277 + ], + [ + 73.24352106963568, + 46.59206576787277 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.24352106963568, + 47.31549732738138 + ], + [ + 73.24352106963568, + 48.03892888688999 + ], + [ + 73.98280634422304, + 47.31549732738138 + ], + [ + 73.24352106963568, + 47.31549732738138 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.24352106963568, + 48.03892888688999 + ], + [ + 73.98280634422304, + 48.03892888688999 + ], + [ + 73.98280634422304, + 47.31549732738138 + ], + [ + 73.24352106963568, + 48.03892888688999 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.98280634422304, + 11.867350911459308 + ], + [ + 73.98280634422304, + 12.590782470967923 + ], + [ + 74.7220916188104, + 11.867350911459308 + ], + [ + 73.98280634422304, + 11.867350911459308 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.98280634422304, + 12.590782470967923 + ], + [ + 74.7220916188104, + 12.590782470967923 + ], + [ + 74.7220916188104, + 11.867350911459308 + ], + [ + 73.98280634422304, + 12.590782470967923 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.98280634422304, + 12.590782470967923 + ], + [ + 74.7220916188104, + 13.314214030476538 + ], + [ + 74.7220916188104, + 12.590782470967923 + ], + [ + 73.98280634422304, + 12.590782470967923 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.98280634422304, + 12.590782470967923 + ], + [ + 73.98280634422304, + 13.314214030476538 + ], + [ + 74.7220916188104, + 13.314214030476538 + ], + [ + 73.98280634422304, + 12.590782470967923 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.98280634422304, + 13.314214030476538 + ], + [ + 73.98280634422304, + 14.037645589985154 + ], + [ + 74.7220916188104, + 13.314214030476538 + ], + [ + 73.98280634422304, + 13.314214030476538 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.98280634422304, + 14.037645589985154 + ], + [ + 74.7220916188104, + 14.037645589985154 + ], + [ + 74.7220916188104, + 13.314214030476538 + ], + [ + 73.98280634422304, + 14.037645589985154 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.98280634422304, + 14.037645589985154 + ], + [ + 74.7220916188104, + 14.761077149493769 + ], + [ + 74.7220916188104, + 14.037645589985154 + ], + [ + 73.98280634422304, + 14.037645589985154 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.98280634422304, + 14.037645589985154 + ], + [ + 73.98280634422304, + 14.761077149493769 + ], + [ + 74.7220916188104, + 14.761077149493769 + ], + [ + 73.98280634422304, + 14.037645589985154 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.98280634422304, + 14.761077149493769 + ], + [ + 73.98280634422304, + 15.484508709002384 + ], + [ + 74.7220916188104, + 14.761077149493769 + ], + [ + 73.98280634422304, + 14.761077149493769 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.98280634422304, + 15.484508709002384 + ], + [ + 74.7220916188104, + 15.484508709002384 + ], + [ + 74.7220916188104, + 14.761077149493769 + ], + [ + 73.98280634422304, + 15.484508709002384 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.98280634422304, + 15.484508709002384 + ], + [ + 74.7220916188104, + 16.207940268511 + ], + [ + 74.7220916188104, + 15.484508709002384 + ], + [ + 73.98280634422304, + 15.484508709002384 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.98280634422304, + 15.484508709002384 + ], + [ + 73.98280634422304, + 16.207940268511 + ], + [ + 74.7220916188104, + 16.207940268511 + ], + [ + 73.98280634422304, + 15.484508709002384 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.98280634422304, + 16.207940268511 + ], + [ + 73.98280634422304, + 16.931371828019614 + ], + [ + 74.7220916188104, + 16.207940268511 + ], + [ + 73.98280634422304, + 16.207940268511 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.98280634422304, + 16.931371828019614 + ], + [ + 74.7220916188104, + 16.931371828019614 + ], + [ + 74.7220916188104, + 16.207940268511 + ], + [ + 73.98280634422304, + 16.931371828019614 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.98280634422304, + 16.931371828019614 + ], + [ + 74.7220916188104, + 17.65480338752823 + ], + [ + 74.7220916188104, + 16.931371828019614 + ], + [ + 73.98280634422304, + 16.931371828019614 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.98280634422304, + 16.931371828019614 + ], + [ + 73.98280634422304, + 17.65480338752823 + ], + [ + 74.7220916188104, + 17.65480338752823 + ], + [ + 73.98280634422304, + 16.931371828019614 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.98280634422304, + 17.65480338752823 + ], + [ + 73.98280634422304, + 18.378234947036844 + ], + [ + 74.7220916188104, + 17.65480338752823 + ], + [ + 73.98280634422304, + 17.65480338752823 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.98280634422304, + 18.378234947036844 + ], + [ + 74.7220916188104, + 18.378234947036844 + ], + [ + 74.7220916188104, + 17.65480338752823 + ], + [ + 73.98280634422304, + 18.378234947036844 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.98280634422304, + 18.378234947036844 + ], + [ + 74.7220916188104, + 19.10166650654546 + ], + [ + 74.7220916188104, + 18.378234947036844 + ], + [ + 73.98280634422304, + 18.378234947036844 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.98280634422304, + 18.378234947036844 + ], + [ + 73.98280634422304, + 19.10166650654546 + ], + [ + 74.7220916188104, + 19.10166650654546 + ], + [ + 73.98280634422304, + 18.378234947036844 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.98280634422304, + 19.10166650654546 + ], + [ + 73.98280634422304, + 19.825098066054075 + ], + [ + 74.7220916188104, + 19.10166650654546 + ], + [ + 73.98280634422304, + 19.10166650654546 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.98280634422304, + 19.825098066054075 + ], + [ + 74.7220916188104, + 19.825098066054075 + ], + [ + 74.7220916188104, + 19.10166650654546 + ], + [ + 73.98280634422304, + 19.825098066054075 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.98280634422304, + 19.825098066054075 + ], + [ + 74.7220916188104, + 20.54852962556269 + ], + [ + 74.7220916188104, + 19.825098066054075 + ], + [ + 73.98280634422304, + 19.825098066054075 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.98280634422304, + 19.825098066054075 + ], + [ + 73.98280634422304, + 20.54852962556269 + ], + [ + 74.7220916188104, + 20.54852962556269 + ], + [ + 73.98280634422304, + 19.825098066054075 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.98280634422304, + 20.54852962556269 + ], + [ + 73.98280634422304, + 21.271961185071305 + ], + [ + 74.7220916188104, + 20.54852962556269 + ], + [ + 73.98280634422304, + 20.54852962556269 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.98280634422304, + 21.271961185071305 + ], + [ + 74.7220916188104, + 21.271961185071305 + ], + [ + 74.7220916188104, + 20.54852962556269 + ], + [ + 73.98280634422304, + 21.271961185071305 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.98280634422304, + 21.271961185071305 + ], + [ + 74.7220916188104, + 21.99539274457992 + ], + [ + 74.7220916188104, + 21.271961185071305 + ], + [ + 73.98280634422304, + 21.271961185071305 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.98280634422304, + 21.271961185071305 + ], + [ + 73.98280634422304, + 21.99539274457992 + ], + [ + 74.7220916188104, + 21.99539274457992 + ], + [ + 73.98280634422304, + 21.271961185071305 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.98280634422304, + 21.99539274457992 + ], + [ + 73.98280634422304, + 22.718824304088535 + ], + [ + 74.7220916188104, + 21.99539274457992 + ], + [ + 73.98280634422304, + 21.99539274457992 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.98280634422304, + 22.718824304088535 + ], + [ + 74.7220916188104, + 22.718824304088535 + ], + [ + 74.7220916188104, + 21.99539274457992 + ], + [ + 73.98280634422304, + 22.718824304088535 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.98280634422304, + 22.718824304088535 + ], + [ + 74.7220916188104, + 23.44225586359715 + ], + [ + 74.7220916188104, + 22.718824304088535 + ], + [ + 73.98280634422304, + 22.718824304088535 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.98280634422304, + 22.718824304088535 + ], + [ + 73.98280634422304, + 23.44225586359715 + ], + [ + 74.7220916188104, + 23.44225586359715 + ], + [ + 73.98280634422304, + 22.718824304088535 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.98280634422304, + 23.44225586359715 + ], + [ + 73.98280634422304, + 24.165687423105766 + ], + [ + 74.7220916188104, + 23.44225586359715 + ], + [ + 73.98280634422304, + 23.44225586359715 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.98280634422304, + 24.165687423105766 + ], + [ + 74.7220916188104, + 24.165687423105766 + ], + [ + 74.7220916188104, + 23.44225586359715 + ], + [ + 73.98280634422304, + 24.165687423105766 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.98280634422304, + 24.165687423105766 + ], + [ + 74.7220916188104, + 24.88911898261438 + ], + [ + 74.7220916188104, + 24.165687423105766 + ], + [ + 73.98280634422304, + 24.165687423105766 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.98280634422304, + 24.165687423105766 + ], + [ + 73.98280634422304, + 24.88911898261438 + ], + [ + 74.7220916188104, + 24.88911898261438 + ], + [ + 73.98280634422304, + 24.165687423105766 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.98280634422304, + 24.88911898261438 + ], + [ + 73.98280634422304, + 25.612550542122996 + ], + [ + 74.7220916188104, + 24.88911898261438 + ], + [ + 73.98280634422304, + 24.88911898261438 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.98280634422304, + 25.612550542122996 + ], + [ + 74.7220916188104, + 25.612550542122996 + ], + [ + 74.7220916188104, + 24.88911898261438 + ], + [ + 73.98280634422304, + 25.612550542122996 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.98280634422304, + 25.612550542122996 + ], + [ + 74.7220916188104, + 26.33598210163161 + ], + [ + 74.7220916188104, + 25.612550542122996 + ], + [ + 73.98280634422304, + 25.612550542122996 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.98280634422304, + 25.612550542122996 + ], + [ + 73.98280634422304, + 26.33598210163161 + ], + [ + 74.7220916188104, + 26.33598210163161 + ], + [ + 73.98280634422304, + 25.612550542122996 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.98280634422304, + 26.33598210163161 + ], + [ + 73.98280634422304, + 27.059413661140226 + ], + [ + 74.7220916188104, + 26.33598210163161 + ], + [ + 73.98280634422304, + 26.33598210163161 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.98280634422304, + 27.059413661140226 + ], + [ + 74.7220916188104, + 27.059413661140226 + ], + [ + 74.7220916188104, + 26.33598210163161 + ], + [ + 73.98280634422304, + 27.059413661140226 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.98280634422304, + 27.059413661140226 + ], + [ + 74.7220916188104, + 27.78284522064884 + ], + [ + 74.7220916188104, + 27.059413661140226 + ], + [ + 73.98280634422304, + 27.059413661140226 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.98280634422304, + 27.059413661140226 + ], + [ + 73.98280634422304, + 27.78284522064884 + ], + [ + 74.7220916188104, + 27.78284522064884 + ], + [ + 73.98280634422304, + 27.059413661140226 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.98280634422304, + 27.78284522064884 + ], + [ + 73.98280634422304, + 28.506276780157457 + ], + [ + 74.7220916188104, + 27.78284522064884 + ], + [ + 73.98280634422304, + 27.78284522064884 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.98280634422304, + 28.506276780157457 + ], + [ + 74.7220916188104, + 28.506276780157457 + ], + [ + 74.7220916188104, + 27.78284522064884 + ], + [ + 73.98280634422304, + 28.506276780157457 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.98280634422304, + 28.506276780157457 + ], + [ + 74.7220916188104, + 29.22970833966607 + ], + [ + 74.7220916188104, + 28.506276780157457 + ], + [ + 73.98280634422304, + 28.506276780157457 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.98280634422304, + 28.506276780157457 + ], + [ + 73.98280634422304, + 29.22970833966607 + ], + [ + 74.7220916188104, + 29.22970833966607 + ], + [ + 73.98280634422304, + 28.506276780157457 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.98280634422304, + 29.22970833966607 + ], + [ + 73.98280634422304, + 29.953139899174687 + ], + [ + 74.7220916188104, + 29.22970833966607 + ], + [ + 73.98280634422304, + 29.22970833966607 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.98280634422304, + 29.953139899174687 + ], + [ + 74.7220916188104, + 29.953139899174687 + ], + [ + 74.7220916188104, + 29.22970833966607 + ], + [ + 73.98280634422304, + 29.953139899174687 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.98280634422304, + 29.953139899174687 + ], + [ + 74.7220916188104, + 30.676571458683302 + ], + [ + 74.7220916188104, + 29.953139899174687 + ], + [ + 73.98280634422304, + 29.953139899174687 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.98280634422304, + 29.953139899174687 + ], + [ + 73.98280634422304, + 30.676571458683302 + ], + [ + 74.7220916188104, + 30.676571458683302 + ], + [ + 73.98280634422304, + 29.953139899174687 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.98280634422304, + 30.676571458683302 + ], + [ + 73.98280634422304, + 31.400003018191917 + ], + [ + 74.7220916188104, + 30.676571458683302 + ], + [ + 73.98280634422304, + 30.676571458683302 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.98280634422304, + 31.400003018191917 + ], + [ + 74.7220916188104, + 31.400003018191917 + ], + [ + 74.7220916188104, + 30.676571458683302 + ], + [ + 73.98280634422304, + 31.400003018191917 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.98280634422304, + 31.400003018191917 + ], + [ + 74.7220916188104, + 32.123434577700536 + ], + [ + 74.7220916188104, + 31.400003018191917 + ], + [ + 73.98280634422304, + 31.400003018191917 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.98280634422304, + 31.400003018191917 + ], + [ + 73.98280634422304, + 32.123434577700536 + ], + [ + 74.7220916188104, + 32.123434577700536 + ], + [ + 73.98280634422304, + 31.400003018191917 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.98280634422304, + 32.123434577700536 + ], + [ + 73.98280634422304, + 32.84686613720915 + ], + [ + 74.7220916188104, + 32.123434577700536 + ], + [ + 73.98280634422304, + 32.123434577700536 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.98280634422304, + 32.84686613720915 + ], + [ + 74.7220916188104, + 32.84686613720915 + ], + [ + 74.7220916188104, + 32.123434577700536 + ], + [ + 73.98280634422304, + 32.84686613720915 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.98280634422304, + 32.84686613720915 + ], + [ + 74.7220916188104, + 33.57029769671776 + ], + [ + 74.7220916188104, + 32.84686613720915 + ], + [ + 73.98280634422304, + 32.84686613720915 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.98280634422304, + 32.84686613720915 + ], + [ + 73.98280634422304, + 33.57029769671776 + ], + [ + 74.7220916188104, + 33.57029769671776 + ], + [ + 73.98280634422304, + 32.84686613720915 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.98280634422304, + 33.57029769671776 + ], + [ + 73.98280634422304, + 34.29372925622637 + ], + [ + 74.7220916188104, + 33.57029769671776 + ], + [ + 73.98280634422304, + 33.57029769671776 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.98280634422304, + 34.29372925622637 + ], + [ + 74.7220916188104, + 34.29372925622637 + ], + [ + 74.7220916188104, + 33.57029769671776 + ], + [ + 73.98280634422304, + 34.29372925622637 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.98280634422304, + 34.29372925622637 + ], + [ + 74.7220916188104, + 35.01716081573498 + ], + [ + 74.7220916188104, + 34.29372925622637 + ], + [ + 73.98280634422304, + 34.29372925622637 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.98280634422304, + 34.29372925622637 + ], + [ + 73.98280634422304, + 35.01716081573498 + ], + [ + 74.7220916188104, + 35.01716081573498 + ], + [ + 73.98280634422304, + 34.29372925622637 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.98280634422304, + 35.01716081573498 + ], + [ + 73.98280634422304, + 35.740592375243594 + ], + [ + 74.7220916188104, + 35.01716081573498 + ], + [ + 73.98280634422304, + 35.01716081573498 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.98280634422304, + 35.740592375243594 + ], + [ + 74.7220916188104, + 35.740592375243594 + ], + [ + 74.7220916188104, + 35.01716081573498 + ], + [ + 73.98280634422304, + 35.740592375243594 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.98280634422304, + 35.740592375243594 + ], + [ + 74.7220916188104, + 36.464023934752205 + ], + [ + 74.7220916188104, + 35.740592375243594 + ], + [ + 73.98280634422304, + 35.740592375243594 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.98280634422304, + 35.740592375243594 + ], + [ + 73.98280634422304, + 36.464023934752205 + ], + [ + 74.7220916188104, + 36.464023934752205 + ], + [ + 73.98280634422304, + 35.740592375243594 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.98280634422304, + 36.464023934752205 + ], + [ + 73.98280634422304, + 37.18745549426082 + ], + [ + 74.7220916188104, + 36.464023934752205 + ], + [ + 73.98280634422304, + 36.464023934752205 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.98280634422304, + 37.18745549426082 + ], + [ + 74.7220916188104, + 37.18745549426082 + ], + [ + 74.7220916188104, + 36.464023934752205 + ], + [ + 73.98280634422304, + 37.18745549426082 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.98280634422304, + 37.18745549426082 + ], + [ + 74.7220916188104, + 37.91088705376943 + ], + [ + 74.7220916188104, + 37.18745549426082 + ], + [ + 73.98280634422304, + 37.18745549426082 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.98280634422304, + 37.18745549426082 + ], + [ + 73.98280634422304, + 37.91088705376943 + ], + [ + 74.7220916188104, + 37.91088705376943 + ], + [ + 73.98280634422304, + 37.18745549426082 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.98280634422304, + 37.91088705376943 + ], + [ + 73.98280634422304, + 38.63431861327804 + ], + [ + 74.7220916188104, + 37.91088705376943 + ], + [ + 73.98280634422304, + 37.91088705376943 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.98280634422304, + 38.63431861327804 + ], + [ + 74.7220916188104, + 38.63431861327804 + ], + [ + 74.7220916188104, + 37.91088705376943 + ], + [ + 73.98280634422304, + 38.63431861327804 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.98280634422304, + 38.63431861327804 + ], + [ + 74.7220916188104, + 39.35775017278665 + ], + [ + 74.7220916188104, + 38.63431861327804 + ], + [ + 73.98280634422304, + 38.63431861327804 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.98280634422304, + 38.63431861327804 + ], + [ + 73.98280634422304, + 39.35775017278665 + ], + [ + 74.7220916188104, + 39.35775017278665 + ], + [ + 73.98280634422304, + 38.63431861327804 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.98280634422304, + 39.35775017278665 + ], + [ + 73.98280634422304, + 40.08118173229526 + ], + [ + 74.7220916188104, + 39.35775017278665 + ], + [ + 73.98280634422304, + 39.35775017278665 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.98280634422304, + 40.08118173229526 + ], + [ + 74.7220916188104, + 40.08118173229526 + ], + [ + 74.7220916188104, + 39.35775017278665 + ], + [ + 73.98280634422304, + 40.08118173229526 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.98280634422304, + 40.08118173229526 + ], + [ + 74.7220916188104, + 40.804613291803875 + ], + [ + 74.7220916188104, + 40.08118173229526 + ], + [ + 73.98280634422304, + 40.08118173229526 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.98280634422304, + 40.08118173229526 + ], + [ + 73.98280634422304, + 40.804613291803875 + ], + [ + 74.7220916188104, + 40.804613291803875 + ], + [ + 73.98280634422304, + 40.08118173229526 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.98280634422304, + 40.804613291803875 + ], + [ + 73.98280634422304, + 41.52804485131249 + ], + [ + 74.7220916188104, + 40.804613291803875 + ], + [ + 73.98280634422304, + 40.804613291803875 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.98280634422304, + 41.52804485131249 + ], + [ + 74.7220916188104, + 41.52804485131249 + ], + [ + 74.7220916188104, + 40.804613291803875 + ], + [ + 73.98280634422304, + 41.52804485131249 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.98280634422304, + 41.52804485131249 + ], + [ + 74.7220916188104, + 42.2514764108211 + ], + [ + 74.7220916188104, + 41.52804485131249 + ], + [ + 73.98280634422304, + 41.52804485131249 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.98280634422304, + 41.52804485131249 + ], + [ + 73.98280634422304, + 42.2514764108211 + ], + [ + 74.7220916188104, + 42.2514764108211 + ], + [ + 73.98280634422304, + 41.52804485131249 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.98280634422304, + 42.2514764108211 + ], + [ + 73.98280634422304, + 42.97490797032971 + ], + [ + 74.7220916188104, + 42.2514764108211 + ], + [ + 73.98280634422304, + 42.2514764108211 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.98280634422304, + 42.97490797032971 + ], + [ + 74.7220916188104, + 42.97490797032971 + ], + [ + 74.7220916188104, + 42.2514764108211 + ], + [ + 73.98280634422304, + 42.97490797032971 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.98280634422304, + 42.97490797032971 + ], + [ + 74.7220916188104, + 43.69833952983832 + ], + [ + 74.7220916188104, + 42.97490797032971 + ], + [ + 73.98280634422304, + 42.97490797032971 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.98280634422304, + 42.97490797032971 + ], + [ + 73.98280634422304, + 43.69833952983832 + ], + [ + 74.7220916188104, + 43.69833952983832 + ], + [ + 73.98280634422304, + 42.97490797032971 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.98280634422304, + 43.69833952983832 + ], + [ + 73.98280634422304, + 44.42177108934693 + ], + [ + 74.7220916188104, + 43.69833952983832 + ], + [ + 73.98280634422304, + 43.69833952983832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.98280634422304, + 44.42177108934693 + ], + [ + 74.7220916188104, + 44.42177108934693 + ], + [ + 74.7220916188104, + 43.69833952983832 + ], + [ + 73.98280634422304, + 44.42177108934693 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.98280634422304, + 44.42177108934693 + ], + [ + 74.7220916188104, + 45.145202648855545 + ], + [ + 74.7220916188104, + 44.42177108934693 + ], + [ + 73.98280634422304, + 44.42177108934693 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.98280634422304, + 44.42177108934693 + ], + [ + 73.98280634422304, + 45.145202648855545 + ], + [ + 74.7220916188104, + 45.145202648855545 + ], + [ + 73.98280634422304, + 44.42177108934693 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.98280634422304, + 45.145202648855545 + ], + [ + 73.98280634422304, + 45.868634208364156 + ], + [ + 74.7220916188104, + 45.145202648855545 + ], + [ + 73.98280634422304, + 45.145202648855545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.98280634422304, + 45.868634208364156 + ], + [ + 74.7220916188104, + 45.868634208364156 + ], + [ + 74.7220916188104, + 45.145202648855545 + ], + [ + 73.98280634422304, + 45.868634208364156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.98280634422304, + 45.868634208364156 + ], + [ + 74.7220916188104, + 46.59206576787277 + ], + [ + 74.7220916188104, + 45.868634208364156 + ], + [ + 73.98280634422304, + 45.868634208364156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.98280634422304, + 45.868634208364156 + ], + [ + 73.98280634422304, + 46.59206576787277 + ], + [ + 74.7220916188104, + 46.59206576787277 + ], + [ + 73.98280634422304, + 45.868634208364156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.98280634422304, + 46.59206576787277 + ], + [ + 73.98280634422304, + 47.31549732738138 + ], + [ + 74.7220916188104, + 46.59206576787277 + ], + [ + 73.98280634422304, + 46.59206576787277 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.98280634422304, + 47.31549732738138 + ], + [ + 74.7220916188104, + 47.31549732738138 + ], + [ + 74.7220916188104, + 46.59206576787277 + ], + [ + 73.98280634422304, + 47.31549732738138 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.98280634422304, + 47.31549732738138 + ], + [ + 74.7220916188104, + 48.03892888688999 + ], + [ + 74.7220916188104, + 47.31549732738138 + ], + [ + 73.98280634422304, + 47.31549732738138 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 73.98280634422304, + 47.31549732738138 + ], + [ + 73.98280634422304, + 48.03892888688999 + ], + [ + 74.7220916188104, + 48.03892888688999 + ], + [ + 73.98280634422304, + 47.31549732738138 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.7220916188104, + 11.867350911459308 + ], + [ + 74.7220916188104, + 12.590782470967923 + ], + [ + 75.46137689339776, + 12.590782470967923 + ], + [ + 74.7220916188104, + 11.867350911459308 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.7220916188104, + 11.867350911459308 + ], + [ + 75.46137689339776, + 12.590782470967923 + ], + [ + 75.46137689339776, + 11.867350911459308 + ], + [ + 74.7220916188104, + 11.867350911459308 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.7220916188104, + 12.590782470967923 + ], + [ + 74.7220916188104, + 13.314214030476538 + ], + [ + 75.46137689339776, + 12.590782470967923 + ], + [ + 74.7220916188104, + 12.590782470967923 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.7220916188104, + 13.314214030476538 + ], + [ + 75.46137689339776, + 13.314214030476538 + ], + [ + 75.46137689339776, + 12.590782470967923 + ], + [ + 74.7220916188104, + 13.314214030476538 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.7220916188104, + 13.314214030476538 + ], + [ + 74.7220916188104, + 14.037645589985154 + ], + [ + 75.46137689339776, + 14.037645589985154 + ], + [ + 74.7220916188104, + 13.314214030476538 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.7220916188104, + 13.314214030476538 + ], + [ + 75.46137689339776, + 14.037645589985154 + ], + [ + 75.46137689339776, + 13.314214030476538 + ], + [ + 74.7220916188104, + 13.314214030476538 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.7220916188104, + 14.037645589985154 + ], + [ + 74.7220916188104, + 14.761077149493769 + ], + [ + 75.46137689339776, + 14.037645589985154 + ], + [ + 74.7220916188104, + 14.037645589985154 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.7220916188104, + 14.761077149493769 + ], + [ + 75.46137689339776, + 14.761077149493769 + ], + [ + 75.46137689339776, + 14.037645589985154 + ], + [ + 74.7220916188104, + 14.761077149493769 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.7220916188104, + 14.761077149493769 + ], + [ + 74.7220916188104, + 15.484508709002384 + ], + [ + 75.46137689339776, + 15.484508709002384 + ], + [ + 74.7220916188104, + 14.761077149493769 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.7220916188104, + 14.761077149493769 + ], + [ + 75.46137689339776, + 15.484508709002384 + ], + [ + 75.46137689339776, + 14.761077149493769 + ], + [ + 74.7220916188104, + 14.761077149493769 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.7220916188104, + 15.484508709002384 + ], + [ + 74.7220916188104, + 16.207940268511 + ], + [ + 75.46137689339776, + 15.484508709002384 + ], + [ + 74.7220916188104, + 15.484508709002384 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.7220916188104, + 16.207940268511 + ], + [ + 75.46137689339776, + 16.207940268511 + ], + [ + 75.46137689339776, + 15.484508709002384 + ], + [ + 74.7220916188104, + 16.207940268511 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.7220916188104, + 16.207940268511 + ], + [ + 74.7220916188104, + 16.931371828019614 + ], + [ + 75.46137689339776, + 16.931371828019614 + ], + [ + 74.7220916188104, + 16.207940268511 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.7220916188104, + 16.207940268511 + ], + [ + 75.46137689339776, + 16.931371828019614 + ], + [ + 75.46137689339776, + 16.207940268511 + ], + [ + 74.7220916188104, + 16.207940268511 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.7220916188104, + 16.931371828019614 + ], + [ + 74.7220916188104, + 17.65480338752823 + ], + [ + 75.46137689339776, + 16.931371828019614 + ], + [ + 74.7220916188104, + 16.931371828019614 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.7220916188104, + 17.65480338752823 + ], + [ + 75.46137689339776, + 17.65480338752823 + ], + [ + 75.46137689339776, + 16.931371828019614 + ], + [ + 74.7220916188104, + 17.65480338752823 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.7220916188104, + 17.65480338752823 + ], + [ + 74.7220916188104, + 18.378234947036844 + ], + [ + 75.46137689339776, + 18.378234947036844 + ], + [ + 74.7220916188104, + 17.65480338752823 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.7220916188104, + 17.65480338752823 + ], + [ + 75.46137689339776, + 18.378234947036844 + ], + [ + 75.46137689339776, + 17.65480338752823 + ], + [ + 74.7220916188104, + 17.65480338752823 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.7220916188104, + 18.378234947036844 + ], + [ + 74.7220916188104, + 19.10166650654546 + ], + [ + 75.46137689339776, + 18.378234947036844 + ], + [ + 74.7220916188104, + 18.378234947036844 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.7220916188104, + 19.10166650654546 + ], + [ + 75.46137689339776, + 19.10166650654546 + ], + [ + 75.46137689339776, + 18.378234947036844 + ], + [ + 74.7220916188104, + 19.10166650654546 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.7220916188104, + 19.10166650654546 + ], + [ + 74.7220916188104, + 19.825098066054075 + ], + [ + 75.46137689339776, + 19.825098066054075 + ], + [ + 74.7220916188104, + 19.10166650654546 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.7220916188104, + 19.10166650654546 + ], + [ + 75.46137689339776, + 19.825098066054075 + ], + [ + 75.46137689339776, + 19.10166650654546 + ], + [ + 74.7220916188104, + 19.10166650654546 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.7220916188104, + 19.825098066054075 + ], + [ + 74.7220916188104, + 20.54852962556269 + ], + [ + 75.46137689339776, + 19.825098066054075 + ], + [ + 74.7220916188104, + 19.825098066054075 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.7220916188104, + 20.54852962556269 + ], + [ + 75.46137689339776, + 20.54852962556269 + ], + [ + 75.46137689339776, + 19.825098066054075 + ], + [ + 74.7220916188104, + 20.54852962556269 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.7220916188104, + 20.54852962556269 + ], + [ + 74.7220916188104, + 21.271961185071305 + ], + [ + 75.46137689339776, + 21.271961185071305 + ], + [ + 74.7220916188104, + 20.54852962556269 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.7220916188104, + 20.54852962556269 + ], + [ + 75.46137689339776, + 21.271961185071305 + ], + [ + 75.46137689339776, + 20.54852962556269 + ], + [ + 74.7220916188104, + 20.54852962556269 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.7220916188104, + 21.271961185071305 + ], + [ + 74.7220916188104, + 21.99539274457992 + ], + [ + 75.46137689339776, + 21.271961185071305 + ], + [ + 74.7220916188104, + 21.271961185071305 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.7220916188104, + 21.99539274457992 + ], + [ + 75.46137689339776, + 21.99539274457992 + ], + [ + 75.46137689339776, + 21.271961185071305 + ], + [ + 74.7220916188104, + 21.99539274457992 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.7220916188104, + 21.99539274457992 + ], + [ + 74.7220916188104, + 22.718824304088535 + ], + [ + 75.46137689339776, + 22.718824304088535 + ], + [ + 74.7220916188104, + 21.99539274457992 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.7220916188104, + 21.99539274457992 + ], + [ + 75.46137689339776, + 22.718824304088535 + ], + [ + 75.46137689339776, + 21.99539274457992 + ], + [ + 74.7220916188104, + 21.99539274457992 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.7220916188104, + 22.718824304088535 + ], + [ + 74.7220916188104, + 23.44225586359715 + ], + [ + 75.46137689339776, + 22.718824304088535 + ], + [ + 74.7220916188104, + 22.718824304088535 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.7220916188104, + 23.44225586359715 + ], + [ + 75.46137689339776, + 23.44225586359715 + ], + [ + 75.46137689339776, + 22.718824304088535 + ], + [ + 74.7220916188104, + 23.44225586359715 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.7220916188104, + 23.44225586359715 + ], + [ + 74.7220916188104, + 24.165687423105766 + ], + [ + 75.46137689339776, + 24.165687423105766 + ], + [ + 74.7220916188104, + 23.44225586359715 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.7220916188104, + 23.44225586359715 + ], + [ + 75.46137689339776, + 24.165687423105766 + ], + [ + 75.46137689339776, + 23.44225586359715 + ], + [ + 74.7220916188104, + 23.44225586359715 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.7220916188104, + 24.165687423105766 + ], + [ + 74.7220916188104, + 24.88911898261438 + ], + [ + 75.46137689339776, + 24.165687423105766 + ], + [ + 74.7220916188104, + 24.165687423105766 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.7220916188104, + 24.88911898261438 + ], + [ + 75.46137689339776, + 24.88911898261438 + ], + [ + 75.46137689339776, + 24.165687423105766 + ], + [ + 74.7220916188104, + 24.88911898261438 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.7220916188104, + 24.88911898261438 + ], + [ + 74.7220916188104, + 25.612550542122996 + ], + [ + 75.46137689339776, + 25.612550542122996 + ], + [ + 74.7220916188104, + 24.88911898261438 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.7220916188104, + 24.88911898261438 + ], + [ + 75.46137689339776, + 25.612550542122996 + ], + [ + 75.46137689339776, + 24.88911898261438 + ], + [ + 74.7220916188104, + 24.88911898261438 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.7220916188104, + 25.612550542122996 + ], + [ + 74.7220916188104, + 26.33598210163161 + ], + [ + 75.46137689339776, + 25.612550542122996 + ], + [ + 74.7220916188104, + 25.612550542122996 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.7220916188104, + 26.33598210163161 + ], + [ + 75.46137689339776, + 26.33598210163161 + ], + [ + 75.46137689339776, + 25.612550542122996 + ], + [ + 74.7220916188104, + 26.33598210163161 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.7220916188104, + 26.33598210163161 + ], + [ + 74.7220916188104, + 27.059413661140226 + ], + [ + 75.46137689339776, + 27.059413661140226 + ], + [ + 74.7220916188104, + 26.33598210163161 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.7220916188104, + 26.33598210163161 + ], + [ + 75.46137689339776, + 27.059413661140226 + ], + [ + 75.46137689339776, + 26.33598210163161 + ], + [ + 74.7220916188104, + 26.33598210163161 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.7220916188104, + 27.059413661140226 + ], + [ + 74.7220916188104, + 27.78284522064884 + ], + [ + 75.46137689339776, + 27.059413661140226 + ], + [ + 74.7220916188104, + 27.059413661140226 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.7220916188104, + 27.78284522064884 + ], + [ + 75.46137689339776, + 27.78284522064884 + ], + [ + 75.46137689339776, + 27.059413661140226 + ], + [ + 74.7220916188104, + 27.78284522064884 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.7220916188104, + 27.78284522064884 + ], + [ + 74.7220916188104, + 28.506276780157457 + ], + [ + 75.46137689339776, + 28.506276780157457 + ], + [ + 74.7220916188104, + 27.78284522064884 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.7220916188104, + 27.78284522064884 + ], + [ + 75.46137689339776, + 28.506276780157457 + ], + [ + 75.46137689339776, + 27.78284522064884 + ], + [ + 74.7220916188104, + 27.78284522064884 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.7220916188104, + 28.506276780157457 + ], + [ + 74.7220916188104, + 29.22970833966607 + ], + [ + 75.46137689339776, + 28.506276780157457 + ], + [ + 74.7220916188104, + 28.506276780157457 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.7220916188104, + 29.22970833966607 + ], + [ + 75.46137689339776, + 29.22970833966607 + ], + [ + 75.46137689339776, + 28.506276780157457 + ], + [ + 74.7220916188104, + 29.22970833966607 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.7220916188104, + 29.22970833966607 + ], + [ + 74.7220916188104, + 29.953139899174687 + ], + [ + 75.46137689339776, + 29.953139899174687 + ], + [ + 74.7220916188104, + 29.22970833966607 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.7220916188104, + 29.22970833966607 + ], + [ + 75.46137689339776, + 29.953139899174687 + ], + [ + 75.46137689339776, + 29.22970833966607 + ], + [ + 74.7220916188104, + 29.22970833966607 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.7220916188104, + 29.953139899174687 + ], + [ + 74.7220916188104, + 30.676571458683302 + ], + [ + 75.46137689339776, + 29.953139899174687 + ], + [ + 74.7220916188104, + 29.953139899174687 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.7220916188104, + 30.676571458683302 + ], + [ + 75.46137689339776, + 30.676571458683302 + ], + [ + 75.46137689339776, + 29.953139899174687 + ], + [ + 74.7220916188104, + 30.676571458683302 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.7220916188104, + 30.676571458683302 + ], + [ + 74.7220916188104, + 31.400003018191917 + ], + [ + 75.46137689339776, + 31.400003018191917 + ], + [ + 74.7220916188104, + 30.676571458683302 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.7220916188104, + 30.676571458683302 + ], + [ + 75.46137689339776, + 31.400003018191917 + ], + [ + 75.46137689339776, + 30.676571458683302 + ], + [ + 74.7220916188104, + 30.676571458683302 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.7220916188104, + 31.400003018191917 + ], + [ + 74.7220916188104, + 32.123434577700536 + ], + [ + 75.46137689339776, + 31.400003018191917 + ], + [ + 74.7220916188104, + 31.400003018191917 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.7220916188104, + 32.123434577700536 + ], + [ + 75.46137689339776, + 32.123434577700536 + ], + [ + 75.46137689339776, + 31.400003018191917 + ], + [ + 74.7220916188104, + 32.123434577700536 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.7220916188104, + 32.123434577700536 + ], + [ + 74.7220916188104, + 32.84686613720915 + ], + [ + 75.46137689339776, + 32.84686613720915 + ], + [ + 74.7220916188104, + 32.123434577700536 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.7220916188104, + 32.123434577700536 + ], + [ + 75.46137689339776, + 32.84686613720915 + ], + [ + 75.46137689339776, + 32.123434577700536 + ], + [ + 74.7220916188104, + 32.123434577700536 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.7220916188104, + 32.84686613720915 + ], + [ + 74.7220916188104, + 33.57029769671776 + ], + [ + 75.46137689339776, + 32.84686613720915 + ], + [ + 74.7220916188104, + 32.84686613720915 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.7220916188104, + 33.57029769671776 + ], + [ + 75.46137689339776, + 33.57029769671776 + ], + [ + 75.46137689339776, + 32.84686613720915 + ], + [ + 74.7220916188104, + 33.57029769671776 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.7220916188104, + 33.57029769671776 + ], + [ + 74.7220916188104, + 34.29372925622637 + ], + [ + 75.46137689339776, + 34.29372925622637 + ], + [ + 74.7220916188104, + 33.57029769671776 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.7220916188104, + 33.57029769671776 + ], + [ + 75.46137689339776, + 34.29372925622637 + ], + [ + 75.46137689339776, + 33.57029769671776 + ], + [ + 74.7220916188104, + 33.57029769671776 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.7220916188104, + 34.29372925622637 + ], + [ + 74.7220916188104, + 35.01716081573498 + ], + [ + 75.46137689339776, + 34.29372925622637 + ], + [ + 74.7220916188104, + 34.29372925622637 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.7220916188104, + 35.01716081573498 + ], + [ + 75.46137689339776, + 35.01716081573498 + ], + [ + 75.46137689339776, + 34.29372925622637 + ], + [ + 74.7220916188104, + 35.01716081573498 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.7220916188104, + 35.01716081573498 + ], + [ + 74.7220916188104, + 35.740592375243594 + ], + [ + 75.46137689339776, + 35.740592375243594 + ], + [ + 74.7220916188104, + 35.01716081573498 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.7220916188104, + 35.01716081573498 + ], + [ + 75.46137689339776, + 35.740592375243594 + ], + [ + 75.46137689339776, + 35.01716081573498 + ], + [ + 74.7220916188104, + 35.01716081573498 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.7220916188104, + 35.740592375243594 + ], + [ + 74.7220916188104, + 36.464023934752205 + ], + [ + 75.46137689339776, + 35.740592375243594 + ], + [ + 74.7220916188104, + 35.740592375243594 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.7220916188104, + 36.464023934752205 + ], + [ + 75.46137689339776, + 36.464023934752205 + ], + [ + 75.46137689339776, + 35.740592375243594 + ], + [ + 74.7220916188104, + 36.464023934752205 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.7220916188104, + 36.464023934752205 + ], + [ + 74.7220916188104, + 37.18745549426082 + ], + [ + 75.46137689339776, + 37.18745549426082 + ], + [ + 74.7220916188104, + 36.464023934752205 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.7220916188104, + 36.464023934752205 + ], + [ + 75.46137689339776, + 37.18745549426082 + ], + [ + 75.46137689339776, + 36.464023934752205 + ], + [ + 74.7220916188104, + 36.464023934752205 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.7220916188104, + 37.18745549426082 + ], + [ + 74.7220916188104, + 37.91088705376943 + ], + [ + 75.46137689339776, + 37.18745549426082 + ], + [ + 74.7220916188104, + 37.18745549426082 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.7220916188104, + 37.91088705376943 + ], + [ + 75.46137689339776, + 37.91088705376943 + ], + [ + 75.46137689339776, + 37.18745549426082 + ], + [ + 74.7220916188104, + 37.91088705376943 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.7220916188104, + 37.91088705376943 + ], + [ + 74.7220916188104, + 38.63431861327804 + ], + [ + 75.46137689339776, + 38.63431861327804 + ], + [ + 74.7220916188104, + 37.91088705376943 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.7220916188104, + 37.91088705376943 + ], + [ + 75.46137689339776, + 38.63431861327804 + ], + [ + 75.46137689339776, + 37.91088705376943 + ], + [ + 74.7220916188104, + 37.91088705376943 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.7220916188104, + 38.63431861327804 + ], + [ + 74.7220916188104, + 39.35775017278665 + ], + [ + 75.46137689339776, + 38.63431861327804 + ], + [ + 74.7220916188104, + 38.63431861327804 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.7220916188104, + 39.35775017278665 + ], + [ + 75.46137689339776, + 39.35775017278665 + ], + [ + 75.46137689339776, + 38.63431861327804 + ], + [ + 74.7220916188104, + 39.35775017278665 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.7220916188104, + 39.35775017278665 + ], + [ + 74.7220916188104, + 40.08118173229526 + ], + [ + 75.46137689339776, + 40.08118173229526 + ], + [ + 74.7220916188104, + 39.35775017278665 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.7220916188104, + 39.35775017278665 + ], + [ + 75.46137689339776, + 40.08118173229526 + ], + [ + 75.46137689339776, + 39.35775017278665 + ], + [ + 74.7220916188104, + 39.35775017278665 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.7220916188104, + 40.08118173229526 + ], + [ + 74.7220916188104, + 40.804613291803875 + ], + [ + 75.46137689339776, + 40.08118173229526 + ], + [ + 74.7220916188104, + 40.08118173229526 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.7220916188104, + 40.804613291803875 + ], + [ + 75.46137689339776, + 40.804613291803875 + ], + [ + 75.46137689339776, + 40.08118173229526 + ], + [ + 74.7220916188104, + 40.804613291803875 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.7220916188104, + 40.804613291803875 + ], + [ + 74.7220916188104, + 41.52804485131249 + ], + [ + 75.46137689339776, + 41.52804485131249 + ], + [ + 74.7220916188104, + 40.804613291803875 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.7220916188104, + 40.804613291803875 + ], + [ + 75.46137689339776, + 41.52804485131249 + ], + [ + 75.46137689339776, + 40.804613291803875 + ], + [ + 74.7220916188104, + 40.804613291803875 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.7220916188104, + 41.52804485131249 + ], + [ + 74.7220916188104, + 42.2514764108211 + ], + [ + 75.46137689339776, + 41.52804485131249 + ], + [ + 74.7220916188104, + 41.52804485131249 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.7220916188104, + 42.2514764108211 + ], + [ + 75.46137689339776, + 42.2514764108211 + ], + [ + 75.46137689339776, + 41.52804485131249 + ], + [ + 74.7220916188104, + 42.2514764108211 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.7220916188104, + 42.2514764108211 + ], + [ + 74.7220916188104, + 42.97490797032971 + ], + [ + 75.46137689339776, + 42.97490797032971 + ], + [ + 74.7220916188104, + 42.2514764108211 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.7220916188104, + 42.2514764108211 + ], + [ + 75.46137689339776, + 42.97490797032971 + ], + [ + 75.46137689339776, + 42.2514764108211 + ], + [ + 74.7220916188104, + 42.2514764108211 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.7220916188104, + 42.97490797032971 + ], + [ + 74.7220916188104, + 43.69833952983832 + ], + [ + 75.46137689339776, + 42.97490797032971 + ], + [ + 74.7220916188104, + 42.97490797032971 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.7220916188104, + 43.69833952983832 + ], + [ + 75.46137689339776, + 43.69833952983832 + ], + [ + 75.46137689339776, + 42.97490797032971 + ], + [ + 74.7220916188104, + 43.69833952983832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.7220916188104, + 43.69833952983832 + ], + [ + 74.7220916188104, + 44.42177108934693 + ], + [ + 75.46137689339776, + 44.42177108934693 + ], + [ + 74.7220916188104, + 43.69833952983832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.7220916188104, + 43.69833952983832 + ], + [ + 75.46137689339776, + 44.42177108934693 + ], + [ + 75.46137689339776, + 43.69833952983832 + ], + [ + 74.7220916188104, + 43.69833952983832 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.7220916188104, + 44.42177108934693 + ], + [ + 74.7220916188104, + 45.145202648855545 + ], + [ + 75.46137689339776, + 44.42177108934693 + ], + [ + 74.7220916188104, + 44.42177108934693 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.7220916188104, + 45.145202648855545 + ], + [ + 75.46137689339776, + 45.145202648855545 + ], + [ + 75.46137689339776, + 44.42177108934693 + ], + [ + 74.7220916188104, + 45.145202648855545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.7220916188104, + 45.145202648855545 + ], + [ + 74.7220916188104, + 45.868634208364156 + ], + [ + 75.46137689339776, + 45.868634208364156 + ], + [ + 74.7220916188104, + 45.145202648855545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.7220916188104, + 45.145202648855545 + ], + [ + 75.46137689339776, + 45.868634208364156 + ], + [ + 75.46137689339776, + 45.145202648855545 + ], + [ + 74.7220916188104, + 45.145202648855545 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.7220916188104, + 45.868634208364156 + ], + [ + 74.7220916188104, + 46.59206576787277 + ], + [ + 75.46137689339776, + 45.868634208364156 + ], + [ + 74.7220916188104, + 45.868634208364156 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.7220916188104, + 46.59206576787277 + ], + [ + 75.46137689339776, + 46.59206576787277 + ], + [ + 75.46137689339776, + 45.868634208364156 + ], + [ + 74.7220916188104, + 46.59206576787277 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.7220916188104, + 46.59206576787277 + ], + [ + 74.7220916188104, + 47.31549732738138 + ], + [ + 75.46137689339776, + 47.31549732738138 + ], + [ + 74.7220916188104, + 46.59206576787277 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.7220916188104, + 46.59206576787277 + ], + [ + 75.46137689339776, + 47.31549732738138 + ], + [ + 75.46137689339776, + 46.59206576787277 + ], + [ + 74.7220916188104, + 46.59206576787277 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.7220916188104, + 47.31549732738138 + ], + [ + 74.7220916188104, + 48.03892888688999 + ], + [ + 75.46137689339776, + 47.31549732738138 + ], + [ + 74.7220916188104, + 47.31549732738138 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 74.7220916188104, + 48.03892888688999 + ], + [ + 75.46137689339776, + 48.03892888688999 + ], + [ + 75.46137689339776, + 47.31549732738138 + ], + [ + 74.7220916188104, + 48.03892888688999 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "fill-opacity": 0, + "stroke": "#0ff" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 63.6328125, + 11.867350911459308 + ], + [ + 75.234375, + 11.867350911459308 + ], + [ + 75.234375, + 47.754097979680026 + ], + [ + 63.6328125, + 47.754097979680026 + ], + [ + 63.6328125, + 11.867350911459308 + ] + ] + ] + } + } + ] +} \ No newline at end of file diff --git a/packages/turf-union/.npmignore b/packages/turf-union/.npmignore new file mode 100644 index 0000000000..bb3c08c09a --- /dev/null +++ b/packages/turf-union/.npmignore @@ -0,0 +1,2 @@ +test +coverage diff --git a/packages/turf-union/README.md b/packages/turf-union/README.md new file mode 100644 index 0000000000..fb1971a516 --- /dev/null +++ b/packages/turf-union/README.md @@ -0,0 +1,85 @@ +# turf-union + +[![build status](https://secure.travis-ci.org/Turfjs/turf-union.png)](http://travis-ci.org/Turfjs/turf-union) + +find the union of geographic features + + +### `turf.union(poly1, poly2)` + +Takes two Polygon|polygons and returns a combined polygon. If the input polygons are not contiguous, this function returns a MultiPolygon feature. + + +### Parameters + +| parameter | type | description | +| --------- | -------------------- | --------------------- | +| `poly1` | Feature\.\ | input polygon | +| `poly2` | Feature\.\ | another input polygon | + + +### Example + +```js +var poly1 = { + "type": "Feature", + "properties": { + "fill": "#0f0" + }, + "geometry": { + "type": "Polygon", + "coordinates": [[ + [-82.574787, 35.594087], + [-82.574787, 35.615581], + [-82.545261, 35.615581], + [-82.545261, 35.594087], + [-82.574787, 35.594087] + ]] + } +}; +var poly2 = { + "type": "Feature", + "properties": { + "fill": "#00f" + }, + "geometry": { + "type": "Polygon", + "coordinates": [[ + [-82.560024, 35.585153], + [-82.560024, 35.602602], + [-82.52964, 35.602602], + [-82.52964, 35.585153], + [-82.560024, 35.585153] + ]] + } +}; +var polygons = { + "type": "FeatureCollection", + "features": [poly1, poly2] +}; + +var union = turf.union(poly1, poly2); + +//=polygons + +//=union +``` + + +**Returns** `Feature.`, a combined Polygon or MultiPolygon feature + +## Installation + +Requires [nodejs](http://nodejs.org/). + +```sh +$ npm install turf-union +``` + +## Tests + +```sh +$ npm test +``` + + diff --git a/packages/turf-union/bench.js b/packages/turf-union/bench.js new file mode 100644 index 0000000000..7514c3da76 --- /dev/null +++ b/packages/turf-union/bench.js @@ -0,0 +1,18 @@ +var union = require('./'); +var Benchmark = require('benchmark'); +var fs = require('fs'); + +var fcs = JSON.parse(fs.readFileSync(__dirname+'/test/fixtures/in/Intersect1.geojson')); + +var suite = new Benchmark.Suite('turf-union'); +suite + .add('turf-union',function () { + union(fcs[0].features[0], fcs[1].features[0]); + }) + .on('cycle', function (event) { + console.log(String(event.target)); + }) + .on('complete', function () { + + }) + .run(); diff --git a/packages/turf-union/index.js b/packages/turf-union/index.js new file mode 100644 index 0000000000..956e95d9b4 --- /dev/null +++ b/packages/turf-union/index.js @@ -0,0 +1,73 @@ +// look here for help http://svn.osgeo.org/grass/grass/branches/releasebranch_6_4/vector/v.overlay/main.c +//must be array of polygons + +// depend on jsts for now https://github.com/bjornharrtell/jsts/blob/master/examples/overlay.html + +var jsts = require('jsts'); + +/** + * Takes two {@link Polygon|polygons} and returns a combined polygon. If the input polygons are not contiguous, this function returns a {@link MultiPolygon} feature. + * + * @name union + * @category transformation + * @param {Feature} poly1 input polygon + * @param {Feature} poly2 another input polygon + * @return {Feature<(Polygon|MultiPolygon)>} a combined {@link Polygon} or {@link MultiPolygon} feature + * @example + * var poly1 = { + * "type": "Feature", + * "properties": { + * "fill": "#0f0" + * }, + * "geometry": { + * "type": "Polygon", + * "coordinates": [[ + * [-82.574787, 35.594087], + * [-82.574787, 35.615581], + * [-82.545261, 35.615581], + * [-82.545261, 35.594087], + * [-82.574787, 35.594087] + * ]] + * } + * }; + * var poly2 = { + * "type": "Feature", + * "properties": { + * "fill": "#00f" + * }, + * "geometry": { + * "type": "Polygon", + * "coordinates": [[ + * [-82.560024, 35.585153], + * [-82.560024, 35.602602], + * [-82.52964, 35.602602], + * [-82.52964, 35.585153], + * [-82.560024, 35.585153] + * ]] + * } + * }; + * var polygons = { + * "type": "FeatureCollection", + * "features": [poly1, poly2] + * }; + * + * var union = turf.union(poly1, poly2); + * + * //=polygons + * + * //=union + */ +module.exports = function (poly1, poly2) { + var reader = new jsts.io.GeoJSONReader(); + var a = reader.read(JSON.stringify(poly1.geometry)); + var b = reader.read(JSON.stringify(poly2.geometry)); + var union = a.union(b); + var writer = new jsts.io.GeoJSONWriter(); + + union = writer.write(union); + return { + type: 'Feature', + geometry: union, + properties: poly1.properties + }; +}; diff --git a/packages/turf-union/package.json b/packages/turf-union/package.json new file mode 100644 index 0000000000..4581c59bcf --- /dev/null +++ b/packages/turf-union/package.json @@ -0,0 +1,31 @@ +{ + "name": "turf-union", + "version": "3.0.1", + "description": "find the union of geographic features", + "main": "index.js", + "scripts": { + "test": "tape test/*.js" + }, + "repository": { + "type": "git", + "url": "git@github.com:Turfjs/turf-union.git" + }, + "keywords": [ + "turf", + "gif" + ], + "author": "Morgan Herlocker", + "license": "ISC", + "bugs": { + "url": "https://github.com/Turfjs/turf-union/issues" + }, + "homepage": "https://github.com/Turfjs/turf-union", + "devDependencies": { + "benchmark": "^1.0.0", + "glob": "~4.3.5", + "tape": "~3.5.0" + }, + "dependencies": { + "jsts": "1.1.1" + } +} diff --git a/packages/turf-union/test/fixtures/in/Intersect1.geojson b/packages/turf-union/test/fixtures/in/Intersect1.geojson new file mode 100644 index 0000000000..111c47eb09 --- /dev/null +++ b/packages/turf-union/test/fixtures/in/Intersect1.geojson @@ -0,0 +1,88 @@ +[{ + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.88571166992188, + 32.887659962078956 + ], + [ + -80.09788513183594, + 32.927436533285565 + ], + [ + -80.15350341796875, + 32.82825010814964 + ], + [ + -80.00312805175781, + 32.69428812316933 + ], + [ + -79.89395141601562, + 32.75551989829049 + ], + [ + -79.88571166992188, + 32.887659962078956 + ] + ] + ] + } + } + ] +}, +{ + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.92141723632812, + 32.953944317478246 + ], + [ + -79.97428894042969, + 32.83690450361482 + ], + [ + -79.97360229492188, + 32.76071688548088 + ], + [ + -79.93034362792969, + 32.76475877693074 + ], + [ + -79.93789672851562, + 32.74108223150125 + ], + [ + -79.80537414550781, + 32.7231762754146 + ], + [ + -79.81773376464844, + 32.923402043498875 + ], + [ + -79.92141723632812, + 32.953944317478246 + ] + ] + ] + } + } + ] +}] diff --git a/packages/turf-union/test/fixtures/in/Intersect2.geojson b/packages/turf-union/test/fixtures/in/Intersect2.geojson new file mode 100644 index 0000000000..84ac101401 --- /dev/null +++ b/packages/turf-union/test/fixtures/in/Intersect2.geojson @@ -0,0 +1,159 @@ +[{ + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.92141723632812, + 32.953944317478246 + ], + [ + -79.97428894042969, + 32.83690450361482 + ], + [ + -79.97360229492188, + 32.76071688548088 + ], + [ + -79.93034362792969, + 32.76475877693074 + ], + [ + -79.93789672851562, + 32.74108223150125 + ], + [ + -79.80537414550781, + 32.7231762754146 + ], + [ + -79.81773376464844, + 32.923402043498875 + ], + [ + -79.92141723632812, + 32.953944317478246 + ] + ] + ] + } + } + ] +}, +{ + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.10543823242188, + 32.94760622243483 + ], + [ + -80.14389038085938, + 32.8149783969858 + ], + [ + -80.07453918457031, + 32.85536439443039 + ], + [ + -79.99351501464844, + 32.84440429734253 + ], + [ + -79.98184204101562, + 32.90495631913751 + ], + [ + -80.10543823242188, + 32.94760622243483 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.9200439453125, + 32.9372338139709 + ], + [ + -80.03128051757812, + 32.936657533381286 + ], + [ + -79.99008178710938, + 32.77226465992344 + ], + [ + -79.90219116210938, + 32.8432505241666 + ], + [ + -79.96604919433594, + 32.87497382061986 + ], + [ + -79.9200439453125, + 32.9372338139709 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -79.95025634765625, + 32.97007559940924 + ], + [ + -80.00175476074217, + 32.732418508353746 + ], + [ + -79.84725952148438, + 32.753210028851896 + ], + [ + -79.82048034667969, + 32.848442385344136 + ], + [ + -79.85481262207031, + 32.923402043498875 + ], + [ + -79.95025634765625, + 32.97007559940924 + ] + ] + ] + } + } + ] +} +] diff --git a/packages/turf-union/test/fixtures/out/Intersect1.geojson b/packages/turf-union/test/fixtures/out/Intersect1.geojson new file mode 100644 index 0000000000..201eedf5ca --- /dev/null +++ b/packages/turf-union/test/fixtures/out/Intersect1.geojson @@ -0,0 +1 @@ +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-79.92322780260464,32.73910022106017],[-80.00312805175781,32.69428812316933],[-80.15350341796875,32.82825010814964],[-80.09788513183594,32.927436533285565],[-79.94623496447946,32.89900638172028],[-79.92141723632812,32.953944317478246],[-79.81773376464844,32.923402043498875],[-79.80537414550781,32.7231762754146],[-79.92322780260464,32.73910022106017]]]},"properties":{}} \ No newline at end of file diff --git a/packages/turf-union/test/fixtures/out/Intersect2.geojson b/packages/turf-union/test/fixtures/out/Intersect2.geojson new file mode 100644 index 0000000000..ec9a1fe6e4 --- /dev/null +++ b/packages/turf-union/test/fixtures/out/Intersect2.geojson @@ -0,0 +1 @@ +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-79.92141723632812,32.953944317478246],[-79.81773376464844,32.923402043498875],[-79.80537414550781,32.7231762754146],[-79.93789672851562,32.74108223150125],[-79.93034362792969,32.76475877693074],[-79.97360229492188,32.76071688548088],[-79.97428894042969,32.83690450361482],[-79.92141723632812,32.953944317478246]]],[[[-80.10543823242188,32.94760622243483],[-79.98184204101562,32.90495631913751],[-79.99351501464844,32.84440429734253],[-80.07453918457031,32.85536439443039],[-80.14389038085938,32.8149783969858],[-80.10543823242188,32.94760622243483]]]]},"properties":{}} \ No newline at end of file diff --git a/packages/turf-union/test/union.js b/packages/turf-union/test/union.js new file mode 100644 index 0000000000..dd636de1ca --- /dev/null +++ b/packages/turf-union/test/union.js @@ -0,0 +1,16 @@ +var union = require('../'), + test = require('tape'), + glob = require('glob'), + fs = require('fs'); + +var REGEN = false; + +test('union', function(t){ + glob.sync(__dirname + '/fixtures/in/*.geojson').forEach(function(input) { + var fcs = JSON.parse(fs.readFileSync(input)); + var output = union(fcs[0].features[0], fcs[1].features[0]); + if (REGEN) fs.writeFileSync(input.replace('/in/', '/out/'), JSON.stringify(output)); + t.deepEqual(output, JSON.parse(fs.readFileSync(input.replace('/in/', '/out/'))), input); + }); + t.end(); +}); diff --git a/packages/turf-within/.npmignore b/packages/turf-within/.npmignore new file mode 100644 index 0000000000..bb3c08c09a --- /dev/null +++ b/packages/turf-within/.npmignore @@ -0,0 +1,2 @@ +test +coverage diff --git a/packages/turf-within/LICENSE b/packages/turf-within/LICENSE new file mode 100644 index 0000000000..64fb8e99a3 --- /dev/null +++ b/packages/turf-within/LICENSE @@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) 2014 Morgan Herlocker + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. \ No newline at end of file diff --git a/packages/turf-within/README.md b/packages/turf-within/README.md new file mode 100644 index 0000000000..c8dcba0c99 --- /dev/null +++ b/packages/turf-within/README.md @@ -0,0 +1,113 @@ +# turf-within + +[![build status](https://secure.travis-ci.org/Turfjs/turf-within.png)](http://travis-ci.org/Turfjs/turf-within) + +turf within module + + +### `turf.within(points, polygons)` + +Takes a set of Point|points and a set of Polygon|polygons and returns the points that fall within the polygons. + + +### Parameters + +| parameter | type | description | +| ---------- | ------------------------------ | -------------- | +| `points` | FeatureCollection\.\ | input points | +| `polygons` | FeatureCollection\.\ | input polygons | + + +### Example + +```js +var searchWithin = { + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [[ + [-46.653,-23.543], + [-46.634,-23.5346], + [-46.613,-23.543], + [-46.614,-23.559], + [-46.631,-23.567], + [-46.653,-23.560], + [-46.653,-23.543] + ]] + } + } + ] +}; +var points = { + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [-46.6318, -23.5523] + } + }, { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [-46.6246, -23.5325] + } + }, { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [-46.6062, -23.5513] + } + }, { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [-46.663, -23.554] + } + }, { + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [-46.643, -23.557] + } + } + ] +}; + +var ptsWithin = turf.within(points, searchWithin); + +//=points + +//=searchWithin + +//=ptsWithin +``` + + +**Returns** `FeatureCollection.`, points that land within at least one polygon + +## Installation + +Requires [nodejs](http://nodejs.org/). + +```sh +$ npm install turf-within +``` + +## Tests + +```sh +$ npm test +``` + + diff --git a/packages/turf-within/bench.js b/packages/turf-within/bench.js new file mode 100644 index 0000000000..7e79467aaa --- /dev/null +++ b/packages/turf-within/bench.js @@ -0,0 +1,34 @@ +var within = require('./'); +var Benchmark = require('benchmark'); +var fs = require('fs'); +var point = require('turf-helpers').point; +var polygon = require('turf-helpers').polygon; +var featurecollection = require('turf-helpers').featureCollection; + +var poly1 = polygon([[[0,0],[10,0],[10,10],[0,10]]]); +var poly2 = polygon([[[10,0],[20,10],[20,20], [20,0]]]); +var polyFC = featureCollection([poly1, poly2]); +var pt1 = point(1,1, {population: 500}); +var pt2 = point(1,3, {population: 400}); +var pt3 = point(14,2, {population: 600}); +var pt4 = point(13,1, {population: 500}); +var pt5 = point(19,7, {population: 200}); +var pt6 = point(100,7, {population: 200}); +var ptFC = featureCollection([pt1, pt2, pt3, pt4, pt5, pt6]); + +global.within = within; +global.polyFC = polyFC; +global.ptFC = ptFC; + +var suite = new Benchmark.Suite('turf-within'); +suite + .add('turf-within',function () { + global.within(global.ptFC, global.polyFC); + }) + .on('cycle', function (event) { + console.log(String(event.target)); + }) + .on('complete', function () { + + }) + .run(); diff --git a/packages/turf-within/index.js b/packages/turf-within/index.js new file mode 100644 index 0000000000..58b0a2aa51 --- /dev/null +++ b/packages/turf-within/index.js @@ -0,0 +1,95 @@ +var inside = require('turf-inside'); +var featureCollection = require('turf-helpers').featureCollection; + +/** + * Takes a set of {@link Point|points} and a set of {@link Polygon|polygons} and returns the points that fall within the polygons. + * + * @name within + * @category joins + * @param {FeatureCollection} points input points + * @param {FeatureCollection} polygons input polygons + * @return {FeatureCollection} points that land within at least one polygon + * @example + * var searchWithin = { + * "type": "FeatureCollection", + * "features": [ + * { + * "type": "Feature", + * "properties": {}, + * "geometry": { + * "type": "Polygon", + * "coordinates": [[ + * [-46.653,-23.543], + * [-46.634,-23.5346], + * [-46.613,-23.543], + * [-46.614,-23.559], + * [-46.631,-23.567], + * [-46.653,-23.560], + * [-46.653,-23.543] + * ]] + * } + * } + * ] + * }; + * var points = { + * "type": "FeatureCollection", + * "features": [ + * { + * "type": "Feature", + * "properties": {}, + * "geometry": { + * "type": "Point", + * "coordinates": [-46.6318, -23.5523] + * } + * }, { + * "type": "Feature", + * "properties": {}, + * "geometry": { + * "type": "Point", + * "coordinates": [-46.6246, -23.5325] + * } + * }, { + * "type": "Feature", + * "properties": {}, + * "geometry": { + * "type": "Point", + * "coordinates": [-46.6062, -23.5513] + * } + * }, { + * "type": "Feature", + * "properties": {}, + * "geometry": { + * "type": "Point", + * "coordinates": [-46.663, -23.554] + * } + * }, { + * "type": "Feature", + * "properties": {}, + * "geometry": { + * "type": "Point", + * "coordinates": [-46.643, -23.557] + * } + * } + * ] + * }; + * + * var ptsWithin = turf.within(points, searchWithin); + * + * //=points + * + * //=searchWithin + * + * //=ptsWithin + */ +module.exports = function (ptFC, polyFC) { + var pointsWithin = featureCollection([]); + for (var i = 0; i < polyFC.features.length; i++) { + for (var j = 0; j < ptFC.features.length; j++) { + var isInside = inside(ptFC.features[j], polyFC.features[i]); + if (isInside) { + pointsWithin.features.push(ptFC.features[j]); + } + } + } + return pointsWithin; +}; diff --git a/packages/turf-within/package.json b/packages/turf-within/package.json new file mode 100644 index 0000000000..e9dfc2f796 --- /dev/null +++ b/packages/turf-within/package.json @@ -0,0 +1,35 @@ +{ + "name": "turf-within", + "version": "3.0.5", + "description": "turf within module", + "main": "index.js", + "scripts": { + "test": "tape test.js" + }, + "repository": { + "type": "git", + "url": "https://github.com/Turfjs/turf-within.git" + }, + "keywords": [ + "geojson", + "within", + "point", + "polygon", + "featurecollection" + ], + "author": "morganherlocker", + "license": "MIT", + "bugs": { + "url": "https://github.com/Turfjs/turf-within/issues" + }, + "homepage": "https://github.com/Turfjs/turf-within", + "devDependencies": { + "benchmark": "^1.0.0", + "tape": "^3.5.0", + "turf-helpers": "^3.0.5" + }, + "dependencies": { + "turf-inside": "^3.0.5", + "turf-helpers": "^3.0.5" + } +} diff --git a/packages/turf-within/test.js b/packages/turf-within/test.js new file mode 100644 index 0000000000..d2dc4f3b10 --- /dev/null +++ b/packages/turf-within/test.js @@ -0,0 +1,36 @@ +var test = require('tape'); +var within = require('./'); +var point = require('turf-helpers').point; +var polygon = require('turf-helpers').polygon; +var featureCollection = require('turf-helpers').featureCollection; + +test('within', function(t){ + t.plan(4); + + // test with a single point + var poly = polygon([[[0,0], [0,100], [100,100], [100,0],[0,0]]]); + var pt = point([50, 50]); + var polyFC = featureCollection([poly]); + var ptFC = featureCollection([pt]); + + var counted = within(ptFC, polyFC); + + t.ok(counted, 'returns a featurecollection'); + t.equal(counted.features.length, 1, '1 point in 1 polygon'); + + // test with multiple points and multiple polygons + var poly1 = polygon([[[0,0],[10,0],[10,10],[0,10],[0,0]]]); + var poly2 = polygon([[[10,0],[20,10],[20,20], [20,0],[10,0]]]); + var polyFC = featureCollection([poly1, poly2]); + var pt1 = point([1,1], {population: 500}); + var pt2 = point([1,3], {population: 400}); + var pt3 = point([14,2], {population: 600}); + var pt4 = point([13,1], {population: 500}); + var pt5 = point([19,7], {population: 200}); + var pt6 = point([100,7], {population: 200}); + var ptFC = featureCollection([pt1, pt2, pt3, pt4, pt5, pt6]); + + var counted = within(ptFC, polyFC); + t.ok(counted, 'returns a featurecollection'); + t.equal(counted.features.length, 5, 'multiple points in multiple polygons'); +}); diff --git a/packages/turf/.npmignore b/packages/turf/.npmignore new file mode 100644 index 0000000000..bb3c08c09a --- /dev/null +++ b/packages/turf/.npmignore @@ -0,0 +1,2 @@ +test +coverage diff --git a/packages/turf/index.js b/packages/turf/index.js new file mode 100644 index 0000000000..a89f7fa2d3 --- /dev/null +++ b/packages/turf/index.js @@ -0,0 +1,61 @@ +/*eslint global-require: 0*/ + +/** + * Turf is a modular geospatial analysis engine written in JavaScript. It performs geospatial + * processing tasks with GeoJSON data and can be run on a server or in a browser. + * + * @module turf + * @summary Geospatial analysis for JavaScript + */ +module.exports = { + isolines: require('turf-isolines'), + convex: require('turf-convex'), + within: require('turf-within'), + concave: require('turf-concave'), + difference: require('turf-difference'), + collect: require('turf-collect'), + flip: require('turf-flip'), + simplify: require('turf-simplify'), + bezier: require('turf-bezier'), + tag: require('turf-tag'), + sample: require('turf-sample'), + envelope: require('turf-envelope'), + square: require('turf-square'), + midpoint: require('turf-midpoint'), + buffer: require('turf-buffer'), + center: require('turf-center'), + centroid: require('turf-centroid'), + combine: require('turf-combine'), + distance: require('turf-distance'), + explode: require('turf-explode'), + bbox: require('turf-bbox'), + tesselate: require('turf-tesselate'), + bboxPolygon: require('turf-bbox-polygon'), + inside: require('turf-inside'), + intersect: require('turf-intersect'), + nearest: require('turf-nearest'), + planepoint: require('turf-planepoint'), + random: require('turf-random'), + tin: require('turf-tin'), + union: require('turf-union'), + bearing: require('turf-bearing'), + destination: require('turf-destination'), + kinks: require('turf-kinks'), + pointOnSurface: require('turf-point-on-surface'), + area: require('turf-area'), + along: require('turf-along'), + lineDistance: require('turf-line-distance'), + lineSlice: require('turf-line-slice'), + pointOnLine: require('turf-point-on-line'), + pointGrid: require('turf-point-grid'), + squareGrid: require('turf-square-grid'), + triangleGrid: require('turf-triangle-grid'), + hexGrid: require('turf-hex-grid') +}; + +var geometries = require('turf-helpers'); + +module.exports.polygon = geometries.polygon; +module.exports.lineString = geometries.lineString; +module.exports.point = geometries.point; +module.exports.featureCollection = geometries.featureCollection; diff --git a/packages/turf/package.json b/packages/turf/package.json new file mode 100644 index 0000000000..6e155f6213 --- /dev/null +++ b/packages/turf/package.json @@ -0,0 +1,103 @@ +{ + "name": "turf", + "version": "3.0.5", + "description": "a node.js library for performing geospatial operations with geojson", + "main": "index.js", + "scripts": { + "test": "echo 1", + "build": "browserify index.js -s turf > turf.js && uglifyjs turf.js -c -m > turf.min.js;", + "size": "browserify index.js --full-paths -s turf | uglifyjs -c -m | discify | hcat" + }, + "repository": { + "type": "git", + "url": "https://github.com/turfjs/turf.git" + }, + "keywords": [ + "gis", + "geo", + "geojs", + "geospatial", + "geography", + "geometry", + "map", + "contour", + "centroid", + "tin", + "extent", + "geojson", + "grid", + "polygon", + "line", + "point", + "area", + "analysis", + "statistics", + "stats", + "midpoint", + "plane", + "quantile", + "jenks", + "sample" + ], + "author": "morganherlocker", + "license": "MIT", + "bugs": { + "url": "https://github.com/morganherlocker/turf/issues" + }, + "dependencies": { + "turf-collect": "^3.0.5", + "turf-along": "^3.0.5", + "turf-area": "^3.0.1", + "turf-bbox-polygon": "^3.0.5", + "turf-bearing": "^3.0.1", + "turf-bezier": "^3.0.5", + "turf-buffer": "^3.0.5", + "turf-center": "^3.0.5", + "turf-centroid": "^3.0.5", + "turf-combine": "^3.0.5", + "turf-concave": "^3.0.5", + "turf-convex": "^3.0.5", + "turf-destination": "^3.0.5", + "turf-distance": "^3.0.5", + "turf-envelope": "^3.0.5", + "turf-difference": "^3.0.5", + "turf-explode": "^3.0.5", + "turf-bbox": "^3.0.1", + "turf-flip": "^3.0.5", + "turf-tesselate": "^3.0.5", + "turf-hex-grid": "^3.0.5", + "turf-inside": "^3.0.5", + "turf-intersect": "^3.0.1", + "turf-isolines": "^3.0.5", + "turf-kinks": "^3.0.5", + "turf-line-distance": "^3.0.5", + "turf-line-slice": "^3.0.5", + "turf-meta": "^3.0.1", + "turf-midpoint": "^3.0.1", + "turf-nearest": "^3.0.5", + "turf-planepoint": "^3.0.1", + "turf-point-grid": "^3.0.5", + "turf-point-on-line": "^3.0.5", + "turf-point-on-surface": "^3.0.5", + "turf-random": "^3.0.1", + "turf-sample": "^3.0.5", + "turf-simplify": "^3.0.1", + "turf-square": "^3.0.5", + "turf-square-grid": "^3.0.5", + "turf-tag": "^3.0.5", + "turf-tin": "^3.0.5", + "turf-triangle-grid": "^3.0.5", + "turf-union": "^3.0.1", + "turf-within": "^3.0.5", + "turf-helpers": "^3.0.5" + }, + "devDependencies": { + "browserify": "~9.0.3", + "disc": "^1.3.2", + "hcat": "0.0.5", + "jsdoc": "^3.3.0-beta1", + "lerna": "https://github.com/kittens/lerna/archive/master.tar.gz", + "tape": "^3.5.0", + "uglify-js": "~2.4.16" + } +} diff --git a/test.html b/test.html deleted file mode 100644 index 84b7f3aba8..0000000000 --- a/test.html +++ /dev/null @@ -1 +0,0 @@ - diff --git a/test.js b/test.js deleted file mode 100644 index 89430bbeaa..0000000000 --- a/test.js +++ /dev/null @@ -1,14 +0,0 @@ -var test = require('tape') -var turf = require('./index.js') - -test('turf', function(t){ - t.ok(turf, 'Initialized turf successfully') - - // check that each of the sub modules initializes as a function - Object.keys(turf).forEach(function(module){ - t.ok(turf[module], module) - t.equal(typeof turf[module], 'function', module + ' is a function') - }) - - t.end() -}) \ No newline at end of file diff --git a/turf.js b/turf.js deleted file mode 100644 index 3b9e5e92b5..0000000000 --- a/turf.js +++ /dev/null @@ -1,13804 +0,0 @@ -(function(f){if(typeof exports==="object"&&typeof module!=="undefined"){module.exports=f()}else if(typeof define==="function"&&define.amd){define([],f)}else{var g;if(typeof window!=="undefined"){g=window}else if(typeof global!=="undefined"){g=global}else if(typeof self!=="undefined"){g=self}else{g=this}g.turf = f()}})(function(){var define,module,exports;return (function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require=="function"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);var f=new Error("Cannot find module '"+o+"'");throw f.code="MODULE_NOT_FOUND",f}var l=n[o]={exports:{}};t[o][0].call(l.exports,function(e){var n=t[o][1][e];return s(n?n:e)},l,l.exports,e,t,n,r)}return n[o].exports}var i=typeof require=="function"&&require;for(var o=0;o - * @license MIT - */ - -var base64 = require('base64-js') -var ieee754 = require('ieee754') -var isArray = require('is-array') - -exports.Buffer = Buffer -exports.SlowBuffer = SlowBuffer -exports.INSPECT_MAX_BYTES = 50 -Buffer.poolSize = 8192 // not used by this implementation - -var kMaxLength = 0x3fffffff -var rootParent = {} - -/** - * If `Buffer.TYPED_ARRAY_SUPPORT`: - * === true Use Uint8Array implementation (fastest) - * === false Use Object implementation (most compatible, even IE6) - * - * Browsers that support typed arrays are IE 10+, Firefox 4+, Chrome 7+, Safari 5.1+, - * Opera 11.6+, iOS 4.2+. - * - * Note: - * - * - Implementation must support adding new properties to `Uint8Array` instances. - * Firefox 4-29 lacked support, fixed in Firefox 30+. - * See: https://bugzilla.mozilla.org/show_bug.cgi?id=695438. - * - * - Chrome 9-10 is missing the `TypedArray.prototype.subarray` function. - * - * - IE10 has a broken `TypedArray.prototype.subarray` function which returns arrays of - * incorrect length in some situations. - * - * We detect these buggy browsers and set `Buffer.TYPED_ARRAY_SUPPORT` to `false` so they will - * get the Object implementation, which is slower but will work correctly. - */ -Buffer.TYPED_ARRAY_SUPPORT = (function () { - try { - var buf = new ArrayBuffer(0) - var arr = new Uint8Array(buf) - arr.foo = function () { return 42 } - return arr.foo() === 42 && // typed array instances can be augmented - typeof arr.subarray === 'function' && // chrome 9-10 lack `subarray` - new Uint8Array(1).subarray(1, 1).byteLength === 0 // ie10 has broken `subarray` - } catch (e) { - return false - } -})() - -/** - * Class: Buffer - * ============= - * - * The Buffer constructor returns instances of `Uint8Array` that are augmented - * with function properties for all the node `Buffer` API functions. We use - * `Uint8Array` so that square bracket notation works as expected -- it returns - * a single octet. - * - * By augmenting the instances, we can avoid modifying the `Uint8Array` - * prototype. - */ -function Buffer (subject, encoding, noZero) { - if (!(this instanceof Buffer)) - return new Buffer(subject, encoding, noZero) - - var type = typeof subject - - // Find the length - var length - if (type === 'number') { - length = +subject - } else if (type === 'string') { - length = Buffer.byteLength(subject, encoding) - } else if (type === 'object' && subject !== null) { // assume object is array-like - if (subject.type === 'Buffer' && isArray(subject.data)) - subject = subject.data - length = +subject.length - } else { - throw new TypeError('must start with number, buffer, array or string') - } - - if (length > kMaxLength) - throw new RangeError('Attempt to allocate Buffer larger than maximum ' + - 'size: 0x' + kMaxLength.toString(16) + ' bytes') - - if (length < 0) - length = 0 - else - length >>>= 0 // Coerce to uint32. - - var self = this - if (Buffer.TYPED_ARRAY_SUPPORT) { - // Preferred: Return an augmented `Uint8Array` instance for best performance - /*eslint-disable consistent-this */ - self = Buffer._augment(new Uint8Array(length)) - /*eslint-enable consistent-this */ - } else { - // Fallback: Return THIS instance of Buffer (created by `new`) - self.length = length - self._isBuffer = true - } - - var i - if (Buffer.TYPED_ARRAY_SUPPORT && typeof subject.byteLength === 'number') { - // Speed optimization -- use set if we're copying from a typed array - self._set(subject) - } else if (isArrayish(subject)) { - // Treat array-ish objects as a byte array - if (Buffer.isBuffer(subject)) { - for (i = 0; i < length; i++) - self[i] = subject.readUInt8(i) - } else { - for (i = 0; i < length; i++) - self[i] = ((subject[i] % 256) + 256) % 256 - } - } else if (type === 'string') { - self.write(subject, 0, encoding) - } else if (type === 'number' && !Buffer.TYPED_ARRAY_SUPPORT && !noZero) { - for (i = 0; i < length; i++) { - self[i] = 0 - } - } - - if (length > 0 && length <= Buffer.poolSize) - self.parent = rootParent - - return self -} - -function SlowBuffer (subject, encoding, noZero) { - if (!(this instanceof SlowBuffer)) - return new SlowBuffer(subject, encoding, noZero) - - var buf = new Buffer(subject, encoding, noZero) - delete buf.parent - return buf -} - -Buffer.isBuffer = function (b) { - return !!(b != null && b._isBuffer) -} - -Buffer.compare = function (a, b) { - if (!Buffer.isBuffer(a) || !Buffer.isBuffer(b)) - throw new TypeError('Arguments must be Buffers') - - if (a === b) return 0 - - var x = a.length - var y = b.length - for (var i = 0, len = Math.min(x, y); i < len && a[i] === b[i]; i++) {} - if (i !== len) { - x = a[i] - y = b[i] - } - if (x < y) return -1 - if (y < x) return 1 - return 0 -} - -Buffer.isEncoding = function (encoding) { - switch (String(encoding).toLowerCase()) { - case 'hex': - case 'utf8': - case 'utf-8': - case 'ascii': - case 'binary': - case 'base64': - case 'raw': - case 'ucs2': - case 'ucs-2': - case 'utf16le': - case 'utf-16le': - return true - default: - return false - } -} - -Buffer.concat = function (list, totalLength) { - if (!isArray(list)) throw new TypeError('Usage: Buffer.concat(list[, length])') - - if (list.length === 0) { - return new Buffer(0) - } else if (list.length === 1) { - return list[0] - } - - var i - if (totalLength === undefined) { - totalLength = 0 - for (i = 0; i < list.length; i++) { - totalLength += list[i].length - } - } - - var buf = new Buffer(totalLength) - var pos = 0 - for (i = 0; i < list.length; i++) { - var item = list[i] - item.copy(buf, pos) - pos += item.length - } - return buf -} - -Buffer.byteLength = function (str, encoding) { - var ret - str = str + '' - switch (encoding || 'utf8') { - case 'ascii': - case 'binary': - case 'raw': - ret = str.length - break - case 'ucs2': - case 'ucs-2': - case 'utf16le': - case 'utf-16le': - ret = str.length * 2 - break - case 'hex': - ret = str.length >>> 1 - break - case 'utf8': - case 'utf-8': - ret = utf8ToBytes(str).length - break - case 'base64': - ret = base64ToBytes(str).length - break - default: - ret = str.length - } - return ret -} - -// pre-set for values that may exist in the future -Buffer.prototype.length = undefined -Buffer.prototype.parent = undefined - -// toString(encoding, start=0, end=buffer.length) -Buffer.prototype.toString = function (encoding, start, end) { - var loweredCase = false - - start = start >>> 0 - end = end === undefined || end === Infinity ? this.length : end >>> 0 - - if (!encoding) encoding = 'utf8' - if (start < 0) start = 0 - if (end > this.length) end = this.length - if (end <= start) return '' - - while (true) { - switch (encoding) { - case 'hex': - return hexSlice(this, start, end) - - case 'utf8': - case 'utf-8': - return utf8Slice(this, start, end) - - case 'ascii': - return asciiSlice(this, start, end) - - case 'binary': - return binarySlice(this, start, end) - - case 'base64': - return base64Slice(this, start, end) - - case 'ucs2': - case 'ucs-2': - case 'utf16le': - case 'utf-16le': - return utf16leSlice(this, start, end) - - default: - if (loweredCase) - throw new TypeError('Unknown encoding: ' + encoding) - encoding = (encoding + '').toLowerCase() - loweredCase = true - } - } -} - -Buffer.prototype.equals = function (b) { - if (!Buffer.isBuffer(b)) throw new TypeError('Argument must be a Buffer') - if (this === b) return true - return Buffer.compare(this, b) === 0 -} - -Buffer.prototype.inspect = function () { - var str = '' - var max = exports.INSPECT_MAX_BYTES - if (this.length > 0) { - str = this.toString('hex', 0, max).match(/.{2}/g).join(' ') - if (this.length > max) - str += ' ... ' - } - return '' -} - -Buffer.prototype.compare = function (b) { - if (!Buffer.isBuffer(b)) throw new TypeError('Argument must be a Buffer') - if (this === b) return 0 - return Buffer.compare(this, b) -} - -// `get` will be removed in Node 0.13+ -Buffer.prototype.get = function (offset) { - console.log('.get() is deprecated. Access using array indexes instead.') - return this.readUInt8(offset) -} - -// `set` will be removed in Node 0.13+ -Buffer.prototype.set = function (v, offset) { - console.log('.set() is deprecated. Access using array indexes instead.') - return this.writeUInt8(v, offset) -} - -function hexWrite (buf, string, offset, length) { - offset = Number(offset) || 0 - var remaining = buf.length - offset - if (!length) { - length = remaining - } else { - length = Number(length) - if (length > remaining) { - length = remaining - } - } - - // must be an even number of digits - var strLen = string.length - if (strLen % 2 !== 0) throw new Error('Invalid hex string') - - if (length > strLen / 2) { - length = strLen / 2 - } - for (var i = 0; i < length; i++) { - var byte = parseInt(string.substr(i * 2, 2), 16) - if (isNaN(byte)) throw new Error('Invalid hex string') - buf[offset + i] = byte - } - return i -} - -function utf8Write (buf, string, offset, length) { - var charsWritten = blitBuffer(utf8ToBytes(string, buf.length - offset), buf, offset, length) - return charsWritten -} - -function asciiWrite (buf, string, offset, length) { - var charsWritten = blitBuffer(asciiToBytes(string), buf, offset, length) - return charsWritten -} - -function binaryWrite (buf, string, offset, length) { - return asciiWrite(buf, string, offset, length) -} - -function base64Write (buf, string, offset, length) { - var charsWritten = blitBuffer(base64ToBytes(string), buf, offset, length) - return charsWritten -} - -function utf16leWrite (buf, string, offset, length) { - var charsWritten = blitBuffer(utf16leToBytes(string, buf.length - offset), buf, offset, length) - return charsWritten -} - -Buffer.prototype.write = function (string, offset, length, encoding) { - // Support both (string, offset, length, encoding) - // and the legacy (string, encoding, offset, length) - if (isFinite(offset)) { - if (!isFinite(length)) { - encoding = length - length = undefined - } - } else { // legacy - var swap = encoding - encoding = offset - offset = length - length = swap - } - - offset = Number(offset) || 0 - - if (length < 0 || offset < 0 || offset > this.length) - throw new RangeError('attempt to write outside buffer bounds') - - var remaining = this.length - offset - if (!length) { - length = remaining - } else { - length = Number(length) - if (length > remaining) { - length = remaining - } - } - encoding = String(encoding || 'utf8').toLowerCase() - - var ret - switch (encoding) { - case 'hex': - ret = hexWrite(this, string, offset, length) - break - case 'utf8': - case 'utf-8': - ret = utf8Write(this, string, offset, length) - break - case 'ascii': - ret = asciiWrite(this, string, offset, length) - break - case 'binary': - ret = binaryWrite(this, string, offset, length) - break - case 'base64': - ret = base64Write(this, string, offset, length) - break - case 'ucs2': - case 'ucs-2': - case 'utf16le': - case 'utf-16le': - ret = utf16leWrite(this, string, offset, length) - break - default: - throw new TypeError('Unknown encoding: ' + encoding) - } - return ret -} - -Buffer.prototype.toJSON = function () { - return { - type: 'Buffer', - data: Array.prototype.slice.call(this._arr || this, 0) - } -} - -function base64Slice (buf, start, end) { - if (start === 0 && end === buf.length) { - return base64.fromByteArray(buf) - } else { - return base64.fromByteArray(buf.slice(start, end)) - } -} - -function utf8Slice (buf, start, end) { - var res = '' - var tmp = '' - end = Math.min(buf.length, end) - - for (var i = start; i < end; i++) { - if (buf[i] <= 0x7F) { - res += decodeUtf8Char(tmp) + String.fromCharCode(buf[i]) - tmp = '' - } else { - tmp += '%' + buf[i].toString(16) - } - } - - return res + decodeUtf8Char(tmp) -} - -function asciiSlice (buf, start, end) { - var ret = '' - end = Math.min(buf.length, end) - - for (var i = start; i < end; i++) { - ret += String.fromCharCode(buf[i] & 0x7F) - } - return ret -} - -function binarySlice (buf, start, end) { - var ret = '' - end = Math.min(buf.length, end) - - for (var i = start; i < end; i++) { - ret += String.fromCharCode(buf[i]) - } - return ret -} - -function hexSlice (buf, start, end) { - var len = buf.length - - if (!start || start < 0) start = 0 - if (!end || end < 0 || end > len) end = len - - var out = '' - for (var i = start; i < end; i++) { - out += toHex(buf[i]) - } - return out -} - -function utf16leSlice (buf, start, end) { - var bytes = buf.slice(start, end) - var res = '' - for (var i = 0; i < bytes.length; i += 2) { - res += String.fromCharCode(bytes[i] + bytes[i + 1] * 256) - } - return res -} - -Buffer.prototype.slice = function (start, end) { - var len = this.length - start = ~~start - end = end === undefined ? len : ~~end - - if (start < 0) { - start += len - if (start < 0) - start = 0 - } else if (start > len) { - start = len - } - - if (end < 0) { - end += len - if (end < 0) - end = 0 - } else if (end > len) { - end = len - } - - if (end < start) - end = start - - var newBuf - if (Buffer.TYPED_ARRAY_SUPPORT) { - newBuf = Buffer._augment(this.subarray(start, end)) - } else { - var sliceLen = end - start - newBuf = new Buffer(sliceLen, undefined, true) - for (var i = 0; i < sliceLen; i++) { - newBuf[i] = this[i + start] - } - } - - if (newBuf.length) - newBuf.parent = this.parent || this - - return newBuf -} - -/* - * Need to make sure that buffer isn't trying to write out of bounds. - */ -function checkOffset (offset, ext, length) { - if ((offset % 1) !== 0 || offset < 0) - throw new RangeError('offset is not uint') - if (offset + ext > length) - throw new RangeError('Trying to access beyond buffer length') -} - -Buffer.prototype.readUIntLE = function (offset, byteLength, noAssert) { - offset = offset >>> 0 - byteLength = byteLength >>> 0 - if (!noAssert) - checkOffset(offset, byteLength, this.length) - - var val = this[offset] - var mul = 1 - var i = 0 - while (++i < byteLength && (mul *= 0x100)) - val += this[offset + i] * mul - - return val -} - -Buffer.prototype.readUIntBE = function (offset, byteLength, noAssert) { - offset = offset >>> 0 - byteLength = byteLength >>> 0 - if (!noAssert) - checkOffset(offset, byteLength, this.length) - - var val = this[offset + --byteLength] - var mul = 1 - while (byteLength > 0 && (mul *= 0x100)) - val += this[offset + --byteLength] * mul - - return val -} - -Buffer.prototype.readUInt8 = function (offset, noAssert) { - if (!noAssert) - checkOffset(offset, 1, this.length) - return this[offset] -} - -Buffer.prototype.readUInt16LE = function (offset, noAssert) { - if (!noAssert) - checkOffset(offset, 2, this.length) - return this[offset] | (this[offset + 1] << 8) -} - -Buffer.prototype.readUInt16BE = function (offset, noAssert) { - if (!noAssert) - checkOffset(offset, 2, this.length) - return (this[offset] << 8) | this[offset + 1] -} - -Buffer.prototype.readUInt32LE = function (offset, noAssert) { - if (!noAssert) - checkOffset(offset, 4, this.length) - - return ((this[offset]) | - (this[offset + 1] << 8) | - (this[offset + 2] << 16)) + - (this[offset + 3] * 0x1000000) -} - -Buffer.prototype.readUInt32BE = function (offset, noAssert) { - if (!noAssert) - checkOffset(offset, 4, this.length) - - return (this[offset] * 0x1000000) + - ((this[offset + 1] << 16) | - (this[offset + 2] << 8) | - this[offset + 3]) -} - -Buffer.prototype.readIntLE = function (offset, byteLength, noAssert) { - offset = offset >>> 0 - byteLength = byteLength >>> 0 - if (!noAssert) - checkOffset(offset, byteLength, this.length) - - var val = this[offset] - var mul = 1 - var i = 0 - while (++i < byteLength && (mul *= 0x100)) - val += this[offset + i] * mul - mul *= 0x80 - - if (val >= mul) - val -= Math.pow(2, 8 * byteLength) - - return val -} - -Buffer.prototype.readIntBE = function (offset, byteLength, noAssert) { - offset = offset >>> 0 - byteLength = byteLength >>> 0 - if (!noAssert) - checkOffset(offset, byteLength, this.length) - - var i = byteLength - var mul = 1 - var val = this[offset + --i] - while (i > 0 && (mul *= 0x100)) - val += this[offset + --i] * mul - mul *= 0x80 - - if (val >= mul) - val -= Math.pow(2, 8 * byteLength) - - return val -} - -Buffer.prototype.readInt8 = function (offset, noAssert) { - if (!noAssert) - checkOffset(offset, 1, this.length) - if (!(this[offset] & 0x80)) - return (this[offset]) - return ((0xff - this[offset] + 1) * -1) -} - -Buffer.prototype.readInt16LE = function (offset, noAssert) { - if (!noAssert) - checkOffset(offset, 2, this.length) - var val = this[offset] | (this[offset + 1] << 8) - return (val & 0x8000) ? val | 0xFFFF0000 : val -} - -Buffer.prototype.readInt16BE = function (offset, noAssert) { - if (!noAssert) - checkOffset(offset, 2, this.length) - var val = this[offset + 1] | (this[offset] << 8) - return (val & 0x8000) ? val | 0xFFFF0000 : val -} - -Buffer.prototype.readInt32LE = function (offset, noAssert) { - if (!noAssert) - checkOffset(offset, 4, this.length) - - return (this[offset]) | - (this[offset + 1] << 8) | - (this[offset + 2] << 16) | - (this[offset + 3] << 24) -} - -Buffer.prototype.readInt32BE = function (offset, noAssert) { - if (!noAssert) - checkOffset(offset, 4, this.length) - - return (this[offset] << 24) | - (this[offset + 1] << 16) | - (this[offset + 2] << 8) | - (this[offset + 3]) -} - -Buffer.prototype.readFloatLE = function (offset, noAssert) { - if (!noAssert) - checkOffset(offset, 4, this.length) - return ieee754.read(this, offset, true, 23, 4) -} - -Buffer.prototype.readFloatBE = function (offset, noAssert) { - if (!noAssert) - checkOffset(offset, 4, this.length) - return ieee754.read(this, offset, false, 23, 4) -} - -Buffer.prototype.readDoubleLE = function (offset, noAssert) { - if (!noAssert) - checkOffset(offset, 8, this.length) - return ieee754.read(this, offset, true, 52, 8) -} - -Buffer.prototype.readDoubleBE = function (offset, noAssert) { - if (!noAssert) - checkOffset(offset, 8, this.length) - return ieee754.read(this, offset, false, 52, 8) -} - -function checkInt (buf, value, offset, ext, max, min) { - if (!Buffer.isBuffer(buf)) throw new TypeError('buffer must be a Buffer instance') - if (value > max || value < min) throw new RangeError('value is out of bounds') - if (offset + ext > buf.length) throw new RangeError('index out of range') -} - -Buffer.prototype.writeUIntLE = function (value, offset, byteLength, noAssert) { - value = +value - offset = offset >>> 0 - byteLength = byteLength >>> 0 - if (!noAssert) - checkInt(this, value, offset, byteLength, Math.pow(2, 8 * byteLength), 0) - - var mul = 1 - var i = 0 - this[offset] = value & 0xFF - while (++i < byteLength && (mul *= 0x100)) - this[offset + i] = (value / mul) >>> 0 & 0xFF - - return offset + byteLength -} - -Buffer.prototype.writeUIntBE = function (value, offset, byteLength, noAssert) { - value = +value - offset = offset >>> 0 - byteLength = byteLength >>> 0 - if (!noAssert) - checkInt(this, value, offset, byteLength, Math.pow(2, 8 * byteLength), 0) - - var i = byteLength - 1 - var mul = 1 - this[offset + i] = value & 0xFF - while (--i >= 0 && (mul *= 0x100)) - this[offset + i] = (value / mul) >>> 0 & 0xFF - - return offset + byteLength -} - -Buffer.prototype.writeUInt8 = function (value, offset, noAssert) { - value = +value - offset = offset >>> 0 - if (!noAssert) - checkInt(this, value, offset, 1, 0xff, 0) - if (!Buffer.TYPED_ARRAY_SUPPORT) value = Math.floor(value) - this[offset] = value - return offset + 1 -} - -function objectWriteUInt16 (buf, value, offset, littleEndian) { - if (value < 0) value = 0xffff + value + 1 - for (var i = 0, j = Math.min(buf.length - offset, 2); i < j; i++) { - buf[offset + i] = (value & (0xff << (8 * (littleEndian ? i : 1 - i)))) >>> - (littleEndian ? i : 1 - i) * 8 - } -} - -Buffer.prototype.writeUInt16LE = function (value, offset, noAssert) { - value = +value - offset = offset >>> 0 - if (!noAssert) - checkInt(this, value, offset, 2, 0xffff, 0) - if (Buffer.TYPED_ARRAY_SUPPORT) { - this[offset] = value - this[offset + 1] = (value >>> 8) - } else objectWriteUInt16(this, value, offset, true) - return offset + 2 -} - -Buffer.prototype.writeUInt16BE = function (value, offset, noAssert) { - value = +value - offset = offset >>> 0 - if (!noAssert) - checkInt(this, value, offset, 2, 0xffff, 0) - if (Buffer.TYPED_ARRAY_SUPPORT) { - this[offset] = (value >>> 8) - this[offset + 1] = value - } else objectWriteUInt16(this, value, offset, false) - return offset + 2 -} - -function objectWriteUInt32 (buf, value, offset, littleEndian) { - if (value < 0) value = 0xffffffff + value + 1 - for (var i = 0, j = Math.min(buf.length - offset, 4); i < j; i++) { - buf[offset + i] = (value >>> (littleEndian ? i : 3 - i) * 8) & 0xff - } -} - -Buffer.prototype.writeUInt32LE = function (value, offset, noAssert) { - value = +value - offset = offset >>> 0 - if (!noAssert) - checkInt(this, value, offset, 4, 0xffffffff, 0) - if (Buffer.TYPED_ARRAY_SUPPORT) { - this[offset + 3] = (value >>> 24) - this[offset + 2] = (value >>> 16) - this[offset + 1] = (value >>> 8) - this[offset] = value - } else objectWriteUInt32(this, value, offset, true) - return offset + 4 -} - -Buffer.prototype.writeUInt32BE = function (value, offset, noAssert) { - value = +value - offset = offset >>> 0 - if (!noAssert) - checkInt(this, value, offset, 4, 0xffffffff, 0) - if (Buffer.TYPED_ARRAY_SUPPORT) { - this[offset] = (value >>> 24) - this[offset + 1] = (value >>> 16) - this[offset + 2] = (value >>> 8) - this[offset + 3] = value - } else objectWriteUInt32(this, value, offset, false) - return offset + 4 -} - -Buffer.prototype.writeIntLE = function (value, offset, byteLength, noAssert) { - value = +value - offset = offset >>> 0 - if (!noAssert) { - checkInt(this, - value, - offset, - byteLength, - Math.pow(2, 8 * byteLength - 1) - 1, - -Math.pow(2, 8 * byteLength - 1)) - } - - var i = 0 - var mul = 1 - var sub = value < 0 ? 1 : 0 - this[offset] = value & 0xFF - while (++i < byteLength && (mul *= 0x100)) - this[offset + i] = ((value / mul) >> 0) - sub & 0xFF - - return offset + byteLength -} - -Buffer.prototype.writeIntBE = function (value, offset, byteLength, noAssert) { - value = +value - offset = offset >>> 0 - if (!noAssert) { - checkInt(this, - value, - offset, - byteLength, - Math.pow(2, 8 * byteLength - 1) - 1, - -Math.pow(2, 8 * byteLength - 1)) - } - - var i = byteLength - 1 - var mul = 1 - var sub = value < 0 ? 1 : 0 - this[offset + i] = value & 0xFF - while (--i >= 0 && (mul *= 0x100)) - this[offset + i] = ((value / mul) >> 0) - sub & 0xFF - - return offset + byteLength -} - -Buffer.prototype.writeInt8 = function (value, offset, noAssert) { - value = +value - offset = offset >>> 0 - if (!noAssert) - checkInt(this, value, offset, 1, 0x7f, -0x80) - if (!Buffer.TYPED_ARRAY_SUPPORT) value = Math.floor(value) - if (value < 0) value = 0xff + value + 1 - this[offset] = value - return offset + 1 -} - -Buffer.prototype.writeInt16LE = function (value, offset, noAssert) { - value = +value - offset = offset >>> 0 - if (!noAssert) - checkInt(this, value, offset, 2, 0x7fff, -0x8000) - if (Buffer.TYPED_ARRAY_SUPPORT) { - this[offset] = value - this[offset + 1] = (value >>> 8) - } else objectWriteUInt16(this, value, offset, true) - return offset + 2 -} - -Buffer.prototype.writeInt16BE = function (value, offset, noAssert) { - value = +value - offset = offset >>> 0 - if (!noAssert) - checkInt(this, value, offset, 2, 0x7fff, -0x8000) - if (Buffer.TYPED_ARRAY_SUPPORT) { - this[offset] = (value >>> 8) - this[offset + 1] = value - } else objectWriteUInt16(this, value, offset, false) - return offset + 2 -} - -Buffer.prototype.writeInt32LE = function (value, offset, noAssert) { - value = +value - offset = offset >>> 0 - if (!noAssert) - checkInt(this, value, offset, 4, 0x7fffffff, -0x80000000) - if (Buffer.TYPED_ARRAY_SUPPORT) { - this[offset] = value - this[offset + 1] = (value >>> 8) - this[offset + 2] = (value >>> 16) - this[offset + 3] = (value >>> 24) - } else objectWriteUInt32(this, value, offset, true) - return offset + 4 -} - -Buffer.prototype.writeInt32BE = function (value, offset, noAssert) { - value = +value - offset = offset >>> 0 - if (!noAssert) - checkInt(this, value, offset, 4, 0x7fffffff, -0x80000000) - if (value < 0) value = 0xffffffff + value + 1 - if (Buffer.TYPED_ARRAY_SUPPORT) { - this[offset] = (value >>> 24) - this[offset + 1] = (value >>> 16) - this[offset + 2] = (value >>> 8) - this[offset + 3] = value - } else objectWriteUInt32(this, value, offset, false) - return offset + 4 -} - -function checkIEEE754 (buf, value, offset, ext, max, min) { - if (value > max || value < min) throw new RangeError('value is out of bounds') - if (offset + ext > buf.length) throw new RangeError('index out of range') - if (offset < 0) throw new RangeError('index out of range') -} - -function writeFloat (buf, value, offset, littleEndian, noAssert) { - if (!noAssert) - checkIEEE754(buf, value, offset, 4, 3.4028234663852886e+38, -3.4028234663852886e+38) - ieee754.write(buf, value, offset, littleEndian, 23, 4) - return offset + 4 -} - -Buffer.prototype.writeFloatLE = function (value, offset, noAssert) { - return writeFloat(this, value, offset, true, noAssert) -} - -Buffer.prototype.writeFloatBE = function (value, offset, noAssert) { - return writeFloat(this, value, offset, false, noAssert) -} - -function writeDouble (buf, value, offset, littleEndian, noAssert) { - if (!noAssert) - checkIEEE754(buf, value, offset, 8, 1.7976931348623157E+308, -1.7976931348623157E+308) - ieee754.write(buf, value, offset, littleEndian, 52, 8) - return offset + 8 -} - -Buffer.prototype.writeDoubleLE = function (value, offset, noAssert) { - return writeDouble(this, value, offset, true, noAssert) -} - -Buffer.prototype.writeDoubleBE = function (value, offset, noAssert) { - return writeDouble(this, value, offset, false, noAssert) -} - -// copy(targetBuffer, targetStart=0, sourceStart=0, sourceEnd=buffer.length) -Buffer.prototype.copy = function (target, target_start, start, end) { - var self = this // source - - if (!start) start = 0 - if (!end && end !== 0) end = this.length - if (target_start >= target.length) target_start = target.length - if (!target_start) target_start = 0 - if (end > 0 && end < start) end = start - - // Copy 0 bytes; we're done - if (end === start) return 0 - if (target.length === 0 || self.length === 0) return 0 - - // Fatal error conditions - if (target_start < 0) - throw new RangeError('targetStart out of bounds') - if (start < 0 || start >= self.length) throw new RangeError('sourceStart out of bounds') - if (end < 0) throw new RangeError('sourceEnd out of bounds') - - // Are we oob? - if (end > this.length) - end = this.length - if (target.length - target_start < end - start) - end = target.length - target_start + start - - var len = end - start - - if (len < 1000 || !Buffer.TYPED_ARRAY_SUPPORT) { - for (var i = 0; i < len; i++) { - target[i + target_start] = this[i + start] - } - } else { - target._set(this.subarray(start, start + len), target_start) - } - - return len -} - -// fill(value, start=0, end=buffer.length) -Buffer.prototype.fill = function (value, start, end) { - if (!value) value = 0 - if (!start) start = 0 - if (!end) end = this.length - - if (end < start) throw new RangeError('end < start') - - // Fill 0 bytes; we're done - if (end === start) return - if (this.length === 0) return - - if (start < 0 || start >= this.length) throw new RangeError('start out of bounds') - if (end < 0 || end > this.length) throw new RangeError('end out of bounds') - - var i - if (typeof value === 'number') { - for (i = start; i < end; i++) { - this[i] = value - } - } else { - var bytes = utf8ToBytes(value.toString()) - var len = bytes.length - for (i = start; i < end; i++) { - this[i] = bytes[i % len] - } - } - - return this -} - -/** - * Creates a new `ArrayBuffer` with the *copied* memory of the buffer instance. - * Added in Node 0.12. Only available in browsers that support ArrayBuffer. - */ -Buffer.prototype.toArrayBuffer = function () { - if (typeof Uint8Array !== 'undefined') { - if (Buffer.TYPED_ARRAY_SUPPORT) { - return (new Buffer(this)).buffer - } else { - var buf = new Uint8Array(this.length) - for (var i = 0, len = buf.length; i < len; i += 1) { - buf[i] = this[i] - } - return buf.buffer - } - } else { - throw new TypeError('Buffer.toArrayBuffer not supported in this browser') - } -} - -// HELPER FUNCTIONS -// ================ - -var BP = Buffer.prototype - -/** - * Augment a Uint8Array *instance* (not the Uint8Array class!) with Buffer methods - */ -Buffer._augment = function (arr) { - arr.constructor = Buffer - arr._isBuffer = true - - // save reference to original Uint8Array get/set methods before overwriting - arr._get = arr.get - arr._set = arr.set - - // deprecated, will be removed in node 0.13+ - arr.get = BP.get - arr.set = BP.set - - arr.write = BP.write - arr.toString = BP.toString - arr.toLocaleString = BP.toString - arr.toJSON = BP.toJSON - arr.equals = BP.equals - arr.compare = BP.compare - arr.copy = BP.copy - arr.slice = BP.slice - arr.readUIntLE = BP.readUIntLE - arr.readUIntBE = BP.readUIntBE - arr.readUInt8 = BP.readUInt8 - arr.readUInt16LE = BP.readUInt16LE - arr.readUInt16BE = BP.readUInt16BE - arr.readUInt32LE = BP.readUInt32LE - arr.readUInt32BE = BP.readUInt32BE - arr.readIntLE = BP.readIntLE - arr.readIntBE = BP.readIntBE - arr.readInt8 = BP.readInt8 - arr.readInt16LE = BP.readInt16LE - arr.readInt16BE = BP.readInt16BE - arr.readInt32LE = BP.readInt32LE - arr.readInt32BE = BP.readInt32BE - arr.readFloatLE = BP.readFloatLE - arr.readFloatBE = BP.readFloatBE - arr.readDoubleLE = BP.readDoubleLE - arr.readDoubleBE = BP.readDoubleBE - arr.writeUInt8 = BP.writeUInt8 - arr.writeUIntLE = BP.writeUIntLE - arr.writeUIntBE = BP.writeUIntBE - arr.writeUInt16LE = BP.writeUInt16LE - arr.writeUInt16BE = BP.writeUInt16BE - arr.writeUInt32LE = BP.writeUInt32LE - arr.writeUInt32BE = BP.writeUInt32BE - arr.writeIntLE = BP.writeIntLE - arr.writeIntBE = BP.writeIntBE - arr.writeInt8 = BP.writeInt8 - arr.writeInt16LE = BP.writeInt16LE - arr.writeInt16BE = BP.writeInt16BE - arr.writeInt32LE = BP.writeInt32LE - arr.writeInt32BE = BP.writeInt32BE - arr.writeFloatLE = BP.writeFloatLE - arr.writeFloatBE = BP.writeFloatBE - arr.writeDoubleLE = BP.writeDoubleLE - arr.writeDoubleBE = BP.writeDoubleBE - arr.fill = BP.fill - arr.inspect = BP.inspect - arr.toArrayBuffer = BP.toArrayBuffer - - return arr -} - -var INVALID_BASE64_RE = /[^+\/0-9A-z\-]/g - -function base64clean (str) { - // Node strips out invalid characters like \n and \t from the string, base64-js does not - str = stringtrim(str).replace(INVALID_BASE64_RE, '') - // Node converts strings with length < 2 to '' - if (str.length < 2) return '' - // Node allows for non-padded base64 strings (missing trailing ===), base64-js does not - while (str.length % 4 !== 0) { - str = str + '=' - } - return str -} - -function stringtrim (str) { - if (str.trim) return str.trim() - return str.replace(/^\s+|\s+$/g, '') -} - -function isArrayish (subject) { - return isArray(subject) || Buffer.isBuffer(subject) || - subject && typeof subject === 'object' && - typeof subject.length === 'number' -} - -function toHex (n) { - if (n < 16) return '0' + n.toString(16) - return n.toString(16) -} - -function utf8ToBytes (string, units) { - units = units || Infinity - var codePoint - var length = string.length - var leadSurrogate = null - var bytes = [] - var i = 0 - - for (; i < length; i++) { - codePoint = string.charCodeAt(i) - - // is surrogate component - if (codePoint > 0xD7FF && codePoint < 0xE000) { - // last char was a lead - if (leadSurrogate) { - // 2 leads in a row - if (codePoint < 0xDC00) { - if ((units -= 3) > -1) bytes.push(0xEF, 0xBF, 0xBD) - leadSurrogate = codePoint - continue - } else { - // valid surrogate pair - codePoint = leadSurrogate - 0xD800 << 10 | codePoint - 0xDC00 | 0x10000 - leadSurrogate = null - } - } else { - // no lead yet - - if (codePoint > 0xDBFF) { - // unexpected trail - if ((units -= 3) > -1) bytes.push(0xEF, 0xBF, 0xBD) - continue - } else if (i + 1 === length) { - // unpaired lead - if ((units -= 3) > -1) bytes.push(0xEF, 0xBF, 0xBD) - continue - } else { - // valid lead - leadSurrogate = codePoint - continue - } - } - } else if (leadSurrogate) { - // valid bmp char, but last char was a lead - if ((units -= 3) > -1) bytes.push(0xEF, 0xBF, 0xBD) - leadSurrogate = null - } - - // encode utf8 - if (codePoint < 0x80) { - if ((units -= 1) < 0) break - bytes.push(codePoint) - } else if (codePoint < 0x800) { - if ((units -= 2) < 0) break - bytes.push( - codePoint >> 0x6 | 0xC0, - codePoint & 0x3F | 0x80 - ) - } else if (codePoint < 0x10000) { - if ((units -= 3) < 0) break - bytes.push( - codePoint >> 0xC | 0xE0, - codePoint >> 0x6 & 0x3F | 0x80, - codePoint & 0x3F | 0x80 - ) - } else if (codePoint < 0x200000) { - if ((units -= 4) < 0) break - bytes.push( - codePoint >> 0x12 | 0xF0, - codePoint >> 0xC & 0x3F | 0x80, - codePoint >> 0x6 & 0x3F | 0x80, - codePoint & 0x3F | 0x80 - ) - } else { - throw new Error('Invalid code point') - } - } - - return bytes -} - -function asciiToBytes (str) { - var byteArray = [] - for (var i = 0; i < str.length; i++) { - // Node's code seems to be doing this and not & 0x7F.. - byteArray.push(str.charCodeAt(i) & 0xFF) - } - return byteArray -} - -function utf16leToBytes (str, units) { - var c, hi, lo - var byteArray = [] - for (var i = 0; i < str.length; i++) { - if ((units -= 2) < 0) break - - c = str.charCodeAt(i) - hi = c >> 8 - lo = c % 256 - byteArray.push(lo) - byteArray.push(hi) - } - - return byteArray -} - -function base64ToBytes (str) { - return base64.toByteArray(base64clean(str)) -} - -function blitBuffer (src, dst, offset, length) { - for (var i = 0; i < length; i++) { - if ((i + offset >= dst.length) || (i >= src.length)) - break - dst[i + offset] = src[i] - } - return i -} - -function decodeUtf8Char (str) { - try { - return decodeURIComponent(str) - } catch (err) { - return String.fromCharCode(0xFFFD) // UTF 8 invalid char - } -} - -},{"base64-js":3,"ieee754":4,"is-array":5}],3:[function(require,module,exports){ -var lookup = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/'; - -;(function (exports) { - 'use strict'; - - var Arr = (typeof Uint8Array !== 'undefined') - ? Uint8Array - : Array - - var PLUS = '+'.charCodeAt(0) - var SLASH = '/'.charCodeAt(0) - var NUMBER = '0'.charCodeAt(0) - var LOWER = 'a'.charCodeAt(0) - var UPPER = 'A'.charCodeAt(0) - var PLUS_URL_SAFE = '-'.charCodeAt(0) - var SLASH_URL_SAFE = '_'.charCodeAt(0) - - function decode (elt) { - var code = elt.charCodeAt(0) - if (code === PLUS || - code === PLUS_URL_SAFE) - return 62 // '+' - if (code === SLASH || - code === SLASH_URL_SAFE) - return 63 // '/' - if (code < NUMBER) - return -1 //no match - if (code < NUMBER + 10) - return code - NUMBER + 26 + 26 - if (code < UPPER + 26) - return code - UPPER - if (code < LOWER + 26) - return code - LOWER + 26 - } - - function b64ToByteArray (b64) { - var i, j, l, tmp, placeHolders, arr - - if (b64.length % 4 > 0) { - throw new Error('Invalid string. Length must be a multiple of 4') - } - - // the number of equal signs (place holders) - // if there are two placeholders, than the two characters before it - // represent one byte - // if there is only one, then the three characters before it represent 2 bytes - // this is just a cheap hack to not do indexOf twice - var len = b64.length - placeHolders = '=' === b64.charAt(len - 2) ? 2 : '=' === b64.charAt(len - 1) ? 1 : 0 - - // base64 is 4/3 + up to two characters of the original data - arr = new Arr(b64.length * 3 / 4 - placeHolders) - - // if there are placeholders, only get up to the last complete 4 chars - l = placeHolders > 0 ? b64.length - 4 : b64.length - - var L = 0 - - function push (v) { - arr[L++] = v - } - - for (i = 0, j = 0; i < l; i += 4, j += 3) { - tmp = (decode(b64.charAt(i)) << 18) | (decode(b64.charAt(i + 1)) << 12) | (decode(b64.charAt(i + 2)) << 6) | decode(b64.charAt(i + 3)) - push((tmp & 0xFF0000) >> 16) - push((tmp & 0xFF00) >> 8) - push(tmp & 0xFF) - } - - if (placeHolders === 2) { - tmp = (decode(b64.charAt(i)) << 2) | (decode(b64.charAt(i + 1)) >> 4) - push(tmp & 0xFF) - } else if (placeHolders === 1) { - tmp = (decode(b64.charAt(i)) << 10) | (decode(b64.charAt(i + 1)) << 4) | (decode(b64.charAt(i + 2)) >> 2) - push((tmp >> 8) & 0xFF) - push(tmp & 0xFF) - } - - return arr - } - - function uint8ToBase64 (uint8) { - var i, - extraBytes = uint8.length % 3, // if we have 1 byte left, pad 2 bytes - output = "", - temp, length - - function encode (num) { - return lookup.charAt(num) - } - - function tripletToBase64 (num) { - return encode(num >> 18 & 0x3F) + encode(num >> 12 & 0x3F) + encode(num >> 6 & 0x3F) + encode(num & 0x3F) - } - - // go through the array every three bytes, we'll deal with trailing stuff later - for (i = 0, length = uint8.length - extraBytes; i < length; i += 3) { - temp = (uint8[i] << 16) + (uint8[i + 1] << 8) + (uint8[i + 2]) - output += tripletToBase64(temp) - } - - // pad the end with zeros, but make sure to not forget the extra bytes - switch (extraBytes) { - case 1: - temp = uint8[uint8.length - 1] - output += encode(temp >> 2) - output += encode((temp << 4) & 0x3F) - output += '==' - break - case 2: - temp = (uint8[uint8.length - 2] << 8) + (uint8[uint8.length - 1]) - output += encode(temp >> 10) - output += encode((temp >> 4) & 0x3F) - output += encode((temp << 2) & 0x3F) - output += '=' - break - } - - return output - } - - exports.toByteArray = b64ToByteArray - exports.fromByteArray = uint8ToBase64 -}(typeof exports === 'undefined' ? (this.base64js = {}) : exports)) - -},{}],4:[function(require,module,exports){ -exports.read = function(buffer, offset, isLE, mLen, nBytes) { - var e, m, - eLen = nBytes * 8 - mLen - 1, - eMax = (1 << eLen) - 1, - eBias = eMax >> 1, - nBits = -7, - i = isLE ? (nBytes - 1) : 0, - d = isLE ? -1 : 1, - s = buffer[offset + i]; - - i += d; - - e = s & ((1 << (-nBits)) - 1); - s >>= (-nBits); - nBits += eLen; - for (; nBits > 0; e = e * 256 + buffer[offset + i], i += d, nBits -= 8); - - m = e & ((1 << (-nBits)) - 1); - e >>= (-nBits); - nBits += mLen; - for (; nBits > 0; m = m * 256 + buffer[offset + i], i += d, nBits -= 8); - - if (e === 0) { - e = 1 - eBias; - } else if (e === eMax) { - return m ? NaN : ((s ? -1 : 1) * Infinity); - } else { - m = m + Math.pow(2, mLen); - e = e - eBias; - } - return (s ? -1 : 1) * m * Math.pow(2, e - mLen); -}; - -exports.write = function(buffer, value, offset, isLE, mLen, nBytes) { - var e, m, c, - eLen = nBytes * 8 - mLen - 1, - eMax = (1 << eLen) - 1, - eBias = eMax >> 1, - rt = (mLen === 23 ? Math.pow(2, -24) - Math.pow(2, -77) : 0), - i = isLE ? 0 : (nBytes - 1), - d = isLE ? 1 : -1, - s = value < 0 || (value === 0 && 1 / value < 0) ? 1 : 0; - - value = Math.abs(value); - - if (isNaN(value) || value === Infinity) { - m = isNaN(value) ? 1 : 0; - e = eMax; - } else { - e = Math.floor(Math.log(value) / Math.LN2); - if (value * (c = Math.pow(2, -e)) < 1) { - e--; - c *= 2; - } - if (e + eBias >= 1) { - value += rt / c; - } else { - value += rt * Math.pow(2, 1 - eBias); - } - if (value * c >= 2) { - e++; - c /= 2; - } - - if (e + eBias >= eMax) { - m = 0; - e = eMax; - } else if (e + eBias >= 1) { - m = (value * c - 1) * Math.pow(2, mLen); - e = e + eBias; - } else { - m = value * Math.pow(2, eBias - 1) * Math.pow(2, mLen); - e = 0; - } - } - - for (; mLen >= 8; buffer[offset + i] = m & 0xff, i += d, m /= 256, mLen -= 8); - - e = (e << mLen) | m; - eLen += mLen; - for (; eLen > 0; buffer[offset + i] = e & 0xff, i += d, e /= 256, eLen -= 8); - - buffer[offset + i - d] |= s * 128; -}; - -},{}],5:[function(require,module,exports){ - -/** - * isArray - */ - -var isArray = Array.isArray; - -/** - * toString - */ - -var str = Object.prototype.toString; - -/** - * Whether or not the given `val` - * is an array. - * - * example: - * - * isArray([]); - * // > true - * isArray(arguments); - * // > false - * isArray(''); - * // > false - * - * @param {mixed} val - * @return {bool} - */ - -module.exports = isArray || function (val) { - return !! val && '[object Array]' == str.call(val); -}; - -},{}],6:[function(require,module,exports){ -var average = require('turf-average'); -var sum = require('turf-sum'); -var median = require('turf-median'); -var min = require('turf-min'); -var max = require('turf-max'); -var deviation = require('turf-deviation'); -var variance = require('turf-variance'); -var count = require('turf-count'); -var operations = {}; -operations.average = average; -operations.sum = sum; -operations.median = median; -operations.min = min; -operations.max = max; -operations.deviation = deviation; -operations.variance = variance; -operations.count = count; - -/** -* Calculates a series of aggregations for a set of {@link Point} features within a set of {@link Polygon} features. Sum, average, count, min, max, and deviation are supported. -* -* @module turf/aggregate -* @category aggregation -* @param {FeatureCollection} polygons a FeatureCollection of {@link Polygon} features -* @param {FeatureCollection} points a FeatureCollection of {@link Point} features -* @param {Array} aggregations an array of aggregation objects -* @return {FeatureCollection} a FeatureCollection of {@link Polygon} features with properties listed as `outField` values in `aggregations` -* @example -* var polygons = { -* "type": "FeatureCollection", -* "features": [ -* { -* "type": "Feature", -* "properties": {}, -* "geometry": { -* "type": "Polygon", -* "coordinates": [[ -* [1.669921, 48.632908], -* [1.669921, 49.382372], -* [3.636474, 49.382372], -* [3.636474, 48.632908], -* [1.669921, 48.632908] -* ]] -* } -* }, { -* "type": "Feature", -* "properties": {}, -* "geometry": { -* "type": "Polygon", -* "coordinates": [[ -* [2.230224, 47.85003], -* [2.230224, 48.611121], -* [4.361572, 48.611121], -* [4.361572, 47.85003], -* [2.230224, 47.85003] -* ]] -* } -* } -* ] -* }; -* var points = { -* "type": "FeatureCollection", -* "features": [ -* { -* "type": "Feature", -* "properties": { -* "population": 200 -* }, -* "geometry": { -* "type": "Point", -* "coordinates": [2.054443,49.138596] -* } -* }, -* { -* "type": "Feature", -* "properties": { -* "population": 600 -* }, -* "geometry": { -* "type": "Point", -* "coordinates": [3.065185,48.850258] -* } -* }, -* { -* "type": "Feature", -* "properties": { -* "population": 100 -* }, -* "geometry": { -* "type": "Point", -* "coordinates": [2.329101,48.79239] -* } -* }, -* { -* "type": "Feature", -* "properties": { -* "population": 200 -* }, -* "geometry": { -* "type": "Point", -* "coordinates": [2.614746,48.334343] -* } -* }, -* { -* "type": "Feature", -* "properties": { -* "population": 300 -* }, -* "geometry": { -* "type": "Point", -* "coordinates": [3.416748,48.056053] -* } -* } -* ] -* }; -* var aggregations = [ -* { -* aggregation: 'sum', -* inField: 'population', -* outField: 'pop_sum' -* }, -* { -* aggregation: 'average', -* inField: 'population', -* outField: 'pop_avg' -* }, -* { -* aggregation: 'median', -* inField: 'population', -* outField: 'pop_median' -* }, -* { -* aggregation: 'min', -* inField: 'population', -* outField: 'pop_min' -* }, -* { -* aggregation: 'max', -* inField: 'population', -* outField: 'pop_max' -* }, -* { -* aggregation: 'deviation', -* inField: 'population', -* outField: 'pop_deviation' -* }, -* { -* aggregation: 'variance', -* inField: 'population', -* outField: 'pop_variance' -* }, -* { -* aggregation: 'count', -* inField: '', -* outField: 'point_count' -* } -* ]; -* -* var aggregated = turf.aggregate( -* polygons, points, aggregations); -* -* var result = turf.featurecollection( -* points.features.concat(aggregated.features)); -* -* //=result -*/ - -module.exports = function(polygons, points, aggregations){ - for (var i = 0, len = aggregations.length; i < len; i++) { - var agg = aggregations[i], - operation = agg.aggregation, - unrecognizedError; - - if (isAggregationOperation(operation)) { - if (operation === 'count') { - polygons = operations[operation](polygons, points, agg.outField); - } else { - polygons = operations[operation](polygons, points, agg.inField, agg.outField); - } - } else { - throw new Error('"'+ operation +'" is not a recognized aggregation operation.'); - } - } - - return polygons; -}; - -function isAggregationOperation(operation) { - return operation === 'average' || - operation === 'sum' || - operation === 'median' || - operation === 'min' || - operation === 'max' || - operation === 'deviation' || - operation === 'variance' || - operation === 'count'; -} - -},{"turf-average":11,"turf-count":56,"turf-deviation":58,"turf-max":91,"turf-median":92,"turf-min":96,"turf-sum":116,"turf-variance":125}],7:[function(require,module,exports){ -var distance = require('turf-distance'); -var point = require('turf-point'); -var bearing = require('turf-bearing'); -var destination = require('turf-destination'); - -/** - * Takes a {@link LineString} feature and returns a {@link Point} feature at a specified distance along a line. - * - * @module turf/along - * @category measurement - * @param {LineString} line a LineString feature - * @param {Number} distance distance along the line - * @param {String} [units=miles] can be degrees, radians, miles, or kilometers - * @return {Point} Point along the line at `distance` distance - * @example - * var line = { - * "type": "Feature", - * "properties": {}, - * "geometry": { - * "type": "LineString", - * "coordinates": [ - * [-77.031669, 38.878605], - * [-77.029609, 38.881946], - * [-77.020339, 38.884084], - * [-77.025661, 38.885821], - * [-77.021884, 38.889563], - * [-77.019824, 38.892368] - * ] - * } - * }; - * - * var along = turf.along(line, 1, 'miles'); - * - * var result = { - * "type": "FeatureCollection", - * "features": [line, along] - * }; - * - * //=result - */ -module.exports = function (line, dist, units) { - var coords; - if(line.type === 'Feature') coords = line.geometry.coordinates; - else if(line.type === 'LineString') coords = line.geometry.coordinates; - else throw new Error('input must be a LineString Feature or Geometry'); - - var travelled = 0; - for(var i = 0; i < coords.length; i++) { - if (dist >= travelled && i === coords.length - 1) break; - else if(travelled >= dist) { - var overshot = dist - travelled; - if(!overshot) return point(coords[i]); - else { - var direction = bearing(point(coords[i]), point(coords[i-1])) - 180; - var interpolated = destination(point(coords[i]), overshot, direction, units); - return interpolated; - } - } - else { - travelled += distance(point(coords[i]), point(coords[i+1]), units); - } - } - return point(coords[coords.length - 1]); -} - -},{"turf-bearing":13,"turf-destination":57,"turf-distance":60,"turf-point":102}],8:[function(require,module,exports){ -var geometryArea = require('geojson-area').geometry; - -/** - * Takes a {@link GeoJSON} feature or {@link FeatureCollection} of any type and returns the area of that feature - * in square meters. - * - * @module turf/area - * @category measurement - * @param {GeoJSON} input a {@link Feature} or {@link FeatureCollection} of any type - * @return {Number} area in square meters - * @example - * var polygons = { - * "type": "FeatureCollection", - * "features": [ - * { - * "type": "Feature", - * "properties": {}, - * "geometry": { - * "type": "Polygon", - * "coordinates": [[ - * [-67.031021, 10.458102], - * [-67.031021, 10.53372], - * [-66.929397, 10.53372], - * [-66.929397, 10.458102], - * [-67.031021, 10.458102] - * ]] - * } - * }, { - * "type": "Feature", - * "properties": {}, - * "geometry": { - * "type": "Polygon", - * "coordinates": [[ - * [-66.919784, 10.397325], - * [-66.919784, 10.513467], - * [-66.805114, 10.513467], - * [-66.805114, 10.397325], - * [-66.919784, 10.397325] - * ]] - * } - * } - * ] - * }; - * - * var area = turf.area(polygons); - * - * //=area - */ -module.exports = function(_) { - if (_.type === 'FeatureCollection') { - for (var i = 0, sum = 0; i < _.features.length; i++) { - if (_.features[i].geometry) { - sum += geometryArea(_.features[i].geometry); - } - } - return sum; - } else if (_.type === 'Feature') { - return geometryArea(_.geometry); - } else { - return geometryArea(_); - } -}; - -},{"geojson-area":9}],9:[function(require,module,exports){ -var wgs84 = require('wgs84'); - -module.exports.geometry = geometry; -module.exports.ring = ringArea; - -function geometry(_) { - var area = 0, i; - switch (_.type) { - case 'Polygon': - return polygonArea(_.coordinates); - case 'MultiPolygon': - for (i = 0; i < _.coordinates.length; i++) { - area += polygonArea(_.coordinates[i]); - } - return area; - case 'Point': - case 'MultiPoint': - case 'LineString': - case 'MultiLineString': - return 0; - case 'GeometryCollection': - for (i = 0; i < _.geometries.length; i++) { - area += geometry(_.geometries[i]); - } - return area; - } -} - -function polygonArea(coords) { - var area = 0; - if (coords && coords.length > 0) { - area += Math.abs(ringArea(coords[0])); - for (var i = 1; i < coords.length; i++) { - area -= Math.abs(ringArea(coords[i])); - } - } - return area; -} - -/** - * Calculate the approximate area of the polygon were it projected onto - * the earth. Note that this area will be positive if ring is oriented - * clockwise, otherwise it will be negative. - * - * Reference: - * Robert. G. Chamberlain and William H. Duquette, "Some Algorithms for - * Polygons on a Sphere", JPL Publication 07-03, Jet Propulsion - * Laboratory, Pasadena, CA, June 2007 http://trs-new.jpl.nasa.gov/dspace/handle/2014/40409 - * - * Returns: - * {float} The approximate signed geodesic area of the polygon in square - * meters. - */ - -function ringArea(coords) { - var area = 0; - - if (coords.length > 2) { - var p1, p2; - for (var i = 0; i < coords.length - 1; i++) { - p1 = coords[i]; - p2 = coords[i + 1]; - area += rad(p2[0] - p1[0]) * (2 + Math.sin(rad(p1[1])) + Math.sin(rad(p2[1]))); - } - - area = area * wgs84.RADIUS * wgs84.RADIUS / 2; - } - - return area; -} - -function rad(_) { - return _ * Math.PI / 180; -} - -},{"wgs84":10}],10:[function(require,module,exports){ -module.exports.RADIUS = 6378137; -module.exports.FLATTENING = 1/298.257223563; -module.exports.POLAR_RADIUS = 6356752.3142; - -},{}],11:[function(require,module,exports){ -var inside = require('turf-inside'); - -/** - * Calculates the average value of a field for a set of {@link Point} features within a set of {@link Polygon} features. - * - * @module turf/average - * @category aggregation - * @param {FeatureCollection} polygons a FeatureCollection of {@link Polygon} features - * @param {FeatureCollection} points a FeatureCollection of {@link Point} features - * @param {string} field the field in the `points` features from which to pull values to average - * @param {string} outputField the field in the `polygons` FeatureCollection to put results of the averages - * @return {FeatureCollection} a FeatureCollection of {@link Polygon} features with the value of `outField` set to the calculated average - * @example -* var polygons = { - * "type": "FeatureCollection", - * "features": [ - * { - * "type": "Feature", - * "properties": {}, - * "geometry": { - * "type": "Polygon", - * "coordinates": [[ - * [10.666351, 59.890659], - * [10.666351, 59.936784], - * [10.762481, 59.936784], - * [10.762481, 59.890659], - * [10.666351, 59.890659] - * ]] - * } - * }, { - * "type": "Feature", - * "properties": {}, - * "geometry": { - * "type": "Polygon", - * "coordinates": [[ - * [10.764541, 59.889281], - * [10.764541, 59.937128], - * [10.866165, 59.937128], - * [10.866165, 59.889281], - * [10.764541, 59.889281] - * ]] - * } - * } - * ] - * }; - * var points = { - * "type": "FeatureCollection", - * "features": [ - * { - * "type": "Feature", - * "properties": { - * "population": 200 - * }, - * "geometry": { - * "type": "Point", - * "coordinates": [10.724029, 59.926807] - * } - * }, { - * "type": "Feature", - * "properties": { - * "population": 600 - * }, - * "geometry": { - * "type": "Point", - * "coordinates": [10.715789, 59.904778] - * } - * }, { - * "type": "Feature", - * "properties": { - * "population": 100 - * }, - * "geometry": { - * "type": "Point", - * "coordinates": [10.746002, 59.908566] - * } - * }, { - * "type": "Feature", - * "properties": { - * "population": 200 - * }, - * "geometry": { - * "type": "Point", - * "coordinates": [10.806427, 59.908910] - * } - * }, { - * "type": "Feature", - * "properties": { - * "population": 300 - * }, - * "geometry": { - * "type": "Point", - * "coordinates": [10.79544, 59.931624] - * } - * } - * ] - * }; - * - * var averaged = turf.average( - * polygons, points, 'population', 'pop_avg'); - * - * var resultFeatures = points.features.concat( - * averaged.features); - * var result = { - * "type": "FeatureCollection", - * "features": resultFeatures - * }; - * - * //=result - */ -module.exports = function(polyFC, ptFC, inField, outField, done){ - polyFC.features.forEach(function(poly){ - if(!poly.properties) poly.properties = {}; - var values = []; - ptFC.features.forEach(function(pt){ - if (inside(pt, poly)) values.push(pt.properties[inField]); - }); - poly.properties[outField] = average(values); - }); - - return polyFC; -} - -function average(values) { - var sum = 0; - for (var i = 0; i < values.length; i++) { - sum += values[i]; - } - return sum / values.length; -} - -},{"turf-inside":76}],12:[function(require,module,exports){ -var polygon = require('turf-polygon'); - -/** - * Takes a bbox and returns the equivalent {@link Polygon} feature. - * - * @module turf/bbox-polygon - * @category measurement - * @param {Array} bbox an Array of bounding box coordinates in the form: ```[xLow, yLow, xHigh, yHigh]``` - * @return {Polygon} a Polygon representation of the bounding box - * @example - * var bbox = [0, 0, 10, 10]; - * - * var poly = turf.bboxPolygon(bbox); - * - * //=poly - */ - -module.exports = function(bbox){ - var lowLeft = [bbox[0], bbox[1]]; - var topLeft = [bbox[0], bbox[3]]; - var topRight = [bbox[2], bbox[3]]; - var lowRight = [bbox[2], bbox[1]]; - - var poly = polygon([[ - lowLeft, - lowRight, - topRight, - topLeft, - lowLeft - ]]); - return poly; -} - -},{"turf-polygon":103}],13:[function(require,module,exports){ -//http://en.wikipedia.org/wiki/Haversine_formula -//http://www.movable-type.co.uk/scripts/latlong.html - -/** - * Takes two {@link Point} features and finds the bearing between them. - * - * @module turf/bearing - * @category measurement - * @param {Point} start starting Point - * @param {Point} end ending Point - * @category measurement - * @returns {Number} bearing in decimal degrees - * @example - * var point1 = { - * "type": "Feature", - * "properties": { - * "marker-color": '#f00' - * }, - * "geometry": { - * "type": "Point", - * "coordinates": [-75.343, 39.984] - * } - * }; - * var point2 = { - * "type": "Feature", - * "properties": { - * "marker-color": '#0f0' - * }, - * "geometry": { - * "type": "Point", - * "coordinates": [-75.534, 39.123] - * } - * }; - * - * var points = { - * "type": "FeatureCollection", - * "features": [point1, point2] - * }; - * - * //=points - * - * var bearing = turf.bearing(point1, point2); - * - * //=bearing - */ -module.exports = function (point1, point2) { - var coordinates1 = point1.geometry.coordinates; - var coordinates2 = point2.geometry.coordinates; - - var lon1 = toRad(coordinates1[0]); - var lon2 = toRad(coordinates2[0]); - var lat1 = toRad(coordinates1[1]); - var lat2 = toRad(coordinates2[1]); - var a = Math.sin(lon2 - lon1) * Math.cos(lat2); - var b = Math.cos(lat1) * Math.sin(lat2) - - Math.sin(lat1) * Math.cos(lat2) * Math.cos(lon2 - lon1); - - var bearing = toDeg(Math.atan2(a, b)); - - return bearing; -}; - -function toRad(degree) { - return degree * Math.PI / 180; -} - -function toDeg(radian) { - return radian * 180 / Math.PI; -} - -},{}],14:[function(require,module,exports){ -var linestring = require('turf-linestring'); -var Spline = require('./spline.js'); - -/** - * Takes a {@link LineString} feature and returns a curved version of the line - * by applying a [Bezier spline](http://en.wikipedia.org/wiki/B%C3%A9zier_spline) - * algorithm. - * - * The bezier spline implementation is by [Leszek Rybicki](http://leszek.rybicki.cc/). - * - * @module turf/bezier - * @category transformation - * @param {LineString} line the input LineString - * @param {number} [resolution=10000] time in milliseconds between points - * @param {number} [sharpness=0.85] a measure of how curvy the path should be between splines - * @returns {LineString} curved line - * @example - * var line = { - * "type": "Feature", - * "properties": { - * "stroke": "#f00" - * }, - * "geometry": { - * "type": "LineString", - * "coordinates": [ - * [-76.091308, 18.427501], - * [-76.695556, 18.729501], - * [-76.552734, 19.40443], - * [-74.61914, 19.134789], - * [-73.652343, 20.07657], - * [-73.157958, 20.210656] - * ] - * } - * }; - * - * var curved = turf.bezier(line); - * curved.properties = { stroke: '#0f0' }; - * - * var result = { - * "type": "FeatureCollection", - * "features": [line, curved] - * }; - * - * //=result - */ -module.exports = function(line, resolution, sharpness){ - var lineOut = linestring([]); - - lineOut.properties = line.properties; - var pts = line.geometry.coordinates.map(function(pt){ - return {x: pt[0], y: pt[1]}; - }); - - var spline = new Spline({ - points: pts, - duration: resolution, - sharpness: sharpness - }); - for (var i=0; i. - */ - - /* - Usage: - - var spline = new Spline({ - points: array_of_control_points, - duration: time_in_miliseconds, - sharpness: how_curvy, - stepLength: distance_between_points_to_cache - }); - - */ -var Spline = function(options){ - this.points = options.points || []; - this.duration = options.duration || 10000; - this.sharpness = options.sharpness || 0.85; - this.centers = []; - this.controls = []; - this.stepLength = options.stepLength || 60; - this.length = this.points.length; - this.delay = 0; - // this is to ensure compatibility with the 2d version - for(var i=0; imindist){ - steps.push(t); - laststep = step; - } - } - return steps; - }; - - /* - returns angle and speed in the given point in the curve - */ - Spline.prototype.vector = function(t){ - var p1 = this.pos(t+10); - var p2 = this.pos(t-10); - return { - angle:180*Math.atan2(p1.y-p2.y, p1.x-p2.x)/3.14, - speed:Math.sqrt((p2.x-p1.x)*(p2.x-p1.x)+(p2.y-p1.y)*(p2.y-p1.y)+(p2.z-p1.z)*(p2.z-p1.z)) - }; - }; - - /* - Gets the position of the point, given time. - - WARNING: The speed is not constant. The time it takes between control points is constant. - - For constant speed, use Spline.steps[i]; - */ - Spline.prototype.pos = function(time){ - - function bezier(t, p1, c1, c2, p2){ - var B = function(t) { - var t2=t*t, t3=t2*t; - return [(t3),(3*t2*(1-t)),(3*t*(1-t)*(1-t)),((1-t)*(1-t)*(1-t))] - } - var b = B(t) - var pos = { - x : p2.x * b[0] + c2.x * b[1] +c1.x * b[2] + p1.x * b[3], - y : p2.y * b[0] + c2.y * b[1] +c1.y * b[2] + p1.y * b[3], - z : p2.z * b[0] + c2.z * b[1] +c1.z * b[2] + p1.z * b[3] - } - return pos; - } - var t = time-this.delay; - if(t<0) t=0; - if(t>this.duration) t=this.duration-1; - //t = t-this.delay; - var t2 = (t)/this.duration; - if(t2>=1) return this.points[this.length-1]; - - var n = Math.floor((this.points.length-1)*t2); - var t1 = (this.length-1)*t2-n; - return bezier(t1,this.points[n],this.controls[n][1],this.controls[n+1][0],this.points[n+1]); - } - - module.exports = Spline; - -},{}],16:[function(require,module,exports){ -// http://stackoverflow.com/questions/839899/how-do-i-calculate-a-point-on-a-circles-circumference -// radians = degrees * (pi/180) -// https://github.com/bjornharrtell/jsts/blob/master/examples/buffer.html - -var featurecollection = require('turf-featurecollection'); -var polygon = require('turf-polygon'); -var combine = require('turf-combine'); -var jsts = require('jsts'); - -/** -* Calculates a buffer for a {@link Point}, {@link LineString}, or {@link Polygon} {@link Feature}/{@link FeatureCollection} for a given radius. Units supported are miles, kilometers, and degrees. -* -* @module turf/buffer -* @category transformation -* @param {FeatureCollection} feature a Feature or FeatureCollection of any type -* @param {Number} distance distance to draw the buffer -* @param {String} unit 'miles' or 'kilometers' -* @return {FeatureCollection} a FeatureCollection containing {@link Polygon} features representing buffers -* -* @example -* var pt = { -* "type": "Feature", -* "properties": {}, -* "geometry": { -* "type": "Point", -* "coordinates": [-90.548630, 14.616599] -* } -* }; -* var unit = 'miles'; -* -* var buffered = turf.buffer(pt, 500, unit); -* -* var resultFeatures = buffered.features.concat(pt); -* var result = { -* "type": "FeatureCollection", -* "features": resultFeatures -* }; -* -* //=result -*/ - -module.exports = function(feature, radius, units){ - var buffered; - - switch(units){ - case 'miles': - radius = radius / 69.047; - break - case 'feet': - radius = radius / 364568.0; - break - case 'kilometers': - radius = radius / 111.12; - break - case 'meters': - radius = radius / 111120.0; - break - case 'degrees': - break - } - - if(feature.type === 'FeatureCollection'){ - var multi = combine(feature); - multi.properties = {}; - buffered = bufferOp(multi, radius); - return buffered; - } - else{ - buffered = bufferOp(feature, radius); - return buffered; - } -} - -var bufferOp = function(feature, radius){ - var reader = new jsts.io.GeoJSONReader(); - var geom = reader.read(JSON.stringify(feature.geometry)); - var buffered = geom.buffer(radius); - var parser = new jsts.io.GeoJSONParser(); - buffered = parser.write(buffered); - - if(buffered.type === 'MultiPolygon'){ - buffered = { - type: 'Feature', - geometry: buffered, - properties: {} - }; - buffered = featurecollection([buffered]); - } - else{ - buffered = featurecollection([polygon(buffered.coordinates)]); - } - - return buffered; -} - -},{"jsts":17,"turf-combine":24,"turf-featurecollection":72,"turf-polygon":103}],17:[function(require,module,exports){ -require('javascript.util'); -var jsts = require('./lib/jsts'); -module.exports = jsts - -},{"./lib/jsts":18,"javascript.util":20}],18:[function(require,module,exports){ -/* The JSTS Topology Suite is a collection of JavaScript classes that -implement the fundamental operations required to validate a given -geo-spatial data set to a known topological specification. - -Copyright (C) 2011 The Authors - -This library is free software; you can redistribute it and/or -modify it under the terms of the GNU Lesser General Public -License as published by the Free Software Foundation; either -version 2.1 of the License, or (at your option) any later version. - -This library is distributed in the hope that it will be useful, -but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -Lesser General Public License for more details. - -You should have received a copy of the GNU Lesser General Public -License along with this library; if not, write to the Free Software -Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -jsts={version:'0.15.0',algorithm:{distance:{},locate:{}},error:{},geom:{util:{}},geomgraph:{index:{}},index:{bintree:{},chain:{},kdtree:{},quadtree:{},strtree:{}},io:{},noding:{snapround:{}},operation:{buffer:{},distance:{},overlay:{snap:{}},polygonize:{},predicate:{},relate:{},union:{},valid:{}},planargraph:{},simplify:{},triangulate:{quadedge:{}},util:{}};if(typeof String.prototype.trim!=='function'){String.prototype.trim=function(){return this.replace(/^\s+|\s+$/g,'');};} -jsts.abstractFunc=function(){throw new jsts.error.AbstractMethodInvocationError();};jsts.error={};jsts.error.IllegalArgumentError=function(message){this.name='IllegalArgumentError';this.message=message;};jsts.error.IllegalArgumentError.prototype=new Error();jsts.error.TopologyError=function(message,pt){this.name='TopologyError';this.message=pt?message+' [ '+pt+' ]':message;};jsts.error.TopologyError.prototype=new Error();jsts.error.AbstractMethodInvocationError=function(){this.name='AbstractMethodInvocationError';this.message='Abstract method called, should be implemented in subclass.';};jsts.error.AbstractMethodInvocationError.prototype=new Error();jsts.error.NotImplementedError=function(){this.name='NotImplementedError';this.message='This method has not yet been implemented.';};jsts.error.NotImplementedError.prototype=new Error();jsts.error.NotRepresentableError=function(message){this.name='NotRepresentableError';this.message=message;};jsts.error.NotRepresentableError.prototype=new Error();jsts.error.LocateFailureError=function(message){this.name='LocateFailureError';this.message=message;};jsts.error.LocateFailureError.prototype=new Error();if(typeof module!=="undefined")module.exports=jsts;jsts.geom.GeometryFilter=function(){};jsts.geom.GeometryFilter.prototype.filter=function(geom){throw new jsts.error.AbstractMethodInvocationError();};jsts.geom.util.PolygonExtracter=function(comps){this.comps=comps;};jsts.geom.util.PolygonExtracter.prototype=new jsts.geom.GeometryFilter();jsts.geom.util.PolygonExtracter.prototype.comps=null;jsts.geom.util.PolygonExtracter.getPolygons=function(geom,list){if(list===undefined){list=[];} -if(geom instanceof jsts.geom.Polygon){list.push(geom);}else if(geom instanceof jsts.geom.GeometryCollection){geom.apply(new jsts.geom.util.PolygonExtracter(list));} -return list;};jsts.geom.util.PolygonExtracter.prototype.filter=function(geom){if(geom instanceof jsts.geom.Polygon) -this.comps.push(geom);};jsts.io.WKTParser=function(geometryFactory){this.geometryFactory=geometryFactory||new jsts.geom.GeometryFactory();this.regExes={'typeStr':/^\s*(\w+)\s*\(\s*(.*)\s*\)\s*$/,'emptyTypeStr':/^\s*(\w+)\s*EMPTY\s*$/,'spaces':/\s+/,'parenComma':/\)\s*,\s*\(/,'doubleParenComma':/\)\s*\)\s*,\s*\(\s*\(/,'trimParens':/^\s*\(?(.*?)\)?\s*$/};};jsts.io.WKTParser.prototype.read=function(wkt){var geometry,type,str;wkt=wkt.replace(/[\n\r]/g,' ');var matches=this.regExes.typeStr.exec(wkt);if(wkt.search('EMPTY')!==-1){matches=this.regExes.emptyTypeStr.exec(wkt);matches[2]=undefined;} -if(matches){type=matches[1].toLowerCase();str=matches[2];if(this.parse[type]){geometry=this.parse[type].apply(this,[str]);}} -if(geometry===undefined) -throw new Error('Could not parse WKT '+wkt);return geometry;};jsts.io.WKTParser.prototype.write=function(geometry){return this.extractGeometry(geometry);};jsts.io.WKTParser.prototype.extractGeometry=function(geometry){var type=geometry.CLASS_NAME.split('.')[2].toLowerCase();if(!this.extract[type]){return null;} -var wktType=type.toUpperCase();var data;if(geometry.isEmpty()){data=wktType+' EMPTY';}else{data=wktType+'('+this.extract[type].apply(this,[geometry])+')';} -return data;};jsts.io.WKTParser.prototype.extract={'coordinate':function(coordinate){return coordinate.x+' '+coordinate.y;},'point':function(point){return point.coordinate.x+' '+point.coordinate.y;},'multipoint':function(multipoint){var array=[];for(var i=0,len=multipoint.geometries.length;ihiPt.y){hiPt=p;hiIndex=i;}} -iPrev=hiIndex;do{iPrev=iPrev-1;if(iPrev<0){iPrev=nPts;}}while(ring[iPrev].equals2D(hiPt)&&iPrev!==hiIndex);iNext=hiIndex;do{iNext=(iNext+1)%nPts;}while(ring[iNext].equals2D(hiPt)&&iNext!==hiIndex);prev=ring[iPrev];next=ring[iNext];if(prev.equals2D(hiPt)||next.equals2D(hiPt)||prev.equals2D(next)){return false;} -disc=jsts.algorithm.CGAlgorithms.computeOrientation(prev,hiPt,next);isCCW=false;if(disc===0){isCCW=(prev.x>next.x);}else{isCCW=(disc>0);} -return isCCW;};jsts.algorithm.CGAlgorithms.computeOrientation=function(p1,p2,q){return jsts.algorithm.CGAlgorithms.orientationIndex(p1,p2,q);};jsts.algorithm.CGAlgorithms.distancePointLine=function(p,A,B){if(!(A instanceof jsts.geom.Coordinate)){jsts.algorithm.CGAlgorithms.distancePointLine2.apply(this,arguments);} -if(A.x===B.x&&A.y===B.y){return p.distance(A);} -var r,s;r=((p.x-A.x)*(B.x-A.x)+(p.y-A.y)*(B.y-A.y))/((B.x-A.x)*(B.x-A.x)+(B.y-A.y)*(B.y-A.y));if(r<=0.0){return p.distance(A);} -if(r>=1.0){return p.distance(B);} -s=((A.y-p.y)*(B.x-A.x)-(A.x-p.x)*(B.y-A.y))/((B.x-A.x)*(B.x-A.x)+(B.y-A.y)*(B.y-A.y));return Math.abs(s)*Math.sqrt(((B.x-A.x)*(B.x-A.x)+(B.y-A.y)*(B.y-A.y)));};jsts.algorithm.CGAlgorithms.distancePointLinePerpendicular=function(p,A,B){var s=((A.y-p.y)*(B.x-A.x)-(A.x-p.x)*(B.y-A.y))/((B.x-A.x)*(B.x-A.x)+(B.y-A.y)*(B.y-A.y));return Math.abs(s)*Math.sqrt(((B.x-A.x)*(B.x-A.x)+(B.y-A.y)*(B.y-A.y)));};jsts.algorithm.CGAlgorithms.distancePointLine2=function(p,line){var minDistance,i,il,dist;if(line.length===0){throw new jsts.error.IllegalArgumentError('Line array must contain at least one vertex');} -minDistance=p.distance(line[0]);for(i=0,il=line.length-1;i1)||(s<0)||(s>1)){return Math.min(jsts.algorithm.CGAlgorithms.distancePointLine(A,C,D),Math.min(jsts.algorithm.CGAlgorithms.distancePointLine(B,C,D),Math.min(jsts.algorithm.CGAlgorithms.distancePointLine(C,A,B),jsts.algorithm.CGAlgorithms.distancePointLine(D,A,B))));} -return 0.0;};jsts.algorithm.CGAlgorithms.signedArea=function(ring){if(ring.length<3){return 0.0;} -var sum,i,il,bx,by,cx,cy;sum=0.0;for(i=0,il=ring.length-1;i0;};jsts.algorithm.Angle.isObtuse=function(p0,p1,p2){var dx0,dy0,dx1,dy1,dotprod;dx0=p0.x-p1.x;dy0=p0.y-p1.y;dx1=p2.x-p1.x;dy1=p2.y-p1.y;dotprod=dx0*dx1+dy0*dy1;return dotprod<0;};jsts.algorithm.Angle.angleBetween=function(tip1,tail,tip2){var a1,a2;a1=jsts.algorithm.Angle.angle(tail,tip1);a2=jsts.algorithm.Angle.angle(tail,tip2);return jsts.algorithm.Angle.diff(a1,a2);};jsts.algorithm.Angle.angleBetweenOriented=function(tip1,tail,tip2){var a1,a2,angDel;a1=jsts.algorithm.Angle.angle(tail,tip1);a2=jsts.algorithm.Angle.angle(tail,tip2);angDel=a2-a1;if(angDel<=-Math.PI){return angDel+jsts.algorithm.Angle.PI_TIMES_2;} -if(angDel>Math.PI){return angDel-jsts.algorithm.Angle.PI_TIMES_2;} -return angDel;};jsts.algorithm.Angle.interiorAngle=function(p0,p1,p2){var anglePrev,angleNext;anglePrev=jsts.algorithm.Angle.angle(p1,p0);angleNext=jsts.algorithm.Angle.angle(p1,p2);return Math.abs(angleNext-anglePrev);};jsts.algorithm.Angle.getTurn=function(ang1,ang2){var crossproduct=Math.sin(ang2-ang1);if(crossproduct>0){return jsts.algorithm.Angle.COUNTERCLOCKWISE;} -if(crossproduct<0){return jsts.algorithm.Angle.CLOCKWISE;} -return jsts.algorithm.Angle.NONE;};jsts.algorithm.Angle.normalize=function(angle){while(angle>Math.PI){angle-=jsts.algorithm.Angle.PI_TIMES_2;} -while(angle<=-Math.PI){angle+=jsts.algorithm.Angle.PI_TIMES_2;} -return angle;};jsts.algorithm.Angle.normalizePositive=function(angle){if(angle<0.0){while(angle<0.0){angle+=jsts.algorithm.Angle.PI_TIMES_2;} -if(angle>=jsts.algorithm.Angle.PI_TIMES_2){angle=0.0;}} -else{while(angle>=jsts.algorithm.Angle.PI_TIMES_2){angle-=jsts.algorithm.Angle.PI_TIMES_2;} -if(angle<0.0){angle=0.0;}} -return angle;};jsts.algorithm.Angle.diff=function(ang1,ang2){var delAngle;if(ang1Math.PI){delAngle=(2*Math.PI)-delAngle;} -return delAngle;};jsts.geom.GeometryComponentFilter=function(){};jsts.geom.GeometryComponentFilter.prototype.filter=function(geom){throw new jsts.error.AbstractMethodInvocationError();};jsts.geom.util.LinearComponentExtracter=function(lines,isForcedToLineString){this.lines=lines;this.isForcedToLineString=isForcedToLineString;};jsts.geom.util.LinearComponentExtracter.prototype=new jsts.geom.GeometryComponentFilter();jsts.geom.util.LinearComponentExtracter.prototype.lines=null;jsts.geom.util.LinearComponentExtracter.prototype.isForcedToLineString=false;jsts.geom.util.LinearComponentExtracter.getLines=function(geoms,lines){if(arguments.length==1){return jsts.geom.util.LinearComponentExtracter.getLines5.apply(this,arguments);} -else if(arguments.length==2&&typeof lines==='boolean'){return jsts.geom.util.LinearComponentExtracter.getLines6.apply(this,arguments);} -else if(arguments.length==2&&geoms instanceof jsts.geom.Geometry){return jsts.geom.util.LinearComponentExtracter.getLines3.apply(this,arguments);} -else if(arguments.length==3&&geoms instanceof jsts.geom.Geometry){return jsts.geom.util.LinearComponentExtracter.getLines4.apply(this,arguments);} -else if(arguments.length==3){return jsts.geom.util.LinearComponentExtracter.getLines2.apply(this,arguments);} -for(var i=0;idistance){return false;} -return DistanceOp.isWithinDistance(this,geom,distance);};jsts.geom.Geometry.prototype.isRectangle=function(){return false;};jsts.geom.Geometry.prototype.getArea=function(){return 0.0;};jsts.geom.Geometry.prototype.getLength=function(){return 0.0;};jsts.geom.Geometry.prototype.getCentroid=function(){if(this.isEmpty()){return null;} -var cent;var centPt=null;var dim=this.getDimension();if(dim===0){cent=new jsts.algorithm.CentroidPoint();cent.add(this);centPt=cent.getCentroid();}else if(dim===1){cent=new jsts.algorithm.CentroidLine();cent.add(this);centPt=cent.getCentroid();}else{cent=new jsts.algorithm.CentroidArea();cent.add(this);centPt=cent.getCentroid();} -return this.createPointFromInternalCoord(centPt,this);};jsts.geom.Geometry.prototype.getInteriorPoint=function(){var intPt;var interiorPt=null;var dim=this.getDimension();if(dim===0){intPt=new jsts.algorithm.InteriorPointPoint(this);interiorPt=intPt.getInteriorPoint();}else if(dim===1){intPt=new jsts.algorithm.InteriorPointLine(this);interiorPt=intPt.getInteriorPoint();}else{intPt=new jsts.algorithm.InteriorPointArea(this);interiorPt=intPt.getInteriorPoint();} -return this.createPointFromInternalCoord(interiorPt,this);};jsts.geom.Geometry.prototype.getDimension=function(){throw new jsts.error.AbstractMethodInvocationError();};jsts.geom.Geometry.prototype.getBoundary=function(){throw new jsts.error.AbstractMethodInvocationError();};jsts.geom.Geometry.prototype.getBoundaryDimension=function(){throw new jsts.error.AbstractMethodInvocationError();};jsts.geom.Geometry.prototype.getEnvelope=function(){return this.getFactory().toGeometry(this.getEnvelopeInternal());};jsts.geom.Geometry.prototype.getEnvelopeInternal=function(){if(this.envelope===null){this.envelope=this.computeEnvelopeInternal();} -return this.envelope;};jsts.geom.Geometry.prototype.disjoint=function(g){return!this.intersects(g);};jsts.geom.Geometry.prototype.touches=function(g){if(!this.getEnvelopeInternal().intersects(g.getEnvelopeInternal())){return false;} -return this.relate(g).isTouches(this.getDimension(),g.getDimension());};jsts.geom.Geometry.prototype.intersects=function(g){if(!this.getEnvelopeInternal().intersects(g.getEnvelopeInternal())){return false;} -if(this.isRectangle()){return jsts.operation.predicate.RectangleIntersects.intersects(this,g);} -if(g.isRectangle()){return jsts.operation.predicate.RectangleIntersects.intersects(g,this);} -return this.relate(g).isIntersects();};jsts.geom.Geometry.prototype.crosses=function(g){if(!this.getEnvelopeInternal().intersects(g.getEnvelopeInternal())){return false;} -return this.relate(g).isCrosses(this.getDimension(),g.getDimension());};jsts.geom.Geometry.prototype.within=function(g){return g.contains(this);};jsts.geom.Geometry.prototype.contains=function(g){if(!this.getEnvelopeInternal().contains(g.getEnvelopeInternal())){return false;} -if(this.isRectangle()){return jsts.operation.predicate.RectangleContains.contains(this,g);} -return this.relate(g).isContains();};jsts.geom.Geometry.prototype.overlaps=function(g){if(!this.getEnvelopeInternal().intersects(g.getEnvelopeInternal())){return false;} -return this.relate(g).isOverlaps(this.getDimension(),g.getDimension());};jsts.geom.Geometry.prototype.covers=function(g){if(!this.getEnvelopeInternal().covers(g.getEnvelopeInternal())){return false;} -if(this.isRectangle()){return true;} -return this.relate(g).isCovers();};jsts.geom.Geometry.prototype.coveredBy=function(g){return g.covers(this);};jsts.geom.Geometry.prototype.relate=function(g,intersectionPattern){if(arguments.length===1){return this.relate2.apply(this,arguments);} -return this.relate2(g).matches(intersectionPattern);};jsts.geom.Geometry.prototype.relate2=function(g){this.checkNotGeometryCollection(this);this.checkNotGeometryCollection(g);return jsts.operation.relate.RelateOp.relate(this,g);};jsts.geom.Geometry.prototype.equalsTopo=function(g){if(!this.getEnvelopeInternal().equals(g.getEnvelopeInternal())){return false;} -return this.relate(g).isEquals(this.getDimension(),g.getDimension());};jsts.geom.Geometry.prototype.equals=function(o){if(o instanceof jsts.geom.Geometry||o instanceof jsts.geom.LinearRing||o instanceof jsts.geom.Polygon||o instanceof jsts.geom.GeometryCollection||o instanceof jsts.geom.MultiPoint||o instanceof jsts.geom.MultiLineString||o instanceof jsts.geom.MultiPolygon){return this.equalsExact(o);} -return false;};jsts.geom.Geometry.prototype.buffer=function(distance,quadrantSegments,endCapStyle){var params=new jsts.operation.buffer.BufferParameters(quadrantSegments,endCapStyle) -return jsts.operation.buffer.BufferOp.bufferOp2(this,distance,params);};jsts.geom.Geometry.prototype.convexHull=function(){return new jsts.algorithm.ConvexHull(this).getConvexHull();};jsts.geom.Geometry.prototype.intersection=function(other){if(this.isEmpty()){return this.getFactory().createGeometryCollection(null);} -if(other.isEmpty()){return this.getFactory().createGeometryCollection(null);} -if(this.isGeometryCollection(this)){var g2=other;} -this.checkNotGeometryCollection(this);this.checkNotGeometryCollection(other);return jsts.operation.overlay.snap.SnapIfNeededOverlayOp.overlayOp(this,other,jsts.operation.overlay.OverlayOp.INTERSECTION);};jsts.geom.Geometry.prototype.union=function(other){if(arguments.length===0){return jsts.operation.union.UnaryUnionOp.union(this);} -if(this.isEmpty()){return other.clone();} -if(other.isEmpty()){return this.clone();} -this.checkNotGeometryCollection(this);this.checkNotGeometryCollection(other);return jsts.operation.overlay.snap.SnapIfNeededOverlayOp.overlayOp(this,other,jsts.operation.overlay.OverlayOp.UNION);};jsts.geom.Geometry.prototype.difference=function(other){if(this.isEmpty()){return this.getFactory().createGeometryCollection(null);} -if(other.isEmpty()){return this.clone();} -this.checkNotGeometryCollection(this);this.checkNotGeometryCollection(other);return jsts.operation.overlay.snap.SnapIfNeededOverlayOp.overlayOp(this,other,jsts.operation.overlay.OverlayOp.DIFFERENCE);};jsts.geom.Geometry.prototype.symDifference=function(other){if(this.isEmpty()){return other.clone();} -if(other.isEmpty()){return this.clone();} -this.checkNotGeometryCollection(this);this.checkNotGeometryCollection(other);return jsts.operation.overlay.snap.SnapIfNeededOverlayOp.overlayOp(this,other,jsts.operation.overlay.OverlayOp.SYMDIFFERENCE);};jsts.geom.Geometry.prototype.equalsExact=function(other,tolerance){throw new jsts.error.AbstractMethodInvocationError();};jsts.geom.Geometry.prototype.equalsNorm=function(g){if(g===null||g===undefined) -return false;return this.norm().equalsExact(g.norm());};jsts.geom.Geometry.prototype.apply=function(filter){throw new jsts.error.AbstractMethodInvocationError();};jsts.geom.Geometry.prototype.clone=function(){throw new jsts.error.AbstractMethodInvocationError();};jsts.geom.Geometry.prototype.normalize=function(){throw new jsts.error.AbstractMethodInvocationError();};jsts.geom.Geometry.prototype.norm=function(){var copy=this.clone();copy.normalize();return copy;};jsts.geom.Geometry.prototype.compareTo=function(o){var other=o;if(this.getClassSortIndex()!==other.getClassSortIndex()){return this.getClassSortIndex()-other.getClassSortIndex();} -if(this.isEmpty()&&other.isEmpty()){return 0;} -if(this.isEmpty()){return-1;} -if(other.isEmpty()){return 1;} -return this.compareToSameClass(o);};jsts.geom.Geometry.prototype.isEquivalentClass=function(other){if(this instanceof jsts.geom.Point&&other instanceof jsts.geom.Point){return true;}else if(this instanceof jsts.geom.LineString&&(other instanceof jsts.geom.LineString|other instanceof jsts.geom.LinearRing)){return true;}else if(this instanceof jsts.geom.LinearRing&&(other instanceof jsts.geom.LineString|other instanceof jsts.geom.LinearRing)){return true;}else if(this instanceof jsts.geom.Polygon&&(other instanceof jsts.geom.Polygon)){return true;}else if(this instanceof jsts.geom.MultiPoint&&(other instanceof jsts.geom.MultiPoint)){return true;}else if(this instanceof jsts.geom.MultiLineString&&(other instanceof jsts.geom.MultiLineString)){return true;}else if(this instanceof jsts.geom.MultiPolygon&&(other instanceof jsts.geom.MultiPolygon)){return true;}else if(this instanceof jsts.geom.GeometryCollection&&(other instanceof jsts.geom.GeometryCollection)){return true;} -return false;};jsts.geom.Geometry.prototype.checkNotGeometryCollection=function(g){if(g.isGeometryCollectionBase()){throw new jsts.error.IllegalArgumentError('This method does not support GeometryCollection');}};jsts.geom.Geometry.prototype.isGeometryCollection=function(){return(this instanceof jsts.geom.GeometryCollection);};jsts.geom.Geometry.prototype.isGeometryCollectionBase=function(){return(this.CLASS_NAME==='jsts.geom.GeometryCollection');};jsts.geom.Geometry.prototype.computeEnvelopeInternal=function(){throw new jsts.error.AbstractMethodInvocationError();};jsts.geom.Geometry.prototype.compareToSameClass=function(o){throw new jsts.error.AbstractMethodInvocationError();};jsts.geom.Geometry.prototype.compare=function(a,b){var i=a.iterator();var j=b.iterator();while(i.hasNext()&&j.hasNext()){var aElement=i.next();var bElement=j.next();var comparison=aElement.compareTo(bElement);if(comparison!==0){return comparison;}} -if(i.hasNext()){return 1;} -if(j.hasNext()){return-1;} -return 0;};jsts.geom.Geometry.prototype.equal=function(a,b,tolerance){if(tolerance===undefined||tolerance===null||tolerance===0){return a.equals(b);} -return a.distance(b)<=tolerance;};jsts.geom.Geometry.prototype.getClassSortIndex=function(){var sortedClasses=[jsts.geom.Point,jsts.geom.MultiPoint,jsts.geom.LineString,jsts.geom.LinearRing,jsts.geom.MultiLineString,jsts.geom.Polygon,jsts.geom.MultiPolygon,jsts.geom.GeometryCollection];for(var i=0;iother.x){return 1;} -if(this.yother.y){return 1;} -return 0;};jsts.geom.Coordinate.prototype.toString=function(){return'('+this.x+', '+this.y+')';};})();jsts.geom.Envelope=function(){jsts.geom.Envelope.prototype.init.apply(this,arguments);};jsts.geom.Envelope.prototype.minx=null;jsts.geom.Envelope.prototype.maxx=null;jsts.geom.Envelope.prototype.miny=null;jsts.geom.Envelope.prototype.maxy=null;jsts.geom.Envelope.prototype.init=function(){if(typeof arguments[0]==='number'&&arguments.length===4){this.initFromValues(arguments[0],arguments[1],arguments[2],arguments[3]);}else if(arguments[0]instanceof jsts.geom.Coordinate&&arguments.length===1){this.initFromCoordinate(arguments[0]);}else if(arguments[0]instanceof jsts.geom.Coordinate&&arguments.length===2){this.initFromCoordinates(arguments[0],arguments[1]);}else if(arguments[0]instanceof jsts.geom.Envelope&&arguments.length===1){this.initFromEnvelope(arguments[0]);}else{this.setToNull();}};jsts.geom.Envelope.prototype.initFromValues=function(x1,x2,y1,y2){if(x1this.maxx){this.maxx=x;} -if(ythis.maxy){this.maxy=y;}}};jsts.geom.Envelope.prototype.expandToIncludeEnvelope=function(other){if(other.isNull()){return;} -if(this.isNull()){this.minx=other.getMinX();this.maxx=other.getMaxX();this.miny=other.getMinY();this.maxy=other.getMaxY();}else{if(other.minxthis.maxx){this.maxx=other.maxx;} -if(other.minythis.maxy){this.maxy=other.maxy;}}};jsts.geom.Envelope.prototype.expandBy=function(){if(arguments.length===1){this.expandByDistance(arguments[0]);}else{this.expandByDistances(arguments[0],arguments[1]);}};jsts.geom.Envelope.prototype.expandByDistance=function(distance){this.expandByDistances(distance,distance);};jsts.geom.Envelope.prototype.expandByDistances=function(deltaX,deltaY){if(this.isNull()){return;} -this.minx-=deltaX;this.maxx+=deltaX;this.miny-=deltaY;this.maxy+=deltaY;if(this.minx>this.maxx||this.miny>this.maxy){this.setToNull();}};jsts.geom.Envelope.prototype.translate=function(transX,transY){if(this.isNull()){return;} -this.init(this.minx+transX,this.maxx+transX,this.miny+transY,this.maxy+transY);};jsts.geom.Envelope.prototype.centre=function(){if(this.isNull()){return null;} -return new jsts.geom.Coordinate((this.minx+this.maxx)/2.0,(this.miny+this.maxy)/2.0);};jsts.geom.Envelope.prototype.intersection=function(env){if(this.isNull()||env.isNull()||!this.intersects(env)){return new jsts.geom.Envelope();} -var intMinX=this.minx>env.minx?this.minx:env.minx;var intMinY=this.miny>env.miny?this.miny:env.miny;var intMaxX=this.maxxthis.maxx||other.maxxthis.maxy||other.maxythis.maxx||xthis.maxy||y=this.minx&&x<=this.maxx&&y>=this.miny&&y<=this.maxy;};jsts.geom.Envelope.prototype.coversCoordinate=function(p){return this.coversValues(p.x,p.y);};jsts.geom.Envelope.prototype.coversEnvelope=function(other){if(this.isNull()||other.isNull()){return false;} -return other.minx>=this.minx&&other.maxx<=this.maxx&&other.miny>=this.miny&&other.maxy<=this.maxy;};jsts.geom.Envelope.prototype.distance=function(env){if(this.intersects(env)){return 0;} -var dx=0.0;if(this.maxxenv.maxx){dx=this.minx-env.maxx;} -var dy=0.0;if(this.maxyenv.maxy){dy=this.miny-env.maxy;} -if(dx===0.0){return dy;} -if(dy===0.0){return dx;} -return Math.sqrt(dx*dx+dy*dy);};jsts.geom.Envelope.prototype.equals=function(other){if(this.isNull()){return other.isNull();} -return this.maxx===other.maxx&&this.maxy===other.maxy&&this.minx===other.minx&&this.miny===other.miny;};jsts.geom.Envelope.prototype.toString=function(){return'Env['+this.minx+' : '+this.maxx+', '+this.miny+' : '+ -this.maxy+']';};jsts.geom.Envelope.intersects=function(p1,p2,q){if(arguments.length===4){return jsts.geom.Envelope.intersectsEnvelope(arguments[0],arguments[1],arguments[2],arguments[3]);} -var xc1=p1.xp2.x?p1.x:p2.x;var yc1=p1.yp2.y?p1.y:p2.y;if(((q.x>=xc1)&&(q.x<=xc2))&&((q.y>=yc1)&&(q.y<=yc2))){return true;} -return false;};jsts.geom.Envelope.intersectsEnvelope=function(p1,p2,q1,q2){var minq=Math.min(q1.x,q2.x);var maxq=Math.max(q1.x,q2.x);var minp=Math.min(p1.x,p2.x);var maxp=Math.max(p1.x,p2.x);if(minp>maxq){return false;} -if(maxpmaxq){return false;} -if(maxp1)return this.combine2.apply(this,arguments);var combiner=new jsts.geom.util.GeometryCombiner(geoms);return combiner.combine();};jsts.geom.util.GeometryCombiner.combine2=function(){var arrayList=new javascript.util.ArrayList();Array.prototype.slice.call(arguments).forEach(function(a){arrayList.add(a);});var combiner=new jsts.geom.util.GeometryCombiner(arrayList);return combiner.combine();};jsts.geom.util.GeometryCombiner.prototype.geomFactory=null;jsts.geom.util.GeometryCombiner.prototype.skipEmpty=false;jsts.geom.util.GeometryCombiner.prototype.inputGeoms;jsts.geom.util.GeometryCombiner.extractFactory=function(geoms){if(geoms.isEmpty())return null;return geoms.iterator().next().getFactory();};jsts.geom.util.GeometryCombiner.prototype.combine=function(){var elems=new javascript.util.ArrayList(),i;for(i=this.inputGeoms.iterator();i.hasNext();){var g=i.next();this.extractElements(g,elems);} -if(elems.size()===0){if(this.geomFactory!==null){return this.geomFactory.createGeometryCollection(null);} -return null;} -return this.geomFactory.buildGeometry(elems);};jsts.geom.util.GeometryCombiner.prototype.extractElements=function(geom,elems){if(geom===null){return;} -for(var i=0;imaxDistance){maxDistance=distance;maxIndex=k;}} -if(maxDistance<=this.distanceTolerance){for(var l=i+1;lsegmentIndex) -return 1;if(this.distdist) -return 1;return 0;};jsts.geomgraph.EdgeIntersection.prototype.isEndPoint=function(maxSegmentIndex){if(this.segmentIndex===0&&this.dist===0.0) -return true;if(this.segmentIndex===maxSegmentIndex) -return true;return false;};jsts.geomgraph.EdgeIntersection.prototype.toString=function(){return''+this.segmentIndex+this.dist;};(function(){var EdgeIntersection=jsts.geomgraph.EdgeIntersection;var TreeMap=javascript.util.TreeMap;jsts.geomgraph.EdgeIntersectionList=function(edge){this.nodeMap=new TreeMap();this.edge=edge;};jsts.geomgraph.EdgeIntersectionList.prototype.nodeMap=null;jsts.geomgraph.EdgeIntersectionList.prototype.edge=null;jsts.geomgraph.EdgeIntersectionList.prototype.isIntersection=function(pt){for(var it=this.iterator();it.hasNext();){var ei=it.next();if(ei.coord.equals(pt)){return true;}} -return false;};jsts.geomgraph.EdgeIntersectionList.prototype.add=function(intPt,segmentIndex,dist){var eiNew=new EdgeIntersection(intPt,segmentIndex,dist);var ei=this.nodeMap.get(eiNew);if(ei!==null){return ei;} -this.nodeMap.put(eiNew,eiNew);return eiNew;};jsts.geomgraph.EdgeIntersectionList.prototype.iterator=function(){return this.nodeMap.values().iterator();};jsts.geomgraph.EdgeIntersectionList.prototype.addEndpoints=function(){var maxSegIndex=this.edge.pts.length-1;this.add(this.edge.pts[0],0,0.0);this.add(this.edge.pts[maxSegIndex],maxSegIndex,0.0);};jsts.geomgraph.EdgeIntersectionList.prototype.addSplitEdges=function(edgeList) -{this.addEndpoints();var it=this.iterator();var eiPrev=it.next();while(it.hasNext()){var ei=it.next();var newEdge=this.createSplitEdge(eiPrev,ei);edgeList.add(newEdge);eiPrev=ei;}};jsts.geomgraph.EdgeIntersectionList.prototype.createSplitEdge=function(ei0,ei1){var npts=ei1.segmentIndex-ei0.segmentIndex+2;var lastSegStartPt=this.edge.pts[ei1.segmentIndex];var useIntPt1=ei1.dist>0.0||!ei1.coord.equals2D(lastSegStartPt);if(!useIntPt1){npts--;} -var pts=[];var ipt=0;pts[ipt++]=new jsts.geom.Coordinate(ei0.coord);for(var i=ei0.segmentIndex+1;i<=ei1.segmentIndex;i++){pts[ipt++]=this.edge.pts[i];} -if(useIntPt1)pts[ipt]=ei1.coord;return new jsts.geomgraph.Edge(pts,new jsts.geomgraph.Label(this.edge.label));};})();(function(){var AssertionFailedException=function(message){this.message=message;};AssertionFailedException.prototype=new Error();AssertionFailedException.prototype.name='AssertionFailedException';jsts.util.AssertionFailedException=AssertionFailedException;})();(function(){var AssertionFailedException=jsts.util.AssertionFailedException;jsts.util.Assert=function(){};jsts.util.Assert.isTrue=function(assertion,message){if(!assertion){if(message===null){throw new AssertionFailedException();}else{throw new AssertionFailedException(message);}}};jsts.util.Assert.equals=function(expectedValue,actualValue,message){if(!actualValue.equals(expectedValue)){throw new AssertionFailedException('Expected '+expectedValue+' but encountered '+actualValue+ -(message!=null?': '+message:''));}};jsts.util.Assert.shouldNeverReachHere=function(message){throw new AssertionFailedException('Should never reach here'+ -(message!=null?': '+message:''));};})();(function(){var Location=jsts.geom.Location;var Assert=jsts.util.Assert;var ArrayList=javascript.util.ArrayList;jsts.operation.relate.RelateComputer=function(arg){this.li=new jsts.algorithm.RobustLineIntersector();this.ptLocator=new jsts.algorithm.PointLocator();this.nodes=new jsts.geomgraph.NodeMap(new jsts.operation.relate.RelateNodeFactory());this.isolatedEdges=new ArrayList();this.arg=arg;};jsts.operation.relate.RelateComputer.prototype.li=null;jsts.operation.relate.RelateComputer.prototype.ptLocator=null;jsts.operation.relate.RelateComputer.prototype.arg=null;jsts.operation.relate.RelateComputer.prototype.nodes=null;jsts.operation.relate.RelateComputer.prototype.im=null;jsts.operation.relate.RelateComputer.prototype.isolatedEdges=null;jsts.operation.relate.RelateComputer.prototype.invalidPoint=null;jsts.operation.relate.RelateComputer.prototype.computeIM=function(){var im=new jsts.geom.IntersectionMatrix();im.set(Location.EXTERIOR,Location.EXTERIOR,2);if(!this.arg[0].getGeometry().getEnvelopeInternal().intersects(this.arg[1].getGeometry().getEnvelopeInternal())){this.computeDisjointIM(im);return im;} -this.arg[0].computeSelfNodes(this.li,false);this.arg[1].computeSelfNodes(this.li,false);var intersector=this.arg[0].computeEdgeIntersections(this.arg[1],this.li,false);this.computeIntersectionNodes(0);this.computeIntersectionNodes(1);this.copyNodesAndLabels(0);this.copyNodesAndLabels(1);this.labelIsolatedNodes();this.computeProperIntersectionIM(intersector,im);var eeBuilder=new jsts.operation.relate.EdgeEndBuilder();var ee0=eeBuilder.computeEdgeEnds(this.arg[0].getEdgeIterator());this.insertEdgeEnds(ee0);var ee1=eeBuilder.computeEdgeEnds(this.arg[1].getEdgeIterator());this.insertEdgeEnds(ee1);this.labelNodeEdges();this.labelIsolatedEdges(0,1);this.labelIsolatedEdges(1,0);this.updateIM(im);return im;};jsts.operation.relate.RelateComputer.prototype.insertEdgeEnds=function(ee){for(var i=ee.iterator();i.hasNext();){var e=i.next();this.nodes.add(e);}};jsts.operation.relate.RelateComputer.prototype.computeProperIntersectionIM=function(intersector,im){var dimA=this.arg[0].getGeometry().getDimension();var dimB=this.arg[1].getGeometry().getDimension();var hasProper=intersector.hasProperIntersection();var hasProperInterior=intersector.hasProperInteriorIntersection();if(dimA===2&&dimB===2){if(hasProper) -im.setAtLeast('212101212');} -else if(dimA===2&&dimB===1){if(hasProper) -im.setAtLeast('FFF0FFFF2');if(hasProperInterior) -im.setAtLeast('1FFFFF1FF');}else if(dimA===1&&dimB===2){if(hasProper) -im.setAtLeast('F0FFFFFF2');if(hasProperInterior) -im.setAtLeast('1F1FFFFFF');} -else if(dimA===1&&dimB===1){if(hasProperInterior) -im.setAtLeast('0FFFFFFFF');}};jsts.operation.relate.RelateComputer.prototype.copyNodesAndLabels=function(argIndex){for(var i=this.arg[argIndex].getNodeIterator();i.hasNext();){var graphNode=i.next();var newNode=this.nodes.addNode(graphNode.getCoordinate());newNode.setLabel(argIndex,graphNode.getLabel().getLocation(argIndex));}};jsts.operation.relate.RelateComputer.prototype.computeIntersectionNodes=function(argIndex){for(var i=this.arg[argIndex].getEdgeIterator();i.hasNext();){var e=i.next();var eLoc=e.getLabel().getLocation(argIndex);for(var eiIt=e.getEdgeIntersectionList().iterator();eiIt.hasNext();){var ei=eiIt.next();var n=this.nodes.addNode(ei.coord);if(eLoc===Location.BOUNDARY) -n.setLabelBoundary(argIndex);else{if(n.getLabel().isNull(argIndex)) -n.setLabel(argIndex,Location.INTERIOR);}}}};jsts.operation.relate.RelateComputer.prototype.labelIntersectionNodes=function(argIndex){for(var i=this.arg[argIndex].getEdgeIterator();i.hasNext();){var e=i.next();var eLoc=e.getLabel().getLocation(argIndex);for(var eiIt=e.getEdgeIntersectionList().iterator();eiIt.hasNext();){var ei=eiIt.next();var n=this.nodes.find(ei.coord);if(n.getLabel().isNull(argIndex)){if(eLoc===Location.BOUNDARY) -n.setLabelBoundary(argIndex);else -n.setLabel(argIndex,Location.INTERIOR);}}}};jsts.operation.relate.RelateComputer.prototype.computeDisjointIM=function(im){var ga=this.arg[0].getGeometry();if(!ga.isEmpty()){im.set(Location.INTERIOR,Location.EXTERIOR,ga.getDimension());im.set(Location.BOUNDARY,Location.EXTERIOR,ga.getBoundaryDimension());} -var gb=this.arg[1].getGeometry();if(!gb.isEmpty()){im.set(Location.EXTERIOR,Location.INTERIOR,gb.getDimension());im.set(Location.EXTERIOR,Location.BOUNDARY,gb.getBoundaryDimension());}};jsts.operation.relate.RelateComputer.prototype.labelNodeEdges=function(){for(var ni=this.nodes.iterator();ni.hasNext();){var node=ni.next();node.getEdges().computeLabelling(this.arg);}};jsts.operation.relate.RelateComputer.prototype.updateIM=function(im){for(var ei=this.isolatedEdges.iterator();ei.hasNext();){var e=ei.next();e.updateIM(im);} -for(var ni=this.nodes.iterator();ni.hasNext();){var node=ni.next();node.updateIM(im);node.updateIMFromEdges(im);}};jsts.operation.relate.RelateComputer.prototype.labelIsolatedEdges=function(thisIndex,targetIndex){for(var ei=this.arg[thisIndex].getEdgeIterator();ei.hasNext();){var e=ei.next();if(e.isIsolated()){this.labelIsolatedEdge(e,targetIndex,this.arg[targetIndex].getGeometry());this.isolatedEdges.add(e);}}};jsts.operation.relate.RelateComputer.prototype.labelIsolatedEdge=function(e,targetIndex,target){if(target.getDimension()>0){var loc=this.ptLocator.locate(e.getCoordinate(),target);e.getLabel().setAllLocations(targetIndex,loc);}else{e.getLabel().setAllLocations(targetIndex,Location.EXTERIOR);}};jsts.operation.relate.RelateComputer.prototype.labelIsolatedNodes=function(){for(var ni=this.nodes.iterator();ni.hasNext();){var n=ni.next();var label=n.getLabel();Assert.isTrue(label.getGeometryCount()>0,'node with empty label found');if(n.isIsolated()){if(label.isNull(0)) -this.labelIsolatedNode(n,0);else -this.labelIsolatedNode(n,1);}}};jsts.operation.relate.RelateComputer.prototype.labelIsolatedNode=function(n,targetIndex){var loc=this.ptLocator.locate(n.getCoordinate(),this.arg[targetIndex].getGeometry());n.getLabel().setAllLocations(targetIndex,loc);};})();(function(){var Assert=jsts.util.Assert;jsts.geomgraph.GraphComponent=function(label){this.label=label;};jsts.geomgraph.GraphComponent.prototype.label=null;jsts.geomgraph.GraphComponent.prototype._isInResult=false;jsts.geomgraph.GraphComponent.prototype._isCovered=false;jsts.geomgraph.GraphComponent.prototype._isCoveredSet=false;jsts.geomgraph.GraphComponent.prototype._isVisited=false;jsts.geomgraph.GraphComponent.prototype.getLabel=function(){return this.label;};jsts.geomgraph.GraphComponent.prototype.setLabel=function(label){if(arguments.length===2){this.setLabel2.apply(this,arguments);return;} -this.label=label;};jsts.geomgraph.GraphComponent.prototype.setInResult=function(isInResult){this._isInResult=isInResult;};jsts.geomgraph.GraphComponent.prototype.isInResult=function(){return this._isInResult;};jsts.geomgraph.GraphComponent.prototype.setCovered=function(isCovered){this._isCovered=isCovered;this._isCoveredSet=true;};jsts.geomgraph.GraphComponent.prototype.isCovered=function(){return this._isCovered;};jsts.geomgraph.GraphComponent.prototype.isCoveredSet=function(){return this._isCoveredSet;};jsts.geomgraph.GraphComponent.prototype.isVisited=function(){return this._isVisited;};jsts.geomgraph.GraphComponent.prototype.setVisited=function(isVisited){this._isVisited=isVisited;};jsts.geomgraph.GraphComponent.prototype.getCoordinate=function(){throw new jsts.error.AbstractMethodInvocationError();};jsts.geomgraph.GraphComponent.prototype.computeIM=function(im){throw new jsts.error.AbstractMethodInvocationError();};jsts.geomgraph.GraphComponent.prototype.isIsolated=function(){throw new jsts.error.AbstractMethodInvocationError();};jsts.geomgraph.GraphComponent.prototype.updateIM=function(im){Assert.isTrue(this.label.getGeometryCount()>=2,'found partial label');this.computeIM(im);};})();jsts.geomgraph.Node=function(coord,edges){this.coord=coord;this.edges=edges;this.label=new jsts.geomgraph.Label(0,jsts.geom.Location.NONE);};jsts.geomgraph.Node.prototype=new jsts.geomgraph.GraphComponent();jsts.geomgraph.Node.prototype.coord=null;jsts.geomgraph.Node.prototype.edges=null;jsts.geomgraph.Node.prototype.isIsolated=function(){return(this.label.getGeometryCount()==1);};jsts.geomgraph.Node.prototype.setLabel2=function(argIndex,onLocation){if(this.label===null){this.label=new jsts.geomgraph.Label(argIndex,onLocation);}else -this.label.setLocation(argIndex,onLocation);};jsts.geomgraph.Node.prototype.setLabelBoundary=function(argIndex){var loc=jsts.geom.Location.NONE;if(this.label!==null) -loc=this.label.getLocation(argIndex);var newLoc;switch(loc){case jsts.geom.Location.BOUNDARY:newLoc=jsts.geom.Location.INTERIOR;break;case jsts.geom.Location.INTERIOR:newLoc=jsts.geom.Location.BOUNDARY;break;default:newLoc=jsts.geom.Location.BOUNDARY;break;} -this.label.setLocation(argIndex,newLoc);};jsts.geomgraph.Node.prototype.add=function(e){this.edges.insert(e);e.setNode(this);};jsts.geomgraph.Node.prototype.getCoordinate=function(){return this.coord;};jsts.geomgraph.Node.prototype.getEdges=function(){return this.edges;};jsts.geomgraph.Node.prototype.isIncidentEdgeInResult=function(){for(var it=this.getEdges().getEdges().iterator();it.hasNext();){var de=it.next();if(de.getEdge().isInResult()) -return true;} -return false;};jsts.geom.Point=function(coordinate,factory){this.factory=factory;if(coordinate===undefined) -return;this.coordinate=coordinate;};jsts.geom.Point.prototype=new jsts.geom.Geometry();jsts.geom.Point.constructor=jsts.geom.Point;jsts.geom.Point.CLASS_NAME='jsts.geom.Point';jsts.geom.Point.prototype.coordinate=null;jsts.geom.Point.prototype.getX=function(){return this.coordinate.x;};jsts.geom.Point.prototype.getY=function(){return this.coordinate.y;};jsts.geom.Point.prototype.getCoordinate=function(){return this.coordinate;};jsts.geom.Point.prototype.getCoordinates=function(){return this.isEmpty()?[]:[this.coordinate];};jsts.geom.Point.prototype.getCoordinateSequence=function(){return this.isEmpty()?[]:[this.coordinate];};jsts.geom.Point.prototype.isEmpty=function(){return this.coordinate===null;};jsts.geom.Point.prototype.equalsExact=function(other,tolerance){if(!this.isEquivalentClass(other)){return false;} -if(this.isEmpty()&&other.isEmpty()){return true;} -return this.equal(other.getCoordinate(),this.getCoordinate(),tolerance);};jsts.geom.Point.prototype.getNumPoints=function(){return this.isEmpty()?0:1;};jsts.geom.Point.prototype.isSimple=function(){return true;};jsts.geom.Point.prototype.getBoundary=function(){return new jsts.geom.GeometryCollection(null);};jsts.geom.Point.prototype.computeEnvelopeInternal=function(){if(this.isEmpty()){return new jsts.geom.Envelope();} -return new jsts.geom.Envelope(this.coordinate);};jsts.geom.Point.prototype.apply=function(filter){if(filter instanceof jsts.geom.GeometryFilter||filter instanceof jsts.geom.GeometryComponentFilter){filter.filter(this);}else if(filter instanceof jsts.geom.CoordinateFilter){if(this.isEmpty()){return;} -filter.filter(this.getCoordinate());}};jsts.geom.Point.prototype.clone=function(){return new jsts.geom.Point(this.coordinate.clone(),this.factory);};jsts.geom.Point.prototype.getDimension=function(){return 0;};jsts.geom.Point.prototype.getBoundaryDimension=function(){return jsts.geom.Dimension.FALSE;};jsts.geom.Point.prototype.reverse=function(){return this.clone();};jsts.geom.Point.prototype.isValid=function(){if(!jsts.operation.valid.IsValidOp.isValid(this.getCoordinate())){return false;} -return true;};jsts.geom.Point.prototype.normalize=function(){};jsts.geom.Point.prototype.compareToSameClass=function(other){var point=other;return this.getCoordinate().compareTo(point.getCoordinate());};jsts.geom.Point.prototype.getGeometryType=function(){return'Point';};jsts.geom.Point.prototype.hashCode=function(){return'Point_'+this.coordinate.hashCode();};jsts.geom.Point.prototype.CLASS_NAME='jsts.geom.Point';jsts.geom.Dimension=function(){};jsts.geom.Dimension.P=0;jsts.geom.Dimension.L=1;jsts.geom.Dimension.A=2;jsts.geom.Dimension.FALSE=-1;jsts.geom.Dimension.TRUE=-2;jsts.geom.Dimension.DONTCARE=-3;jsts.geom.Dimension.toDimensionSymbol=function(dimensionValue){switch(dimensionValue){case jsts.geom.Dimension.FALSE:return'F';case jsts.geom.Dimension.TRUE:return'T';case jsts.geom.Dimension.DONTCARE:return'*';case jsts.geom.Dimension.P:return'0';case jsts.geom.Dimension.L:return'1';case jsts.geom.Dimension.A:return'2';} -throw new jsts.IllegalArgumentError('Unknown dimension value: '+ -dimensionValue);};jsts.geom.Dimension.toDimensionValue=function(dimensionSymbol){switch(dimensionSymbol.toUpperCase()){case'F':return jsts.geom.Dimension.FALSE;case'T':return jsts.geom.Dimension.TRUE;case'*':return jsts.geom.Dimension.DONTCARE;case'0':return jsts.geom.Dimension.P;case'1':return jsts.geom.Dimension.L;case'2':return jsts.geom.Dimension.A;} -throw new jsts.error.IllegalArgumentError('Unknown dimension symbol: '+ -dimensionSymbol);};(function(){var Dimension=jsts.geom.Dimension;jsts.geom.LineString=function(points,factory){this.factory=factory;this.points=points||[];};jsts.geom.LineString.prototype=new jsts.geom.Geometry();jsts.geom.LineString.constructor=jsts.geom.LineString;jsts.geom.LineString.prototype.points=null;jsts.geom.LineString.prototype.getCoordinates=function(){return this.points;};jsts.geom.LineString.prototype.getCoordinateSequence=function(){return this.points;};jsts.geom.LineString.prototype.getCoordinateN=function(n){return this.points[n];};jsts.geom.LineString.prototype.getCoordinate=function(){if(this.isEmpty()){return null;} -return this.getCoordinateN(0);};jsts.geom.LineString.prototype.getDimension=function(){return 1;};jsts.geom.LineString.prototype.getBoundaryDimension=function(){if(this.isClosed()){return Dimension.FALSE;} -return 0;};jsts.geom.LineString.prototype.isEmpty=function(){return this.points.length===0;};jsts.geom.LineString.prototype.getNumPoints=function(){return this.points.length;};jsts.geom.LineString.prototype.getPointN=function(n){return this.getFactory().createPoint(this.points[n]);};jsts.geom.LineString.prototype.getStartPoint=function(){if(this.isEmpty()){return null;} -return this.getPointN(0);};jsts.geom.LineString.prototype.getEndPoint=function(){if(this.isEmpty()){return null;} -return this.getPointN(this.getNumPoints()-1);};jsts.geom.LineString.prototype.isClosed=function(){if(this.isEmpty()){return false;} -return this.getCoordinateN(0).equals2D(this.getCoordinateN(this.points.length-1));};jsts.geom.LineString.prototype.isRing=function(){return this.isClosed()&&this.isSimple();};jsts.geom.LineString.prototype.getGeometryType=function(){return'LineString';};jsts.geom.LineString.prototype.getLength=function(){return jsts.algorithm.CGAlgorithms.computeLength(this.points);};jsts.geom.LineString.prototype.getBoundary=function(){return(new jsts.operation.BoundaryOp(this)).getBoundary();};jsts.geom.LineString.prototype.computeEnvelopeInternal=function(){if(this.isEmpty()){return new jsts.geom.Envelope();} -var env=new jsts.geom.Envelope();this.points.forEach(function(component){env.expandToInclude(component);});return env;};jsts.geom.LineString.prototype.equalsExact=function(other,tolerance){if(!this.isEquivalentClass(other)){return false;} -if(this.points.length!==other.points.length){return false;} -if(this.isEmpty()&&other.isEmpty()){return true;} -return this.points.reduce(function(equal,point,i){return equal&&jsts.geom.Geometry.prototype.equal(point,other.points[i],tolerance);});};jsts.geom.LineString.prototype.isEquivalentClass=function(other){return other instanceof jsts.geom.LineString;};jsts.geom.LineString.prototype.compareToSameClass=function(o){var line=o;var i=0,il=this.points.length;var j=0,jl=line.points.length;while(i0){this.points.reverse();} -return;}}};jsts.geom.LineString.prototype.CLASS_NAME='jsts.geom.LineString';})();(function(){jsts.geom.Polygon=function(shell,holes,factory){this.shell=shell||factory.createLinearRing(null);this.holes=holes||[];this.factory=factory;};jsts.geom.Polygon.prototype=new jsts.geom.Geometry();jsts.geom.Polygon.constructor=jsts.geom.Polygon;jsts.geom.Polygon.prototype.getCoordinate=function(){return this.shell.getCoordinate();};jsts.geom.Polygon.prototype.getCoordinates=function(){if(this.isEmpty()){return[];} -var coordinates=[];var k=-1;var shellCoordinates=this.shell.getCoordinates();for(var x=0;x0){cent.x=this.cg3.x/3/this.areasum2;cent.y=this.cg3.y/3/this.areasum2;}else if(this.totalLength>0){cent.x=this.lineCentSum.x/this.totalLength;cent.y=this.lineCentSum.y/this.totalLength;}else if(this.ptCount>0){cent.x=this.ptCentSum.x/this.ptCount;cent.y=this.ptCentSum.y/this.ptCount;}else{return null;} -return cent;};jsts.algorithm.Centroid.prototype.setBasePoint=function(basePt){if(this.areaBasePt===null){this.areaBasePt=basePt;}};jsts.algorithm.Centroid.prototype.addPolygon=function(poly){this.addShell(poly.getExteriorRing().getCoordinates());for(var i=0;i0){this.setBasePoint(pts[0]);} -var isPositiveArea=!jsts.algorithm.CGAlgorithms.isCCW(pts);for(var i=0;i0){this.addPoint(pts[0]);}};jsts.algorithm.Centroid.prototype.addPoint=function(pt){this.ptCount+=1;this.ptCentSum.x+=pt.x;this.ptCentSum.y+=pt.y;};(function(){var EdgeRing=function(factory){this.deList=new javascript.util.ArrayList();this.factory=factory;};EdgeRing.findEdgeRingContaining=function(testEr,shellList){var testRing=testEr.getRing();var testEnv=testRing.getEnvelopeInternal();var testPt=testRing.getCoordinateN(0);var minShell=null;var minEnv=null;for(var it=shellList.iterator();it.hasNext();){var tryShell=it.next();var tryRing=tryShell.getRing();var tryEnv=tryRing.getEnvelopeInternal();if(minShell!=null) -minEnv=minShell.getRing().getEnvelopeInternal();var isContained=false;if(tryEnv.equals(testEnv)) -continue;testPt=jsts.geom.CoordinateArrays.ptNotInList(testRing.getCoordinates(),tryRing.getCoordinates());if(tryEnv.contains(testEnv)&&jsts.algorithm.CGAlgorithms.isPointInRing(testPt,tryRing.getCoordinates())) -isContained=true;if(isContained){if(minShell==null||minEnv.contains(tryEnv)){minShell=tryShell;}}} -return minShell;};EdgeRing.ptNotInList=function(testPts,pts){for(var i=0;i=0;i--){coordList.add(coords[i],false);}}};jsts.operation.polygonize.EdgeRing=EdgeRing;})();(function(){var GraphComponent=function(){};GraphComponent.setVisited=function(i,visited){while(i.hasNext()){var comp=i.next();comp.setVisited(visited);}};GraphComponent.setMarked=function(i,marked){while(i.hasNext()){var comp=i.next();comp.setMarked(marked);}};GraphComponent.getComponentWithVisitedState=function(i,visitedState){while(i.hasNext()){var comp=i.next();if(comp.isVisited()==visitedState) -return comp;} -return null;};GraphComponent.prototype._isMarked=false;GraphComponent.prototype._isVisited=false;GraphComponent.prototype.data;GraphComponent.prototype.isVisited=function(){return this._isVisited;};GraphComponent.prototype.setVisited=function(isVisited){this._isVisited=isVisited;};GraphComponent.prototype.isMarked=function(){return this._isMarked;};GraphComponent.prototype.setMarked=function(isMarked){this._isMarked=isMarked;};GraphComponent.prototype.setContext=function(data){this.data=data;};GraphComponent.prototype.getContext=function(){return data;};GraphComponent.prototype.setData=function(data){this.data=data;};GraphComponent.prototype.getData=function(){return data;};GraphComponent.prototype.isRemoved=function(){throw new jsts.error.AbstractMethodInvocationError();};jsts.planargraph.GraphComponent=GraphComponent;})();(function(){var GraphComponent=jsts.planargraph.GraphComponent;var Edge=function(de0,de1){if(de0===undefined){return;} -this.setDirectedEdges(de0,de1);};Edge.prototype=new GraphComponent();Edge.prototype.dirEdge=null;Edge.prototype.setDirectedEdges=function(de0,de1){this.dirEdge=[de0,de1];de0.setEdge(this);de1.setEdge(this);de0.setSym(de1);de1.setSym(de0);de0.getFromNode().addOutEdge(de0);de1.getFromNode().addOutEdge(de1);};Edge.prototype.getDirEdge=function(i){if(i instanceof jsts.planargraph.Node){this.getDirEdge2(i);} -return this.dirEdge[i];};Edge.prototype.getDirEdge2=function(fromNode){if(this.dirEdge[0].getFromNode()==fromNode) -return this.dirEdge[0];if(this.dirEdge[1].getFromNode()==fromNode) -return this.dirEdge[1];return null;};Edge.prototype.getOppositeNode=function(node){if(this.dirEdge[0].getFromNode()==node) -return this.dirEdge[0].getToNode();if(this.dirEdge[1].getFromNode()==node) -return this.dirEdge[1].getToNode();return null;};Edge.prototype.remove=function(){this.dirEdge=null;};Edge.prototype.isRemoved=function(){return dirEdge==null;};jsts.planargraph.Edge=Edge;})();jsts.operation.polygonize.PolygonizeEdge=function(line){this.line=line;};jsts.operation.polygonize.PolygonizeEdge.prototype=new jsts.planargraph.Edge();jsts.operation.polygonize.PolygonizeEdge.prototype.line=null;jsts.operation.polygonize.PolygonizeEdge.prototype.getLine=function(){return this.line;};(function(){var ArrayList=javascript.util.ArrayList;var GraphComponent=jsts.planargraph.GraphComponent;var DirectedEdge=function(from,to,directionPt,edgeDirection){if(from===undefined){return;} -this.from=from;this.to=to;this.edgeDirection=edgeDirection;this.p0=from.getCoordinate();this.p1=directionPt;var dx=this.p1.x-this.p0.x;var dy=this.p1.y-this.p0.y;this.quadrant=jsts.geomgraph.Quadrant.quadrant(dx,dy);this.angle=Math.atan2(dy,dx);};DirectedEdge.prototype=new GraphComponent();DirectedEdge.toEdges=function(dirEdges){var edges=new ArrayList();for(var i=dirEdges.iterator();i.hasNext();){edges.add((i.next()).parentEdge);} -return edges;};DirectedEdge.prototype.parentEdge=null;DirectedEdge.prototype.from=null;DirectedEdge.prototype.to=null;DirectedEdge.prototype.p0=null;DirectedEdge.prototype.p1=null;DirectedEdge.prototype.sym=null;DirectedEdge.prototype.edgeDirection=null;DirectedEdge.prototype.quadrant=null;DirectedEdge.prototype.angle=null;DirectedEdge.prototype.getEdge=function(){return this.parentEdge;};DirectedEdge.prototype.setEdge=function(parentEdge){this.parentEdge=parentEdge;};DirectedEdge.prototype.getQuadrant=function(){return this.quadrant;};DirectedEdge.prototype.getDirectionPt=function(){return this.p1;};DirectedEdge.prototype.getEdgeDirection=function(){return this.edgeDirection;};DirectedEdge.prototype.getFromNode=function(){return this.from;};DirectedEdge.prototype.getToNode=function(){return this.to;};DirectedEdge.prototype.getCoordinate=function(){return this.from.getCoordinate();};DirectedEdge.prototype.getAngle=function(){return this.angle;};DirectedEdge.prototype.getSym=function(){return this.sym;};DirectedEdge.prototype.setSym=function(sym){this.sym=sym;};DirectedEdge.prototype.remove=function(){this.sym=null;this.parentEdge=null;};DirectedEdge.prototype.isRemoved=function(){return this.parentEdge==null;};DirectedEdge.prototype.compareTo=function(obj){var de=obj;return this.compareDirection(de);};DirectedEdge.prototype.compareDirection=function(e){if(this.quadrant>e.quadrant) -return 1;if(this.quadrant1){if(intNodes==null) -intNodes=new ArrayList();intNodes.add(node);} -de=de.getNext();Assert.isTrue(de!=null,'found null DE in ring');Assert.isTrue(de==startDE||!de.isInRing(),'found DE already in ring');}while(de!=startDE);return intNodes;};PolygonizeGraph.prototype.getEdgeRings=function(){this.computeNextCWEdges();PolygonizeGraph.label(this.dirEdges,-1);var maximalRings=PolygonizeGraph.findLabeledEdgeRings(this.dirEdges);this.convertMaximalToMinimalEdgeRings(maximalRings);var edgeRingList=new ArrayList();for(var i=this.dirEdges.iterator();i.hasNext();){var de=i.next();if(de.isMarked()) -continue;if(de.isInRing()) -continue;var er=this.findEdgeRing(de);edgeRingList.add(er);} -return edgeRingList;};PolygonizeGraph.findLabeledEdgeRings=function(dirEdges){var edgeRingStarts=new ArrayList();var currLabel=1;for(var i=dirEdges.iterator();i.hasNext();){var de=i.next();if(de.isMarked()) -continue;if(de.getLabel()>=0) -continue;edgeRingStarts.add(de);var edges=PolygonizeGraph.findDirEdgesInRing(de);PolygonizeGraph.label(edges,currLabel);currLabel++;} -return edgeRingStarts;};PolygonizeGraph.prototype.deleteCutEdges=function(){this.computeNextCWEdges();PolygonizeGraph.findLabeledEdgeRings(this.dirEdges);var cutLines=new ArrayList();for(var i=this.dirEdges.iterator();i.hasNext();){var de=i.next();if(de.isMarked()) -continue;var sym=de.getSym();if(de.getLabel()==sym.getLabel()){de.setMarked(true);sym.setMarked(true);var e=de.getEdge();cutLines.add(e.getLine());}} -return cutLines;};PolygonizeGraph.label=function(dirEdges,label){for(var i=dirEdges.iterator();i.hasNext();){var de=i.next();de.setLabel(label);}};PolygonizeGraph.computeNextCWEdges=function(node){var deStar=node.getOutEdges();var startDE=null;var prevDE=null;for(var i=deStar.getEdges().iterator();i.hasNext();){var outDE=i.next();if(outDE.isMarked()) -continue;if(startDE==null) -startDE=outDE;if(prevDE!=null){var sym=prevDE.getSym();sym.setNext(outDE);} -prevDE=outDE;} -if(prevDE!=null){var sym=prevDE.getSym();sym.setNext(startDE);}};PolygonizeGraph.computeNextCCWEdges=function(node,label){var deStar=node.getOutEdges();var firstOutDE=null;var prevInDE=null;var edges=deStar.getEdges();for(var i=edges.size()-1;i>=0;i--){var de=edges.get(i);var sym=de.getSym();var outDE=null;if(de.getLabel()==label) -outDE=de;var inDE=null;if(sym.getLabel()==label) -inDE=sym;if(outDE==null&&inDE==null) -continue;if(inDE!=null){prevInDE=inDE;} -if(outDE!=null){if(prevInDE!=null){prevInDE.setNext(outDE);prevInDE=null;} -if(firstOutDE==null) -firstOutDE=outDE;}} -if(prevInDE!=null){Assert.isTrue(firstOutDE!=null);prevInDE.setNext(firstOutDE);}};PolygonizeGraph.findDirEdgesInRing=function(startDE){var de=startDE;var edges=new ArrayList();do{edges.add(de);de=de.getNext();Assert.isTrue(de!=null,'found null DE in ring');Assert.isTrue(de==startDE||!de.isInRing(),'found DE already in ring');}while(de!=startDE);return edges;};PolygonizeGraph.prototype.findEdgeRing=function(startDE){var de=startDE;var er=new EdgeRing(this.factory);do{er.add(de);de.setRing(er);de=de.getNext();Assert.isTrue(de!=null,'found null DE in ring');Assert.isTrue(de==startDE||!de.isInRing(),'found DE already in ring');}while(de!=startDE);return er;};PolygonizeGraph.prototype.deleteDangles=function(){var nodesToRemove=this.findNodesOfDegree(1);var dangleLines=new HashSet();var nodeStack=new Stack();for(var i=nodesToRemove.iterator();i.hasNext();){nodeStack.push(i.next());} -while(!nodeStack.isEmpty()){var node=nodeStack.pop();PolygonizeGraph.deleteAllEdges(node);var nodeOutEdges=node.getOutEdges().getEdges();for(var i=nodeOutEdges.iterator();i.hasNext();){var de=i.next();de.setMarked(true);var sym=de.getSym();if(sym!=null) -sym.setMarked(true);var e=de.getEdge();dangleLines.add(e.getLine());var toNode=de.getToNode();if(PolygonizeGraph.getDegreeNonDeleted(toNode)==1) -nodeStack.push(toNode);}} -return dangleLines;};PolygonizeGraph.prototype.computeDepthParity=function(){while(true){var de=null;if(de==null) -return;this.computeDepthParity(de);}};PolygonizeGraph.prototype.computeDepthParity=function(de){};jsts.operation.polygonize.PolygonizeGraph=PolygonizeGraph;})();jsts.index.strtree.Interval=function(){var other;if(arguments.length===1){other=arguments[0];return jsts.index.strtree.Interval(other.min,other.max);}else if(arguments.length===2){jsts.util.Assert.isTrue(this.min<=this.max);this.min=arguments[0];this.max=arguments[1];}};jsts.index.strtree.Interval.prototype.min=null;jsts.index.strtree.Interval.prototype.max=null;jsts.index.strtree.Interval.prototype.getCentre=function(){return(this.min+this.max)/2;};jsts.index.strtree.Interval.prototype.expandToInclude=function(other){this.max=Math.max(this.max,other.max);this.min=Math.min(this.min,other.min);return this;};jsts.index.strtree.Interval.prototype.intersects=function(other){return!(other.min>this.max||other.max1;if(isCollection){if(geom0 instanceof jsts.geom.Polygon){return this.createMultiPolygon(geomList.toArray());}else if(geom0 instanceof jsts.geom.LineString){return this.createMultiLineString(geomList.toArray());}else if(geom0 instanceof jsts.geom.Point){return this.createMultiPoint(geomList.toArray());} -jsts.util.Assert.shouldNeverReachHere('Unhandled class: '+geom0);} -return geom0;};jsts.geom.GeometryFactory.prototype.createGeometryCollection=function(geometries){return new jsts.geom.GeometryCollection(geometries,this);};jsts.geom.GeometryFactory.prototype.toGeometry=function(envelope){if(envelope.isNull()){return this.createPoint(null);} -if(envelope.getMinX()===envelope.getMaxX()&&envelope.getMinY()===envelope.getMaxY()){return this.createPoint(new jsts.geom.Coordinate(envelope.getMinX(),envelope.getMinY()));} -if(envelope.getMinX()===envelope.getMaxX()||envelope.getMinY()===envelope.getMaxY()){return this.createLineString([new jsts.geom.Coordinate(envelope.getMinX(),envelope.getMinY()),new jsts.geom.Coordinate(envelope.getMaxX(),envelope.getMaxY())]);} -return this.createPolygon(this.createLinearRing([new jsts.geom.Coordinate(envelope.getMinX(),envelope.getMinY()),new jsts.geom.Coordinate(envelope.getMinX(),envelope.getMaxY()),new jsts.geom.Coordinate(envelope.getMaxX(),envelope.getMaxY()),new jsts.geom.Coordinate(envelope.getMaxX(),envelope.getMinY()),new jsts.geom.Coordinate(envelope.getMinX(),envelope.getMinY())]),null);};jsts.geomgraph.NodeFactory=function(){};jsts.geomgraph.NodeFactory.prototype.createNode=function(coord){return new jsts.geomgraph.Node(coord,null);};(function(){jsts.geomgraph.Position=function(){};jsts.geomgraph.Position.ON=0;jsts.geomgraph.Position.LEFT=1;jsts.geomgraph.Position.RIGHT=2;jsts.geomgraph.Position.opposite=function(position){if(position===jsts.geomgraph.Position.LEFT){return jsts.geomgraph.Position.RIGHT;} -if(position===jsts.geomgraph.Position.RIGHT){return jsts.geomgraph.Position.LEFT;} -return position;};})();jsts.geomgraph.TopologyLocation=function(){this.location=[];if(arguments.length===3){var on=arguments[0];var left=arguments[1];var right=arguments[2];this.init(3);this.location[jsts.geomgraph.Position.ON]=on;this.location[jsts.geomgraph.Position.LEFT]=left;this.location[jsts.geomgraph.Position.RIGHT]=right;}else if(arguments[0]instanceof jsts.geomgraph.TopologyLocation){var gl=arguments[0];this.init(gl.location.length);if(gl!=null){for(var i=0;i1;};jsts.geomgraph.TopologyLocation.prototype.isLine=function(){return this.location.length===1;};jsts.geomgraph.TopologyLocation.prototype.flip=function(){if(this.location.length<=1) -return;var temp=this.location[jsts.geomgraph.Position.LEFT];this.location[jsts.geomgraph.Position.LEFT]=this.location[jsts.geomgraph.Position.RIGHT];this.location[jsts.geomgraph.Position.RIGHT]=temp;};jsts.geomgraph.TopologyLocation.prototype.setAllLocations=function(locValue){for(var i=0;ithis.location.length){var newLoc=[];newLoc[jsts.geomgraph.Position.ON]=this.location[jsts.geomgraph.Position.ON];newLoc[jsts.geomgraph.Position.LEFT]=jsts.geom.Location.NONE;newLoc[jsts.geomgraph.Position.RIGHT]=jsts.geom.Location.NONE;this.location=newLoc;} -for(var i=0;ithis.maxNodeDegree) -this.maxNodeDegree=degree;de=this.getNext(de);}while(de!==this.startDe);this.maxNodeDegree*=2;};jsts.geomgraph.EdgeRing.prototype.setInResult=function(){var de=this.startDe;do{de.getEdge().setInResult(true);de=de.getNext();}while(de!=this.startDe);};jsts.geomgraph.EdgeRing.prototype.mergeLabel=function(deLabel){this.mergeLabel2(deLabel,0);this.mergeLabel2(deLabel,1);};jsts.geomgraph.EdgeRing.prototype.mergeLabel2=function(deLabel,geomIndex){var loc=deLabel.getLocation(geomIndex,jsts.geomgraph.Position.RIGHT);if(loc==jsts.geom.Location.NONE) -return;if(this.label.getLocation(geomIndex)===jsts.geom.Location.NONE){this.label.setLocation(geomIndex,loc);return;}};jsts.geomgraph.EdgeRing.prototype.addPoints=function(edge,isForward,isFirstEdge){var edgePts=edge.getCoordinates();if(isForward){var startIndex=1;if(isFirstEdge) -startIndex=0;for(var i=startIndex;i=0;i--){this.pts.push(edgePts[i]);}}};jsts.geomgraph.EdgeRing.prototype.containsPoint=function(p){var shell=this.getLinearRing();var env=shell.getEnvelopeInternal();if(!env.contains(p)) -return false;if(!jsts.algorithm.CGAlgorithms.isPointInRing(p,shell.getCoordinates())) -return false;for(var i=0;i1,'Node capacity must be greater than 1');this.nodeCapacity=nodeCapacity;};jsts.index.strtree.AbstractSTRtree.IntersectsOp=function(){};jsts.index.strtree.AbstractSTRtree.IntersectsOp.prototype.intersects=function(aBounds,bBounds){throw new jsts.error.AbstractMethodInvocationError();};jsts.index.strtree.AbstractSTRtree.prototype.root=null;jsts.index.strtree.AbstractSTRtree.prototype.built=false;jsts.index.strtree.AbstractSTRtree.prototype.itemBoundables=null;jsts.index.strtree.AbstractSTRtree.prototype.nodeCapacity=null;jsts.index.strtree.AbstractSTRtree.prototype.build=function(){jsts.util.Assert.isTrue(!this.built);this.root=this.itemBoundables.length===0?this.createNode(0):this.createHigherLevels(this.itemBoundables,-1);this.built=true;};jsts.index.strtree.AbstractSTRtree.prototype.createNode=function(level){throw new jsts.error.AbstractMethodInvocationError();};jsts.index.strtree.AbstractSTRtree.prototype.createParentBoundables=function(childBoundables,newLevel){jsts.util.Assert.isTrue(!(childBoundables.length===0));var parentBoundables=[];parentBoundables.push(this.createNode(newLevel));var sortedChildBoundables=[];for(var i=0;ib?1:amaxChildDepth) -maxChildDepth=childDepth;}} -return maxChildDepth+1;};jsts.index.strtree.AbstractSTRtree.prototype.insert=function(bounds,item){jsts.util.Assert.isTrue(!this.built,'Cannot insert items into an STR packed R-tree after it has been built.');this.itemBoundables.push(new jsts.index.strtree.ItemBoundable(bounds,item));};jsts.index.strtree.AbstractSTRtree.prototype.query=function(searchBounds){if(arguments.length>1){this.query2.apply(this,arguments);} -if(!this.built){this.build();} -var matches=[];if(this.itemBoundables.length===0){jsts.util.Assert.isTrue(this.root.getBounds()===null);return matches;} -if(this.getIntersectsOp().intersects(this.root.getBounds(),searchBounds)){this.query3(searchBounds,this.root,matches);} -return matches;};jsts.index.strtree.AbstractSTRtree.prototype.query2=function(searchBounds,visitor){if(arguments.length>2){this.query3.apply(this,arguments);} -if(!this.built){this.build();} -if(this.itemBoundables.length===0){jsts.util.Assert.isTrue(this.root.getBounds()===null);} -if(this.getIntersectsOp().intersects(this.root.getBounds(),searchBounds)){this.query4(searchBounds,this.root,visitor);}};jsts.index.strtree.AbstractSTRtree.prototype.query3=function(searchBounds,node,matches){if(!(arguments[2]instanceof Array)){this.query4.apply(this,arguments);} -var childBoundables=node.getChildBoundables();for(var i=0;i1){this.boundablesAtLevel2.apply(this,arguments);return;} -var boundables=[];this.boundablesAtLevel2(level,this.root,boundables);return boundables;};jsts.index.strtree.AbstractSTRtree.prototype.boundablesAtLevel2=function(level,top,boundables){jsts.util.Assert.isTrue(level>-2);if(top.getLevel()===level){boundables.add(top);return;} -var childBoundables=node.getChildBoundables();for(var i=0;i0);var parentBoundables=[];for(var i=0;i0.0){var bndPair=priQ.pop();var currentDistance=bndPair.getDistance();if(currentDistance>=distanceLowerBound) -break;if(bndPair.isLeaves()){distanceLowerBound=currentDistance;minPair=bndPair;}else{bndPair.expandToQueue(priQ,distanceLowerBound);}} -return[minPair.getBoundable(0).getItem(),minPair.getBoundable(1).getItem()];};jsts.noding.SegmentString=function(){};jsts.noding.SegmentString.prototype.getData=jsts.abstractFunc;jsts.noding.SegmentString.prototype.setData=jsts.abstractFunc;jsts.noding.SegmentString.prototype.size=jsts.abstractFunc;jsts.noding.SegmentString.prototype.getCoordinate=jsts.abstractFunc;jsts.noding.SegmentString.prototype.getCoordinates=jsts.abstractFunc;jsts.noding.SegmentString.prototype.isClosed=jsts.abstractFunc;jsts.noding.NodableSegmentString=function(){};jsts.noding.NodableSegmentString.prototype=new jsts.noding.SegmentString();jsts.noding.NodableSegmentString.prototype.addIntersection=jsts.abstractFunc;jsts.noding.NodedSegmentString=function(pts,data){this.nodeList=new jsts.noding.SegmentNodeList(this);this.pts=pts;this.data=data;};jsts.noding.NodedSegmentString.prototype=new jsts.noding.NodableSegmentString();jsts.noding.NodedSegmentString.constructor=jsts.noding.NodedSegmentString;jsts.noding.NodedSegmentString.getNodedSubstrings=function(segStrings){if(arguments.length===2){jsts.noding.NodedSegmentString.getNodedSubstrings2.apply(this,arguments);return;} -var resultEdgelist=new javascript.util.ArrayList();jsts.noding.NodedSegmentString.getNodedSubstrings2(segStrings,resultEdgelist);return resultEdgelist;};jsts.noding.NodedSegmentString.getNodedSubstrings2=function(segStrings,resultEdgelist){for(var i=segStrings.iterator();i.hasNext();){var ss=i.next();ss.getNodeList().addSplitEdges(resultEdgelist);}};jsts.noding.NodedSegmentString.prototype.nodeList=null;jsts.noding.NodedSegmentString.prototype.pts=null;jsts.noding.NodedSegmentString.prototype.data=null;jsts.noding.NodedSegmentString.prototype.getData=function(){return this.data;};jsts.noding.NodedSegmentString.prototype.setData=function(data){this.data=data;};jsts.noding.NodedSegmentString.prototype.getNodeList=function(){return this.nodeList;};jsts.noding.NodedSegmentString.prototype.size=function(){return this.pts.length;};jsts.noding.NodedSegmentString.prototype.getCoordinate=function(i){return this.pts[i];};jsts.noding.NodedSegmentString.prototype.getCoordinates=function(){return this.pts;};jsts.noding.NodedSegmentString.prototype.isClosed=function(){return this.pts[0].equals(this.pts[this.pts.length-1]);};jsts.noding.NodedSegmentString.prototype.getSegmentOctant=function(index){if(index===this.pts.length-1) -return-1;return this.safeOctant(this.getCoordinate(index),this.getCoordinate(index+1));};jsts.noding.NodedSegmentString.prototype.safeOctant=function(p0,p1){if(p0.equals2D(p1)) -return 0;return jsts.noding.Octant.octant(p0,p1);};jsts.noding.NodedSegmentString.prototype.addIntersections=function(li,segmentIndex,geomIndex){for(var i=0;i=pts.length-1){return pts.length-1;} -var chainQuad=jsts.geomgraph.Quadrant.quadrant(pts[safeStart],pts[safeStart+1]);var last=start+1;while(lastdy){dist=dx;}else{dist=dy;}}else{var pdx=Math.abs(p.x-p0.x);var pdy=Math.abs(p.y-p0.y);if(dx>dy){dist=pdx;}else{dist=pdy;} -if(dist===0.0&&!p.equals(p0)){dist=Math.max(pdx,pdy);}} -if(dist===0.0&&!p.equals(p0)){throw new jsts.error.IllegalArgumentError('Bad distance calculation');} -return dist;};jsts.algorithm.LineIntersector.nonRobustComputeEdgeDistance=function(p,p1,p2){var dx=p.x-p1.x;var dy=p.y-p1.y;var dist=Math.sqrt(dx*dx+dy*dy);if(!(dist===0.0&&!p.equals(p1))){throw new jsts.error.IllegalArgumentError('Invalid distance calculation');} -return dist;};jsts.algorithm.LineIntersector.prototype.result=null;jsts.algorithm.LineIntersector.prototype.inputLines=null;jsts.algorithm.LineIntersector.prototype.intPt=null;jsts.algorithm.LineIntersector.prototype.intLineIndex=null;jsts.algorithm.LineIntersector.prototype._isProper=null;jsts.algorithm.LineIntersector.prototype.pa=null;jsts.algorithm.LineIntersector.prototype.pb=null;jsts.algorithm.LineIntersector.prototype.precisionModel=null;jsts.algorithm.LineIntersector.prototype.computeIntersection=function(p,p1,p2){throw new jsts.error.AbstractMethodInvocationError();};jsts.algorithm.LineIntersector.prototype.isCollinear=function(){return this.result===jsts.algorithm.LineIntersector.COLLINEAR_INTERSECTION;};jsts.algorithm.LineIntersector.prototype.computeIntersection=function(p1,p2,p3,p4){this.inputLines[0][0]=p1;this.inputLines[0][1]=p2;this.inputLines[1][0]=p3;this.inputLines[1][1]=p4;this.result=this.computeIntersect(p1,p2,p3,p4);};jsts.algorithm.LineIntersector.prototype.computeIntersect=function(p1,p2,q1,q2){throw new jsts.error.AbstractMethodInvocationError();};jsts.algorithm.LineIntersector.prototype.isEndPoint=function(){return this.hasIntersection()&&!this._isProper;};jsts.algorithm.LineIntersector.prototype.hasIntersection=function(){return this.result!==jsts.algorithm.LineIntersector.NO_INTERSECTION;};jsts.algorithm.LineIntersector.prototype.getIntersectionNum=function(){return this.result;};jsts.algorithm.LineIntersector.prototype.getIntersection=function(intIndex){return this.intPt[intIndex];};jsts.algorithm.LineIntersector.prototype.computeIntLineIndex=function(){if(this.intLineIndex===null){this.intLineIndex=[[],[]];this.computeIntLineIndex(0);this.computeIntLineIndex(1);}};jsts.algorithm.LineIntersector.prototype.isIntersection=function(pt){var i;for(i=0;idist1){this.intLineIndex[segmentIndex][0]=0;this.intLineIndex[segmentIndex][1]=1;}else{this.intLineIndex[segmentIndex][0]=1;this.intLineIndex[segmentIndex][1]=0;}};jsts.algorithm.LineIntersector.prototype.getEdgeDistance=function(segmentIndex,intIndex){var dist=jsts.algorithm.LineIntersector.computeEdgeDistance(this.intPt[intIndex],this.inputLines[segmentIndex][0],this.inputLines[segmentIndex][1]);return dist;};jsts.algorithm.RobustLineIntersector=function(){jsts.algorithm.RobustLineIntersector.prototype.constructor.call(this);};jsts.algorithm.RobustLineIntersector.prototype=new jsts.algorithm.LineIntersector();jsts.algorithm.RobustLineIntersector.prototype.computeIntersection=function(p,p1,p2){if(arguments.length===4){jsts.algorithm.LineIntersector.prototype.computeIntersection.apply(this,arguments);return;} -this._isProper=false;if(jsts.geom.Envelope.intersects(p1,p2,p)){if((jsts.algorithm.CGAlgorithms.orientationIndex(p1,p2,p)===0)&&(jsts.algorithm.CGAlgorithms.orientationIndex(p2,p1,p)===0)){this._isProper=true;if(p.equals(p1)||p.equals(p2)){this._isProper=false;} -this.result=jsts.algorithm.LineIntersector.POINT_INTERSECTION;return;}} -this.result=jsts.algorithm.LineIntersector.NO_INTERSECTION;};jsts.algorithm.RobustLineIntersector.prototype.computeIntersect=function(p1,p2,q1,q2){this._isProper=false;if(!jsts.geom.Envelope.intersects(p1,p2,q1,q2)){return jsts.algorithm.LineIntersector.NO_INTERSECTION;} -var Pq1=jsts.algorithm.CGAlgorithms.orientationIndex(p1,p2,q1);var Pq2=jsts.algorithm.CGAlgorithms.orientationIndex(p1,p2,q2);if((Pq1>0&&Pq2>0)||(Pq1<0&&Pq2<0)){return jsts.algorithm.LineIntersector.NO_INTERSECTION;} -var Qp1=jsts.algorithm.CGAlgorithms.orientationIndex(q1,q2,p1);var Qp2=jsts.algorithm.CGAlgorithms.orientationIndex(q1,q2,p2);if((Qp1>0&&Qp2>0)||(Qp1<0&&Qp2<0)){return jsts.algorithm.LineIntersector.NO_INTERSECTION;} -var collinear=Pq1===0&&Pq2===0&&Qp1===0&&Qp2===0;if(collinear){return this.computeCollinearIntersection(p1,p2,q1,q2);} -if(Pq1===0||Pq2===0||Qp1===0||Qp2===0){this._isProper=false;if(p1.equals2D(q1)||p1.equals2D(q2)){this.intPt[0]=p1;}else if(p2.equals2D(q1)||p2.equals2D(q2)){this.intPt[0]=p2;} -else if(Pq1===0){this.intPt[0]=new jsts.geom.Coordinate(q1);}else if(Pq2===0){this.intPt[0]=new jsts.geom.Coordinate(q2);}else if(Qp1===0){this.intPt[0]=new jsts.geom.Coordinate(p1);}else if(Qp2===0){this.intPt[0]=new jsts.geom.Coordinate(p2);}}else{this._isProper=true;this.intPt[0]=this.intersection(p1,p2,q1,q2);} -return jsts.algorithm.LineIntersector.POINT_INTERSECTION;};jsts.algorithm.RobustLineIntersector.prototype.computeCollinearIntersection=function(p1,p2,q1,q2){var p1q1p2=jsts.geom.Envelope.intersects(p1,p2,q1);var p1q2p2=jsts.geom.Envelope.intersects(p1,p2,q2);var q1p1q2=jsts.geom.Envelope.intersects(q1,q2,p1);var q1p2q2=jsts.geom.Envelope.intersects(q1,q2,p2);if(p1q1p2&&p1q2p2){this.intPt[0]=q1;this.intPt[1]=q2;return jsts.algorithm.LineIntersector.COLLINEAR_INTERSECTION;} -if(q1p1q2&&q1p2q2){this.intPt[0]=p1;this.intPt[1]=p2;return jsts.algorithm.LineIntersector.COLLINEAR_INTERSECTION;} -if(p1q1p2&&q1p1q2){this.intPt[0]=q1;this.intPt[1]=p1;return q1.equals(p1)&&!p1q2p2&&!q1p2q2?jsts.algorithm.LineIntersector.POINT_INTERSECTION:jsts.algorithm.LineIntersector.COLLINEAR_INTERSECTION;} -if(p1q1p2&&q1p2q2){this.intPt[0]=q1;this.intPt[1]=p2;return q1.equals(p2)&&!p1q2p2&&!q1p1q2?jsts.algorithm.LineIntersector.POINT_INTERSECTION:jsts.algorithm.LineIntersector.COLLINEAR_INTERSECTION;} -if(p1q2p2&&q1p1q2){this.intPt[0]=q2;this.intPt[1]=p1;return q2.equals(p1)&&!p1q1p2&&!q1p2q2?jsts.algorithm.LineIntersector.POINT_INTERSECTION:jsts.algorithm.LineIntersector.COLLINEAR_INTERSECTION;} -if(p1q2p2&&q1p2q2){this.intPt[0]=q2;this.intPt[1]=p2;return q2.equals(p2)&&!p1q1p2&&!q1p1q2?jsts.algorithm.LineIntersector.POINT_INTERSECTION:jsts.algorithm.LineIntersector.COLLINEAR_INTERSECTION;} -return jsts.algorithm.LineIntersector.NO_INTERSECTION;};jsts.algorithm.RobustLineIntersector.prototype.intersection=function(p1,p2,q1,q2){var intPt=this.intersectionWithNormalization(p1,p2,q1,q2);if(!this.isInSegmentEnvelopes(intPt)){intPt=jsts.algorithm.CentralEndpointIntersector.getIntersection(p1,p2,q1,q2);} -if(this.precisionModel!==null){this.precisionModel.makePrecise(intPt);} -return intPt;};jsts.algorithm.RobustLineIntersector.prototype.intersectionWithNormalization=function(p1,p2,q1,q2){var n1=new jsts.geom.Coordinate(p1);var n2=new jsts.geom.Coordinate(p2);var n3=new jsts.geom.Coordinate(q1);var n4=new jsts.geom.Coordinate(q2);var normPt=new jsts.geom.Coordinate();this.normalizeToEnvCentre(n1,n2,n3,n4,normPt);var intPt=this.safeHCoordinateIntersection(n1,n2,n3,n4);intPt.x+=normPt.x;intPt.y+=normPt.y;return intPt;};jsts.algorithm.RobustLineIntersector.prototype.safeHCoordinateIntersection=function(p1,p2,q1,q2){var intPt=null;try{intPt=jsts.algorithm.HCoordinate.intersection(p1,p2,q1,q2);}catch(e){if(e instanceof jsts.error.NotRepresentableError){intPt=jsts.algorithm.CentralEndpointIntersector.getIntersection(p1,p2,q1,q2);}else{throw e;}} -return intPt;};jsts.algorithm.RobustLineIntersector.prototype.normalizeToMinimum=function(n1,n2,n3,n4,normPt){normPt.x=this.smallestInAbsValue(n1.x,n2.x,n3.x,n4.x);normPt.y=this.smallestInAbsValue(n1.y,n2.y,n3.y,n4.y);n1.x-=normPt.x;n1.y-=normPt.y;n2.x-=normPt.x;n2.y-=normPt.y;n3.x-=normPt.x;n3.y-=normPt.y;n4.x-=normPt.x;n4.y-=normPt.y;};jsts.algorithm.RobustLineIntersector.prototype.normalizeToEnvCentre=function(n00,n01,n10,n11,normPt){var minX0=n00.xn01.x?n00.x:n01.x;var maxY0=n00.y>n01.y?n00.y:n01.y;var minX1=n10.xn11.x?n10.x:n11.x;var maxY1=n10.y>n11.y?n10.y:n11.y;var intMinX=minX0>minX1?minX0:minX1;var intMaxX=maxX0minY1?minY0:minY1;var intMaxY=maxY0=0&&orient1>=0){return Math.max(orient0,orient1);} -if(orient0<=0&&orient1<=0){return Math.max(orient0,orient1);} -return 0;};jsts.geom.LineSegment.prototype.orientationIndex2=function(p){return jsts.algorithm.CGAlgorithms.orientationIndex(this.p0,this.p1,p);};jsts.geom.LineSegment.prototype.reverse=function(){var temp=this.p0;this.p0=this.p1;this.p1=temp;};jsts.geom.LineSegment.prototype.normalize=function(){if(this.p1.compareTo(this.p0)<0)this.reverse();};jsts.geom.LineSegment.prototype.angle=function(){return Math.atan2(this.p1.y-this.p0.y,this.p1.x-this.p0.x);};jsts.geom.LineSegment.prototype.midPoint=function(){return jsts.geom.LineSegment.midPoint(this.p0,this.p1);};jsts.geom.LineSegment.prototype.distance=function(arg){if(arg instanceof jsts.geom.LineSegment){return this.distance1(arg);}else if(arg instanceof jsts.geom.Coordinate){return this.distance2(arg);}};jsts.geom.LineSegment.prototype.distance1=function(ls){return jsts.algorithm.CGAlgorithms.distanceLineLine(this.p0,this.p1,ls.p0,ls.p1);};jsts.geom.LineSegment.prototype.distance2=function(p){return jsts.algorithm.CGAlgorithms.distancePointLine(p,this.p0,this.p1);};jsts.geom.LineSegment.prototype.pointAlong=function(segmentLengthFraction){var coord=new jsts.geom.Coordinate();coord.x=this.p0.x+segmentLengthFraction*(this.p1.x-this.p0.x);coord.y=this.p0.y+segmentLengthFraction*(this.p1.y-this.p0.y);return coord;};jsts.geom.LineSegment.prototype.pointAlongOffset=function(segmentLengthFraction,offsetDistance){var segx=this.p0.x+segmentLengthFraction*(this.p1.x-this.p0.x);var segy=this.p0.y+segmentLengthFraction*(this.p1.y-this.p0.y);var dx=this.p1.x-this.p0.x;var dy=this.p1.y-this.p0.y;var len=Math.sqrt(dx*dx+dy*dy);var ux=0;var uy=0;if(offsetDistance!==0){if(len<=0){throw"Cannot compute offset from zero-length line segment";} -ux=offsetDistance*dx/len;uy=offsetDistance*dy/len;} -var offsetx=segx-uy;var offsety=segy+ux;var coord=new jsts.geom.Coordinate(offsetx,offsety);return coord;};jsts.geom.LineSegment.prototype.projectionFactor=function(p){if(p.equals(this.p0)) -return 0.0;if(p.equals(this.p1)) -return 1.0;var dx=this.p1.x-this.p0.x;var dy=this.p1.y-this.p0.y;var len2=dx*dx+dy*dy;var r=((p.x-this.p0.x)*dx+(p.y-this.p0.y)*dy)/len2;return r;};jsts.geom.LineSegment.prototype.segmentFraction=function(inputPt){var segFrac=this.projectionFactor(inputPt);if(segFrac<0){segFrac=0;}else if(segFrac>1||isNaN(segFrac)){segFrac=1;} -return segFrac;};jsts.geom.LineSegment.prototype.project=function(arg){if(arg instanceof jsts.geom.Coordinate){return this.project1(arg);}else if(arg instanceof jsts.geom.LineSegment){return this.project2(arg);}};jsts.geom.LineSegment.prototype.project1=function(p){if(p.equals(this.p0)||p.equals(this.p1)){return new jsts.geom.Coordinate(p);} -var r=this.projectionFactor(p);var coord=new jsts.geom.Coordinate();coord.x=this.p0.x+r*(this.p1.x-this.p0.x);coord.y=this.p0.y+r*(this.p1.y-this.p0.y);return coord;};jsts.geom.LineSegment.prototype.project2=function(seg){var pf0=this.projectionFactor(seg.p0);var pf1=this.projectionFactor(seg.p1);if(pf0>=1&&pf1>=1)return null;if(pf0<=0&&pf1<=0)return null;var newp0=this.project(seg.p0);if(pf0<0)newp0=p0;if(pf0>1)newp0=p1;var newp1=this.project(seg.p1);if(pf1<0.0)newp1=p0;if(pf1>1.0)newp1=p1;return new jsts.geom.LineSegment(newp0,newp1);};jsts.geom.LineSegment.prototype.closestPoint=function(p){var factor=this.projectionFactor(p);if(factor>0&&factor<1){return this.project(p);} -var dist0=this.p0.distance(p);var dist1=this.p1.distance(p);if(dist0queryChain.getId()){queryChain.computeOverlaps(testChain,overlapAction);this.nOverlaps++;} -if(this.segInt.isDone()) -return;}}};jsts.noding.MCIndexNoder.prototype.add=function(segStr){var segChains=MonotoneChainBuilder.getChains(segStr.getCoordinates(),segStr);for(var i=0;i1&&snapPts[0].equals2D(snapPts[snapPts.length-1])){distinctPtCount=snapPts.length-1;} -i=0;for(i;i=0){srcCoords.add(index+1,new jsts.geom.Coordinate(snapPt),false);}}};LineStringSnapper.prototype.findSegmentIndexToSnap=function(snapPt,srcCoords){var minDist=Number.MAX_VALUE,snapIndex=-1,i=0,dist;for(i;i0&&seqSize<4&&!this.preserveType) -return this.factory.createLineString(seq);return this.factory.createLinearRing(seq);};GeometryTransformer.prototype.transformLineString=function(geom,parent){return this.factory.createLineString(this.transformCoordinates(geom.getCoordinateSequence(),geom));};GeometryTransformer.prototype.transformMultiLineString=function(geom,parent){var transGeomList=new ArrayList();for(var i=0;isnapTolerance) -snapTolerance=fixedSnapTol;} -return snapTolerance;};GeometrySnapper.computeSizeBasedSnapTolerance=function(g){var env=g.getEnvelopeInternal();var minDimension=Math.min(env.getHeight(),env.getWidth());var snapTol=minDimension*GeometrySnapper.SNAP_PRECISION_FACTOR;return snapTol;};GeometrySnapper.computeOverlaySnapTolerance2=function(g0,g1){return Math.min(this.computeOverlaySnapTolerance(g0),this.computeOverlaySnapTolerance(g1));};GeometrySnapper.snap=function(g0,g1,snapTolerance){var snapGeom=[];var snapper0=new GeometrySnapper(g0);snapGeom[0]=snapper0.snapTo(g1,snapTolerance);var snapper1=new GeometrySnapper(g1);snapGeom[1]=snapper1.snapTo(snapGeom[0],snapTolerance);return snapGeom;};GeometrySnapper.snapToSelf=function(g0,snapTolerance,cleanResult){var snapper0=new GeometrySnapper(g0);return snapper0.snapToSelf(snapTolerance,cleanResult);};GeometrySnapper.prototype.srcGeom=null;GeometrySnapper.prototype.snapTo=function(snapGeom,snapTolerance){var snapPts=this.extractTargetCoordinates(snapGeom);var snapTrans=new SnapTransformer(snapTolerance,snapPts);return snapTrans.transform(this.srcGeom);};GeometrySnapper.prototype.snapToSelf=function(snapTolerance,cleanResult){var snapPts=this.extractTargetCoordinates(srcGeom);var snapTrans=new SnapTransformer(snapTolerance,snapPts,true);var snappedGeom=snapTrans.transform(srcGeom);var result=snappedGeom;if(cleanResult&&result instanceof Polygonal){result=snappedGeom.buffer(0);} -return result;};GeometrySnapper.prototype.extractTargetCoordinates=function(g){var ptSet=new TreeSet();var pts=g.getCoordinates();for(var i=0;i0||this.isIn) -return jsts.geom.Location.INTERIOR;return jsts.geom.Location.EXTERIOR;};jsts.algorithm.PointLocator.prototype.computeLocation=function(p,geom){if(geom instanceof jsts.geom.Point||geom instanceof jsts.geom.LineString||geom instanceof jsts.geom.Polygon){this.updateLocationInfo(this.locate(p,geom));}else if(geom instanceof jsts.geom.MultiLineString){var ml=geom;for(var i=0;i=segStr.size()-2) -return true;return false;};jsts.noding.InteriorIntersectionFinder.prototype.isDone=function(){if(this.findAllIntersections) -return false;return this.interiorIntersection!=null;};})();(function(){var RobustLineIntersector=jsts.algorithm.RobustLineIntersector;var InteriorIntersectionFinder=jsts.noding.InteriorIntersectionFinder;var MCIndexNoder=jsts.noding.MCIndexNoder;jsts.noding.FastNodingValidator=function(segStrings){this.li=new RobustLineIntersector();this.segStrings=segStrings;};jsts.noding.FastNodingValidator.prototype.li=null;jsts.noding.FastNodingValidator.prototype.segStrings=null;jsts.noding.FastNodingValidator.prototype.findAllIntersections=false;jsts.noding.FastNodingValidator.prototype.segInt=null;jsts.noding.FastNodingValidator.prototype._isValid=true;jsts.noding.FastNodingValidator.prototype.setFindAllIntersections=function(findAllIntersections){this.findAllIntersections=findAllIntersections;};jsts.noding.FastNodingValidator.prototype.getIntersections=function(){return segInt.getIntersections();};jsts.noding.FastNodingValidator.prototype.isValid=function(){this.execute();return this._isValid;};jsts.noding.FastNodingValidator.prototype.getErrorMessage=function(){if(this._isValid) -return'no intersections found';var intSegs=this.segInt.getIntersectionSegments();return'found non-noded intersection between '+ -jsts.io.WKTWriter.toLineString(intSegs[0],intSegs[1])+' and '+ -jsts.io.WKTWriter.toLineString(intSegs[2],intSegs[3]);};jsts.noding.FastNodingValidator.prototype.checkValid=function(){this.execute();if(!this._isValid) -throw new jsts.error.TopologyError(this.getErrorMessage(),this.segInt.getInteriorIntersection());};jsts.noding.FastNodingValidator.prototype.execute=function(){if(this.segInt!=null) -return;this.checkInteriorIntersections();};jsts.noding.FastNodingValidator.prototype.checkInteriorIntersections=function(){this._isValid=true;this.segInt=new InteriorIntersectionFinder(this.li);this.segInt.setFindAllIntersections(this.findAllIntersections);var noder=new MCIndexNoder();noder.setSegmentIntersector(this.segInt);noder.computeNodes(this.segStrings);if(this.segInt.hasIntersection()){this._isValid=false;return;}};})();(function(){jsts.noding.BasicSegmentString=function(pts,data){this.pts=pts;this.data=data;};jsts.noding.BasicSegmentString.prototype=new jsts.noding.SegmentString();jsts.noding.BasicSegmentString.prototype.pts=null;jsts.noding.BasicSegmentString.prototype.data=null;jsts.noding.BasicSegmentString.prototype.getData=function(){return this.data;} -jsts.noding.BasicSegmentString.prototype.setData=function(data){this.data=data;};jsts.noding.BasicSegmentString.prototype.size=function(){return this.pts.length;};jsts.noding.BasicSegmentString.prototype.getCoordinate=function(i){return this.pts[i];};jsts.noding.BasicSegmentString.prototype.getCoordinates=function(){return this.pts;};jsts.noding.BasicSegmentString.prototype.isClosed=function(){return this.pts[0].equals(this.pts[this.pts.length-1]);};jsts.noding.BasicSegmentString.prototype.getSegmentOctant=function(index){if(index==this.pts.length-1) -return-1;return jsts.noding.Octant.octant(this.getCoordinate(index),this.getCoordinate(index+1));};})();(function(){var FastNodingValidator=jsts.noding.FastNodingValidator;var BasicSegmentString=jsts.noding.BasicSegmentString;var ArrayList=javascript.util.ArrayList;jsts.geomgraph.EdgeNodingValidator=function(edges){this.nv=new FastNodingValidator(jsts.geomgraph.EdgeNodingValidator.toSegmentStrings(edges));};jsts.geomgraph.EdgeNodingValidator.checkValid=function(edges){var validator=new jsts.geomgraph.EdgeNodingValidator(edges);validator.checkValid();};jsts.geomgraph.EdgeNodingValidator.toSegmentStrings=function(edges){var segStrings=new ArrayList();for(var i=edges.iterator();i.hasNext();){var e=i.next();segStrings.add(new BasicSegmentString(e.getCoordinates(),e));} -return segStrings;};jsts.geomgraph.EdgeNodingValidator.prototype.nv=null;jsts.geomgraph.EdgeNodingValidator.prototype.checkValid=function(){this.nv.checkValid();};})();jsts.operation.GeometryGraphOperation=function(g0,g1,boundaryNodeRule){this.li=new jsts.algorithm.RobustLineIntersector();this.arg=[];if(g0===undefined){return;} -if(g1===undefined){this.setComputationPrecision(g0.getPrecisionModel());this.arg[0]=new jsts.geomgraph.GeometryGraph(0,g0);return;} -boundaryNodeRule=boundaryNodeRule||jsts.algorithm.BoundaryNodeRule.OGC_SFS_BOUNDARY_RULE;if(g0.getPrecisionModel().compareTo(g1.getPrecisionModel())>=0) -this.setComputationPrecision(g0.getPrecisionModel());else -this.setComputationPrecision(g1.getPrecisionModel());this.arg[0]=new jsts.geomgraph.GeometryGraph(0,g0,boundaryNodeRule);this.arg[1]=new jsts.geomgraph.GeometryGraph(1,g1,boundaryNodeRule);};jsts.operation.GeometryGraphOperation.prototype.li=null;jsts.operation.GeometryGraphOperation.prototype.resultPrecisionModel=null;jsts.operation.GeometryGraphOperation.prototype.arg=null;jsts.operation.GeometryGraphOperation.prototype.getArgGeometry=function(i){return arg[i].getGeometry();};jsts.operation.GeometryGraphOperation.prototype.setComputationPrecision=function(pm){this.resultPrecisionModel=pm;this.li.setPrecisionModel(this.resultPrecisionModel);};jsts.operation.overlay.OverlayNodeFactory=function(){};jsts.operation.overlay.OverlayNodeFactory.prototype=new jsts.geomgraph.NodeFactory();jsts.operation.overlay.OverlayNodeFactory.constructor=jsts.operation.overlay.OverlayNodeFactory;jsts.operation.overlay.OverlayNodeFactory.prototype.createNode=function(coord){return new jsts.geomgraph.Node(coord,new jsts.geomgraph.DirectedEdgeStar());};jsts.operation.overlay.PolygonBuilder=function(geometryFactory){this.shellList=[];this.geometryFactory=geometryFactory;};jsts.operation.overlay.PolygonBuilder.prototype.geometryFactory=null;jsts.operation.overlay.PolygonBuilder.prototype.shellList=null;jsts.operation.overlay.PolygonBuilder.prototype.add=function(graph){if(arguments.length===2){this.add2.apply(this,arguments);return;} -this.add2(graph.getEdgeEnds(),graph.getNodes());};jsts.operation.overlay.PolygonBuilder.prototype.add2=function(dirEdges,nodes){jsts.geomgraph.PlanarGraph.linkResultDirectedEdges(nodes);var maxEdgeRings=this.buildMaximalEdgeRings(dirEdges);var freeHoleList=[];var edgeRings=this.buildMinimalEdgeRings(maxEdgeRings,this.shellList,freeHoleList);this.sortShellsAndHoles(edgeRings,this.shellList,freeHoleList);this.placeFreeHoles(this.shellList,freeHoleList);};jsts.operation.overlay.PolygonBuilder.prototype.getPolygons=function(){var resultPolyList=this.computePolygons(this.shellList);return resultPolyList;};jsts.operation.overlay.PolygonBuilder.prototype.buildMaximalEdgeRings=function(dirEdges){var maxEdgeRings=[];for(var it=dirEdges.iterator();it.hasNext();){var de=it.next();if(de.isInResult()&&de.getLabel().isArea()){if(de.getEdgeRing()==null){var er=new jsts.operation.overlay.MaximalEdgeRing(de,this.geometryFactory);maxEdgeRings.push(er);er.setInResult();}}} -return maxEdgeRings;};jsts.operation.overlay.PolygonBuilder.prototype.buildMinimalEdgeRings=function(maxEdgeRings,shellList,freeHoleList){var edgeRings=[];for(var i=0;i2){er.linkDirectedEdgesForMinimalEdgeRings();var minEdgeRings=er.buildMinimalRings();var shell=this.findShell(minEdgeRings);if(shell!==null){this.placePolygonHoles(shell,minEdgeRings);shellList.push(shell);}else{freeHoleList=freeHoleList.concat(minEdgeRings);}}else{edgeRings.push(er);}} -return edgeRings;};jsts.operation.overlay.PolygonBuilder.prototype.findShell=function(minEdgeRings){var shellCount=0;var shell=null;for(var i=0;i=0;i--){var nextOut=this.resultAreaEdgeList.get(i);var nextIn=nextOut.getSym();if(firstOut===null&&nextOut.getEdgeRing()===er) -firstOut=nextOut;switch(state){case this.SCANNING_FOR_INCOMING:if(nextIn.getEdgeRing()!=er) -continue;incoming=nextIn;state=this.LINKING_TO_OUTGOING;break;case this.LINKING_TO_OUTGOING:if(nextOut.getEdgeRing()!==er) -continue;incoming.setNextMin(nextOut);state=this.SCANNING_FOR_INCOMING;break;}} -if(state===this.LINKING_TO_OUTGOING){Assert.isTrue(firstOut!==null,'found null for first outgoing dirEdge');Assert.isTrue(firstOut.getEdgeRing()===er,'unable to link last incoming dirEdge');incoming.setNextMin(firstOut);}};jsts.geomgraph.DirectedEdgeStar.prototype.linkAllDirectedEdges=function(){this.getEdges();var prevOut=null;var firstIn=null;for(var i=this.edgeList.size()-1;i>=0;i--){var nextOut=this.edgeList.get(i);var nextIn=nextOut.getSym();if(firstIn===null) -firstIn=nextIn;if(prevOut!==null) -nextIn.setNext(prevOut);prevOut=nextOut;} -firstIn.setNext(prevOut);};jsts.geomgraph.DirectedEdgeStar.prototype.findCoveredLineEdges=function(){var startLoc=Location.NONE;for(var it=this.iterator();it.hasNext();){var nextOut=it.next();var nextIn=nextOut.getSym();if(!nextOut.isLineEdge()){if(nextOut.isInResult()){startLoc=Location.INTERIOR;break;} -if(nextIn.isInResult()){startLoc=Location.EXTERIOR;break;}}} -if(startLoc===Location.NONE) -return;var currLoc=startLoc;for(var it=this.iterator();it.hasNext();){var nextOut=it.next();var nextIn=nextOut.getSym();if(nextOut.isLineEdge()){nextOut.getEdge().setCovered(currLoc===Location.INTERIOR);}else{if(nextOut.isInResult()) -currLoc=Location.EXTERIOR;if(nextIn.isInResult()) -currLoc=Location.INTERIOR;}}};jsts.geomgraph.DirectedEdgeStar.prototype.computeDepths=function(de){if(arguments.length===2){this.computeDepths2.apply(this,arguments);return;} -var edgeIndex=this.findIndex(de);var label=de.getLabel();var startDepth=de.getDepth(Position.LEFT);var targetLastDepth=de.getDepth(Position.RIGHT);var nextDepth=this.computeDepths2(edgeIndex+1,this.edgeList.size(),startDepth);var lastDepth=this.computeDepths2(0,edgeIndex,nextDepth);if(lastDepth!=targetLastDepth) -throw new jsts.error.TopologyError('depth mismatch at '+ -de.getCoordinate());};jsts.geomgraph.DirectedEdgeStar.prototype.computeDepths2=function(startIndex,endIndex,startDepth){var currDepth=startDepth;for(var i=startIndex;i0){return this.pts[0];}else{return null;}} -return this.pts[i];};jsts.geomgraph.Edge.prototype.isClosed=function(){return this.pts[0].equals(this.pts[this.pts.length-1]);};jsts.geomgraph.Edge.prototype.setIsolated=function(isIsolated){this._isIsolated=isIsolated;};jsts.geomgraph.Edge.prototype.isIsolated=function(){return this._isIsolated;};jsts.geomgraph.Edge.prototype.addIntersections=function(li,segmentIndex,geomIndex){for(var i=0;i=0){if(dy>=0){if(adx>=ady) -return 0;else -return 1;} -else{if(adx>=ady) -return 7;else -return 6;}} -else{if(dy>=0){if(adx>=ady) -return 3;else -return 2;} -else{if(adx>=ady) -return 4;else -return 5;}}};jsts.noding.Octant.octant2=function(p0,p1){var dx=p1.x-p0.x;var dy=p1.y-p0.y;if(dx===0.0&&dy===0.0) -throw new jsts.error.IllegalArgumentError('Cannot compute the octant for two identical points '+p0);return jsts.noding.Octant.octant(dx,dy);};jsts.operation.union.UnionInteracting=function(g0,g1){this.g0=g0;this.g1=g1;this.geomFactory=g0.getFactory();this.interacts0=[];this.interacts1=[];};jsts.operation.union.UnionInteracting.union=function(g0,g1){var uue=new jsts.operation.union.UnionInteracting(g0,g1);return uue.union();};jsts.operation.union.UnionInteracting.prototype.geomFactory=null;jsts.operation.union.UnionInteracting.prototype.g0=null;jsts.operation.union.UnionInteracting.prototype.g1=null;jsts.operation.union.UnionInteracting.prototype.interacts0=null;jsts.operation.union.UnionInteracting.prototype.interacts1=null;jsts.operation.union.UnionInteracting.prototype.union=function(){this.computeInteracting();var int0=this.extractElements(this.g0,this.interacts0,true);var int1=this.extractElements(this.g1,this.interacts1,true);if(int0.isEmpty()||int1.isEmpty()){} -var union=in0.union(int1);var disjoint0=this.extractElements(this.g0,this.interacts0,false);var disjoint1=this.extractElements(this.g1,this.interacts1,false);var overallUnion=jsts.geom.util.GeometryCombiner.combine(union,disjoint0,disjoint1);return overallUnion;};jsts.operation.union.UnionInteracting.prototype.bufferUnion=function(g0,g1){var factory=g0.getFactory();var gColl=factory.createGeometryCollection([g0,g1]);var unionAll=gColl.buffer(0.0);return unionAll;};jsts.operation.union.UnionInteracting.prototype.computeInteracting=function(elem0){if(!elem0){for(var i=0,l=this.g0.getNumGeometries();i0;return isInCircle;};jsts.triangulate.quadedge.TrianglePredicate.isInCircleNormalized=function(a,b,c,p){var adx,ady,bdx,bdy,cdx,cdy,abdet,bcdet,cadet,alift,blift,clift,disc;adx=a.x-p.x;ady=a.y-p.y;bdx=b.x-p.x;bdy=b.y-p.y;cdx=c.x-p.x;cdy=c.y-p.y;abdet=adx*bdy-bdx*ady;bcdet=bdx*cdy-cdx*bdy;cadet=cdx*ady-adx*cdy;alift=adx*adx+ady*ady;blift=bdx*bdx+bdy*bdy;clift=cdx*cdx+cdy*cdy;disc=alift*bcdet+blift*cadet+clift*abdet;return disc>0;};jsts.triangulate.quadedge.TrianglePredicate.triArea=function(a,b,c){return(b.x-a.x)*(c.y-a.y)-(b.y-a.y)*(c.x-a.x);};jsts.triangulate.quadedge.TrianglePredicate.isInCircleRobust=function(a,b,c,p){return jsts.triangulate.quadedge.TrianglePredicate.isInCircleNormalized(a,b,c,p);};jsts.triangulate.quadedge.TrianglePredicate.isInCircleDDSlow=function(a,b,c,p){var px,py,ax,ay,bx,by,cx,cy,aTerm,bTerm,cTerm,pTerm,sum,isInCircle;px=jsts.math.DD.valueOf(p.x);py=jsts.math.DD.valueOf(p.y);ax=jsts.math.DD.valueOf(a.x);ay=jsts.math.DD.valueOf(a.y);bx=jsts.math.DD.valueOf(b.x);by=jsts.math.DD.valueOf(b.y);cx=jsts.math.DD.valueOf(c.x);cy=jsts.math.DD.valueOf(c.y);aTerm=(ax.multiply(ax).add(ay.multiply(ay))).multiply(jsts.triangulate.quadedge.TrianglePredicate.triAreaDDSlow(bx,by,cx,cy,px,py));bTerm=(bx.multiply(bx).add(by.multiply(by))).multiply(jsts.triangulate.quadedge.TrianglePredicate.triAreaDDSlow(ax,ay,cx,cy,px,py));cTerm=(cx.multiply(cx).add(cy.multiply(cy))).multiply(jsts.triangulate.quadedge.TrianglePredicate.triAreaDDSlow(ax,ay,bx,by,px,py));pTerm=(px.multiply(px).add(py.multiply(py))).multiply(jsts.triangulate.quadedge.TrianglePredicate.triAreaDDSlow(ax,ay,bx,by,cx,cy));sum=aTerm.subtract(bTerm).add(cTerm).subtract(pTerm);isInCircle=sum.doubleValue()>0;return isInCircle;};jsts.triangulate.quadedge.TrianglePredicate.triAreaDDSlow=function(ax,ay,bx,by,cx,cy){return(bx.subtract(ax).multiply(cy.subtract(ay)).subtract(by.subtract(ay).multiply(cx.subtract(ax))));};jsts.triangulate.quadedge.TrianglePredicate.isInCircleDDFast=function(a,b,c,p){var aTerm,bTerm,cTerm,pTerm,sum,isInCircle;aTerm=(jsts.math.DD.sqr(a.x).selfAdd(jsts.math.DD.sqr(a.y))).selfMultiply(jsts.triangulate.quadedge.TrianglePredicate.triAreaDDFast(b,c,p));bTerm=(jsts.math.DD.sqr(b.x).selfAdd(jsts.math.DD.sqr(b.y))).selfMultiply(jsts.triangulate.quadedge.TrianglePredicate.triAreaDDFast(a,c,p));cTerm=(jsts.math.DD.sqr(c.x).selfAdd(jsts.math.DD.sqr(c.y))).selfMultiply(jsts.triangulate.quadedge.TrianglePredicate.triAreaDDFast(a,b,p));pTerm=(jsts.math.DD.sqr(p.x).selfAdd(jsts.math.DD.sqr(p.y))).selfMultiply(jsts.triangulate.quadedge.TrianglePredicate.triAreaDDFast(a,b,c));sum=aTerm.selfSubtract(bTerm).selfAdd(cTerm).selfSubtract(pTerm);isInCircle=sum.doubleValue()>0;return isInCircle;};jsts.triangulate.quadedge.TrianglePredicate.triAreaDDFast=function(a,b,c){var t1,t2;t1=jsts.math.DD.valueOf(b.x).selfSubtract(a.x).selfMultiply(jsts.math.DD.valueOf(c.y).selfSubtract(a.y));t2=jsts.math.DD.valueOf(b.y).selSubtract(a.y).selfMultiply(jsts.math.DD.valueOf(c.x).selfSubtract(a.x));return t1.selfSubtract(t2);};jsts.triangulate.quadedge.TrianglePredicate.isInCircleDDNormalized=function(a,b,c,p){var adx,ady,bdx,bdy,cdx,cdy,abdet,bcdet,cadet,alift,blift,clift,sum,isInCircle;adx=jsts.math.DD.valueOf(a.x).selfSubtract(p.x);ady=jsts.math.DD.valueOf(a.y).selfSubtract(p.y);bdx=jsts.math.DD.valueOf(b.x).selfSubtract(p.x);bdx=jsts.math.DD.valueOf(b.y).selfSubtract(p.y);cdx=jsts.math.DD.valueOf(c.x).selfSubtract(p.x);cdx=jsts.math.DD.valueOf(c.y).selfSubtract(p.y);abdet=adx.multiply(bdy).selfSubtract(bdx.multiply(ady));bcdet=bdx.multiply(cdy).selfSubtract(cdx.multiply(bdy));cadet=cdx.multiply(ady).selfSubtract(adx.multiply(cdy));alift=adx.multiply(adx).selfAdd(ady.multiply(ady));blift=bdx.multiply(bdx).selfAdd(bdy.multiply(bdy));clift=cdx.multiply(cdx).selfAdd(cdy.multiply(cdy));sum=alift.selfMultiply(bcdet).selfAdd(blift.selfMultiply(cadet)).selfAdd(clift.selfMultiply(abdet));isInCircle=sum.doubleValue()>0;return isInCircle;};jsts.triangulate.quadedge.TrianglePredicate.isInCircleCC=function(a,b,c,p){var cc,ccRadius,pRadiusDiff;cc=jsts.geom.Triangle.circumcentre(a,b,c);ccRadius=a.distance(cc);pRadiusDiff=p.distance(cc)-ccRadius;return pRadiusDiff<=0;};jsts.operation.union.PointGeometryUnion=function(pointGeom,otherGeom){this.pointGeom=pointGeom;this.otherGeom=otherGeom;this.geomFact=otherGeom.getFactory();};jsts.operation.union.PointGeometryUnion.union=function(pointGeom,otherGeom){var unioner=new jsts.operation.union.PointGeometryUnion(pointGeom,otherGeom);return unioner.union();};jsts.operation.union.PointGeometryUnion.prototype.pointGeom=null;jsts.operation.union.PointGeometryUnion.prototype.otherGeom=null;jsts.operation.union.PointGeometryUnion.prototype.geomFact=null;jsts.operation.union.PointGeometryUnion.prototype.union=function(){var locator=new jsts.algorithm.PointLocator();var exteriorCoords=[];for(var i=0,l=this.pointGeom.getNumGeometries();i0)&&(y2<=0))||((y2>0)&&(y1<=0))){xInt=jsts.algorithm.RobustDeterminant.signOfDet2x2(x1,y1,x2,y2)/(y2-y1);if(0.0max){this.min=max;this.max=min;}};Interval.prototype.getMin=function(){return this.min;};Interval.prototype.getMax=function(){return this.max;};Interval.prototype.getWidth=function(){return(this.max-this.min);};Interval.prototype.expandToInclude=function(interval){if(interval.max>this.max){this.max=interval.max;} -if(interval.minmax||this.max=this.min&&max<=this.max);};Interval.prototype.containsPoint=function(p){return(p>=this.min&&p<=this.max);};jsts.index.bintree.Interval=Interval;})();jsts.index.DoubleBits=function(){};jsts.index.DoubleBits.powerOf2=function(exp){return Math.pow(2,exp);};jsts.index.DoubleBits.exponent=function(d){return jsts.index.DoubleBits.CVTFWD(64,d)-1023;};jsts.index.DoubleBits.CVTFWD=function(NumW,Qty){var Sign,Expo,Mant,Bin,nb01='';var Inf={32:{d:0x7F,c:0x80,b:0,a:0},64:{d:0x7FF0,c:0,b:0,a:0}};var ExW={32:8,64:11}[NumW],MtW=NumW-ExW-1;if(!Bin){Sign=Qty<0||1/Qty<0;if(!isFinite(Qty)){Bin=Inf[NumW];if(Sign){Bin.d+=1<<(NumW/4-1);} -Expo=Math.pow(2,ExW)-1;Mant=0;}} -if(!Bin){Expo={32:127,64:1023}[NumW];Mant=Math.abs(Qty);while(Mant>=2){Expo++;Mant/=2;} -while(Mant<1&&Expo>0){Expo--;Mant*=2;} -if(Expo<=0){Mant/=2;nb01='Zero or Denormal';} -if(NumW===32&&Expo>254){nb01='Too big for Single';Bin={d:Sign?0xFF:0x7F,c:0x80,b:0,a:0};Expo=Math.pow(2,ExW)-1;Mant=0;}} -return Expo;};(function(){var DoubleBits=jsts.index.DoubleBits;var Interval=jsts.index.bintree.Interval;var Key=function(interval){this.pt=0.0;this.level=0;this.computeKey(interval);};Key.computeLevel=function(interval){var dx=interval.getWidth(),level;level=DoubleBits.exponent(dx)+1;return level;};Key.prototype.getPoint=function(){return this.pt;};Key.prototype.getLevel=function(){return this.level;};Key.prototype.getInterval=function(){return this.interval;};Key.prototype.computeKey=function(itemInterval){this.level=Key.computeLevel(itemInterval);this.interval=new Interval();this.computeInterval(this.level,itemInterval);while(!this.interval.contains(itemInterval)){this.level+=1;this.computeInterval(this.level,itemInterval);}};Key.prototype.computeInterval=function(level,itemInterval){var size=DoubleBits.powerOf2(level);this.pt=Math.floor(itemInterval.getMin()/size)*size;this.interval.init(this.pt,this.pt+size);};jsts.index.bintree.Key=Key;})();jsts.operation.buffer.SubgraphDepthLocater=function(subgraphs){this.subgraphs=[];this.seg=new jsts.geom.LineSegment();this.subgraphs=subgraphs;};jsts.operation.buffer.SubgraphDepthLocater.prototype.subgraphs=null;jsts.operation.buffer.SubgraphDepthLocater.prototype.seg=null;jsts.operation.buffer.SubgraphDepthLocater.prototype.getDepth=function(p){var stabbedSegments=this.findStabbedSegments(p);if(stabbedSegments.length===0) -return 0;stabbedSegments.sort();var ds=stabbedSegments[0];return ds.leftDepth;};jsts.operation.buffer.SubgraphDepthLocater.prototype.findStabbedSegments=function(stabbingRayLeftPt){if(arguments.length===3){this.findStabbedSegments2.apply(this,arguments);return;} -var stabbedSegments=[];for(var i=0;ienv.getMaxY()) -continue;this.findStabbedSegments2(stabbingRayLeftPt,bsg.getDirectedEdges(),stabbedSegments);} -return stabbedSegments;};jsts.operation.buffer.SubgraphDepthLocater.prototype.findStabbedSegments2=function(stabbingRayLeftPt,dirEdges,stabbedSegments){if(arguments[1]instanceof jsts.geomgraph.DirectedEdge){this.findStabbedSegments3(stabbingRayLeftPt,dirEdges,stabbedSegments);return;} -for(var i=dirEdges.iterator();i.hasNext();){var de=i.next();if(!de.isForward()) -continue;this.findStabbedSegments3(stabbingRayLeftPt,de,stabbedSegments);}};jsts.operation.buffer.SubgraphDepthLocater.prototype.findStabbedSegments3=function(stabbingRayLeftPt,dirEdge,stabbedSegments){var pts=dirEdge.getEdge().getCoordinates();for(var i=0;ithis.seg.p1.y) -this.seg.reverse();var maxx=Math.max(this.seg.p0.x,this.seg.p1.x);if(maxxthis.seg.p1.y) -continue;if(jsts.algorithm.CGAlgorithms.computeOrientation(this.seg.p0,this.seg.p1,stabbingRayLeftPt)===jsts.algorithm.CGAlgorithms.RIGHT) -continue;var depth=dirEdge.getDepth(jsts.geomgraph.Position.LEFT);if(!this.seg.p0.equals(pts[i])) -depth=dirEdge.getDepth(jsts.geomgraph.Position.RIGHT);var ds=new jsts.operation.buffer.SubgraphDepthLocater.DepthSegment(this.seg,depth);stabbedSegments.push(ds);}};jsts.operation.buffer.SubgraphDepthLocater.DepthSegment=function(seg,depth){this.upwardSeg=new jsts.geom.LineSegment(seg);this.leftDepth=depth;};jsts.operation.buffer.SubgraphDepthLocater.DepthSegment.prototype.upwardSeg=null;jsts.operation.buffer.SubgraphDepthLocater.DepthSegment.prototype.leftDepth=null;jsts.operation.buffer.SubgraphDepthLocater.DepthSegment.prototype.compareTo=function(obj){var other=obj;var orientIndex=this.upwardSeg.orientationIndex(other.upwardSeg);if(orientIndex===0) -orientIndex=-1*other.upwardSeg.orientationIndex(upwardSeg);if(orientIndex!==0) -return orientIndex;return this.compareX(this.upwardSeg,other.upwardSeg);};jsts.operation.buffer.SubgraphDepthLocater.DepthSegment.prototype.compareX=function(seg0,seg1){var compare0=seg0.p0.compareTo(seg1.p0);if(compare0!==0) -return compare0;return seg0.p1.compareTo(seg1.p1);};jsts.noding.snapround.HotPixel=function(pt,scaleFactor,li){this.corner=[];this.originalPt=pt;this.pt=pt;this.scaleFactor=scaleFactor;this.li=li;if(this.scaleFactor!==1.0){this.pt=new jsts.geom.Coordinate(this.scale(pt.x),this.scale(pt.y));this.p0Scaled=new jsts.geom.Coordinate();this.p1Scaled=new jsts.geom.Coordinate();} -this.initCorners(this.pt);};jsts.noding.snapround.HotPixel.prototype.li=null;jsts.noding.snapround.HotPixel.prototype.pt=null;jsts.noding.snapround.HotPixel.prototype.originalPt=null;jsts.noding.snapround.HotPixel.prototype.ptScaled=null;jsts.noding.snapround.HotPixel.prototype.p0Scaled=null;jsts.noding.snapround.HotPixel.prototype.p1Scaled=null;jsts.noding.snapround.HotPixel.prototype.scaleFactor=undefined;jsts.noding.snapround.HotPixel.prototype.minx=undefined;jsts.noding.snapround.HotPixel.prototype.maxx=undefined;jsts.noding.snapround.HotPixel.prototype.miny=undefined;jsts.noding.snapround.HotPixel.prototype.maxy=undefined;jsts.noding.snapround.HotPixel.prototype.corner=null;jsts.noding.snapround.HotPixel.prototype.safeEnv=null;jsts.noding.snapround.HotPixel.prototype.getCoordinate=function(){return this.originalPt;};jsts.noding.snapround.HotPixel.SAFE_ENV_EXPANSION_FACTOR=0.75;jsts.noding.snapround.HotPixel.prototype.getSafeEnvelope=function(){if(this.safeEnv===null){var safeTolerance=jsts.noding.snapround.HotPixel.SAFE_ENV_EXPANSION_FACTOR/this.scaleFactor;this.safeEnv=new jsts.geom.Envelope(this.originalPt.x-safeTolerance,this.originalPt.x+safeTolerance,this.originalPt.y-safeTolerance,this.originalPt.y+safeTolerance);} -return this.safeEnv;};jsts.noding.snapround.HotPixel.prototype.initCorners=function(pt){var tolerance=0.5;this.minx=pt.x-tolerance;this.maxx=pt.x+tolerance;this.miny=pt.y-tolerance;this.maxy=pt.y+tolerance;this.corner[0]=new jsts.geom.Coordinate(this.maxx,this.maxy);this.corner[1]=new jsts.geom.Coordinate(this.minx,this.maxy);this.corner[2]=new jsts.geom.Coordinate(this.minx,this.miny);this.corner[3]=new jsts.geom.Coordinate(this.maxx,this.miny);};jsts.noding.snapround.HotPixel.prototype.scale=function(val){return Math.round(val*this.scaleFactor);};jsts.noding.snapround.HotPixel.prototype.intersects=function(p0,p1){if(this.scaleFactor===1.0) -return this.intersectsScaled(p0,p1);this.copyScaled(p0,this.p0Scaled);this.copyScaled(p1,this.p1Scaled);return this.intersectsScaled(this.p0Scaled,this.p1Scaled);};jsts.noding.snapround.HotPixel.prototype.copyScaled=function(p,pScaled){pScaled.x=this.scale(p.x);pScaled.y=this.scale(p.y);};jsts.noding.snapround.HotPixel.prototype.intersectsScaled=function(p0,p1){var segMinx=Math.min(p0.x,p1.x);var segMaxx=Math.max(p0.x,p1.x);var segMiny=Math.min(p0.y,p1.y);var segMaxy=Math.max(p0.y,p1.y);var isOutsidePixelEnv=this.maxxsegMaxx||this.maxysegMaxy;if(isOutsidePixelEnv) -return false;var intersects=this.intersectsToleranceSquare(p0,p1);jsts.util.Assert.isTrue(!(isOutsidePixelEnv&&intersects),'Found bad envelope test');return intersects;};jsts.noding.snapround.HotPixel.prototype.intersectsToleranceSquare=function(p0,p1){var intersectsLeft=false;var intersectsBottom=false;this.li.computeIntersection(p0,p1,this.corner[0],this.corner[1]);if(this.li.isProper()) -return true;this.li.computeIntersection(p0,p1,this.corner[1],this.corner[2]);if(this.li.isProper()) -return true;if(this.li.hasIntersection()) -intersectsLeft=true;this.li.computeIntersection(p0,p1,this.corner[2],this.corner[3]);if(this.li.isProper()) -return true;if(this.li.hasIntersection()) -intersectsBottom=true;this.li.computeIntersection(p0,p1,this.corner[3],this.corner[0]);if(this.li.isProper()) -return true;if(intersectsLeft&&intersectsBottom) -return true;if(p0.equals(this.pt)) -return true;if(p1.equals(this.pt)) -return true;return false;};jsts.noding.snapround.HotPixel.prototype.intersectsPixelClosure=function(p0,p1){this.li.computeIntersection(p0,p1,this.corner[0],this.corner[1]);if(this.li.hasIntersection()) -return true;this.li.computeIntersection(p0,p1,this.corner[1],this.corner[2]);if(this.li.hasIntersection()) -return true;this.li.computeIntersection(p0,p1,this.corner[2],this.corner[3]);if(this.li.hasIntersection()) -return true;this.li.computeIntersection(p0,p1,this.corner[3],this.corner[0]);if(this.li.hasIntersection()) -return true;return false;};jsts.noding.snapround.HotPixel.prototype.addSnappedNode=function(segStr,segIndex){var p0=segStr.getCoordinate(segIndex);var p1=segStr.getCoordinate(segIndex+1);if(this.intersects(p0,p1)){segStr.addIntersection(this.getCoordinate(),segIndex);return true;} -return false;};jsts.operation.buffer.BufferInputLineSimplifier=function(inputLine){this.inputLine=inputLine;};jsts.operation.buffer.BufferInputLineSimplifier.simplify=function(inputLine,distanceTol){var simp=new jsts.operation.buffer.BufferInputLineSimplifier(inputLine);return simp.simplify(distanceTol);};jsts.operation.buffer.BufferInputLineSimplifier.INIT=0;jsts.operation.buffer.BufferInputLineSimplifier.DELETE=1;jsts.operation.buffer.BufferInputLineSimplifier.KEEP=1;jsts.operation.buffer.BufferInputLineSimplifier.prototype.inputLine=null;jsts.operation.buffer.BufferInputLineSimplifier.prototype.distanceTol=null;jsts.operation.buffer.BufferInputLineSimplifier.prototype.isDeleted=null;jsts.operation.buffer.BufferInputLineSimplifier.prototype.angleOrientation=jsts.algorithm.CGAlgorithms.COUNTERCLOCKWISE;jsts.operation.buffer.BufferInputLineSimplifier.prototype.simplify=function(distanceTol){this.distanceTol=Math.abs(distanceTol);if(distanceTol<0) -this.angleOrientation=jsts.algorithm.CGAlgorithms.CLOCKWISE;this.isDeleted=[];this.isDeleted.length=this.inputLine.length;var isChanged=false;do{isChanged=this.deleteShallowConcavities();}while(isChanged);return this.collapseLine();};jsts.operation.buffer.BufferInputLineSimplifier.prototype.deleteShallowConcavities=function(){var index=1;var maxIndex=this.inputLine.length-1;var midIndex=this.findNextNonDeletedIndex(index);var lastIndex=this.findNextNonDeletedIndex(midIndex);var isChanged=false;while(lastIndexpe.xValue){return 1;} -if(this.eventTypepe.eventType){return 1;} -return 0;};jsts.geom.CoordinateList=function(coord,allowRepeated){this.array=[];allowRepeated=(allowRepeated===undefined)?true:allowRepeated;if(coord!==undefined){this.add(coord,allowRepeated);}};jsts.geom.CoordinateList.prototype=new javascript.util.ArrayList();jsts.geom.CoordinateList.prototype.iterator=null;jsts.geom.CoordinateList.prototype.remove=null;jsts.geom.CoordinateList.prototype.get=function(i){return this.array[i];};jsts.geom.CoordinateList.prototype.set=function(i,e){var o=this.array[i];this.array[i]=e;return o;};jsts.geom.CoordinateList.prototype.size=function(){return this.array.length;};jsts.geom.CoordinateList.prototype.add=function(){if(arguments.length>1){return this.addCoordinates.apply(this,arguments);}else{return this.array.push(arguments[0]);}};jsts.geom.CoordinateList.prototype.addCoordinates=function(coord,allowRepeated,direction){if(coord instanceof jsts.geom.Coordinate){return this.addCoordinate.apply(this,arguments);}else if(typeof coord==='number'){return this.insertCoordinate.apply(this,arguments);} -direction=direction||true;if(direction){for(var i=0;i=0;i--){this.addCoordinate(coord[i],allowRepeated);}} -return true;};jsts.geom.CoordinateList.prototype.addCoordinate=function(coord,allowRepeated){if(!allowRepeated){if(this.size()>=1){var last=this.get(this.size()-1);if(last.equals2D(coord))return;}} -this.add(coord);};jsts.geom.CoordinateList.prototype.insertCoordinate=function(index,coord,allowRepeated){if(!allowRepeated){var before=index>0?index-1:-1;if(before!==-1&&this.get(before).equals2D(coord)){return;} -var after=index0){this.addCoordinate(new jsts.geom.Coordinate(this.get(0)),false);}};jsts.geom.CoordinateList.prototype.toArray=function(){return this.array;};jsts.geom.CoordinateList.prototype.toCoordinateArray=function(){return this.array;};jsts.operation.buffer.OffsetSegmentGenerator=function(precisionModel,bufParams,distance){this.seg0=new jsts.geom.LineSegment();this.seg1=new jsts.geom.LineSegment();this.offset0=new jsts.geom.LineSegment();this.offset1=new jsts.geom.LineSegment();this.precisionModel=precisionModel;this.bufParams=bufParams;this.li=new jsts.algorithm.RobustLineIntersector();this.filletAngleQuantum=Math.PI/2.0/bufParams.getQuadrantSegments();if(this.bufParams.getQuadrantSegments()>=8&&this.bufParams.getJoinStyle()===jsts.operation.buffer.BufferParameters.JOIN_ROUND){this.closingSegLengthFactor=jsts.operation.buffer.OffsetSegmentGenerator.MAX_CLOSING_SEG_LEN_FACTOR;} -this.init(distance);};jsts.operation.buffer.OffsetSegmentGenerator.OFFSET_SEGMENT_SEPARATION_FACTOR=1.0E-3;jsts.operation.buffer.OffsetSegmentGenerator.INSIDE_TURN_VERTEX_SNAP_DISTANCE_FACTOR=1.0E-3;jsts.operation.buffer.OffsetSegmentGenerator.CURVE_VERTEX_SNAP_DISTANCE_FACTOR=1.0E-6;jsts.operation.buffer.OffsetSegmentGenerator.MAX_CLOSING_SEG_LEN_FACTOR=80;jsts.operation.buffer.OffsetSegmentGenerator.prototype.maxCurveSegmentError=0.0;jsts.operation.buffer.OffsetSegmentGenerator.prototype.filletAngleQuantum=null;jsts.operation.buffer.OffsetSegmentGenerator.prototype.closingSegLengthFactor=1;jsts.operation.buffer.OffsetSegmentGenerator.prototype.segList=null;jsts.operation.buffer.OffsetSegmentGenerator.prototype.distance=0.0;jsts.operation.buffer.OffsetSegmentGenerator.prototype.precisionModel=null;jsts.operation.buffer.OffsetSegmentGenerator.prototype.bufParams=null;jsts.operation.buffer.OffsetSegmentGenerator.prototype.li=null;jsts.operation.buffer.OffsetSegmentGenerator.prototype.s0=null;jsts.operation.buffer.OffsetSegmentGenerator.prototype.s1=null;jsts.operation.buffer.OffsetSegmentGenerator.prototype.s2=null;jsts.operation.buffer.OffsetSegmentGenerator.prototype.seg0=null;jsts.operation.buffer.OffsetSegmentGenerator.prototype.seg1=null;jsts.operation.buffer.OffsetSegmentGenerator.prototype.offset0=null;jsts.operation.buffer.OffsetSegmentGenerator.prototype.offset1=null;jsts.operation.buffer.OffsetSegmentGenerator.prototype.side=0;jsts.operation.buffer.OffsetSegmentGenerator.prototype.hasNarrowConcaveAngle=false;jsts.operation.buffer.OffsetSegmentGenerator.prototype.hasNarrowConcaveAngle=function(){return this.hasNarrowConcaveAngle;};jsts.operation.buffer.OffsetSegmentGenerator.prototype.init=function(distance){this.distance=distance;this.maxCurveSegmentError=this.distance*(1-Math.cos(this.filletAngleQuantum/2.0));this.segList=new jsts.operation.buffer.OffsetSegmentString();this.segList.setPrecisionModel(this.precisionModel);this.segList.setMinimumVertexDistance(this.distance*jsts.operation.buffer.OffsetSegmentGenerator.CURVE_VERTEX_SNAP_DISTANCE_FACTOR);};jsts.operation.buffer.OffsetSegmentGenerator.prototype.initSideSegments=function(s1,s2,side){this.s1=s1;this.s2=s2;this.side=side;this.seg1.setCoordinates(this.s1,this.s2);this.computeOffsetSegment(this.seg1,this.side,this.distance,this.offset1);};jsts.operation.buffer.OffsetSegmentGenerator.prototype.getCoordinates=function(){return this.segList.getCoordinates();};jsts.operation.buffer.OffsetSegmentGenerator.prototype.closeRing=function(){this.segList.closeRing();};jsts.operation.buffer.OffsetSegmentGenerator.prototype.addSegments=function(pt,isForward){this.segList.addPts(pt,isForward);};jsts.operation.buffer.OffsetSegmentGenerator.prototype.addFirstSegment=function(){this.segList.addPt(this.offset1.p0);};jsts.operation.buffer.OffsetSegmentGenerator.prototype.addLastSegment=function(){this.segList.addPt(this.offset1.p1);};jsts.operation.buffer.OffsetSegmentGenerator.prototype.addNextSegment=function(p,addStartPoint){this.s0=this.s1;this.s1=this.s2;this.s2=p;this.seg0.setCoordinates(this.s0,this.s1);this.computeOffsetSegment(this.seg0,this.side,this.distance,this.offset0);this.seg1.setCoordinates(this.s1,this.s2);this.computeOffsetSegment(this.seg1,this.side,this.distance,this.offset1);if(this.s1.equals(this.s2)) -return;var orientation=jsts.algorithm.CGAlgorithms.computeOrientation(this.s0,this.s1,this.s2);var outsideTurn=(orientation===jsts.algorithm.CGAlgorithms.CLOCKWISE&&this.side===jsts.geomgraph.Position.LEFT)||(orientation===jsts.algorithm.CGAlgorithms.COUNTERCLOCKWISE&&this.side===jsts.geomgraph.Position.RIGHT);if(orientation==0){this.addCollinear(addStartPoint);}else if(outsideTurn){this.addOutsideTurn(orientation,addStartPoint);}else{this.addInsideTurn(orientation,addStartPoint);}};jsts.operation.buffer.OffsetSegmentGenerator.prototype.addCollinear=function(addStartPoint){this.li.computeIntersection(this.s0,this.s1,this.s1,this.s2);var numInt=this.li.getIntersectionNum();if(numInt>=2){if(this.bufParams.getJoinStyle()===jsts.operation.buffer.BufferParameters.JOIN_BEVEL||this.bufParams.getJoinStyle()===jsts.operation.buffer.BufferParameters.JOIN_MITRE){if(addStartPoint) -this.segList.addPt(this.offset0.p1);this.segList.addPt(this.offset1.p0);}else{this.addFillet(this.s1,this.offset0.p1,this.offset1.p0,jsts.algorithm.CGAlgorithms.CLOCKWISE,this.distance);}}};jsts.operation.buffer.OffsetSegmentGenerator.prototype.addOutsideTurn=function(orientation,addStartPoint){if(this.offset0.p1.distance(this.offset1.p0)0){var mid0=new jsts.geom.Coordinate((this.closingSegLengthFactor*this.offset0.p1.x+this.s1.x)/(this.closingSegLengthFactor+1),(this.closingSegLengthFactor*this.offset0.p1.y+this.s1.y)/(this.closingSegLengthFactor+1));this.segList.addPt(mid0);var mid1=new jsts.geom.Coordinate((this.closingSegLengthFactor*this.offset1.p0.x+this.s1.x)/(this.closingSegLengthFactor+1),(this.closingSegLengthFactor*this.offset1.p0.y+this.s1.y)/(this.closingSegLengthFactor+1));this.segList.addPt(mid1);}else{this.segList.addPt(this.s1);} -this.segList.addPt(this.offset1.p0);}}};jsts.operation.buffer.OffsetSegmentGenerator.prototype.computeOffsetSegment=function(seg,side,distance,offset){var sideSign=side===jsts.geomgraph.Position.LEFT?1:-1;var dx=seg.p1.x-seg.p0.x;var dy=seg.p1.y-seg.p0.y;var len=Math.sqrt(dx*dx+dy*dy);var ux=sideSign*distance*dx/len;var uy=sideSign*distance*dy/len;offset.p0.x=seg.p0.x-uy;offset.p0.y=seg.p0.y+ux;offset.p1.x=seg.p1.x-uy;offset.p1.y=seg.p1.y+ux;};jsts.operation.buffer.OffsetSegmentGenerator.prototype.addLineEndCap=function(p0,p1){var seg=new jsts.geom.LineSegment(p0,p1);var offsetL=new jsts.geom.LineSegment();this.computeOffsetSegment(seg,jsts.geomgraph.Position.LEFT,this.distance,offsetL);var offsetR=new jsts.geom.LineSegment();this.computeOffsetSegment(seg,jsts.geomgraph.Position.RIGHT,this.distance,offsetR);var dx=p1.x-p0.x;var dy=p1.y-p0.y;var angle=Math.atan2(dy,dx);switch(this.bufParams.getEndCapStyle()){case jsts.operation.buffer.BufferParameters.CAP_ROUND:this.segList.addPt(offsetL.p1);this.addFillet(p1,angle+Math.PI/2,angle-Math.PI/2,jsts.algorithm.CGAlgorithms.CLOCKWISE,this.distance);this.segList.addPt(offsetR.p1);break;case jsts.operation.buffer.BufferParameters.CAP_FLAT:this.segList.addPt(offsetL.p1);this.segList.addPt(offsetR.p1);break;case jsts.operation.buffer.BufferParameters.CAP_SQUARE:var squareCapSideOffset=new jsts.geom.Coordinate();squareCapSideOffset.x=Math.abs(this.distance)*Math.cos(angle);squareCapSideOffset.y=Math.abs(this.distance)*Math.sin(angle);var squareCapLOffset=new jsts.geom.Coordinate(offsetL.p1.x+ -squareCapSideOffset.x,offsetL.p1.y+squareCapSideOffset.y);var squareCapROffset=new jsts.geom.Coordinate(offsetR.p1.x+ -squareCapSideOffset.x,offsetR.p1.y+squareCapSideOffset.y);this.segList.addPt(squareCapLOffset);this.segList.addPt(squareCapROffset);break;}};jsts.operation.buffer.OffsetSegmentGenerator.prototype.addMitreJoin=function(p,offset0,offset1,distance){var isMitreWithinLimit=true;var intPt=null;try{intPt=jsts.algorithm.HCoordinate.intersection(offset0.p0,offset0.p1,offset1.p0,offset1.p1);var mitreRatio=distance<=0.0?1.0:intPt.distance(p)/Math.abs(distance);if(mitreRatio>this.bufParams.getMitreLimit()) -this.isMitreWithinLimit=false;}catch(e){if(e instanceof jsts.error.NotRepresentableError){intPt=new jsts.geom.Coordinate(0,0);this.isMitreWithinLimit=false;}} -if(isMitreWithinLimit){this.segList.addPt(intPt);}else{this.addLimitedMitreJoin(offset0,offset1,distance,bufParams.getMitreLimit());}};jsts.operation.buffer.OffsetSegmentGenerator.prototype.addLimitedMitreJoin=function(offset0,offset1,distance,mitreLimit){var basePt=this.seg0.p1;var ang0=jsts.algorithm.Angle.angle(basePt,this.seg0.p0);var ang1=jsts.algorithm.Angle.angle(basePt,this.seg1.p1);var angDiff=jsts.algorithm.Angle.angleBetweenOriented(this.seg0.p0,basePt,this.seg1.p1);var angDiffHalf=angDiff/2;var midAng=jsts.algorithm.Angle.normalize(ang0+angDiffHalf);var mitreMidAng=jsts.algorithm.Angle.normalize(midAng+Math.PI);var mitreDist=mitreLimit*distance;var bevelDelta=mitreDist*Math.abs(Math.sin(angDiffHalf));var bevelHalfLen=distance-bevelDelta;var bevelMidX=basePt.x+mitreDist*Math.cos(mitreMidAng);var bevelMidY=basePt.y+mitreDist*Math.sin(mitreMidAng);var bevelMidPt=new jsts.geom.Coordinate(bevelMidX,bevelMidY);var mitreMidLine=new jsts.geom.LineSegment(basePt,bevelMidPt);var bevelEndLeft=mitreMidLine.pointAlongOffset(1.0,bevelHalfLen);var bevelEndRight=mitreMidLine.pointAlongOffset(1.0,-bevelHalfLen);if(this.side==jsts.geomgraph.Position.LEFT){this.segList.addPt(bevelEndLeft);this.segList.addPt(bevelEndRight);}else{this.segList.addPt(bevelEndRight);this.segList.addPt(bevelEndLeft);}};jsts.operation.buffer.OffsetSegmentGenerator.prototype.addBevelJoin=function(offset0,offset1){this.segList.addPt(offset0.p1);this.segList.addPt(offset1.p0);};jsts.operation.buffer.OffsetSegmentGenerator.prototype.addFillet=function(p,p0,p1,direction,radius){if(!(p1 instanceof jsts.geom.Coordinate)){this.addFillet2.apply(this,arguments);return;} -var dx0=p0.x-p.x;var dy0=p0.y-p.y;var startAngle=Math.atan2(dy0,dx0);var dx1=p1.x-p.x;var dy1=p1.y-p.y;var endAngle=Math.atan2(dy1,dx1);if(direction===jsts.algorithm.CGAlgorithms.CLOCKWISE){if(startAngle<=endAngle) -startAngle+=2.0*Math.PI;}else{if(startAngle>=endAngle) -startAngle-=2.0*Math.PI;} -this.segList.addPt(p0);this.addFillet(p,startAngle,endAngle,direction,radius);this.segList.addPt(p1);};jsts.operation.buffer.OffsetSegmentGenerator.prototype.addFillet2=function(p,startAngle,endAngle,direction,radius){var directionFactor=direction===jsts.algorithm.CGAlgorithms.CLOCKWISE?-1:1;var totalAngle=Math.abs(startAngle-endAngle);var nSegs=parseInt((totalAngle/this.filletAngleQuantum+0.5));if(nSegs<1) -return;var initAngle,currAngleInc;initAngle=0.0;currAngleInc=totalAngle/nSegs;var currAngle=initAngle;var pt=new jsts.geom.Coordinate();while(currAnglex2){return x1;} -return x2;};jsts.geomgraph.index.MonotoneChainEdge.prototype.computeIntersects=function(mce,si){for(var i=0;i=iPrev) -pPrev=eiPrev.coord;var label=new jsts.geomgraph.Label(edge.getLabel());label.flip();var e=new jsts.geomgraph.EdgeEnd(edge,eiCurr.coord,pPrev,label);l.add(e);};jsts.operation.relate.EdgeEndBuilder.prototype.createEdgeEndForNext=function(edge,l,eiCurr,eiNext){var iNext=eiCurr.segmentIndex+1;if(iNext>=edge.getNumPoints()&&eiNext===null) -return;var pNext=edge.getCoordinate(iNext);if(eiNext!==null&&eiNext.segmentIndex===eiCurr.segmentIndex) -pNext=eiNext.coord;var e=new jsts.geomgraph.EdgeEnd(edge,eiCurr.coord,pNext,new jsts.geomgraph.Label(edge.getLabel()));l.add(e);};})();(function(){var ArrayList=javascript.util.ArrayList;var TreeSet=javascript.util.TreeSet;var CoordinateFilter=jsts.geom.CoordinateFilter;jsts.util.UniqueCoordinateArrayFilter=function(){this.treeSet=new TreeSet();this.list=new ArrayList();};jsts.util.UniqueCoordinateArrayFilter.prototype=new CoordinateFilter();jsts.util.UniqueCoordinateArrayFilter.prototype.treeSet=null;jsts.util.UniqueCoordinateArrayFilter.prototype.list=null;jsts.util.UniqueCoordinateArrayFilter.prototype.getCoordinates=function(){return this.list.toArray();};jsts.util.UniqueCoordinateArrayFilter.prototype.filter=function(coord){if(!this.treeSet.contains(coord)){this.list.add(coord);this.treeSet.add(coord);}};})();(function(){var CGAlgorithms=jsts.algorithm.CGAlgorithms;var UniqueCoordinateArrayFilter=jsts.util.UniqueCoordinateArrayFilter;var Assert=jsts.util.Assert;var Stack=javascript.util.Stack;var ArrayList=javascript.util.ArrayList;var Arrays=javascript.util.Arrays;var RadialComparator=function(origin){this.origin=origin;};RadialComparator.prototype.origin=null;RadialComparator.prototype.compare=function(o1,o2){var p1=o1;var p2=o2;return RadialComparator.polarCompare(this.origin,p1,p2);};RadialComparator.polarCompare=function(o,p,q){var dxp=p.x-o.x;var dyp=p.y-o.y;var dxq=q.x-o.x;var dyq=q.y-o.y;var orient=CGAlgorithms.computeOrientation(o,p,q);if(orient==CGAlgorithms.COUNTERCLOCKWISE) -return 1;if(orient==CGAlgorithms.CLOCKWISE) -return-1;var op=dxp*dxp+dyp*dyp;var oq=dxq*dxq+dyq*dyq;if(opoq){return 1;} -return 0;};jsts.algorithm.ConvexHull=function(){if(arguments.length===1){var geometry=arguments[0];this.inputPts=jsts.algorithm.ConvexHull.extractCoordinates(geometry);this.geomFactory=geometry.getFactory();}else{this.pts=arguments[0];this.geomFactory=arguments[1];}};jsts.algorithm.ConvexHull.prototype.geomFactory=null;jsts.algorithm.ConvexHull.prototype.inputPts=null;jsts.algorithm.ConvexHull.extractCoordinates=function(geom){var filter=new UniqueCoordinateArrayFilter();geom.apply(filter);return filter.getCoordinates();};jsts.algorithm.ConvexHull.prototype.getConvexHull=function(){if(this.inputPts.length==0){return this.geomFactory.createGeometryCollection(null);} -if(this.inputPts.length==1){return this.geomFactory.createPoint(this.inputPts[0]);} -if(this.inputPts.length==2){return this.geomFactory.createLineString(this.inputPts);} -var reducedPts=this.inputPts;if(this.inputPts.length>50){reducedPts=this.reduce(this.inputPts);} -var sortedPts=this.preSort(reducedPts);var cHS=this.grahamScan(sortedPts);var cH=cHS.toArray();return this.lineOrPolygon(cH);};jsts.algorithm.ConvexHull.prototype.reduce=function(inputPts){var polyPts=this.computeOctRing(inputPts);if(polyPts==null) -return this.inputPts;var reducedSet=new javascript.util.TreeSet();for(var i=0;i0){p=ps.pop();} -p=ps.push(p);p=ps.push(c[i]);} -p=ps.push(c[0]);return ps;};jsts.algorithm.ConvexHull.prototype.isBetween=function(c1,c2,c3){if(CGAlgorithms.computeOrientation(c1,c2,c3)!==0){return false;} -if(c1.x!=c3.x){if(c1.x<=c2.x&&c2.x<=c3.x){return true;} -if(c3.x<=c2.x&&c2.x<=c1.x){return true;}} -if(c1.y!=c3.y){if(c1.y<=c2.y&&c2.y<=c3.y){return true;} -if(c3.y<=c2.y&&c2.y<=c1.y){return true;}} -return false;};jsts.algorithm.ConvexHull.prototype.computeOctRing=function(inputPts){var octPts=this.computeOctPts(inputPts);var coordList=new jsts.geom.CoordinateList();coordList.add(octPts,false);if(coordList.size()<3){return null;} -coordList.closeRing();return coordList.toCoordinateArray();};jsts.algorithm.ConvexHull.prototype.computeOctPts=function(inputPts){var pts=[];for(var j=0;j<8;j++){pts[j]=inputPts[0];} -for(var i=1;ipts[2].y){pts[2]=inputPts[i];} -if(inputPts[i].x+inputPts[i].y>pts[3].x+pts[3].y){pts[3]=inputPts[i];} -if(inputPts[i].x>pts[4].x){pts[4]=inputPts[i];} -if(inputPts[i].x-inputPts[i].y>pts[5].x-pts[5].y){pts[5]=inputPts[i];} -if(inputPts[i].y=pts.length){index=0;} -return index;};jsts.algorithm.MinimumDiameter.computeC=function(a,b,p){return a*p.y-b*p.x;};jsts.algorithm.MinimumDiameter.computeSegmentForLine=function(a,b,c){var p0;var p1;if(Math.abs(b)>Math.abs(a)){p0=new jsts.geom.Coordinate(0,c/b);p1=new jsts.geom.Coordinate(1,c/b-a/b);} -else{p0=new jsts.geom.Coordinate(c/a,0);p1=new jsts.geom.Coordinate(c/a-b/a,1);} -return new jsts.geom.LineSegment(p0,p1);};jsts.algorithm.MinimumDiameter.prototype.getLength=function(){this.computeMinimumDiameter();return this.minWidth;};jsts.algorithm.MinimumDiameter.prototype.getWidthCoordinate=function(){this.computeMinimumDiameter();return this.minWidthPt;};jsts.algorithm.MinimumDiameter.prototype.getSupportingSegment=function(){this.computeMinimumDiameter();var coord=[this.minBaseSeg.p0,this.minBaseSeg.p1];return jsts.algorithm.MinimumDiameter.inputGeom.getFactory().createLineString(coord);};jsts.algorithm.MinimumDiameter.prototype.getDiameter=function(){this.computeMinimumDiameter();if(this.minWidthPt===null){return jsts.algorithm.MinimumDiameter.inputGeom.getFactory().createLineString(null);} -var basePt=this.minBaseSeg.project(this.minWidthPt);return jsts.algorithm.MinimumDiameter.inputGeom.getFactory().createLineString([basePt,this.minWidthPt]);};jsts.algorithm.MinimumDiameter.prototype.computeMinimumDiameter=function(){if(this.minWidthPt!==null){return;} -if(jsts.algorithm.MinimumDiameter.isConvex) -this.computeWidthConvex(jsts.algorithm.MinimumDiameter.inputGeom);else{var convexGeom=new jsts.algorithm.ConvexHull(jsts.algorithm.MinimumDiameter.inputGeom).getConvexHull();this.computeWidthConvex(convexGeom);}};jsts.algorithm.MinimumDiameter.prototype.computeWidthConvex=function(convexGeom){if(convexGeom instanceof jsts.geom.Polygon){this.convexHullPts=convexGeom.getExteriorRing().getCoordinates();}else{this.convexHullPts=convexGeom.getCoordinates();} -if(this.convexHullPts.length===0){this.minWidth=0;this.minWidthPt=null;this.minBaseSeg=null;}else if(this.convexHullPts.length===1){this.minWidth=0;this.minWidthPt=this.convexHullPts[0];this.minBaseSeg.p0=this.convexHullPts[0];this.minBaseSeg.p1=this.convexHullPts[0];}else if(this.convexHullPts.length===2||this.convexHullPts.length===3){this.minWidth=0;this.minWidthPt=this.convexHullPts[0];this.minBaseSeg.p0=this.convexHullPts[0];this.minBaseSeg.p1=this.convexHullPts[1];}else{this.computeConvexRingMinDiameter(this.convexHullPts);}};jsts.algorithm.MinimumDiameter.prototype.computeConvexRingMinDiameter=function(pts){this.minWidth=Number.MAX_VALUE;var currMaxIndex=1;var seg=new jsts.geom.LineSegment();for(var i=0;i=maxPerpDistance){maxPerpDistance=nextPerpDistance;maxIndex=nextIndex;nextIndex=jsts.algorithm.MinimumDiameter.nextIndex(pts,maxIndex);nextPerpDistance=seg.distancePerpendicular(pts[nextIndex]);} -if(maxPerpDistancemaxPara)maxPara=paraC;if(paraCmaxPerp)maxPerp=perpC;if(perpC0.0){return jsts.triangulate.quadedge.Vertex.LEFT;} -if(sa<0.0){return jsts.triangulate.quadedge.Vertex.RIGHT;} -if((a.getX()*b.getX()<0.0)||(a.getY()*b.getY()<0.0)){return jsts.triangulate.quadedge.Vertex.BEHIND;} -if(a.magn()0);};jsts.triangulate.quadedge.Vertex.prototype.rightOf=function(e){return this.isCCW(e.dest(),e.orig());};jsts.triangulate.quadedge.Vertex.prototype.leftOf=function(e){return this.isCCW(e.orig(),e.dest());};jsts.triangulate.quadedge.Vertex.prototype.bisector=function(a,b){var dx,dy,l1,l2;dx=b.getX()-a.getX();dy=b.getY()-a.getY();l1=new jsts.algorithm.HCoordinate(a.getX()+(dx/2.0),a.getY()+ -(dy/2.0),1.0);l2=new jsts.algorithm.HCoordinate(a.getX()-dy+(dx/2.0),a.getY()+ -dx+(dy/2.0),1.0);return new jsts.algorithm.HCoordinate(l1,l2);};jsts.triangulate.quadedge.Vertex.prototype.distance=function(v1,v2){return v1.p.distance(v2.p);};jsts.triangulate.quadedge.Vertex.prototype.circumRadiusRatio=function(b,c){var x,radius,edgeLength,el;x=this.circleCenter(b,c);radius=this.distance(x,b);edgeLength=this.distance(this,b);el=this.distance(b,c);if(el=1){pt=ring.getCoordinateN(0);} -this.validErr=new jsts.operation.valid.TopologyValidationError(jsts.operation.valid.TopologyValidationError.RING_NOT_CLOSED,pt);}};jsts.operation.valid.IsValidOp.prototype.checkTooFewPoints=function(graph){if(graph.hasTooFewPoints){this.validErr=new jsts.operation.valid.TopologyValidationError(jsts.operation.valid.TopologyValidationError.TOO_FEW_POINTS,graph.getInvalidPoint());return;}};jsts.operation.valid.IsValidOp.prototype.checkConsistentArea=function(graph){var cat=new jsts.operation.valid.ConsistentAreaTester(graph);var isValidArea=cat.isNodeConsistentArea();if(!isValidArea){this.validErr=new jsts.operation.valid.TopologyValidationError(jsts.operation.valid.TopologyValidationError.SELF_INTERSECTION,cat.getInvalidPoint());return;} -if(cat.hasDuplicateRings()){this.validErr=new jsts.operation.valid.TopologyValidationError(jsts.operation.valid.TopologyValidationError.DUPLICATE_RINGS,cat.getInvalidPoint());}};jsts.operation.valid.IsValidOp.prototype.checkNoSelfIntersectingRings=function(graph){for(var i=graph.getEdgeIterator();i.hasNext();){var e=i.next();this.checkNoSelfIntersectingRing(e.getEdgeIntersectionList());if(this.validErr!=null){return;}}};jsts.operation.valid.IsValidOp.prototype.checkNoSelfIntersectingRing=function(eiList){var nodeSet=[];var isFirst=true;for(var i=eiList.iterator();i.hasNext();){var ei=i.next();if(isFirst){isFirst=false;continue;} -if(nodeSet.indexOf(ei.coord)>=0){this.validErr=new jsts.operation.valid.TopologyValidationError(jsts.operation.valid.TopologyValidationError.RING_SELF_INTERSECTION,ei.coord);return;}else{nodeSet.push(ei.coord);}}};jsts.operation.valid.IsValidOp.prototype.checkHolesInShell=function(p,graph){var shell=p.getExteriorRing();var pir=new jsts.algorithm.MCPointInRing(shell);for(var i=0;i0){if(x2>0){return-sign;} -else{return sign;}} -else{if(x2>0){return sign;} -else{return-sign;}}} -if((y1===0.0)||(x2===0.0)){if(y2>0){if(x1>0){return sign;} -else{return-sign;}} -else{if(x1>0){return-sign;} -else{return sign;}}} -if(0.0y2){sign=-sign;swap=x1;x1=x2;x2=swap;swap=y1;y1=y2;y2=swap;}} -else{if(y1<=-y2){sign=-sign;x2=-x2;y2=-y2;} -else{swap=x1;x1=-x2;x2=swap;swap=y1;y1=-y2;y2=swap;}}} -else{if(0.0=y2){x1=-x1;y1=-y1;x2=-x2;y2=-y2;} -else{sign=-sign;swap=-x1;x1=-x2;x2=swap;swap=-y1;y1=-y2;y2=swap;}}} -if(0.0x2){return sign;}} -else{return sign;}} -else{if(0.0=x2){sign=-sign;x1=-x1;x2=-x2;} -else{return-sign;}}} -while(true){count=count+1;k=Math.floor(x2/x1);x2=x2-k*x1;y2=y2-k*y1;if(y2<0.0){return-sign;} -if(y2>y1){return sign;} -if(x1>x2+x2){if(y1y2+y2){return-sign;} -else{x2=x1-x2;y2=y1-y2;sign=-sign;}} -if(y2===0.0){if(x2===0.0){return 0;} -else{return-sign;}} -if(x2===0.0){return sign;} -k=Math.floor(x1/x2);x1=x1-k*x2;y1=y1-k*y2;if(y1<0.0){return sign;} -if(y1>y2){return-sign;} -if(x2>x1+x1){if(y2y1+y1){return sign;} -else{x1=x2-x1;y1=y2-y1;sign=-sign;}} -if(y1===0.0){if(x1===0.0){return 0;} -else{return sign;}} -if(x1===0.0){return-sign;}}};jsts.algorithm.RobustDeterminant.orientationIndex=function(p1,p2,q){var dx1=p2.x-p1.x;var dy1=p2.y-p1.y;var dx2=q.x-p2.x;var dy2=q.y-p2.y;return jsts.algorithm.RobustDeterminant.signOfDet2x2(dx1,dy1,dx2,dy2);};jsts.index.quadtree.NodeBase=function(){this.subnode=new Array(4);this.subnode[0]=null;this.subnode[1]=null;this.subnode[2]=null;this.subnode[3]=null;this.items=[];};jsts.index.quadtree.NodeBase.prototype.getSubnodeIndex=function(env,centre){var subnodeIndex=-1;if(env.getMinX()>=centre.x){if(env.getMinY()>=centre.y){subnodeIndex=3;} -if(env.getMaxY()<=centre.y){subnodeIndex=1;}} -if(env.getMaxX()<=centre.x){if(env.getMinY()>=centre.y){subnodeIndex=2;} -if(env.getMaxY()<=centre.y){subnodeIndex=0;}} -return subnodeIndex;};jsts.index.quadtree.NodeBase.prototype.getItems=function(){return this.items;};jsts.index.quadtree.NodeBase.prototype.hasItems=function(){return(this.items.length>0);};jsts.index.quadtree.NodeBase.prototype.add=function(item){this.items.push(item);};jsts.index.quadtree.NodeBase.prototype.remove=function(itemEnv,item){if(!this.isSearchMatch(itemEnv)){return false;} -var found=false,i=0;for(i;i<4;i++){if(this.subnode[i]!==null){found=this.subnode[i].remove(itemEnv,item);if(found){if(this.subnode[i].isPrunable()){this.subnode[i]=null;} -break;}}} -if(found){return found;} -if(this.items.indexOf(item)!==-1){for(var i=this.items.length-1;i>=0;i--){if(this.items[i]===item){this.items.splice(i,1);}} -found=true;} -return found;};jsts.index.quadtree.NodeBase.prototype.isPrunable=function(){return!(this.hasChildren()||this.hasItems());};jsts.index.quadtree.NodeBase.prototype.hasChildren=function(){var i=0;for(i;i<4;i++){if(this.subnode[i]!==null){return true;}} -return false;};jsts.index.quadtree.NodeBase.prototype.isEmpty=function(){var isEmpty=true;if(this.items.length>0){isEmpty=false;} -var i=0;for(i;i<4;i++){if(this.subnode[i]!==null){if(!this.subnode[i].isEmpty()){isEmpty=false;}}} -return isEmpty;};jsts.index.quadtree.NodeBase.prototype.addAllItems=function(resultItems){resultItems=resultItems.concat(this.items);var i=0;for(i;i<4;i++){if(this.subnode[i]!==null){resultItems=this.subnode[i].addAllItems(resultItems);}} -return resultItems;};jsts.index.quadtree.NodeBase.prototype.addAllItemsFromOverlapping=function(searchEnv,resultItems){if(!this.isSearchMatch(searchEnv)){return;} -resultItems=resultItems.concat(this.items);var i=0;for(i;i<4;i++){if(this.subnode[i]!==null){resultItems=this.subnode[i].addAllItemsFromOverlapping(searchEnv,resultItems);}}};jsts.index.quadtree.NodeBase.prototype.visit=function(searchEnv,visitor){if(!this.isSearchMatch(searchEnv)){return;} -this.visitItems(searchEnv,visitor);var i=0;for(i;i<4;i++){if(this.subnode[i]!==null){this.subnode[i].visit(searchEnv,visitor);}}};jsts.index.quadtree.NodeBase.prototype.visitItems=function(env,visitor){var i=0,il=this.items.length;for(i;imaxSubDepth){maxSubDepth=sqd;}}} -return maxSubDepth+1;};jsts.index.quadtree.NodeBase.prototype.size=function(){var subSize=0,i=0;for(i;i<4;i++){if(this.subnode[i]!==null){subSize+=this.subnode[i].size();}} -return subSize+this.items.length;};jsts.index.quadtree.NodeBase.prototype.getNodeCount=function(){var subSize=0,i=0;for(i;i<4;i++){if(this.subnode[i]!==null){subSize+=this.subnode[i].size();}} -return subSize+1;};jsts.index.quadtree.Node=function(env,level){jsts.index.quadtree.NodeBase.prototype.constructor.apply(this,arguments);this.env=env;this.level=level;this.centre=new jsts.geom.Coordinate();this.centre.x=(env.getMinX()+env.getMaxX())/2;this.centre.y=(env.getMinY()+env.getMaxY())/2;};jsts.index.quadtree.Node.prototype=new jsts.index.quadtree.NodeBase();jsts.index.quadtree.Node.createNode=function(env){var key,node;key=new jsts.index.quadtree.Key(env);node=new jsts.index.quadtree.Node(key.getEnvelope(),key.getLevel());return node;};jsts.index.quadtree.Node.createExpanded=function(node,addEnv){var expandEnv=new jsts.geom.Envelope(addEnv),largerNode;if(node!==null){expandEnv.expandToInclude(node.env);} -largerNode=jsts.index.quadtree.Node.createNode(expandEnv);if(node!==null){largerNode.insertNode(node);} -return largerNode;};jsts.index.quadtree.Node.prototype.getEnvelope=function(){return this.env;};jsts.index.quadtree.Node.prototype.isSearchMatch=function(searchEnv){return this.env.intersects(searchEnv);};jsts.index.quadtree.Node.prototype.getNode=function(searchEnv){var subnodeIndex=this.getSubnodeIndex(searchEnv,this.centre),node;if(subnodeIndex!==-1){node=this.getSubnode(subnodeIndex);return node.getNode(searchEnv);}else{return this;}};jsts.index.quadtree.Node.prototype.find=function(searchEnv){var subnodeIndex=this.getSubnodeIndex(searchEnv,this.centre),node;if(subnodeIndex===-1){return this;} -if(this.subnode[subnodeIndex]!==null){node=this.subnode[subnodeIndex];return node.find(searchEnv);} -return this;};jsts.index.quadtree.Node.prototype.insertNode=function(node){var index=this.getSubnodeIndex(node.env,this.centre),childNode;if(node.level===this.level-1){this.subnode[index]=node;}else{childNode=this.createSubnode(index);childNode.insertNode(node);this.subnode[index]=childNode;}};jsts.index.quadtree.Node.prototype.getSubnode=function(index){if(this.subnode[index]===null){this.subnode[index]=this.createSubnode(index);} -return this.subnode[index];};jsts.index.quadtree.Node.prototype.createSubnode=function(index){var minx=0.0,maxx=0.0,miny=0.0,maxy=0.0,sqEnv,node;switch(index){case 0:minx=this.env.getMinX();maxx=this.centre.x;miny=this.env.getMinY();maxy=this.centre.y;break;case 1:minx=this.centre.x;maxx=this.env.getMaxX();miny=this.env.getMinY();maxy=this.centre.y;break;case 2:minx=this.env.getMinX();maxx=this.centre.x;miny=this.centre.y;maxy=this.env.getMaxY();break;case 3:minx=this.centre.x;maxx=this.env.getMaxX();miny=this.centre.y;maxy=this.env.getMaxY();break;} -sqEnv=new jsts.geom.Envelope(minx,maxx,miny,maxy);node=new jsts.index.quadtree.Node(sqEnv,this.level-1);return node;};(function(){jsts.triangulate.quadedge.QuadEdge=function(){this.rot=null;this.vertex=null;this.next=null;this.data=null;};var QuadEdge=jsts.triangulate.quadedge.QuadEdge;jsts.triangulate.quadedge.QuadEdge.makeEdge=function(o,d){var q0,q1,q2,q3,base;q0=new QuadEdge();q1=new QuadEdge();q2=new QuadEdge();q3=new QuadEdge();q0.rot=q1;q1.rot=q2;q2.rot=q3;q3.rot=q0;q0.setNext(q0);q1.setNext(q3);q2.setNext(q2);q3.setNext(q1);base=q0;base.setOrig(o);base.setDest(d);return base;};jsts.triangulate.quadedge.QuadEdge.connect=function(a,b){var e=QuadEdge.makeEdge(a.dest(),b.orig());QuadEdge.splice(e,a.lNext());QuadEdge.splice(e.sym(),b);return e;};jsts.triangulate.quadedge.QuadEdge.splice=function(a,b){var alpha,beta,t1,t2,t3,t4;alpha=a.oNext().rot;beta=b.oNext().rot;t1=b.oNext();t2=a.oNext();t3=beta.oNext();t4=alpha.oNext();a.setNext(t1);b.setNext(t2);alpha.setNext(t3);beta.setNext(t4);};jsts.triangulate.quadedge.QuadEdge.swap=function(e){var a,b;a=e.oPrev();b=e.sym().oPrev();QuadEdge.splice(e,a);QuadEdge.splice(e.sym(),b);QuadEdge.splice(e,a.lNext());QuadEdge.splice(e.sym(),b.lNext());e.setOrig(a.dest());e.setDest(b.dest());};jsts.triangulate.quadedge.QuadEdge.prototype.getPrimary=function(){if(this.orig().getCoordinate().compareTo(this.dest().getCoordinate())<=0){return this;} -else{return this.sym();}};jsts.triangulate.quadedge.QuadEdge.prototype.setData=function(data){this.data=data;};jsts.triangulate.quadedge.QuadEdge.prototype.getData=function(){return this.data;};jsts.triangulate.quadedge.QuadEdge.prototype.delete_jsts=function(){this.rot=null;};jsts.triangulate.quadedge.QuadEdge.prototype.isLive=function(){return this.rot!==null;};jsts.triangulate.quadedge.QuadEdge.prototype.setNext=function(next){this.next=next;};jsts.triangulate.quadedge.QuadEdge.prototype.invRot=function(){return this.rot.sym();};jsts.triangulate.quadedge.QuadEdge.prototype.sym=function(){return this.rot.rot;};jsts.triangulate.quadedge.QuadEdge.prototype.oNext=function(){return this.next;};jsts.triangulate.quadedge.QuadEdge.prototype.oPrev=function(){return this.rot.next.rot;};jsts.triangulate.quadedge.QuadEdge.prototype.dNext=function(){return this.sym().oNext().sym();};jsts.triangulate.quadedge.QuadEdge.prototype.dPrev=function(){return this.invRot().oNext().invRot();};jsts.triangulate.quadedge.QuadEdge.prototype.lNext=function(){return this.invRot().oNext().rot;};jsts.triangulate.quadedge.QuadEdge.prototype.lPrev=function(){return this.next.sym();};jsts.triangulate.quadedge.QuadEdge.prototype.rNext=function(){return this.rot.next.invRot();};jsts.triangulate.quadedge.QuadEdge.prototype.rPrev=function(){return this.sym().oNext();};jsts.triangulate.quadedge.QuadEdge.prototype.setOrig=function(o){this.vertex=o;};jsts.triangulate.quadedge.QuadEdge.prototype.setDest=function(d){this.sym().setOrig(d);};jsts.triangulate.quadedge.QuadEdge.prototype.orig=function(){return this.vertex;};jsts.triangulate.quadedge.QuadEdge.prototype.dest=function(){return this.sym().orig();};jsts.triangulate.quadedge.QuadEdge.prototype.getLength=function(){return this.orig().getCoordinate().distance(dest().getCoordinate());};jsts.triangulate.quadedge.QuadEdge.prototype.equalsNonOriented=function(qe){if(this.equalsOriented(qe)){return true;} -if(this.equalsOriented(qe.sym())){return true;} -return false;};jsts.triangulate.quadedge.QuadEdge.prototype.equalsOriented=function(qe){if(this.orig().getCoordinate().equals2D(qe.orig().getCoordinate())&&this.dest().getCoordinate().equals2D(qe.dest().getCoordinate())){return true;} -return false;};jsts.triangulate.quadedge.QuadEdge.prototype.toLineSegment=function() -{return new jsts.geom.LineSegment(this.vertex.getCoordinate(),this.dest().getCoordinate());};jsts.triangulate.quadedge.QuadEdge.prototype.toString=function(){var p0,p1;p0=this.vertex.getCoordinate();p1=this.dest().getCoordinate();return jsts.io.WKTWriter.toLineString(p0,p1);};})();(function(){var Assert=jsts.util.Assert;jsts.geomgraph.EdgeEnd=function(edge,p0,p1,label){this.edge=edge;if(p0&&p1){this.init(p0,p1);} -if(label){this.label=label||null;}};jsts.geomgraph.EdgeEnd.prototype.edge=null;jsts.geomgraph.EdgeEnd.prototype.label=null;jsts.geomgraph.EdgeEnd.prototype.node=null;jsts.geomgraph.EdgeEnd.prototype.p0=null;jsts.geomgraph.EdgeEnd.prototype.p1=null;jsts.geomgraph.EdgeEnd.prototype.dx=null;jsts.geomgraph.EdgeEnd.prototype.dy=null;jsts.geomgraph.EdgeEnd.prototype.quadrant=null;jsts.geomgraph.EdgeEnd.prototype.init=function(p0,p1){this.p0=p0;this.p1=p1;this.dx=p1.x-p0.x;this.dy=p1.y-p0.y;this.quadrant=jsts.geomgraph.Quadrant.quadrant(this.dx,this.dy);Assert.isTrue(!(this.dx===0&&this.dy===0),'EdgeEnd with identical endpoints found');};jsts.geomgraph.EdgeEnd.prototype.getEdge=function(){return this.edge;};jsts.geomgraph.EdgeEnd.prototype.getLabel=function(){return this.label;};jsts.geomgraph.EdgeEnd.prototype.getCoordinate=function(){return this.p0;};jsts.geomgraph.EdgeEnd.prototype.getDirectedCoordinate=function(){return this.p1;};jsts.geomgraph.EdgeEnd.prototype.getQuadrant=function(){return this.quadrant;};jsts.geomgraph.EdgeEnd.prototype.getDx=function(){return this.dx;};jsts.geomgraph.EdgeEnd.prototype.getDy=function(){return this.dy;};jsts.geomgraph.EdgeEnd.prototype.setNode=function(node){this.node=node;};jsts.geomgraph.EdgeEnd.prototype.getNode=function(){return this.node;};jsts.geomgraph.EdgeEnd.prototype.compareTo=function(e){return this.compareDirection(e);};jsts.geomgraph.EdgeEnd.prototype.compareDirection=function(e){if(this.dx===e.dx&&this.dy===e.dy) -return 0;if(this.quadrant>e.quadrant) -return 1;if(this.quadrant0&&this.minIndexthis.minCoord.y&&pNext.y>this.minCoord.y&&orientation===jsts.algorithm.CGAlgorithms.CLOCKWISE){usePrev=true;} -if(usePrev){this.minIndex=this.minIndex-1;}};jsts.operation.buffer.RightmostEdgeFinder.prototype.checkForRightmostCoordinate=function(de){var coord=de.getEdge().getCoordinates();for(var i=0;ithis.minCoord.x){this.minDe=de;this.minIndex=i;this.minCoord=coord[i];}}};jsts.operation.buffer.RightmostEdgeFinder.prototype.getRightmostSide=function(de,index){var side=this.getRightmostSideOfSegment(de,index);if(side<0) -side=this.getRightmostSideOfSegment(de,index-1);if(side<0){this.minCoord=null;this.checkForRightmostCoordinate(de);} -return side;};jsts.operation.buffer.RightmostEdgeFinder.prototype.getRightmostSideOfSegment=function(de,i){var e=de.getEdge();var coord=e.getCoordinates();if(i<0||i+1>=coord.length) -return-1;if(coord[i].y==coord[i+1].y) -return-1;var pos=jsts.geomgraph.Position.LEFT;if(coord[i].y0.0;};jsts.triangulate.IncrementalDelaunayTriangulator.prototype.insertSites=function(vertices){var i=0,il=vertices.length,v;for(i;i0.0){cent.x=this.cg3.x/3/this.areasum2;cent.y=this.cg3.y/3/this.areasum2;}else{cent.x=this.centSum.x/this.totalLength;cent.y=this.centSum.y/this.totalLength;} -return cent;};jsts.algorithm.CentroidArea.prototype.setBasePoint=function(basePt){if(this.basePt==null) -this.basePt=basePt;};jsts.algorithm.CentroidArea.prototype.add3=function(poly){this.addShell(poly.getExteriorRing().getCoordinates());for(var i=0;ix2){return x1;} -return x2;};jsts.geomgraph.index.SweepLineSegment.prototype.computeIntersections=function(ss,si){si.addIntersections(this.edge,this.ptIndex,ss.edge,ss.ptIndex);};jsts.index.quadtree.Root=function(){jsts.index.quadtree.NodeBase.prototype.constructor.apply(this,arguments);this.origin=new jsts.geom.Coordinate(0.0,0.0);};jsts.index.quadtree.Root.prototype=new jsts.index.quadtree.NodeBase();jsts.index.quadtree.Root.prototype.insert=function(itemEnv,item){var index=this.getSubnodeIndex(itemEnv,this.origin);if(index===-1){this.add(item);return;} -var node=this.subnode[index];if(node===null||!node.getEnvelope().contains(itemEnv)){var largerNode=jsts.index.quadtree.Node.createExpanded(node,itemEnv);this.subnode[index]=largerNode;} -this.insertContained(this.subnode[index],itemEnv,item);};jsts.index.quadtree.Root.prototype.insertContained=function(tree,itemEnv,item){var isZeroX,isZeroY,node;isZeroX=jsts.index.IntervalSize.isZeroWidth(itemEnv.getMinX(),itemEnv.getMaxX());isZeroY=jsts.index.IntervalSize.isZeroWidth(itemEnv.getMinY(),itemEnv.getMaxY());if(isZeroX||isZeroY){node=tree.find(itemEnv);}else{node=tree.getNode(itemEnv);} -node.add(item);};jsts.index.quadtree.Root.prototype.isSearchMatch=function(searchEnv){return true;};jsts.geomgraph.index.MonotoneChainIndexer=function(){};jsts.geomgraph.index.MonotoneChainIndexer.toIntArray=function(list){var array=[];for(var i=list.iterator();i.hasNext();){var element=i.next();array.push(element);} -return array;};jsts.geomgraph.index.MonotoneChainIndexer.prototype.getChainStartIndices=function(pts){var start=0;var startIndexList=new javascript.util.ArrayList();startIndexList.add(start);do{var last=this.findChainEnd(pts,start);startIndexList.add(last);start=last;}while(start=list.length){return null;} -return list[index];};jsts.operation.union.CascadedPolygonUnion.prototype.reduceToGeometries=function(geomTree){var geoms=[];for(var i=0,l=geomTree.length;i=0;i--){segGen.addNextSegment(simp2[i],true);} -segGen.addLastSegment();segGen.addLineEndCap(simp2[1],simp2[0]);segGen.closeRing();};jsts.operation.buffer.OffsetCurveBuilder.prototype.computeSingleSidedBufferCurve=function(inputPts,isRightSide,segGen){var distTol=jsts.operation.buffer.OffsetCurveBuilder.simplifyTolerance(this.distance);if(isRightSide){segGen.addSegments(inputPts,true);var simp2=jsts.operation.buffer.BufferInputLineSimplifier.simplify(inputPts,-distTol);var n2=simp2.length-1;segGen.initSideSegments(simp2[n2],simp2[n2-1],jsts.geomgraph.Position.LEFT);segGen.addFirstSegment();for(var i=n2-2;i>=0;i--){segGen.addNextSegment(simp2[i],true);}}else{segGen.addSegments(inputPts,false);var simp1=jsts.operation.buffer.BufferInputLineSimplifier.simplify(inputPts,distTol);var n1=simp1.length-1;segGen.initSideSegments(simp1[0],simp1[1],jsts.geomgraph.Position.LEFT);segGen.addFirstSegment();for(var i=2;i<=n1;i++){segGen.addNextSegment(simp1[i],true);}} -segGen.addLastSegment();segGen.closeRing();};jsts.operation.buffer.OffsetCurveBuilder.prototype.computeOffsetCurve=function(inputPts,isRightSide,segGen){var distTol=jsts.operation.buffer.OffsetCurveBuilder.simplifyTolerance(this.distance);if(isRightSide){var simp2=jsts.operation.buffer.BufferInputLineSimplifier.simplify(inputPts,-distTol);var n2=simp2.length-1;segGen.initSideSegments(simp2[n2],simp2[n2-1],jsts.geomgraph.Position.LEFT);segGen.addFirstSegment();for(var i=n2-2;i>=0;i--){segGen.addNextSegment(simp2[i],true);}}else{var simp1=jsts.operation.buffer.BufferInputLineSimplifier.simplify(inputPts,distTol);var n1=simp1.length-1;segGen.initSideSegments(simp1[0],simp1[1],jsts.geomgraph.Position.LEFT);segGen.addFirstSegment();for(var i=2;i<=n1;i++){segGen.addNextSegment(simp1[i],true);}} -segGen.addLastSegment();};jsts.operation.buffer.OffsetCurveBuilder.prototype.computeRingBufferCurve=function(inputPts,side,segGen){var distTol=jsts.operation.buffer.OffsetCurveBuilder.simplifyTolerance(this.distance);if(side===jsts.geomgraph.Position.RIGHT) -distTol=-distTol;var simp=jsts.operation.buffer.BufferInputLineSimplifier.simplify(inputPts,distTol);var n=simp.length-1;segGen.initSideSegments(simp[n-1],simp[0],side);for(var i=1;i<=n;i++){var addStartPoint=i!==1;segGen.addNextSegment(simp[i],addStartPoint);} -segGen.closeRing();};(function(){var HotPixelSnapAction=function(hotPixel,parentEdge,vertexIndex){this.hotPixel=hotPixel;this.parentEdge=parentEdge;this.vertexIndex=vertexIndex;};HotPixelSnapAction.prototype=new jsts.index.chain.MonotoneChainSelectAction();HotPixelSnapAction.constructor=HotPixelSnapAction;HotPixelSnapAction.prototype.hotPixel=null;HotPixelSnapAction.prototype.parentEdge=null;HotPixelSnapAction.prototype.vertexIndex=null;HotPixelSnapAction.prototype._isNodeAdded=false;HotPixelSnapAction.prototype.isNodeAdded=function(){return this._isNodeAdded;};HotPixelSnapAction.prototype.select=function(mc,startIndex){var ss=mc.getContext();if(this.parentEdge!==null){if(ss===this.parentEdge&&startIndex===this.vertexIndex) -return;} -this._isNodeAdded=this.hotPixel.addSnappedNode(ss,startIndex);};jsts.noding.snapround.MCIndexPointSnapper=function(index){this.index=index;};jsts.noding.snapround.MCIndexPointSnapper.prototype.index=null;jsts.noding.snapround.MCIndexPointSnapper.prototype.snap=function(hotPixel,parentEdge,vertexIndex){if(arguments.length===1){this.snap2.apply(this,arguments);return;} -var pixelEnv=hotPixel.getSafeEnvelope();var hotPixelSnapAction=new HotPixelSnapAction(hotPixel,parentEdge,vertexIndex);this.index.query(pixelEnv,{visitItem:function(testChain){testChain.select(pixelEnv,hotPixelSnapAction);}});return hotPixelSnapAction.isNodeAdded();};jsts.noding.snapround.MCIndexPointSnapper.prototype.snap2=function(hotPixel){return this.snap(hotPixel,null,-1);};})();(function(){var NodeBase=function(){this.items=new javascript.util.ArrayList();this.subnode=[null,null];};NodeBase.getSubnodeIndex=function(interval,centre){var subnodeIndex=-1;if(interval.min>=centre){subnodeIndex=1;} -if(interval.max<=centre){subnodeIndex=0;} -return subnodeIndex;};NodeBase.prototype.getItems=function(){return this.items;};NodeBase.prototype.add=function(item){this.items.add(item);};NodeBase.prototype.addAllItems=function(items){items.addAll(this.items);var i=0,il=2;for(i;imaxSubDepth){maxSubDepth=sqd;}}} -return maxSubDepth+1;};NodeBase.prototype.size=function(){var subSize=0,i=0,il=2;for(i;i=0.0){if(dy>=0.0) -return jsts.geomgraph.Quadrant.NE;else -return jsts.geomgraph.Quadrant.SE;}else{if(dy>=0.0) -return jsts.geomgraph.Quadrant.NW;else -return jsts.geomgraph.Quadrant.SW;}};jsts.geomgraph.Quadrant.quadrant2=function(p0,p1){if(p1.x===p0.x&&p1.y===p0.y) -throw new jsts.error.IllegalArgumentError('Cannot compute the quadrant for two identical points '+p0);if(p1.x>=p0.x){if(p1.y>=p0.y) -return jsts.geomgraph.Quadrant.NE;else -return jsts.geomgraph.Quadrant.SE;}else{if(p1.y>=p0.y) -return jsts.geomgraph.Quadrant.NW;else -return jsts.geomgraph.Quadrant.SW;}};jsts.geomgraph.Quadrant.isOpposite=function(quad1,quad2){if(quad1===quad2) -return false;var diff=(quad1-quad2+4)%4;if(diff===2) -return true;return false;};jsts.geomgraph.Quadrant.commonHalfPlane=function(quad1,quad2){if(quad1===quad2) -return quad1;var diff=(quad1-quad2+4)%4;if(diff===2) -return-1;var min=(quad1quad2)?quad1:quad2;if(min===0&&max===3) -return 3;return min;};jsts.geomgraph.Quadrant.isInHalfPlane=function(quad,halfPlane){if(halfPlane===jsts.geomgraph.Quadrant.SE){return quad===jsts.geomgraph.Quadrant.SE||quad===jsts.geomgraph.Quadrant.SW;} -return quad===halfPlane||quad===halfPlane+1;};jsts.geomgraph.Quadrant.isNorthern=function(quad){return quad===jsts.geomgraph.Quadrant.NE||quad===jsts.geomgraph.Quadrant.NW;};jsts.operation.valid.ConsistentAreaTester=function(geomGraph){this.geomGraph=geomGraph;this.li=new jsts.algorithm.RobustLineIntersector();this.nodeGraph=new jsts.operation.relate.RelateNodeGraph();this.invalidPoint=null;};jsts.operation.valid.ConsistentAreaTester.prototype.getInvalidPoint=function(){return this.invalidPoint;};jsts.operation.valid.ConsistentAreaTester.prototype.isNodeConsistentArea=function(){var intersector=this.geomGraph.computeSelfNodes(this.li,true);if(intersector.hasProperIntersection()){this.invalidPoint=intersector.getProperIntersectionPoint();return false;} -this.nodeGraph.build(this.geomGraph);return this.isNodeEdgeAreaLabelsConsistent();};jsts.operation.valid.ConsistentAreaTester.prototype.isNodeEdgeAreaLabelsConsistent=function(){for(var nodeIt=this.nodeGraph.getNodeIterator();nodeIt.hasNext();){var node=nodeIt.next();if(!node.getEdges().isAreaLabelsConsistent(this.geomGraph)){this.invalidPoint=node.getCoordinate().clone();return false;}} -return true;};jsts.operation.valid.ConsistentAreaTester.prototype.hasDuplicateRings=function(){for(var nodeIt=this.nodeGraph.getNodeIterator();nodeIt.hasNext();){var node=nodeIt.next();for(var i=node.getEdges().iterator();i.hasNext();){var eeb=i.next();if(eeb.getEdgeEnds().length>1){invalidPoint=eeb.getEdge().getCoordinate(0);return true;}}} -return false;};jsts.operation.relate.RelateNode=function(coord,edges){jsts.geomgraph.Node.apply(this,arguments);};jsts.operation.relate.RelateNode.prototype=new jsts.geomgraph.Node();jsts.operation.relate.RelateNode.prototype.computeIM=function(im){im.setAtLeastIfValid(this.label.getLocation(0),this.label.getLocation(1),0);};jsts.operation.relate.RelateNode.prototype.updateIMFromEdges=function(im){this.edges.updateIM(im);};(function(){var Location=jsts.geom.Location;var Position=jsts.geomgraph.Position;var EdgeEnd=jsts.geomgraph.EdgeEnd;jsts.geomgraph.DirectedEdge=function(edge,isForward){EdgeEnd.call(this,edge);this.depth=[0,-999,-999];this._isForward=isForward;if(isForward){this.init(edge.getCoordinate(0),edge.getCoordinate(1));}else{var n=edge.getNumPoints()-1;this.init(edge.getCoordinate(n),edge.getCoordinate(n-1));} -this.computeDirectedLabel();};jsts.geomgraph.DirectedEdge.prototype=new EdgeEnd();jsts.geomgraph.DirectedEdge.constructor=jsts.geomgraph.DirectedEdge;jsts.geomgraph.DirectedEdge.depthFactor=function(currLocation,nextLocation){if(currLocation===Location.EXTERIOR&&nextLocation===Location.INTERIOR) -return 1;else if(currLocation===Location.INTERIOR&&nextLocation===Location.EXTERIOR) -return-1;return 0;};jsts.geomgraph.DirectedEdge.prototype._isForward=null;jsts.geomgraph.DirectedEdge.prototype._isInResult=false;jsts.geomgraph.DirectedEdge.prototype._isVisited=false;jsts.geomgraph.DirectedEdge.prototype.sym=null;jsts.geomgraph.DirectedEdge.prototype.next=null;jsts.geomgraph.DirectedEdge.prototype.nextMin=null;jsts.geomgraph.DirectedEdge.prototype.edgeRing=null;jsts.geomgraph.DirectedEdge.prototype.minEdgeRing=null;jsts.geomgraph.DirectedEdge.prototype.depth=null;jsts.geomgraph.DirectedEdge.prototype.getEdge=function(){return this.edge;};jsts.geomgraph.DirectedEdge.prototype.setInResult=function(isInResult){this._isInResult=isInResult;};jsts.geomgraph.DirectedEdge.prototype.isInResult=function(){return this._isInResult;};jsts.geomgraph.DirectedEdge.prototype.isVisited=function(){return this._isVisited;};jsts.geomgraph.DirectedEdge.prototype.setVisited=function(isVisited){this._isVisited=isVisited;};jsts.geomgraph.DirectedEdge.prototype.setEdgeRing=function(edgeRing){this.edgeRing=edgeRing;};jsts.geomgraph.DirectedEdge.prototype.getEdgeRing=function(){return this.edgeRing;};jsts.geomgraph.DirectedEdge.prototype.setMinEdgeRing=function(minEdgeRing){this.minEdgeRing=minEdgeRing;};jsts.geomgraph.DirectedEdge.prototype.getMinEdgeRing=function(){return this.minEdgeRing;};jsts.geomgraph.DirectedEdge.prototype.getDepth=function(position){return this.depth[position];};jsts.geomgraph.DirectedEdge.prototype.setDepth=function(position,depthVal){if(this.depth[position]!==-999){if(this.depth[position]!==depthVal) -throw new jsts.error.TopologyError('assigned depths do not match',this.getCoordinate());} -this.depth[position]=depthVal;};jsts.geomgraph.DirectedEdge.prototype.getDepthDelta=function(){var depthDelta=this.edge.getDepthDelta();if(!this._isForward) -depthDelta=-depthDelta;return depthDelta;};jsts.geomgraph.DirectedEdge.prototype.setVisitedEdge=function(isVisited){this.setVisited(isVisited);this.sym.setVisited(isVisited);};jsts.geomgraph.DirectedEdge.prototype.getSym=function(){return this.sym;};jsts.geomgraph.DirectedEdge.prototype.isForward=function(){return this._isForward;};jsts.geomgraph.DirectedEdge.prototype.setSym=function(de){this.sym=de;};jsts.geomgraph.DirectedEdge.prototype.getNext=function(){return this.next;};jsts.geomgraph.DirectedEdge.prototype.setNext=function(next){this.next=next;};jsts.geomgraph.DirectedEdge.prototype.getNextMin=function(){return this.nextMin;};jsts.geomgraph.DirectedEdge.prototype.setNextMin=function(nextMin){this.nextMin=nextMin;};jsts.geomgraph.DirectedEdge.prototype.isLineEdge=function(){var isLine=this.label.isLine(0)||this.label.isLine(1);var isExteriorIfArea0=!this.label.isArea(0)||this.label.allPositionsEqual(0,Location.EXTERIOR);var isExteriorIfArea1=!this.label.isArea(1)||this.label.allPositionsEqual(1,Location.EXTERIOR);return isLine&&isExteriorIfArea0&&isExteriorIfArea1;};jsts.geomgraph.DirectedEdge.prototype.isInteriorAreaEdge=function(){var isInteriorAreaEdge=true;for(var i=0;i<2;i++){if(!(this.label.isArea(i)&&this.label.getLocation(i,Position.LEFT)===Location.INTERIOR&&this.label.getLocation(i,Position.RIGHT)===Location.INTERIOR)){isInteriorAreaEdge=false;}} -return isInteriorAreaEdge;};jsts.geomgraph.DirectedEdge.prototype.computeDirectedLabel=function(){this.label=new jsts.geomgraph.Label(this.edge.getLabel());if(!this._isForward) -this.label.flip();};jsts.geomgraph.DirectedEdge.prototype.setEdgeDepths=function(position,depth){var depthDelta=this.getEdge().getDepthDelta();if(!this._isForward) -depthDelta=-depthDelta;var directionFactor=1;if(position===Position.LEFT) -directionFactor=-1;var oppositePos=Position.opposite(position);var delta=depthDelta*directionFactor;var oppositeDepth=depth+delta;this.setDepth(position,depth);this.setDepth(oppositePos,oppositeDepth);};})();jsts.operation.distance.DistanceOp=function(g0,g1,terminateDistance){this.ptLocator=new jsts.algorithm.PointLocator();this.geom=[];this.geom[0]=g0;this.geom[1]=g1;this.terminateDistance=terminateDistance;};jsts.operation.distance.DistanceOp.prototype.geom=null;jsts.operation.distance.DistanceOp.prototype.terminateDistance=0.0;jsts.operation.distance.DistanceOp.prototype.ptLocator=null;jsts.operation.distance.DistanceOp.prototype.minDistanceLocation=null;jsts.operation.distance.DistanceOp.prototype.minDistance=Number.MAX_VALUE;jsts.operation.distance.DistanceOp.distance=function(g0,g1){var distOp=new jsts.operation.distance.DistanceOp(g0,g1,0.0);return distOp.distance();};jsts.operation.distance.DistanceOp.isWithinDistance=function(g0,g1,distance){var distOp=new jsts.operation.distance.DistanceOp(g0,g1,distance);return distOp.distance()<=distance;};jsts.operation.distance.DistanceOp.nearestPoints=function(g0,g1){var distOp=new jsts.operation.distance.DistanceOp(g0,g1,0.0);return distOp.nearestPoints();};jsts.operation.distance.DistanceOp.prototype.distance=function(){if(this.geom[0]===null||this.geom[1]===null) -throw new jsts.error.IllegalArgumentError('null geometries are not supported');if(this.geom[0].isEmpty()||this.geom[1].isEmpty()) -return 0.0;this.computeMinDistance();return this.minDistance;};jsts.operation.distance.DistanceOp.prototype.nearestPoints=function(){this.computeMinDistance();var nearestPts=[this.minDistanceLocation[0].getCoordinate(),this.minDistanceLocation[1].getCoordinate()];return nearestPts;};jsts.operation.distance.DistanceOp.prototype.nearestLocations=function(){this.computeMinDistance();return this.minDistanceLocation;};jsts.operation.distance.DistanceOp.prototype.updateMinDistance=function(locGeom,flip){if(locGeom[0]===null) -return;if(flip){this.minDistanceLocation[0]=locGeom[1];this.minDistanceLocation[1]=locGeom[0];}else{this.minDistanceLocation[0]=locGeom[0];this.minDistanceLocation[1]=locGeom[1];}};jsts.operation.distance.DistanceOp.prototype.computeMinDistance=function(){if(arguments.length>0){this.computeMinDistance2.apply(this,arguments);return;} -if(this.minDistanceLocation!==null) -return;this.minDistanceLocation=[];this.computeContainmentDistance();if(this.minDistance<=this.terminateDistance) -return;this.computeFacetDistance();};jsts.operation.distance.DistanceOp.prototype.computeContainmentDistance=function(){if(arguments.length===2){this.computeContainmentDistance2.apply(this,arguments);return;}else if(arguments.length===3&&(!arguments[0]instanceof jsts.operation.distance.GeometryLocation)){this.computeContainmentDistance3.apply(this,arguments);return;}else if(arguments.length===3){this.computeContainmentDistance4.apply(this,arguments);return;} -var locPtPoly=[];this.computeContainmentDistance2(0,locPtPoly);if(this.minDistance<=this.terminateDistance) -return;this.computeContainmentDistance2(1,locPtPoly);};jsts.operation.distance.DistanceOp.prototype.computeContainmentDistance2=function(polyGeomIndex,locPtPoly){var locationsIndex=1-polyGeomIndex;var polys=jsts.geom.util.PolygonExtracter.getPolygons(this.geom[polyGeomIndex]);if(polys.length>0){var insideLocs=jsts.operation.distance.ConnectedElementLocationFilter.getLocations(this.geom[locationsIndex]);this.computeContainmentDistance3(insideLocs,polys,locPtPoly);if(this.minDistance<=this.terminateDistance){this.minDistanceLocation[locationsIndex]=locPtPoly[0];this.minDistanceLocation[polyGeomIndex]=locPtPoly[1];return;}}};jsts.operation.distance.DistanceOp.prototype.computeContainmentDistance3=function(locs,polys,locPtPoly){for(var i=0;ithis.minDistance){return;} -var coord0=line0.getCoordinates();var coord1=line1.getCoordinates();for(var i=0;ithis.minDistance){return;} -var coord0=line.getCoordinates();var coord=pt.getCoordinate();for(var i=0;i0){return this.isNull2.apply(this,arguments);} -for(var i=0;i<2;i++){for(var j=0;j<3;j++){if(this.depth[i][j]!==jsts.geomgraph.Depth.NULL_VALUE) -return false;}} -return true;};jsts.geomgraph.Depth.prototype.isNull2=function(geomIndex){if(arguments.length>1){return this.isNull3.apply(this,arguments);} -return this.depth[geomIndex][1]==jsts.geomgraph.Depth.NULL_VALUE;};jsts.geomgraph.Depth.prototype.isNull3=function(geomIndex,posIndex){return this.depth[geomIndex][posIndex]==jsts.geomgraph.Depth.NULL_VALUE;};jsts.geomgraph.Depth.prototype.add=function(lbl){for(var i=0;i<2;i++){for(var j=1;j<3;j++){var loc=lbl.getLocation(i,j);if(loc===Location.EXTERIOR||loc===Location.INTERIOR){if(this.isNull(i,j)){this.depth[i][j]=jsts.geomgraph.Depth.depthAtLocation(loc);}else -this.depth[i][j]+=jsts.geomgraph.Depth.depthAtLocation(loc);}}}};jsts.geomgraph.Depth.prototype.getDelta=function(geomIndex){return this.depth[geomIndex][Position.RIGHT]- -this.depth[geomIndex][Position.LEFT];};jsts.geomgraph.Depth.prototype.normalize=function(){for(var i=0;i<2;i++){if(!this.isNull(i)){var minDepth=this.depth[i][1];if(this.depth[i][2]minDepth) -newValue=1;this.depth[i][j]=newValue;}}}};jsts.geomgraph.Depth.prototype.toString=function(){return'A: '+this.depth[0][1]+','+this.depth[0][2]+' B: '+ -this.depth[1][1]+','+this.depth[1][2];};})();jsts.algorithm.BoundaryNodeRule=function(){};jsts.algorithm.BoundaryNodeRule.prototype.isInBoundary=function(boundaryCount){throw new jsts.error.AbstractMethodInvocationError();};jsts.algorithm.Mod2BoundaryNodeRule=function(){};jsts.algorithm.Mod2BoundaryNodeRule.prototype=new jsts.algorithm.BoundaryNodeRule();jsts.algorithm.Mod2BoundaryNodeRule.prototype.isInBoundary=function(boundaryCount){return boundaryCount%2===1;};jsts.algorithm.BoundaryNodeRule.MOD2_BOUNDARY_RULE=new jsts.algorithm.Mod2BoundaryNodeRule();jsts.algorithm.BoundaryNodeRule.OGC_SFS_BOUNDARY_RULE=jsts.algorithm.BoundaryNodeRule.MOD2_BOUNDARY_RULE;jsts.operation.distance.GeometryLocation=function(component,segIndex,pt){this.component=component;this.segIndex=segIndex;this.pt=pt;};jsts.operation.distance.GeometryLocation.INSIDE_AREA=-1;jsts.operation.distance.GeometryLocation.prototype.component=null;jsts.operation.distance.GeometryLocation.prototype.segIndex=null;jsts.operation.distance.GeometryLocation.prototype.pt=null;jsts.operation.distance.GeometryLocation.prototype.getGeometryComponent=function(){return this.component;};jsts.operation.distance.GeometryLocation.prototype.getSegmentIndex=function(){return this.segIndex;};jsts.operation.distance.GeometryLocation.prototype.getCoordinate=function(){return this.pt;};jsts.operation.distance.GeometryLocation.prototype.isInsideArea=function(){return this.segIndex===jsts.operation.distance.GeometryLocation.INSIDE_AREA;};jsts.geom.util.PointExtracter=function(pts){this.pts=pts;};jsts.geom.util.PointExtracter.prototype=new jsts.geom.GeometryFilter();jsts.geom.util.PointExtracter.prototype.pts=null;jsts.geom.util.PointExtracter.getPoints=function(geom,list){if(list===undefined){list=[];} -if(geom instanceof jsts.geom.Point){list.push(geom);}else if(geom instanceof jsts.geom.GeometryCollection||geom instanceof jsts.geom.MultiPoint||geom instanceof jsts.geom.MultiLineString||geom instanceof jsts.geom.MultiPolygon){geom.apply(new jsts.geom.util.PointExtracter(list));} -return list;};jsts.geom.util.PointExtracter.prototype.filter=function(geom){if(geom instanceof jsts.geom.Point) -this.pts.push(geom);};(function(){var Location=jsts.geom.Location;jsts.operation.relate.RelateNodeGraph=function(){this.nodes=new jsts.geomgraph.NodeMap(new jsts.operation.relate.RelateNodeFactory());};jsts.operation.relate.RelateNodeGraph.prototype.nodes=null;jsts.operation.relate.RelateNodeGraph.prototype.build=function(geomGraph){this.computeIntersectionNodes(geomGraph,0);this.copyNodesAndLabels(geomGraph,0);var eeBuilder=new jsts.operation.relate.EdgeEndBuilder();var eeList=eeBuilder.computeEdgeEnds(geomGraph.getEdgeIterator());this.insertEdgeEnds(eeList);};jsts.operation.relate.RelateNodeGraph.prototype.computeIntersectionNodes=function(geomGraph,argIndex){for(var edgeIt=geomGraph.getEdgeIterator();edgeIt.hasNext();){var e=edgeIt.next();var eLoc=e.getLabel().getLocation(argIndex);for(var eiIt=e.getEdgeIntersectionList().iterator();eiIt.hasNext();){var ei=eiIt.next();var n=this.nodes.addNode(ei.coord);if(eLoc===Location.BOUNDARY) -n.setLabelBoundary(argIndex);else{if(n.getLabel().isNull(argIndex)) -n.setLabel(argIndex,Location.INTERIOR);}}}};jsts.operation.relate.RelateNodeGraph.prototype.copyNodesAndLabels=function(geomGraph,argIndex){for(var nodeIt=geomGraph.getNodeIterator();nodeIt.hasNext();){var graphNode=nodeIt.next();var newNode=this.nodes.addNode(graphNode.getCoordinate());newNode.setLabel(argIndex,graphNode.getLabel().getLocation(argIndex));}};jsts.operation.relate.RelateNodeGraph.prototype.insertEdgeEnds=function(ee){for(var i=ee.iterator();i.hasNext();){var e=i.next();this.nodes.add(e);}};jsts.operation.relate.RelateNodeGraph.prototype.getNodeIterator=function(){return this.nodes.iterator();};})();jsts.geomgraph.index.SimpleSweepLineIntersector=function(){};jsts.geomgraph.index.SimpleSweepLineIntersector.prototype=new jsts.geomgraph.index.EdgeSetIntersector();jsts.geomgraph.index.SimpleSweepLineIntersector.prototype.events=[];jsts.geomgraph.index.SimpleSweepLineIntersector.prototype.nOverlaps=null;jsts.geomgraph.index.SimpleSweepLineIntersector.prototype.computeIntersections=function(edges,si,testAllSegments){if(si instanceof javascript.util.List){this.computeIntersections2.apply(this,arguments);return;} -if(testAllSegments){this.add(edges,null);}else{this.add(edges);} -this.computeIntersections3(si);};jsts.geomgraph.index.SimpleSweepLineIntersector.prototype.computeIntersections2=function(edges0,edges1,si){this.add(edges0,edges0);this.add(edges1,edges1);this.computeIntersections3(si);};jsts.geomgraph.index.SimpleSweepLineIntersector.prototype.add=function(edge,edgeSet){if(edge instanceof javascript.util.List){this.add2.apply(this,arguments);return;} -var pts=edge.getCoordinates();for(var i=0;iother.segmentIndex)return 1;if(this.coord.equals2D(other.coord))return 0;return jsts.noding.SegmentPointComparator.compare(this.segmentOctant,this.coord,other.coord);};(function(){jsts.io.GeoJSONWriter=function(){this.parser=new jsts.io.GeoJSONParser(this.geometryFactory);};jsts.io.GeoJSONWriter.prototype.write=function(geometry){var geoJson=this.parser.write(geometry);return geoJson;};})();jsts.io.OpenLayersParser=function(geometryFactory){this.geometryFactory=geometryFactory||new jsts.geom.GeometryFactory();};jsts.io.OpenLayersParser.prototype.read=function(geometry){if(geometry.CLASS_NAME==='OpenLayers.Geometry.Point'){return this.convertFromPoint(geometry);}else if(geometry.CLASS_NAME==='OpenLayers.Geometry.LineString'){return this.convertFromLineString(geometry);}else if(geometry.CLASS_NAME==='OpenLayers.Geometry.LinearRing'){return this.convertFromLinearRing(geometry);}else if(geometry.CLASS_NAME==='OpenLayers.Geometry.Polygon'){return this.convertFromPolygon(geometry);}else if(geometry.CLASS_NAME==='OpenLayers.Geometry.MultiPoint'){return this.convertFromMultiPoint(geometry);}else if(geometry.CLASS_NAME==='OpenLayers.Geometry.MultiLineString'){return this.convertFromMultiLineString(geometry);}else if(geometry.CLASS_NAME==='OpenLayers.Geometry.MultiPolygon'){return this.convertFromMultiPolygon(geometry);}else if(geometry.CLASS_NAME==='OpenLayers.Geometry.Collection'){return this.convertFromCollection(geometry);}};jsts.io.OpenLayersParser.prototype.convertFromPoint=function(point){return this.geometryFactory.createPoint(new jsts.geom.Coordinate(point.x,point.y));};jsts.io.OpenLayersParser.prototype.convertFromLineString=function(lineString){var i;var coordinates=[];for(i=0;i0.0){this.minExtent=delX;} -var delY=itemEnv.getHeight();if(delY0.0){this.minExtent=delY;}};jsts.operation.relate.RelateNodeFactory=function(){};jsts.operation.relate.RelateNodeFactory.prototype=new jsts.geomgraph.NodeFactory();jsts.operation.relate.RelateNodeFactory.prototype.createNode=function(coord){return new jsts.operation.relate.RelateNode(coord,new jsts.operation.relate.EdgeEndBundleStar());};jsts.index.quadtree.Key=function(itemEnv){this.pt=new jsts.geom.Coordinate();this.level=0;this.env=null;this.computeKey(itemEnv);};jsts.index.quadtree.Key.computeQuadLevel=function(env){var dx,dy,dMax,level;dx=env.getWidth();dy=env.getHeight();dMax=dx>dy?dx:dy;level=jsts.index.DoubleBits.exponent(dMax)+1;return level;};jsts.index.quadtree.Key.prototype.getPoint=function(){return this.pt;};jsts.index.quadtree.Key.prototype.getLevel=function(){return this.level;};jsts.index.quadtree.Key.prototype.getEnvelope=function(){return this.env;};jsts.index.quadtree.Key.prototype.getCentre=function(){var x,y;x=(this.env.getMinX()+this.env.getMaxX())/2;y=(this.env.getMinY()+this.env.getMaxY())/2;return new jsts.geom.Coordinate(x,y);};jsts.index.quadtree.Key.prototype.computeKey=function(){if(arguments[0]instanceof jsts.geom.Envelope){this.computeKeyFromEnvelope(arguments[0]);}else{this.computeKeyFromLevel(arguments[0],arguments[1]);}};jsts.index.quadtree.Key.prototype.computeKeyFromEnvelope=function(env){this.level=jsts.index.quadtree.Key.computeQuadLevel(env);this.env=new jsts.geom.Envelope();this.computeKey(this.level,env);while(!this.env.contains(env)){this.level+=1;this.computeKey(this.level,env);}};jsts.index.quadtree.Key.prototype.computeKeyFromLevel=function(level,env){var quadSize=jsts.index.DoubleBits.powerOf2(level);this.pt.x=Math.floor(env.getMinX()/quadSize)*quadSize;this.pt.y=Math.floor(env.getMinY()/quadSize)*quadSize;this.env.init(this.pt.x,this.pt.x+quadSize,this.pt.y,this.pt.y+ -quadSize);};jsts.geom.CoordinateArrays=function(){throw new jsts.error.AbstractMethodInvocationError();};jsts.geom.CoordinateArrays.copyDeep=function(){if(arguments.length===1){return jsts.geom.CoordinateArrays.copyDeep1(arguments[0]);}else if(arguments.length===5){jsts.geom.CoordinateArrays.copyDeep2(arguments[0],arguments[1],arguments[2],arguments[3],arguments[4]);}};jsts.geom.CoordinateArrays.copyDeep1=function(coordinates){var copy=[];for(var i=0;i0){minCoord=coordinates[i];}} -return minCoord;};jsts.geom.CoordinateArrays.scroll=function(coordinates,firstCoordinate){var i=jsts.geom.CoordinateArrays.indexOf(firstCoordinate,coordinates);if(i<0) -return;var newCoordinates=coordinates.slice(i).concat(coordinates.slice(0,i));for(i=0;imaxx){minx=p2.x;maxx=p1.x;} -if(this.p.x>=minx&&this.p.x<=maxx){this.isPointOnSegment=true;} -return;} -if(((p1.y>this.p.y)&&(p2.y<=this.p.y))||((p2.y>this.p.y)&&(p1.y<=this.p.y))){var x1=p1.x-this.p.x;var y1=p1.y-this.p.y;var x2=p2.x-this.p.x;var y2=p2.y-this.p.y;var xIntSign=jsts.algorithm.RobustDeterminant.signOfDet2x2(x1,y1,x2,y2);if(xIntSign===0.0){this.isPointOnSegment=true;return;} -if(y20.0){this.crossingCount++;}}};jsts.algorithm.RayCrossingCounter.prototype.isOnSegment=function(){return jsts.geom.isPointOnSegment;};jsts.algorithm.RayCrossingCounter.prototype.getLocation=function(){if(this.isPointOnSegment) -return jsts.geom.Location.BOUNDARY;if((this.crossingCount%2)===1){return jsts.geom.Location.INTERIOR;} -return jsts.geom.Location.EXTERIOR;};jsts.algorithm.RayCrossingCounter.prototype.isPointInPolygon=function(){return this.getLocation()!==jsts.geom.Location.EXTERIOR;};jsts.operation.BoundaryOp=function(geom,bnRule){this.geom=geom;this.geomFact=geom.getFactory();this.bnRule=bnRule||jsts.algorithm.BoundaryNodeRule.MOD2_BOUNDARY_RULE;};jsts.operation.BoundaryOp.prototype.geom=null;jsts.operation.BoundaryOp.prototype.geomFact=null;jsts.operation.BoundaryOp.prototype.bnRule=null;jsts.operation.BoundaryOp.prototype.getBoundary=function(){if(this.geom instanceof jsts.geom.LineString)return this.boundaryLineString(this.geom);if(this.geom instanceof jsts.geom.MultiLineString)return this.boundaryMultiLineString(this.geom);return this.geom.getBoundary();};jsts.operation.BoundaryOp.prototype.getEmptyMultiPoint=function(){return this.geomFact.createMultiPoint(null);};jsts.operation.BoundaryOp.prototype.boundaryMultiLineString=function(mLine){if(this.geom.isEmpty()){return this.getEmptyMultiPoint();} -var bdyPts=this.computeBoundaryCoordinates(mLine);if(bdyPts.length==1){return this.geomFact.createPoint(bdyPts[0]);} -return this.geomFact.createMultiPoint(bdyPts);};jsts.operation.BoundaryOp.prototype.endpoints=null;jsts.operation.BoundaryOp.prototype.computeBoundaryCoordinates=function(mLine){var i,line,endpoint,bdyPts=[];this.endpoints=[];for(i=0;i0.0&&this.isErodedCompletely(hole,-this.distance)) -continue;this.addPolygonRing(holeCoord,offsetDistance,jsts.geomgraph.Position.opposite(offsetSide),jsts.geom.Location.INTERIOR,jsts.geom.Location.EXTERIOR);}};jsts.operation.buffer.OffsetCurveSetBuilder.prototype.addPolygonRing=function(coord,offsetDistance,side,cwLeftLoc,cwRightLoc){if(offsetDistance==0.0&&coord.length=jsts.geom.LinearRing.MINIMUM_VALID_SIZE&&jsts.algorithm.CGAlgorithms.isCCW(coord)){leftLoc=cwRightLoc;rightLoc=cwLeftLoc;side=jsts.geomgraph.Position.opposite(side);} -var curve=this.curveBuilder.getRingCurve(coord,side,offsetDistance);this.addCurve(curve,leftLoc,rightLoc);};jsts.operation.buffer.OffsetCurveSetBuilder.prototype.isErodedCompletely=function(ring,bufferDistance){var ringCoord=ring.getCoordinates();var minDiam=0.0;if(ringCoord.length<4) -return bufferDistance<0;if(ringCoord.length==4) -return this.isTriangleErodedCompletely(ringCoord,bufferDistance);var env=ring.getEnvelopeInternal();var envMinDimension=Math.min(env.getHeight(),env.getWidth());if(bufferDistance<0.0&&2*Math.abs(bufferDistance)>envMinDimension) -return true;return false;};jsts.operation.buffer.OffsetCurveSetBuilder.prototype.isTriangleErodedCompletely=function(triangleCoord,bufferDistance){var tri=new jsts.geom.Triangle(triangleCoord[0],triangleCoord[1],triangleCoord[2]);var inCentre=tri.inCentre();var distToCentre=jsts.algorithm.CGAlgorithms.distancePointLine(inCentre,tri.p0,tri.p1);return distToCentre=1&&de.getDepth(jsts.geomgraph.Position.LEFT)<=0&&!de.isInteriorAreaEdge()){de.setInResult(true);}}};jsts.operation.buffer.BufferSubgraph.prototype.compareTo=function(o){var graph=o;if(this.rightMostCoord.xgraph.rightMostCoord.x){return 1;} -return 0;};jsts.simplify.DPTransformer=function(distanceTolerance,isEnsureValidTopology){this.distanceTolerance=distanceTolerance;this.isEnsureValidTopology=isEnsureValidTopology;};jsts.simplify.DPTransformer.prototype=new jsts.geom.util.GeometryTransformer();jsts.simplify.DPTransformer.prototype.distanceTolerance=null;jsts.simplify.DPTransformer.prototype.isEnsureValidTopology=null;jsts.simplify.DPTransformer.prototype.transformCoordinates=function(coords,parent){var inputPts=coords;var newPts=null;if(inputPts.length==0){newPts=[];}else{newPts=jsts.simplify.DouglasPeuckerLineSimplifier.simplify(inputPts,this.distanceTolerance);} -return newPts;};jsts.simplify.DPTransformer.prototype.transformPolygon=function(geom,parent){if(geom.isEmpty()){return null;} -var rawGeom=jsts.geom.util.GeometryTransformer.prototype.transformPolygon.apply(this,arguments);if(parent instanceof jsts.geom.MultiPolygon){return rawGeom;} -return this.createValidArea(rawGeom);};jsts.simplify.DPTransformer.prototype.transformLinearRing=function(geom,parent){var removeDegenerateRings=parent instanceof jsts.geom.Polygon;var simpResult=jsts.geom.util.GeometryTransformer.prototype.transformLinearRing.apply(this,arguments);if(removeDegenerateRings&&!(simpResult instanceof jsts.geom.LinearRing)){return null;} -return simpResult;};jsts.simplify.DPTransformer.prototype.transformMultiPolygon=function(geom,parent){var rawGeom=jsts.geom.util.GeometryTransformer.prototype.transformMultiPolygon.apply(this,arguments);return this.createValidArea(rawGeom);};jsts.simplify.DPTransformer.prototype.createValidArea=function(rawAreaGeom){if(this.isEnsureValidTopology){return rawAreaGeom.buffer(0.0);} -return rawAreaGeom;};jsts.geom.util.GeometryExtracter=function(clz,comps){this.clz=clz;this.comps=comps;};jsts.geom.util.GeometryExtracter.prototype=new jsts.geom.GeometryFilter();jsts.geom.util.GeometryExtracter.prototype.clz=null;jsts.geom.util.GeometryExtracter.prototype.comps=null;jsts.geom.util.GeometryExtracter.extract=function(geom,clz,list){list=list||new javascript.util.ArrayList();if(geom instanceof clz){list.add(geom);} -else if(geom instanceof jsts.geom.GeometryCollection||geom instanceof jsts.geom.MultiPoint||geom instanceof jsts.geom.MultiLineString||geom instanceof jsts.geom.MultiPolygon){geom.apply(new jsts.geom.util.GeometryExtracter(clz,list));} -return list;};jsts.geom.util.GeometryExtracter.prototype.filter=function(geom){if(this.clz===null||geom instanceof this.clz){this.comps.add(geom);}};(function(){var OverlayOp=jsts.operation.overlay.OverlayOp;var SnapOverlayOp=jsts.operation.overlay.snap.SnapOverlayOp;var SnapIfNeededOverlayOp=function(g1,g2){this.geom=[];this.geom[0]=g1;this.geom[1]=g2;};SnapIfNeededOverlayOp.overlayOp=function(g0,g1,opCode){var op=new SnapIfNeededOverlayOp(g0,g1);return op.getResultGeometry(opCode);};SnapIfNeededOverlayOp.intersection=function(g0,g1){return overlayOp(g0,g1,OverlayOp.INTERSECTION);};SnapIfNeededOverlayOp.union=function(g0,g1){return overlayOp(g0,g1,OverlayOp.UNION);};SnapIfNeededOverlayOp.difference=function(g0,g1){return overlayOp(g0,g1,OverlayOp.DIFFERENCE);};SnapIfNeededOverlayOp.symDifference=function(g0,g1){return overlayOp(g0,g1,OverlayOp.SYMDIFFERENCE);};SnapIfNeededOverlayOp.prototype.geom=null;SnapIfNeededOverlayOp.prototype.getResultGeometry=function(opCode){var result=null;var isSuccess=false;var savedException=null;try{result=OverlayOp.overlayOp(this.geom[0],this.geom[1],opCode);var isValid=true;if(isValid) -isSuccess=true;}catch(ex){savedException=ex;} -if(!isSuccess){try{result=SnapOverlayOp.overlayOp(this.geom[0],this.geom[1],opCode);}catch(ex){throw savedException;}} -return result;};jsts.operation.overlay.snap.SnapIfNeededOverlayOp=SnapIfNeededOverlayOp;})();(function(){var GeometryExtracter=jsts.geom.util.GeometryExtracter;var CascadedPolygonUnion=jsts.operation.union.CascadedPolygonUnion;var PointGeometryUnion=jsts.operation.union.PointGeometryUnion;var OverlayOp=jsts.operation.overlay.OverlayOp;var SnapIfNeededOverlayOp=jsts.operation.overlay.snap.SnapIfNeededOverlayOp;var ArrayList=javascript.util.ArrayList;jsts.operation.union.UnaryUnionOp=function(geoms,geomFact){this.polygons=new ArrayList();this.lines=new ArrayList();this.points=new ArrayList();if(geomFact){this.geomFact=geomFact;} -this.extract(geoms);};jsts.operation.union.UnaryUnionOp.union=function(geoms,geomFact){var op=new jsts.operation.union.UnaryUnionOp(geoms,geomFact);return op.union();};jsts.operation.union.UnaryUnionOp.prototype.polygons=null;jsts.operation.union.UnaryUnionOp.prototype.lines=null;jsts.operation.union.UnaryUnionOp.prototype.points=null;jsts.operation.union.UnaryUnionOp.prototype.geomFact=null;jsts.operation.union.UnaryUnionOp.prototype.extract=function(geoms){if(geoms instanceof ArrayList){for(var i=geoms.iterator();i.hasNext();){var geom=i.next();this.extract(geom);}}else{if(this.geomFact===null){this.geomFact=geoms.getFactory();} -GeometryExtracter.extract(geoms,jsts.geom.Polygon,this.polygons);GeometryExtracter.extract(geoms,jsts.geom.LineString,this.lines);GeometryExtracter.extract(geoms,jsts.geom.Point,this.points);}};jsts.operation.union.UnaryUnionOp.prototype.union=function(){if(this.geomFact===null){return null;} -var unionPoints=null;if(this.points.size()>0){var ptGeom=this.geomFact.buildGeometry(this.points);unionPoints=this.unionNoOpt(ptGeom);} -var unionLines=null;if(this.lines.size()>0){var lineGeom=this.geomFact.buildGeometry(this.lines);unionLines=this.unionNoOpt(lineGeom);} -var unionPolygons=null;if(this.polygons.size()>0){unionPolygons=CascadedPolygonUnion.union(this.polygons);} -var unionLA=this.unionWithNull(unionLines,unionPolygons);var union=null;if(unionPoints===null){union=unionLA;}else if(unionLA===null){union=unionPoints;}else{union=PointGeometryUnion(unionPoints,unionLA);} -if(union===null){return this.geomFact.createGeometryCollection(null);} -return union;};jsts.operation.union.UnaryUnionOp.prototype.unionWithNull=function(g0,g1){if(g0===null&&g1===null){return null;} -if(g1===null){return g0;} -if(g0===null){return g1;} -return g0.union(g1);};jsts.operation.union.UnaryUnionOp.prototype.unionNoOpt=function(g0){var empty=this.geomFact.createPoint(null);return SnapIfNeededOverlayOp.overlayOp(g0,empty,OverlayOp.UNION);};}());jsts.index.kdtree.KdNode=function(){this.left=null;this.right=null;this.count=1;if(arguments.length===2){this.initializeFromCoordinate.apply(this,arguments[0],arguments[1]);}else if(arguments.length===3){this.initializeFromXY.apply(this,arguments[0],arguments[1],arguments[2]);}};jsts.index.kdtree.KdNode.prototype.initializeFromXY=function(x,y,data){this.p=new jsts.geom.Coordinate(x,y);this.data=data;};jsts.index.kdtree.KdNode.prototype.initializeFromCoordinate=function(p,data){this.p=p;this.data=data;};jsts.index.kdtree.KdNode.prototype.getX=function(){return this.p.x;};jsts.index.kdtree.KdNode.prototype.getY=function(){return this.p.y;};jsts.index.kdtree.KdNode.prototype.getCoordinate=function(){return this.p;};jsts.index.kdtree.KdNode.prototype.getData=function(){return this.data;};jsts.index.kdtree.KdNode.prototype.getLeft=function(){return this.left;};jsts.index.kdtree.KdNode.prototype.getRight=function(){return this.right;};jsts.index.kdtree.KdNode.prototype.increment=function(){this.count+=1;};jsts.index.kdtree.KdNode.prototype.getCount=function(){return this.count;};jsts.index.kdtree.KdNode.prototype.isRepeated=function(){return count>1;};jsts.index.kdtree.KdNode.prototype.setLeft=function(left){this.left=left;};jsts.index.kdtree.KdNode.prototype.setRight=function(right){this.right=right;};jsts.algorithm.InteriorPointPoint=function(geometry){this.minDistance=Number.MAX_VALUE;this.interiorPoint=null;this.centroid=geometry.getCentroid().getCoordinate();this.add(geometry);};jsts.algorithm.InteriorPointPoint.prototype.add=function(geometry){if(geometry instanceof jsts.geom.Point){this.addPoint(geometry.getCoordinate());}else if(geometry instanceof jsts.geom.GeometryCollection){for(var i=0;i0.0){this.minExtent=del;}};jsts.index.bintree.Bintree=Bintree;})();jsts.algorithm.InteriorPointArea=function(geometry){this.factory;this.interiorPoint=null;this.maxWidth=0;this.factory=geometry.getFactory();this.add(geometry);};jsts.algorithm.InteriorPointArea.avg=function(a,b){return(a+b)/2;};jsts.algorithm.InteriorPointArea.prototype.getInteriorPoint=function(){return this.interiorPoint;};jsts.algorithm.InteriorPointArea.prototype.add=function(geometry){if(geometry instanceof jsts.geom.Polygon){this.addPolygon(geometry);}else if(geometry instanceof jsts.geom.GeometryCollection){for(var i=0;ithis.maxWidth){this.interiorPoint=intPt;this.maxWidth=width;}};jsts.algorithm.InteriorPointArea.prototype.widestGeometry=function(obj){if(obj instanceof jsts.geom.GeometryCollection){var gc=obj;if(gc.isEmpty()){return gc;} -var widestGeometry=gc.getGeometryN(0);for(var i=1;iwidestGeometry.getEnvelopeInternal().getWidth()){widestGeometry=gc.getGeometryN(i);}} -return widestGeometry;}else if(obj instanceof jsts.geom.Geometry){return obj;}};jsts.algorithm.InteriorPointArea.prototype.horizontalBisector=function(geometry){var envelope=geometry.getEnvelopeInternal();var bisectY=jsts.algorithm.SafeBisectorFinder.getBisectorY(geometry);return this.factory.createLineString([new jsts.geom.Coordinate(envelope.getMinX(),bisectY),new jsts.geom.Coordinate(envelope.getMaxX(),bisectY)]);};jsts.algorithm.InteriorPointArea.prototype.centre=function(envelope){return new jsts.geom.Coordinate(jsts.algorithm.InteriorPointArea.avg(envelope.getMinX(),envelope.getMaxX()),jsts.algorithm.InteriorPointArea.avg(envelope.getMinY(),envelope.getMaxY()));};jsts.algorithm.SafeBisectorFinder=function(poly){this.poly;this.centreY;this.hiY=Number.MAX_VALUE;this.loY=-Number.MAX_VALUE;this.poly=poly;this.hiY=poly.getEnvelopeInternal().getMaxY();this.loY=poly.getEnvelopeInternal().getMinY();this.centreY=jsts.algorithm.InteriorPointArea.avg(this.loY,this.hiY);};jsts.algorithm.SafeBisectorFinder.getBisectorY=function(poly){var finder=new jsts.algorithm.SafeBisectorFinder(poly);return finder.getBisectorY();};jsts.algorithm.SafeBisectorFinder.prototype.getBisectorY=function(){this.process(this.poly.getExteriorRing());for(var i=0;ithis.loY){this.loY=y;}}else if(y>this.centreY){if(y=rectEnv.getMinX()&&elementEnv.getMaxX()<=rectEnv.getMaxX()){this.intersects=true;return;} -if(elementEnv.getMinY()>=rectEnv.getMinY()&&elementEnv.getMaxY()<=rectEnv.getMaxY()){this.intersects=true;return;}} -EnvelopeIntersectsVisitor.prototype.isDone=function(){return this.intersects==true;} -var GeometryContainsPointVisitor=function(rectangle){this.rectSeq=rectangle.getExteriorRing().getCoordinateSequence();this.rectEnv=rectangle.getEnvelopeInternal();};GeometryContainsPointVisitor.prototype=new jsts.geom.util.ShortCircuitedGeometryVisitor();GeometryContainsPointVisitor.constructor=GeometryContainsPointVisitor;GeometryContainsPointVisitor.prototype.rectSeq=null;GeometryContainsPointVisitor.prototype.rectEnv=null;GeometryContainsPointVisitor.prototype.containsPoint=false;GeometryContainsPointVisitor.prototype.containsPoint=function(){return this.containsPoint;} -GeometryContainsPointVisitor.prototype.visit=function(geom){if(!(geom instanceof jsts.geom.Polygon)) -return;var elementEnv=geom.getEnvelopeInternal();if(!this.rectEnv.intersects(elementEnv)) -return;var rectPt=new jsts.geom.Coordinate();for(var i=0;i<4;i++){this.rectSeq.getCoordinate(i,rectPt);if(!elementEnv.contains(rectPt)) -continue;if(SimplePointInAreaLocator.containsPointInPolygon(rectPt,geom)){this.containsPoint=true;return;}}} -GeometryContainsPointVisitor.prototype.isDone=function(){return this.containsPoint==true;} -var RectangleIntersectsSegmentVisitor=function(rectangle){this.rectEnv=rectangle.getEnvelopeInternal();this.rectIntersector=new RectangleLineIntersector(rectEnv);};RectangleIntersectsSegmentVisitor.prototype=new jsts.geom.util.ShortCircuitedGeometryVisitor();RectangleIntersectsSegmentVisitor.constructor=RectangleIntersectsSegmentVisitor;RectangleIntersectsSegmentVisitor.prototype.rectEnv=null;RectangleIntersectsSegmentVisitor.prototype.rectIntersector=null;RectangleIntersectsSegmentVisitor.prototype.hasIntersection=false;RectangleIntersectsSegmentVisitor.prototype.p0=null;RectangleIntersectsSegmentVisitor.prototype.p1=null;RectangleIntersectsSegmentVisitor.prototype.intersects=function(){return this.hasIntersection;} -RectangleIntersectsSegmentVisitor.prototype.visit=function(geom){var elementEnv=geom.getEnvelopeInternal();if(!this.rectEnv.intersects(elementEnv)) -return;var lines=LinearComponentExtracter.getLines(geom);this.checkIntersectionWithLineStrings(lines);} -RectangleIntersectsSegmentVisitor.prototype.checkIntersectionWithLineStrings=function(lines){for(var i=lines.iterator();i.hasNext();){var testLine=i.next();this.checkIntersectionWithSegments(testLine);if(this.hasIntersection) -return;}} -RectangleIntersectsSegmentVisitor.prototype.checkIntersectionWithSegments=function(testLine){var seq1=testLine.getCoordinateSequence();for(var j=1;jx1) -return 1;return 0;};jsts.noding.SegmentPointComparator.compareValue=function(compareSign0,compareSign1){if(compareSign0<0) -return-1;if(compareSign0>0) -return 1;if(compareSign1<0) -return-1;if(compareSign1>0) -return 1;return 0;};jsts.operation.relate.RelateOp=function(){jsts.operation.GeometryGraphOperation.apply(this,arguments);this._relate=new jsts.operation.relate.RelateComputer(this.arg);};jsts.operation.relate.RelateOp.prototype=new jsts.operation.GeometryGraphOperation();jsts.operation.relate.RelateOp.relate=function(a,b,boundaryNodeRule){var relOp=new jsts.operation.relate.RelateOp(a,b,boundaryNodeRule);var im=relOp.getIntersectionMatrix();return im;};jsts.operation.relate.RelateOp.prototype._relate=null;jsts.operation.relate.RelateOp.prototype.getIntersectionMatrix=function(){return this._relate.computeIM();};jsts.index.chain.MonotoneChain=function(pts,start,end,context){this.pts=pts;this.start=start;this.end=end;this.context=context;};jsts.index.chain.MonotoneChain.prototype.pts=null;jsts.index.chain.MonotoneChain.prototype.start=null;jsts.index.chain.MonotoneChain.prototype.end=null;jsts.index.chain.MonotoneChain.prototype.env=null;jsts.index.chain.MonotoneChain.prototype.context=null;jsts.index.chain.MonotoneChain.prototype.id=null;jsts.index.chain.MonotoneChain.prototype.setId=function(id){this.id=id;};jsts.index.chain.MonotoneChain.prototype.getId=function(){return this.id;};jsts.index.chain.MonotoneChain.prototype.getContext=function(){return this.context;};jsts.index.chain.MonotoneChain.prototype.getEnvelope=function(){if(this.env==null){var p0=this.pts[this.start];var p1=this.pts[this.end];this.env=new jsts.geom.Envelope(p0,p1);} -return this.env;};jsts.index.chain.MonotoneChain.prototype.getStartIndex=function(){return this.start;};jsts.index.chain.MonotoneChain.prototype.getEndIndex=function(){return this.end;};jsts.index.chain.MonotoneChain.prototype.getLineSegment=function(index,ls){ls.p0=this.pts[index];ls.p1=this.pts[index+1];};jsts.index.chain.MonotoneChain.prototype.getCoordinates=function(){var coord=[];var index=0;for(var i=this.start;i<=this.end;i++){coord[index++]=this.pts[i];} -return coord;};jsts.index.chain.MonotoneChain.prototype.select=function(searchEnv,mcs){this.computeSelect2(searchEnv,this.start,this.end,mcs);};jsts.index.chain.MonotoneChain.prototype.computeSelect2=function(searchEnv,start0,end0,mcs){var p0=this.pts[start0];var p1=this.pts[end0];mcs.tempEnv1.init(p0,p1);if(end0-start0===1){mcs.select(this,start0);return;} -if(!searchEnv.intersects(mcs.tempEnv1)) -return;var mid=parseInt((start0+end0)/2);if(start0=0||actualDimensionValue===Dimension.TRUE)){return true;} -if(requiredDimensionSymbol==='F'&&actualDimensionValue===Dimension.FALSE){return true;} -if(requiredDimensionSymbol==='0'&&actualDimensionValue===Dimension.P){return true;} -if(requiredDimensionSymbol==='1'&&actualDimensionValue===Dimension.L){return true;} -if(requiredDimensionSymbol==='2'&&actualDimensionValue===Dimension.A){return true;} -return false;};jsts.geom.IntersectionMatrix.matches2=function(actualDimensionSymbols,requiredDimensionSymbols){var m=new jsts.geom.IntersectionMatrix(actualDimensionSymbols);return m.matches(requiredDimensionSymbols);};jsts.geom.IntersectionMatrix.prototype.set=function(row,column,dimensionValue){if(typeof row==='string'){this.set2(row);return;} -this.matrix[row][column]=dimensionValue;};jsts.geom.IntersectionMatrix.prototype.set2=function(dimensionSymbols){for(var i=0;i=0&&column>=0){this.setAtLeast(row,column,minimumDimensionValue);}};jsts.geom.IntersectionMatrix.prototype.setAtLeast2=function(minimumDimensionSymbols){var i;for(i=0;idimensionOfGeometryB){return this.isTouches(dimensionOfGeometryB,dimensionOfGeometryA);} -if((dimensionOfGeometryA==Dimension.A&&dimensionOfGeometryB==Dimension.A)||(dimensionOfGeometryA==Dimension.L&&dimensionOfGeometryB==Dimension.L)||(dimensionOfGeometryA==Dimension.L&&dimensionOfGeometryB==Dimension.A)||(dimensionOfGeometryA==Dimension.P&&dimensionOfGeometryB==Dimension.A)||(dimensionOfGeometryA==Dimension.P&&dimensionOfGeometryB==Dimension.L)){return this.matrix[Location.INTERIOR][Location.INTERIOR]===Dimension.FALSE&&(jsts.geom.IntersectionMatrix.matches(this.matrix[Location.INTERIOR][Location.BOUNDARY],'T')||jsts.geom.IntersectionMatrix.matches(this.matrix[Location.BOUNDARY][Location.INTERIOR],'T')||jsts.geom.IntersectionMatrix.matches(this.matrix[Location.BOUNDARY][Location.BOUNDARY],'T'));} -return false;};jsts.geom.IntersectionMatrix.prototype.isCrosses=function(dimensionOfGeometryA,dimensionOfGeometryB){if((dimensionOfGeometryA==Dimension.P&&dimensionOfGeometryB==Dimension.L)||(dimensionOfGeometryA==Dimension.P&&dimensionOfGeometryB==Dimension.A)||(dimensionOfGeometryA==Dimension.L&&dimensionOfGeometryB==Dimension.A)){return jsts.geom.IntersectionMatrix.matches(this.matrix[Location.INTERIOR][Location.INTERIOR],'T')&&jsts.geom.IntersectionMatrix.matches(this.matrix[Location.INTERIOR][Location.EXTERIOR],'T');} -if((dimensionOfGeometryA==Dimension.L&&dimensionOfGeometryB==Dimension.P)||(dimensionOfGeometryA==Dimension.A&&dimensionOfGeometryB==Dimension.P)||(dimensionOfGeometryA==Dimension.A&&dimensionOfGeometryB==Dimension.L)){return jsts.geom.IntersectionMatrix.matches(matrix[Location.INTERIOR][Location.INTERIOR],'T')&&jsts.geom.IntersectionMatrix.matches(this.matrix[Location.EXTERIOR][Location.INTERIOR],'T');} -if(dimensionOfGeometryA===Dimension.L&&dimensionOfGeometryB===Dimension.L){return this.matrix[Location.INTERIOR][Location.INTERIOR]===0;} -return false;};jsts.geom.IntersectionMatrix.prototype.isWithin=function(){return jsts.geom.IntersectionMatrix.matches(this.matrix[Location.INTERIOR][Location.INTERIOR],'T')&&this.matrix[Location.INTERIOR][Location.EXTERIOR]==Dimension.FALSE&&this.matrix[Location.BOUNDARY][Location.EXTERIOR]==Dimension.FALSE;};jsts.geom.IntersectionMatrix.prototype.isContains=function(){return jsts.geom.IntersectionMatrix.matches(this.matrix[Location.INTERIOR][Location.INTERIOR],'T')&&this.matrix[Location.EXTERIOR][Location.INTERIOR]==Dimension.FALSE&&this.matrix[Location.EXTERIOR][Location.BOUNDARY]==Dimension.FALSE;};jsts.geom.IntersectionMatrix.prototype.isCovers=function(){var hasPointInCommon=jsts.geom.IntersectionMatrix.matches(this.matrix[Location.INTERIOR][Location.INTERIOR],'T')||jsts.geom.IntersectionMatrix.matches(this.matrix[Location.INTERIOR][Location.BOUNDARY],'T')||jsts.geom.IntersectionMatrix.matches(this.matrix[Location.BOUNDARY][Location.INTERIOR],'T')||jsts.geom.IntersectionMatrix.matches(this.matrix[Location.BOUNDARY][Location.BOUNDARY],'T');return hasPointInCommon&&this.matrix[Location.EXTERIOR][Location.INTERIOR]==Dimension.FALSE&&this.matrix[Location.EXTERIOR][Location.BOUNDARY]==Dimension.FALSE;};jsts.geom.IntersectionMatrix.prototype.isCoveredBy=function(){var hasPointInCommon=jsts.geom.IntersectionMatrix.matches(this.matrix[Location.INTERIOR][Location.INTERIOR],'T')||jsts.geom.IntersectionMatrix.matches(this.matrix[Location.INTERIOR][Location.BOUNDARY],'T')||jsts.geom.IntersectionMatrix.matches(this.matrix[Location.BOUNDARY][Location.INTERIOR],'T')||jsts.geom.IntersectionMatrix.matches(this.matrix[Location.BOUNDARY][Location.BOUNDARY],'T');return hasPointInCommon&&this.matrix[Location.INTERIOR][Location.EXTERIOR]===Dimension.FALSE&&this.matrix[Location.BOUNDARY][Location.EXTERIOR]===Dimension.FALSE;};jsts.geom.IntersectionMatrix.prototype.isEquals=function(dimensionOfGeometryA,dimensionOfGeometryB){if(dimensionOfGeometryA!==dimensionOfGeometryB){return false;} -return jsts.geom.IntersectionMatrix.matches(this.matrix[Location.INTERIOR][Location.INTERIOR],'T')&&this.matrix[Location.EXTERIOR][Location.INTERIOR]===Dimension.FALSE&&this.matrix[Location.INTERIOR][Location.EXTERIOR]===Dimension.FALSE&&this.matrix[Location.EXTERIOR][Location.BOUNDARY]===Dimension.FALSE&&this.matrix[Location.BOUNDARY][Location.EXTERIOR]===Dimension.FALSE;};jsts.geom.IntersectionMatrix.prototype.isOverlaps=function(dimensionOfGeometryA,dimensionOfGeometryB){if((dimensionOfGeometryA==Dimension.P&&dimensionOfGeometryB===Dimension.P)||(dimensionOfGeometryA==Dimension.A&&dimensionOfGeometryB===Dimension.A)){return jsts.geom.IntersectionMatrix.matches(this.matrix[Location.INTERIOR][Location.INTERIOR],'T')&&jsts.geom.IntersectionMatrix.matches(this.matrix[Location.INTERIOR][Location.EXTERIOR],'T')&&jsts.geom.IntersectionMatrix.matches(this.matrix[Location.EXTERIOR][Location.INTERIOR],'T');} -if(dimensionOfGeometryA===Dimension.L&&dimensionOfGeometryB===Dimension.L){return this.matrix[Location.INTERIOR][Location.INTERIOR]==1&&jsts.geom.IntersectionMatrix.matches(this.matrix[Location.INTERIOR][Location.EXTERIOR],'T')&&jsts.geom.IntersectionMatrix.matches(this.matrix[Location.EXTERIOR][Location.INTERIOR],'T');} -return false;};jsts.geom.IntersectionMatrix.prototype.matches=function(requiredDimensionSymbols){if(requiredDimensionSymbols.length!=9){throw new jsts.error.IllegalArgumentException('Should be length 9: '+ -requiredDimensionSymbols);} -for(var ai=0;ai<3;ai++){for(var bi=0;bi<3;bi++){if(!jsts.geom.IntersectionMatrix.matches(this.matrix[ai][bi],requiredDimensionSymbols.charAt(3*ai+bi))){return false;}}} -return true;};jsts.geom.IntersectionMatrix.prototype.transpose=function(){var temp=matrix[1][0];this.matrix[1][0]=this.matrix[0][1];this.matrix[0][1]=temp;temp=this.matrix[2][0];this.matrix[2][0]=this.matrix[0][2];this.matrix[0][2]=temp;temp=this.matrix[2][1];this.matrix[2][1]=this.matrix[1][2];this.matrix[1][2]=temp;return this;};jsts.geom.IntersectionMatrix.prototype.toString=function(){var ai,bi,buf='';for(ai=0;ai<3;ai++){for(bi=0;bi<3;bi++){buf+=Dimension.toDimensionSymbol(this.matrix[ai][bi]);}} -return buf;};})();jsts.triangulate.quadedge.LastFoundQuadEdgeLocator=function(subdiv){this.subdiv=subdiv;this.lastEdge=null;this.init();};jsts.triangulate.quadedge.LastFoundQuadEdgeLocator.prototype.init=function(){this.lastEdge=this.findEdge();};jsts.triangulate.quadedge.LastFoundQuadEdgeLocator.prototype.findEdge=function(){var edges=this.subdiv.getEdges();return edges[0];};jsts.triangulate.quadedge.LastFoundQuadEdgeLocator.prototype.locate=function(v){if(!this.lastEdge.isLive()){this.init();} -var e=this.subdiv.locateFromEdge(v,this.lastEdge);this.lastEdge=e;return e;};jsts.noding.SegmentNodeList=function(edge){this.nodeMap=new javascript.util.TreeMap();this.edge=edge;};jsts.noding.SegmentNodeList.prototype.nodeMap=null;jsts.noding.SegmentNodeList.prototype.iterator=function(){return this.nodeMap.values().iterator();};jsts.noding.SegmentNodeList.prototype.edge=null;jsts.noding.SegmentNodeList.prototype.getEdge=function(){return this.edge;};jsts.noding.SegmentNodeList.prototype.add=function(intPt,segmentIndex){var eiNew=new jsts.noding.SegmentNode(this.edge,intPt,segmentIndex,this.edge.getSegmentOctant(segmentIndex));var ei=this.nodeMap.get(eiNew);if(ei!==null){jsts.util.Assert.isTrue(ei.coord.equals2D(intPt),'Found equal nodes with different coordinates');return ei;} -this.nodeMap.put(eiNew,eiNew);return eiNew;};jsts.noding.SegmentNodeList.prototype.addEndpoints=function(){var maxSegIndex=this.edge.size()-1;this.add(this.edge.getCoordinate(0),0);this.add(this.edge.getCoordinate(maxSegIndex),maxSegIndex);};jsts.noding.SegmentNodeList.prototype.addCollapsedNodes=function(){var collapsedVertexIndexes=[];this.findCollapsesFromInsertedNodes(collapsedVertexIndexes);this.findCollapsesFromExistingVertices(collapsedVertexIndexes);for(var i=0;ideltaY){offset=deltaX*10.0;}else{offset=deltaY*10.0;} -this.frameVertex[0]=new jsts.triangulate.quadedge.Vertex((env.getMaxX()+env.getMinX())/2.0,env.getMaxY() -+offset);this.frameVertex[1]=new jsts.triangulate.quadedge.Vertex(env.getMinX()-offset,env.getMinY()-offset);this.frameVertex[2]=new jsts.triangulate.quadedge.Vertex(env.getMaxX()+offset,env.getMinY()-offset);this.frameEnv=new jsts.geom.Envelope(this.frameVertex[0].getCoordinate(),this.frameVertex[1].getCoordinate());this.frameEnv.expandToInclude(this.frameVertex[2].getCoordinate());};jsts.triangulate.quadedge.QuadEdgeSubdivision.prototype.initSubdiv=function(){var ea,eb,ec;ea=this.makeEdge(this.frameVertex[0],this.frameVertex[1]);eb=this.makeEdge(this.frameVertex[1],this.frameVertex[2]);jsts.triangulate.quadedge.QuadEdge.splice(ea.sym(),eb);ec=this.makeEdge(this.frameVertex[2],this.frameVertex[0]);jsts.triangulate.quadedge.QuadEdge.splice(eb.sym(),ec);jsts.triangulate.quadedge.QuadEdge.splice(ec.sym(),ea);return ea;};jsts.triangulate.quadedge.QuadEdgeSubdivision.prototype.getTolerance=function(){return this.tolerance;};jsts.triangulate.quadedge.QuadEdgeSubdivision.prototype.getEnvelope=function(){return new jsts.geom.Envelope(this.frameEnv);};jsts.triangulate.quadedge.QuadEdgeSubdivision.prototype.getEdges=function(){if(arguments.length>0){return this.getEdgesByFactory(arguments[0]);}else{return this.quadEdges;}};jsts.triangulate.quadedge.QuadEdgeSubdivision.prototype.setLocator=function(locator){this.locator=locator;};jsts.triangulate.quadedge.QuadEdgeSubdivision.prototype.makeEdge=function(o,d){var q=jsts.triangulate.quadedge.QuadEdge.makeEdge(o,d);this.quadEdges.push(q);return q;};jsts.triangulate.quadedge.QuadEdgeSubdivision.prototype.connect=function(a,b){var q=jsts.triangulate.quadedge.QuadEdge.connect(a,b);this.quadEdges.push(q);return q;};jsts.triangulate.quadedge.QuadEdgeSubdivision.prototype.delete_jsts=function(e){jsts.triangulate.quadedge.QuadEdge.splice(e,e.oPrev());jsts.triangulate.quadedge.QuadEdge.splice(e.sym(),e.sym().oPrev());var eSym,eRot,eRotSym;e.eSym=e.sym();eRot=e.rot;eRotSym=e.rot.sym();var idx=this.quadEdges.indexOf(e);if(idx!==-1){this.quadEdges.splice(idx,1);} -idx=this.quadEdges.indexOf(eSym);if(idx!==-1){this.quadEdges.splice(idx,1);} -idx=this.quadEdges.indexOf(eRot);if(idx!==-1){this.quadEdges.splice(idx,1);} -idx=this.quadEdges.indexOf(eRotSym);if(idx!==-1){this.quadEdges.splice(idx,1);} -e.delete_jsts();eSym.delete_jsts();eRot.delete_jsts();eRotSym.delete_jsts();};jsts.triangulate.quadedge.QuadEdgeSubdivision.prototype.locateFromEdge=function(v,startEdge){var iter=0,maxIter=this.quadEdges.length,e;e=startEdge;while(true){iter++;if(iter>maxIter){throw new jsts.error.LocateFailureError(e.toLineSegment());} -if((v.equals(e.orig()))||(v.equals(e.dest()))){break;}else if(v.rightOf(e)){e=e.sym();}else if(!v.rightOf(e.oNext())){e=e.oNext();}else if(!v.rightOf(e.dPrev())){e=e.dPrev();}else{break;}} -return e;};jsts.triangulate.quadedge.QuadEdgeSubdivision.prototype.locate=function(){if(arguments.length===1){if(arguments[0]instanceof jsts.triangulate.quadedge.Vertex){return this.locateByVertex(arguments[0]);}else{return this.locateByCoordinate(arguments[0]);}}else{return this.locateByCoordinates(arguments[0],arguments[1]);}};jsts.triangulate.quadedge.QuadEdgeSubdivision.prototype.locateByVertex=function(v){return this.locator.locate(v);};jsts.triangulate.quadedge.QuadEdgeSubdivision.prototype.locateByCoordinate=function(p){return this.locator.locate(new jsts.triangulate.quadedge.Vertex(p));};jsts.triangulate.quadedge.QuadEdgeSubdivision.prototype.locateByCoordinates=function(p0,p1){var e,base,locEdge;var e=this.locator.locate(new jsts.triangulate.quadedge.Vertex(p0));if(e===null){return null;} -base=e;if(e.dest().getCoordinate().equals2D(p0)){base=e.sym();} -locEdge=base;do{if(locEdge.dest().getCoordinate().equals2D(p1)){return locEdge;} -locEdge=locEdge.oNext();}while(locEdge!=base);return null;};jsts.triangulate.quadedge.QuadEdgeSubdivision.prototype.insertSite=function(v){var e,base,startEdge;e=this.locate(v);if((v.equals(e.orig(),this.tolerance))||(v.equals(e.dest(),this.tolerance))){return e;} -base=this.makeEdge(e.orig(),v);jsts.triangulate.quadedge.QuadEdge.splice(base,e);startEdge=base;do{base=this.connect(e,base.sym());e=base.oPrev();}while(e.lNext()!=startEdge);return startEdge;};jsts.triangulate.quadedge.QuadEdgeSubdivision.prototype.isFrameEdge=function(e){if(this.isFrameVertex(e.orig())||this.isFrameVertex(e.dest())){return true;} -return false;};jsts.triangulate.quadedge.QuadEdgeSubdivision.prototype.isFrameBorderEdge=function(e){var leftTri,rightTri,vLeftTriOther,vRightTriOther;leftTri=new Array(3);this.getTriangleEdges(e,leftTri);rightTri=new Array(3);this.getTriangleEdges(e.sym(),rightTri);vLeftTriOther=e.lNext().dest();if(this.isFrameVertex(vLeftTriOther)){return true;} -vRightTriOther=e.sym().lNext().dest();if(this.isFrameVertex(vRightTriOther)){return true;} -return false;};jsts.triangulate.quadedge.QuadEdgeSubdivision.prototype.isFrameVertex=function(v){if(v.equals(this.frameVertex[0])){return true;} -if(v.equals(this.frameVertex[1])){return true;} -if(v.equals(this.frameVertex[2])){return true;} -return false;};jsts.triangulate.quadedge.QuadEdgeSubdivision.prototype.isOnEdge=function(e,p){this.seg.setCoordinates(e.orig().getCoordinate(),e.dest().getCoordinate());var dist=this.seg.distance(p);return dist0){edge=edgeStack.pop();if(visitedEdges.indexOf(edge)===-1){priQE=edge.getPrimary();if(includeFrame||!this.isFrameEdge(priQE)){edges.push(priQE);} -edgeStack.push(edge.oNext());edgeStack.push(edge.sym().oNext());visitedEdges.push(edge);visitedEdges.push(edge.sym());}} -return edges;};jsts.triangulate.quadedge.QuadEdgeSubdivision.prototype.visitTriangles=function(triVisitor,includeFrame){this.visitedKey++;var edgeStack,visitedEdges,edge,triEdges;edgeStack=[];edgeStack.push(this.startingEdge);visitedEdges=[];while(edgeStack.length>0){edge=edgeStack.pop();if(visitedEdges.indexOf(edge)===-1){triEdges=this.fetchTriangleToVisit(edge,edgeStack,includeFrame,visitedEdges);if(triEdges!==null) -triVisitor.visit(triEdges);}}};jsts.triangulate.quadedge.QuadEdgeSubdivision.prototype.fetchTriangleToVisit=function(edge,edgeStack,includeFrame,visitedEdges){var curr,edgeCount,isFrame,sym;curr=edge;edgeCount=0;isFrame=false;do{this.triEdges[edgeCount]=curr;if(this.isFrameEdge(curr)){isFrame=true;} -sym=curr.sym();if(visitedEdges.indexOf(sym)===-1){edgeStack.push(sym);} -visitedEdges.push(curr);edgeCount++;curr=curr.lNext();}while(curr!==edge);if(isFrame&&!includeFrame){return null;} -return this.triEdges;};jsts.triangulate.quadedge.QuadEdgeSubdivision.prototype.getTriangleEdges=function(includeFrame){var visitor=new jsts.triangulate.quadedge.TriangleEdgesListVisitor();this.visitTriangles(visitor,includeFrame);return visitor.getTriangleEdges();};jsts.triangulate.quadedge.QuadEdgeSubdivision.prototype.getTriangleVertices=function(includeFrame){var visitor=new TriangleVertexListVisitor();this.visitTriangles(visitor,includeFrame);return visitor.getTriangleVertices();};jsts.triangulate.quadedge.QuadEdgeSubdivision.prototype.getTriangleCoordinates=function(includeFrame){var visitor=new jsts.triangulate.quadedge.TriangleCoordinatesVisitor();this.visitTriangles(visitor,includeFrame);return visitor.getTriangles();};jsts.triangulate.quadedge.QuadEdgeSubdivision.prototype.getEdgesByFactory=function(geomFact){var quadEdges,edges,i,il,qe,coords;quadEdges=this.getPrimaryEdges(false);edges=[];i=0;il=quadEdges.length;for(i;i0){this.coordList.closeRing();pts=this.coordList.toArray();if(pts.length!==4){return;} -this.triCoords.push(pts);}};jsts.triangulate.quadedge.TriangleCoordinatesVisitor.prototype.getTriangles=function(){return this.triCoords;};jsts.operation.relate.EdgeEndBundle=function(){this.edgeEnds=[];var e=arguments[0]instanceof jsts.geomgraph.EdgeEnd?arguments[0]:arguments[1];var edge=e.getEdge();var coord=e.getCoordinate();var dirCoord=e.getDirectedCoordinate();var label=new jsts.geomgraph.Label(e.getLabel());jsts.geomgraph.EdgeEnd.call(this,edge,coord,dirCoord,label);this.insert(e);};jsts.operation.relate.EdgeEndBundle.prototype=new jsts.geomgraph.EdgeEnd();jsts.operation.relate.EdgeEndBundle.prototype.edgeEnds=null;jsts.operation.relate.EdgeEndBundle.prototype.getLabel=function(){return this.label;};jsts.operation.relate.EdgeEndBundle.prototype.getEdgeEnds=function(){return this.edgeEnds;};jsts.operation.relate.EdgeEndBundle.prototype.insert=function(e){this.edgeEnds.push(e);};jsts.operation.relate.EdgeEndBundle.prototype.computeLabel=function(boundaryNodeRule){var isArea=false;for(var i=0;i0){loc=jsts.geomgraph.GeometryGraph.determineBoundary(boundaryNodeRule,boundaryCount);} -this.label.setLocation(geomIndex,loc);};jsts.operation.relate.EdgeEndBundle.prototype.computeLabelSides=function(geomIndex){this.computeLabelSide(geomIndex,jsts.geomgraph.Position.LEFT);this.computeLabelSide(geomIndex,jsts.geomgraph.Position.RIGHT);};jsts.operation.relate.EdgeEndBundle.prototype.computeLabelSide=function(geomIndex,side){for(var i=0;imaxLen){maxLen=lenBC;} -if(lenCA>maxLen){maxLen=lenCA;} -return maxLen;};jsts.geom.Triangle.angleBisector=function(a,b,c){var len0,len2,frac,dx,dy,splitPt;len0=b.distance(a);len2=b.distance(c);frac=len0/(len0+len2);dx=c.x-a.x;dy=c.y-a.y;splitPt=new jsts.geom.Coordinate(a.x+frac*dx,a.y+frac*dy);return splitPt;};jsts.geom.Triangle.area=function(a,b,c){return Math.abs(((c.x-a.x)*(b.y-a.y)-(b.x-a.x)*(c.y-a.y))/2.0);};jsts.geom.Triangle.signedArea=function(a,b,c){return((c.x-a.x)*(b.y-a.y)-(b.x-a.x)*(c.y-a.y))/2.0;};jsts.geom.Triangle.prototype.inCentre=function(){return jsts.geom.Triangle.inCentre(this.p0,this.p1,this.p2);};jsts.noding.OrientedCoordinateArray=function(pts){this.pts=pts;this._orientation=jsts.noding.OrientedCoordinateArray.orientation(pts);};jsts.noding.OrientedCoordinateArray.prototype.pts=null;jsts.noding.OrientedCoordinateArray.prototype._orientation=undefined;jsts.noding.OrientedCoordinateArray.orientation=function(pts){return jsts.geom.CoordinateArrays.increasingDirection(pts)===1;};jsts.noding.OrientedCoordinateArray.prototype.compareTo=function(o1){var oca=o1;var comp=jsts.noding.OrientedCoordinateArray.compareOriented(this.pts,this._orientation,oca.pts,oca._orientation);return comp;};jsts.noding.OrientedCoordinateArray.compareOriented=function(pts1,orientation1,pts2,orientation2){var dir1=orientation1?1:-1;var dir2=orientation2?1:-1;var limit1=orientation1?pts1.length:-1;var limit2=orientation2?pts2.length:-1;var i1=orientation1?0:pts1.length-1;var i2=orientation2?0:pts2.length-1;var comp=0;while(true){var compPt=pts1[i1].compareTo(pts2[i2]);if(compPt!==0) -return compPt;i1+=dir1;i2+=dir2;var done1=i1===limit1;var done2=i2===limit2;if(done1&&!done2) -return-1;if(!done1&&done2) -return 1;if(done1&&done2) -return 0;}};jsts.algorithm.CentralEndpointIntersector=function(p00,p01,p10,p11){this.pts=[p00,p01,p10,p11];this.compute();};jsts.algorithm.CentralEndpointIntersector.getIntersection=function(p00,p01,p10,p11){var intor=new jsts.algorithm.CentralEndpointIntersector(p00,p01,p10,p11);return intor.getIntersection();};jsts.algorithm.CentralEndpointIntersector.prototype.pts=null;jsts.algorithm.CentralEndpointIntersector.prototype.intPt=null;jsts.algorithm.CentralEndpointIntersector.prototype.compute=function(){var centroid=jsts.algorithm.CentralEndpointIntersector.average(this.pts);this.intPt=this.findNearestPoint(centroid,this.pts);};jsts.algorithm.CentralEndpointIntersector.prototype.getIntersection=function(){return this.intPt;};jsts.algorithm.CentralEndpointIntersector.average=function(pts){var avg=new jsts.geom.Coordinate();var i,n=pts.length;for(i=0;i0){avg.x/=n;avg.y/=n;} -return avg;};jsts.algorithm.CentralEndpointIntersector.prototype.findNearestPoint=function(p,pts){var minDist=Number.MAX_VALUE;var i,result=null,dist;for(i=0;i0.0?distance:0.0;var bufEnvSize=envSize+2*expandByDistance;var bufEnvLog10=(Math.log(bufEnvSize)/Math.log(10)+1.0);var minUnitLog10=bufEnvLog10-maxPrecisionDigits;var scaleFactor=Math.pow(10.0,-minUnitLog10);return scaleFactor;};jsts.operation.buffer.BufferOp.bufferOp=function(g,distance){if(arguments.length>2){return jsts.operation.buffer.BufferOp.bufferOp2.apply(this,arguments);} -var gBuf=new jsts.operation.buffer.BufferOp(g);var geomBuf=gBuf.getResultGeometry(distance);return geomBuf;};jsts.operation.buffer.BufferOp.bufferOp2=function(g,distance,params){if(arguments.length>3){return jsts.operation.buffer.BufferOp.bufferOp3.apply(this,arguments);} -var bufOp=new jsts.operation.buffer.BufferOp(g,params);var geomBuf=bufOp.getResultGeometry(distance);return geomBuf;};jsts.operation.buffer.BufferOp.bufferOp3=function(g,distance,quadrantSegments){if(arguments.length>4){return jsts.operation.buffer.BufferOp.bufferOp4.apply(this,arguments);} -var bufOp=new jsts.operation.buffer.BufferOp(g);bufOp.setQuadrantSegments(quadrantSegments);var geomBuf=bufOp.getResultGeometry(distance);return geomBuf;};jsts.operation.buffer.BufferOp.bufferOp4=function(g,distance,quadrantSegments,endCapStyle){var bufOp=new jsts.operation.buffer.BufferOp(g);bufOp.setQuadrantSegments(quadrantSegments);bufOp.setEndCapStyle(endCapStyle);var geomBuf=bufOp.getResultGeometry(distance);return geomBuf;};jsts.operation.buffer.BufferOp.prototype.argGeom=null;jsts.operation.buffer.BufferOp.prototype.distance=null;jsts.operation.buffer.BufferOp.prototype.bufParams=null;jsts.operation.buffer.BufferOp.prototype.resultGeometry=null;jsts.operation.buffer.BufferOp.prototype.setEndCapStyle=function(endCapStyle){this.bufParams.setEndCapStyle(endCapStyle);};jsts.operation.buffer.BufferOp.prototype.setQuadrantSegments=function(quadrantSegments){this.bufParams.setQuadrantSegments(quadrantSegments);};jsts.operation.buffer.BufferOp.prototype.getResultGeometry=function(dist){this.distance=dist;this.computeGeometry();return this.resultGeometry;};jsts.operation.buffer.BufferOp.prototype.computeGeometry=function(){this.bufferOriginalPrecision();if(this.resultGeometry!==null){return;} -var argPM=this.argGeom.getPrecisionModel();if(argPM.getType()===jsts.geom.PrecisionModel.FIXED){this.bufferFixedPrecision(argPM);}else{this.bufferReducedPrecision();}};jsts.operation.buffer.BufferOp.prototype.bufferReducedPrecision=function(){var precDigits;var saveException=null;for(precDigits=jsts.operation.buffer.BufferOp.MAX_PRECISION_DIGITS;precDigits>=0;precDigits--){try{this.bufferReducedPrecision2(precDigits);}catch(ex){saveException=ex;} -if(this.resultGeometry!==null){return;}} -throw saveException;};jsts.operation.buffer.BufferOp.prototype.bufferOriginalPrecision=function(){try{var bufBuilder=new jsts.operation.buffer.BufferBuilder(this.bufParams);this.resultGeometry=bufBuilder.buffer(this.argGeom,this.distance);}catch(e){}};jsts.operation.buffer.BufferOp.prototype.bufferReducedPrecision2=function(precisionDigits){var sizeBasedScaleFactor=jsts.operation.buffer.BufferOp.precisionScaleFactor(this.argGeom,this.distance,precisionDigits);var fixedPM=new jsts.geom.PrecisionModel(sizeBasedScaleFactor);this.bufferFixedPrecision(fixedPM);};jsts.operation.buffer.BufferOp.prototype.bufferFixedPrecision=function(fixedPM){var noder=new jsts.noding.ScaledNoder(new jsts.noding.snapround.MCIndexSnapRounder(new jsts.geom.PrecisionModel(1.0)),fixedPM.getScale());var bufBuilder=new jsts.operation.buffer.BufferBuilder(this.bufParams);bufBuilder.setWorkingPrecisionModel(fixedPM);bufBuilder.setNoder(noder);this.resultGeometry=bufBuilder.buffer(this.argGeom,this.distance);};(function(){var Location=jsts.geom.Location;var Position=jsts.geomgraph.Position;var Assert=jsts.util.Assert;jsts.geomgraph.GeometryGraph=function(argIndex,parentGeom,boundaryNodeRule){jsts.geomgraph.PlanarGraph.call(this);this.lineEdgeMap=new javascript.util.HashMap();this.ptLocator=new jsts.algorithm.PointLocator();this.argIndex=argIndex;this.parentGeom=parentGeom;this.boundaryNodeRule=boundaryNodeRule||jsts.algorithm.BoundaryNodeRule.OGC_SFS_BOUNDARY_RULE;if(parentGeom!==null){this.add(parentGeom);}};jsts.geomgraph.GeometryGraph.prototype=new jsts.geomgraph.PlanarGraph();jsts.geomgraph.GeometryGraph.constructor=jsts.geomgraph.GeometryGraph;jsts.geomgraph.GeometryGraph.prototype.createEdgeSetIntersector=function(){return new jsts.geomgraph.index.SimpleMCSweepLineIntersector();};jsts.geomgraph.GeometryGraph.determineBoundary=function(boundaryNodeRule,boundaryCount){return boundaryNodeRule.isInBoundary(boundaryCount)?Location.BOUNDARY:Location.INTERIOR;};jsts.geomgraph.GeometryGraph.prototype.parentGeom=null;jsts.geomgraph.GeometryGraph.prototype.lineEdgeMap=null;jsts.geomgraph.GeometryGraph.prototype.boundaryNodeRule=null;jsts.geomgraph.GeometryGraph.prototype.useBoundaryDeterminationRule=true;jsts.geomgraph.GeometryGraph.prototype.argIndex=null;jsts.geomgraph.GeometryGraph.prototype.boundaryNodes=null;jsts.geomgraph.GeometryGraph.prototype.hasTooFewPoints=false;jsts.geomgraph.GeometryGraph.prototype.invalidPoint=null;jsts.geomgraph.GeometryGraph.prototype.areaPtLocator=null;jsts.geomgraph.GeometryGraph.prototype.ptLocator=null;jsts.geomgraph.GeometryGraph.prototype.getGeometry=function(){return this.parentGeom;};jsts.geomgraph.GeometryGraph.prototype.getBoundaryNodes=function(){if(this.boundaryNodes===null) -this.boundaryNodes=this.nodes.getBoundaryNodes(this.argIndex);return this.boundaryNodes;};jsts.geomgraph.GeometryGraph.prototype.getBoundaryNodeRule=function(){return this.boundaryNodeRule;};jsts.geomgraph.GeometryGraph.prototype.findEdge=function(line){return this.lineEdgeMap.get(line);};jsts.geomgraph.GeometryGraph.prototype.computeSplitEdges=function(edgelist){for(var i=this.edges.iterator();i.hasNext();){var e=i.next();e.eiList.addSplitEdges(edgelist);}} -jsts.geomgraph.GeometryGraph.prototype.add=function(g){if(g.isEmpty()){return;} -if(g instanceof jsts.geom.MultiPolygon) -this.useBoundaryDeterminationRule=false;if(g instanceof jsts.geom.Polygon) -this.addPolygon(g);else if(g instanceof jsts.geom.LineString) -this.addLineString(g);else if(g instanceof jsts.geom.Point) -this.addPoint(g);else if(g instanceof jsts.geom.MultiPoint) -this.addCollection(g);else if(g instanceof jsts.geom.MultiLineString) -this.addCollection(g);else if(g instanceof jsts.geom.MultiPolygon) -this.addCollection(g);else if(g instanceof jsts.geom.GeometryCollection) -this.addCollection(g);else -throw new jsts.error.IllegalArgumentError('Geometry type not supported.');};jsts.geomgraph.GeometryGraph.prototype.addCollection=function(gc){for(var i=0;i=2,'found LineString with single point');this.insertBoundaryPoint(this.argIndex,coord[0]);this.insertBoundaryPoint(this.argIndex,coord[coord.length-1]);};jsts.geomgraph.GeometryGraph.prototype.addPolygonRing=function(lr,cwLeft,cwRight){if(lr.isEmpty()) -return;var coord=jsts.geom.CoordinateArrays.removeRepeatedPoints(lr.getCoordinates());if(coord.length<4){this.hasTooFewPoints=true;this.invalidPoint=coord[0];return;} -var left=cwLeft;var right=cwRight;if(jsts.algorithm.CGAlgorithms.isCCW(coord)){left=cwRight;right=cwLeft;} -var e=new jsts.geomgraph.Edge(coord,new jsts.geomgraph.Label(this.argIndex,Location.BOUNDARY,left,right));this.lineEdgeMap.put(lr,e);this.insertEdge(e);this.insertPoint(this.argIndex,coord[0],Location.BOUNDARY);};jsts.geomgraph.GeometryGraph.prototype.addPolygon=function(p){this.addPolygonRing(p.getExteriorRing(),Location.EXTERIOR,Location.INTERIOR);for(var i=0;i=0;i--){this.addPt(pt[i]);}}};jsts.operation.buffer.OffsetSegmentString.prototype.isRedundant=function(pt){if(this.ptList.length<1) -return false;var lastPt=this.ptList[this.ptList.length-1];var ptDist=pt.distance(lastPt);if(ptDist=2) -last2Pt=this.ptList[this.ptList.length-2];if(startPt.equals(lastPt)) -return;this.ptList.push(startPt);};jsts.operation.buffer.OffsetSegmentString.prototype.reverse=function(){};jsts.operation.buffer.OffsetSegmentString.prototype.getCoordinates=function(){return this.ptList;};jsts.algorithm.distance.PointPairDistance=function(){this.pt=[new jsts.geom.Coordinate(),new jsts.geom.Coordinate()];};jsts.algorithm.distance.PointPairDistance.prototype.pt=null;jsts.algorithm.distance.PointPairDistance.prototype.distance=NaN;jsts.algorithm.distance.PointPairDistance.prototype.isNull=true;jsts.algorithm.distance.PointPairDistance.prototype.initialize=function(p0,p1,distance){if(p0===undefined){this.isNull=true;return;} -this.pt[0].setCoordinate(p0);this.pt[1].setCoordinate(p1);this.distance=distance!==undefined?distance:p0.distance(p1);this.isNull=false;};jsts.algorithm.distance.PointPairDistance.prototype.getDistance=function(){return this.distance;};jsts.algorithm.distance.PointPairDistance.prototype.getCoordinates=function(){return this.pt;};jsts.algorithm.distance.PointPairDistance.prototype.getCoordinate=function(i){return this.pt[i];};jsts.algorithm.distance.PointPairDistance.prototype.setMaximum=function(ptDist){if(arguments.length===2){this.setMaximum2.apply(this,arguments);return;} -this.setMaximum(ptDist.pt[0],ptDist.pt[1]);};jsts.algorithm.distance.PointPairDistance.prototype.setMaximum2=function(p0,p1){if(this.isNull){this.initialize(p0,p1);return;} -var dist=p0.distance(p1);if(dist>this.distance) -this.initialize(p0,p1,dist);};jsts.algorithm.distance.PointPairDistance.prototype.setMinimum=function(ptDist){if(arguments.length===2){this.setMinimum2.apply(this,arguments);return;} -this.setMinimum(ptDist.pt[0],ptDist.pt[1]);};jsts.algorithm.distance.PointPairDistance.prototype.setMinimum2=function(p0,p1){if(this.isNull){this.initialize(p0,p1);return;} -var dist=p0.distance(p1);if(dist1.0||densifyFrac<=0.0) -throw new jsts.error.IllegalArgumentError('Fraction is not in range (0.0 - 1.0]');this.densifyFrac=densifyFrac;};jsts.algorithm.distance.DiscreteHausdorffDistance.prototype.distance=function(){this.compute(this.g0,this.g1);return ptDist.getDistance();};jsts.algorithm.distance.DiscreteHausdorffDistance.prototype.orientedDistance=function(){this.computeOrientedDistance(this.g0,this.g1,this.ptDist);return this.ptDist.getDistance();};jsts.algorithm.distance.DiscreteHausdorffDistance.prototype.getCoordinates=function(){return ptDist.getCoordinates();};jsts.algorithm.distance.DiscreteHausdorffDistance.prototype.compute=function(g0,g1){this.computeOrientedDistance(g0,g1,this.ptDist);this.computeOrientedDistance(g1,g0,this.ptDist);};jsts.algorithm.distance.DiscreteHausdorffDistance.prototype.computeOrientedDistance=function(discreteGeom,geom,ptDist){var distFilter=new MaxPointDistanceFilter(geom);discreteGeom.apply(distFilter);ptDist.setMaximum(distFilter.getMaxPointDistance());if(this.densifyFrac>0){var fracFilter=new MaxDensifiedByFractionDistanceFilter(geom,this.densifyFrac);discreteGeom.apply(fracFilter);ptDist.setMaximum(fracFilter.getMaxPointDistance());}};})();jsts.algorithm.MinimumBoundingCircle=function(geom){this.input=null;this.extremalPts=null;this.centre=null;this.radius=0;this.input=geom;};jsts.algorithm.MinimumBoundingCircle.prototype.getCircle=function(){this.compute();if(this.centre===null){return this.input.getFactory().createPolygon(null,null);} -var centrePoint=this.input.getFactory().createPoint(this.centre);if(this.radius===0){return centrePoint;} -return centrePoint.buffer(this.radius);};jsts.algorithm.MinimumBoundingCircle.prototype.getExtremalPoints=function(){this.compute();return this.extremalPts;};jsts.algorithm.MinimumBoundingCircle.prototype.getCentre=function(){this.compute();return this.centre;};jsts.algorithm.MinimumBoundingCircle.prototype.getRadius=function(){this.compute();return this.radius;};jsts.algorithm.MinimumBoundingCircle.prototype.computeCentre=function(){switch(this.extremalPts.length){case 0:this.centre=null;break;case 1:this.centre=this.extremalPts[0];break;case 2:this.centre=new jsts.geom.Coordinate((this.extremalPts[0].x+this.extremalPts[1].x)/2,(this.extremalPts[0].y+this.extremalPts[1].y)/2);break;case 3:this.centre=jsts.geom.Triangle.circumcentre(this.extremalPts[0],this.extremalPts[1],this.extremalPts[2]);break;}};jsts.algorithm.MinimumBoundingCircle.prototype.compute=function(){if(this.extremalPts!==null){return;} -this.computeCirclePoints();this.computeCentre();if(this.centre!==null){this.radius=this.centre.distance(this.extremalPts[0]);}};jsts.algorithm.MinimumBoundingCircle.prototype.computeCirclePoints=function(){if(this.input.isEmpty()){this.extremalPts=[];return;} -var pts;if(this.input.getNumPoints()===1){pts=this.input.getCoordinates();this.extremalPts=[new jsts.geom.Coordinate(pts[0])];return;} -var convexHull=this.input.convexHull();var hullPts=convexHull.getCoordinates();pts=hullPts;if(hullPts[0].equals2D(hullPts[hullPts.length-1])){pts=[];jsts.geom.CoordinateArrays.copyDeep(hullPts,0,pts,0,hullPts.length-1);} -if(pts.length<=2){this.extremalPts=jsts.geom.CoordinateArrays.copyDeep(pts);return;} -var P=jsts.algorithm.MinimumBoundingCircle.lowestPoint(pts);var Q=jsts.algorithm.MinimumBoundingCircle.pointWitMinAngleWithX(pts,P);for(var i=0;ia||a>=this.size())throw new k;return this.a[a]};s.prototype.get=s.prototype.get;s.prototype.g=function(){return 0===this.a.length};s.prototype.isEmpty=s.prototype.g;s.prototype.size=function(){return this.a.length};s.prototype.size=s.prototype.size;s.prototype.h=function(){for(var a=[],b=0,c=this.a.length;bc)b=b.left;else if(0t)c=c.left;else if(0t?d.left=c:d.right=c;for(c.color=1;null!=c&&c!=this.d&&1==c.parent.color;)D(c)==F(D(D(c)))?(d=G(D(D(c))),1==(null==d?0:d.color)?(E(D(c),0),E(d,0),E(D(D(c)),1),c=D(D(c))):(c==G(D(c))&& -(c=D(c),I(this,c)),E(D(c),0),E(D(D(c)),1),J(this,D(D(c))))):(d=F(D(D(c))),1==(null==d?0:d.color)?(E(D(c),0),E(d,0),E(D(D(c)),1),c=D(D(c))):(c==F(D(c))&&(c=D(c),J(this,c)),E(D(c),0),E(D(D(c)),1),I(this,D(D(c)))));this.d.color=0;this.n++;return null};H.prototype.put=H.prototype.put;H.prototype.m=function(){var a=new s,b;b=this.d;if(null!=b)for(;null!=b.left;)b=b.left;if(null!==b)for(a.add(b.value);null!==(b=K(b));)a.add(b.value);return a};H.prototype.values=H.prototype.m; -function I(a,b){if(null!=b){var c=b.right;b.right=c.left;null!=c.left&&(c.left.parent=b);c.parent=b.parent;null==b.parent?a.d=c:b.parent.left==b?b.parent.left=c:b.parent.right=c;c.left=b;b.parent=c}}function J(a,b){if(null!=b){var c=b.left;b.left=c.right;null!=c.right&&(c.right.parent=b);c.parent=b.parent;null==b.parent?a.d=c:b.parent.right==b?b.parent.right=c:b.parent.left=c;c.right=b;b.parent=c}} -function K(a){if(null===a)return null;if(null!==a.right)for(var b=a.right;null!==b.left;)b=b.left;else for(b=a.parent;null!==b&&a===b.right;)a=b,b=b.parent;return b}H.prototype.size=function(){return this.n};H.prototype.size=H.prototype.size;function L(a){this.a=[];a instanceof m&&this.e(a)}g(L,B);f("javascript.util.TreeSet",L);L.prototype.a=null;L.prototype.contains=function(a){for(var b=0,c=this.a.length;b points[hi][0]) { - hi = i - } - } - if(lo < hi) { - return [[lo], [hi]] - } else if(lo > hi) { - return [[hi], [lo]] - } else { - return [[lo]] - } -} -},{}],29:[function(require,module,exports){ -'use strict' - -module.exports = convexHull2D - -var monotoneHull = require('monotone-convex-hull-2d') - -function convexHull2D(points) { - var hull = monotoneHull(points) - var h = hull.length - if(h <= 2) { - return [] - } - var edges = new Array(h) - var a = hull[h-1] - for(var i=0; i= front[k]) { - x += 1 - } - } - c[j] = x - } - } - } - return cells -} - -function convexHullnD(points, d) { - try { - return ich(points, true) - } catch(e) { - //If point set is degenerate, try to find a basis and rerun it - var ah = aff(points) - if(ah.length <= d) { - //No basis, no try - return [] - } - var npoints = permute(points, ah) - var nhull = ich(npoints, true) - return invPermute(nhull, ah) - } -} -},{"affine-hull":31,"incremental-convex-hull":38}],31:[function(require,module,exports){ -'use strict' - -module.exports = affineHull - -var orient = require('robust-orientation') - -function linearlyIndependent(points, d) { - var nhull = new Array(d+1) - for(var i=0; i= nf)) { - a = ei - eptr += 1 - if(eptr < ne) { - ei = e[eptr] - ea = abs(ei) - } - } else { - a = fi - fptr += 1 - if(fptr < nf) { - fi = -f[fptr] - fa = abs(fi) - } - } - var x = a + b - var bv = x - a - var y = b - bv - var q0 = y - var q1 = x - var _x, _bv, _av, _br, _ar - while(eptr < ne && fptr < nf) { - if(ea < fa) { - a = ei - eptr += 1 - if(eptr < ne) { - ei = e[eptr] - ea = abs(ei) - } - } else { - a = fi - fptr += 1 - if(fptr < nf) { - fi = -f[fptr] - fa = abs(fi) - } - } - b = q0 - x = a + b - bv = x - a - y = b - bv - if(y) { - g[count++] = y - } - _x = q1 + x - _bv = _x - q1 - _av = _x - _bv - _br = x - _bv - _ar = q1 - _av - q0 = _ar + _br - q1 = _x - } - while(eptr < ne) { - a = ei - b = q0 - x = a + b - bv = x - a - y = b - bv - if(y) { - g[count++] = y - } - _x = q1 + x - _bv = _x - q1 - _av = _x - _bv - _br = x - _bv - _ar = q1 - _av - q0 = _ar + _br - q1 = _x - eptr += 1 - if(eptr < ne) { - ei = e[eptr] - } - } - while(fptr < nf) { - a = fi - b = q0 - x = a + b - bv = x - a - y = b - bv - if(y) { - g[count++] = y - } - _x = q1 + x - _bv = _x - q1 - _av = _x - _bv - _br = x - _bv - _ar = q1 - _av - q0 = _ar + _br - q1 = _x - fptr += 1 - if(fptr < nf) { - fi = -f[fptr] - } - } - if(q0) { - g[count++] = q0 - } - if(q1) { - g[count++] = q1 - } - if(!count) { - g[count++] = 0.0 - } - g.length = count - return g -} -},{}],35:[function(require,module,exports){ -"use strict" - -module.exports = linearExpansionSum - -//Easy case: Add two scalars -function scalarScalar(a, b) { - var x = a + b - var bv = x - a - var av = x - bv - var br = b - bv - var ar = a - av - var y = ar + br - if(y) { - return [y, x] - } - return [x] -} - -function linearExpansionSum(e, f) { - var ne = e.length|0 - var nf = f.length|0 - if(ne === 1 && nf === 1) { - return scalarScalar(e[0], f[0]) - } - var n = ne + nf - var g = new Array(n) - var count = 0 - var eptr = 0 - var fptr = 0 - var abs = Math.abs - var ei = e[eptr] - var ea = abs(ei) - var fi = f[fptr] - var fa = abs(fi) - var a, b - if(ea < fa) { - b = ei - eptr += 1 - if(eptr < ne) { - ei = e[eptr] - ea = abs(ei) - } - } else { - b = fi - fptr += 1 - if(fptr < nf) { - fi = f[fptr] - fa = abs(fi) - } - } - if((eptr < ne && ea < fa) || (fptr >= nf)) { - a = ei - eptr += 1 - if(eptr < ne) { - ei = e[eptr] - ea = abs(ei) - } - } else { - a = fi - fptr += 1 - if(fptr < nf) { - fi = f[fptr] - fa = abs(fi) - } - } - var x = a + b - var bv = x - a - var y = b - bv - var q0 = y - var q1 = x - var _x, _bv, _av, _br, _ar - while(eptr < ne && fptr < nf) { - if(ea < fa) { - a = ei - eptr += 1 - if(eptr < ne) { - ei = e[eptr] - ea = abs(ei) - } - } else { - a = fi - fptr += 1 - if(fptr < nf) { - fi = f[fptr] - fa = abs(fi) - } - } - b = q0 - x = a + b - bv = x - a - y = b - bv - if(y) { - g[count++] = y - } - _x = q1 + x - _bv = _x - q1 - _av = _x - _bv - _br = x - _bv - _ar = q1 - _av - q0 = _ar + _br - q1 = _x - } - while(eptr < ne) { - a = ei - b = q0 - x = a + b - bv = x - a - y = b - bv - if(y) { - g[count++] = y - } - _x = q1 + x - _bv = _x - q1 - _av = _x - _bv - _br = x - _bv - _ar = q1 - _av - q0 = _ar + _br - q1 = _x - eptr += 1 - if(eptr < ne) { - ei = e[eptr] - } - } - while(fptr < nf) { - a = fi - b = q0 - x = a + b - bv = x - a - y = b - bv - if(y) { - g[count++] = y - } - _x = q1 + x - _bv = _x - q1 - _av = _x - _bv - _br = x - _bv - _ar = q1 - _av - q0 = _ar + _br - q1 = _x - fptr += 1 - if(fptr < nf) { - fi = f[fptr] - } - } - if(q0) { - g[count++] = q0 - } - if(q1) { - g[count++] = q1 - } - if(!count) { - g[count++] = 0.0 - } - g.length = count - return g -} -},{}],36:[function(require,module,exports){ -"use strict" - -module.exports = twoProduct - -var SPLITTER = +(Math.pow(2, 27) + 1.0) - -function twoProduct(a, b, result) { - var x = a * b - - var c = SPLITTER * a - var abig = c - a - var ahi = c - abig - var alo = a - ahi - - var d = SPLITTER * b - var bbig = d - b - var bhi = d - bbig - var blo = b - bhi - - var err1 = x - (ahi * bhi) - var err2 = err1 - (alo * bhi) - var err3 = err2 - (ahi * blo) - - var y = alo * blo - err3 - - if(result) { - result[0] = y - result[1] = x - return result - } - - return [ y, x ] -} -},{}],37:[function(require,module,exports){ -"use strict" - -var twoProduct = require("two-product") -var robustSum = require("robust-sum") -var robustScale = require("robust-scale") -var robustSubtract = require("robust-subtract") - -var NUM_EXPAND = 5 - -var EPSILON = 1.1102230246251565e-16 -var ERRBOUND3 = (3.0 + 16.0 * EPSILON) * EPSILON -var ERRBOUND4 = (7.0 + 56.0 * EPSILON) * EPSILON - -function cofactor(m, c) { - var result = new Array(m.length-1) - for(var i=1; i>1 - return ["sum(", generateSum(expr.slice(0, m)), ",", generateSum(expr.slice(m)), ")"].join("") - } -} - -function determinant(m) { - if(m.length === 2) { - return [["sum(prod(", m[0][0], ",", m[1][1], "),prod(-", m[0][1], ",", m[1][0], "))"].join("")] - } else { - var expr = [] - for(var i=0; i 0) { - if(r <= 0) { - return det - } else { - s = l + r - } - } else if(l < 0) { - if(r >= 0) { - return det - } else { - s = -(l + r) - } - } else { - return det - } - var tol = ERRBOUND3 * s - if(det >= tol || det <= -tol) { - return det - } - return orientation3Exact(a, b, c) - }, - function orientation4(a,b,c,d) { - var adx = a[0] - d[0] - var bdx = b[0] - d[0] - var cdx = c[0] - d[0] - var ady = a[1] - d[1] - var bdy = b[1] - d[1] - var cdy = c[1] - d[1] - var adz = a[2] - d[2] - var bdz = b[2] - d[2] - var cdz = c[2] - d[2] - var bdxcdy = bdx * cdy - var cdxbdy = cdx * bdy - var cdxady = cdx * ady - var adxcdy = adx * cdy - var adxbdy = adx * bdy - var bdxady = bdx * ady - var det = adz * (bdxcdy - cdxbdy) - + bdz * (cdxady - adxcdy) - + cdz * (adxbdy - bdxady) - var permanent = (Math.abs(bdxcdy) + Math.abs(cdxbdy)) * Math.abs(adz) - + (Math.abs(cdxady) + Math.abs(adxcdy)) * Math.abs(bdz) - + (Math.abs(adxbdy) + Math.abs(bdxady)) * Math.abs(cdz) - var tol = ERRBOUND4 * permanent - if ((det > tol) || (-det > tol)) { - return det - } - return orientation4Exact(a,b,c,d) - } -] - -function slowOrient(args) { - var proc = CACHED[args.length] - if(!proc) { - proc = CACHED[args.length] = orientation(args.length) - } - return proc.apply(undefined, args) -} - -function generateOrientationProc() { - while(CACHED.length <= NUM_EXPAND) { - CACHED.push(orientation(CACHED.length)) - } - var args = [] - var procArgs = ["slow"] - for(var i=0; i<=NUM_EXPAND; ++i) { - args.push("a" + i) - procArgs.push("o" + i) - } - var code = [ - "function getOrientation(", args.join(), "){switch(arguments.length){case 0:case 1:return 0;" - ] - for(var i=2; i<=NUM_EXPAND; ++i) { - code.push("case ", i, ":return o", i, "(", args.slice(0, i).join(), ");") - } - code.push("}var s=new Array(arguments.length);for(var i=0;i 0) { - code.push(",") - } - code.push("tuple[", i, "]") - } - code.push(")}return orient") - var proc = new Function("test", code.join("")) - var test = orient[d+1] - if(!test) { - test = orient - } - return proc(test) -} - -var BAKED = [] - -function Triangulation(dimension, vertices, simplices) { - this.dimension = dimension - this.vertices = vertices - this.simplices = simplices - this.interior = simplices.filter(function(c) { - return !c.boundary - }) - - this.tuple = new Array(dimension+1) - for(var i=0; i<=dimension; ++i) { - this.tuple[i] = this.vertices[i] - } - - var o = BAKED[dimension] - if(!o) { - o = BAKED[dimension] = bakeOrient(dimension) - } - this.orient = o -} - -var proto = Triangulation.prototype - -//Degenerate situation where we are on boundary, but coplanar to face -proto.handleBoundaryDegeneracy = function(cell, point) { - var d = this.dimension - var n = this.vertices.length - 1 - var tuple = this.tuple - var verts = this.vertices - - //Dumb solution: Just do dfs from boundary cell until we find any peak, or terminate - var toVisit = [ cell ] - cell.lastVisited = -n - while(toVisit.length > 0) { - cell = toVisit.pop() - var cellVerts = cell.vertices - var cellAdj = cell.adjacent - for(var i=0; i<=d; ++i) { - var neighbor = cellAdj[i] - if(!neighbor.boundary || neighbor.lastVisited <= -n) { - continue - } - var nv = neighbor.vertices - for(var j=0; j<=d; ++j) { - var vv = nv[j] - if(vv < 0) { - tuple[j] = point - } else { - tuple[j] = verts[vv] - } - } - var o = this.orient() - if(o > 0) { - return neighbor - } - neighbor.lastVisited = -n - if(o === 0) { - toVisit.push(neighbor) - } - } - } - return null -} - -proto.walk = function(point, random) { - //Alias local properties - var n = this.vertices.length - 1 - var d = this.dimension - var verts = this.vertices - var tuple = this.tuple - - //Compute initial jump cell - var initIndex = random ? (this.interior.length * Math.random())|0 : (this.interior.length-1) - var cell = this.interior[ initIndex ] - - //Start walking -outerLoop: - while(!cell.boundary) { - var cellVerts = cell.vertices - var cellAdj = cell.adjacent - - for(var i=0; i<=d; ++i) { - tuple[i] = verts[cellVerts[i]] - } - cell.lastVisited = n - - //Find farthest adjacent cell - for(var i=0; i<=d; ++i) { - var neighbor = cellAdj[i] - if(neighbor.lastVisited >= n) { - continue - } - var prev = tuple[i] - tuple[i] = point - var o = this.orient() - tuple[i] = prev - if(o < 0) { - cell = neighbor - continue outerLoop - } else { - if(!neighbor.boundary) { - neighbor.lastVisited = n - } else { - neighbor.lastVisited = -n - } - } - } - return - } - - return cell -} - -proto.addPeaks = function(point, cell) { - var n = this.vertices.length - 1 - var d = this.dimension - var verts = this.vertices - var tuple = this.tuple - var interior = this.interior - var simplices = this.simplices - - //Walking finished at boundary, time to add peaks - var tovisit = [ cell ] - - //Stretch initial boundary cell into a peak - cell.lastVisited = n - cell.vertices[cell.vertices.indexOf(-1)] = n - cell.boundary = false - interior.push(cell) - - //Record a list of all new boundaries created by added peaks so we can glue them together when we are all done - var glueFacets = [] - - //Do a traversal of the boundary walking outward from starting peak - while(tovisit.length > 0) { - //Pop off peak and walk over adjacent cells - var cell = tovisit.pop() - var cellVerts = cell.vertices - var cellAdj = cell.adjacent - var indexOfN = cellVerts.indexOf(n) - if(indexOfN < 0) { - continue - } - - for(var i=0; i<=d; ++i) { - if(i === indexOfN) { - continue - } - - //For each boundary neighbor of the cell - var neighbor = cellAdj[i] - if(!neighbor.boundary || neighbor.lastVisited >= n) { - continue - } - - var nv = neighbor.vertices - - //Test if neighbor is a peak - if(neighbor.lastVisited !== -n) { - //Compute orientation of p relative to each boundary peak - var indexOfNeg1 = 0 - for(var j=0; j<=d; ++j) { - if(nv[j] < 0) { - indexOfNeg1 = j - tuple[j] = point - } else { - tuple[j] = verts[nv[j]] - } - } - var o = this.orient() - - //Test if neighbor cell is also a peak - if(o > 0) { - nv[indexOfNeg1] = n - neighbor.boundary = false - interior.push(neighbor) - tovisit.push(neighbor) - neighbor.lastVisited = n - continue - } else { - neighbor.lastVisited = -n - } - } - - var na = neighbor.adjacent - - //Otherwise, replace neighbor with new face - var vverts = cellVerts.slice() - var vadj = cellAdj.slice() - var ncell = new Simplex(vverts, vadj, true) - simplices.push(ncell) - - //Connect to neighbor - var opposite = na.indexOf(cell) - if(opposite < 0) { - continue - } - na[opposite] = ncell - vadj[indexOfN] = neighbor - - //Connect to cell - vverts[i] = -1 - vadj[i] = cell - cellAdj[i] = ncell - - //Flip facet - ncell.flip() - - //Add to glue list - for(var j=0; j<=d; ++j) { - var uu = vverts[j] - if(uu < 0 || uu === n) { - continue - } - var nface = new Array(d-1) - var nptr = 0 - for(var k=0; k<=d; ++k) { - var vv = vverts[k] - if(vv < 0 || k === j) { - continue - } - nface[nptr++] = vv - } - glueFacets.push(new GlueFacet(nface, ncell, j)) - } - } - } - - //Glue boundary facets together - glueFacets.sort(compareGlue) - - for(var i=0; i+1= 0) { - bcell[ptr++] = cv[j] - } else { - parity = j&1 - } - } - if(parity === (d&1)) { - var t = bcell[0] - bcell[0] = bcell[1] - bcell[1] = t - } - boundary.push(bcell) - } - } - return boundary -} - -function incrementalConvexHull(points, randomSearch) { - var n = points.length - if(n === 0) { - throw new Error("Must have at least d+1 points") - } - var d = points[0].length - if(n <= d) { - throw new Error("Must input at least d+1 points") - } - - //FIXME: This could be degenerate, but need to select d+1 non-coplanar points to bootstrap process - var initialSimplex = points.slice(0, d+1) - - //Make sure initial simplex is positively oriented - var o = orient.apply(void 0, initialSimplex) - if(o === 0) { - throw new Error("Input not in general position") - } - var initialCoords = new Array(d+1) - for(var i=0; i<=d; ++i) { - initialCoords[i] = i - } - if(o < 0) { - initialCoords[0] = 1 - initialCoords[1] = 0 - } - - //Create initial topological index, glue pointers together (kind of messy) - var initialCell = new Simplex(initialCoords, new Array(d+1), false) - var boundary = initialCell.adjacent - var list = new Array(d+2) - for(var i=0; i<=d; ++i) { - var verts = initialCoords.slice() - for(var j=0; j<=d; ++j) { - if(j === i) { - verts[j] = -1 - } - } - var t = verts[0] - verts[0] = verts[1] - verts[1] = t - var cell = new Simplex(verts, new Array(d+1), true) - boundary[i] = cell - list[i] = cell - } - list[d+1] = initialCell - for(var i=0; i<=d; ++i) { - var verts = boundary[i].vertices - var adj = boundary[i].adjacent - for(var j=0; j<=d; ++j) { - var v = verts[j] - if(v < 0) { - adj[j] = initialCell - continue - } - for(var k=0; k<=d; ++k) { - if(boundary[k].vertices.indexOf(v) < 0) { - adj[j] = boundary[k] - } - } - } - } - - //Initialize triangles - var triangles = new Triangulation(d, initialSimplex, list) - - //Insert remaining points - var useRandom = !!randomSearch - for(var i=d+1; i 0) - (v < 0); -} - -//Computes absolute value of integer -exports.abs = function(v) { - var mask = v >> (INT_BITS-1); - return (v ^ mask) - mask; -} - -//Computes minimum of integers x and y -exports.min = function(x, y) { - return y ^ ((x ^ y) & -(x < y)); -} - -//Computes maximum of integers x and y -exports.max = function(x, y) { - return x ^ ((x ^ y) & -(x < y)); -} - -//Checks if a number is a power of two -exports.isPow2 = function(v) { - return !(v & (v-1)) && (!!v); -} - -//Computes log base 2 of v -exports.log2 = function(v) { - var r, shift; - r = (v > 0xFFFF) << 4; v >>>= r; - shift = (v > 0xFF ) << 3; v >>>= shift; r |= shift; - shift = (v > 0xF ) << 2; v >>>= shift; r |= shift; - shift = (v > 0x3 ) << 1; v >>>= shift; r |= shift; - return r | (v >> 1); -} - -//Computes log base 10 of v -exports.log10 = function(v) { - return (v >= 1000000000) ? 9 : (v >= 100000000) ? 8 : (v >= 10000000) ? 7 : - (v >= 1000000) ? 6 : (v >= 100000) ? 5 : (v >= 10000) ? 4 : - (v >= 1000) ? 3 : (v >= 100) ? 2 : (v >= 10) ? 1 : 0; -} - -//Counts number of bits -exports.popCount = function(v) { - v = v - ((v >>> 1) & 0x55555555); - v = (v & 0x33333333) + ((v >>> 2) & 0x33333333); - return ((v + (v >>> 4) & 0xF0F0F0F) * 0x1010101) >>> 24; -} - -//Counts number of trailing zeros -function countTrailingZeros(v) { - var c = 32; - v &= -v; - if (v) c--; - if (v & 0x0000FFFF) c -= 16; - if (v & 0x00FF00FF) c -= 8; - if (v & 0x0F0F0F0F) c -= 4; - if (v & 0x33333333) c -= 2; - if (v & 0x55555555) c -= 1; - return c; -} -exports.countTrailingZeros = countTrailingZeros; - -//Rounds to next power of 2 -exports.nextPow2 = function(v) { - v += v === 0; - --v; - v |= v >>> 1; - v |= v >>> 2; - v |= v >>> 4; - v |= v >>> 8; - v |= v >>> 16; - return v + 1; -} - -//Rounds down to previous power of 2 -exports.prevPow2 = function(v) { - v |= v >>> 1; - v |= v >>> 2; - v |= v >>> 4; - v |= v >>> 8; - v |= v >>> 16; - return v - (v>>>1); -} - -//Computes parity of word -exports.parity = function(v) { - v ^= v >>> 16; - v ^= v >>> 8; - v ^= v >>> 4; - v &= 0xf; - return (0x6996 >>> v) & 1; -} - -var REVERSE_TABLE = new Array(256); - -(function(tab) { - for(var i=0; i<256; ++i) { - var v = i, r = i, s = 7; - for (v >>>= 1; v; v >>>= 1) { - r <<= 1; - r |= v & 1; - --s; - } - tab[i] = (r << s) & 0xff; - } -})(REVERSE_TABLE); - -//Reverse bits in a 32 bit word -exports.reverse = function(v) { - return (REVERSE_TABLE[ v & 0xff] << 24) | - (REVERSE_TABLE[(v >>> 8) & 0xff] << 16) | - (REVERSE_TABLE[(v >>> 16) & 0xff] << 8) | - REVERSE_TABLE[(v >>> 24) & 0xff]; -} - -//Interleave bits of 2 coordinates with 16 bits. Useful for fast quadtree codes -exports.interleave2 = function(x, y) { - x &= 0xFFFF; - x = (x | (x << 8)) & 0x00FF00FF; - x = (x | (x << 4)) & 0x0F0F0F0F; - x = (x | (x << 2)) & 0x33333333; - x = (x | (x << 1)) & 0x55555555; - - y &= 0xFFFF; - y = (y | (y << 8)) & 0x00FF00FF; - y = (y | (y << 4)) & 0x0F0F0F0F; - y = (y | (y << 2)) & 0x33333333; - y = (y | (y << 1)) & 0x55555555; - - return x | (y << 1); -} - -//Extracts the nth interleaved component -exports.deinterleave2 = function(v, n) { - v = (v >>> n) & 0x55555555; - v = (v | (v >>> 1)) & 0x33333333; - v = (v | (v >>> 2)) & 0x0F0F0F0F; - v = (v | (v >>> 4)) & 0x00FF00FF; - v = (v | (v >>> 16)) & 0x000FFFF; - return (v << 16) >> 16; -} - - -//Interleave bits of 3 coordinates, each with 10 bits. Useful for fast octree codes -exports.interleave3 = function(x, y, z) { - x &= 0x3FF; - x = (x | (x<<16)) & 4278190335; - x = (x | (x<<8)) & 251719695; - x = (x | (x<<4)) & 3272356035; - x = (x | (x<<2)) & 1227133513; - - y &= 0x3FF; - y = (y | (y<<16)) & 4278190335; - y = (y | (y<<8)) & 251719695; - y = (y | (y<<4)) & 3272356035; - y = (y | (y<<2)) & 1227133513; - x |= (y << 1); - - z &= 0x3FF; - z = (z | (z<<16)) & 4278190335; - z = (z | (z<<8)) & 251719695; - z = (z | (z<<4)) & 3272356035; - z = (z | (z<<2)) & 1227133513; - - return x | (z << 2); -} - -//Extracts nth interleaved component of a 3-tuple -exports.deinterleave3 = function(v, n) { - v = (v >>> n) & 1227133513; - v = (v | (v>>>2)) & 3272356035; - v = (v | (v>>>4)) & 251719695; - v = (v | (v>>>8)) & 4278190335; - v = (v | (v>>>16)) & 0x3FF; - return (v<<22)>>22; -} - -//Computes next combination in colexicographic order (this is mistakenly called nextPermutation on the bit twiddling hacks page) -exports.nextCombination = function(v) { - var t = v | (v - 1); - return (t + 1) | (((~t & -~t) - 1) >>> (countTrailingZeros(v) + 1)); -} - - -},{}],46:[function(require,module,exports){ -"use strict"; "use restrict"; - -module.exports = UnionFind; - -function UnionFind(count) { - this.roots = new Array(count); - this.ranks = new Array(count); - - for(var i=0; i> 1 - , s = compareCells(cells[mid], c) - if(s <= 0) { - if(s === 0) { - r = mid - } - lo = mid + 1 - } else if(s > 0) { - hi = mid - 1 - } - } - return r -} -exports.findCell = findCell; - -//Builds an index for an n-cell. This is more general than dual, but less efficient -function incidence(from_cells, to_cells) { - var index = new Array(from_cells.length) - for(var i=0, il=index.length; i= from_cells.length || compareCells(from_cells[idx], b) !== 0) { - break - } - } - } - } - return index -} -exports.incidence = incidence - -//Computes the dual of the mesh. This is basically an optimized version of buildIndex for the situation where from_cells is just the list of vertices -function dual(cells, vertex_count) { - if(!vertex_count) { - return incidence(unique(skeleton(cells, 0)), cells, 0) - } - var res = new Array(vertex_count) - for(var i=0; i>> k) & 1) { - b.push(c[k]) - } - } - result.push(b) - } - } - return normalize(result) -} -exports.explode = explode - -//Enumerates all of the n-cells of a cell complex -function skeleton(cells, n) { - if(n < 0) { - return [] - } - var result = [] - , k0 = (1<<(n+1))-1 - for(var i=0; i 1 && orient( - points[lower[m-2]], - points[lower[m-1]], - p) <= 0) { - m -= 1 - lower.pop() - } - lower.push(idx) - - //Insert into upper list - m = upper.length - while(m > 1 && orient( - points[upper[m-2]], - points[upper[m-1]], - p) >= 0) { - m -= 1 - upper.pop() - } - upper.push(idx) - } - - //Merge lists together - var result = new Array(upper.length + lower.length - 2) - var ptr = 0 - for(var i=0, nl=lower.length; i0; --j) { - result[ptr++] = upper[j] - } - - //Return result - return result -} -},{"robust-orientation":54}],49:[function(require,module,exports){ -arguments[4][32][0].apply(exports,arguments) -},{"dup":32}],50:[function(require,module,exports){ -arguments[4][33][0].apply(exports,arguments) -},{"dup":33,"two-product":53,"two-sum":49}],51:[function(require,module,exports){ -arguments[4][34][0].apply(exports,arguments) -},{"dup":34}],52:[function(require,module,exports){ -arguments[4][35][0].apply(exports,arguments) -},{"dup":35}],53:[function(require,module,exports){ -arguments[4][36][0].apply(exports,arguments) -},{"dup":36}],54:[function(require,module,exports){ -arguments[4][37][0].apply(exports,arguments) -},{"dup":37,"robust-scale":50,"robust-subtract":51,"robust-sum":52,"two-product":53}],55:[function(require,module,exports){ -arguments[4][23][0].apply(exports,arguments) -},{"dup":23}],56:[function(require,module,exports){ -var inside = require('turf-inside'); - -/** - * Takes a {@link FeatureCollection} of {@link Point} features and a {@link FeatureCollection} of {@link Polygon} features and calculates the number of points that fall within the set of polygons. - * - * @module turf/count - * @category aggregation - * @param {FeatureCollection} polygons a FeatureCollection of {@link Polygon} features - * @param {FeatureCollection} points a FeatureCollection of {@link Point} features - * @param {String} countField a field to append to the attributes of the Polygon features representing Point counts - * @return {FeatureCollection} a FeatureCollection of Polygon features with `countField` appended - * @example -* var polygons = { - * "type": "FeatureCollection", - * "features": [ - * { - * "type": "Feature", - * "properties": {}, - * "geometry": { - * "type": "Polygon", - * "coordinates": [[ - * [-112.072391,46.586591], - * [-112.072391,46.61761], - * [-112.028102,46.61761], - * [-112.028102,46.586591], - * [-112.072391,46.586591] - * ]] - * } - * }, { - * "type": "Feature", - * "properties": {}, - * "geometry": { - * "type": "Polygon", - * "coordinates": [[ - * [-112.023983,46.570426], - * [-112.023983,46.615016], - * [-111.966133,46.615016], - * [-111.966133,46.570426], - * [-112.023983,46.570426] - * ]] - * } - * } - * ] - * }; - * var points = { - * "type": "FeatureCollection", - * "features": [ - * { - * "type": "Feature", - * "properties": { - * "population": 200 - * }, - * "geometry": { - * "type": "Point", - * "coordinates": [-112.0372, 46.608058] - * } - * }, { - * "type": "Feature", - * "properties": { - * "population": 600 - * }, - * "geometry": { - * "type": "Point", - * "coordinates": [-112.045955, 46.596264] - * } - * } - * ] - * }; - * - * var counted = turf.count(polygons, points, 'pt_count'); - * - * var resultFeatures = points.features.concat(counted.features); - * var result = { - * "type": "FeatureCollection", - * "features": resultFeatures - * }; - * - * //=result - */ - -module.exports = function(polyFC, ptFC, outField, done){ - for (var i = 0; i < polyFC.features.length; i++) { - var poly = polyFC.features[i]; - if(!poly.properties) poly.properties = {}; - var values = 0; - for (var j = 0; j < ptFC.features.length; j++) { - var pt = ptFC.features[j]; - if (inside(pt, poly)) { - values++; - } - } - poly.properties[outField] = values; - } - - return polyFC; -}; - -},{"turf-inside":76}],57:[function(require,module,exports){ -//http://en.wikipedia.org/wiki/Haversine_formula -//http://www.movable-type.co.uk/scripts/latlong.html -var point = require('turf-point'); - -/** - * Takes a {@link Point} feature and calculates the location of a destination point given a distance in degrees, radians, miles, or kilometers; and bearing in degrees. This uses the [Haversine formula](http://en.wikipedia.org/wiki/Haversine_formula) to account for global curvature. - * - * @module turf/destination - * @category measurement - * @param {Point} start a Point feature at the starting point - * @param {Number} distance distance from the starting point - * @param {Number} bearing ranging from -180 to 180 - * @param {String} units miles, kilometers, degrees, or radians - * @returns {Point} a Point feature at the destination - * @example - * var point = { - * "type": "Feature", - * "properties": { - * "marker-color": "#0f0" - * }, - * "geometry": { - * "type": "Point", - * "coordinates": [-75.343, 39.984] - * } - * }; - * var distance = 50; - * var bearing = 90; - * var units = 'miles'; - * - * var destination = turf.destination(point, distance, bearing, units); - * destination.properties['marker-color'] = '#f00'; - * - * var result = { - * "type": "FeatureCollection", - * "features": [point, destination] - * }; - * - * //=result - */ -module.exports = function (point1, distance, bearing, units) { - var coordinates1 = point1.geometry.coordinates; - var longitude1 = toRad(coordinates1[0]); - var latitude1 = toRad(coordinates1[1]); - var bearing_rad = toRad(bearing); - - var R = 0; - switch (units) { - case 'miles': - R = 3960; - break - case 'kilometers': - R = 6373; - break - case 'degrees': - R = 57.2957795; - break - case 'radians': - R = 1; - break - } - - var latitude2 = Math.asin(Math.sin(latitude1) * Math.cos(distance / R) + - Math.cos(latitude1) * Math.sin(distance / R) * Math.cos(bearing_rad)); - var longitude2 = longitude1 + Math.atan2(Math.sin(bearing_rad) * Math.sin(distance / R) * Math.cos(latitude1), - Math.cos(distance / R) - Math.sin(latitude1) * Math.sin(latitude2)); - - return point([toDeg(longitude2), toDeg(latitude2)]); -}; - -function toRad(degree) { - return degree * Math.PI / 180; -} - -function toDeg(rad) { - return rad * 180 / Math.PI; -} - -},{"turf-point":102}],58:[function(require,module,exports){ -var ss = require('simple-statistics'); -var inside = require('turf-inside'); - -/** - * Calculates the standard deviation value of a field for points within a set of polygons. - * - * @module turf/deviation - * @category aggregation - * @param {FeatureCollection} polygons a FeatureCollection of {@link Polygon} features - * @param {FeatureCollection} points a FeatureCollection of {@link Point} features - * @param {String} inField the field in `points` from which to aggregate - * @param {String} outField the field to append to `polygons` representing deviation - * @return {FeatureCollection} a FeatureCollection of Polygon features with appended field representing deviation - * @example - * var polygons = { - * "type": "FeatureCollection", - * "features": [ - * { - * "type": "Feature", - * "properties": {}, - * "geometry": { - * "type": "Polygon", - * "coordinates": [[ - * [-97.807159, 30.270335], - * [-97.807159, 30.369913], - * [-97.612838, 30.369913], - * [-97.612838, 30.270335], - * [-97.807159, 30.270335] - * ]] - * } - * }, { - * "type": "Feature", - * "properties": {}, - * "geometry": { - * "type": "Polygon", - * "coordinates": [[ - * [-97.825698, 30.175405], - * [-97.825698, 30.264404], - * [-97.630691, 30.264404], - * [-97.630691, 30.175405], - * [-97.825698, 30.175405] - * ]] - * } - * } - * ] - * }; - * var points = { - * "type": "FeatureCollection", - * "features": [ - * { - * "type": "Feature", - * "properties": { - * "population": 500 - * }, - * "geometry": { - * "type": "Point", - * "coordinates": [-97.709655, 30.311245] - * } - * }, { - * "type": "Feature", - * "properties": { - * "population": 400 - * }, - * "geometry": { - * "type": "Point", - * "coordinates": [-97.766647, 30.345028] - * } - * }, { - * "type": "Feature", - * "properties": { - * "population": 600 - * }, - * "geometry": { - * "type": "Point", - * "coordinates": [-97.765274, 30.294646] - * } - * }, { - * "type": "Feature", - * "properties": { - * "population": 500 - * }, - * "geometry": { - * "type": "Point", - * "coordinates": [-97.753601, 30.216355] - * } - * }, { - * "type": "Feature", - * "properties": { - * "population": 200 - * }, - * "geometry": { - * "type": "Point", - * "coordinates": [-97.667083, 30.208047] - * } - * } - * ] - * }; - * - * var inField = "population"; - * var outField = "pop_deviation"; - * - * var deviated = turf.deviation( - * polygons, points, inField, outField); - * - * var resultFeatures = points.features.concat( - * deviated.features); - * var result = { - * "type": "FeatureCollection", - * "features": resultFeatures - * }; - * - * //=result - */ - -module.exports = function(polyFC, ptFC, inField, outField, done){ - polyFC.features.forEach(function(poly){ - if(!poly.properties){ - poly.properties = {}; - } - var values = []; - ptFC.features.forEach(function(pt){ - if (inside(pt, poly)) { - values.push(pt.properties[inField]); - } - }); - poly.properties[outField] = ss.standard_deviation(values); - }) - - return polyFC; -} - -},{"simple-statistics":59,"turf-inside":76}],59:[function(require,module,exports){ -/* global module */ -// # simple-statistics -// -// A simple, literate statistics system. The code below uses the -// [Javascript module pattern](http://www.adequatelygood.com/2010/3/JavaScript-Module-Pattern-In-Depth), -// eventually assigning `simple-statistics` to `ss` in browsers or the -// `exports` object for node.js -(function() { - var ss = {}; - - if (typeof module !== 'undefined') { - // Assign the `ss` object to exports, so that you can require - // it in [node.js](http://nodejs.org/) - module.exports = ss; - } else { - // Otherwise, in a browser, we assign `ss` to the window object, - // so you can simply refer to it as `ss`. - this.ss = ss; - } - - // # [Linear Regression](http://en.wikipedia.org/wiki/Linear_regression) - // - // [Simple linear regression](http://en.wikipedia.org/wiki/Simple_linear_regression) - // is a simple way to find a fitted line - // between a set of coordinates. - function linear_regression() { - var linreg = {}, - data = []; - - // Assign data to the model. Data is assumed to be an array. - linreg.data = function(x) { - if (!arguments.length) return data; - data = x.slice(); - return linreg; - }; - - // Calculate the slope and y-intercept of the regression line - // by calculating the least sum of squares - linreg.mb = function() { - var m, b; - - // Store data length in a local variable to reduce - // repeated object property lookups - var data_length = data.length; - - //if there's only one point, arbitrarily choose a slope of 0 - //and a y-intercept of whatever the y of the initial point is - if (data_length === 1) { - m = 0; - b = data[0][1]; - } else { - // Initialize our sums and scope the `m` and `b` - // variables that define the line. - var sum_x = 0, sum_y = 0, - sum_xx = 0, sum_xy = 0; - - // Use local variables to grab point values - // with minimal object property lookups - var point, x, y; - - // Gather the sum of all x values, the sum of all - // y values, and the sum of x^2 and (x*y) for each - // value. - // - // In math notation, these would be SS_x, SS_y, SS_xx, and SS_xy - for (var i = 0; i < data_length; i++) { - point = data[i]; - x = point[0]; - y = point[1]; - - sum_x += x; - sum_y += y; - - sum_xx += x * x; - sum_xy += x * y; - } - - // `m` is the slope of the regression line - m = ((data_length * sum_xy) - (sum_x * sum_y)) / - ((data_length * sum_xx) - (sum_x * sum_x)); - - // `b` is the y-intercept of the line. - b = (sum_y / data_length) - ((m * sum_x) / data_length); - } - - // Return both values as an object. - return { m: m, b: b }; - }; - - // a shortcut for simply getting the slope of the regression line - linreg.m = function() { - return linreg.mb().m; - }; - - // a shortcut for simply getting the y-intercept of the regression - // line. - linreg.b = function() { - return linreg.mb().b; - }; - - // ## Fitting The Regression Line - // - // This is called after `.data()` and returns the - // equation `y = f(x)` which gives the position - // of the regression line at each point in `x`. - linreg.line = function() { - - // Get the slope, `m`, and y-intercept, `b`, of the line. - var mb = linreg.mb(), - m = mb.m, - b = mb.b; - - // Return a function that computes a `y` value for each - // x value it is given, based on the values of `b` and `a` - // that we just computed. - return function(x) { - return b + (m * x); - }; - }; - - return linreg; - } - - // # [R Squared](http://en.wikipedia.org/wiki/Coefficient_of_determination) - // - // The r-squared value of data compared with a function `f` - // is the sum of the squared differences between the prediction - // and the actual value. - function r_squared(data, f) { - if (data.length < 2) return 1; - - // Compute the average y value for the actual - // data set in order to compute the - // _total sum of squares_ - var sum = 0, average; - for (var i = 0; i < data.length; i++) { - sum += data[i][1]; - } - average = sum / data.length; - - // Compute the total sum of squares - the - // squared difference between each point - // and the average of all points. - var sum_of_squares = 0; - for (var j = 0; j < data.length; j++) { - sum_of_squares += Math.pow(average - data[j][1], 2); - } - - // Finally estimate the error: the squared - // difference between the estimate and the actual data - // value at each point. - var err = 0; - for (var k = 0; k < data.length; k++) { - err += Math.pow(data[k][1] - f(data[k][0]), 2); - } - - // As the error grows larger, its ratio to the - // sum of squares increases and the r squared - // value grows lower. - return 1 - (err / sum_of_squares); - } - - - // # [Bayesian Classifier](http://en.wikipedia.org/wiki/Naive_Bayes_classifier) - // - // This is a naïve bayesian classifier that takes - // singly-nested objects. - function bayesian() { - // The `bayes_model` object is what will be exposed - // by this closure, with all of its extended methods, and will - // have access to all scope variables, like `total_count`. - var bayes_model = {}, - // The number of items that are currently - // classified in the model - total_count = 0, - // Every item classified in the model - data = {}; - - // ## Train - // Train the classifier with a new item, which has a single - // dimension of Javascript literal keys and values. - bayes_model.train = function(item, category) { - // If the data object doesn't have any values - // for this category, create a new object for it. - if (!data[category]) data[category] = {}; - - // Iterate through each key in the item. - for (var k in item) { - var v = item[k]; - // Initialize the nested object `data[category][k][item[k]]` - // with an object of keys that equal 0. - if (data[category][k] === undefined) data[category][k] = {}; - if (data[category][k][v] === undefined) data[category][k][v] = 0; - - // And increment the key for this key/value combination. - data[category][k][item[k]]++; - } - // Increment the number of items classified - total_count++; - }; - - // ## Score - // Generate a score of how well this item matches all - // possible categories based on its attributes - bayes_model.score = function(item) { - // Initialize an empty array of odds per category. - var odds = {}, category; - // Iterate through each key in the item, - // then iterate through each category that has been used - // in previous calls to `.train()` - for (var k in item) { - var v = item[k]; - for (category in data) { - // Create an empty object for storing key - value combinations - // for this category. - if (odds[category] === undefined) odds[category] = {}; - - // If this item doesn't even have a property, it counts for nothing, - // but if it does have the property that we're looking for from - // the item to categorize, it counts based on how popular it is - // versus the whole population. - if (data[category][k]) { - odds[category][k + '_' + v] = (data[category][k][v] || 0) / total_count; - } else { - odds[category][k + '_' + v] = 0; - } - } - } - - // Set up a new object that will contain sums of these odds by category - var odds_sums = {}; - - for (category in odds) { - // Tally all of the odds for each category-combination pair - - // the non-existence of a category does not add anything to the - // score. - for (var combination in odds[category]) { - if (odds_sums[category] === undefined) odds_sums[category] = 0; - odds_sums[category] += odds[category][combination]; - } - } - - return odds_sums; - }; - - // Return the completed model. - return bayes_model; - } - - // # sum - // - // is simply the result of adding all numbers - // together, starting from zero. - // - // This runs on `O(n)`, linear time in respect to the array - function sum(x) { - var value = 0; - for (var i = 0; i < x.length; i++) { - value += x[i]; - } - return value; - } - - // # mean - // - // is the sum over the number of values - // - // This runs on `O(n)`, linear time in respect to the array - function mean(x) { - // The mean of no numbers is null - if (x.length === 0) return null; - - return sum(x) / x.length; - } - - // # geometric mean - // - // a mean function that is more useful for numbers in different - // ranges. - // - // this is the nth root of the input numbers multiplied by each other - // - // This runs on `O(n)`, linear time in respect to the array - function geometric_mean(x) { - // The mean of no numbers is null - if (x.length === 0) return null; - - // the starting value. - var value = 1; - - for (var i = 0; i < x.length; i++) { - // the geometric mean is only valid for positive numbers - if (x[i] <= 0) return null; - - // repeatedly multiply the value by each number - value *= x[i]; - } - - return Math.pow(value, 1 / x.length); - } - - - // # harmonic mean - // - // a mean function typically used to find the average of rates - // - // this is the reciprocal of the arithmetic mean of the reciprocals - // of the input numbers - // - // This runs on `O(n)`, linear time in respect to the array - function harmonic_mean(x) { - // The mean of no numbers is null - if (x.length === 0) return null; - - var reciprocal_sum = 0; - - for (var i = 0; i < x.length; i++) { - // the harmonic mean is only valid for positive numbers - if (x[i] <= 0) return null; - - reciprocal_sum += 1 / x[i]; - } - - // divide n by the the reciprocal sum - return x.length / reciprocal_sum; - } - - - // # min - // - // This is simply the minimum number in the set. - // - // This runs on `O(n)`, linear time in respect to the array - function min(x) { - var value; - for (var i = 0; i < x.length; i++) { - // On the first iteration of this loop, min is - // undefined and is thus made the minimum element in the array - if (x[i] < value || value === undefined) value = x[i]; - } - return value; - } - - // # max - // - // This is simply the maximum number in the set. - // - // This runs on `O(n)`, linear time in respect to the array - function max(x) { - var value; - for (var i = 0; i < x.length; i++) { - // On the first iteration of this loop, max is - // undefined and is thus made the maximum element in the array - if (x[i] > value || value === undefined) value = x[i]; - } - return value; - } - - // # [variance](http://en.wikipedia.org/wiki/Variance) - // - // is the sum of squared deviations from the mean - // - // depends on `mean()` - function variance(x) { - // The variance of no numbers is null - if (x.length === 0) return null; - - var mean_value = mean(x), - deviations = []; - - // Make a list of squared deviations from the mean. - for (var i = 0; i < x.length; i++) { - deviations.push(Math.pow(x[i] - mean_value, 2)); - } - - // Find the mean value of that list - return mean(deviations); - } - - // # [standard deviation](http://en.wikipedia.org/wiki/Standard_deviation) - // - // is just the square root of the variance. - // - // depends on `variance()` - function standard_deviation(x) { - // The standard deviation of no numbers is null - if (x.length === 0) return null; - - return Math.sqrt(variance(x)); - } - - // The sum of deviations to the Nth power. - // When n=2 it's the sum of squared deviations. - // When n=3 it's the sum of cubed deviations. - // - // depends on `mean()` - function sum_nth_power_deviations(x, n) { - var mean_value = mean(x), - sum = 0; - - for (var i = 0; i < x.length; i++) { - sum += Math.pow(x[i] - mean_value, n); - } - - return sum; - } - - // # [variance](http://en.wikipedia.org/wiki/Variance) - // - // is the sum of squared deviations from the mean - // - // depends on `sum_nth_power_deviations` - function sample_variance(x) { - // The variance of no numbers is null - if (x.length <= 1) return null; - - var sum_squared_deviations_value = sum_nth_power_deviations(x, 2); - - // Find the mean value of that list - return sum_squared_deviations_value / (x.length - 1); - } - - // # [standard deviation](http://en.wikipedia.org/wiki/Standard_deviation) - // - // is just the square root of the variance. - // - // depends on `sample_variance()` - function sample_standard_deviation(x) { - // The standard deviation of no numbers is null - if (x.length <= 1) return null; - - return Math.sqrt(sample_variance(x)); - } - - // # [covariance](http://en.wikipedia.org/wiki/Covariance) - // - // sample covariance of two datasets: - // how much do the two datasets move together? - // x and y are two datasets, represented as arrays of numbers. - // - // depends on `mean()` - function sample_covariance(x, y) { - - // The two datasets must have the same length which must be more than 1 - if (x.length <= 1 || x.length != y.length){ - return null; - } - - // determine the mean of each dataset so that we can judge each - // value of the dataset fairly as the difference from the mean. this - // way, if one dataset is [1, 2, 3] and [2, 3, 4], their covariance - // does not suffer because of the difference in absolute values - var xmean = mean(x), - ymean = mean(y), - sum = 0; - - // for each pair of values, the covariance increases when their - // difference from the mean is associated - if both are well above - // or if both are well below - // the mean, the covariance increases significantly. - for (var i = 0; i < x.length; i++){ - sum += (x[i] - xmean) * (y[i] - ymean); - } - - // the covariance is weighted by the length of the datasets. - return sum / (x.length - 1); - } - - // # [correlation](http://en.wikipedia.org/wiki/Correlation_and_dependence) - // - // Gets a measure of how correlated two datasets are, between -1 and 1 - // - // depends on `sample_standard_deviation()` and `sample_covariance()` - function sample_correlation(x, y) { - var cov = sample_covariance(x, y), - xstd = sample_standard_deviation(x), - ystd = sample_standard_deviation(y); - - if (cov === null || xstd === null || ystd === null) { - return null; - } - - return cov / xstd / ystd; - } - - // # [median](http://en.wikipedia.org/wiki/Median) - // - // The middle number of a list. This is often a good indicator of 'the middle' - // when there are outliers that skew the `mean()` value. - function median(x) { - // The median of an empty list is null - if (x.length === 0) return null; - - // Sorting the array makes it easy to find the center, but - // use `.slice()` to ensure the original array `x` is not modified - var sorted = x.slice().sort(function (a, b) { return a - b; }); - - // If the length of the list is odd, it's the central number - if (sorted.length % 2 === 1) { - return sorted[(sorted.length - 1) / 2]; - // Otherwise, the median is the average of the two numbers - // at the center of the list - } else { - var a = sorted[(sorted.length / 2) - 1]; - var b = sorted[(sorted.length / 2)]; - return (a + b) / 2; - } - } - - // # [mode](http://bit.ly/W5K4Yt) - // - // The mode is the number that appears in a list the highest number of times. - // There can be multiple modes in a list: in the event of a tie, this - // algorithm will return the most recently seen mode. - // - // This implementation is inspired by [science.js](https://github.com/jasondavies/science.js/blob/master/src/stats/mode.js) - // - // This runs on `O(n)`, linear time in respect to the array - function mode(x) { - - // Handle edge cases: - // The median of an empty list is null - if (x.length === 0) return null; - else if (x.length === 1) return x[0]; - - // Sorting the array lets us iterate through it below and be sure - // that every time we see a new number it's new and we'll never - // see the same number twice - var sorted = x.slice().sort(function (a, b) { return a - b; }); - - // This assumes it is dealing with an array of size > 1, since size - // 0 and 1 are handled immediately. Hence it starts at index 1 in the - // array. - var last = sorted[0], - // store the mode as we find new modes - value, - // store how many times we've seen the mode - max_seen = 0, - // how many times the current candidate for the mode - // has been seen - seen_this = 1; - - // end at sorted.length + 1 to fix the case in which the mode is - // the highest number that occurs in the sequence. the last iteration - // compares sorted[i], which is undefined, to the highest number - // in the series - for (var i = 1; i < sorted.length + 1; i++) { - // we're seeing a new number pass by - if (sorted[i] !== last) { - // the last number is the new mode since we saw it more - // often than the old one - if (seen_this > max_seen) { - max_seen = seen_this; - value = last; - } - seen_this = 1; - last = sorted[i]; - // if this isn't a new number, it's one more occurrence of - // the potential mode - } else { seen_this++; } - } - return value; - } - - // # [t-test](http://en.wikipedia.org/wiki/Student's_t-test) - // - // This is to compute a one-sample t-test, comparing the mean - // of a sample to a known value, x. - // - // in this case, we're trying to determine whether the - // population mean is equal to the value that we know, which is `x` - // here. usually the results here are used to look up a - // [p-value](http://en.wikipedia.org/wiki/P-value), which, for - // a certain level of significance, will let you determine that the - // null hypothesis can or cannot be rejected. - // - // Depends on `standard_deviation()` and `mean()` - function t_test(sample, x) { - // The mean of the sample - var sample_mean = mean(sample); - - // The standard deviation of the sample - var sd = standard_deviation(sample); - - // Square root the length of the sample - var rootN = Math.sqrt(sample.length); - - // Compute the known value against the sample, - // returning the t value - return (sample_mean - x) / (sd / rootN); - } - - // # [2-sample t-test](http://en.wikipedia.org/wiki/Student's_t-test) - // - // This is to compute two sample t-test. - // Tests whether "mean(X)-mean(Y) = difference", ( - // in the most common case, we often have `difference == 0` to test if two samples - // are likely to be taken from populations with the same mean value) with - // no prior knowledge on standard deviations of both samples - // other than the fact that they have the same standard deviation. - // - // Usually the results here are used to look up a - // [p-value](http://en.wikipedia.org/wiki/P-value), which, for - // a certain level of significance, will let you determine that the - // null hypothesis can or cannot be rejected. - // - // `diff` can be omitted if it equals 0. - // - // [This is used to confirm or deny](http://www.monarchlab.org/Lab/Research/Stats/2SampleT.aspx) - // a null hypothesis that the two populations that have been sampled into - // `sample_x` and `sample_y` are equal to each other. - // - // Depends on `sample_variance()` and `mean()` - function t_test_two_sample(sample_x, sample_y, difference) { - var n = sample_x.length, - m = sample_y.length; - - // If either sample doesn't actually have any values, we can't - // compute this at all, so we return `null`. - if (!n || !m) return null ; - - // default difference (mu) is zero - if (!difference) difference = 0; - - var meanX = mean(sample_x), - meanY = mean(sample_y); - - var weightedVariance = ((n - 1) * sample_variance(sample_x) + - (m - 1) * sample_variance(sample_y)) / (n + m - 2); - - return (meanX - meanY - difference) / - Math.sqrt(weightedVariance * (1 / n + 1 / m)); - } - - // # chunk - // - // Split an array into chunks of a specified size. This function - // has the same behavior as [PHP's array_chunk](http://php.net/manual/en/function.array-chunk.php) - // function, and thus will insert smaller-sized chunks at the end if - // the input size is not divisible by the chunk size. - // - // `sample` is expected to be an array, and `chunkSize` a number. - // The `sample` array can contain any kind of data. - function chunk(sample, chunkSize) { - - // a list of result chunks, as arrays in an array - var output = []; - - // `chunkSize` must be zero or higher - otherwise the loop below, - // in which we call `start += chunkSize`, will loop infinitely. - // So, we'll detect and return null in that case to indicate - // invalid input. - if (chunkSize <= 0) { - return null; - } - - // `start` is the index at which `.slice` will start selecting - // new array elements - for (var start = 0; start < sample.length; start += chunkSize) { - - // for each chunk, slice that part of the array and add it - // to the output. The `.slice` function does not change - // the original array. - output.push(sample.slice(start, start + chunkSize)); - } - return output; - } - - // # shuffle_in_place - // - // A [Fisher-Yates shuffle](http://en.wikipedia.org/wiki/Fisher%E2%80%93Yates_shuffle) - // in-place - which means that it will change the order of the original - // array by reference. - function shuffle_in_place(sample, randomSource) { - - // a custom random number source can be provided if you want to use - // a fixed seed or another random number generator, like - // [random-js](https://www.npmjs.org/package/random-js) - randomSource = randomSource || Math.random; - - // store the current length of the sample to determine - // when no elements remain to shuffle. - var length = sample.length; - - // temporary is used to hold an item when it is being - // swapped between indices. - var temporary; - - // The index to swap at each stage. - var index; - - // While there are still items to shuffle - while (length > 0) { - // chose a random index within the subset of the array - // that is not yet shuffled - index = Math.floor(randomSource() * length--); - - // store the value that we'll move temporarily - temporary = sample[length]; - - // swap the value at `sample[length]` with `sample[index]` - sample[length] = sample[index]; - sample[index] = temporary; - } - - return sample; - } - - // # shuffle - // - // A [Fisher-Yates shuffle](http://en.wikipedia.org/wiki/Fisher%E2%80%93Yates_shuffle) - // is a fast way to create a random permutation of a finite set. - function shuffle(sample, randomSource) { - // slice the original array so that it is not modified - sample = sample.slice(); - - // and then shuffle that shallow-copied array, in place - return shuffle_in_place(sample.slice(), randomSource); - } - - // # sample - // - // Create a [simple random sample](http://en.wikipedia.org/wiki/Simple_random_sample) - // from a given array of `n` elements. - function sample(array, n, randomSource) { - // shuffle the original array using a fisher-yates shuffle - var shuffled = shuffle(array, randomSource); - - // and then return a subset of it - the first `n` elements. - return shuffled.slice(0, n); - } - - // # quantile - // - // This is a population quantile, since we assume to know the entire - // dataset in this library. Thus I'm trying to follow the - // [Quantiles of a Population](http://en.wikipedia.org/wiki/Quantile#Quantiles_of_a_population) - // algorithm from wikipedia. - // - // Sample is a one-dimensional array of numbers, - // and p is either a decimal number from 0 to 1 or an array of decimal - // numbers from 0 to 1. - // In terms of a k/q quantile, p = k/q - it's just dealing with fractions or dealing - // with decimal values. - // When p is an array, the result of the function is also an array containing the appropriate - // quantiles in input order - function quantile(sample, p) { - - // We can't derive quantiles from an empty list - if (sample.length === 0) return null; - - // Sort a copy of the array. We'll need a sorted array to index - // the values in sorted order. - var sorted = sample.slice().sort(function (a, b) { return a - b; }); - - if (p.length) { - // Initialize the result array - var results = []; - // For each requested quantile - for (var i = 0; i < p.length; i++) { - results[i] = quantile_sorted(sorted, p[i]); - } - return results; - } else { - return quantile_sorted(sorted, p); - } - } - - // # quantile - // - // This is the internal implementation of quantiles: when you know - // that the order is sorted, you don't need to re-sort it, and the computations - // are much faster. - function quantile_sorted(sample, p) { - var idx = (sample.length) * p; - if (p < 0 || p > 1) { - return null; - } else if (p === 1) { - // If p is 1, directly return the last element - return sample[sample.length - 1]; - } else if (p === 0) { - // If p is 0, directly return the first element - return sample[0]; - } else if (idx % 1 !== 0) { - // If p is not integer, return the next element in array - return sample[Math.ceil(idx) - 1]; - } else if (sample.length % 2 === 0) { - // If the list has even-length, we'll take the average of this number - // and the next value, if there is one - return (sample[idx - 1] + sample[idx]) / 2; - } else { - // Finally, in the simple case of an integer value - // with an odd-length list, return the sample value at the index. - return sample[idx]; - } - } - - // # [Interquartile range](http://en.wikipedia.org/wiki/Interquartile_range) - // - // A measure of statistical dispersion, or how scattered, spread, or - // concentrated a distribution is. It's computed as the difference between - // the third quartile and first quartile. - function iqr(sample) { - // We can't derive quantiles from an empty list - if (sample.length === 0) return null; - - // Interquartile range is the span between the upper quartile, - // at `0.75`, and lower quartile, `0.25` - return quantile(sample, 0.75) - quantile(sample, 0.25); - } - - // # [Median Absolute Deviation](http://en.wikipedia.org/wiki/Median_absolute_deviation) - // - // The Median Absolute Deviation (MAD) is a robust measure of statistical - // dispersion. It is more resilient to outliers than the standard deviation. - function mad(x) { - // The mad of nothing is null - if (!x || x.length === 0) return null; - - var median_value = median(x), - median_absolute_deviations = []; - - // Make a list of absolute deviations from the median - for (var i = 0; i < x.length; i++) { - median_absolute_deviations.push(Math.abs(x[i] - median_value)); - } - - // Find the median value of that list - return median(median_absolute_deviations); - } - - // ## Compute Matrices for Jenks - // - // Compute the matrices required for Jenks breaks. These matrices - // can be used for any classing of data with `classes <= n_classes` - function jenksMatrices(data, n_classes) { - - // in the original implementation, these matrices are referred to - // as `LC` and `OP` - // - // * lower_class_limits (LC): optimal lower class limits - // * variance_combinations (OP): optimal variance combinations for all classes - var lower_class_limits = [], - variance_combinations = [], - // loop counters - i, j, - // the variance, as computed at each step in the calculation - variance = 0; - - // Initialize and fill each matrix with zeroes - for (i = 0; i < data.length + 1; i++) { - var tmp1 = [], tmp2 = []; - // despite these arrays having the same values, we need - // to keep them separate so that changing one does not change - // the other - for (j = 0; j < n_classes + 1; j++) { - tmp1.push(0); - tmp2.push(0); - } - lower_class_limits.push(tmp1); - variance_combinations.push(tmp2); - } - - for (i = 1; i < n_classes + 1; i++) { - lower_class_limits[1][i] = 1; - variance_combinations[1][i] = 0; - // in the original implementation, 9999999 is used but - // since Javascript has `Infinity`, we use that. - for (j = 2; j < data.length + 1; j++) { - variance_combinations[j][i] = Infinity; - } - } - - for (var l = 2; l < data.length + 1; l++) { - - // `SZ` originally. this is the sum of the values seen thus - // far when calculating variance. - var sum = 0, - // `ZSQ` originally. the sum of squares of values seen - // thus far - sum_squares = 0, - // `WT` originally. This is the number of - w = 0, - // `IV` originally - i4 = 0; - - // in several instances, you could say `Math.pow(x, 2)` - // instead of `x * x`, but this is slower in some browsers - // introduces an unnecessary concept. - for (var m = 1; m < l + 1; m++) { - - // `III` originally - var lower_class_limit = l - m + 1, - val = data[lower_class_limit - 1]; - - // here we're estimating variance for each potential classing - // of the data, for each potential number of classes. `w` - // is the number of data points considered so far. - w++; - - // increase the current sum and sum-of-squares - sum += val; - sum_squares += val * val; - - // the variance at this point in the sequence is the difference - // between the sum of squares and the total x 2, over the number - // of samples. - variance = sum_squares - (sum * sum) / w; - - i4 = lower_class_limit - 1; - - if (i4 !== 0) { - for (j = 2; j < n_classes + 1; j++) { - // if adding this element to an existing class - // will increase its variance beyond the limit, break - // the class at this point, setting the `lower_class_limit` - // at this point. - if (variance_combinations[l][j] >= - (variance + variance_combinations[i4][j - 1])) { - lower_class_limits[l][j] = lower_class_limit; - variance_combinations[l][j] = variance + - variance_combinations[i4][j - 1]; - } - } - } - } - - lower_class_limits[l][1] = 1; - variance_combinations[l][1] = variance; - } - - // return the two matrices. for just providing breaks, only - // `lower_class_limits` is needed, but variances can be useful to - // evaluate goodness of fit. - return { - lower_class_limits: lower_class_limits, - variance_combinations: variance_combinations - }; - } - - // ## Pull Breaks Values for Jenks - // - // the second part of the jenks recipe: take the calculated matrices - // and derive an array of n breaks. - function jenksBreaks(data, lower_class_limits, n_classes) { - - var k = data.length - 1, - kclass = [], - countNum = n_classes; - - // the calculation of classes will never include the upper and - // lower bounds, so we need to explicitly set them - kclass[n_classes] = data[data.length - 1]; - kclass[0] = data[0]; - - // the lower_class_limits matrix is used as indices into itself - // here: the `k` variable is reused in each iteration. - while (countNum > 1) { - kclass[countNum - 1] = data[lower_class_limits[k][countNum] - 2]; - k = lower_class_limits[k][countNum] - 1; - countNum--; - } - - return kclass; - } - - // # [Jenks natural breaks optimization](http://en.wikipedia.org/wiki/Jenks_natural_breaks_optimization) - // - // Implementations: [1](http://danieljlewis.org/files/2010/06/Jenks.pdf) (python), - // [2](https://github.com/vvoovv/djeo-jenks/blob/master/main.js) (buggy), - // [3](https://github.com/simogeo/geostats/blob/master/lib/geostats.js#L407) (works) - // - // Depends on `jenksBreaks()` and `jenksMatrices()` - function jenks(data, n_classes) { - - if (n_classes > data.length) return null; - - // sort data in numerical order, since this is expected - // by the matrices function - data = data.slice().sort(function (a, b) { return a - b; }); - - // get our basic matrices - var matrices = jenksMatrices(data, n_classes), - // we only need lower class limits here - lower_class_limits = matrices.lower_class_limits; - - // extract n_classes out of the computed matrices - return jenksBreaks(data, lower_class_limits, n_classes); - - } - - // # [Skewness](http://en.wikipedia.org/wiki/Skewness) - // - // A measure of the extent to which a probability distribution of a - // real-valued random variable "leans" to one side of the mean. - // The skewness value can be positive or negative, or even undefined. - // - // Implementation is based on the adjusted Fisher-Pearson standardized - // moment coefficient, which is the version found in Excel and several - // statistical packages including Minitab, SAS and SPSS. - // - // Depends on `sum_nth_power_deviations()` and `sample_standard_deviation` - function sample_skewness(x) { - // The skewness of less than three arguments is null - if (x.length < 3) return null; - - var n = x.length, - cubed_s = Math.pow(sample_standard_deviation(x), 3), - sum_cubed_deviations = sum_nth_power_deviations(x, 3); - - return n * sum_cubed_deviations / ((n - 1) * (n - 2) * cubed_s); - } - - // # Standard Normal Table - // A standard normal table, also called the unit normal table or Z table, - // is a mathematical table for the values of Φ (phi), which are the values of - // the cumulative distribution function of the normal distribution. - // It is used to find the probability that a statistic is observed below, - // above, or between values on the standard normal distribution, and by - // extension, any normal distribution. - // - // The probabilities are taken from http://en.wikipedia.org/wiki/Standard_normal_table - // The table used is the cumulative, and not cumulative from 0 to mean - // (even though the latter has 5 digits precision, instead of 4). - var standard_normal_table = [ - /* z 0.00 0.01 0.02 0.03 0.04 0.05 0.06 0.07 0.08 0.09 */ - /* 0.0 */ - 0.5000, 0.5040, 0.5080, 0.5120, 0.5160, 0.5199, 0.5239, 0.5279, 0.5319, 0.5359, - /* 0.1 */ - 0.5398, 0.5438, 0.5478, 0.5517, 0.5557, 0.5596, 0.5636, 0.5675, 0.5714, 0.5753, - /* 0.2 */ - 0.5793, 0.5832, 0.5871, 0.5910, 0.5948, 0.5987, 0.6026, 0.6064, 0.6103, 0.6141, - /* 0.3 */ - 0.6179, 0.6217, 0.6255, 0.6293, 0.6331, 0.6368, 0.6406, 0.6443, 0.6480, 0.6517, - /* 0.4 */ - 0.6554, 0.6591, 0.6628, 0.6664, 0.6700, 0.6736, 0.6772, 0.6808, 0.6844, 0.6879, - /* 0.5 */ - 0.6915, 0.6950, 0.6985, 0.7019, 0.7054, 0.7088, 0.7123, 0.7157, 0.7190, 0.7224, - /* 0.6 */ - 0.7257, 0.7291, 0.7324, 0.7357, 0.7389, 0.7422, 0.7454, 0.7486, 0.7517, 0.7549, - /* 0.7 */ - 0.7580, 0.7611, 0.7642, 0.7673, 0.7704, 0.7734, 0.7764, 0.7794, 0.7823, 0.7852, - /* 0.8 */ - 0.7881, 0.7910, 0.7939, 0.7967, 0.7995, 0.8023, 0.8051, 0.8078, 0.8106, 0.8133, - /* 0.9 */ - 0.8159, 0.8186, 0.8212, 0.8238, 0.8264, 0.8289, 0.8315, 0.8340, 0.8365, 0.8389, - /* 1.0 */ - 0.8413, 0.8438, 0.8461, 0.8485, 0.8508, 0.8531, 0.8554, 0.8577, 0.8599, 0.8621, - /* 1.1 */ - 0.8643, 0.8665, 0.8686, 0.8708, 0.8729, 0.8749, 0.8770, 0.8790, 0.8810, 0.8830, - /* 1.2 */ - 0.8849, 0.8869, 0.8888, 0.8907, 0.8925, 0.8944, 0.8962, 0.8980, 0.8997, 0.9015, - /* 1.3 */ - 0.9032, 0.9049, 0.9066, 0.9082, 0.9099, 0.9115, 0.9131, 0.9147, 0.9162, 0.9177, - /* 1.4 */ - 0.9192, 0.9207, 0.9222, 0.9236, 0.9251, 0.9265, 0.9279, 0.9292, 0.9306, 0.9319, - /* 1.5 */ - 0.9332, 0.9345, 0.9357, 0.9370, 0.9382, 0.9394, 0.9406, 0.9418, 0.9429, 0.9441, - /* 1.6 */ - 0.9452, 0.9463, 0.9474, 0.9484, 0.9495, 0.9505, 0.9515, 0.9525, 0.9535, 0.9545, - /* 1.7 */ - 0.9554, 0.9564, 0.9573, 0.9582, 0.9591, 0.9599, 0.9608, 0.9616, 0.9625, 0.9633, - /* 1.8 */ - 0.9641, 0.9649, 0.9656, 0.9664, 0.9671, 0.9678, 0.9686, 0.9693, 0.9699, 0.9706, - /* 1.9 */ - 0.9713, 0.9719, 0.9726, 0.9732, 0.9738, 0.9744, 0.9750, 0.9756, 0.9761, 0.9767, - /* 2.0 */ - 0.9772, 0.9778, 0.9783, 0.9788, 0.9793, 0.9798, 0.9803, 0.9808, 0.9812, 0.9817, - /* 2.1 */ - 0.9821, 0.9826, 0.9830, 0.9834, 0.9838, 0.9842, 0.9846, 0.9850, 0.9854, 0.9857, - /* 2.2 */ - 0.9861, 0.9864, 0.9868, 0.9871, 0.9875, 0.9878, 0.9881, 0.9884, 0.9887, 0.9890, - /* 2.3 */ - 0.9893, 0.9896, 0.9898, 0.9901, 0.9904, 0.9906, 0.9909, 0.9911, 0.9913, 0.9916, - /* 2.4 */ - 0.9918, 0.9920, 0.9922, 0.9925, 0.9927, 0.9929, 0.9931, 0.9932, 0.9934, 0.9936, - /* 2.5 */ - 0.9938, 0.9940, 0.9941, 0.9943, 0.9945, 0.9946, 0.9948, 0.9949, 0.9951, 0.9952, - /* 2.6 */ - 0.9953, 0.9955, 0.9956, 0.9957, 0.9959, 0.9960, 0.9961, 0.9962, 0.9963, 0.9964, - /* 2.7 */ - 0.9965, 0.9966, 0.9967, 0.9968, 0.9969, 0.9970, 0.9971, 0.9972, 0.9973, 0.9974, - /* 2.8 */ - 0.9974, 0.9975, 0.9976, 0.9977, 0.9977, 0.9978, 0.9979, 0.9979, 0.9980, 0.9981, - /* 2.9 */ - 0.9981, 0.9982, 0.9982, 0.9983, 0.9984, 0.9984, 0.9985, 0.9985, 0.9986, 0.9986, - /* 3.0 */ - 0.9987, 0.9987, 0.9987, 0.9988, 0.9988, 0.9989, 0.9989, 0.9989, 0.9990, 0.9990 - ]; - - // # [Cumulative Standard Normal Probability](http://en.wikipedia.org/wiki/Standard_normal_table) - // - // Since probability tables cannot be - // printed for every normal distribution, as there are an infinite variety - // of normal distributions, it is common practice to convert a normal to a - // standard normal and then use the standard normal table to find probabilities - function cumulative_std_normal_probability(z) { - - // Calculate the position of this value. - var absZ = Math.abs(z), - // Each row begins with a different - // significant digit: 0.5, 0.6, 0.7, and so on. So the row is simply - // this value's significant digit: 0.567 will be in row 0, so row=0, - // 0.643 will be in row 1, so row=10. - row = Math.floor(absZ * 10), - column = 10 * (Math.floor(absZ * 100) / 10 - Math.floor(absZ * 100 / 10)), - index = Math.min((row * 10) + column, standard_normal_table.length - 1); - - // The index we calculate must be in the table as a positive value, - // but we still pay attention to whether the input is positive - // or negative, and flip the output value as a last step. - if (z >= 0) { - return standard_normal_table[index]; - } else { - // due to floating-point arithmetic, values in the table with - // 4 significant figures can nevertheless end up as repeating - // fractions when they're computed here. - return +(1 - standard_normal_table[index]).toFixed(4); - } - } - - // # [Z-Score, or Standard Score](http://en.wikipedia.org/wiki/Standard_score) - // - // The standard score is the number of standard deviations an observation - // or datum is above or below the mean. Thus, a positive standard score - // represents a datum above the mean, while a negative standard score - // represents a datum below the mean. It is a dimensionless quantity - // obtained by subtracting the population mean from an individual raw - // score and then dividing the difference by the population standard - // deviation. - // - // The z-score is only defined if one knows the population parameters; - // if one only has a sample set, then the analogous computation with - // sample mean and sample standard deviation yields the - // Student's t-statistic. - function z_score(x, mean, standard_deviation) { - return (x - mean) / standard_deviation; - } - - // We use `ε`, epsilon, as a stopping criterion when we want to iterate - // until we're "close enough". - var epsilon = 0.0001; - - // # [Factorial](https://en.wikipedia.org/wiki/Factorial) - // - // A factorial, usually written n!, is the product of all positive - // integers less than or equal to n. Often factorial is implemented - // recursively, but this iterative approach is significantly faster - // and simpler. - function factorial(n) { - - // factorial is mathematically undefined for negative numbers - if (n < 0 ) { return null; } - - // typically you'll expand the factorial function going down, like - // 5! = 5 * 4 * 3 * 2 * 1. This is going in the opposite direction, - // counting from 2 up to the number in question, and since anything - // multiplied by 1 is itself, the loop only needs to start at 2. - var accumulator = 1; - for (var i = 2; i <= n; i++) { - // for each number up to and including the number `n`, multiply - // the accumulator my that number. - accumulator *= i; - } - return accumulator; - } - - // # Bernoulli Distribution - // - // The [Bernoulli distribution](http://en.wikipedia.org/wiki/Bernoulli_distribution) - // is the probability discrete - // distribution of a random variable which takes value 1 with success - // probability `p` and value 0 with failure - // probability `q` = 1 - `p`. It can be used, for example, to represent the - // toss of a coin, where "1" is defined to mean "heads" and "0" is defined - // to mean "tails" (or vice versa). It is - // a special case of a Binomial Distribution - // where `n` = 1. - function bernoulli_distribution(p) { - // Check that `p` is a valid probability (0 ≤ p ≤ 1) - if (p < 0 || p > 1 ) { return null; } - - return binomial_distribution(1, p); - } - - // # Binomial Distribution - // - // The [Binomial Distribution](http://en.wikipedia.org/wiki/Binomial_distribution) is the discrete probability - // distribution of the number of successes in a sequence of n independent yes/no experiments, each of which yields - // success with probability `probability`. Such a success/failure experiment is also called a Bernoulli experiment or - // Bernoulli trial; when trials = 1, the Binomial Distribution is a Bernoulli Distribution. - function binomial_distribution(trials, probability) { - // Check that `p` is a valid probability (0 ≤ p ≤ 1), - // that `n` is an integer, strictly positive. - if (probability < 0 || probability > 1 || - trials <= 0 || trials % 1 !== 0) { - return null; - } - - // a [probability mass function](https://en.wikipedia.org/wiki/Probability_mass_function) - function probability_mass(x, trials, probability) { - return factorial(trials) / - (factorial(x) * factorial(trials - x)) * - (Math.pow(probability, x) * Math.pow(1 - probability, trials - x)); - } - - // We initialize `x`, the random variable, and `accumulator`, an accumulator - // for the cumulative distribution function to 0. `distribution_functions` - // is the object we'll return with the `probability_of_x` and the - // `cumulative_probability_of_x`, as well as the calculated mean & - // variance. We iterate until the `cumulative_probability_of_x` is - // within `epsilon` of 1.0. - var x = 0, - cumulative_probability = 0, - cells = {}; - - // This algorithm iterates through each potential outcome, - // until the `cumulative_probability` is very close to 1, at - // which point we've defined the vast majority of outcomes - do { - cells[x] = probability_mass(x, trials, probability); - cumulative_probability += cells[x]; - x++; - // when the cumulative_probability is nearly 1, we've calculated - // the useful range of this distribution - } while (cumulative_probability < 1 - epsilon); - - return cells; - } - - // # Poisson Distribution - // - // The [Poisson Distribution](http://en.wikipedia.org/wiki/Poisson_distribution) - // is a discrete probability distribution that expresses the probability - // of a given number of events occurring in a fixed interval of time - // and/or space if these events occur with a known average rate and - // independently of the time since the last event. - // - // The Poisson Distribution is characterized by the strictly positive - // mean arrival or occurrence rate, `λ`. - function poisson_distribution(lambda) { - // Check that lambda is strictly positive - if (lambda <= 0) { return null; } - - // our current place in the distribution - var x = 0, - // and we keep track of the current cumulative probability, in - // order to know when to stop calculating chances. - cumulative_probability = 0, - // the calculated cells to be returned - cells = {}; - - // a [probability mass function](https://en.wikipedia.org/wiki/Probability_mass_function) - function probability_mass(x, lambda) { - return (Math.pow(Math.E, -lambda) * Math.pow(lambda, x)) / - factorial(x); - } - - // This algorithm iterates through each potential outcome, - // until the `cumulative_probability` is very close to 1, at - // which point we've defined the vast majority of outcomes - do { - cells[x] = probability_mass(x, lambda); - cumulative_probability += cells[x]; - x++; - // when the cumulative_probability is nearly 1, we've calculated - // the useful range of this distribution - } while (cumulative_probability < 1 - epsilon); - - return cells; - } - - // # Percentage Points of the χ2 (Chi-Squared) Distribution - // The [χ2 (Chi-Squared) Distribution](http://en.wikipedia.org/wiki/Chi-squared_distribution) is used in the common - // chi-squared tests for goodness of fit of an observed distribution to a theoretical one, the independence of two - // criteria of classification of qualitative data, and in confidence interval estimation for a population standard - // deviation of a normal distribution from a sample standard deviation. - // - // Values from Appendix 1, Table III of William W. Hines & Douglas C. Montgomery, "Probability and Statistics in - // Engineering and Management Science", Wiley (1980). - var chi_squared_distribution_table = { - 1: { 0.995: 0.00, 0.99: 0.00, 0.975: 0.00, 0.95: 0.00, 0.9: 0.02, 0.5: 0.45, 0.1: 2.71, 0.05: 3.84, 0.025: 5.02, 0.01: 6.63, 0.005: 7.88 }, - 2: { 0.995: 0.01, 0.99: 0.02, 0.975: 0.05, 0.95: 0.10, 0.9: 0.21, 0.5: 1.39, 0.1: 4.61, 0.05: 5.99, 0.025: 7.38, 0.01: 9.21, 0.005: 10.60 }, - 3: { 0.995: 0.07, 0.99: 0.11, 0.975: 0.22, 0.95: 0.35, 0.9: 0.58, 0.5: 2.37, 0.1: 6.25, 0.05: 7.81, 0.025: 9.35, 0.01: 11.34, 0.005: 12.84 }, - 4: { 0.995: 0.21, 0.99: 0.30, 0.975: 0.48, 0.95: 0.71, 0.9: 1.06, 0.5: 3.36, 0.1: 7.78, 0.05: 9.49, 0.025: 11.14, 0.01: 13.28, 0.005: 14.86 }, - 5: { 0.995: 0.41, 0.99: 0.55, 0.975: 0.83, 0.95: 1.15, 0.9: 1.61, 0.5: 4.35, 0.1: 9.24, 0.05: 11.07, 0.025: 12.83, 0.01: 15.09, 0.005: 16.75 }, - 6: { 0.995: 0.68, 0.99: 0.87, 0.975: 1.24, 0.95: 1.64, 0.9: 2.20, 0.5: 5.35, 0.1: 10.65, 0.05: 12.59, 0.025: 14.45, 0.01: 16.81, 0.005: 18.55 }, - 7: { 0.995: 0.99, 0.99: 1.25, 0.975: 1.69, 0.95: 2.17, 0.9: 2.83, 0.5: 6.35, 0.1: 12.02, 0.05: 14.07, 0.025: 16.01, 0.01: 18.48, 0.005: 20.28 }, - 8: { 0.995: 1.34, 0.99: 1.65, 0.975: 2.18, 0.95: 2.73, 0.9: 3.49, 0.5: 7.34, 0.1: 13.36, 0.05: 15.51, 0.025: 17.53, 0.01: 20.09, 0.005: 21.96 }, - 9: { 0.995: 1.73, 0.99: 2.09, 0.975: 2.70, 0.95: 3.33, 0.9: 4.17, 0.5: 8.34, 0.1: 14.68, 0.05: 16.92, 0.025: 19.02, 0.01: 21.67, 0.005: 23.59 }, - 10: { 0.995: 2.16, 0.99: 2.56, 0.975: 3.25, 0.95: 3.94, 0.9: 4.87, 0.5: 9.34, 0.1: 15.99, 0.05: 18.31, 0.025: 20.48, 0.01: 23.21, 0.005: 25.19 }, - 11: { 0.995: 2.60, 0.99: 3.05, 0.975: 3.82, 0.95: 4.57, 0.9: 5.58, 0.5: 10.34, 0.1: 17.28, 0.05: 19.68, 0.025: 21.92, 0.01: 24.72, 0.005: 26.76 }, - 12: { 0.995: 3.07, 0.99: 3.57, 0.975: 4.40, 0.95: 5.23, 0.9: 6.30, 0.5: 11.34, 0.1: 18.55, 0.05: 21.03, 0.025: 23.34, 0.01: 26.22, 0.005: 28.30 }, - 13: { 0.995: 3.57, 0.99: 4.11, 0.975: 5.01, 0.95: 5.89, 0.9: 7.04, 0.5: 12.34, 0.1: 19.81, 0.05: 22.36, 0.025: 24.74, 0.01: 27.69, 0.005: 29.82 }, - 14: { 0.995: 4.07, 0.99: 4.66, 0.975: 5.63, 0.95: 6.57, 0.9: 7.79, 0.5: 13.34, 0.1: 21.06, 0.05: 23.68, 0.025: 26.12, 0.01: 29.14, 0.005: 31.32 }, - 15: { 0.995: 4.60, 0.99: 5.23, 0.975: 6.27, 0.95: 7.26, 0.9: 8.55, 0.5: 14.34, 0.1: 22.31, 0.05: 25.00, 0.025: 27.49, 0.01: 30.58, 0.005: 32.80 }, - 16: { 0.995: 5.14, 0.99: 5.81, 0.975: 6.91, 0.95: 7.96, 0.9: 9.31, 0.5: 15.34, 0.1: 23.54, 0.05: 26.30, 0.025: 28.85, 0.01: 32.00, 0.005: 34.27 }, - 17: { 0.995: 5.70, 0.99: 6.41, 0.975: 7.56, 0.95: 8.67, 0.9: 10.09, 0.5: 16.34, 0.1: 24.77, 0.05: 27.59, 0.025: 30.19, 0.01: 33.41, 0.005: 35.72 }, - 18: { 0.995: 6.26, 0.99: 7.01, 0.975: 8.23, 0.95: 9.39, 0.9: 10.87, 0.5: 17.34, 0.1: 25.99, 0.05: 28.87, 0.025: 31.53, 0.01: 34.81, 0.005: 37.16 }, - 19: { 0.995: 6.84, 0.99: 7.63, 0.975: 8.91, 0.95: 10.12, 0.9: 11.65, 0.5: 18.34, 0.1: 27.20, 0.05: 30.14, 0.025: 32.85, 0.01: 36.19, 0.005: 38.58 }, - 20: { 0.995: 7.43, 0.99: 8.26, 0.975: 9.59, 0.95: 10.85, 0.9: 12.44, 0.5: 19.34, 0.1: 28.41, 0.05: 31.41, 0.025: 34.17, 0.01: 37.57, 0.005: 40.00 }, - 21: { 0.995: 8.03, 0.99: 8.90, 0.975: 10.28, 0.95: 11.59, 0.9: 13.24, 0.5: 20.34, 0.1: 29.62, 0.05: 32.67, 0.025: 35.48, 0.01: 38.93, 0.005: 41.40 }, - 22: { 0.995: 8.64, 0.99: 9.54, 0.975: 10.98, 0.95: 12.34, 0.9: 14.04, 0.5: 21.34, 0.1: 30.81, 0.05: 33.92, 0.025: 36.78, 0.01: 40.29, 0.005: 42.80 }, - 23: { 0.995: 9.26, 0.99: 10.20, 0.975: 11.69, 0.95: 13.09, 0.9: 14.85, 0.5: 22.34, 0.1: 32.01, 0.05: 35.17, 0.025: 38.08, 0.01: 41.64, 0.005: 44.18 }, - 24: { 0.995: 9.89, 0.99: 10.86, 0.975: 12.40, 0.95: 13.85, 0.9: 15.66, 0.5: 23.34, 0.1: 33.20, 0.05: 36.42, 0.025: 39.36, 0.01: 42.98, 0.005: 45.56 }, - 25: { 0.995: 10.52, 0.99: 11.52, 0.975: 13.12, 0.95: 14.61, 0.9: 16.47, 0.5: 24.34, 0.1: 34.28, 0.05: 37.65, 0.025: 40.65, 0.01: 44.31, 0.005: 46.93 }, - 26: { 0.995: 11.16, 0.99: 12.20, 0.975: 13.84, 0.95: 15.38, 0.9: 17.29, 0.5: 25.34, 0.1: 35.56, 0.05: 38.89, 0.025: 41.92, 0.01: 45.64, 0.005: 48.29 }, - 27: { 0.995: 11.81, 0.99: 12.88, 0.975: 14.57, 0.95: 16.15, 0.9: 18.11, 0.5: 26.34, 0.1: 36.74, 0.05: 40.11, 0.025: 43.19, 0.01: 46.96, 0.005: 49.65 }, - 28: { 0.995: 12.46, 0.99: 13.57, 0.975: 15.31, 0.95: 16.93, 0.9: 18.94, 0.5: 27.34, 0.1: 37.92, 0.05: 41.34, 0.025: 44.46, 0.01: 48.28, 0.005: 50.99 }, - 29: { 0.995: 13.12, 0.99: 14.26, 0.975: 16.05, 0.95: 17.71, 0.9: 19.77, 0.5: 28.34, 0.1: 39.09, 0.05: 42.56, 0.025: 45.72, 0.01: 49.59, 0.005: 52.34 }, - 30: { 0.995: 13.79, 0.99: 14.95, 0.975: 16.79, 0.95: 18.49, 0.9: 20.60, 0.5: 29.34, 0.1: 40.26, 0.05: 43.77, 0.025: 46.98, 0.01: 50.89, 0.005: 53.67 }, - 40: { 0.995: 20.71, 0.99: 22.16, 0.975: 24.43, 0.95: 26.51, 0.9: 29.05, 0.5: 39.34, 0.1: 51.81, 0.05: 55.76, 0.025: 59.34, 0.01: 63.69, 0.005: 66.77 }, - 50: { 0.995: 27.99, 0.99: 29.71, 0.975: 32.36, 0.95: 34.76, 0.9: 37.69, 0.5: 49.33, 0.1: 63.17, 0.05: 67.50, 0.025: 71.42, 0.01: 76.15, 0.005: 79.49 }, - 60: { 0.995: 35.53, 0.99: 37.48, 0.975: 40.48, 0.95: 43.19, 0.9: 46.46, 0.5: 59.33, 0.1: 74.40, 0.05: 79.08, 0.025: 83.30, 0.01: 88.38, 0.005: 91.95 }, - 70: { 0.995: 43.28, 0.99: 45.44, 0.975: 48.76, 0.95: 51.74, 0.9: 55.33, 0.5: 69.33, 0.1: 85.53, 0.05: 90.53, 0.025: 95.02, 0.01: 100.42, 0.005: 104.22 }, - 80: { 0.995: 51.17, 0.99: 53.54, 0.975: 57.15, 0.95: 60.39, 0.9: 64.28, 0.5: 79.33, 0.1: 96.58, 0.05: 101.88, 0.025: 106.63, 0.01: 112.33, 0.005: 116.32 }, - 90: { 0.995: 59.20, 0.99: 61.75, 0.975: 65.65, 0.95: 69.13, 0.9: 73.29, 0.5: 89.33, 0.1: 107.57, 0.05: 113.14, 0.025: 118.14, 0.01: 124.12, 0.005: 128.30 }, - 100: { 0.995: 67.33, 0.99: 70.06, 0.975: 74.22, 0.95: 77.93, 0.9: 82.36, 0.5: 99.33, 0.1: 118.50, 0.05: 124.34, 0.025: 129.56, 0.01: 135.81, 0.005: 140.17 } - }; - - // # χ2 (Chi-Squared) Goodness-of-Fit Test - // - // The [χ2 (Chi-Squared) Goodness-of-Fit Test](http://en.wikipedia.org/wiki/Goodness_of_fit#Pearson.27s_chi-squared_test) - // uses a measure of goodness of fit which is the sum of differences between observed and expected outcome frequencies - // (that is, counts of observations), each squared and divided by the number of observations expected given the - // hypothesized distribution. The resulting χ2 statistic, `chi_squared`, can be compared to the chi-squared distribution - // to determine the goodness of fit. In order to determine the degrees of freedom of the chi-squared distribution, one - // takes the total number of observed frequencies and subtracts the number of estimated parameters. The test statistic - // follows, approximately, a chi-square distribution with (k − c) degrees of freedom where `k` is the number of non-empty - // cells and `c` is the number of estimated parameters for the distribution. - function chi_squared_goodness_of_fit(data, distribution_type, significance) { - // Estimate from the sample data, a weighted mean. - var input_mean = mean(data), - // Calculated value of the χ2 statistic. - chi_squared = 0, - // Degrees of freedom, calculated as (number of class intervals - - // number of hypothesized distribution parameters estimated - 1) - degrees_of_freedom, - // Number of hypothesized distribution parameters estimated, expected to be supplied in the distribution test. - // Lose one degree of freedom for estimating `lambda` from the sample data. - c = 1, - // The hypothesized distribution. - // Generate the hypothesized distribution. - hypothesized_distribution = distribution_type(input_mean), - observed_frequencies = [], - expected_frequencies = [], - k; - - // Create an array holding a histogram from the sample data, of - // the form `{ value: numberOfOcurrences }` - for (var i = 0; i < data.length; i++) { - if (observed_frequencies[data[i]] === undefined) { - observed_frequencies[data[i]] = 0; - } - observed_frequencies[data[i]]++; - } - - // The histogram we created might be sparse - there might be gaps - // between values. So we iterate through the histogram, making - // sure that instead of undefined, gaps have 0 values. - for (i = 0; i < observed_frequencies.length; i++) { - if (observed_frequencies[i] === undefined) { - observed_frequencies[i] = 0; - } - } - - // Create an array holding a histogram of expected data given the - // sample size and hypothesized distribution. - for (k in hypothesized_distribution) { - if (k in observed_frequencies) { - expected_frequencies[k] = hypothesized_distribution[k] * data.length; - } - } - - // Working backward through the expected frequencies, collapse classes - // if less than three observations are expected for a class. - // This transformation is applied to the observed frequencies as well. - for (k = expected_frequencies.length - 1; k >= 0; k--) { - if (expected_frequencies[k] < 3) { - expected_frequencies[k - 1] += expected_frequencies[k]; - expected_frequencies.pop(); - - observed_frequencies[k - 1] += observed_frequencies[k]; - observed_frequencies.pop(); - } - } - - // Iterate through the squared differences between observed & expected - // frequencies, accumulating the `chi_squared` statistic. - for (k = 0; k < observed_frequencies.length; k++) { - chi_squared += Math.pow( - observed_frequencies[k] - expected_frequencies[k], 2) / - expected_frequencies[k]; - } - - // Calculate degrees of freedom for this test and look it up in the - // `chi_squared_distribution_table` in order to - // accept or reject the goodness-of-fit of the hypothesized distribution. - degrees_of_freedom = observed_frequencies.length - c - 1; - return chi_squared_distribution_table[degrees_of_freedom][significance] < chi_squared; - } - - // # Mixin - // - // Mixin simple_statistics to a single Array instance if provided - // or the Array native object if not. This is an optional - // feature that lets you treat simple_statistics as a native feature - // of Javascript. - function mixin(array) { - var support = !!(Object.defineProperty && Object.defineProperties); - if (!support) throw new Error('without defineProperty, simple-statistics cannot be mixed in'); - - // only methods which work on basic arrays in a single step - // are supported - var arrayMethods = ['median', 'standard_deviation', 'sum', - 'sample_skewness', - 'mean', 'min', 'max', 'quantile', 'geometric_mean', - 'harmonic_mean']; - - // create a closure with a method name so that a reference - // like `arrayMethods[i]` doesn't follow the loop increment - function wrap(method) { - return function() { - // cast any arguments into an array, since they're - // natively objects - var args = Array.prototype.slice.apply(arguments); - // make the first argument the array itself - args.unshift(this); - // return the result of the ss method - return ss[method].apply(ss, args); - }; - } - - // select object to extend - var extending; - if (array) { - // create a shallow copy of the array so that our internal - // operations do not change it by reference - extending = array.slice(); - } else { - extending = Array.prototype; - } - - // for each array function, define a function that gets - // the array as the first argument. - // We use [defineProperty](https://developer.mozilla.org/en-US/docs/JavaScript/Reference/Global_Objects/Object/defineProperty) - // because it allows these properties to be non-enumerable: - // `for (var in x)` loops will not run into problems with this - // implementation. - for (var i = 0; i < arrayMethods.length; i++) { - Object.defineProperty(extending, arrayMethods[i], { - value: wrap(arrayMethods[i]), - configurable: true, - enumerable: false, - writable: true - }); - } - - return extending; - } - - ss.linear_regression = linear_regression; - ss.standard_deviation = standard_deviation; - ss.r_squared = r_squared; - ss.median = median; - ss.mean = mean; - ss.mode = mode; - ss.min = min; - ss.max = max; - ss.sum = sum; - ss.quantile = quantile; - ss.quantile_sorted = quantile_sorted; - ss.iqr = iqr; - ss.mad = mad; - - ss.chunk = chunk; - ss.shuffle = shuffle; - ss.shuffle_in_place = shuffle_in_place; - - ss.sample = sample; - - ss.sample_covariance = sample_covariance; - ss.sample_correlation = sample_correlation; - ss.sample_variance = sample_variance; - ss.sample_standard_deviation = sample_standard_deviation; - ss.sample_skewness = sample_skewness; - - ss.geometric_mean = geometric_mean; - ss.harmonic_mean = harmonic_mean; - ss.variance = variance; - ss.t_test = t_test; - ss.t_test_two_sample = t_test_two_sample; - - // jenks - ss.jenksMatrices = jenksMatrices; - ss.jenksBreaks = jenksBreaks; - ss.jenks = jenks; - - ss.bayesian = bayesian; - - // Distribution-related methods - ss.epsilon = epsilon; // We make ε available to the test suite. - ss.factorial = factorial; - ss.bernoulli_distribution = bernoulli_distribution; - ss.binomial_distribution = binomial_distribution; - ss.poisson_distribution = poisson_distribution; - ss.chi_squared_goodness_of_fit = chi_squared_goodness_of_fit; - - // Normal distribution - ss.z_score = z_score; - ss.cumulative_std_normal_probability = cumulative_std_normal_probability; - ss.standard_normal_table = standard_normal_table; - - // Alias this into its common name - ss.average = mean; - ss.interquartile_range = iqr; - ss.mixin = mixin; - ss.median_absolute_deviation = mad; - -})(this); - -},{}],60:[function(require,module,exports){ -var invariant = require('turf-invariant'); -//http://en.wikipedia.org/wiki/Haversine_formula -//http://www.movable-type.co.uk/scripts/latlong.html - -/** - * Takes two {@link Point} features and calculates - * the distance between them in degress, radians, - * miles, or kilometers. This uses the - * [Haversine formula](http://en.wikipedia.org/wiki/Haversine_formula) - * to account for global curvature. - * - * @module turf/distance - * @category measurement - * @param {Feature} from origin point - * @param {Feature} to destination point - * @param {String} [units=kilometers] can be degrees, radians, miles, or kilometers - * @return {Number} distance between the two points - * @example - * var point1 = { - * "type": "Feature", - * "properties": {}, - * "geometry": { - * "type": "Point", - * "coordinates": [-75.343, 39.984] - * } - * }; - * var point2 = { - * "type": "Feature", - * "properties": {}, - * "geometry": { - * "type": "Point", - * "coordinates": [-75.534, 39.123] - * } - * }; - * var units = "miles"; - * - * var points = { - * "type": "FeatureCollection", - * "features": [point1, point2] - * }; - * - * //=points - * - * var distance = turf.distance(point1, point2, units); - * - * //=distance - */ -module.exports = function(point1, point2, units){ - invariant.featureOf(point1, 'Point', 'distance'); - invariant.featureOf(point2, 'Point', 'distance'); - var coordinates1 = point1.geometry.coordinates; - var coordinates2 = point2.geometry.coordinates; - - var dLat = toRad(coordinates2[1] - coordinates1[1]); - var dLon = toRad(coordinates2[0] - coordinates1[0]); - var lat1 = toRad(coordinates1[1]); - var lat2 = toRad(coordinates2[1]); - var a = Math.sin(dLat/2) * Math.sin(dLat/2) + - Math.sin(dLon/2) * Math.sin(dLon/2) * Math.cos(lat1) * Math.cos(lat2); - var c = 2 * Math.atan2(Math.sqrt(a), Math.sqrt(1-a)); - - var R; - switch(units){ - case 'miles': - R = 3960; - break; - case 'kilometers': - R = 6373; - break; - case 'degrees': - R = 57.2957795; - break; - case 'radians': - R = 1; - break; - case undefined: - R = 6373; - break; - default: - throw new Error('unknown option given to "units"'); - } - - var distance = R * c; - return distance; -}; - -function toRad(degree) { - return degree * Math.PI / 180; -} - -},{"turf-invariant":61}],61:[function(require,module,exports){ -module.exports.geojsonType = geojsonType; -module.exports.collectionOf = collectionOf; -module.exports.featureOf = featureOf; - -/** - * Enforce expectations about types of GeoJSON objects for Turf. - * - * @alias geojsonType - * @param {GeoJSON} value any GeoJSON object - * @param {string} type expected GeoJSON type - * @param {String} name name of calling function - * @throws Error if value is not the expected type. - */ -function geojsonType(value, type, name) { - if (!type || !name) throw new Error('type and name required'); - - if (!value || value.type !== type) { - throw new Error('Invalid input to ' + name + ': must be a ' + type + ', given ' + value.type); - } -} - -/** - * Enforce expectations about types of {@link Feature} inputs for Turf. - * Internally this uses {@link geojsonType} to judge geometry types. - * - * @alias featureOf - * @param {Feature} feature a feature with an expected geometry type - * @param {string} type expected GeoJSON type - * @param {String} name name of calling function - * @throws Error if value is not the expected type. - */ -function featureOf(value, type, name) { - if (!name) throw new Error('.featureOf() requires a name'); - if (!value || value.type !== 'Feature' || !value.geometry) { - throw new Error('Invalid input to ' + name + ', Feature with geometry required'); - } - if (!value.geometry || value.geometry.type !== type) { - throw new Error('Invalid input to ' + name + ': must be a ' + type + ', given ' + value.geometry.type); - } -} - -/** - * Enforce expectations about types of {@link FeatureCollection} inputs for Turf. - * Internally this uses {@link geojsonType} to judge geometry types. - * - * @alias collectionOf - * @param {FeatureCollection} featurecollection a featurecollection for which features will be judged - * @param {string} type expected GeoJSON type - * @param {String} name name of calling function - * @throws Error if value is not the expected type. - */ -function collectionOf(value, type, name) { - if (!name) throw new Error('.collectionOf() requires a name'); - if (!value || value.type !== 'FeatureCollection') { - throw new Error('Invalid input to ' + name + ', FeatureCollection required'); - } - for (var i = 0; i < value.features.length; i++) { - var feature = value.features[i]; - if (!feature || feature.type !== 'Feature' || !feature.geometry) { - throw new Error('Invalid input to ' + name + ', Feature with geometry required'); - } - if (!feature.geometry || feature.geometry.type !== type) { - throw new Error('Invalid input to ' + name + ': must be a ' + type + ', given ' + feature.geometry.type); - } - } -} - -},{}],62:[function(require,module,exports){ -var extent = require('turf-extent'); -var bboxPolygon = require('turf-bbox-polygon'); - -/** - * Takes a {@link Feature} or {@link FeatureCollection} and returns a rectangular {@link Polygon} feature that encompasses all vertices. - * - * @module turf/envelope - * @category measurement - * @param {FeatureCollection} fc a FeatureCollection of any type - * @return {Polygon} a rectangular Polygon feature that encompasses all vertices - * @example - * var fc = { - * "type": "FeatureCollection", - * "features": [ - * { - * "type": "Feature", - * "properties": { - * "name": "Location A" - * }, - * "geometry": { - * "type": "Point", - * "coordinates": [-75.343, 39.984] - * } - * }, { - * "type": "Feature", - * "properties": { - * "name": "Location B" - * }, - * "geometry": { - * "type": "Point", - * "coordinates": [-75.833, 39.284] - * } - * }, { - * "type": "Feature", - * "properties": { - * "name": "Location C" - * }, - * "geometry": { - * "type": "Point", - * "coordinates": [-75.534, 39.123] - * } - * } - * ] - * }; - * - * var enveloped = turf.envelope(fc); - * - * var resultFeatures = fc.features.concat(enveloped); - * var result = { - * "type": "FeatureCollection", - * "features": resultFeatures - * }; - * - * //=result - */ - -module.exports = function(features, done){ - var bbox = extent(features); - var poly = bboxPolygon(bbox); - return poly; -} - -},{"turf-bbox-polygon":12,"turf-extent":70}],63:[function(require,module,exports){ -// depend on jsts for now https://github.com/bjornharrtell/jsts/blob/master/examples/overlay.html -var jsts = require('jsts'); - -/** - * Finds the difference between two polygons by clipping the second - * polygon from the first. - * - * @module turf/erase - * @category transformation - * @param {Polygon} poly1 input Polygon feaure - * @param {Polygon} poly2 Polygon feature to erase from `poly1` - * @return {Polygon} a Polygon feature showing the area of `poly1` excluding the area of `poly2` - * @example - * var poly1 = { - * "type": "Feature", - * "properties": { - * "fill": "#0f0" - * }, - * "geometry": { - * "type": "Polygon", - * "coordinates": [[ - * [-46.738586, -23.596711], - * [-46.738586, -23.458207], - * [-46.560058, -23.458207], - * [-46.560058, -23.596711], - * [-46.738586, -23.596711] - * ]] - * } - * }; - * var poly2 = { - * "type": "Feature", - * "properties": { - * "fill": "#00f" - * }, - * "geometry": { - * "type": "Polygon", - * "coordinates": [[ - * [-46.650009, -23.631314], - * [-46.650009, -23.5237], - * [-46.509246, -23.5237], - * [-46.509246, -23.631314], - * [-46.650009, -23.631314] - * ]] - * } - * }; - * - * var erased = turf.erase(poly1, poly2); - * erased.properties.fill = '#f00'; - * - * var polygons = { - * "type": "FeatureCollection", - * "features": [poly1, poly2] - * }; - * - * //=polygons - * - * //=erased - */ - -module.exports = function(p1, p2, done){ - var poly1 = JSON.parse(JSON.stringify(p1)); - var poly2 = JSON.parse(JSON.stringify(p2)); - if(poly1.type !== 'Feature') { - poly1 = { - type: 'Feature', - properties: {}, - geometry: poly1 - }; - } - if(poly2.type !== 'Feature') { - poly2 = { - type: 'Feature', - properties: {}, - geometry: poly2 - }; - } - - var reader = new jsts.io.GeoJSONReader(); - var a = reader.read(JSON.stringify(poly1.geometry)); - var b = reader.read(JSON.stringify(poly2.geometry)); - var erased = a.difference(b); - var parser = new jsts.io.GeoJSONParser(); - erased = parser.write(erased); - - poly1.geometry = erased; - - if (poly1.geometry.type === 'GeometryCollection' && poly1.geometry.geometries.length === 0) { - return; - } else { - return { - type: 'Feature', - properties: poly1.properties, - geometry: erased - }; - } -}; - -},{"jsts":64}],64:[function(require,module,exports){ -arguments[4][17][0].apply(exports,arguments) -},{"./lib/jsts":65,"dup":17,"javascript.util":67}],65:[function(require,module,exports){ -arguments[4][18][0].apply(exports,arguments) -},{"dup":18}],66:[function(require,module,exports){ -arguments[4][19][0].apply(exports,arguments) -},{"dup":19}],67:[function(require,module,exports){ -arguments[4][20][0].apply(exports,arguments) -},{"./dist/javascript.util-node.min.js":66,"dup":20}],68:[function(require,module,exports){ -var featureCollection = require('turf-featurecollection'); -var each = require('turf-meta').coordEach; -var point = require('turf-point'); - -/** - * Takes any {@link GeoJSON} object and return all positions as - * a {@link FeatureCollection} of {@link Point} features. - * - * @module turf/explode - * @category misc - * @param {GeoJSON} input input features - * @return {FeatureCollection} a FeatureCollection of {@link Point} features representing the exploded input features - * @throws {Error} if it encounters an unknown geometry type - * @example - * var poly = { - * "type": "Feature", - * "properties": {}, - * "geometry": { - * "type": "Polygon", - * "coordinates": [[ - * [177.434692, -17.77517], - * [177.402076, -17.779093], - * [177.38079, -17.803937], - * [177.40242, -17.826164], - * [177.438468, -17.824857], - * [177.454948, -17.796746], - * [177.434692, -17.77517] - * ]] - * } - * }; - * - * var points = turf.explode(poly); - * - * //=poly - * - * //=points - */ -module.exports = function(layer) { - var points = []; - each(layer, function(coord) { - points.push(point(coord)); - }); - return featureCollection(points); -}; - -},{"turf-featurecollection":72,"turf-meta":69,"turf-point":102}],69:[function(require,module,exports){ -arguments[4][23][0].apply(exports,arguments) -},{"dup":23}],70:[function(require,module,exports){ -var each = require('turf-meta').coordEach; - -/** - * Takes any {@link GeoJSON} object, calculates the extent of all input features, and returns a bounding box. - * - * @module turf/extent - * @category measurement - * @param {GeoJSON} input any valid GeoJSON Object - * @return {Array} the bounding box of `input` given - * as an array in WSEN order (west, south, east, north) - * @example - * var input = { - * "type": "FeatureCollection", - * "features": [ - * { - * "type": "Feature", - * "properties": {}, - * "geometry": { - * "type": "Point", - * "coordinates": [114.175329, 22.2524] - * } - * }, { - * "type": "Feature", - * "properties": {}, - * "geometry": { - * "type": "Point", - * "coordinates": [114.170007, 22.267969] - * } - * }, { - * "type": "Feature", - * "properties": {}, - * "geometry": { - * "type": "Point", - * "coordinates": [114.200649, 22.274641] - * } - * }, { - * "type": "Feature", - * "properties": {}, - * "geometry": { - * "type": "Point", - * "coordinates": [114.186744, 22.265745] - * } - * } - * ] - * }; - * - * var bbox = turf.extent(input); - * - * var bboxPolygon = turf.bboxPolygon(bbox); - * - * var resultFeatures = input.features.concat(bboxPolygon); - * var result = { - * "type": "FeatureCollection", - * "features": resultFeatures - * }; - * - * //=result - */ -module.exports = function(layer) { - var extent = [Infinity, Infinity, -Infinity, -Infinity]; - each(layer, function(coord) { - if (extent[0] > coord[0]) extent[0] = coord[0]; - if (extent[1] > coord[1]) extent[1] = coord[1]; - if (extent[2] < coord[0]) extent[2] = coord[0]; - if (extent[3] < coord[1]) extent[3] = coord[1]; - }); - return extent; -}; - -},{"turf-meta":71}],71:[function(require,module,exports){ -arguments[4][23][0].apply(exports,arguments) -},{"dup":23}],72:[function(require,module,exports){ -/** - * Takes one or more {@link Feature|Features} and creates a {@link FeatureCollection} - * - * @module turf/featurecollection - * @category helper - * @param {Feature} features input Features - * @returns {FeatureCollection} a FeatureCollection of input features - * @example - * var features = [ - * turf.point([-75.343, 39.984], {name: 'Location A'}), - * turf.point([-75.833, 39.284], {name: 'Location B'}), - * turf.point([-75.534, 39.123], {name: 'Location C'}) - * ]; - * - * var fc = turf.featurecollection(features); - * - * //=fc - */ -module.exports = function(features){ - return { - type: "FeatureCollection", - features: features - }; -}; - -},{}],73:[function(require,module,exports){ -var featureCollection = require('turf-featurecollection'); - -/** - * Takes a {@link FeatureCollection} and filters it by a given property and value - * - * @module turf/filter - * @category data - * @param {FeatureCollection} features input FeatureCollection of any type - * @param {String} key the property on which to filter - * @param {String} value the value of that property on which to filter - * @return {FeatureCollection} a filtered collection with only features that match input `key` and `value` - * @example - * var features = { - * "type": "FeatureCollection", - * "features": [ - * { - * "type": "Feature", - * "properties": { - * "species": "oak" - * }, - * "geometry": { - * "type": "Point", - * "coordinates": [-72.581777, 44.260875] - * } - * }, { - * "type": "Feature", - * "properties": { - * "species": "birch" - * }, - * "geometry": { - * "type": "Point", - * "coordinates": [-72.570018, 44.260691] - * } - * }, { - * "type": "Feature", - * "properties": { - * "species": "oak" - * }, - * "geometry": { - * "type": "Point", - * "coordinates": [-72.576284, 44.257925] - * } - * }, { - * "type": "Feature", - * "properties": { - * "species": "redwood" - * }, - * "geometry": { - * "type": "Point", - * "coordinates": [-72.56916, 44.254605] - * } - * }, { - * "type": "Feature", - * "properties": { - * "species": "maple" - * }, - * "geometry": { - * "type": "Point", - * "coordinates": [-72.581691, 44.24858] - * } - * }, { - * "type": "Feature", - * "properties": { - * "species": "oak" - * }, - * "geometry": { - * "type": "Point", - * "coordinates": [-72.583837, 44.255773] - * } - * } - * ] - * }; - * - * var key = "species"; - * var value = "oak"; - * - * var filtered = turf.filter(features, key, value); - * - * //=features - * - * //=filtered - */ -module.exports = function(collection, key, val) { - var newFC = featureCollection([]); - for(var i = 0; i < collection.features.length; i++) { - if(collection.features[i].properties[key] === val) { - newFC.features.push(collection.features[i]); - } - } - return newFC; -}; - -},{"turf-featurecollection":72}],74:[function(require,module,exports){ -/** - * Takes a {@link GeoJSON} object of any type and flips all of its coordinates - * from `[x, y]` to `[y, x]`. - * - * @module turf/flip - * @category misc - * @param {GeoJSON} input input GeoJSON object - * @returns {GeoJSON} a GeoJSON object of the same type as `input` with flipped coordinates - * @example - * var serbia = { - * "type": "Feature", - * "properties": {}, - * "geometry": { - * "type": "Point", - * "coordinates": [20.566406, 43.421008] - * } - * }; - * - * //=serbia - * - * var saudiArabia = turf.flip(serbia); - * - * //=saudiArabia - */ -module.exports = flipAny; - -function flipAny(_) { - // ensure that we don't modify features in-place and changes to the - // output do not change the previous feature, including changes to nested - // properties. - var input = JSON.parse(JSON.stringify(_)); - switch (input.type) { - case 'FeatureCollection': - for (var i = 0; i < input.features.length; i++) - flipGeometry(input.features[i].geometry); - return input; - case 'Feature': - flipGeometry(input.geometry); - return input; - default: - flipGeometry(input); - return input; - } -} - -function flipGeometry(geometry) { - var coords = geometry.coordinates; - switch(geometry.type) { - case 'Point': - flip0(coords); - break; - case 'LineString': - case 'MultiPoint': - flip1(coords); - break; - case 'Polygon': - case 'MultiLineString': - flip2(coords); - break; - case 'MultiPolygon': - flip3(coords); - break; - case 'GeometryCollection': - geometry.geometries.forEach(flipGeometry); - break; - } -} - -function flip0(coord) { - coord.reverse(); -} - -function flip1(coords) { - for(var i = 0; i < coords.length; i++) coords[i].reverse(); -} - -function flip2(coords) { - for(var i = 0; i < coords.length; i++) - for(var j = 0; j < coords[i].length; j++) coords[i][j].reverse(); -} - -function flip3(coords) { - for(var i = 0; i < coords.length; i++) - for(var j = 0; j < coords[i].length; j++) - for(var k = 0; k < coords[i][j].length; k++) coords[i][j][k].reverse(); -} - -},{}],75:[function(require,module,exports){ -var point = require('turf-point'); -var polygon = require('turf-polygon'); -var distance = require('turf-distance'); -var featurecollection = require('turf-featurecollection'); - -/** - * Takes a bounding box and a cell size in degrees and returns a {@link FeatureCollection} of flat-topped - * hexagons ({@link Polygon} features) aligned in an "odd-q" vertical grid as - * described in [Hexagonal Grids](http://www.redblobgames.com/grids/hexagons/) - * - * @module turf/hex-grid - * @category interpolation - * @param {Array} bbox bounding box in [minX, minY, maxX, maxY] order - * @param {Number} cellWidth width of cell in specified units - * @param {String} units used in calculating cellWidth ('miles' or 'kilometers') - * @return {FeatureCollection} units used in calculating cellWidth ('miles' or 'kilometers') - * @example - * var bbox = [-96,31,-84,40]; - * var cellWidth = 50; - * var units = 'miles'; - * - * var hexgrid = turf.hexGrid(bbox, cellWidth, units); - * - * //=hexgrid - */ - -//Precompute cosines and sines of angles used in hexagon creation -// for performance gain -var cosines = []; -var sines = []; -for (var i = 0; i < 6; i++) { - var angle = 2 * Math.PI/6 * i; - cosines.push(Math.cos(angle)); - sines.push(Math.sin(angle)); -} - -module.exports = function hexgrid(bbox, cell, units) { - var xFraction = cell / (distance(point([bbox[0], bbox[1]]), point([bbox[2], bbox[1]]), units)); - var cellWidth = xFraction * (bbox[2] - bbox[0]); - var yFraction = cell / (distance(point([bbox[0], bbox[1]]), point([bbox[0], bbox[3]]), units)); - var cellHeight = yFraction * (bbox[3] - bbox[1]); - var radius = cellWidth / 2; - - var hex_width = radius * 2; - var hex_height = Math.sqrt(3)/2 * hex_width; - - var box_width = bbox[2] - bbox[0]; - var box_height = bbox[3] - bbox[1]; - - var x_interval = 3/4 * hex_width; - var y_interval = hex_height; - - var x_span = box_width / (hex_width - radius/2); - var x_count = Math.ceil(x_span); - if (Math.round(x_span) === x_count) { - x_count++; - } - - var x_adjust = ((x_count * x_interval - radius/2) - box_width)/2 - radius/2; - - var y_count = Math.ceil(box_height / hex_height); - - var y_adjust = (box_height - y_count * hex_height)/2; - - var hasOffsetY = y_count * hex_height - box_height > hex_height/2; - if (hasOffsetY) { - y_adjust -= hex_height/4; - } - - var fc = featurecollection([]); - for (var x = 0; x < x_count; x++) { - for (var y = 0; y <= y_count; y++) { - - var isOdd = x % 2 === 1; - if (y === 0 && isOdd) { - continue; - } - - if (y === 0 && hasOffsetY) { - continue; - } - - var center_x = x * x_interval + bbox[0] - x_adjust; - var center_y = y * y_interval + bbox[1] + y_adjust; - - if (isOdd) { - center_y -= hex_height/2; - } - fc.features.push(hexagon([center_x, center_y], radius)); - } - } - - return fc; -}; - -//Center should be [x, y] -function hexagon(center, radius) { - var vertices = []; - for (var i = 0; i < 6; i++) { - var x = center[0] + radius * cosines[i]; - var y = center[1] + radius * sines[i]; - vertices.push([x,y]); - } - //first and last vertex must be the same - vertices.push(vertices[0]); - return polygon([vertices]); -} -},{"turf-distance":60,"turf-featurecollection":72,"turf-point":102,"turf-polygon":103}],76:[function(require,module,exports){ -// http://en.wikipedia.org/wiki/Even%E2%80%93odd_rule -// modified from: https://github.com/substack/point-in-polygon/blob/master/index.js -// which was modified from http://www.ecse.rpi.edu/Homepages/wrf/Research/Short_Notes/pnpoly.html - -/** - * Takes a {@link Point} feature and a {@link Polygon} feature and determines if the Point resides inside the Polygon. The Polygon can - * be convex or concave. The function accepts any valid Polygon or {@link MultiPolygon} - * and accounts for holes. - * - * @module turf/inside - * @category joins - * @param {Point} point a Point feature - * @param {Polygon} polygon a Polygon feature - * @return {Boolean} `true` if the Point is inside the Polygon; `false` if the Point is not inside the Polygon - * @example - * var pt1 = { - * "type": "Feature", - * "properties": { - * "marker-color": "#f00" - * }, - * "geometry": { - * "type": "Point", - * "coordinates": [-111.467285, 40.75766] - * } - * }; - * var pt2 = { - * "type": "Feature", - * "properties": { - * "marker-color": "#0f0" - * }, - * "geometry": { - * "type": "Point", - * "coordinates": [-111.873779, 40.647303] - * } - * }; - * var poly = { - * "type": "Feature", - * "properties": {}, - * "geometry": { - * "type": "Polygon", - * "coordinates": [[ - * [-112.074279, 40.52215], - * [-112.074279, 40.853293], - * [-111.610107, 40.853293], - * [-111.610107, 40.52215], - * [-112.074279, 40.52215] - * ]] - * } - * }; - * - * var features = { - * "type": "FeatureCollection", - * "features": [pt1, pt2, poly] - * }; - * - * //=features - * - * var isInside1 = turf.inside(pt1, poly); - * //=isInside1 - * - * var isInside2 = turf.inside(pt2, poly); - * //=isInside2 - */ -module.exports = function(point, polygon) { - var polys = polygon.geometry.coordinates; - var pt = [point.geometry.coordinates[0], point.geometry.coordinates[1]]; - // normalize to multipolygon - if(polygon.geometry.type === 'Polygon') polys = [polys]; - - var insidePoly = false; - var i = 0; - while (i < polys.length && !insidePoly) { - // check if it is in the outer ring first - if(inRing(pt, polys[i][0])) { - var inHole = false; - var k = 1; - // check for the point in any of the holes - while(k < polys[i].length && !inHole) { - if(inRing(pt, polys[i][k])) { - inHole = true; - } - k++; - } - if(!inHole) insidePoly = true; - } - i++; - } - return insidePoly; -} - -// pt is [x,y] and ring is [[x,y], [x,y],..] -function inRing (pt, ring) { - var isInside = false; - for (var i = 0, j = ring.length - 1; i < ring.length; j = i++) { - var xi = ring[i][0], yi = ring[i][1]; - var xj = ring[j][0], yj = ring[j][1]; - - var intersect = ((yi > pt[1]) != (yj > pt[1])) - && (pt[0] < (xj - xi) * (pt[1] - yi) / (yj - yi) + xi); - if (intersect) isInside = !isInside; - } - return isInside; -} - - -},{}],77:[function(require,module,exports){ -// depend on jsts for now https://github.com/bjornharrtell/jsts/blob/master/examples/overlay.html -var jsts = require('jsts'); -var featurecollection = require('turf-featurecollection'); - -/** - * Takes two {@link Polygon} features and finds their intersection. - * - * @module turf/intersect - * @category transformation - * @param {Polygon} poly1 the first Polygon - * @param {Polygon} poly2 the second Polygon - * @return {Polygon} a Polygon feature representing the area where `poly1` and `poly2` overlap - * @example - * var poly1 = turf.polygon([[ - * [-122.801742, 45.48565], - * [-122.801742, 45.60491], - * [-122.584762, 45.60491], - * [-122.584762, 45.48565], - * [-122.801742, 45.48565] - * ]]); - * poly1.properties.fill = '#0f0'; - * var poly2 = turf.polygon([[ - * [-122.520217, 45.535693], - * [-122.64038, 45.553967], - * [-122.720031, 45.526554], - * [-122.669906, 45.507309], - * [-122.723464, 45.446643], - * [-122.532577, 45.408574], - * [-122.487258, 45.477466], - * [-122.520217, 45.535693] - * ]]); - * poly2.properties.fill = '#00f'; - * var polygons = turf.featurecollection([poly1, poly2]); - * - * var intersection = turf.intersect(poly1, poly2); - * - * //=polygons - * - * //=intersection - */ -module.exports = function(poly1, poly2){ - var geom1; - if(poly1.type === 'Feature') geom1 = poly1.geometry; - else geom1 = poly1; - if(poly2.type === 'Feature') geom2 = poly2.geometry; - else geom2 = poly2; - var reader = new jsts.io.GeoJSONReader(); - var a = reader.read(JSON.stringify(geom1)); - var b = reader.read(JSON.stringify(geom2)); - var intersection = a.intersection(b); - var parser = new jsts.io.GeoJSONParser(); - - intersection = parser.write(intersection); - if(intersection.type === 'GeometryCollection' && intersection.geometries.length === 0) { - return; - } else { - return { - type: 'Feature', - properties: {}, - geometry: intersection - }; - } -}; - -},{"jsts":78,"turf-featurecollection":72}],78:[function(require,module,exports){ -arguments[4][17][0].apply(exports,arguments) -},{"./lib/jsts":79,"dup":17,"javascript.util":81}],79:[function(require,module,exports){ -arguments[4][18][0].apply(exports,arguments) -},{"dup":18}],80:[function(require,module,exports){ -arguments[4][19][0].apply(exports,arguments) -},{"dup":19}],81:[function(require,module,exports){ -arguments[4][20][0].apply(exports,arguments) -},{"./dist/javascript.util-node.min.js":80,"dup":20}],82:[function(require,module,exports){ -/** - * Copyright (c) 2010, Jason Davies. - * - * All rights reserved. This code is based on Bradley White's Java version, - * which is in turn based on Nicholas Yue's C++ version, which in turn is based - * on Paul D. Bourke's original Fortran version. See below for the respective - * copyright notices. - * - * See http://local.wasp.uwa.edu.au/~pbourke/papers/conrec/ for the original - * paper by Paul D. Bourke. - * - * The vector conversion code is based on http://apptree.net/conrec.htm by - * Graham Cox. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions are met: - * * Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * * Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * * Neither the name of the nor the - * names of its contributors may be used to endorse or promote products - * derived from this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" - * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL BE LIABLE FOR ANY - * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES - * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; - * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND - * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF - * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -/* - * Copyright (c) 1996-1997 Nicholas Yue - * - * This software is copyrighted by Nicholas Yue. This code is based on Paul D. - * Bourke's CONREC.F routine. - * - * The authors hereby grant permission to use, copy, and distribute this - * software and its documentation for any purpose, provided that existing - * copyright notices are retained in all copies and that this notice is - * included verbatim in any distributions. Additionally, the authors grant - * permission to modify this software and its documentation for any purpose, - * provided that such modifications are not distributed without the explicit - * consent of the authors and that existing copyright notices are retained in - * all copies. Some of the algorithms implemented by this software are - * patented, observe all applicable patent law. - * - * IN NO EVENT SHALL THE AUTHORS OR DISTRIBUTORS BE LIABLE TO ANY PARTY FOR - * DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING OUT - * OF THE USE OF THIS SOFTWARE, ITS DOCUMENTATION, OR ANY DERIVATIVES THEREOF, - * EVEN IF THE AUTHORS HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - * - * THE AUTHORS AND DISTRIBUTORS SPECIFICALLY DISCLAIM ANY WARRANTIES, - * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY, - * FITNESS FOR A PARTICULAR PURPOSE, AND NON-INFRINGEMENT. THIS SOFTWARE IS - * PROVIDED ON AN "AS IS" BASIS, AND THE AUTHORS AND DISTRIBUTORS HAVE NO - * OBLIGATION TO PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR - * MODIFICATIONS. - */ - - - module.exports = Conrec; - - var EPSILON = 1e-10; - - function pointsEqual(a, b) { - var x = a.x - b.x, y = a.y - b.y; - return x * x + y * y < EPSILON; - } - - function reverseList(list) { - var pp = list.head; - - while (pp) { - // swap prev/next pointers - var temp = pp.next; - pp.next = pp.prev; - pp.prev = temp; - - // continue through the list - pp = temp; - } - - // swap head/tail pointers - var temp = list.head; - list.head = list.tail; - list.tail = temp; - } - - function ContourBuilder(level) { - this.level = level; - this.s = null; - this.count = 0; - } - ContourBuilder.prototype.remove_seq = function(list) { - // if list is the first item, static ptr s is updated - if (list.prev) { - list.prev.next = list.next; - } else { - this.s = list.next; - } - - if (list.next) { - list.next.prev = list.prev; - } - --this.count; - } - ContourBuilder.prototype.addSegment = function(a, b) { - var ss = this.s; - var ma = null; - var mb = null; - var prependA = false; - var prependB = false; - - while (ss) { - if (ma == null) { - // no match for a yet - if (pointsEqual(a, ss.head.p)) { - ma = ss; - prependA = true; - } else if (pointsEqual(a, ss.tail.p)) { - ma = ss; - } - } - if (mb == null) { - // no match for b yet - if (pointsEqual(b, ss.head.p)) { - mb = ss; - prependB = true; - } else if (pointsEqual(b, ss.tail.p)) { - mb = ss; - } - } - // if we matched both no need to continue searching - if (mb != null && ma != null) { - break; - } else { - ss = ss.next; - } - } - - // c is the case selector based on which of ma and/or mb are set - var c = ((ma != null) ? 1 : 0) | ((mb != null) ? 2 : 0); - - switch(c) { - case 0: // both unmatched, add as new sequence - var aa = {p: a, prev: null}; - var bb = {p: b, next: null}; - aa.next = bb; - bb.prev = aa; - - // create sequence element and push onto head of main list. The order - // of items in this list is unimportant - ma = {head: aa, tail: bb, next: this.s, prev: null, closed: false}; - if (this.s) { - this.s.prev = ma; - } - this.s = ma; - - ++this.count; // not essential - tracks number of unmerged sequences - break; - - case 1: // a matched, b did not - thus b extends sequence ma - var pp = {p: b}; - - if (prependA) { - pp.next = ma.head; - pp.prev = null; - ma.head.prev = pp; - ma.head = pp; - } else { - pp.next = null; - pp.prev = ma.tail; - ma.tail.next = pp; - ma.tail = pp; - } - break; - - case 2: // b matched, a did not - thus a extends sequence mb - var pp = {p: a}; - - if (prependB) { - pp.next = mb.head; - pp.prev = null; - mb.head.prev = pp; - mb.head = pp; - } else { - pp.next = null; - pp.prev = mb.tail; - mb.tail.next = pp; - mb.tail = pp; - } - break; - - case 3: // both matched, can merge sequences - // if the sequences are the same, do nothing, as we are simply closing this path (could set a flag) - - if (ma === mb) { - var pp = {p: ma.tail.p, next: ma.head, prev: null}; - ma.head.prev = pp; - ma.head = pp; - ma.closed = true; - break; - } - - // there are 4 ways the sequence pair can be joined. The current setting of prependA and - // prependB will tell us which type of join is needed. For head/head and tail/tail joins - // one sequence needs to be reversed - switch((prependA ? 1 : 0) | (prependB ? 2 : 0)) { - case 0: // tail-tail - // reverse ma and append to mb - reverseList(ma); - // fall through to head/tail case - case 1: // head-tail - // ma is appended to mb and ma discarded - mb.tail.next = ma.head; - ma.head.prev = mb.tail; - mb.tail = ma.tail; - - //discard ma sequence record - this.remove_seq(ma); - break; - - case 3: // head-head - // reverse ma and append mb to it - reverseList(ma); - // fall through to tail/head case - case 2: // tail-head - // mb is appended to ma and mb is discarded - ma.tail.next = mb.head; - mb.head.prev = ma.tail; - ma.tail = mb.tail; - - //discard mb sequence record - this.remove_seq(mb); - break; - } - } - } - - /** - * Implements CONREC. - * - * @param {function} drawContour function for drawing contour. Defaults to a - * custom "contour builder", which populates the - * contours property. - */ - function Conrec(drawContour) { - if (!drawContour) { - var c = this; - c.contours = {}; - /** - * drawContour - interface for implementing the user supplied method to - * render the countours. - * - * Draws a line between the start and end coordinates. - * - * @param startX - start coordinate for X - * @param startY - start coordinate for Y - * @param endX - end coordinate for X - * @param endY - end coordinate for Y - * @param contourLevel - Contour level for line. - */ - this.drawContour = function(startX, startY, endX, endY, contourLevel, k) { - var cb = c.contours[k]; - if (!cb) { - cb = c.contours[k] = new ContourBuilder(contourLevel); - } - cb.addSegment({x: startX, y: startY}, {x: endX, y: endY}); - } - this.contourList = function() { - var l = []; - var a = c.contours; - for (var k in a) { - var s = a[k].s; - var level = a[k].level; - while (s) { - var h = s.head; - var l2 = []; - l2.level = level; - l2.k = k; - while (h && h.p) { - l2.push(h.p); - h = h.next; - } - l.push(l2); - s = s.next; - } - } - l.sort(function(a, b) { return a.k - b.k }); - return l; - } - } else { - this.drawContour = drawContour; - } - this.h = new Array(5); - this.sh = new Array(5); - this.xh = new Array(5); - this.yh = new Array(5); - } - - /** - * contour is a contouring subroutine for rectangularily spaced data - * - * It emits calls to a line drawing subroutine supplied by the user which - * draws a contour map corresponding to real*4data on a randomly spaced - * rectangular grid. The coordinates emitted are in the same units given in - * the x() and y() arrays. - * - * Any number of contour levels may be specified but they must be in order of - * increasing value. - * - * - * @param {number[][]} d - matrix of data to contour - * @param {number} ilb,iub,jlb,jub - index bounds of data matrix - * - * The following two, one dimensional arrays (x and y) contain - * the horizontal and vertical coordinates of each sample points. - * @param {number[]} x - data matrix column coordinates - * @param {number[]} y - data matrix row coordinates - * @param {number} nc - number of contour levels - * @param {number[]} z - contour levels in increasing order. - */ - Conrec.prototype.contour = function(d, ilb, iub, jlb, jub, x, y, nc, z) { - var h = this.h, sh = this.sh, xh = this.xh, yh = this.yh; - var drawContour = this.drawContour; - this.contours = {}; - - /** private */ - var xsect = function(p1, p2){ - return (h[p2]*xh[p1]-h[p1]*xh[p2])/(h[p2]-h[p1]); - } - - var ysect = function(p1, p2){ - return (h[p2]*yh[p1]-h[p1]*yh[p2])/(h[p2]-h[p1]); - } - var m1; - var m2; - var m3; - var case_value; - var dmin; - var dmax; - var x1 = 0.0; - var x2 = 0.0; - var y1 = 0.0; - var y2 = 0.0; - - // The indexing of im and jm should be noted as it has to start from zero - // unlike the fortran counter part - var im = [0, 1, 1, 0]; - var jm = [0, 0, 1, 1]; - - // Note that castab is arranged differently from the FORTRAN code because - // Fortran and C/C++ arrays are transposed of each other, in this case - // it is more tricky as castab is in 3 dimensions - var castab = [ - [ - [0, 0, 8], [0, 2, 5], [7, 6, 9] - ], - [ - [0, 3, 4], [1, 3, 1], [4, 3, 0] - ], - [ - [9, 6, 7], [5, 2, 0], [8, 0, 0] - ] - ]; - - for (var j=(jub-1);j>=jlb;j--) { - for (var i=ilb;i<=iub-1;i++) { - var temp1, temp2; - temp1 = Math.min(d[i][j],d[i][j+1]); - temp2 = Math.min(d[i+1][j],d[i+1][j+1]); - dmin = Math.min(temp1,temp2); - temp1 = Math.max(d[i][j],d[i][j+1]); - temp2 = Math.max(d[i+1][j],d[i+1][j+1]); - dmax = Math.max(temp1,temp2); - - if (dmax>=z[0]&&dmin<=z[nc-1]) { - for (var k=0;k=dmin&&z[k]<=dmax) { - for (var m=4;m>=0;m--) { - if (m>0) { - // The indexing of im and jm should be noted as it has to - // start from zero - h[m] = d[i+im[m-1]][j+jm[m-1]]-z[k]; - xh[m] = x[i+im[m-1]]; - yh[m] = y[j+jm[m-1]]; - } else { - h[0] = 0.25*(h[1]+h[2]+h[3]+h[4]); - xh[0]=0.5*(x[i]+x[i+1]); - yh[0]=0.5*(y[j]+y[j+1]); - } - if (h[m]>EPSILON) { - sh[m] = 1; - } else if (h[m]<-EPSILON) { - sh[m] = -1; - } else - sh[m] = 0; - } - // - // Note: at this stage the relative heights of the corners and the - // centre are in the h array, and the corresponding coordinates are - // in the xh and yh arrays. The centre of the box is indexed by 0 - // and the 4 corners by 1 to 4 as shown below. - // Each triangle is then indexed by the parameter m, and the 3 - // vertices of each triangle are indexed by parameters m1,m2,and - // m3. - // It is assumed that the centre of the box is always vertex 2 - // though this isimportant only when all 3 vertices lie exactly on - // the same contour level, in which case only the side of the box - // is drawn. - // - // - // vertex 4 +-------------------+ vertex 3 - // | \ / | - // | \ m-3 / | - // | \ / | - // | \ / | - // | m=2 X m=2 | the centre is vertex 0 - // | / \ | - // | / \ | - // | / m=1 \ | - // | / \ | - // vertex 1 +-------------------+ vertex 2 - // - // - // - // Scan each triangle in the box - // - for (m=1;m<=4;m++) { - m1 = m; - m2 = 0; - if (m!=4) { - m3 = m+1; - } else { - m3 = 1; - } - case_value = castab[sh[m1]+1][sh[m2]+1][sh[m3]+1]; - if (case_value!=0) { - switch (case_value) { - case 1: // Line between vertices 1 and 2 - x1=xh[m1]; - y1=yh[m1]; - x2=xh[m2]; - y2=yh[m2]; - break; - case 2: // Line between vertices 2 and 3 - x1=xh[m2]; - y1=yh[m2]; - x2=xh[m3]; - y2=yh[m3]; - break; - case 3: // Line between vertices 3 and 1 - x1=xh[m3]; - y1=yh[m3]; - x2=xh[m1]; - y2=yh[m1]; - break; - case 4: // Line between vertex 1 and side 2-3 - x1=xh[m1]; - y1=yh[m1]; - x2=xsect(m2,m3); - y2=ysect(m2,m3); - break; - case 5: // Line between vertex 2 and side 3-1 - x1=xh[m2]; - y1=yh[m2]; - x2=xsect(m3,m1); - y2=ysect(m3,m1); - break; - case 6: // Line between vertex 3 and side 1-2 - x1=xh[m3]; - y1=yh[m3]; - x2=xsect(m1,m2); - y2=ysect(m1,m2); - break; - case 7: // Line between sides 1-2 and 2-3 - x1=xsect(m1,m2); - y1=ysect(m1,m2); - x2=xsect(m2,m3); - y2=ysect(m2,m3); - break; - case 8: // Line between sides 2-3 and 3-1 - x1=xsect(m2,m3); - y1=ysect(m2,m3); - x2=xsect(m3,m1); - y2=ysect(m3,m1); - break; - case 9: // Line between sides 3-1 and 1-2 - x1=xsect(m3,m1); - y1=ysect(m3,m1); - x2=xsect(m1,m2); - y2=ysect(m1,m2); - break; - default: - break; - } - // Put your processing code here and comment out the printf - //printf("%f %f %f %f %f\n",x1,y1,x2,y2,z[k]); - drawContour(x1,y1,x2,y2,z[k],k); - } - } - } - } - } - } - } - } - -},{}],83:[function(require,module,exports){ -//https://github.com/jasondavies/conrec.js -//http://stackoverflow.com/questions/263305/drawing-a-topographical-map -var tin = require('turf-tin'); -var inside = require('turf-inside'); -var grid = require('turf-grid'); -var extent = require('turf-extent'); -var planepoint = require('turf-planepoint'); -var featurecollection = require('turf-featurecollection'); -var linestring = require('turf-linestring'); -var square = require('turf-square'); -var Conrec = require('./conrec'); - -/** - * Takes a {@link FeatureCollection} of {@link Point} features with z-values and an array of - * value breaks and generates [isolines](http://en.wikipedia.org/wiki/Isoline). - * - * @module turf/isolines - * @category interpolation - * @param {FeatureCollection} points a FeatureCollection of {@link Point} features - * @param {string} z the property name in `points` from which z-values will be pulled - * @param {number} resolution resolution of the underlying grid - * @param {number[]} breaks where to draw contours - * @returns {FeatureCollection} a FeatureCollection of {@link LineString} features representing isolines - * @example - * // create random points with random - * // z-values in their properties - * var points = turf.random('point', 100, { - * bbox: [0, 30, 20, 50] - * }); - * for (var i = 0; i < points.features.length; i++) { - * points.features[i].properties.z = Math.random() * 10; - * } - * var breaks = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10]; - * var isolined = turf.isolines(points, 'z', 15, breaks); - * //=isolined - */ -module.exports = function(points, z, resolution, breaks, done){ - var tinResult = tin(points, z); - var extentBBox = extent(points); - var squareBBox = square(extentBBox); - var gridResult = grid(squareBBox, resolution); - var data = []; - - for (var i = 0; i < gridResult.features.length; i++) { - var pt = gridResult.features[i]; - for (var j = 0; j < tinResult.features.length; j++) { - var triangle = tinResult.features[j]; - if (inside(pt, triangle)) { - pt.properties = {}; - pt.properties[z] = planepoint(pt, triangle); - } - } - } - - var depth = Math.sqrt(gridResult.features.length); - for (var x=0; x 2){ - var polyCoordinates = []; - c.forEach(function(coord){ - polyCoordinates.push([coord.x, coord.y]); - }); - var poly = linestring(polyCoordinates); - poly.properties = {}; - poly.properties[z] = c.level; - - fc.features.push(poly); - } - }); - - return fc; -} - - - - -},{"./conrec":82,"turf-extent":70,"turf-featurecollection":72,"turf-grid":84,"turf-inside":76,"turf-linestring":90,"turf-planepoint":98,"turf-square":115,"turf-tin":118}],84:[function(require,module,exports){ -var point = require('turf-point'); - -/** - * Takes a bounding box and a cell depth and returns a {@link FeatureCollection} of {@link Point} features in a grid. - * - * @module turf/grid - * @category interpolation - * @param {Array} extent extent in [minX, minY, maxX, maxY] order - * @param {Number} depth how many cells to output - * @return {FeatureCollection} grid as FeatureCollection with {@link Point} features - * @example - * var extent = [-70.823364, -33.553984, -70.473175, -33.302986]; - * var depth = 10; - * - * var grid = turf.grid(extent, depth); - * - * //=grid - */ -module.exports = function(extents, depth) { - var xmin = extents[0]; - var ymin = extents[1]; - var xmax = extents[2]; - var ymax = extents[3]; - var interval = (xmax - xmin) / depth; - var coords = []; - var fc = { - type: 'FeatureCollection', - features: [] - }; - - for (var x=0; x<=depth; x++){ - for (var y=0;y<=depth; y++){ - fc.features.push(point([(x * interval) + xmin, (y * interval) + ymin])); - } - } - return fc; -} - -},{"turf-point":102}],85:[function(require,module,exports){ -var ss = require('simple-statistics'); - -/** -* Takes a {@FeatureCollection} of any type and returns an array of the [Jenks Natural breaks](http://en.wikipedia.org/wiki/Jenks_natural_breaks_optimization) -* for a given property -* @module turf/jenks -* @param {FeatureCollection} input a FeatureCollection of any type -* @param {string} field the property in `input` on which to calculate Jenks natural breaks -* @param {number} numberOfBreaks number of classes in which to group the data -* @return {Array} the break number for each class plus the minimum and maximum values -* @example -* var points = { -* "type": "FeatureCollection", -* "features": [ -* { -* "type": "Feature", -* "properties": { -* "population": 200 -* }, -* "geometry": { -* "type": "Point", -* "coordinates": [49.859733, 40.400424] -* } -* }, { -* "type": "Feature", -* "properties": { -* "population": 600 -* }, -* "geometry": { -* "type": "Point", -* "coordinates": [49.83879, 40.401209] -* } -* }, { -* "type": "Feature", -* "properties": { -* "population": 100 -* }, -* "geometry": { -* "type": "Point", -* "coordinates": [49.817848, 40.376889] -* } -* }, { -* "type": "Feature", -* "properties": { -* "population": 200 -* }, -* "geometry": { -* "type": "Point", -* "coordinates": [49.840507, 40.386043] -* } -* }, { -* "type": "Feature", -* "properties": { -* "population": 300 -* }, -* "geometry": { -* "type": "Point", -* "coordinates": [49.854583, 40.37532] -* } -* } -* ] -* }; -* -* var breaks = turf.jenks(points, 'population', 3); -* -* //=breaks -*/ -module.exports = function(fc, field, num){ - var vals = []; - var breaks = []; - - fc.features.forEach(function(feature){ - if(feature.properties[field]!==undefined){ - vals.push(feature.properties[field]); - } - }); - breaks = ss.jenks(vals, num); - - return breaks; -}; - -},{"simple-statistics":86}],86:[function(require,module,exports){ -arguments[4][59][0].apply(exports,arguments) -},{"dup":59}],87:[function(require,module,exports){ -/** - * Takes a {@link Polygon} feature and returns a {@link FeatureCollection} of {@link Point} features at all self-intersections. - * - * @module turf/kinks - * @category misc - * @param {Polygon} polygon a Polygon feature - * @returns {FeatureCollection} a FeatureCollection of {@link Point} features representing self-intersections - * @example - * var poly = { - * "type": "Feature", - * "properties": {}, - * "geometry": { - * "type": "Polygon", - * "coordinates": [[ - * [-12.034835, 8.901183], - * [-12.060413, 8.899826], - * [-12.03638, 8.873199], - * [-12.059383, 8.871418], - * [-12.034835, 8.901183] - * ]] - * } - * }; - * - * var kinks = turf.kinks(poly); - * - * var resultFeatures = kinks.intersections.features.concat(poly); - * var result = { - * "type": "FeatureCollection", - * "features": resultFeatures - * }; - * - * //=result - */ - -var polygon = require('turf-polygon'); -var point = require('turf-point'); -var fc = require('turf-featurecollection'); - -module.exports = function(polyIn) { - var poly; - var results = {intersections: fc([]), fixed: null}; - if (polyIn.type === 'Feature') { - poly = polyIn.geometry; - } else { - poly = polyIn; - } - var intersectionHash = {}; - poly.coordinates.forEach(function(ring1){ - poly.coordinates.forEach(function(ring2){ - for(var i = 0; i < ring1.length-1; i++) { - for(var k = 0; k < ring2.length-1; k++) { - var intersection = lineIntersects(ring1[i][0],ring1[i][1],ring1[i+1][0],ring1[i+1][1], - ring2[k][0],ring2[k][1],ring2[k+1][0],ring2[k+1][1]); - if(intersection) { - results.intersections.features.push(point([intersection[0], intersection[1]])); - } - } - } - }) - }) - return results; -} - - -// modified from http://jsfiddle.net/justin_c_rounds/Gd2S2/light/ -function lineIntersects(line1StartX, line1StartY, line1EndX, line1EndY, line2StartX, line2StartY, line2EndX, line2EndY) { - // if the lines intersect, the result contains the x and y of the intersection (treating the lines as infinite) and booleans for whether line segment 1 or line segment 2 contain the point - var denominator, a, b, numerator1, numerator2, result = { - x: null, - y: null, - onLine1: false, - onLine2: false - }; - denominator = ((line2EndY - line2StartY) * (line1EndX - line1StartX)) - ((line2EndX - line2StartX) * (line1EndY - line1StartY)); - if (denominator == 0) { - if(result.x != null && result.y != null) { - return result; - } else { - return false; - } - } - a = line1StartY - line2StartY; - b = line1StartX - line2StartX; - numerator1 = ((line2EndX - line2StartX) * a) - ((line2EndY - line2StartY) * b); - numerator2 = ((line1EndX - line1StartX) * a) - ((line1EndY - line1StartY) * b); - a = numerator1 / denominator; - b = numerator2 / denominator; - - // if we cast these lines infinitely in both directions, they intersect here: - result.x = line1StartX + (a * (line1EndX - line1StartX)); - result.y = line1StartY + (a * (line1EndY - line1StartY)); - - // if line1 is a segment and line2 is infinite, they intersect if: - if (a > 0 && a < 1) { - result.onLine1 = true; - } - // if line2 is a segment and line1 is infinite, they intersect if: - if (b > 0 && b < 1) { - result.onLine2 = true; - } - // if line1 and line2 are segments, they intersect if both of the above are true - if(result.onLine1 && result.onLine2){ - return [result.x, result.y]; - } - else { - return false; - } -} - -},{"turf-featurecollection":72,"turf-point":102,"turf-polygon":103}],88:[function(require,module,exports){ -var distance = require('turf-distance'); -var point = require('turf-point'); - -/** - * Takes a {@link LineString} feature and measures its length in the specified units. - * - * @module turf/line-distance - * @category measurement - * @param {LineString} Line to measure - * @param {String} [units=miles] can be degrees, radians, miles, or kilometers - * @return {Number} length of the LineString - * @example - * var line = { - * "type": "Feature", - * "properties": {}, - * "geometry": { - * "type": "LineString", - * "coordinates": [ - * [-77.031669, 38.878605], - * [-77.029609, 38.881946], - * [-77.020339, 38.884084], - * [-77.025661, 38.885821], - * [-77.021884, 38.889563], - * [-77.019824, 38.892368] - * ] - * } - * }; - * - * var length = turf.lineDistance(line, 'miles'); - * - * //=line - * - * //=length - */ - -module.exports = function (line, units) { - var coords; - if(line.type === 'Feature') coords = line.geometry.coordinates; - else if(line.type === 'LineString') coords = line.geometry.coordinates; - else throw new Error('input must be a LineString Feature or Geometry'); - - var travelled = 0; - for(var i = 0; i < coords.length - 1; i++) { - travelled += distance(point(coords[i]), point(coords[i+1]), units); - } - return travelled; -} - -},{"turf-distance":60,"turf-point":102}],89:[function(require,module,exports){ -var distance = require('turf-distance'); -var point = require('turf-point'); -var linestring = require('turf-linestring'); -var bearing = require('turf-bearing'); -var destination = require('turf-destination'); - -/** - * Slices a LineString at start and stop Points - * - * @module turf/line-slice - * - * @param {Point} Point to start the slice - * @param {Point} Point to stop the slice - * @param {LineString} Line to slice - * @return {LineString} Sliced LineString - * @example - * var line = { - * "type": "Feature", - * "properties": {}, - * "geometry": { - * "type": "LineString", - * "coordinates": [ - * [-77.031669, 38.878605], - * [-77.029609, 38.881946], - * [-77.020339, 38.884084], - * [-77.025661, 38.885821], - * [-77.021884, 38.889563], - * [-77.019824, 38.892368] - * ] - * } - * }; - * var start = { - * "type": "Feature", - * "properties": {}, - * "geometry": { - * "type": "Point", - * "coordinates": [-77.029609, 38.881946] - * } - * }; - * var stop = { - * "type": "Feature", - * "properties": {}, - * "geometry": { - * "type": "Point", - * "coordinates": [-77.021884, 38.889563] - * } - * }; - * - * var sliced = turf.lineSlice(start, stop, line); - * - * //=line - * - * //=sliced - */ - -module.exports = function (startPt, stopPt, line) { - var coords; - if(line.type === 'Feature') coords = line.geometry.coordinates; - else if(line.type === 'LineString') coords = line.geometry.coordinates; - else throw new Error('input must be a LineString Feature or Geometry'); - - var startVertex = pointOnLine(startPt, coords); - var stopVertex = pointOnLine(stopPt, coords); - var ends; - if(startVertex.properties.index <= stopVertex.properties.index) { - ends = [startVertex, stopVertex]; - } else { - ends = [stopVertex, startVertex]; - } - var clipLine = linestring([ends[0].geometry.coordinates], {}); - for(var i = ends[0].properties.index+1; i < ends[1].properties.index+1; i++) { - clipLine.geometry.coordinates.push(coords[i]); - } - clipLine.geometry.coordinates.push(ends[1].geometry.coordinates); - return clipLine; -} - -function pointOnLine (pt, coords) { - var units = 'miles' - var closestPt = point([Infinity, Infinity], {dist: Infinity}); - for(var i = 0; i < coords.length - 1; i++) { - var start = point(coords[i]) - var stop = point(coords[i+1]) - //start - start.properties.dist = distance(pt, start, units); - //stop - stop.properties.dist = distance(pt, stop, units); - //perpendicular - var direction = bearing(start, stop) - var perpendicularPt = destination(pt, 1000 , direction + 90, units) // 1000 = gross - var intersect = lineIntersects( - pt.geometry.coordinates[0], - pt.geometry.coordinates[1], - perpendicularPt.geometry.coordinates[0], - perpendicularPt.geometry.coordinates[1], - start.geometry.coordinates[0], - start.geometry.coordinates[1], - stop.geometry.coordinates[0], - stop.geometry.coordinates[1] - ); - if(!intersect) { - perpendicularPt = destination(pt, 1000 , direction - 90, units) // 1000 = gross - intersect = lineIntersects( - pt.geometry.coordinates[0], - pt.geometry.coordinates[1], - perpendicularPt.geometry.coordinates[0], - perpendicularPt.geometry.coordinates[1], - start.geometry.coordinates[0], - start.geometry.coordinates[1], - stop.geometry.coordinates[0], - stop.geometry.coordinates[1] - ); - } - perpendicularPt.properties.dist = Infinity; - var intersectPt; - if(intersect) { - var intersectPt = point(intersect); - intersectPt.properties.dist = distance(pt, intersectPt, units); - } - - if(start.properties.dist < closestPt.properties.dist) { - closestPt = start; - closestPt.properties.index = i; - } - if(stop.properties.dist < closestPt.properties.dist) { - closestPt = stop; - closestPt.properties.index = i; - } - if(intersectPt && intersectPt.properties.dist < closestPt.properties.dist){ - closestPt = intersectPt; - closestPt.properties.index = i; - } - } - - return closestPt; -} - -// modified from http://jsfiddle.net/justin_c_rounds/Gd2S2/light/ -function lineIntersects(line1StartX, line1StartY, line1EndX, line1EndY, line2StartX, line2StartY, line2EndX, line2EndY) { - // if the lines intersect, the result contains the x and y of the intersection (treating the lines as infinite) and booleans for whether line segment 1 or line segment 2 contain the point - var denominator, a, b, numerator1, numerator2, result = { - x: null, - y: null, - onLine1: false, - onLine2: false - }; - denominator = ((line2EndY - line2StartY) * (line1EndX - line1StartX)) - ((line2EndX - line2StartX) * (line1EndY - line1StartY)); - if (denominator == 0) { - if(result.x != null && result.y != null) { - return result; - } else { - return false; - } - } - a = line1StartY - line2StartY; - b = line1StartX - line2StartX; - numerator1 = ((line2EndX - line2StartX) * a) - ((line2EndY - line2StartY) * b); - numerator2 = ((line1EndX - line1StartX) * a) - ((line1EndY - line1StartY) * b); - a = numerator1 / denominator; - b = numerator2 / denominator; - - // if we cast these lines infinitely in both directions, they intersect here: - result.x = line1StartX + (a * (line1EndX - line1StartX)); - result.y = line1StartY + (a * (line1EndY - line1StartY)); - - // if line1 is a segment and line2 is infinite, they intersect if: - if (a > 0 && a < 1) { - result.onLine1 = true; - } - // if line2 is a segment and line1 is infinite, they intersect if: - if (b > 0 && b < 1) { - result.onLine2 = true; - } - // if line1 and line2 are segments, they intersect if both of the above are true - if(result.onLine1 && result.onLine2){ - return [result.x, result.y]; - } - else { - return false; - } -} - -},{"turf-bearing":13,"turf-destination":57,"turf-distance":60,"turf-linestring":90,"turf-point":102}],90:[function(require,module,exports){ -/** - * Creates a {@link LineString} {@link Feature} based on a - * coordinate array. Properties can be added optionally. - * - * @module turf/linestring - * @category helper - * @param {Array>} coordinates an array of Positions - * @param {Object} properties an Object of key-value pairs to add as properties - * @return {LineString} a LineString feature - * @throws {Error} if no coordinates are passed - * @example - * var linestring1 = turf.linestring([ - * [-21.964416, 64.148203], - * [-21.956176, 64.141316], - * [-21.93901, 64.135924], - * [-21.927337, 64.136673] - * ]); - * var linestring2 = turf.linestring([ - * [-21.929054, 64.127985], - * [-21.912918, 64.134726], - * [-21.916007, 64.141016], - * [-21.930084, 64.14446] - * ], {name: 'line 1', distance: 145}); - * - * //=linestring1 - * - * //=linestring2 - */ -module.exports = function(coordinates, properties){ - if (!coordinates) { - throw new Error('No coordinates passed'); - } - return { - "type": "Feature", - "geometry": { - "type": "LineString", - "coordinates": coordinates - }, - "properties": properties || {} - }; -}; - -},{}],91:[function(require,module,exports){ -var inside = require('turf-inside'); - -/** - * Calculates the maximum value of a field for a set of {@link Point} features within a set of {@link Polygon} features. - * - * @module turf/max - * @category aggregation - * @param {FeatureCollection} polygons a FeatureCollection of {@link Polygon} features - * @param {FeatureCollection} points a FeatureCollection of {@link Point} features - * @param {string} inField the field in input data to analyze - * @param {string} outField the field in which to store results - * @return {FeatureCollection} a FeatureCollection of {@link Polygon} features - * with properties listed as `outField` values - * @example - * var polygons = { - * "type": "FeatureCollection", - * "features": [ - * { - * "type": "Feature", - * "properties": {}, - * "geometry": { - * "type": "Polygon", - * "coordinates": [[ - * [101.551437, 3.150114], - * [101.551437, 3.250208], - * [101.742324, 3.250208], - * [101.742324, 3.150114], - * [101.551437, 3.150114] - * ]] - * } - * }, { - * "type": "Feature", - * "properties": {}, - * "geometry": { - * "type": "Polygon", - * "coordinates": [[ - * [101.659927, 3.011612], - * [101.659927, 3.143944], - * [101.913986, 3.143944], - * [101.913986, 3.011612], - * [101.659927, 3.011612] - * ]] - * } - * } - * ] - * }; - * var points = { - * "type": "FeatureCollection", - * "features": [ - * { - * "type": "Feature", - * "properties": { - * "population": 200 - * }, - * "geometry": { - * "type": "Point", - * "coordinates": [101.56105, 3.213874] - * } - * }, { - * "type": "Feature", - * "properties": { - * "population": 600 - * }, - * "geometry": { - * "type": "Point", - * "coordinates": [101.709365, 3.211817] - * } - * }, { - * "type": "Feature", - * "properties": { - * "population": 100 - * }, - * "geometry": { - * "type": "Point", - * "coordinates": [101.645507, 3.169311] - * } - * }, { - * "type": "Feature", - * "properties": { - * "population": 200 - * }, - * "geometry": { - * "type": "Point", - * "coordinates": [101.708679, 3.071266] - * } - * }, { - * "type": "Feature", - * "properties": { - * "population": 300 - * }, - * "geometry": { - * "type": "Point", - * "coordinates": [101.826782, 3.081551] - * } - * } - * ] - * }; - * - * var aggregated = turf.max( - * polygons, points, 'population', 'max'); - * - * var resultFeatures = points.features.concat( - * aggregated.features); - * var result = { - * "type": "FeatureCollection", - * "features": resultFeatures - * }; - * - * //=result - */ -module.exports = function(polyFC, ptFC, inField, outField){ - polyFC.features.forEach(function(poly){ - if(!poly.properties){ - poly.properties = {}; - } - var values = []; - ptFC.features.forEach(function(pt){ - if (inside(pt, poly)) { - values.push(pt.properties[inField]); - } - }); - poly.properties[outField] = max(values); - }); - - return polyFC; -} - -function max(x) { - var value; - for (var i = 0; i < x.length; i++) { - // On the first iteration of this loop, max is - // undefined and is thus made the maximum element in the array - if (x[i] > value || value === undefined) value = x[i]; - } - return value; -} - -},{"turf-inside":76}],92:[function(require,module,exports){ -var inside = require('turf-inside'); - -/** - * Calculates the median value of a field for a set of {@link Point} features within a set of {@link Polygon} features. - * - * @module turf/median - * @category aggregation - * @param {FeatureCollection} polygons a FeatureCollection of {@link Polygon} features - * @param {FeatureCollection} points a FeatureCollection of {@link Point} features - * @param {string} inField the field in input data to analyze - * @param {string} outField the field in which to store results - * @return {FeatureCollection} a FeatureCollection of {@link Polygon} features - * with properties listed as `outField` values - * @example - * var polygons = { - * "type": "FeatureCollection", - * "features": [ - * { - * "type": "Feature", - * "properties": {}, - * "geometry": { - * "type": "Polygon", - * "coordinates": [[ - * [18.400039, -33.970697], - * [18.400039, -33.818518], - * [18.665771, -33.818518], - * [18.665771, -33.970697], - * [18.400039, -33.970697] - * ]] - * } - * }, { - * "type": "Feature", - * "properties": {}, - * "geometry": { - * "type": "Polygon", - * "coordinates": [[ - * [18.538742, -34.050383], - * [18.538742, -33.98721], - * [18.703536, -33.98721], - * [18.703536, -34.050383], - * [18.538742, -34.050383] - * ]] - * } - * } - * ] - * }; - * var points = { - * "type": "FeatureCollection", - * "features": [ - * { - * "type": "Feature", - * "properties": { - * "population": 200 - * }, - * "geometry": { - * "type": "Point", - * "coordinates": [18.514022, -33.860152] - * } - * }, { - * "type": "Feature", - * "properties": { - * "population": 600 - * }, - * "geometry": { - * "type": "Point", - * "coordinates": [18.48999, -33.926269] - * } - * }, { - * "type": "Feature", - * "properties": { - * "population": 100 - * }, - * "geometry": { - * "type": "Point", - * "coordinates": [18.583374, -33.905755] - * } - * }, { - * "type": "Feature", - * "properties": { - * "population": 200 - * }, - * "geometry": { - * "type": "Point", - * "coordinates": [18.591613, -34.024778] - * } - * }, { - * "type": "Feature", - * "properties": { - * "population": 300 - * }, - * "geometry": { - * "type": "Point", - * "coordinates": [18.653411, -34.017949] - * } - * } - * ] - * }; - * - * var medians = turf.median( - * polygons, points, 'population', 'median'); - * - * var resultFeatures = points.features.concat( - * medians.features); - * var result = { - * "type": "FeatureCollection", - * "features": resultFeatures - * }; - * - * //=result - */ -module.exports = function(polyFC, ptFC, inField, outField){ - polyFC.features.forEach(function(poly){ - if(!poly.properties){ - poly.properties = {}; - } - var values = []; - ptFC.features.forEach(function(pt){ - if (inside(pt, poly)) { - values.push(pt.properties[inField]); - } - }); - poly.properties[outField] = median(values); - }); - - return polyFC; -}; - -function median(x) { - // The median of an empty list is null - if (x.length === 0) return null; - - // Sorting the array makes it easy to find the center, but - // use `.slice()` to ensure the original array `x` is not modified - var sorted = x.slice().sort(function (a, b) { return a - b; }); - - // If the length of the list is odd, it's the central number - if (sorted.length % 2 === 1) { - return sorted[(sorted.length - 1) / 2]; - // Otherwise, the median is the average of the two numbers - // at the center of the list - } else { - var a = sorted[(sorted.length / 2) - 1]; - var b = sorted[(sorted.length / 2)]; - return (a + b) / 2; - } -} - -},{"turf-inside":76}],93:[function(require,module,exports){ -var clone = require('clone'); -var union = require('turf-union'); - -/** - * Takes a {@link FeatureCollection} of {@link Polygon} features and returns a single merged - * polygon feature. If the input Polygon features are not contiguous, this function returns a {@link MultiPolygon} feature. - * @module turf/merge - * @category transformation - * @param {FeatureCollection} fc a FeatureCollection of {@link Polygon} features - * @return {Feature} a {@link Polygon} or {@link MultiPolygon} feature - * @example - * var polygons = { - * "type": "FeatureCollection", - * "features": [ - * { - * "type": "Feature", - * "properties": { - * "fill": "#0f0" - * }, - * "geometry": { - * "type": "Polygon", - * "coordinates": [[ - * [9.994812, 53.549487], - * [10.046997, 53.598209], - * [10.117721, 53.531737], - * [9.994812, 53.549487] - * ]] - * } - * }, { - * "type": "Feature", - * "properties": { - * "fill": "#00f" - * }, - * "geometry": { - * "type": "Polygon", - * "coordinates": [[ - * [10.000991, 53.50418], - * [10.03807, 53.562539], - * [9.926834, 53.551731], - * [10.000991, 53.50418] - * ]] - * } - * } - * ] - * }; - * - * var merged = turf.merge(polygons); - * - * //=polygons - * - * //=merged - */ -module.exports = function(polygons, done){ - - var merged = clone(polygons.features[0]), - features = polygons.features; - - for (var i = 0, len = features.length; i < len; i++) { - var poly = features[i]; - - if(poly.geometry){ - merged = union(merged, poly); - } - } - - return merged; -}; - -},{"clone":94,"turf-union":120}],94:[function(require,module,exports){ -(function (Buffer){ -'use strict'; - -function objectToString(o) { - return Object.prototype.toString.call(o); -} - -// shim for Node's 'util' package -// DO NOT REMOVE THIS! It is required for compatibility with EnderJS (http://enderjs.com/). -var util = { - isArray: function (ar) { - return Array.isArray(ar) || (typeof ar === 'object' && objectToString(ar) === '[object Array]'); - }, - isDate: function (d) { - return typeof d === 'object' && objectToString(d) === '[object Date]'; - }, - isRegExp: function (re) { - return typeof re === 'object' && objectToString(re) === '[object RegExp]'; - }, - getRegExpFlags: function (re) { - var flags = ''; - re.global && (flags += 'g'); - re.ignoreCase && (flags += 'i'); - re.multiline && (flags += 'm'); - return flags; - } -}; - - -if (typeof module === 'object') - module.exports = clone; - -/** - * Clones (copies) an Object using deep copying. - * - * This function supports circular references by default, but if you are certain - * there are no circular references in your object, you can save some CPU time - * by calling clone(obj, false). - * - * Caution: if `circular` is false and `parent` contains circular references, - * your program may enter an infinite loop and crash. - * - * @param `parent` - the object to be cloned - * @param `circular` - set to true if the object to be cloned may contain - * circular references. (optional - true by default) - * @param `depth` - set to a number if the object is only to be cloned to - * a particular depth. (optional - defaults to Infinity) - * @param `prototype` - sets the prototype to be used when cloning an object. - * (optional - defaults to parent prototype). -*/ - -function clone(parent, circular, depth, prototype) { - // maintain two arrays for circular references, where corresponding parents - // and children have the same index - var allParents = []; - var allChildren = []; - - var useBuffer = typeof Buffer != 'undefined'; - - if (typeof circular == 'undefined') - circular = true; - - if (typeof depth == 'undefined') - depth = Infinity; - - // recurse this function so we don't reset allParents and allChildren - function _clone(parent, depth) { - // cloning null always returns null - if (parent === null) - return null; - - if (depth == 0) - return parent; - - var child; - var proto; - if (typeof parent != 'object') { - return parent; - } - - if (util.isArray(parent)) { - child = []; - } else if (util.isRegExp(parent)) { - child = new RegExp(parent.source, util.getRegExpFlags(parent)); - if (parent.lastIndex) child.lastIndex = parent.lastIndex; - } else if (util.isDate(parent)) { - child = new Date(parent.getTime()); - } else if (useBuffer && Buffer.isBuffer(parent)) { - child = new Buffer(parent.length); - parent.copy(child); - return child; - } else { - if (typeof prototype == 'undefined') { - proto = Object.getPrototypeOf(parent); - child = Object.create(proto); - } - else { - child = Object.create(prototype); - proto = prototype; - } - } - - if (circular) { - var index = allParents.indexOf(parent); - - if (index != -1) { - return allChildren[index]; - } - allParents.push(parent); - allChildren.push(child); - } - - for (var i in parent) { - var attrs; - if (proto) { - attrs = Object.getOwnPropertyDescriptor(proto, i); - } - - if (attrs && attrs.set == null) { - continue; - } - child[i] = _clone(parent[i], depth - 1); - } - - return child; - } - - return _clone(parent, depth); -} - -/** - * Simple flat clone using prototype, accepts only objects, usefull for property - * override on FLAT configuration object (no nested props). - * - * USE WITH CAUTION! This may not behave as you wish if you do not know how this - * works. - */ -clone.clonePrototype = function(parent) { - if (parent === null) - return null; - - var c = function () {}; - c.prototype = parent; - return new c(); -}; - -}).call(this,require("buffer").Buffer) -},{"buffer":2}],95:[function(require,module,exports){ -// http://cs.selu.edu/~rbyrd/math/midpoint/ -// ((x1+x2)/2), ((y1+y2)/2) -var point = require('turf-point'); - -/** - * Takes two {@link Point} features and returns a Point midway between the two. - * - * @module turf/midpoint - * @category measurement - * @param {Point} pt1 first point - * @param {Point} pt2 second point - * @return {Point} a point between the two - * @example - * var pt1 = { - * "type": "Feature", - * "properties": {}, - * "geometry": { - * "type": "Point", - * "coordinates": [144.834823, -37.771257] - * } - * }; - * var pt2 = { - * "type": "Feature", - * "properties": {}, - * "geometry": { - * "type": "Point", - * "coordinates": [145.14244, -37.830937] - * } - * }; - * - * var midpointed = turf.midpoint(pt1, pt2); - * midpointed.properties['marker-color'] = '#f00'; - * - * - * var result = { - * "type": "FeatureCollection", - * "features": [pt1, pt2, midpointed] - * }; - * - * //=result - */ -module.exports = function(point1, point2) { - if (point1 === null || point2 === null){ - throw new Error('Less than two points passed.'); - } - - var x1 = point1.geometry.coordinates[0]; - var x2 = point2.geometry.coordinates[0]; - var y1 = point1.geometry.coordinates[1]; - var y2 = point2.geometry.coordinates[1]; - - var x3 = x1 + x2; - var midX = x3/2; - var y3 = y1 + y2; - var midY = y3/2; - - return point([midX, midY]); -}; - -},{"turf-point":102}],96:[function(require,module,exports){ -var inside = require('turf-inside'); - -/** -* Calculates the minimum value of a field for {@link Point} features within a set of {@link Polygon} features. -* -* @module turf/min -* @category aggregation -* @param {FeatureCollection} polygons a FeatureCollection of {@link Polygon} features -* @param {FeatureCollection} points a FeatureCollection of {@link Point} features -* @param {string} inField the field in input data to analyze -* @param {string} outField the field in which to store results -* @return {FeatureCollection} a FeatureCollection of {@link Polygon} features -* with properties listed as `outField` values -* @example -* var polygons = { -* "type": "FeatureCollection", -* "features": [ -* { -* "type": "Feature", -* "properties": {}, -* "geometry": { -* "type": "Polygon", -* "coordinates": [[ -* [72.809658, 18.961818], -* [72.809658, 18.974805], -* [72.827167, 18.974805], -* [72.827167, 18.961818], -* [72.809658, 18.961818] -* ]] -* } -* }, { -* "type": "Feature", -* "properties": {}, -* "geometry": { -* "type": "Polygon", -* "coordinates": [[ -* [72.820987, 18.947043], -* [72.820987, 18.95922], -* [72.841243, 18.95922], -* [72.841243, 18.947043], -* [72.820987, 18.947043] -* ]] -* } -* } -* ] -* }; -* var points = { -* "type": "FeatureCollection", -* "features": [ -* { -* "type": "Feature", -* "properties": { -* "population": 200 -* }, -* "geometry": { -* "type": "Point", -* "coordinates": [72.814464, 18.971396] -* } -* }, { -* "type": "Feature", -* "properties": { -* "population": 600 -* }, -* "geometry": { -* "type": "Point", -* "coordinates": [72.820043, 18.969772] -* } -* }, { -* "type": "Feature", -* "properties": { -* "population": 100 -* }, -* "geometry": { -* "type": "Point", -* "coordinates": [72.817296, 18.964253] -* } -* }, { -* "type": "Feature", -* "properties": { -* "population": 200 -* }, -* "geometry": { -* "type": "Point", -* "coordinates": [72.83575, 18.954837] -* } -* }, { -* "type": "Feature", -* "properties": { -* "population": 300 -* }, -* "geometry": { -* "type": "Point", -* "coordinates": [72.828197, 18.95094] -* } -* } -* ] -* }; -* -* var minimums = turf.min( -* polygons, points, 'population', 'min'); -* -* var resultFeatures = points.features.concat( -* minimums.features); -* var result = { -* "type": "FeatureCollection", -* "features": resultFeatures -* }; -* -* //=result -*/ -module.exports = function(polyFC, ptFC, inField, outField){ - polyFC.features.forEach(function(poly){ - if(!poly.properties){ - poly.properties = {}; - } - var values = []; - ptFC.features.forEach(function(pt){ - if (inside(pt, poly)) { - values.push(pt.properties[inField]); - } - }); - poly.properties[outField] = min(values); - }); - - return polyFC; -}; - -function min(x) { - var value; - for (var i = 0; i < x.length; i++) { - // On the first iteration of this loop, min is - // undefined and is thus made the minimum element in the array - if (x[i] < value || value === undefined) value = x[i]; - } - return value; -} - -},{"turf-inside":76}],97:[function(require,module,exports){ -var distance = require('turf-distance'); - -/** - * Takes a {@link Point} feature and a {@link FeatureCollection} of Point features and returns the Point feature from the FeatureCollection closest to the input point. - * - * @module turf/nearest - * @category classification - * @param {Point} point the reference point - * @param {FeatureCollection} against a FeatureCollection of Point features - * @return {Feature} the closest Point feature in `against` to `point` - * @example - * var point = { - * "type": "Feature", - * "properties": { - * "marker-color": "#0f0" - * }, - * "geometry": { - * "type": "Point", - * "coordinates": [28.965797, 41.010086] - * } - * }; - * var against = { - * "type": "FeatureCollection", - * "features": [ - * { - * "type": "Feature", - * "properties": {}, - * "geometry": { - * "type": "Point", - * "coordinates": [28.973865, 41.011122] - * } - * }, { - * "type": "Feature", - * "properties": {}, - * "geometry": { - * "type": "Point", - * "coordinates": [28.948459, 41.024204] - * } - * }, { - * "type": "Feature", - * "properties": {}, - * "geometry": { - * "type": "Point", - * "coordinates": [28.938674, 41.013324] - * } - * } - * ] - * }; - * - * var nearest = turf.nearest(point, against); - * nearest.properties['marker-color'] = '#f00'; - * - * var resultFeatures = against.features.concat(point); - * var result = { - * "type": "FeatureCollection", - * "features": resultFeatures - * }; - * - * //=result - */ -module.exports = function(targetPoint, points){ - var nearestPoint; - var count = 0; - var dist = Infinity; - points.features.forEach(function(pt){ - if(!nearestPoint){ - nearestPoint = pt; - var dist = distance(targetPoint, pt, 'miles'); - nearestPoint.properties.distance = dist; - } - else{ - var dist = distance(targetPoint, pt, 'miles'); - if(dist < nearestPoint.properties.distance){ - nearestPoint = pt; - nearestPoint.properties.distance = dist; - } - } - }); - delete nearestPoint.properties.distance; - return nearestPoint; -} - -},{"turf-distance":60}],98:[function(require,module,exports){ -/** - * Takes a triangular plane as a {@link Polygon} feature - * and a {@link Point} feature within that triangle and returns the z-value - * at that point. The Polygon needs to have properties `a`, `b`, and `c` - * that define the values at its three corners. - * - * @module turf/planepoint - * @category interpolation - * @param {Point} interpolatedPoint the Point for which a z-value will be calculated - * @param {Polygon} triangle a Polygon feature with three vertices - * @return {number} the z-value for `interpolatedPoint` - * @example - * var point = { - * "type": "Feature", - * "properties": {}, - * "geometry": { - * "type": "Point", - * "coordinates": [-75.3221, 39.529] - * } - * }; - * var point = turf.point([-75.3221, 39.529]); - * // triangle is a polygon with "a", "b", - * // and "c" values representing - * // the values of the coordinates in order. - * var triangle = { - * "type": "Feature", - * "properties": { - * "a": 11, - * "b": 122, - * "c": 44 - * }, - * "geometry": { - * "type": "Polygon", - * "coordinates": [[ - * [-75.1221, 39.57], - * [-75.58, 39.18], - * [-75.97, 39.86], - * [-75.1221, 39.57] - * ]] - * } - * }; - * - * var features = { - * "type": "FeatureCollection", - * "features": [triangle, point] - * }; - * - * var zValue = turf.planepoint(point, triangle); - * - * //=features - * - * //=zValue - */ -module.exports = function(point, triangle){ - var x = point.geometry.coordinates[0], - y = point.geometry.coordinates[1], - x1 = triangle.geometry.coordinates[0][0][0], - y1 = triangle.geometry.coordinates[0][0][1], - z1 = triangle.properties.a, - x2 = triangle.geometry.coordinates[0][1][0], - y2 = triangle.geometry.coordinates[0][1][1], - z2 = triangle.properties.b, - x3 = triangle.geometry.coordinates[0][2][0], - y3 = triangle.geometry.coordinates[0][2][1], - z3 = triangle.properties.c; - - var z = (z3 * (x-x1) * (y-y2) + z1 * (x-x2) * (y-y3) + z2 * (x-x3) * (y-y1) - - z2 * (x-x1) * (y-y3) - z3 * (x-x2) * (y-y1) - z1 * (x-x3) * (y-y2)) / - ((x-x1) * (y-y2) + (x-x2) * (y-y3) +(x-x3) * (y-y1) - - (x-x1) * (y-y3) - (x-x2) * (y-y1) - (x-x3) * (y-y2)); - - return z; -}; - -},{}],99:[function(require,module,exports){ -var point = require('turf-point'); -var featurecollection = require('turf-featurecollection'); -var distance = require('turf-distance'); -/** - * Takes a bounding box and a cell depth and returns a {@link FeatureCollection} of {@link Point} features in a grid. - * - * @module turf/point-grid - * @category interpolation - * @param {Array} extent extent in [minX, minY, maxX, maxY] order - * @param {Number} depth how many cells to output - * @return {FeatureCollection} grid as FeatureCollection with {@link Point} features - * @example - * var extent = [-70.823364, -33.553984, -70.473175, -33.302986]; - * var depth = 10; - * - * var grid = turf.pointGrid(extent, depth); - * - * //=grid - */ -module.exports = function (bbox, cell, units) { - var fc = featurecollection([]); - var xFraction = cell / (distance(point([bbox[0], bbox[1]]), point([bbox[2], bbox[1]]), units)); - var cellWidth = xFraction * (bbox[2] - bbox[0]); - var yFraction = cell / (distance(point([bbox[0], bbox[1]]), point([bbox[0], bbox[3]]), units)); - var cellHeight = yFraction * (bbox[3] - bbox[1]); - - var currentX = bbox[0]; - while (currentX <= bbox[2]) { - var currentY = bbox[1]; - while (currentY <= bbox[3]) { - fc.features.push(point([currentX, currentY])); - - currentY += cellHeight; - } - currentX += cellWidth; - } - - return fc; -} -},{"turf-distance":60,"turf-featurecollection":72,"turf-point":102}],100:[function(require,module,exports){ -var distance = require('turf-distance'); -var point = require('turf-point'); -var linestring = require('turf-linestring'); -var bearing = require('turf-bearing'); -var destination = require('turf-destination'); - -/** - * Takes a Point and a LineString and calculates the closest Point on the LineString - * - * @module turf/point-on-line - * - * @param {LineString} Line to snap to - * @param {Point} Point to snap from - * @return {Point} Closest Point on the Line - * @example - * var line = { - * "type": "Feature", - * "properties": {}, - * "geometry": { - * "type": "LineString", - * "coordinates": [ - * [-77.031669, 38.878605], - * [-77.029609, 38.881946], - * [-77.020339, 38.884084], - * [-77.025661, 38.885821], - * [-77.021884, 38.889563], - * [-77.019824, 38.892368] - * ] - * } - * }; - * var pt = { - * "type": "Feature", - * "properties": {}, - * "geometry": { - * "type": "Point", - * "coordinates": [-77.037076, 38.884017] - * } - * }; - * - * var snapped = turf.pointOnLine(line, pt); - * snapped.properties['marker-color'] = '#00f' - * - * var result = { - * "type": "FeatureCollection", - * "features": [line, pt, snapped] - * }; - * - * //=result - */ - -module.exports = function (line, pt) { - var coords; - if(line.type === 'Feature') coords = line.geometry.coordinates; - else if(line.type === 'LineString') coords = line.geometry.coordinates; - else throw new Error('input must be a LineString Feature or Geometry'); - - return pointOnLine(pt, coords); -} - -function pointOnLine (pt, coords) { - var units = 'miles' - var closestPt = point([Infinity, Infinity], {dist: Infinity}); - for(var i = 0; i < coords.length - 1; i++) { - var start = point(coords[i]) - var stop = point(coords[i+1]) - //start - start.properties.dist = distance(pt, start, units); - //stop - stop.properties.dist = distance(pt, stop, units); - //perpendicular - var direction = bearing(start, stop) - var perpendicularPt = destination(pt, 1000 , direction + 90, units) // 1000 = gross - var intersect = lineIntersects( - pt.geometry.coordinates[0], - pt.geometry.coordinates[1], - perpendicularPt.geometry.coordinates[0], - perpendicularPt.geometry.coordinates[1], - start.geometry.coordinates[0], - start.geometry.coordinates[1], - stop.geometry.coordinates[0], - stop.geometry.coordinates[1] - ); - if(!intersect) { - perpendicularPt = destination(pt, 1000 , direction - 90, units) // 1000 = gross - intersect = lineIntersects( - pt.geometry.coordinates[0], - pt.geometry.coordinates[1], - perpendicularPt.geometry.coordinates[0], - perpendicularPt.geometry.coordinates[1], - start.geometry.coordinates[0], - start.geometry.coordinates[1], - stop.geometry.coordinates[0], - stop.geometry.coordinates[1] - ); - } - perpendicularPt.properties.dist = Infinity; - var intersectPt; - if(intersect) { - var intersectPt = point(intersect); - intersectPt.properties.dist = distance(pt, intersectPt, units); - } - - if(start.properties.dist < closestPt.properties.dist) { - closestPt = start; - closestPt.properties.index = i; - } - if(stop.properties.dist < closestPt.properties.dist) { - closestPt = stop; - closestPt.properties.index = i; - } - if(intersectPt && intersectPt.properties.dist < closestPt.properties.dist){ - closestPt = intersectPt; - closestPt.properties.index = i; - } - } - - return closestPt; -} - -// modified from http://jsfiddle.net/justin_c_rounds/Gd2S2/light/ -function lineIntersects(line1StartX, line1StartY, line1EndX, line1EndY, line2StartX, line2StartY, line2EndX, line2EndY) { - // if the lines intersect, the result contains the x and y of the intersection (treating the lines as infinite) and booleans for whether line segment 1 or line segment 2 contain the point - var denominator, a, b, numerator1, numerator2, result = { - x: null, - y: null, - onLine1: false, - onLine2: false - }; - denominator = ((line2EndY - line2StartY) * (line1EndX - line1StartX)) - ((line2EndX - line2StartX) * (line1EndY - line1StartY)); - if (denominator == 0) { - if(result.x != null && result.y != null) { - return result; - } else { - return false; - } - } - a = line1StartY - line2StartY; - b = line1StartX - line2StartX; - numerator1 = ((line2EndX - line2StartX) * a) - ((line2EndY - line2StartY) * b); - numerator2 = ((line1EndX - line1StartX) * a) - ((line1EndY - line1StartY) * b); - a = numerator1 / denominator; - b = numerator2 / denominator; - - // if we cast these lines infinitely in both directions, they intersect here: - result.x = line1StartX + (a * (line1EndX - line1StartX)); - result.y = line1StartY + (a * (line1EndY - line1StartY)); - - // if line1 is a segment and line2 is infinite, they intersect if: - if (a > 0 && a < 1) { - result.onLine1 = true; - } - // if line2 is a segment and line1 is infinite, they intersect if: - if (b > 0 && b < 1) { - result.onLine2 = true; - } - // if line1 and line2 are segments, they intersect if both of the above are true - if(result.onLine1 && result.onLine2){ - return [result.x, result.y]; - } - else { - return false; - } -} - -},{"turf-bearing":13,"turf-destination":57,"turf-distance":60,"turf-linestring":90,"turf-point":102}],101:[function(require,module,exports){ -var featureCollection = require('turf-featurecollection'); -var centroid = require('turf-center'); -var distance = require('turf-distance'); -var inside = require('turf-inside'); -var explode = require('turf-explode'); - -/** - * Finds a {@link Point} guaranteed to be on the surface of - * {@link GeoJSON} object. - * - * * Given a {@link Polygon}, the point will be in the area of the polygon - * * Given a {@link LineString}, the point will be along the string - * * Given a {@link Point}, the point will the same as the input - * - * @module turf/point-on-surface - * @category measurement - * @param {GeoJSON} input any GeoJSON object - * @returns {Feature} a point on the surface of `input` - * @example - * // create a random polygon - * var polygon = turf.random('polygon'); - * - * //=polygon - * - * var pointOnPolygon = turf.pointOnSurface(polygon); - * -* var resultFeatures = polygon.features.concat(pointOnPolygon); -* var result = { -* "type": "FeatureCollection", -* "features": resultFeatures -* }; - * - * //=result - */ -module.exports = function(fc) { - // normalize - if(fc.type != 'FeatureCollection') { - if(fc.type != 'Feature') { - fc = { - type: 'Feature', - geometry: fc, - properties: {} - }; - } - fc = featureCollection([fc]); - } - - //get centroid - var cent = centroid(fc); - - // check to see if centroid is on surface - var onSurface = false; - var i = 0; - while(!onSurface && i < fc.features.length) { - var geom = fc.features[i].geometry; - if (geom.type === 'Point') { - if (cent.geometry.coordinates[0] === geom.coordinates[0] && - cent.geometry.coordinates[1] === geom.coordinates[1]) { - onSurface = true; - } - } else if(geom.type === 'MultiPoint') { - var onMultiPoint = false; - var k = 0; - while(!onMultiPoint && k < geom.coordinates.length) { - if (cent.geometry.coordinates[0] === geom.coordinates[k][0] && - cent.geometry.coordinates[1] === geom.coordinates[k][1]) { - onSurface = true; - onMultiPoint = true; - } - k++; - } - } else if(geom.type === 'LineString') { - var onLine = false; - var k = 0; - while(!onLine && k < geom.coordinates.length - 1) { - var x = cent.geometry.coordinates[0]; - var y = cent.geometry.coordinates[1]; - var x1 = geom.coordinates[k][0]; - var y1 = geom.coordinates[k][1]; - var x2 = geom.coordinates[k+1][0]; - var y2 = geom.coordinates[k+1][1]; - if(pointOnSegment(x, y, x1, y1, x2, y2)) { - onLine = true; - onSurface = true; - } - k++; - } - } else if(geom.type === 'MultiLineString') { - var onMultiLine = false; - var j = 0; - while(!onMultiLine && j < geom.coordinates.length) { - var onLine = false; - var k = 0; - var line = geom.coordinates[j]; - while(!onLine && k < line.length - 1) { - var x = cent.geometry.coordinates[0]; - var y = cent.geometry.coordinates[1]; - var x1 = line[k][0]; - var y1 = line[k][1]; - var x2 = line[k+1][0]; - var y2 = line[k+1][1]; - if(pointOnSegment(x, y, x1, y1, x2, y2)) { - onLine = true; - onSurface = true; - } - k++; - } - j++; - } - } else if(geom.type === 'Polygon' || geom.type === 'MultiPolygon') { - var f = { - type: 'Feature', - geometry: geom, - properties: {} - }; - if(inside(cent, f)) { - onSurface = true; - } - } - i++; - } - if(onSurface) { - return cent; - } else { - var vertices = featureCollection([]); - for(var i = 0; i < fc.features.length; i++) { - vertices.features = vertices.features.concat(explode(fc.features[i]).features); - } - var closestVertex; - var closestDistance = Infinity; - for(var i = 0; i < vertices.features.length; i++) { - var dist = distance(cent, vertices.features[i], 'miles'); - if(dist < closestDistance) { - closestDistance = dist; - closestVertex = vertices.features[i]; - } - } - return closestVertex; - } -}; - -function pointOnSegment (x, y, x1, y1, x2, y2) { - var ab = Math.sqrt((x2-x1)*(x2-x1)+(y2-y1)*(y2-y1)); - var ap = Math.sqrt((x-x1)*(x-x1)+(y-y1)*(y-y1)); - var pb = Math.sqrt((x2-x)*(x2-x)+(y2-y)*(y2-y)); - if(ab === ap + pb) { - return true; - } -} - -},{"turf-center":21,"turf-distance":60,"turf-explode":68,"turf-featurecollection":72,"turf-inside":76}],102:[function(require,module,exports){ -/** - * Takes coordinates and properties (optional) and returns a new {@link Point} feature. - * - * @module turf/point - * @category helper - * @param {number} longitude position west to east in decimal degrees - * @param {number} latitude position south to north in decimal degrees - * @param {Object} properties an Object that is used as the {@link Feature}'s - * properties - * @return {Point} a Point feature - * @example - * var pt1 = turf.point([-75.343, 39.984]); - * - * //=pt1 - */ -var isArray = Array.isArray || function(arg) { - return Object.prototype.toString.call(arg) === '[object Array]'; -}; -module.exports = function(coordinates, properties) { - if (!isArray(coordinates)) throw new Error('Coordinates must be an array'); - if (coordinates.length < 2) throw new Error('Coordinates must be at least 2 numbers long'); - return { - type: "Feature", - geometry: { - type: "Point", - coordinates: coordinates - }, - properties: properties || {} - }; -}; - -},{}],103:[function(require,module,exports){ -/** - * Takes an array of LinearRings and optionally an {@link Object} with properties and returns a GeoJSON {@link Polygon} feature. - * - * @module turf/polygon - * @category helper - * @param {Array>} rings an array of LinearRings - * @param {Object} properties an optional properties object - * @return {Polygon} a Polygon feature - * @throws {Error} throw an error if a LinearRing of the polygon has too few positions - * or if a LinearRing of the Polygon does not have matching Positions at the - * beginning & end. - * @example - * var polygon = turf.polygon([[ - * [-2.275543, 53.464547], - * [-2.275543, 53.489271], - * [-2.215118, 53.489271], - * [-2.215118, 53.464547], - * [-2.275543, 53.464547] - * ]], { name: 'poly1', population: 400}); - * - * //=polygon - */ -module.exports = function(coordinates, properties){ - - if (coordinates === null) throw new Error('No coordinates passed'); - - for (var i = 0; i < coordinates.length; i++) { - var ring = coordinates[i]; - for (var j = 0; j < ring[ring.length - 1].length; j++) { - if (ring.length < 4) { - throw new Error('Each LinearRing of a Polygon must have 4 or more Positions.'); - } - if (ring[ring.length - 1][j] !== ring[0][j]) { - throw new Error('First and last Position are not equivalent.'); - } - } - } - - var polygon = { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": coordinates - }, - "properties": properties - }; - - if (!polygon.properties) { - polygon.properties = {}; - } - - return polygon; -}; - -},{}],104:[function(require,module,exports){ -var ss = require('simple-statistics'); - -/** -* Takes a {@link FeatureCollection}, a property name, and a set of percentiles and returns a quantile array. -* @module turf/quantile -* @category classification -* @param {FeatureCollection} input a FeatureCollection of any type -* @param {String} field the property in `input` from which to retrieve quantile values -* @param {Array} percentiles an Array of percentiles on which to calculate quantile values -* @return {Array} an array of the break values -* @example -* var points = { -* "type": "FeatureCollection", -* "features": [ -* { -* "type": "Feature", -* "properties": { -* "population": 5 -* }, -* "geometry": { -* "type": "Point", -* "coordinates": [5, 5] -* } -* }, { -* "type": "Feature", -* "properties": { -* "population": 40 -* }, -* "geometry": { -* "type": "Point", -* "coordinates": [1, 3] -* } -* }, { -* "type": "Feature", -* "properties": { -* "population": 80 -* }, -* "geometry": { -* "type": "Point", -* "coordinates": [14, 2] -* } -* }, { -* "type": "Feature", -* "properties": { -* "population": 90 -* }, -* "geometry": { -* "type": "Point", -* "coordinates": [13, 1] -* } -* }, { -* "type": "Feature", -* "properties": { -* "population": 100 -* }, -* "geometry": { -* "type": "Point", -* "coordinates": [19, 7] -* } -* } -* ] -* }; -* -* var breaks = turf.quantile( -* points, 'population', [25, 50, 75, 99]); -* -* //=breaks -*/ -module.exports = function(fc, field, percentiles){ - var vals = []; - var quantiles = []; - - fc.features.forEach(function(feature){ - vals.push(feature.properties[field]); - }); - percentiles.forEach(function(percentile){ - quantiles.push(ss.quantile(vals, percentile * 0.01)); - }); - return quantiles; -}; - -},{"simple-statistics":105}],105:[function(require,module,exports){ -arguments[4][59][0].apply(exports,arguments) -},{"dup":59}],106:[function(require,module,exports){ -var random = require('geojson-random'); - -/** - * Generates random {@link GeoJSON} data, including {@link Point|Points} and {@link Polygon|Polygons}, for testing - * and experimentation. - * - * @module turf/random - * @category data - * @param {String} [type='point'] type of features desired: 'points' or 'polygons' - * @param {Number} [count=1] how many geometries should be generated. - * @param {Object} options options relevant to the feature desired. Can include: - * @param {Array} options.bbox a bounding box inside of which geometries - * are placed. In the case of {@link Point} features, they are guaranteed to be within this bounds, - * while {@link Polygon} features have their centroid within the bounds. - * @param {Number} [options.num_vertices=10] options.vertices the number of vertices added - * to polygon features. - * @param {Number} [options.max_radial_length=10] the total number of decimal - * degrees longitude or latitude that a polygon can extent outwards to - * from its center. - * @return {FeatureCollection} generated random features - * @example - * var points = turf.random('points', 100, { - * bbox: [-70, 40, -60, 60] - * }); - * - * //=points - * - * var polygons = turf.random('polygons', 4, { - * bbox: [-70, 40, -60, 60] - * }); - * - * //=polygons - */ -module.exports = function(type, count, options) { - options = options || {}; - count = count || 1; - switch (type) { - case 'point': - case 'points': - case undefined: - return random.point(count, options.bbox); - case 'polygon': - case 'polygons': - return random.polygon( - count, - options.num_vertices, - options.max_radial_length, - options.bbox); - default: - throw new Error('Unknown type given: valid options are points and polygons'); - } -}; - -},{"geojson-random":107}],107:[function(require,module,exports){ -module.exports = function() { - throw new Error('call .point() or .polygon() instead'); -}; - -function position(bbox) { - if (bbox) return coordInBBBOX(bbox); - else return [lon(), lat()]; -} - -module.exports.position = position; - -module.exports.point = function(count, bbox) { - var features = []; - for (i = 0; i < count; i++) { - features.push(feature(bbox ? point(position(bbox)) : point())); - } - return collection(features); -}; - -module.exports.polygon = function(count, num_vertices, max_radial_length, bbox) { - if (typeof num_vertices !== 'number') num_vertices = 10; - if (typeof max_radial_length !== 'number') max_radial_length = 10; - var features = []; - for (i = 0; i < count; i++) { - var vertices = [], - circle_offsets = Array.apply(null, - new Array(num_vertices + 1)).map(Math.random); - - circle_offsets.forEach(sumOffsets); - circle_offsets.forEach(scaleOffsets); - vertices[vertices.length - 1] = vertices[0]; // close the ring - - // center the polygon around something - vertices = vertices.map(vertexToCoordinate(position(bbox))); - features.push(feature(polygon([vertices]))); - } - - function sumOffsets(cur, index, arr) { - arr[index] = (index > 0) ? cur + arr[index - 1] : cur; - } - - function scaleOffsets(cur, index) { - cur = cur * 2 * Math.PI / circle_offsets[circle_offsets.length - 1]; - var radial_scaler = Math.random(); - vertices.push([ - radial_scaler * max_radial_length * Math.sin(cur), - radial_scaler * max_radial_length * Math.cos(cur) - ]); - } - - return collection(features); -}; - - -function vertexToCoordinate(hub) { - return function(cur, index) { return [cur[0] + hub[0], cur[1] + hub[1]]; }; -} - -function rnd() { return Math.random() - 0.5; } -function lon() { return rnd() * 360; } -function lat() { return rnd() * 180; } - -function point(coordinates) { - return { - type: 'Point', - coordinates: coordinates || [lon(), lat()] - }; -} - -function coordInBBBOX(bbox) { - return [ - (Math.random() * (bbox[2] - bbox[0])) + bbox[0], - (Math.random() * (bbox[3] - bbox[1])) + bbox[1]]; -} - -function pointInBBBOX() { - return { - type: 'Point', - coordinates: [lon(), lat()] - }; -} - -function polygon(coordinates) { - return { - type: 'Polygon', - coordinates: coordinates - }; -} - -function feature(geom) { - return { - type: 'Feature', - geometry: geom, - properties: {} - }; -} - -function collection(f) { - return { - type: 'FeatureCollection', - features: f - }; -} - -},{}],108:[function(require,module,exports){ -var featurecollection = require('turf-featurecollection'); -var reclass = require('./index.js'); - -/** - * Takes a {@link FeatureCollection}, an input field, an output field, and - * an array of translations and outputs an identical FeatureCollection with - * the output field property populated. -* @module turf/reclass -* @category classification -* @param {FeatureCollection} input a FeatureCollection of any type -* @param {string} inField the field to translate -* @param {string} outField the field in which to store translated results -* @param {Array} translations an array of translations -* @return {FeatureCollection} a FeatureCollection with identical geometries to `input` but with `outField` populated. -* @example -* var points = { -* "type": "FeatureCollection", -* "features": [ -* { -* "type": "Feature", -* "properties": { -* "population": 200 -* }, -* "geometry": { -* "type": "Point", -* "coordinates": [13.170547, 32.888669] -* } -* }, { -* "type": "Feature", -* "properties": { -* "population": 600 -* }, -* "geometry": { -* "type": "Point", -* "coordinates": [13.182048, 32.889533] -* } -* }, { -* "type": "Feature", -* "properties": { -* "population": 100 -* }, -* "geometry": { -* "type": "Point", -* "coordinates": [13.17398, 32.882182] -* } -* }, { -* "type": "Feature", -* "properties": { -* "population": 200 -* }, -* "geometry": { -* "type": "Point", -* "coordinates": [13.174324, 32.895011] -* } -* }, { -* "type": "Feature", -* "properties": { -* "population": 300 -* }, -* "geometry": { -* "type": "Point", -* "coordinates": [13.185825, 32.884344] -* } -* } -* ] -* }; -* // 0 to 200 will map to "small", 200 to 400 will map to "medium", 400 to 600 will map to "large" -* var translations = [ -* [0, 200, "small"], -* [200, 400, "medium"], -* [400, 600, "large"] -* ]; -* -* var reclassed = turf.reclass( -* points, 'population', 'size', translations); -* -* //=reclassed -* -*/ -module.exports = function(fc, inField, outField, translations, done){ - var reclassed = featurecollection([]); - - fc.features.forEach(function(feature){ - var reclassedFeature; - var found = false; - for(var i = 0; i < translations.length; i++){ - if(feature.properties[inField] >= translations[i][0] && feature.properties[inField] <= translations[i][1]) { - feature.properties[outField] = translations[i][2]; - } - } - reclassed.features.push(feature); - }); - - return reclassed; -}; - -},{"./index.js":108,"turf-featurecollection":72}],109:[function(require,module,exports){ -var featureCollection = require('turf-featurecollection'); - -/** - * Takes a {@link FeatureCollection} of any type, a property, and a value and - * returns a FeatureCollection with features matching that - * property-value pair removed. - * - * @module turf/remove - * @category data - * @param {FeatureCollection} features a FeatureCollection of any type - * @param {String} property the property to filter - * @param {String} value the value to filter - * @return {FeatureCollection} the resulting FeatureCollection without features that match the property-value pair - * @example - * var points = { - * "type": "FeatureCollection", - * "features": [ - * { - * "type": "Feature", - * "properties": { - * 'marker-color': '#00f' - * }, - * "geometry": { - * "type": "Point", - * "coordinates": [-0.235004, 5.551918] - * } - * }, { - * "type": "Feature", - * "properties": { - * 'marker-color': '#f00' - * }, - * "geometry": { - * "type": "Point", - * "coordinates": [-0.209598, 5.56439] - * } - * }, { - * "type": "Feature", - * "properties": { - * 'marker-color': '#00f' - * }, - * "geometry": { - * "type": "Point", - * "coordinates": [-0.197753, 5.556018] - * } - * }, { - * "type": "Feature", - * "properties": { - * 'marker-color': '#000' - * }, - * "geometry": { - * "type": "Point", - * "coordinates": [-0.217323, 5.549526] - * } - * }, { - * "type": "Feature", - * "properties": { - * 'marker-color': '#0f0' - * }, - * "geometry": { - * "type": "Point", - * "coordinates": [-0.211315, 5.543887] - * } - * }, { - * "type": "Feature", - * "properties": { - * 'marker-color': '#00f' - * }, - * "geometry": { - * "type": "Point", - * "coordinates": [-0.202217, 5.547134] - * } - * }, { - * "type": "Feature", - * "properties": { - * 'marker-color': '#0f0' - * }, - * "geometry": { - * "type": "Point", - * "coordinates": [-0.231227, 5.56644] - * } - * } - * ] - * }; - * - * //=points - * - * var filtered = turf.remove(points, 'marker-color', '#00f'); - * - * //=filtered -*/ -module.exports = function(collection, key, val) { - var newFC = featureCollection([]); - for(var i = 0; i < collection.features.length; i++) { - if(collection.features[i].properties[key] != val) { - newFC.features.push(collection.features[i]); - } - } - return newFC; -}; - -},{"turf-featurecollection":72}],110:[function(require,module,exports){ -// http://stackoverflow.com/questions/11935175/sampling-a-random-subset-from-an-array -var featureCollection = require('turf-featurecollection'); - -/** - * Takes a {@link FeatureCollection} and returns a FeatureCollection with given number of {@link Feature|features} at random. - * - * @module turf/sample - * @category data - * @param {FeatureCollection} features a FeatureCollection of any type - * @param {number} n number of features to select - * @return {FeatureCollection} a FeatureCollection with `n` features - * @example - * var points = turf.random('points', 1000); - * - * //=points - * - * var sample = turf.sample(points, 10); - * - * //=sample - */ -module.exports = function(fc, num){ - var outFC = featureCollection(getRandomSubarray(fc.features, num)); - return outFC; -}; - -function getRandomSubarray(arr, size) { - var shuffled = arr.slice(0), i = arr.length, min = i - size, temp, index; - while (i-- > min) { - index = Math.floor((i + 1) * Math.random()); - temp = shuffled[index]; - shuffled[index] = shuffled[i]; - shuffled[i] = temp; - } - return shuffled.slice(min); -} - -},{"turf-featurecollection":72}],111:[function(require,module,exports){ -var simplify = require('simplify-js'); - -/** - * Takes a {@link LineString} or {@link Polygon} feature and returns a simplified version. Internally uses [simplify-js](http://mourner.github.io/simplify-js/) to perform simplification. - * - * @module turf/simplify - * @category transformation - * @param {Feature} feature a {@link LineString} or {@link Polygon} feature to be simplified - * @param {number} tolerance simplification tolerance - * @param {boolean} highQuality whether or not to spend more time to create - * a higher-quality simplification with a different algorithm - * @return {Feature} a simplified feature - * @example - * var feature = { - * "type": "Feature", - * "properties": {}, - * "geometry": { - * "type": "Polygon", - * "coordinates": [[ - * [-70.603637, -33.399918], - * [-70.614624, -33.395332], - * [-70.639343, -33.392466], - * [-70.659942, -33.394759], - * [-70.683975, -33.404504], - * [-70.697021, -33.419406], - * [-70.701141, -33.434306], - * [-70.700454, -33.446339], - * [-70.694274, -33.458369], - * [-70.682601, -33.465816], - * [-70.668869, -33.472117], - * [-70.646209, -33.473835], - * [-70.624923, -33.472117], - * [-70.609817, -33.468107], - * [-70.595397, -33.458369], - * [-70.587158, -33.442901], - * [-70.587158, -33.426283], - * [-70.590591, -33.414248], - * [-70.594711, -33.406224], - * [-70.603637, -33.399918] - * ]] - * } - * }; - - * var tolerance = 0.01; - * - * var simplified = turf.simplify( - * feature, tolerance, false); - * - * //=feature - * - * //=simplified - */ -module.exports = function(feature, tolerance, highQuality){ - if(feature.geometry.type === 'LineString') { - var line = { - type: 'LineString', - coordinates: [] - }; - var pts = feature.geometry.coordinates.map(function(coord) { - return {x: coord[0], y: coord[1]}; - }); - line.coordinates = simplify(pts, tolerance, highQuality).map(function(coords){ - return [coords.x, coords.y]; - }); - - return simpleFeature(line, feature.properties); - } else if(feature.geometry.type === 'Polygon') { - var poly = { - type: 'Polygon', - coordinates: [] - }; - feature.geometry.coordinates.forEach(function(ring){ - var pts = ring.map(function(coord) { - return {x: coord[0], y: coord[1]}; - }); - var simpleRing = simplify(pts, tolerance, highQuality).map(function(coords){ - return [coords.x, coords.y]; - }); - poly.coordinates.push(simpleRing); - }); - return simpleFeature(poly, feature.properties) - } -} - -function simpleFeature (geom, properties) { - return { - type: 'Feature', - geometry: geom, - properties: properties - }; -} - -},{"simplify-js":112}],112:[function(require,module,exports){ -/* - (c) 2013, Vladimir Agafonkin - Simplify.js, a high-performance JS polyline simplification library - mourner.github.io/simplify-js -*/ - -(function () { 'use strict'; - -// to suit your point format, run search/replace for '.x' and '.y'; -// for 3D version, see 3d branch (configurability would draw significant performance overhead) - -// square distance between 2 points -function getSqDist(p1, p2) { - - var dx = p1.x - p2.x, - dy = p1.y - p2.y; - - return dx * dx + dy * dy; -} - -// square distance from a point to a segment -function getSqSegDist(p, p1, p2) { - - var x = p1.x, - y = p1.y, - dx = p2.x - x, - dy = p2.y - y; - - if (dx !== 0 || dy !== 0) { - - var t = ((p.x - x) * dx + (p.y - y) * dy) / (dx * dx + dy * dy); - - if (t > 1) { - x = p2.x; - y = p2.y; - - } else if (t > 0) { - x += dx * t; - y += dy * t; - } - } - - dx = p.x - x; - dy = p.y - y; - - return dx * dx + dy * dy; -} -// rest of the code doesn't care about point format - -// basic distance-based simplification -function simplifyRadialDist(points, sqTolerance) { - - var prevPoint = points[0], - newPoints = [prevPoint], - point; - - for (var i = 1, len = points.length; i < len; i++) { - point = points[i]; - - if (getSqDist(point, prevPoint) > sqTolerance) { - newPoints.push(point); - prevPoint = point; - } - } - - if (prevPoint !== point) newPoints.push(point); - - return newPoints; -} - -// simplification using optimized Douglas-Peucker algorithm with recursion elimination -function simplifyDouglasPeucker(points, sqTolerance) { - - var len = points.length, - MarkerArray = typeof Uint8Array !== 'undefined' ? Uint8Array : Array, - markers = new MarkerArray(len), - first = 0, - last = len - 1, - stack = [], - newPoints = [], - i, maxSqDist, sqDist, index; - - markers[first] = markers[last] = 1; - - while (last) { - - maxSqDist = 0; - - for (i = first + 1; i < last; i++) { - sqDist = getSqSegDist(points[i], points[first], points[last]); - - if (sqDist > maxSqDist) { - index = i; - maxSqDist = sqDist; - } - } - - if (maxSqDist > sqTolerance) { - markers[index] = 1; - stack.push(first, index, index, last); - } - - last = stack.pop(); - first = stack.pop(); - } - - for (i = 0; i < len; i++) { - if (markers[i]) newPoints.push(points[i]); - } - - return newPoints; -} - -// both algorithms combined for awesome performance -function simplify(points, tolerance, highestQuality) { - - var sqTolerance = tolerance !== undefined ? tolerance * tolerance : 1; - - points = highestQuality ? points : simplifyRadialDist(points, sqTolerance); - points = simplifyDouglasPeucker(points, sqTolerance); - - return points; -} - -// export as AMD module / Node module / browser or worker variable -if (typeof define === 'function' && define.amd) define(function() { return simplify; }); -else if (typeof module !== 'undefined') module.exports = simplify; -else if (typeof self !== 'undefined') self.simplify = simplify; -else window.simplify = simplify; - -})(); - -},{}],113:[function(require,module,exports){ -/** - * Takes a bounding box and returns a new bounding box with a size expanded or contracted - * by a factor of X. - * - * @module turf/size - * @category measurement - * @param {Array} bbox a bounding box - * @param {number} factor the ratio of the new bbox to the input bbox - * @return {Array} the resized bbox - * @example - * var bbox = [0, 0, 10, 10] - * - * var resized = turf.size(bbox, 2); - * - * var features = { - * "type": "FeatureCollection", - * "features": [ - * turf.bboxPolygon(bbox), - * turf.bboxPolygon(resized) - * ] - * }; - * - * //=features - */ -module.exports = function(bbox, factor){ - var currentXDistance = (bbox[2] - bbox[0]); - var currentYDistance = (bbox[3] - bbox[1]); - var newXDistance = currentXDistance * factor; - var newYDistance = currentYDistance * factor; - var xChange = newXDistance - currentXDistance; - var yChange = newYDistance - currentYDistance; - - var lowX = bbox[0] - (xChange / 2); - var lowY = bbox[1] - (yChange / 2); - var highX = (xChange / 2) + bbox[2]; - var highY = (yChange / 2) + bbox[3]; - - var sized = [lowX, lowY, highX, highY]; - return sized; -} - -},{}],114:[function(require,module,exports){ -var featurecollection = require('turf-featurecollection'); -var point = require('turf-point'); -var polygon = require('turf-polygon'); -var distance = require('turf-distance'); - -/** - * Takes a bounding box and a cell depth and returns a {@link FeatureCollection} of {@link Point} features in a grid. - * - * @module turf/square-grid - * @category interpolation - * @param {Array} extent extent in [minX, minY, maxX, maxY] order - * @param {Number} cellWidth width of each cell - * @param {String} units units to use for cellWidth - * @return {FeatureCollection} grid as FeatureCollection with {@link Polygon} features - * @example - * var extent = [-77.3876953125,38.71980474264239,-76.9482421875,39.027718840211605]; - * var cellWidth = 10; - * var units = 'miles'; - * - * var squareGrid = turf.squareGrid(extent, cellWidth, units); - * - * //=squareGrid - */ -module.exports = function (bbox, cell, units) { - var fc = featurecollection([]); - var xFraction = cell / (distance(point([bbox[0], bbox[1]]), point([bbox[2], bbox[1]]), units)); - var cellWidth = xFraction * (bbox[2] - bbox[0]); - var yFraction = cell / (distance(point([bbox[0], bbox[1]]), point([bbox[0], bbox[3]]), units)); - var cellHeight = yFraction * (bbox[3] - bbox[1]); - - var currentX = bbox[0]; - while (currentX <= bbox[2]) { - var currentY = bbox[1]; - while (currentY <= bbox[3]) { - var cellPoly = polygon([[ - [currentX, currentY], - [currentX, currentY+cellHeight], - [currentX+cellWidth, currentY+cellHeight], - [currentX+cellWidth, currentY], - [currentX, currentY] - ]]); - fc.features.push(cellPoly); - - currentY += cellHeight; - } - currentX += cellWidth; - } - - return fc; -} -},{"turf-distance":60,"turf-featurecollection":72,"turf-point":102,"turf-polygon":103}],115:[function(require,module,exports){ -var midpoint = require('turf-midpoint'); -var point = require('turf-point'); -var distance = require('turf-distance'); - -/** - * Takes a bounding box and calculates the minimum square bounding box that would contain the input. - * - * @module turf/square - * @category measurement - * @param {Array} bbox a bounding box - * @return {Array} a square surrounding `bbox` - * @example - * var bbox = [-20,-20,-15,0]; - * - * var squared = turf.square(bbox); - * - * var features = { - * "type": "FeatureCollection", - * "features": [ - * turf.bboxPolygon(bbox), - * turf.bboxPolygon(squared) - * ] - * }; - * - * //=features - */ -module.exports = function(bbox){ - var squareBbox = [0,0,0,0]; - var lowLeft = point([bbox[0], bbox[1]]); - var topLeft = point([bbox[0], bbox[3]]); - var topRight = point([bbox[2], bbox[3]]); - var lowRight = point([bbox[2], bbox[1]]); - - var horizontalDistance = distance(lowLeft, lowRight, 'miles'); - var verticalDistance = distance(lowLeft, topLeft, 'miles'); - if(horizontalDistance >= verticalDistance){ - squareBbox[0] = bbox[0]; - squareBbox[2] = bbox[2]; - var verticalMidpoint = midpoint(lowLeft, topLeft); - squareBbox[1] = verticalMidpoint.geometry.coordinates[1] - ((bbox[2] - bbox[0]) / 2); - squareBbox[3] = verticalMidpoint.geometry.coordinates[1] + ((bbox[2] - bbox[0]) / 2); - return squareBbox; - } - else { - squareBbox[1] = bbox[1]; - squareBbox[3] = bbox[3]; - var horzontalMidpoint = midpoint(lowLeft, lowRight); - squareBbox[0] = horzontalMidpoint.geometry.coordinates[0] - ((bbox[3] - bbox[1]) / 2); - squareBbox[2] = horzontalMidpoint.geometry.coordinates[0] + ((bbox[3] - bbox[1]) / 2); - return squareBbox; - } -} - - -},{"turf-distance":60,"turf-midpoint":95,"turf-point":102}],116:[function(require,module,exports){ -var inside = require('turf-inside'); - -/** - * Calculates the sum of a field for {@link Point} features within a set of {@link Polygon} features. - * - * @module turf/sum - * @category aggregation - * @param {FeatureCollection} polygons a FeatureCollection of {@link Polygon} features - * @param {FeatureCollection} points a FeatureCollection of {@link Point} features - * @param {String} inField the field in input data to analyze - * @param {String} outField the field in which to store results - * @return {FeatureCollection} a FeatureCollection of {@link Polygon} features - * with properties listed as `outField` - * @example - * var polygons = { - * "type": "FeatureCollection", - * "features": [ - * { - * "type": "Feature", - * "properties": {}, - * "geometry": { - * "type": "Polygon", - * "coordinates": [[ - * [-87.990188, 43.026486], - * [-87.990188, 43.062115], - * [-87.913284, 43.062115], - * [-87.913284, 43.026486], - * [-87.990188, 43.026486] - * ]] - * } - * }, { - * "type": "Feature", - * "properties": {}, - * "geometry": { - * "type": "Polygon", - * "coordinates": [[ - * [-87.973709, 42.962452], - * [-87.973709, 43.014689], - * [-87.904014, 43.014689], - * [-87.904014, 42.962452], - * [-87.973709, 42.962452] - * ]] - * } - * } - * ] - * }; - * var points = { - * "type": "FeatureCollection", - * "features": [ - * { - * "type": "Feature", - * "properties": { - * "population": 200 - * }, - * "geometry": { - * "type": "Point", - * "coordinates": [-87.974052, 43.049321] - * } - * }, { - * "type": "Feature", - * "properties": { - * "population": 600 - * }, - * "geometry": { - * "type": "Point", - * "coordinates": [-87.957229, 43.037277] - * } - * }, { - * "type": "Feature", - * "properties": { - * "population": 100 - * }, - * "geometry": { - * "type": "Point", - * "coordinates": [-87.931137, 43.048568] - * } - * }, { - * "type": "Feature", - * "properties": { - * "population": 200 - * }, - * "geometry": { - * "type": "Point", - * "coordinates": [-87.963409, 42.99611] - * } - * }, { - * "type": "Feature", - * "properties": { - * "population": 300 - * }, - * "geometry": { - * "type": "Point", - * "coordinates": [-87.94178, 42.974762] - * } - * } - * ] - * }; - * - * var aggregated = turf.sum( - * polygons, points, 'population', 'sum'); - * - * var resultFeatures = points.features.concat( - * aggregated.features); - * var result = { - * "type": "FeatureCollection", - * "features": resultFeatures - * }; - * - * //=result - */ -module.exports = function(polyFC, ptFC, inField, outField){ - polyFC.features.forEach(function(poly){ - if(!poly.properties){ - poly.properties = {}; - } - var values = []; - ptFC.features.forEach(function(pt){ - if (inside(pt, poly)) { - values.push(pt.properties[inField]); - } - }); - poly.properties[outField] = sum(values); - }); - - return polyFC; -}; - -function sum(x) { - var value = 0; - for (var i = 0; i < x.length; i++) { - value += x[i]; - } - return value; -} - -},{"turf-inside":76}],117:[function(require,module,exports){ -var inside = require('turf-inside'); - -/** - * Takes a {@link FeatureCollection} of {@link Point} features and a FeatureCollection of {@link Polygon} features and performs a spatial join. - * - * @module turf/tag - * @category joins - * @param {FeatureCollection} points a FeatureCollection of {@link Point} features - * @param {FeatureCollection} polygons a FeatureCollection of {@link Polygon} features - * @param {String} polyId property in `polygons` to add to joined Point features - * @param {String} containingPolyId property in `points` in which to store joined property from `polygons - * @return {FeatureCollection} a FeatureCollection of point features - * @example - * var bbox = [0, 0, 50, 50]; - * // create a triangular grid of polygons - * var triangleGrid = turf.tin(turf.grid(bbox, 10)); - * triangleGrid.features.forEach(function(f) { - * f.properties.fill = '#' + - * (~~(Math.random() * 16)).toString(16) + - * (~~(Math.random() * 16)).toString(16) + - * (~~(Math.random() * 16)).toString(16); - * f.properties.stroke = 0; - * f.properties['fill-opacity'] = 1; - * }); - * var randomPoints = turf.random('point', 30, { - * bbox: bbox - * }); - * var both = turf.featurecollection( - * triangleGrid.features.concat(randomPoints.features)); - * - * //=both - * - * var tagged = turf.tag(randomPoints, triangleGrid, - * 'fill', 'marker-color'); - * - * //=tagged - */ -module.exports = function(points, polygons, field, outField){ - // prevent mutations - points = JSON.parse(JSON.stringify(points)); - polygons = JSON.parse(JSON.stringify(polygons)); - points.features.forEach(function(pt) { - if (!pt.properties) { - pt.properties = {}; - } - polygons.features.forEach(function(poly) { - if (pt.properties[outField] === undefined) { - var isInside = inside(pt, poly); - if (isInside) { - pt.properties[outField] = poly.properties[field]; - } - } - }); - }); - return points; -}; - -},{"turf-inside":76}],118:[function(require,module,exports){ -//http://en.wikipedia.org/wiki/Delaunay_triangulation -//https://github.com/ironwallaby/delaunay -var polygon = require('turf-polygon'); -var featurecollection = require('turf-featurecollection'); - -/** - * Takes a set of points and the name of a z-value property and - * creates a [Triangulated Irregular Network](http://en.wikipedia.org/wiki/Triangulated_irregular_network), - * or a TIN for short, returned as a collection of Polygons. These are often used - * for developing elevation contour maps or stepped heat visualizations. - * - * This triangulates the points, as well as adds properties called `a`, `b`, - * and `c` representing the value of the given `propertyName` at each of - * the points that represent the corners of the triangle. - * - * @module turf/tin - * @category interpolation - * @param {FeatureCollection} points - a GeoJSON FeatureCollection containing - * Features with {@link Point} geometries - * @param {string=} propertyName - name of the property from which to pull z values. - * This is optional: if not given, then there will be no extra data added to the derived triangles. - * @return {FeatureCollection} TIN output - * @example - * // generate some random point data - * var points = turf.random('points', 30, { - * bbox: [50, 30, 70, 50] - * }); - * //=points - * // add a random property to each point between 0 and 9 - * for (var i = 0; i < points.features.length; i++) { - * points.features[i].properties.z = ~~(Math.random() * 9); - * } - * var tin = turf.tin(points, 'z') - * for (var i = 0; i < tin.features.length; i++) { - * var properties = tin.features[i].properties; - * // roughly turn the properties of each - * // triangle into a fill color - * // so we can visualize the result - * properties.fill = '#' + properties.a + - * properties.b + properties.c; - * } - * //=tin - */ -module.exports = function(points, z) { - //break down points - return featurecollection(triangulate(points.features.map(function(p) { - var point = { - x: p.geometry.coordinates[0], - y: p.geometry.coordinates[1] - }; - if (z) point.z = p.properties[z]; - return point; - })).map(function(triangle) { - return polygon([[ - [triangle.a.x, triangle.a.y], - [triangle.b.x, triangle.b.y], - [triangle.c.x, triangle.c.y], - [triangle.a.x, triangle.a.y] - ]], { - a: triangle.a.z, - b: triangle.b.z, - c: triangle.c.z - }); - })); -}; - -function Triangle(a, b, c) { - this.a = a; - this.b = b; - this.c = c; - - var A = b.x - a.x, - B = b.y - a.y, - C = c.x - a.x, - D = c.y - a.y, - E = A * (a.x + b.x) + B * (a.y + b.y), - F = C * (a.x + c.x) + D * (a.y + c.y), - G = 2 * (A * (c.y - b.y) - B * (c.x - b.x)), - minx, miny, dx, dy; - - // If the points of the triangle are collinear, then just find the - // extremes and use the midpoint as the center of the circumcircle. - if (Math.abs(G) < 0.000001) { - minx = Math.min(a.x, b.x, c.x); - miny = Math.min(a.y, b.y, c.y); - dx = (Math.max(a.x, b.x, c.x) - minx) * 0.5; - dy = (Math.max(a.y, b.y, c.y) - miny) * 0.5; - - this.x = minx + dx; - this.y = miny + dy; - this.r = dx * dx + dy * dy; - } else { - this.x = (D * E - B * F) / G; - this.y = (A * F - C * E) / G; - dx = this.x - a.x; - dy = this.y - a.y; - this.r = dx * dx + dy * dy; - } -} - -function byX(a, b) { - return b.x - a.x; -} - -function dedup(edges) { - var j = edges.length, - a, b, i, m, n; - - outer: - while (j) { - b = edges[--j]; - a = edges[--j]; - i = j; - while (i) { - n = edges[--i]; - m = edges[--i]; - if ((a === m && b === n) || (a === n && b === m)) { - edges.splice(j, 2); - edges.splice(i, 2); - j -= 2; - continue outer; - } - } - } -} - -function triangulate(vertices) { - // Bail if there aren't enough vertices to form any triangles. - if (vertices.length < 3) - return []; - - // Ensure the vertex array is in order of descending X coordinate - // (which is needed to ensure a subquadratic runtime), and then find - // the bounding box around the points. - vertices.sort(byX); - - var i = vertices.length - 1, - xmin = vertices[i].x, - xmax = vertices[0].x, - ymin = vertices[i].y, - ymax = ymin; - - while (i--) { - if (vertices[i].y < ymin) - ymin = vertices[i].y; - if (vertices[i].y > ymax) - ymax = vertices[i].y; - } - - //Find a supertriangle, which is a triangle that surrounds all the - //vertices. This is used like something of a sentinel value to remove - //cases in the main algorithm, and is removed before we return any - // results. - - // Once found, put it in the "open" list. (The "open" list is for - // triangles who may still need to be considered; the "closed" list is - // for triangles which do not.) - var dx = xmax - xmin, - dy = ymax - ymin, - dmax = (dx > dy) ? dx : dy, - xmid = (xmax + xmin) * 0.5, - ymid = (ymax + ymin) * 0.5, - open = [ - new Triangle({ - x: xmid - 20 * dmax, - y: ymid - dmax, - __sentinel: true - }, - { - x: xmid, - y: ymid + 20 * dmax, - __sentinel: true - }, - { - x: xmid + 20 * dmax, - y: ymid - dmax, - __sentinel: true - } - )], - closed = [], - edges = [], - j, a, b; - - // Incrementally add each vertex to the mesh. - i = vertices.length; - while (i--) { - // For each open triangle, check to see if the current point is - // inside it's circumcircle. If it is, remove the triangle and add - // it's edges to an edge list. - edges.length = 0; - j = open.length; - while (j--) { - // If this point is to the right of this triangle's circumcircle, - // then this triangle should never get checked again. Remove it - // from the open list, add it to the closed list, and skip. - dx = vertices[i].x - open[j].x; - if (dx > 0 && dx * dx > open[j].r) { - closed.push(open[j]); - open.splice(j, 1); - continue; - } - - // If not, skip this triangle. - dy = vertices[i].y - open[j].y; - if (dx * dx + dy * dy > open[j].r) - continue; - - // Remove the triangle and add it's edges to the edge list. - edges.push( - open[j].a, open[j].b, - open[j].b, open[j].c, - open[j].c, open[j].a - ); - open.splice(j, 1); - } - - // Remove any doubled edges. - dedup(edges); - - // Add a new triangle for each edge. - j = edges.length; - while (j) { - b = edges[--j]; - a = edges[--j]; - open.push(new Triangle(a, b, vertices[i])); - } - } - - // Copy any remaining open triangles to the closed list, and then - // remove any triangles that share a vertex with the supertriangle. - Array.prototype.push.apply(closed, open); - - i = closed.length; - while (i--) - if (closed[i].a.__sentinel || - closed[i].b.__sentinel || - closed[i].c.__sentinel) - closed.splice(i, 1); - - return closed; -} - -},{"turf-featurecollection":72,"turf-polygon":103}],119:[function(require,module,exports){ -var featurecollection = require('turf-featurecollection'); -var point = require('turf-point'); -var polygon = require('turf-polygon'); -var distance = require('turf-distance'); - -/** - * Takes a bounding box and a cell depth and returns a {@link FeatureCollection} of {@link Point} features in a grid. - * - * @module turf/triangle-grid - * @category interpolation - * @param {Array} extent extent in [minX, minY, maxX, maxY] order - * @param {Number} cellWidth width of each cell - * @param {String} units units to use for cellWidth - * @return {FeatureCollection} grid as FeatureCollection with {@link Polygon} features - * @example - * var extent = [-77.3876953125,38.71980474264239,-76.9482421875,39.027718840211605]; - * var cellWidth = 10; - * var units = 'miles'; - * - * var triangleGrid = turf.triangleGrid(extent, cellWidth, units); - * - * //=triangleGrid - */ -module.exports = function (bbox, cell, units) { - var fc = featurecollection([]); - var xFraction = cell / (distance(point([bbox[0], bbox[1]]), point([bbox[2], bbox[1]]), units)); - var cellWidth = xFraction * (bbox[2] - bbox[0]); - var yFraction = cell / (distance(point([bbox[0], bbox[1]]), point([bbox[0], bbox[3]]), units)); - var cellHeight = yFraction * (bbox[3] - bbox[1]); - - var xi = 0; - var currentX = bbox[0]; - while (currentX <= bbox[2]) { - var yi = 0; - var currentY = bbox[1]; - while (currentY <= bbox[3]) { - if(xi%2===0 && yi%2===0) { - var cell1 = polygon([[ - [currentX, currentY], - [currentX, currentY+cellHeight], - [currentX+cellWidth, currentY], - [currentX, currentY] - ]]); - fc.features.push(cell1); - var cell2 = polygon([[ - [currentX, currentY+cellHeight], - [currentX+cellWidth, currentY+cellHeight], - [currentX+cellWidth, currentY], - [currentX, currentY+cellHeight] - ]]); - fc.features.push(cell2); - } else if(xi%2===0 && yi%2===1) { - var cell1 = polygon([[ - [currentX, currentY], - [currentX+cellWidth, currentY+cellHeight], - [currentX+cellWidth, currentY], - [currentX, currentY] - ]]); - fc.features.push(cell1); - var cell2 = polygon([[ - [currentX, currentY], - [currentX, currentY+cellHeight], - [currentX+cellWidth, currentY+cellHeight], - [currentX, currentY] - ]]); - fc.features.push(cell2); - } else if(yi%2===0 && xi%2===1) { - var cell1 = polygon([[ - [currentX, currentY], - [currentX, currentY+cellHeight], - [currentX+cellWidth, currentY+cellHeight], - [currentX, currentY] - ]]); - fc.features.push(cell1); - var cell2 = polygon([[ - [currentX, currentY], - [currentX+cellWidth, currentY+cellHeight], - [currentX+cellWidth, currentY], - [currentX, currentY] - ]]); - fc.features.push(cell2); - } else if(yi%2===1 && xi%2===1) { - var cell1 = polygon([[ - [currentX, currentY], - [currentX, currentY+cellHeight], - [currentX+cellWidth, currentY], - [currentX, currentY] - ]]); - fc.features.push(cell1); - var cell2 = polygon([[ - [currentX, currentY+cellHeight], - [currentX+cellWidth, currentY+cellHeight], - [currentX+cellWidth, currentY], - [currentX, currentY+cellHeight] - ]]); - fc.features.push(cell2); - } - currentY += cellHeight; - yi++; - } - xi++; - currentX += cellWidth; - } - return fc; -}; - - -},{"turf-distance":60,"turf-featurecollection":72,"turf-point":102,"turf-polygon":103}],120:[function(require,module,exports){ -// look here for help http://svn.osgeo.org/grass/grass/branches/releasebranch_6_4/vector/v.overlay/main.c -//must be array of polygons - -// depend on jsts for now https://github.com/bjornharrtell/jsts/blob/master/examples/overlay.html - -var jsts = require('jsts'); - -/** - * Takes two {@link Polygon} features and returnes a combined {@link Polygon} feature. If the input Polygon features are not contiguous, this function returns a {@link MultiPolygon} feature. - * - * @module turf/union - * @category transformation - * @param {Polygon} poly1 an input Polygon - * @param {Polygon} poly2 another input Polygon - * @return {Feature} a combined {@link Polygon} or {@link MultiPolygon} feature - * @example - * var poly1 = { - * "type": "Feature", - * "properties": { - * "fill": "#0f0" - * }, - * "geometry": { - * "type": "Polygon", - * "coordinates": [[ - * [-82.574787, 35.594087], - * [-82.574787, 35.615581], - * [-82.545261, 35.615581], - * [-82.545261, 35.594087], - * [-82.574787, 35.594087] - * ]] - * } - * }; - * var poly2 = { - * "type": "Feature", - * "properties": { - * "fill": "#00f" - * }, - * "geometry": { - * "type": "Polygon", - * "coordinates": [[ - * [-82.560024, 35.585153], - * [-82.560024, 35.602602], - * [-82.52964, 35.602602], - * [-82.52964, 35.585153], - * [-82.560024, 35.585153] - * ]] - * } - * }; - * var polygons = { - * "type": "FeatureCollection", - * "features": [poly1, poly2] - * }; - * - * var union = turf.union(poly1, poly2); - * - * //=polygons - * - * //=union - */ -module.exports = function(poly1, poly2){ - var reader = new jsts.io.GeoJSONReader(); - var a = reader.read(JSON.stringify(poly1.geometry)); - var b = reader.read(JSON.stringify(poly2.geometry)); - var union = a.union(b); - var parser = new jsts.io.GeoJSONParser(); - - union = parser.write(union); - return { - type: 'Feature', - geometry: union, - properties: poly1.properties - }; -} - -},{"jsts":121}],121:[function(require,module,exports){ -arguments[4][17][0].apply(exports,arguments) -},{"./lib/jsts":122,"dup":17,"javascript.util":124}],122:[function(require,module,exports){ -arguments[4][18][0].apply(exports,arguments) -},{"dup":18}],123:[function(require,module,exports){ -arguments[4][19][0].apply(exports,arguments) -},{"dup":19}],124:[function(require,module,exports){ -arguments[4][20][0].apply(exports,arguments) -},{"./dist/javascript.util-node.min.js":123,"dup":20}],125:[function(require,module,exports){ -var ss = require('simple-statistics'); -var inside = require('turf-inside'); - -/** - * Calculates the variance value of a field for {@link Point} features within a set of {@link Polygon} features. - * - * @module turf/variance - * @category aggregation - * @param {FeatureCollection} polygons a FeatureCollection of {@link Polygon} features - * @param {FeatureCollection} points a FeatureCollection of {@link Point} features - * @param {string} inField the field in input data to analyze - * @param {string} outField the field in which to store results - * @return {FeatureCollection} a FeatureCollection of {@link Polygon} features - * with properties listed as `outField` - * @example - * var polygons = { - * "type": "FeatureCollection", - * "features": [ - * { - * "type": "Feature", - * "properties": {}, - * "geometry": { - * "type": "Polygon", - * "coordinates": [[ - * [-97.414398, 37.684092], - * [-97.414398, 37.731353], - * [-97.332344, 37.731353], - * [-97.332344, 37.684092], - * [-97.414398, 37.684092] - * ]] - * } - * }, { - * "type": "Feature", - * "properties": {}, - * "geometry": { - * "type": "Polygon", - * "coordinates": [[ - * [-97.333717, 37.606072], - * [-97.333717, 37.675397], - * [-97.237586, 37.675397], - * [-97.237586, 37.606072], - * [-97.333717, 37.606072] - * ]] - * } - * } - * ] - * }; - * var points = { - * "type": "FeatureCollection", - * "features": [ - * { - * "type": "Feature", - * "properties": { - * "population": 200 - * }, - * "geometry": { - * "type": "Point", - * "coordinates": [-97.401351, 37.719676] - * } - * }, { - * "type": "Feature", - * "properties": { - * "population": 600 - * }, - * "geometry": { - * "type": "Point", - * "coordinates": [-97.355346, 37.706639] - * } - * }, { - * "type": "Feature", - * "properties": { - * "population": 100 - * }, - * "geometry": { - * "type": "Point", - * "coordinates": [-97.387962, 37.70012] - * } - * }, { - * "type": "Feature", - * "properties": { - * "population": 200 - * }, - * "geometry": { - * "type": "Point", - * "coordinates": [-97.301788, 37.66507] - * } - * }, { - * "type": "Feature", - * "properties": { - * "population": 300 - * }, - * "geometry": { - * "type": "Point", - * "coordinates": [-97.265052, 37.643325] - * } - * } - * ] - * }; - * - * var aggregated = turf.variance( - * polygons, points, 'population', 'variance'); - * - * var resultFeatures = points.features.concat( - * aggregated.features); - * var result = { - * "type": "FeatureCollection", - * "features": resultFeatures - * }; - * - * //=result - */ -module.exports = function (polyFC, ptFC, inField, outField) { - polyFC.features.forEach(function(poly){ - if(!poly.properties){ - poly.properties = {}; - } - var values = []; - ptFC.features.forEach(function(pt){ - if (inside(pt, poly)) { - values.push(pt.properties[inField]); - } - }); - poly.properties[outField] = ss.variance(values); - }); - - return polyFC; -}; - -},{"simple-statistics":126,"turf-inside":76}],126:[function(require,module,exports){ -arguments[4][59][0].apply(exports,arguments) -},{"dup":59}],127:[function(require,module,exports){ -var inside = require('turf-inside'); -var featureCollection = require('turf-featurecollection'); - -/** - * Takes a {@link FeatureCollection} of {@link Point} features and a FeatureCollection of {@link Polygon} features and returns a FeatureCollection of Point features representing all points that fall within a collection of polygons. - * - * @module turf/within - * @category joins - * @param {FeatureCollection} points a FeatureCollection of {@link Point} features - * @param {FeatureCollection} polygons a FeatureCollection of {@link Polygon} features - * @return {FeatureCollection} a collection of all points that land - * within at least one polygon - * @example - * var searchWithin = { - * "type": "FeatureCollection", - * "features": [ - * { - * "type": "Feature", - * "properties": {}, - * "geometry": { - * "type": "Polygon", - * "coordinates": [[ - * [-46.653,-23.543], - * [-46.634,-23.5346], - * [-46.613,-23.543], - * [-46.614,-23.559], - * [-46.631,-23.567], - * [-46.653,-23.560], - * [-46.653,-23.543] - * ]] - * } - * } - * ] - * }; - * var points = { - * "type": "FeatureCollection", - * "features": [ - * { - * "type": "Feature", - * "properties": {}, - * "geometry": { - * "type": "Point", - * "coordinates": [-46.6318, -23.5523] - * } - * }, { - * "type": "Feature", - * "properties": {}, - * "geometry": { - * "type": "Point", - * "coordinates": [-46.6246, -23.5325] - * } - * }, { - * "type": "Feature", - * "properties": {}, - * "geometry": { - * "type": "Point", - * "coordinates": [-46.6062, -23.5513] - * } - * }, { - * "type": "Feature", - * "properties": {}, - * "geometry": { - * "type": "Point", - * "coordinates": [-46.663, -23.554] - * } - * }, { - * "type": "Feature", - * "properties": {}, - * "geometry": { - * "type": "Point", - * "coordinates": [-46.643, -23.557] - * } - * } - * ] - * }; - * - * var ptsWithin = turf.within(points, searchWithin); - * - * //=points - * - * //=searchWithin - * - * //=ptsWithin - */ -module.exports = function(ptFC, polyFC){ - var pointsWithin = featureCollection([]); - for (var i = 0; i < polyFC.features.length; i++) { - for (var j = 0; j < ptFC.features.length; j++) { - var isInside = inside(ptFC.features[j], polyFC.features[i]); - if(isInside){ - pointsWithin.features.push(ptFC.features[j]); - } - } - } - return pointsWithin; -}; - -},{"turf-featurecollection":72,"turf-inside":76}]},{},[1])(1) -}); \ No newline at end of file diff --git a/turf.min.js b/turf.min.js deleted file mode 100644 index 2b8892ab09..0000000000 --- a/turf.min.js +++ /dev/null @@ -1,18 +0,0 @@ -!function(t){if("object"==typeof exports&&"undefined"!=typeof module)module.exports=t();else if("function"==typeof define&&define.amd)define([],t);else{var e;e="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:this,e.turf=t()}}(function(){var t;return function e(t,n,o){function r(s,a){if(!n[s]){if(!t[s]){var u="function"==typeof require&&require;if(!a&&u)return u(s,!0);if(i)return i(s,!0);var p=new Error("Cannot find module '"+s+"'");throw p.code="MODULE_NOT_FOUND",p}var g=n[s]={exports:{}};t[s][0].call(g.exports,function(e){var n=t[s][1][e];return r(n?n:e)},g,g.exports,e,t,n,o)}return n[s].exports}for(var i="function"==typeof require&&require,s=0;sF)throw new RangeError("Attempt to allocate Buffer larger than maximum size: 0x"+F.toString(16)+" bytes");0>r?r=0:r>>>=0;var s=this;o.TYPED_ARRAY_SUPPORT?s=o._augment(new Uint8Array(r)):(s.length=r,s._isBuffer=!0);var a;if(o.TYPED_ARRAY_SUPPORT&&"number"==typeof t.byteLength)s._set(t);else if(N(t))if(o.isBuffer(t))for(a=0;r>a;a++)s[a]=t.readUInt8(a);else for(a=0;r>a;a++)s[a]=(t[a]%256+256)%256;else if("string"===i)s.write(t,0,e);else if("number"===i&&!o.TYPED_ARRAY_SUPPORT&&!n)for(a=0;r>a;a++)s[a]=0;return r>0&&r<=o.poolSize&&(s.parent=B),s}function r(t,e,n){if(!(this instanceof r))return new r(t,e,n);var i=new o(t,e,n);return delete i.parent,i}function i(t,e,n,o){n=Number(n)||0;var r=t.length-n;o?(o=Number(o),o>r&&(o=r)):o=r;var i=e.length;if(i%2!==0)throw new Error("Invalid hex string");o>i/2&&(o=i/2);for(var s=0;o>s;s++){var a=parseInt(e.substr(2*s,2),16);if(isNaN(a))throw new Error("Invalid hex string");t[n+s]=a}return s}function s(t,e,n,o){var r=M(P(e,t.length-n),t,n,o);return r}function a(t,e,n,o){var r=M(R(e),t,n,o);return r}function u(t,e,n,o){return a(t,e,n,o)}function p(t,e,n,o){var r=M(O(e),t,n,o);return r}function g(t,e,n,o){var r=M(w(e,t.length-n),t,n,o);return r}function l(t,e,n){return T.fromByteArray(0===e&&n===t.length?t:t.slice(e,n))}function h(t,e,n){var o="",r="";n=Math.min(t.length,n);for(var i=e;n>i;i++)t[i]<=127?(o+=A(r)+String.fromCharCode(t[i]),r=""):r+="%"+t[i].toString(16);return o+A(r)}function d(t,e,n){var o="";n=Math.min(t.length,n);for(var r=e;n>r;r++)o+=String.fromCharCode(127&t[r]);return o}function c(t,e,n){var o="";n=Math.min(t.length,n);for(var r=e;n>r;r++)o+=String.fromCharCode(t[r]);return o}function f(t,e,n){var o=t.length;(!e||0>e)&&(e=0),(!n||0>n||n>o)&&(n=o);for(var r="",i=e;n>i;i++)r+=b(t[i]);return r}function m(t,e,n){for(var o=t.slice(e,n),r="",i=0;it)throw new RangeError("offset is not uint");if(t+e>n)throw new RangeError("Trying to access beyond buffer length")}function j(t,e,n,r,i,s){if(!o.isBuffer(t))throw new TypeError("buffer must be a Buffer instance");if(e>i||s>e)throw new RangeError("value is out of bounds");if(n+r>t.length)throw new RangeError("index out of range")}function v(t,e,n,o){0>e&&(e=65535+e+1);for(var r=0,i=Math.min(t.length-n,2);i>r;r++)t[n+r]=(e&255<<8*(o?r:1-r))>>>8*(o?r:1-r)}function E(t,e,n,o){0>e&&(e=4294967295+e+1);for(var r=0,i=Math.min(t.length-n,4);i>r;r++)t[n+r]=e>>>8*(o?r:3-r)&255}function x(t,e,n,o,r,i){if(e>r||i>e)throw new RangeError("value is out of bounds");if(n+o>t.length)throw new RangeError("index out of range");if(0>n)throw new RangeError("index out of range")}function I(t,e,n,o,r){return r||x(t,e,n,4,3.4028234663852886e38,-3.4028234663852886e38),D.write(t,e,n,o,23,4),n+4}function S(t,e,n,o,r){return r||x(t,e,n,8,1.7976931348623157e308,-1.7976931348623157e308),D.write(t,e,n,o,52,8),n+8}function L(t){if(t=C(t).replace(_,""),t.length<2)return"";for(;t.length%4!==0;)t+="=";return t}function C(t){return t.trim?t.trim():t.replace(/^\s+|\s+$/g,"")}function N(t){return G(t)||o.isBuffer(t)||t&&"object"==typeof t&&"number"==typeof t.length}function b(t){return 16>t?"0"+t.toString(16):t.toString(16)}function P(t,e){e=e||1/0;for(var n,o=t.length,r=null,i=[],s=0;o>s;s++){if(n=t.charCodeAt(s),n>55295&&57344>n){if(!r){if(n>56319){(e-=3)>-1&&i.push(239,191,189);continue}if(s+1===o){(e-=3)>-1&&i.push(239,191,189);continue}r=n;continue}if(56320>n){(e-=3)>-1&&i.push(239,191,189),r=n;continue}n=r-55296<<10|n-56320|65536,r=null}else r&&((e-=3)>-1&&i.push(239,191,189),r=null);if(128>n){if((e-=1)<0)break;i.push(n)}else if(2048>n){if((e-=2)<0)break;i.push(n>>6|192,63&n|128)}else if(65536>n){if((e-=3)<0)break;i.push(n>>12|224,n>>6&63|128,63&n|128)}else{if(!(2097152>n))throw new Error("Invalid code point");if((e-=4)<0)break;i.push(n>>18|240,n>>12&63|128,n>>6&63|128,63&n|128)}}return i}function R(t){for(var e=[],n=0;n>8,r=n%256,i.push(r),i.push(o);return i}function O(t){return T.toByteArray(L(t))}function M(t,e,n,o){for(var r=0;o>r&&!(r+n>=e.length||r>=t.length);r++)e[r+n]=t[r];return r}function A(t){try{return decodeURIComponent(t)}catch(e){return String.fromCharCode(65533)}}var T=t("base64-js"),D=t("ieee754"),G=t("is-array");n.Buffer=o,n.SlowBuffer=r,n.INSPECT_MAX_BYTES=50,o.poolSize=8192;var F=1073741823,B={};o.TYPED_ARRAY_SUPPORT=function(){try{var t=new ArrayBuffer(0),e=new Uint8Array(t);return e.foo=function(){return 42},42===e.foo()&&"function"==typeof e.subarray&&0===new Uint8Array(1).subarray(1,1).byteLength}catch(n){return!1}}(),o.isBuffer=function(t){return!(null==t||!t._isBuffer)},o.compare=function(t,e){if(!o.isBuffer(t)||!o.isBuffer(e))throw new TypeError("Arguments must be Buffers");if(t===e)return 0;for(var n=t.length,r=e.length,i=0,s=Math.min(n,r);s>i&&t[i]===e[i];i++);return i!==s&&(n=t[i],r=e[i]),r>n?-1:n>r?1:0},o.isEncoding=function(t){switch(String(t).toLowerCase()){case"hex":case"utf8":case"utf-8":case"ascii":case"binary":case"base64":case"raw":case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return!0;default:return!1}},o.concat=function(t,e){if(!G(t))throw new TypeError("Usage: Buffer.concat(list[, length])");if(0===t.length)return new o(0);if(1===t.length)return t[0];var n;if(void 0===e)for(e=0,n=0;n>>1;break;case"utf8":case"utf-8":n=P(t).length;break;case"base64":n=O(t).length;break;default:n=t.length}return n},o.prototype.length=void 0,o.prototype.parent=void 0,o.prototype.toString=function(t,e,n){var o=!1;if(e>>>=0,n=void 0===n||1/0===n?this.length:n>>>0,t||(t="utf8"),0>e&&(e=0),n>this.length&&(n=this.length),e>=n)return"";for(;;)switch(t){case"hex":return f(this,e,n);case"utf8":case"utf-8":return h(this,e,n);case"ascii":return d(this,e,n);case"binary":return c(this,e,n);case"base64":return l(this,e,n);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return m(this,e,n);default:if(o)throw new TypeError("Unknown encoding: "+t);t=(t+"").toLowerCase(),o=!0}},o.prototype.equals=function(t){if(!o.isBuffer(t))throw new TypeError("Argument must be a Buffer");return this===t?!0:0===o.compare(this,t)},o.prototype.inspect=function(){var t="",e=n.INSPECT_MAX_BYTES;return this.length>0&&(t=this.toString("hex",0,e).match(/.{2}/g).join(" "),this.length>e&&(t+=" ... ")),""},o.prototype.compare=function(t){if(!o.isBuffer(t))throw new TypeError("Argument must be a Buffer");return this===t?0:o.compare(this,t)},o.prototype.get=function(t){return console.log(".get() is deprecated. Access using array indexes instead."),this.readUInt8(t)},o.prototype.set=function(t,e){return console.log(".set() is deprecated. Access using array indexes instead."),this.writeUInt8(t,e)},o.prototype.write=function(t,e,n,o){if(isFinite(e))isFinite(n)||(o=n,n=void 0);else{var r=o;o=e,e=n,n=r}if(e=Number(e)||0,0>n||0>e||e>this.length)throw new RangeError("attempt to write outside buffer bounds");var l=this.length-e;n?(n=Number(n),n>l&&(n=l)):n=l,o=String(o||"utf8").toLowerCase();var h;switch(o){case"hex":h=i(this,t,e,n);break;case"utf8":case"utf-8":h=s(this,t,e,n);break;case"ascii":h=a(this,t,e,n);break;case"binary":h=u(this,t,e,n);break;case"base64":h=p(this,t,e,n);break;case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":h=g(this,t,e,n);break;default:throw new TypeError("Unknown encoding: "+o)}return h},o.prototype.toJSON=function(){return{type:"Buffer",data:Array.prototype.slice.call(this._arr||this,0)}},o.prototype.slice=function(t,e){var n=this.length;t=~~t,e=void 0===e?n:~~e,0>t?(t+=n,0>t&&(t=0)):t>n&&(t=n),0>e?(e+=n,0>e&&(e=0)):e>n&&(e=n),t>e&&(e=t);var r;if(o.TYPED_ARRAY_SUPPORT)r=o._augment(this.subarray(t,e));else{var i=e-t;r=new o(i,void 0,!0);for(var s=0;i>s;s++)r[s]=this[s+t]}return r.length&&(r.parent=this.parent||this),r},o.prototype.readUIntLE=function(t,e,n){t>>>=0,e>>>=0,n||y(t,e,this.length);for(var o=this[t],r=1,i=0;++i>>=0,e>>>=0,n||y(t,e,this.length);for(var o=this[t+--e],r=1;e>0&&(r*=256);)o+=this[t+--e]*r;return o},o.prototype.readUInt8=function(t,e){return e||y(t,1,this.length),this[t]},o.prototype.readUInt16LE=function(t,e){return e||y(t,2,this.length),this[t]|this[t+1]<<8},o.prototype.readUInt16BE=function(t,e){return e||y(t,2,this.length),this[t]<<8|this[t+1]},o.prototype.readUInt32LE=function(t,e){return e||y(t,4,this.length),(this[t]|this[t+1]<<8|this[t+2]<<16)+16777216*this[t+3]},o.prototype.readUInt32BE=function(t,e){return e||y(t,4,this.length),16777216*this[t]+(this[t+1]<<16|this[t+2]<<8|this[t+3])},o.prototype.readIntLE=function(t,e,n){t>>>=0,e>>>=0,n||y(t,e,this.length);for(var o=this[t],r=1,i=0;++i=r&&(o-=Math.pow(2,8*e)),o},o.prototype.readIntBE=function(t,e,n){t>>>=0,e>>>=0,n||y(t,e,this.length);for(var o=e,r=1,i=this[t+--o];o>0&&(r*=256);)i+=this[t+--o]*r;return r*=128,i>=r&&(i-=Math.pow(2,8*e)),i},o.prototype.readInt8=function(t,e){return e||y(t,1,this.length),128&this[t]?-1*(255-this[t]+1):this[t]},o.prototype.readInt16LE=function(t,e){e||y(t,2,this.length);var n=this[t]|this[t+1]<<8;return 32768&n?4294901760|n:n},o.prototype.readInt16BE=function(t,e){e||y(t,2,this.length);var n=this[t+1]|this[t]<<8;return 32768&n?4294901760|n:n},o.prototype.readInt32LE=function(t,e){return e||y(t,4,this.length),this[t]|this[t+1]<<8|this[t+2]<<16|this[t+3]<<24},o.prototype.readInt32BE=function(t,e){return e||y(t,4,this.length),this[t]<<24|this[t+1]<<16|this[t+2]<<8|this[t+3]},o.prototype.readFloatLE=function(t,e){return e||y(t,4,this.length),D.read(this,t,!0,23,4)},o.prototype.readFloatBE=function(t,e){return e||y(t,4,this.length),D.read(this,t,!1,23,4)},o.prototype.readDoubleLE=function(t,e){return e||y(t,8,this.length),D.read(this,t,!0,52,8)},o.prototype.readDoubleBE=function(t,e){return e||y(t,8,this.length),D.read(this,t,!1,52,8)},o.prototype.writeUIntLE=function(t,e,n,o){t=+t,e>>>=0,n>>>=0,o||j(this,t,e,n,Math.pow(2,8*n),0);var r=1,i=0;for(this[e]=255&t;++i>>0&255;return e+n},o.prototype.writeUIntBE=function(t,e,n,o){t=+t,e>>>=0,n>>>=0,o||j(this,t,e,n,Math.pow(2,8*n),0);var r=n-1,i=1;for(this[e+r]=255&t;--r>=0&&(i*=256);)this[e+r]=t/i>>>0&255;return e+n},o.prototype.writeUInt8=function(t,e,n){return t=+t,e>>>=0,n||j(this,t,e,1,255,0),o.TYPED_ARRAY_SUPPORT||(t=Math.floor(t)),this[e]=t,e+1},o.prototype.writeUInt16LE=function(t,e,n){return t=+t,e>>>=0,n||j(this,t,e,2,65535,0),o.TYPED_ARRAY_SUPPORT?(this[e]=t,this[e+1]=t>>>8):v(this,t,e,!0),e+2},o.prototype.writeUInt16BE=function(t,e,n){return t=+t,e>>>=0,n||j(this,t,e,2,65535,0),o.TYPED_ARRAY_SUPPORT?(this[e]=t>>>8,this[e+1]=t):v(this,t,e,!1),e+2},o.prototype.writeUInt32LE=function(t,e,n){return t=+t,e>>>=0,n||j(this,t,e,4,4294967295,0),o.TYPED_ARRAY_SUPPORT?(this[e+3]=t>>>24,this[e+2]=t>>>16,this[e+1]=t>>>8,this[e]=t):E(this,t,e,!0),e+4},o.prototype.writeUInt32BE=function(t,e,n){return t=+t,e>>>=0,n||j(this,t,e,4,4294967295,0),o.TYPED_ARRAY_SUPPORT?(this[e]=t>>>24,this[e+1]=t>>>16,this[e+2]=t>>>8,this[e+3]=t):E(this,t,e,!1),e+4},o.prototype.writeIntLE=function(t,e,n,o){t=+t,e>>>=0,o||j(this,t,e,n,Math.pow(2,8*n-1)-1,-Math.pow(2,8*n-1));var r=0,i=1,s=0>t?1:0;for(this[e]=255&t;++r>0)-s&255;return e+n},o.prototype.writeIntBE=function(t,e,n,o){t=+t,e>>>=0,o||j(this,t,e,n,Math.pow(2,8*n-1)-1,-Math.pow(2,8*n-1));var r=n-1,i=1,s=0>t?1:0;for(this[e+r]=255&t;--r>=0&&(i*=256);)this[e+r]=(t/i>>0)-s&255;return e+n},o.prototype.writeInt8=function(t,e,n){return t=+t,e>>>=0,n||j(this,t,e,1,127,-128),o.TYPED_ARRAY_SUPPORT||(t=Math.floor(t)),0>t&&(t=255+t+1),this[e]=t,e+1},o.prototype.writeInt16LE=function(t,e,n){return t=+t,e>>>=0,n||j(this,t,e,2,32767,-32768),o.TYPED_ARRAY_SUPPORT?(this[e]=t,this[e+1]=t>>>8):v(this,t,e,!0),e+2},o.prototype.writeInt16BE=function(t,e,n){return t=+t,e>>>=0,n||j(this,t,e,2,32767,-32768),o.TYPED_ARRAY_SUPPORT?(this[e]=t>>>8,this[e+1]=t):v(this,t,e,!1),e+2},o.prototype.writeInt32LE=function(t,e,n){return t=+t,e>>>=0,n||j(this,t,e,4,2147483647,-2147483648),o.TYPED_ARRAY_SUPPORT?(this[e]=t,this[e+1]=t>>>8,this[e+2]=t>>>16,this[e+3]=t>>>24):E(this,t,e,!0),e+4},o.prototype.writeInt32BE=function(t,e,n){return t=+t,e>>>=0,n||j(this,t,e,4,2147483647,-2147483648),0>t&&(t=4294967295+t+1),o.TYPED_ARRAY_SUPPORT?(this[e]=t>>>24,this[e+1]=t>>>16,this[e+2]=t>>>8,this[e+3]=t):E(this,t,e,!1),e+4},o.prototype.writeFloatLE=function(t,e,n){return I(this,t,e,!0,n)},o.prototype.writeFloatBE=function(t,e,n){return I(this,t,e,!1,n)},o.prototype.writeDoubleLE=function(t,e,n){return S(this,t,e,!0,n)},o.prototype.writeDoubleBE=function(t,e,n){return S(this,t,e,!1,n)},o.prototype.copy=function(t,e,n,r){var i=this;if(n||(n=0),r||0===r||(r=this.length),e>=t.length&&(e=t.length),e||(e=0),r>0&&n>r&&(r=n),r===n)return 0;if(0===t.length||0===i.length)return 0;if(0>e)throw new RangeError("targetStart out of bounds");if(0>n||n>=i.length)throw new RangeError("sourceStart out of bounds");if(0>r)throw new RangeError("sourceEnd out of bounds");r>this.length&&(r=this.length),t.length-es||!o.TYPED_ARRAY_SUPPORT)for(var a=0;s>a;a++)t[a+e]=this[a+n];else t._set(this.subarray(n,n+s),e);return s},o.prototype.fill=function(t,e,n){if(t||(t=0),e||(e=0),n||(n=this.length),e>n)throw new RangeError("end < start");if(n!==e&&0!==this.length){if(0>e||e>=this.length)throw new RangeError("start out of bounds");if(0>n||n>this.length)throw new RangeError("end out of bounds");var o;if("number"==typeof t)for(o=e;n>o;o++)this[o]=t;else{var r=P(t.toString()),i=r.length;for(o=e;n>o;o++)this[o]=r[o%i]}return this}},o.prototype.toArrayBuffer=function(){if("undefined"!=typeof Uint8Array){if(o.TYPED_ARRAY_SUPPORT)return new o(this).buffer;for(var t=new Uint8Array(this.length),e=0,n=t.length;n>e;e+=1)t[e]=this[e];return t.buffer}throw new TypeError("Buffer.toArrayBuffer not supported in this browser")};var q=o.prototype;o._augment=function(t){return t.constructor=o,t._isBuffer=!0,t._get=t.get,t._set=t.set,t.get=q.get,t.set=q.set,t.write=q.write,t.toString=q.toString,t.toLocaleString=q.toString,t.toJSON=q.toJSON,t.equals=q.equals,t.compare=q.compare,t.copy=q.copy,t.slice=q.slice,t.readUIntLE=q.readUIntLE,t.readUIntBE=q.readUIntBE,t.readUInt8=q.readUInt8,t.readUInt16LE=q.readUInt16LE,t.readUInt16BE=q.readUInt16BE,t.readUInt32LE=q.readUInt32LE,t.readUInt32BE=q.readUInt32BE,t.readIntLE=q.readIntLE,t.readIntBE=q.readIntBE,t.readInt8=q.readInt8,t.readInt16LE=q.readInt16LE,t.readInt16BE=q.readInt16BE,t.readInt32LE=q.readInt32LE,t.readInt32BE=q.readInt32BE,t.readFloatLE=q.readFloatLE,t.readFloatBE=q.readFloatBE,t.readDoubleLE=q.readDoubleLE,t.readDoubleBE=q.readDoubleBE,t.writeUInt8=q.writeUInt8,t.writeUIntLE=q.writeUIntLE,t.writeUIntBE=q.writeUIntBE,t.writeUInt16LE=q.writeUInt16LE,t.writeUInt16BE=q.writeUInt16BE,t.writeUInt32LE=q.writeUInt32LE,t.writeUInt32BE=q.writeUInt32BE,t.writeIntLE=q.writeIntLE,t.writeIntBE=q.writeIntBE,t.writeInt8=q.writeInt8,t.writeInt16LE=q.writeInt16LE,t.writeInt16BE=q.writeInt16BE,t.writeInt32LE=q.writeInt32LE,t.writeInt32BE=q.writeInt32BE,t.writeFloatLE=q.writeFloatLE,t.writeFloatBE=q.writeFloatBE,t.writeDoubleLE=q.writeDoubleLE,t.writeDoubleBE=q.writeDoubleBE,t.fill=q.fill,t.inspect=q.inspect,t.toArrayBuffer=q.toArrayBuffer,t};var _=/[^+\/0-9A-z\-]/g},{"base64-js":3,ieee754:4,"is-array":5}],3:[function(t,e,n){var o="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";!function(t){"use strict";function e(t){var e=t.charCodeAt(0);return e===s||e===l?62:e===a||e===h?63:u>e?-1:u+10>e?e-u+26+26:g+26>e?e-g:p+26>e?e-p+26:void 0}function n(t){function n(t){p[l++]=t}var o,r,s,a,u,p;if(t.length%4>0)throw new Error("Invalid string. Length must be a multiple of 4");var g=t.length;u="="===t.charAt(g-2)?2:"="===t.charAt(g-1)?1:0,p=new i(3*t.length/4-u),s=u>0?t.length-4:t.length;var l=0;for(o=0,r=0;s>o;o+=4,r+=3)a=e(t.charAt(o))<<18|e(t.charAt(o+1))<<12|e(t.charAt(o+2))<<6|e(t.charAt(o+3)),n((16711680&a)>>16),n((65280&a)>>8),n(255&a);return 2===u?(a=e(t.charAt(o))<<2|e(t.charAt(o+1))>>4,n(255&a)):1===u&&(a=e(t.charAt(o))<<10|e(t.charAt(o+1))<<4|e(t.charAt(o+2))>>2,n(a>>8&255),n(255&a)),p}function r(t){function e(t){return o.charAt(t)}function n(t){return e(t>>18&63)+e(t>>12&63)+e(t>>6&63)+e(63&t)}var r,i,s,a=t.length%3,u="";for(r=0,s=t.length-a;s>r;r+=3)i=(t[r]<<16)+(t[r+1]<<8)+t[r+2],u+=n(i);switch(a){case 1:i=t[t.length-1],u+=e(i>>2),u+=e(i<<4&63),u+="==";break;case 2:i=(t[t.length-2]<<8)+t[t.length-1],u+=e(i>>10),u+=e(i>>4&63),u+=e(i<<2&63),u+="="}return u}var i="undefined"!=typeof Uint8Array?Uint8Array:Array,s="+".charCodeAt(0),a="/".charCodeAt(0),u="0".charCodeAt(0),p="a".charCodeAt(0),g="A".charCodeAt(0),l="-".charCodeAt(0),h="_".charCodeAt(0);t.toByteArray=n,t.fromByteArray=r}("undefined"==typeof n?this.base64js={}:n)},{}],4:[function(t,e,n){n.read=function(t,e,n,o,r){var i,s,a=8*r-o-1,u=(1<>1,g=-7,l=n?r-1:0,h=n?-1:1,d=t[e+l];for(l+=h,i=d&(1<<-g)-1,d>>=-g,g+=a;g>0;i=256*i+t[e+l],l+=h,g-=8);for(s=i&(1<<-g)-1,i>>=-g,g+=o;g>0;s=256*s+t[e+l],l+=h,g-=8);if(0===i)i=1-p;else{if(i===u)return s?0/0:1/0*(d?-1:1);s+=Math.pow(2,o),i-=p}return(d?-1:1)*s*Math.pow(2,i-o)},n.write=function(t,e,n,o,r,i){var s,a,u,p=8*i-r-1,g=(1<>1,h=23===r?Math.pow(2,-24)-Math.pow(2,-77):0,d=o?0:i-1,c=o?1:-1,f=0>e||0===e&&0>1/e?1:0;for(e=Math.abs(e),isNaN(e)||1/0===e?(a=isNaN(e)?1:0,s=g):(s=Math.floor(Math.log(e)/Math.LN2),e*(u=Math.pow(2,-s))<1&&(s--,u*=2),e+=s+l>=1?h/u:h*Math.pow(2,1-l),e*u>=2&&(s++,u/=2),s+l>=g?(a=0,s=g):s+l>=1?(a=(e*u-1)*Math.pow(2,r),s+=l):(a=e*Math.pow(2,l-1)*Math.pow(2,r),s=0));r>=8;t[n+d]=255&a,d+=c,a/=256,r-=8);for(s=s<0;t[n+d]=255&s,d+=c,s/=256,p-=8);t[n+d-c]|=128*f}},{}],5:[function(t,e){var n=Array.isArray,o=Object.prototype.toString;e.exports=n||function(t){return!!t&&"[object Array]"==o.call(t)}},{}],6:[function(t,e){function n(t){return"average"===t||"sum"===t||"median"===t||"min"===t||"max"===t||"deviation"===t||"variance"===t||"count"===t}var o=t("turf-average"),r=t("turf-sum"),i=t("turf-median"),s=t("turf-min"),a=t("turf-max"),u=t("turf-deviation"),p=t("turf-variance"),g=t("turf-count"),l={};l.average=o,l.sum=r,l.median=i,l.min=s,l.max=a,l.deviation=u,l.variance=p,l.count=g,e.exports=function(t,e,o){for(var r=0,i=o.length;i>r;r++){var s=o[r],a=s.aggregation;if(!n(a))throw new Error('"'+a+'" is not a recognized aggregation operation.');t="count"===a?l[a](t,e,s.outField):l[a](t,e,s.inField,s.outField)}return t}},{"turf-average":11,"turf-count":56,"turf-deviation":58,"turf-max":91,"turf-median":92,"turf-min":96,"turf-sum":116,"turf-variance":125}],7:[function(t,e){var n=t("turf-distance"),o=t("turf-point"),r=t("turf-bearing"),i=t("turf-destination");e.exports=function(t,e,s){var a;if("Feature"===t.type)a=t.geometry.coordinates;else{if("LineString"!==t.type)throw new Error("input must be a LineString Feature or Geometry");a=t.geometry.coordinates}for(var u=0,p=0;p=u&&p===a.length-1);p++){if(u>=e){var g=e-u;if(g){var l=r(o(a[p]),o(a[p-1]))-180,h=i(o(a[p]),g,l,s);return h}return o(a[p])}u+=n(o(a[p]),o(a[p+1]),s)}return o(a[a.length-1])}},{"turf-bearing":13,"turf-destination":57,"turf-distance":60,"turf-point":102}],8:[function(t,e){var n=t("geojson-area").geometry;e.exports=function(t){if("FeatureCollection"===t.type){for(var e=0,o=0;e0){e+=Math.abs(r(t[0]));for(var n=1;n2){for(var n,o,r=0;rt&&(e.push(o),n=r)}return e},n.prototype.vector=function(t){var e=this.pos(t+10),n=this.pos(t-10);return{angle:180*Math.atan2(e.y-n.y,e.x-n.x)/3.14,speed:Math.sqrt((n.x-e.x)*(n.x-e.x)+(n.y-e.y)*(n.y-e.y)+(n.z-e.z)*(n.z-e.z))}},n.prototype.pos=function(t){function e(t,e,n,o,r){var i=function(t){var e=t*t,n=e*t;return[n,3*e*(1-t),3*t*(1-t)*(1-t),(1-t)*(1-t)*(1-t)]},s=i(t),a={x:r.x*s[0]+o.x*s[1]+n.x*s[2]+e.x*s[3],y:r.y*s[0]+o.y*s[1]+n.y*s[2]+e.y*s[3],z:r.z*s[0]+o.z*s[1]+n.z*s[2]+e.z*s[3]};return a}var n=t-this.delay;0>n&&(n=0),n>this.duration&&(n=this.duration-1);var o=n/this.duration;if(o>=1)return this.points[this.length-1];var r=Math.floor((this.points.length-1)*o),i=(this.length-1)*o-r;return e(i,this.points[r],this.controls[r][1],this.controls[r+1][0],this.points[r+1])},e.exports=n},{}],16:[function(t,e){var n=t("turf-featurecollection"),o=t("turf-polygon"),r=t("turf-combine"),i=t("jsts");e.exports=function(t,e,n){var o;switch(n){case"miles":e/=69.047;break;case"feet":e/=364568;break;case"kilometers":e/=111.12;break;case"meters":e/=111120;break;case"degrees":}if("FeatureCollection"===t.type){var i=r(t);return i.properties={},o=s(i,e)}return o=s(t,e)};var s=function(t,e){var r=new i.io.GeoJSONReader,s=r.read(JSON.stringify(t.geometry)),a=s.buffer(e),u=new i.io.GeoJSONParser;return a=u.write(a),"MultiPolygon"===a.type?(a={type:"Feature",geometry:a,properties:{}},a=n([a])):a=n([o(a.coordinates)]),a}},{jsts:17,"turf-combine":24,"turf-featurecollection":72,"turf-polygon":103}],17:[function(t,e){t("javascript.util");var n=t("./lib/jsts");e.exports=n},{"./lib/jsts":18,"javascript.util":20}],18:[function(t,e){jsts={version:"0.15.0",algorithm:{distance:{},locate:{}},error:{},geom:{util:{}},geomgraph:{index:{}},index:{bintree:{},chain:{},kdtree:{},quadtree:{},strtree:{}},io:{},noding:{snapround:{}},operation:{buffer:{},distance:{},overlay:{snap:{}},polygonize:{},predicate:{},relate:{},union:{},valid:{}},planargraph:{},simplify:{},triangulate:{quadedge:{}},util:{}},"function"!=typeof String.prototype.trim&&(String.prototype.trim=function(){return this.replace(/^\s+|\s+$/g,"")}),jsts.abstractFunc=function(){throw new jsts.error.AbstractMethodInvocationError},jsts.error={},jsts.error.IllegalArgumentError=function(t){this.name="IllegalArgumentError",this.message=t},jsts.error.IllegalArgumentError.prototype=new Error,jsts.error.TopologyError=function(t,e){this.name="TopologyError",this.message=e?t+" [ "+e+" ]":t},jsts.error.TopologyError.prototype=new Error,jsts.error.AbstractMethodInvocationError=function(){this.name="AbstractMethodInvocationError",this.message="Abstract method called, should be implemented in subclass."},jsts.error.AbstractMethodInvocationError.prototype=new Error,jsts.error.NotImplementedError=function(){this.name="NotImplementedError",this.message="This method has not yet been implemented."},jsts.error.NotImplementedError.prototype=new Error,jsts.error.NotRepresentableError=function(t){this.name="NotRepresentableError",this.message=t},jsts.error.NotRepresentableError.prototype=new Error,jsts.error.LocateFailureError=function(t){this.name="LocateFailureError",this.message=t},jsts.error.LocateFailureError.prototype=new Error,"undefined"!=typeof e&&(e.exports=jsts),jsts.geom.GeometryFilter=function(){},jsts.geom.GeometryFilter.prototype.filter=function(){throw new jsts.error.AbstractMethodInvocationError},jsts.geom.util.PolygonExtracter=function(t){this.comps=t},jsts.geom.util.PolygonExtracter.prototype=new jsts.geom.GeometryFilter,jsts.geom.util.PolygonExtracter.prototype.comps=null,jsts.geom.util.PolygonExtracter.getPolygons=function(t,e){return void 0===e&&(e=[]),t instanceof jsts.geom.Polygon?e.push(t):t instanceof jsts.geom.GeometryCollection&&t.apply(new jsts.geom.util.PolygonExtracter(e)),e},jsts.geom.util.PolygonExtracter.prototype.filter=function(t){t instanceof jsts.geom.Polygon&&this.comps.push(t)},jsts.io.WKTParser=function(t){this.geometryFactory=t||new jsts.geom.GeometryFactory,this.regExes={typeStr:/^\s*(\w+)\s*\(\s*(.*)\s*\)\s*$/,emptyTypeStr:/^\s*(\w+)\s*EMPTY\s*$/,spaces:/\s+/,parenComma:/\)\s*,\s*\(/,doubleParenComma:/\)\s*\)\s*,\s*\(\s*\(/,trimParens:/^\s*\(?(.*?)\)?\s*$/}},jsts.io.WKTParser.prototype.read=function(t){var e,n,o;t=t.replace(/[\n\r]/g," ");var r=this.regExes.typeStr.exec(t);if(-1!==t.search("EMPTY")&&(r=this.regExes.emptyTypeStr.exec(t),r[2]=void 0),r&&(n=r[1].toLowerCase(),o=r[2],this.parse[n]&&(e=this.parse[n].apply(this,[o]))),void 0===e)throw new Error("Could not parse WKT "+t);return e},jsts.io.WKTParser.prototype.write=function(t){return this.extractGeometry(t)},jsts.io.WKTParser.prototype.extractGeometry=function(t){var e=t.CLASS_NAME.split(".")[2].toLowerCase(); -if(!this.extract[e])return null;var n,o=e.toUpperCase();return n=t.isEmpty()?o+" EMPTY":o+"("+this.extract[e].apply(this,[t])+")"},jsts.io.WKTParser.prototype.extract={coordinate:function(t){return t.x+" "+t.y},point:function(t){return t.coordinate.x+" "+t.coordinate.y},multipoint:function(t){for(var e=[],n=0,o=t.geometries.length;o>n;++n)e.push("("+this.extract.point.apply(this,[t.geometries[n]])+")");return e.join(",")},linestring:function(t){for(var e=[],n=0,o=t.points.length;o>n;++n)e.push(this.extract.coordinate.apply(this,[t.points[n]]));return e.join(",")},multilinestring:function(t){for(var e=[],n=0,o=t.geometries.length;o>n;++n)e.push("("+this.extract.linestring.apply(this,[t.geometries[n]])+")");return e.join(",")},polygon:function(t){var e=[];e.push("("+this.extract.linestring.apply(this,[t.shell])+")");for(var n=0,o=t.holes.length;o>n;++n)e.push("("+this.extract.linestring.apply(this,[t.holes[n]])+")");return e.join(",")},multipolygon:function(t){for(var e=[],n=0,o=t.geometries.length;o>n;++n)e.push("("+this.extract.polygon.apply(this,[t.geometries[n]])+")");return e.join(",")},geometrycollection:function(t){for(var e=[],n=0,o=t.geometries.length;o>n;++n)e.push(this.extractGeometry.apply(this,[t.geometries[n]]));return e.join(",")}},jsts.io.WKTParser.prototype.parse={point:function(t){if(void 0===t)return this.geometryFactory.createPoint(null);var e=t.trim().split(this.regExes.spaces);return this.geometryFactory.createPoint(new jsts.geom.Coordinate(e[0],e[1]))},multipoint:function(t){if(void 0===t)return this.geometryFactory.createMultiPoint(null);for(var e,n=t.trim().split(","),o=[],r=0,i=n.length;i>r;++r)e=n[r].replace(this.regExes.trimParens,"$1"),o.push(this.parse.point.apply(this,[e]));return this.geometryFactory.createMultiPoint(o)},linestring:function(t){if(void 0===t)return this.geometryFactory.createLineString(null);for(var e,n=t.trim().split(","),o=[],r=0,i=n.length;i>r;++r)e=n[r].trim().split(this.regExes.spaces),o.push(new jsts.geom.Coordinate(e[0],e[1]));return this.geometryFactory.createLineString(o)},linearring:function(t){if(void 0===t)return this.geometryFactory.createLinearRing(null);for(var e,n=t.trim().split(","),o=[],r=0,i=n.length;i>r;++r)e=n[r].trim().split(this.regExes.spaces),o.push(new jsts.geom.Coordinate(e[0],e[1]));return this.geometryFactory.createLinearRing(o)},multilinestring:function(t){if(void 0===t)return this.geometryFactory.createMultiLineString(null);for(var e,n=t.trim().split(this.regExes.parenComma),o=[],r=0,i=n.length;i>r;++r)e=n[r].replace(this.regExes.trimParens,"$1"),o.push(this.parse.linestring.apply(this,[e]));return this.geometryFactory.createMultiLineString(o)},polygon:function(t){if(void 0===t)return this.geometryFactory.createPolygon(null);for(var e,n,o,r,i=t.trim().split(this.regExes.parenComma),s=[],a=0,u=i.length;u>a;++a)e=i[a].replace(this.regExes.trimParens,"$1"),n=this.parse.linestring.apply(this,[e]),o=this.geometryFactory.createLinearRing(n.points),0===a?r=o:s.push(o);return this.geometryFactory.createPolygon(r,s)},multipolygon:function(t){if(void 0===t)return this.geometryFactory.createMultiPolygon(null);for(var e,n=t.trim().split(this.regExes.doubleParenComma),o=[],r=0,i=n.length;i>r;++r)e=n[r].replace(this.regExes.trimParens,"$1"),o.push(this.parse.polygon.apply(this,[e]));return this.geometryFactory.createMultiPolygon(o)},geometrycollection:function(t){if(void 0===t)return this.geometryFactory.createGeometryCollection(null);t=t.replace(/,\s*([A-Za-z])/g,"|$1");for(var e=t.trim().split("|"),n=[],o=0,r=e.length;r>o;++o)n.push(jsts.io.WKTParser.prototype.read.apply(this,[e[o]]));return this.geometryFactory.createGeometryCollection(n)}},jsts.index.ItemVisitor=function(){},jsts.index.ItemVisitor.prototype.visitItem=function(){throw new jsts.error.AbstractMethodInvocationError},jsts.algorithm.CGAlgorithms=function(){},jsts.algorithm.CGAlgorithms.CLOCKWISE=-1,jsts.algorithm.CGAlgorithms.RIGHT=jsts.algorithm.CGAlgorithms.CLOCKWISE,jsts.algorithm.CGAlgorithms.COUNTERCLOCKWISE=1,jsts.algorithm.CGAlgorithms.LEFT=jsts.algorithm.CGAlgorithms.COUNTERCLOCKWISE,jsts.algorithm.CGAlgorithms.COLLINEAR=0,jsts.algorithm.CGAlgorithms.STRAIGHT=jsts.algorithm.CGAlgorithms.COLLINEAR,jsts.algorithm.CGAlgorithms.orientationIndex=function(t,e,n){var o,r,i,s;return o=e.x-t.x,r=e.y-t.y,i=n.x-e.x,s=n.y-e.y,jsts.algorithm.RobustDeterminant.signOfDet2x2(o,r,i,s)},jsts.algorithm.CGAlgorithms.isPointInRing=function(t,e){return jsts.algorithm.CGAlgorithms.locatePointInRing(t,e)!==jsts.geom.Location.EXTERIOR},jsts.algorithm.CGAlgorithms.locatePointInRing=function(t,e){return jsts.algorithm.RayCrossingCounter.locatePointInRing(t,e)},jsts.algorithm.CGAlgorithms.isOnLine=function(t,e){var n,o,r,i,s;for(n=new jsts.algorithm.RobustLineIntersector,o=1,r=e.length;r>o;o++)if(i=e[o-1],s=e[o],n.computeIntersection(t,i,s),n.hasIntersection())return!0;return!1},jsts.algorithm.CGAlgorithms.isCCW=function(t){var e,n,o,r,i,s,a,u,p,g,l;if(e=t.length-1,3>e)throw new jsts.IllegalArgumentError("Ring has fewer than 3 points, so orientation cannot be determined");for(n=t[0],o=0,p=1;e>=p;p++)r=t[p],r.y>n.y&&(n=r,o=p);i=o;do i-=1,0>i&&(i=e);while(t[i].equals2D(n)&&i!==o);s=o;do s=(s+1)%e;while(t[s].equals2D(n)&&s!==o);return a=t[i],u=t[s],a.equals2D(n)||u.equals2D(n)||a.equals2D(u)?!1:(g=jsts.algorithm.CGAlgorithms.computeOrientation(a,n,u),l=!1,l=0===g?a.x>u.x:g>0)},jsts.algorithm.CGAlgorithms.computeOrientation=function(t,e,n){return jsts.algorithm.CGAlgorithms.orientationIndex(t,e,n)},jsts.algorithm.CGAlgorithms.distancePointLine=function(t,e,n){if(e instanceof jsts.geom.Coordinate||jsts.algorithm.CGAlgorithms.distancePointLine2.apply(this,arguments),e.x===n.x&&e.y===n.y)return t.distance(e);var o,r;return o=((t.x-e.x)*(n.x-e.x)+(t.y-e.y)*(n.y-e.y))/((n.x-e.x)*(n.x-e.x)+(n.y-e.y)*(n.y-e.y)),0>=o?t.distance(e):o>=1?t.distance(n):(r=((e.y-t.y)*(n.x-e.x)-(e.x-t.x)*(n.y-e.y))/((n.x-e.x)*(n.x-e.x)+(n.y-e.y)*(n.y-e.y)),Math.abs(r)*Math.sqrt((n.x-e.x)*(n.x-e.x)+(n.y-e.y)*(n.y-e.y)))},jsts.algorithm.CGAlgorithms.distancePointLinePerpendicular=function(t,e,n){var o=((e.y-t.y)*(n.x-e.x)-(e.x-t.x)*(n.y-e.y))/((n.x-e.x)*(n.x-e.x)+(n.y-e.y)*(n.y-e.y));return Math.abs(o)*Math.sqrt((n.x-e.x)*(n.x-e.x)+(n.y-e.y)*(n.y-e.y))},jsts.algorithm.CGAlgorithms.distancePointLine2=function(t,e){var n,o,r,i;if(0===e.length)throw new jsts.error.IllegalArgumentError("Line array must contain at least one vertex");for(n=t.distance(e[0]),o=0,r=e.length-1;r>o;o++)i=jsts.algorithm.CGAlgorithms.distancePointLine(t,e[o],e[o+1]),n>i&&(n=i);return n},jsts.algorithm.CGAlgorithms.distanceLineLine=function(t,e,n,o){if(t.equals(e))return jsts.algorithm.CGAlgorithms.distancePointLine(t,n,o);if(n.equals(o))return jsts.algorithm.CGAlgorithms.distancePointLine(o,t,e);var r,i,s,a,u,p;return r=(t.y-n.y)*(o.x-n.x)-(t.x-n.x)*(o.y-n.y),i=(e.x-t.x)*(o.y-n.y)-(e.y-t.y)*(o.x-n.x),s=(t.y-n.y)*(e.x-t.x)-(t.x-n.x)*(e.y-t.y),a=(e.x-t.x)*(o.y-n.y)-(e.y-t.y)*(o.x-n.x),0===i||0===a?Math.min(jsts.algorithm.CGAlgorithms.distancePointLine(t,n,o),Math.min(jsts.algorithm.CGAlgorithms.distancePointLine(e,n,o),Math.min(jsts.algorithm.CGAlgorithms.distancePointLine(n,t,e),jsts.algorithm.CGAlgorithms.distancePointLine(o,t,e)))):(u=s/a,p=r/i,0>p||p>1||0>u||u>1?Math.min(jsts.algorithm.CGAlgorithms.distancePointLine(t,n,o),Math.min(jsts.algorithm.CGAlgorithms.distancePointLine(e,n,o),Math.min(jsts.algorithm.CGAlgorithms.distancePointLine(n,t,e),jsts.algorithm.CGAlgorithms.distancePointLine(o,t,e)))):0)},jsts.algorithm.CGAlgorithms.signedArea=function(t){if(t.length<3)return 0;var e,n,o,r,i,s,a;for(e=0,n=0,o=t.length-1;o>n;n++)r=t[n].x,i=t[n].y,s=t[n+1].x,a=t[n+1].y,e+=(r+s)*(a-i);return-e/2},jsts.algorithm.CGAlgorithms.signedArea=function(t){var e,n,o,r,i,s,a,u;if(e=t.length,3>e)return 0;for(n=0,o=t[0],r=o.x,i=o.y,s=1;e>s;s++)o=t[s],a=o.x,u=o.y,n+=(r+a)*(u-i),r=a,i=u;return-n/2},jsts.algorithm.CGAlgorithms.computeLength=function(t){var e,n,o,r,i,s,a,u,p,g,l=t.length;if(1>=l)return 0;for(e=0,u=t[0],n=u.x,o=u.y,p=1,g=l,p;l>p;p++)u=t[p],r=u.x,i=u.y,s=r-n,a=i-o,e+=Math.sqrt(s*s+a*a),n=r,o=i;return e},jsts.algorithm.CGAlgorithms.length=function(){},jsts.algorithm.Angle=function(){},jsts.algorithm.Angle.PI_TIMES_2=2*Math.PI,jsts.algorithm.Angle.PI_OVER_2=Math.PI/2,jsts.algorithm.Angle.PI_OVER_4=Math.PI/4,jsts.algorithm.Angle.COUNTERCLOCKWISE=jsts.algorithm.CGAlgorithms.COUNTERCLOCKWISE,jsts.algorithm.Angle.CLOCKWISE=jsts.algorithm.CGAlgorithms.CLOCKWISE,jsts.algorithm.Angle.NONE=jsts.algorithm.CGAlgorithms.COLLINEAR,jsts.algorithm.Angle.toDegrees=function(t){return 180*t/Math.PI},jsts.algorithm.Angle.toRadians=function(t){return t*Math.PI/180},jsts.algorithm.Angle.angle=function(){return 1===arguments.length?jsts.algorithm.Angle.angleFromOrigo(arguments[0]):jsts.algorithm.Angle.angleBetweenCoords(arguments[0],arguments[1])},jsts.algorithm.Angle.angleBetweenCoords=function(t,e){var n,o;return n=e.x-t.x,o=e.y-t.y,Math.atan2(o,n)},jsts.algorithm.Angle.angleFromOrigo=function(t){return Math.atan2(t.y,t.x)},jsts.algorithm.Angle.isAcute=function(t,e,n){var o,r,i,s,a;return o=t.x-e.x,r=t.y-e.y,i=n.x-e.x,s=n.y-e.y,a=o*i+r*s,a>0},jsts.algorithm.Angle.isObtuse=function(t,e,n){var o,r,i,s,a;return o=t.x-e.x,r=t.y-e.y,i=n.x-e.x,s=n.y-e.y,a=o*i+r*s,0>a},jsts.algorithm.Angle.angleBetween=function(t,e,n){var o,r;return o=jsts.algorithm.Angle.angle(e,t),r=jsts.algorithm.Angle.angle(e,n),jsts.algorithm.Angle.diff(o,r)},jsts.algorithm.Angle.angleBetweenOriented=function(t,e,n){var o,r,i;return o=jsts.algorithm.Angle.angle(e,t),r=jsts.algorithm.Angle.angle(e,n),i=r-o,i<=-Math.PI?i+jsts.algorithm.Angle.PI_TIMES_2:i>Math.PI?i-jsts.algorithm.Angle.PI_TIMES_2:i},jsts.algorithm.Angle.interiorAngle=function(t,e,n){var o,r;return o=jsts.algorithm.Angle.angle(e,t),r=jsts.algorithm.Angle.angle(e,n),Math.abs(r-o)},jsts.algorithm.Angle.getTurn=function(t,e){var n=Math.sin(e-t);return n>0?jsts.algorithm.Angle.COUNTERCLOCKWISE:0>n?jsts.algorithm.Angle.CLOCKWISE:jsts.algorithm.Angle.NONE},jsts.algorithm.Angle.normalize=function(t){for(;t>Math.PI;)t-=jsts.algorithm.Angle.PI_TIMES_2;for(;t<=-Math.PI;)t+=jsts.algorithm.Angle.PI_TIMES_2;return t},jsts.algorithm.Angle.normalizePositive=function(t){if(0>t){for(;0>t;)t+=jsts.algorithm.Angle.PI_TIMES_2;t>=jsts.algorithm.Angle.PI_TIMES_2&&(t=0)}else{for(;t>=jsts.algorithm.Angle.PI_TIMES_2;)t-=jsts.algorithm.Angle.PI_TIMES_2;0>t&&(t=0)}return t},jsts.algorithm.Angle.diff=function(t,e){var n;return n=e>t?e-t:t-e,n>Math.PI&&(n=2*Math.PI-n),n},jsts.geom.GeometryComponentFilter=function(){},jsts.geom.GeometryComponentFilter.prototype.filter=function(){throw new jsts.error.AbstractMethodInvocationError},jsts.geom.util.LinearComponentExtracter=function(t,e){this.lines=t,this.isForcedToLineString=e},jsts.geom.util.LinearComponentExtracter.prototype=new jsts.geom.GeometryComponentFilter,jsts.geom.util.LinearComponentExtracter.prototype.lines=null,jsts.geom.util.LinearComponentExtracter.prototype.isForcedToLineString=!1,jsts.geom.util.LinearComponentExtracter.getLines=function(t,e){if(1==arguments.length)return jsts.geom.util.LinearComponentExtracter.getLines5.apply(this,arguments);if(2==arguments.length&&"boolean"==typeof e)return jsts.geom.util.LinearComponentExtracter.getLines6.apply(this,arguments);if(2==arguments.length&&t instanceof jsts.geom.Geometry)return jsts.geom.util.LinearComponentExtracter.getLines3.apply(this,arguments);if(3==arguments.length&&t instanceof jsts.geom.Geometry)return jsts.geom.util.LinearComponentExtracter.getLines4.apply(this,arguments);if(3==arguments.length)return jsts.geom.util.LinearComponentExtracter.getLines2.apply(this,arguments);for(var n=0;ne;e++)this.precisionModel.makePrecise(t.points[e]);else if(t.geometries)for(e=0,n=t.geometries.length;n>e;e++)this.reducePrecision(t.geometries[e])}}(),jsts.geom.Geometry=function(t){this.factory=t},jsts.geom.Geometry.prototype.envelope=null,jsts.geom.Geometry.prototype.factory=null,jsts.geom.Geometry.prototype.getGeometryType=function(){return"Geometry"},jsts.geom.Geometry.hasNonEmptyElements=function(t){var e;for(e=0;ee?!1:DistanceOp.isWithinDistance(this,t,e)},jsts.geom.Geometry.prototype.isRectangle=function(){return!1},jsts.geom.Geometry.prototype.getArea=function(){return 0},jsts.geom.Geometry.prototype.getLength=function(){return 0},jsts.geom.Geometry.prototype.getCentroid=function(){if(this.isEmpty())return null;var t,e=null,n=this.getDimension();return 0===n?(t=new jsts.algorithm.CentroidPoint,t.add(this),e=t.getCentroid()):1===n?(t=new jsts.algorithm.CentroidLine,t.add(this),e=t.getCentroid()):(t=new jsts.algorithm.CentroidArea,t.add(this),e=t.getCentroid()),this.createPointFromInternalCoord(e,this)},jsts.geom.Geometry.prototype.getInteriorPoint=function(){var t,e=null,n=this.getDimension();return 0===n?(t=new jsts.algorithm.InteriorPointPoint(this),e=t.getInteriorPoint()):1===n?(t=new jsts.algorithm.InteriorPointLine(this),e=t.getInteriorPoint()):(t=new jsts.algorithm.InteriorPointArea(this),e=t.getInteriorPoint()),this.createPointFromInternalCoord(e,this)},jsts.geom.Geometry.prototype.getDimension=function(){throw new jsts.error.AbstractMethodInvocationError},jsts.geom.Geometry.prototype.getBoundary=function(){throw new jsts.error.AbstractMethodInvocationError},jsts.geom.Geometry.prototype.getBoundaryDimension=function(){throw new jsts.error.AbstractMethodInvocationError},jsts.geom.Geometry.prototype.getEnvelope=function(){return this.getFactory().toGeometry(this.getEnvelopeInternal())},jsts.geom.Geometry.prototype.getEnvelopeInternal=function(){return null===this.envelope&&(this.envelope=this.computeEnvelopeInternal()),this.envelope},jsts.geom.Geometry.prototype.disjoint=function(t){return!this.intersects(t)},jsts.geom.Geometry.prototype.touches=function(t){return this.getEnvelopeInternal().intersects(t.getEnvelopeInternal())?this.relate(t).isTouches(this.getDimension(),t.getDimension()):!1},jsts.geom.Geometry.prototype.intersects=function(t){return this.getEnvelopeInternal().intersects(t.getEnvelopeInternal())?this.isRectangle()?jsts.operation.predicate.RectangleIntersects.intersects(this,t):t.isRectangle()?jsts.operation.predicate.RectangleIntersects.intersects(t,this):this.relate(t).isIntersects():!1},jsts.geom.Geometry.prototype.crosses=function(t){return this.getEnvelopeInternal().intersects(t.getEnvelopeInternal())?this.relate(t).isCrosses(this.getDimension(),t.getDimension()):!1},jsts.geom.Geometry.prototype.within=function(t){return t.contains(this)},jsts.geom.Geometry.prototype.contains=function(t){return this.getEnvelopeInternal().contains(t.getEnvelopeInternal())?this.isRectangle()?jsts.operation.predicate.RectangleContains.contains(this,t):this.relate(t).isContains():!1},jsts.geom.Geometry.prototype.overlaps=function(t){return this.getEnvelopeInternal().intersects(t.getEnvelopeInternal())?this.relate(t).isOverlaps(this.getDimension(),t.getDimension()):!1},jsts.geom.Geometry.prototype.covers=function(t){return this.getEnvelopeInternal().covers(t.getEnvelopeInternal())?this.isRectangle()?!0:this.relate(t).isCovers():!1},jsts.geom.Geometry.prototype.coveredBy=function(t){return t.covers(this)},jsts.geom.Geometry.prototype.relate=function(t,e){return 1===arguments.length?this.relate2.apply(this,arguments):this.relate2(t).matches(e)},jsts.geom.Geometry.prototype.relate2=function(t){return this.checkNotGeometryCollection(this),this.checkNotGeometryCollection(t),jsts.operation.relate.RelateOp.relate(this,t)},jsts.geom.Geometry.prototype.equalsTopo=function(t){return this.getEnvelopeInternal().equals(t.getEnvelopeInternal())?this.relate(t).isEquals(this.getDimension(),t.getDimension()):!1},jsts.geom.Geometry.prototype.equals=function(t){return t instanceof jsts.geom.Geometry||t instanceof jsts.geom.LinearRing||t instanceof jsts.geom.Polygon||t instanceof jsts.geom.GeometryCollection||t instanceof jsts.geom.MultiPoint||t instanceof jsts.geom.MultiLineString||t instanceof jsts.geom.MultiPolygon?this.equalsExact(t):!1},jsts.geom.Geometry.prototype.buffer=function(t,e,n){var o=new jsts.operation.buffer.BufferParameters(e,n);return jsts.operation.buffer.BufferOp.bufferOp2(this,t,o)},jsts.geom.Geometry.prototype.convexHull=function(){return new jsts.algorithm.ConvexHull(this).getConvexHull()},jsts.geom.Geometry.prototype.intersection=function(t){if(this.isEmpty())return this.getFactory().createGeometryCollection(null);if(t.isEmpty())return this.getFactory().createGeometryCollection(null);if(this.isGeometryCollection(this));return this.checkNotGeometryCollection(this),this.checkNotGeometryCollection(t),jsts.operation.overlay.snap.SnapIfNeededOverlayOp.overlayOp(this,t,jsts.operation.overlay.OverlayOp.INTERSECTION)},jsts.geom.Geometry.prototype.union=function(t){return 0===arguments.length?jsts.operation.union.UnaryUnionOp.union(this):this.isEmpty()?t.clone():t.isEmpty()?this.clone():(this.checkNotGeometryCollection(this),this.checkNotGeometryCollection(t),jsts.operation.overlay.snap.SnapIfNeededOverlayOp.overlayOp(this,t,jsts.operation.overlay.OverlayOp.UNION))},jsts.geom.Geometry.prototype.difference=function(t){return this.isEmpty()?this.getFactory().createGeometryCollection(null):t.isEmpty()?this.clone():(this.checkNotGeometryCollection(this),this.checkNotGeometryCollection(t),jsts.operation.overlay.snap.SnapIfNeededOverlayOp.overlayOp(this,t,jsts.operation.overlay.OverlayOp.DIFFERENCE))},jsts.geom.Geometry.prototype.symDifference=function(t){return this.isEmpty()?t.clone():t.isEmpty()?this.clone():(this.checkNotGeometryCollection(this),this.checkNotGeometryCollection(t),jsts.operation.overlay.snap.SnapIfNeededOverlayOp.overlayOp(this,t,jsts.operation.overlay.OverlayOp.SYMDIFFERENCE))},jsts.geom.Geometry.prototype.equalsExact=function(){throw new jsts.error.AbstractMethodInvocationError},jsts.geom.Geometry.prototype.equalsNorm=function(t){return null===t||void 0===t?!1:this.norm().equalsExact(t.norm())},jsts.geom.Geometry.prototype.apply=function(){throw new jsts.error.AbstractMethodInvocationError},jsts.geom.Geometry.prototype.clone=function(){throw new jsts.error.AbstractMethodInvocationError},jsts.geom.Geometry.prototype.normalize=function(){throw new jsts.error.AbstractMethodInvocationError},jsts.geom.Geometry.prototype.norm=function(){var t=this.clone();return t.normalize(),t},jsts.geom.Geometry.prototype.compareTo=function(t){var e=t;return this.getClassSortIndex()!==e.getClassSortIndex()?this.getClassSortIndex()-e.getClassSortIndex():this.isEmpty()&&e.isEmpty()?0:this.isEmpty()?-1:e.isEmpty()?1:this.compareToSameClass(t)},jsts.geom.Geometry.prototype.isEquivalentClass=function(t){return this instanceof jsts.geom.Point&&t instanceof jsts.geom.Point?!0:this instanceof jsts.geom.LineString&&t instanceof jsts.geom.LineString|t instanceof jsts.geom.LinearRing?!0:this instanceof jsts.geom.LinearRing&&t instanceof jsts.geom.LineString|t instanceof jsts.geom.LinearRing?!0:this instanceof jsts.geom.Polygon&&t instanceof jsts.geom.Polygon?!0:this instanceof jsts.geom.MultiPoint&&t instanceof jsts.geom.MultiPoint?!0:this instanceof jsts.geom.MultiLineString&&t instanceof jsts.geom.MultiLineString?!0:this instanceof jsts.geom.MultiPolygon&&t instanceof jsts.geom.MultiPolygon?!0:this instanceof jsts.geom.GeometryCollection&&t instanceof jsts.geom.GeometryCollection?!0:!1},jsts.geom.Geometry.prototype.checkNotGeometryCollection=function(t){if(t.isGeometryCollectionBase())throw new jsts.error.IllegalArgumentError("This method does not support GeometryCollection")},jsts.geom.Geometry.prototype.isGeometryCollection=function(){return this instanceof jsts.geom.GeometryCollection},jsts.geom.Geometry.prototype.isGeometryCollectionBase=function(){return"jsts.geom.GeometryCollection"===this.CLASS_NAME},jsts.geom.Geometry.prototype.computeEnvelopeInternal=function(){throw new jsts.error.AbstractMethodInvocationError},jsts.geom.Geometry.prototype.compareToSameClass=function(){throw new jsts.error.AbstractMethodInvocationError},jsts.geom.Geometry.prototype.compare=function(t,e){for(var n=t.iterator(),o=e.iterator();n.hasNext()&&o.hasNext();){var r=n.next(),i=o.next(),s=r.compareTo(i);if(0!==s)return s}return n.hasNext()?1:o.hasNext()?-1:0},jsts.geom.Geometry.prototype.equal=function(t,e,n){return void 0===n||null===n||0===n?t.equals(e):t.distance(e)<=n},jsts.geom.Geometry.prototype.getClassSortIndex=function(){for(var t=[jsts.geom.Point,jsts.geom.MultiPoint,jsts.geom.LineString,jsts.geom.LinearRing,jsts.geom.MultiLineString,jsts.geom.Polygon,jsts.geom.MultiPolygon,jsts.geom.GeometryCollection],e=0;et.x?1:this.yt.y?1:0},jsts.geom.Coordinate.prototype.toString=function(){return"("+this.x+", "+this.y+")"}}(),jsts.geom.Envelope=function(){jsts.geom.Envelope.prototype.init.apply(this,arguments)},jsts.geom.Envelope.prototype.minx=null,jsts.geom.Envelope.prototype.maxx=null,jsts.geom.Envelope.prototype.miny=null,jsts.geom.Envelope.prototype.maxy=null,jsts.geom.Envelope.prototype.init=function(){"number"==typeof arguments[0]&&4===arguments.length?this.initFromValues(arguments[0],arguments[1],arguments[2],arguments[3]):arguments[0]instanceof jsts.geom.Coordinate&&1===arguments.length?this.initFromCoordinate(arguments[0]):arguments[0]instanceof jsts.geom.Coordinate&&2===arguments.length?this.initFromCoordinates(arguments[0],arguments[1]):arguments[0]instanceof jsts.geom.Envelope&&1===arguments.length?this.initFromEnvelope(arguments[0]):this.setToNull()},jsts.geom.Envelope.prototype.initFromValues=function(t,e,n,o){e>t?(this.minx=t,this.maxx=e):(this.minx=e,this.maxx=t),o>n?(this.miny=n,this.maxy=o):(this.miny=o,this.maxy=n)},jsts.geom.Envelope.prototype.initFromCoordinates=function(t,e){this.initFromValues(t.x,e.x,t.y,e.y)},jsts.geom.Envelope.prototype.initFromCoordinate=function(t){this.initFromValues(t.x,t.x,t.y,t.y)},jsts.geom.Envelope.prototype.initFromEnvelope=function(t){this.minx=t.minx,this.maxx=t.maxx,this.miny=t.miny,this.maxy=t.maxy},jsts.geom.Envelope.prototype.setToNull=function(){this.minx=0,this.maxx=-1,this.miny=0,this.maxy=-1},jsts.geom.Envelope.prototype.isNull=function(){return this.maxxthis.maxx&&(this.maxx=t),ethis.maxy&&(this.maxy=e))},jsts.geom.Envelope.prototype.expandToIncludeEnvelope=function(t){t.isNull()||(this.isNull()?(this.minx=t.getMinX(),this.maxx=t.getMaxX(),this.miny=t.getMinY(),this.maxy=t.getMaxY()):(t.minxthis.maxx&&(this.maxx=t.maxx),t.minythis.maxy&&(this.maxy=t.maxy)))},jsts.geom.Envelope.prototype.expandBy=function(){1===arguments.length?this.expandByDistance(arguments[0]):this.expandByDistances(arguments[0],arguments[1])},jsts.geom.Envelope.prototype.expandByDistance=function(t){this.expandByDistances(t,t)},jsts.geom.Envelope.prototype.expandByDistances=function(t,e){this.isNull()||(this.minx-=t,this.maxx+=t,this.miny-=e,this.maxy+=e,(this.minx>this.maxx||this.miny>this.maxy)&&this.setToNull())},jsts.geom.Envelope.prototype.translate=function(t,e){this.isNull()||this.init(this.minx+t,this.maxx+t,this.miny+e,this.maxy+e)},jsts.geom.Envelope.prototype.centre=function(){return this.isNull()?null:new jsts.geom.Coordinate((this.minx+this.maxx)/2,(this.miny+this.maxy)/2)},jsts.geom.Envelope.prototype.intersection=function(t){if(this.isNull()||t.isNull()||!this.intersects(t))return new jsts.geom.Envelope;var e=this.minx>t.minx?this.minx:t.minx,n=this.miny>t.miny?this.miny:t.miny,o=this.maxxthis.maxx||t.maxxthis.maxy||t.maxythis.maxx||tthis.maxy||e=this.minx&&t<=this.maxx&&e>=this.miny&&e<=this.maxy},jsts.geom.Envelope.prototype.coversCoordinate=function(t){return this.coversValues(t.x,t.y)},jsts.geom.Envelope.prototype.coversEnvelope=function(t){return this.isNull()||t.isNull()?!1:t.minx>=this.minx&&t.maxx<=this.maxx&&t.miny>=this.miny&&t.maxy<=this.maxy},jsts.geom.Envelope.prototype.distance=function(t){if(this.intersects(t))return 0;var e=0;this.maxxt.maxx&&(e=this.minx-t.maxx);var n=0;return this.maxyt.maxy&&(n=this.miny-t.maxy),0===e?n:0===n?e:Math.sqrt(e*e+n*n)},jsts.geom.Envelope.prototype.equals=function(t){return this.isNull()?t.isNull():this.maxx===t.maxx&&this.maxy===t.maxy&&this.minx===t.minx&&this.miny===t.miny},jsts.geom.Envelope.prototype.toString=function(){return"Env["+this.minx+" : "+this.maxx+", "+this.miny+" : "+this.maxy+"]" -},jsts.geom.Envelope.intersects=function(t,e,n){if(4===arguments.length)return jsts.geom.Envelope.intersectsEnvelope(arguments[0],arguments[1],arguments[2],arguments[3]);var o=t.xe.x?t.x:e.x,i=t.ye.y?t.y:e.y;return n.x>=o&&n.x<=r&&n.y>=i&&n.y<=s?!0:!1},jsts.geom.Envelope.intersectsEnvelope=function(t,e,n,o){var r=Math.min(n.x,o.x),i=Math.max(n.x,o.x),s=Math.min(t.x,e.x),a=Math.max(t.x,e.x);return s>i?!1:r>a?!1:(r=Math.min(n.y,o.y),i=Math.max(n.y,o.y),s=Math.min(t.y,e.y),a=Math.max(t.y,e.y),s>i?!1:r>a?!1:!0)},jsts.geom.Envelope.prototype.clone=function(){return new jsts.geom.Envelope(this.minx,this.maxx,this.miny,this.maxy)},jsts.geom.util.GeometryCombiner=function(t){this.geomFactory=jsts.geom.util.GeometryCombiner.extractFactory(t),this.inputGeoms=t},jsts.geom.util.GeometryCombiner.combine=function(t){if(arguments.length>1)return this.combine2.apply(this,arguments);var e=new jsts.geom.util.GeometryCombiner(t);return e.combine()},jsts.geom.util.GeometryCombiner.combine2=function(){var t=new javascript.util.ArrayList;Array.prototype.slice.call(arguments).forEach(function(e){t.add(e)});var e=new jsts.geom.util.GeometryCombiner(t);return e.combine()},jsts.geom.util.GeometryCombiner.prototype.geomFactory=null,jsts.geom.util.GeometryCombiner.prototype.skipEmpty=!1,jsts.geom.util.GeometryCombiner.prototype.inputGeoms,jsts.geom.util.GeometryCombiner.extractFactory=function(t){return t.isEmpty()?null:t.iterator().next().getFactory()},jsts.geom.util.GeometryCombiner.prototype.combine=function(){var t,e=new javascript.util.ArrayList;for(t=this.inputGeoms.iterator();t.hasNext();){var n=t.next();this.extractElements(n,e)}return 0===e.size()?null!==this.geomFactory?this.geomFactory.createGeometryCollection(null):null:this.geomFactory.buildGeometry(e)},jsts.geom.util.GeometryCombiner.prototype.extractElements=function(t,e){if(null!==t)for(var n=0;nr;r++){var i=this.seg.distance(this.pts[r]);i>n&&(n=i,o=r)}if(n<=this.distanceTolerance)for(var s=t+1;e>s;s++)this.usePt[s]=!1;else this.simplifySection(t,o),this.simplifySection(o,e)}},jsts.geomgraph.EdgeIntersection=function(t,e,n){this.coord=new jsts.geom.Coordinate(t),this.segmentIndex=e,this.dist=n},jsts.geomgraph.EdgeIntersection.prototype.coord=null,jsts.geomgraph.EdgeIntersection.prototype.segmentIndex=null,jsts.geomgraph.EdgeIntersection.prototype.dist=null,jsts.geomgraph.EdgeIntersection.prototype.getCoordinate=function(){return this.coord},jsts.geomgraph.EdgeIntersection.prototype.getSegmentIndex=function(){return this.segmentIndex},jsts.geomgraph.EdgeIntersection.prototype.getDistance=function(){return this.dist},jsts.geomgraph.EdgeIntersection.prototype.compareTo=function(t){return this.compare(t.segmentIndex,t.dist)},jsts.geomgraph.EdgeIntersection.prototype.compare=function(t,e){return this.segmentIndext?1:this.diste?1:0},jsts.geomgraph.EdgeIntersection.prototype.isEndPoint=function(t){return 0===this.segmentIndex&&0===this.dist?!0:this.segmentIndex===t?!0:!1},jsts.geomgraph.EdgeIntersection.prototype.toString=function(){return""+this.segmentIndex+this.dist},function(){var t=jsts.geomgraph.EdgeIntersection,e=javascript.util.TreeMap;jsts.geomgraph.EdgeIntersectionList=function(t){this.nodeMap=new e,this.edge=t},jsts.geomgraph.EdgeIntersectionList.prototype.nodeMap=null,jsts.geomgraph.EdgeIntersectionList.prototype.edge=null,jsts.geomgraph.EdgeIntersectionList.prototype.isIntersection=function(t){for(var e=this.iterator();e.hasNext();){var n=e.next();if(n.coord.equals(t))return!0}return!1},jsts.geomgraph.EdgeIntersectionList.prototype.add=function(e,n,o){var r=new t(e,n,o),i=this.nodeMap.get(r);return null!==i?i:(this.nodeMap.put(r,r),r)},jsts.geomgraph.EdgeIntersectionList.prototype.iterator=function(){return this.nodeMap.values().iterator()},jsts.geomgraph.EdgeIntersectionList.prototype.addEndpoints=function(){var t=this.edge.pts.length-1;this.add(this.edge.pts[0],0,0),this.add(this.edge.pts[t],t,0)},jsts.geomgraph.EdgeIntersectionList.prototype.addSplitEdges=function(t){this.addEndpoints();for(var e=this.iterator(),n=e.next();e.hasNext();){var o=e.next(),r=this.createSplitEdge(n,o);t.add(r),n=o}},jsts.geomgraph.EdgeIntersectionList.prototype.createSplitEdge=function(t,e){var n=e.segmentIndex-t.segmentIndex+2,o=this.edge.pts[e.segmentIndex],r=e.dist>0||!e.coord.equals2D(o);r||n--;var i=[],s=0;i[s++]=new jsts.geom.Coordinate(t.coord);for(var a=t.segmentIndex+1;a<=e.segmentIndex;a++)i[s++]=this.edge.pts[a];return r&&(i[s]=e.coord),new jsts.geomgraph.Edge(i,new jsts.geomgraph.Label(this.edge.label))}}(),function(){var t=function(t){this.message=t};t.prototype=new Error,t.prototype.name="AssertionFailedException",jsts.util.AssertionFailedException=t}(),function(){var t=jsts.util.AssertionFailedException;jsts.util.Assert=function(){},jsts.util.Assert.isTrue=function(e,n){if(!e)throw null===n?new t:new t(n)},jsts.util.Assert.equals=function(e,n,o){if(!n.equals(e))throw new t("Expected "+e+" but encountered "+n+(null!=o?": "+o:""))},jsts.util.Assert.shouldNeverReachHere=function(e){throw new t("Should never reach here"+(null!=e?": "+e:""))}}(),function(){var t=jsts.geom.Location,e=jsts.util.Assert,n=javascript.util.ArrayList;jsts.operation.relate.RelateComputer=function(t){this.li=new jsts.algorithm.RobustLineIntersector,this.ptLocator=new jsts.algorithm.PointLocator,this.nodes=new jsts.geomgraph.NodeMap(new jsts.operation.relate.RelateNodeFactory),this.isolatedEdges=new n,this.arg=t},jsts.operation.relate.RelateComputer.prototype.li=null,jsts.operation.relate.RelateComputer.prototype.ptLocator=null,jsts.operation.relate.RelateComputer.prototype.arg=null,jsts.operation.relate.RelateComputer.prototype.nodes=null,jsts.operation.relate.RelateComputer.prototype.im=null,jsts.operation.relate.RelateComputer.prototype.isolatedEdges=null,jsts.operation.relate.RelateComputer.prototype.invalidPoint=null,jsts.operation.relate.RelateComputer.prototype.computeIM=function(){var e=new jsts.geom.IntersectionMatrix;if(e.set(t.EXTERIOR,t.EXTERIOR,2),!this.arg[0].getGeometry().getEnvelopeInternal().intersects(this.arg[1].getGeometry().getEnvelopeInternal()))return this.computeDisjointIM(e),e;this.arg[0].computeSelfNodes(this.li,!1),this.arg[1].computeSelfNodes(this.li,!1);var n=this.arg[0].computeEdgeIntersections(this.arg[1],this.li,!1);this.computeIntersectionNodes(0),this.computeIntersectionNodes(1),this.copyNodesAndLabels(0),this.copyNodesAndLabels(1),this.labelIsolatedNodes(),this.computeProperIntersectionIM(n,e);var o=new jsts.operation.relate.EdgeEndBuilder,r=o.computeEdgeEnds(this.arg[0].getEdgeIterator());this.insertEdgeEnds(r);var i=o.computeEdgeEnds(this.arg[1].getEdgeIterator());return this.insertEdgeEnds(i),this.labelNodeEdges(),this.labelIsolatedEdges(0,1),this.labelIsolatedEdges(1,0),this.updateIM(e),e},jsts.operation.relate.RelateComputer.prototype.insertEdgeEnds=function(t){for(var e=t.iterator();e.hasNext();){var n=e.next();this.nodes.add(n)}},jsts.operation.relate.RelateComputer.prototype.computeProperIntersectionIM=function(t,e){var n=this.arg[0].getGeometry().getDimension(),o=this.arg[1].getGeometry().getDimension(),r=t.hasProperIntersection(),i=t.hasProperInteriorIntersection();2===n&&2===o?r&&e.setAtLeast("212101212"):2===n&&1===o?(r&&e.setAtLeast("FFF0FFFF2"),i&&e.setAtLeast("1FFFFF1FF")):1===n&&2===o?(r&&e.setAtLeast("F0FFFFFF2"),i&&e.setAtLeast("1F1FFFFFF")):1===n&&1===o&&i&&e.setAtLeast("0FFFFFFFF")},jsts.operation.relate.RelateComputer.prototype.copyNodesAndLabels=function(t){for(var e=this.arg[t].getNodeIterator();e.hasNext();){var n=e.next(),o=this.nodes.addNode(n.getCoordinate());o.setLabel(t,n.getLabel().getLocation(t))}},jsts.operation.relate.RelateComputer.prototype.computeIntersectionNodes=function(e){for(var n=this.arg[e].getEdgeIterator();n.hasNext();)for(var o=n.next(),r=o.getLabel().getLocation(e),i=o.getEdgeIntersectionList().iterator();i.hasNext();){var s=i.next(),a=this.nodes.addNode(s.coord);r===t.BOUNDARY?a.setLabelBoundary(e):a.getLabel().isNull(e)&&a.setLabel(e,t.INTERIOR)}},jsts.operation.relate.RelateComputer.prototype.labelIntersectionNodes=function(e){for(var n=this.arg[e].getEdgeIterator();n.hasNext();)for(var o=n.next(),r=o.getLabel().getLocation(e),i=o.getEdgeIntersectionList().iterator();i.hasNext();){var s=i.next(),a=this.nodes.find(s.coord);a.getLabel().isNull(e)&&(r===t.BOUNDARY?a.setLabelBoundary(e):a.setLabel(e,t.INTERIOR))}},jsts.operation.relate.RelateComputer.prototype.computeDisjointIM=function(e){var n=this.arg[0].getGeometry();n.isEmpty()||(e.set(t.INTERIOR,t.EXTERIOR,n.getDimension()),e.set(t.BOUNDARY,t.EXTERIOR,n.getBoundaryDimension()));var o=this.arg[1].getGeometry();o.isEmpty()||(e.set(t.EXTERIOR,t.INTERIOR,o.getDimension()),e.set(t.EXTERIOR,t.BOUNDARY,o.getBoundaryDimension()))},jsts.operation.relate.RelateComputer.prototype.labelNodeEdges=function(){for(var t=this.nodes.iterator();t.hasNext();){var e=t.next();e.getEdges().computeLabelling(this.arg)}},jsts.operation.relate.RelateComputer.prototype.updateIM=function(t){for(var e=this.isolatedEdges.iterator();e.hasNext();){var n=e.next();n.updateIM(t)}for(var o=this.nodes.iterator();o.hasNext();){var r=o.next();r.updateIM(t),r.updateIMFromEdges(t)}},jsts.operation.relate.RelateComputer.prototype.labelIsolatedEdges=function(t,e){for(var n=this.arg[t].getEdgeIterator();n.hasNext();){var o=n.next();o.isIsolated()&&(this.labelIsolatedEdge(o,e,this.arg[e].getGeometry()),this.isolatedEdges.add(o))}},jsts.operation.relate.RelateComputer.prototype.labelIsolatedEdge=function(e,n,o){if(o.getDimension()>0){var r=this.ptLocator.locate(e.getCoordinate(),o);e.getLabel().setAllLocations(n,r)}else e.getLabel().setAllLocations(n,t.EXTERIOR)},jsts.operation.relate.RelateComputer.prototype.labelIsolatedNodes=function(){for(var t=this.nodes.iterator();t.hasNext();){var n=t.next(),o=n.getLabel();e.isTrue(o.getGeometryCount()>0,"node with empty label found"),n.isIsolated()&&(o.isNull(0)?this.labelIsolatedNode(n,0):this.labelIsolatedNode(n,1))}},jsts.operation.relate.RelateComputer.prototype.labelIsolatedNode=function(t,e){var n=this.ptLocator.locate(t.getCoordinate(),this.arg[e].getGeometry());t.getLabel().setAllLocations(e,n)}}(),function(){var t=jsts.util.Assert;jsts.geomgraph.GraphComponent=function(t){this.label=t},jsts.geomgraph.GraphComponent.prototype.label=null,jsts.geomgraph.GraphComponent.prototype._isInResult=!1,jsts.geomgraph.GraphComponent.prototype._isCovered=!1,jsts.geomgraph.GraphComponent.prototype._isCoveredSet=!1,jsts.geomgraph.GraphComponent.prototype._isVisited=!1,jsts.geomgraph.GraphComponent.prototype.getLabel=function(){return this.label},jsts.geomgraph.GraphComponent.prototype.setLabel=function(t){return 2===arguments.length?void this.setLabel2.apply(this,arguments):void(this.label=t)},jsts.geomgraph.GraphComponent.prototype.setInResult=function(t){this._isInResult=t},jsts.geomgraph.GraphComponent.prototype.isInResult=function(){return this._isInResult},jsts.geomgraph.GraphComponent.prototype.setCovered=function(t){this._isCovered=t,this._isCoveredSet=!0},jsts.geomgraph.GraphComponent.prototype.isCovered=function(){return this._isCovered},jsts.geomgraph.GraphComponent.prototype.isCoveredSet=function(){return this._isCoveredSet},jsts.geomgraph.GraphComponent.prototype.isVisited=function(){return this._isVisited},jsts.geomgraph.GraphComponent.prototype.setVisited=function(t){this._isVisited=t},jsts.geomgraph.GraphComponent.prototype.getCoordinate=function(){throw new jsts.error.AbstractMethodInvocationError},jsts.geomgraph.GraphComponent.prototype.computeIM=function(){throw new jsts.error.AbstractMethodInvocationError},jsts.geomgraph.GraphComponent.prototype.isIsolated=function(){throw new jsts.error.AbstractMethodInvocationError},jsts.geomgraph.GraphComponent.prototype.updateIM=function(e){t.isTrue(this.label.getGeometryCount()>=2,"found partial label"),this.computeIM(e)}}(),jsts.geomgraph.Node=function(t,e){this.coord=t,this.edges=e,this.label=new jsts.geomgraph.Label(0,jsts.geom.Location.NONE)},jsts.geomgraph.Node.prototype=new jsts.geomgraph.GraphComponent,jsts.geomgraph.Node.prototype.coord=null,jsts.geomgraph.Node.prototype.edges=null,jsts.geomgraph.Node.prototype.isIsolated=function(){return 1==this.label.getGeometryCount()},jsts.geomgraph.Node.prototype.setLabel2=function(t,e){null===this.label?this.label=new jsts.geomgraph.Label(t,e):this.label.setLocation(t,e)},jsts.geomgraph.Node.prototype.setLabelBoundary=function(t){var e=jsts.geom.Location.NONE;null!==this.label&&(e=this.label.getLocation(t));var n;switch(e){case jsts.geom.Location.BOUNDARY:n=jsts.geom.Location.INTERIOR;break;case jsts.geom.Location.INTERIOR:n=jsts.geom.Location.BOUNDARY;break;default:n=jsts.geom.Location.BOUNDARY}this.label.setLocation(t,n)},jsts.geomgraph.Node.prototype.add=function(t){this.edges.insert(t),t.setNode(this)},jsts.geomgraph.Node.prototype.getCoordinate=function(){return this.coord},jsts.geomgraph.Node.prototype.getEdges=function(){return this.edges},jsts.geomgraph.Node.prototype.isIncidentEdgeInResult=function(){for(var t=this.getEdges().getEdges().iterator();t.hasNext();){var e=t.next();if(e.getEdge().isInResult())return!0}return!1},jsts.geom.Point=function(t,e){this.factory=e,void 0!==t&&(this.coordinate=t)},jsts.geom.Point.prototype=new jsts.geom.Geometry,jsts.geom.Point.constructor=jsts.geom.Point,jsts.geom.Point.CLASS_NAME="jsts.geom.Point",jsts.geom.Point.prototype.coordinate=null,jsts.geom.Point.prototype.getX=function(){return this.coordinate.x},jsts.geom.Point.prototype.getY=function(){return this.coordinate.y},jsts.geom.Point.prototype.getCoordinate=function(){return this.coordinate},jsts.geom.Point.prototype.getCoordinates=function(){return this.isEmpty()?[]:[this.coordinate]},jsts.geom.Point.prototype.getCoordinateSequence=function(){return this.isEmpty()?[]:[this.coordinate]},jsts.geom.Point.prototype.isEmpty=function(){return null===this.coordinate},jsts.geom.Point.prototype.equalsExact=function(t,e){return this.isEquivalentClass(t)?this.isEmpty()&&t.isEmpty()?!0:this.equal(t.getCoordinate(),this.getCoordinate(),e):!1},jsts.geom.Point.prototype.getNumPoints=function(){return this.isEmpty()?0:1},jsts.geom.Point.prototype.isSimple=function(){return!0},jsts.geom.Point.prototype.getBoundary=function(){return new jsts.geom.GeometryCollection(null)},jsts.geom.Point.prototype.computeEnvelopeInternal=function(){return this.isEmpty()?new jsts.geom.Envelope:new jsts.geom.Envelope(this.coordinate)},jsts.geom.Point.prototype.apply=function(t){if(t instanceof jsts.geom.GeometryFilter||t instanceof jsts.geom.GeometryComponentFilter)t.filter(this);else if(t instanceof jsts.geom.CoordinateFilter){if(this.isEmpty())return;t.filter(this.getCoordinate())}},jsts.geom.Point.prototype.clone=function(){return new jsts.geom.Point(this.coordinate.clone(),this.factory)},jsts.geom.Point.prototype.getDimension=function(){return 0},jsts.geom.Point.prototype.getBoundaryDimension=function(){return jsts.geom.Dimension.FALSE},jsts.geom.Point.prototype.reverse=function(){return this.clone()},jsts.geom.Point.prototype.isValid=function(){return jsts.operation.valid.IsValidOp.isValid(this.getCoordinate())?!0:!1},jsts.geom.Point.prototype.normalize=function(){},jsts.geom.Point.prototype.compareToSameClass=function(t){var e=t;return this.getCoordinate().compareTo(e.getCoordinate())},jsts.geom.Point.prototype.getGeometryType=function(){return"Point"},jsts.geom.Point.prototype.hashCode=function(){return"Point_"+this.coordinate.hashCode()},jsts.geom.Point.prototype.CLASS_NAME="jsts.geom.Point",jsts.geom.Dimension=function(){},jsts.geom.Dimension.P=0,jsts.geom.Dimension.L=1,jsts.geom.Dimension.A=2,jsts.geom.Dimension.FALSE=-1,jsts.geom.Dimension.TRUE=-2,jsts.geom.Dimension.DONTCARE=-3,jsts.geom.Dimension.toDimensionSymbol=function(t){switch(t){case jsts.geom.Dimension.FALSE:return"F";case jsts.geom.Dimension.TRUE:return"T";case jsts.geom.Dimension.DONTCARE:return"*";case jsts.geom.Dimension.P:return"0";case jsts.geom.Dimension.L:return"1";case jsts.geom.Dimension.A:return"2"}throw new jsts.IllegalArgumentError("Unknown dimension value: "+t)},jsts.geom.Dimension.toDimensionValue=function(t){switch(t.toUpperCase()){case"F":return jsts.geom.Dimension.FALSE;case"T":return jsts.geom.Dimension.TRUE;case"*":return jsts.geom.Dimension.DONTCARE;case"0":return jsts.geom.Dimension.P;case"1":return jsts.geom.Dimension.L;case"2":return jsts.geom.Dimension.A}throw new jsts.error.IllegalArgumentError("Unknown dimension symbol: "+t)},function(){var t=jsts.geom.Dimension;jsts.geom.LineString=function(t,e){this.factory=e,this.points=t||[]},jsts.geom.LineString.prototype=new jsts.geom.Geometry,jsts.geom.LineString.constructor=jsts.geom.LineString,jsts.geom.LineString.prototype.points=null,jsts.geom.LineString.prototype.getCoordinates=function(){return this.points},jsts.geom.LineString.prototype.getCoordinateSequence=function(){return this.points},jsts.geom.LineString.prototype.getCoordinateN=function(t){return this.points[t]},jsts.geom.LineString.prototype.getCoordinate=function(){return this.isEmpty()?null:this.getCoordinateN(0)},jsts.geom.LineString.prototype.getDimension=function(){return 1},jsts.geom.LineString.prototype.getBoundaryDimension=function(){return this.isClosed()?t.FALSE:0},jsts.geom.LineString.prototype.isEmpty=function(){return 0===this.points.length},jsts.geom.LineString.prototype.getNumPoints=function(){return this.points.length},jsts.geom.LineString.prototype.getPointN=function(t){return this.getFactory().createPoint(this.points[t])},jsts.geom.LineString.prototype.getStartPoint=function(){return this.isEmpty()?null:this.getPointN(0)},jsts.geom.LineString.prototype.getEndPoint=function(){return this.isEmpty()?null:this.getPointN(this.getNumPoints()-1)},jsts.geom.LineString.prototype.isClosed=function(){return this.isEmpty()?!1:this.getCoordinateN(0).equals2D(this.getCoordinateN(this.points.length-1))},jsts.geom.LineString.prototype.isRing=function(){return this.isClosed()&&this.isSimple()},jsts.geom.LineString.prototype.getGeometryType=function(){return"LineString"},jsts.geom.LineString.prototype.getLength=function(){return jsts.algorithm.CGAlgorithms.computeLength(this.points)},jsts.geom.LineString.prototype.getBoundary=function(){return new jsts.operation.BoundaryOp(this).getBoundary()},jsts.geom.LineString.prototype.computeEnvelopeInternal=function(){if(this.isEmpty())return new jsts.geom.Envelope;var t=new jsts.geom.Envelope;return this.points.forEach(function(e){t.expandToInclude(e)}),t},jsts.geom.LineString.prototype.equalsExact=function(t,e){return this.isEquivalentClass(t)?this.points.length!==t.points.length?!1:this.isEmpty()&&t.isEmpty()?!0:this.points.reduce(function(n,o,r){return n&&jsts.geom.Geometry.prototype.equal(o,t.points[r],e)}):!1},jsts.geom.LineString.prototype.isEquivalentClass=function(t){return t instanceof jsts.geom.LineString},jsts.geom.LineString.prototype.compareToSameClass=function(t){for(var e=t,n=0,o=this.points.length,r=0,i=e.points.length;o>n&&i>r;){var s=this.points[n].compareTo(e.points[r]);if(0!==s)return s;n++,r++}return o>n?1:i>r?-1:0},jsts.geom.LineString.prototype.apply=function(t){if(t instanceof jsts.geom.GeometryFilter||t instanceof jsts.geom.GeometryComponentFilter)t.filter(this);else if(t instanceof jsts.geom.CoordinateFilter)for(var e=0,n=this.points.length;n>e;e++)t.filter(this.points[e]);else t instanceof jsts.geom.CoordinateSequenceFilter&&this.apply2.apply(this,arguments)},jsts.geom.LineString.prototype.apply2=function(t){if(0!==this.points.length){for(var e=0;ee;e++)t.push(this.points[e].clone());return this.factory.createLineString(t)},jsts.geom.LineString.prototype.normalize=function(){var t,e,n,o,r,i;for(i=this.points.length,e=parseInt(i/2),t=0;e>t;t++)if(n=i-1-t,o=this.points[t],r=this.points[n],!o.equals(r))return void(o.compareTo(r)>0&&this.points.reverse())},jsts.geom.LineString.prototype.CLASS_NAME="jsts.geom.LineString"}(),function(){jsts.geom.Polygon=function(t,e,n){this.shell=t||n.createLinearRing(null),this.holes=e||[],this.factory=n},jsts.geom.Polygon.prototype=new jsts.geom.Geometry,jsts.geom.Polygon.constructor=jsts.geom.Polygon,jsts.geom.Polygon.prototype.getCoordinate=function(){return this.shell.getCoordinate()},jsts.geom.Polygon.prototype.getCoordinates=function(){if(this.isEmpty())return[];for(var t=[],e=-1,n=this.shell.getCoordinates(),o=0;on;n++){var o=t[n].x;if(o!=e.getMinX()&&o!=e.getMaxX())return!1;var r=t[n].y;if(r!=e.getMinY()&&r!=e.getMaxY())return!1}for(var i=t[0].x,s=t[0].y,n=1;4>=n;n++){var o=t[n].x,r=t[n].y,a=o!=i,u=r!=s;if(a==u)return!1;i=o,s=r}return!0},jsts.geom.Polygon.prototype.getExteriorRing=function(){return this.shell},jsts.geom.Polygon.prototype.getInteriorRingN=function(t){return this.holes[t]},jsts.geom.Polygon.prototype.getNumInteriorRing=function(){return this.holes.length},jsts.geom.Polygon.prototype.getArea=function(){var t=0;t+=Math.abs(jsts.algorithm.CGAlgorithms.signedArea(this.shell.getCoordinateSequence()));for(var e=0;ee;e++)t[e+1]=this.holes[e].clone();return t.length<=1?t[0]:this.getFactory().createMultiLineString(t)},jsts.geom.Polygon.prototype.computeEnvelopeInternal=function(){return this.shell.getEnvelopeInternal()},jsts.geom.Polygon.prototype.getDimension=function(){return 2},jsts.geom.Polygon.prototype.getBoundaryDimension=function(){return 1},jsts.geom.Polygon.prototype.equalsExact=function(t,e){if(!this.isEquivalentClass(t))return!1;if(this.isEmpty()&&t.isEmpty())return!0;if(this.isEmpty()!==t.isEmpty())return!1;if(!this.shell.equalsExact(t.shell,e))return!1;if(this.holes.length!==t.holes.length)return!1;if(this.holes.length!==t.holes.length)return!1;for(var n=0;ne;e++)this.holes[e].apply(t)}else if(t instanceof jsts.geom.GeometryFilter)t.filter(this);else if(t instanceof jsts.geom.CoordinateFilter){this.shell.apply(t);for(var e=0,n=this.holes.length;n>e;e++)this.holes[e].apply(t)}else t instanceof jsts.geom.CoordinateSequenceFilter&&this.apply2.apply(this,arguments)},jsts.geom.Polygon.prototype.apply2=function(t){if(this.shell.apply(t),!t.isDone())for(var e=0;ee;e++)t.push(this.holes[e].clone());return this.factory.createPolygon(this.shell.clone(),t)},jsts.geom.Polygon.prototype.normalize=function(){this.normalize2(this.shell,!0);for(var t=0,e=this.holes.length;e>t;t++)this.normalize2(this.holes[t],!1);this.holes.sort()},jsts.geom.Polygon.prototype.normalize2=function(t,e){if(!t.isEmpty()){var n=t.points.slice(0,t.points.length-1),o=jsts.geom.CoordinateArrays.minCoordinate(t.points);jsts.geom.CoordinateArrays.scroll(n,o),t.points=n.concat(),t.points[n.length]=n[0],jsts.algorithm.CGAlgorithms.isCCW(t.points)===e&&t.points.reverse()}},jsts.geom.Polygon.prototype.getGeometryType=function(){return"Polygon"},jsts.geom.Polygon.prototype.CLASS_NAME="jsts.geom.Polygon"}(),function(){var t=jsts.geom.Geometry,e=javascript.util.TreeSet,n=javascript.util.Arrays;jsts.geom.GeometryCollection=function(t,e){this.geometries=t||[],this.factory=e},jsts.geom.GeometryCollection.prototype=new t,jsts.geom.GeometryCollection.constructor=jsts.geom.GeometryCollection,jsts.geom.GeometryCollection.prototype.isEmpty=function(){for(var t=0,e=this.geometries.length;e>t;t++){var n=this.getGeometryN(t);if(!n.isEmpty())return!1}return!0},jsts.geom.GeometryCollection.prototype.getArea=function(){for(var t=0,e=0,n=this.geometries.length;n>e;e++)t+=this.getGeometryN(e).getArea();return t},jsts.geom.GeometryCollection.prototype.getLength=function(){for(var t=0,e=0,n=this.geometries.length;n>e;e++)t+=this.getGeometryN(e).getLength();return t},jsts.geom.GeometryCollection.prototype.getCoordinate=function(){return this.isEmpty()?null:this.getGeometryN(0).getCoordinate()},jsts.geom.GeometryCollection.prototype.getCoordinates=function(){for(var t=[],e=-1,n=0,o=this.geometries.length;o>n;n++)for(var r=this.getGeometryN(n),i=r.getCoordinates(),s=0;sn;n++){var r=this.getGeometryN(n);if(!r.equalsExact(t.getGeometryN(n),e))return!1}return!0},jsts.geom.GeometryCollection.prototype.clone=function(){for(var t=[],e=0,n=this.geometries.length;n>e;e++)t.push(this.geometries[e].clone());return this.factory.createGeometryCollection(t)},jsts.geom.GeometryCollection.prototype.normalize=function(){for(var t=0,e=this.geometries.length;e>t;t++)this.getGeometryN(t).normalize();this.geometries.sort()},jsts.geom.GeometryCollection.prototype.compareToSameClass=function(t){var o=new e(n.asList(this.geometries)),r=new e(n.asList(t.geometries));return this.compare(o,r)},jsts.geom.GeometryCollection.prototype.apply=function(t){if(t instanceof jsts.geom.GeometryFilter||t instanceof jsts.geom.GeometryComponentFilter){t.filter(this);for(var e=0,n=this.geometries.length;n>e;e++)this.getGeometryN(e).apply(t)}else if(t instanceof jsts.geom.CoordinateFilter)for(var e=0,n=this.geometries.length;n>e;e++)this.getGeometryN(e).apply(t);else t instanceof jsts.geom.CoordinateSequenceFilter&&this.apply2.apply(this,arguments)},jsts.geom.GeometryCollection.prototype.apply2=function(t){if(0!=this.geometries.length){for(var e=0;ee;e++){var o=this.getGeometryN(e);t=Math.max(t,o.getDimension())}return t},jsts.geom.GeometryCollection.prototype.computeEnvelopeInternal=function(){for(var t=new jsts.geom.Envelope,e=0,n=this.geometries.length;n>e;e++){var o=this.getGeometryN(e);t.expandToInclude(o.getEnvelopeInternal())}return t},jsts.geom.GeometryCollection.prototype.CLASS_NAME="jsts.geom.GeometryCollection"}(),jsts.algorithm.Centroid=function(t){this.areaBasePt=null,this.triangleCent3=new jsts.geom.Coordinate,this.areasum2=0,this.cg3=new jsts.geom.Coordinate,this.lineCentSum=new jsts.geom.Coordinate,this.totalLength=0,this.ptCount=0,this.ptCentSum=new jsts.geom.Coordinate,this.add(t)},jsts.algorithm.Centroid.getCentroid=function(t){var e=new jsts.algorithm.Centroid(t);return e.getCentroid()},jsts.algorithm.Centroid.centroid3=function(t,e,n,o){o.x=t.x+e.x+n.x,o.y=t.y+e.y+n.y},jsts.algorithm.Centroid.area2=function(t,e,n){return(e.x-t.x)*(n.y-t.y)-(n.x-t.x)*(e.y-t.y)},jsts.algorithm.Centroid.prototype.add=function(t){if(!t.isEmpty())if(t instanceof jsts.geom.Point)this.addPoint(t.getCoordinate());else if(t instanceof jsts.geom.LineString)this.addLineSegments(t.getCoordinates());else if(t instanceof jsts.geom.Polygon)this.addPolygon(t);else if(t instanceof jsts.geom.GeometryCollection)for(var e=0;e0)t.x=this.cg3.x/3/this.areasum2,t.y=this.cg3.y/3/this.areasum2;else if(this.totalLength>0)t.x=this.lineCentSum.x/this.totalLength,t.y=this.lineCentSum.y/this.totalLength; -else{if(!(this.ptCount>0))return null;t.x=this.ptCentSum.x/this.ptCount,t.y=this.ptCentSum.y/this.ptCount}return t},jsts.algorithm.Centroid.prototype.setBasePoint=function(t){null===this.areaBasePt&&(this.areaBasePt=t)},jsts.algorithm.Centroid.prototype.addPolygon=function(t){this.addShell(t.getExteriorRing().getCoordinates());for(var e=0;e0&&this.setBasePoint(t[0]);for(var e=!jsts.algorithm.CGAlgorithms.isCCW(t),n=0;n0&&this.addPoint(t[0])},jsts.algorithm.Centroid.prototype.addPoint=function(t){this.ptCount+=1,this.ptCentSum.x+=t.x,this.ptCentSum.y+=t.y},function(){var t=function(t){this.deList=new javascript.util.ArrayList,this.factory=t};t.findEdgeRingContaining=function(t,e){for(var n=t.getRing(),o=n.getEnvelopeInternal(),r=n.getCoordinateN(0),i=null,s=null,a=e.iterator();a.hasNext();){var u=a.next(),p=u.getRing(),g=p.getEnvelopeInternal();null!=i&&(s=i.getRing().getEnvelopeInternal());var l=!1;g.equals(o)||(r=jsts.geom.CoordinateArrays.ptNotInList(n.getCoordinates(),p.getCoordinates()),g.contains(o)&&jsts.algorithm.CGAlgorithms.isPointInRing(r,p.getCoordinates())&&(l=!0),l&&(null==i||s.contains(g))&&(i=u))}return i},t.ptNotInList=function(t,e){for(var n=0;n=0;o--)n.add(t[o],!1)},jsts.operation.polygonize.EdgeRing=t}(),function(){var t=function(){};t.setVisited=function(t,e){for(;t.hasNext();){var n=t.next();n.setVisited(e)}},t.setMarked=function(t,e){for(;t.hasNext();){var n=t.next();n.setMarked(e)}},t.getComponentWithVisitedState=function(t,e){for(;t.hasNext();){var n=t.next();if(n.isVisited()==e)return n}return null},t.prototype._isMarked=!1,t.prototype._isVisited=!1,t.prototype.data,t.prototype.isVisited=function(){return this._isVisited},t.prototype.setVisited=function(t){this._isVisited=t},t.prototype.isMarked=function(){return this._isMarked},t.prototype.setMarked=function(t){this._isMarked=t},t.prototype.setContext=function(t){this.data=t},t.prototype.getContext=function(){return data},t.prototype.setData=function(t){this.data=t},t.prototype.getData=function(){return data},t.prototype.isRemoved=function(){throw new jsts.error.AbstractMethodInvocationError},jsts.planargraph.GraphComponent=t}(),function(){var t=jsts.planargraph.GraphComponent,e=function(t,e){void 0!==t&&this.setDirectedEdges(t,e)};e.prototype=new t,e.prototype.dirEdge=null,e.prototype.setDirectedEdges=function(t,e){this.dirEdge=[t,e],t.setEdge(this),e.setEdge(this),t.setSym(e),e.setSym(t),t.getFromNode().addOutEdge(t),e.getFromNode().addOutEdge(e)},e.prototype.getDirEdge=function(t){return t instanceof jsts.planargraph.Node&&this.getDirEdge2(t),this.dirEdge[t]},e.prototype.getDirEdge2=function(t){return this.dirEdge[0].getFromNode()==t?this.dirEdge[0]:this.dirEdge[1].getFromNode()==t?this.dirEdge[1]:null},e.prototype.getOppositeNode=function(t){return this.dirEdge[0].getFromNode()==t?this.dirEdge[0].getToNode():this.dirEdge[1].getFromNode()==t?this.dirEdge[1].getToNode():null},e.prototype.remove=function(){this.dirEdge=null},e.prototype.isRemoved=function(){return null==dirEdge},jsts.planargraph.Edge=e}(),jsts.operation.polygonize.PolygonizeEdge=function(t){this.line=t},jsts.operation.polygonize.PolygonizeEdge.prototype=new jsts.planargraph.Edge,jsts.operation.polygonize.PolygonizeEdge.prototype.line=null,jsts.operation.polygonize.PolygonizeEdge.prototype.getLine=function(){return this.line},function(){var t=javascript.util.ArrayList,e=jsts.planargraph.GraphComponent,n=function(t,e,n,o){if(void 0!==t){this.from=t,this.to=e,this.edgeDirection=o,this.p0=t.getCoordinate(),this.p1=n;var r=this.p1.x-this.p0.x,i=this.p1.y-this.p0.y;this.quadrant=jsts.geomgraph.Quadrant.quadrant(r,i),this.angle=Math.atan2(i,r)}};n.prototype=new e,n.toEdges=function(e){for(var n=new t,o=e.iterator();o.hasNext();)n.add(o.next().parentEdge);return n},n.prototype.parentEdge=null,n.prototype.from=null,n.prototype.to=null,n.prototype.p0=null,n.prototype.p1=null,n.prototype.sym=null,n.prototype.edgeDirection=null,n.prototype.quadrant=null,n.prototype.angle=null,n.prototype.getEdge=function(){return this.parentEdge},n.prototype.setEdge=function(t){this.parentEdge=t},n.prototype.getQuadrant=function(){return this.quadrant},n.prototype.getDirectionPt=function(){return this.p1},n.prototype.getEdgeDirection=function(){return this.edgeDirection},n.prototype.getFromNode=function(){return this.from},n.prototype.getToNode=function(){return this.to},n.prototype.getCoordinate=function(){return this.from.getCoordinate()},n.prototype.getAngle=function(){return this.angle},n.prototype.getSym=function(){return this.sym},n.prototype.setSym=function(t){this.sym=t},n.prototype.remove=function(){this.sym=null,this.parentEdge=null},n.prototype.isRemoved=function(){return null==this.parentEdge},n.prototype.compareTo=function(t){var e=t;return this.compareDirection(e)},n.prototype.compareDirection=function(t){return this.quadrant>t.quadrant?1:this.quadrante&&(e+=this.outEdges.size()),e},e.prototype.getNextEdge=function(t){var e=this.getIndex(t);return this.outEdges.get(getIndex(e+1))},e.prototype.getNextCWEdge=function(t){var e=this.getIndex(t);return this.outEdges.get(getIndex(e-1))},jsts.planargraph.DirectedEdgeStar=e}(),function(){var t=jsts.planargraph.GraphComponent,e=jsts.planargraph.DirectedEdgeStar,n=function(t,n){this.pt=t,this.deStar=n||new e};n.prototype=new t,n.getEdgesBetween=function(t,e){var n=DirectedEdge.toEdges(t.getOutEdges().getEdges()),o=new javascript.util.HashSet(n),r=DirectedEdge.toEdges(e.getOutEdges().getEdges());return o.retainAll(r),o},n.prototype.pt=null,n.prototype.deStar=null,n.prototype.getCoordinate=function(){return this.pt},n.prototype.addOutEdge=function(t){this.deStar.add(t)},n.prototype.getOutEdges=function(){return this.deStar},n.prototype.getDegree=function(){return this.deStar.getDegree()},n.prototype.getIndex=function(t){return this.deStar.getIndex(t)},n.prototype.remove=function(t){return void 0===t?this.remove2():void this.deStar.remove(t)},n.prototype.remove2=function(){this.pt=null},n.prototype.isRemoved=function(){return null==this.pt},jsts.planargraph.Node=n}(),function(){var t=function(){this.nodeMap=new javascript.util.TreeMap};t.prototype.nodeMap=null,t.prototype.add=function(t){return this.nodeMap.put(t.getCoordinate(),t),t},t.prototype.remove=function(t){return this.nodeMap.remove(t)},t.prototype.find=function(t){return this.nodeMap.get(t)},t.prototype.iterator=function(){return this.nodeMap.values().iterator()},t.prototype.values=function(){return this.nodeMap.values()},jsts.planargraph.NodeMap=t}(),function(){var t=javascript.util.ArrayList,e=function(){this.edges=new javascript.util.HashSet,this.dirEdges=new javascript.util.HashSet,this.nodeMap=new jsts.planargraph.NodeMap};e.prototype.edges=null,e.prototype.dirEdges=null,e.prototype.nodeMap=null,e.prototype.findNode=function(t){return this.nodeMap.find(t)},e.prototype.add=function(t){return t instanceof jsts.planargraph.Edge?this.add2(t):t instanceof jsts.planargraph.DirectedEdge?this.add3(t):void this.nodeMap.add(t)},e.prototype.add2=function(t){this.edges.add(t),this.add(t.getDirEdge(0)),this.add(t.getDirEdge(1))},e.prototype.add3=function(t){this.dirEdges.add(t)},e.prototype.nodeIterator=function(){return this.nodeMap.iterator()},e.prototype.contains=function(t){return t instanceof jsts.planargraph.DirectedEdge?this.contains2(t):this.edges.contains(t)},e.prototype.contains2=function(t){return this.dirEdges.contains(t)},e.prototype.getNodes=function(){return this.nodeMap.values()},e.prototype.dirEdgeIterator=function(){return this.dirEdges.iterator()},e.prototype.edgeIterator=function(){return this.edges.iterator()},e.prototype.getEdges=function(){return this.edges},e.prototype.remove=function(t){return t instanceof jsts.planargraph.DirectedEdge?this.remove2(t):(this.remove(t.getDirEdge(0)),this.remove(t.getDirEdge(1)),this.edges.remove(t),void this.edge.remove())},e.prototype.remove2=function(t){if(t instanceof jsts.planargraph.Node)return this.remove3(t);var e=t.getSym();null!=e&&e.setSym(null),t.getFromNode().remove(t),t.remove(),this.dirEdges.remove(t)},e.prototype.remove3=function(t){for(var e=t.getOutEdges().getEdges(),n=e.iterator();n.hasNext();){var o=n.next(),r=o.getSym();null!=r&&this.remove(r),this.dirEdges.remove(o);var i=o.getEdge();null!=i&&this.edges.remove(i)}this.nodeMap.remove(t.getCoordinate()),t.remove()},e.prototype.findNodesOfDegree=function(e){for(var n=new t,o=this.nodeIterator();o.hasNext();){var r=o.next();r.getDegree()==e&&n.add(r)}return n},jsts.planargraph.PlanarGraph=e}(),function(){var t=javascript.util.ArrayList,e=javascript.util.Stack,n=javascript.util.HashSet,o=jsts.util.Assert,r=jsts.operation.polygonize.EdgeRing,i=jsts.operation.polygonize.PolygonizeEdge,s=jsts.operation.polygonize.PolygonizeDirectedEdge,a=jsts.planargraph.PlanarGraph,u=jsts.planargraph.Node,p=function(t){a.apply(this),this.factory=t};p.prototype=new a,p.getDegreeNonDeleted=function(t){for(var e=t.getOutEdges().getEdges(),n=0,o=e.iterator();o.hasNext();){var r=o.next();r.isMarked()||n++}return n},p.getDegree=function(t,e){for(var n=t.getOutEdges().getEdges(),o=0,r=n.iterator();r.hasNext();){var i=r.next();i.getLabel()==e&&o++}return o},p.deleteAllEdges=function(t){for(var e=t.getOutEdges().getEdges(),n=e.iterator();n.hasNext();){var o=n.next();o.setMarked(!0);var r=o.getSym();null!=r&&r.setMarked(!0)}},p.prototype.factory=null,p.prototype.addEdge=function(t){if(!t.isEmpty()){var e=jsts.geom.CoordinateArrays.removeRepeatedPoints(t.getCoordinates());if(!(e.length<2)){var n=e[0],o=e[e.length-1],r=this.getNode(n),a=this.getNode(o),u=new s(r,a,e[1],!0),p=new s(a,r,e[e.length-2],!1),g=new i(t);g.setDirectedEdges(u,p),this.add(g)}}},p.prototype.getNode=function(t){var e=this.findNode(t);return null==e&&(e=new u(t),this.add(e)),e},p.prototype.computeNextCWEdges=function(){for(var t=this.nodeIterator();t.hasNext();){var e=t.next();p.computeNextCWEdges(e)}},p.prototype.convertMaximalToMinimalEdgeRings=function(t){for(var e=t.iterator();e.hasNext();){var n=e.next(),o=n.getLabel(),r=p.findIntersectionNodes(n,o);if(null!=r)for(var i=r.iterator();i.hasNext();){var s=i.next();p.computeNextCCWEdges(s,o)}}},p.findIntersectionNodes=function(e,n){var r=e,i=null;do{var s=r.getFromNode();p.getDegree(s,n)>1&&(null==i&&(i=new t),i.add(s)),r=r.getNext(),o.isTrue(null!=r,"found null DE in ring"),o.isTrue(r==e||!r.isInRing(),"found DE already in ring")}while(r!=e);return i},p.prototype.getEdgeRings=function(){this.computeNextCWEdges(),p.label(this.dirEdges,-1);var e=p.findLabeledEdgeRings(this.dirEdges);this.convertMaximalToMinimalEdgeRings(e);for(var n=new t,o=this.dirEdges.iterator();o.hasNext();){var r=o.next();if(!r.isMarked()&&!r.isInRing()){var i=this.findEdgeRing(r);n.add(i)}}return n},p.findLabeledEdgeRings=function(e){for(var n=new t,o=1,r=e.iterator();r.hasNext();){var i=r.next();if(!(i.isMarked()||i.getLabel()>=0)){n.add(i);var s=p.findDirEdgesInRing(i);p.label(s,o),o++}}return n},p.prototype.deleteCutEdges=function(){this.computeNextCWEdges(),p.findLabeledEdgeRings(this.dirEdges);for(var e=new t,n=this.dirEdges.iterator();n.hasNext();){var o=n.next();if(!o.isMarked()){var r=o.getSym();if(o.getLabel()==r.getLabel()){o.setMarked(!0),r.setMarked(!0);var i=o.getEdge();e.add(i.getLine())}}}return e},p.label=function(t,e){for(var n=t.iterator();n.hasNext();){var o=n.next();o.setLabel(e)}},p.computeNextCWEdges=function(t){for(var e=t.getOutEdges(),n=null,o=null,r=e.getEdges().iterator();r.hasNext();){var i=r.next();if(!i.isMarked()){if(null==n&&(n=i),null!=o){var s=o.getSym();s.setNext(i)}o=i}}if(null!=o){var s=o.getSym();s.setNext(n)}},p.computeNextCCWEdges=function(t,e){for(var n=t.getOutEdges(),r=null,i=null,s=n.getEdges(),a=s.size()-1;a>=0;a--){var u=s.get(a),p=u.getSym(),g=null;u.getLabel()==e&&(g=u);var l=null;p.getLabel()==e&&(l=p),(null!=g||null!=l)&&(null!=l&&(i=l),null!=g&&(null!=i&&(i.setNext(g),i=null),null==r&&(r=g)))}null!=i&&(o.isTrue(null!=r),i.setNext(r))},p.findDirEdgesInRing=function(e){var n=e,r=new t;do r.add(n),n=n.getNext(),o.isTrue(null!=n,"found null DE in ring"),o.isTrue(n==e||!n.isInRing(),"found DE already in ring");while(n!=e);return r},p.prototype.findEdgeRing=function(t){var e=t,n=new r(this.factory);do n.add(e),e.setRing(n),e=e.getNext(),o.isTrue(null!=e,"found null DE in ring"),o.isTrue(e==t||!e.isInRing(),"found DE already in ring");while(e!=t);return n},p.prototype.deleteDangles=function(){for(var t=this.findNodesOfDegree(1),o=new n,r=new e,i=t.iterator();i.hasNext();)r.push(i.next());for(;!r.isEmpty();){var s=r.pop();p.deleteAllEdges(s);for(var a=s.getOutEdges().getEdges(),i=a.iterator();i.hasNext();){var u=i.next();u.setMarked(!0);var g=u.getSym();null!=g&&g.setMarked(!0);var l=u.getEdge();o.add(l.getLine());var h=u.getToNode();1==p.getDegreeNonDeleted(h)&&r.push(h)}}return o},p.prototype.computeDepthParity=function(){for(;;){var t=null;if(null==t)return;this.computeDepthParity(t)}},p.prototype.computeDepthParity=function(){},jsts.operation.polygonize.PolygonizeGraph=p}(),jsts.index.strtree.Interval=function(){var t;return 1===arguments.length?(t=arguments[0],jsts.index.strtree.Interval(t.min,t.max)):void(2===arguments.length&&(jsts.util.Assert.isTrue(this.min<=this.max),this.min=arguments[0],this.max=arguments[1]))},jsts.index.strtree.Interval.prototype.min=null,jsts.index.strtree.Interval.prototype.max=null,jsts.index.strtree.Interval.prototype.getCentre=function(){return(this.min+this.max)/2},jsts.index.strtree.Interval.prototype.expandToInclude=function(t){return this.max=Math.max(this.max,t.max),this.min=Math.min(this.min,t.min),this},jsts.index.strtree.Interval.prototype.intersects=function(t){return!(t.min>this.max||t.max1;if(u){if(a instanceof jsts.geom.Polygon)return this.createMultiPolygon(t.toArray());if(a instanceof jsts.geom.LineString)return this.createMultiLineString(t.toArray());if(a instanceof jsts.geom.Point)return this.createMultiPoint(t.toArray());jsts.util.Assert.shouldNeverReachHere("Unhandled class: "+a)}return a},jsts.geom.GeometryFactory.prototype.createGeometryCollection=function(t){return new jsts.geom.GeometryCollection(t,this)},jsts.geom.GeometryFactory.prototype.toGeometry=function(t){return t.isNull()?this.createPoint(null):t.getMinX()===t.getMaxX()&&t.getMinY()===t.getMaxY()?this.createPoint(new jsts.geom.Coordinate(t.getMinX(),t.getMinY())):t.getMinX()===t.getMaxX()||t.getMinY()===t.getMaxY()?this.createLineString([new jsts.geom.Coordinate(t.getMinX(),t.getMinY()),new jsts.geom.Coordinate(t.getMaxX(),t.getMaxY())]):this.createPolygon(this.createLinearRing([new jsts.geom.Coordinate(t.getMinX(),t.getMinY()),new jsts.geom.Coordinate(t.getMinX(),t.getMaxY()),new jsts.geom.Coordinate(t.getMaxX(),t.getMaxY()),new jsts.geom.Coordinate(t.getMaxX(),t.getMinY()),new jsts.geom.Coordinate(t.getMinX(),t.getMinY())]),null)},jsts.geomgraph.NodeFactory=function(){},jsts.geomgraph.NodeFactory.prototype.createNode=function(t){return new jsts.geomgraph.Node(t,null)},function(){jsts.geomgraph.Position=function(){},jsts.geomgraph.Position.ON=0,jsts.geomgraph.Position.LEFT=1,jsts.geomgraph.Position.RIGHT=2,jsts.geomgraph.Position.opposite=function(t){return t===jsts.geomgraph.Position.LEFT?jsts.geomgraph.Position.RIGHT:t===jsts.geomgraph.Position.RIGHT?jsts.geomgraph.Position.LEFT:t}}(),jsts.geomgraph.TopologyLocation=function(){if(this.location=[],3===arguments.length){var t=arguments[0],e=arguments[1],n=arguments[2];this.init(3),this.location[jsts.geomgraph.Position.ON]=t,this.location[jsts.geomgraph.Position.LEFT]=e,this.location[jsts.geomgraph.Position.RIGHT]=n}else if(arguments[0]instanceof jsts.geomgraph.TopologyLocation){var o=arguments[0];if(this.init(o.location.length),null!=o)for(var r=0;r1},jsts.geomgraph.TopologyLocation.prototype.isLine=function(){return 1===this.location.length},jsts.geomgraph.TopologyLocation.prototype.flip=function(){if(!(this.location.length<=1)){var t=this.location[jsts.geomgraph.Position.LEFT];this.location[jsts.geomgraph.Position.LEFT]=this.location[jsts.geomgraph.Position.RIGHT],this.location[jsts.geomgraph.Position.RIGHT]=t}},jsts.geomgraph.TopologyLocation.prototype.setAllLocations=function(t){for(var e=0;ethis.location.length){var e=[];e[jsts.geomgraph.Position.ON]=this.location[jsts.geomgraph.Position.ON],e[jsts.geomgraph.Position.LEFT]=jsts.geom.Location.NONE,e[jsts.geomgraph.Position.RIGHT]=jsts.geom.Location.NONE,this.location=e}for(var n=0;ne;e++)n.setLocation(e,t.getLocation(e));return n},jsts.geomgraph.Label.prototype.elt=null,jsts.geomgraph.Label.prototype.flip=function(){this.elt[0].flip(),this.elt[1].flip()},jsts.geomgraph.Label.prototype.getLocation=function(t,e){return 1==arguments.length?this.getLocation2.apply(this,arguments):this.elt[t].get(e)},jsts.geomgraph.Label.prototype.getLocation2=function(t){return this.elt[t].get(jsts.geomgraph.Position.ON)},jsts.geomgraph.Label.prototype.setLocation=function(t,e,n){return 2==arguments.length?void this.setLocation2.apply(this,arguments):void this.elt[t].setLocation(e,n)},jsts.geomgraph.Label.prototype.setLocation2=function(t,e){this.elt[t].setLocation(jsts.geomgraph.Position.ON,e)},jsts.geomgraph.Label.prototype.setAllLocations=function(t,e){this.elt[t].setAllLocations(e)},jsts.geomgraph.Label.prototype.setAllLocationsIfNull=function(t,e){return 1==arguments.length?void this.setAllLocationsIfNull2.apply(this,arguments):void this.elt[t].setAllLocationsIfNull(e)},jsts.geomgraph.Label.prototype.setAllLocationsIfNull2=function(t){this.setAllLocationsIfNull(0,t),this.setAllLocationsIfNull(1,t)},jsts.geomgraph.Label.prototype.merge=function(t){var e;for(e=0;2>e;e++)null===this.elt[e]&&null!==t.elt[e]?this.elt[e]=new jsts.geomgraph.TopologyLocation(t.elt[e]):this.elt[e].merge(t.elt[e])},jsts.geomgraph.Label.prototype.getGeometryCount=function(){var t=0;return this.elt[0].isNull()||t++,this.elt[1].isNull()||t++,t},jsts.geomgraph.Label.prototype.isNull=function(t){return this.elt[t].isNull()},jsts.geomgraph.Label.prototype.isAnyNull=function(t){return this.elt[t].isAnyNull()},jsts.geomgraph.Label.prototype.isArea=function(){return 1==arguments.length?this.isArea2(arguments[0]):this.elt[0].isArea()||this.elt[1].isArea()},jsts.geomgraph.Label.prototype.isArea2=function(t){return this.elt[t].isArea()},jsts.geomgraph.Label.prototype.isLine=function(t){return this.elt[t].isLine()},jsts.geomgraph.Label.prototype.isEqualOnSide=function(t,e){return this.elt[0].isEqualOnSide(t.elt[0],e)&&this.elt[1].isEqualOnSide(t.elt[1],e)},jsts.geomgraph.Label.prototype.allPositionsEqual=function(t,e){return this.elt[t].allPositionsEqual(e)},jsts.geomgraph.Label.prototype.toLine=function(t){this.elt[t].isArea()&&(this.elt[t]=new jsts.geomgraph.TopologyLocation(this.elt[t].location[0]))},jsts.geomgraph.EdgeRing=function(t,e){this.edges=[],this.pts=[],this.holes=[],this.label=new jsts.geomgraph.Label(jsts.geom.Location.NONE),this.geometryFactory=e,t&&(this.computePoints(t),this.computeRing())},jsts.geomgraph.EdgeRing.prototype.startDe=null,jsts.geomgraph.EdgeRing.prototype.maxNodeDegree=-1,jsts.geomgraph.EdgeRing.prototype.edges=null,jsts.geomgraph.EdgeRing.prototype.pts=null,jsts.geomgraph.EdgeRing.prototype.label=null,jsts.geomgraph.EdgeRing.prototype.ring=null,jsts.geomgraph.EdgeRing.prototype._isHole=null,jsts.geomgraph.EdgeRing.prototype.shell=null,jsts.geomgraph.EdgeRing.prototype.holes=null,jsts.geomgraph.EdgeRing.prototype.geometryFactory=null,jsts.geomgraph.EdgeRing.prototype.isIsolated=function(){return 1==this.label.getGeometryCount()},jsts.geomgraph.EdgeRing.prototype.isHole=function(){return this._isHole},jsts.geomgraph.EdgeRing.prototype.getCoordinate=function(t){return this.pts[t]},jsts.geomgraph.EdgeRing.prototype.getLinearRing=function(){return this.ring},jsts.geomgraph.EdgeRing.prototype.getLabel=function(){return this.label},jsts.geomgraph.EdgeRing.prototype.isShell=function(){return null===this.shell},jsts.geomgraph.EdgeRing.prototype.getShell=function(){return this.shell},jsts.geomgraph.EdgeRing.prototype.setShell=function(t){this.shell=t,null!==t&&t.addHole(this)},jsts.geomgraph.EdgeRing.prototype.addHole=function(t){this.holes.push(t)},jsts.geomgraph.EdgeRing.prototype.toPolygon=function(){for(var t=[],e=0;ethis.maxNodeDegree&&(this.maxNodeDegree=n),t=this.getNext(t)}while(t!==this.startDe);this.maxNodeDegree*=2},jsts.geomgraph.EdgeRing.prototype.setInResult=function(){var t=this.startDe;do t.getEdge().setInResult(!0),t=t.getNext();while(t!=this.startDe)},jsts.geomgraph.EdgeRing.prototype.mergeLabel=function(t){this.mergeLabel2(t,0),this.mergeLabel2(t,1)},jsts.geomgraph.EdgeRing.prototype.mergeLabel2=function(t,e){var n=t.getLocation(e,jsts.geomgraph.Position.RIGHT);if(n!=jsts.geom.Location.NONE)return this.label.getLocation(e)===jsts.geom.Location.NONE?void this.label.setLocation(e,n):void 0},jsts.geomgraph.EdgeRing.prototype.addPoints=function(t,e,n){var o=t.getCoordinates();if(e){var r=1;n&&(r=0);for(var i=r;i=0;i--)this.pts.push(o[i])}},jsts.geomgraph.EdgeRing.prototype.containsPoint=function(t){var e=this.getLinearRing(),n=e.getEnvelopeInternal(); -if(!n.contains(t))return!1;if(!jsts.algorithm.CGAlgorithms.isPointInRing(t,e.getCoordinates()))return!1;for(var o=0;o1,"Node capacity must be greater than 1"),this.nodeCapacity=t)},jsts.index.strtree.AbstractSTRtree.IntersectsOp=function(){},jsts.index.strtree.AbstractSTRtree.IntersectsOp.prototype.intersects=function(){throw new jsts.error.AbstractMethodInvocationError},jsts.index.strtree.AbstractSTRtree.prototype.root=null,jsts.index.strtree.AbstractSTRtree.prototype.built=!1,jsts.index.strtree.AbstractSTRtree.prototype.itemBoundables=null,jsts.index.strtree.AbstractSTRtree.prototype.nodeCapacity=null,jsts.index.strtree.AbstractSTRtree.prototype.build=function(){jsts.util.Assert.isTrue(!this.built),this.root=0===this.itemBoundables.length?this.createNode(0):this.createHigherLevels(this.itemBoundables,-1),this.built=!0},jsts.index.strtree.AbstractSTRtree.prototype.createNode=function(){throw new jsts.error.AbstractMethodInvocationError},jsts.index.strtree.AbstractSTRtree.prototype.createParentBoundables=function(t,e){jsts.util.Assert.isTrue(!(0===t.length));var n=[];n.push(this.createNode(e));for(var o=[],r=0;re?1:e>t?-1:0},jsts.index.strtree.AbstractSTRtree.prototype.createHigherLevels=function(t,e){jsts.util.Assert.isTrue(!(0===t.length));var n=this.createParentBoundables(t,e+1);return 1===n.length?n[0]:this.createHigherLevels(n,e+1)},jsts.index.strtree.AbstractSTRtree.prototype.getRoot=function(){return this.built||this.build(),this.root},jsts.index.strtree.AbstractSTRtree.prototype.getNodeCapacity=function(){return this.nodeCapacity},jsts.index.strtree.AbstractSTRtree.prototype.size=function(){return 1===arguments.length?this.size2(arguments[0]):(this.built||this.build(),0===this.itemBoundables.length?0:this.size2(root))},jsts.index.strtree.AbstractSTRtree.prototype.size2=function(t){for(var e=0,n=t.getChildBoundables(),o=0;ot&&(t=r)}}return t+1},jsts.index.strtree.AbstractSTRtree.prototype.insert=function(t,e){jsts.util.Assert.isTrue(!this.built,"Cannot insert items into an STR packed R-tree after it has been built."),this.itemBoundables.push(new jsts.index.strtree.ItemBoundable(t,e))},jsts.index.strtree.AbstractSTRtree.prototype.query=function(t){arguments.length>1&&this.query2.apply(this,arguments),this.built||this.build();var e=[];return 0===this.itemBoundables.length?(jsts.util.Assert.isTrue(null===this.root.getBounds()),e):(this.getIntersectsOp().intersects(this.root.getBounds(),t)&&this.query3(t,this.root,e),e)},jsts.index.strtree.AbstractSTRtree.prototype.query2=function(t,e){arguments.length>2&&this.query3.apply(this,arguments),this.built||this.build(),0===this.itemBoundables.length&&jsts.util.Assert.isTrue(null===this.root.getBounds()),this.getIntersectsOp().intersects(this.root.getBounds(),t)&&this.query4(t,this.root,e)},jsts.index.strtree.AbstractSTRtree.prototype.query3=function(t,e,n){arguments[2]instanceof Array||this.query4.apply(this,arguments);for(var o=e.getChildBoundables(),r=0;r1)return void this.boundablesAtLevel2.apply(this,arguments);var e=[];return this.boundablesAtLevel2(t,this.root,e),e},jsts.index.strtree.AbstractSTRtree.prototype.boundablesAtLevel2=function(t,e,n){if(jsts.util.Assert.isTrue(t>-2),e.getLevel()===t)return void n.add(e);for(var o=node.getChildBoundables(),r=0;r0);for(var n=[],o=0;oa;a++)for(i[a]=[],n=0;sn;)o=t[s++],i[a].push(o),n++;return i},jsts.index.strtree.STRtree.DEFAULT_NODE_CAPACITY=10,jsts.index.strtree.STRtree.prototype.createNode=function(t){var e=new jsts.index.strtree.AbstractNode(t);return e.computeBounds=function(){for(var t=null,e=this.getChildBoundables(),n=0;n0;){var i=r.pop(),s=i.getDistance();if(s>=n)break;i.isLeaves()?(n=s,o=i):i.expandToQueue(r,n)}return[o.getBoundable(0).getItem(),o.getBoundable(1).getItem()]},jsts.noding.SegmentString=function(){},jsts.noding.SegmentString.prototype.getData=jsts.abstractFunc,jsts.noding.SegmentString.prototype.setData=jsts.abstractFunc,jsts.noding.SegmentString.prototype.size=jsts.abstractFunc,jsts.noding.SegmentString.prototype.getCoordinate=jsts.abstractFunc,jsts.noding.SegmentString.prototype.getCoordinates=jsts.abstractFunc,jsts.noding.SegmentString.prototype.isClosed=jsts.abstractFunc,jsts.noding.NodableSegmentString=function(){},jsts.noding.NodableSegmentString.prototype=new jsts.noding.SegmentString,jsts.noding.NodableSegmentString.prototype.addIntersection=jsts.abstractFunc,jsts.noding.NodedSegmentString=function(t,e){this.nodeList=new jsts.noding.SegmentNodeList(this),this.pts=t,this.data=e},jsts.noding.NodedSegmentString.prototype=new jsts.noding.NodableSegmentString,jsts.noding.NodedSegmentString.constructor=jsts.noding.NodedSegmentString,jsts.noding.NodedSegmentString.getNodedSubstrings=function(t){if(2===arguments.length)return void jsts.noding.NodedSegmentString.getNodedSubstrings2.apply(this,arguments);var e=new javascript.util.ArrayList;return jsts.noding.NodedSegmentString.getNodedSubstrings2(t,e),e},jsts.noding.NodedSegmentString.getNodedSubstrings2=function(t,e){for(var n=t.iterator();n.hasNext();){var o=n.next();o.getNodeList().addSplitEdges(e)}},jsts.noding.NodedSegmentString.prototype.nodeList=null,jsts.noding.NodedSegmentString.prototype.pts=null,jsts.noding.NodedSegmentString.prototype.data=null,jsts.noding.NodedSegmentString.prototype.getData=function(){return this.data},jsts.noding.NodedSegmentString.prototype.setData=function(t){this.data=t},jsts.noding.NodedSegmentString.prototype.getNodeList=function(){return this.nodeList},jsts.noding.NodedSegmentString.prototype.size=function(){return this.pts.length},jsts.noding.NodedSegmentString.prototype.getCoordinate=function(t){return this.pts[t]},jsts.noding.NodedSegmentString.prototype.getCoordinates=function(){return this.pts},jsts.noding.NodedSegmentString.prototype.isClosed=function(){return this.pts[0].equals(this.pts[this.pts.length-1])},jsts.noding.NodedSegmentString.prototype.getSegmentOctant=function(t){return t===this.pts.length-1?-1:this.safeOctant(this.getCoordinate(t),this.getCoordinate(t+1))},jsts.noding.NodedSegmentString.prototype.safeOctant=function(t,e){return t.equals2D(e)?0:jsts.noding.Octant.octant(t,e)},jsts.noding.NodedSegmentString.prototype.addIntersections=function(t,e,n){for(var o=0;o=t.length-1)return t.length-1;for(var o=jsts.geomgraph.Quadrant.quadrant(t[n],t[n+1]),r=e+1;rr?o:r;else{var s=Math.abs(t.x-e.x),a=Math.abs(t.y-e.y);i=o>r?s:a,0!==i||t.equals(e)||(i=Math.max(s,a))}if(0===i&&!t.equals(e))throw new jsts.error.IllegalArgumentError("Bad distance calculation");return i},jsts.algorithm.LineIntersector.nonRobustComputeEdgeDistance=function(t,e){var n=t.x-e.x,o=t.y-e.y,r=Math.sqrt(n*n+o*o);if(0!==r||t.equals(e))throw new jsts.error.IllegalArgumentError("Invalid distance calculation");return r},jsts.algorithm.LineIntersector.prototype.result=null,jsts.algorithm.LineIntersector.prototype.inputLines=null,jsts.algorithm.LineIntersector.prototype.intPt=null,jsts.algorithm.LineIntersector.prototype.intLineIndex=null,jsts.algorithm.LineIntersector.prototype._isProper=null,jsts.algorithm.LineIntersector.prototype.pa=null,jsts.algorithm.LineIntersector.prototype.pb=null,jsts.algorithm.LineIntersector.prototype.precisionModel=null,jsts.algorithm.LineIntersector.prototype.computeIntersection=function(){throw new jsts.error.AbstractMethodInvocationError},jsts.algorithm.LineIntersector.prototype.isCollinear=function(){return this.result===jsts.algorithm.LineIntersector.COLLINEAR_INTERSECTION},jsts.algorithm.LineIntersector.prototype.computeIntersection=function(t,e,n,o){this.inputLines[0][0]=t,this.inputLines[0][1]=e,this.inputLines[1][0]=n,this.inputLines[1][1]=o,this.result=this.computeIntersect(t,e,n,o)},jsts.algorithm.LineIntersector.prototype.computeIntersect=function(){throw new jsts.error.AbstractMethodInvocationError},jsts.algorithm.LineIntersector.prototype.isEndPoint=function(){return this.hasIntersection()&&!this._isProper},jsts.algorithm.LineIntersector.prototype.hasIntersection=function(){return this.result!==jsts.algorithm.LineIntersector.NO_INTERSECTION},jsts.algorithm.LineIntersector.prototype.getIntersectionNum=function(){return this.result},jsts.algorithm.LineIntersector.prototype.getIntersection=function(t){return this.intPt[t]},jsts.algorithm.LineIntersector.prototype.computeIntLineIndex=function(){null===this.intLineIndex&&(this.intLineIndex=[[],[]],this.computeIntLineIndex(0),this.computeIntLineIndex(1))},jsts.algorithm.LineIntersector.prototype.isIntersection=function(t){var e;for(e=0;en?(this.intLineIndex[t][0]=0,this.intLineIndex[t][1]=1):(this.intLineIndex[t][0]=1,this.intLineIndex[t][1]=0)},jsts.algorithm.LineIntersector.prototype.getEdgeDistance=function(t,e){var n=jsts.algorithm.LineIntersector.computeEdgeDistance(this.intPt[e],this.inputLines[t][0],this.inputLines[t][1]);return n},jsts.algorithm.RobustLineIntersector=function(){jsts.algorithm.RobustLineIntersector.prototype.constructor.call(this)},jsts.algorithm.RobustLineIntersector.prototype=new jsts.algorithm.LineIntersector,jsts.algorithm.RobustLineIntersector.prototype.computeIntersection=function(t,e,n){return 4===arguments.length?void jsts.algorithm.LineIntersector.prototype.computeIntersection.apply(this,arguments):(this._isProper=!1,jsts.geom.Envelope.intersects(e,n,t)&&0===jsts.algorithm.CGAlgorithms.orientationIndex(e,n,t)&&0===jsts.algorithm.CGAlgorithms.orientationIndex(n,e,t)?(this._isProper=!0,(t.equals(e)||t.equals(n))&&(this._isProper=!1),void(this.result=jsts.algorithm.LineIntersector.POINT_INTERSECTION)):void(this.result=jsts.algorithm.LineIntersector.NO_INTERSECTION))},jsts.algorithm.RobustLineIntersector.prototype.computeIntersect=function(t,e,n,o){if(this._isProper=!1,!jsts.geom.Envelope.intersects(t,e,n,o))return jsts.algorithm.LineIntersector.NO_INTERSECTION;var r=jsts.algorithm.CGAlgorithms.orientationIndex(t,e,n),i=jsts.algorithm.CGAlgorithms.orientationIndex(t,e,o);if(r>0&&i>0||0>r&&0>i)return jsts.algorithm.LineIntersector.NO_INTERSECTION;var s=jsts.algorithm.CGAlgorithms.orientationIndex(n,o,t),a=jsts.algorithm.CGAlgorithms.orientationIndex(n,o,e);if(s>0&&a>0||0>s&&0>a)return jsts.algorithm.LineIntersector.NO_INTERSECTION;var u=0===r&&0===i&&0===s&&0===a;return u?this.computeCollinearIntersection(t,e,n,o):(0===r||0===i||0===s||0===a?(this._isProper=!1,t.equals2D(n)||t.equals2D(o)?this.intPt[0]=t:e.equals2D(n)||e.equals2D(o)?this.intPt[0]=e:0===r?this.intPt[0]=new jsts.geom.Coordinate(n):0===i?this.intPt[0]=new jsts.geom.Coordinate(o):0===s?this.intPt[0]=new jsts.geom.Coordinate(t):0===a&&(this.intPt[0]=new jsts.geom.Coordinate(e))):(this._isProper=!0,this.intPt[0]=this.intersection(t,e,n,o)),jsts.algorithm.LineIntersector.POINT_INTERSECTION)},jsts.algorithm.RobustLineIntersector.prototype.computeCollinearIntersection=function(t,e,n,o){var r=jsts.geom.Envelope.intersects(t,e,n),i=jsts.geom.Envelope.intersects(t,e,o),s=jsts.geom.Envelope.intersects(n,o,t),a=jsts.geom.Envelope.intersects(n,o,e);return r&&i?(this.intPt[0]=n,this.intPt[1]=o,jsts.algorithm.LineIntersector.COLLINEAR_INTERSECTION):s&&a?(this.intPt[0]=t,this.intPt[1]=e,jsts.algorithm.LineIntersector.COLLINEAR_INTERSECTION):r&&s?(this.intPt[0]=n,this.intPt[1]=t,!n.equals(t)||i||a?jsts.algorithm.LineIntersector.COLLINEAR_INTERSECTION:jsts.algorithm.LineIntersector.POINT_INTERSECTION):r&&a?(this.intPt[0]=n,this.intPt[1]=e,!n.equals(e)||i||s?jsts.algorithm.LineIntersector.COLLINEAR_INTERSECTION:jsts.algorithm.LineIntersector.POINT_INTERSECTION):i&&s?(this.intPt[0]=o,this.intPt[1]=t,!o.equals(t)||r||a?jsts.algorithm.LineIntersector.COLLINEAR_INTERSECTION:jsts.algorithm.LineIntersector.POINT_INTERSECTION):i&&a?(this.intPt[0]=o,this.intPt[1]=e,!o.equals(e)||r||s?jsts.algorithm.LineIntersector.COLLINEAR_INTERSECTION:jsts.algorithm.LineIntersector.POINT_INTERSECTION):jsts.algorithm.LineIntersector.NO_INTERSECTION},jsts.algorithm.RobustLineIntersector.prototype.intersection=function(t,e,n,o){var r=this.intersectionWithNormalization(t,e,n,o);return this.isInSegmentEnvelopes(r)||(r=jsts.algorithm.CentralEndpointIntersector.getIntersection(t,e,n,o)),null!==this.precisionModel&&this.precisionModel.makePrecise(r),r},jsts.algorithm.RobustLineIntersector.prototype.intersectionWithNormalization=function(t,e,n,o){var r=new jsts.geom.Coordinate(t),i=new jsts.geom.Coordinate(e),s=new jsts.geom.Coordinate(n),a=new jsts.geom.Coordinate(o),u=new jsts.geom.Coordinate;this.normalizeToEnvCentre(r,i,s,a,u);var p=this.safeHCoordinateIntersection(r,i,s,a);return p.x+=u.x,p.y+=u.y,p},jsts.algorithm.RobustLineIntersector.prototype.safeHCoordinateIntersection=function(t,e,n,o){var r=null;try{r=jsts.algorithm.HCoordinate.intersection(t,e,n,o)}catch(i){if(!(i instanceof jsts.error.NotRepresentableError))throw i;r=jsts.algorithm.CentralEndpointIntersector.getIntersection(t,e,n,o)}return r},jsts.algorithm.RobustLineIntersector.prototype.normalizeToMinimum=function(t,e,n,o,r){r.x=this.smallestInAbsValue(t.x,e.x,n.x,o.x),r.y=this.smallestInAbsValue(t.y,e.y,n.y,o.y),t.x-=r.x,t.y-=r.y,e.x-=r.x,e.y-=r.y,n.x-=r.x,n.y-=r.y,o.x-=r.x,o.y-=r.y},jsts.algorithm.RobustLineIntersector.prototype.normalizeToEnvCentre=function(t,e,n,o,r){var i=t.xe.x?t.x:e.x,u=t.y>e.y?t.y:e.y,p=n.xo.x?n.x:o.x,h=n.y>o.y?n.y:o.y,d=i>p?i:p,c=l>a?a:l,f=s>g?s:g,m=h>u?u:h,y=(d+c)/2,j=(f+m)/2;r.x=y,r.y=j,t.x-=r.x,t.y-=r.y,e.x-=r.x,e.y-=r.y,n.x-=r.x,n.y-=r.y,o.x-=r.x,o.y-=r.y},jsts.algorithm.RobustLineIntersector.prototype.smallestInAbsValue=function(t,e,n,o){var r=t,i=Math.abs(r);return Math.abs(e)=0&&n>=0?Math.max(e,n):0>=e&&0>=n?Math.max(e,n):0},jsts.geom.LineSegment.prototype.orientationIndex2=function(t){return jsts.algorithm.CGAlgorithms.orientationIndex(this.p0,this.p1,t)},jsts.geom.LineSegment.prototype.reverse=function(){var t=this.p0;this.p0=this.p1,this.p1=t},jsts.geom.LineSegment.prototype.normalize=function(){this.p1.compareTo(this.p0)<0&&this.reverse()},jsts.geom.LineSegment.prototype.angle=function(){return Math.atan2(this.p1.y-this.p0.y,this.p1.x-this.p0.x)},jsts.geom.LineSegment.prototype.midPoint=function(){return jsts.geom.LineSegment.midPoint(this.p0,this.p1)},jsts.geom.LineSegment.prototype.distance=function(t){return t instanceof jsts.geom.LineSegment?this.distance1(t):t instanceof jsts.geom.Coordinate?this.distance2(t):void 0},jsts.geom.LineSegment.prototype.distance1=function(t){return jsts.algorithm.CGAlgorithms.distanceLineLine(this.p0,this.p1,t.p0,t.p1)},jsts.geom.LineSegment.prototype.distance2=function(t){return jsts.algorithm.CGAlgorithms.distancePointLine(t,this.p0,this.p1) -},jsts.geom.LineSegment.prototype.pointAlong=function(t){var e=new jsts.geom.Coordinate;return e.x=this.p0.x+t*(this.p1.x-this.p0.x),e.y=this.p0.y+t*(this.p1.y-this.p0.y),e},jsts.geom.LineSegment.prototype.pointAlongOffset=function(t,e){var n=this.p0.x+t*(this.p1.x-this.p0.x),o=this.p0.y+t*(this.p1.y-this.p0.y),r=this.p1.x-this.p0.x,i=this.p1.y-this.p0.y,s=Math.sqrt(r*r+i*i),a=0,u=0;if(0!==e){if(0>=s)throw"Cannot compute offset from zero-length line segment";a=e*r/s,u=e*i/s}var p=n-u,g=o+a,l=new jsts.geom.Coordinate(p,g);return l},jsts.geom.LineSegment.prototype.projectionFactor=function(t){if(t.equals(this.p0))return 0;if(t.equals(this.p1))return 1;var e=this.p1.x-this.p0.x,n=this.p1.y-this.p0.y,o=e*e+n*n,r=((t.x-this.p0.x)*e+(t.y-this.p0.y)*n)/o;return r},jsts.geom.LineSegment.prototype.segmentFraction=function(t){var e=this.projectionFactor(t);return 0>e?e=0:(e>1||isNaN(e))&&(e=1),e},jsts.geom.LineSegment.prototype.project=function(t){return t instanceof jsts.geom.Coordinate?this.project1(t):t instanceof jsts.geom.LineSegment?this.project2(t):void 0},jsts.geom.LineSegment.prototype.project1=function(t){if(t.equals(this.p0)||t.equals(this.p1))return new jsts.geom.Coordinate(t);var e=this.projectionFactor(t),n=new jsts.geom.Coordinate;return n.x=this.p0.x+e*(this.p1.x-this.p0.x),n.y=this.p0.y+e*(this.p1.y-this.p0.y),n},jsts.geom.LineSegment.prototype.project2=function(t){var e=this.projectionFactor(t.p0),n=this.projectionFactor(t.p1);if(e>=1&&n>=1)return null;if(0>=e&&0>=n)return null;var o=this.project(t.p0);0>e&&(o=p0),e>1&&(o=p1);var r=this.project(t.p1);return 0>n&&(r=p0),n>1&&(r=p1),new jsts.geom.LineSegment(o,r)},jsts.geom.LineSegment.prototype.closestPoint=function(t){var e=this.projectionFactor(t);if(e>0&&1>e)return this.project(t);var n=this.p0.distance(t),o=this.p1.distance(t);return o>n?this.p0:this.p1},jsts.geom.LineSegment.prototype.closestPoints=function(t){var e=this.intersection(t);if(null!==e)return[e,e];var n,o=[],r=Number.MAX_VALUE,i=this.closestPoint(t.p0);r=i.distance(t.p0),o[0]=i,o[1]=t.p0;var s=this.closestPoint(t.p1);n=s.distance(t.p1),r>n&&(r=n,o[0]=s,o[1]=t.p1);var a=t.closestPoint(this.p0);n=a.distance(this.p0),r>n&&(r=n,o[0]=this.p0,o[1]=a);var u=t.closestPoint(this.p1);return n=u.distance(this.p1),r>n&&(r=n,o[0]=this.p1,o[1]=u),o},jsts.geom.LineSegment.prototype.intersection=function(t){var e=new jsts.algorithm.RobustLineIntersector;return e.computeIntersection(this.p0,this.p1,t.p0,t.p1),e.hasIntersection()?e.getIntersection(0):null},jsts.geom.LineSegment.prototype.setCoordinates=function(t){return t instanceof jsts.geom.Coordinate?void this.setCoordinates2.apply(this,arguments):void this.setCoordinates2(t.p0,t.p1)},jsts.geom.LineSegment.prototype.setCoordinates2=function(t,e){this.p0.x=t.x,this.p0.y=t.y,this.p1.x=e.x,this.p1.y=e.y},jsts.geom.LineSegment.prototype.distancePerpendicular=function(t){return jsts.algorithm.CGAlgorithms.distancePointLinePerpendicular(t,this.p0,this.p1)},jsts.geom.LineSegment.prototype.lineIntersection=function(t){try{var e=jsts.algorithm.HCoordinate.intersection(this.p0,this.p1,t.p0,t.p1);return e}catch(n){}return null},jsts.geom.LineSegment.prototype.toGeometry=function(t){return t.createLineString([this.p0,this.p1])},jsts.geom.LineSegment.prototype.equals=function(t){return t instanceof jsts.geom.LineSegment?this.p0.equals(t.p0)&&this.p1.equals(t.p1):!1},jsts.geom.LineSegment.prototype.compareTo=function(t){var e=this.p0.compareTo(t.p0);return 0!==e?e:this.p1.compareTo(t.p1)},jsts.geom.LineSegment.prototype.equalsTopo=function(t){return this.p0.equals(t.p0)&&this.p1.equals(t.p1)||this.p0.equals(t.p1)&&this.p1.equals(t.p0)},jsts.geom.LineSegment.prototype.toString=function(){return"LINESTRING("+this.p0.x+" "+this.p0.y+", "+this.p1.x+" "+this.p1.y+")"},jsts.index.chain.MonotoneChainOverlapAction=function(){this.tempEnv1=new jsts.geom.Envelope,this.tempEnv2=new jsts.geom.Envelope,this.overlapSeg1=new jsts.geom.LineSegment,this.overlapSeg2=new jsts.geom.LineSegment},jsts.index.chain.MonotoneChainOverlapAction.prototype.tempEnv1=null,jsts.index.chain.MonotoneChainOverlapAction.prototype.tempEnv2=null,jsts.index.chain.MonotoneChainOverlapAction.prototype.overlapSeg1=null,jsts.index.chain.MonotoneChainOverlapAction.prototype.overlapSeg2=null,jsts.index.chain.MonotoneChainOverlapAction.prototype.overlap=function(t,e,n,o){this.mc1.getLineSegment(e,this.overlapSeg1),this.mc2.getLineSegment(o,this.overlapSeg2),this.overlap2(this.overlapSeg1,this.overlapSeg2)},jsts.index.chain.MonotoneChainOverlapAction.prototype.overlap2=function(){},function(){var t=jsts.index.chain.MonotoneChainOverlapAction,e=jsts.noding.SinglePassNoder,n=jsts.index.strtree.STRtree,o=jsts.noding.NodedSegmentString,r=jsts.index.chain.MonotoneChainBuilder,i=function(t){this.si=t};i.prototype=new t,i.constructor=i,i.prototype.si=null,i.prototype.overlap=function(t,e,n,o){var r=t.getContext(),i=n.getContext();this.si.processIntersections(r,e,i,o)},jsts.noding.MCIndexNoder=function(){this.monoChains=[],this.index=new n},jsts.noding.MCIndexNoder.prototype=new e,jsts.noding.MCIndexNoder.constructor=jsts.noding.MCIndexNoder,jsts.noding.MCIndexNoder.prototype.monoChains=null,jsts.noding.MCIndexNoder.prototype.index=null,jsts.noding.MCIndexNoder.prototype.idCounter=0,jsts.noding.MCIndexNoder.prototype.nodedSegStrings=null,jsts.noding.MCIndexNoder.prototype.nOverlaps=0,jsts.noding.MCIndexNoder.prototype.getMonotoneChains=function(){return this.monoChains},jsts.noding.MCIndexNoder.prototype.getIndex=function(){return this.index},jsts.noding.MCIndexNoder.prototype.getNodedSubstrings=function(){return o.getNodedSubstrings(this.nodedSegStrings)},jsts.noding.MCIndexNoder.prototype.computeNodes=function(t){this.nodedSegStrings=t;for(var e=t.iterator();e.hasNext();)this.add(e.next());this.intersectChains()},jsts.noding.MCIndexNoder.prototype.intersectChains=function(){for(var t=new i(this.segInt),e=0;en.getId()&&(n.computeOverlaps(s,t),this.nOverlaps++),this.segInt.isDone())return}},jsts.noding.MCIndexNoder.prototype.add=function(t){for(var e=r.getChains(t.getCoordinates(),t),n=0;ni;i++)r.isLine(i)&&r.getLocation(i)===jsts.geom.Location.BOUNDARY&&(e[i]=!0);for(var n=this.iterator();n.hasNext();)for(var o=n.next(),r=o.getLabel(),i=0;2>i;i++)if(r.isAnyNull(i)){var s=jsts.geom.Location.NONE;if(e[i])s=jsts.geom.Location.EXTERIOR;else{var a=o.getCoordinate();s=this.getLocation(i,a,t)}r.setAllLocationsIfNull(i,s)}},jsts.geomgraph.EdgeEndStar.prototype.computeEdgeEndLabels=function(t){for(var e=this.iterator();e.hasNext();){var n=e.next();n.computeLabel(t)}},jsts.geomgraph.EdgeEndStar.prototype.getLocation=function(t,e,n){return this.ptInAreaLocation[t]===jsts.geom.Location.NONE&&(this.ptInAreaLocation[t]=jsts.algorithm.locate.SimplePointInAreaLocator.locate(e,n[t].getGeometry())),this.ptInAreaLocation[t]},jsts.geomgraph.EdgeEndStar.prototype.isAreaLabelsConsistent=function(t){return this.computeEdgeEndLabels(t.getBoundaryNodeRule()),this.checkAreaLabelsConsistent(0)},jsts.geomgraph.EdgeEndStar.prototype.checkAreaLabelsConsistent=function(t){var e=this.getEdges();if(e.size()<=0)return!0;var n=e.size()-1,o=e.get(n).getLabel(),r=o.getLocation(t,jsts.geomgraph.Position.LEFT);jsts.util.Assert.isTrue(r!=jsts.geom.Location.NONE,"Found unlabelled area edge");for(var i=r,s=this.iterator();s.hasNext();){var a=s.next(),u=a.getLabel();jsts.util.Assert.isTrue(u.isArea(t),"Found non-area edge");var p=u.getLocation(t,jsts.geomgraph.Position.LEFT),g=u.getLocation(t,jsts.geomgraph.Position.RIGHT);if(p===g)return!1;if(g!==i)return!1;i=p}return!0},jsts.geomgraph.EdgeEndStar.prototype.propagateSideLabels=function(t){for(var e=jsts.geom.Location.NONE,n=this.iterator();n.hasNext();){var o=n.next(),r=o.getLabel();r.isArea(t)&&r.getLocation(t,jsts.geomgraph.Position.LEFT)!==jsts.geom.Location.NONE&&(e=r.getLocation(t,jsts.geomgraph.Position.LEFT))}if(e!==jsts.geom.Location.NONE)for(var i=e,n=this.iterator();n.hasNext();){var o=n.next(),r=o.getLabel();if(r.getLocation(t,jsts.geomgraph.Position.ON)===jsts.geom.Location.NONE&&r.setLocation(t,jsts.geomgraph.Position.ON,i),r.isArea(t)){var s=r.getLocation(t,jsts.geomgraph.Position.LEFT),a=r.getLocation(t,jsts.geomgraph.Position.RIGHT);if(a!==jsts.geom.Location.NONE){if(a!==i)throw new jsts.error.TopologyError("side location conflict",o.getCoordinate());s===jsts.geom.Location.NONE&&jsts.util.Assert.shouldNeverReachHere("found single null side (at "+o.getCoordinate()+")"),i=s}else jsts.util.Assert.isTrue(r.getLocation(t,jsts.geomgraph.Position.LEFT)===jsts.geom.Location.NONE,"found single null side"),r.setLocation(t,jsts.geomgraph.Position.RIGHT,i),r.setLocation(t,jsts.geomgraph.Position.LEFT,i)}}},jsts.geomgraph.EdgeEndStar.prototype.findIndex=function(t){this.iterator();for(var e=0;ei;i++)n=t.get(i),o=this.findSnapForVertex(n,e),null!==o&&(t.set(i,new jsts.geom.Coordinate(o)),0===i&&this.isClosed&&t.set(t.size()-1,new jsts.geom.Coordinate(o)))},t.prototype.findSnapForVertex=function(t,e){var n=0,o=e.length;for(n=0;o>n;n++){if(t.equals(e[n]))return null;if(t.distance(e[n])1&&e[0].equals2D(e[e.length-1])&&(i=e.length-1),n=0;i>n;n++)o=e[n],r=this.findSegmentIndexToSnap(o,t),r>=0&&t.add(r+1,new jsts.geom.Coordinate(o),!1)}},t.prototype.findSegmentIndexToSnap=function(t,e){var n,o=Number.MAX_VALUE,r=-1,i=0;for(i;in&&(o=n,r=i)}return r},jsts.operation.overlay.snap.LineStringSnapper=t}(),function(){var t=javascript.util.ArrayList,e=jsts.geom.GeometryComponentFilter,n=jsts.geom.LineString,o=jsts.operation.polygonize.EdgeRing,r=jsts.operation.polygonize.PolygonizeGraph,i=function(){var o=this,r=function(){};r.prototype=new e,r.prototype.filter=function(t){t instanceof n&&o.add(t)},this.lineStringAdder=new r,this.dangles=new t,this.cutEdges=new t,this.invalidRingLines=new t};i.prototype.lineStringAdder=null,i.prototype.graph=null,i.prototype.dangles=null,i.prototype.cutEdges=null,i.prototype.invalidRingLines=null,i.prototype.holeList=null,i.prototype.shellList=null,i.prototype.polyList=null,i.prototype.add=function(t){if(t instanceof jsts.geom.LineString)return this.add3(t);if(t instanceof jsts.geom.Geometry)return this.add2(t);for(var e=t.iterator();e.hasNext();){var n=e.next();this.add2(n)}},i.prototype.add2=function(t){t.apply(this.lineStringAdder)},i.prototype.add3=function(t){null==this.graph&&(this.graph=new r(t.getFactory())),this.graph.addEdge(t)},i.prototype.getPolygons=function(){return this.polygonize(),this.polyList},i.prototype.getDangles=function(){return this.polygonize(),this.dangles},i.prototype.getCutEdges=function(){return this.polygonize(),this.cutEdges},i.prototype.getInvalidRingLines=function(){return this.polygonize(),this.invalidRingLines},i.prototype.polygonize=function(){if(null==this.polyList&&(this.polyList=new t,null!=this.graph)){this.dangles=this.graph.deleteDangles(),this.cutEdges=this.graph.deleteCutEdges();var e=this.graph.getEdgeRings(),n=new t;this.invalidRingLines=new t,this.findValidRings(e,n,this.invalidRingLines),this.findShellsAndHoles(n),i.assignHolesToShells(this.holeList,this.shellList),this.polyList=new t;for(var o=this.shellList.iterator();o.hasNext();){var r=o.next();this.polyList.add(r.getPolygon())}}},i.prototype.findValidRings=function(t,e,n){for(var o=t.iterator();o.hasNext();){var r=o.next();r.isValid()?e.add(r):n.add(r.getLineString())}},i.prototype.findShellsAndHoles=function(e){this.holeList=new t,this.shellList=new t;for(var n=e.iterator();n.hasNext();){var o=n.next();o.isHole()?this.holeList.add(o):this.shellList.add(o)}},i.assignHolesToShells=function(t,e){for(var n=t.iterator();n.hasNext();){var o=n.next();i.assignHoleToShell(o,e)}},i.assignHoleToShell=function(t,e){var n=o.findEdgeRingContaining(t,e);null!=n&&n.addHole(t.getRing())},jsts.operation.polygonize.Polygonizer=i}(),function(){var t=javascript.util.ArrayList,e=function(){};e.prototype.inputGeom=null,e.prototype.factory=null,e.prototype.pruneEmptyGeometry=!0,e.prototype.preserveGeometryCollectionType=!0,e.prototype.preserveCollections=!1,e.prototype.reserveType=!1,e.prototype.getInputGeometry=function(){return this.inputGeom},e.prototype.transform=function(t){if(this.inputGeom=t,this.factory=t.getFactory(),t instanceof jsts.geom.Point)return this.transformPoint(t,null);if(t instanceof jsts.geom.MultiPoint)return this.transformMultiPoint(t,null);if(t instanceof jsts.geom.LinearRing)return this.transformLinearRing(t,null);if(t instanceof jsts.geom.LineString)return this.transformLineString(t,null);if(t instanceof jsts.geom.MultiLineString)return this.transformMultiLineString(t,null);if(t instanceof jsts.geom.Polygon)return this.transformPolygon(t,null);if(t instanceof jsts.geom.MultiPolygon)return this.transformMultiPolygon(t,null);if(t instanceof jsts.geom.GeometryCollection)return this.transformGeometryCollection(t,null);throw new jsts.error.IllegalArgumentException("Unknown Geometry subtype: "+t.getClass().getName())},e.prototype.createCoordinateSequence=function(t){return this.factory.getCoordinateSequenceFactory().create(t)},e.prototype.copy=function(t){return t.clone()},e.prototype.transformCoordinates=function(t){return this.copy(t)},e.prototype.transformPoint=function(t){return this.factory.createPoint(this.transformCoordinates(t.getCoordinateSequence(),t))},e.prototype.transformMultiPoint=function(e){for(var n=new t,o=0;o0&&4>n&&!this.preserveType?this.factory.createLineString(e):this.factory.createLinearRing(e)},e.prototype.transformLineString=function(t){return this.factory.createLineString(this.transformCoordinates(t.getCoordinateSequence(),t))},e.prototype.transformMultiLineString=function(e){for(var n=new t,o=0;on&&(n=i)}return n},r.computeSizeBasedSnapTolerance=function(t){var e=t.getEnvelopeInternal(),n=Math.min(e.getHeight(),e.getWidth()),o=n*r.SNAP_PRECISION_FACTOR;return o},r.computeOverlaySnapTolerance2=function(t,e){return Math.min(this.computeOverlaySnapTolerance(t),this.computeOverlaySnapTolerance(e))},r.snap=function(t,e,n){var o=[],i=new r(t);o[0]=i.snapTo(e,n);var s=new r(e);return o[1]=s.snapTo(o[0],n),o},r.snapToSelf=function(t,e,n){var o=new r(t);return o.snapToSelf(e,n)},r.prototype.srcGeom=null,r.prototype.snapTo=function(t,e){var n=this.extractTargetCoordinates(t),r=new o(e,n);return r.transform(this.srcGeom)},r.prototype.snapToSelf=function(t,e){var n=this.extractTargetCoordinates(srcGeom),r=new o(t,n,!0),i=r.transform(srcGeom),s=i;return e&&s instanceof Polygonal&&(s=i.buffer(0)),s},r.prototype.extractTargetCoordinates=function(t){for(var e=new n,o=t.getCoordinates(),r=0;ro&&(e=o)}return e},jsts.operation.overlay.snap.GeometrySnapper=r}(),jsts.algorithm.PointLocator=function(t){this.boundaryRule=t?t:jsts.algorithm.BoundaryNodeRule.OGC_SFS_BOUNDARY_RULE},jsts.algorithm.PointLocator.prototype.boundaryRule=null,jsts.algorithm.PointLocator.prototype.isIn=null,jsts.algorithm.PointLocator.prototype.numBoundaries=null,jsts.algorithm.PointLocator.prototype.intersects=function(t,e){return this.locate(t,e)!==jsts.geom.Location.EXTERIOR},jsts.algorithm.PointLocator.prototype.locate=function(t,e){return e.isEmpty()?jsts.geom.Location.EXTERIOR:e instanceof jsts.geom.Point?this.locate2(t,e):e instanceof jsts.geom.LineString?this.locate3(t,e):e instanceof jsts.geom.Polygon?this.locate4(t,e):(this.isIn=!1,this.numBoundaries=0,this.computeLocation(t,e),this.boundaryRule.isInBoundary(this.numBoundaries)?jsts.geom.Location.BOUNDARY:this.numBoundaries>0||this.isIn?jsts.geom.Location.INTERIOR:jsts.geom.Location.EXTERIOR)},jsts.algorithm.PointLocator.prototype.computeLocation=function(t,e){if(e instanceof jsts.geom.Point||e instanceof jsts.geom.LineString||e instanceof jsts.geom.Polygon)this.updateLocationInfo(this.locate(t,e));else if(e instanceof jsts.geom.MultiLineString)for(var n=e,o=0;or;r++){if(n=this.edges.get(r),o=n.getCoordinates(),this.matchInSameDirection(t,e,o[0],o[1]))return n;if(this.matchInSameDirection(t,e,o[o.length-1],o[o.length-2]))return n}return null},jsts.geomgraph.PlanarGraph.prototype.matchInSameDirection=function(t,e,n,o){return t.equals(n)&&jsts.algorithm.CGAlgorithms.computeOrientation(t,e,o)===jsts.algorithm.CGAlgorithms.COLLINEAR&&jsts.geomgraph.Quadrant.quadrant(t,e)===jsts.geomgraph.Quadrant.quadrant(n,o)?!0:!1},jsts.geomgraph.PlanarGraph.prototype.findEdgeEnd=function(t){for(var e=this.getEdgeEnds().iterator();e.hasNext();){var n=e.next();if(n.getEdge()===t)return n}return null}}(),jsts.noding.SegmentIntersector=function(){},jsts.noding.SegmentIntersector.prototype.processIntersections=jsts.abstractFunc,jsts.noding.SegmentIntersector.prototype.isDone=jsts.abstractFunc,function(){var t=jsts.noding.SegmentIntersector,e=javascript.util.ArrayList;jsts.noding.InteriorIntersectionFinder=function(t){this.li=t,this.intersections=new e,this.interiorIntersection=null},jsts.noding.InteriorIntersectionFinder.prototype=new t,jsts.noding.InteriorIntersectionFinder.constructor=jsts.noding.InteriorIntersectionFinder,jsts.noding.InteriorIntersectionFinder.prototype.findAllIntersections=!1,jsts.noding.InteriorIntersectionFinder.prototype.isCheckEndSegmentsOnly=!1,jsts.noding.InteriorIntersectionFinder.prototype.li=null,jsts.noding.InteriorIntersectionFinder.prototype.interiorIntersection=null,jsts.noding.InteriorIntersectionFinder.prototype.intSegments=null,jsts.noding.InteriorIntersectionFinder.prototype.intersections=null,jsts.noding.InteriorIntersectionFinder.prototype.setFindAllIntersections=function(t){this.findAllIntersections=t},jsts.noding.InteriorIntersectionFinder.prototype.getIntersections=function(){return intersections},jsts.noding.InteriorIntersectionFinder.prototype.setCheckEndSegmentsOnly=function(t){this.isCheckEndSegmentsOnly=t},jsts.noding.InteriorIntersectionFinder.prototype.hasIntersection=function(){return null!=this.interiorIntersection},jsts.noding.InteriorIntersectionFinder.prototype.getInteriorIntersection=function(){return this.interiorIntersection},jsts.noding.InteriorIntersectionFinder.prototype.getIntersectionSegments=function(){return this.intSegments},jsts.noding.InteriorIntersectionFinder.prototype.processIntersections=function(t,e,n,o){if(!this.hasIntersection()&&(t!=n||e!=o)){if(this.isCheckEndSegmentsOnly){var r=this.isEndSegment(t,e)||isEndSegment(n,o);if(!r)return}var i=t.getCoordinates()[e],s=t.getCoordinates()[e+1],a=n.getCoordinates()[o],u=n.getCoordinates()[o+1];this.li.computeIntersection(i,s,a,u),this.li.hasIntersection()&&this.li.isInteriorIntersection()&&(this.intSegments=[],this.intSegments[0]=i,this.intSegments[1]=s,this.intSegments[2]=a,this.intSegments[3]=u,this.interiorIntersection=this.li.getIntersection(0),this.intersections.add(this.interiorIntersection))}},jsts.noding.InteriorIntersectionFinder.prototype.isEndSegment=function(t,e){return 0==e?!0:e>=t.size()-2?!0:!1},jsts.noding.InteriorIntersectionFinder.prototype.isDone=function(){return this.findAllIntersections?!1:null!=this.interiorIntersection}}(),function(){var t=jsts.algorithm.RobustLineIntersector,e=jsts.noding.InteriorIntersectionFinder,n=jsts.noding.MCIndexNoder;jsts.noding.FastNodingValidator=function(e){this.li=new t,this.segStrings=e},jsts.noding.FastNodingValidator.prototype.li=null,jsts.noding.FastNodingValidator.prototype.segStrings=null,jsts.noding.FastNodingValidator.prototype.findAllIntersections=!1,jsts.noding.FastNodingValidator.prototype.segInt=null,jsts.noding.FastNodingValidator.prototype._isValid=!0,jsts.noding.FastNodingValidator.prototype.setFindAllIntersections=function(t){this.findAllIntersections=t},jsts.noding.FastNodingValidator.prototype.getIntersections=function(){return segInt.getIntersections()},jsts.noding.FastNodingValidator.prototype.isValid=function(){return this.execute(),this._isValid},jsts.noding.FastNodingValidator.prototype.getErrorMessage=function(){if(this._isValid)return"no intersections found";var t=this.segInt.getIntersectionSegments();return"found non-noded intersection between "+jsts.io.WKTWriter.toLineString(t[0],t[1])+" and "+jsts.io.WKTWriter.toLineString(t[2],t[3])},jsts.noding.FastNodingValidator.prototype.checkValid=function(){if(this.execute(),!this._isValid)throw new jsts.error.TopologyError(this.getErrorMessage(),this.segInt.getInteriorIntersection())},jsts.noding.FastNodingValidator.prototype.execute=function(){null==this.segInt&&this.checkInteriorIntersections()},jsts.noding.FastNodingValidator.prototype.checkInteriorIntersections=function(){this._isValid=!0,this.segInt=new e(this.li),this.segInt.setFindAllIntersections(this.findAllIntersections);var t=new n;return t.setSegmentIntersector(this.segInt),t.computeNodes(this.segStrings),this.segInt.hasIntersection()?void(this._isValid=!1):void 0}}(),function(){jsts.noding.BasicSegmentString=function(t,e){this.pts=t,this.data=e},jsts.noding.BasicSegmentString.prototype=new jsts.noding.SegmentString,jsts.noding.BasicSegmentString.prototype.pts=null,jsts.noding.BasicSegmentString.prototype.data=null,jsts.noding.BasicSegmentString.prototype.getData=function(){return this.data},jsts.noding.BasicSegmentString.prototype.setData=function(t){this.data=t},jsts.noding.BasicSegmentString.prototype.size=function(){return this.pts.length},jsts.noding.BasicSegmentString.prototype.getCoordinate=function(t){return this.pts[t]},jsts.noding.BasicSegmentString.prototype.getCoordinates=function(){return this.pts},jsts.noding.BasicSegmentString.prototype.isClosed=function(){return this.pts[0].equals(this.pts[this.pts.length-1])},jsts.noding.BasicSegmentString.prototype.getSegmentOctant=function(t){return t==this.pts.length-1?-1:jsts.noding.Octant.octant(this.getCoordinate(t),this.getCoordinate(t+1))}}(),function(){var t=jsts.noding.FastNodingValidator,e=jsts.noding.BasicSegmentString,n=javascript.util.ArrayList;jsts.geomgraph.EdgeNodingValidator=function(e){this.nv=new t(jsts.geomgraph.EdgeNodingValidator.toSegmentStrings(e))},jsts.geomgraph.EdgeNodingValidator.checkValid=function(t){var e=new jsts.geomgraph.EdgeNodingValidator(t);e.checkValid()},jsts.geomgraph.EdgeNodingValidator.toSegmentStrings=function(t){for(var o=new n,r=t.iterator();r.hasNext();){var i=r.next();o.add(new e(i.getCoordinates(),i))}return o},jsts.geomgraph.EdgeNodingValidator.prototype.nv=null,jsts.geomgraph.EdgeNodingValidator.prototype.checkValid=function(){this.nv.checkValid()}}(),jsts.operation.GeometryGraphOperation=function(t,e,n){if(this.li=new jsts.algorithm.RobustLineIntersector,this.arg=[],void 0!==t){if(void 0===e)return this.setComputationPrecision(t.getPrecisionModel()),void(this.arg[0]=new jsts.geomgraph.GeometryGraph(0,t));n=n||jsts.algorithm.BoundaryNodeRule.OGC_SFS_BOUNDARY_RULE,this.setComputationPrecision(t.getPrecisionModel().compareTo(e.getPrecisionModel())>=0?t.getPrecisionModel():e.getPrecisionModel()),this.arg[0]=new jsts.geomgraph.GeometryGraph(0,t,n),this.arg[1]=new jsts.geomgraph.GeometryGraph(1,e,n)}},jsts.operation.GeometryGraphOperation.prototype.li=null,jsts.operation.GeometryGraphOperation.prototype.resultPrecisionModel=null,jsts.operation.GeometryGraphOperation.prototype.arg=null,jsts.operation.GeometryGraphOperation.prototype.getArgGeometry=function(t){return arg[t].getGeometry()},jsts.operation.GeometryGraphOperation.prototype.setComputationPrecision=function(t){this.resultPrecisionModel=t,this.li.setPrecisionModel(this.resultPrecisionModel)},jsts.operation.overlay.OverlayNodeFactory=function(){},jsts.operation.overlay.OverlayNodeFactory.prototype=new jsts.geomgraph.NodeFactory,jsts.operation.overlay.OverlayNodeFactory.constructor=jsts.operation.overlay.OverlayNodeFactory,jsts.operation.overlay.OverlayNodeFactory.prototype.createNode=function(t){return new jsts.geomgraph.Node(t,new jsts.geomgraph.DirectedEdgeStar)},jsts.operation.overlay.PolygonBuilder=function(t){this.shellList=[],this.geometryFactory=t},jsts.operation.overlay.PolygonBuilder.prototype.geometryFactory=null,jsts.operation.overlay.PolygonBuilder.prototype.shellList=null,jsts.operation.overlay.PolygonBuilder.prototype.add=function(t){return 2===arguments.length?void this.add2.apply(this,arguments):void this.add2(t.getEdgeEnds(),t.getNodes())},jsts.operation.overlay.PolygonBuilder.prototype.add2=function(t,e){jsts.geomgraph.PlanarGraph.linkResultDirectedEdges(e);var n=this.buildMaximalEdgeRings(t),o=[],r=this.buildMinimalEdgeRings(n,this.shellList,o);this.sortShellsAndHoles(r,this.shellList,o),this.placeFreeHoles(this.shellList,o)},jsts.operation.overlay.PolygonBuilder.prototype.getPolygons=function(){var t=this.computePolygons(this.shellList);return t},jsts.operation.overlay.PolygonBuilder.prototype.buildMaximalEdgeRings=function(t){for(var e=[],n=t.iterator();n.hasNext();){var o=n.next();if(o.isInResult()&&o.getLabel().isArea()&&null==o.getEdgeRing()){var r=new jsts.operation.overlay.MaximalEdgeRing(o,this.geometryFactory);e.push(r),r.setInResult()}}return e},jsts.operation.overlay.PolygonBuilder.prototype.buildMinimalEdgeRings=function(t,e,n){for(var o=[],r=0;r2){i.linkDirectedEdgesForMinimalEdgeRings();var s=i.buildMinimalRings(),a=this.findShell(s);null!==a?(this.placePolygonHoles(a,s),e.push(a)):n=n.concat(s)}else o.push(i)}return o},jsts.operation.overlay.PolygonBuilder.prototype.findShell=function(t){for(var e=0,n=null,o=0;o=e,"found two shells in MinimalEdgeRing list"),n},jsts.operation.overlay.PolygonBuilder.prototype.placePolygonHoles=function(t,e){for(var n=0;nr;r++)n.isNull(r)||!n.isArea()||o.isNull(r)||(0==o.getDelta(r)?n.toLine(r):(h.isTrue(!o.isNull(r,i.LEFT),"depth of LEFT side has not been initialized"),n.setLocation(r,i.LEFT,o.getLocation(r,i.LEFT)),h.isTrue(!o.isNull(r,i.RIGHT),"depth of RIGHT side has not been initialized"),n.setLocation(r,i.RIGHT,o.getLocation(r,i.RIGHT))))}}},jsts.operation.overlay.OverlayOp.prototype.replaceCollapsedEdges=function(){for(var t=new d,e=this.edgeList.iterator();e.hasNext();){var n=e.next();n.isCollapsed()&&(e.remove(),t.add(n.getCollapsedEdge()))}this.edgeList.addAll(t)},jsts.operation.overlay.OverlayOp.prototype.copyPoints=function(t){for(var e=this.arg[t].getNodeIterator();e.hasNext();){var n=e.next(),o=this.graph.addNode(n.getCoordinate());o.setLabel(t,n.getLabel().getLocation(t))}},jsts.operation.overlay.OverlayOp.prototype.computeLabelling=function(){for(var t=this.graph.getNodes().iterator();t.hasNext();){var e=t.next();e.getEdges().computeLabelling(this.arg)}this.mergeSymLabels(),this.updateNodeLabelling()},jsts.operation.overlay.OverlayOp.prototype.mergeSymLabels=function(){for(var t=this.graph.getNodes().iterator();t.hasNext();){var e=t.next();e.getEdges().mergeSymLabels()}},jsts.operation.overlay.OverlayOp.prototype.updateNodeLabelling=function(){for(var t=this.graph.getNodes().iterator();t.hasNext();){var e=t.next(),n=e.getEdges().getLabel();e.getLabel().merge(n)}},jsts.operation.overlay.OverlayOp.prototype.labelIncompleteNodes=function(){for(var t=0,e=this.graph.getNodes().iterator();e.hasNext();){var n=e.next(),o=n.getLabel();n.isIsolated()&&(t++,o.isNull(0)?this.labelIncompleteNode(n,0):this.labelIncompleteNode(n,1)),n.getEdges().updateLabelling(o)}},jsts.operation.overlay.OverlayOp.prototype.labelIncompleteNode=function(t,e){var n=this.ptLocator.locate(t.getCoordinate(),this.arg[e].getGeometry());t.getLabel().setLocation(e,n)},jsts.operation.overlay.OverlayOp.prototype.findResultAreaEdges=function(t){for(var e=this.graph.getEdgeEnds().iterator();e.hasNext();){var n=e.next(),o=n.getLabel();o.isArea()&&!n.isInteriorAreaEdge()&&jsts.operation.overlay.OverlayOp.isResultOfOp(o.getLocation(0,i.RIGHT),o.getLocation(1,i.RIGHT),t)&&n.setInResult(!0)}},jsts.operation.overlay.OverlayOp.prototype.cancelDuplicateResultEdges=function(){for(var t=this.graph.getEdgeEnds().iterator();t.hasNext();){var e=t.next(),n=e.getSym();e.isInResult()&&n.isInResult()&&(e.setInResult(!1),n.setInResult(!1))}},jsts.operation.overlay.OverlayOp.prototype.isCoveredByLA=function(t){return this.isCovered(t,this.resultLineList)?!0:this.isCovered(t,this.resultPolyList)?!0:!1},jsts.operation.overlay.OverlayOp.prototype.isCoveredByA=function(t){return this.isCovered(t,this.resultPolyList)?!0:!1},jsts.operation.overlay.OverlayOp.prototype.isCovered=function(t,n){for(var o=n.iterator();o.hasNext();){var r=o.next(),i=this.ptLocator.locate(t,r);if(i!=e.EXTERIOR)return!0}return!1},jsts.operation.overlay.OverlayOp.prototype.computeGeometry=function(t,e,n){var o=new d;return o.addAll(t),o.addAll(e),o.addAll(n),this.geomFact.buildGeometry(o)},jsts.operation.overlay.OverlayOp.prototype.createEmptyResult=function(t){var e=null;switch(resultDimension(t,this.arg[0].getGeometry(),this.arg[1].getGeometry())){case-1:e=geomFact.createGeometryCollection();break;case 0:e=geomFact.createPoint(null);break;case 1:e=geomFact.createLineString(null);break;case 2:e=geomFact.createPolygon(null,null)}return e},jsts.operation.overlay.OverlayOp.prototype.resultDimension=function(t,e,n){var o=e.getDimension(),r=n.getDimension(),i=-1;switch(t){case jsts.operation.overlay.OverlayOp.INTERSECTION:i=Math.min(o,r);break;case jsts.operation.overlay.OverlayOp.UNION:i=Math.max(o,r);break;case jsts.operation.overlay.OverlayOp.DIFFERENCE:i=o;break;case jsts.operation.overlay.OverlayOp.SYMDIFFERENCE:i=Math.max(o,r)}return i}}(),function(){var t=jsts.operation.overlay.OverlayOp,e=jsts.operation.overlay.snap.GeometrySnapper,n=function(t,e){this.geom=[],this.geom[0]=t,this.geom[1]=e,this.computeSnapTolerance()};n.overlayOp=function(t,e,o){var r=new n(t,e);return r.getResultGeometry(o)},n.intersection=function(e,n){return this.overlayOp(e,n,t.INTERSECTION)},n.union=function(e,n){return this.overlayOp(e,n,t.UNION)},n.difference=function(e,n){return overlayOp(e,n,t.DIFFERENCE)},n.symDifference=function(e,n){return overlayOp(e,n,t.SYMDIFFERENCE)},n.prototype.geom=null,n.prototype.snapTolerance=null,n.prototype.computeSnapTolerance=function(){this.snapTolerance=e.computeOverlaySnapTolerance(this.geom[0],this.geom[1])},n.prototype.getResultGeometry=function(e){var n=this.snap(this.geom),o=t.overlayOp(n[0],n[1],e);return this.prepareResult(o)},n.prototype.selfSnap=function(t){var n=new e(t),o=n.snapTo(t,this.snapTolerance);return o},n.prototype.snap=function(t){var n=t,o=e.snap(n[0],n[1],this.snapTolerance);return o},n.prototype.prepareResult=function(t){return t},n.prototype.cbr=null,n.prototype.removeCommonBits=function(){this.cbr=new jsts.precision.CommonBitsRemover,this.cbr.add(this.geom[0]),this.cbr.add(this.geom[1]);var t=[];return t[0]=cbr.removeCommonBits(this.geom[0].clone()),t[1]=cbr.removeCommonBits(this.geom[1].clone()),t},jsts.operation.overlay.snap.SnapOverlayOp=n}(),jsts.geomgraph.index.EdgeSetIntersector=function(){},jsts.geomgraph.index.EdgeSetIntersector.prototype.computeIntersections=function(){throw new jsts.error.AbstractMethodInvocationError},jsts.geomgraph.index.EdgeSetIntersector.prototype.computeIntersections2=function(){throw new jsts.error.AbstractMethodInvocationError},jsts.geomgraph.index.SimpleMCSweepLineIntersector=function(){this.events=[]},jsts.geomgraph.index.SimpleMCSweepLineIntersector.prototype=new jsts.geomgraph.index.EdgeSetIntersector,jsts.geomgraph.index.SimpleMCSweepLineIntersector.prototype.events=null,jsts.geomgraph.index.SimpleMCSweepLineIntersector.prototype.nOverlaps=0,jsts.geomgraph.index.SimpleMCSweepLineIntersector.prototype.computeIntersections=function(t,e,n){return e instanceof javascript.util.List?void this.computeIntersections2.apply(this,arguments):(n?this.addList2(t,null):this.addList(t),void this.computeIntersections3(e))},jsts.geomgraph.index.SimpleMCSweepLineIntersector.prototype.computeIntersections2=function(t,e,n){this.addList2(t,t),this.addList2(e,e),this.computeIntersections3(n)},jsts.geomgraph.index.SimpleMCSweepLineIntersector.prototype.add=function(t,e){if(t instanceof javascript.util.List)return void this.addList.apply(this,arguments);for(var n=t.getMonotoneChainEdge(),o=n.getStartIndexes(),r=0;ri;i++){var s=this.events[i];if(s.isInsert()){var a=s.getObject();n.isSameLabel(s)||(r.computeIntersections(a,o),this.nOverlaps++)}}},jsts.algorithm.locate.SimplePointInAreaLocator=function(t){this.geom=t},jsts.algorithm.locate.SimplePointInAreaLocator.locate=function(t,e){return e.isEmpty()?jsts.geom.Location.EXTERIOR:jsts.algorithm.locate.SimplePointInAreaLocator.containsPoint(t,e)?jsts.geom.Location.INTERIOR:jsts.geom.Location.EXTERIOR},jsts.algorithm.locate.SimplePointInAreaLocator.containsPoint=function(t,e){if(e instanceof jsts.geom.Polygon)return jsts.algorithm.locate.SimplePointInAreaLocator.containsPointInPolygon(t,e);if(e instanceof jsts.geom.GeometryCollection||e instanceof jsts.geom.MultiPoint||e instanceof jsts.geom.MultiLineString||e instanceof jsts.geom.MultiPolygon)for(var n=0;ne)return null;var n=t.get(0);if(1==e)return n;var r=t.get(e-1),i=n.getQuadrant(),s=r.getQuadrant();if(jsts.geomgraph.Quadrant.isNorthern(i)&&jsts.geomgraph.Quadrant.isNorthern(s))return n;if(!jsts.geomgraph.Quadrant.isNorthern(i)&&!jsts.geomgraph.Quadrant.isNorthern(s))return r;return 0!=n.getDy()?n:0!=r.getDy()?r:(o.shouldNeverReachHere("found two horizontal edges incident on node"),null)},jsts.geomgraph.DirectedEdgeStar.prototype.computeLabelling=function(e){n.prototype.computeLabelling.call(this,e),this.label=new jsts.geomgraph.Label(t.NONE);for(var o=this.iterator();o.hasNext();)for(var r=o.next(),i=r.getEdge(),s=i.getLabel(),a=0;2>a;a++){var u=s.getLocation(a);(u===t.INTERIOR||u===t.BOUNDARY)&&this.label.setLocation(a,t.INTERIOR)}},jsts.geomgraph.DirectedEdgeStar.prototype.mergeSymLabels=function(){for(var t=this.iterator();t.hasNext();){var e=t.next(),n=e.getLabel();n.merge(e.getSym().getLabel())}},jsts.geomgraph.DirectedEdgeStar.prototype.updateLabelling=function(t){for(var e=this.iterator();e.hasNext();){var n=e.next(),o=n.getLabel();o.setAllLocationsIfNull(0,t.getLocation(0)),o.setAllLocationsIfNull(1,t.getLocation(1))}},jsts.geomgraph.DirectedEdgeStar.prototype.getResultAreaEdges=function(){if(null!==this.resultAreaEdgeList)return this.resultAreaEdgeList; -this.resultAreaEdgeList=new javascript.util.ArrayList;for(var t=this.iterator();t.hasNext();){var e=t.next();(e.isInResult()||e.getSym().isInResult())&&this.resultAreaEdgeList.add(e)}return this.resultAreaEdgeList},jsts.geomgraph.DirectedEdgeStar.prototype.SCANNING_FOR_INCOMING=1,jsts.geomgraph.DirectedEdgeStar.prototype.LINKING_TO_OUTGOING=2,jsts.geomgraph.DirectedEdgeStar.prototype.linkResultDirectedEdges=function(){this.getResultAreaEdges();for(var t=null,e=null,n=this.SCANNING_FOR_INCOMING,r=0;r=0;i--){var s=this.resultAreaEdgeList.get(i),a=s.getSym();switch(null===e&&s.getEdgeRing()===t&&(e=s),r){case this.SCANNING_FOR_INCOMING:if(a.getEdgeRing()!=t)continue;n=a,r=this.LINKING_TO_OUTGOING;break;case this.LINKING_TO_OUTGOING:if(s.getEdgeRing()!==t)continue;n.setNextMin(s),r=this.SCANNING_FOR_INCOMING}}r===this.LINKING_TO_OUTGOING&&(o.isTrue(null!==e,"found null for first outgoing dirEdge"),o.isTrue(e.getEdgeRing()===t,"unable to link last incoming dirEdge"),n.setNextMin(e))},jsts.geomgraph.DirectedEdgeStar.prototype.linkAllDirectedEdges=function(){this.getEdges();for(var t=null,e=null,n=this.edgeList.size()-1;n>=0;n--){var o=this.edgeList.get(n),r=o.getSym();null===e&&(e=r),null!==t&&r.setNext(t),t=o}e.setNext(t)},jsts.geomgraph.DirectedEdgeStar.prototype.findCoveredLineEdges=function(){for(var e=t.NONE,n=this.iterator();n.hasNext();){var o=n.next(),r=o.getSym();if(!o.isLineEdge()){if(o.isInResult()){e=t.INTERIOR;break}if(r.isInResult()){e=t.EXTERIOR;break}}}if(e!==t.NONE)for(var i=e,n=this.iterator();n.hasNext();){var o=n.next(),r=o.getSym();o.isLineEdge()?o.getEdge().setCovered(i===t.INTERIOR):(o.isInResult()&&(i=t.EXTERIOR),r.isInResult()&&(i=t.INTERIOR))}},jsts.geomgraph.DirectedEdgeStar.prototype.computeDepths=function(t){if(2===arguments.length)return void this.computeDepths2.apply(this,arguments);var n=this.findIndex(t),o=(t.getLabel(),t.getDepth(e.LEFT)),r=t.getDepth(e.RIGHT),i=this.computeDepths2(n+1,this.edgeList.size(),o),s=this.computeDepths2(0,n,i);if(s!=r)throw new jsts.error.TopologyError("depth mismatch at "+t.getCoordinate())},jsts.geomgraph.DirectedEdgeStar.prototype.computeDepths2=function(t,n,o){for(var r=o,i=t;n>i;i++){{var s=this.edgeList.get(i);s.getLabel()}s.setEdgeDepths(e.RIGHT,r),r=s.getDepth(e.LEFT)}return r}}(),jsts.algorithm.CentroidLine=function(){this.centSum=new jsts.geom.Coordinate},jsts.algorithm.CentroidLine.prototype.centSum=null,jsts.algorithm.CentroidLine.prototype.totalLength=0,jsts.algorithm.CentroidLine.prototype.add=function(t){if(t instanceof Array)return void this.add2.apply(this,arguments);if(t instanceof jsts.geom.LineString)this.add(t.getCoordinates());else if(t instanceof jsts.geom.Polygon){var e=t;this.add(e.getExteriorRing().getCoordinates());for(var n=0;n0?this.pts[0]:null:this.pts[t]},jsts.geomgraph.Edge.prototype.isClosed=function(){return this.pts[0].equals(this.pts[this.pts.length-1])},jsts.geomgraph.Edge.prototype.setIsolated=function(t){this._isIsolated=t},jsts.geomgraph.Edge.prototype.isIsolated=function(){return this._isIsolated},jsts.geomgraph.Edge.prototype.addIntersections=function(t,e,n){for(var o=0;o=0?e>=0?n>=o?0:1:n>=o?7:6:e>=0?n>=o?3:2:n>=o?4:5},jsts.noding.Octant.octant2=function(t,e){var n=e.x-t.x,o=e.y-t.y;if(0===n&&0===o)throw new jsts.error.IllegalArgumentError("Cannot compute the octant for two identical points "+t);return jsts.noding.Octant.octant(n,o)},jsts.operation.union.UnionInteracting=function(t,e){this.g0=t,this.g1=e,this.geomFactory=t.getFactory(),this.interacts0=[],this.interacts1=[]},jsts.operation.union.UnionInteracting.union=function(t,e){var n=new jsts.operation.union.UnionInteracting(t,e);return n.union()},jsts.operation.union.UnionInteracting.prototype.geomFactory=null,jsts.operation.union.UnionInteracting.prototype.g0=null,jsts.operation.union.UnionInteracting.prototype.g1=null,jsts.operation.union.UnionInteracting.prototype.interacts0=null,jsts.operation.union.UnionInteracting.prototype.interacts1=null,jsts.operation.union.UnionInteracting.prototype.union=function(){this.computeInteracting();var t=this.extractElements(this.g0,this.interacts0,!0),e=this.extractElements(this.g1,this.interacts1,!0);t.isEmpty()||e.isEmpty();var n=in0.union(e),o=this.extractElements(this.g0,this.interacts0,!1),r=this.extractElements(this.g1,this.interacts1,!1),i=jsts.geom.util.GeometryCombiner.combine(n,o,r);return i},jsts.operation.union.UnionInteracting.prototype.bufferUnion=function(t,e){var n=t.getFactory(),o=n.createGeometryCollection([t,e]),r=o.buffer(0);return r},jsts.operation.union.UnionInteracting.prototype.computeInteracting=function(t){if(t){for(var e=!1,n=0,o=g1.getNumGeometries();o>n;n++){var r=this.g1.getGeometryN(n),i=r.getEnvelopeInternal().intersects(t.getEnvelopeInternal());i&&(this.interacts1[n]=!0,e=!0)}return e}for(var n=0,o=this.g0.getNumGeometries();o>n;n++){var s=this.g0.getGeometryN(n);this.interacts0[n]=this.computeInteracting(s)}},jsts.operation.union.UnionInteracting.prototype.extractElements=function(t,e,n){for(var o=[],r=0,i=t.getNumGeometries();i>r;r++){var s=t.getGeometryN(r);e[r]===n&&o.push(s)}return this.geomFactory.buildGeometry(o)},jsts.triangulate.quadedge.TrianglePredicate=function(){},jsts.triangulate.quadedge.TrianglePredicate.isInCircleNonRobust=function(t,e,n,o){var r=(t.x*t.x+t.y*t.y)*jsts.triangulate.quadedge.TrianglePredicate.triArea(e,n,o)-(e.x*e.x+e.y*e.y)*jsts.triangulate.quadedge.TrianglePredicate.triArea(t,n,o)+(n.x*n.x+n.y*n.y)*jsts.triangulate.quadedge.TrianglePredicate.triArea(t,e,o)-(o.x*o.x+o.y*o.y)*jsts.triangulate.quadedge.TrianglePredicate.triArea(t,e,n)>0;return r},jsts.triangulate.quadedge.TrianglePredicate.isInCircleNormalized=function(t,e,n,o){var r,i,s,a,u,p,g,l,h,d,c,f,m;return r=t.x-o.x,i=t.y-o.y,s=e.x-o.x,a=e.y-o.y,u=n.x-o.x,p=n.y-o.y,g=r*a-s*i,l=s*p-u*a,h=u*i-r*p,d=r*r+i*i,c=s*s+a*a,f=u*u+p*p,m=d*l+c*h+f*g,m>0},jsts.triangulate.quadedge.TrianglePredicate.triArea=function(t,e,n){return(e.x-t.x)*(n.y-t.y)-(e.y-t.y)*(n.x-t.x)},jsts.triangulate.quadedge.TrianglePredicate.isInCircleRobust=function(t,e,n,o){return jsts.triangulate.quadedge.TrianglePredicate.isInCircleNormalized(t,e,n,o)},jsts.triangulate.quadedge.TrianglePredicate.isInCircleDDSlow=function(t,e,n,o){var r,i,s,a,u,p,g,l,h,d,c,f,m,y;return r=jsts.math.DD.valueOf(o.x),i=jsts.math.DD.valueOf(o.y),s=jsts.math.DD.valueOf(t.x),a=jsts.math.DD.valueOf(t.y),u=jsts.math.DD.valueOf(e.x),p=jsts.math.DD.valueOf(e.y),g=jsts.math.DD.valueOf(n.x),l=jsts.math.DD.valueOf(n.y),h=s.multiply(s).add(a.multiply(a)).multiply(jsts.triangulate.quadedge.TrianglePredicate.triAreaDDSlow(u,p,g,l,r,i)),d=u.multiply(u).add(p.multiply(p)).multiply(jsts.triangulate.quadedge.TrianglePredicate.triAreaDDSlow(s,a,g,l,r,i)),c=g.multiply(g).add(l.multiply(l)).multiply(jsts.triangulate.quadedge.TrianglePredicate.triAreaDDSlow(s,a,u,p,r,i)),f=r.multiply(r).add(i.multiply(i)).multiply(jsts.triangulate.quadedge.TrianglePredicate.triAreaDDSlow(s,a,u,p,g,l)),m=h.subtract(d).add(c).subtract(f),y=m.doubleValue()>0},jsts.triangulate.quadedge.TrianglePredicate.triAreaDDSlow=function(t,e,n,o,r,i){return n.subtract(t).multiply(i.subtract(e)).subtract(o.subtract(e).multiply(r.subtract(t)))},jsts.triangulate.quadedge.TrianglePredicate.isInCircleDDFast=function(t,e,n,o){var r,i,s,a,u,p;return r=jsts.math.DD.sqr(t.x).selfAdd(jsts.math.DD.sqr(t.y)).selfMultiply(jsts.triangulate.quadedge.TrianglePredicate.triAreaDDFast(e,n,o)),i=jsts.math.DD.sqr(e.x).selfAdd(jsts.math.DD.sqr(e.y)).selfMultiply(jsts.triangulate.quadedge.TrianglePredicate.triAreaDDFast(t,n,o)),s=jsts.math.DD.sqr(n.x).selfAdd(jsts.math.DD.sqr(n.y)).selfMultiply(jsts.triangulate.quadedge.TrianglePredicate.triAreaDDFast(t,e,o)),a=jsts.math.DD.sqr(o.x).selfAdd(jsts.math.DD.sqr(o.y)).selfMultiply(jsts.triangulate.quadedge.TrianglePredicate.triAreaDDFast(t,e,n)),u=r.selfSubtract(i).selfAdd(s).selfSubtract(a),p=u.doubleValue()>0},jsts.triangulate.quadedge.TrianglePredicate.triAreaDDFast=function(t,e,n){var o,r;return o=jsts.math.DD.valueOf(e.x).selfSubtract(t.x).selfMultiply(jsts.math.DD.valueOf(n.y).selfSubtract(t.y)),r=jsts.math.DD.valueOf(e.y).selSubtract(t.y).selfMultiply(jsts.math.DD.valueOf(n.x).selfSubtract(t.x)),o.selfSubtract(r)},jsts.triangulate.quadedge.TrianglePredicate.isInCircleDDNormalized=function(t,e,n,o){var r,i,s,a,u,p,g,l,h,d,c,f,m,y;return r=jsts.math.DD.valueOf(t.x).selfSubtract(o.x),i=jsts.math.DD.valueOf(t.y).selfSubtract(o.y),s=jsts.math.DD.valueOf(e.x).selfSubtract(o.x),s=jsts.math.DD.valueOf(e.y).selfSubtract(o.y),u=jsts.math.DD.valueOf(n.x).selfSubtract(o.x),u=jsts.math.DD.valueOf(n.y).selfSubtract(o.y),g=r.multiply(a).selfSubtract(s.multiply(i)),l=s.multiply(p).selfSubtract(u.multiply(a)),h=u.multiply(i).selfSubtract(r.multiply(p)),d=r.multiply(r).selfAdd(i.multiply(i)),c=s.multiply(s).selfAdd(a.multiply(a)),f=u.multiply(u).selfAdd(p.multiply(p)),m=d.selfMultiply(l).selfAdd(c.selfMultiply(h)).selfAdd(f.selfMultiply(g)),y=m.doubleValue()>0},jsts.triangulate.quadedge.TrianglePredicate.isInCircleCC=function(t,e,n,o){var r,i,s;return r=jsts.geom.Triangle.circumcentre(t,e,n),i=t.distance(r),s=o.distance(r)-i,0>=s},jsts.operation.union.PointGeometryUnion=function(t,e){this.pointGeom=t,this.otherGeom=e,this.geomFact=e.getFactory()},jsts.operation.union.PointGeometryUnion.union=function(t,e){var n=new jsts.operation.union.PointGeometryUnion(t,e);return n.union()},jsts.operation.union.PointGeometryUnion.prototype.pointGeom=null,jsts.operation.union.PointGeometryUnion.prototype.otherGeom=null,jsts.operation.union.PointGeometryUnion.prototype.geomFact=null,jsts.operation.union.PointGeometryUnion.prototype.union=function(){for(var t=new jsts.algorithm.PointLocator,e=[],n=0,o=this.pointGeom.getNumGeometries();o>n;n++){var r=this.pointGeom.getGeometryN(n),i=r.getCoordinate(),s=t.locate(i,this.otherGeom);if(s===jsts.geom.Location.EXTERIOR){for(var a=!0,u=e.length;n--;)if(e[u].equals(i)){a=!1;break}a&&e.push(i)}}if(e.sort(function(t,e){return t.compareTo(e)}),0===e.length)return this.otherGeom;var p=null,g=jsts.geom.CoordinateArrays.toCoordinateArray(e);return p=1===g.length?this.geomFact.createPoint(g[0]):this.geomFact.createMultiPoint(g),jsts.geom.util.GeometryCombiner.combine(p,this.otherGeom)},jsts.noding.IntersectionFinderAdder=function(t){this.li=t,this.interiorIntersections=new javascript.util.ArrayList},jsts.noding.IntersectionFinderAdder.prototype=new jsts.noding.SegmentIntersector,jsts.noding.IntersectionFinderAdder.constructor=jsts.noding.IntersectionFinderAdder,jsts.noding.IntersectionFinderAdder.prototype.li=null,jsts.noding.IntersectionFinderAdder.prototype.interiorIntersections=null,jsts.noding.IntersectionFinderAdder.prototype.getInteriorIntersections=function(){return this.interiorIntersections},jsts.noding.IntersectionFinderAdder.prototype.processIntersections=function(t,e,n,o){if(t!==n||e!==o){var r=t.getCoordinates()[e],i=t.getCoordinates()[e+1],s=n.getCoordinates()[o],a=n.getCoordinates()[o+1];if(this.li.computeIntersection(r,i,s,a),this.li.hasIntersection()&&this.li.isInteriorIntersection()){for(var u=0;un;n++)if(!t[n].equals(e))return t[n];return null},jsts.operation.valid.ConnectedInteriorTester.prototype.getCoordinate=function(){return this.disconnectedRingcoord},jsts.operation.valid.ConnectedInteriorTester.prototype.isInteriorsConnected=function(){var t=new javascript.util.ArrayList;this.geomGraph.computeSplitEdges(t);var e=new jsts.geomgraph.PlanarGraph(new jsts.operation.overlay.OverlayNodeFactory);e.addEdges(t),this.setInteriorEdgesInResult(e),e.linkResultDirectedEdges();var n=this.buildEdgeRings(e.getEdgeEnds());return this.visitShellInteriors(this.geomGraph.getGeometry(),e),!this.hasUnvisitedShellEdge(n)},jsts.operation.valid.ConnectedInteriorTester.prototype.setInteriorEdgesInResult=function(t){for(var e,n=t.getEdgeEnds().iterator();n.hasNext();)e=n.next(),e.getLabel().getLocation(0,jsts.geomgraph.Position.RIGHT)==jsts.geom.Location.INTERIOR&&e.setInResult(!0)},jsts.operation.valid.ConnectedInteriorTester.prototype.buildEdgeRings=function(t){for(var e=new javascript.util.ArrayList,n=t.iterator();n.hasNext();){var o=n.next();if(o.isInResult()&&null==o.getEdgeRing()){var r=new jsts.operation.overlay.MaximalEdgeRing(o,this.geometryFactory);r.linkDirectedEdgesForMinimalEdgeRings();var i=r.buildMinimalRings(),s=0,a=i.length;for(s;a>s;s++)e.add(i[s])}}return e},jsts.operation.valid.ConnectedInteriorTester.prototype.visitShellInteriors=function(t,e){if(t instanceof jsts.geom.Polygon){var n=t;this.visitInteriorRing(n.getExteriorRing(),e)}if(t instanceof jsts.geom.MultiPolygon)for(var o=t,r=0;r0&&0>=s||s>0&&0>=r)&&(n=jsts.algorithm.RobustDeterminant.signOfDet2x2(o,r,i,s)/(s-r),n>0&&this.crossings++)},jsts.operation.valid.TopologyValidationError=function(t,e){this.errorType=t,this.pt=null,null!=e&&(this.pt=e.clone())},jsts.operation.valid.TopologyValidationError.HOLE_OUTSIDE_SHELL=2,jsts.operation.valid.TopologyValidationError.NESTED_HOLES=3,jsts.operation.valid.TopologyValidationError.DISCONNECTED_INTERIOR=4,jsts.operation.valid.TopologyValidationError.SELF_INTERSECTION=5,jsts.operation.valid.TopologyValidationError.RING_SELF_INTERSECTION=6,jsts.operation.valid.TopologyValidationError.NESTED_SHELLS=7,jsts.operation.valid.TopologyValidationError.DUPLICATE_RINGS=8,jsts.operation.valid.TopologyValidationError.TOO_FEW_POINTS=9,jsts.operation.valid.TopologyValidationError.INVALID_COORDINATE=10,jsts.operation.valid.TopologyValidationError.RING_NOT_CLOSED=11,jsts.operation.valid.TopologyValidationError.prototype.errMsg=["Topology Validation Error","Repeated Point","Hole lies outside shell","Holes are nested","Interior is disconnected","Self-intersection","Ring Self-intersection","Nested shells","Duplicate Rings","Too few distinct points in geometry component","Invalid Coordinate","Ring is not closed"],jsts.operation.valid.TopologyValidationError.prototype.getCoordinate=function(){return this.pt},jsts.operation.valid.TopologyValidationError.prototype.getErrorType=function(){return this.errorType},jsts.operation.valid.TopologyValidationError.prototype.getMessage=function(){return this.errMsg[this.errorType]},jsts.operation.valid.TopologyValidationError.prototype.toString=function(){var t="";return null!=this.pt?(t=" at or near point "+this.pt,this.getMessage()+t):t},function(){jsts.geom.MultiPolygon=function(t,e){this.geometries=t||[],this.factory=e},jsts.geom.MultiPolygon.prototype=new jsts.geom.GeometryCollection,jsts.geom.MultiPolygon.constructor=jsts.geom.MultiPolygon,jsts.geom.MultiPolygon.prototype.getBoundary=function(){if(this.isEmpty())return this.getFactory().createMultiLineString(null);for(var t=[],e=0;ee&&(this.min=e,this.max=t)},t.prototype.getMin=function(){return this.min},t.prototype.getMax=function(){return this.max},t.prototype.getWidth=function(){return this.max-this.min},t.prototype.expandToInclude=function(t){t.max>this.max&&(this.max=t.max),t.mine||this.max=this.min&&e<=this.max},t.prototype.containsPoint=function(t){return t>=this.min&&t<=this.max},jsts.index.bintree.Interval=t}(),jsts.index.DoubleBits=function(){},jsts.index.DoubleBits.powerOf2=function(t){return Math.pow(2,t)},jsts.index.DoubleBits.exponent=function(t){return jsts.index.DoubleBits.CVTFWD(64,t)-1023},jsts.index.DoubleBits.CVTFWD=function(t,e){var n,o,r,i,s="",a={32:{d:127,c:128,b:0,a:0},64:{d:32752,c:0,b:0,a:0}},u={32:8,64:11}[t];if(i||(n=0>e||0>1/e,isFinite(e)||(i=a[t],n&&(i.d+=1<=2;)o++,r/=2;for(;1>r&&o>0;)o--,r*=2;0>=o&&(r/=2,s="Zero or Denormal"),32===t&&o>254&&(s="Too big for Single",i={d:n?255:127,c:128,b:0,a:0},o=Math.pow(2,u)-1,r=0)}return o},function(){var t=jsts.index.DoubleBits,e=jsts.index.bintree.Interval,n=function(t){this.pt=0,this.level=0,this.computeKey(t)};n.computeLevel=function(e){var n,o=e.getWidth();return n=t.exponent(o)+1},n.prototype.getPoint=function(){return this.pt},n.prototype.getLevel=function(){return this.level},n.prototype.getInterval=function(){return this.interval},n.prototype.computeKey=function(t){for(this.level=n.computeLevel(t),this.interval=new e,this.computeInterval(this.level,t);!this.interval.contains(t);)this.level+=1,this.computeInterval(this.level,t)},n.prototype.computeInterval=function(e,n){var o=t.powerOf2(e);this.pt=Math.floor(n.getMin()/o)*o,this.interval.init(this.pt,this.pt+o)},jsts.index.bintree.Key=n}(),jsts.operation.buffer.SubgraphDepthLocater=function(t){this.subgraphs=[],this.seg=new jsts.geom.LineSegment,this.subgraphs=t},jsts.operation.buffer.SubgraphDepthLocater.prototype.subgraphs=null,jsts.operation.buffer.SubgraphDepthLocater.prototype.seg=null,jsts.operation.buffer.SubgraphDepthLocater.prototype.getDepth=function(t){var e=this.findStabbedSegments(t);if(0===e.length)return 0;e.sort();var n=e[0];return n.leftDepth},jsts.operation.buffer.SubgraphDepthLocater.prototype.findStabbedSegments=function(t){if(3===arguments.length)return void this.findStabbedSegments2.apply(this,arguments);for(var e=[],n=0;nr.getMaxY()||this.findStabbedSegments2(t,o.getDirectedEdges(),e)}return e},jsts.operation.buffer.SubgraphDepthLocater.prototype.findStabbedSegments2=function(t,e,n){if(arguments[1]instanceof jsts.geomgraph.DirectedEdge)return void this.findStabbedSegments3(t,e,n);for(var o=e.iterator();o.hasNext();){var r=o.next();r.isForward()&&this.findStabbedSegments3(t,r,n)}},jsts.operation.buffer.SubgraphDepthLocater.prototype.findStabbedSegments3=function(t,e,n){for(var o=e.getEdge().getCoordinates(),r=0;rthis.seg.p1.y&&this.seg.reverse();var i=Math.max(this.seg.p0.x,this.seg.p1.x);if(!(ithis.seg.p1.y||jsts.algorithm.CGAlgorithms.computeOrientation(this.seg.p0,this.seg.p1,t)===jsts.algorithm.CGAlgorithms.RIGHT)){var s=e.getDepth(jsts.geomgraph.Position.LEFT);this.seg.p0.equals(o[r])||(s=e.getDepth(jsts.geomgraph.Position.RIGHT));var a=new jsts.operation.buffer.SubgraphDepthLocater.DepthSegment(this.seg,s);n.push(a)}}},jsts.operation.buffer.SubgraphDepthLocater.DepthSegment=function(t,e){this.upwardSeg=new jsts.geom.LineSegment(t),this.leftDepth=e},jsts.operation.buffer.SubgraphDepthLocater.DepthSegment.prototype.upwardSeg=null,jsts.operation.buffer.SubgraphDepthLocater.DepthSegment.prototype.leftDepth=null,jsts.operation.buffer.SubgraphDepthLocater.DepthSegment.prototype.compareTo=function(t){var e=t,n=this.upwardSeg.orientationIndex(e.upwardSeg);return 0===n&&(n=-1*e.upwardSeg.orientationIndex(upwardSeg)),0!==n?n:this.compareX(this.upwardSeg,e.upwardSeg)},jsts.operation.buffer.SubgraphDepthLocater.DepthSegment.prototype.compareX=function(t,e){var n=t.p0.compareTo(e.p0);return 0!==n?n:t.p1.compareTo(e.p1)},jsts.noding.snapround.HotPixel=function(t,e,n){this.corner=[],this.originalPt=t,this.pt=t,this.scaleFactor=e,this.li=n,1!==this.scaleFactor&&(this.pt=new jsts.geom.Coordinate(this.scale(t.x),this.scale(t.y)),this.p0Scaled=new jsts.geom.Coordinate,this.p1Scaled=new jsts.geom.Coordinate),this.initCorners(this.pt)},jsts.noding.snapround.HotPixel.prototype.li=null,jsts.noding.snapround.HotPixel.prototype.pt=null,jsts.noding.snapround.HotPixel.prototype.originalPt=null,jsts.noding.snapround.HotPixel.prototype.ptScaled=null,jsts.noding.snapround.HotPixel.prototype.p0Scaled=null,jsts.noding.snapround.HotPixel.prototype.p1Scaled=null,jsts.noding.snapround.HotPixel.prototype.scaleFactor=void 0,jsts.noding.snapround.HotPixel.prototype.minx=void 0,jsts.noding.snapround.HotPixel.prototype.maxx=void 0,jsts.noding.snapround.HotPixel.prototype.miny=void 0,jsts.noding.snapround.HotPixel.prototype.maxy=void 0,jsts.noding.snapround.HotPixel.prototype.corner=null,jsts.noding.snapround.HotPixel.prototype.safeEnv=null,jsts.noding.snapround.HotPixel.prototype.getCoordinate=function(){return this.originalPt},jsts.noding.snapround.HotPixel.SAFE_ENV_EXPANSION_FACTOR=.75,jsts.noding.snapround.HotPixel.prototype.getSafeEnvelope=function(){if(null===this.safeEnv){var t=jsts.noding.snapround.HotPixel.SAFE_ENV_EXPANSION_FACTOR/this.scaleFactor;this.safeEnv=new jsts.geom.Envelope(this.originalPt.x-t,this.originalPt.x+t,this.originalPt.y-t,this.originalPt.y+t)}return this.safeEnv},jsts.noding.snapround.HotPixel.prototype.initCorners=function(t){var e=.5;this.minx=t.x-e,this.maxx=t.x+e,this.miny=t.y-e,this.maxy=t.y+e,this.corner[0]=new jsts.geom.Coordinate(this.maxx,this.maxy),this.corner[1]=new jsts.geom.Coordinate(this.minx,this.maxy),this.corner[2]=new jsts.geom.Coordinate(this.minx,this.miny),this.corner[3]=new jsts.geom.Coordinate(this.maxx,this.miny)},jsts.noding.snapround.HotPixel.prototype.scale=function(t){return Math.round(t*this.scaleFactor)},jsts.noding.snapround.HotPixel.prototype.intersects=function(t,e){return 1===this.scaleFactor?this.intersectsScaled(t,e):(this.copyScaled(t,this.p0Scaled),this.copyScaled(e,this.p1Scaled),this.intersectsScaled(this.p0Scaled,this.p1Scaled))},jsts.noding.snapround.HotPixel.prototype.copyScaled=function(t,e){e.x=this.scale(t.x),e.y=this.scale(t.y)},jsts.noding.snapround.HotPixel.prototype.intersectsScaled=function(t,e){var n=Math.min(t.x,e.x),o=Math.max(t.x,e.x),r=Math.min(t.y,e.y),i=Math.max(t.y,e.y),s=this.maxxo||this.maxyi;if(s)return!1;var a=this.intersectsToleranceSquare(t,e);return jsts.util.Assert.isTrue(!(s&&a),"Found bad envelope test"),a},jsts.noding.snapround.HotPixel.prototype.intersectsToleranceSquare=function(t,e){var n=!1,o=!1;return this.li.computeIntersection(t,e,this.corner[0],this.corner[1]),this.li.isProper()?!0:(this.li.computeIntersection(t,e,this.corner[1],this.corner[2]),this.li.isProper()?!0:(this.li.hasIntersection()&&(n=!0),this.li.computeIntersection(t,e,this.corner[2],this.corner[3]),this.li.isProper()?!0:(this.li.hasIntersection()&&(o=!0),this.li.computeIntersection(t,e,this.corner[3],this.corner[0]),this.li.isProper()?!0:n&&o?!0:t.equals(this.pt)?!0:e.equals(this.pt)?!0:!1)))},jsts.noding.snapround.HotPixel.prototype.intersectsPixelClosure=function(t,e){return this.li.computeIntersection(t,e,this.corner[0],this.corner[1]),this.li.hasIntersection()?!0:(this.li.computeIntersection(t,e,this.corner[1],this.corner[2]),this.li.hasIntersection()?!0:(this.li.computeIntersection(t,e,this.corner[2],this.corner[3]),this.li.hasIntersection()?!0:(this.li.computeIntersection(t,e,this.corner[3],this.corner[0]),this.li.hasIntersection()?!0:!1)))},jsts.noding.snapround.HotPixel.prototype.addSnappedNode=function(t,e){var n=t.getCoordinate(e),o=t.getCoordinate(e+1);return this.intersects(n,o)?(t.addIntersection(this.getCoordinate(),e),!0):!1},jsts.operation.buffer.BufferInputLineSimplifier=function(t){this.inputLine=t},jsts.operation.buffer.BufferInputLineSimplifier.simplify=function(t,e){var n=new jsts.operation.buffer.BufferInputLineSimplifier(t);return n.simplify(e)},jsts.operation.buffer.BufferInputLineSimplifier.INIT=0,jsts.operation.buffer.BufferInputLineSimplifier.DELETE=1,jsts.operation.buffer.BufferInputLineSimplifier.KEEP=1,jsts.operation.buffer.BufferInputLineSimplifier.prototype.inputLine=null,jsts.operation.buffer.BufferInputLineSimplifier.prototype.distanceTol=null,jsts.operation.buffer.BufferInputLineSimplifier.prototype.isDeleted=null,jsts.operation.buffer.BufferInputLineSimplifier.prototype.angleOrientation=jsts.algorithm.CGAlgorithms.COUNTERCLOCKWISE,jsts.operation.buffer.BufferInputLineSimplifier.prototype.simplify=function(t){this.distanceTol=Math.abs(t),0>t&&(this.angleOrientation=jsts.algorithm.CGAlgorithms.CLOCKWISE),this.isDeleted=[],this.isDeleted.length=this.inputLine.length;var e=!1;do e=this.deleteShallowConcavities();while(e);return this.collapseLine()},jsts.operation.buffer.BufferInputLineSimplifier.prototype.deleteShallowConcavities=function(){for(var t=1,e=(this.inputLine.length-1,this.findNextNonDeletedIndex(t)),n=this.findNextNonDeletedIndex(e),o=!1;ns},jsts.operation.buffer.BufferInputLineSimplifier.NUM_PTS_TO_CHECK=10,jsts.operation.buffer.BufferInputLineSimplifier.prototype.isShallowSampled=function(t,e,n,o,r){var i=parseInt((o-n)/jsts.operation.buffer.BufferInputLineSimplifier.NUM_PTS_TO_CHECK);0>=i&&(i=1);for(var s=n;o>s;s+=i)if(!this.isShallow(t,e,this.inputLine[s],r))return!1;return!0},jsts.operation.buffer.BufferInputLineSimplifier.prototype.isShallow=function(t,e,n,o){var r=jsts.algorithm.CGAlgorithms.distancePointLine(e,t,n);return o>r},jsts.operation.buffer.BufferInputLineSimplifier.prototype.isConcave=function(t,e,n){var o=jsts.algorithm.CGAlgorithms.computeOrientation(t,e,n),r=o===this.angleOrientation;return r},jsts.geomgraph.index.SweepLineEvent=function(t,e,n){return e instanceof jsts.geomgraph.index.SweepLineEvent?(this.eventType=jsts.geomgraph.index.SweepLineEvent.DELETE,this.xValue=t,void(this.insertEvent=e)):(this.eventType=jsts.geomgraph.index.SweepLineEvent.INSERT,this.label=n,this.xValue=t,void(this.obj=e))},jsts.geomgraph.index.SweepLineEvent.INSERT=1,jsts.geomgraph.index.SweepLineEvent.DELETE=2,jsts.geomgraph.index.SweepLineEvent.prototype.label=null,jsts.geomgraph.index.SweepLineEvent.prototype.xValue=null,jsts.geomgraph.index.SweepLineEvent.prototype.eventType=null,jsts.geomgraph.index.SweepLineEvent.prototype.insertEvent=null,jsts.geomgraph.index.SweepLineEvent.prototype.deleteEventIndex=null,jsts.geomgraph.index.SweepLineEvent.prototype.obj=null,jsts.geomgraph.index.SweepLineEvent.prototype.isInsert=function(){return this.eventType==jsts.geomgraph.index.SweepLineEvent.INSERT},jsts.geomgraph.index.SweepLineEvent.prototype.isDelete=function(){return this.eventType==jsts.geomgraph.index.SweepLineEvent.DELETE},jsts.geomgraph.index.SweepLineEvent.prototype.getInsertEvent=function(){return this.insertEvent},jsts.geomgraph.index.SweepLineEvent.prototype.getDeleteEventIndex=function(){return this.deleteEventIndex},jsts.geomgraph.index.SweepLineEvent.prototype.setDeleteEventIndex=function(t){this.deleteEventIndex=t},jsts.geomgraph.index.SweepLineEvent.prototype.getObject=function(){return this.obj},jsts.geomgraph.index.SweepLineEvent.prototype.isSameLabel=function(t){return null==this.label?!1:this.label==t.label},jsts.geomgraph.index.SweepLineEvent.prototype.compareTo=function(t){return this.xValuet.xValue?1:this.eventTypet.eventType?1:0},jsts.geom.CoordinateList=function(t,e){this.array=[],e=void 0===e?!0:e,void 0!==t&&this.add(t,e)},jsts.geom.CoordinateList.prototype=new javascript.util.ArrayList,jsts.geom.CoordinateList.prototype.iterator=null,jsts.geom.CoordinateList.prototype.remove=null,jsts.geom.CoordinateList.prototype.get=function(t){return this.array[t]},jsts.geom.CoordinateList.prototype.set=function(t,e){var n=this.array[t];return this.array[t]=e,n},jsts.geom.CoordinateList.prototype.size=function(){return this.array.length},jsts.geom.CoordinateList.prototype.add=function(){return arguments.length>1?this.addCoordinates.apply(this,arguments):this.array.push(arguments[0])},jsts.geom.CoordinateList.prototype.addCoordinates=function(t,e,n){if(t instanceof jsts.geom.Coordinate)return this.addCoordinate.apply(this,arguments);if("number"==typeof t)return this.insertCoordinate.apply(this,arguments);if(n=n||!0)for(var o=0;o=0;o--)this.addCoordinate(t[o],e);return!0},jsts.geom.CoordinateList.prototype.addCoordinate=function(t,e){if(!e&&this.size()>=1){var n=this.get(this.size()-1);if(n.equals2D(t))return}this.add(t)},jsts.geom.CoordinateList.prototype.insertCoordinate=function(t,e,n){if(!n){var o=t>0?t-1:-1;if(-1!==o&&this.get(o).equals2D(e))return;var r=t0&&this.addCoordinate(new jsts.geom.Coordinate(this.get(0)),!1)},jsts.geom.CoordinateList.prototype.toArray=function(){return this.array},jsts.geom.CoordinateList.prototype.toCoordinateArray=function(){return this.array},jsts.operation.buffer.OffsetSegmentGenerator=function(t,e,n){this.seg0=new jsts.geom.LineSegment,this.seg1=new jsts.geom.LineSegment,this.offset0=new jsts.geom.LineSegment,this.offset1=new jsts.geom.LineSegment,this.precisionModel=t,this.bufParams=e,this.li=new jsts.algorithm.RobustLineIntersector,this.filletAngleQuantum=Math.PI/2/e.getQuadrantSegments(),this.bufParams.getQuadrantSegments()>=8&&this.bufParams.getJoinStyle()===jsts.operation.buffer.BufferParameters.JOIN_ROUND&&(this.closingSegLengthFactor=jsts.operation.buffer.OffsetSegmentGenerator.MAX_CLOSING_SEG_LEN_FACTOR),this.init(n)},jsts.operation.buffer.OffsetSegmentGenerator.OFFSET_SEGMENT_SEPARATION_FACTOR=.001,jsts.operation.buffer.OffsetSegmentGenerator.INSIDE_TURN_VERTEX_SNAP_DISTANCE_FACTOR=.001,jsts.operation.buffer.OffsetSegmentGenerator.CURVE_VERTEX_SNAP_DISTANCE_FACTOR=1e-6,jsts.operation.buffer.OffsetSegmentGenerator.MAX_CLOSING_SEG_LEN_FACTOR=80,jsts.operation.buffer.OffsetSegmentGenerator.prototype.maxCurveSegmentError=0,jsts.operation.buffer.OffsetSegmentGenerator.prototype.filletAngleQuantum=null,jsts.operation.buffer.OffsetSegmentGenerator.prototype.closingSegLengthFactor=1,jsts.operation.buffer.OffsetSegmentGenerator.prototype.segList=null,jsts.operation.buffer.OffsetSegmentGenerator.prototype.distance=0,jsts.operation.buffer.OffsetSegmentGenerator.prototype.precisionModel=null,jsts.operation.buffer.OffsetSegmentGenerator.prototype.bufParams=null,jsts.operation.buffer.OffsetSegmentGenerator.prototype.li=null,jsts.operation.buffer.OffsetSegmentGenerator.prototype.s0=null,jsts.operation.buffer.OffsetSegmentGenerator.prototype.s1=null,jsts.operation.buffer.OffsetSegmentGenerator.prototype.s2=null,jsts.operation.buffer.OffsetSegmentGenerator.prototype.seg0=null,jsts.operation.buffer.OffsetSegmentGenerator.prototype.seg1=null,jsts.operation.buffer.OffsetSegmentGenerator.prototype.offset0=null,jsts.operation.buffer.OffsetSegmentGenerator.prototype.offset1=null,jsts.operation.buffer.OffsetSegmentGenerator.prototype.side=0,jsts.operation.buffer.OffsetSegmentGenerator.prototype.hasNarrowConcaveAngle=!1,jsts.operation.buffer.OffsetSegmentGenerator.prototype.hasNarrowConcaveAngle=function(){return this.hasNarrowConcaveAngle},jsts.operation.buffer.OffsetSegmentGenerator.prototype.init=function(t){this.distance=t,this.maxCurveSegmentError=this.distance*(1-Math.cos(this.filletAngleQuantum/2)),this.segList=new jsts.operation.buffer.OffsetSegmentString,this.segList.setPrecisionModel(this.precisionModel),this.segList.setMinimumVertexDistance(this.distance*jsts.operation.buffer.OffsetSegmentGenerator.CURVE_VERTEX_SNAP_DISTANCE_FACTOR)},jsts.operation.buffer.OffsetSegmentGenerator.prototype.initSideSegments=function(t,e,n){this.s1=t,this.s2=e,this.side=n,this.seg1.setCoordinates(this.s1,this.s2),this.computeOffsetSegment(this.seg1,this.side,this.distance,this.offset1)},jsts.operation.buffer.OffsetSegmentGenerator.prototype.getCoordinates=function(){return this.segList.getCoordinates()},jsts.operation.buffer.OffsetSegmentGenerator.prototype.closeRing=function(){this.segList.closeRing()},jsts.operation.buffer.OffsetSegmentGenerator.prototype.addSegments=function(t,e){this.segList.addPts(t,e)},jsts.operation.buffer.OffsetSegmentGenerator.prototype.addFirstSegment=function(){this.segList.addPt(this.offset1.p0)},jsts.operation.buffer.OffsetSegmentGenerator.prototype.addLastSegment=function(){this.segList.addPt(this.offset1.p1)},jsts.operation.buffer.OffsetSegmentGenerator.prototype.addNextSegment=function(t,e){if(this.s0=this.s1,this.s1=this.s2,this.s2=t,this.seg0.setCoordinates(this.s0,this.s1),this.computeOffsetSegment(this.seg0,this.side,this.distance,this.offset0),this.seg1.setCoordinates(this.s1,this.s2),this.computeOffsetSegment(this.seg1,this.side,this.distance,this.offset1),!this.s1.equals(this.s2)){var n=jsts.algorithm.CGAlgorithms.computeOrientation(this.s0,this.s1,this.s2),o=n===jsts.algorithm.CGAlgorithms.CLOCKWISE&&this.side===jsts.geomgraph.Position.LEFT||n===jsts.algorithm.CGAlgorithms.COUNTERCLOCKWISE&&this.side===jsts.geomgraph.Position.RIGHT;0==n?this.addCollinear(e):o?this.addOutsideTurn(n,e):this.addInsideTurn(n,e)}},jsts.operation.buffer.OffsetSegmentGenerator.prototype.addCollinear=function(t){this.li.computeIntersection(this.s0,this.s1,this.s1,this.s2);var e=this.li.getIntersectionNum();e>=2&&(this.bufParams.getJoinStyle()===jsts.operation.buffer.BufferParameters.JOIN_BEVEL||this.bufParams.getJoinStyle()===jsts.operation.buffer.BufferParameters.JOIN_MITRE?(t&&this.segList.addPt(this.offset0.p1),this.segList.addPt(this.offset1.p0)):this.addFillet(this.s1,this.offset0.p1,this.offset1.p0,jsts.algorithm.CGAlgorithms.CLOCKWISE,this.distance))},jsts.operation.buffer.OffsetSegmentGenerator.prototype.addOutsideTurn=function(t,e){return this.offset0.p1.distance(this.offset1.p0)0){var t=new jsts.geom.Coordinate((this.closingSegLengthFactor*this.offset0.p1.x+this.s1.x)/(this.closingSegLengthFactor+1),(this.closingSegLengthFactor*this.offset0.p1.y+this.s1.y)/(this.closingSegLengthFactor+1));this.segList.addPt(t);var e=new jsts.geom.Coordinate((this.closingSegLengthFactor*this.offset1.p0.x+this.s1.x)/(this.closingSegLengthFactor+1),(this.closingSegLengthFactor*this.offset1.p0.y+this.s1.y)/(this.closingSegLengthFactor+1));this.segList.addPt(e)}else this.segList.addPt(this.s1);this.segList.addPt(this.offset1.p0)}},jsts.operation.buffer.OffsetSegmentGenerator.prototype.computeOffsetSegment=function(t,e,n,o){var r=e===jsts.geomgraph.Position.LEFT?1:-1,i=t.p1.x-t.p0.x,s=t.p1.y-t.p0.y,a=Math.sqrt(i*i+s*s),u=r*n*i/a,p=r*n*s/a;o.p0.x=t.p0.x-p,o.p0.y=t.p0.y+u,o.p1.x=t.p1.x-p,o.p1.y=t.p1.y+u},jsts.operation.buffer.OffsetSegmentGenerator.prototype.addLineEndCap=function(t,e){var n=new jsts.geom.LineSegment(t,e),o=new jsts.geom.LineSegment;this.computeOffsetSegment(n,jsts.geomgraph.Position.LEFT,this.distance,o);var r=new jsts.geom.LineSegment;this.computeOffsetSegment(n,jsts.geomgraph.Position.RIGHT,this.distance,r);var i=e.x-t.x,s=e.y-t.y,a=Math.atan2(s,i);switch(this.bufParams.getEndCapStyle()){case jsts.operation.buffer.BufferParameters.CAP_ROUND:this.segList.addPt(o.p1),this.addFillet(e,a+Math.PI/2,a-Math.PI/2,jsts.algorithm.CGAlgorithms.CLOCKWISE,this.distance),this.segList.addPt(r.p1);break;case jsts.operation.buffer.BufferParameters.CAP_FLAT:this.segList.addPt(o.p1),this.segList.addPt(r.p1);break;case jsts.operation.buffer.BufferParameters.CAP_SQUARE:var u=new jsts.geom.Coordinate;u.x=Math.abs(this.distance)*Math.cos(a),u.y=Math.abs(this.distance)*Math.sin(a);var p=new jsts.geom.Coordinate(o.p1.x+u.x,o.p1.y+u.y),g=new jsts.geom.Coordinate(r.p1.x+u.x,r.p1.y+u.y);this.segList.addPt(p),this.segList.addPt(g)}},jsts.operation.buffer.OffsetSegmentGenerator.prototype.addMitreJoin=function(t,e,n,o){var r=!0,i=null;try{i=jsts.algorithm.HCoordinate.intersection(e.p0,e.p1,n.p0,n.p1);var s=0>=o?1:i.distance(t)/Math.abs(o);s>this.bufParams.getMitreLimit()&&(this.isMitreWithinLimit=!1)}catch(a){a instanceof jsts.error.NotRepresentableError&&(i=new jsts.geom.Coordinate(0,0),this.isMitreWithinLimit=!1)}r?this.segList.addPt(i):this.addLimitedMitreJoin(e,n,o,bufParams.getMitreLimit())},jsts.operation.buffer.OffsetSegmentGenerator.prototype.addLimitedMitreJoin=function(t,e,n,o){var r=this.seg0.p1,i=jsts.algorithm.Angle.angle(r,this.seg0.p0),s=(jsts.algorithm.Angle.angle(r,this.seg1.p1),jsts.algorithm.Angle.angleBetweenOriented(this.seg0.p0,r,this.seg1.p1)),a=s/2,u=jsts.algorithm.Angle.normalize(i+a),p=jsts.algorithm.Angle.normalize(u+Math.PI),g=o*n,l=g*Math.abs(Math.sin(a)),h=n-l,d=r.x+g*Math.cos(p),c=r.y+g*Math.sin(p),f=new jsts.geom.Coordinate(d,c),m=new jsts.geom.LineSegment(r,f),y=m.pointAlongOffset(1,h),j=m.pointAlongOffset(1,-h);this.side==jsts.geomgraph.Position.LEFT?(this.segList.addPt(y),this.segList.addPt(j)):(this.segList.addPt(j),this.segList.addPt(y))},jsts.operation.buffer.OffsetSegmentGenerator.prototype.addBevelJoin=function(t,e){this.segList.addPt(t.p1),this.segList.addPt(e.p0)},jsts.operation.buffer.OffsetSegmentGenerator.prototype.addFillet=function(t,e,n,o,r){if(!(n instanceof jsts.geom.Coordinate))return void this.addFillet2.apply(this,arguments);var i=e.x-t.x,s=e.y-t.y,a=Math.atan2(s,i),u=n.x-t.x,p=n.y-t.y,g=Math.atan2(p,u);o===jsts.algorithm.CGAlgorithms.CLOCKWISE?g>=a&&(a+=2*Math.PI):a>=g&&(a-=2*Math.PI),this.segList.addPt(e),this.addFillet(t,a,g,o,r),this.segList.addPt(n)},jsts.operation.buffer.OffsetSegmentGenerator.prototype.addFillet2=function(t,e,n,o,r){var i=o===jsts.algorithm.CGAlgorithms.CLOCKWISE?-1:1,s=Math.abs(e-n),a=parseInt(s/this.filletAngleQuantum+.5);if(!(1>a)){var u,p;u=0,p=s/a;for(var g=u,l=new jsts.geom.Coordinate;s>g;){var h=e+i*g;l.x=t.x+r*Math.cos(h),l.y=t.y+r*Math.sin(h),this.segList.addPt(l),g+=p}}},jsts.operation.buffer.OffsetSegmentGenerator.prototype.createCircle=function(t){var e=new jsts.geom.Coordinate(t.x+this.distance,t.y);this.segList.addPt(e),this.addFillet(t,0,2*Math.PI,-1,this.distance),this.segList.closeRing()},jsts.operation.buffer.OffsetSegmentGenerator.prototype.createSquare=function(t){this.segList.addPt(new jsts.geom.Coordinate(t.x+distance,t.y+distance)),this.segList.addPt(new jsts.geom.Coordinate(t.x+distance,t.y-distance)),this.segList.addPt(new jsts.geom.Coordinate(t.x-distance,t.y-distance)),this.segList.addPt(new jsts.geom.Coordinate(t.x-distance,t.y+distance)),this.segList.closeRing()},jsts.operation.overlay.MaximalEdgeRing=function(t,e){jsts.geomgraph.EdgeRing.call(this,t,e)},jsts.operation.overlay.MaximalEdgeRing.prototype=new jsts.geomgraph.EdgeRing,jsts.operation.overlay.MaximalEdgeRing.constructor=jsts.operation.overlay.MaximalEdgeRing,jsts.operation.overlay.MaximalEdgeRing.prototype.getNext=function(t){return t.getNext()},jsts.operation.overlay.MaximalEdgeRing.prototype.setEdgeRing=function(t,e){t.setEdgeRing(e)},jsts.operation.overlay.MaximalEdgeRing.prototype.linkDirectedEdgesForMinimalEdgeRings=function(){var t=this.startDe;do{var e=t.getNode();e.getEdges().linkMinimalDirectedEdges(this),t=t.getNext()}while(t!=this.startDe)},jsts.operation.overlay.MaximalEdgeRing.prototype.buildMinimalRings=function(){var t=[],e=this.startDe;do{if(null===e.getMinEdgeRing()){var n=new jsts.operation.overlay.MinimalEdgeRing(e,this.geometryFactory);t.push(n)}e=e.getNext()}while(e!=this.startDe);return t},jsts.algorithm.CentroidPoint=function(){this.centSum=new jsts.geom.Coordinate},jsts.algorithm.CentroidPoint.prototype.ptCount=0,jsts.algorithm.CentroidPoint.prototype.centSum=null,jsts.algorithm.CentroidPoint.prototype.add=function(t){if(t instanceof jsts.geom.Point)this.add2(t.getCoordinate());else if(t instanceof jsts.geom.GeometryCollection||t instanceof jsts.geom.MultiPoint||t instanceof jsts.geom.MultiLineString||t instanceof jsts.geom.MultiPolygon)for(var e=t,n=0;ne?e:n},jsts.geomgraph.index.MonotoneChainEdge.prototype.getMaxX=function(t){var e=this.pts[this.startIndex[t]].x,n=this.pts[this.startIndex[t+1]].x;return e>n?e:n},jsts.geomgraph.index.MonotoneChainEdge.prototype.computeIntersects=function(t,e){for(var n=0;nt&&(l>o&&this.computeIntersectsForChain2(t,g,n,o,l,i),r>l&&this.computeIntersectsForChain2(t,g,n,l,r,i)),e>g&&(l>o&&this.computeIntersectsForChain2(g,e,n,o,l,i),r>l&&this.computeIntersectsForChain2(g,e,n,l,r,i))}},function(){var t=javascript.util.ArrayList;jsts.operation.relate.EdgeEndBuilder=function(){},jsts.operation.relate.EdgeEndBuilder.prototype.computeEdgeEnds=function(e){if(2==arguments.length)return void this.computeEdgeEnds2.apply(this,arguments);for(var n=new t,o=e;o.hasNext();){var r=o.next();this.computeEdgeEnds2(r,n)}return n},jsts.operation.relate.EdgeEndBuilder.prototype.computeEdgeEnds2=function(t,e){var n=t.getEdgeIntersectionList();n.addEndpoints();var o=n.iterator(),r=null,i=null;if(o.hasNext()){var s=o.next();do r=i,i=s,s=null,o.hasNext()&&(s=o.next()),null!==i&&(this.createEdgeEndForPrev(t,e,i,r),this.createEdgeEndForNext(t,e,i,s));while(null!==i)}},jsts.operation.relate.EdgeEndBuilder.prototype.createEdgeEndForPrev=function(t,e,n,o){var r=n.segmentIndex;if(0===n.dist){if(0===r)return;r--}var i=t.getCoordinate(r);null!==o&&o.segmentIndex>=r&&(i=o.coord);var s=new jsts.geomgraph.Label(t.getLabel());s.flip();var a=new jsts.geomgraph.EdgeEnd(t,n.coord,i,s);e.add(a)},jsts.operation.relate.EdgeEndBuilder.prototype.createEdgeEndForNext=function(t,e,n,o){var r=n.segmentIndex+1;if(!(r>=t.getNumPoints()&&null===o)){var i=t.getCoordinate(r);null!==o&&o.segmentIndex===n.segmentIndex&&(i=o.coord);var s=new jsts.geomgraph.EdgeEnd(t,n.coord,i,new jsts.geomgraph.Label(t.getLabel()));e.add(s)}}}(),function(){var t=javascript.util.ArrayList,e=javascript.util.TreeSet,n=jsts.geom.CoordinateFilter;jsts.util.UniqueCoordinateArrayFilter=function(){this.treeSet=new e,this.list=new t},jsts.util.UniqueCoordinateArrayFilter.prototype=new n,jsts.util.UniqueCoordinateArrayFilter.prototype.treeSet=null,jsts.util.UniqueCoordinateArrayFilter.prototype.list=null,jsts.util.UniqueCoordinateArrayFilter.prototype.getCoordinates=function(){return this.list.toArray()},jsts.util.UniqueCoordinateArrayFilter.prototype.filter=function(t){this.treeSet.contains(t)||(this.list.add(t),this.treeSet.add(t))}}(),function(){var t=jsts.algorithm.CGAlgorithms,e=jsts.util.UniqueCoordinateArrayFilter,n=jsts.util.Assert,o=javascript.util.Stack,r=javascript.util.ArrayList,i=javascript.util.Arrays,s=function(t){this.origin=t};s.prototype.origin=null,s.prototype.compare=function(t,e){var n=t,o=e;return s.polarCompare(this.origin,n,o)},s.polarCompare=function(e,n,o){var r=n.x-e.x,i=n.y-e.y,s=o.x-e.x,a=o.y-e.y,u=t.computeOrientation(e,n,o);if(u==t.COUNTERCLOCKWISE)return 1;if(u==t.CLOCKWISE)return-1;var p=r*r+i*i,g=s*s+a*a;return g>p?-1:p>g?1:0},jsts.algorithm.ConvexHull=function(){if(1===arguments.length){var t=arguments[0];this.inputPts=jsts.algorithm.ConvexHull.extractCoordinates(t),this.geomFactory=t.getFactory()}else this.pts=arguments[0],this.geomFactory=arguments[1]},jsts.algorithm.ConvexHull.prototype.geomFactory=null,jsts.algorithm.ConvexHull.prototype.inputPts=null,jsts.algorithm.ConvexHull.extractCoordinates=function(t){var n=new e;return t.apply(n),n.getCoordinates()},jsts.algorithm.ConvexHull.prototype.getConvexHull=function(){if(0==this.inputPts.length)return this.geomFactory.createGeometryCollection(null);if(1==this.inputPts.length)return this.geomFactory.createPoint(this.inputPts[0]);if(2==this.inputPts.length)return this.geomFactory.createLineString(this.inputPts);var t=this.inputPts;this.inputPts.length>50&&(t=this.reduce(this.inputPts));var e=this.preSort(t),n=this.grahamScan(e),o=n.toArray();return this.lineOrPolygon(o)},jsts.algorithm.ConvexHull.prototype.reduce=function(e){var n=this.computeOctRing(e);if(null==n)return this.inputPts;for(var o=new javascript.util.TreeSet,r=0;r0;)n=r.pop();n=r.push(n),n=r.push(e[i])}return n=r.push(e[0]),r},jsts.algorithm.ConvexHull.prototype.isBetween=function(e,n,o){if(0!==t.computeOrientation(e,n,o))return!1;if(e.x!=o.x){if(e.x<=n.x&&n.x<=o.x)return!0;if(o.x<=n.x&&n.x<=e.x)return!0}if(e.y!=o.y){if(e.y<=n.y&&n.y<=o.y)return!0;if(o.y<=n.y&&n.y<=e.y)return!0}return!1},jsts.algorithm.ConvexHull.prototype.computeOctRing=function(t){var e=this.computeOctPts(t),n=new jsts.geom.CoordinateList;return n.add(e,!1),n.size()<3?null:(n.closeRing(),n.toCoordinateArray())},jsts.algorithm.ConvexHull.prototype.computeOctPts=function(t){for(var e=[],n=0;8>n;n++)e[n]=t[0];for(var o=1;oe[2].y&&(e[2]=t[o]),t[o].x+t[o].y>e[3].x+e[3].y&&(e[3]=t[o]),t[o].x>e[4].x&&(e[4]=t[o]),t[o].x-t[o].y>e[5].x-e[5].y&&(e[5]=t[o]),t[o].y=t.length&&(e=0),e},jsts.algorithm.MinimumDiameter.computeC=function(t,e,n){return t*n.y-e*n.x},jsts.algorithm.MinimumDiameter.computeSegmentForLine=function(t,e,n){var o,r;return Math.abs(e)>Math.abs(t)?(o=new jsts.geom.Coordinate(0,n/e),r=new jsts.geom.Coordinate(1,n/e-t/e)):(o=new jsts.geom.Coordinate(n/t,0),r=new jsts.geom.Coordinate(n/t-e/t,1)),new jsts.geom.LineSegment(o,r)},jsts.algorithm.MinimumDiameter.prototype.getLength=function(){return this.computeMinimumDiameter(),this.minWidth},jsts.algorithm.MinimumDiameter.prototype.getWidthCoordinate=function(){return this.computeMinimumDiameter(),this.minWidthPt},jsts.algorithm.MinimumDiameter.prototype.getSupportingSegment=function(){this.computeMinimumDiameter();var t=[this.minBaseSeg.p0,this.minBaseSeg.p1];return jsts.algorithm.MinimumDiameter.inputGeom.getFactory().createLineString(t)},jsts.algorithm.MinimumDiameter.prototype.getDiameter=function(){if(this.computeMinimumDiameter(),null===this.minWidthPt)return jsts.algorithm.MinimumDiameter.inputGeom.getFactory().createLineString(null);var t=this.minBaseSeg.project(this.minWidthPt);return jsts.algorithm.MinimumDiameter.inputGeom.getFactory().createLineString([t,this.minWidthPt])},jsts.algorithm.MinimumDiameter.prototype.computeMinimumDiameter=function(){if(null===this.minWidthPt)if(jsts.algorithm.MinimumDiameter.isConvex)this.computeWidthConvex(jsts.algorithm.MinimumDiameter.inputGeom);else{var t=new jsts.algorithm.ConvexHull(jsts.algorithm.MinimumDiameter.inputGeom).getConvexHull();this.computeWidthConvex(t)}},jsts.algorithm.MinimumDiameter.prototype.computeWidthConvex=function(t){this.convexHullPts=t instanceof jsts.geom.Polygon?t.getExteriorRing().getCoordinates():t.getCoordinates(),0===this.convexHullPts.length?(this.minWidth=0,this.minWidthPt=null,this.minBaseSeg=null):1===this.convexHullPts.length?(this.minWidth=0,this.minWidthPt=this.convexHullPts[0],this.minBaseSeg.p0=this.convexHullPts[0],this.minBaseSeg.p1=this.convexHullPts[0]):2===this.convexHullPts.length||3===this.convexHullPts.length?(this.minWidth=0,this.minWidthPt=this.convexHullPts[0],this.minBaseSeg.p0=this.convexHullPts[0],this.minBaseSeg.p1=this.convexHullPts[1]):this.computeConvexRingMinDiameter(this.convexHullPts)},jsts.algorithm.MinimumDiameter.prototype.computeConvexRingMinDiameter=function(t){this.minWidth=Number.MAX_VALUE;for(var e=1,n=new jsts.geom.LineSegment,o=0;o=o;)o=r,i=s,s=jsts.algorithm.MinimumDiameter.nextIndex(t,i),r=e.distancePerpendicular(t[s]);return oo&&(o=a),n>a&&(n=a);var u=jsts.algorithm.MinimumDiameter.computeC(-e,t,this.convexHullPts[s]);u>i&&(i=u),r>u&&(r=u)}var p=jsts.algorithm.MinimumDiameter.computeSegmentForLine(-t,-e,i),g=jsts.algorithm.MinimumDiameter.computeSegmentForLine(-t,-e,r),l=jsts.algorithm.MinimumDiameter.computeSegmentForLine(-e,t,o),h=jsts.algorithm.MinimumDiameter.computeSegmentForLine(-e,t,n),d=l.lineIntersection(p),c=h.lineIntersection(p),f=h.lineIntersection(g),m=l.lineIntersection(g),y=jsts.algorithm.MinimumDiameter.inputGeom.getFactory().createLinearRing([d,c,f,m,d]);return jsts.algorithm.MinimumDiameter.inputGeom.getFactory().createPolygon(y,null)},function(){jsts.io.GeoJSONParser=function(t){this.geometryFactory=t||new jsts.geom.GeometryFactory,this.geometryTypes=["Point","MultiPoint","LineString","MultiLineString","Polygon","MultiPolygon"]},jsts.io.GeoJSONParser.prototype.read=function(t){var e;e="string"==typeof t?JSON.parse(t):t;var n=e.type;if(!this.parse[n])throw new Error("Unknown GeoJSON type: "+e.type);return-1!=this.geometryTypes.indexOf(n)?this.parse[n].apply(this,[e.coordinates]):"GeometryCollection"===n?this.parse[n].apply(this,[e.geometries]):this.parse[n].apply(this,[e])},jsts.io.GeoJSONParser.prototype.parse={Feature:function(t){var e={};for(var n in t)e[n]=t[n];if(t.geometry){var o=t.geometry.type;if(!this.parse[o])throw new Error("Unknown GeoJSON type: "+t.type);e.geometry=this.read(t.geometry)}return t.bbox&&(e.bbox=this.parse.bbox.apply(this,[t.bbox])),e},FeatureCollection:function(t){var e={};if(t.features){e.features=[];for(var n=0;n0?jsts.triangulate.quadedge.Vertex.LEFT:0>i?jsts.triangulate.quadedge.Vertex.RIGHT:o.getX()*r.getX()<0||o.getY()*r.getY()<0?jsts.triangulate.quadedge.Vertex.BEHIND:o.magn()0},jsts.triangulate.quadedge.Vertex.prototype.rightOf=function(t){return this.isCCW(t.dest(),t.orig())},jsts.triangulate.quadedge.Vertex.prototype.leftOf=function(t){return this.isCCW(t.orig(),t.dest())},jsts.triangulate.quadedge.Vertex.prototype.bisector=function(t,e){var n,o,r,i;return n=e.getX()-t.getX(),o=e.getY()-t.getY(),r=new jsts.algorithm.HCoordinate(t.getX()+n/2,t.getY()+o/2,1),i=new jsts.algorithm.HCoordinate(t.getX()-o+n/2,t.getY()+n+o/2,1),new jsts.algorithm.HCoordinate(r,i)},jsts.triangulate.quadedge.Vertex.prototype.distance=function(t,e){return t.p.distance(e.p)},jsts.triangulate.quadedge.Vertex.prototype.circumRadiusRatio=function(t,e){var n,o,r,i;return n=this.circleCenter(t,e),o=this.distance(n,t),r=this.distance(this,t),i=this.distance(t,e),r>i&&(r=i),i=this.distance(e,this),r>i&&(r=i),o/r},jsts.triangulate.quadedge.Vertex.prototype.midPoint=function(t){var e,n;return e=(this.p.x+t.getX())/2,n=(this.p.y+t.getY())/2,new jsts.triangulate.quadedge.Vertex(e,n)},jsts.triangulate.quadedge.Vertex.prototype.circleCenter=function(t,e){var n,o,r,i,s;n=new jsts.triangulate.quadedge.Vertex(this.getX(),this.getY()),o=this.bisector(n,t),r=this.bisector(t,e),i=new jsts.algorithm.HCoordinate(o,r),s=null;try{s=new jsts.triangulate.quadedge.Vertex(i.getX(),i.getY())}catch(a){}return s},jsts.operation.valid.IsValidOp=function(t){this.parentGeometry=t,this.isSelfTouchingRingFormingHoleValid=!1,this.validErr=null},jsts.operation.valid.IsValidOp.isValid=function(t){if(arguments[0]instanceof jsts.geom.Coordinate)return isNaN(t.x)?!1:isFinite(t.x)||isNaN(t.x)?isNaN(t.y)?!1:isFinite(t.y)||isNaN(t.y)?!0:!1:!1;var e=new jsts.operation.valid.IsValidOp(t);return e.isValid()},jsts.operation.valid.IsValidOp.findPtNotNode=function(t,e,n){for(var o=n.findEdge(e),r=o.getEdgeIntersectionList(),i=0;in;n++){var o=t.getGeometryN(n);if(this.checkInvalidCoordinates(o),null!=this.validErr)return;if(this.checkClosedRings(o),null!=this.validErr)return}var r=new jsts.geomgraph.GeometryGraph(0,t);if(this.checkTooFewPoints(r),null==this.validErr&&(this.checkConsistentArea(r),null==this.validErr&&(this.isSelfTouchingRingFormingHoleValid||(this.checkNoSelfIntersectingRings(r),null==this.validErr)))){for(var n=0;n=1&&(e=t.getCoordinateN(0)),this.validErr=new jsts.operation.valid.TopologyValidationError(jsts.operation.valid.TopologyValidationError.RING_NOT_CLOSED,e)}},jsts.operation.valid.IsValidOp.prototype.checkTooFewPoints=function(t){return t.hasTooFewPoints?void(this.validErr=new jsts.operation.valid.TopologyValidationError(jsts.operation.valid.TopologyValidationError.TOO_FEW_POINTS,t.getInvalidPoint())):void 0},jsts.operation.valid.IsValidOp.prototype.checkConsistentArea=function(t){var e=new jsts.operation.valid.ConsistentAreaTester(t),n=e.isNodeConsistentArea();return n?void(e.hasDuplicateRings()&&(this.validErr=new jsts.operation.valid.TopologyValidationError(jsts.operation.valid.TopologyValidationError.DUPLICATE_RINGS,e.getInvalidPoint()))):void(this.validErr=new jsts.operation.valid.TopologyValidationError(jsts.operation.valid.TopologyValidationError.SELF_INTERSECTION,e.getInvalidPoint()))},jsts.operation.valid.IsValidOp.prototype.checkNoSelfIntersectingRings=function(t){for(var e=t.getEdgeIterator();e.hasNext();){var n=e.next();if(this.checkNoSelfIntersectingRing(n.getEdgeIntersectionList()),null!=this.validErr)return}},jsts.operation.valid.IsValidOp.prototype.checkNoSelfIntersectingRing=function(t){for(var e=[],n=!0,o=t.iterator();o.hasNext();){var r=o.next();if(n)n=!1;else{if(e.indexOf(r.coord)>=0)return void(this.validErr=new jsts.operation.valid.TopologyValidationError(jsts.operation.valid.TopologyValidationError.RING_SELF_INTERSECTION,r.coord));e.push(r.coord)}}},jsts.operation.valid.IsValidOp.prototype.checkHolesInShell=function(t,e){for(var n=t.getExteriorRing(),o=new jsts.algorithm.MCPointInRing(n),r=0;r0?n>0?-r:r:n>0?r:-r;if(0===e||0===n)return o>0?t>0?r:-r:t>0?-r:r;if(e>0?o>0?e>o&&(r=-r,i=t,t=n,n=i,i=e,e=o,o=i):-o>=e?(r=-r,n=-n,o=-o):(i=t,t=-n,n=i,i=e,e=-o,o=i):o>0?o>=-e?(r=-r,t=-t,e=-e):(i=-t,t=n,n=i,i=-e,e=o,o=i):e>=o?(t=-t,e=-e,n=-n,o=-o):(r=-r,i=-t,t=-n,n=i,i=-e,e=-o,o=i),t>0){if(!(n>0))return r;if(t>n)return r}else{if(n>0)return-r;if(!(t>=n))return-r;r=-r,t=-t,n=-n}for(;;){if(a+=1,s=Math.floor(n/t),n-=s*t,o-=s*e,0>o)return-r;if(o>e)return r;if(t>n+n){if(o+o>e)return r}else{if(e>o+o)return-r;n=t-n,o=e-o,r=-r}if(0===o)return 0===n?0:-r;if(0===n)return r;if(s=Math.floor(t/n),t-=s*n,e-=s*o,0>e)return r;if(e>o)return-r;if(n>t+t){if(e+e>o)return-r}else{if(o>e+e)return r;t=n-t,e=o-e,r=-r}if(0===e)return 0===t?0:r;if(0===t)return-r}},jsts.algorithm.RobustDeterminant.orientationIndex=function(t,e,n){var o=e.x-t.x,r=e.y-t.y,i=n.x-e.x,s=n.y-e.y;return jsts.algorithm.RobustDeterminant.signOfDet2x2(o,r,i,s)},jsts.index.quadtree.NodeBase=function(){this.subnode=new Array(4),this.subnode[0]=null,this.subnode[1]=null,this.subnode[2]=null,this.subnode[3]=null,this.items=[]},jsts.index.quadtree.NodeBase.prototype.getSubnodeIndex=function(t,e){var n=-1;return t.getMinX()>=e.x&&(t.getMinY()>=e.y&&(n=3),t.getMaxY()<=e.y&&(n=1)),t.getMaxX()<=e.x&&(t.getMinY()>=e.y&&(n=2),t.getMaxY()<=e.y&&(n=0)),n},jsts.index.quadtree.NodeBase.prototype.getItems=function(){return this.items},jsts.index.quadtree.NodeBase.prototype.hasItems=function(){return this.items.length>0},jsts.index.quadtree.NodeBase.prototype.add=function(t){this.items.push(t)},jsts.index.quadtree.NodeBase.prototype.remove=function(t,e){if(!this.isSearchMatch(t))return!1;var n=!1,o=0;for(o;4>o;o++)if(null!==this.subnode[o]&&(n=this.subnode[o].remove(t,e))){this.subnode[o].isPrunable()&&(this.subnode[o]=null);break}if(n)return n;if(-1!==this.items.indexOf(e)){for(var o=this.items.length-1;o>=0;o--)this.items[o]===e&&this.items.splice(o,1);n=!0}return n},jsts.index.quadtree.NodeBase.prototype.isPrunable=function(){return!(this.hasChildren()||this.hasItems())},jsts.index.quadtree.NodeBase.prototype.hasChildren=function(){var t=0;for(t;4>t;t++)if(null!==this.subnode[t])return!0;return!1},jsts.index.quadtree.NodeBase.prototype.isEmpty=function(){var t=!0;this.items.length>0&&(t=!1);var e=0;for(e;4>e;e++)null!==this.subnode[e]&&(this.subnode[e].isEmpty()||(t=!1));return t},jsts.index.quadtree.NodeBase.prototype.addAllItems=function(t){t=t.concat(this.items);var e=0;for(e;4>e;e++)null!==this.subnode[e]&&(t=this.subnode[e].addAllItems(t));return t},jsts.index.quadtree.NodeBase.prototype.addAllItemsFromOverlapping=function(t,e){if(this.isSearchMatch(t)){e=e.concat(this.items);var n=0;for(n;4>n;n++)null!==this.subnode[n]&&(e=this.subnode[n].addAllItemsFromOverlapping(t,e))}},jsts.index.quadtree.NodeBase.prototype.visit=function(t,e){if(this.isSearchMatch(t)){this.visitItems(t,e);var n=0;for(n;4>n;n++)null!==this.subnode[n]&&this.subnode[n].visit(t,e)}},jsts.index.quadtree.NodeBase.prototype.visitItems=function(t,e){var n=0,o=this.items.length;for(n;o>n;n++)e.visitItem(this.items[n])},jsts.index.quadtree.NodeBase.prototype.depth=function(){var t,e=0,n=0;for(n;4>n;n++)null!==this.subnode[n]&&(t=this.subnode[n].depth(),t>e&&(e=t));return e+1},jsts.index.quadtree.NodeBase.prototype.size=function(){var t=0,e=0;for(e;4>e;e++)null!==this.subnode[e]&&(t+=this.subnode[e].size());return t+this.items.length},jsts.index.quadtree.NodeBase.prototype.getNodeCount=function(){var t=0,e=0;for(e;4>e;e++)null!==this.subnode[e]&&(t+=this.subnode[e].size());return t+1},jsts.index.quadtree.Node=function(t,e){jsts.index.quadtree.NodeBase.prototype.constructor.apply(this,arguments),this.env=t,this.level=e,this.centre=new jsts.geom.Coordinate,this.centre.x=(t.getMinX()+t.getMaxX())/2,this.centre.y=(t.getMinY()+t.getMaxY())/2},jsts.index.quadtree.Node.prototype=new jsts.index.quadtree.NodeBase,jsts.index.quadtree.Node.createNode=function(t){var e,n;return e=new jsts.index.quadtree.Key(t),n=new jsts.index.quadtree.Node(e.getEnvelope(),e.getLevel())},jsts.index.quadtree.Node.createExpanded=function(t,e){var n,o=new jsts.geom.Envelope(e);return null!==t&&o.expandToInclude(t.env),n=jsts.index.quadtree.Node.createNode(o),null!==t&&n.insertNode(t),n},jsts.index.quadtree.Node.prototype.getEnvelope=function(){return this.env},jsts.index.quadtree.Node.prototype.isSearchMatch=function(t){return this.env.intersects(t)},jsts.index.quadtree.Node.prototype.getNode=function(t){var e,n=this.getSubnodeIndex(t,this.centre);return-1!==n?(e=this.getSubnode(n),e.getNode(t)):this},jsts.index.quadtree.Node.prototype.find=function(t){var e,n=this.getSubnodeIndex(t,this.centre);return-1===n?this:null!==this.subnode[n]?(e=this.subnode[n],e.find(t)):this},jsts.index.quadtree.Node.prototype.insertNode=function(t){var e,n=this.getSubnodeIndex(t.env,this.centre);t.level===this.level-1?this.subnode[n]=t:(e=this.createSubnode(n),e.insertNode(t),this.subnode[n]=e)},jsts.index.quadtree.Node.prototype.getSubnode=function(t){return null===this.subnode[t]&&(this.subnode[t]=this.createSubnode(t)),this.subnode[t]},jsts.index.quadtree.Node.prototype.createSubnode=function(t){var e,n,o=0,r=0,i=0,s=0;switch(t){case 0:o=this.env.getMinX(),r=this.centre.x,i=this.env.getMinY(),s=this.centre.y;break;case 1:o=this.centre.x,r=this.env.getMaxX(),i=this.env.getMinY(),s=this.centre.y;break;case 2:o=this.env.getMinX(),r=this.centre.x,i=this.centre.y,s=this.env.getMaxY();break;case 3:o=this.centre.x,r=this.env.getMaxX(),i=this.centre.y,s=this.env.getMaxY()}return e=new jsts.geom.Envelope(o,r,i,s),n=new jsts.index.quadtree.Node(e,this.level-1)},function(){jsts.triangulate.quadedge.QuadEdge=function(){this.rot=null,this.vertex=null,this.next=null,this.data=null};var t=jsts.triangulate.quadedge.QuadEdge;jsts.triangulate.quadedge.QuadEdge.makeEdge=function(e,n){var o,r,i,s,a;return o=new t,r=new t,i=new t,s=new t,o.rot=r,r.rot=i,i.rot=s,s.rot=o,o.setNext(o),r.setNext(s),i.setNext(i),s.setNext(r),a=o,a.setOrig(e),a.setDest(n),a},jsts.triangulate.quadedge.QuadEdge.connect=function(e,n){var o=t.makeEdge(e.dest(),n.orig());return t.splice(o,e.lNext()),t.splice(o.sym(),n),o},jsts.triangulate.quadedge.QuadEdge.splice=function(t,e){var n,o,r,i,s,a;n=t.oNext().rot,o=e.oNext().rot,r=e.oNext(),i=t.oNext(),s=o.oNext(),a=n.oNext(),t.setNext(r),e.setNext(i),n.setNext(s),o.setNext(a)},jsts.triangulate.quadedge.QuadEdge.swap=function(e){var n,o;n=e.oPrev(),o=e.sym().oPrev(),t.splice(e,n),t.splice(e.sym(),o),t.splice(e,n.lNext()),t.splice(e.sym(),o.lNext()),e.setOrig(n.dest()),e.setDest(o.dest())},jsts.triangulate.quadedge.QuadEdge.prototype.getPrimary=function(){return this.orig().getCoordinate().compareTo(this.dest().getCoordinate())<=0?this:this.sym()},jsts.triangulate.quadedge.QuadEdge.prototype.setData=function(t){this.data=t},jsts.triangulate.quadedge.QuadEdge.prototype.getData=function(){return this.data},jsts.triangulate.quadedge.QuadEdge.prototype.delete_jsts=function(){this.rot=null},jsts.triangulate.quadedge.QuadEdge.prototype.isLive=function(){return null!==this.rot},jsts.triangulate.quadedge.QuadEdge.prototype.setNext=function(t){this.next=t},jsts.triangulate.quadedge.QuadEdge.prototype.invRot=function(){return this.rot.sym()},jsts.triangulate.quadedge.QuadEdge.prototype.sym=function(){return this.rot.rot},jsts.triangulate.quadedge.QuadEdge.prototype.oNext=function(){return this.next},jsts.triangulate.quadedge.QuadEdge.prototype.oPrev=function(){return this.rot.next.rot},jsts.triangulate.quadedge.QuadEdge.prototype.dNext=function(){return this.sym().oNext().sym()},jsts.triangulate.quadedge.QuadEdge.prototype.dPrev=function(){return this.invRot().oNext().invRot()},jsts.triangulate.quadedge.QuadEdge.prototype.lNext=function(){return this.invRot().oNext().rot},jsts.triangulate.quadedge.QuadEdge.prototype.lPrev=function(){return this.next.sym()},jsts.triangulate.quadedge.QuadEdge.prototype.rNext=function(){return this.rot.next.invRot()},jsts.triangulate.quadedge.QuadEdge.prototype.rPrev=function(){return this.sym().oNext()},jsts.triangulate.quadedge.QuadEdge.prototype.setOrig=function(t){this.vertex=t},jsts.triangulate.quadedge.QuadEdge.prototype.setDest=function(t){this.sym().setOrig(t)},jsts.triangulate.quadedge.QuadEdge.prototype.orig=function(){return this.vertex},jsts.triangulate.quadedge.QuadEdge.prototype.dest=function(){return this.sym().orig()},jsts.triangulate.quadedge.QuadEdge.prototype.getLength=function(){return this.orig().getCoordinate().distance(dest().getCoordinate())},jsts.triangulate.quadedge.QuadEdge.prototype.equalsNonOriented=function(t){return this.equalsOriented(t)?!0:this.equalsOriented(t.sym())?!0:!1},jsts.triangulate.quadedge.QuadEdge.prototype.equalsOriented=function(t){return this.orig().getCoordinate().equals2D(t.orig().getCoordinate())&&this.dest().getCoordinate().equals2D(t.dest().getCoordinate())?!0:!1},jsts.triangulate.quadedge.QuadEdge.prototype.toLineSegment=function(){return new jsts.geom.LineSegment(this.vertex.getCoordinate(),this.dest().getCoordinate()) -},jsts.triangulate.quadedge.QuadEdge.prototype.toString=function(){var t,e;return t=this.vertex.getCoordinate(),e=this.dest().getCoordinate(),jsts.io.WKTWriter.toLineString(t,e)}}(),function(){var t=jsts.util.Assert;jsts.geomgraph.EdgeEnd=function(t,e,n,o){this.edge=t,e&&n&&this.init(e,n),o&&(this.label=o||null)},jsts.geomgraph.EdgeEnd.prototype.edge=null,jsts.geomgraph.EdgeEnd.prototype.label=null,jsts.geomgraph.EdgeEnd.prototype.node=null,jsts.geomgraph.EdgeEnd.prototype.p0=null,jsts.geomgraph.EdgeEnd.prototype.p1=null,jsts.geomgraph.EdgeEnd.prototype.dx=null,jsts.geomgraph.EdgeEnd.prototype.dy=null,jsts.geomgraph.EdgeEnd.prototype.quadrant=null,jsts.geomgraph.EdgeEnd.prototype.init=function(e,n){this.p0=e,this.p1=n,this.dx=n.x-e.x,this.dy=n.y-e.y,this.quadrant=jsts.geomgraph.Quadrant.quadrant(this.dx,this.dy),t.isTrue(!(0===this.dx&&0===this.dy),"EdgeEnd with identical endpoints found")},jsts.geomgraph.EdgeEnd.prototype.getEdge=function(){return this.edge},jsts.geomgraph.EdgeEnd.prototype.getLabel=function(){return this.label},jsts.geomgraph.EdgeEnd.prototype.getCoordinate=function(){return this.p0},jsts.geomgraph.EdgeEnd.prototype.getDirectedCoordinate=function(){return this.p1},jsts.geomgraph.EdgeEnd.prototype.getQuadrant=function(){return this.quadrant},jsts.geomgraph.EdgeEnd.prototype.getDx=function(){return this.dx},jsts.geomgraph.EdgeEnd.prototype.getDy=function(){return this.dy},jsts.geomgraph.EdgeEnd.prototype.setNode=function(t){this.node=t},jsts.geomgraph.EdgeEnd.prototype.getNode=function(){return this.node},jsts.geomgraph.EdgeEnd.prototype.compareTo=function(t){return this.compareDirection(t)},jsts.geomgraph.EdgeEnd.prototype.compareDirection=function(t){return this.dx===t.dx&&this.dy===t.dy?0:this.quadrant>t.quadrant?1:this.quadrant0&&this.minIndexthis.minCoord.y&&n.y>this.minCoord.y&&o===jsts.algorithm.CGAlgorithms.CLOCKWISE&&(r=!0),r&&(this.minIndex=this.minIndex-1)},jsts.operation.buffer.RightmostEdgeFinder.prototype.checkForRightmostCoordinate=function(t){for(var e=t.getEdge().getCoordinates(),n=0;nthis.minCoord.x)&&(this.minDe=t,this.minIndex=n,this.minCoord=e[n])},jsts.operation.buffer.RightmostEdgeFinder.prototype.getRightmostSide=function(t,e){var n=this.getRightmostSideOfSegment(t,e);return 0>n&&(n=this.getRightmostSideOfSegment(t,e-1)),0>n&&(this.minCoord=null,this.checkForRightmostCoordinate(t)),n},jsts.operation.buffer.RightmostEdgeFinder.prototype.getRightmostSideOfSegment=function(t,e){var n=t.getEdge(),o=n.getCoordinates();if(0>e||e+1>=o.length)return-1;if(o[e].y==o[e+1].y)return-1;var r=jsts.geomgraph.Position.LEFT;return o[e].y0},jsts.triangulate.IncrementalDelaunayTriangulator.prototype.insertSites=function(t){var e,n=0,o=t.length;for(n;o>n;n++)e=t[n],this.insertSite(e)},jsts.triangulate.IncrementalDelaunayTriangulator.prototype.insertSite=function(t){var e,n,o,r;if(e=this.subdiv.locate(t),this.subdiv.isVertexOfEdge(e,t))return e;this.subdiv.isOnEdge(e,t.getCoordinate())&&(e=e.oPrev(),this.subdiv.delete_jsts(e.oNext())),n=this.subdiv.makeEdge(e.orig(),t),jsts.triangulate.quadedge.QuadEdge.splice(n,e),o=n;do n=this.subdiv.connect(e,n.sym()),e=n.oPrev();while(e.lNext()!=o);for(;;)if(r=e.oPrev(),r.dest().rightOf(e)&&t.isInCircle(e.orig(),r.dest(),e.dest()))jsts.triangulate.quadedge.QuadEdge.swap(e),e=e.oPrev();else{if(e.oNext()==o)return n;e=e.oNext().lPrev()}}}(),jsts.algorithm.CentroidArea=function(){this.basePt=null,this.triangleCent3=new jsts.geom.Coordinate,this.centSum=new jsts.geom.Coordinate,this.cg3=new jsts.geom.Coordinate},jsts.algorithm.CentroidArea.prototype.basePt=null,jsts.algorithm.CentroidArea.prototype.triangleCent3=null,jsts.algorithm.CentroidArea.prototype.areasum2=0,jsts.algorithm.CentroidArea.prototype.cg3=null,jsts.algorithm.CentroidArea.prototype.centSum=null,jsts.algorithm.CentroidArea.prototype.totalLength=0,jsts.algorithm.CentroidArea.prototype.add=function(t){if(t instanceof jsts.geom.Polygon){var e=t;this.setBasePoint(e.getExteriorRing().getCoordinateN(0)),this.add3(e)}else if(t instanceof jsts.geom.GeometryCollection||t instanceof jsts.geom.MultiPolygon)for(var n=t,o=0;o0?(t.x=this.cg3.x/3/this.areasum2,t.y=this.cg3.y/3/this.areasum2):(t.x=this.centSum.x/this.totalLength,t.y=this.centSum.y/this.totalLength),t},jsts.algorithm.CentroidArea.prototype.setBasePoint=function(t){null==this.basePt&&(this.basePt=t)},jsts.algorithm.CentroidArea.prototype.add3=function(t){this.addShell(t.getExteriorRing().getCoordinates());for(var e=0;et?t:e},jsts.geomgraph.index.SweepLineSegment.prototype.getMaxX=function(){var t=this.pts[this.ptIndex].x,e=this.pts[this.ptIndex+1].x;return t>e?t:e},jsts.geomgraph.index.SweepLineSegment.prototype.computeIntersections=function(t,e){e.addIntersections(this.edge,this.ptIndex,t.edge,t.ptIndex)},jsts.index.quadtree.Root=function(){jsts.index.quadtree.NodeBase.prototype.constructor.apply(this,arguments),this.origin=new jsts.geom.Coordinate(0,0)},jsts.index.quadtree.Root.prototype=new jsts.index.quadtree.NodeBase,jsts.index.quadtree.Root.prototype.insert=function(t,e){var n=this.getSubnodeIndex(t,this.origin);if(-1===n)return void this.add(e);var o=this.subnode[n];if(null===o||!o.getEnvelope().contains(t)){var r=jsts.index.quadtree.Node.createExpanded(o,t);this.subnode[n]=r}this.insertContained(this.subnode[n],t,e)},jsts.index.quadtree.Root.prototype.insertContained=function(t,e,n){var o,r,i;o=jsts.index.IntervalSize.isZeroWidth(e.getMinX(),e.getMaxX()),r=jsts.index.IntervalSize.isZeroWidth(e.getMinY(),e.getMaxY()),i=o||r?t.find(e):t.getNode(e),i.add(n)},jsts.index.quadtree.Root.prototype.isSearchMatch=function(){return!0},jsts.geomgraph.index.MonotoneChainIndexer=function(){},jsts.geomgraph.index.MonotoneChainIndexer.toIntArray=function(t){for(var e=[],n=t.iterator();n.hasNext();){var o=n.next();e.push(o)}return e},jsts.geomgraph.index.MonotoneChainIndexer.prototype.getChainStartIndices=function(t){var e=0,n=new javascript.util.ArrayList;n.add(e);do{var o=this.findChainEnd(t,e);n.add(o),e=o}while(ee;e++){var o=this.inputPolys[e];t.insert(o.getEnvelopeInternal(),o)}var r=t.itemsTree(),i=this.unionTree(r);return i},jsts.operation.union.CascadedPolygonUnion.prototype.unionTree=function(t){var e=this.reduceToGeometries(t),n=this.binaryUnion(e);return n},jsts.operation.union.CascadedPolygonUnion.prototype.binaryUnion=function(t,e,n){if(e=e||0,n=n||t.length,1>=n-e){var o=this.getGeometry(t,e);return this.unionSafe(o,null)}if(n-e===2)return this.unionSafe(this.getGeometry(t,e),this.getGeometry(t,e+1));var r=parseInt((n+e)/2),o=this.binaryUnion(t,e,r),i=this.binaryUnion(t,r,n);return this.unionSafe(o,i)},jsts.operation.union.CascadedPolygonUnion.prototype.getGeometry=function(t,e){return e>=t.length?null:t[e]},jsts.operation.union.CascadedPolygonUnion.prototype.reduceToGeometries=function(t){for(var e=[],n=0,o=t.length;o>n;n++){var r=t[n],i=null;r instanceof Array?i=this.unionTree(r):r instanceof jsts.geom.Geometry&&(i=r),e.push(i)}return e},jsts.operation.union.CascadedPolygonUnion.prototype.unionSafe=function(t,e){return null===t&&null===e?null:null===t?e.clone():null===e?t.clone():this.unionOptimized(t,e)},jsts.operation.union.CascadedPolygonUnion.prototype.unionOptimized=function(t,e){var n=t.getEnvelopeInternal(),o=e.getEnvelopeInternal();if(!n.intersects(o)){var r=jsts.geom.util.GeometryCombiner.combine(t,e);return r}if(t.getNumGeometries<=1&&e.getNumGeometries<=1)return this.unionActual(t,e);var i=n.intersection(o);return this.unionUsingEnvelopeIntersection(t,e,i)},jsts.operation.union.CascadedPolygonUnion.prototype.unionUsingEnvelopeIntersection=function(t,e,n){var o=new javascript.util.ArrayList,r=this.extractByEnvelope(n,t,o),i=this.extractByEnvelope(n,e,o),s=this.unionActual(r,i);o.add(s);var a=jsts.geom.util.GeometryCombiner.combine(o);return a},jsts.operation.union.CascadedPolygonUnion.prototype.extractByEnvelope=function(t,e,n){for(var o=new javascript.util.ArrayList,r=0;re;this.computeSingleSidedBufferCurve(t,r,o)}else this.computeLineBufferCurve(t,o);var i=o.getCoordinates();return i},jsts.operation.buffer.OffsetCurveBuilder.prototype.getRingCurve=function(t,e,n){if(this.distance=n,t.length<=2)return this.getLineCurve(t,n);if(0==this.distance)return jsts.operation.buffer.OffsetCurveBuilder.copyCoordinates(t);var o=this.getSegGen(this.distance);return this.computeRingBufferCurve(t,e,o),o.getCoordinates()},jsts.operation.buffer.OffsetCurveBuilder.prototype.getOffsetCurve=function(t,e){if(this.distance=e,0===this.distance)return null;var n=this.distance<0,o=Math.abs(this.distance),r=this.getSegGen(o);t.length<=1?this.computePointCurve(t[0],r):this.computeOffsetCurve(t,n,r);var i=r.getCoordinates();return n&&i.reverse(),i},jsts.operation.buffer.OffsetCurveBuilder.copyCoordinates=function(t){for(var e=[],n=0;n=i;i++)e.addNextSegment(o[i],!0);e.addLastSegment(),e.addLineEndCap(o[r-1],o[r]);var s=jsts.operation.buffer.BufferInputLineSimplifier.simplify(t,-n),a=s.length-1;e.initSideSegments(s[a],s[a-1],jsts.geomgraph.Position.LEFT);for(var i=a-2;i>=0;i--)e.addNextSegment(s[i],!0);e.addLastSegment(),e.addLineEndCap(s[1],s[0]),e.closeRing()},jsts.operation.buffer.OffsetCurveBuilder.prototype.computeSingleSidedBufferCurve=function(t,e,n){var o=jsts.operation.buffer.OffsetCurveBuilder.simplifyTolerance(this.distance);if(e){n.addSegments(t,!0);var r=jsts.operation.buffer.BufferInputLineSimplifier.simplify(t,-o),i=r.length-1;n.initSideSegments(r[i],r[i-1],jsts.geomgraph.Position.LEFT),n.addFirstSegment();for(var s=i-2;s>=0;s--)n.addNextSegment(r[s],!0)}else{n.addSegments(t,!1);var a=jsts.operation.buffer.BufferInputLineSimplifier.simplify(t,o),u=a.length-1;n.initSideSegments(a[0],a[1],jsts.geomgraph.Position.LEFT),n.addFirstSegment();for(var s=2;u>=s;s++)n.addNextSegment(a[s],!0)}n.addLastSegment(),n.closeRing()},jsts.operation.buffer.OffsetCurveBuilder.prototype.computeOffsetCurve=function(t,e,n){var o=jsts.operation.buffer.OffsetCurveBuilder.simplifyTolerance(this.distance);if(e){var r=jsts.operation.buffer.BufferInputLineSimplifier.simplify(t,-o),i=r.length-1;n.initSideSegments(r[i],r[i-1],jsts.geomgraph.Position.LEFT),n.addFirstSegment();for(var s=i-2;s>=0;s--)n.addNextSegment(r[s],!0)}else{var a=jsts.operation.buffer.BufferInputLineSimplifier.simplify(t,o),u=a.length-1;n.initSideSegments(a[0],a[1],jsts.geomgraph.Position.LEFT),n.addFirstSegment();for(var s=2;u>=s;s++)n.addNextSegment(a[s],!0)}n.addLastSegment()},jsts.operation.buffer.OffsetCurveBuilder.prototype.computeRingBufferCurve=function(t,e,n){var o=jsts.operation.buffer.OffsetCurveBuilder.simplifyTolerance(this.distance);e===jsts.geomgraph.Position.RIGHT&&(o=-o);var r=jsts.operation.buffer.BufferInputLineSimplifier.simplify(t,o),i=r.length-1;n.initSideSegments(r[i-1],r[0],e);for(var s=1;i>=s;s++){var a=1!==s;n.addNextSegment(r[s],a)}n.closeRing()},function(){var t=function(t,e,n){this.hotPixel=t,this.parentEdge=e,this.vertexIndex=n};t.prototype=new jsts.index.chain.MonotoneChainSelectAction,t.constructor=t,t.prototype.hotPixel=null,t.prototype.parentEdge=null,t.prototype.vertexIndex=null,t.prototype._isNodeAdded=!1,t.prototype.isNodeAdded=function(){return this._isNodeAdded},t.prototype.select=function(t,e){var n=t.getContext();(null===this.parentEdge||n!==this.parentEdge||e!==this.vertexIndex)&&(this._isNodeAdded=this.hotPixel.addSnappedNode(n,e))},jsts.noding.snapround.MCIndexPointSnapper=function(t){this.index=t},jsts.noding.snapround.MCIndexPointSnapper.prototype.index=null,jsts.noding.snapround.MCIndexPointSnapper.prototype.snap=function(e,n,o){if(1===arguments.length)return void this.snap2.apply(this,arguments);var r=e.getSafeEnvelope(),i=new t(e,n,o);return this.index.query(r,{visitItem:function(t){t.select(r,i)}}),i.isNodeAdded()},jsts.noding.snapround.MCIndexPointSnapper.prototype.snap2=function(t){return this.snap(t,null,-1)}}(),function(){var t=function(){this.items=new javascript.util.ArrayList,this.subnode=[null,null]};t.getSubnodeIndex=function(t,e){var n=-1;return t.min>=e&&(n=1),t.max<=e&&(n=0),n},t.prototype.getItems=function(){return this.items},t.prototype.add=function(t){this.items.add(t)},t.prototype.addAllItems=function(t){t.addAll(this.items);var e=0,n=2;for(e;n>e;e++)null!==this.subnode[e]&&this.subnode[e].addAllItems(t);return t},t.prototype.addAllItemsFromOverlapping=function(t,e){(null===t||this.isSearchMatch(t))&&(e.addAll(this.items),null!==this.subnode[0]&&this.subnode[0].addAllItemsFromOverlapping(t,e),null!==this.subnode[1]&&this.subnode[1].addAllItemsFromOverlapping(t,e))},t.prototype.remove=function(t,e){if(!this.isSearchMatch(t))return!1;var n=!1,o=0,r=2;for(o;r>o;o++)if(null!==this.subnode[o]&&(n=this.subnode[o].remove(t,e))){this.subnode[o].isPrunable()&&(this.subnode[o]=null);break}return n?n:n=this.items.remove(e)},t.prototype.isPrunable=function(){return!(this.hasChildren()||this.hasItems())},t.prototype.hasChildren=function(){var t=0,e=2;for(t;e>t;t++)if(null!==this.subnode[t])return!0;return!1},t.prototype.hasItems=function(){return!this.items.isEmpty()},t.prototype.depth=function(){var t,e=0,n=0,o=2;for(n;o>n;n++)null!==this.subnode[n]&&(t=this.subnode[n].depth(),t>e&&(e=t));return e+1},t.prototype.size=function(){var t=0,e=0,n=2;for(e;n>e;e++)null!==this.subnode[e]&&(t+=this.subnode[e].size());return t+this.items.size()},t.prototype.nodeSize=function(){var t=0,e=0,n=2;for(e;n>e;e++)null!==this.subnode[e]&&(t+=this.subnode[e].nodeSize());return t+1},jsts.index.bintree.NodeBase=t}(),function(){var t=jsts.index.bintree.NodeBase,e=jsts.index.bintree.Key,n=jsts.index.bintree.Interval,o=function(t,e){this.items=new javascript.util.ArrayList,this.subnode=[null,null],this.interval=t,this.level=e,this.centre=(t.getMin()+t.getMax())/2};o.prototype=new t,o.constructor=o,o.createNode=function(t){var n,r;return n=new e(t),r=new o(n.getInterval(),n.getLevel())},o.createExpanded=function(t,e){var r,i;return r=new n(e),null!==t&&r.expandToInclude(t.interval),i=o.createNode(r),null!==t&&i.insert(t),i},o.prototype.getInterval=function(){return this.interval},o.prototype.isSearchMatch=function(t){return t.overlaps(this.interval)},o.prototype.getNode=function(e){var n,o=t.getSubnodeIndex(e,this.centre);return-1!=o?(n=this.getSubnode(o),n.getNode(e)):this},o.prototype.find=function(e){var n,o=t.getSubnodeIndex(e,this.centre);return-1===o?this:null!==this.subnode[o]?(n=this.subnode[o],n.find(e)):this},o.prototype.insert=function(e){var n,o=t.getSubnodeIndex(e.interval,this.centre);e.level===this.level-1?this.subnode[o]=e:(n=this.createSubnode(o),n.insert(e),this.subnode[o]=n)},o.prototype.getSubnode=function(t){return null===this.subnode[t]&&(this.subnode[t]=this.createSubnode(t)),this.subnode[t]},o.prototype.createSubnode=function(t){var e,r,i,s;switch(e=0,r=0,t){case 0:e=this.interval.getMin(),r=this.centre;break;case 1:e=this.centre,r=this.interval.getMax()}return i=new n(e,r),s=new o(i,this.level-1)},jsts.index.bintree.Node=o}(),function(){var t=jsts.index.bintree.Node,e=jsts.index.bintree.NodeBase,n=function(){this.subnode=[null,null],this.items=new javascript.util.ArrayList};n.prototype=new jsts.index.bintree.NodeBase,n.constructor=n,n.origin=0,n.prototype.insert=function(o,r){var i,s,a=e.getSubnodeIndex(o,n.origin);return-1===a?void this.add(r):(i=this.subnode[a],null!==i&&i.getInterval().contains(o)||(s=t.createExpanded(i,o),this.subnode[a]=s),void this.insertContained(this.subnode[a],o,r))},n.prototype.insertContained=function(t,e,n){var o,r;o=jsts.index.IntervalSize.isZeroWidth(e.getMin(),e.getMax()),r=o?t.find(e):t.getNode(e),r.add(n)},n.prototype.isSearchMatch=function(){return!0},jsts.index.bintree.Root=n}(),jsts.geomgraph.Quadrant=function(){},jsts.geomgraph.Quadrant.NE=0,jsts.geomgraph.Quadrant.NW=1,jsts.geomgraph.Quadrant.SW=2,jsts.geomgraph.Quadrant.SE=3,jsts.geomgraph.Quadrant.quadrant=function(t,e){if(t instanceof jsts.geom.Coordinate)return jsts.geomgraph.Quadrant.quadrant2.apply(this,arguments);if(0===t&&0===e)throw new jsts.error.IllegalArgumentError("Cannot compute the quadrant for point ( "+t+", "+e+" )");return t>=0?e>=0?jsts.geomgraph.Quadrant.NE:jsts.geomgraph.Quadrant.SE:e>=0?jsts.geomgraph.Quadrant.NW:jsts.geomgraph.Quadrant.SW},jsts.geomgraph.Quadrant.quadrant2=function(t,e){if(e.x===t.x&&e.y===t.y)throw new jsts.error.IllegalArgumentError("Cannot compute the quadrant for two identical points "+t);return e.x>=t.x?e.y>=t.y?jsts.geomgraph.Quadrant.NE:jsts.geomgraph.Quadrant.SE:e.y>=t.y?jsts.geomgraph.Quadrant.NW:jsts.geomgraph.Quadrant.SW},jsts.geomgraph.Quadrant.isOpposite=function(t,e){if(t===e)return!1;var n=(t-e+4)%4;return 2===n?!0:!1},jsts.geomgraph.Quadrant.commonHalfPlane=function(t,e){if(t===e)return t;var n=(t-e+4)%4;if(2===n)return-1;var o=e>t?t:e,r=t>e?t:e;return 0===o&&3===r?3:o},jsts.geomgraph.Quadrant.isInHalfPlane=function(t,e){return e===jsts.geomgraph.Quadrant.SE?t===jsts.geomgraph.Quadrant.SE||t===jsts.geomgraph.Quadrant.SW:t===e||t===e+1},jsts.geomgraph.Quadrant.isNorthern=function(t){return t===jsts.geomgraph.Quadrant.NE||t===jsts.geomgraph.Quadrant.NW},jsts.operation.valid.ConsistentAreaTester=function(t){this.geomGraph=t,this.li=new jsts.algorithm.RobustLineIntersector,this.nodeGraph=new jsts.operation.relate.RelateNodeGraph,this.invalidPoint=null},jsts.operation.valid.ConsistentAreaTester.prototype.getInvalidPoint=function(){return this.invalidPoint},jsts.operation.valid.ConsistentAreaTester.prototype.isNodeConsistentArea=function(){var t=this.geomGraph.computeSelfNodes(this.li,!0);return t.hasProperIntersection()?(this.invalidPoint=t.getProperIntersectionPoint(),!1):(this.nodeGraph.build(this.geomGraph),this.isNodeEdgeAreaLabelsConsistent())},jsts.operation.valid.ConsistentAreaTester.prototype.isNodeEdgeAreaLabelsConsistent=function(){for(var t=this.nodeGraph.getNodeIterator();t.hasNext();){var e=t.next();if(!e.getEdges().isAreaLabelsConsistent(this.geomGraph))return this.invalidPoint=e.getCoordinate().clone(),!1}return!0},jsts.operation.valid.ConsistentAreaTester.prototype.hasDuplicateRings=function(){for(var t=this.nodeGraph.getNodeIterator();t.hasNext();)for(var e=t.next(),n=e.getEdges().iterator();n.hasNext();){var o=n.next();if(o.getEdgeEnds().length>1)return invalidPoint=o.getEdge().getCoordinate(0),!0}return!1},jsts.operation.relate.RelateNode=function(){jsts.geomgraph.Node.apply(this,arguments)},jsts.operation.relate.RelateNode.prototype=new jsts.geomgraph.Node,jsts.operation.relate.RelateNode.prototype.computeIM=function(t){t.setAtLeastIfValid(this.label.getLocation(0),this.label.getLocation(1),0)},jsts.operation.relate.RelateNode.prototype.updateIMFromEdges=function(t){this.edges.updateIM(t)},function(){var t=jsts.geom.Location,e=jsts.geomgraph.Position,n=jsts.geomgraph.EdgeEnd;jsts.geomgraph.DirectedEdge=function(t,e){if(n.call(this,t),this.depth=[0,-999,-999],this._isForward=e,e)this.init(t.getCoordinate(0),t.getCoordinate(1));else{var o=t.getNumPoints()-1;this.init(t.getCoordinate(o),t.getCoordinate(o-1))}this.computeDirectedLabel()},jsts.geomgraph.DirectedEdge.prototype=new n,jsts.geomgraph.DirectedEdge.constructor=jsts.geomgraph.DirectedEdge,jsts.geomgraph.DirectedEdge.depthFactor=function(e,n){return e===t.EXTERIOR&&n===t.INTERIOR?1:e===t.INTERIOR&&n===t.EXTERIOR?-1:0},jsts.geomgraph.DirectedEdge.prototype._isForward=null,jsts.geomgraph.DirectedEdge.prototype._isInResult=!1,jsts.geomgraph.DirectedEdge.prototype._isVisited=!1,jsts.geomgraph.DirectedEdge.prototype.sym=null,jsts.geomgraph.DirectedEdge.prototype.next=null,jsts.geomgraph.DirectedEdge.prototype.nextMin=null,jsts.geomgraph.DirectedEdge.prototype.edgeRing=null,jsts.geomgraph.DirectedEdge.prototype.minEdgeRing=null,jsts.geomgraph.DirectedEdge.prototype.depth=null,jsts.geomgraph.DirectedEdge.prototype.getEdge=function(){return this.edge},jsts.geomgraph.DirectedEdge.prototype.setInResult=function(t){this._isInResult=t},jsts.geomgraph.DirectedEdge.prototype.isInResult=function(){return this._isInResult},jsts.geomgraph.DirectedEdge.prototype.isVisited=function(){return this._isVisited},jsts.geomgraph.DirectedEdge.prototype.setVisited=function(t){this._isVisited=t},jsts.geomgraph.DirectedEdge.prototype.setEdgeRing=function(t){this.edgeRing=t},jsts.geomgraph.DirectedEdge.prototype.getEdgeRing=function(){return this.edgeRing},jsts.geomgraph.DirectedEdge.prototype.setMinEdgeRing=function(t){this.minEdgeRing=t},jsts.geomgraph.DirectedEdge.prototype.getMinEdgeRing=function(){return this.minEdgeRing},jsts.geomgraph.DirectedEdge.prototype.getDepth=function(t){return this.depth[t]},jsts.geomgraph.DirectedEdge.prototype.setDepth=function(t,e){if(-999!==this.depth[t]&&this.depth[t]!==e)throw new jsts.error.TopologyError("assigned depths do not match",this.getCoordinate());this.depth[t]=e},jsts.geomgraph.DirectedEdge.prototype.getDepthDelta=function(){var t=this.edge.getDepthDelta();return this._isForward||(t=-t),t},jsts.geomgraph.DirectedEdge.prototype.setVisitedEdge=function(t){this.setVisited(t),this.sym.setVisited(t)},jsts.geomgraph.DirectedEdge.prototype.getSym=function(){return this.sym},jsts.geomgraph.DirectedEdge.prototype.isForward=function(){return this._isForward},jsts.geomgraph.DirectedEdge.prototype.setSym=function(t){this.sym=t},jsts.geomgraph.DirectedEdge.prototype.getNext=function(){return this.next},jsts.geomgraph.DirectedEdge.prototype.setNext=function(t){this.next=t},jsts.geomgraph.DirectedEdge.prototype.getNextMin=function(){return this.nextMin},jsts.geomgraph.DirectedEdge.prototype.setNextMin=function(t){this.nextMin=t},jsts.geomgraph.DirectedEdge.prototype.isLineEdge=function(){var e=this.label.isLine(0)||this.label.isLine(1),n=!this.label.isArea(0)||this.label.allPositionsEqual(0,t.EXTERIOR),o=!this.label.isArea(1)||this.label.allPositionsEqual(1,t.EXTERIOR);return e&&n&&o},jsts.geomgraph.DirectedEdge.prototype.isInteriorAreaEdge=function(){for(var n=!0,o=0;2>o;o++)this.label.isArea(o)&&this.label.getLocation(o,e.LEFT)===t.INTERIOR&&this.label.getLocation(o,e.RIGHT)===t.INTERIOR||(n=!1); -return n},jsts.geomgraph.DirectedEdge.prototype.computeDirectedLabel=function(){this.label=new jsts.geomgraph.Label(this.edge.getLabel()),this._isForward||this.label.flip()},jsts.geomgraph.DirectedEdge.prototype.setEdgeDepths=function(t,n){var o=this.getEdge().getDepthDelta();this._isForward||(o=-o);var r=1;t===e.LEFT&&(r=-1);var i=e.opposite(t),s=o*r,a=n+s;this.setDepth(t,n),this.setDepth(i,a)}}(),jsts.operation.distance.DistanceOp=function(t,e,n){this.ptLocator=new jsts.algorithm.PointLocator,this.geom=[],this.geom[0]=t,this.geom[1]=e,this.terminateDistance=n},jsts.operation.distance.DistanceOp.prototype.geom=null,jsts.operation.distance.DistanceOp.prototype.terminateDistance=0,jsts.operation.distance.DistanceOp.prototype.ptLocator=null,jsts.operation.distance.DistanceOp.prototype.minDistanceLocation=null,jsts.operation.distance.DistanceOp.prototype.minDistance=Number.MAX_VALUE,jsts.operation.distance.DistanceOp.distance=function(t,e){var n=new jsts.operation.distance.DistanceOp(t,e,0);return n.distance()},jsts.operation.distance.DistanceOp.isWithinDistance=function(t,e,n){var o=new jsts.operation.distance.DistanceOp(t,e,n);return o.distance()<=n},jsts.operation.distance.DistanceOp.nearestPoints=function(t,e){var n=new jsts.operation.distance.DistanceOp(t,e,0);return n.nearestPoints()},jsts.operation.distance.DistanceOp.prototype.distance=function(){if(null===this.geom[0]||null===this.geom[1])throw new jsts.error.IllegalArgumentError("null geometries are not supported");return this.geom[0].isEmpty()||this.geom[1].isEmpty()?0:(this.computeMinDistance(),this.minDistance)},jsts.operation.distance.DistanceOp.prototype.nearestPoints=function(){this.computeMinDistance();var t=[this.minDistanceLocation[0].getCoordinate(),this.minDistanceLocation[1].getCoordinate()];return t},jsts.operation.distance.DistanceOp.prototype.nearestLocations=function(){return this.computeMinDistance(),this.minDistanceLocation},jsts.operation.distance.DistanceOp.prototype.updateMinDistance=function(t,e){null!==t[0]&&(e?(this.minDistanceLocation[0]=t[1],this.minDistanceLocation[1]=t[0]):(this.minDistanceLocation[0]=t[0],this.minDistanceLocation[1]=t[1]))},jsts.operation.distance.DistanceOp.prototype.computeMinDistance=function(){return arguments.length>0?void this.computeMinDistance2.apply(this,arguments):void(null===this.minDistanceLocation&&(this.minDistanceLocation=[],this.computeContainmentDistance(),this.minDistance<=this.terminateDistance||this.computeFacetDistance()))},jsts.operation.distance.DistanceOp.prototype.computeContainmentDistance=function(){if(2===arguments.length)return void this.computeContainmentDistance2.apply(this,arguments);if(3===arguments.length&&!arguments[0]instanceof jsts.operation.distance.GeometryLocation)return void this.computeContainmentDistance3.apply(this,arguments);if(3===arguments.length)return void this.computeContainmentDistance4.apply(this,arguments);var t=[];this.computeContainmentDistance2(0,t),this.minDistance<=this.terminateDistance||this.computeContainmentDistance2(1,t)},jsts.operation.distance.DistanceOp.prototype.computeContainmentDistance2=function(t,e){var n=1-t,o=jsts.geom.util.PolygonExtracter.getPolygons(this.geom[t]);if(o.length>0){var r=jsts.operation.distance.ConnectedElementLocationFilter.getLocations(this.geom[n]);if(this.computeContainmentDistance3(r,o,e),this.minDistance<=this.terminateDistance)return this.minDistanceLocation[n]=e[0],void(this.minDistanceLocation[t]=e[1])}},jsts.operation.distance.DistanceOp.prototype.computeContainmentDistance3=function(t,e,n){for(var o=0;othis.minDistance))for(var o=t.getCoordinates(),r=e.getCoordinates(),i=0;ithis.minDistance))for(var o=t.getCoordinates(),r=e.getCoordinate(),i=0;io;o++)t=n[o],null===e?e=new jsts.index.strtree.Interval(t.getBounds()):e.expandToInclude(t.getBounds());return e},t},jsts.index.strtree.SIRtree.prototype.insert=function(t,e,n){jsts.index.strtree.AbstractSTRtree.prototype.insert(new jsts.index.strtree.Interval(Math.min(t,e),Math.max(t,e)),n)},jsts.index.strtree.SIRtree.prototype.query=function(t,e){e=e||t,jsts.index.strtree.AbstractSTRtree.prototype.query(new jsts.index.strtree.Interval(Math.min(t,e),Math.max(t,e)))},jsts.index.strtree.SIRtree.prototype.getIntersectsOp=function(){return this.intersectionOp},jsts.index.strtree.SIRtree.prototype.getComparator=function(){return this.comperator},jsts.simplify.DouglasPeuckerSimplifier=function(t){this.inputGeom=t,this.isEnsureValidTopology=!0},jsts.simplify.DouglasPeuckerSimplifier.prototype.inputGeom=null,jsts.simplify.DouglasPeuckerSimplifier.prototype.distanceTolerance=null,jsts.simplify.DouglasPeuckerSimplifier.prototype.isEnsureValidTopology=null,jsts.simplify.DouglasPeuckerSimplifier.simplify=function(t,e){var n=new jsts.simplify.DouglasPeuckerSimplifier(t);return n.setDistanceTolerance(e),n.getResultGeometry()},jsts.simplify.DouglasPeuckerSimplifier.prototype.setDistanceTolerance=function(t){if(0>t)throw"Tolerance must be non-negative";this.distanceTolerance=t},jsts.simplify.DouglasPeuckerSimplifier.prototype.setEnsureValid=function(t){this.isEnsureValidTopology=t},jsts.simplify.DouglasPeuckerSimplifier.prototype.getResultGeometry=function(){return this.inputGeom.isEmpty()?this.inputGeom.clone():new jsts.simplify.DPTransformer(this.distanceTolerance,this.isEnsureValidTopology).transform(this.inputGeom)},function(){jsts.operation.predicate.RectangleContains=function(t){this.rectEnv=t.getEnvelopeInternal()},jsts.operation.predicate.RectangleContains.contains=function(t,e){var n=new jsts.operation.predicate.RectangleContains(t);return n.contains(e)},jsts.operation.predicate.RectangleContains.prototype.rectEnv=null,jsts.operation.predicate.RectangleContains.prototype.contains=function(t){return this.rectEnv.contains(t.getEnvelopeInternal())?this.isContainedInBoundary(t)?!1:!0:!1},jsts.operation.predicate.RectangleContains.prototype.isContainedInBoundary=function(t){if(t instanceof jsts.geom.Polygon)return!1;if(t instanceof jsts.geom.Point)return this.isPointContainedInBoundary(t.getCoordinate());if(t instanceof jsts.geom.LineString)return this.isLineStringContainedInBoundary(t);for(var e=0;et;t++)for(var e=0;3>e;e++)this.depth[t][e]=jsts.geomgraph.Depth.NULL_VALUE},jsts.geomgraph.Depth.NULL_VALUE=-1,jsts.geomgraph.Depth.depthAtLocation=function(e){return e===t.EXTERIOR?0:e===t.INTERIOR?1:jsts.geomgraph.Depth.NULL_VALUE},jsts.geomgraph.Depth.prototype.depth=null,jsts.geomgraph.Depth.prototype.getDepth=function(t,e){return this.depth[t][e]},jsts.geomgraph.Depth.prototype.setDepth=function(t,e,n){this.depth[t][e]=n},jsts.geomgraph.Depth.prototype.getLocation=function(e,n){return this.depth[e][n]<=0?t.EXTERIOR:t.INTERIOR},jsts.geomgraph.Depth.prototype.add=function(e,n,o){o===t.INTERIOR&&this.depth[e][n]++},jsts.geomgraph.Depth.prototype.isNull=function(){if(arguments.length>0)return this.isNull2.apply(this,arguments);for(var t=0;2>t;t++)for(var e=0;3>e;e++)if(this.depth[t][e]!==jsts.geomgraph.Depth.NULL_VALUE)return!1;return!0},jsts.geomgraph.Depth.prototype.isNull2=function(t){return arguments.length>1?this.isNull3.apply(this,arguments):this.depth[t][1]==jsts.geomgraph.Depth.NULL_VALUE},jsts.geomgraph.Depth.prototype.isNull3=function(t,e){return this.depth[t][e]==jsts.geomgraph.Depth.NULL_VALUE},jsts.geomgraph.Depth.prototype.add=function(e){for(var n=0;2>n;n++)for(var o=1;3>o;o++){var r=e.getLocation(n,o);(r===t.EXTERIOR||r===t.INTERIOR)&&(this.isNull(n,o)?this.depth[n][o]=jsts.geomgraph.Depth.depthAtLocation(r):this.depth[n][o]+=jsts.geomgraph.Depth.depthAtLocation(r))}},jsts.geomgraph.Depth.prototype.getDelta=function(t){return this.depth[t][e.RIGHT]-this.depth[t][e.LEFT]},jsts.geomgraph.Depth.prototype.normalize=function(){for(var t=0;2>t;t++)if(!this.isNull(t)){var e=this.depth[t][1];this.depth[t][2]e&&(e=0);for(var n=1;3>n;n++){var o=0;this.depth[t][n]>e&&(o=1),this.depth[t][n]=o}}},jsts.geomgraph.Depth.prototype.toString=function(){return"A: "+this.depth[0][1]+","+this.depth[0][2]+" B: "+this.depth[1][1]+","+this.depth[1][2]}}(),jsts.algorithm.BoundaryNodeRule=function(){},jsts.algorithm.BoundaryNodeRule.prototype.isInBoundary=function(){throw new jsts.error.AbstractMethodInvocationError},jsts.algorithm.Mod2BoundaryNodeRule=function(){},jsts.algorithm.Mod2BoundaryNodeRule.prototype=new jsts.algorithm.BoundaryNodeRule,jsts.algorithm.Mod2BoundaryNodeRule.prototype.isInBoundary=function(t){return t%2===1},jsts.algorithm.BoundaryNodeRule.MOD2_BOUNDARY_RULE=new jsts.algorithm.Mod2BoundaryNodeRule,jsts.algorithm.BoundaryNodeRule.OGC_SFS_BOUNDARY_RULE=jsts.algorithm.BoundaryNodeRule.MOD2_BOUNDARY_RULE,jsts.operation.distance.GeometryLocation=function(t,e,n){this.component=t,this.segIndex=e,this.pt=n},jsts.operation.distance.GeometryLocation.INSIDE_AREA=-1,jsts.operation.distance.GeometryLocation.prototype.component=null,jsts.operation.distance.GeometryLocation.prototype.segIndex=null,jsts.operation.distance.GeometryLocation.prototype.pt=null,jsts.operation.distance.GeometryLocation.prototype.getGeometryComponent=function(){return this.component},jsts.operation.distance.GeometryLocation.prototype.getSegmentIndex=function(){return this.segIndex},jsts.operation.distance.GeometryLocation.prototype.getCoordinate=function(){return this.pt},jsts.operation.distance.GeometryLocation.prototype.isInsideArea=function(){return this.segIndex===jsts.operation.distance.GeometryLocation.INSIDE_AREA},jsts.geom.util.PointExtracter=function(t){this.pts=t},jsts.geom.util.PointExtracter.prototype=new jsts.geom.GeometryFilter,jsts.geom.util.PointExtracter.prototype.pts=null,jsts.geom.util.PointExtracter.getPoints=function(t,e){return void 0===e&&(e=[]),t instanceof jsts.geom.Point?e.push(t):(t instanceof jsts.geom.GeometryCollection||t instanceof jsts.geom.MultiPoint||t instanceof jsts.geom.MultiLineString||t instanceof jsts.geom.MultiPolygon)&&t.apply(new jsts.geom.util.PointExtracter(e)),e},jsts.geom.util.PointExtracter.prototype.filter=function(t){t instanceof jsts.geom.Point&&this.pts.push(t)},function(){var t=jsts.geom.Location;jsts.operation.relate.RelateNodeGraph=function(){this.nodes=new jsts.geomgraph.NodeMap(new jsts.operation.relate.RelateNodeFactory)},jsts.operation.relate.RelateNodeGraph.prototype.nodes=null,jsts.operation.relate.RelateNodeGraph.prototype.build=function(t){this.computeIntersectionNodes(t,0),this.copyNodesAndLabels(t,0);var e=new jsts.operation.relate.EdgeEndBuilder,n=e.computeEdgeEnds(t.getEdgeIterator());this.insertEdgeEnds(n)},jsts.operation.relate.RelateNodeGraph.prototype.computeIntersectionNodes=function(e,n){for(var o=e.getEdgeIterator();o.hasNext();)for(var r=o.next(),i=r.getLabel().getLocation(n),s=r.getEdgeIntersectionList().iterator();s.hasNext();){var a=s.next(),u=this.nodes.addNode(a.coord);i===t.BOUNDARY?u.setLabelBoundary(n):u.getLabel().isNull(n)&&u.setLabel(n,t.INTERIOR)}},jsts.operation.relate.RelateNodeGraph.prototype.copyNodesAndLabels=function(t,e){for(var n=t.getNodeIterator();n.hasNext();){var o=n.next(),r=this.nodes.addNode(o.getCoordinate());r.setLabel(e,o.getLabel().getLocation(e))}},jsts.operation.relate.RelateNodeGraph.prototype.insertEdgeEnds=function(t){for(var e=t.iterator();e.hasNext();){var n=e.next();this.nodes.add(n)}},jsts.operation.relate.RelateNodeGraph.prototype.getNodeIterator=function(){return this.nodes.iterator()}}(),jsts.geomgraph.index.SimpleSweepLineIntersector=function(){},jsts.geomgraph.index.SimpleSweepLineIntersector.prototype=new jsts.geomgraph.index.EdgeSetIntersector,jsts.geomgraph.index.SimpleSweepLineIntersector.prototype.events=[],jsts.geomgraph.index.SimpleSweepLineIntersector.prototype.nOverlaps=null,jsts.geomgraph.index.SimpleSweepLineIntersector.prototype.computeIntersections=function(t,e,n){return e instanceof javascript.util.List?void this.computeIntersections2.apply(this,arguments):(n?this.add(t,null):this.add(t),void this.computeIntersections3(e))},jsts.geomgraph.index.SimpleSweepLineIntersector.prototype.computeIntersections2=function(t,e,n){this.add(t,t),this.add(e,e),this.computeIntersections3(n)},jsts.geomgraph.index.SimpleSweepLineIntersector.prototype.add=function(t,e){if(t instanceof javascript.util.List)return void this.add2.apply(this,arguments);for(var n=t.getCoordinates(),o=0;oi;i++){var s=this.events[i];if(s.isInsert()){var a=s.getObject();n.isSameLabel(s)||(r.computeIntersections(a,o),this.nOverlaps++)}}},jsts.triangulate.VoronoiDiagramBuilder=function(){this.siteCoords=null,this.tolerance=0,this.subdiv=null,this.clipEnv=null,this.diagramEnv=null},jsts.triangulate.VoronoiDiagramBuilder.prototype.setSites=function(){var t=arguments[0];t instanceof jsts.geom.Geometry||t instanceof jsts.geom.Coordinate||t instanceof jsts.geom.Point||t instanceof jsts.geom.MultiPoint||t instanceof jsts.geom.LineString||t instanceof jsts.geom.MultiLineString||t instanceof jsts.geom.LinearRing||t instanceof jsts.geom.Polygon||t instanceof jsts.geom.MultiPolygon?this.setSitesByGeometry(t):this.setSitesByArray(t)},jsts.triangulate.VoronoiDiagramBuilder.prototype.setSitesByGeometry=function(t){this.siteCoords=jsts.triangulate.DelaunayTriangulationBuilder.extractUniqueCoordinates(t)},jsts.triangulate.VoronoiDiagramBuilder.prototype.setSitesByArray=function(t){this.siteCoords=jsts.triangulate.DelaunayTriangulationBuilder.unique(t)},jsts.triangulate.VoronoiDiagramBuilder.prototype.setClipEnvelope=function(t){this.clipEnv=t},jsts.triangulate.VoronoiDiagramBuilder.prototype.setTolerance=function(t){this.tolerance=t},jsts.triangulate.VoronoiDiagramBuilder.prototype.create=function(){if(null===this.subdiv){var t,e,n,o;t=jsts.triangulate.DelaunayTriangulationBuilder.envelope(this.siteCoords),this.diagramEnv=t,e=Math.max(this.diagramEnv.getWidth(),this.diagramEnv.getHeight()),this.diagramEnv.expandBy(e),null!==this.clipEnv&&this.diagramEnv.expandToInclude(this.clipEnv),n=jsts.triangulate.DelaunayTriangulationBuilder.toVertices(this.siteCoords),this.subdiv=new jsts.triangulate.quadedge.QuadEdgeSubdivision(t,this.tolerance),o=new jsts.triangulate.IncrementalDelaunayTriangulator(this.subdiv),o.insertSites(n)}},jsts.triangulate.VoronoiDiagramBuilder.prototype.getSubdivision=function(){return this.create(),this.subdiv},jsts.triangulate.VoronoiDiagramBuilder.prototype.getDiagram=function(t){this.create();var e=this.subdiv.getVoronoiDiagram(t);return this.clipGeometryCollection(e,this.diagramEnv)},jsts.triangulate.VoronoiDiagramBuilder.prototype.clipGeometryCollection=function(t,e){var n,o,r,i,s,a;for(n=t.getFactory().toGeometry(e),o=[],r=0,i=t.getNumGeometries(),r;i>r;r++)s=t.getGeometryN(r),a=null,e.contains(s.getEnvelopeInternal())?a=s:e.intersects(s.getEnvelopeInternal())&&(a=n.intersection(s)),null===a||a.isEmpty()||o.push(a);return t.getFactory().createGeometryCollection(o)},jsts.operation.valid.IndexedNestedRingTester=function(t){this.graph=t,this.rings=new javascript.util.ArrayList,this.totalEnv=new jsts.geom.Envelope,this.index=null,this.nestedPt=null},jsts.operation.valid.IndexedNestedRingTester.prototype.getNestedPoint=function(){return this.nestedPt},jsts.operation.valid.IndexedNestedRingTester.prototype.add=function(t){this.rings.add(t),this.totalEnv.expandToInclude(t.getEnvelopeInternal())},jsts.operation.valid.IndexedNestedRingTester.prototype.isNonNested=function(){this.buildIndex();for(var t=0;te.segmentIndex?1:this.coord.equals2D(e.coord)?0:jsts.noding.SegmentPointComparator.compare(this.segmentOctant,this.coord,e.coord)},function(){jsts.io.GeoJSONWriter=function(){this.parser=new jsts.io.GeoJSONParser(this.geometryFactory)},jsts.io.GeoJSONWriter.prototype.write=function(t){var e=this.parser.write(t);return e}}(),jsts.io.OpenLayersParser=function(t){this.geometryFactory=t||new jsts.geom.GeometryFactory},jsts.io.OpenLayersParser.prototype.read=function(t){return"OpenLayers.Geometry.Point"===t.CLASS_NAME?this.convertFromPoint(t):"OpenLayers.Geometry.LineString"===t.CLASS_NAME?this.convertFromLineString(t):"OpenLayers.Geometry.LinearRing"===t.CLASS_NAME?this.convertFromLinearRing(t):"OpenLayers.Geometry.Polygon"===t.CLASS_NAME?this.convertFromPolygon(t):"OpenLayers.Geometry.MultiPoint"===t.CLASS_NAME?this.convertFromMultiPoint(t):"OpenLayers.Geometry.MultiLineString"===t.CLASS_NAME?this.convertFromMultiLineString(t):"OpenLayers.Geometry.MultiPolygon"===t.CLASS_NAME?this.convertFromMultiPolygon(t):"OpenLayers.Geometry.Collection"===t.CLASS_NAME?this.convertFromCollection(t):void 0},jsts.io.OpenLayersParser.prototype.convertFromPoint=function(t){return this.geometryFactory.createPoint(new jsts.geom.Coordinate(t.x,t.y))},jsts.io.OpenLayersParser.prototype.convertFromLineString=function(t){var e,n=[];for(e=0;e0&&(this.minExtent=e);var n=t.getHeight();n0&&(this.minExtent=n)},jsts.operation.relate.RelateNodeFactory=function(){},jsts.operation.relate.RelateNodeFactory.prototype=new jsts.geomgraph.NodeFactory,jsts.operation.relate.RelateNodeFactory.prototype.createNode=function(t){return new jsts.operation.relate.RelateNode(t,new jsts.operation.relate.EdgeEndBundleStar)},jsts.index.quadtree.Key=function(t){this.pt=new jsts.geom.Coordinate,this.level=0,this.env=null,this.computeKey(t)},jsts.index.quadtree.Key.computeQuadLevel=function(t){var e,n,o,r;return e=t.getWidth(),n=t.getHeight(),o=e>n?e:n,r=jsts.index.DoubleBits.exponent(o)+1},jsts.index.quadtree.Key.prototype.getPoint=function(){return this.pt},jsts.index.quadtree.Key.prototype.getLevel=function(){return this.level},jsts.index.quadtree.Key.prototype.getEnvelope=function(){return this.env},jsts.index.quadtree.Key.prototype.getCentre=function(){var t,e;return t=(this.env.getMinX()+this.env.getMaxX())/2,e=(this.env.getMinY()+this.env.getMaxY())/2,new jsts.geom.Coordinate(t,e)},jsts.index.quadtree.Key.prototype.computeKey=function(){arguments[0]instanceof jsts.geom.Envelope?this.computeKeyFromEnvelope(arguments[0]):this.computeKeyFromLevel(arguments[0],arguments[1])},jsts.index.quadtree.Key.prototype.computeKeyFromEnvelope=function(t){for(this.level=jsts.index.quadtree.Key.computeQuadLevel(t),this.env=new jsts.geom.Envelope,this.computeKey(this.level,t);!this.env.contains(t);)this.level+=1,this.computeKey(this.level,t)},jsts.index.quadtree.Key.prototype.computeKeyFromLevel=function(t,e){var n=jsts.index.DoubleBits.powerOf2(t);this.pt.x=Math.floor(e.getMinX()/n)*n,this.pt.y=Math.floor(e.getMinY()/n)*n,this.env.init(this.pt.x,this.pt.x+n,this.pt.y,this.pt.y+n)},jsts.geom.CoordinateArrays=function(){throw new jsts.error.AbstractMethodInvocationError},jsts.geom.CoordinateArrays.copyDeep=function(){return 1===arguments.length?jsts.geom.CoordinateArrays.copyDeep1(arguments[0]):void(5===arguments.length&&jsts.geom.CoordinateArrays.copyDeep2(arguments[0],arguments[1],arguments[2],arguments[3],arguments[4]))},jsts.geom.CoordinateArrays.copyDeep1=function(t){for(var e=[],n=0;ni;i++)n[o+i]=new jsts.geom.Coordinate(t[e+i])},jsts.geom.CoordinateArrays.removeRepeatedPoints=function(t){var e;return this.hasRepeatedPoints(t)?(e=new jsts.geom.CoordinateList(t,!1),e.toCoordinateArray()):t},jsts.geom.CoordinateArrays.hasRepeatedPoints=function(t){var e;for(e=1;e0)&&(e=t[n]);return e},jsts.geom.CoordinateArrays.scroll=function(t,e){var n=jsts.geom.CoordinateArrays.indexOf(e,t);if(!(0>n)){var o=t.slice(n).concat(t.slice(0,n));for(n=0;no;o++)e=t[o],n[o]=new jsts.triangulate.quadedge.Vertex(e);return n},jsts.triangulate.DelaunayTriangulationBuilder.envelope=function(t){var e=new jsts.geom.Envelope,n=0,o=t.length;for(n;o>n;n++)e.expandToInclude(t[n]);return e},jsts.triangulate.DelaunayTriangulationBuilder.prototype.setSites=function(){var t=arguments[0];t instanceof jsts.geom.Geometry||t instanceof jsts.geom.Coordinate||t instanceof jsts.geom.Point||t instanceof jsts.geom.MultiPoint||t instanceof jsts.geom.LineString||t instanceof jsts.geom.MultiLineString||t instanceof jsts.geom.LinearRing||t instanceof jsts.geom.Polygon||t instanceof jsts.geom.MultiPolygon?this.setSitesFromGeometry(t):this.setSitesFromCollection(t)},jsts.triangulate.DelaunayTriangulationBuilder.prototype.setSitesFromGeometry=function(t){this.siteCoords=jsts.triangulate.DelaunayTriangulationBuilder.extractUniqueCoordinates(t)},jsts.triangulate.DelaunayTriangulationBuilder.prototype.setSitesFromCollection=function(t){this.siteCoords=jsts.triangulate.DelaunayTriangulationBuilder.unique(t)},jsts.triangulate.DelaunayTriangulationBuilder.prototype.setTolerance=function(t){this.tolerance=t},jsts.triangulate.DelaunayTriangulationBuilder.prototype.create=function(){if(null===this.subdiv){var t,e,n;t=jsts.triangulate.DelaunayTriangulationBuilder.envelope(this.siteCoords),e=jsts.triangulate.DelaunayTriangulationBuilder.toVertices(this.siteCoords),this.subdiv=new jsts.triangulate.quadedge.QuadEdgeSubdivision(t,this.tolerance),n=new jsts.triangulate.IncrementalDelaunayTriangulator(this.subdiv),n.insertSites(e)}},jsts.triangulate.DelaunayTriangulationBuilder.prototype.getSubdivision=function(){return this.create(),this.subdiv},jsts.triangulate.DelaunayTriangulationBuilder.prototype.getEdges=function(t){return this.create(),this.subdiv.getEdges(t)},jsts.triangulate.DelaunayTriangulationBuilder.prototype.getTriangles=function(t){return this.create(),this.subdiv.getTriangles(t)},jsts.algorithm.RayCrossingCounter=function(t){this.p=t},jsts.algorithm.RayCrossingCounter.locatePointInRing=function(t,e){for(var n=new jsts.algorithm.RayCrossingCounter(t),o=1;oo&&(n=e.x,o=t.x),void(this.p.x>=n&&this.p.x<=o&&(this.isPointOnSegment=!0))}if(t.y>this.p.y&&e.y<=this.p.y||e.y>this.p.y&&t.y<=this.p.y){var r=t.x-this.p.x,i=t.y-this.p.y,s=e.x-this.p.x,a=e.y-this.p.y,u=jsts.algorithm.RobustDeterminant.signOfDet2x2(r,i,s,a);if(0===u)return void(this.isPointOnSegment=!0);i>a&&(u=-u),u>0&&this.crossingCount++}}},jsts.algorithm.RayCrossingCounter.prototype.isOnSegment=function(){return jsts.geom.isPointOnSegment},jsts.algorithm.RayCrossingCounter.prototype.getLocation=function(){return this.isPointOnSegment?jsts.geom.Location.BOUNDARY:this.crossingCount%2===1?jsts.geom.Location.INTERIOR:jsts.geom.Location.EXTERIOR},jsts.algorithm.RayCrossingCounter.prototype.isPointInPolygon=function(){return this.getLocation()!==jsts.geom.Location.EXTERIOR},jsts.operation.BoundaryOp=function(t,e){this.geom=t,this.geomFact=t.getFactory(),this.bnRule=e||jsts.algorithm.BoundaryNodeRule.MOD2_BOUNDARY_RULE},jsts.operation.BoundaryOp.prototype.geom=null,jsts.operation.BoundaryOp.prototype.geomFact=null,jsts.operation.BoundaryOp.prototype.bnRule=null,jsts.operation.BoundaryOp.prototype.getBoundary=function(){return this.geom instanceof jsts.geom.LineString?this.boundaryLineString(this.geom):this.geom instanceof jsts.geom.MultiLineString?this.boundaryMultiLineString(this.geom):this.geom.getBoundary()},jsts.operation.BoundaryOp.prototype.getEmptyMultiPoint=function(){return this.geomFact.createMultiPoint(null)},jsts.operation.BoundaryOp.prototype.boundaryMultiLineString=function(t){if(this.geom.isEmpty())return this.getEmptyMultiPoint();var e=this.computeBoundaryCoordinates(t);return 1==e.length?this.geomFact.createPoint(e[0]):this.geomFact.createMultiPoint(e)},jsts.operation.BoundaryOp.prototype.endpoints=null,jsts.operation.BoundaryOp.prototype.computeBoundaryCoordinates=function(t){var e,n,o,r=[];for(this.endpoints=[],e=0;e0&&this.isErodedCompletely(s,-this.distance)||this.addPolygonRing(a,e,jsts.geomgraph.Position.opposite(n),jsts.geom.Location.INTERIOR,jsts.geom.Location.EXTERIOR)}}},jsts.operation.buffer.OffsetCurveSetBuilder.prototype.addPolygonRing=function(t,e,n,o,r){if(!(0==e&&t.length=jsts.geom.LinearRing.MINIMUM_VALID_SIZE&&jsts.algorithm.CGAlgorithms.isCCW(t)&&(i=r,s=o,n=jsts.geomgraph.Position.opposite(n));var a=this.curveBuilder.getRingCurve(t,n,e);this.addCurve(a,i,s)}},jsts.operation.buffer.OffsetCurveSetBuilder.prototype.isErodedCompletely=function(t,e){var n=t.getCoordinates();if(n.length<4)return 0>e;if(4==n.length)return this.isTriangleErodedCompletely(n,e);var o=t.getEnvelopeInternal(),r=Math.min(o.getHeight(),o.getWidth());return 0>e&&2*Math.abs(e)>r?!0:!1},jsts.operation.buffer.OffsetCurveSetBuilder.prototype.isTriangleErodedCompletely=function(t,e){var n=new jsts.geom.Triangle(t[0],t[1],t[2]),o=n.inCentre(),r=jsts.algorithm.CGAlgorithms.distancePointLine(o,n.p0,n.p1);return r=1&&e.getDepth(jsts.geomgraph.Position.LEFT)<=0&&!e.isInteriorAreaEdge()&&e.setInResult(!0)}},jsts.operation.buffer.BufferSubgraph.prototype.compareTo=function(t){var e=t;return this.rightMostCoord.xe.rightMostCoord.x?1:0},jsts.simplify.DPTransformer=function(t,e){this.distanceTolerance=t,this.isEnsureValidTopology=e},jsts.simplify.DPTransformer.prototype=new jsts.geom.util.GeometryTransformer,jsts.simplify.DPTransformer.prototype.distanceTolerance=null,jsts.simplify.DPTransformer.prototype.isEnsureValidTopology=null,jsts.simplify.DPTransformer.prototype.transformCoordinates=function(t){var e=t,n=null;return n=0==e.length?[]:jsts.simplify.DouglasPeuckerLineSimplifier.simplify(e,this.distanceTolerance)},jsts.simplify.DPTransformer.prototype.transformPolygon=function(t,e){if(t.isEmpty())return null;var n=jsts.geom.util.GeometryTransformer.prototype.transformPolygon.apply(this,arguments);return e instanceof jsts.geom.MultiPolygon?n:this.createValidArea(n)},jsts.simplify.DPTransformer.prototype.transformLinearRing=function(t,e){var n=e instanceof jsts.geom.Polygon,o=jsts.geom.util.GeometryTransformer.prototype.transformLinearRing.apply(this,arguments);return!n||o instanceof jsts.geom.LinearRing?o:null},jsts.simplify.DPTransformer.prototype.transformMultiPolygon=function(){var t=jsts.geom.util.GeometryTransformer.prototype.transformMultiPolygon.apply(this,arguments);return this.createValidArea(t)},jsts.simplify.DPTransformer.prototype.createValidArea=function(t){return this.isEnsureValidTopology?t.buffer(0):t},jsts.geom.util.GeometryExtracter=function(t,e){this.clz=t,this.comps=e},jsts.geom.util.GeometryExtracter.prototype=new jsts.geom.GeometryFilter,jsts.geom.util.GeometryExtracter.prototype.clz=null,jsts.geom.util.GeometryExtracter.prototype.comps=null,jsts.geom.util.GeometryExtracter.extract=function(t,e,n){return n=n||new javascript.util.ArrayList,t instanceof e?n.add(t):(t instanceof jsts.geom.GeometryCollection||t instanceof jsts.geom.MultiPoint||t instanceof jsts.geom.MultiLineString||t instanceof jsts.geom.MultiPolygon)&&t.apply(new jsts.geom.util.GeometryExtracter(e,n)),n},jsts.geom.util.GeometryExtracter.prototype.filter=function(t){(null===this.clz||t instanceof this.clz)&&this.comps.add(t)},function(){var t=jsts.operation.overlay.OverlayOp,e=jsts.operation.overlay.snap.SnapOverlayOp,n=function(t,e){this.geom=[],this.geom[0]=t,this.geom[1]=e};n.overlayOp=function(t,e,o){var r=new n(t,e);return r.getResultGeometry(o)},n.intersection=function(e,n){return overlayOp(e,n,t.INTERSECTION)},n.union=function(e,n){return overlayOp(e,n,t.UNION)},n.difference=function(e,n){return overlayOp(e,n,t.DIFFERENCE)},n.symDifference=function(e,n){return overlayOp(e,n,t.SYMDIFFERENCE)},n.prototype.geom=null,n.prototype.getResultGeometry=function(n){var o=null,r=!1,i=null;try{o=t.overlayOp(this.geom[0],this.geom[1],n);var s=!0;s&&(r=!0)}catch(a){i=a}if(!r)try{o=e.overlayOp(this.geom[0],this.geom[1],n)}catch(a){throw i}return o},jsts.operation.overlay.snap.SnapIfNeededOverlayOp=n}(),function(){var t=jsts.geom.util.GeometryExtracter,e=jsts.operation.union.CascadedPolygonUnion,n=jsts.operation.union.PointGeometryUnion,o=jsts.operation.overlay.OverlayOp,r=jsts.operation.overlay.snap.SnapIfNeededOverlayOp,i=javascript.util.ArrayList;jsts.operation.union.UnaryUnionOp=function(t,e){this.polygons=new i,this.lines=new i,this.points=new i,e&&(this.geomFact=e),this.extract(t)},jsts.operation.union.UnaryUnionOp.union=function(t,e){var n=new jsts.operation.union.UnaryUnionOp(t,e);return n.union()},jsts.operation.union.UnaryUnionOp.prototype.polygons=null,jsts.operation.union.UnaryUnionOp.prototype.lines=null,jsts.operation.union.UnaryUnionOp.prototype.points=null,jsts.operation.union.UnaryUnionOp.prototype.geomFact=null,jsts.operation.union.UnaryUnionOp.prototype.extract=function(e){if(e instanceof i)for(var n=e.iterator();n.hasNext();){var o=n.next();this.extract(o)}else null===this.geomFact&&(this.geomFact=e.getFactory()),t.extract(e,jsts.geom.Polygon,this.polygons),t.extract(e,jsts.geom.LineString,this.lines),t.extract(e,jsts.geom.Point,this.points)},jsts.operation.union.UnaryUnionOp.prototype.union=function(){if(null===this.geomFact)return null;var t=null;if(this.points.size()>0){var o=this.geomFact.buildGeometry(this.points);t=this.unionNoOpt(o)}var r=null;if(this.lines.size()>0){var i=this.geomFact.buildGeometry(this.lines);r=this.unionNoOpt(i)}var s=null;this.polygons.size()>0&&(s=e.union(this.polygons));var a=this.unionWithNull(r,s),u=null;return u=null===t?a:null===a?t:n(t,a),null===u?this.geomFact.createGeometryCollection(null):u},jsts.operation.union.UnaryUnionOp.prototype.unionWithNull=function(t,e){return null===t&&null===e?null:null===e?t:null===t?e:t.union(e)},jsts.operation.union.UnaryUnionOp.prototype.unionNoOpt=function(t){var e=this.geomFact.createPoint(null);return r.overlayOp(t,e,o.UNION)}}(),jsts.index.kdtree.KdNode=function(){this.left=null,this.right=null,this.count=1,2===arguments.length?this.initializeFromCoordinate.apply(this,arguments[0],arguments[1]):3===arguments.length&&this.initializeFromXY.apply(this,arguments[0],arguments[1],arguments[2])},jsts.index.kdtree.KdNode.prototype.initializeFromXY=function(t,e,n){this.p=new jsts.geom.Coordinate(t,e),this.data=n},jsts.index.kdtree.KdNode.prototype.initializeFromCoordinate=function(t,e){this.p=t,this.data=e},jsts.index.kdtree.KdNode.prototype.getX=function(){return this.p.x},jsts.index.kdtree.KdNode.prototype.getY=function(){return this.p.y},jsts.index.kdtree.KdNode.prototype.getCoordinate=function(){return this.p},jsts.index.kdtree.KdNode.prototype.getData=function(){return this.data},jsts.index.kdtree.KdNode.prototype.getLeft=function(){return this.left},jsts.index.kdtree.KdNode.prototype.getRight=function(){return this.right},jsts.index.kdtree.KdNode.prototype.increment=function(){this.count+=1},jsts.index.kdtree.KdNode.prototype.getCount=function(){return this.count},jsts.index.kdtree.KdNode.prototype.isRepeated=function(){return count>1},jsts.index.kdtree.KdNode.prototype.setLeft=function(t){this.left=t},jsts.index.kdtree.KdNode.prototype.setRight=function(t){this.right=t},jsts.algorithm.InteriorPointPoint=function(t){this.minDistance=Number.MAX_VALUE,this.interiorPoint=null,this.centroid=t.getCentroid().getCoordinate(),this.add(t)},jsts.algorithm.InteriorPointPoint.prototype.add=function(t){if(t instanceof jsts.geom.Point)this.addPoint(t.getCoordinate());else if(t instanceof jsts.geom.GeometryCollection)for(var e=0;e0&&(this.minExtent=e)},jsts.index.bintree.Bintree=n}(),jsts.algorithm.InteriorPointArea=function(t){this.factory,this.interiorPoint=null,this.maxWidth=0,this.factory=t.getFactory(),this.add(t)},jsts.algorithm.InteriorPointArea.avg=function(t,e){return(t+e)/2},jsts.algorithm.InteriorPointArea.prototype.getInteriorPoint=function(){return this.interiorPoint},jsts.algorithm.InteriorPointArea.prototype.add=function(t){if(t instanceof jsts.geom.Polygon)this.addPolygon(t);else if(t instanceof jsts.geom.GeometryCollection)for(var e=0;ethis.maxWidth)&&(this.interiorPoint=e,this.maxWidth=n)}},jsts.algorithm.InteriorPointArea.prototype.widestGeometry=function(t){if(t instanceof jsts.geom.GeometryCollection){var e=t;if(e.isEmpty())return e;for(var n=e.getGeometryN(0),o=1;on.getEnvelopeInternal().getWidth()&&(n=e.getGeometryN(o));return n}return t instanceof jsts.geom.Geometry?t:void 0},jsts.algorithm.InteriorPointArea.prototype.horizontalBisector=function(t){var e=t.getEnvelopeInternal(),n=jsts.algorithm.SafeBisectorFinder.getBisectorY(t);return this.factory.createLineString([new jsts.geom.Coordinate(e.getMinX(),n),new jsts.geom.Coordinate(e.getMaxX(),n)])},jsts.algorithm.InteriorPointArea.prototype.centre=function(t){return new jsts.geom.Coordinate(jsts.algorithm.InteriorPointArea.avg(t.getMinX(),t.getMaxX()),jsts.algorithm.InteriorPointArea.avg(t.getMinY(),t.getMaxY()))},jsts.algorithm.SafeBisectorFinder=function(t){this.poly,this.centreY,this.hiY=Number.MAX_VALUE,this.loY=-Number.MAX_VALUE,this.poly=t,this.hiY=t.getEnvelopeInternal().getMaxY(),this.loY=t.getEnvelopeInternal().getMinY(),this.centreY=jsts.algorithm.InteriorPointArea.avg(this.loY,this.hiY)},jsts.algorithm.SafeBisectorFinder.getBisectorY=function(t){var e=new jsts.algorithm.SafeBisectorFinder(t);return e.getBisectorY()},jsts.algorithm.SafeBisectorFinder.prototype.getBisectorY=function(){this.process(this.poly.getExteriorRing());for(var t=0;tthis.loY&&(this.loY=t):t>this.centreY&&t=t&&(this.quadrantSegments=1),this.joinStyle!==jsts.operation.buffer.BufferParameters.JOIN_ROUND&&(this.quadrantSegments=jsts.operation.buffer.BufferParameters.DEFAULT_QUADRANT_SEGMENTS)},jsts.operation.buffer.BufferParameters.bufferDistanceError=function(t){var e=Math.PI/2/t;return 1-Math.cos(e/2)},jsts.operation.buffer.BufferParameters.prototype.getEndCapStyle=function(){return this.endCapStyle},jsts.operation.buffer.BufferParameters.prototype.setEndCapStyle=function(t){this.endCapStyle=t},jsts.operation.buffer.BufferParameters.prototype.getJoinStyle=function(){return this.joinStyle},jsts.operation.buffer.BufferParameters.prototype.setJoinStyle=function(t){this.joinStyle=t},jsts.operation.buffer.BufferParameters.prototype.getMitreLimit=function(){return this.mitreLimit},jsts.operation.buffer.BufferParameters.prototype.setMitreLimit=function(t){this.mitreLimit=t},jsts.operation.buffer.BufferParameters.prototype.setSingleSided=function(t){this._isSingleSided=t},jsts.operation.buffer.BufferParameters.prototype.isSingleSided=function(){return this._isSingleSided},function(){jsts.geom.util.ShortCircuitedGeometryVisitor=function(){},jsts.geom.util.ShortCircuitedGeometryVisitor.prototype.isDone=!1,jsts.geom.util.ShortCircuitedGeometryVisitor.prototype.applyTo=function(t){for(var e=0;e=rectEnv.getMinX()&&e.getMaxX()<=rectEnv.getMaxX()?void(this.intersects=!0):e.getMinY()>=rectEnv.getMinY()&&e.getMaxY()<=rectEnv.getMaxY()?void(this.intersects=!0):void 0},t.prototype.isDone=function(){return 1==this.intersects};var e=function(t){this.rectSeq=t.getExteriorRing().getCoordinateSequence(),this.rectEnv=t.getEnvelopeInternal()};e.prototype=new jsts.geom.util.ShortCircuitedGeometryVisitor,e.constructor=e,e.prototype.rectSeq=null,e.prototype.rectEnv=null,e.prototype.containsPoint=!1,e.prototype.containsPoint=function(){return this.containsPoint},e.prototype.visit=function(t){if(t instanceof jsts.geom.Polygon){var e=t.getEnvelopeInternal();if(this.rectEnv.intersects(e))for(var n=new jsts.geom.Coordinate,o=0;4>o;o++)if(this.rectSeq.getCoordinate(o,n),e.contains(n)&&SimplePointInAreaLocator.containsPointInPolygon(n,t))return void(this.containsPoint=!0)}},e.prototype.isDone=function(){return 1==this.containsPoint};var n=function(t){this.rectEnv=t.getEnvelopeInternal(),this.rectIntersector=new RectangleLineIntersector(rectEnv)};n.prototype=new jsts.geom.util.ShortCircuitedGeometryVisitor,n.constructor=n,n.prototype.rectEnv=null,n.prototype.rectIntersector=null,n.prototype.hasIntersection=!1,n.prototype.p0=null,n.prototype.p1=null,n.prototype.intersects=function(){return this.hasIntersection},n.prototype.visit=function(t){var e=t.getEnvelopeInternal();if(this.rectEnv.intersects(e)){var n=LinearComponentExtracter.getLines(t);this.checkIntersectionWithLineStrings(n)}},n.prototype.checkIntersectionWithLineStrings=function(t){for(var e=t.iterator();e.hasNext();){var n=e.next();if(this.checkIntersectionWithSegments(n),this.hasIntersection)return}},n.prototype.checkIntersectionWithSegments=function(t){for(var e=t.getCoordinateSequence(),n=1;nt?-1:t>e?1:0},jsts.noding.SegmentPointComparator.compareValue=function(t,e){return 0>t?-1:t>0?1:0>e?-1:e>0?1:0},jsts.operation.relate.RelateOp=function(){jsts.operation.GeometryGraphOperation.apply(this,arguments),this._relate=new jsts.operation.relate.RelateComputer(this.arg)},jsts.operation.relate.RelateOp.prototype=new jsts.operation.GeometryGraphOperation,jsts.operation.relate.RelateOp.relate=function(t,e,n){var o=new jsts.operation.relate.RelateOp(t,e,n),r=o.getIntersectionMatrix();return r},jsts.operation.relate.RelateOp.prototype._relate=null,jsts.operation.relate.RelateOp.prototype.getIntersectionMatrix=function(){return this._relate.computeIM()},jsts.index.chain.MonotoneChain=function(t,e,n,o){this.pts=t,this.start=e,this.end=n,this.context=o},jsts.index.chain.MonotoneChain.prototype.pts=null,jsts.index.chain.MonotoneChain.prototype.start=null,jsts.index.chain.MonotoneChain.prototype.end=null,jsts.index.chain.MonotoneChain.prototype.env=null,jsts.index.chain.MonotoneChain.prototype.context=null,jsts.index.chain.MonotoneChain.prototype.id=null,jsts.index.chain.MonotoneChain.prototype.setId=function(t){this.id=t},jsts.index.chain.MonotoneChain.prototype.getId=function(){return this.id},jsts.index.chain.MonotoneChain.prototype.getContext=function(){return this.context},jsts.index.chain.MonotoneChain.prototype.getEnvelope=function(){if(null==this.env){var t=this.pts[this.start],e=this.pts[this.end];this.env=new jsts.geom.Envelope(t,e)}return this.env},jsts.index.chain.MonotoneChain.prototype.getStartIndex=function(){return this.start},jsts.index.chain.MonotoneChain.prototype.getEndIndex=function(){return this.end},jsts.index.chain.MonotoneChain.prototype.getLineSegment=function(t,e){e.p0=this.pts[t],e.p1=this.pts[t+1]},jsts.index.chain.MonotoneChain.prototype.getCoordinates=function(){for(var t=[],e=0,n=this.start;n<=this.end;n++)t[e++]=this.pts[n];return t},jsts.index.chain.MonotoneChain.prototype.select=function(t,e){this.computeSelect2(t,this.start,this.end,e)},jsts.index.chain.MonotoneChain.prototype.computeSelect2=function(t,e,n,o){var r=this.pts[e],i=this.pts[n];if(o.tempEnv1.init(r,i),n-e===1)return void o.select(this,e);if(t.intersects(o.tempEnv1)){var s=parseInt((e+n)/2);s>e&&this.computeSelect2(t,e,s,o),n>s&&this.computeSelect2(t,s,n,o)}},jsts.index.chain.MonotoneChain.prototype.computeOverlaps=function(t,e){return 6===arguments.length?this.computeOverlaps2.apply(this,arguments):void this.computeOverlaps2(this.start,this.end,t,t.start,t.end,e)},jsts.index.chain.MonotoneChain.prototype.computeOverlaps2=function(t,e,n,o,r,i){var s=this.pts[t],a=this.pts[e],u=n.pts[o],p=n.pts[r];if(e-t===1&&r-o===1)return void i.overlap(this,t,n,o);if(i.tempEnv1.init(s,a),i.tempEnv2.init(u,p),i.tempEnv1.intersects(i.tempEnv2)){var g=parseInt((t+e)/2),l=parseInt((o+r)/2);g>t&&(l>o&&this.computeOverlaps2(t,g,n,o,l,i),r>l&&this.computeOverlaps2(t,g,n,l,r,i)),e>g&&(l>o&&this.computeOverlaps2(g,e,n,o,l,i),r>l&&this.computeOverlaps2(g,e,n,l,r,i))}},function(){var t=jsts.geom.Location,e=jsts.geom.Dimension;jsts.geom.IntersectionMatrix=function(n){var o=n;void 0===n||null===n?(this.matrix=[[],[],[]],this.setAll(e.FALSE)):"string"==typeof n?this.set(n):o instanceof jsts.geom.IntersectionMatrix&&(this.matrix[t.INTERIOR][t.INTERIOR]=o.matrix[t.INTERIOR][t.INTERIOR],this.matrix[t.INTERIOR][t.BOUNDARY]=o.matrix[t.INTERIOR][t.BOUNDARY],this.matrix[t.INTERIOR][t.EXTERIOR]=o.matrix[t.INTERIOR][t.EXTERIOR],this.matrix[t.BOUNDARY][t.INTERIOR]=o.matrix[t.BOUNDARY][t.INTERIOR],this.matrix[t.BOUNDARY][t.BOUNDARY]=o.matrix[t.BOUNDARY][t.BOUNDARY],this.matrix[t.BOUNDARY][t.EXTERIOR]=o.matrix[t.BOUNDARY][t.EXTERIOR],this.matrix[t.EXTERIOR][t.INTERIOR]=o.matrix[t.EXTERIOR][t.INTERIOR],this.matrix[t.EXTERIOR][t.BOUNDARY]=o.matrix[t.EXTERIOR][t.BOUNDARY],this.matrix[t.EXTERIOR][t.EXTERIOR]=o.matrix[t.EXTERIOR][t.EXTERIOR])},jsts.geom.IntersectionMatrix.prototype.matrix=null,jsts.geom.IntersectionMatrix.prototype.add=function(t){var e,n;for(e=0;3>e;e++)for(n=0;3>n;n++)this.setAtLeast(e,n,t.get(e,n))},jsts.geom.IntersectionMatrix.matches=function(t,n){return"string"==typeof t?jsts.geom.IntersectionMatrix.matches2.call(this,arguments):"*"===n?!0:"T"===n&&(t>=0||t===e.TRUE)?!0:"F"===n&&t===e.FALSE?!0:"0"===n&&t===e.P?!0:"1"===n&&t===e.L?!0:"2"===n&&t===e.A?!0:!1},jsts.geom.IntersectionMatrix.matches2=function(t,e){var n=new jsts.geom.IntersectionMatrix(t);return n.matches(e)},jsts.geom.IntersectionMatrix.prototype.set=function(t,e,n){return"string"==typeof t?void this.set2(t):void(this.matrix[t][e]=n)},jsts.geom.IntersectionMatrix.prototype.set2=function(t){for(var n=0;n=0&&e>=0&&this.setAtLeast(t,e,n)},jsts.geom.IntersectionMatrix.prototype.setAtLeast2=function(t){var e;for(e=0;ee;e++)for(n=0;3>n;n++)this.matrix[e][n]=t},jsts.geom.IntersectionMatrix.prototype.get=function(t,e){return this.matrix[t][e]},jsts.geom.IntersectionMatrix.prototype.isDisjoint=function(){return this.matrix[t.INTERIOR][t.INTERIOR]===e.FALSE&&this.matrix[t.INTERIOR][t.BOUNDARY]===e.FALSE&&this.matrix[t.BOUNDARY][t.INTERIOR]===e.FALSE&&this.matrix[t.BOUNDARY][t.BOUNDARY]===e.FALSE},jsts.geom.IntersectionMatrix.prototype.isIntersects=function(){return!this.isDisjoint()},jsts.geom.IntersectionMatrix.prototype.isTouches=function(n,o){return n>o?this.isTouches(o,n):n==e.A&&o==e.A||n==e.L&&o==e.L||n==e.L&&o==e.A||n==e.P&&o==e.A||n==e.P&&o==e.L?this.matrix[t.INTERIOR][t.INTERIOR]===e.FALSE&&(jsts.geom.IntersectionMatrix.matches(this.matrix[t.INTERIOR][t.BOUNDARY],"T")||jsts.geom.IntersectionMatrix.matches(this.matrix[t.BOUNDARY][t.INTERIOR],"T")||jsts.geom.IntersectionMatrix.matches(this.matrix[t.BOUNDARY][t.BOUNDARY],"T")):!1},jsts.geom.IntersectionMatrix.prototype.isCrosses=function(n,o){return n==e.P&&o==e.L||n==e.P&&o==e.A||n==e.L&&o==e.A?jsts.geom.IntersectionMatrix.matches(this.matrix[t.INTERIOR][t.INTERIOR],"T")&&jsts.geom.IntersectionMatrix.matches(this.matrix[t.INTERIOR][t.EXTERIOR],"T"):n==e.L&&o==e.P||n==e.A&&o==e.P||n==e.A&&o==e.L?jsts.geom.IntersectionMatrix.matches(matrix[t.INTERIOR][t.INTERIOR],"T")&&jsts.geom.IntersectionMatrix.matches(this.matrix[t.EXTERIOR][t.INTERIOR],"T"):n===e.L&&o===e.L?0===this.matrix[t.INTERIOR][t.INTERIOR]:!1},jsts.geom.IntersectionMatrix.prototype.isWithin=function(){return jsts.geom.IntersectionMatrix.matches(this.matrix[t.INTERIOR][t.INTERIOR],"T")&&this.matrix[t.INTERIOR][t.EXTERIOR]==e.FALSE&&this.matrix[t.BOUNDARY][t.EXTERIOR]==e.FALSE},jsts.geom.IntersectionMatrix.prototype.isContains=function(){return jsts.geom.IntersectionMatrix.matches(this.matrix[t.INTERIOR][t.INTERIOR],"T")&&this.matrix[t.EXTERIOR][t.INTERIOR]==e.FALSE&&this.matrix[t.EXTERIOR][t.BOUNDARY]==e.FALSE},jsts.geom.IntersectionMatrix.prototype.isCovers=function(){var n=jsts.geom.IntersectionMatrix.matches(this.matrix[t.INTERIOR][t.INTERIOR],"T")||jsts.geom.IntersectionMatrix.matches(this.matrix[t.INTERIOR][t.BOUNDARY],"T")||jsts.geom.IntersectionMatrix.matches(this.matrix[t.BOUNDARY][t.INTERIOR],"T")||jsts.geom.IntersectionMatrix.matches(this.matrix[t.BOUNDARY][t.BOUNDARY],"T");return n&&this.matrix[t.EXTERIOR][t.INTERIOR]==e.FALSE&&this.matrix[t.EXTERIOR][t.BOUNDARY]==e.FALSE},jsts.geom.IntersectionMatrix.prototype.isCoveredBy=function(){var n=jsts.geom.IntersectionMatrix.matches(this.matrix[t.INTERIOR][t.INTERIOR],"T")||jsts.geom.IntersectionMatrix.matches(this.matrix[t.INTERIOR][t.BOUNDARY],"T")||jsts.geom.IntersectionMatrix.matches(this.matrix[t.BOUNDARY][t.INTERIOR],"T")||jsts.geom.IntersectionMatrix.matches(this.matrix[t.BOUNDARY][t.BOUNDARY],"T");return n&&this.matrix[t.INTERIOR][t.EXTERIOR]===e.FALSE&&this.matrix[t.BOUNDARY][t.EXTERIOR]===e.FALSE},jsts.geom.IntersectionMatrix.prototype.isEquals=function(n,o){return n!==o?!1:jsts.geom.IntersectionMatrix.matches(this.matrix[t.INTERIOR][t.INTERIOR],"T")&&this.matrix[t.EXTERIOR][t.INTERIOR]===e.FALSE&&this.matrix[t.INTERIOR][t.EXTERIOR]===e.FALSE&&this.matrix[t.EXTERIOR][t.BOUNDARY]===e.FALSE&&this.matrix[t.BOUNDARY][t.EXTERIOR]===e.FALSE},jsts.geom.IntersectionMatrix.prototype.isOverlaps=function(n,o){return n==e.P&&o===e.P||n==e.A&&o===e.A?jsts.geom.IntersectionMatrix.matches(this.matrix[t.INTERIOR][t.INTERIOR],"T")&&jsts.geom.IntersectionMatrix.matches(this.matrix[t.INTERIOR][t.EXTERIOR],"T")&&jsts.geom.IntersectionMatrix.matches(this.matrix[t.EXTERIOR][t.INTERIOR],"T"):n===e.L&&o===e.L?1==this.matrix[t.INTERIOR][t.INTERIOR]&&jsts.geom.IntersectionMatrix.matches(this.matrix[t.INTERIOR][t.EXTERIOR],"T")&&jsts.geom.IntersectionMatrix.matches(this.matrix[t.EXTERIOR][t.INTERIOR],"T"):!1},jsts.geom.IntersectionMatrix.prototype.matches=function(t){if(9!=t.length)throw new jsts.error.IllegalArgumentException("Should be length 9: "+t);for(var e=0;3>e;e++)for(var n=0;3>n;n++)if(!jsts.geom.IntersectionMatrix.matches(this.matrix[e][n],t.charAt(3*e+n)))return!1;return!0},jsts.geom.IntersectionMatrix.prototype.transpose=function(){var t=matrix[1][0];return this.matrix[1][0]=this.matrix[0][1],this.matrix[0][1]=t,t=this.matrix[2][0],this.matrix[2][0]=this.matrix[0][2],this.matrix[0][2]=t,t=this.matrix[2][1],this.matrix[2][1]=this.matrix[1][2],this.matrix[1][2]=t,this},jsts.geom.IntersectionMatrix.prototype.toString=function(){var t,n,o="";for(t=0;3>t;t++)for(n=0;3>n;n++)o+=e.toDimensionSymbol(this.matrix[t][n]);return o}}(),jsts.triangulate.quadedge.LastFoundQuadEdgeLocator=function(t){this.subdiv=t,this.lastEdge=null,this.init()},jsts.triangulate.quadedge.LastFoundQuadEdgeLocator.prototype.init=function(){this.lastEdge=this.findEdge()},jsts.triangulate.quadedge.LastFoundQuadEdgeLocator.prototype.findEdge=function(){var t=this.subdiv.getEdges();return t[0]},jsts.triangulate.quadedge.LastFoundQuadEdgeLocator.prototype.locate=function(t){this.lastEdge.isLive()||this.init();var e=this.subdiv.locateFromEdge(t,this.lastEdge);return this.lastEdge=e,e},jsts.noding.SegmentNodeList=function(t){this.nodeMap=new javascript.util.TreeMap,this.edge=t},jsts.noding.SegmentNodeList.prototype.nodeMap=null,jsts.noding.SegmentNodeList.prototype.iterator=function(){return this.nodeMap.values().iterator()},jsts.noding.SegmentNodeList.prototype.edge=null,jsts.noding.SegmentNodeList.prototype.getEdge=function(){return this.edge},jsts.noding.SegmentNodeList.prototype.add=function(t,e){var n=new jsts.noding.SegmentNode(this.edge,t,e,this.edge.getSegmentOctant(e)),o=this.nodeMap.get(n);return null!==o?(jsts.util.Assert.isTrue(o.coord.equals2D(t),"Found equal nodes with different coordinates"),o):(this.nodeMap.put(n,n),n)},jsts.noding.SegmentNodeList.prototype.addEndpoints=function(){var t=this.edge.size()-1;this.add(this.edge.getCoordinate(0),0),this.add(this.edge.getCoordinate(t),t)},jsts.noding.SegmentNodeList.prototype.addCollapsedNodes=function(){var t=[];this.findCollapsesFromInsertedNodes(t),this.findCollapsesFromExistingVertices(t);for(var e=0;ee;e++)this.precisionModel.makePrecise(t.points[e]);else if(t.geometries)for(e=0,n=t.geometries.length;n>e;e++)this.reducePrecision(t.geometries[e])},jsts.triangulate.quadedge.QuadEdgeSubdivision=function(t,e){this.tolerance=e,this.edgeCoincidenceTolerance=e/jsts.triangulate.quadedge.QuadEdgeSubdivision.EDGE_COINCIDENCE_TOL_FACTOR,this.visitedKey=0,this.quadEdges=[],this.startingEdge,this.tolerance,this.edgeCoincidenceTolerance,this.frameEnv,this.locator=null,this.seg=new jsts.geom.LineSegment,this.triEdges=new Array(3),this.frameVertex=new Array(3),this.createFrame(t),this.startingEdge=this.initSubdiv(),this.locator=new jsts.triangulate.quadedge.LastFoundQuadEdgeLocator(this)},jsts.triangulate.quadedge.QuadEdgeSubdivision.EDGE_COINCIDENCE_TOL_FACTOR=1e3,jsts.triangulate.quadedge.QuadEdgeSubdivision.getTriangleEdges=function(t,e){if(e[0]=t,e[1]=e[0].lNext(),e[2]=e[1].lNext(),e[2].lNext()!=e[0])throw new jsts.IllegalArgumentError("Edges do not form a triangle")},jsts.triangulate.quadedge.QuadEdgeSubdivision.prototype.createFrame=function(t){var e,n,o;e=t.getWidth(),n=t.getHeight(),o=0,o=e>n?10*e:10*n,this.frameVertex[0]=new jsts.triangulate.quadedge.Vertex((t.getMaxX()+t.getMinX())/2,t.getMaxY()+o),this.frameVertex[1]=new jsts.triangulate.quadedge.Vertex(t.getMinX()-o,t.getMinY()-o),this.frameVertex[2]=new jsts.triangulate.quadedge.Vertex(t.getMaxX()+o,t.getMinY()-o),this.frameEnv=new jsts.geom.Envelope(this.frameVertex[0].getCoordinate(),this.frameVertex[1].getCoordinate()),this.frameEnv.expandToInclude(this.frameVertex[2].getCoordinate())},jsts.triangulate.quadedge.QuadEdgeSubdivision.prototype.initSubdiv=function(){var t,e,n;return t=this.makeEdge(this.frameVertex[0],this.frameVertex[1]),e=this.makeEdge(this.frameVertex[1],this.frameVertex[2]),jsts.triangulate.quadedge.QuadEdge.splice(t.sym(),e),n=this.makeEdge(this.frameVertex[2],this.frameVertex[0]),jsts.triangulate.quadedge.QuadEdge.splice(e.sym(),n),jsts.triangulate.quadedge.QuadEdge.splice(n.sym(),t),t},jsts.triangulate.quadedge.QuadEdgeSubdivision.prototype.getTolerance=function(){return this.tolerance},jsts.triangulate.quadedge.QuadEdgeSubdivision.prototype.getEnvelope=function(){return new jsts.geom.Envelope(this.frameEnv)},jsts.triangulate.quadedge.QuadEdgeSubdivision.prototype.getEdges=function(){return arguments.length>0?this.getEdgesByFactory(arguments[0]):this.quadEdges},jsts.triangulate.quadedge.QuadEdgeSubdivision.prototype.setLocator=function(t){this.locator=t},jsts.triangulate.quadedge.QuadEdgeSubdivision.prototype.makeEdge=function(t,e){var n=jsts.triangulate.quadedge.QuadEdge.makeEdge(t,e);return this.quadEdges.push(n),n},jsts.triangulate.quadedge.QuadEdgeSubdivision.prototype.connect=function(t,e){var n=jsts.triangulate.quadedge.QuadEdge.connect(t,e);return this.quadEdges.push(n),n},jsts.triangulate.quadedge.QuadEdgeSubdivision.prototype.delete_jsts=function(t){jsts.triangulate.quadedge.QuadEdge.splice(t,t.oPrev()),jsts.triangulate.quadedge.QuadEdge.splice(t.sym(),t.sym().oPrev());var e,n,o;t.eSym=t.sym(),n=t.rot,o=t.rot.sym();var r=this.quadEdges.indexOf(t);-1!==r&&this.quadEdges.splice(r,1),r=this.quadEdges.indexOf(e),-1!==r&&this.quadEdges.splice(r,1),r=this.quadEdges.indexOf(n),-1!==r&&this.quadEdges.splice(r,1),r=this.quadEdges.indexOf(o),-1!==r&&this.quadEdges.splice(r,1),t.delete_jsts(),e.delete_jsts(),n.delete_jsts(),o.delete_jsts()},jsts.triangulate.quadedge.QuadEdgeSubdivision.prototype.locateFromEdge=function(t,e){var n,o=0,r=this.quadEdges.length;for(n=e;;){if(o++,o>r)throw new jsts.error.LocateFailureError(n.toLineSegment());if(t.equals(n.orig())||t.equals(n.dest()))break;if(t.rightOf(n))n=n.sym();else if(t.rightOf(n.oNext())){if(t.rightOf(n.dPrev()))break;n=n.dPrev()}else n=n.oNext()}return n},jsts.triangulate.quadedge.QuadEdgeSubdivision.prototype.locate=function(){return 1===arguments.length?arguments[0]instanceof jsts.triangulate.quadedge.Vertex?this.locateByVertex(arguments[0]):this.locateByCoordinate(arguments[0]):this.locateByCoordinates(arguments[0],arguments[1])},jsts.triangulate.quadedge.QuadEdgeSubdivision.prototype.locateByVertex=function(t){return this.locator.locate(t)},jsts.triangulate.quadedge.QuadEdgeSubdivision.prototype.locateByCoordinate=function(t){return this.locator.locate(new jsts.triangulate.quadedge.Vertex(t))},jsts.triangulate.quadedge.QuadEdgeSubdivision.prototype.locateByCoordinates=function(t,e){var n,o,r,n=this.locator.locate(new jsts.triangulate.quadedge.Vertex(t));if(null===n)return null;o=n,n.dest().getCoordinate().equals2D(t)&&(o=n.sym()),r=o;do{if(r.dest().getCoordinate().equals2D(e))return r;r=r.oNext()}while(r!=o);return null},jsts.triangulate.quadedge.QuadEdgeSubdivision.prototype.insertSite=function(t){var e,n,o;if(e=this.locate(t),t.equals(e.orig(),this.tolerance)||t.equals(e.dest(),this.tolerance))return e;n=this.makeEdge(e.orig(),t),jsts.triangulate.quadedge.QuadEdge.splice(n,e),o=n;do n=this.connect(e,n.sym()),e=n.oPrev();while(e.lNext()!=o);return o},jsts.triangulate.quadedge.QuadEdgeSubdivision.prototype.isFrameEdge=function(t){return this.isFrameVertex(t.orig())||this.isFrameVertex(t.dest())?!0:!1},jsts.triangulate.quadedge.QuadEdgeSubdivision.prototype.isFrameBorderEdge=function(t){var e,n,o,r;return e=new Array(3),this.getTriangleEdges(t,e),n=new Array(3),this.getTriangleEdges(t.sym(),n),o=t.lNext().dest(),this.isFrameVertex(o)?!0:(r=t.sym().lNext().dest(),this.isFrameVertex(r)?!0:!1)},jsts.triangulate.quadedge.QuadEdgeSubdivision.prototype.isFrameVertex=function(t){return t.equals(this.frameVertex[0])?!0:t.equals(this.frameVertex[1])?!0:t.equals(this.frameVertex[2])?!0:!1},jsts.triangulate.quadedge.QuadEdgeSubdivision.prototype.isOnEdge=function(t,e){this.seg.setCoordinates(t.orig().getCoordinate(),t.dest().getCoordinate());var n=this.seg.distance(e);return ne;e++)o=this.quadEdges[e],r=o.orig(),(t||!this.isFrameVertex(r))&&s.push(r),i=o.dest(),(t||!this.isFrameVertex(i))&&s.push(i);return s},jsts.triangulate.quadedge.QuadEdgeSubdivision.prototype.getVertexUniqueEdges=function(t){var e,n,o,r,i,s,a,u;for(e=[],n=[],o=0,r=this.quadEdges.length,o;r>o;o++)i=this.quadEdges[o],s=i.orig(),-1===n.indexOf(s)&&(n.push(s),(t||!this.isFrameVertex(s))&&e.push(i)),a=i.sym(),u=a.orig(),-1===n.indexOf(u)&&(n.push(u),(t||!this.isFrameVertex(u))&&e.push(a));return e},jsts.triangulate.quadedge.QuadEdgeSubdivision.prototype.getPrimaryEdges=function(t){this.visitedKey++;var e,n,o,r,i;for(e=[],n=[],n.push(this.startingEdge),o=[];n.length>0;)r=n.pop(),-1===o.indexOf(r)&&(i=r.getPrimary(),(t||!this.isFrameEdge(i))&&e.push(i),n.push(r.oNext()),n.push(r.sym().oNext()),o.push(r),o.push(r.sym()));return e},jsts.triangulate.quadedge.QuadEdgeSubdivision.prototype.visitTriangles=function(t,e){this.visitedKey++;var n,o,r,i;for(n=[],n.push(this.startingEdge),o=[];n.length>0;)r=n.pop(),-1===o.indexOf(r)&&(i=this.fetchTriangleToVisit(r,n,e,o),null!==i&&t.visit(i))},jsts.triangulate.quadedge.QuadEdgeSubdivision.prototype.fetchTriangleToVisit=function(t,e,n,o){var r,i,s,a;r=t,i=0,s=!1;do this.triEdges[i]=r,this.isFrameEdge(r)&&(s=!0),a=r.sym(),-1===o.indexOf(a)&&e.push(a),o.push(r),i++,r=r.lNext();while(r!==t);return s&&!n?null:this.triEdges},jsts.triangulate.quadedge.QuadEdgeSubdivision.prototype.getTriangleEdges=function(t){var e=new jsts.triangulate.quadedge.TriangleEdgesListVisitor;return this.visitTriangles(e,t),e.getTriangleEdges()},jsts.triangulate.quadedge.QuadEdgeSubdivision.prototype.getTriangleVertices=function(t){var e=new TriangleVertexListVisitor;return this.visitTriangles(e,t),e.getTriangleVertices()},jsts.triangulate.quadedge.QuadEdgeSubdivision.prototype.getTriangleCoordinates=function(t){var e=new jsts.triangulate.quadedge.TriangleCoordinatesVisitor;return this.visitTriangles(e,t),e.getTriangles()},jsts.triangulate.quadedge.QuadEdgeSubdivision.prototype.getEdgesByFactory=function(t){var e,n,o,r,i,s;for(e=this.getPrimaryEdges(!1),n=[],o=0,r=e.length,o;r>o;o++)i=e[o],s=[],s[0]=i.orig().getCoordinate(),s[1]=i.dest().getCoordinate(),n[o]=t.createLineString(s);return t.createMultiLineString(n)},jsts.triangulate.quadedge.QuadEdgeSubdivision.prototype.getTriangles=function(t){var e,n,o,r,i;for(e=this.getTriangleCoordinates(!1),n=new Array(e.length),r=0,i=e.length,r;i>r;r++)o=e[r],n[r]=t.createPolygon(t.createLinearRing(o,null));return t.createGeometryCollection(n)},jsts.triangulate.quadedge.QuadEdgeSubdivision.prototype.getVoronoiDiagram=function(t){var e=this.getVoronoiCellPolygons(t);return t.createGeometryCollection(e)},jsts.triangulate.quadedge.QuadEdgeSubdivision.prototype.getVoronoiCellPolygons=function(t){this.visitTriangles(new jsts.triangulate.quadedge.TriangleCircumcentreVisitor,!0);var e,n,o,r,i;for(e=[],n=this.getVertexUniqueEdges(!1),o=0,r=n.length,o;r>o;o++)i=n[o],e.push(this.getVoronoiCellPolygon(i,t));return e},jsts.triangulate.quadedge.QuadEdgeSubdivision.prototype.getVoronoiCellPolygon=function(t,e){var n,o,r,i,s;n=[],startQE=t;do o=t.rot.orig().getCoordinate(),n.push(o),t=t.oPrev();while(t!==startQE);return r=new jsts.geom.CoordinateList([],!1),r.add(n,!1),r.closeRing(),r.size()<4&&r.add(r.get(r.size()-1),!0),i=e.createPolygon(e.createLinearRing(r.toArray()),null),s=startQE.orig(),i},jsts.triangulate.quadedge.TriangleCircumcentreVisitor=function(){},jsts.triangulate.quadedge.TriangleCircumcentreVisitor.prototype.visit=function(t){var e,n,o,r,i,s;for(e=t[0].orig().getCoordinate(),n=t[1].orig().getCoordinate(),o=t[2].orig().getCoordinate(),r=jsts.geom.Triangle.circumcentre(e,n,o),i=new jsts.triangulate.quadedge.Vertex(r),s=0;3>s;s++)t[s].rot.setOrig(i)},jsts.triangulate.quadedge.TriangleEdgesListVisitor=function(){this.triList=[]},jsts.triangulate.quadedge.TriangleEdgesListVisitor.prototype.visit=function(t){var e=t.concat();this.triList.push(e)},jsts.triangulate.quadedge.TriangleEdgesListVisitor.prototype.getTriangleEdges=function(){return this.triList},jsts.triangulate.quadedge.TriangleVertexListVisitor=function(){this.triList=[]},jsts.triangulate.quadedge.TriangleVertexListVisitor.prototype.visit=function(){var t=[];t.push(trieEdges[0].orig()),t.push(trieEdges[1].orig()),t.push(trieEdges[2].orig()),this.triList.push(t)},jsts.triangulate.quadedge.TriangleVertexListVisitor.prototype.getTriangleVertices=function(){return this.triList},jsts.triangulate.quadedge.TriangleCoordinatesVisitor=function(){this.coordList=new jsts.geom.CoordinateList([],!1),this.triCoords=[]},jsts.triangulate.quadedge.TriangleCoordinatesVisitor.prototype.visit=function(t){this.coordList=new jsts.geom.CoordinateList([],!1);var e,n,o=0;for(o;3>o;o++)e=t[o].orig(),this.coordList.add(e.getCoordinate());if(this.coordList.size()>0){if(this.coordList.closeRing(),n=this.coordList.toArray(),4!==n.length)return;this.triCoords.push(n)}},jsts.triangulate.quadedge.TriangleCoordinatesVisitor.prototype.getTriangles=function(){return this.triCoords},jsts.operation.relate.EdgeEndBundle=function(){this.edgeEnds=[];var t=arguments[0]instanceof jsts.geomgraph.EdgeEnd?arguments[0]:arguments[1],e=t.getEdge(),n=t.getCoordinate(),o=t.getDirectedCoordinate(),r=new jsts.geomgraph.Label(t.getLabel());jsts.geomgraph.EdgeEnd.call(this,e,n,o,r),this.insert(t)},jsts.operation.relate.EdgeEndBundle.prototype=new jsts.geomgraph.EdgeEnd,jsts.operation.relate.EdgeEndBundle.prototype.edgeEnds=null,jsts.operation.relate.EdgeEndBundle.prototype.getLabel=function(){return this.label},jsts.operation.relate.EdgeEndBundle.prototype.getEdgeEnds=function(){return this.edgeEnds},jsts.operation.relate.EdgeEndBundle.prototype.insert=function(t){this.edgeEnds.push(t)},jsts.operation.relate.EdgeEndBundle.prototype.computeLabel=function(t){for(var e=!1,n=0;nn;n++)this.computeLabelOn(n,t),e&&this.computeLabelSides(n)},jsts.operation.relate.EdgeEndBundle.prototype.computeLabelOn=function(t,e){for(var n=0,o=!1,r=0;r0&&(s=jsts.geomgraph.GeometryGraph.determineBoundary(e,n)),this.label.setLocation(t,s)},jsts.operation.relate.EdgeEndBundle.prototype.computeLabelSides=function(t){this.computeLabelSide(t,jsts.geomgraph.Position.LEFT),this.computeLabelSide(t,jsts.geomgraph.Position.RIGHT) -},jsts.operation.relate.EdgeEndBundle.prototype.computeLabelSide=function(t,e){for(var n=0;ni,p=s>=a;u&&this.queryNode(t.getLeft(),e,n,!o,r),n.contains(t.getCoordinate())&&r.add(t),p&&this.queryNode(t.getRight(),e,n,!o,r)}},jsts.index.kdtree.KdTree.prototype.query=function(){return 1===arguments.length?this.queryByEnvelope.apply(this,arguments[0]):this.queryWithArray.apply(this,arguments[0],arguments[1])},jsts.index.kdtree.KdTree.prototype.queryByEnvelope=function(t){var e=[];return this.queryNode(this.root,this.last,t,!0,e),e},jsts.index.kdtree.KdTree.prototype.queryWithArray=function(t,e){this.queryNode(this.root,this.last,t,!0,e)},jsts.geom.Triangle=function(t,e,n){this.p0=t,this.p1=e,this.p2=n},jsts.geom.Triangle.isAcute=function(t,e,n){return jsts.algorithm.Angle.isAcute(t,e,n)&&jsts.algorithm.Angle.isAcute(e,n,t)&&jsts.algorithm.Angle.isAcute(n,t,e)?!0:!1},jsts.geom.Triangle.perpendicularBisector=function(t,e){var n,o,r,i;return n=e.x-t.x,o=e.y-t.y,r=new jsts.algorithm.HCoordinate(t.x+n/2,t.y+o/2,1),i=new jsts.algorithm.HCoordinate(t.x-o+n/2,t.y+n+o/2,1),new jsts.algorithm.HCoordinate(r,i)},jsts.geom.Triangle.circumcentre=function(t,e,n){var o,r,i,s,a,u,p,g,l,h,d;return o=n.x,r=n.y,i=t.x-o,s=t.y-r,a=e.x-o,u=e.y-r,p=2*jsts.geom.Triangle.det(i,s,a,u),g=jsts.geom.Triangle.det(s,i*i+s*s,u,a*a+u*u),l=jsts.geom.Triangle.det(i,i*i+s*s,a,a*a+u*u),h=o-g/p,d=r+l/p,new jsts.geom.Coordinate(h,d)},jsts.geom.Triangle.det=function(t,e,n,o){return t*o-e*n},jsts.geom.Triangle.inCentre=function(t,e,n){var o,r,i,s,a,u;return o=e.distance(n),r=t.distance(n),i=t.distance(e),s=o+r+i,a=(o*t.x+r*e.x+i*n.x)/s,u=(o*t.y+r*e.y+i*n.y)/s,new jsts.geom.Coordinate(a,u)},jsts.geom.Triangle.centroid=function(t,e,n){var o,r;return o=(t.x+e.x+n.x)/3,r=(t.y+e.y+n.y)/3,new jsts.geom.Coordinate(o,r)},jsts.geom.Triangle.longestSideLength=function(t,e,n){var o,r,i,s;return o=t.distance(e),r=e.distance(n),i=n.distance(t),s=o,r>s&&(s=r),i>s&&(s=i),s},jsts.geom.Triangle.angleBisector=function(t,e,n){var o,r,i,s,a,u;return o=e.distance(t),r=e.distance(n),i=o/(o+r),s=n.x-t.x,a=n.y-t.y,u=new jsts.geom.Coordinate(t.x+i*s,t.y+i*a)},jsts.geom.Triangle.area=function(t,e,n){return Math.abs(((n.x-t.x)*(e.y-t.y)-(e.x-t.x)*(n.y-t.y))/2)},jsts.geom.Triangle.signedArea=function(t,e,n){return((n.x-t.x)*(e.y-t.y)-(e.x-t.x)*(n.y-t.y))/2},jsts.geom.Triangle.prototype.inCentre=function(){return jsts.geom.Triangle.inCentre(this.p0,this.p1,this.p2)},jsts.noding.OrientedCoordinateArray=function(t){this.pts=t,this._orientation=jsts.noding.OrientedCoordinateArray.orientation(t)},jsts.noding.OrientedCoordinateArray.prototype.pts=null,jsts.noding.OrientedCoordinateArray.prototype._orientation=void 0,jsts.noding.OrientedCoordinateArray.orientation=function(t){return 1===jsts.geom.CoordinateArrays.increasingDirection(t)},jsts.noding.OrientedCoordinateArray.prototype.compareTo=function(t){var e=t,n=jsts.noding.OrientedCoordinateArray.compareOriented(this.pts,this._orientation,e.pts,e._orientation);return n},jsts.noding.OrientedCoordinateArray.compareOriented=function(t,e,n,o){for(var r=e?1:-1,i=o?1:-1,s=e?t.length:-1,a=o?n.length:-1,u=e?0:t.length-1,p=o?0:n.length-1;;){var g=t[u].compareTo(n[p]);if(0!==g)return g;u+=r,p+=i;var l=u===s,h=p===a;if(l&&!h)return-1;if(!l&&h)return 1;if(l&&h)return 0}},jsts.algorithm.CentralEndpointIntersector=function(t,e,n,o){this.pts=[t,e,n,o],this.compute()},jsts.algorithm.CentralEndpointIntersector.getIntersection=function(t,e,n,o){var r=new jsts.algorithm.CentralEndpointIntersector(t,e,n,o);return r.getIntersection()},jsts.algorithm.CentralEndpointIntersector.prototype.pts=null,jsts.algorithm.CentralEndpointIntersector.prototype.intPt=null,jsts.algorithm.CentralEndpointIntersector.prototype.compute=function(){var t=jsts.algorithm.CentralEndpointIntersector.average(this.pts);this.intPt=this.findNearestPoint(t,this.pts)},jsts.algorithm.CentralEndpointIntersector.prototype.getIntersection=function(){return this.intPt},jsts.algorithm.CentralEndpointIntersector.average=function(t){var e,n=new jsts.geom.Coordinate,o=t.length;for(e=0;o>e;e++)n.x+=t[e].x,n.y+=t[e].y;return o>0&&(n.x/=o,n.y/=o),n},jsts.algorithm.CentralEndpointIntersector.prototype.findNearestPoint=function(t,e){var n,o,r=Number.MAX_VALUE,i=null;for(n=0;no&&(r=o,i=e[n]);return i},jsts.operation.buffer.BufferOp=function(t,e){this.argGeom=t,this.bufParams=e?e:new jsts.operation.buffer.BufferParameters},jsts.operation.buffer.BufferOp.MAX_PRECISION_DIGITS=12,jsts.operation.buffer.BufferOp.precisionScaleFactor=function(t,e,n){var o=t.getEnvelopeInternal(),r=Math.max(o.getHeight(),o.getWidth()),i=e>0?e:0,s=r+2*i,a=Math.log(s)/Math.log(10)+1,u=a-n,p=Math.pow(10,-u);return p},jsts.operation.buffer.BufferOp.bufferOp=function(t,e){if(arguments.length>2)return jsts.operation.buffer.BufferOp.bufferOp2.apply(this,arguments);var n=new jsts.operation.buffer.BufferOp(t),o=n.getResultGeometry(e);return o},jsts.operation.buffer.BufferOp.bufferOp2=function(t,e,n){if(arguments.length>3)return jsts.operation.buffer.BufferOp.bufferOp3.apply(this,arguments);var o=new jsts.operation.buffer.BufferOp(t,n),r=o.getResultGeometry(e);return r},jsts.operation.buffer.BufferOp.bufferOp3=function(t,e,n){if(arguments.length>4)return jsts.operation.buffer.BufferOp.bufferOp4.apply(this,arguments);var o=new jsts.operation.buffer.BufferOp(t);o.setQuadrantSegments(n);var r=o.getResultGeometry(e);return r},jsts.operation.buffer.BufferOp.bufferOp4=function(t,e,n,o){var r=new jsts.operation.buffer.BufferOp(t);r.setQuadrantSegments(n),r.setEndCapStyle(o);var i=r.getResultGeometry(e);return i},jsts.operation.buffer.BufferOp.prototype.argGeom=null,jsts.operation.buffer.BufferOp.prototype.distance=null,jsts.operation.buffer.BufferOp.prototype.bufParams=null,jsts.operation.buffer.BufferOp.prototype.resultGeometry=null,jsts.operation.buffer.BufferOp.prototype.setEndCapStyle=function(t){this.bufParams.setEndCapStyle(t)},jsts.operation.buffer.BufferOp.prototype.setQuadrantSegments=function(t){this.bufParams.setQuadrantSegments(t)},jsts.operation.buffer.BufferOp.prototype.getResultGeometry=function(t){return this.distance=t,this.computeGeometry(),this.resultGeometry},jsts.operation.buffer.BufferOp.prototype.computeGeometry=function(){if(this.bufferOriginalPrecision(),null===this.resultGeometry){var t=this.argGeom.getPrecisionModel();t.getType()===jsts.geom.PrecisionModel.FIXED?this.bufferFixedPrecision(t):this.bufferReducedPrecision()}},jsts.operation.buffer.BufferOp.prototype.bufferReducedPrecision=function(){var t,e=null;for(t=jsts.operation.buffer.BufferOp.MAX_PRECISION_DIGITS;t>=0;t--){try{this.bufferReducedPrecision2(t)}catch(n){e=n}if(null!==this.resultGeometry)return}throw e},jsts.operation.buffer.BufferOp.prototype.bufferOriginalPrecision=function(){try{var t=new jsts.operation.buffer.BufferBuilder(this.bufParams);this.resultGeometry=t.buffer(this.argGeom,this.distance)}catch(e){}},jsts.operation.buffer.BufferOp.prototype.bufferReducedPrecision2=function(t){var e=jsts.operation.buffer.BufferOp.precisionScaleFactor(this.argGeom,this.distance,t),n=new jsts.geom.PrecisionModel(e);this.bufferFixedPrecision(n)},jsts.operation.buffer.BufferOp.prototype.bufferFixedPrecision=function(t){var e=new jsts.noding.ScaledNoder(new jsts.noding.snapround.MCIndexSnapRounder(new jsts.geom.PrecisionModel(1)),t.getScale()),n=new jsts.operation.buffer.BufferBuilder(this.bufParams);n.setWorkingPrecisionModel(t),n.setNoder(e),this.resultGeometry=n.buffer(this.argGeom,this.distance)},function(){var t=jsts.geom.Location,e=jsts.geomgraph.Position,n=jsts.util.Assert;jsts.geomgraph.GeometryGraph=function(t,e,n){jsts.geomgraph.PlanarGraph.call(this),this.lineEdgeMap=new javascript.util.HashMap,this.ptLocator=new jsts.algorithm.PointLocator,this.argIndex=t,this.parentGeom=e,this.boundaryNodeRule=n||jsts.algorithm.BoundaryNodeRule.OGC_SFS_BOUNDARY_RULE,null!==e&&this.add(e)},jsts.geomgraph.GeometryGraph.prototype=new jsts.geomgraph.PlanarGraph,jsts.geomgraph.GeometryGraph.constructor=jsts.geomgraph.GeometryGraph,jsts.geomgraph.GeometryGraph.prototype.createEdgeSetIntersector=function(){return new jsts.geomgraph.index.SimpleMCSweepLineIntersector},jsts.geomgraph.GeometryGraph.determineBoundary=function(e,n){return e.isInBoundary(n)?t.BOUNDARY:t.INTERIOR},jsts.geomgraph.GeometryGraph.prototype.parentGeom=null,jsts.geomgraph.GeometryGraph.prototype.lineEdgeMap=null,jsts.geomgraph.GeometryGraph.prototype.boundaryNodeRule=null,jsts.geomgraph.GeometryGraph.prototype.useBoundaryDeterminationRule=!0,jsts.geomgraph.GeometryGraph.prototype.argIndex=null,jsts.geomgraph.GeometryGraph.prototype.boundaryNodes=null,jsts.geomgraph.GeometryGraph.prototype.hasTooFewPoints=!1,jsts.geomgraph.GeometryGraph.prototype.invalidPoint=null,jsts.geomgraph.GeometryGraph.prototype.areaPtLocator=null,jsts.geomgraph.GeometryGraph.prototype.ptLocator=null,jsts.geomgraph.GeometryGraph.prototype.getGeometry=function(){return this.parentGeom},jsts.geomgraph.GeometryGraph.prototype.getBoundaryNodes=function(){return null===this.boundaryNodes&&(this.boundaryNodes=this.nodes.getBoundaryNodes(this.argIndex)),this.boundaryNodes},jsts.geomgraph.GeometryGraph.prototype.getBoundaryNodeRule=function(){return this.boundaryNodeRule},jsts.geomgraph.GeometryGraph.prototype.findEdge=function(t){return this.lineEdgeMap.get(t)},jsts.geomgraph.GeometryGraph.prototype.computeSplitEdges=function(t){for(var e=this.edges.iterator();e.hasNext();){var n=e.next();n.eiList.addSplitEdges(t)}},jsts.geomgraph.GeometryGraph.prototype.add=function(t){if(!t.isEmpty())if(t instanceof jsts.geom.MultiPolygon&&(this.useBoundaryDeterminationRule=!1),t instanceof jsts.geom.Polygon)this.addPolygon(t);else if(t instanceof jsts.geom.LineString)this.addLineString(t);else if(t instanceof jsts.geom.Point)this.addPoint(t);else if(t instanceof jsts.geom.MultiPoint)this.addCollection(t);else if(t instanceof jsts.geom.MultiLineString)this.addCollection(t);else if(t instanceof jsts.geom.MultiPolygon)this.addCollection(t);else{if(!(t instanceof jsts.geom.GeometryCollection))throw new jsts.error.IllegalArgumentError("Geometry type not supported.");this.addCollection(t)}},jsts.geomgraph.GeometryGraph.prototype.addCollection=function(t){for(var e=0;e=2,"found LineString with single point"),this.insertBoundaryPoint(this.argIndex,o[0]),this.insertBoundaryPoint(this.argIndex,o[o.length-1])},jsts.geomgraph.GeometryGraph.prototype.addPolygonRing=function(e,n,o){if(!e.isEmpty()){var r=jsts.geom.CoordinateArrays.removeRepeatedPoints(e.getCoordinates());if(r.length<4)return this.hasTooFewPoints=!0,void(this.invalidPoint=r[0]);var i=n,s=o;jsts.algorithm.CGAlgorithms.isCCW(r)&&(i=o,s=n);var a=new jsts.geomgraph.Edge(r,new jsts.geomgraph.Label(this.argIndex,t.BOUNDARY,i,s));this.lineEdgeMap.put(e,a),this.insertEdge(a),this.insertPoint(this.argIndex,r[0],t.BOUNDARY)}},jsts.geomgraph.GeometryGraph.prototype.addPolygon=function(e){this.addPolygonRing(e.getExteriorRing(),t.EXTERIOR,t.INTERIOR);for(var n=0;n=0;n--)this.addPt(t[n])},jsts.operation.buffer.OffsetSegmentString.prototype.isRedundant=function(t){if(this.ptList.length<1)return!1;var e=this.ptList[this.ptList.length-1],n=t.distance(e);return n=2&&(n=this.ptList[this.ptList.length-2]),t.equals(e)||this.ptList.push(t)}},jsts.operation.buffer.OffsetSegmentString.prototype.reverse=function(){},jsts.operation.buffer.OffsetSegmentString.prototype.getCoordinates=function(){return this.ptList},jsts.algorithm.distance.PointPairDistance=function(){this.pt=[new jsts.geom.Coordinate,new jsts.geom.Coordinate]},jsts.algorithm.distance.PointPairDistance.prototype.pt=null,jsts.algorithm.distance.PointPairDistance.prototype.distance=0/0,jsts.algorithm.distance.PointPairDistance.prototype.isNull=!0,jsts.algorithm.distance.PointPairDistance.prototype.initialize=function(t,e,n){return void 0===t?void(this.isNull=!0):(this.pt[0].setCoordinate(t),this.pt[1].setCoordinate(e),this.distance=void 0!==n?n:t.distance(e),void(this.isNull=!1))},jsts.algorithm.distance.PointPairDistance.prototype.getDistance=function(){return this.distance},jsts.algorithm.distance.PointPairDistance.prototype.getCoordinates=function(){return this.pt},jsts.algorithm.distance.PointPairDistance.prototype.getCoordinate=function(t){return this.pt[t]},jsts.algorithm.distance.PointPairDistance.prototype.setMaximum=function(t){return 2===arguments.length?void this.setMaximum2.apply(this,arguments):void this.setMaximum(t.pt[0],t.pt[1])},jsts.algorithm.distance.PointPairDistance.prototype.setMaximum2=function(t,e){if(this.isNull)return void this.initialize(t,e);var n=t.distance(e);n>this.distance&&this.initialize(t,e,n)},jsts.algorithm.distance.PointPairDistance.prototype.setMinimum=function(t){return 2===arguments.length?void this.setMinimum2.apply(this,arguments):void this.setMinimum(t.pt[0],t.pt[1])},jsts.algorithm.distance.PointPairDistance.prototype.setMinimum2=function(t,e){if(this.isNull)return void this.initialize(t,e);var n=t.distance(e);n1||0>=t)throw new jsts.error.IllegalArgumentError("Fraction is not in range (0.0 - 1.0]");this.densifyFrac=t},jsts.algorithm.distance.DiscreteHausdorffDistance.prototype.distance=function(){return this.compute(this.g0,this.g1),ptDist.getDistance()},jsts.algorithm.distance.DiscreteHausdorffDistance.prototype.orientedDistance=function(){return this.computeOrientedDistance(this.g0,this.g1,this.ptDist),this.ptDist.getDistance()},jsts.algorithm.distance.DiscreteHausdorffDistance.prototype.getCoordinates=function(){return ptDist.getCoordinates()},jsts.algorithm.distance.DiscreteHausdorffDistance.prototype.compute=function(t,e){this.computeOrientedDistance(t,e,this.ptDist),this.computeOrientedDistance(e,t,this.ptDist)},jsts.algorithm.distance.DiscreteHausdorffDistance.prototype.computeOrientedDistance=function(t,e,r){var i=new n(e);if(t.apply(i),r.setMaximum(i.getMaxPointDistance()),this.densifyFrac>0){var s=new o(e,this.densifyFrac);t.apply(s),r.setMaximum(s.getMaxPointDistance())}}}(),jsts.algorithm.MinimumBoundingCircle=function(t){this.input=null,this.extremalPts=null,this.centre=null,this.radius=0,this.input=t},jsts.algorithm.MinimumBoundingCircle.prototype.getCircle=function(){if(this.compute(),null===this.centre)return this.input.getFactory().createPolygon(null,null);var t=this.input.getFactory().createPoint(this.centre);return 0===this.radius?t:t.buffer(this.radius)},jsts.algorithm.MinimumBoundingCircle.prototype.getExtremalPoints=function(){return this.compute(),this.extremalPts},jsts.algorithm.MinimumBoundingCircle.prototype.getCentre=function(){return this.compute(),this.centre},jsts.algorithm.MinimumBoundingCircle.prototype.getRadius=function(){return this.compute(),this.radius},jsts.algorithm.MinimumBoundingCircle.prototype.computeCentre=function(){switch(this.extremalPts.length){case 0:this.centre=null;break;case 1:this.centre=this.extremalPts[0];break;case 2:this.centre=new jsts.geom.Coordinate((this.extremalPts[0].x+this.extremalPts[1].x)/2,(this.extremalPts[0].y+this.extremalPts[1].y)/2);break;case 3:this.centre=jsts.geom.Triangle.circumcentre(this.extremalPts[0],this.extremalPts[1],this.extremalPts[2])}},jsts.algorithm.MinimumBoundingCircle.prototype.compute=function(){null===this.extremalPts&&(this.computeCirclePoints(),this.computeCentre(),null!==this.centre&&(this.radius=this.centre.distance(this.extremalPts[0])))},jsts.algorithm.MinimumBoundingCircle.prototype.computeCirclePoints=function(){if(this.input.isEmpty())return void(this.extremalPts=[]);var t;if(1===this.input.getNumPoints())return t=this.input.getCoordinates(),void(this.extremalPts=[new jsts.geom.Coordinate(t[0])]);var e=this.input.convexHull(),n=e.getCoordinates();if(t=n,n[0].equals2D(n[n.length-1])&&(t=[],jsts.geom.CoordinateArrays.copyDeep(n,0,t,0,n.length-1)),t.length<=2)return void(this.extremalPts=jsts.geom.CoordinateArrays.copyDeep(t));for(var o=jsts.algorithm.MinimumBoundingCircle.lowestPoint(t),r=jsts.algorithm.MinimumBoundingCircle.pointWitMinAngleWithX(t,o),i=0;ia&&(a=-a);var u=Math.sqrt(s*s+a*a),p=a/u;n>p&&(n=p,o=i)}}return o},jsts.algorithm.MinimumBoundingCircle.pointWithMinAngleWithSegment=function(t,e,n){for(var o=Number.MAX_VALUE,r=null,i=0;ia&&(o=a,r=s)}}return r},jsts.noding.ScaledNoder=function(t,e,n,o){this.offsetX=n?n:0,this.offsetY=o?o:0,this.noder=t,this.scaleFactor=e,this.isScaled=!this.isIntegerPrecision()},jsts.noding.ScaledNoder.prototype=new jsts.noding.Noder,jsts.noding.ScaledNoder.constructor=jsts.noding.ScaledNoder,jsts.noding.ScaledNoder.prototype.noder=null,jsts.noding.ScaledNoder.prototype.scaleFactor=void 0,jsts.noding.ScaledNoder.prototype.offsetX=void 0,jsts.noding.ScaledNoder.prototype.offsetY=void 0,jsts.noding.ScaledNoder.prototype.isScaled=!1,jsts.noding.ScaledNoder.prototype.isIntegerPrecision=function(){return 1===this.scaleFactor},jsts.noding.ScaledNoder.prototype.getNodedSubstrings=function(){var t=this.noder.getNodedSubstrings();return this.isScaled&&this.rescale(t),t},jsts.noding.ScaledNoder.prototype.computeNodes=function(t){var e=t;this.isScaled&&(e=this.scale(t)),this.noder.computeNodes(e)},jsts.noding.ScaledNoder.prototype.scale=function(t){if(t instanceof Array)return this.scale2(t);for(var e=new javascript.util.ArrayList,n=t.iterator();n.hasNext();){var o=n.next();e.add(new jsts.noding.NodedSegmentString(this.scale(o.getCoordinates()),o.getData()))}return e},jsts.noding.ScaledNoder.prototype.scale2=function(t){for(var e=[],n=0;nt||t>=this.size())throw new r;return this.a[t]},l.prototype.get=l.prototype.get,l.prototype.g=function(){return 0===this.a.length -},l.prototype.isEmpty=l.prototype.g,l.prototype.size=function(){return this.a.length},l.prototype.size=l.prototype.size,l.prototype.h=function(){for(var t=[],e=0,n=this.a.length;n>e;e++)t.push(this.a[e]);return t},l.prototype.toArray=l.prototype.h,l.prototype.remove=function(t){for(var e=!1,n=0,o=this.a.length;o>n;n++)if(this.a[n]===t){this.a.splice(n,1),e=!0;break}return e},l.prototype.remove=l.prototype.remove,e("$jscomp.scope.Iterator_",h),h.prototype.j=null,h.prototype.b=0,h.prototype.next=function(){if(this.b===this.j.size())throw new p;return this.j.get(this.b++)},h.prototype.next=h.prototype.next,h.prototype.c=function(){return this.bn;n++)e.add(t[n]);return e},n(c,u),e("javascript.util.HashMap",c),c.prototype.i=null,c.prototype.get=function(t){return this.i[t]||null},c.prototype.get=c.prototype.get,c.prototype.put=function(t,e){return this.i[t]=e},c.prototype.put=c.prototype.put,c.prototype.m=function(){var t,e=new l;for(t in this.i)this.i.hasOwnProperty(t)&&e.add(this.i[t]);return e},c.prototype.values=c.prototype.m,c.prototype.size=function(){return this.m().size()},c.prototype.size=c.prototype.size,n(f,s),e("javascript.util.Set",f),n(m,f),e("javascript.util.HashSet",m),m.prototype.a=null,m.prototype.contains=function(t){for(var e=0,n=this.a.length;n>e;e++)if(this.a[e]===t)return!0;return!1},m.prototype.contains=m.prototype.contains,m.prototype.add=function(t){return this.contains(t)?!1:(this.a.push(t),!0)},m.prototype.add=m.prototype.add,m.prototype.e=function(t){for(t=t.f();t.c();)this.add(t.next());return!0},m.prototype.addAll=m.prototype.e,m.prototype.remove=function(){throw new g},m.prototype.remove=m.prototype.remove,m.prototype.size=function(){return this.a.length},m.prototype.g=function(){return 0===this.a.length},m.prototype.isEmpty=m.prototype.g,m.prototype.h=function(){for(var t=[],e=0,n=this.a.length;n>e;e++)t.push(this.a[e]);return t},m.prototype.toArray=m.prototype.h,m.prototype.f=function(){return new y(this)},m.prototype.iterator=m.prototype.f,e("$jscomp.scope.Iterator_$1",y),y.prototype.k=null,y.prototype.b=0,y.prototype.next=function(){if(this.b===this.k.size())throw new p;return this.k.a[this.b++]},y.prototype.next=y.prototype.next,y.prototype.c=function(){return this.be;e++)t.push(this.a[e]);return t},E.prototype.toArray=E.prototype.h,n(C,j),e("javascript.util.TreeMap",C),C.prototype.get=function(t){for(var e=this.d;null!==e;){var n=t.compareTo(e.key);if(0>n)e=e.left;else{if(!(n>0))return e.value;e=e.right}}return null},C.prototype.get=C.prototype.get,C.prototype.put=function(t,e){if(null===this.d)return this.d={key:t,value:e,left:null,right:null,parent:null,color:0},this.n=1,null;var n,o,r=this.d;do if(n=r,o=t.compareTo(r.key),0>o)r=r.left;else{if(!(o>0))return n=r.value,r.value=e,n;r=r.right}while(null!==r);for(r={key:t,left:null,right:null,value:e,parent:n,color:0},0>o?n.left=r:n.right=r,r.color=1;null!=r&&r!=this.d&&1==r.parent.color;)x(r)==S(x(x(r)))?(n=L(x(x(r))),1==(null==n?0:n.color)?(I(x(r),0),I(n,0),I(x(x(r)),1),r=x(x(r))):(r==L(x(r))&&(r=x(r),N(this,r)),I(x(r),0),I(x(x(r)),1),b(this,x(x(r))))):(n=S(x(x(r))),1==(null==n?0:n.color)?(I(x(r),0),I(n,0),I(x(x(r)),1),r=x(x(r))):(r==S(x(r))&&(r=x(r),b(this,r)),I(x(r),0),I(x(x(r)),1),N(this,x(x(r)))));return this.d.color=0,this.n++,null},C.prototype.put=C.prototype.put,C.prototype.m=function(){var t,e=new l;if(t=this.d,null!=t)for(;null!=t.left;)t=t.left;if(null!==t)for(e.add(t.value);null!==(t=P(t));)e.add(t.value);return e},C.prototype.values=C.prototype.m,C.prototype.size=function(){return this.n},C.prototype.size=C.prototype.size,n(R,v),e("javascript.util.TreeSet",R),R.prototype.a=null,R.prototype.contains=function(t){for(var e=0,n=this.a.length;n>e;e++)if(0===this.a[e].compareTo(t))return!0;return!1},R.prototype.contains=R.prototype.contains,R.prototype.add=function(t){if(this.contains(t))return!1;for(var e=0,n=this.a.length;n>e;e++)if(1===this.a[e].compareTo(t))return this.a.splice(e,0,t),!0;return this.a.push(t),!0},R.prototype.add=R.prototype.add,R.prototype.e=function(t){for(t=t.f();t.c();)this.add(t.next());return!0},R.prototype.addAll=R.prototype.e,R.prototype.remove=function(){throw new g},R.prototype.remove=R.prototype.remove,R.prototype.size=function(){return this.a.length},R.prototype.size=R.prototype.size,R.prototype.g=function(){return 0===this.a.length},R.prototype.isEmpty=R.prototype.g,R.prototype.h=function(){for(var t=[],e=0,n=this.a.length;n>e;e++)t.push(this.a[e]);return t},R.prototype.toArray=R.prototype.h,R.prototype.f=function(){return new w(this)},R.prototype.iterator=R.prototype.f,e("$jscomp.scope.Iterator_$2",w),w.prototype.l=null,w.prototype.b=0,w.prototype.next=function(){if(this.b===this.l.size())throw new p;return this.l.a[this.b++]},w.prototype.next=w.prototype.next,w.prototype.c=function(){return this.bo;o++)for(g=c?t.features[o].geometry:f?t.geometry:t,h="GeometryCollection"===g.type,u=h?g.geometries.length:1,s=0;u>s;s++)if(a=h?g.geometries[s]:g,p=a.coordinates,d=!n||"Polygon"!==a.type&&"MultiPolygon"!==a.type?0:1,"Point"===a.type)e(p);else if("LineString"===a.type||"MultiPoint"===a.type)for(r=0;r=a&&e>=u&&e>=p}if("number"!=typeof e)throw new Error("maxEdge parameter is required");if("string"!=typeof o)throw new Error("units parameter is required");var i=n.tin(t),s=i.features.filter(r);return i.features=s,n.merge(i)}},{"turf-distance":60,"turf-merge":93,"turf-point":102,"turf-tin":118}],26:[function(t,e){var n=t("turf-meta").coordEach,o=t("convex-hull"),r=t("turf-polygon");e.exports=function(t){var e=[];n(t,function(t){e.push(t)});for(var i=o(e),s=[],a=0;at[n][0]&&(n=o);return n>e?[[e],[n]]:e>n?[[n],[e]]:[[e]]}e.exports=n},{}],29:[function(t,e){"use strict";function n(t){var e=o(t),n=e.length;if(2>=n)return[];for(var r=new Array(n),i=e[n-1],s=0;n>s;++s){var a=e[s];r[s]=[i,a],i=a}return r}e.exports=n;var o=t("monotone-convex-hull-2d")},{"monotone-convex-hull-2d":48}],30:[function(t,e){"use strict";function n(t,e){for(var n=t.length,o=new Array(n),r=0;rr;++r)e.indexOf(r)<0&&(o[i++]=t[r]);return o}function o(t,e){for(var n=t.length,o=e.length,r=0;n>r;++r)for(var i=t[r],s=0;sa)i[s]=e[a];else{a-=o;for(var u=0;o>u;++u)a>=e[u]&&(a+=1);i[s]=a}}return t}function r(t,e){try{return i(t,!0)}catch(r){var a=s(t);if(a.length<=e)return[];var u=n(t,a),p=i(u,!0);return o(p,a)}}e.exports=r;var i=t("incremental-convex-hull"),s=t("affine-hull")},{"affine-hull":31,"incremental-convex-hull":38}],31:[function(t,e){"use strict";function n(t,e){for(var n=new Array(e+1),o=0;o=i;++i){for(var s=new Array(e),a=0;e>a;++a)s[a]=Math.pow(i+1-o,a);n[i]=s}var u=r.apply(void 0,n);if(u)return!0}return!1}function o(t){var e=t.length;if(0===e)return[];if(1===e)return[0];for(var o=t[0].length,r=[t[0]],i=[0],s=1;e>s;++s)if(r.push(t[s]),n(r,o)){if(i.push(s),i.length===o+1)return i}else r.pop();return i}e.exports=o;var r=t("robust-orientation")},{"robust-orientation":37}],32:[function(t,e){"use strict";function n(t,e,n){var o=t+e,r=o-t,i=o-r,s=e-r,a=t-i;return n?(n[0]=a+s,n[1]=o,n):[a+s,o]}e.exports=n},{}],33:[function(t,e){"use strict";function n(t,e){var n=t.length;if(1===n){var i=o(t[0],e);return i[0]?i:[i[1]]}var s=new Array(2*n),a=[.1,.1],u=[.1,.1],p=0;o(t[0],e,a),a[0]&&(s[p++]=a[0]);for(var g=1;n>g;++g){o(t[g],e,u);var l=a[1];r(l,u[0],a),a[0]&&(s[p++]=a[0]);var h=u[1],d=a[1],c=h+d,f=c-h,m=d-f;a[1]=c,m&&(s[p++]=m)}return a[1]&&(s[p++]=a[1]),0===p&&(s[p++]=0),s.length=p,s}var o=t("two-product"),r=t("two-sum");e.exports=n},{"two-product":36,"two-sum":32}],34:[function(t,e){"use strict";function n(t,e){var n=t+e,o=n-t,r=n-o,i=e-o,s=t-r,a=s+i;return a?[a,n]:[n]}function o(t,e){var o=0|t.length,r=0|e.length;if(1===o&&1===r)return n(t[0],-e[0]);var i,s,a=o+r,u=new Array(a),p=0,g=0,l=0,h=Math.abs,d=t[g],c=h(d),f=-e[l],m=h(f);m>c?(s=d,g+=1,o>g&&(d=t[g],c=h(d))):(s=f,l+=1,r>l&&(f=-e[l],m=h(f))),o>g&&m>c||l>=r?(i=d,g+=1,o>g&&(d=t[g],c=h(d))):(i=f,l+=1,r>l&&(f=-e[l],m=h(f)));for(var y,j,v,E,x,I=i+s,S=I-i,L=s-S,C=L,N=I;o>g&&r>l;)m>c?(i=d,g+=1,o>g&&(d=t[g],c=h(d))):(i=f,l+=1,r>l&&(f=-e[l],m=h(f))),s=C,I=i+s,S=I-i,L=s-S,L&&(u[p++]=L),y=N+I,j=y-N,v=y-j,E=I-j,x=N-v,C=x+E,N=y;for(;o>g;)i=d,s=C,I=i+s,S=I-i,L=s-S,L&&(u[p++]=L),y=N+I,j=y-N,v=y-j,E=I-j,x=N-v,C=x+E,N=y,g+=1,o>g&&(d=t[g]);for(;r>l;)i=f,s=C,I=i+s,S=I-i,L=s-S,L&&(u[p++]=L),y=N+I,j=y-N,v=y-j,E=I-j,x=N-v,C=x+E,N=y,l+=1,r>l&&(f=-e[l]);return C&&(u[p++]=C),N&&(u[p++]=N),p||(u[p++]=0),u.length=p,u}e.exports=o},{}],35:[function(t,e){"use strict";function n(t,e){var n=t+e,o=n-t,r=n-o,i=e-o,s=t-r,a=s+i;return a?[a,n]:[n]}function o(t,e){var o=0|t.length,r=0|e.length;if(1===o&&1===r)return n(t[0],e[0]);var i,s,a=o+r,u=new Array(a),p=0,g=0,l=0,h=Math.abs,d=t[g],c=h(d),f=e[l],m=h(f);m>c?(s=d,g+=1,o>g&&(d=t[g],c=h(d))):(s=f,l+=1,r>l&&(f=e[l],m=h(f))),o>g&&m>c||l>=r?(i=d,g+=1,o>g&&(d=t[g],c=h(d))):(i=f,l+=1,r>l&&(f=e[l],m=h(f)));for(var y,j,v,E,x,I=i+s,S=I-i,L=s-S,C=L,N=I;o>g&&r>l;)m>c?(i=d,g+=1,o>g&&(d=t[g],c=h(d))):(i=f,l+=1,r>l&&(f=e[l],m=h(f))),s=C,I=i+s,S=I-i,L=s-S,L&&(u[p++]=L),y=N+I,j=y-N,v=y-j,E=I-j,x=N-v,C=x+E,N=y;for(;o>g;)i=d,s=C,I=i+s,S=I-i,L=s-S,L&&(u[p++]=L),y=N+I,j=y-N,v=y-j,E=I-j,x=N-v,C=x+E,N=y,g+=1,o>g&&(d=t[g]);for(;r>l;)i=f,s=C,I=i+s,S=I-i,L=s-S,L&&(u[p++]=L),y=N+I,j=y-N,v=y-j,E=I-j,x=N-v,C=x+E,N=y,l+=1,r>l&&(f=e[l]);return C&&(u[p++]=C),N&&(u[p++]=N),p||(u[p++]=0),u.length=p,u}e.exports=o},{}],36:[function(t,e){"use strict";function n(t,e,n){var r=t*e,i=o*t,s=i-t,a=i-s,u=t-a,p=o*e,g=p-e,l=p-g,h=e-l,d=r-a*l,c=d-u*l,f=c-a*h,m=u*h-f;return n?(n[0]=m,n[1]=r,n):[m,r]}e.exports=n;var o=+(Math.pow(2,27)+1)},{}],37:[function(t,e){"use strict";function n(t,e){for(var n=new Array(t.length-1),o=1;on;++n){e[n]=new Array(t);for(var o=0;t>o;++o)e[n][o]=["m",o,"[",t-n-1,"]"].join("")}return e}function r(t){return 1&t?"-":""}function i(t){if(1===t.length)return t[0];if(2===t.length)return["sum(",t[0],",",t[1],")"].join("");var e=t.length>>1;return["sum(",i(t.slice(0,e)),",",i(t.slice(e)),")"].join("")}function s(t){if(2===t.length)return[["sum(prod(",t[0][0],",",t[1][1],"),prod(-",t[0][1],",",t[1][0],"))"].join("")];for(var e=[],o=0;op;++p)0===(1&p)?e.push.apply(e,s(n(a,p))):r.push.apply(r,s(n(a,p))),u.push("m"+p);var c=i(e),f=i(r),m="orientation"+t+"Exact",y=["function ",m,"(",u.join(),"){var p=",c,",n=",f,",d=sub(p,n);return d[d.length-1];};return ",m].join(""),j=new Function("sum","prod","scale","sub",y);return j(l,g,h,d)}function u(t){var e=E[t.length];return e||(e=E[t.length]=a(t.length)),e.apply(void 0,t)}function p(){for(;E.length<=c;)E.push(a(E.length));for(var t=[],n=["slow"],o=0;c>=o;++o)t.push("a"+o),n.push("o"+o);for(var r=["function getOrientation(",t.join(),"){switch(arguments.length){case 0:case 1:return 0;"],o=2;c>=o;++o)r.push("case ",o,":return o",o,"(",t.slice(0,o).join(),");");r.push("}var s=new Array(arguments.length);for(var i=0;i=o;++o)e.exports[o]=E[o]}var g=t("two-product"),l=t("robust-sum"),h=t("robust-scale"),d=t("robust-subtract"),c=5,f=1.1102230246251565e-16,m=(3+16*f)*f,y=(7+56*f)*f,j=a(3),v=a(4),E=[function(){return 0},function(){return 0},function(t,e){return e[0]-t[0]},function(t,e,n){var o,r=(t[1]-n[1])*(e[0]-n[0]),i=(t[0]-n[0])*(e[1]-n[1]),s=r-i;if(r>0){if(0>=i)return s;o=r+i}else{if(!(0>r))return s;if(i>=0)return s;o=-(r+i)}var a=m*o;return s>=a||-a>=s?s:j(t,e,n)},function(t,e,n,o){var r=t[0]-o[0],i=e[0]-o[0],s=n[0]-o[0],a=t[1]-o[1],u=e[1]-o[1],p=n[1]-o[1],g=t[2]-o[2],l=e[2]-o[2],h=n[2]-o[2],d=i*p,c=s*u,f=s*a,m=r*p,j=r*u,E=i*a,x=g*(d-c)+l*(f-m)+h*(j-E),I=(Math.abs(d)+Math.abs(c))*Math.abs(g)+(Math.abs(f)+Math.abs(m))*Math.abs(l)+(Math.abs(j)+Math.abs(E))*Math.abs(h),S=y*I;return x>S||-x>S?x:v(t,e,n,o)}];p()},{"robust-scale":33,"robust-subtract":34,"robust-sum":35,"two-product":36}],38:[function(t,e){"use strict";function n(t,e,n){this.vertices=t,this.adjacent=e,this.boundary=n,this.lastVisited=-1}function o(t,e,n){this.vertices=t,this.cell=e,this.index=n}function r(t,e){return p(t.vertices,e.vertices)}function i(t){for(var e=["function orient(){var tuple=this.tuple;return test("],n=0;t>=n;++n)n>0&&e.push(","),e.push("tuple[",n,"]");e.push(")}return orient");var o=new Function("test",e.join("")),r=u[t+1];return r||(r=u),o(r)}function s(t,e,n){this.dimension=t,this.vertices=e,this.simplices=n,this.interior=n.filter(function(t){return!t.boundary}),this.tuple=new Array(t+1);for(var o=0;t>=o;++o)this.tuple[o]=this.vertices[o];var r=g[t];r||(r=g[t]=i(t)),this.orient=r}function a(t,e){var o=t.length;if(0===o)throw new Error("Must have at least d+1 points");var r=t[0].length;if(r>=o)throw new Error("Must input at least d+1 points");var i=t.slice(0,r+1),a=u.apply(void 0,i);if(0===a)throw new Error("Input not in general position");for(var p=new Array(r+1),g=0;r>=g;++g)p[g]=g;0>a&&(p[0]=1,p[1]=0);for(var l=new n(p,new Array(r+1),!1),h=l.adjacent,d=new Array(r+2),g=0;r>=g;++g){for(var c=p.slice(),f=0;r>=f;++f)f===g&&(c[f]=-1);var m=c[0];c[0]=c[1],c[1]=m;var y=new n(c,new Array(r+1),!0);h[g]=y,d[g]=y}d[r+1]=l;for(var g=0;r>=g;++g)for(var c=h[g].vertices,j=h[g].adjacent,f=0;r>=f;++f){var v=c[f];if(0>v)j[f]=l;else for(var E=0;r>=E;++E)h[E].vertices.indexOf(v)<0&&(j[f]=h[E])}for(var x=new s(r,i,d),I=!!e,g=r+1;o>g;++g)x.insert(t[g],I);return x.boundary()}e.exports=a;var u=t("robust-orientation"),p=t("simplicial-complex").compareCells;n.prototype.flip=function(){var t=this.vertices[0];this.vertices[0]=this.vertices[1],this.vertices[1]=t;var e=this.adjacent[0];this.adjacent[0]=this.adjacent[1],this.adjacent[1]=e};var g=[],l=s.prototype;l.handleBoundaryDegeneracy=function(t,e){var n=this.dimension,o=this.vertices.length-1,r=this.tuple,i=this.vertices,s=[t];for(t.lastVisited=-o;s.length>0;){t=s.pop();for(var a=(t.vertices,t.adjacent),u=0;n>=u;++u){var p=a[u];if(p.boundary&&!(p.lastVisited<=-o)){for(var g=p.vertices,l=0;n>=l;++l){var h=g[l];r[l]=0>h?e:i[h]}var d=this.orient();if(d>0)return p;p.lastVisited=-o,0===d&&s.push(p)}}}return null},l.walk=function(t,e){var n=this.vertices.length-1,o=this.dimension,r=this.vertices,i=this.tuple,s=e?this.interior.length*Math.random()|0:this.interior.length-1,a=this.interior[s];t:for(;!a.boundary;){for(var u=a.vertices,p=a.adjacent,g=0;o>=g;++g)i[g]=r[u[g]];a.lastVisited=n;for(var g=0;o>=g;++g){var l=p[g];if(!(l.lastVisited>=n)){var h=i[g];i[g]=t;var d=this.orient();if(i[g]=h,0>d){a=l;continue t}l.lastVisited=l.boundary?-n:n}}return}return a},l.addPeaks=function(t,e){var i=this.vertices.length-1,s=this.dimension,a=this.vertices,u=this.tuple,p=this.interior,g=this.simplices,l=[e];e.lastVisited=i,e.vertices[e.vertices.indexOf(-1)]=i,e.boundary=!1,p.push(e);for(var h=[];l.length>0;){var e=l.pop(),d=e.vertices,c=e.adjacent,f=d.indexOf(i);if(!(0>f))for(var m=0;s>=m;++m)if(m!==f){var y=c[m];if(y.boundary&&!(y.lastVisited>=i)){var j=y.vertices;if(y.lastVisited!==-i){for(var v=0,E=0;s>=E;++E)j[E]<0?(v=E,u[E]=t):u[E]=a[j[E]];var x=this.orient();if(x>0){j[v]=i,y.boundary=!1,p.push(y),l.push(y),y.lastVisited=i;continue}y.lastVisited=-i}var I=y.adjacent,S=d.slice(),L=c.slice(),C=new n(S,L,!0);g.push(C);var N=I.indexOf(e);if(!(0>N)){I[N]=C,L[f]=y,S[m]=-1,L[m]=e,c[m]=C,C.flip();for(var E=0;s>=E;++E){var b=S[E];if(!(0>b||b===i)){for(var P=new Array(s-1),R=0,w=0;s>=w;++w){var O=S[w];0>O||w===E||(P[R++]=O)}h.push(new o(P,C,E))}}}}}}h.sort(r);for(var m=0;m+1T||0>D||(M.cell.adjacent[M.index]=A.cell,A.cell.adjacent[A.index]=M.cell)}},l.insert=function(t,e){var n=this.vertices;n.push(t);var o=this.walk(t,e);if(o){for(var r=this.dimension,i=this.tuple,s=0;r>=s;++s){var a=o.vertices[s];i[s]=0>a?t:n[a]}var u=this.orient(i);0>u||(0!==u||(o=this.handleBoundaryDegeneracy(o,t)))&&this.addPeaks(t,o)}},l.boundary=function(){for(var t=this.dimension,e=[],n=this.simplices,o=n.length,r=0;o>r;++r){var i=n[r];if(i.boundary){for(var s=new Array(t),a=i.vertices,u=0,p=0,g=0;t>=g;++g)a[g]>=0?s[u++]=a[g]:p=1&g;if(p===(1&t)){var l=s[0];s[0]=s[1],s[1]=l}e.push(s)}}return e}},{"robust-orientation":44,"simplicial-complex":47}],39:[function(t,e,n){arguments[4][32][0].apply(n,arguments)},{dup:32}],40:[function(t,e,n){arguments[4][33][0].apply(n,arguments)},{dup:33,"two-product":43,"two-sum":39}],41:[function(t,e,n){arguments[4][34][0].apply(n,arguments)},{dup:34}],42:[function(t,e,n){arguments[4][35][0].apply(n,arguments)},{dup:35}],43:[function(t,e,n){arguments[4][36][0].apply(n,arguments)},{dup:36}],44:[function(t,e,n){arguments[4][37][0].apply(n,arguments)},{dup:37,"robust-scale":40,"robust-subtract":41,"robust-sum":42,"two-product":43}],45:[function(t,e,n){"use strict";"use restrict";function o(t){var e=32;return t&=-t,t&&e--,65535&t&&(e-=16),16711935&t&&(e-=8),252645135&t&&(e-=4),858993459&t&&(e-=2),1431655765&t&&(e-=1),e}var r=32;n.INT_BITS=r,n.INT_MAX=2147483647,n.INT_MIN=-1<0)-(0>t)},n.abs=function(t){var e=t>>r-1;return(t^e)-e},n.min=function(t,e){return e^(t^e)&-(e>t)},n.max=function(t,e){return t^(t^e)&-(e>t)},n.isPow2=function(t){return!(t&t-1||!t)},n.log2=function(t){var e,n;return e=(t>65535)<<4,t>>>=e,n=(t>255)<<3,t>>>=n,e|=n,n=(t>15)<<2,t>>>=n,e|=n,n=(t>3)<<1,t>>>=n,e|=n,e|t>>1},n.log10=function(t){return t>=1e9?9:t>=1e8?8:t>=1e7?7:t>=1e6?6:t>=1e5?5:t>=1e4?4:t>=1e3?3:t>=100?2:t>=10?1:0},n.popCount=function(t){return t-=t>>>1&1431655765,t=(858993459&t)+(t>>>2&858993459),16843009*(t+(t>>>4)&252645135)>>>24},n.countTrailingZeros=o,n.nextPow2=function(t){return t+=0===t,--t,t|=t>>>1,t|=t>>>2,t|=t>>>4,t|=t>>>8,t|=t>>>16,t+1},n.prevPow2=function(t){return t|=t>>>1,t|=t>>>2,t|=t>>>4,t|=t>>>8,t|=t>>>16,t-(t>>>1)},n.parity=function(t){return t^=t>>>16,t^=t>>>8,t^=t>>>4,t&=15,27030>>>t&1};var i=new Array(256);!function(t){for(var e=0;256>e;++e){var n=e,o=e,r=7;for(n>>>=1;n;n>>>=1)o<<=1,o|=1&n,--r;t[e]=o<>>8&255]<<16|i[t>>>16&255]<<8|i[t>>>24&255]},n.interleave2=function(t,e){return t&=65535,t=16711935&(t|t<<8),t=252645135&(t|t<<4),t=858993459&(t|t<<2),t=1431655765&(t|t<<1),e&=65535,e=16711935&(e|e<<8),e=252645135&(e|e<<4),e=858993459&(e|e<<2),e=1431655765&(e|e<<1),t|e<<1},n.deinterleave2=function(t,e){return t=t>>>e&1431655765,t=858993459&(t|t>>>1),t=252645135&(t|t>>>2),t=16711935&(t|t>>>4),t=65535&(t|t>>>16),t<<16>>16},n.interleave3=function(t,e,n){return t&=1023,t=4278190335&(t|t<<16),t=251719695&(t|t<<8),t=3272356035&(t|t<<4),t=1227133513&(t|t<<2),e&=1023,e=4278190335&(e|e<<16),e=251719695&(e|e<<8),e=3272356035&(e|e<<4),e=1227133513&(e|e<<2),t|=e<<1,n&=1023,n=4278190335&(n|n<<16),n=251719695&(n|n<<8),n=3272356035&(n|n<<4),n=1227133513&(n|n<<2),t|n<<2},n.deinterleave3=function(t,e){return t=t>>>e&1227133513,t=3272356035&(t|t>>>2),t=251719695&(t|t>>>4),t=4278190335&(t|t>>>8),t=1023&(t|t>>>16),t<<22>>22},n.nextCombination=function(t){var e=t|t-1;return e+1|(~e&-~e)-1>>>o(t)+1}},{}],46:[function(t,e){"use strict";"use restrict";function n(t){this.roots=new Array(t),this.ranks=new Array(t);for(var e=0;t>e;++e)this.roots[e]=e,this.ranks[e]=0}e.exports=n;var o=n.prototype;Object.defineProperty(o,"length",{get:function(){return this.roots.length}}),o.makeSet=function(){var t=this.roots.length;return this.roots.push(t),this.ranks.push(0),t},o.find=function(t){for(var e=this.roots;e[t]!==t;){var n=e[t];e[t]=e[n],t=n}return t},o.link=function(t,e){var n=this.find(t),o=this.find(e);if(n!==o){var r=this.ranks,i=this.roots,s=r[n],a=r[o];a>s?i[n]=o:s>a?i[o]=n:(i[o]=n,++r[n])}}},{}],47:[function(t,e,n){"use strict";"use restrict";function o(t){for(var e=0,n=Math.max,o=0,r=t.length;r>o;++o)e=n(e,t[o].length);return e-1}function r(t){for(var e=-1,n=Math.max,o=0,r=t.length;r>o;++o)for(var i=t[o],s=0,a=i.length;a>s;++s)e=n(e,i[s]);return e+1}function i(t){for(var e=new Array(t.length),n=0,o=t.length;o>n;++n)e[n]=t[n].slice(0);return e}function s(t,e){var n=t.length,o=t.length-e.length,r=Math.min;if(o)return o;switch(n){case 0:return 0;case 1:return t[0]-e[0];case 2:var i=t[0]+t[1]-e[0]-e[1];return i?i:r(t[0],t[1])-r(e[0],e[1]);case 3:var s=t[0]+t[1],a=e[0]+e[1];if(i=s+t[2]-(a+e[2]))return i;var u=r(t[0],t[1]),p=r(e[0],e[1]),i=r(u,t[2])-r(p,e[2]);return i?i:r(u+t[2],s)-r(p+e[2],a);default:var g=t.slice(0);g.sort();var l=e.slice(0);l.sort();for(var h=0;n>h;++h)if(o=g[h]-l[h])return o;return 0}}function a(t,e){return s(t[0],e[0])}function u(t,e){if(e){for(var n=t.length,o=new Array(n),r=0;n>r;++r)o[r]=[t[r],e[r]];o.sort(a);for(var r=0;n>r;++r)t[r]=o[r][0],e[r]=o[r][1];return t}return t.sort(s),t}function p(t){if(0===t.length)return[];for(var e=1,n=t.length,o=1;n>o;++o){var r=t[o];if(s(r,t[o-1])){if(o===e){e++;continue}t[e++]=r}}return t.length=e,t}function g(t,e){for(var n=0,o=t.length-1,r=-1;o>=n;){var i=n+o>>1,a=s(t[i],e);0>=a?(0===a&&(r=i),n=i+1):a>0&&(o=i-1)}return r}function l(t,e){for(var n=new Array(t.length),o=0,r=n.length;r>o;++o)n[o]=[];for(var i=[],o=0,a=e.length;a>o;++o)for(var u=e[o],p=u.length,l=1,h=1<l;++l){i.length=v.popCount(l);for(var d=0,c=0;p>c;++c)l&1<f))for(;;)if(n[f++].push(o),f>=t.length||0!==s(t[f],i))break}return n}function h(t,e){if(!e)return l(p(c(t,0)),t,0);for(var n=new Array(e),o=0;e>o;++o)n[o]=[];for(var o=0,r=t.length;r>o;++o)for(var i=t[o],s=0,a=i.length;a>s;++s)n[i[s]].push(o);return n}function d(t){for(var e=[],n=0,o=t.length;o>n;++n)for(var r=t[n],i=0|r.length,s=1,a=1<s;++s){for(var p=[],g=0;i>g;++g)s>>>g&1&&p.push(r[g]);e.push(p)}return u(e)}function c(t,e){if(0>e)return[];for(var n=[],o=(1<n;++n)for(var r=t[n],i=0,s=r.length;s>i;++i){for(var a=new Array(r.length-1),p=0,g=0;s>p;++p)p!==i&&(a[g++]=r[p]);e.push(a)}return u(e)}function m(t,e){for(var n=new E(e),o=0;oe){for(var n=new Array(e),r=0;e>r;++r)n[r]=r;return 2===e&&t[0][0]===t[1][0]&&t[0][1]===t[1][1]?[0]:n}for(var i=new Array(e),r=0;e>r;++r)i[r]=r;i.sort(function(e,n){var o=t[e][0]-t[n][0];return o?o:t[e][1]-t[n][1]});for(var s=[i[0],i[1]],a=[i[0],i[1]],r=2;e>r;++r){for(var u=i[r],p=t[u],g=s.length;g>1&&o(t[s[g-2]],t[s[g-1]],p)<=0;)g-=1,s.pop();for(s.push(u),g=a.length;g>1&&o(t[a[g-2]],t[a[g-1]],p)>=0;)g-=1,a.pop();a.push(u)}for(var n=new Array(a.length+s.length-2),l=0,r=0,h=s.length;h>r;++r)n[l++]=s[r];for(var d=a.length-2;d>0;--d)n[l++]=a[d];return n}e.exports=n;var o=t("robust-orientation")[3]},{"robust-orientation":54}],49:[function(t,e,n){arguments[4][32][0].apply(n,arguments)},{dup:32}],50:[function(t,e,n){arguments[4][33][0].apply(n,arguments)},{dup:33,"two-product":53,"two-sum":49}],51:[function(t,e,n){arguments[4][34][0].apply(n,arguments)},{dup:34}],52:[function(t,e,n){arguments[4][35][0].apply(n,arguments)},{dup:35}],53:[function(t,e,n){arguments[4][36][0].apply(n,arguments)},{dup:36}],54:[function(t,e,n){arguments[4][37][0].apply(n,arguments)},{dup:37,"robust-scale":50,"robust-subtract":51,"robust-sum":52,"two-product":53}],55:[function(t,e,n){arguments[4][23][0].apply(n,arguments)},{dup:23}],56:[function(t,e){var n=t("turf-inside");e.exports=function(t,e,o){for(var r=0;rl;l++)r=e[l],i=r[0],s=r[1],a+=i,u+=s,p+=i*i,g+=i*s;t=(o*g-a*u)/(o*p-a*a),n=u/o-t*a/o}return{m:t,b:n}},t.m=function(){return t.mb().m},t.b=function(){return t.mb().b},t.line=function(){var e=t.mb(),n=e.m,o=e.b;return function(t){return o+n*t}},t}function n(t,e){if(t.length<2)return 1;for(var n,o=0,r=0;re||void 0===e)&&(e=t[n]);return e}function g(t){if(0===t.length)return null;for(var e=i(t),n=[],o=0;or&&(r=i,e=o),i=1,o=n[s]):i++;return e}function v(t,e){var n=i(t),o=l(t),r=Math.sqrt(t.length);return(n-e)/(o/r)}function E(t,e,n){var o=t.length,r=e.length;if(!o||!r)return null;n||(n=0);var s=i(t),a=i(e),u=((o-1)*d(t)+(r-1)*d(e))/(o+r-2);return(s-a-n)/Math.sqrt(u*(1/o+1/r))}function x(t,e){var n=[];if(0>=e)return null;for(var o=0;o0;)o=Math.floor(e()*r--),n=t[r],t[r]=t[o],t[o]=n;return t}function S(t,e){return t=t.slice(),I(t.slice(),e)}function L(t,e,n){var o=S(t,n);return o.slice(0,e)}function C(t,e){if(0===t.length)return null;var n=t.slice().sort(function(t,e){return t-e});if(e.length){for(var o=[],r=0;re||e>1?null:1===e?t[t.length-1]:0===e?t[0]:n%1!==0?t[Math.ceil(n)-1]:t.length%2===0?(t[n-1]+t[n])/2:t[n]}function b(t){return 0===t.length?null:C(t,.75)-C(t,.25)}function P(t){if(!t||0===t.length)return null;for(var e=y(t),n=[],o=0;oo;o++)a.push(0),u.push(0);r.push(a),i.push(u)}for(n=1;e+1>n;n++)for(r[1][n]=1,i[1][n]=0,o=2;oc;c++){var f=p-c+1,m=t[f-1];if(h++,g+=m,l+=m*m,s=l-g*g/h,d=f-1,0!==d)for(o=2;e+1>o;o++)i[p][o]>=s+i[d][o-1]&&(r[p][o]=f,i[p][o]=s+i[d][o-1])}r[p][1]=1,i[p][1]=s}return{lower_class_limits:r,variance_combinations:i}}function w(t,e,n){var o=t.length-1,r=[],i=n;for(r[n]=t[t.length-1],r[0]=t[0];i>1;)r[i-1]=t[e[o][i]-2],o=e[o][i]-1,i--;return r}function O(t,e){if(e>t.length)return null;t=t.slice().sort(function(t,e){return t-e});var n=R(t,e),o=n.lower_class_limits;return w(t,o,e)}function M(t){if(t.length<3)return null;var e=t.length,n=Math.pow(c(t),3),o=h(t,3);return e*o/((e-1)*(e-2)*n)}function A(t){var e=Math.abs(t),n=Math.floor(10*e),o=10*(Math.floor(100*e)/10-Math.floor(100*e/10)),r=Math.min(10*n+o,k.length-1);return t>=0?k[r]:+(1-k[r]).toFixed(4)}function T(t,e,n){return(t-e)/n}function D(t){if(0>t)return null;for(var e=1,n=2;t>=n;n++)e*=n;return e}function G(t){return 0>t||t>1?null:F(1,t)}function F(t,e){function n(t,e,n){return D(e)/(D(t)*D(e-t))*Math.pow(n,t)*Math.pow(1-n,e-t)}if(0>e||e>1||0>=t||t%1!==0)return null;var o=0,r=0,i={};do i[o]=n(o,t,e),r+=i[o],o++;while(1-U>r);return i}function B(t){function e(t,e){return Math.pow(Math.E,-e)*Math.pow(e,t)/D(t)}if(0>=t)return null;var n=0,o=0,r={};do r[n]=e(n,t),o+=r[n],n++;while(1-U>o);return r}function q(t,e,n){for(var o,r,s=i(t),a=0,u=1,p=e(s),g=[],l=[],h=0;h=0;r--)l[r]<3&&(l[r-1]+=l[r],l.pop(),g[r-1]+=g[r],g.pop());for(r=0;rt[0]&&(e[0]=t[0]),e[1]>t[1]&&(e[1]=t[1]),e[2]o;o++){var i=t[0]+e*a[o],s=t[1]+e*u[o];n.push([i,s])}return n.push(n[0]),r([n])}for(var o=t("turf-point"),r=t("turf-polygon"),i=t("turf-distance"),s=t("turf-featurecollection"),a=[],u=[],p=0;6>p;p++){var g=2*Math.PI/6*p;a.push(Math.cos(g)),u.push(Math.sin(g))}e.exports=function(t,e,r){var a=e/i(o([t[0],t[1]]),o([t[2],t[1]]),r),u=a*(t[2]-t[0]),p=e/i(o([t[0],t[1]]),o([t[0],t[3]]),r),g=(p*(t[3]-t[1]),u/2),l=2*g,h=Math.sqrt(3)/2*l,d=t[2]-t[0],c=t[3]-t[1],f=.75*l,m=h,y=d/(l-g/2),j=Math.ceil(y);Math.round(y)===j&&j++;var v=(j*f-g/2-d)/2-g/2,E=Math.ceil(c/h),x=(c-E*h)/2,I=E*h-c>h/2;I&&(x-=h/4);for(var S=s([]),L=0;j>L;L++)for(var C=0;E>=C;C++){var N=L%2===1;if(!(0===C&&N||0===C&&I)){var b=L*f+t[0]-v,P=C*m+t[1]+x;N&&(P-=h/2),S.features.push(n([b,P],g))}}return S}},{"turf-distance":60,"turf-featurecollection":72,"turf-point":102,"turf-polygon":103}],76:[function(t,e){function n(t,e){for(var n=!1,o=0,r=e.length-1;ot[1]!=u>t[1]&&t[0]<(a-i)*(t[1]-s)/(u-s)+i;p&&(n=!n)}return n}e.exports=function(t,e){var o=e.geometry.coordinates,r=[t.geometry.coordinates[0],t.geometry.coordinates[1]];"Polygon"===e.geometry.type&&(o=[o]);for(var i=!1,s=0;sn*n+o*o}function o(t){for(var e=t.head;e;){var n=e.next;e.next=e.prev,e.prev=n,e=n}var n=t.head;t.head=t.tail,t.tail=n}function r(t){this.level=t,this.s=null,this.count=0}function i(t){if(t)this.drawContour=t;else{var e=this;e.contours={},this.drawContour=function(t,n,o,i,s,a){var u=e.contours[a];u||(u=e.contours[a]=new r(s)),u.addSegment({x:t,y:n},{x:o,y:i})},this.contourList=function(){var t=[],n=e.contours;for(var o in n)for(var r=n[o].s,i=n[o].level;r;){var s=r.head,a=[];for(a.level=i,a.k=o;s&&s.p;)a.push(s.p),s=s.next;t.push(a),r=r.next}return t.sort(function(t,e){return t.k-e.k}),t}}this.h=new Array(5),this.sh=new Array(5),this.xh=new Array(5),this.yh=new Array(5)}e.exports=i;var s=1e-10;r.prototype.remove_seq=function(t){t.prev?t.prev.next=t.next:this.s=t.next,t.next&&(t.next.prev=t.prev),--this.count},r.prototype.addSegment=function(t,e){for(var r=this.s,i=null,s=null,a=!1,u=!1;r&&(null==i&&(n(t,r.head.p)?(i=r,a=!0):n(t,r.tail.p)&&(i=r)),null==s&&(n(e,r.head.p)?(s=r,u=!0):n(e,r.tail.p)&&(s=r)),null==s||null==i);)r=r.next;var p=(null!=i?1:0)|(null!=s?2:0);switch(p){case 0:var g={p:t,prev:null},l={p:e,next:null};g.next=l,l.prev=g,i={head:g,tail:l,next:this.s,prev:null,closed:!1},this.s&&(this.s.prev=i),this.s=i,++this.count;break;case 1:var h={p:e};a?(h.next=i.head,h.prev=null,i.head.prev=h,i.head=h):(h.next=null,h.prev=i.tail,i.tail.next=h,i.tail=h);break;case 2:var h={p:t};u?(h.next=s.head,h.prev=null,s.head.prev=h,s.head=h):(h.next=null,h.prev=s.tail,s.tail.next=h,s.tail=h);break;case 3:if(i===s){var h={p:i.tail.p,next:i.head,prev:null};i.head.prev=h,i.head=h,i.closed=!0;break}switch((a?1:0)|(u?2:0)){case 0:o(i);case 1:s.tail.next=i.head,i.head.prev=s.tail,s.tail=i.tail,this.remove_seq(i);break;case 3:o(i);case 2:i.tail.next=s.head,s.head.prev=i.tail,i.tail=s.tail,this.remove_seq(s)}}},i.prototype.contour=function(t,e,n,o,r,i,a,u,p){var g=this.h,l=this.sh,h=this.xh,d=this.yh,c=this.drawContour;this.contours={};for(var f,m,y,j,v,E,x=function(t,e){return(g[e]*h[t]-g[t]*h[e])/(g[e]-g[t])},I=function(t,e){return(g[e]*d[t]-g[t]*d[e])/(g[e]-g[t])},S=0,L=0,C=0,N=0,b=[0,1,1,0],P=[0,0,1,1],R=[[[0,0,8],[0,2,5],[7,6,9]],[[0,3,4],[1,3,1],[4,3,0]],[[9,6,7],[5,2,0],[8,0,0]]],w=r-1;w>=o;w--)for(var O=e;n-1>=O;O++){var M,A;if(M=Math.min(t[O][w],t[O][w+1]),A=Math.min(t[O+1][w],t[O+1][w+1]),v=Math.min(M,A),M=Math.max(t[O][w],t[O][w+1]),A=Math.max(t[O+1][w],t[O+1][w+1]),E=Math.max(M,A),E>=p[0]&&v<=p[u-1])for(var T=0;u>T;T++)if(p[T]>=v&&p[T]<=E){for(var D=4;D>=0;D--)D>0?(g[D]=t[O+b[D-1]][w+P[D-1]]-p[T],h[D]=i[O+b[D-1]],d[D]=a[w+P[D-1]]):(g[0]=.25*(g[1]+g[2]+g[3]+g[4]),h[0]=.5*(i[O]+i[O+1]),d[0]=.5*(a[w]+a[w+1])),l[D]=g[D]>s?1:g[D]<-s?-1:0;for(D=1;4>=D;D++)if(f=D,m=0,y=4!=D?D+1:1,j=R[l[f]+1][l[m]+1][l[y]+1],0!=j){switch(j){case 1:S=h[f],C=d[f],L=h[m],N=d[m];break;case 2:S=h[m],C=d[m],L=h[y],N=d[y];break;case 3:S=h[y],C=d[y],L=h[f],N=d[f];break;case 4:S=h[f],C=d[f],L=x(m,y),N=I(m,y);break;case 5:S=h[m],C=d[m],L=x(y,f),N=I(y,f);break;case 6:S=h[y],C=d[y],L=x(f,m),N=I(f,m);break;case 7:S=x(f,m),C=I(f,m),L=x(m,y),N=I(m,y);break;case 8:S=x(m,y),C=I(m,y),L=x(y,f),N=I(y,f);break;case 9:S=x(y,f),C=I(y,f),L=x(f,m),N=I(f,m)}c(S,C,L,N,p[T],T)}}}}},{}],83:[function(t,e){var n=t("turf-tin"),o=t("turf-inside"),r=t("turf-grid"),i=t("turf-extent"),s=t("turf-planepoint"),a=t("turf-featurecollection"),u=t("turf-linestring"),p=t("turf-square"),g=t("./conrec");e.exports=function(t,e,l,h){for(var d=n(t,e),c=i(t),f=p(c),m=r(f,l),y=[],j=0;jS;S++){var L=m.features.slice(S*I,(S+1)*I),C=[];L.forEach(function(t){C.push(t.properties?t.properties[e]:0)}),y.push(C)}for(var N=(f[2]-f[0])/I,b=[],P=[],S=0;I>S;S++)b.push(S*N+f[0]),P.push(S*N+f[1]);var R=new g;R.contour(y,0,l,0,l,b,P,h.length,h);var w=R.contourList(),O=a([]);return w.forEach(function(t){if(t.length>2){var n=[];t.forEach(function(t){n.push([t.x,t.y])});var o=u(n);o.properties={},o.properties[e]=t.level,O.features.push(o)}}),O}},{"./conrec":82,"turf-extent":70,"turf-featurecollection":72,"turf-grid":84,"turf-inside":76,"turf-linestring":90,"turf-planepoint":98,"turf-square":115,"turf-tin":118}],84:[function(t,e){var n=t("turf-point");e.exports=function(t,e){for(var o=t[0],r=t[1],i=t[2],s=(t[3],(i-o)/e),a={type:"FeatureCollection",features:[]},u=0;e>=u;u++)for(var p=0;e>=p;p++)a.features.push(n([u*s+o,p*s+r]));return a}},{"turf-point":102}],85:[function(t,e){var n=t("simple-statistics");e.exports=function(t,e,o){var r=[],i=[];return t.features.forEach(function(t){void 0!==t.properties[e]&&r.push(t.properties[e])}),i=n.jenks(r,o)}},{"simple-statistics":86}],86:[function(t,e,n){arguments[4][59][0].apply(n,arguments)},{dup:59}],87:[function(t,e){function n(t,e,n,o,r,i,s,a){var u,p,g,l,h,d={x:null,y:null,onLine1:!1,onLine2:!1};return u=(a-i)*(n-t)-(s-r)*(o-e),0==u?null!=d.x&&null!=d.y?d:!1:(p=e-i,g=t-r,l=(s-r)*p-(a-i)*g,h=(n-t)*p-(o-e)*g,p=l/u,g=h/u,d.x=t+p*(n-t),d.y=e+p*(o-e),p>0&&1>p&&(d.onLine1=!0),g>0&&1>g&&(d.onLine2=!0),d.onLine1&&d.onLine2?[d.x,d.y]:!1)}var o=(t("turf-polygon"),t("turf-point")),r=t("turf-featurecollection");e.exports=function(t){var e,i={intersections:r([]),fixed:null};e="Feature"===t.type?t.geometry:t;return e.coordinates.forEach(function(t){e.coordinates.forEach(function(e){for(var r=0;r0&&1>p&&(d.onLine1=!0),g>0&&1>g&&(d.onLine2=!0),d.onLine1&&d.onLine2?[d.x,d.y]:!1)}var r=t("turf-distance"),i=t("turf-point"),s=t("turf-linestring"),a=t("turf-bearing"),u=t("turf-destination");e.exports=function(t,e,o){var r;if("Feature"===o.type)r=o.geometry.coordinates;else{if("LineString"!==o.type)throw new Error("input must be a LineString Feature or Geometry");r=o.geometry.coordinates}var i,a=n(t,r),u=n(e,r);i=a.properties.index<=u.properties.index?[a,u]:[u,a];for(var p=s([i[0].geometry.coordinates],{}),g=i[0].properties.index+1;ge||void 0===e)&&(e=t[n]);return e}var o=t("turf-inside");e.exports=function(t,e,r,i){return t.features.forEach(function(t){t.properties||(t.properties={});var s=[];e.features.forEach(function(e){o(e,t)&&s.push(e.properties[r])}),t.properties[i]=n(s)}),t}},{"turf-inside":76}],92:[function(t,e){function n(t){if(0===t.length)return null;var e=t.slice().sort(function(t,e){return t-e});if(e.length%2===1)return e[(e.length-1)/2];var n=e[e.length/2-1],o=e[e.length/2];return(n+o)/2}var o=t("turf-inside");e.exports=function(t,e,r,i){return t.features.forEach(function(t){t.properties||(t.properties={});var s=[];e.features.forEach(function(e){o(e,t)&&s.push(e.properties[r])}),t.properties[i]=n(s)}),t}},{"turf-inside":76}],93:[function(t,e){var n=t("clone"),o=t("turf-union");e.exports=function(t){for(var e=n(t.features[0]),r=t.features,i=0,s=r.length;s>i;i++){var a=r[i];a.geometry&&(e=o(e,a))}return e}},{clone:94,"turf-union":120}],94:[function(t,e){(function(t){"use strict";function n(t){return Object.prototype.toString.call(t)}function o(e,n,o,i){function s(e,o){if(null===e)return null;if(0==o)return e;var g,l;if("object"!=typeof e)return e;if(r.isArray(e))g=[];else if(r.isRegExp(e))g=new RegExp(e.source,r.getRegExpFlags(e)),e.lastIndex&&(g.lastIndex=e.lastIndex);else if(r.isDate(e))g=new Date(e.getTime());else{if(p&&t.isBuffer(e))return g=new t(e.length),e.copy(g),g;"undefined"==typeof i?(l=Object.getPrototypeOf(e),g=Object.create(l)):(g=Object.create(i),l=i)}if(n){var h=a.indexOf(e);if(-1!=h)return u[h];a.push(e),u.push(g)}for(var d in e){var c;l&&(c=Object.getOwnPropertyDescriptor(l,d)),c&&null==c.set||(g[d]=s(e[d],o-1))}return g}var a=[],u=[],p="undefined"!=typeof t;return"undefined"==typeof n&&(n=!0),"undefined"==typeof o&&(o=1/0),s(e,o)}var r={isArray:function(t){return Array.isArray(t)||"object"==typeof t&&"[object Array]"===n(t)},isDate:function(t){return"object"==typeof t&&"[object Date]"===n(t)},isRegExp:function(t){return"object"==typeof t&&"[object RegExp]"===n(t)},getRegExpFlags:function(t){var e="";return t.global&&(e+="g"),t.ignoreCase&&(e+="i"),t.multiline&&(e+="m"),e}};"object"==typeof e&&(e.exports=o),o.clonePrototype=function(t){if(null===t)return null;var e=function(){};return e.prototype=t,new e}}).call(this,t("buffer").Buffer)},{buffer:2}],95:[function(t,e){var n=t("turf-point");e.exports=function(t,e){if(null===t||null===e)throw new Error("Less than two points passed.");var o=t.geometry.coordinates[0],r=e.geometry.coordinates[0],i=t.geometry.coordinates[1],s=e.geometry.coordinates[1],a=o+r,u=a/2,p=i+s,g=p/2;return n([u,g])}},{"turf-point":102}],96:[function(t,e){function n(t){for(var e,n=0;n0&&1>p&&(d.onLine1=!0),g>0&&1>g&&(d.onLine2=!0),d.onLine1&&d.onLine2?[d.x,d.y]:!1)}var r=t("turf-distance"),i=t("turf-point"),s=(t("turf-linestring"),t("turf-bearing")),a=t("turf-destination");e.exports=function(t,e){var o;if("Feature"===t.type)o=t.geometry.coordinates;else{if("LineString"!==t.type)throw new Error("input must be a LineString Feature or Geometry");o=t.geometry.coordinates}return n(e,o)}},{"turf-bearing":13,"turf-destination":57,"turf-distance":60,"turf-linestring":90,"turf-point":102}],101:[function(t,e){function n(t,e,n,o,r,i){var s=Math.sqrt((r-n)*(r-n)+(i-o)*(i-o)),a=Math.sqrt((t-n)*(t-n)+(e-o)*(e-o)),u=Math.sqrt((r-t)*(r-t)+(i-e)*(i-e));return s===a+u?!0:void 0}var o=t("turf-featurecollection"),r=t("turf-center"),i=t("turf-distance"),s=t("turf-inside"),a=t("turf-explode");e.exports=function(t){"FeatureCollection"!=t.type&&("Feature"!=t.type&&(t={type:"Feature",geometry:t,properties:{}}),t=o([t]));for(var e=r(t),u=!1,p=0;!u&&pb&&(N=b,C=L.features[p])}return C}},{"turf-center":21,"turf-distance":60,"turf-explode":68,"turf-featurecollection":72,"turf-inside":76}],102:[function(t,e){var n=Array.isArray||function(t){return"[object Array]"===Object.prototype.toString.call(t)};e.exports=function(t,e){if(!n(t))throw new Error("Coordinates must be an array");if(t.length<2)throw new Error("Coordinates must be at least 2 numbers long");return{type:"Feature",geometry:{type:"Point",coordinates:t},properties:e||{}}}},{}],103:[function(t,e){e.exports=function(t,e){if(null===t)throw new Error("No coordinates passed");for(var n=0;n0?t+n[e-1]:t}function u(t){t=2*t*Math.PI/c[c.length-1];var e=Math.random();d.push([e*r*Math.sin(t),e*r*Math.cos(t)])}"number"!=typeof e&&(e=10),"number"!=typeof r&&(r=10);var p=[];for(i=0;i=r[n][0]&&t.properties[e]<=r[n][1]&&(t.properties[o]=r[n][2]);i.features.push(t)}),i}},{"./index.js":108,"turf-featurecollection":72}],109:[function(t,e){var n=t("turf-featurecollection");e.exports=function(t,e,o){for(var r=n([]),i=0;is;)o=Math.floor((i+1)*Math.random()),n=r[o],r[o]=r[i],r[i]=n;return r.slice(s)}var o=t("turf-featurecollection");e.exports=function(t,e){var r=o(n(t.features,e));return r}},{"turf-featurecollection":72}],111:[function(t,e){function n(t,e){return{type:"Feature",geometry:t,properties:e}}var o=t("simplify-js");e.exports=function(t,e,r){if("LineString"===t.geometry.type){var i={type:"LineString",coordinates:[]},s=t.geometry.coordinates.map(function(t){return{x:t[0],y:t[1]}});return i.coordinates=o(s,e,r).map(function(t){return[t.x,t.y]}),n(i,t.properties)}if("Polygon"===t.geometry.type){var a={type:"Polygon",coordinates:[]};return t.geometry.coordinates.forEach(function(t){var n=t.map(function(t){return{x:t[0],y:t[1]}}),i=o(n,e,r).map(function(t){return[t.x,t.y]});a.coordinates.push(i)}),n(a,t.properties)}}},{"simplify-js":112}],112:[function(e,n){!function(){"use strict";function e(t,e){var n=t.x-e.x,o=t.y-e.y;return n*n+o*o}function o(t,e,n){var o=e.x,r=e.y,i=n.x-o,s=n.y-r;if(0!==i||0!==s){var a=((t.x-o)*i+(t.y-r)*s)/(i*i+s*s);a>1?(o=n.x,r=n.y):a>0&&(o+=i*a,r+=s*a)}return i=t.x-o,s=t.y-r,i*i+s*s}function r(t,n){for(var o,r=t[0],i=[r],s=1,a=t.length;a>s;s++)o=t[s],e(o,r)>n&&(i.push(o),r=o);return r!==o&&i.push(o),i}function i(t,e){var n,r,i,s,a=t.length,u="undefined"!=typeof Uint8Array?Uint8Array:Array,p=new u(a),g=0,l=a-1,h=[],d=[];for(p[g]=p[l]=1;l;){for(r=0,n=g+1;l>n;n++)i=o(t[n],t[g],t[l]),i>r&&(s=n,r=i);r>e&&(p[s]=1,h.push(g,s,s,l)),l=h.pop(),g=h.pop()}for(n=0;a>n;n++)p[n]&&d.push(t[n]);return d}function s(t,e,n){var o=void 0!==e?e*e:1;return t=n?t:r(t,o),t=i(t,o)}"function"==typeof t&&t.amd?t(function(){return s}):"undefined"!=typeof n?n.exports=s:"undefined"!=typeof self?self.simplify=s:window.simplify=s}()},{}],113:[function(t,e){e.exports=function(t,e){var n=t[2]-t[0],o=t[3]-t[1],r=n*e,i=o*e,s=r-n,a=i-o,u=t[0]-s/2,p=t[1]-a/2,g=s/2+t[2],l=a/2+t[3],h=[u,p,g,l];return h}},{}],114:[function(t,e){var n=t("turf-featurecollection"),o=t("turf-point"),r=t("turf-polygon"),i=t("turf-distance");e.exports=function(t,e,s){for(var a=n([]),u=e/i(o([t[0],t[1]]),o([t[2],t[1]]),s),p=u*(t[2]-t[0]),g=e/i(o([t[0],t[1]]),o([t[0],t[3]]),s),l=g*(t[3]-t[1]),h=t[0];h<=t[2];){for(var d=t[1];d<=t[3];){var c=r([[[h,d],[h,d+l],[h+p,d+l],[h+p,d],[h,d]]]);a.features.push(c),d+=l}h+=p}return a}},{"turf-distance":60,"turf-featurecollection":72,"turf-point":102,"turf-polygon":103}],115:[function(t,e){var n=t("turf-midpoint"),o=t("turf-point"),r=t("turf-distance");e.exports=function(t){var e=[0,0,0,0],i=o([t[0],t[1]]),s=o([t[0],t[3]]),a=(o([t[2],t[3]]),o([t[2],t[1]])),u=r(i,a,"miles"),p=r(i,s,"miles");if(u>=p){e[0]=t[0],e[2]=t[2];var g=n(i,s);return e[1]=g.geometry.coordinates[1]-(t[2]-t[0])/2,e[3]=g.geometry.coordinates[1]+(t[2]-t[0])/2,e}e[1]=t[1],e[3]=t[3];var l=n(i,a);return e[0]=l.geometry.coordinates[0]-(t[3]-t[1])/2,e[2]=l.geometry.coordinates[0]+(t[3]-t[1])/2,e}},{"turf-distance":60,"turf-midpoint":95,"turf-point":102}],116:[function(t,e){function n(t){for(var e=0,n=0;nu&&(u=t[e].y);var p,g,l,h=s-i,d=u-a,c=h>d?h:d,f=.5*(s+i),m=.5*(u+a),y=[new n({x:f-20*c,y:m-c,__sentinel:!0},{x:f,y:m+20*c,__sentinel:!0},{x:f+20*c,y:m-c,__sentinel:!0})],j=[],v=[];for(e=t.length;e--;){for(v.length=0,p=y.length;p--;)h=t[e].x-y[p].x,h>0&&h*h>y[p].r?(j.push(y[p]),y.splice(p,1)):(d=t[e].y-y[p].y,h*h+d*d>y[p].r||(v.push(y[p].a,y[p].b,y[p].b,y[p].c,y[p].c,y[p].a),y.splice(p,1)));for(r(v),p=v.length;p;)l=v[--p],g=v[--p],y.push(new n(g,l,t[e]))}for(Array.prototype.push.apply(j,y),e=j.length;e--;)(j[e].a.__sentinel||j[e].b.__sentinel||j[e].c.__sentinel)&&j.splice(e,1);return j}var s=t("turf-polygon"),a=t("turf-featurecollection");e.exports=function(t,e){return a(i(t.features.map(function(t){var n={x:t.geometry.coordinates[0],y:t.geometry.coordinates[1]};return e&&(n.z=t.properties[e]),n})).map(function(t){return s([[[t.a.x,t.a.y],[t.b.x,t.b.y],[t.c.x,t.c.y],[t.a.x,t.a.y]]],{a:t.a.z,b:t.b.z,c:t.c.z})}))}},{"turf-featurecollection":72,"turf-polygon":103}],119:[function(t,e){var n=t("turf-featurecollection"),o=t("turf-point"),r=t("turf-polygon"),i=t("turf-distance");e.exports=function(t,e,s){for(var a=n([]),u=e/i(o([t[0],t[1]]),o([t[2],t[1]]),s),p=u*(t[2]-t[0]),g=e/i(o([t[0],t[1]]),o([t[0],t[3]]),s),l=g*(t[3]-t[1]),h=0,d=t[0];d<=t[2];){for(var c=0,f=t[1];f<=t[3];){if(h%2===0&&c%2===0){var m=r([[[d,f],[d,f+l],[d+p,f],[d,f]]]);a.features.push(m);var y=r([[[d,f+l],[d+p,f+l],[d+p,f],[d,f+l]]]);a.features.push(y)}else if(h%2===0&&c%2===1){var m=r([[[d,f],[d+p,f+l],[d+p,f],[d,f]]]);a.features.push(m);var y=r([[[d,f],[d,f+l],[d+p,f+l],[d,f]]]);a.features.push(y)}else if(c%2===0&&h%2===1){var m=r([[[d,f],[d,f+l],[d+p,f+l],[d,f]]]);a.features.push(m);var y=r([[[d,f],[d+p,f+l],[d+p,f],[d,f]]]);a.features.push(y)}else if(c%2===1&&h%2===1){var m=r([[[d,f],[d,f+l],[d+p,f],[d,f]]]);a.features.push(m);var y=r([[[d,f+l],[d+p,f+l],[d+p,f],[d,f+l]]]);a.features.push(y)}f+=l,c++}h++,d+=p}return a}},{"turf-distance":60,"turf-featurecollection":72,"turf-point":102,"turf-polygon":103}],120:[function(t,e){var n=t("jsts");e.exports=function(t,e){var o=new n.io.GeoJSONReader,r=o.read(JSON.stringify(t.geometry)),i=o.read(JSON.stringify(e.geometry)),s=r.union(i),a=new n.io.GeoJSONParser;return s=a.write(s),{type:"Feature",geometry:s,properties:t.properties}}},{jsts:121}],121:[function(t,e,n){arguments[4][17][0].apply(n,arguments)},{"./lib/jsts":122,dup:17,"javascript.util":124}],122:[function(t,e,n){arguments[4][18][0].apply(n,arguments)},{dup:18}],123:[function(t,e,n){arguments[4][19][0].apply(n,arguments)},{dup:19}],124:[function(t,e,n){arguments[4][20][0].apply(n,arguments)},{"./dist/javascript.util-node.min.js":123,dup:20}],125:[function(t,e){var n=t("simple-statistics"),o=t("turf-inside");e.exports=function(t,e,r,i){return t.features.forEach(function(t){t.properties||(t.properties={});var s=[];e.features.forEach(function(e){o(e,t)&&s.push(e.properties[r])}),t.properties[i]=n.variance(s)}),t}},{"simple-statistics":126,"turf-inside":76}],126:[function(t,e,n){arguments[4][59][0].apply(n,arguments)},{dup:59}],127:[function(t,e){var n=t("turf-inside"),o=t("turf-featurecollection");e.exports=function(t,e){for(var r=o([]),i=0;i